From 03a624fc7b876675e5353eadbd64d802efda367a Mon Sep 17 00:00:00 2001 From: tomke honkomp Date: Tue, 9 Sep 2025 17:04:16 +0200 Subject: [PATCH 01/15] Add installation via PyPI --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index ac383c7..5cd1697 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) @@ -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 From f2962fe2bd2c0caacc24b4b88adf98fe231403de Mon Sep 17 00:00:00 2001 From: tomke honkomp Date: Tue, 9 Sep 2025 17:05:01 +0200 Subject: [PATCH 02/15] Update copyrights --- COPYRIGHT | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From c381ae991ee93617e14a2e65fcc9da24c78ad5fa Mon Sep 17 00:00:00 2001 From: tomke honkomp Date: Tue, 9 Sep 2025 17:35:43 +0200 Subject: [PATCH 03/15] Revise title generation --- c_module/logic/visualisation.py | 22 +++++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) diff --git a/c_module/logic/visualisation.py b/c_module/logic/visualisation.py index b680f6f..a11d926 100644 --- a/c_module/logic/visualisation.py +++ b/c_module/logic/visualisation.py @@ -680,8 +680,16 @@ def plot_stacked_area_chart(self, data, continent, region, country, variable, ye "global": "Global" }[active_level] + if value_type == "shares": + value_type_title = "Shares" + else: + if stock_type == VarNames.carbon_stock.value: + value_type_title = "Carbon Stocks" + else: + value_type_title = "Carbon Stock Changes" + fig.update_layout( - title=f"Carbon Stocks by Pool — {title_level}: {active_label}", + title=f"{value_type_title} by Pool — {title_level}: {active_label}", barmode="relative", xaxis=dict(title=VarNames.year_name.value, tickvals=tickvals, @@ -779,8 +787,16 @@ def plot_world_map(self, data, continent, region, country, variable, value_type, hovertemplate="%{customdata[0]}%{customdata[1]}" ) + if value_type == "shares": + value_type_title = "Shares" + else: + if stock_type == VarNames.carbon_stock.value: + value_type_title = "Carbon Stocks" + else: + value_type_title = "Carbon Stock Changes" + fig.update_layout( - title=f"

Carbon Stock by Pool – {active_level}: {active_label}", + title=f"

Average {value_type_title} by Pool – {active_level}: {active_label}", geo=dict( showcoastlines=True, coastlinecolor="LightGray", @@ -792,7 +808,7 @@ def plot_world_map(self, data, continent, region, country, variable, value_type, projection=dict(scale=0.8) ), margin=dict(l=1, r=1, t=1, b=1), - coloraxis_showscale=False, + coloraxis_showscale=True, template='plotly_white' ) return fig From 1b5a9ec9ffbf7f7bbbec4ec4fa994b798f1cea1e Mon Sep 17 00:00:00 2001 From: tomke honkomp Date: Tue, 9 Sep 2025 17:37:50 +0200 Subject: [PATCH 04/15] Update version number --- CITATION.cff | 2 +- README.md | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CITATION.cff b/CITATION.cff index 77a038f..7b052f6 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -28,5 +28,5 @@ keywords: - Forest sector - wood markets license: AGPL-3.0-or-later -version: 1.1.0 +version: 1.1.1 date-released: '03.09.2025' diff --git a/README.md b/README.md index 5cd1697..a7e1b20 100644 --- a/README.md +++ b/README.md @@ -50,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 diff --git a/pyproject.toml b/pyproject.toml index b13d2a7..3610f03 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "Carbon-Module" -version = "1.1.0" +version = "1.1.1" authors = [{name = "Tomke Honkomp", email = "tomke.honkomp@thuenen.de"}] description = "The C-Module tracks global carbon stocks and flows across pools of the forestry sector" readme = "README.md" From 5351fb8667d57a98d6c1dc36fe1acbc29ba378a7 Mon Sep 17 00:00:00 2001 From: tomke honkomp Date: Wed, 10 Sep 2025 16:30:22 +0200 Subject: [PATCH 05/15] Add scenario number --- c_module/cli/cli.py | 6 +++++- c_module/parameters/defines.py | 1 + c_module/parameters/paths.py | 28 +++++++++++++++++--------- c_module/user_io/default_parameters.py | 2 ++ 4 files changed, 27 insertions(+), 10 deletions(-) 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/parameters/defines.py b/c_module/parameters/defines.py index 2b4ad97..8917c75 100644 --- a/c_module/parameters/defines.py +++ b/c_module/parameters/defines.py @@ -24,6 +24,7 @@ class ParamNames(Enum): Class to hold names of parameters set by users """ add_on_activated = "activate_add_on_cmodule" + sc_num = "sc_num" start_year = "start_year" end_year = "end_year" read_in_pkl = "read_in_pkl" diff --git a/c_module/parameters/paths.py b/c_module/parameters/paths.py index 5656994..7ac64a6 100644 --- a/c_module/parameters/paths.py +++ b/c_module/parameters/paths.py @@ -1,6 +1,4 @@ import datetime as dt -import re -import os from pathlib import Path from c_module.user_io.default_parameters import user_input from c_module.parameters.defines import ParamNames @@ -8,19 +6,29 @@ current_dt = dt.datetime.now().strftime("%Y%m%dT%H-%M-%S") -def extract_scenarios(input_folder, output_folder): +def extract_scenarios(input_folder, output_folder, sc_num): """ Extract scenario names from Excel files in a folder and merge them with 'DataContainer_Sc_' prefix. :param input_folder: Path to the folder containing scenario files. :param output_folder: Path to the folder where the output files will be stored. + :param sc_num: Number of scenarios to extract. :return: List of merged scenario names. """ - folder_path = Path(input_folder) scenarios = [] - for file in folder_path.glob("*.xlsx"): - scenario_name = f"DataContainer_Sc_{file.stem}.pkl" - scenario_path = Path(output_folder) / Path(scenario_name) - scenarios.append(scenario_path) + if sc_num is None: + folder_path = Path(input_folder) + for file in folder_path.glob("*.xlsx"): + scenario_name = f"DataContainer_Sc_{file.stem}.pkl" + scenario_path = Path(output_folder) / Path(scenario_name) + scenarios.append(scenario_path) + + else: + folder_path = Path(output_folder) + files = list(folder_path.glob("*.pkl")) + files.sort(key=lambda f: f.stat().st_mtime) + files = files[-user_input[ParamNames.sc_num.value]:] + scenarios = files + return scenarios @@ -61,7 +69,9 @@ def cmodule_is_standalone(): AO_FOREST_INPUT_PATTERN = r"forest_D(\d{8}T\d{2}-\d{2}-\d{2})_(.*)" AO_PKL_RESULTS_INPUT_PATTERN = r"DataContainer_Sc_(.*)" - scenarios = extract_scenarios(TIMBADIR_INPUT, TIMBADIR_OUTPUT) + scenarios = extract_scenarios(input_folder=TIMBADIR_INPUT, + output_folder=TIMBADIR_OUTPUT, + sc_num=user_input[ParamNames.sc_num.value]) PKL_RESULTS_INPUT = scenarios # output paths for add-on c-module diff --git a/c_module/user_io/default_parameters.py b/c_module/user_io/default_parameters.py index b3dcabb..d30217e 100644 --- a/c_module/user_io/default_parameters.py +++ b/c_module/user_io/default_parameters.py @@ -2,6 +2,7 @@ # Overall parameters add_on_activated = False +sc_num = None # Activate the option of controling start and end year of the calculations if the module is used as standalone start_year = 2020 # Not activated @@ -27,6 +28,7 @@ user_input = { 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, From ee181d045a76b7c4043dab1d2ebe2869163606c3 Mon Sep 17 00:00:00 2001 From: tomke honkomp Date: Wed, 10 Sep 2025 18:09:42 +0200 Subject: [PATCH 06/15] Add dynamic scenario paths --- c_module/data_management/data_manager.py | 28 ++++++++++++++++++--- c_module/data_management/process_manager.py | 1 + c_module/logic/main.py | 1 + c_module/parameters/paths.py | 15 ----------- 4 files changed, 26 insertions(+), 19 deletions(-) diff --git a/c_module/data_management/data_manager.py b/c_module/data_management/data_manager.py index eaba50f..7232ae7 100644 --- a/c_module/data_management/data_manager.py +++ b/c_module/data_management/data_manager.py @@ -1,7 +1,8 @@ -from c_module.parameters.paths import (PKL_RESULTS_INPUT, ADD_INFO_CARBON_PATH, ADD_INFO_COUNTRY, FAOSTAT_DATA, - FRA_DATA, OUTPUT_FOLDER) +from c_module.parameters.paths import (INPUT_FOLDER, TIMBADIR_INPUT, ADD_INFO_CARBON_PATH, ADD_INFO_COUNTRY, + FAOSTAT_DATA, FRA_DATA, OUTPUT_FOLDER, TIMBADIR_OUTPUT) +from c_module.parameters.paths import cmodule_is_standalone, extract_scenarios from c_module.parameters.defines import (VarNames, ParamNames, CountryConstants) - +from c_module.user_io.default_parameters import user_input import pandas as pd from tqdm import tqdm from pathlib import Path @@ -9,6 +10,25 @@ class DataManager: + @staticmethod + def set_sc_paths(self): + if user_input[ParamNames.add_on_activated.value] or not cmodule_is_standalone(): + # input paths for add-on c-module + + scenarios = extract_scenarios(input_folder=TIMBADIR_INPUT, + output_folder=TIMBADIR_OUTPUT, + sc_num=user_input[ParamNames.sc_num.value]) + PKL_RESULTS_INPUT = scenarios + else: + # input paths for standalone c-module + scenarios = list((INPUT_FOLDER / Path("projection_data")).glob(r"*.pkl")) + if user_input[ParamNames.sc_num.value] is not None: + scenarios.sort(key=lambda f: f.stat().st_mtime) + scenarios = scenarios[-user_input[ParamNames.sc_num.value]:] + PKL_RESULTS_INPUT = scenarios + + self.sc_path = PKL_RESULTS_INPUT + @staticmethod def load_data(filepath, table_name, input_source): if input_source.lower() == "excel": @@ -60,7 +80,7 @@ def load_timba_data(self): if self.UserInput[ParamNames.read_in_pkl.value]: timba_data = {} sc_list = [] - for pkl_file in PKL_RESULTS_INPUT: + for pkl_file in self.sc_path: timba_data_tmp = DataManager.restore_from_pickle(pkl_file) sc_name = pkl_file.stem sc_list.append(sc_name) diff --git a/c_module/data_management/process_manager.py b/c_module/data_management/process_manager.py index de4db0c..43d818b 100644 --- a/c_module/data_management/process_manager.py +++ b/c_module/data_management/process_manager.py @@ -8,6 +8,7 @@ class ProcessManager: @staticmethod def run_readin_process(self): + DataManager.set_sc_paths(self) ProcessManager.readin_add_data_process(self) ProcessManager.readin_timba_process(self) ProcessManager.readin_carbon_process(self) diff --git a/c_module/logic/main.py b/c_module/logic/main.py index aa9fae0..ca33287 100644 --- a/c_module/logic/main.py +++ b/c_module/logic/main.py @@ -11,6 +11,7 @@ def __init__(self, UserInput): self.add_on_activated = UserInput[ParamNames.add_on_activated.value] self.time_stamp = dt.datetime.now().strftime("%Y%m%dT%H-%M-%S") self.logger = get_logger(None, add_on_activated=self.add_on_activated) + self.sc_path = [] self.sc_list = [] self.timba_data = {} self.add_data = {} diff --git a/c_module/parameters/paths.py b/c_module/parameters/paths.py index 7ac64a6..677a694 100644 --- a/c_module/parameters/paths.py +++ b/c_module/parameters/paths.py @@ -64,25 +64,10 @@ def cmodule_is_standalone(): INPUT_FOLDER = PACKAGEDIR / Path("data") / Path("input") if user_input[ParamNames.add_on_activated.value] or not cmodule_is_standalone(): - # input paths for add-on c-module - AO_RESULTS_INPUT_PATTERN = r"results_D(\d{8}T\d{2}-\d{2}-\d{2})_(.*)" - AO_FOREST_INPUT_PATTERN = r"forest_D(\d{8}T\d{2}-\d{2}-\d{2})_(.*)" - AO_PKL_RESULTS_INPUT_PATTERN = r"DataContainer_Sc_(.*)" - - scenarios = extract_scenarios(input_folder=TIMBADIR_INPUT, - output_folder=TIMBADIR_OUTPUT, - sc_num=user_input[ParamNames.sc_num.value]) - PKL_RESULTS_INPUT = scenarios - # output paths for add-on c-module OUTPUT_FOLDER = TIMBADIR_OUTPUT else: - # input paths for standalone c-module - RESULTS_INPUT = list((INPUT_FOLDER / Path("projection_data")).glob(r"*results.pkl")) - FOREST_INPUT = list((INPUT_FOLDER / Path("projection_data")).glob(r"*forest.pkl")) - PKL_RESULTS_INPUT = list((INPUT_FOLDER / Path("projection_data")).glob(r"*.pkl")) - # output paths for standalone c-module OUTPUT_FOLDER = PACKAGEDIR / Path("data") / Path("output") From 9035ce6aaf2e16c133dce7be6dfc8cc40d480a98 Mon Sep 17 00:00:00 2001 From: tomke honkomp Date: Fri, 12 Sep 2025 13:43:56 +0200 Subject: [PATCH 07/15] PEP8 fixe --- c_module/data_management/process_manager.py | 1 - 1 file changed, 1 deletion(-) diff --git a/c_module/data_management/process_manager.py b/c_module/data_management/process_manager.py index 43d818b..b4c54a5 100644 --- a/c_module/data_management/process_manager.py +++ b/c_module/data_management/process_manager.py @@ -20,7 +20,6 @@ def readin_add_data_process(self): self.logger.info("C-Module - Reading in additional data") DataManager.load_additional_data(self) - @staticmethod def readin_timba_process(self): self.logger.info("C-Module - Reading in input data") From 28b32d0d0e28372b0f9e766ffdee170ea49f6c93 Mon Sep 17 00:00:00 2001 From: tomke honkomp Date: Fri, 12 Sep 2025 14:02:17 +0200 Subject: [PATCH 08/15] Update key words and abstract --- CITATION.cff | 13 ++++++++----- pyproject.toml | 4 ++-- 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/CITATION.cff b/CITATION.cff index 7b052f6..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.1 date-released: '03.09.2025' diff --git a/pyproject.toml b/pyproject.toml index 3610f03..559c6a5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,11 +6,11 @@ build-backend = "setuptools.build_meta" name = "Carbon-Module" version = "1.1.1" authors = [{name = "Tomke Honkomp", email = "tomke.honkomp@thuenen.de"}] -description = "The C-Module tracks global carbon stocks and flows across pools of the forestry sector" +description = "The C-Module tracks global carbon stocks and stock changes across pools of the forestry sector, displaying them interactively" readme = "README.md" license = "AGPL-3.0-or-later" license-files = ["COPYING"] -keywords = ["c-module", "model", "carbon accounting", "thuenen institute", "economics of forests", "research"] +keywords = ["forestry", "climate change", "carbon accounting", "land use change", "climate change mitigation", "wood products", "forest sector modelling"] requires-python = ">=3.9" dependencies = [ From 8e2b374853d0661d9385727011afa83893be29ce Mon Sep 17 00:00:00 2001 From: tomke honkomp Date: Mon, 15 Sep 2025 08:47:31 +0200 Subject: [PATCH 09/15] Update README --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index a7e1b20..e653f02 100644 --- a/README.md +++ b/README.md @@ -223,6 +223,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 | From 2edfcf5ba4a5a1db83ae2ea53b58d92668c45e26 Mon Sep 17 00:00:00 2001 From: tomke honkomp Date: Mon, 15 Sep 2025 22:49:34 +0200 Subject: [PATCH 10/15] delete deprecated FAO data --- .../historical_data/20250703_faostat_data.csv | 85181 ---------------- .../historical_data/20250703_faostat_data.pkl | Bin 1160027 -> 0 bytes .../historical_data/20250703_fra_data.csv | 1181 - .../historical_data/20250703_fra_data.pkl | Bin 285 -> 0 bytes 4 files changed, 86362 deletions(-) delete mode 100644 c_module/data/input/historical_data/20250703_faostat_data.csv delete mode 100644 c_module/data/input/historical_data/20250703_faostat_data.pkl delete mode 100644 c_module/data/input/historical_data/20250703_fra_data.csv delete mode 100644 c_module/data/input/historical_data/20250703_fra_data.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;0;0;184;184;184;184;120;34;29;173;54;13;90;26;171;57;2523;2651;672;6125;718;2360 -137;'480;Mauritius;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;32;0;0;0;0;0;27;27;27;27;100;30;10;23;25;5;7;9;71;35;2019;1770;1873;2507;801;1428 -137;'480;Mauritius;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23144;24150;4500;2200;2600;2400;109;2000;12000;13300;8600;6500;7270;8123;8123;8123;2048;1826;1158;7192;2382;1283;4935;14252;2280;5080;4100;21140;23000;4674;7185;12418;3920 -137;'480;Mauritius;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3127;3323;2487;1461;655;1433;130;625;1277;1068;894;1494;2282;1332;1332;1332;1577;1421;845;1581;1172;889;1670;1744;1384;1951;2112;3129;3436;2408;1664;3059;604 -137;'480;Mauritius;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;1;1;0;0;0;0;184;184;184;184;120;34;29;173;54;13;90;26;171;57;2523;2651;672;6125;718;2360 -137;'480;Mauritius;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;27;27;27;27;100;30;10;23;25;5;7;9;71;35;2019;1770;1873;2507;801;1428 -137;'480;Mauritius;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;644;1555;2300;7000;400;2400;21;230;400;400;200;0;0;7365;7365;7365;1022;1712;1499;20022;12755;14316;5231;14904;1000;860;6360;10030;17000;15000;0;5199;0 -137;'480;Mauritius;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;214;392;249;138;1432;1;107;159;159;70;0;0;486;486;486;546;740;745;3345;3734;4766;2696;2631;436;396;1727;1734;1649;835;0;2211;0 -137;'480;Mauritius;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;298;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -137;'480;Mauritius;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -137;'480;Mauritius;1868;Sawlogs and veneer logs;5516;Production;m3;21000;24000;25000;14000;7000;9000;10000;10000;10000;10000;10000;10000;9000;3000;11300;14000;8000;13000;19900;13800;8500;6300;5900;1400;2200;2900;6740;7040;8300;6200;8800;7250;7950;6900;3990;5760;5760;8000;7000;5000;5000;4000;5000;5000;5500;7000;5800;5800;3800;3500;3200;1300;1000;140;120;1160;1160;1160;1160;1160;1160;1160;1160 -137;'480;Mauritius;1868;Sawlogs and veneer logs;5616;Import quantity;m3;;;;;;;;;;400;300;600;700;1000;600;700;1900;600;1400;700;600;300;300;400;200;300;500;500;10400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -137;'480;Mauritius;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;;;;;;;;;;42;29;70;102;295;166;251;693;210;633;317;177;165;140;190;67;180;332;129;2742;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -137;'480;Mauritius;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;4000;11000;10000;7000;3000;2000;3000;3000;3000;3000;3000;3000;3000;1000;3600;9000;4000;7500;11000;11600;5600;3800;5000;1000;1700;2300;6100;6400;7000;5900;8600;7100;7900;6600;3900;5700;5700;7000;6000;4000;4000;3000;4000;4500;5000;6000;4800;4800;3700;3000;3000;1100;700;100;70;880;880;880;880;880;880;880;880 -137;'480;Mauritius;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;17000;13000;15000;7000;4000;7000;7000;7000;7000;7000;7000;7000;6000;2000;7700;5000;4000;5500;8900;2200;2900;2500;900;400;500;600;640;640;1300;300;200;150;50;300;90;60;60;1000;1000;1000;1000;1000;1000;500;500;1000;1000;1000;100;500;200;200;300;40;50;280;280;280;280;280;280;280;280 -137;'480;Mauritius;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;;;;;;;;;;400;300;600;700;1000;600;700;1900;600;1400;700;600;300;300;400;200;300;500;500;10400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -137;'480;Mauritius;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;42;29;70;102;295;166;251;693;210;633;317;177;165;140;190;67;180;332;129;2742;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -137;'480;Mauritius;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -137;'480;Mauritius;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 -137;'480;Mauritius;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 -137;'480;Mauritius;1871;Other industrial roundwood;5516;Production;m3;;1000;1000;2000;2000;6000;6000;6000;6000;6000;6000;8000;9000;8000;9000;9000;8000;9700;4700;4000;4500;2700;1900;1100;2500;4400;4900;6300;6200;4900;5300;5200;4800;3900;2200;2500;2500;4000;6000;3000;3000;2100;3000;3000;2000;2800;2700;2700;5700;1500;1200;800;500;100;80;180;180;180;180;180;180;180;180 -137;'480;Mauritius;1871;Other industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;600;100;500;500;2200;1800;700;500;400;1000;900;1200;1200;4100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -137;'480;Mauritius;1871;Other industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;96;57;86;129;306;429;159;131;74;156;279;263;263;462;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -137;'480;Mauritius;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;;;;;;4000;4000;4000;4000;4000;4000;4000;4000;5000;5000;5000;5000;5000;500;400;700;1300;1100;300;1000;1400;1300;1100;1600;1700;2100;2000;2600;1200;1000;1300;1300;1000;1000;1000;500;100;500;300;400;1600;1500;1500;700;500;600;300;300;90;60;40;40;40;40;40;40;40;40 -137;'480;Mauritius;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;;1000;1000;2000;2000;2000;2000;2000;2000;2000;2000;4000;5000;3000;4000;4000;3000;4700;4200;3600;3800;1400;800;800;1500;3000;3600;5200;4600;3200;3200;3200;2200;2700;1200;1200;1200;3000;5000;2000;2500;2000;2500;2700;1600;1200;1200;1200;5000;1000;600;500;200;10;20;140;140;140;140;140;140;140;140 -137;'480;Mauritius;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;;;;;;;;;;;600;100;500;500;2200;1800;700;500;400;1000;900;1200;1200;4100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -137;'480;Mauritius;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;;;;;;;96;57;86;129;306;429;159;131;74;156;279;263;263;462;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -137;'480;Mauritius;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;100;100;100;100;100;100;400;300;300;50;50;50;50;40;2;2;3;3;3;3;3;3;3;3 -137;'480;Mauritius;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;34;34;20;0;0;0;0;0;0;0;135;78;556;625;158;540;131;136;189;887;299;207;177;192.94;295;229 -137;'480;Mauritius;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;17;17;4;0;0;0;0;0;0;0;63;59;107;95;120;60;81;101;98;408;173;124;116;130;194;158 -137;'480;Mauritius;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5;2;2;0.1;0.1;1;1;1;0;1;1;1;1 -137;'480;Mauritius;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;3;2;4;1;1;1;1;1;1;2;2;10;10 -137;'480;Mauritius;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;3000;5000;5000;4700;5000;5000;5000;6000;5500;5500;2750;3600;2280;1700;1200;500;500;520;520;520;520;520;520;520;520 -137;'480;Mauritius;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1501;600;50;300;0;0;244;244;244;244;500;177;26;120.06;5;3;4;7;9;43;244;4;6;22;31;6 -137;'480;Mauritius;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;377;150;16;72;0;0;10;10;10;10;55;33;21;22.65;9;6;6;7;21;34;138;9;9;16;44;16 -137;'480;Mauritius;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;2;2;2;2;2;4;4;4;0;0 -137;'480;Mauritius;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;5;5;5;5;5;21;21;21;0;1 -137;'480;Mauritius;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;1000;1500;1000;800;600;300;300;320;320;320;320;320;320;320;320 -137;'480;Mauritius;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1500;600;50;300;0;0;62;62;62;62;373;50;17;0.06;5;3;4;1;2;2;24;3;6;1;3;1 -137;'480;Mauritius;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;377;150;16;72;0;0;3;3;3;3;30;8;3;0.65;9;6;6;4;8;8;22;8;9;5;26;12 -137;'480;Mauritius;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;0;0 -137;'480;Mauritius;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;0;1 -137;'480;Mauritius;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2000;1700;2000;2000;2000;3000;2500;2500;1750;2100;1280;900;600;200;200;200;200;200;200;200;200;200;200 -137;'480;Mauritius;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;52;0;0;0;1;0;0;0;0;0;182;182;182;182;127;127;9;120;0;0;0;6;7;41;220;1;0;21;28;5 -137;'480;Mauritius;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;0;0;0;0;0;0;0;0;0;7;7;7;7;25;25;18;22;0;0;0;3;13;26;116;1;0;11;18;4 -137;'480;Mauritius;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;2;2;2;2;2;2;2;2;0;0 -137;'480;Mauritius;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;5;5;5;5;5;5;5;5;0;0 -137;'480;Mauritius;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -137;'480;Mauritius;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;38;26;22;16;16;16;429;532;475;660;736 -137;'480;Mauritius;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;12;13;16;10;10;10;158;169;148;252;255 -137;'480;Mauritius;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -137;'480;Mauritius;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -137;'480;Mauritius;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -137;'480;Mauritius;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;33;10;6;0;0;0;0;3;0;1;1 -137;'480;Mauritius;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;3;3;6;0;0;0;1;4;1;3;7 -137;'480;Mauritius;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -137;'480;Mauritius;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;5;16;16;16;16;16;429;529;475;659;735 -137;'480;Mauritius;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;9;10;10;10;10;10;157;165;147;249;248 -137;'480;Mauritius;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -137;'480;Mauritius;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -137;'480;Mauritius;1872;Sawnwood;5516;Production;m3;2400;4000;5000;5000;4000;6000;6000;6000;6000;6000;5000;5000;4500;1500;5600;7000;4000;6500;4500;4100;2800;3800;3100;400;1050;1400;3750;3850;4800;3600;5130;4190;4630;4070;2400;3400;3400;5000;5000;3000;3000;3000;3000;3000;3000;4000;3000;3000;2050;2090;1920;2000;1000;800;600;960;960;960;1000;1000;960;960;960 -137;'480;Mauritius;1872;Sawnwood;5616;Import quantity;m3;16800;12900;11000;12800;10000;9100;11000;7400;5700;5700;8000;6700;5900;10100;7200;10500;12300;10600;16400;8600;8600;5700;7800;7200;12200;7900;11400;13600;70900;49000;30300;30197;42500;28200;29700;28200;8211;42400;39600;37000;45300;42600;38115;64871;64871;51700;77084;25297;16946;50330;32820;40879;22212;29164;22750;45523;33026;52368;104126;75966;45958;70610;68297 -137;'480;Mauritius;1872;Sawnwood;5622;Import value;1000 USD;907;697;619;715;566;549;700;459;425;458;754;546;736;1698;1428;1720;2148;2419;3143;2722;2494;1560;2074;1839;2230;2914;2883;3455;4209;7967;8016;10772;14090;13484;13609;14861;2677;12231;14281;9464;10157;12135;11552;16228;16228;13180;26554;9881;7241;15478;15040;11992;10934;13771;10291;10461;11566;20525;21299;17494;17738;22481;22264 -137;'480;Mauritius;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;162;1052;300;300;300;673;154;0;0;0;0;0;960;960;960;960;273;203;3922;854;1401;573;451;314;2585;510;103;1351;240;60;0;10848 -137;'480;Mauritius;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;170;152;152;152;192;49;0;0;0;0;0;292;292;292;292;280;206;887;284;185;223;442;197;719;357;80;158;310;543;511;1751 -137;'480;Mauritius;1632;Sawnwood, coniferous;5516;Production;m3;400;1000;1000;4000;3000;1000;1000;1000;1000;1000;1500;1500;1500;500;1800;4500;2000;3800;2000;3400;1900;2300;2600;200;800;1200;3400;3500;4100;3400;5000;4100;4600;3900;2300;3300;3300;4000;4000;2000;2000;2000;2300;2300;2300;3500;2700;2700;2000;2000;1800;1000;500;500;400;870;870;870;200;200;870;870;870 -137;'480;Mauritius;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;100;100;100;100;200;100;100;100;100;200;400;200;500;200;500;800;500;300;700;100;100;100;100;200;300;1000;100;800;2200;3360;2600;3200;4700;1400;3543;5600;5000;9000;10300;12000;13515;27155;27155;15400;12584;5398;5404;15683;17230;24528;12018;17663;13749;36053;22298;24551;24126;23589;24419;43610;44000 -137;'480;Mauritius;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;4;4;4;25;40;10;10;10;8;55;90;72;176;100;134;436;116;76;229;36;17;17;28;70;64;265;31;225;106;614;700;1188;1313;766;426;2052;1964;1849;1804;2738;3380;4725;4725;3430;4646;3081;3341;4392;4766;3454;3793;5530;4177;4059;4225;5357;5211;5074;5575;7766;6556 -137;'480;Mauritius;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;31;36;0;0;0;0;0;0;0;0;0;18;18;3630;4;0;3;3;180;2443;148;0;1215;0;0;0;47 -137;'480;Mauritius;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;7;26;0;0;0;0;0;0;0;0;0;10;10;766;1;0;1;283;58;629;37;0;99;31;11;53;9 -137;'480;Mauritius;1633;Sawnwood, non-coniferous;5516;Production;m3;2000;3000;4000;1000;1000;5000;5000;5000;5000;5000;3500;3500;3000;1000;3800;2500;2000;2700;2500;700;900;1500;500;200;250;200;350;350;700;200;130;90;30;170;100;100;100;1000;1000;1000;1000;1000;700;700;700;500;300;300;50;90;120;1000;500;300;200;90;90;90;800;800;90;90;90 -137;'480;Mauritius;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;16800;12900;10900;12700;9900;9000;10800;7300;5600;5600;7900;6500;5500;9900;6700;10300;11800;9800;15900;8300;7900;5600;7700;7100;12100;7700;11100;12600;70800;48200;28100;26837;39900;25000;25000;26800;4668;36800;34600;28000;35000;30600;24600;37716;37716;36300;64500;19899;11542;34647;15590;16351;10194;11501;9001;9470;10728;27817;80000;52377;21539;27000;24297 -137;'480;Mauritius;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;907;697;615;711;562;524;660;449;415;448;746;491;646;1626;1252;1620;2014;1983;3027;2646;2265;1524;2057;1822;2202;2844;2819;3190;4178;7742;7910;10158;13390;12296;12296;14095;2251;10179;12317;7615;8353;9397;8172;11503;11503;9750;21908;6800;3900;11086;10274;8538;7141;8241;6114;6402;7341;15168;16088;12420;12163;14715;15708 -137;'480;Mauritius;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;162;1052;300;300;300;642;118;0;0;0;0;0;960;960;960;960;255;185;292;850;1401;570;448;134;142;362;103;136;240;60;0;10801 -137;'480;Mauritius;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;170;152;152;152;185;23;0;0;0;0;0;292;292;292;292;270;196;121;283;185;222;159;139;90;320;80;59;279;532;458;1742 -137;'480;Mauritius;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -137;'480;Mauritius;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;4;4;0;0;16;540;300;100;300;700;600;828;828;0;0;120;205;520;338;28;31;35;43;54;54;52;47;123;10;17;97 -137;'480;Mauritius;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;20;20;0;0;13;181;92;47;145;325;299;647;647;0;0;491;240;488;90;85;79;93;170;40;114;125;241;403;401;225;447 -137;'480;Mauritius;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;44;44;44;44;7;16;3;76;2;1;5;5;1;1;31;1;0;0;0;30 -137;'480;Mauritius;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;34;34;34;34;24;140;19;0;16;1;3;12;10;2;29;1;4;0;4;32 -137;'480;Mauritius;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;0;0;0 -137;'480;Mauritius;1873;Wood-based panels;5616;Import quantity;m3;700;600;800;800;1200;1000;1500;1400;1400;2200;1800;2400;2600;3200;3500;4100;4700;5300;4100;3000;2100;4000;3000;3300;4700;6500;6500;7800;9300;9400;8500;17595;16200;50800;26300;26100;13102;27935;35200;22900;42100;50500;53491;59725;59725;48000;61101;24754;20149;35757;38506;41142;37087;31495;25347;30118;39523;56989;53075;51809;74633.13;81498;79729 -137;'480;Mauritius;1873;Wood-based panels;5622;Import value;1000 USD;74;99;118;163;183;165;233;227;211;299;333;467;666;1094;985;1515;1652;2000;1985;1882;1327;1747;1325;1462;1906;1891;1891;4429;4815;5823;5934;7660;10507;10331;8962;8850;4431;7097;8611;6909;7505;8670;10245;11272;11272;11434;13135;22388;14178;15741;17175;17624;14535;16301;14376;15268;16670;27391;25269;23009;35007.14;38421;36409 -137;'480;Mauritius;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;100;0;0;0;0;87;0;0;0;0;0;3258;3258;3258;3258;630;400;23;297;579;522;556;221;96;105;128;31;207;162;116;710 -137;'480;Mauritius;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;40;0;0;0;0;21;0;0;0;0;0;623;623;623;623;482;251;30;34;469;593;242;191;102;94;101;46;311;303;232;78 -137;'480;Mauritius;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -137;'480;Mauritius;1640;Plywood and LVL;5616;Import quantity;m3;700;600;800;800;1200;1000;1500;1400;1400;2200;1800;2400;2600;3200;3500;4100;4700;5300;4100;3000;2100;4000;3000;3300;4700;6500;6500;7800;9300;9400;8500;15236;9600;42000;16000;16000;6939;12900;12200;10500;14700;18100;18000;7306;7306;18200;23200;11882;8793;20488;23290;24201;21914;16519;15563;22956;30485;49462;43446;46249;68630;74256;71453 -137;'480;Mauritius;1640;Plywood and LVL;5622;Import value;1000 USD;74;99;118;163;183;165;233;227;211;299;333;467;666;1094;985;1515;1652;2000;1985;1882;1327;1747;1325;1462;1906;1891;1891;4429;4815;5823;5934;6934;8327;7090;6453;6453;2590;4047;4674;3794;3866;4466;4500;2594;2594;5807;5230;14176;7626;7330;8632;9059;9406;10821;10227;11225;11940;23060;20688;20233;31139;33767;32167 -137;'480;Mauritius;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;100;0;0;0;0;58;0;0;0;0;0;325;325;325;325;241;5;3;287;563;395;500;191;55;78;101;20;25;15;25;691 -137;'480;Mauritius;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;40;0;0;0;0;16;0;0;0;0;0;107;107;107;107;240;3;11;19;458;363;120;120;19;53;60;31;78;10;22;37 -137;'480;Mauritius;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;327 -137;'480;Mauritius;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94 -137;'480;Mauritius;1646;Particle board and OSB (1961-1994);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -137;'480;Mauritius;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1579;1800;2800;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -137;'480;Mauritius;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;426;512;797;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -137;'480;Mauritius;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 -137;'480;Mauritius;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5200;5200;894;4233;6300;5500;4400;3700;4791;10878;10878;2800;1001;1031;974;652;631;3717;1483;2857;614;616;2122;2122;1513;1094;1889.3;2450;2610 -137;'480;Mauritius;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1530;1530;359;1115;1478;920;876;1013;1217;1784;1784;974;380;597;645;401;509;1867;790;1337;402;413;951;951;906;686;1443.57;1709;1601 -137;'480;Mauritius;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;0;0;0;0;0;612;612;612;612;304;304;2;2;0;67;28;2;2;0;0;0;22;54;34;4 -137;'480;Mauritius;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;0;103;103;103;103;200;200;1;2;0;115;55;4;4;0;0;1;30;91;37;10 -137;'480;Mauritius;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;82;0;0;0;0;436;860;886;19;19;19;18;0;0;0;63;63;5;4 -137;'480;Mauritius;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;0;0;0;0;400;599;456;13;13;13;38;0;0;0;21;21;3;3 -137;'480;Mauritius;1874;Fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -137;'480;Mauritius;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;780;4800;6000;5100;4900;5269;10802;16700;6900;23000;28700;30700;41459;41459;27000;36900;11841;10382;14181;13725;12338;13671;12100;9151;6528;6916;5405;8116;4403;4050.83;4787;5662 -137;'480;Mauritius;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;1668;2444;979;867;1482;1935;2459;2195;2763;3191;4528;6881;6881;4653;7525;7615;5907;7610;7435;6242;4326;4130;3734;3592;3779;3380;3675;2069;2403.57;2942;2638 -137;'480;Mauritius;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;17;0;0;0;0;0;2321;2321;2321;2321;85;91;18;8;16;60;28;28;39;27;27;11;160;93;57;15 -137;'480;Mauritius;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;3;0;0;0;0;0;413;413;413;413;42;48;18;13;11;115;67;67;79;41;41;14;203;202;173;31 -137;'480;Mauritius;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -137;'480;Mauritius;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;0;179;932;900;1400;2200;1800;1672;2277;2277;1000;1000;286;464;4829;4694;330;323;255;420;261;200;311;143;75;140;121;335 -137;'480;Mauritius;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112;0;379;401;398;354;610;569;774;1056;1056;500;500;306;373;2879;2785;558;523;274;508;320;241;350;199;168;159;134;383 -137;'480;Mauritius;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;25;25;25;25;8;8;8;8;8;0;0 -137;'480;Mauritius;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;65;65;65;65;13;13;13;13;13;2;2 -137;'480;Mauritius;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 -137;'480;Mauritius;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;190;698;800;1100;2200;2800;5178;19286;19286;9200;4700;6563;5494;6238;5984;7256;3505;3764;3801;5427;5669;4823;6545;3865;3726.83;3859;3815 -137;'480;Mauritius;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;236;465;579;468;504;633;1094;3298;3298;2053;2578;4156;3168;2853;2792;3648;2107;2439;2024;2992;3248;2940;2998;1736;2160.57;2460;1798 -137;'480;Mauritius;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;0;545;545;545;545;68;68;11;2;13;24;0;0;11;16;16;0;149;82;56;14 -137;'480;Mauritius;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;0;132;132;132;132;25;25;5;3;5;19;0;0;12;26;26;1;190;189;171;29 -137;'480;Mauritius;1650;Other fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -137;'480;Mauritius;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;454;2800;4000;4900;4900;4900;9172;15000;4400;18600;24100;23850;19896;19896;16800;31200;4992;4424;3114;3047;4752;9843;8081;4930;840;1047;271;1428;463;184;807;1512 -137;'480;Mauritius;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;188;436;620;867;867;867;1069;1482;1373;1649;1989;2660;2527;2527;2100;4447;3153;2366;1878;1858;2036;1696;1417;1202;280;290;90;478;165;84;348;457 -137;'480;Mauritius;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;15;0;0;0;0;0;1776;1776;1776;1776;17;20;4;3;0;11;3;3;3;3;3;3;3;3;1;1 -137;'480;Mauritius;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;2;0;0;0;0;0;281;281;281;281;17;17;7;4;0;31;2;2;2;2;2;0;0;0;0;0 -137;'480;Mauritius;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;326;2000;2000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -137;'480;Mauritius;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112;1232;1824;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -137;'480;Mauritius;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;4000;6000;7000;7000;8000;9000;9500;9500;9500;9500;9500;9500;9500 -137;'480;Mauritius;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;223;104;200;200;200;170;667;202;202;1000;900;1142;2295;2295;1000;1000;1227;865;2470;736;1712;882;1132;64;71;56;66;67;335;51;35;50 -137;'480;Mauritius;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117;65;166;166;166;104;464;162;162;647;683;811;908;908;526;834;790;707;2285;722;1171.16;585;614;47;110;103;87;90;66;43;44;66 -137;'480;Mauritius;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;325;113;180;412;933;474;443;724;1505;1610;2374;3265;2348;3159;4144;7459;6712;7812;7845;8758;9352;9248;7497;5988;7330.42;7581;6840 -137;'480;Mauritius;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;5;20;49;89;50;54;100;192;192;259;573;296;533;720;1136;958;1063;1080;1142;1467;1376;1125;822;1733.67;1991;1265 -137;'480;Mauritius;1878;Pulp for paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -137;'480;Mauritius;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;223;104;200;200;200;170;667;202;202;1000;900;1142;2043;2043;1000;1000;1033;756;1868;711;879;612;582;64;71;56;66;64;49;50;35;47 -137;'480;Mauritius;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117;65;166;166;166;104;464;162;162;647;683;811;880;880;526;834;745;662;2193;717;1032.16;531;503;47;110;103;87;89;40;43;44;65 -137;'480;Mauritius;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;36;36;36;36;41;41;41;41;41 -137;'480;Mauritius;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;20;20;20;20;23;23;23;23;23 -137;'480;Mauritius;1875;Wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -137;'480;Mauritius;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;223;104;200;200;200;170;667;202;202;1001;901;1143;2084;2084;1000;1000;1033;757;1301;711;821;612;582;64;64;49;49;98;135;135;121;132 -137;'480;Mauritius;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117;65;166;166;166;104;466;164;164;650;686;814;904;904;526;834;745;664;1269;712;730.16;531;503;47;47;40;40;45;151;151;153;170 -137;'480;Mauritius;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;36;36;36;36;36;36;36;36;36 -137;'480;Mauritius;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;20;20;20;20;20;20;20;20;20 -137;'480;Mauritius;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;22 -137;'480;Mauritius;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;39 -137;'480;Mauritius;1654;Mechanical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;;;;;;; -137;'480;Mauritius;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -137;'480;Mauritius;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;;;;;;; -137;'480;Mauritius;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;;;;;;; -137;'480;Mauritius;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118;118;118;0;0;0;0;;;;;;; -137;'480;Mauritius;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109;106;106;0;0;0;0;;;;;;; -137;'480;Mauritius;1656;Chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -137;'480;Mauritius;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;223;104;200;200;200;170;665;201;201;1000;900;1142;2024;2024;1000;1000;1033;756;1182;592;702;612;582;64;64;49;49;49;49;49;24;24 -137;'480;Mauritius;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117;65;166;166;166;104;463;161;161;647;683;811;865;865;526;834;745;662;1158;604;622.16;531;503;47;47;40;40;40;40;40;20;20 -137;'480;Mauritius;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;36;36;36;36;36;36;36;36;36 -137;'480;Mauritius;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;20;20;20;20;20;20;20;20;20 -137;'480;Mauritius;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -137;'480;Mauritius;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;35;35;35;2;2;24;24;24;24;24;24;24;24;24;24 -137;'480;Mauritius;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22;22;22;1;1;20;20;20;20;20;20;20;20;20;20 -137;'480;Mauritius;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -137;'480;Mauritius;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;223;103;200;200;200;170;664;200;200;1000;800;1118;2000;2000;1000;1000;998;721;1147;557;680;610;558;40;40;25;25;25;25;25;0;0 -137;'480;Mauritius;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117;64;166;166;166;104;461;159;159;647;625;790;844;844;526;834;723;640;1136;582;621;530;483;27;27;20;20;20;20;20;0;0 -137;'480;Mauritius;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;36;36;36;36;36;36;36;36;36 -137;'480;Mauritius;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;20;20;20;20;20;20;20;20;20 -137;'480;Mauritius;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -137;'480;Mauritius;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -137;'480;Mauritius;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;;;;;;; -137;'480;Mauritius;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;;;;;;; -137;'480;Mauritius;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;;;;;;; -137;'480;Mauritius;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;;;;;;; -137;'480;Mauritius;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;;;;;1;1;1;0;100;24;24;24;0;0;0;0;0;0;20;0;0;0;0;;;;;;; -137;'480;Mauritius;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;;;;;2;2;2;0;58;21;21;21;0;0;0;0;0;0;0.16;0;0;0;0;;;;;;; -137;'480;Mauritius;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -137;'480;Mauritius;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;60;60;0;0;0;1;1;1;1;0;0;0;0;0;0;49;86;86;86;86 -137;'480;Mauritius;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;39;39;0;0;0;2;2;2;2;0;0;0;0;0;0;5;111;111;111;111 -137;'480;Mauritius;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 -137;'480;Mauritius;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;0;0;0;19;19;0;0;0;0;568;1;59;0;0;0;7;7;17;15;0;1;0;1 -137;'480;Mauritius;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;0;0;0;15;15;0;0;0;0;926;7;304;0;0;0;63;63;47;49;0;3;2;6 -137;'480;Mauritius;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5 -137;'480;Mauritius;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3 -137;'480;Mauritius;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;2;1;1;5;2;2;3;2;3;4;3;5 -137;'480;Mauritius;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;4;3;3;7;4;4;9;7;8;9;7;14 -137;'480;Mauritius;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;15;15;15;15;15;15;15;15;0;0;0;0;0 -137;'480;Mauritius;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;9;9;9;9;9;9;1;1;1;1;1 -137;'480;Mauritius;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;4000;6000;7000;7000;8000;9000;9500;9500;9500;9500;9500;9500;9500 -137;'480;Mauritius;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;252;252;0;0;194;109;602;25;833;270;550;0;0;0;0;3;286;1;0;3 -137;'480;Mauritius;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;28;28;0;0;45;45;92;5;139;54;111;0;0;0;0;1;26;0;0;1 -137;'480;Mauritius;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;325;113;180;412;933;474;443;724;1505;1610;2374;3265;2348;3156;4141;7456;6709;7809;7809;8722;9316;9212;7456;5947;7289.42;7540;6799 -137;'480;Mauritius;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;5;20;49;89;50;54;100;192;192;259;573;296;530;717;1133;955;1060;1060;1122;1447;1356;1102;799;1710.67;1968;1242 -137;'480;Mauritius;1876;Paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -137;'480;Mauritius;1876;Paper and paperboard;5610;Import quantity;t;2100;1800;1900;1800;2300;2100;2200;1900;2300;2200;2300;3200;3500;4900;3700;4800;6300;6100;5200;5200;5200;5200;4900;4700;5600;8100;5700;17600;16200;17300;19600;21931;23600;30600;30500;36400;11722;40186;42200;40100;38600;38650;39284;47611;47611;40305;39400;42785;39263;45549;40058;52484;40977;40637;28441;40213;43635;44224;42171;30728;37951.14;36161;31921 -137;'480;Mauritius;1876;Paper and paperboard;5622;Import value;1000 USD;510;465;474;417;638;503;558;571;623;671;728;1101;1319;3172;3008;3195;4418;3976;3521;3660;3977;3872;3308;3124;3249;5020;5132;19616;13767;14866;16775;18076;18669;24229;25992;31728;8692;41820;41987;23034;22242;25747;26095;34417;34417;29683;32762;43577;33223;49202;45985;48499;42172;37370;21728;34296;38093;42033;39358;26302;36639.54;47241;35676 -137;'480;Mauritius;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;315;3;100;100;100;41;2405;1400;2900;1500;1500;1500;3398;3398;3398;3398;1993;2224;2163;1122;880;791;666;813;689;199;1923;290;357;245;365;176 -137;'480;Mauritius;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;262;3;133;133;133;57;3482;3734;5207;1473;1473;1473;2011;2011;2011;2011;2063;4406;1342;1146;955;841;788;554;647;260;1990;586;542;488;754;372 -137;'480;Mauritius;2042;Graphic papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -137;'480;Mauritius;2042;Graphic papers;5610;Import quantity;t;700;700;800;900;1100;1100;1400;1100;1200;1400;1100;1700;1800;2800;1600;2100;2600;3000;2100;2100;2700;2700;2400;2200;3100;5600;2700;7600;7800;8000;10300;12275;10900;12500;12500;11900;4922;16486;18300;21500;18500;20200;21028;27175;27175;23705;20700;27236;18517;17096;16637;19604;17496;16117;13957;14794;19126;15264;14758;8147;9296.28;9901;7683 -137;'480;Mauritius;2042;Graphic papers;5622;Import value;1000 USD;186;172;194;229;280;270;334;354;334;410;309;565;631;1902;1342;1573;1927;1876;1421;1560;2546;2441;1877;1693;1818;3589;1839;12936;7364;7608;9503;10367;8580;9874;11637;12213;4499;15103;14052;13335;12370;15752;15274;19680;19680;18939;19050;24110;15428;17896;17818;17509;15987;14886;10289;11386;16535;14846;14015;7030;8636.82;12687;8987 -137;'480;Mauritius;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;3;100;100;100;41;5;0;0;0;0;0;2141;2141;2141;2141;1446;1401;779;808;412;452;424;299;100;140;157;199;71;107;176;35 -137;'480;Mauritius;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;3;133;133;133;57;5;0;0;0;0;0;1195;1195;1195;1195;1356;1491;800;746;532;570;535;310;123;142;161;333;259;198;353;103 -137;'480;Mauritius;1671;Newsprint;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -137;'480;Mauritius;1671;Newsprint;5610;Import quantity;t;400;400;500;500;700;600;600;600;600;600;600;700;900;1000;600;800;1000;1400;500;500;1200;1400;1100;900;1400;2000;2100;2600;2100;2800;3700;3656;3400;4200;4200;3100;941;5486;4900;6700;5600;5400;5560;6310;6310;7455;6300;10415;7736;5870;6979;6839;7328;5063;6234;5831;3917;4867;3106;2060;2222.7;2297;1289 -137;'480;Mauritius;1671;Newsprint;5622;Import value;1000 USD;76;73;87;99;127;111;96;141;103;126;119;140;222;503;313;390;545;710;255;260;851;939;654;470;602;566;1076;1667;1457;1785;2035;2128;1970;2517;4280;2707;493;3348;2814;2985;3135;2823;2627;3218;3218;5159;4477;6908;5095;4208;5539;5096;5245;3429;3620;3413;2441;3563;2087;1108;938;2022;1205 -137;'480;Mauritius;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;0;0;0;0;0;1517;1517;1517;1517;978;861;415;169;93;111;210;100;27;47;42;2;2;4;1;1 -137;'480;Mauritius;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;0;0;0;0;0;717;717;717;717;610;770;317;146;86;104;220;68;17;42;30;2;1;2;2;2 -137;'480;Mauritius;1674;Printing and writing papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -137;'480;Mauritius;1674;Printing and writing papers;5610;Import quantity;t;300;300;300;400;400;500;800;500;600;800;500;1000;900;1800;1000;1300;1600;1600;1600;1600;1500;1300;1300;1300;1700;3600;600;5000;5700;5200;6600;8619;7500;8300;8300;8800;3981;11000;13400;14800;12900;14800;15468;20865;20865;16250;14400;16821;10781;11226;9658;12765;10168;11054;7723;8963;15209;10397;11652;6087;7073.59;7604;6394 -137;'480;Mauritius;1674;Printing and writing papers;5622;Import value;1000 USD;110;99;107;130;153;159;238;213;231;284;190;425;409;1399;1029;1183;1382;1166;1166;1300;1695;1502;1223;1223;1216;3023;763;11269;5907;5823;7468;8239;6610;7357;7357;9506;4006;11755;11238;10350;9235;12929;12647;16462;16462;13780;14573;17202;10333;13688;12279;12413;10742;11457;6669;7973;14094;11283;11928;5922;7698.82;10665;7782 -137;'480;Mauritius;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;3;100;100;100;41;;;;;;;624;624;624;624;468;540;364;639;319;341;214;199;73;93;115;197;69;103;175;34 -137;'480;Mauritius;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;3;133;133;133;57;;;;;;;478;478;478;478;746;721;483;600;446;466;315;242;106;100;131;331;258;196;351;101 -137;'480;Mauritius;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 -137;'480;Mauritius;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;300;100;100;600;135;376;376;150;1900;4111;2995;3097;1245;847;511;510;282;275;383;629;352;331;211;236;384 -137;'480;Mauritius;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;227;266;54;60;577;139;297;297;102;1895;4105;2773;3631;1621;881;543;622;271;276;440;708;378;343;259;351;473 -137;'480;Mauritius;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;103;283;38;172;13;181;187;121;2;66;66;96;40;27;39;9 -137;'480;Mauritius;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;109;408;53;79;42;265;239;138;29;71;71;209;77;78;155;39 -137;'480;Mauritius;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 -137;'480;Mauritius;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6400;9300;9300;8500;8600;8743;12061;12061;7100;4200;3175;2418;2972;3515;5010;3977;3886;2148;3604;5777;4679;6578;3097;4167.86;4430;2810 -137;'480;Mauritius;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7723;6929;6477;6012;7293;7468;9515;9515;6458;4806;3444;2490;3928;4413;5504;4425;4047;1943;3213;5339;5022;6345;2715;4071.83;5830;3302 -137;'480;Mauritius;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;321;321;321;321;107;89;96;206;151;82;4;44;27;23;7;15;2;70;31;8 -137;'480;Mauritius;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;246;246;246;246;180;98;121;185;167;101;7;48;33;19;9;28;4;101;59;13 -137;'480;Mauritius;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -137;'480;Mauritius;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4300;3800;5400;4300;5600;6590;8428;8428;9000;8300;9535;5368;5157;4898;6908;5680;6658;5293;5084;9049;5089;4722;2659;2694.72;2938;3200 -137;'480;Mauritius;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3805;4043;3819;3163;5059;5040;6650;6650;7220;7872;9653;5070;6129;6245;6028;5774;6788;4455;4484;8315;5553;5205;2864;3368;4484;4007 -137;'480;Mauritius;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;299;299;299;299;258;168;230;261;155;78;23;34;44;4;42;86;27;6;105;17 -137;'480;Mauritius;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;229;229;229;229;457;215;309;336;237;100;69;56;44;10;51;94;177;17;137;49 -137;'480;Mauritius;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -137;'480;Mauritius;1675;Other paper and paperboard;5610;Import quantity;t;1400;1100;1100;900;1200;1000;800;800;1100;800;1200;1500;1700;2100;2100;2700;3700;3100;3100;3100;2500;2500;2500;2500;2500;2500;3000;10000;8400;9300;9300;9656;12700;18100;18000;24500;6800;23700;23900;18600;20100;18450;18256;20436;20436;16600;18700;15549;20746;28453;23421;32880;23481;24520;14484;25419;24509;28960;27413;22581;28654.86;26260;24238 -137;'480;Mauritius;1675;Other paper and paperboard;5622;Import value;1000 USD;324;293;280;188;358;233;224;217;289;261;419;536;688;1270;1666;1622;2491;2100;2100;2100;1431;1431;1431;1431;1431;1431;3293;6680;6403;7258;7272;7709;10089;14355;14355;19515;4193;26717;27935;9699;9872;9995;10821;14737;14737;10744;13712;19467;17795;31306;28167;30990;26185;22484;11439;22910;21558;27187;25343;19272;28002.72;34554;26689 -137;'480;Mauritius;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;271;0;0;0;0;0;2400;1400;2900;1500;1500;1500;1257;1257;1257;1257;547;823;1384;314;468;339;242;514;589;59;1766;91;286;138;189;141 -137;'480;Mauritius;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;221;0;0;0;0;0;3477;3734;5207;1473;1473;1473;816;816;816;816;707;2915;542;400;423;271;253;244;524;118;1829;253;283;290;401;269 -137;'480;Mauritius;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -137;'480;Mauritius;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;2400;2400;2200;3000;2100;2586;2586;3000;3500;2848;3459;7991;2848;3974;4661;4505;4167;4558;4747;4847;5269;4551;4360.01;5464;5962 -137;'480;Mauritius;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5414;4329;2095;2021;2939;2350;2845;2845;3568;4545;4280;4497;16589;11100;6001;12318;6334;5023;6097;6300;6869;7282;6094;7511.81;10347;9306 -137;'480;Mauritius;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;400;400;0;0;0;2;2;2;2;19;7;43;7;16;1;25;45;9;12;15;21;11;10;10;33 -137;'480;Mauritius;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;246;854;854;0;0;0;3;3;3;3;46;17;99;19;34;4;39;53;15;27;21;37;14;25;30;57 -137;'480;Mauritius;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -137;'480;Mauritius;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9300;10000;15000;16800;14650;14966;15344;15344;13600;15200;11585;15713;19543;20199;23783;18188;20003;9566;19370;19602;24045;22118;17989;24260.85;20723;18250 -137;'480;Mauritius;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5934;6986;6294;6332;5582;6283;9512;9512;7176;9167;11725;10337;14400;16388;18863;12793;16038;5439;14677;15034;20164;17939;13076;20418.91;23985;17302 -137;'480;Mauritius;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;800;2300;1500;1500;1500;1143;1143;1143;1143;486;623;1302;301;443;323;202;442;451;43;1745;68;270;105;163;100 -137;'480;Mauritius;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1208;1699;3172;1473;1473;1473;690;690;690;690;536;1675;361;366;365;246;182;140;370;80;1796;207;260;152;326;193 -137;'480;Mauritius;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;1400;1100;1100;900;1200;1000;800;800;1100;800;1200;1500;1700;2100;2100;2700;3700;3100;3100;3100;2500;2500;2500;2500;2500;2500;3000;10000;8400;9300;9300;9656;12700;18100;18000;24500;6800;;;;;;;;;;;;;;;;;;;;;;;;;; -137;'480;Mauritius;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;324;293;280;188;358;233;224;217;289;261;419;536;688;1270;1666;1622;2491;2100;2100;2100;1431;1431;1431;1431;1431;1431;3293;6680;6403;7258;7272;7709;10089;14355;14355;19515;4193;;;;;;;;;;;;;;;;;;;;;;;;;; -137;'480;Mauritius;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;271;0;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;; -137;'480;Mauritius;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;221;0;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;; -137;'480;Mauritius;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -137;'480;Mauritius;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6100;6300;12600;14300;13600;8372;6062;6062;9100;7700;3035;4690;6969;6422;10809;4102;3414;1190;1378;3903;2582;3877;4820;10483.39;10835;8734 -137;'480;Mauritius;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3287;4026;4350;4420;4434;3128;3759;3759;3823;3417;2342;2231;3695;4091;6431;2131;1914;707;887;2151;1660;2201;2466;7151.3;10203;6257 -137;'480;Mauritius;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;800;800;0;0;0;4;4;4;4;15;346;1;81;213;12;0;2;401;4;1380;22;43;5;1;8 -137;'480;Mauritius;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1208;1699;1699;0;0;0;3;3;3;3;10;290;6;50;84;9;1;19;257;5;1346;20;25;10;2;8 -137;'480;Mauritius;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -137;'480;Mauritius;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1700;1900;1600;1400;300;1032;3804;3804;2000;2900;4167;3080;1531;787;1538;334;922;953;1582;953;1227;1234;870;1731.64;1418;1474 -137;'480;Mauritius;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1359;1459;1205;1131;354;648;2359;2359;1333;1912;3722;2247;1196;888;3411;337;2572;758;2833;2454;2808;3256;1951;3298.34;3514;3381 -137;'480;Mauritius;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1500;1500;1500;1500;89;89;89;89;18;45;45;1;25;4;52;1;14;23;249;32;15;10;21;26 -137;'480;Mauritius;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1473;1473;1473;1473;54;54;54;54;41;54;55;8;30;1;15;13;20;26;260;111;45;40;132;63 -137;'480;Mauritius;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -137;'480;Mauritius;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1300;1600;700;1000;700;5512;4561;4561;2500;4600;4200;7793;10790;12985;11303;13716;15629;7301;16330;14464;20040;16891;12141;11904.83;8296;7897 -137;'480;Mauritius;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1097;1274;690;726;757;2470;2826;2826;2020;3838;5494;5677;9342;11399;8847;10262;11502;3876;10863;10208;15540;12398;8545;9823.27;10075;7505 -137;'480;Mauritius;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;774;774;774;774;448;217;1250;213;199;301;143;435;30;10;110;14;212;90;56;63 -137;'480;Mauritius;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;467;467;467;467;476;1312;289;297;240;225;158;96;71;27;168;76;190;102;111;118 -137;'480;Mauritius;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -137;'480;Mauritius;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;100;100;50;50;917;917;0;0;183;150;253;5;133;36;38;122;80;282;196;116;158;141;174;145 -137;'480;Mauritius;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;191;227;49;55;37;37;568;568;0;0;167;182;167;10;174;63;50;98;94;221;156;84;114;146;193;159 -137;'480;Mauritius;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;276;276;276;276;5;15;6;6;6;6;7;4;6;6;6;0;0;0;85;3 -137;'480;Mauritius;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;166;166;166;166;9;19;11;11;11;11;8;12;22;22;22;0;0;0;81;4 -137;'480;Mauritius;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 -137;'480;Mauritius;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11400;11500;1200;1100;800;1190;2506;2506;0;0;1116;1574;919;374;5123;632;12;751;1491;160;68;26;41;34;73;26 -137;'480;Mauritius;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15369;16620;1310;1519;1474;2188;2380;2380;0;0;3462;2961;317;679;6126;1074;112;977;2136;224;154;122;102;72;222;81 -137;'480;Mauritius;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1800;200;200;0;0;0;112;112;112;112;42;193;39;6;9;15;15;27;129;4;6;2;5;23;16;8 -137;'480;Mauritius;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2023;1181;1181;0;0;0;123;123;123;123;125;1223;82;15;24;21;32;51;139;11;12;9;9;113;45;19 -137;'480;Mauritius;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23227;30602;28246;20757;22046;23614;28624 -137;'480;Mauritius;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2807;4289;4380;2579;2741;2348;3061 -137;'480;Mauritius;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1578;771;772;433;302;423;583 -137;'480;Mauritius;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;19;19;7;7;18 -137;'480;Mauritius;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;252;398;157;92;122;129 -137;'480;Mauritius;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;1;1;1;1;1 -137;'480;Mauritius;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1278;519;374;276;210;301;454 -137;'480;Mauritius;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1;18;18;6;6;17 -137;'480;Mauritius;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;843;527;798;319;347;509;515 -137;'480;Mauritius;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125;18;22;1;6;3;67 -137;'480;Mauritius;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;998;889;1048;1178;824;1004;1407 -137;'480;Mauritius;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1401;1654;1239;1203;1440;1345;2113 -137;'480;Mauritius;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2126;1750;2064;1894;2096;1456;2869 -137;'480;Mauritius;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115;58;23;37;16;28;37 -137;'480;Mauritius;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;186;20 -137;'480;Mauritius;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;262;355 -137;'480;Mauritius;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;56 -137;'480;Mauritius;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;62 -137;'480;Mauritius;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23 -137;'480;Mauritius;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;39 -137;'480;Mauritius;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15672;16221;21547;15309;16518;17698;21580 -137;'480;Mauritius;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;832;418;557;385;461;805;678 -137;'480;Mauritius;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;190;8397;114;54;131;47;96 -137;'480;Mauritius;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1820;2047;1903;1570;1828;2477;1574 -137;'480;Mauritius;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;332;2139;2520;934;811;160;148 -137;'480;Mauritius;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28402;31443;31242;25646;32554;41887;36887 -137;'480;Mauritius;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8725;8999;8525;7929;9219;10016;9365 -137;'480;Mauritius;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;132;290;139;47;102;35;66 -137;'480;Mauritius;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;13;22;22;0;0;22 -137;'480;Mauritius;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3593;4016;3649;2830;3040;5402;4359 -137;'480;Mauritius;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;139;224;170;677;401;474;149 -137;'480;Mauritius;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2494;2803;3154;2510;2582;3832;3823 -137;'480;Mauritius;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;433;378;354;214;146;215;267 -137;'480;Mauritius;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7468;9140;8873;7607;11220;14282;12727 -137;'480;Mauritius;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4198;3673;4095;4043;5247;5892;6321 -137;'480;Mauritius;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14715;15194;15427;12652;15610;18336;15912 -137;'480;Mauritius;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3950;4711;3884;2973;3425;3435;2606 -270;'175;Mayotte;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10605;10605;10605;10605;10605;10605;10605 -270;'175;Mayotte;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;10;10 -270;'175;Mayotte;1861;Roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36500;36500;36500;36500;36500;37038;37038;37038;36733;36691;29294;29055;29245;29025;29105;26683;26650;26650;26650;26650;26650;26650;26650;26650;26650;26650;26650;26650;26650;26650;26650;26650;26650;26650 -270;'175;Mayotte;1863;Roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36500;36500;36500;36500;36500;37038;37038;37038;36733;36691;29294;29055;29245;29025;29105;26683;26650;26650;26650;26650;26650;26650;26650;26650;26650;26650;26650;26650;26650;26650;26650;26650;26650;26650 -270;'175;Mayotte;1864;Wood fuel;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36500;36500;36500;36500;36500;36500;36500;36500;36500;36500;28900;28900;28900;28900;28900;26500;26500;26500;26500;26500;26500;26500;26500;26500;26500;26500;26500;26500;26500;26500;26500;26500;26500;26500 -270;'175;Mayotte;1628;Wood fuel, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36500;36500;36500;36500;36500;36500;36500;36500;36500;36500;28900;28900;28900;28900;28900;26500;26500;26500;26500;26500;26500;26500;26500;26500;26500;26500;26500;26500;26500;26500;26500;26500;26500;26500 -270;'175;Mayotte;1865;Industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;538;538;538;233;191;394;155;345;125;205;183;150;150;150;150;150;150;150;150;150;150;150;150;150;150;150;150;150;150 -270;'175;Mayotte;1867;Industrial roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;538;538;538;233;191;394;155;345;125;205;183;150;150;150;150;150;150;150;150;150;150;150;150;150;150;150;150;150;150 -270;'175;Mayotte;1868;Sawlogs and veneer logs;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;538;538;538;233;191;394;155;345;125;205;183;150;150;150;150;150;150;150;150;150;150;150;150;150;150;150;150;150;150 -270;'175;Mayotte;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;538;538;538;233;191;394;155;345;125;205;183;150;150;150;150;150;150;150;150;150;150;150;150;150;150;150;150;150;150 -270;'175;Mayotte;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3911;3911;3911;3911;3911;3911;3911 -270;'175;Mayotte;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;8;8;8 -270;'175;Mayotte;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106;106;106;106;106;106;106 -270;'175;Mayotte;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1 -270;'175;Mayotte;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;36;36;36;36;36;36 -270;'175;Mayotte;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1 -270;'175;Mayotte;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;70;70;70;70;70;70 -270;'175;Mayotte;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6 -270;'175;Mayotte;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -270;'175;Mayotte;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111;111;111;111;111;111;111 -270;'175;Mayotte;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -270;'175;Mayotte;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1066;1066;1066;1066;1066;1066;1066 -270;'175;Mayotte;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5 -270;'175;Mayotte;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2315;2315;2315;2315;2315;2315;2315 -270;'175;Mayotte;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2 -270;'175;Mayotte;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;307;307;307;307;307;307;307 -270;'175;Mayotte;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -270;'175;Mayotte;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6694;6694;6694;6694;6694;6694;6694 -270;'175;Mayotte;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2 -270;'175;Mayotte;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3 -270;'175;Mayotte;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;50;50;50;50;50;50 -270;'175;Mayotte;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1 -270;'175;Mayotte;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4542;4542;4542;4542;4542;4542;4542 -270;'175;Mayotte;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -270;'175;Mayotte;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;670;670;670;670;670;670;670 -270;'175;Mayotte;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1 -270;'175;Mayotte;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1429;1429;1429;1429;1429;1429;1429 -270;'175;Mayotte;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -138;'484;Mexico;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8495762;9031629;8635377;7432269;9846243.94;11084171;9870379 -138;'484;Mexico;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3088093;3333011;3304450;3507062;4846573.53;5041564;4813027 -138;'484;Mexico;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;24904;27108;27812;31768;48037;56770;54920;52300;67995;94928;72344;66388;82788;199543;181267;266411;348771;202433;267298;655409;664010;668173;434009;289842;369564;432388;528869;663729;708690;693746;774767;1181561;1153309;1306779;1371298;1338344;1470208;1480407;2105466;2728703;2042255;2305983;2712825;3284668;3601601;4280286;4285738;4650688;3539866;4448952;4627280;4787936;4955057;5174957;4945483;5116439;5467415;5834876;5384435;4608090;6401440.94;7265827;6087767 -138;'484;Mexico;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;2067;3181;2141;3030;3372;4358;3604;5626;7856;7346;7064;7646;7041;3864;7615;4059;8477;9025;8963;15253;10099;15248;27461;27721;23397;22359;111751;174465;164011;151870;134600;238092;130971;132265;300287;400269;444553;319124;281218;267075;187212;180818;259579;312520;309211;356377;333906;416950;283385;342226.6;440179.6;456793;488832;499871.11;473431;531750;542795;628718;408865;437639;653603.53;561001;489524 -138;'484;Mexico;1861;Roundwood;5516;Production;m3;26304014;27211155;27841903;28431693;28938464;28862756;29979203;30369649;30910531;31600987;31670699;32257315;32971597;34050759;34817445;35535516;36130434;34407879;35455138;35869875;35944777;36870151;37752357;38718628;39412246;39799921;40630915;40992946;42395336;41951305;41803851;41954787;41313796;41634015;42540304;43335478;44278080;45029925;45437888;45665508;45156319;43966958;44370427;45180734;44628877;44651787;44905800;45119100;43878445;43869976;43714414;44233860;44198312;44203772;44257238;44856432;46643813;46256381;46173135;46090075;47708800;47810726;47724852 -138;'484;Mexico;1861;Roundwood;5616;Import quantity;m3;40800;37200;34500;17600;54400;33700;33100;25600;28300;57800;32400;11200;14900;7400;15900;17500;5400;5400;37800;68400;30400;25100;25100;18300;14100;12300;16600;13000;13600;37954;23748;22220;35880;74100;50600;25800;74400;22100;34100;36100;48000;63335;76000;193000;157987;186791;164455;46899;31558;25690;24150;40970;29758;25901;19246;4857;2565;11156;47126;44935;52141;59486;56456 -138;'484;Mexico;1861;Roundwood;5622;Import value;1000 USD;855;935;1155;519;2226;1421;1779;1327;1724;3550;1418;385;992;964;2949;3992;985;985;7367;15473;7831;3582;3582;2123;2709;909;1068;1253;1051;4009;4027;3582;5431;13555;10009;5737;10876;4135;8328;8039;12000;9629;16309;53596;38788;37112;30180;12546;9104;7062;5363;10511;5992;4872;5326;1381;1724;4117;11400;12403;15398;19127;28986 -138;'484;Mexico;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;500;100;100;600;2100;1400;1600;2700;1000;4700;2800;2800;2800;2800;2800;16987;8623;9901;6249;8249;23400;12600;7100;5900;11500;17500;15000;31905;16356;15903;15885;21022;22296;36335;15106;20126;27253;57777;57177;134672;55976;40127;38830;58392;52107;38232;157790.28;125369;164655 -138;'484;Mexico;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;44;2;15;100;370;250;291;251;87;88;33;33;33;33;33;1147;699;711;1182;1296;2749;1058;736;693;1300;969;1806;4468;2927;2599;2964;3482;4749;4767;4025;5315;12939;21151;17612;19072;18135;10886;10461;23186;13123;15329;74406.36;76680;86093 -138;'484;Mexico;1862;Roundwood, coniferous;5516;Production;m3;9483429;10131383;10577619;10971569;11246612;11053012;11808759;11891405;12331683;12684833;12473369;12899667;13269365;13955331;14329553;14792194;15135890;13481031;14292814;14629679;14580937;15070347;15229345;15915852;16318154;16142693;16596911;16611042;17957774;17376877;17082951;17045445;16130968;16309043;16456668;16920034;17642122;18269281;18492480;18560776;18075527;16761526;16927775;17684274;16673025;16847801;17183600;17101500;16075409;16056371;15965003;16441637;16396273;16397911;16370551;16772406;18006316;17677283;17652306;17627384;18441498;19306672;19280906 -138;'484;Mexico;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1741;6042;41706;41714;48515;51192;53598 -138;'484;Mexico;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1190;1913;9097;10848;13731;13642;27482 -138;'484;Mexico;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;563;1507;11467;8171;17212.07;12960;10146 -138;'484;Mexico;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;135;210;1943;1879;3772.43;2885;2337 -138;'484;Mexico;1863;Roundwood, non-coniferous;5516;Production;m3;16820585;17079772;17264284;17460124;17691852;17809744;18170444;18478244;18578848;18916154;19197330;19357648;19702232;20095428;20487892;20743322;20994544;20926848;21162324;21240196;21363840;21799804;22523012;22802776;23094092;23657228;24034004;24381904;24437562;24574428;24720900;24909342;25182828;25324972;26083636;26415444;26635958;26760644;26945408;27104732;27080792;27205432;27442652;27496460;27955852;27803986;27722200;28017600;27803036;27813605;27749411;27792223;27802039;27805861;27886687;28084026;28637497;28579098;28520829;28462691;29267302;28504054;28443946 -138;'484;Mexico;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;824;5114;5420;3221;3626;8294;2858 -138;'484;Mexico;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;534;2204;2303;1555;1667;5485;1504 -138;'484;Mexico;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38267;56885;40640;30061;140578.2;112409;154509 -138;'484;Mexico;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10326;22976;11180;13450;70633.93;73795;83756 -138;'484;Mexico;1864;Wood fuel;5516;Production;m3;23708014;23981155;24241903;24531693;24818464;25109756;25402203;25697649;25998531;26298987;26810699;27118315;27430597;27823759;28204445;28656516;29135434;29325879;29425138;29524675;29692177;30343451;31176657;31541628;31939246;32770921;33234915;33731946;34084336;34371305;34604851;34909787;35364796;35585015;36480304;36791478;36965080;37098925;37332888;37560508;37736319;37912958;38090427;38268734;38447877;38520787;38599800;38676100;38752445;38828976;38834414;38839860;38845312;38850772;38856238;38772432;38688813;38605381;38522135;38439075;38352800;38266726;38180852 -138;'484;Mexico;1864;Wood fuel;5616;Import quantity;m3;8400;8000;12600;6600;3500;900;500;1300;300;400;6000;5900;3500;1100;500;700;700;700;700;700;2300;800;800;2600;2500;2500;2500;2500;2500;12000;11400;11000;5480;8500;6900;500;100;100;0;4000;0;0;0;0;2000;2000;2000;2000;112;26;12;3976;2513;4615;449;810;1;1;140;103;103;421;421 -138;'484;Mexico;1864;Wood fuel;5622;Import value;1000 USD;97;113;154;86;25;10;12;13;5;6;29;24;14;19;11;49;49;49;49;49;485;36;36;31;14;14;14;14;14;530;525;300;239;527;277;21;29;77;0;113;0;0;0;0;100;75;75;75;19;31;8;1086;1105;1052;49;76;1;1;176;181;181;640;640 -138;'484;Mexico;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;500;100;100;600;2100;1400;1600;2700;1000;4700;2800;2800;2800;2800;2800;8400;3800;3435;1400;2500;700;5300;5700;4900;6300;7900;7000;7000;7000;7000;7000;7000;7000;7000;6493;8392;10821;37535;37554;49928;9608;15850;15437;18474;22322;9754;16940.28;13956;15131 -138;'484;Mexico;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;44;2;15;100;370;250;291;251;87;88;33;33;33;33;33;348;188;204;105;141;39;295;530;349;272;339;300;300;300;300;300;300;300;300;384;369;507;1715;2230;3062;1253;1058;1923;2839;3722;1744;1933.36;1666;2055 -138;'484;Mexico;1627;Wood fuel, coniferous;5516;Production;m3;7113429;7195383;7273619;7360569;7446612;7534012;7621759;7710405;7800683;7890833;8044369;8136667;8230365;8348331;8462553;8598194;8741890;8799031;8828814;8858679;8908937;9104347;9354345;9463852;9583154;9832693;9971911;10121042;10226774;10312877;10382951;10474445;10610968;10677043;10945668;11039034;11091122;11131281;11201480;11269776;11322527;11375526;11428775;11482274;11536025;11555801;11581600;11604500;11627409;11650371;11652003;11653637;11655273;11656911;11658551;11633406;11608316;11583283;11558306;11533384;11507498;11481672;11455906 -138;'484;Mexico;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;65;65;31;31 -138;'484;Mexico;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;99;99;44;44 -138;'484;Mexico;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9959;4611;7942.07;7035;4221 -138;'484;Mexico;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1592;1037;962.42;1077;529 -138;'484;Mexico;1628;Wood fuel, non-coniferous;5516;Production;m3;16594585;16785772;16968284;17171124;17371852;17575744;17780444;17987244;18197848;18408154;18766330;18981648;19200232;19475428;19741892;20058322;20393544;20526848;20596324;20665996;20783240;21239104;21822312;22077776;22356092;22938228;23263004;23610904;23857562;24058428;24221900;24435342;24753828;24907972;25534636;25752444;25873958;25967644;26131408;26290732;26413792;26537432;26661652;26786460;26911852;26964986;27018200;27071600;27125036;27178605;27182411;27186223;27190039;27193861;27197687;27139026;27080497;27022098;26963829;26905691;26845302;26785054;26724946 -138;'484;Mexico;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;65;38;38;390;390 -138;'484;Mexico;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;93;82;82;596;596 -138;'484;Mexico;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15437;18474;12363;5143;8998.2;6921;10910 -138;'484;Mexico;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1923;2839;2130;707;970.93;589;1526 -138;'484;Mexico;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;8400;8000;12600;6600;3500;900;500;1300;300;400;6000;5900;3500;1100;500;700;700;700;700;700;2300;800;800;2600;2500;2500;2500;2500;2500;12000;11400;11000;5480;8500;6900;500;100;100;0;4000;0;0;0;0;2000;2000;2000;2000;112;26;12;3976;2513;4615;449;810;;;;;;; -138;'484;Mexico;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;97;113;154;86;25;10;12;13;5;6;29;24;14;19;11;49;49;49;49;49;485;36;36;31;14;14;14;14;14;530;525;300;239;527;277;21;29;77;0;113;0;0;0;0;100;75;75;75;19;31;8;1086;1105;1052;49;76;;;;;;; -138;'484;Mexico;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;500;100;100;600;2100;1400;1600;2700;1000;4700;2800;2800;2800;2800;2800;8400;3800;3435;1400;2500;700;5300;5700;4900;6300;7900;7000;7000;7000;7000;7000;7000;7000;7000;6493;8392;10821;37535;37554;49928;9608;15850;;;;;;; -138;'484;Mexico;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;44;2;15;100;370;250;291;251;87;88;33;33;33;33;33;348;188;204;105;141;39;295;530;349;272;339;300;300;300;300;300;300;300;300;384;369;507;1715;2230;3062;1253;1058;;;;;;; -138;'484;Mexico;1865;Industrial roundwood;5516;Production;m3;2596000;3230000;3600000;3900000;4120000;3753000;4577000;4672000;4912000;5302000;4860000;5139000;5541000;6227000;6613000;6879000;6995000;5082000;6030000;6345200;6252600;6526700;6575700;7177000;7473000;7029000;7396000;7261000;8311000;7580000;7199000;7045000;5949000;6049000;6060000;6544000;7313000;7931000;8105000;8105000;7420000;6054000;6280000;6912000;6181000;6131000;6306000;6443000;5126000;5041000;4880000;5394000;5353000;5353000;5401000;6084000;7955000;7651000;7651000;7651000;9356000;9544000;9544000 -138;'484;Mexico;1865;Industrial roundwood;5616;Import quantity;m3;32400;29200;21900;11000;50900;32800;32600;24300;28000;57400;26400;5300;11400;6300;15400;16800;4700;4700;37100;67700;28100;24300;24300;15700;11600;9800;14100;10500;11100;25954;12348;11220;30400;65600;43700;25300;74300;22000;34100;32100;48000;63335;76000;193000;155987;184791;162455;44899;31446;25664;24138;36994;27245;21286;18797;4047;2564;11155;46986;44832;52038;59065;56035 -138;'484;Mexico;1865;Industrial roundwood;5622;Import value;1000 USD;758;822;1001;433;2201;1411;1767;1314;1719;3544;1389;361;978;945;2938;3943;936;936;7318;15424;7346;3546;3546;2092;2695;895;1054;1239;1037;3479;3502;3282;5192;13028;9732;5716;10847;4058;8328;7926;12000;9629;16309;53596;38688;37037;30105;12471;9085;7031;5355;9425;4887;3820;5277;1305;1723;4116;11224;12222;15217;18487;28346 -138;'484;Mexico;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8587;4823;6466;4849;5749;22700;7300;1400;1000;5200;9600;8000;24905;9356;8903;8885;14022;15296;29335;8613;11734;16432;20242;19623;84744;46368;24277;23393;39918;29785;28478;140850;111413;149524 -138;'484;Mexico;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;799;511;507;1077;1155;2710;763;206;344;1028;630;1506;4168;2627;2299;2664;3182;4449;4467;3641;4946;12432;19436;15382;16010;16882;9828;8538;20347;9401;13585;72473;75014;84038 -138;'484;Mexico;1866;Industrial roundwood, coniferous;5516;Production;m3;2370000;2936000;3304000;3611000;3800000;3519000;4187000;4181000;4531000;4794000;4429000;4763000;5039000;5607000;5867000;6194000;6394000;4682000;5464000;5771000;5672000;5966000;5875000;6452000;6735000;6310000;6625000;6490000;7731000;7064000;6700000;6571000;5520000;5632000;5511000;5881000;6551000;7138000;7291000;7291000;6753000;5386000;5499000;6202000;5137000;5292000;5602000;5497000;4448000;4406000;4313000;4788000;4741000;4741000;4712000;5139000;6398000;6094000;6094000;6094000;6934000;7825000;7825000 -138;'484;Mexico;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;533;3970;5799;24100;43300;33000;16000;39400;16500;12100;17400;10000;56989;65000;124000;130000;163927;126589;22705;16134;15145;17010;31485;22030;12690;14103;2990;1741;6042;41631;41649;48450;51161;53567 -138;'484;Mexico;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;836;1374;3000;4000;5000;1716;1924;1819;1483;2821;2000;7055;14030;29503;30000;30000;16333;4472;4076;3752;3283;7940;3256;2538;4175;888;1190;1913;9014;10749;13632;13598;27438 -138;'484;Mexico;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;198;76;3847;400;1300;22600;7300;800;800;5100;9500;4000;1850;2445;783;2000;5487;5946;515;267;2217;630;259;327;784;1130;27;563;1507;1508;3560;9270;5925;5925 -138;'484;Mexico;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;23;244;42;120;2685;763;119;287;1009;611;336;250;308;79;200;291;1097;92;44;278;123;522;337;477;256;97;135;210;351;842;2810;1808;1808 -138;'484;Mexico;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;533;3970;5799;24100;43300;33000;16000;39400;16500;12100;17400;10000;56989;65000;124000;130000;163927;126589;22705;16134;15145;17010;31485;22030;12690;14103;2990;1741;6042;41631;41649;48450;51161;53567 -138;'484;Mexico;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;836;1374;3000;4000;5000;1716;1924;1819;1483;2821;2000;7055;14030;29503;30000;30000;16333;4472;4076;3752;3283;7940;3256;2538;4175;888;1190;1913;9014;10749;13632;13598;27438 -138;'484;Mexico;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;198;76;3847;400;1300;22600;7300;800;800;5100;9500;4000;1850;2445;783;2000;5487;5946;515;267;2217;630;259;327;784;1130;27;563;1507;1508;3560;9270;5925;5925 -138;'484;Mexico;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;23;244;42;120;2685;763;119;287;1009;611;336;250;308;79;200;291;1097;92;44;278;123;522;337;477;256;97;135;210;351;842;2810;1808;1808 -138;'484;Mexico;1867;Industrial roundwood, non-coniferous;5516;Production;m3;226000;294000;296000;289000;320000;234000;390000;491000;381000;508000;431000;376000;502000;620000;746000;685000;601000;400000;566000;574200;580600;560700;700700;725000;738000;719000;771000;771000;580000;516000;499000;474000;429000;417000;549000;663000;762000;793000;814000;814000;667000;668000;781000;710000;1044000;839000;704000;946000;678000;635000;567000;606000;612000;612000;689000;945000;1557000;1557000;1557000;1557000;2422000;1719000;1719000 -138;'484;Mexico;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25421;8378;5421;6300;22300;10700;9300;34900;5500;22000;14700;38000;6346;11000;69000;25987;20864;35866;22194;15312;10519;7128;5509;5215;8596;4694;1057;823;5113;5355;3183;3588;7904;2468 -138;'484;Mexico;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3413;2666;1908;2192;9028;4732;4000;8923;2239;6845;5105;10000;2574;2279;24093;8688;7037;13772;7999;5009;3279;2072;1485;1631;1282;1102;417;533;2203;2210;1473;1585;4889;908 -138;'484;Mexico;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8389;4747;2619;4449;4449;100;0;600;200;100;100;4000;23055;6911;8120;6885;8535;9350;28820;8346;9517;15802;19983;19296;83960;45238;24250;22830;38411;28277;24918;131580;105488;143599 -138;'484;Mexico;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;770;488;263;1035;1035;25;0;87;57;19;19;1170;3918;2319;2220;2464;2891;3352;4375;3597;4668;12309;18914;15045;15533;16626;9731;8403;20137;9050;12743;69663;73206;82230 -138;'484;Mexico;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16558;5733;3013;3000;5200;1700;0;9400;3300;16500;4100;0;2908;868;1539;3753;4563;1132;970;818;553;259;363;170;454;292;417;170;229;276;29;434;247;80 -138;'484;Mexico;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2223;1784;1181;1195;2028;732;0;3063;999;4986;1707;0;895;347;595;1020;485;364;291;294;166;141;87;56;121;91;152;54;78;92;11;123;250;25 -138;'484;Mexico;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8389;4747;2619;4449;4449;100;0;600;200;100;100;0;19055;2911;4120;3533;5183;5998;28314;8346;8701;15627;19935;19296;83960;45238;24250;22830;38411;28277;24918;131580;11852;143599 -138;'484;Mexico;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;770;488;263;1035;1035;25;0;87;57;19;19;0;2748;1149;1050;1291;1718;2179;4286;3597;4246;12254;18893;15045;15533;16626;9731;8403;20137;9050;12743;69663;8571;82230 -138;'484;Mexico;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8863;2645;2408;3300;17100;9000;9300;25500;2200;5500;10600;38000;3438;10132;67461;22234;16301;34734;21224;14494;9966;6869;5146;5045;8142;4402;640;653;4884;5079;3154;3154;7657;2388 -138;'484;Mexico;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1190;882;727;997;7000;4000;4000;5860;1240;1859;3398;10000;1679;1932;23498;7668;6552;13408;7708;4715;3113;1931;1398;1575;1161;1011;265;479;2125;2118;1462;1462;4639;883 -138;'484;Mexico;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;4000;4000;4000;3352;3352;3352;506;0;816;175;48;0;0;0;0;0;0;0;0;0;93636;0 -138;'484;Mexico;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1170;1170;1170;1170;1173;1173;1173;89;0;422;55;21;0;0;0;0;0;0;0;0;0;64635;0 -138;'484;Mexico;1868;Sawlogs and veneer logs;5516;Production;m3;1958000;2439000;2665000;3062000;3245000;2702000;3437000;3467000;3756000;3996000;3601000;3852000;4185000;4629000;4563000;4884000;4736000;2680000;3274000;3472000;3575000;3879000;3992000;4088000;4372000;3947000;4324000;4199000;5806000;5487000;5390000;5476000;4608000;4904000;4728000;5097000;5921000;6520000;6651000;6651000;6176000;5022000;5255000;5737000;5022000;4878000;5210000;5308000;4295000;4470000;4133000;4435000;4550000;4550000;4756000;5367000;6411000;6671000;6671000;6671000;8536000;8562000;8562000 -138;'484;Mexico;1868;Sawlogs and veneer logs;5616;Import quantity;m3;16500;11100;6400;5900;10100;14900;5600;3500;1900;7800;3900;4100;7900;3900;2000;8700;4100;4100;24200;36300;8600;9600;9600;9600;5400;6300;12100;1500;2100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -138;'484;Mexico;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;284;204;186;154;256;405;234;124;104;471;341;333;696;677;410;2430;805;805;4650;8252;2308;947;947;947;1650;422;854;329;127;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -138;'484;Mexico;1868;Sawlogs and veneer logs;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -138;'484;Mexico;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -138;'484;Mexico;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;1740000;2152000;2384000;2786000;2942000;2484000;3071000;3017000;3409000;3531000;3265000;3525000;3791000;4126000;3925000;4324000;4284000;2417000;2952000;3139000;3265000;3570000;3576000;3713000;3979000;3573000;3898000;3773000;5515000;5213000;5121000;5202000;4379000;4660000;4472000;4814000;5502000;6089000;6211000;6211000;5802000;4527000;4780000;5318000;4174000;4342000;4684000;4592000;3803000;3977000;3764000;4017000;4124000;4124000;4307000;4666000;5658000;5600000;5600000;5600000;6424000;7278000;7278000 -138;'484;Mexico;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;8800;5900;3300;700;300;100;200;200;200;200;200;200;200;200;300;100;100;100;24200;36300;8600;9600;9600;9600;5400;6300;12100;1500;2100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -138;'484;Mexico;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;142;102;89;18;17;5;9;9;9;9;9;9;9;9;48;17;17;17;4650;8252;2308;947;947;947;1650;422;854;329;127;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -138;'484;Mexico;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -138;'484;Mexico;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -138;'484;Mexico;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;218000;287000;281000;276000;303000;218000;366000;450000;347000;465000;336000;327000;394000;503000;638000;560000;452000;263000;322000;333000;310000;309000;416000;375000;393000;374000;426000;426000;291000;274000;269000;274000;229000;244000;256000;283000;419000;431000;440000;440000;374000;495000;475000;419000;848000;536000;526000;716000;492000;493000;369000;418000;426000;426000;449000;701000;753000;1071000;1071000;1071000;2112000;1284000;1284000 -138;'484;Mexico;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;7700;5200;3100;5200;9800;14800;5400;3300;1700;7600;3700;3900;7700;3700;1700;8600;4000;4000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -138;'484;Mexico;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;142;102;97;136;239;400;225;115;95;462;332;324;687;668;362;2413;788;788;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -138;'484;Mexico;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -138;'484;Mexico;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -138;'484;Mexico;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1210000;1234000;1234000;1028000;801000;845000;954000;975000;999000;882000;932000;628000;423000;417000;495000;414000;414000;490000;620000;1383000;835000;835000;835000;758000;691000;691000 -138;'484;Mexico;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;909000;927000;927000;793000;657000;587000;713000;810000;755000;764000;748000;499000;327000;356000;444000;365000;365000;340000;442000;696000;424000;424000;424000;485000;522000;522000 -138;'484;Mexico;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;301000;307000;307000;235000;144000;258000;241000;165000;244000;118000;184000;129000;96000;61000;51000;49000;49000;150000;178000;687000;411000;411000;411000;273000;169000;169000 -138;'484;Mexico;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;12900;31400;19500;14700;14700;6100;6200;3500;2000;9000;9000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -138;'484;Mexico;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;2668;7172;5038;2599;2599;1145;1045;473;200;910;910;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -138;'484;Mexico;1870;Pulpwood and particles (1961-1997);5516;Production;m3;613000;766000;885000;772000;804000;970000;1067000;1114000;1042000;1200000;1117000;1185000;1256000;1479000;1895000;1803000;2113000;2242000;2520000;2637000;2487000;2457000;2393000;2860000;2864000;2864000;2864000;2864000;2349000;1954000;1700000;1450000;1184000;1006000;1190000;1259000;1217000;;;;;;;;;;;;;;;;;;;;;;;;;; -138;'484;Mexico;1870;Pulpwood and particles (1961-1997);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;12900;31400;19500;14700;14700;6100;6200;3500;2000;9000;9000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -138;'484;Mexico;1870;Pulpwood and particles (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;2668;7172;5038;2599;2599;1145;1045;473;200;910;910;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -138;'484;Mexico;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;605000;759000;872000;761000;791000;956000;1055000;1107000;1035000;1185000;1094000;1152000;1173000;1397000;1829000;1754000;2009000;2138000;2310000;2427000;2247000;2236000;2139000;2547000;2557000;2557000;2557000;2557000;2090000;1739000;1500000;1300000;1064000;904000;946000;949000;921000;;;;;;;;;;;;;;;;;;;;;;;;;; -138;'484;Mexico;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;8000;7000;13000;11000;13000;14000;12000;7000;7000;15000;23000;33000;83000;82000;66000;49000;104000;104000;210000;210000;240000;221000;254000;313000;307000;307000;307000;307000;259000;215000;200000;150000;120000;102000;244000;310000;296000;;;;;;;;;;;;;;;;;;;;;;;;;; -138;'484;Mexico;1871;Other industrial roundwood;5516;Production;m3;25000;25000;50000;66000;71000;81000;73000;91000;114000;106000;142000;102000;100000;119000;155000;192000;146000;160000;236000;236200;190600;190700;190700;229000;237000;218000;208000;198000;156000;139000;109000;119000;157000;139000;142000;188000;175000;201000;220000;220000;216000;231000;180000;221000;184000;254000;214000;203000;203000;148000;330000;464000;389000;389000;155000;97000;161000;145000;145000;145000;62000;291000;291000 -138;'484;Mexico;1871;Other industrial roundwood;5616;Import quantity;m3;15900;18100;15500;5100;40800;17900;27000;20800;26100;49600;22500;1200;3500;2400;13400;8100;600;600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -138;'484;Mexico;1871;Other industrial roundwood;5622;Import value;1000 USD;474;618;815;279;1945;1006;1533;1190;1615;3073;1048;28;282;268;2528;1513;131;131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -138;'484;Mexico;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;25000;25000;48000;64000;67000;79000;61000;57000;87000;78000;70000;86000;75000;84000;113000;116000;101000;127000;202000;205000;160000;160000;160000;192000;199000;180000;170000;160000;126000;112000;79000;69000;77000;68000;93000;118000;128000;140000;153000;153000;158000;202000;132000;171000;153000;195000;154000;157000;146000;102000;193000;327000;252000;252000;65000;31000;44000;70000;70000;70000;25000;25000;25000 -138;'484;Mexico;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;;;2000;2000;4000;2000;12000;34000;27000;28000;72000;16000;25000;35000;42000;76000;45000;33000;34000;31200;30600;30700;30700;37000;38000;38000;38000;38000;30000;27000;30000;50000;80000;71000;49000;70000;47000;61000;67000;67000;58000;29000;48000;50000;31000;59000;60000;46000;57000;46000;137000;137000;137000;137000;90000;66000;117000;75000;75000;75000;37000;266000;266000 -138;'484;Mexico;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;15900;18100;15500;5100;40800;17900;27000;20800;26100;49600;22500;1200;3500;2400;13400;8100;600;600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -138;'484;Mexico;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;474;618;815;279;1945;1006;1533;1190;1615;3073;1048;28;282;268;2528;1513;131;131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -138;'484;Mexico;1630;Wood charcoal;5510;Production;t;44450;43154;54798;56681;58405;59871;61480;62133;64332;65778;67853;69765;72059;73737;76481;79788;83060;82838;86366;86616;88054;90093;96990;97893;100102;104999;107956;111197;113685;143786;157405;133481;66000;60000;27000;29000;37000;80000;166565;134664;135610;74000;70000;100000;384000;80000;65000;151000;141918;76000;85000;80000;82000;90000;91000;100000;106000;124000;124000;124000;84000;86000;100000 -138;'484;Mexico;1630;Wood charcoal;5610;Import quantity;t;9400;11400;600;300;100;400;100;300;300;300;300;100;400;300;300;300;300;300;300;400;400;300;300;100;500;500;500;500;500;13200;600;788;1368;1000;300;200;300;200;1500;7900;6000;1700;1700;1000;1000;1000;1000;1000;648;171;236;638;1538;607;1188;1644;5105;1874;1870;2543;2514;460;364 -138;'484;Mexico;1630;Wood charcoal;5622;Import value;1000 USD;1808;2181;145;50;26;79;15;41;45;72;50;28;76;93;107;102;102;102;146;194;283;200;200;57;122;122;122;122;122;4417;264;395;301;467;237;179;197;141;236;491;697;824;824;900;900;900;497;497;450;229;190;270;610;250;947;1148;2854;1183;1447;1830;2091;253;339 -138;'484;Mexico;1630;Wood charcoal;5910;Export quantity;t;2900;2200;1600;1700;1700;1900;1600;800;1300;1000;500;500;1300;600;1000;1700;2100;300;2600;1600;2000;300;2400;700;600;600;600;600;600;41200;40500;14601;20812;12500;18900;21800;24000;12300;34400;38100;37822;37840;39494;50696;40477;39025;39280;35004;49222;56755;70826;75374;83380;88991;92583;97626;96339;94668;87366;121401;139048;98732;83878 -138;'484;Mexico;1630;Wood charcoal;5922;Export value;1000 USD;235;75;51;41;30;57;65;27;51;40;20;23;53;31;114;257;130;19;399;363;455;42;398;108;147;147;147;147;147;7452;7505;3056;3798;1945;2314;2814;2900;2756;4175;4287;5746;6079;6131;5895;7084;6933;8358;7763;10796;14579;18544;21478;26122;29496;32740;37197;38542;36770;33952;51566;65335;48800;45506 -138;'484;Mexico;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;204000;248000;254000;254000;266000;266000;266000;449000;449000;449000;329000;582000;582000 -138;'484;Mexico;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1700;2300;151400;28000;28000;53000;63000;99000;84000;68000;40500;1778;4637;4687;4149;2768;5063;3153;5990;15463;14889;3573;3220;2334.44;610;1777 -138;'484;Mexico;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;201;161;2477;855;855;1199;1595;2564;2506;2008;1599;566;905;853;860;1089;1044;1210;1035;1624;1695;338;279;326;437;174 -138;'484;Mexico;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14100;530000;202200;7000;7000;7000;43000;50000;42000;22000;22000;12828;14918;18798;11014;17019;27518.61;21872;18131;16301;17441;1927;2230;6189.17;3767;10649 -138;'484;Mexico;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;524;7487;6166;306;306;306;3200;4000;3721;1900;1900;858;869;1402;427;690;690.11;1384;1596;822;948;1638;1993;2629.07;1991;2421 -138;'484;Mexico;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;204000;248000;254000;254000;266000;266000;266000;449000;449000;449000;329000;582000;582000 -138;'484;Mexico;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;7100;1900;2500;1600;1600;1600;200;1300;2000;39400;188700;116700;133800;65105;237;0;1300;100;100;0;600;145000;21000;21000;50000;53000;65000;50000;34000;6500;800;3300;3588;3321;1026;836;305;490;590;370;3308;3196;185;103;74 -138;'484;Mexico;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;1190;637;677;293;293;293;50;44;73;2067;7266;3964;3804;3085;17;0;161;12;22;0;14;2252;514;514;741;830;1085;1027;529;120;74;196;182;323;250;233;243;241;395;373;281;272;243;114;76 -138;'484;Mexico;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1251;76939;80000;4400;1600;1200;200;3700;2200;0;0;0;0;0;0;0;0;69;52;1;0;35;0.61;698;985;510;719;1673;2199;3794.77;3672;3648 -138;'484;Mexico;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;6610;8353;230;86;107;65;118;120;0;0;0;0;0;0;0;0;12;1;1;0;1;0.11;551;1008;436;442;1467;1990;2505.07;1972;2268 -138;'484;Mexico;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;1900;1900;2400;9800;9800;12200;1500;5974;16805;14000;4400;1800;2000;1700;1700;6400;7000;7000;3000;10000;34000;34000;34000;34000;978;1337;1099;828;1742;4227;2848;5500;14873;14519;265;24;2149.44;507;1703 -138;'484;Mexico;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;38;130;100;520;520;525;275;209;650;468;230;172;184;201;147;225;341;341;458;765;1479;1479;1479;1479;492;709;671;537;839;811;967;794;1229;1322;57;7;83;323;98 -138;'484;Mexico;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101541;381361;60500;29600;18600;10000;13900;526300;200000;7000;7000;7000;43000;50000;42000;22000;22000;12759;14866;18797;11014;16984;27518;21174;17146;15791;16722;254;31;2394.4;95;7001 -138;'484;Mexico;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18044;12543;6338;4991;3136;1385;459;7369;6046;306;306;306;3200;4000;3721;1900;1900;846;868;1401;427;689;690;833;588;386;506;171;3;124;19;153 -138;'484;Mexico;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000 -138;'484;Mexico;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;554;1173;2768;2441;3890;10842;8030;5974;5538;3117.48;571;436 -138;'484;Mexico;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;539;843;773;683;727;1242;1298;1008;950;2363.63;311;399 -138;'484;Mexico;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1863;3370;2499;2950;2142;2252;17078;4992;5162;5503.12;3156;432 -138;'484;Mexico;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;284;442;380;388;293;297;547;1093;1411;145;117;68 -138;'484;Mexico;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000 -138;'484;Mexico;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;12;6;13;20;72;18;35;363;1594;32;33 -138;'484;Mexico;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;4;8;8;9;47;22;6;66;971;30;21 -138;'484;Mexico;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1826;3318;2447;2898;2090;2200;357;2;15;0;6;3 -138;'484;Mexico;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;141;248;186;194;99;103;41;0;3;0;5;7 -138;'484;Mexico;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;552;1161;2762;2428;3870;10770;8012;5939;5175;1523.48;539;403 -138;'484;Mexico;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;537;839;765;675;718;1195;1276;1002;884;1392.63;281;378 -138;'484;Mexico;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;52;52;52;52;52;16721;4990;5147;5503.12;3150;429 -138;'484;Mexico;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;143;194;194;194;194;194;506;1093;1408;145;112;61 -138;'484;Mexico;1872;Sawnwood;5516;Production;m3;989000;1031000;1252000;1473000;1470000;1548000;1645000;1658000;1624000;1572000;1534000;1803000;1938000;2055000;1986000;2147000;2259000;2299000;2109000;1991000;1928000;1669000;1827000;1975000;2205000;2143000;2410000;2528000;2447000;2366000;2696000;2696000;2560000;2693000;2329000;2543000;2961000;3260000;3110000;3110000;2829000;2691000;2740000;2962000;2674000;2650000;2687000;2814000;2405000;2430602;2344000;2440000;2502000;2471000;2551000;2821000;3362000;3362000;5616000;5616000;6200000;6822000;6822000 -138;'484;Mexico;1872;Sawnwood;5616;Import quantity;m3;15800;12600;11100;45700;54100;65500;67000;99100;110200;140300;143400;122500;136400;134800;205000;149000;29300;29000;156300;534700;407700;269500;257300;254500;285600;339800;439800;714500;355700;439900;626000;620342;815400;998400;669400;690300;964700;1430100;1090000;1500000;1473000;1756156;1713588;3310000;3814000;4193000;4974000;1754524;1304028;1483318;1800513;1534810;1529114;1422082;1764167;1942197;2004417;1451111;2144002;1616200;2744328;2803807;2461114 -138;'484;Mexico;1872;Sawnwood;5622;Import value;1000 USD;1145;940;901;2636;2677;3095;2818;4956;6837;8966;8240;9041;11443;13075;22061;20353;4905;4873;24001;66547;74335;38052;49936;36900;39632;61348;74548;108799;40053;108867;155680;229198;243204;225215;184158;195418;208157;261918;202548;285881;229299;285529;303609;428887;514400;541536;561482;419385;305822;358313;398935;404852;417755;448754;483847;503399;563858;407473;552640;499128;863225;969815;780644 -138;'484;Mexico;1872;Sawnwood;5916;Export quantity;m3;44300;44700;27700;20200;19300;12700;13100;27800;33900;32300;38500;42000;28900;7100;26648;238;1100;400;1900;400;600;700;31200;31200;25000;31800;61300;190300;157100;132800;370400;640744;136809;185600;262200;417300;417800;330000;172300;168200;44000;47249;38001;51197;47600;41576;37354;24077;12553;9706;11634;8978;13917;14512;11029;9890;6886;9059;16856;22485;36229;22323;14879 -138;'484;Mexico;1872;Sawnwood;5922;Export value;1000 USD;1027;2072;673;467;500;324;450;2164;2630;3286;4584;5105;4205;1205;4855;71;149;61;563;246;359;225;3725;3725;982;5731;11158;34625;86997;89780;63066;131203;43454;45084;111282;153067;185934;148683;64631;40293;22774;20810;13429;21280;18938;16775;16596;13228;8301;6114;6147;7997;10130;7754;4970;5801;4168;2916;8810;7953;13142;14831;6728 -138;'484;Mexico;1632;Sawnwood, coniferous;5516;Production;m3;853000;919000;1112500;1306500;1294500;1388000;1429500;1427500;1452000;1448000;1407500;1607000;1718500;1797500;1715000;1907500;2057500;2026500;1877000;1726500;1669000;1468000;1636500;1718500;1947500;1860000;2066500;2184500;2103500;2027500;2345000;2345000;2146000;2401000;2206000;2407000;2751000;3044000;2904000;2904000;2346000;2430000;2454000;2716000;2222000;2324000;2366000;2409000;2000000;2135872;2068000;2210000;2268000;2248000;2256000;2401000;2885000;2885000;4999000;4999000;5539000;6177000;6177000 -138;'484;Mexico;1632;Sawnwood, coniferous;5616;Import quantity;m3;13450;10400;6500;16650;53950;65300;65900;91750;102700;131200;139250;116700;131150;129050;155300;130400;16000;15850;156000;493900;366900;228700;222600;216000;260000;303000;403000;678000;322300;389100;548900;540669;692400;849400;501000;507600;635000;642800;390000;700000;900000;900000;1456000;2348000;2971000;3084000;4323000;1260201;973141;938205;1038900;1203580;1189311;1134061;1372828;1560000;1588000;1049618;1656384;1222000;2205328;2220351;2005940 -138;'484;Mexico;1632;Sawnwood, coniferous;5622;Import value;1000 USD;654;455;271;668;2660;3087;2781;4297;6043;8044;7744;8258;10666;11905;15704;16744;2135;2119;23968;60066;67854;31571;37513;28500;34000;40000;53200;90000;25894;90113;125829;183501;194825;170387;127500;127378;131907;125734;75266;128490;172774;172774;203366;249000;317900;330158;377497;278890;191605;221460;242605;279978;276070;284638;321318;348699;407813;249935;385046;336050;633072;705599;575443 -138;'484;Mexico;1632;Sawnwood, coniferous;5916;Export quantity;m3;29400;23400;17300;11700;14800;9000;7300;25900;32000;30400;36600;41900;28800;7000;26500;147;900;200;1900;400;600;700;31200;31200;25000;31800;61300;190300;157100;132800;370400;618254;122000;175000;258000;410000;415000;318000;164300;153600;42000;45884;36813;48254;42223;35525;31186;18531;5871;5234;3634;3185;2309;6225;7511;5780;169;5308;6396;4553;8229;11283;3818 -138;'484;Mexico;1632;Sawnwood, coniferous;5922;Export value;1000 USD;565;430;320;206;338;210;170;1883;2349;3005;4303;5100;4200;1200;4800;27;118;30;563;246;359;225;3725;3725;982;5731;11158;34625;86997;89780;63066;99544;37594;40000;108318;148548;184053;143560;62610;34730;21668;19354;12478;20238;15859;12663;12348;8252;2517;2102;1469;1284;834;1855;3184;3718;33;1120;2563;3066;6226;7422;3300 -138;'484;Mexico;1633;Sawnwood, non-coniferous;5516;Production;m3;136000;112000;139500;166500;175500;160000;215500;230500;172000;124000;126500;196000;219500;257500;271000;239500;201500;272500;232000;264500;259000;201000;190500;256500;257500;283000;343500;343500;343500;338500;351000;351000;414000;292000;123000;136000;210000;216000;206000;206000;483000;261000;286000;246000;452000;326000;321000;405000;405000;294730;276000;230000;234000;223000;295000;420000;477000;477000;617000;617000;661000;645000;645000 -138;'484;Mexico;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;2350;2200;4600;29050;150;200;1100;7350;7500;9100;4150;5800;5250;5750;49700;18600;13300;13150;300;40800;40800;40800;34700;38500;25600;36800;36800;36500;33400;50800;77100;79673;123000;149000;168400;182700;329700;787300;700000;800000;573000;856156;257588;962000;843000;1109000;651000;494323;330887;545113;761613;331230;339803;288021;391339;382197;416417;401493;487618;394200;539000;583456;455174 -138;'484;Mexico;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;491;485;630;1968;17;8;37;659;794;922;496;783;777;1170;6357;3609;2770;2754;33;6481;6481;6481;12423;8400;5632;21348;21348;18799;14159;18754;29851;45697;48379;54828;56658;68040;76250;136184;127282;157391;56525;112755;100243;179887;196500;211378;183985;140495;114217;136853;156330;124874;141685;164116;162529;154700;156045;157538;167594;163078;230153;264216;205201 -138;'484;Mexico;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;14900;21300;10400;8500;4500;3700;5800;1900;1900;1900;1900;100;100;100;148;91;200;200;;;;;;;;;;;;;;22490;14809;10600;4200;7300;2800;12000;8000;14600;2000;1365;1188;2943;5377;6051;6168;5546;6682;4472;8000;5793;11608;8287;3518;4110;6717;3751;10460;17932;28000;11040;11061 -138;'484;Mexico;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;462;1642;353;261;162;114;280;281;281;281;281;5;5;5;55;44;31;31;;;;;;;;;;;;;;31659;5860;5084;2964;4519;1881;5123;2021;5563;1106;1456;951;1042;3079;4112;4248;4976;5784;4012;4678;6713;9296;5899;1786;2083;4135;1796;6247;4887;6916;7409;3428 -138;'484;Mexico;1634;Veneer sheets;5516;Production;m3;600;300;300;300;200;300;300;400;500;500;500;500;4000;4000;4000;7100;6100;28000;15600;8000;14000;10000;7500;2300;2300;2300;2300;2300;2300;5000;10000;20000;29000;49000;72000;84000;274000;303000;346000;399000;518000;350000;350000;350000;350000;350000;350000;350000;350000;350000;350000;350000;350000;350000;350000;350000;350000;493000;493000;488593;428000;606000;606000 -138;'484;Mexico;1634;Veneer sheets;5616;Import quantity;m3;100;100;100;100;100;200;100;600;400;500;400;500;800;500;400;2300;100;100;2800;13300;10600;5800;5800;5800;5800;5200;3200;7700;7700;4200;7300;8837;7000;7500;21100;8300;19200;27800;38200;40000;24000;6191;24452;35084;26492;31105;30009;24707;19517;25369;26648;28377;31098;40312;49886;43559;43702;38527;46959;40560;46172;49601;48901 -138;'484;Mexico;1634;Veneer sheets;5622;Import value;1000 USD;76;63;59;103;132;171;108;237;323;523;173;396;503;261;141;453;20;20;953;4391;3852;1096;1096;1096;1096;3445;1717;2259;2259;2209;4056;7958;5898;7463;12613;5266;8229;12481;23688;30150;18035;27077;37342;53562;54842;64425;67868;60256;48962;56696;57568;61117;67660;68084;72924;65339;63107;72030;65196;60288;95013;83295;66716 -138;'484;Mexico;1634;Veneer sheets;5916;Export quantity;m3;600;300;200;100;100;100;100;100;100;100;100;100;100;200;100;400;100;100;100;300;300;300;300;300;300;300;200;2400;300;100;100;256;300;100;5100;1900;2000;1200;1800;3900;400;2275;2227;2783;1873;2591;2366;1804;1084;1080;856;342;1013;1070;305;209;449;453;375;397;163;10;103 -138;'484;Mexico;1634;Veneer sheets;5922;Export value;1000 USD;87;38;30;16;16;16;11;11;11;50;41;23;325;266;150;600;96;96;129;275;275;371;371;371;371;371;152;209;205;186;183;271;304;127;2535;970;1380;2309;3627;6392;1165;6365;4111;5397;4488;6336;5253;4525;3061;2977;2350;2523;2667;2129;699;596;807;1044;962;1146;843;884;867 -138;'484;Mexico;1873;Wood-based panels;5516;Production;m3;67600;75300;76900;90800;98400;117000;129000;149000;164000;173000;178200;187200;215300;223000;248700;263300;356000;376000;426000;596000;669000;751000;688000;730000;762000;754000;766000;751000;643000;548000;643000;599000;572000;553000;425400;447000;458000;469800;723400;784000;549000;647000;720000;748000;661000;699000;751000;633000;545000;729267;770000;917870;1057636;1042636;1042636;1042636;1042636;1042636;1042636;1024842;1024842;1024842;1024842 -138;'484;Mexico;1873;Wood-based panels;5616;Import quantity;m3;2600;2900;3100;4800;4000;8027;12048;11201;12127;8601;5995;5795;9595;39695;24495;30295;23600;19100;55400;61000;50800;28600;28600;37000;44500;31600;22100;56300;108500;129900;256200;219896;346900;285700;204000;262000;295000;331500;495800;834000;666000;646661;1445936;1529175;1433866;1571568;1298847;1355733;848262;1080007;1079020;1106280;1171737;1216702;1412475;1476938;1400060;1322003;1294014;1435716;2062651.68;1905260;1594290 -138;'484;Mexico;1873;Wood-based panels;5622;Import value;1000 USD;615;702;634;992;823;1341;2002;1568;1725;1083;1077;1393;1774;5702;4501;5431;3616;3130;10308;16434;15067;3840;3840;7458;12002;11231;8160;18681;21669;28354;58776;109023;120405;103776;67954;77349;56029;70958;161596;312871;227252;216947;355136;428970;455721;502113;432440;507174;404251;471195;485945;547340;584851;591174;629026;625940;531597;606303;518462;484474;860615.64;849544;689146 -138;'484;Mexico;1873;Wood-based panels;5916;Export quantity;m3;5200;7500;10300;6700;4900;2937;2816;3353;8518;2269;3138;3333;2685;1664;2206;5001;12700;15700;6400;23400;4900;400;14300;14300;15000;12900;11700;10600;6600;2700;2100;29280;20949;28477;153400;110100;108200;36700;59600;210300;35300;34866;169243;233995;136641;224114;74582;35274;62691;49241;57407;40624;44675;41615;24750;21907;64516;83939;83952;88216;125566.31;133602;107867 -138;'484;Mexico;1873;Wood-based panels;5922;Export value;1000 USD;683;936;1198;724;552;335;339;364;855;232;290;366;329;233;323;1000;2537;3199;1952;7100;1700;132;8653;8653;9451;3664;4116;3839;2446;1356;957;8339;4512;5730;38574;29543;26515;9658;19962;45940;7690;9438;25688;33667;25678;40545;18431;10046;16507;13685;16552;20321;35328;22705;8542;8396;20399;29337;33522;31074;55225.76;74734;45435 -138;'484;Mexico;1640;Plywood and LVL;5516;Production;m3;47100;46500;49000;56700;63900;69000;79000;78000;78000;96000;99000;104000;118000;111000;110000;139000;171000;188000;206000;254000;304000;313000;286000;286000;271000;272000;280000;229000;184000;157000;184000;150000;136000;132000;0;0;0;0;202000;171000;117000;154000;195000;247000;148000;134000;233000;162000;137000;84267;120000;111870;224636;224636;224636;224636;224636;224636;224636;206842;206842;206842;206842 -138;'484;Mexico;1640;Plywood and LVL;5616;Import quantity;m3;800;700;1100;1900;2600;5500;8300;8600;9000;6200;3200;3000;4700;17400;15900;13900;4600;4800;10900;18800;13800;7500;7500;15900;17000;10400;13200;39900;65600;102300;212100;158810;292300;239000;108000;107000;190000;236000;291400;500000;388000;368661;481936;508765;513759;518501;568429;588154;350818;557928;523274;496681;469446;479764;562590;753259;637121;691546;673887;770299;1117759;1083231;921774 -138;'484;Mexico;1640;Plywood and LVL;5622;Import value;1000 USD;120;98;158;195;397;914;1420;1167;1275;753;644;960;1070;3641;3401;3408;1200;1300;4238;8139;6982;1882;1882;5500;6000;5264;5325;14799;17863;23839;53043;90269;110590;94819;38179;38000;36788;45105;105350;211450;156678;146373;190109;242361;272446;292023;281903;330366;222244;276184;282065;291880;280612;313634;328626;365767;295643;369844;265941;269704;448383;470624;404310 -138;'484;Mexico;1640;Plywood and LVL;5916;Export quantity;m3;4900;6200;6400;4200;3400;2200;2500;2300;2200;900;400;700;1000;400;100;1000;9200;13900;4600;23400;4900;400;14300;14300;15000;12900;11700;10600;6600;2700;2100;585;1472;2400;21400;16500;10000;2100;22000;44400;9300;8866;15893;12995;10841;8836;1582;4274;3828;3211;4257;5239;8717;11801;4238;4826;6476;12009;17457;22839;24698;20375;15489 -138;'484;Mexico;1640;Plywood and LVL;5922;Export value;1000 USD;654;814;832;490;400;273;303;288;246;103;50;87;127;67;13;214;1889;2849;1602;7100;1700;132;8653;8653;9451;3664;4116;3839;2446;1356;957;559;620;1223;9365;10425;4386;1204;9030;7489;1527;3275;5325;4519;3765;3830;799;1866;1606;1466;1976;2864;4108;8352;2150;2299;2791;5277;9483;11348;18269;17133;10373 -138;'484;Mexico;1646;Particle board and OSB (1961-1994);5516;Production;m3;500;8800;15500;18900;20500;31000;32000;50000;65000;56000;56000;60000;72000;94000;125000;99000;155000;162000;194000;316000;339000;412000;335000;379000;395000;403000;423000;436000;414000;352000;414000;414000;407000;397000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -138;'484;Mexico;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;800;600;600;400;900;900;3000;20400;6700;14500;18300;13900;44100;35400;30200;21100;21100;21100;27500;21200;8900;16400;42900;27600;44100;41798;35300;15500;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -138;'484;Mexico;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;71;67;71;51;95;95;366;1723;762;1685;2200;1700;5940;6045;5835;1958;1958;1958;6002;5967;2835;3882;3806;4515;5733;11320;7412;5030;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -138;'484;Mexico;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16361;13400;20000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -138;'484;Mexico;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1938;2234;2849;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -138;'484;Mexico;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;402000;409000;420000;430000;486000;567000;400000;460000;500000;490000;480000;530000;461000;406000;354000;591000;582000;738000;769000;754000;754000;754000;754000;754000;754000;754000;754000;754000;754000 -138;'484;Mexico;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62800;128700;33000;30400;30400;160000;113000;113000;415000;400410;277987;271639;86308;86308;16272;2646;27012;31656;50620;155130;178395;165378;189232;170940;142213;174689;171622;193781;132253 -138;'484;Mexico;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18177;31458;5028;6025;6025;51200;17392;17392;56173;59288;44000;44549;23731;23731;15355;6772;10576;33063;39801;47499;55731;57601;57733;61530;54956;54332;76043;100728;59165 -138;'484;Mexico;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;131200;81300;82200;21700;21700;150000;18000;18000;145350;215000;123800;214361;72000;30000;58169;44895;50756;31378;29443;22751;12973;10456;34650;26000;33645;21493;35015.86;40979;20448 -138;'484;Mexico;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29064;14932;17083;4372;4372;31891;3584;3584;17784;27204;21120;36318;17267;7815;14292;11733;13223;15333;28112;11337;2193;1767;9691;12170;9788;6435;10571.47;15239;7758 -138;'484;Mexico;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18692;18692;18692;70915;81131;77804;87727;89411;86054;56839;58725;84275;79543;97489;75543;93264;75244;59606 -138;'484;Mexico;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5216;5216;5216;13839;18349;17121;22646;26914;21497;20724;24000;25768;25511;22482;18631;36277;32699;19597 -138;'484;Mexico;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91;86;71;2414;4504;5851;4163;3799;5650;3705;6985;3995;4504.45;2228;3365 -138;'484;Mexico;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;47;23;675;1339;1767;1974;1691;1672;1675;1753;1116;2035.29;1190;1048 -138;'484;Mexico;1874;Fibreboard;5516;Production;m3;20000;20000;12400;15200;14000;17000;18000;21000;21000;21000;23200;23200;25300;18000;13700;25300;30000;26000;26000;26000;26000;26000;67000;65000;96000;79000;63000;86000;45000;39000;45000;35000;29000;24000;23400;38000;38000;39800;35400;46000;32000;33000;25000;11000;33000;35000;57000;65000;54000;54000;68000;68000;64000;64000;64000;64000;64000;64000;64000;64000;64000;64000;64000 -138;'484;Mexico;1874;Fibreboard;5616;Import quantity;m3;1800;2200;2000;2900;1400;2527;2948;2001;2527;2001;1895;1895;1895;1895;1895;1895;700;400;400;6800;6800;;;;;;;;;;;19288;19300;31200;33200;26300;72000;65100;174000;174000;165000;165000;549000;620000;642120;762736;625418;662579;410257;438302;450930;490216;562260;495754;614651;499576;489432;379974;380425;415185;680006.68;553004;480657 -138;'484;Mexico;1874;Fibreboard;5622;Import value;1000 USD;495;604;476;797;426;427;511;334;379;279;338;338;338;338;338;338;216;130;130;2250;2250;;;;;;;;;;;7434;2403;3927;11598;7891;14213;19828;50221;50221;53182;53182;108854;127321;139275;160325;121590;147861;152813;169890;176183;199751;237524;208544;223945;178572;152453;149418;175083;141807;299912.64;245493;206074 -138;'484;Mexico;1874;Fibreboard;5916;Export quantity;m3;300;1300;3900;2500;1500;737;316;1053;6318;1369;2738;2633;1685;1264;2106;4001;3500;1800;1800;;;;;;;;;;;;;12334;6077;6077;800;12300;16000;12900;15900;15900;8000;8000;8000;6000;2000;917;1000;1000;603;1049;2323;1593;2011;1212;3376;2826;17740;42225;25865;39889;61348;70020;68565 -138;'484;Mexico;1874;Fibreboard;5922;Export value;1000 USD;29;122;366;234;152;62;36;76;609;129;240;279;202;166;310;786;648;350;350;;;;;;;;;;;;;5842;1658;1658;145;4186;5046;4082;6560;6560;2579;2579;2579;1944;793;397;365;365;583;439;1330;1449;1769;1249;2225;2639;6245;10215;12498;12175;24350;41172;26256 -138;'484;Mexico;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23400;38000;38000;39800;35400;46000;32000;33000;25000;11000;20000;22000;24000;21000;27000;27000;34000;34000;35000;35000;35000;35000;35000;35000;35000;35000;35000;35000;35000 -138;'484;Mexico;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4800;9000;13000;11600;55000;55000;30000;30000;87000;86000;98000;88161;51000;88161;33914;29032;25363;33320;31033;20069;19651;18920;15432;20468;42107;36614;67647.68;41914;23061 -138;'484;Mexico;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965;3238;4631;3453;12819;12819;14457;14457;41561;43876;53220;52900;26629;52900;23989;22819;20753;26918;23718;16529;16069;14319;12389;17241;27448;23129;61051.64;43626;25882 -138;'484;Mexico;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10900;10700;1900;4900;4900;8000;8000;8000;6000;2000;917;1000;1000;18;151;1539;646;951;355;51;63;276;59;14;222;222;279;279 -138;'484;Mexico;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3932;4521;818;3296;3296;2579;2579;2579;1944;793;397;365;365;27;76;935;411;616;230;58;68;361;83;24;132;132;44;44 -138;'484;Mexico;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20000;31000;27000;27000;34000;34000;29000;29000;29000;29000;29000;29000;29000;29000;29000;29000;29000 -138;'484;Mexico;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7800;7700;49000;44500;100000;100000;109000;109000;326000;394000;385276;494418;494418;494418;339243;373335;403974;429679;502635;445000;529000;460656;456000;341839;319727;355851;589319;480000;432279 -138;'484;Mexico;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3489;3439;7925;11739;28152;28152;28393;28393;49700;65154;65882;84545;84545;84545;118110;136956;149379;165105;205357;183551;193709;158066;134557;126944;143314;111853;229689;187468;166120 -138;'484;Mexico;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;497;352;334;678;926;823;1700;1849;14528;41315;23605;39501;61057;69673;68178 -138;'484;Mexico;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;494;157;218;939;1125;1011;1910;2426;5420;9998;12084;12004;24180;41059;26106 -138;'484;Mexico;1650;Other fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13000;13000;13000;13000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -138;'484;Mexico;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7447;16000;16200;20600;9600;10000;9000;19000;19000;26000;26000;136000;140000;158844;180157;80000;80000;37100;35935;21593;27217;28592;30685;66000;20000;18000;17667;18591;22720;23040;31090;25317 -138;'484;Mexico;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2462;1220;1444;6144;1214;1657;4636;9250;9250;10332;10332;17593;18291;20173;22880;10416;10416;10714;10115;6051;7728;8449;8464;14167;6187;5507;5233;4321;6825;9172;14399;14072 -138;'484;Mexico;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4892;2777;2777;800;1400;5300;11000;11000;11000;0;0;0;0;0;0;0;0;88;546;450;269;134;34;1625;914;2936;851;2246;166;69;68;108 -138;'484;Mexico;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1153;475;475;145;254;525;3264;3264;3264;0;0;0;0;0;0;0;0;62;206;177;99;28;8;257;145;464;134;390;39;38;69;106 -138;'484;Mexico;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;20000;20000;12400;15200;14000;17000;18000;21000;21000;21000;23200;23200;25300;18000;13700;25300;30000;26000;26000;26000;26000;26000;67000;65000;96000;79000;63000;86000;45000;39000;45000;35000;29000;24000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -138;'484;Mexico;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;1800;2200;2000;2900;1400;2527;2948;2001;2527;2001;1895;1895;1895;1895;1895;1895;700;400;400;6800;6800;;;;;;;;;;;11841;3300;15000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -138;'484;Mexico;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;495;604;476;797;426;427;511;334;379;279;338;338;338;338;338;338;216;130;130;2250;2250;;;;;;;;;;;4972;1183;2483;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -138;'484;Mexico;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;300;1300;3900;2500;1500;737;316;1053;6318;1369;2738;2633;1685;1264;2106;4001;3500;1800;1800;;;;;;;;;;;;;7442;3300;3300;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -138;'484;Mexico;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;29;122;366;234;152;62;36;76;609;129;240;279;202;166;310;786;648;350;350;;;;;;;;;;;;;4689;1183;1183;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -138;'484;Mexico;1879;Total fibre furnish;5510;Production;t;216900;239800;264600;281000;337800;354000;380000;393000;427000;819000;914000;996000;1012000;1126000;1169000;1254000;1339000;1572000;1726000;1451000;1553000;1670000;1631000;1694000;1800000;1744000;1730000;1878000;1750000;1693000;1624000;1479000;1263000;1212000;1335600;1431000;1372600;1526000;1458000;1489000;1305000;1406000;1428000;1258000;1249000;4632000;4631000;4647000;3234000;3214000;3207000;3365000;5059000;5032000;5053000;5052000;4764000;4926000;4737000;4768339;4733439;4795000;4617900 -138;'484;Mexico;1879;Total fibre furnish;5610;Import quantity;t;2200;3500;5600;9200;9700;7400;14300;57300;82000;158100;91300;94300;143700;381092;178382;196384;204667;370794;375400;694100;554800;468000;719900;802000;755000;1099000;1198000;1237000;1277000;1168500;1296700;1403070;1234983;1599600;2252800;1550200;1477500;1858800;1857100;1918900;1990000;1990000;2079000;2389458;2145787;2649713;3204713;2927713;2247146;2334869.1;2236088;2140958;2098749;2264252;2245458;2453380;2457042;2484198;2321786;2492439;2799874;2724415;3099652 -138;'484;Mexico;1879;Total fibre furnish;5622;Import value;1000 USD;143;249;386;657;656;536;991;6749;11565;20970;14020;15673;24751;97094;57385;74026;39519;74508;83268;151318;166250;145797;145506;167100;172800;218744;277748;324074;427672;334605;253316;335479;284877;442100;612467;344715;305037;374596;428925;573041;482763;482763;587813;704810;725684;779913;888311;988200;756393;1101325;1087022;876865;869210;939883;911797;917107;1001506;1118982;901352;849372;1120709;1252659;987005 -138;'484;Mexico;1879;Total fibre furnish;5910;Export quantity;t;;;;6800;8100;12200;8600;11200;15900;12600;4400;4400;4400;4400;4400;4400;9200;9200;9200;12100;12100;22300;22300;20300;19300;19300;26300;23500;25000;2800;6100;17176;18045;17790;34800;64400;58800;45700;223200;218000;102100;102100;163100;280100;186000;228650;218651;311617;196612;311726;446650;461132;547038;465025;436448;374031;377671;265408;93981;77282;102517;23283;29700 -138;'484;Mexico;1879;Total fibre furnish;5922;Export value;1000 USD;;;;1602;1944;3476;2649;2850;3979;3250;1210;1210;1210;1210;1210;1210;4631;4631;4631;6100;6100;9227;9227;9776;9513;9513;9256;9710;9952;1174;1883;5154;6825;6704;15310;12572;8320;3911;37762;45584;29667;29667;50754;51457;38179;44000;42053;57933;28477;56371;79263;73010;75406;62882;61703;65965;58834;33364;13766;9981;15070;5158;6243 -138;'484;Mexico;1878;Pulp for paper;5510;Production;t;216900;239800;264600;281000;337800;354000;380000;393000;427000;474000;474000;482000;513000;565000;551000;619000;672000;708000;719000;672000;745000;750000;740000;775000;822000;774000;780000;947000;815000;773000;704000;559000;343000;292000;415600;511000;452600;606000;538000;569000;385000;486000;508000;338000;329000;330000;329000;345000;195000;175000;168000;142000;159000;132000;153000;152000;142000;142000;140000;138900;104000;106000;102000 -138;'484;Mexico;1878;Pulp for paper;5610;Import quantity;t;2200;3500;5600;9200;9700;7400;14300;57300;82000;115100;78300;93300;112700;230300;132600;137600;66100;108400;132100;207700;222800;198000;221000;269000;318000;347000;425000;400000;246000;280800;333000;387683;600620;571400;728800;398300;325600;439300;506700;501800;642000;642000;753000;837458;819787;1205713;1138713;1263713;839146;856869.1;822088;836095;839475;856516;860658;922205;964119;978215;789133;872925;805198;590552;570625 -138;'484;Mexico;1878;Pulp for paper;5622;Import value;1000 USD;143;249;386;657;656;536;991;6749;11565;17655;12867;15577;22093;81713;53188;66264;27184;50600;61100;107000;136000;121196;80600;98100;116000;127000;156000;155000;184356;176219;156018;195211;201896;275132;379008;201379;161701;194540;244858;309319;308869;308869;374265;433521;451832;525773;558919;679988;479296;678546;655344;555095;560387;596737;578377;552989;609409;704448;547172;492057;569430;525567;481200 -138;'484;Mexico;1878;Pulp for paper;5910;Export quantity;t;;;;6800;8100;12200;8600;11200;15900;12600;4400;4400;4400;4400;4400;4400;9200;9200;9200;12100;12100;18300;18300;18300;18300;18300;18300;18300;18300;1500;1100;2994;3534;3279;9000;22400;9200;700;600;13000;37100;37100;37100;37100;20000;20000;25;68;123;28;53;132;67;136;68;6910;13220;3083;3408;39;39;1255;1255 -138;'484;Mexico;1878;Pulp for paper;5922;Export value;1000 USD;;;;1602;1944;3476;2649;2850;3979;3250;1210;1210;1210;1210;1210;1210;4631;4631;4631;6100;6100;9200;9200;9200;9200;9200;9200;9200;9200;940;970;3045;3469;3348;8686;10902;4882;351;335;7815;26517;26517;26517;26517;13000;13000;42;56;92;70;87;128;66;117;82;3790;6491;1418;1754;91;91;1407;1407 -138;'484;Mexico;1875;Wood pulp;5510;Production;t;171200;179300;194400;199900;238000;244000;266000;279000;285000;320000;309000;327000;346000;362000;364000;411000;433000;472000;457000;442000;460000;478000;451000;505000;574000;548000;553000;653000;521000;519000;467000;319000;222000;175000;298600;357000;318600;424000;349000;366000;211000;333000;348000;228000;216000;214000;210000;214000;165000;145000;138000;139000;142000;115000;136000;135000;125000;125000;123000;121900;87000;89000;85000 -138;'484;Mexico;1875;Wood pulp;5610;Import quantity;t;18300;18900;24300;27900;34000;31700;47600;95800;127400;170100;114200;112700;127700;245300;147600;152600;69900;112200;135900;211500;226600;201800;224800;272800;321800;350800;428800;403800;249800;284600;336800;425696;651922;602700;843000;418800;344000;463900;544500;521900;645000;645000;754000;845458;828139;1217713;1182713;1316713;869611;891317.1;856333;870271;883289;889429;892190;960279;990003;1011901;816752;880423;811029;591257;571063 -138;'484;Mexico;1875;Wood pulp;5622;Import value;1000 USD;3476;3437;4257;4528;5450;5330;7884;14466;20665;28655;20962;19977;25543;85163;56638;69714;28899;52315;62815;108715;137715;122911;82315;99815;117715;128715;157715;156715;186071;177934;157733;225731;232308;298594;443375;226831;183199;218800;276052;326383;310320;310320;373456;439548;458020;533916;598147;732648;525739;731494;715890;619387;643928;647859;622950;608208;640424;746032;580570;498793;575590;522146;477624 -138;'484;Mexico;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;257;257;0;4900;22000;9100;2200;2100;15500;36400;36400;36400;36400;20000;20000;25;68;194;371;252;131;66;241;168;7009;13605;3245;3538;57;57;1254;1254 -138;'484;Mexico;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;127;127;0;3813;10756;4838;937;969;9139;26000;26000;26000;26000;13000;13000;42;56;186;579;269;127;65;230;188;3825;6996;1584;1896;92;92;1251;1251 -138;'484;Mexico;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -138;'484;Mexico;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42117;38505;45233;19521;27223;28386;23236 -138;'484;Mexico;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24633;27129;27639;10173;16784;21140;16260 -138;'484;Mexico;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13147;3000;3000;8;8;3;3 -138;'484;Mexico;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6433;1324;1324;12;12;12;12 -138;'484;Mexico;1654;Mechanical wood pulp (1961-2016);5510;Production;t;48300;51600;49700;44400;56000;60000;64000;62000;59000;66000;62000;62000;61000;58000;51000;54000;54000;60000;60000;46000;50000;53000;56000;65000;103000;117000;107000;107000;107000;126000;108000;39000;13000;15000;19600;33000;10000;14000;42000;32000;42000;167000;174000;38000;39000;40000;40000;39000;30000;0;0;0;17000;8000;0;0;;;;;;; -138;'484;Mexico;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;2200;3500;5600;9200;9700;7400;14300;14800;13600;22500;17600;25300;25200;37300;14600;16600;11100;13800;19500;26500;;;;;;;;;;;;17181;2140;400;37400;100;6000;2200;900;900;0;0;9000;24458;22139;9713;9713;9713;60;38;16;3;6;6;1382;2;;;;;;; -138;'484;Mexico;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;143;249;386;657;656;536;991;1131;1292;2239;1880;2779;3210;8862;3531;4573;2690;3600;5100;7000;;;;;;;;;;;;6922;679;180;10535;34;1746;734;282;282;0;0;1625;3086;7350;3224;3224;3224;48;21;22;7;13;12;459;4;;;;;;; -138;'484;Mexico;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;36;0;0;100;100;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;;;;;;; -138;'484;Mexico;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;0;0;34;34;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -138;'484;Mexico;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5600;0;0;37000;30000;30000;32000;32000;32000;32000;32000;32000;0;0;0;0;0;0;0;0;;;;;;; -138;'484;Mexico;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31785;63411;79400;49300;32600;32600;36000;20300;20300;19000;19000;25000;36000;42000;93000;68000;71000;32120;43539;47964;45819;41924;38119;41306;74947;;;;;;; -138;'484;Mexico;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13125;19867;31102;30838;12308;12308;12354;6658;6658;6948;6948;10705;15327;19598;34853;28945;34209;15959;30820;33031;27918;27508;25923;24207;37572;;;;;;; -138;'484;Mexico;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7200;7200;0;0;0;0;0;0;0;0;0;0;0;0;7;7;7;7;7;6;6833;;;;;;; -138;'484;Mexico;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3986;3986;0;0;0;0;0;0;0;0;0;0;0;0;15;15;15;15;15;24;3658;;;;;;; -138;'484;Mexico;1656;Chemical wood pulp;5510;Production;t;122900;127700;144700;155500;182000;184000;202000;217000;226000;254000;247000;265000;285000;304000;313000;357000;379000;412000;397000;396000;410000;425000;395000;440000;471000;431000;446000;546000;414000;393000;359000;280000;209000;160000;279000;324000;303000;410000;307000;297000;139000;136000;142000;158000;145000;142000;138000;143000;135000;145000;138000;139000;125000;107000;136000;135000;125000;125000;123000;121900;87000;89000;85000 -138;'484;Mexico;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;42500;68400;92600;60700;68000;87500;193000;118000;121000;55000;94600;112600;181200;222800;198000;221000;269000;318000;347000;425000;400000;246000;280800;333000;337539;531437;490400;639300;352800;274200;389700;483100;478300;621000;621000;715000;775000;744000;1086000;1052000;1176000;801422;809773.1;768620;785540;795072;816057;814333;841978;915934;934251;742183;850979;773239;554047;539270 -138;'484;Mexico;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;5618;10273;15416;10987;12798;18883;72851;49657;61691;24494;47000;56000;100000;136000;121196;80600;98100;116000;127000;156000;155000;184356;176219;156018;174095;179516;242834;335492;183235;141845;176712;235176;300341;299413;299413;357167;412308;411373;472203;518592;636212;456194;642467;612546;518789;529050;567399;549208;509667;574491;668749;516906;478054;546343;487487;448000 -138;'484;Mexico;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;219;219;0;4900;14300;1600;500;400;12300;36400;36400;36400;36400;20000;20000;25;68;93;21;46;124;59;128;55;70;68;78;403;27;27;1229;1229 -138;'484;Mexico;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102;102;0;3813;6367;708;200;232;7298;26000;26000;26000;26000;13000;13000;42;56;66;55;72;112;50;101;50;53;47;83;419;69;69;1228;1228 -138;'484;Mexico;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;82000;99100;103000;114000;120000;127000;158000;150000;152000;172000;179000;186000;219000;224000;217000;223000;160000;178000;182000;194000;181000;194000;190000;219000;249000;176000;165000;178000;97000;88000;74000;87000;101000;200000;114000;87000;70000;27000;45000;47000;47000;49000;47000;53000;50000;45000;45000;40000;39000;28000;9000;40000;41000;39000;39000;38000;37600;35000;32000;25000 -138;'484;Mexico;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8293;3298;3200;10600;5400;4500;3700;6500;10100;6000;6000;11000;10000;3000;8000;9000;4000;3526;6015;4176;5570;2981;5239;5109;4951;12113;12113;3639;3782;7705;0;0 -138;'484;Mexico;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3494;1084;1682;2614;2668;2242;1418;2914;2362;2462;2462;4838;4370;1479;3458;4258;1822;2070;4091;3409;4046;1989;3886;3652;3557;8679;8679;2596;2788;7447;0;0 -138;'484;Mexico;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;3000;7000;1100;0;0;0;0;0;0;0;0;0;0;0;0;0;0;88;51;0;0;0;0;0;0;15;15;175;175 -138;'484;Mexico;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;2135;3153;485;0;0;0;0;0;0;0;0;0;0;0;0;0;0;53;35;0;0;0;0;0;0;26;26;61;61 -138;'484;Mexico;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;66600;75900;74000;79000;86000;84000;85000;85000;94000;86000;106000;112000;123000;141000;176000;153000;224000;222000;232000;189000;247000;264000;239000;227000;297000;238000;228000;181000;183000;121000;86000;192000;223000;103000;296000;220000;227000;112000;91000;95000;111000;96000;95000;85000;93000;90000;100000;98000;100000;97000;98000;96000;94000;86000;86000;85000;84300;52000;57000;60000 -138;'484;Mexico;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;347000;425000;400000;246000;280800;333000;326577;525054;486200;615400;346100;269000;384000;472100;463200;610000;610000;702000;763000;740000;1075000;1040000;1168000;797208;803295;762681;778254;790964;810354;809004;836955;903698;921998;738402;847080;765467;554028;539267 -138;'484;Mexico;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;127000;156000;155000;184356;176219;156018;169088;176792;240247;323938;179352;139187;173685;228977;293685;293714;293714;350032;405634;408897;466775;512575;631539;452873;637553;607343;513184;525963;563107;545284;505978;565602;659795;514037;475030;538780;487423;447992 -138;'484;Mexico;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;218;218;0;1900;7300;500;500;400;12300;36400;36400;36400;36400;20000;20000;25;68;93;21;46;36;8;128;55;70;50;78;403;12;12;1053;1053 -138;'484;Mexico;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101;101;0;1678;3214;223;200;232;7298;26000;26000;26000;26000;13000;13000;42;56;66;55;72;59;15;101;50;53;39;83;417;41;41;1166;1166 -138;'484;Mexico;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -138;'484;Mexico;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;123;140;142;117;67;19;3 -138;'484;Mexico;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;210;275;273;236;116;64;8 -138;'484;Mexico;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;0;0;0;0;1;1 -138;'484;Mexico;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;0;2;2;2;1;1 -138;'484;Mexico;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;5100;4800;4000;4000;6000;8000;9000;10000;12000;11000;17000;7000;5000;5000;9000;11000;10000;8000;9000;10000;10000;11000;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -138;'484;Mexico;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;100;0;0;0;0;0;2000;2000;2000;7;0.1;359;94;250;0;0;0;;;;;;; -138;'484;Mexico;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;131;46;0;0;0;0;0;642;642;642;13;1;329;86;142;0;0;0;;;;;;; -138;'484;Mexico;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;1800;2200;3000;5000;5000;7000;2000;2000;7000;16000;2000;8000;10000;9000;10000;10000;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;;;;;;; -138;'484;Mexico;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2669;3085;1000;13300;1300;700;2000;4200;4900;5000;5000;2000;2000;1000;1000;1000;2000;681;463;1404;1622;877;464;220;72;;;;;;; -138;'484;Mexico;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1513;1640;905;8940;1215;416;1609;3154;4248;3237;3237;2297;2304;997;1328;1117;2209;1238;822;1465;1473;956;406;272;132;;;;;;; -138;'484;Mexico;1667;Dissolving wood pulp;5610;Import quantity;t;16100;15400;18700;18700;24300;24300;33300;38500;45400;55000;35900;19400;15000;15000;15000;15000;3800;3800;3800;3800;3800;3800;3800;3800;3800;3800;3800;3800;3800;3800;3800;39191;54934;32500;117000;33300;31200;36000;40200;22400;5000;5000;5000;10000;20000;29000;53000;60000;36009;37967;39733;38909;46287;35247;35169;43352;31952;39145;29336;9923;10567;8824;8557 -138;'484;Mexico;1667;Dissolving wood pulp;5622;Import value;1000 USD;3333;3188;3871;3871;4794;4794;6893;7717;9100;11000;8095;4400;3450;3450;3450;3450;1715;1715;1715;1715;1715;1715;1715;1715;1715;1715;1715;1715;1715;1715;1715;31589;32246;24478;66510;31254;27300;29000;33936;19102;3959;3959;3959;8827;19699;23636;47386;59003;53538;58186;70291;72673;87357;54525;49076;60965;41300;50154;36025;10566;12463;13519;13364 -138;'484;Mexico;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;0;0;400;200;1700;1700;3200;0;0;0;0;0;0;0;0;101;343;199;0;0;106;106;106;390;167;135;22;22;22;22 -138;'484;Mexico;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;0;0;369;110;737;737;1841;0;0;0;0;0;0;0;0;120;509;182;0;0;114;114;114;516;177;153;11;11;11;11 -138;'484;Mexico;1668;Pulp from fibres other than wood;5510;Production;t;45700;60500;70200;81100;99800;110000;114000;114000;142000;154000;165000;155000;167000;203000;187000;208000;239000;236000;262000;230000;285000;272000;289000;270000;248000;226000;227000;294000;294000;254000;237000;240000;121000;117000;117000;154000;134000;182000;189000;203000;174000;153000;160000;110000;113000;116000;119000;131000;30000;30000;30000;3000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000 -138;'484;Mexico;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1178;3632;1200;2800;12800;12800;11400;2400;2300;2000;2000;4000;2000;11648;17000;9000;7000;5544;3519;5488;4733;2473;2334;3637;5278;6068;5459;1717;2425;4736;8119;8119 -138;'484;Mexico;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1069;1834;1016;2143;5802;5802;4740;2742;2038;2508;2508;4768;2800;13511;15493;8158;6343;7095;5238;9745;8381;3816;3403;4503;5746;10285;8570;2627;3830;6303;16940;16940 -138;'484;Mexico;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;6800;8100;12200;8600;11200;15900;12600;4400;4400;4400;4400;4400;4400;9200;9200;9200;12100;12100;18300;18300;18300;18300;18300;18300;18300;18300;1500;1100;2739;3279;3279;4100;800;300;200;200;700;700;700;700;700;0;0;0;0;30;0;0;1;1;1;6;7;5;5;5;4;4;23;23 -138;'484;Mexico;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;1602;1944;3476;2649;2850;3979;3250;1210;1210;1210;1210;1210;1210;4631;4631;4631;6100;6100;9200;9200;9200;9200;9200;9200;9200;9200;940;970;2924;3348;3348;4873;515;154;151;103;517;517;517;517;517;0;0;0;0;26;0;0;1;1;1;8;79;11;11;11;10;10;167;167 -138;'484;Mexico;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;800;1000;1000;4000;6000;11000;13000;12396;10728;2262;2357;1946;2287;3457;3126;3267;3602;4205;3879;1167;826;296 -138;'484;Mexico;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;323;286;600;570;1887;2642;4717;6041;2750;6896;1392;1456;1218;1391;1756;1565;1847;2056;2748;2344;722;587;317 -138;'484;Mexico;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94;0.3;1.4;38;63;2;3;169;218;485;20;0;0;1;1 -138;'484;Mexico;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;0.6;2.6;36;110;3;3;20;100;102;25;0;0;3;3 -138;'484;Mexico;1669;Recovered paper;5510;Production;t;;;;;;;;;;345000;440000;514000;499000;561000;618000;635000;667000;864000;1007000;779000;808000;920000;891000;919000;978000;970000;950000;931000;935000;920000;920000;920000;920000;920000;920000;920000;920000;920000;920000;920000;920000;920000;920000;920000;920000;4302000;4302000;4302000;3039000;3039000;3039000;3223000;4900000;4900000;4900000;4900000;4622000;4784000;4597000;4629439;4629439;4689000;4515900 -138;'484;Mexico;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;43000;13000;1000;31000;150792;45782;58784;138567;262394;243300;486400;332000;270000;498900;533000;437000;752000;773000;837000;1031000;887700;963700;1015387;634363;1028200;1524000;1151900;1151900;1419500;1350400;1417100;1348000;1348000;1326000;1552000;1326000;1444000;2066000;1664000;1408000;1478000;1414000;1304863;1259274;1407736;1384800;1531175;1492923;1505983;1532653;1619514;1994676;2133863;2529027 -138;'484;Mexico;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;3315;1153;96;2658;15381;4197;7762;12335;23908;22168;44318;30250;24601;64906;69000;56800;91744;121748;169074;243316;158386;97298;140268;82981;166968;233459;143336;143336;180056;184067;263722;173894;173894;213548;271289;273852;254140;329392;308212;277097;422779;431678;321770;308823;343146;333420;364118;392097;414534;354180;357315;551279;727092;505805 -138;'484;Mexico;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;4000;4000;2000;1000;1000;8000;5200;6700;1300;5000;14182;14511;14511;25800;42000;49600;45000;222600;205000;65000;65000;126000;243000;166000;208650;218626;311549;196489;311698;446597;461000;546971;464889;436380;367121;364451;262325;90573;77243;102478;22028;28445 -138;'484;Mexico;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;27;27;576;313;313;56;510;752;234;913;2109;3356;3356;6624;1670;3438;3560;37427;37769;3150;3150;24237;24940;25179;31000;42011;57877;28385;56301;79176;72882;75340;62765;61621;62175;52343;31946;12012;9890;14979;3751;4836 -138;'484;Mexico;1876;Paper and paperboard;5510;Production;t;389200;429000;470500;529100;591000;634000;685000;738000;818000;897000;908000;981000;1113000;1254000;1184000;1346000;1445000;1596000;1684000;1979000;937200;1924000;2019000;2239000;2376000;2469000;2573000;3375000;3294000;2873000;2896000;2825000;2447000;2518000;3047000;3047000;3491000;3673000;3783999;3865000;4056000;3987000;4149000;4689000;4841100;4876000;4582000;4451000;4556000;4704000;4701000;4795000;4835000;4855000;5316000;5675000;5755000;5956000;5805000;5812082;6295000;6497000;6218000 -138;'484;Mexico;1876;Paper and paperboard;5610;Import quantity;t;94800;104400;109400;127100;168200;233400;217100;173200;209100;364900;205900;188500;187700;236200;256400;311500;569700;187100;191000;497600;504000;471200;297600;90000;156200;144700;168700;222800;226100;282900;380500;659649;736337;750200;561100;752100;940100;973399;1675400;2335738;1425000;1680800;1905000;2075000;2343000;2952336;3291293;3409711;2215189;2702277;2721270;2909798;3177510;3270138;3272598;3519517;3871803;4135121;4150031;3499389;3823146.04;3560912;3347371 -138;'484;Mexico;1876;Paper and paperboard;5622;Import value;1000 USD;16929;18850;20661;22940;36703;45333;40314;29705;36676;48764;39271;35072;39799;78904;90673;158604;297909;117100;138350;398700;394000;473598;227841;73100;139400;134700;163618;204239;206363;205081;292854;461043;460280;489257;416959;678242;854177;726977;1246048;1496651;1067072;1278114;1406034;1602951;1787116;2325503;2250849;2595987;1958030;2388145;2519721;2811453;2918472;3064207;2788891;2937833;3256756;3569585;3293819;2686456;3428514.67;4076280;3520677 -138;'484;Mexico;1876;Paper and paperboard;5910;Export quantity;t;58;100;200;600;1100;500;300;700;1100;1500;1900;1900;1900;1900;1900;1900;1900;1900;1900;1900;1900;12600;12600;12600;18600;18600;146600;173800;110200;78300;56500;228411;120333;135500;165300;305200;274500;223600;231600;204400;159000;138600;159600;219226;264000;314752;357000;445000;191264;174707;213403;207319;233020;242100;257615;315653;301626;404078;237048;261494;376969.64;242264;169828 -138;'484;Mexico;1876;Paper and paperboard;5922;Export value;1000 USD;35;60;189;180;330;150;90;210;330;488;919;919;919;919;919;919;919;919;919;919;919;5000;5000;5000;2900;2900;86889;125902;64231;50775;60307;71245;51737;56688;122302;196654;217166;149853;141537;115603;118058;103685;156233;189025;207880;234585;236566;316788;211229;241807;302798;309566;320325;354646;344753;400886;407849;500327;301821;317175;426796.35;337792;296149 -138;'484;Mexico;2042;Graphic papers;5510;Production;t;97300;108700;111600;120700;144600;150000;142000;154000;164000;162000;163000;181000;188000;230000;285000;353000;394000;434000;455000;642000;556000;515000;561000;708000;716000;819000;818000;1025000;1025000;926000;933000;834000;678000;616000;774000;774000;928000;933000;942000;916000;909000;918000;954000;1011000;1018100;1006000;923000;947000;900000;847000;858000;826000;713000;704000;734000;723000;675000;658000;528000;396400;362000;432000;429000 -138;'484;Mexico;2042;Graphic papers;5610;Import quantity;t;88800;98400;93900;105500;130200;159200;168400;163500;198000;355600;194800;180800;174000;199300;249600;266200;530400;142000;78600;175300;276000;246600;165200;60200;101100;89600;78000;84100;81400;96700;147800;333167;378300;370600;177100;151800;209000;445400;588400;979300;642000;643000;694000;640000;746000;1142000;1219000;1298000;878229;1024299;986226;1104162;1103774;1080435;1048566;964456;1036162;1120096;1276866;774445;910916.92;873348;740873 -138;'484;Mexico;2042;Graphic papers;5622;Import value;1000 USD;13943;15850;16213;16836;27604;29624;26288;25385;31750;44049;34178;32467;33363;64694;86662;123132;262800;76700;37750;109900;190700;226508;169175;59300;111700;107000;103448;97132;91270;81367;108752;249720;210684;260451;163911;136906;168735;345274;441817;572747;544201;546678;451204;507567;646478;873871;825645;923275;822575;988968;1012064;1069347;1032200;1025250;894587;825946;848410;967302;880302;568624;724099.88;1165278;894418 -138;'484;Mexico;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47521;25233;2100;28300;50400;39600;78800;41800;49600;49000;23000;19000;30626;42000;64337;49000;39000;22333;27316;21451;16587;17966;21905;27175;17991;30887;54651;39599;28902;15786.58;25000;20050 -138;'484;Mexico;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25994;12687;1688;23148;36004;27054;49936;27316;29613;38410;13990;13957;20190;33065;49997;36930;30042;42877;55224;45268;23678;29142;46163;43532;38124;44973;67620;36067;24607;21089.76;35580;27116 -138;'484;Mexico;1671;Newsprint;5510;Production;t;16900;23400;21800;15500;21700;23000;37000;37000;31000;40000;38000;40000;39000;40000;29000;56000;90000;84000;95000;116000;129000;125000;157000;199000;260000;367000;351000;420000;420000;398000;401000;289000;216000;214000;265000;265000;305000;308000;250000;246000;239000;186000;193000;252000;256000;271000;234000;247000;222000;192000;251000;222000;152000;143000;128000;131000;76000;69000;47000;38400;32000;21000;18000 -138;'484;Mexico;1671;Newsprint;5610;Import quantity;t;84900;94900;86100;100200;91300;101600;117100;109500;133200;118800;68800;55400;104900;139300;185600;191300;297200;55000;55000;110000;230000;148400;67000;26000;37500;26000;13000;24100;23400;56600;92900;135152;163300;228300;70300;60500;108000;106400;173800;216200;190000;190000;211000;172000;150000;217000;269000;364000;170027;202116;164581;196585;195221;192979;179079;161600;188567;191911;122678;85377;109304.61;108520;108633 -138;'484;Mexico;1671;Newsprint;5622;Import value;1000 USD;12333;14350;13289;14686;13644;14894;17788;16348;20091;19016;10979;9782;18986;43293;59687;78077;121800;22700;22750;64200;144200;89000;31667;12300;17700;13000;7448;17132;14841;31066;50064;77845;80136;106679;41512;36409;56760;62670;86864;100715;100377;100377;96000;89200;87476;102200;123585;168336;100425;117191;105615;128800;127354;124521;104366;88148;99945;85483;75383;44060;61403.53;84169;85426 -138;'484;Mexico;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2456;333;1700;26300;24700;22600;51400;20500;28300;36000;10000;6000;9526;4000;3000;2000;2000;226;286;227;113;135;54;357;107;401;1409;10;1026;303;645;824 -138;'484;Mexico;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1465;141;1088;20470;15649;12425;28115;10713;13010;27420;3000;2967;3000;2114;1300;229;229;156;161;188;91;168;46;235;75;257;410;6;490;208;838;941 -138;'484;Mexico;1674;Printing and writing papers;5510;Production;t;80400;85300;89800;105200;122900;127000;105000;117000;133000;122000;125000;141000;149000;190000;256000;297000;304000;350000;360000;526000;427000;390000;404000;509000;456000;452000;467000;605000;605000;528000;532000;545000;462000;402000;509000;509000;623000;625000;692000;670000;670000;732000;761000;759000;762100;735000;689000;700000;678000;655000;607000;604000;561000;561000;606000;592000;599000;589000;481000;358000;330000;411000;411000 -138;'484;Mexico;1674;Printing and writing papers;5610;Import quantity;t;3900;3500;7800;5300;38900;57600;51300;54000;64800;236800;126000;125400;69100;60000;64000;74900;233200;87000;23600;65300;46000;98200;98200;34200;63600;63600;65000;60000;58000;40100;54900;198015;215000;142300;106800;91300;101000;339000;414600;763100;452000;453000;483000;468000;596000;925000;950000;934000;708202;822183;821645;907577;908553;887456;869487;802856;847595;928185;1154188;689068;801612.3;764828;632240 -138;'484;Mexico;1674;Printing and writing papers;5622;Import value;1000 USD;1610;1500;2924;2150;13960;14730;8500;9037;11659;25033;23199;22685;14377;21401;26975;45055;141000;54000;15000;45700;46500;137508;137508;47000;94000;94000;96000;80000;76429;50301;58688;171875;130548;153772;122399;100497;111975;282604;354953;472032;443824;446301;355204;418367;559002;771671;702060;754939;722150;871777;906449;940547;904846;900729;790221;737798;748465;881819;804919;524564;662696.35;1081109;808992 -138;'484;Mexico;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45065;24900;400;2000;25700;17000;27400;21300;21300;13000;13000;13000;21100;38000;61337;47000;37000;22107;27030;21224;16474;17831;21851;26818;17884;30486;53242;39589;27876;15483.58;24355;19226 -138;'484;Mexico;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24529;12546;600;2678;20355;14629;21821;16603;16603;10990;10990;10990;17190;30951;48697;36701;29813;42721;55063;45080;23587;28974;46117;43297;38049;44716;67210;36061;24117;20881.76;34742;26175 -138;'484;Mexico;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34500;42194;116900;46000;47000;57000;87000;104000;176000;115000;68000;73849;89436;88550;82007;84958;76864;57054;68654;97351;123338;115356;62178;55927.3;42662;66986 -138;'484;Mexico;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19502;24495;49344;30628;33105;42495;57965;85600;95500;78771;50456;70771;81786;84303;79036;81602;72506;54847;59824;80395;94401;82004;41081;43574.35;50956;72880 -138;'484;Mexico;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;3500;3000;1000;1467;1671;1132;1527;850;420;1826;290;890;11796;2923;862;253;2876;669 -138;'484;Mexico;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;468;2100;1992;866;2376;2522;1665;2770;1320;632;1953;580;1372;11982;2644;1061;382;4335;1069 -138;'484;Mexico;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;562500;622800;603000;603000;665000;692000;690000;690000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -138;'484;Mexico;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83250;101815;373200;111000;111000;243000;160000;182000;254000;309000;321000;227043;239773;241944;296610;297055;300848;273747;276964;295139;282022;628501;307342;318814;321553;248857 -138;'484;Mexico;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62712;78767;130688;98488;98488;132809;140000;178524;184500;232182;266925;214804;263682;278615;314999;306048;324516;241532;269969;272356;288076;335587;194801;216950;477442;365165 -138;'484;Mexico;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27400;21300;21300;13000;13000;13000;13000;22000;25000;39000;32000;15414;19742;15086;13623;13826;11130;12746;12007;22888;35609;19747;13538;11096.58;15348;15205 -138;'484;Mexico;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21821;16603;16603;10990;10990;10990;10990;18283;17017;30482;24942;16777;22658;18371;17540;17191;14791;12744;14080;24139;37723;18538;11660;13219.75;22769;21173 -138;'484;Mexico;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62500;69200;67000;67000;67000;69000;69000;72100;735000;689000;700000;678000;655000;607000;604000;561000;561000;606000;592000;599000;589000;481000;358000;330000;411000;411000 -138;'484;Mexico;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;221250;270591;273000;295000;295000;183000;221000;310000;495000;526000;545000;407310;492974;491151;528960;526540;509744;538686;457238;455105;522825;410331;319548;426871;400613;316397 -138;'484;Mexico;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200390;251691;292000;314708;314708;179900;220402;294878;491671;391107;437558;436575;526309;543531;546512;517196;503707;493842;408005;395714;499342;387328;288682;402172;552711;370947 -138;'484;Mexico;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8100;15000;32837;5000;4000;5226;5617;5006;1324;3155;10301;12246;5587;6708;5837;16919;13476;4134;6131;3352 -138;'484;Mexico;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6200;12200;29580;4227;4005;23568;29883;25044;3277;10463;30694;28600;23389;19205;17505;14879;11396;7280;7638;3933 -138;'484;Mexico;1675;Other paper and paperboard;5510;Production;t;291900;320300;358900;408400;446400;484000;543000;584000;654000;735000;745000;800000;925000;1024000;899000;993000;1051000;1162000;1229000;1337000;381200;1409000;1458000;1531000;1660000;1650000;1755000;2350000;2269000;1947000;1963000;1991000;1769000;1902000;2273000;2273000;2563000;2740000;2841999;2949000;3147000;3069000;3195000;3678000;3823000;3870000;3659000;3504000;3656000;3857000;3843000;3969000;4122000;4151000;4582000;4952000;5080000;5298000;5277000;5415682;5933000;6065000;5789000 -138;'484;Mexico;1675;Other paper and paperboard;5610;Import quantity;t;6000;6000;15500;21600;38000;74200;48700;9700;11100;9300;11100;7700;13700;36900;6800;45300;39300;45100;112400;322300;228000;224600;132400;29800;55100;55100;90700;138700;144700;186200;232700;326482;358037;379600;384000;600300;731100;527999;1087000;1356438;783000;1037800;1211000;1435000;1597000;1810336;2072293;2111711;1336960;1677978;1735044;1805636;2073736;2189703;2224032;2555061;2835641;3015025;2873165;2724944;2912229.12;2687564;2606498 -138;'484;Mexico;1675;Other paper and paperboard;5622;Import value;1000 USD;2986;3000;4448;6104;9099;15709;14026;4320;4926;4715;5093;2605;6436;14210;4011;35472;35109;40400;100600;288800;203300;247090;58666;13800;27700;27700;60170;107107;115093;123714;184102;211323;249596;228806;253048;541336;685442;381703;804231;923904;522871;731436;954830;1095384;1140638;1451632;1425204;1672712;1135455;1399177;1507657;1742106;1886272;2038957;1894304;2111887;2408346;2602283;2413517;2117832;2704414.8;2911002;2626259 -138;'484;Mexico;1675;Other paper and paperboard;5910;Export quantity;t;58;100;200;600;1100;500;300;700;1100;1500;1900;1900;1900;1900;1900;1900;1900;1900;1900;1900;1900;12600;12600;12600;18600;18600;146600;173800;110200;78300;56500;180890;95100;133400;137000;254800;234900;144800;189800;154800;110000;115600;140600;188600;222000;250415;308000;406000;168931;147391;191952;190732;215054;220195;230440;297662;270739;349427;197449;232592;361183.06;217264;149778 -138;'484;Mexico;1675;Other paper and paperboard;5922;Export value;1000 USD;35;60;189;180;330;150;90;210;330;488;919;919;919;919;919;919;919;919;919;919;919;5000;5000;5000;2900;2900;86889;125902;64231;50775;60307;45251;39050;55000;99154;160650;190112;99917;114221;85990;79648;89695;142276;168835;174815;184588;199636;286746;168352;186583;257530;285888;291183;308483;301221;362762;362876;432707;265754;292568;405706.59;302212;269033 -138;'484;Mexico;1676;Household and sanitary papers;5510;Production;t;;;;;;;45000;49000;53000;56000;58000;71000;88000;100000;105000;132000;126000;145000;162000;184000;224000;248000;246000;273000;307000;317000;339000;433000;352000;385000;388000;392000;447000;464000;477000;477000;596000;622000;660000;691000;689000;728000;758000;812000;857000;845000;859000;843000;950000;997000;1015000;1027000;1063000;1083000;1120000;1187000;1206000;1239000;1240000;1258300;1242000;1260000;1297000 -138;'484;Mexico;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20400;13200;30000;51700;70000;64000;83000;70000;73000;72000;127000;115000;103000;66606;60521;47630;50608;48928;51396;67663;52213;84168;84839;80835;81039;70655;49636;71311 -138;'484;Mexico;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22443;13702;28488;47922;68204;63411;81321;69300;74800;75955;106272;107132;99083;78796;84644;69446;77802;74702;77096;89692;67331;84209;109736;104402;97873;94190;71235;117203 -138;'484;Mexico;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56900;79500;83400;79000;95600;84000;85000;69000;71000;64000;64000;76000;105000;57250;50590;83760;73497;64688;80084;86292;80555;85632;117954;72824;111818;90270.06;93525;70645 -138;'484;Mexico;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46793;64827;68336;58545;58158;64080;71121;55041;57180;56314;43000;55113;91102;57531;58502;103587;93071;78288;87827;93185;86908;92251;127098;87617;125308;102687.59;138678;96241 -138;'484;Mexico;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2094000;2160999;2228000;2427000;2305000;2399000;2826000;2918000;2977000;2760000;2619000;2664000;2817000;2781000;2892000;3014000;3024000;3418000;3719000;3826000;4012000;3994000;4115882;4648000;4761000;4447000 -138;'484;Mexico;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;391699;939000;1211900;675000;832800;987000;1167000;1309000;1384124;1706293;1759711;1259700;1605222;1675633;1742184;2011032;2126548;2144010;2491995;2716125;2891847;2777229;2629692;2827805.12;2625267;2522989 -138;'484;Mexico;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;216033;645014;728587;377766;479560;725250;854060;855683;1056323;1133082;1366764;1005033;1268628;1391589;1619874;1765756;1912883;1757057;2000568;2281912;2455511;2272610;1984220;2566868.8;2803139;2473363 -138;'484;Mexico;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28400;101700;47200;21000;25600;63600;109600;136000;158310;213000;272000;110089;94932;106240;114939;148097;136892;136099;169166;176993;221159;122458;118764;264643;117755;73792 -138;'484;Mexico;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11893;45110;12025;10147;13153;50486;76703;95501;111911;124254;165114;102963;115534;142753;180751;205085;212846;199537;225226;262057;294719;168951;160668;283075;147401;159131 -138;'484;Mexico;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;444000;470000;506000;579000;584000;616000;723000;792000;743000;821000;881000;970000;1013000;1109000;106200;1106000;1153000;1198000;1290000;1283000;1367000;1845000;1845000;1524000;1537000;1567000;1322000;1438000;1772000;1772000;1944000;;;;;;;;;;;;;;;;;;;;;;;;;; -138;'484;Mexico;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;6000;6000;15500;21600;38000;74200;48700;9700;11100;9300;11100;7700;13700;36900;6800;45300;34900;40700;85400;250300;178000;174500;103000;15000;29300;29300;60700;100000;104000;145700;135700;200000;200000;321000;325000;371100;412900;;;;;;;;;;;;;;;;;;;;;;;;;; -138;'484;Mexico;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;2986;3000;4448;6104;9099;15709;14026;4320;4926;4715;5093;2605;6436;14210;4011;35472;31209;36500;76800;225100;159300;193700;44000;6400;12500;12500;30170;67107;70000;82487;81710;100000;110000;168000;185000;281340;364236;;;;;;;;;;;;;;;;;;;;;;;;;; -138;'484;Mexico;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;58;100;200;600;1100;500;300;700;1100;1500;1900;1900;1900;1900;1900;1900;1900;1900;1900;1900;1900;12600;12600;12600;18600;18600;146600;173800;110200;78300;56500;180890;95100;133400;137000;111400;64100;;;;;;;;;;;;;;;;;;;;;;;;;; -138;'484;Mexico;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;35;60;189;180;330;150;90;210;330;488;919;919;919;919;919;919;919;919;919;919;919;5000;5000;5000;2900;2900;86889;125902;64231;50775;60307;45251;39050;55000;99154;47810;28677;;;;;;;;;;;;;;;;;;;;;;;;;; -138;'484;Mexico;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1539485;1588742;1638000;1850000;1754000;1825000;2274000;2325000;2396000;172000;760000;2091000;2207000;2148000;2261000;2396000;2406000;2756000;3014000;3116000;3265000;3282000;3354982;3837000;3894000;3698000 -138;'484;Mexico;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;208374;499524;644700;402000;402000;504000;609000;717000;655764;656293;654711;528446;734672;685552;755887;955491;1062809;1054997;1309190;1528978;1610426;1569760;1524948;1588908.83;1472177;1572111 -138;'484;Mexico;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73358;219026;247405;171889;171889;255000;304300;310793;357297;372671;411418;297711;400466;431334;590275;640384;715068;654099;754045;947967;998465;959487;841702;1119658.32;1228947;1134746 -138;'484;Mexico;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13000;35000;3785;2346;2695;4801;10129;6889;3634;3727;8580;20738;405;8298;3021;3092;1526 -138;'484;Mexico;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5519;14621;2530;1751;2021;2909;6100;4548;2196;2251;5182;12526;212;2998;1977;2719;1320 -138;'484;Mexico;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;334589;345294;356000;343000;329000;343000;222000;203000;362000;2548000;1748000;390000;441000;460000;456000;441000;469000;505000;537000;532000;563000;528000;565700;609000;653000;549000 -138;'484;Mexico;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104882;251428;324500;150000;150000;287000;301000;310000;398580;595000;625000;421249;501249;501182;549117;578900;570550;587594;568681;593236;643306;606340;544489;546821.29;576323;494475 -138;'484;Mexico;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79033;235970;266544;103966;103966;272350;300160;265000;382920;393007;474017;407271;483607;517466;562446;637540;668487;555492;672277;718119;765183;688603;603750;720324.48;897341;778899 -138;'484;Mexico;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31000;51000;60000;68872;81000;83000;50362;56261;57847;66935;75096;91395;103670;122325;116676;133728;77025;59776;188997;83215;55324 -138;'484;Mexico;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27400;39050;45165;51490;53253;57468;56581;72402;91629;128736;137033;156727;160674;178267;200944;209452;110749;101669;204544;94799;128201 -138;'484;Mexico;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;219926;226963;234000;234000;222000;231000;330000;390000;219000;40000;111000;183000;169000;173000;175000;177000;149000;157000;168000;178000;184000;184000;195200;202000;214000;200000 -138;'484;Mexico;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64642;154963;200000;112000;273000;183000;250000;273000;318574;447000;472000;303541;361141;483687;432735;470528;488050;485217;596700;587103;628869;590736;550311;683270;568388;448752 -138;'484;Mexico;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55595;165992;187499;94901;197778;189600;245600;273900;307701;362364;476299;294203;377545;438106;462977;482946;525017;527222;554245;610472;684631;618302;533167;718964;664924;551889 -138;'484;Mexico;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26294;94159;43700;17000;22000;29000;55000;69000;82435;117000;145000;54433;33757;43313;42975;62830;38220;28550;42817;51691;66508;45026;50622;72557;31439;16842 -138;'484;Mexico;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10375;39352;10490;8357;11400;21333;35900;46500;57419;65002;90240;43203;40312;48068;49017;61884;51325;36545;44420;55769;72497;57989;55874;76427;49870;29442 -138;'484;Mexico;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -138;'484;Mexico;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13801;33085;42700;11000;7800;13000;7000;9000;11206;8000;8000;6464;8160;5212;4445;6113;5139;16202;17424;6808;9246;10393;9944;8805;8379;7651 -138;'484;Mexico;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8047;24026;27139;7010;5927;8300;4000;5990;8405;5040;5030;5848;7010;4683;4176;4886;4311;20244;20001;5354;7232;6218;5601;7922;11927;7829 -138;'484;Mexico;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2106;7541;3500;4000;3600;3600;3600;7000;7003;2000;9000;1509;2568;2385;228;42;388;245;297;46;185;2;68;68;9;100 -138;'484;Mexico;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1518;5758;1535;1790;1753;1753;1753;3836;3002;480;2785;649;1069;1035;89;68;246;122;288;162;244;1;127;127;13;168 -138;'484;Mexico;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;54000;65000;95000;100000;103000;113000;114000;132000;51000;40000;44000;47000;54000;44000;51000;55000;59000;60000;63000;50000;49000;72000;72000;38000;38000;32000;0;0;24000;24000;23000;24000;21000;30000;31000;36000;38000;40000;48000;48000;40000;42000;42000;43000;47000;50000;45000;44000;44000;46000;48000;47000;43000;41500;43000;44000;45000 -138;'484;Mexico;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;4400;4400;27000;72000;50000;50100;29400;14800;25800;25800;30000;38700;40700;40500;97000;126482;158037;58600;59000;208800;305000;106300;96300;74538;44000;122000;154000;195000;216000;299212;251000;249000;10654;12235;11781;12844;13776;11759;12359;10853;35348;38339;15101;14213;13769;12661;12198 -138;'484;Mexico;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;3900;3900;23800;63700;44000;53390;14666;7400;15200;15200;30000;40000;45093;41227;102392;111323;139596;60806;68048;237553;307504;137182;111295;127113;81694;170555;160280;166524;209000;289037;184990;206865;51626;45905;46622;44430;45814;48978;47555;43988;42225;37036;36505;35739;43356;36628;35693 -138;'484;Mexico;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86500;91300;33000;9100;12000;5000;5000;8000;8000;22000;28105;19000;29000;1592;1869;1952;2296;2269;3219;8049;47941;8114;10314;2167;2010;6270;5984;5341 -138;'484;Mexico;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66047;96608;19688;10566;15807;5421;5421;36749;34952;23000;29677;20269;30530;7858;12547;11190;12066;7810;7810;8499;50628;8568;10890;9186;6592;19944;16133;13661 -138;'484;Mexico;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;715370;785202;799328;591978;883374;935395;986167 -138;'484;Mexico;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1426080;1548889;1704691;1780536;2808314;2885935;2757893 -138;'484;Mexico;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;165148;172269;181261;106823;187618;240688;257464 -138;'484;Mexico;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95460;101213;99248;122498;197755;148668;127701 -138;'484;Mexico;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11805;9426;13189;9515;8775;2865;3866 -138;'484;Mexico;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87371;91368;89431;112681;197070;147983;122692 -138;'484;Mexico;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;153343;162843;168072;97308;178843;237823;253598 -138;'484;Mexico;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8089;9845;9817;9817;685;685;5009 -138;'484;Mexico;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67282;77514;88233;78773;91512;133726;99383 -138;'484;Mexico;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50891;57166;65719;71963;93716;130516;105937 -138;'484;Mexico;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14554;16666;15425;11481;25170;20988;22777 -138;'484;Mexico;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9181;7762;11431;14413;22055;24013;18490 -138;'484;Mexico;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23030;30620;24181;20841;17297;17844;24892 -138;'484;Mexico;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50749;53477;75390;116916;187005;201406;201833 -138;'484;Mexico;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;326;66 -138;'484;Mexico;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;815;25 -138;'484;Mexico;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9 -138;'484;Mexico;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;63 -138;'484;Mexico;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113;113 -138;'484;Mexico;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;151;151 -138;'484;Mexico;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;156;43 -138;'484;Mexico;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;459;103 -138;'484;Mexico;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1 -138;'484;Mexico;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5 -138;'484;Mexico;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;392074;438268;436596;339979;481171;416464;509805 -138;'484;Mexico;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1199155;1307472;1424692;1429011;2161029;2176231;2106272 -138;'484;Mexico;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14473;13975;14302;6662;2643;5666;3607 -138;'484;Mexico;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18030;17773;22852;18702;7535;26799;20674 -138;'484;Mexico;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38809;35890;39330;27419;77963;100019;68239 -138;'484;Mexico;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2614;4026;5359;7033;139219;178302;176986 -138;'484;Mexico;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2312977;2411551;2451614;2232201;2561429;2882949;2796445 -138;'484;Mexico;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1119218;1155404;1190894;1288887;1384656;1594628;1565610 -138;'484;Mexico;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21341;20668;20731;22856;24952;31753;29916 -138;'484;Mexico;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;174;103;72;474;21;261;125 -138;'484;Mexico;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;355151;380063;384396;338945;396632;514850;485138 -138;'484;Mexico;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68242;71934;71852;55750;73495;85324;84071 -138;'484;Mexico;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86741;91795;94319;85991;77486;89730;91236 -138;'484;Mexico;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;171929;176840;174535;277968;217690;201807;188614 -138;'484;Mexico;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1084022;1120682;1162431;1061939;1227739;1318910;1273712 -138;'484;Mexico;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;418390;453391;470537;518204;596077;708638;700107 -138;'484;Mexico;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;765722;798343;789737;722470;834620;927706;916443 -138;'484;Mexico;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;460483;453136;473898;436491;497373;598598;592693 -145;'583;Micronesia (Federated States of);1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3243.4;3419;3901;5276;5205;5915;6085 -145;'583;Micronesia (Federated States of);1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2;17;0;0;85;67 -145;'583;Micronesia (Federated States of);1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2041;1916;2110;2110;2110;2110;2110;2110;2110;2110;2110;2110;2110;2110;2110;2110;2110;2110;2129;3042;2918;2885;1780;2596;3406;1897;1870;2559;2828;3572;3850;2894 -145;'583;Micronesia (Federated States of);1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;11 -145;'583;Micronesia (Federated States of);1861;Roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1739;1784;1570;1614;1652;1710;1827;1826;1856;2102;2132;2163;2195;2227;2260;2295;2331;2368;2406;2444;2476;2508;2541;2574;2607;2631;2654;2678;2702;2726;2748;2771;2794 -145;'583;Micronesia (Federated States of);1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;1058;708;708;708;708;708;708;708;708;708;708;708;708;708;708;708;708;708;368;159;391;391;356;431;3;28;114;309;194;189;2855 -145;'583;Micronesia (Federated States of);1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;75;41;41;41;41;41;41;41;41;41;41;41;41;41;41;41;41;54;25;1;46;64;42;62;1;21;53;175;93;74;282 -145;'583;Micronesia (Federated States of);1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -145;'583;Micronesia (Federated States of);1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -145;'583;Micronesia (Federated States of);1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -145;'583;Micronesia (Federated States of);1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;13;7;68;189;2807 -145;'583;Micronesia (Federated States of);1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;6;3;24;74;246 -145;'583;Micronesia (Federated States of);1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -145;'583;Micronesia (Federated States of);1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -145;'583;Micronesia (Federated States of);1863;Roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1739;1784;1570;1614;1652;1710;1827;1826;1856;2102;2132;2163;2195;2227;2260;2295;2331;2368;2406;2444;2476;2508;2541;2574;2607;2631;2654;2678;2702;2726;2748;2771;2794 -145;'583;Micronesia (Federated States of);1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;25;101;302;126;0;48 -145;'583;Micronesia (Federated States of);1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;20;47;172;69;0;36 -145;'583;Micronesia (Federated States of);1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -145;'583;Micronesia (Federated States of);1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -145;'583;Micronesia (Federated States of);1864;Wood fuel;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1739;1784;1570;1614;1652;1710;1827;1826;1856;2102;2132;2163;2195;2227;2260;2295;2331;2368;2406;2444;2476;2508;2541;2574;2607;2631;2654;2678;2702;2726;2748;2771;2794 -145;'583;Micronesia (Federated States of);1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;215;215;215;215;215;215;215;215;215;215;215;215;215;215;215;215;215;215;215;6;238;238;238;238;;;;;;; -145;'583;Micronesia (Federated States of);1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;1;21;21;21;21;;;;;;; -145;'583;Micronesia (Federated States of);1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -145;'583;Micronesia (Federated States of);1628;Wood fuel, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1739;1784;1570;1614;1652;1710;1827;1826;1856;2102;2132;2163;2195;2227;2260;2295;2331;2368;2406;2444;2476;2508;2541;2574;2607;2631;2654;2678;2702;2726;2748;2771;2794 -145;'583;Micronesia (Federated States of);1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;215;215;215;215;215;215;215;215;215;215;215;215;215;215;215;215;215;215;215;6;238;238;238;238;;;;;;; -145;'583;Micronesia (Federated States of);1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;1;21;21;21;21;;;;;;; -145;'583;Micronesia (Federated States of);1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;843;493;493;493;493;493;493;493;493;493;493;493;493;493;493;493;493;493;153;153;153;153;118;193;3;28;114;309;194;189;2855 -145;'583;Micronesia (Federated States of);1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;66;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;45;16;0;25;43;21;41;1;21;53;175;93;74;282 -145;'583;Micronesia (Federated States of);1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -145;'583;Micronesia (Federated States of);1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -145;'583;Micronesia (Federated States of);1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;843;493;493;493;493;493;493;493;493;493;493;493;493;493;493;493;493;493;153;153;153;153;118;111;3;3;13;7;68;189;2807 -145;'583;Micronesia (Federated States of);1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;66;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;45;16;0;25;43;21;19;1;1;6;3;24;74;246 -145;'583;Micronesia (Federated States of);1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -145;'583;Micronesia (Federated States of);1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -145;'583;Micronesia (Federated States of);1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;843;493;493;493;493;493;493;493;493;493;493;493;493;493;493;493;493;493;153;153;153;153;118;111;3;3;13;7;68;189;2807 -145;'583;Micronesia (Federated States of);1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;66;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;45;16;0;25;43;21;19;1;1;6;3;24;74;246 -145;'583;Micronesia (Federated States of);1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -145;'583;Micronesia (Federated States of);1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -145;'583;Micronesia (Federated States of);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;82;0;25;101;302;126;0;48 -145;'583;Micronesia (Federated States of);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;22;0;20;47;172;69;0;36 -145;'583;Micronesia (Federated States of);1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -145;'583;Micronesia (Federated States of);1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -145;'583;Micronesia (Federated States of);1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -145;'583;Micronesia (Federated States of);1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -145;'583;Micronesia (Federated States of);1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -145;'583;Micronesia (Federated States of);1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -145;'583;Micronesia (Federated States 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;0;0;0;0;0;0;0;0;0;0;82;0;25;101;302;126;0;48 -145;'583;Micronesia (Federated States 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;0;0;0;0;0;0;0;0;0;0;22;0;20;47;172;69;0;36 -145;'583;Micronesia (Federated States of);1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -145;'583;Micronesia (Federated States of);1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -145;'583;Micronesia (Federated States of);1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;234;240;240;247;252;261;278;278;283;287;292;297;301;306;311;317;323;329;335;341;346;351;356;362;367;371;376;380;384;388;392;396;400 -145;'583;Micronesia (Federated States of);1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;880;4;4;4;4;4;4;4;4;4;4;4 -145;'583;Micronesia (Federated States of);1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;180;3;3;3;3;3;3;3;3;3;3;3 -145;'583;Micronesia (Federated States of);1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;880;4;4;4;4;4;4;4;4;4;4;4 -145;'583;Micronesia (Federated States of);1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;180;3;3;3;3;3;3;3;3;3;3;3 -145;'583;Micronesia (Federated States of);1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -145;'583;Micronesia (Federated States of);1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6647;4503;7140;7140;7140;7140;7140;7140;7140;7140;7140;7140;7140;7140;7140;7140;7140;7140;3178;3344;4078;3217;3217;4403;5666;2110;2306;5746;5132;7699;8158;7770 -145;'583;Micronesia (Federated States of);1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1466;1333;1638;1638;1638;1638;1638;1638;1638;1638;1638;1638;1638;1638;1638;1638;1638;1638;1358;1323;1197;1274;1010;1661;2044;962;983;1556;1774;2689;2894;1820 -145;'583;Micronesia (Federated States of);1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -145;'583;Micronesia (Federated States of);1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -145;'583;Micronesia (Federated States of);1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -145;'583;Micronesia (Federated States of);1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6647;4459;7096;7096;7096;7096;7096;7096;7096;7096;7096;7096;7096;7096;7096;7096;7096;7096;3134;3214;3991;3123;3123;4105;5498;1490;1634;5458;4818;7681;8031;7729 -145;'583;Micronesia (Federated States of);1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1466;1301;1606;1606;1606;1606;1606;1606;1606;1606;1606;1606;1606;1606;1606;1606;1606;1606;1231;1221;1131;1199;996;1502;1860;648;676;1412;1611;2590;2784;1771 -145;'583;Micronesia (Federated States of);1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -145;'583;Micronesia (Federated States of);1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -145;'583;Micronesia (Federated States of);1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -145;'583;Micronesia (Federated States of);1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;44;44;44;44;44;44;44;44;44;44;44;44;44;44;44;44;44;130;87;94;94;298;168;620;672;288;314;18;127;41 -145;'583;Micronesia (Federated States of);1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;127;102;66;75;14;159;184;314;307;144;163;99;110;49 -145;'583;Micronesia (Federated States of);1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -145;'583;Micronesia (Federated States of);1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -145;'583;Micronesia (Federated States of);1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -145;'583;Micronesia (Federated States of);1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;335;385;270;270;0;0;11;17;25;39;0;17;0 -145;'583;Micronesia (Federated States of);1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;709;460;569;0;0;0;28;18;25;58;0;17;0 -145;'583;Micronesia (Federated States of);1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -145;'583;Micronesia (Federated States of);1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -145;'583;Micronesia (Federated States of);1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -145;'583;Micronesia (Federated States of);1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1708;1125;901;901;901;901;901;901;901;901;901;901;901;901;901;901;901;901;1360;1301;1335;169;169;1012;1565;1180;1302;1129;766;1353;1172;841 -145;'583;Micronesia (Federated States of);1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;525;439;359;359;359;359;359;359;359;359;359;359;359;359;359;359;359;359;645;734;822;715;425;612;1019;625;567;613;447;613;721;620 -145;'583;Micronesia (Federated States of);1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;45 -145;'583;Micronesia (Federated States of);1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;11 -145;'583;Micronesia (Federated States of);1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -145;'583;Micronesia (Federated States of);1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1669;1123;899;899;899;899;899;899;899;899;899;899;899;899;899;899;899;899;1358;1143;1172;27;27;870;1423;1038;1160;977;753;1322;1154;812 -145;'583;Micronesia (Federated States of);1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;515;437;357;357;357;357;357;357;357;357;357;357;357;357;357;357;357;357;643;684;767;669;379;566;973;579;521;561;440;596;712;473 -145;'583;Micronesia (Federated States of);1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -145;'583;Micronesia (Federated States of);1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -145;'583;Micronesia (Federated States of);1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;2;2;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -145;'583;Micronesia (Federated States of);1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;2;2;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -145;'583;Micronesia (Federated States of);1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;21;26;5;5;5;5;5;5;15;4;17;17;23 -145;'583;Micronesia (Federated States of);1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;6;11;2;2;2;2;2;2;8;1;8;8;142 -145;'583;Micronesia (Federated States of);1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27 -145;'583;Micronesia (Federated States of);1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8 -145;'583;Micronesia (Federated States of);1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -145;'583;Micronesia (Federated States of);1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -145;'583;Micronesia (Federated States of);1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;137;137;137;137;137;137;137;137;137;9;14;1;6 -145;'583;Micronesia (Federated States of);1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;44;44;44;44;44;44;44;44;6;9;1;5 -145;'583;Micronesia (Federated States of);1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18 -145;'583;Micronesia (Federated States of);1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3 -145;'583;Micronesia (Federated States of);1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;137;137;137;137;137;137;137;137;137;9;14;1;6 -145;'583;Micronesia (Federated States of);1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;44;44;44;44;44;44;44;44;6;9;1;5 -145;'583;Micronesia (Federated States of);1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18 -145;'583;Micronesia (Federated States of);1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3 -145;'583;Micronesia (Federated States of);1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -145;'583;Micronesia (Federated States of);1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -145;'583;Micronesia (Federated States of);1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;143;63;63;63;63;63;63;1;1;1;1;1 -145;'583;Micronesia (Federated States of);1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;39;15;15;15;15;15;15;5;3;3;3;3 -145;'583;Micronesia (Federated States of);1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1 -145;'583;Micronesia (Federated States of);1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1;1;1;1;1;1;1;1;1;1;1 -145;'583;Micronesia (Federated States of);1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1 -145;'583;Micronesia (Federated States of);1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1;1;1;1;1;1;1;1;1;1;1 -145;'583;Micronesia (Federated States of);1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;142;62;62;62;62;62;62;0;0;0;0;0 -145;'583;Micronesia (Federated States of);1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;37;14;14;14;14;14;14;4;2;2;2;2 -145;'583;Micronesia (Federated States of);1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;77;91;91;91;91;91;91;91;91;91;91;91;91;91;91;91;91;91;150;141;185;185;188;188;188;188;220;288;150;85;107 -145;'583;Micronesia (Federated States of);1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;69;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;237;219;263;263;263;263;263;263;304;368;171;138;166 -145;'583;Micronesia (Federated States of);2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;59;59;59;59;59;59;180;250;115;55;75 -145;'583;Micronesia (Federated States of);2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;15;18;61;61;61;61;61;61;198;241;138;86;113 -145;'583;Micronesia (Federated States of);1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;2;6;6;6;6;6;6;6;6;6;6;5 -145;'583;Micronesia (Federated States of);1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;2;4;4;4;4;4;4;4;4;4;4;4 -145;'583;Micronesia (Federated States of);1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;6;12;53;53;53;53;53;53;174;244;109;49;70 -145;'583;Micronesia (Federated States of);1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;10;16;57;57;57;57;57;57;194;237;134;82;109 -145;'583;Micronesia (Federated States of);1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1 -145;'583;Micronesia (Federated States of);1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6 -145;'583;Micronesia (Federated States of);1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;10;33;33;33;33;33;33;173;243;99;48;68 -145;'583;Micronesia (Federated States of);1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;13;36;36;36;36;36;36;193;237;118;81;101 -145;'583;Micronesia (Federated States of);1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;14;14;14;14;14;14;14;14;14;14;4;2;20;20;20;20;20;20;1;1;10;1;1 -145;'583;Micronesia (Federated States of);1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;11;11;11;11;11;11;11;11;11;7;3;21;21;21;21;21;21;1;0;16;1;2 -145;'583;Micronesia (Federated States of);1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;20;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;136;127;126;126;129;129;129;129;40;38;35;30;32 -145;'583;Micronesia (Federated States of);1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;24;61;61;61;61;61;61;61;61;61;61;61;61;61;61;61;61;61;222;201;202;202;202;202;202;202;106;127;33;52;53 -145;'583;Micronesia (Federated States of);1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;77;77;77;77;77;77;77;77;77;77;77;77;125;114;116;116;116;116;116;116;7;14;1;9;7 -145;'583;Micronesia (Federated States of);1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;61;61;61;61;61;61;61;61;61;61;61;61;190;180;173;173;173;173;173;173;56;89;3;34;27 -145;'583;Micronesia (Federated States of);2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;13;10;10;13;13;13;13;32;24;34;21;25 -145;'583;Micronesia (Federated States of);2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;21;29;29;29;29;29;29;43;36;28;16;24 -145;'583;Micronesia (Federated States of);1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1;0;0;0;0;0;0;19;19;19;19;24 -145;'583;Micronesia (Federated States of);1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;0;0;0;0;0;14;12;12;12;22 -145;'583;Micronesia (Federated States of);1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1;1;1;1;1;1;1;1;1;1;1;0 -145;'583;Micronesia (Federated States of);1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1;1;1;1;1;1;1;1;4;3;3;1 -145;'583;Micronesia (Federated States of);1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;10;5;5;8;8;8;8;8;0;13;0;0 -145;'583;Micronesia (Federated States of);1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;13;8;8;8;8;8;8;8;0;13;1;1 -145;'583;Micronesia (Federated States of);1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;1;4;4;4;4;4;4;4;4;1;1;1 -145;'583;Micronesia (Federated States of);1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;6;20;20;20;20;20;20;20;20;0;0;0 -145;'583;Micronesia (Federated States of);1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0 -145;'583;Micronesia (Federated States of);1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;2;2;2;2 -145;'583;Micronesia (Federated States of);1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;644.4;869;310;563;243;761;2126 -145;'583;Micronesia (Federated States of);1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2;17;0;0;85;56 -145;'583;Micronesia (Federated States of);2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15.9;30;29;40;40;44;1285 -145;'583;Micronesia (Federated States of);1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15.7;27;27;27;27;31;1272 -145;'583;Micronesia (Federated States of);1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.2;3;2;13;13;13;13 -145;'583;Micronesia (Federated States of);1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.5;1;2;0;13;13;13 -145;'583;Micronesia (Federated States of);1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;3;22;6;20;0;51 -145;'583;Micronesia (Federated States of);1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -145;'583;Micronesia (Federated States of);1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;204;243;88;160;125;81;339 -145;'583;Micronesia (Federated States of);1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;367;540;151;342;34;596;404 -145;'583;Micronesia (Federated States of);1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2;17;0;0;85;56 -145;'583;Micronesia (Federated States of);1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -145;'583;Micronesia (Federated States of);1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -145;'583;Micronesia (Federated States of);1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;52;18;15;11;27;34 -145;'583;Micronesia (Federated States of);5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;702;680;1032;1885;1390;1304;1065 -145;'583;Micronesia (Federated States of);1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;119;73;97;47;47;47 -145;'583;Micronesia (Federated States of);1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;2;7;1;3;0;5 -145;'583;Micronesia (Federated States of);1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -145;'583;Micronesia (Federated States of);1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;476;436;397;1303;629;630;328 -145;'583;Micronesia (Federated States of);1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -145;'583;Micronesia (Federated States of);1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;25;308;113;85;133;111 -145;'583;Micronesia (Federated States of);1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;98;247;371;626;494;574 -145;'583;Micronesia (Federated States of);1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -141;'496;Mongolia;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85710;111796;117555;114562;150684.18;210127;170356 -141;'496;Mongolia;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2198;2072;2635;1854;2711;3026.57;4315.56 -141;'496;Mongolia;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;660;660;660;680;740;740;740;740;740;3850;3950;3950;3974;3994;4016;4140;6800;6800;6800;6800;28;155;158;37;1494;1494;1598;274;833;759;1722;2873;2509;2945;2968;2968;2968;2968;2968;2968;2968;2968;12728;14210;20579;28804;32476;37165;66773;43780;50406;34357;51511;58587;61735;84340.18;101500;62723 -141;'496;Mongolia;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;1920;1282;3632;3900;6400;6400;6400;6400;6400;200;70;70;70;70;0;2830;20;2883;99;349;4773;7377;6373;4524;10243;14652;24738;6286;614;614;614;614;614;614;614;614;665;389;351;406;161;202;339;224;153;136;190;397;187;210;183.56;1136.57 -141;'496;Mongolia;1861;Roundwood;5516;Production;m3;1000000;1100000;935000;1300000;1400000;1500000;1650000;1800000;1990000;2023600;2104000;2140000;2161000;2167000;2245000;2280000;2569000;2668000;2939000;2843000;2985000;3615000;2222000;2114000;2237000;2271000;2180000;1881000;1866000;1500000;996000;957000;958000;873000;737000;737000;737000;737000;737000;644000;717000;744000;756000;769000;765000;796005;800000;804100;808216;812361;815334;780000;762000;762000;762000;762000;762000;762000;762000;893867;895137;896414;897699 -141;'496;Mongolia;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;44;44;12872;12872;12117;6514;6514;6514;6514;6514;6514;6514;6514;4281;4281;1117;797;1480;1480;1641;152;997;1603;279;204;222;296;68;98 -141;'496;Mongolia;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;4;4;779;779;556;308;308;308;308;308;308;308;308;293;293;105;64;151;140;157;12;73;145;44;32;18;35;14;20 -141;'496;Mongolia;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5995;6232;12485;26056;6056;4456;2212;2212;3052;702;702;702;702;702;702;702;702;1242;1242;50;530;446;50;107;27;27;0;0;0;0;242;0;143 -141;'496;Mongolia;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;250;210;770;2486;603;261;134;134;183;39;39;39;39;39;39;39;39;65;65;2;27;23;2;181;3;3;0;0;0;0;29;0;209 -141;'496;Mongolia;1862;Roundwood, coniferous;5516;Production;m3;935000;1030000;865000;1215000;1310000;1405000;1545000;1685000;1845000;1869600;1948000;1983000;2004000;2010000;2086000;2120000;2403000;2500000;2766000;2672000;2811000;3398000;2046000;1941000;2060000;2093000;2005000;1715000;1700000;1345000;849000;812000;813000;731000;600000;600000;600000;600000;600000;495000;564000;590000;602000;615000;611000;642005;646000;650100;654216;658361;661334;677000;660000;660000;660000;660000;660000;660000;660000;791867;793137;794414;795699 -141;'496;Mongolia;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;210;250;27;180;254;39;39 -141;'496;Mongolia;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;31;1;16;33;12;12 -141;'496;Mongolia;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -141;'496;Mongolia;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -141;'496;Mongolia;1863;Roundwood, non-coniferous;5516;Production;m3;65000;70000;70000;85000;90000;95000;105000;115000;145000;154000;156000;157000;157000;157000;159000;160000;166000;168000;173000;171000;174000;217000;176000;173000;177000;178000;175000;166000;166000;155000;147000;145000;145000;142000;137000;137000;137000;137000;137000;149000;153000;154000;154000;154000;154000;154000;154000;154000;154000;154000;154000;103000;102000;102000;102000;102000;102000;102000;102000;102000;102000;102000;102000 -141;'496;Mongolia;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1393;29;177;42;42;29;59 -141;'496;Mongolia;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121;13;31;2;2;2;8 -141;'496;Mongolia;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;242;0;143 -141;'496;Mongolia;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;29;0;209 -141;'496;Mongolia;1864;Wood fuel;5516;Production;m3;600000;650000;510000;800000;850000;900000;1000000;1100000;1170000;1236000;1284000;1305000;1317000;1321000;1367000;1387000;1557000;1615000;1775000;1718000;1801000;1578000;996000;951000;1002000;1016000;978000;853000;847000;694000;365000;354000;354000;331000;292000;292000;292000;292000;292000;553000;632000;704000;704000;704000;704000;747005;751000;755100;759216;763361;766334;600000;600000;600000;600000;600000;600000;600000;600000;731867;733137;734414;735699 -141;'496;Mongolia;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;0;0;0;0;0;0;0;0;0;0;0;42;42;42;127;127;127;460;1;36;146;29;127;169;169;68;98 -141;'496;Mongolia;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;0;0;0;0;0;0;0;0;0;0;0;1;1;1;4;4;4;52;2;4;28;13;7;4;4;14;20 -141;'496;Mongolia;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;6;6;6;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;27;27;;;;;;; -141;'496;Mongolia;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;1;1;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;3;;;;;;; -141;'496;Mongolia;1627;Wood fuel, coniferous;5516;Production;m3;540000;585000;445000;720000;765000;810000;900000;990000;1055000;1121000;1169000;1190000;1202000;1206000;1252000;1272000;1442000;1500000;1660000;1603000;1686000;1463000;881000;836000;887000;901000;863000;738000;732000;579000;250000;239000;239000;216000;177000;177000;177000;177000;177000;408000;483000;552000;552000;552000;552000;595005;599000;603100;607216;611361;614334;500000;500000;500000;500000;500000;500000;500000;500000;631867;633137;634414;635699 -141;'496;Mongolia;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105;0;26;127;127;39;39 -141;'496;Mongolia;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;0;1;2;2;12;12 -141;'496;Mongolia;1628;Wood fuel, non-coniferous;5516;Production;m3;60000;65000;65000;80000;85000;90000;100000;110000;115000;115000;115000;115000;115000;115000;115000;115000;115000;115000;115000;115000;115000;115000;115000;115000;115000;115000;115000;115000;115000;115000;115000;115000;115000;115000;115000;115000;115000;115000;115000;145000;149000;152000;152000;152000;152000;152000;152000;152000;152000;152000;152000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000 -141;'496;Mongolia;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;29;101;42;42;29;59 -141;'496;Mongolia;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;13;6;2;2;2;8 -141;'496;Mongolia;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;0;0;0;0;0;0;0;0;0;0;0;42;42;42;127;127;127;460;1;36;;;;;;; -141;'496;Mongolia;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;0;0;0;0;0;0;0;0;0;0;0;1;1;1;4;4;4;52;2;4;;;;;;; -141;'496;Mongolia;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;6;6;6;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;27;27;;;;;;; -141;'496;Mongolia;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;1;1;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;3;;;;;;; -141;'496;Mongolia;1865;Industrial roundwood;5516;Production;m3;400000;450000;425000;500000;550000;600000;650000;700000;820000;787600;820000;835000;844000;846000;878000;893000;1012000;1053000;1164000;1125000;1184000;2037000;1226000;1163000;1235000;1255000;1202000;1028000;1019000;806000;631000;603000;604000;542000;445000;445000;445000;445000;445000;91000;85000;40000;52000;65000;61000;49000;49000;49000;49000;49000;49000;180000;162000;162000;162000;162000;162000;162000;162000;162000;162000;162000;162000 -141;'496;Mongolia;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;24;24;12872;12872;12117;6514;6514;6514;6514;6514;6514;6514;6514;4239;4239;1075;670;1353;1353;1181;151;961;1457;250;77;53;127;0;0 -141;'496;Mongolia;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;3;779;779;556;308;308;308;308;308;308;308;308;292;292;104;60;147;136;105;10;69;117;31;25;14;31;0;0 -141;'496;Mongolia;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5995;6232;12398;26050;6050;4450;2212;2212;3052;702;702;702;702;702;702;702;702;1242;1242;50;530;446;50;107;0;0;0;0;0;0;242;0;143 -141;'496;Mongolia;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;250;210;767;2485;602;260;134;134;183;39;39;39;39;39;39;39;39;65;65;2;27;23;2;181;0;0;0;0;0;0;29;0;209 -141;'496;Mongolia;1866;Industrial roundwood, coniferous;5516;Production;m3;395000;445000;420000;495000;545000;595000;645000;695000;790000;748600;779000;793000;802000;804000;834000;848000;961000;1000000;1106000;1069000;1125000;1935000;1165000;1105000;1173000;1192000;1142000;977000;968000;766000;599000;573000;574000;515000;423000;423000;423000;423000;423000;87000;81000;38000;50000;63000;59000;47000;47000;47000;47000;47000;47000;177000;160000;160000;160000;160000;160000;160000;160000;160000;160000;160000;160000 -141;'496;Mongolia;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;24;24;12871;12871;12116;6459;6459;6459;6459;6459;6459;6459;6459;3225;3225;53;83;192;192;192;0;960;105;250;1;53;127;0;0 -141;'496;Mongolia;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;3;778;778;555;306;306;306;306;306;306;306;306;197;197;3;5;12;1;0;0;69;8;31;0;14;31;0;0 -141;'496;Mongolia;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5995;6232;12328;26000;6000;4400;2162;2162;3002;652;652;652;652;652;652;652;652;1192;1192;0;480;396;0;0;0;0;0;0;0;0;0;0;0 -141;'496;Mongolia;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;250;210;753;2483;600;258;132;132;181;37;37;37;37;37;37;37;37;63;63;0;25;21;0;0;0;0;0;0;0;0;0;0;0 -141;'496;Mongolia;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;24;24;12871;12871;12116;6459;6459;6459;6459;6459;6459;6459;6459;3225;3225;53;83;192;192;192;0;960;105;250;1;53;127;0;0 -141;'496;Mongolia;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;3;778;778;555;306;306;306;306;306;306;306;306;197;197;3;5;12;1;0;0;69;8;31;0;14;31;0;0 -141;'496;Mongolia;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5995;6232;12328;26000;6000;4400;2162;2162;3002;652;652;652;652;652;652;652;652;1192;1192;0;480;396;0;0;0;0;0;0;0;0;0;0;0 -141;'496;Mongolia;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;250;210;753;2483;600;258;132;132;181;37;37;37;37;37;37;37;37;63;63;0;25;21;0;0;0;0;0;0;0;0;0;0;0 -141;'496;Mongolia;1867;Industrial roundwood, non-coniferous;5516;Production;m3;5000;5000;5000;5000;5000;5000;5000;5000;30000;39000;41000;42000;42000;42000;44000;45000;51000;53000;58000;56000;59000;102000;61000;58000;62000;63000;60000;51000;51000;40000;32000;30000;30000;27000;22000;22000;22000;22000;22000;4000;4000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;3000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000 -141;'496;Mongolia;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;55;55;55;55;55;55;55;55;1014;1014;1022;587;1161;1161;989;151;1;1352;0;76;0;0;0;0 -141;'496;Mongolia;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;2;2;2;2;2;2;2;2;95;95;101;55;135;135;105;10;0;109;0;25;0;0;0;0 -141;'496;Mongolia;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;50;50;50;50;50;50;50;50;50;50;50;50;50;50;50;50;50;50;50;50;107;0;0;0;0;0;0;242;0;143 -141;'496;Mongolia;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;181;0;0;0;0;0;0;29;0;209 -141;'496;Mongolia;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;8;0;0;1;0;0;0;0;0;0 -141;'496;Mongolia;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;0;0;0;0;0;0;0;0;0 -141;'496;Mongolia;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;57;0;0;0;0;0;0;0;0;0 -141;'496;Mongolia;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;179;0;0;0;0;0;0;0;0;0 -141;'496;Mongolia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;55;55;55;55;55;55;55;55;1014;1014;1014;579;1153;1153;981;151;1;1351;0;76;0;0;0;0 -141;'496;Mongolia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;2;2;2;2;2;2;2;2;95;95;95;49;129;129;99;10;0;109;0;25;0;0;0;0 -141;'496;Mongolia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;50;50;50;50;50;50;50;50;50;50;50;50;50;50;50;50;50;50;50;50;50;0;0;0;0;0;0;242;0;143 -141;'496;Mongolia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;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;29;0;209 -141;'496;Mongolia;1868;Sawlogs and veneer logs;5516;Production;m3;400000;450000;425000;500000;550000;600000;650000;700000;820000;787600;820000;835000;844000;846000;878000;893000;1012000;1053000;1164000;1125000;1184000;2037000;1226000;1163000;1235000;1255000;1202000;1028000;1019000;806000;631000;603000;604000;542000;445000;445000;445000;445000;445000;91000;85000;40000;42000;46000;42000;35000;35000;35000;35000;35000;35000;59000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000 -141;'496;Mongolia;1868;Sawlogs and veneer logs;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -141;'496;Mongolia;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;395000;445000;420000;495000;545000;595000;645000;695000;790000;748600;779000;793000;802000;804000;834000;848000;961000;1000000;1106000;1069000;1125000;1935000;1165000;1105000;1173000;1192000;1142000;977000;968000;766000;599000;573000;574000;515000;423000;423000;423000;423000;423000;87000;81000;38000;40000;44000;40000;33000;33000;33000;33000;33000;33000;56000;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000 -141;'496;Mongolia;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -141;'496;Mongolia;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;5000;5000;5000;5000;5000;5000;5000;5000;30000;39000;41000;42000;42000;42000;44000;45000;51000;53000;58000;56000;59000;102000;61000;58000;62000;63000;60000;51000;51000;40000;32000;30000;30000;27000;22000;22000;22000;22000;22000;4000;4000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;3000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000 -141;'496;Mongolia;1871;Other industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;19000;19000;14000;14000;14000;14000;14000;14000;121000;119000;119000;119000;119000;119000;119000;119000;119000;119000;119000;119000 -141;'496;Mongolia;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;19000;19000;14000;14000;14000;14000;14000;14000;121000;119000;119000;119000;119000;119000;119000;119000;119000;119000;119000;119000 -141;'496;Mongolia;1630;Wood charcoal;5510;Production;t;4266;4383;4503;4627;4754;4884;5018;5156;5297;5443;5594;5796;5870;6044;6196;6372;6642;6768;6890;7135;7288;7413;7602;7804;8033;8263;8632;8823;9093;9572;10252;10951;11393;11700;11868;12194;12459;12673;12954;13251;13500;13753;14011;14275;14543;14783;15027;15276;15528;15785;15991;16199;16410;16625;16841;15785;17139;17290;17442;17595;17744;17894;18046 -141;'496;Mongolia;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;9;9;9;9;9;9;9;9;2;2;2;31;15;15;32;36;88;50;40;75;21;44;62;27 -141;'496;Mongolia;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;2;2;2;2;2;2;2;2;2;2;2;28;10;10;32;28;51;27;37;93;24;61;45;38 -141;'496;Mongolia;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;351;171;125;125;125;125;125;125;125;122;122;122;122;122;122;122 -141;'496;Mongolia;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;37;34;34;34;34;34;34;34;24;24;24;24;24;24;24 -141;'496;Mongolia;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;15;15;15;15;15;15;15;15;10;10;10;13;13;77;30;25;29;46;46;35;6;30;66 -141;'496;Mongolia;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;0;0;0;3;3;76;29;12;16;22;17;13;3;16;42 -141;'496;Mongolia;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13 -141;'496;Mongolia;1695;Wood chips, particles and residues;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 -141;'496;Mongolia;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;9;9;9;19;15;3;5;4;40 -141;'496;Mongolia;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;10;10;10;7;6;2;2;1;27 -141;'496;Mongolia;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;15;15;15;15;15;15;15;15;15;10;10;10;10;10;74;21;16;20;27;31;32;1;26;26 -141;'496;Mongolia;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;0;0;0;0;0;73;19;2;6;15;11;11;1;15;15 -141;'496;Mongolia;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13 -141;'496;Mongolia;1620;Wood residues;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 -141;'496;Mongolia;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;4000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000 -141;'496;Mongolia;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;4;43;264;1 -141;'496;Mongolia;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;19;42;7 -141;'496;Mongolia;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;395 -141;'496;Mongolia;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70 -141;'496;Mongolia;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;351 -141;'496;Mongolia;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62 -141;'496;Mongolia;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;4000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000 -141;'496;Mongolia;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;4;43;264;1 -141;'496;Mongolia;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;19;42;7 -141;'496;Mongolia;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44 -141;'496;Mongolia;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8 -141;'496;Mongolia;1872;Sawnwood;5516;Production;m3;150000;150000;125000;185000;187000;250000;300000;350000;420000;421000;438000;446000;451000;452000;469000;477000;541000;562000;622000;559000;588000;590000;612000;630000;686000;624000;581000;541000;553000;509000;270000;124000;84000;50000;61000;170000;200000;300000;300000;300000;300000;300000;300000;300000;300000;300000;300000;300000;300000;300000;300000;30000;22000;22000;22000;22000;22000;22000;22000;19400;19400;19400;19400 -141;'496;Mongolia;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;13;1313;284;284;2240;2023;2023;2023;2023;2023;2023;2023;2023;776;542;1989;7776;6031;19072;25869;13763;5791;4626;1977;4062;1949;8712;4128;4146 -141;'496;Mongolia;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;1;184;65;65;108;130;130;130;130;130;130;130;130;306;205;407;1617;975;2396;3757;2006;479;567;359;1041;264;2195;1351;1351 -141;'496;Mongolia;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;30600;20500;59000;60100;82600;82600;82600;82600;82600;1200;300;300;300;300;0;17701;67;23277;122;122;26117;90836;46000;45000;114600;190641;290038;65851;3112;3112;3112;3112;3112;3112;3112;3112;84;84;49;49;49;49;484;67;59;21;0;0;23;0;50;1298 -141;'496;Mongolia;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;1920;1282;3632;3900;6400;6400;6400;6400;6400;200;70;70;70;70;0;2830;20;2883;99;99;4541;6587;3860;3900;9973;14458;24547;6039;456;456;456;456;456;456;456;456;187;187;19;19;0;62;10;38;15;4;0;66;6;0;22;725 -141;'496;Mongolia;1632;Sawnwood, coniferous;5516;Production;m3;150000;150000;125000;185000;187000;250000;300000;350000;420000;421000;438000;446000;451000;452000;469000;477000;541000;562000;622000;559000;588000;590000;612000;630000;686000;624000;581000;541000;553000;509000;270000;124000;84000;50000;61000;170000;200000;300000;300000;300000;300000;300000;300000;300000;300000;300000;300000;300000;300000;300000;300000;30000;22000;22000;22000;22000;22000;22000;22000;19400;19400;19400;19400 -141;'496;Mongolia;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;13;13;253;253;2031;2006;2006;2006;2006;2006;2006;2006;2006;703;526;1897;7596;5761;18020;25596;13178;5511;4274;1392;3607;1868;8585;4125;4125 -141;'496;Mongolia;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;1;1;40;40;100;129;129;129;129;129;129;129;129;229;193;318;1391;746;2085;3687;1827;407;453;169;916;148;2072;1318;1318 -141;'496;Mongolia;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;30600;20500;59000;60100;82600;82600;82600;82600;82600;1200;300;300;300;300;0;17701;67;23277;122;122;26117;90836;46000;45000;114600;190603;290000;65732;3027;3027;3027;3027;3027;3027;3027;3027;29;29;29;29;29;29;464;25;59;21;0;0;23;0;31;1298 -141;'496;Mongolia;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;1920;1282;3632;3900;6400;6400;6400;6400;6400;200;70;70;70;70;0;2830;20;2883;99;99;4541;6587;3860;3900;9973;14453;24542;6020;391;391;391;391;391;391;391;391;17;17;0;13;0;55;0;8;15;4;0;0;6;0;13;725 -141;'496;Mongolia;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -141;'496;Mongolia;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1300;31;31;209;17;17;17;17;17;17;17;17;73;16;92;180;270;1052;273;585;280;352;585;455;81;127;3;21 -141;'496;Mongolia;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;183;25;25;8;1;1;1;1;1;1;1;1;77;12;89;226;229;311;70;179;72;114;190;125;116;123;33;33 -141;'496;Mongolia;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;38;119;85;85;85;85;85;85;85;85;55;55;20;20;20;20;20;42;0;0;0;0;0;0;19;0 -141;'496;Mongolia;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;19;65;65;65;65;65;65;65;65;170;170;19;6;0;7;10;30;0;0;0;66;0;0;9;0 -141;'496;Mongolia;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;2000;2000;2000;2000;2000 -141;'496;Mongolia;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;47;47;9;9;13;19;19;19;19;19;19;19;19;19;14;72;63;54;54;12;23;155;15;20;0;48;0;13;13 -141;'496;Mongolia;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;32;32;4;4;10;9;9;9;9;9;9;9;9;9;8;75;65;53;9;19;29;81;30;67;7;29;1;6;6 -141;'496;Mongolia;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;20;2;2;2;2;67;565;565;565;565;565;565;565;565;57;57;57;57;57;57;57;0;0;4;0;1287;0;0;0;0 -141;'496;Mongolia;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;6;1;1;1;1;8;73;73;73;73;73;73;73;73;17;17;0;0;0;0;0;0;0;2;0;149;4;0;6;0 -141;'496;Mongolia;1873;Wood-based panels;5516;Production;m3;;;;;;;;;2700;3200;3400;3500;3500;3500;3500;3500;3500;3500;3500;3500;3500;3500;3500;3500;3500;3500;3500;3500;5400;8900;3000;1800;1600;1600;1600;1600;1600;1600;1600;1600;1600;1600;1600;1600;1600;1600;1600;1600;1600;1600;1600;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000 -141;'496;Mongolia;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;500;500;500;500;500;1500;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;0;0;0;0;3;3;4042;27;308;816;1229;5263;5263;7189;4385;4385;4385;4385;4385;4385;4385;4385;8017;20062;32248;41699;43109;76773;65504;50823;44024;72858;75976;170320;179186;214905.55;201087;149690 -141;'496;Mongolia;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;60;60;60;60;60;450;300;300;300;300;300;300;300;300;300;300;0;0;0;0;1;1;525;12;127;252;373;1123;1123;340;372;372;372;372;372;372;372;372;3760;6885;8625;11431;13249;18796;33302;22188;15443;14211;17935;29759;35059;52178.64;59033;43943 -141;'496;Mongolia;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;10;9;9;77;77;77;73;73;73;73;73;73;73;73;73;17;17;17;17;17;20;1;1;1;14;18;13;13;13.48;1.48 -141;'496;Mongolia;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;3;2;2;37;37;37;37;37;37;37;37;37;37;37;37;17;14;9;2;2;10;8;8;8;36;30;28;29;28.57;3.56 -141;'496;Mongolia;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;2300;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;4900;3400;1900;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 -141;'496;Mongolia;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;500;500;500;500;500;1500;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;0;0;0;0;3;3;76;14;155;447;300;469;469;156;327;327;327;327;327;327;327;327;515;596;3951;1433;7812;41476;17676;4175;2857;9003;27098;36711;24799;29803;39623;36707 -141;'496;Mongolia;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;60;60;60;60;60;450;300;300;300;300;300;300;300;300;300;300;0;0;0;0;1;1;30;9;73;167;142;131;131;45;28;28;28;28;28;28;28;28;451;732;1248;969;2991;8538;9196;3079;995;2757;3669;4833;4050;5744;12025;11813 -141;'496;Mongolia;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;68;68;68;68;68;68;68;68;68;68;68;12;12;12;12;12;15;0;0;0;0;5;0;0;0;0 -141;'496;Mongolia;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;35;35;35;35;35;35;35;35;35;35;35;15;12;7;0;0;8;0;0;0;0;2;0;0;0;0 -141;'496;Mongolia;1646;Particle board and OSB (1961-1994);5516;Production;m3;;;;;;;;;400;200;400;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;5500;1100;800;600;600;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -141;'496;Mongolia;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -141;'496;Mongolia;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -141;'496;Mongolia;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -141;'496;Mongolia;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -141;'496;Mongolia;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;0;0;0;0;0;0;0;0;0;0;0;0 -141;'496;Mongolia;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;600;1951;1951;750;1571;1571;1571;1571;1571;1571;1571;1571;1081;3262;4639;5753;70;70;4943;1467;991;7733;7733;74224;91089;97380.76;84672;5642 -141;'496;Mongolia;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;173;473;473;72;120;120;120;120;120;120;120;120;494;834;934;1022;68;68;3506;499;324;2075;2075;9517;11304;15536.48;17927;1807 -141;'496;Mongolia;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;1;1;1;1;0;0;0;0.48;0.48 -141;'496;Mongolia;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;8;8;8;8;0;0;1;0.56;0.56 -141;'496;Mongolia;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;160;13;13;13;13;13;13;13;13;423;2065;5366;9637;12314;12314;28065;33590;25839;38486;19910;26424;35641;30194.86;18612;59561 -141;'496;Mongolia;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;3;3;3;3;3;3;3;3;196;393;957;1701;2338;2338;10282;12103;7347;4357;2644;5058;10378;6489.19;5303;11809 -141;'496;Mongolia;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -141;'496;Mongolia;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -141;'496;Mongolia;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3966;13;142;269;329;2843;2843;6123;2474;2474;2474;2474;2474;2474;2474;2474;5998;14139;18292;24876;22913;22913;14820;11591;14337;17636;21235;32961;27657;57526.93;58180;47780 -141;'496;Mongolia;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;495;3;52;53;58;519;519;221;221;221;221;221;221;221;221;221;2619;4926;5486;7739;7852;7852;10318;6507;6777;5022;9547;10351;9327;24408.97;23778;18514 -141;'496;Mongolia;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;13;1 -141;'496;Mongolia;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;;;;;;;;;;;;;;;;;;;;;;;;28;28;28;28;28;3 -141;'496;Mongolia;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1093;1093;1662;2240;2240;2240;2240;2240;2240;2240;2240;2140;7608;9871;13221;12507;12507;1552;1187;1018;10026;1336;1848;2451;3796.27;8895;18753 -141;'496;Mongolia;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;307;307;153;211;211;211;211;211;211;211;211;1146;3127;3753;5246;5486;5486;1386;909;633;2391;1028;1297;1534;7838.9;5820;9443 -141;'496;Mongolia;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -141;'496;Mongolia;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -141;'496;Mongolia;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;29;234;234;2793;42;42;42;42;42;42;42;42;3689;6505;8384;11652;10307;10307;13226;10291;13295;7586;19875;31106;25197;53724.66;48284;27588 -141;'496;Mongolia;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;123;123;34;3;3;3;3;3;3;3;3;1334;1783;1711;2481;2248;2248;8884;5527;5892;2379;8267;9046;7582;16565.07;17297;8548 -141;'496;Mongolia;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;13;1 -141;'496;Mongolia;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;28;28;28;3 -141;'496;Mongolia;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;177;8;122;240;300;1516;1516;1668;192;192;192;192;192;192;192;192;169;26;37;3;99;99;42;113;24;24;24;7;9;6;1001;1439 -141;'496;Mongolia;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;1;35;36;41;89;89;34;7;7;7;7;7;7;7;7;139;16;22;12;118;118;48;71;252;252;252;8;211;5;661;523 -141;'496;Mongolia;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -141;'496;Mongolia;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -141;'496;Mongolia;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3789;5;20;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -141;'496;Mongolia;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;434;2;17;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -141;'496;Mongolia;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -141;'496;Mongolia;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -141;'496;Mongolia;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;279;100;100;100;100;53;118;118;118;118;118;118;118;118;110;110;126;842;885;885;849;2025;2829;4466;4453;4653;4195;4184.25;5387;665 -141;'496;Mongolia;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;220;23;23;23;23;22;36;36;36;36;36;36;36;36;32;32;59;86;132;132;632;1500;2050;2389;3407;3572;2693;3496.45;4924;1034 -141;'496;Mongolia;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;198;198;198;52;52;52;52;52;52;52;52;3037;377;1717;1561;358;358;358;419;197;196;196;196;196;196;196;196 -141;'496;Mongolia;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;16;16;16;5;5;5;5;5;5;5;5;285;62;278;313;98;98;98;135;85;88;88;88;88;88;88;88 -141;'496;Mongolia;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;180;1;1;1;1;23;23;23;23;23;23;23;23;23;15;15;31;542;883;883;847;2023;2828;4465;4452;4653;4195;4162.25;5387;665 -141;'496;Mongolia;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;198;1;1;1;1;18;18;18;18;18;18;18;18;18;14;14;41;15;132;132;630;1498;2048;2387;3405;3572;2693;3472.45;4924;1034 -141;'496;Mongolia;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;98;98;98;98;98;98;98;159;159;159;159;159;159;159;159;159 -141;'496;Mongolia;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;48;48;48;48;48;48;48;85;85;85;85;85;85;85;85;85 -141;'496;Mongolia;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22;22;22;22;22;22;22;22;14;14;30;541;882;882;846;2022;2807;4444;4431;4632;4174;4141.25;5366;644 -141;'496;Mongolia;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;17;17;17;17;17;17;13;13;40;14;131;131;629;1494;2018;2357;3375;3542;2663;3442.45;4894;1004 -141;'496;Mongolia;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;98;98;98;98;98;98;98;159;159;159;159;159;159;159;159;159 -141;'496;Mongolia;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;48;48;48;48;48;48;48;85;85;85;85;85;85;85;85;85 -141;'496;Mongolia;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1 -141;'496;Mongolia;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;2;2;2;2;2 -141;'496;Mongolia;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;11;11;11;11;11;11;11;11;11;352;352;57;73;54;;;;;;; -141;'496;Mongolia;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;10;10;10;10;10;10;10;10;127;127;96;141;112;;;;;;; -141;'496;Mongolia;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;0;;;;;;; -141;'496;Mongolia;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;0;;;;;;; -141;'496;Mongolia;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;11;11;11;11;11;3;3;19;530;530;530;789;1924;2753;4443;4430;4631;4173;4140.25;5365;643 -141;'496;Mongolia;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;7;7;7;3;3;30;4;4;4;533;1333;1906;2353;3371;3540;2661;3440.45;4892;1002 -141;'496;Mongolia;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;98;98;98;98;98;98;98;159;159;159;159;159;159;159;159;159 -141;'496;Mongolia;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;48;48;48;48;48;48;48;85;85;85;85;85;85;85;85;85 -141;'496;Mongolia;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98;98;98;98;98;98;98;98;98;98;98;98;98;98;98;98 -141;'496;Mongolia;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;48;48;48;48;48;48;48;48;48;48;48;48;48;48;48 -141;'496;Mongolia;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;11;11;11;11;11;3;3;19;530;530;530;789;1924;2753;4443;4430;4631;4173;4139.25;5364;641 -141;'496;Mongolia;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;7;7;7;3;3;30;4;4;4;533;1333;1906;2353;3371;3540;2661;3432.45;4887;992 -141;'496;Mongolia;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;61;61;61;61;61;61;61;61 -141;'496;Mongolia;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;37;37;37;37;37;37;37;37 -141;'496;Mongolia;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;2 -141;'496;Mongolia;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;5;10 -141;'496;Mongolia;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -141;'496;Mongolia;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -141;'496;Mongolia;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;0;0;0;0;;;;;;; -141;'496;Mongolia;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;0;0;0;0;;;;;;; -141;'496;Mongolia;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -141;'496;Mongolia;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;180;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;21;21;21;21;21;21;21;21 -141;'496;Mongolia;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;198;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;4;30;30;30;30;30;30;30;30 -141;'496;Mongolia;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;15;15;15;7;7;4;2;2 -141;'496;Mongolia;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;10;10;10;31;31;5;12;12 -141;'496;Mongolia;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;99;99;99;99;30;95;95;95;95;95;95;95;95;95;95;95;300;2;2;2;2;1;1;1;0;0;22;0;0 -141;'496;Mongolia;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22;22;22;22;4;18;18;18;18;18;18;18;18;18;18;18;71;0;0;2;2;2;2;2;0;0;24;0;0 -141;'496;Mongolia;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;198;198;198;52;52;52;52;52;52;52;52;2939;279;1619;1463;260;260;260;260;38;37;37;37;37;37;37;37 -141;'496;Mongolia;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;16;16;16;5;5;5;5;5;5;5;5;237;14;230;265;50;50;50;50;0;3;3;3;3;3;3;3 -141;'496;Mongolia;1876;Paper and paperboard;5610;Import quantity;t;;;;;;3300;3300;3300;3300;3500;3500;3500;3500;3500;7700;8100;8100;8100;8100;8100;8100;13200;13200;13200;13200;30;137;122;43;1184;1184;2192;411;689;542;1500;1349;849;4850;4516;4516;4516;4516;4516;4516;4516;4516;14027;10509;16569;22235;25443;18650;28553;22680;31170;27286;30589;23578;24572;27725.35;37608;17977 -141;'496;Mongolia;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;660;660;660;680;680;680;680;680;680;3400;3650;3650;3674;3694;3716;3840;6500;6500;6500;6500;28;155;158;37;1493;1493;1073;262;447;447;1106;874;510;1904;2110;2110;2110;2110;2110;2110;2110;2110;8325;6785;11306;15513;17903;15679;28795;17985;32207;16962;29630;24033;23602;26346.09;36057;16270 -141;'496;Mongolia;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;25;25;25;8;8;3;3;1;1;1;1;1;1;1;1;1;1;1;1;1;1;3;3;5;6;26;25;22;25;2;14 -141;'496;Mongolia;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;18;18;18;6;6;3;3;1;1;1;1;1;1;1;1;1;1;1;1;1;1;3;3;5;7;39;37;34;37;12;14 -141;'496;Mongolia;2042;Graphic papers;5610;Import quantity;t;;;;;;;;2200;2100;2400;2400;2400;2400;2400;4300;4200;4200;4200;4200;4200;4200;6900;6900;6900;6900;29;102;70;7;941;941;955;334;456;401;1300;811;811;2004;2467;2467;2467;2467;2467;2467;2467;2467;8292;5928;7959;11513;12777;7049;11812;6480;11535;7750;13714;15068;13700;11223.43;15830;10627 -141;'496;Mongolia;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;260;250;280;280;280;280;280;1600;1650;1650;1662;1674;1686;1800;3200;3200;3200;3200;27;78;95;7;669;669;722;228;314;307;937;477;477;1089;1621;1621;1621;1621;1621;1621;1621;1621;5822;3817;5554;7604;8644;6555;11911;6579;11015;4906;13878;15194;13416;11890.64;18355;10464 -141;'496;Mongolia;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;5;5;5;5;5;;;;;;;;;;;;;;;;;;;;;20;20;20;20;0;0 -141;'496;Mongolia;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;3;3;3;3;3;;;;;;;;;;;;;;;;;;;;;25;25;25;25;0;0 -141;'496;Mongolia;1671;Newsprint;5610;Import quantity;t;;;;;;;;2200;2100;2400;2400;2400;2400;2400;2600;2300;2300;2300;2300;2300;2300;3800;3800;3800;3800;0;21;0;0;397;397;505;275;114;324;1200;411;411;695;1549;1549;1549;1549;1549;1549;1549;1549;2460;1939;1816;2282;2467;2467;1296;1026;1084;821;678;682;789;243;244;0 -141;'496;Mongolia;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;260;250;280;280;280;280;280;900;900;900;902;904;906;910;1600;1600;1600;1600;0;10;0;0;261;261;272;166;57;182;851;209;209;403;863;863;863;863;863;863;863;863;1416;1077;1080;1560;1754;1754;875;622;599;456;458;451;470;154;191;0 -141;'496;Mongolia;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;1700;1900;1900;1900;1900;1900;1900;3100;3100;3100;3100;29;81;70;7;544;544;450;59;342;77;100;400;400;1309;918;918;918;918;918;918;918;918;5832;3989;6143;9231;10310;4582;10516;5454;10451;6929;13036;14386;12911;10980.43;15586;10627 -141;'496;Mongolia;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;700;750;750;760;770;780;890;1600;1600;1600;1600;27;68;95;7;408;408;450;62;257;125;86;268;268;686;758;758;758;758;758;758;758;758;4406;2740;4474;6044;6890;4801;11036;5957;10416;4450;13420;14743;12946;11736.64;18164;10464 -141;'496;Mongolia;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;5;5;5;5;5;;;;;;;;;;;;;;;;;;;;;20;20;20;20;0;0 -141;'496;Mongolia;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;3;3;3;3;3;;;;;;;;;;;;;;;;;;;;;25;25;25;25;0;0 -141;'496;Mongolia;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;28;56;56;56;56;56;56;56;56;280;270;759;1151;400;300;113;101;124;395;395;158;50;181;470;1282 -141;'496;Mongolia;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;13;36;36;36;36;36;36;36;36;180;92;409;653;519;519;144;98;131;213;213;173;91;168;562;533 -141;'496;Mongolia;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;366;1198;746;746;746;746;746;746;746;746;2198;1937;2767;3439;2092;2092;8600;3452;8354;3233;8979;10560;8415;7294.35;11212;6828 -141;'496;Mongolia;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;237;607;615;615;615;615;615;615;615;615;2001;1640;2576;3289;1975;1975;8898;3923;8311;2423;9304;10659;8283;7571.51;12916;7792 -141;'496;Mongolia;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;20;0;0 -141;'496;Mongolia;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;25;25;0;0 -141;'496;Mongolia;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;83;116;116;116;116;116;116;116;116;3354;1782;2617;4641;7818;2190;1803;1901;1973;3301;3662;3668;4446;3505.09;3904;2517 -141;'496;Mongolia;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;66;107;107;107;107;107;107;107;107;2225;1008;1489;2102;4396;2307;1994;1936;1974;1814;3903;3911;4572;3997.13;4686;2139 -141;'496;Mongolia;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;3300;3300;1100;1200;1100;1100;1100;1100;1100;3400;3900;3900;3900;3900;3900;3900;6300;6300;6300;6300;1;35;52;36;243;243;1237;77;233;141;200;538;38;2846;2049;2049;2049;2049;2049;2049;2049;2049;5735;4581;8610;10722;12666;11601;16741;16200;19635;19536;16875;8510;10872;16501.91;21778;7350 -141;'496;Mongolia;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;660;660;400;430;400;400;400;400;400;1800;2000;2000;2012;2020;2030;2040;3300;3300;3300;3300;1;77;63;30;824;824;351;34;133;140;169;397;33;815;489;489;489;489;489;489;489;489;2503;2968;5752;7909;9259;9124;16884;11406;21192;12056;15752;8839;10186;14455.45;17702;5806 -141;'496;Mongolia;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;20;20;20;3;3;3;3;1;1;1;1;1;1;1;1;1;1;1;1;1;1;3;3;5;6;6;5;2;5;2;14 -141;'496;Mongolia;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;15;15;15;3;3;3;3;1;1;1;1;1;1;1;1;1;1;1;1;1;1;3;3;5;7;14;12;9;12;12;14 -141;'496;Mongolia;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;21;18;18;18;18;18;18;18;18;603;476;982;1106;1130;1130;646;754;829;1164;1593;2311;2331;2148.61;2908;2542 -141;'496;Mongolia;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;29;11;11;11;11;11;11;11;11;186;190;469;504;628;628;435;581;702;1027;1174;2015;2129;1883.38;3125;710 -141;'496;Mongolia;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;0;0;0;0 -141;'496;Mongolia;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;0;0;0;0;0 -141;'496;Mongolia;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2646;1929;1929;1929;1929;1929;1929;1929;1929;2814;3215;7346;8890;11244;10179;14893;14920;18051;17599;14630;5373;6459;8416.87;8016;4650 -141;'496;Mongolia;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;634;395;395;395;395;395;395;395;395;1464;2182;4971;6777;8444;8309;15715;10548;19862;10594;14106;6319;7211;10211.07;10271;4764 -141;'496;Mongolia;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;14 -141;'496;Mongolia;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;9;9;9;9;9;14 -141;'496;Mongolia;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;59;59;59;59;59;59;59;59;8;8;32;709;1355;290;523;145;856;4168;3551;1653;2726;3182.01;2568;576 -141;'496;Mongolia;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;30;30;30;30;30;30;30;30;5;5;14;250;263;128;234;82;468;1383;2461;1265;1636;2748.19;2302;171 -141;'496;Mongolia;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;146;146;146;146;146;146;146;146;483;1055;988;1196;839;839;1968;848;1890;3621;3081;2033;2559;3306.59;2790;3256 -141;'496;Mongolia;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;61;61;61;61;61;61;61;61;971;1535;1953;2269;447;447;5028;551;3560;2291;5040;3652;4609;6046.73;6281;4246 -141;'496;Mongolia;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;2 -141;'496;Mongolia;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;9;9;9;9;9;9 -141;'496;Mongolia;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;306;244;244;244;244;244;244;244;244;843;2129;6277;6936;9001;9001;12391;13902;15290;9795;7940;1632;1100;1868.28;2529;815 -141;'496;Mongolia;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110;67;67;67;67;67;67;67;67;251;625;2955;4209;7685;7685;10449;9905;15828;6914;6551;1359;898;1359.15;1552;341 -141;'496;Mongolia;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;12 -141;'496;Mongolia;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;5 -141;'496;Mongolia;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2312;1480;1480;1480;1480;1480;1480;1480;1480;1480;23;49;49;49;49;11;25;15;15;58;55;74;60;129;3 -141;'496;Mongolia;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;511;237;237;237;237;237;237;237;237;237;17;49;49;49;49;4;10;6;6;54;43;68;57;136;6 -141;'496;Mongolia;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;179;102;102;102;102;102;102;102;102;2318;890;282;726;292;292;1202;526;755;773;652;826;2082;5936.43;10854;158 -141;'496;Mongolia;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;152;83;83;83;83;83;83;83;83;853;596;312;628;187;187;734;277;628;435;472;505;846;2361;4306;332 -141;'496;Mongolia;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;3;3;3;3;0;3;0;0 -141;'496;Mongolia;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;3;3;3;3;0;3;3;0 -141;'496;Mongolia;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29195;33470;34463;29184;36190;61084;63437 -141;'496;Mongolia;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2031;1872;2226;1657;2493;2733;3122 -141;'496;Mongolia;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1235;1590;2010;2742;3648;6500;249 -141;'496;Mongolia;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;47;40;41;41;41;57 -141;'496;Mongolia;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;865;1332;1901;2194;3370;5089;10 -141;'496;Mongolia;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;32;32;32;32;32;48 -141;'496;Mongolia;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;370;258;109;548;278;1411;239 -141;'496;Mongolia;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;15;8;9;9;9;9 -141;'496;Mongolia;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;474;249;200;117;322;335;432 -141;'496;Mongolia;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;7;2;1;2;4;64 -141;'496;Mongolia;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;167;223;230;143;328;410;190 -141;'496;Mongolia;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;6;314;213;15;0;55 -141;'496;Mongolia;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3601;5869;8496;5650;6029;11692;14602 -141;'496;Mongolia;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;21;23;3;23;21;4 -141;'496;Mongolia;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2364;5259 -141;'496;Mongolia;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;428;1331 -141;'496;Mongolia;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;39 -141;'496;Mongolia;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4 -141;'496;Mongolia;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22109;23878;21542;17532;21545;35713;34098 -141;'496;Mongolia;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89;109;128;69;93;64;93 -141;'496;Mongolia;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1327;1214;1557;2580;3588;5282;13469 -141;'496;Mongolia;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1847;1672;1707;1326;2316;2597;2827 -141;'496;Mongolia;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;282;447;428;420;730;1152;397 -141;'496;Mongolia;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;10;12;4;3;6;22 -141;'496;Mongolia;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22158;26815;24505;23643;30154;47543;44196 -141;'496;Mongolia;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;10;12;10;8;110;57 -141;'496;Mongolia;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;4;4;1;10;16;4 -141;'496;Mongolia;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -141;'496;Mongolia;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;213;493;524;329;387;1476;633 -141;'496;Mongolia;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -141;'496;Mongolia;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6076;6864;6736;7342;8398;16506;16916 -141;'496;Mongolia;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;5;1;0;0;2;1 -141;'496;Mongolia;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5910;9322;8035;7687;10501;14623;9671 -141;'496;Mongolia;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;3;8;3;8;103;0 -141;'496;Mongolia;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9958;10132;9206;8284;10858;14922;16972 -141;'496;Mongolia;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;2;3;7;0;5;56 -273;'499;Montenegro;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102199.03;114646;118334;94970;112031;133275;154941 -273;'499;Montenegro;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44210.23;38732;44643;41736;49288;55191;54790 -273;'499;Montenegro;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11798;11798;30060;17903;17903;24025;22925;22993;22733;22284;24159;27100.25;28350;29924;24480;32598;37294;37294 -273;'499;Montenegro;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11682;11682;20809;17267;17267;25742;20072;21962;27175;29320;32603;38399.4;33035;39287;35621;42398;46589;46589 -273;'499;Montenegro;1861;Roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;457000;457000;485000;364001;915001;915001;915001;913000;968000;1000000;1038433;1082199;1148542;1092780;1112560;872594;910216;1051121 -273;'499;Montenegro;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1290;1290;11047;4507;4507;3710;32;30;30;30;2275;1156;2733;3486;3773;8055;9762;9762 -273;'499;Montenegro;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;47;972;328;328;251;6;6;6;6;974;596.89;1168;1109;1313;1151;845;845 -273;'499;Montenegro;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73920;73920;40048;21080;21080;70401;47389;84190;103990;103990;160541;6589;3035;3297;1161;40;30;30 -273;'499;Montenegro;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2850;2850;3326;1585;1585;3946;3534;4733;5745;5745;6171;425.81;150;161;148;10;6;6 -273;'499;Montenegro;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;123000;123000;283000;184000;184000;184000;184000;118000;201000;201000;227567;299299;860951;670700;680623;611610;638991;763894 -273;'499;Montenegro;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1063;2733;3476;3773;7979;9642;9642 -273;'499;Montenegro;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;584.84;1168;1106;1313;1132;811;811 -273;'499;Montenegro;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;608;1349;1477;744;0;0;0 -273;'499;Montenegro;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67.71;62;68;111;0;0;0 -273;'499;Montenegro;1863;Roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;334000;334000;202000;180001;731001;731001;731001;795000;767000;799000;810866;782900;287591;422080;431937;260984;271225;287227 -273;'499;Montenegro;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;0;10;0;76;120;120 -273;'499;Montenegro;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12.06;0;3;0;19;34;34 -273;'499;Montenegro;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5981;1686;1820;417;40;30;30 -273;'499;Montenegro;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;358.11;88;93;37;10;6;6 -273;'499;Montenegro;1864;Wood fuel;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;265000;265000;156000;156000;707000;707000;707000;718000;751000;783000;783000;783000;120567;308830;317324;186069;193503;195256 -273;'499;Montenegro;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;3390;3709;3709;3709;0;0;0;0;0;0;0;0;0;0;0;0 -273;'499;Montenegro;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;229;251;251;251;0;0;0;0;0;0;0;0;0;0;0;0 -273;'499;Montenegro;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29600;29600;3449;6622;6622;9597;11589;11590;11590;11590;46943;6212;552;552;552;40;30;30 -273;'499;Montenegro;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;665;665;178;342;342;407;386;386;386;386;1332;337;44;44;44;10;6;6 -273;'499;Montenegro;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40000;40000;8000;7000;7000;7000;7000;18000;51000;51000;51000;51000;7853;20115;20669;62023;65851;50130 -273;'499;Montenegro;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -273;'499;Montenegro;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -273;'499;Montenegro;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;366;135;135;135;0;0;0 -273;'499;Montenegro;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;7;7;7;0;0;0 -273;'499;Montenegro;1628;Wood fuel, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;225000;225000;148000;149000;700000;700000;700000;700000;700000;732000;732000;732000;112714;288715;296655;124046;127652;145126 -273;'499;Montenegro;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -273;'499;Montenegro;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -273;'499;Montenegro;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5846;417;417;417;40;30;30 -273;'499;Montenegro;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;319;37;37;37;10;6;6 -273;'499;Montenegro;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;3390;3709;3709;3709;0;0;0;0;0;;;;;;; -273;'499;Montenegro;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;229;251;251;251;0;0;0;0;0;;;;;;; -273;'499;Montenegro;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29600;29600;3449;6622;6622;9597;11589;11590;11590;11590;46943;;;;;;; -273;'499;Montenegro;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;665;665;178;342;342;407;386;386;386;386;1332;;;;;;; -273;'499;Montenegro;1865;Industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;192000;192000;329000;208001;208001;208001;208001;195000;217000;217000;255433;299199;1027975;783950;795236;686525;716713;855865 -273;'499;Montenegro;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1290;1290;7657;798;798;1;32;30;30;30;2275;1156;2733;3486;3773;8055;9762;9762 -273;'499;Montenegro;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;47;743;77;77;0;6;6;6;6;974;596.89;1168;1109;1313;1151;845;845 -273;'499;Montenegro;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44320;44320;36599;14458;14458;60804;35800;72600;92400;92400;113598;377;2483;2745;609;0;0;0 -273;'499;Montenegro;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2185;2185;3148;1243;1243;3539;3148;4347;5359;5359;4839;88.81;106;117;104;0;0;0 -273;'499;Montenegro;1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83000;83000;275000;177000;177000;177000;177000;100000;150000;150000;176567;248299;853098;650585;659954;549587;573140;713764 -273;'499;Montenegro;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1290;1290;7657;798;798;1;32;30;30;30;2275;1063;2733;3476;3773;7979;9642;9642 -273;'499;Montenegro;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;47;743;77;77;0;6;6;6;6;974;584.84;1168;1106;1313;1132;811;811 -273;'499;Montenegro;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44320;44320;36599;14458;14458;60804;35800;72600;92400;92400;55540;242;1214;1342;609;0;0;0 -273;'499;Montenegro;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2185;2185;3148;1243;1243;3539;3148;4347;5359;5359;2519;49.71;55;61;104;0;0;0 -273;'499;Montenegro;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1290;1290;7657;798;798;1;32;30;30;30;2275;1063;2733;3476;3773;7979;9642;9642 -273;'499;Montenegro;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;47;743;77;77;0;6;6;6;6;974;584.84;1168;1106;1313;1132;811;811 -273;'499;Montenegro;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44320;44320;36599;14458;14458;60804;35800;72600;92400;92400;55540;242;1214;1342;609;0;0;0 -273;'499;Montenegro;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2185;2185;3148;1243;1243;3539;3148;4347;5359;5359;2519;49.71;55;61;104;0;0;0 -273;'499;Montenegro;1867;Industrial roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109000;109000;54000;31001;31001;31001;31001;95000;67000;67000;78866;50900;174877;133365;135282;136938;143573;142101 -273;'499;Montenegro;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;93;0;10;0;76;120;120 -273;'499;Montenegro;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;12.06;0;3;0;19;34;34 -273;'499;Montenegro;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58058;135;1269;1403;0;0;0;0 -273;'499;Montenegro;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2320;39.1;51;56;0;0;0;0 -273;'499;Montenegro;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0 -273;'499;Montenegro;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0 -273;'499;Montenegro;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0 -273;'499;Montenegro;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0 -273;'499;Montenegro;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;93;0;10;0;76;120;120 -273;'499;Montenegro;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;12.06;0;3;0;19;34;34 -273;'499;Montenegro;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58058;135;1269;1403;0;0;0;0 -273;'499;Montenegro;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2320;39.1;51;56;0;0;0;0 -273;'499;Montenegro;1868;Sawlogs and veneer logs;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120000;120000;287694;183827;183827;183827;183827;195000;217000;217000;195194;229027;660627;587254;617234;500548;480713;680572 -273;'499;Montenegro;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81000;81000;268373;172735;172735;172735;172735;100000;150000;150000;134927;190065;548249;487363;512244;379610;372140;562123 -273;'499;Montenegro;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39000;39000;19321;11092;11092;11092;11092;95000;67000;67000;60267;38962;112378;99891;104990;120938;108573;118449 -273;'499;Montenegro;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61000;61000;30220;17349;17349;17349;17349;0;0;0;60239;70172;186330;175796;150922;165977;201000;142141 -273;'499;Montenegro;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;41640;58234;154624;145877;125236;165977;201000;142141 -273;'499;Montenegro;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61000;61000;30220;17349;17349;17349;17349;0;0;0;18599;11938;31706;29919;25686;0;0;0 -273;'499;Montenegro;1871;Other industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11000;11000;11086;6825;6825;6825;6825;0;0;0;0;0;181018;20900;27080;20000;35000;33152 -273;'499;Montenegro;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2000;6627;4265;4265;4265;4265;0;0;0;0;0;150225;17345;22474;4000;0;9500 -273;'499;Montenegro;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9000;9000;4459;2560;2560;2560;2560;0;0;0;0;0;30793;3555;4606;16000;35000;23652 -273;'499;Montenegro;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;0;0;310 -273;'499;Montenegro;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;388;388;388;598;529;530;530;240;238;280;280;280;280;298;298;298 -273;'499;Montenegro;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;160;160;160;157;103;103;103;103;90;152.91;153;153;153;208;216;216 -273;'499;Montenegro;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;48;129;7;7;7;7;0;50;50 -273;'499;Montenegro;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;28;1.69;2;2;2;0;5;5 -273;'499;Montenegro;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;150900;150900;195400;195400;195400;195400;41896;44324;49579 -273;'499;Montenegro;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;60;1250;1556;1556;709;195;200;200;200;1639;130;325;505;105;11;5;5 -273;'499;Montenegro;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;69;89;89;56;77;77;77;77;198;26.73;39;61;12;26;5;5 -273;'499;Montenegro;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;270;270;543;3133;3133;26520;23000;23000;29600;46500;81461;99818;27400;0;929;0;0;0 -273;'499;Montenegro;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;39;158;158;494;591;470;783;928;1608;1578.46;433;0;15;0;0;0 -273;'499;Montenegro;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;25500;25500;70000;70000;70000;70000;31420;30473;49579 -273;'499;Montenegro;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1035;852;852;5;45;50;50;50;119;105;24;37;8;11;5;5 -273;'499;Montenegro;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;56;46;46;13;39;39;39;39;19;16.07;4;6;1;26;5;5 -273;'499;Montenegro;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;80;15;2960;2960;26347;16400;16400;16400;25500;62461;64818;17793;0;603;0;0;0 -273;'499;Montenegro;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;145;145;481;349;349;349;349;1024;943.46;259;0;9;0;0;0 -273;'499;Montenegro;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;125400;125400;125400;125400;125400;125400;10476;13851;0 -273;'499;Montenegro;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;60;215;704;704;704;150;150;150;150;1520;25;301;468;97;0;0;0 -273;'499;Montenegro;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;13;43;43;43;38;38;38;38;179;10.66;35;55;11;0;0;0 -273;'499;Montenegro;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;190;190;528;173;173;173;6600;6600;13200;21000;19000;35000;9607;0;326;0;0;0 -273;'499;Montenegro;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;38;13;13;13;242;121;434;579;584;635;174;0;6;0;0;0 -273;'499;Montenegro;1605;Sawdust (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -273;'499;Montenegro;1605;Sawdust (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -273;'499;Montenegro;1605;Sawdust (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -273;'499;Montenegro;1605;Sawdust (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -273;'499;Montenegro;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0 -273;'499;Montenegro;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0 -273;'499;Montenegro;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0 -273;'499;Montenegro;1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0 -273;'499;Montenegro;1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0 -273;'499;Montenegro;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1300;2635;2635;80000;85000;85000;74083;61006;63101;73400;82671;98534 -273;'499;Montenegro;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2059;3355;3355;1830;2648;1709;1709;3003;2909;1690;317;317 -273;'499;Montenegro;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;434;710;710;710;425;364.04;364;573;556;290;71;71 -273;'499;Montenegro;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;503;2595;2220;12048;30540;38658;38658;53665;54472;53707;65180;65180 -273;'499;Montenegro;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;438;411;1718;2989;6339.12;6339;10271;10429;8450;16409;16409 -273;'499;Montenegro;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1300;2635;2635;80000;85000;85000;74083;61006;63101;73400;82671;98534 -273;'499;Montenegro;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1928;3225;3225;1700;1635;1328;1328;2622;2528;1690;317;317 -273;'499;Montenegro;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;396;672;672;672;246;273.23;273;482;465;290;71;71 -273;'499;Montenegro;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;128;2220;2220;12000;17955;37155;37155;52162;52969;53707;65180;65180 -273;'499;Montenegro;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;411;411;1713;2578;6290;6290;10222;10380;8450;16409;16409 -273;'499;Montenegro;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0 -273;'499;Montenegro;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;131;130;130;130;1013;381;381;381;381;0;0;0 -273;'499;Montenegro;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;38;38;38;179;90.81;91;91;91;0;0;0 -273;'499;Montenegro;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;375;375;0;48;12585;1503;1503;1503;1503;0;0;0 -273;'499;Montenegro;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;27;0;5;411;49.11;49;49;49;0;0;0 -273;'499;Montenegro;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42000;42000;66000;52050;52050;177000;112000;137000;176000;215000;220000;270000;105281;131405;108628;205896;170496;230296 -273;'499;Montenegro;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2100;2100;12289;3949;3949;4919;4542;3100;4565;2100;6121;5579;4854;12205;4330;4589;7156;7156 -273;'499;Montenegro;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;803;803;4214;1583;1583;1568;1319;1286;1377;928;1824;1301;1132;2845;1009;1067;1667;1667 -273;'499;Montenegro;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49260;49260;52120;51681;51681;138965;91235;119000;152800;192000;197000;245491;119470;134284;118984;179199;155370;155370 -273;'499;Montenegro;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6387;6387;14981;14556;14556;18378;14079;14523;18547;19240;19886;27733.87;23536;26454;23441;33025;28810;28810 -273;'499;Montenegro;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30000;30000;60000;46000;46000;160000;100000;120000;150000;175000;170000;200000;102089;129424;107761;156971;131496;168310 -273;'499;Montenegro;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;810;810;10467;2752;2752;3644;2561;1800;3465;1100;4591;4184;3636;9143;3241;2031;4804;4804 -273;'499;Montenegro;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;315;315;3008;791;791;901;633;651;783;334;1368;975.75;849;2134;757;474;1122;1122 -273;'499;Montenegro;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29410;29410;43085;44429;44429;125274;82135;106000;131000;158000;155000;184118;93999;105655;93624;158799;136305;136305 -273;'499;Montenegro;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3352;3352;11083;11428;11428;14058;10436;10541;13329;14022;13480;20800.4;15954;17932;15890;26951;23133;23133 -273;'499;Montenegro;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12000;12000;6000;6050;6050;17000;12000;17000;26000;40000;50000;70000;3192;1981;867;48925;39000;61986 -273;'499;Montenegro;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1290;1290;1822;1197;1197;1275;1981;1300;1100;1000;1530;1395;1218;3062;1089;2558;2352;2352 -273;'499;Montenegro;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;488;488;1206;792;792;667;686;635;594;594;456;325.25;283;711;252;593;545;545 -273;'499;Montenegro;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19850;19850;9035;7252;7252;13691;9100;13000;21800;34000;42000;61373;25471;28629;25360;20400;19065;19065 -273;'499;Montenegro;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3035;3035;3898;3128;3128;4320;3643;3982;5218;5218;6406;6933.47;7582;8522;7551;6074;5677;5677 -273;'499;Montenegro;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;91;246;315 -273;'499;Montenegro;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;60;187;150;150;63;67;70;70;70;118;72;84;121;62;44;39;39 -273;'499;Montenegro;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;205;205;287;230;230;206;231;231;231;231;190;235.97;283;407;212;66;71;71 -273;'499;Montenegro;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;100;14;0;0;214;149;150;150;150;963;1295;850;1061;901;220;205;205 -273;'499;Montenegro;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;42;28;0;0;125;67;67;67;67;330;513.41;336;419;356;123;202;202 -273;'499;Montenegro;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;11000;0;0;0;0;0;0;0;0;0;0;1318;826;808;911;976 -273;'499;Montenegro;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10690;10690;48706;26542;26542;19159;27235;27799;29329;29329;30669;35875;38258;39049;32956;68584;69378;69378 -273;'499;Montenegro;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4031;4031;17651;8806;8806;9445;9696;9887;10123;10123;10352;14316.89;15174;14808;13331;21918;26547;26547 -273;'499;Montenegro;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11420;11420;5168;702;702;76;149;150;150;150;25;349;888;957;461;1028;1092;1092 -273;'499;Montenegro;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1687;1687;1735;268;268;53;44;44;44;44;13;228.84;597;651;314;731;1098;1098 -273;'499;Montenegro;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;11000;0;0;0;0;0;0;0;0;0;0;1318;826;808;911;976 -273;'499;Montenegro;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;430;430;7939;1643;1643;985;7810;7810;7810;7810;2847;4469;6426;4537;4106;2784;3595;3595 -273;'499;Montenegro;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;343;343;4880;1010;1010;1236;1692;1692;1692;1692;1722;3060.62;4400;3107;2810;2464;3447;3447 -273;'499;Montenegro;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;400;663;149;149;38;91;90;90;90;0;300;882;953;455;1028;1092;1092 -273;'499;Montenegro;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;250;250;477;107;107;36;9;9;9;9;0;202.2;594;642;308;731;1098;1098 -273;'499;Montenegro;1607;Laminated Veneer Lumber (LVL);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -273;'499;Montenegro;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;5 -273;'499;Montenegro;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;9 -273;'499;Montenegro;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -273;'499;Montenegro;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -273;'499;Montenegro;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -273;'499;Montenegro;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5640;5640;20631;14828;14828;12137;12402;12959;14489;14489;16487;17499;17208;17620;18815;30481;31463;31463 -273;'499;Montenegro;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1468;1468;6206;4480;4480;4857;4667;4858;5094;5094;4949;5917.83;5822;5960;5529;6466;9153;9153 -273;'499;Montenegro;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9190;9190;4463;506;506;0;7;10;10;10;17;27;-10;-12;-10;0;0;0 -273;'499;Montenegro;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1142;1142;1245;141;141;0;15;15;15;15;11;12.22;-3;-5;0;0;0;0 -273;'499;Montenegro;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 -273;'499;Montenegro;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;250;250;1933;976;976;760;1265;1270;1270;1270;2485;3155;3155;3155;3155;2059;2227;2227 -273;'499;Montenegro;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;93;682;344;344;333;471;471;471;471;595;953.49;953;953;953;924;954;954 -273;'499;Montenegro;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;9;9;0;9;10;10;10;0;16;16;16;16;0;0;0 -273;'499;Montenegro;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;3;3;0;3;3;3;3;0;6.26;6;6;6;0;0;0 -273;'499;Montenegro;1874;Fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -273;'499;Montenegro;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4370;4370;18203;9095;9095;5277;5758;5760;5760;5760;8850;10752;11469;13737;6880;33260;32093;32093 -273;'499;Montenegro;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2127;2127;5883;2972;2972;3019;2866;2866;2866;2866;3086;4384.96;3999;4788;4039;12064;12993;12993 -273;'499;Montenegro;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1830;1830;40;38;38;38;42;40;40;40;8;6;0;0;0;0;0;0 -273;'499;Montenegro;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;295;295;12;17;17;17;17;17;17;17;2;8.16;0;8;0;0;0;0 -273;'499;Montenegro;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -273;'499;Montenegro;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2380;2380;0;0;0;1589;1544;1540;1540;1540;1394;1446;1547;1853;1300;920;830;830 -273;'499;Montenegro;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1588;1588;0;0;0;1310;1197;1197;1197;1197;848;1095.53;999;1196;797;625;643;643 -273;'499;Montenegro;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -273;'499;Montenegro;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0.12;0;0;0;0;0;0 -273;'499;Montenegro;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 -273;'499;Montenegro;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1810;1810;8843;4751;4751;3583;3927;3930;3930;3930;3728;4653;4961;5942;5380;32340;31263;31263 -273;'499;Montenegro;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;481;481;3302;1774;1774;1661;1571;1571;1571;1571;1119;1644.72;1500;1796;3104;11439;12350;12350 -273;'499;Montenegro;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1830;1830;1;38;38;38;42;40;40;40;4;3;0;0;0;0;0;0 -273;'499;Montenegro;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;295;295;0;17;17;17;17;17;17;17;1;4.02;0;4;0;0;0;0 -273;'499;Montenegro;1650;Other fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -273;'499;Montenegro;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;180;180;9360;4344;4344;105;287;290;290;290;3728;4653;4961;5942;200;0;0;0 -273;'499;Montenegro;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;58;2581;1198;1198;48;98;98;98;98;1119;1644.72;1500;1796;138;0;0;0 -273;'499;Montenegro;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;39;0;0;0;0;0;0;0;4;3;0;0;0;0;0;0 -273;'499;Montenegro;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;12;0;0;0;0;0;0;0;1;4.02;0;4;0;0;0;0 -273;'499;Montenegro;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;12000;12000;12000;12000;12000;11000;11000;10000;0;0;0 -273;'499;Montenegro;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;62;62;62;62;14;20;30;30;30;30;30;29;46;12;0;0;0 -273;'499;Montenegro;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33;33;33;33;26;19;19;19;19;19;18.86;21;41;22;0;0;0 -273;'499;Montenegro;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3386;3386;3386;3386;3386;9402;9945;10000;9300;9300;9300;9300;10900;10200;9100;0;0;0 -273;'499;Montenegro;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;324;324;324;324;324;1719;1448;1414;1305;1305;1305;1305;1584;1270;857;0;0;0 -273;'499;Montenegro;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 -273;'499;Montenegro;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;11;5;10;10;10;10;10;10;10;10;0;0;0 -273;'499;Montenegro;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;16;16;17;12;12;12;12;12;11.81;12;12;12;0;0;0 -273;'499;Montenegro;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 -273;'499;Montenegro;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 -273;'499;Montenegro;1875;Wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -273;'499;Montenegro;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;11;5;10;10;10;10;10;10;10;10;0;0;0 -273;'499;Montenegro;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;16;16;17;11;11;11;11;11;10.81;11;11;11;0;0;0 -273;'499;Montenegro;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 -273;'499;Montenegro;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 -273;'499;Montenegro;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -273;'499;Montenegro;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -273;'499;Montenegro;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -273;'499;Montenegro;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -273;'499;Montenegro;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -273;'499;Montenegro;1654;Mechanical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -273;'499;Montenegro;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -273;'499;Montenegro;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -273;'499;Montenegro;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -273;'499;Montenegro;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -273;'499;Montenegro;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -273;'499;Montenegro;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;1;0;0;0;0;0;;;;;;; -273;'499;Montenegro;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;1;0;0;0;0;0;;;;;;; -273;'499;Montenegro;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -273;'499;Montenegro;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -273;'499;Montenegro;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 -273;'499;Montenegro;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;10;5;10;10;10;10;10;10;10;10;0;0;0 -273;'499;Montenegro;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;16;16;16;11;11;11;11;11;10.81;11;11;11;0;0;0 -273;'499;Montenegro;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 -273;'499;Montenegro;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 -273;'499;Montenegro;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 -273;'499;Montenegro;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 -273;'499;Montenegro;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 -273;'499;Montenegro;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 -273;'499;Montenegro;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 -273;'499;Montenegro;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 -273;'499;Montenegro;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 -273;'499;Montenegro;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 -273;'499;Montenegro;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 -273;'499;Montenegro;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 -273;'499;Montenegro;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -273;'499;Montenegro;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;0;0;0 -273;'499;Montenegro;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10.81;11;11;11;0;0;0 -273;'499;Montenegro;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -273;'499;Montenegro;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -273;'499;Montenegro;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -273;'499;Montenegro;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -273;'499;Montenegro;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -273;'499;Montenegro;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -273;'499;Montenegro;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -273;'499;Montenegro;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -273;'499;Montenegro;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;10;5;10;10;10;10;;;;;;; -273;'499;Montenegro;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;16;16;16;11;11;11;11;11;;;;;;; -273;'499;Montenegro;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -273;'499;Montenegro;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -273;'499;Montenegro;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 -273;'499;Montenegro;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 -273;'499;Montenegro;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 -273;'499;Montenegro;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 -273;'499;Montenegro;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 -273;'499;Montenegro;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 -273;'499;Montenegro;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 -273;'499;Montenegro;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;1;1;1;1;1;1;1;1;1;0;0;0 -273;'499;Montenegro;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 -273;'499;Montenegro;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 -273;'499;Montenegro;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 -273;'499;Montenegro;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0.24;0;0;0;0;0;0 -273;'499;Montenegro;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 -273;'499;Montenegro;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 -273;'499;Montenegro;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;12000;12000;12000;12000;12000;11000;11000;10000;0;0;0 -273;'499;Montenegro;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;52;52;52;52;3;15;20;20;20;20;20;19;36;2;0;0;0 -273;'499;Montenegro;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;17;17;9;7;7;7;7;7;7.05;9;29;10;0;0;0 -273;'499;Montenegro;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3386;3386;3386;3386;3386;9402;9945;10000;9300;9300;9300;9300;10900;10200;9100;0;0;0 -273;'499;Montenegro;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;324;324;324;324;324;1719;1448;1414;1305;1305;1305;1305;1584;1270;857;0;0;0 -273;'499;Montenegro;1876;Paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;203;227;227;227;227;227;227;227;227;227;0;29;20;1532;2645;2230 -273;'499;Montenegro;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6557;6557;6557;6557;6557;11339;10777;10328;9648;9648;9648;9648;9435;9661;7769;7769;7769;7769 -273;'499;Montenegro;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6674;6674;6674;6674;6674;12316;11040;10674;10087;10087;10087;10086.71;10016;9927;7872;7872;7872;7872 -273;'499;Montenegro;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;353;353;353;353;353;430;141;140;140;140;140;140;60;62;62;62;62;62 -273;'499;Montenegro;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;376;376;376;376;376;1027;273;273;273;273;273;273.2;58;59;59;59;59;59 -273;'499;Montenegro;2042;Graphic papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -273;'499;Montenegro;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4710;4710;4710;4710;4710;8803;8225;8000;7400;7400;7400;7400;6793;7061;5481;5481;5481;5481 -273;'499;Montenegro;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4057;4057;4057;4057;4057;9032;7800;7724;7237;7237;7237;7237.18;6728;6645;4805;4805;4805;4805 -273;'499;Montenegro;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;353;353;353;353;353;258;62;60;60;60;60;60;60;60;60;60;60;60 -273;'499;Montenegro;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;376;376;376;376;376;264;57;57;57;57;57;57.09;57;57;57;57;57;57 -273;'499;Montenegro;1671;Newsprint;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -273;'499;Montenegro;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2535;2535;2535;2535;2535;4548;4217;4000;3400;3400;3400;3400;2134;2080;1561;1561;1561;1561 -273;'499;Montenegro;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1592;1592;1592;1592;1592;3490;2972;2896;2409;2409;2409;2409;1332;1279;905;905;905;905 -273;'499;Montenegro;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;32;30;30;30;30;30;30;30;30;30;30;30 -273;'499;Montenegro;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;21;21;21;21;21;21.4;21;21;21;21;21;21 -273;'499;Montenegro;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 -273;'499;Montenegro;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2175;2175;2175;2175;2175;4255;4008;4000;4000;4000;4000;4000;4659;4981;3920;3920;3920;3920 -273;'499;Montenegro;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2465;2465;2465;2465;2465;5542;4828;4828;4828;4828;4828;4828.18;5396;5366;3900;3900;3900;3900 -273;'499;Montenegro;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;353;353;353;353;353;258;30;30;30;30;30;30;30;30;30;30;30;30 -273;'499;Montenegro;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;376;376;376;376;376;264;36;36;36;36;36;35.69;36;36;36;36;36;36 -273;'499;Montenegro;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 -273;'499;Montenegro;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;72;72;72;72;10;21;20;20;20;20;20;20;20;20;20;20;20 -273;'499;Montenegro;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;66;66;66;66;17;46;46;46;46;46;45.85;46;46;46;46;46;46 -273;'499;Montenegro;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20 -273;'499;Montenegro;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;20;20;20;20;20;20;20;20;19.69;20;20;20;20;20;20 -273;'499;Montenegro;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 -273;'499;Montenegro;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1342;1342;1342;1342;1342;2716;2544;2540;2540;2540;2540;2540;3039;3061;2700;2700;2700;2700 -273;'499;Montenegro;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1393;1393;1393;1393;1393;3397;2831;2831;2831;2831;2831;2830.84;3287;3048;2454;2454;2454;2454 -273;'499;Montenegro;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;314;314;314;314;314;2;10;10;10;10;10;10;10;10;10;10;10;10 -273;'499;Montenegro;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;335;335;335;335;335;4;12;12;12;12;12;11.69;12;12;12;12;12;12 -273;'499;Montenegro;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 -273;'499;Montenegro;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;761;761;761;761;761;1529;1443;1440;1440;1440;1440;1440;1600;1900;1200;1200;1200;1200 -273;'499;Montenegro;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1006;1006;1006;1006;1006;2128;1951;1951;1951;1951;1951;1951.49;2063;2272;1400;1400;1400;1400 -273;'499;Montenegro;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;19;19;236;0;0;0;0;0;0;0;0;0;0;0;0 -273;'499;Montenegro;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;21;21;21;240;4;4;4;4;4;4.31;4;4;4;4;4;4 -273;'499;Montenegro;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;203;227;227;227;227;227;227;227;227;227;0;29;20;1532;2645;2230 -273;'499;Montenegro;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1847;1847;1847;1847;1847;2536;2552;2328;2248;2248;2248;2248;2642;2600;2288;2288;2288;2288 -273;'499;Montenegro;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2617;2617;2617;2617;2617;3284;3240;2950;2850;2850;2850;2849.53;3288;3282;3067;3067;3067;3067 -273;'499;Montenegro;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;172;79;80;80;80;80;80;0;2;2;2;2;2 -273;'499;Montenegro;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;763;216;216;216;216;216;216.11;1;2;2;2;2;2 -273;'499;Montenegro;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;203;227;227;227;227;227;227;227;227;227;0;0;0;114;103;150 -273;'499;Montenegro;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;374;374;374;374;374;774;746;508;428;428;428;428;500;600;600;600;600;600 -273;'499;Montenegro;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;445;445;445;445;445;1171;1034;744;644;644;644;644;705;722;722;722;722;722 -273;'499;Montenegro;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;10;0;0;0;0;0;0;0;0;0;0;0;0 -273;'499;Montenegro;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;23;0;0;0;0;0;0;0;0;0;0;0;0 -273;'499;Montenegro;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;29;20;1418;2542;2080 -273;'499;Montenegro;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;833;833;833;833;833;1734;1741;1750;1750;1750;1750;1750;2068;1884;1572;1572;1572;1572 -273;'499;Montenegro;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1606;1606;1606;1606;1606;1955;1801;1801;1801;1801;1801;1800.81;2112;1936;1721;1721;1721;1721 -273;'499;Montenegro;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;162;79;80;80;80;80;80;0;2;2;2;2;2 -273;'499;Montenegro;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;740;216;216;216;216;216;216.11;1;2;2;2;2;2 -273;'499;Montenegro;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1026;1352;1452 -273;'499;Montenegro;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;83;83;83;83;49;89;90;90;90;90;90;90;90;90;90;90;90 -273;'499;Montenegro;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;39;39;39;39;56;92;92;92;92;92;92.3;92;92;92;92;92;92 -273;'499;Montenegro;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;9;0;0;0;0;0;0;0;0;0;0;0;0 -273;'499;Montenegro;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;9;0;0;0;0;0;0;0;0;0;0;0;0 -273;'499;Montenegro;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;105;102;150 -273;'499;Montenegro;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;359;359;359;359;359;255;315;320;320;320;320;320;320;320;320;320;320;320 -273;'499;Montenegro;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;398;398;398;398;398;340;356;356;356;356;356;355.97;356;356;356;356;356;356 -273;'499;Montenegro;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;143;79;80;80;80;80;80;0;2;2;2;2;2 -273;'499;Montenegro;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;720;215;215;215;215;215;215.3;0;1;1;1;1;1 -273;'499;Montenegro;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;29;20;287;1088;478 -273;'499;Montenegro;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;300;300;300;300;1358;1322;1320;1320;1320;1320;1320;1638;1454;1142;1142;1142;1142 -273;'499;Montenegro;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;346;346;346;346;346;1491;1337;1337;1337;1337;1337;1336.92;1648;1472;1257;1257;1257;1257 -273;'499;Montenegro;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;10;0;0;0;0;0;0;0;0;0;0;0;0 -273;'499;Montenegro;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;11;1;1;1;1;1;0.81;1;1;1;1;1;1 -273;'499;Montenegro;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 -273;'499;Montenegro;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91;91;91;91;91;72;15;20;20;20;20;20;20;20;20;20;20;20 -273;'499;Montenegro;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;823;823;823;823;823;68;16;16;16;16;16;15.62;16;16;16;16;16;16 -273;'499;Montenegro;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 -273;'499;Montenegro;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 -273;'499;Montenegro;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 -273;'499;Montenegro;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;640;640;640;640;640;28;65;70;70;70;70;70;74;116;116;116;116;116 -273;'499;Montenegro;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;566;566;566;566;566;158;405;405;405;405;405;404.72;471;624;624;624;624;624 -273;'499;Montenegro;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 -273;'499;Montenegro;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 -273;'499;Montenegro;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55638.91;66836;68950;51030;59973;76521;98187 -273;'499;Montenegro;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2549.6;2435;2094;2853;3628;5340;4939 -273;'499;Montenegro;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3408.96;5135;6063;6063;3053;2336;3098 -273;'499;Montenegro;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;431.05;227;132;132;32;117;119 -273;'499;Montenegro;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;967.82;1458;1721;1721;0;0;0 -273;'499;Montenegro;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23.35;12;7;7;0;0;0 -273;'499;Montenegro;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2441.14;3677;4342;4342;3053;2336;3098 -273;'499;Montenegro;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;407.7;215;125;125;32;117;119 -273;'499;Montenegro;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;955.51;956;1161;895;888;1269;2068 -273;'499;Montenegro;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1185.16;1185;1130;1135;1344;2552;1769 -273;'499;Montenegro;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1099.64;1100;1100;1100;355;260;440 -273;'499;Montenegro;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.84;5;5;5;9;8;7 -273;'499;Montenegro;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12254.26;12421;3192;3940;12358;12580;21068 -273;'499;Montenegro;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;185.11;254;116;265;522;692;956 -273;'499;Montenegro;1636;Glue-laminated timber (glulam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -273;'499;Montenegro;1688;Cross-laminated timber (CLT or X-lam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -273;'499;Montenegro;1684;I-beams (I-joists);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -273;'499;Montenegro;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37896;45161;53584;35182;38782;54003;66518 -273;'499;Montenegro;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;716;609;660;1265;1511;1352;1590 -273;'499;Montenegro;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113;1523;1523;2815;3832;2652 -273;'499;Montenegro;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;137;21;21;123;14;491 -273;'499;Montenegro;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24.53;1950;2327;2327;1722;2241;2343 -273;'499;Montenegro;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27.43;18;30;30;87;605;7 -273;'499;Montenegro;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19459.87;19460;19460;19460;19460;19460;19460 -273;'499;Montenegro;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3261.23;3262;3262;3262;3262;3262;3262 -273;'499;Montenegro;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21.91;22;22;22;22;22;22 -273;'499;Montenegro;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -273;'499;Montenegro;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1824.73;1825;1825;1825;1825;1825;1825 -273;'499;Montenegro;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.8;1;1;1;1;1;1 -273;'499;Montenegro;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8565.63;8566;8566;8566;8566;8566;8566 -273;'499;Montenegro;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;750.23;750;750;750;750;750;750 -273;'499;Montenegro;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3706.33;3706;3706;3706;3706;3706;3706 -273;'499;Montenegro;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;488.61;489;489;489;489;489;489 -273;'499;Montenegro;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5341.27;5341;5341;5341;5341;5341;5341 -273;'499;Montenegro;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2021.59;2022;2022;2022;2022;2022;2022 -142;'500;Montserrat;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1185;1573;1447;1224;926;1360;4408 -142;'500;Montserrat;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;41;20;22;26;21;18 -142;'500;Montserrat;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;297;362;766;766;766;766;766;766;766;766;766;766;766;766;766;766;766;766;287;425;585;375;555;283;302;149;338;429;290;406;408;3256 -142;'500;Montserrat;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;0;0;0;0;0;0;0 -142;'500;Montserrat;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;133;20;0;0;95;112;156;1;99 -142;'500;Montserrat;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;12;0;0;29;31;53;36;83 -142;'500;Montserrat;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -142;'500;Montserrat;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -142;'500;Montserrat;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;95;112;156;1;96 -142;'500;Montserrat;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;29;31;53;36;65 -142;'500;Montserrat;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -142;'500;Montserrat;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -142;'500;Montserrat;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;3 -142;'500;Montserrat;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;18 -142;'500;Montserrat;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -142;'500;Montserrat;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -142;'500;Montserrat;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;133;20;0;0;95;112;156;1;99 -142;'500;Montserrat;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;12;0;0;29;31;53;36;83 -142;'500;Montserrat;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -142;'500;Montserrat;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -142;'500;Montserrat;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;20;0;0;95;112;156;1;96 -142;'500;Montserrat;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;12;0;0;29;31;53;36;65 -142;'500;Montserrat;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -142;'500;Montserrat;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -142;'500;Montserrat;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;20;0;0;95;112;156;1;96 -142;'500;Montserrat;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;12;0;0;29;31;53;36;65 -142;'500;Montserrat;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -142;'500;Montserrat;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -142;'500;Montserrat;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;0;0;0;0;0;0;0;3 -142;'500;Montserrat;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;0;0;0;0;0;0;0;18 -142;'500;Montserrat;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -142;'500;Montserrat;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -142;'500;Montserrat;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;3 -142;'500;Montserrat;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;18 -142;'500;Montserrat;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -142;'500;Montserrat;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -142;'500;Montserrat;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;0;0;0;0;0;0;0;0 -142;'500;Montserrat;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;0;0;0;0;0;0;0;0 -142;'500;Montserrat;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -142;'500;Montserrat;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -142;'500;Montserrat;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0 -142;'500;Montserrat;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0 -142;'500;Montserrat;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0 -142;'500;Montserrat;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0 -142;'500;Montserrat;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -142;'500;Montserrat;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1272;1391;4091;4091;4091;4091;4091;4091;4091;4091;4091;4091;4091;4091;4091;4091;4091;4091;373;145;286;53;1092;383;451;36;244;653;444;730;75;5322 -142;'500;Montserrat;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;232;284;658;658;658;658;658;658;658;658;658;658;658;658;658;658;658;658;179;169;281;136;302;175;243;29;94;300;193;250;275;2392 -142;'500;Montserrat;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -142;'500;Montserrat;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -142;'500;Montserrat;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -142;'500;Montserrat;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1272;1391;4091;4091;4091;4091;4091;4091;4091;4091;4091;4091;4091;4091;4091;4091;4091;4091;313;105;196;23;1042;324;402;0;224;600;430;676;65;4824 -142;'500;Montserrat;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;232;284;658;658;658;658;658;658;658;658;658;658;658;658;658;658;658;658;133;107;225;117;260;120;196;0;78;266;172;210;249;2135 -142;'500;Montserrat;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -142;'500;Montserrat;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -142;'500;Montserrat;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -142;'500;Montserrat;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;60;40;90;30;50;59;49;36;20;53;14;54;10;498 -142;'500;Montserrat;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;46;62;56;19;42;55;47;29;16;34;21;40;26;257 -142;'500;Montserrat;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -142;'500;Montserrat;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -142;'500;Montserrat;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -142;'500;Montserrat;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;8;9;0;0;0 -142;'500;Montserrat;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;16;13;0;2;2 -142;'500;Montserrat;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -142;'500;Montserrat;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -142;'500;Montserrat;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -142;'500;Montserrat;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;137;297;229;229;229;229;229;229;229;229;229;229;229;229;229;229;229;229;229;229;229;229;229;78;55;132;170;91;79;134;89;669 -142;'500;Montserrat;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;72;94;94;94;94;94;94;94;94;94;94;94;94;94;94;94;94;94;242;290;225;239;41;33;106;230;67;47;92;58;720 -142;'500;Montserrat;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;0;0;0;0;0;0;0 -142;'500;Montserrat;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;0;0;0;0;0;0;0 -142;'500;Montserrat;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -142;'500;Montserrat;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;137;297;229;229;229;229;229;229;229;229;229;229;229;229;229;229;229;229;229;229;229;229;229;78;55;132;170;91;79;134;89;669 -142;'500;Montserrat;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;72;94;94;94;94;94;94;94;94;94;94;94;94;94;94;94;94;94;242;290;225;239;41;33;106;230;67;47;92;58;720 -142;'500;Montserrat;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;0;0;0;0;0;0;0 -142;'500;Montserrat;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;0;0;0;0;0;0;0 -142;'500;Montserrat;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -142;'500;Montserrat;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -142;'500;Montserrat;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -142;'500;Montserrat;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -142;'500;Montserrat;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -142;'500;Montserrat;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -142;'500;Montserrat;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -142;'500;Montserrat;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -142;'500;Montserrat;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;0;0;0;0;0 -142;'500;Montserrat;1879;Total fibre furnish;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;11;0;0;0;0;0 -142;'500;Montserrat;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;0;0;0;0;0 -142;'500;Montserrat;1669;Recovered paper;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;11;0;0;0;0;0 -142;'500;Montserrat;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;4;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;2;1;3;10;14 -142;'500;Montserrat;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;6;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;17;6;11;37;59 -142;'500;Montserrat;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -142;'500;Montserrat;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -142;'500;Montserrat;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;4;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;1;0;2;6;3 -142;'500;Montserrat;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;6;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;1;4;17;21 -142;'500;Montserrat;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;4;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;1;0;2;6;3 -142;'500;Montserrat;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;6;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;1;4;17;21 -142;'500;Montserrat;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;1;0;2;0;0 -142;'500;Montserrat;1612;Printing and writing papers, uncoated, mechanical;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;1;4;1;2 -142;'500;Montserrat;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1 -142;'500;Montserrat;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;4 -142;'500;Montserrat;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;2 -142;'500;Montserrat;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;15 -142;'500;Montserrat;1675;Other paper and paperboard;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;1;1;1;4;11 -142;'500;Montserrat;1675;Other paper and paperboard;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;5;7;20;38 -142;'500;Montserrat;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -142;'500;Montserrat;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -142;'500;Montserrat;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;1;0 -142;'500;Montserrat;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;1;4;6;2 -142;'500;Montserrat;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;11 -142;'500;Montserrat;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;31 -142;'500;Montserrat;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -142;'500;Montserrat;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -142;'500;Montserrat;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -142;'500;Montserrat;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -142;'500;Montserrat;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -142;'500;Montserrat;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;9 -142;'500;Montserrat;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;24 -142;'500;Montserrat;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2 -142;'500;Montserrat;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;7 -142;'500;Montserrat;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;0;0;0;0;0;0;0;1;1;0;0 -142;'500;Montserrat;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;0;0;0;0;0;0;8;4;3;3;5 -142;'500;Montserrat;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;585;790;533;458;412;614;788 -142;'500;Montserrat;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;28;7;7;7;4;5 -142;'500;Montserrat;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;339;301;207;205;356;225;255 -142;'500;Montserrat;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2 -142;'500;Montserrat;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;283;298;201;189;264;216;250 -142;'500;Montserrat;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -142;'500;Montserrat;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;3;6;16;92;9;5 -142;'500;Montserrat;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2 -142;'500;Montserrat;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;1;8 -142;'500;Montserrat;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;1;2;0;2;4 -142;'500;Montserrat;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -142;'500;Montserrat;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;165;113;98;22;80;111 -142;'500;Montserrat;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -142;'500;Montserrat;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;162;273;168;106;29;155;168 -142;'500;Montserrat;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;25;4;4;4;1;2 -142;'500;Montserrat;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;114;227 -142;'500;Montserrat;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;49;44;47;5;37;15 -142;'500;Montserrat;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1 -142;'500;Montserrat;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;451;445;485;476;108;338;364 -142;'500;Montserrat;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;15;19;17;13 -142;'500;Montserrat;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;3;3;3;3;0 -142;'500;Montserrat;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;6;6;5;3;6;5 -142;'500;Montserrat;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;13;13;13 -142;'500;Montserrat;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;256;278;318;330;40;199;225 -142;'500;Montserrat;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -142;'500;Montserrat;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;38;42;54;29;53;38 -142;'500;Montserrat;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;2;2;0;0 -142;'500;Montserrat;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;156;123;116;84;33;77;96 -142;'500;Montserrat;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;4;4;0 -143;'504;Morocco;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1339797;1498123;1459349;1388472;1709023.1;2505578;2161155 -143;'504;Morocco;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;164176;163280;166689;170728;208369.03;268907;271242 -143;'504;Morocco;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;15951;14777;20396;22269;18253;19515;22532;22072;26345;32925;33130;32622;49678;79867;83528;98299;125406;111236;144190;156630;148775;165840;132524;129497;124100;136205;143167;226733;257454;203995;252969;300650;267382;340454;447437;335423;338440;314427;328760;349323;353317;395625;405888;514985;481120;584739;791210;829180;697628;765689;829798;784955;758885;950652;793779;881040;956013;1068238;1015188;967068;1200201.1;1949247;1597499 -143;'504;Morocco;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;3159;3061;2951;2601;2298;2477;686;4620;5930;8166;8657;6627;6627;21318;16926;15679;12247;14897;26147;34984;24946;19858;20864;27007;19096;17510;42938;64669;61926;51336;34452;64320;80393;82687;91038;56295;67226;54597;77225;124207;57829;87655;126395;93037;93037;93212;96241;83169;62196;126134;94183;91095;37411;37245;43110;51777;64012;44151;46894;52960;60744.03;90283;72298 -143;'504;Morocco;1861;Roundwood;5516;Production;m3;5556943;5668255;5722738;5747387;5783193;5878151;5901256;5955496;6020867;6081359;6150954;6244885;6320944;6495425;6460642;6457937;6496444;6669766;6613799;6574390;6732801;6761487;6925497;7076070;7261395;7096203;7216710;6983912;7291540;7135536;7671145;7612786;7333704;7858742;7729480;7800618;7336357;7893095;7512833;7537571;7525407;7458302;7425256;7459270;7452343;7458076;7454875;7397740;7296770;7157789;7133914;7102036;7139336;7118711;7156160;7107215;6942348;6921557;6880842;6684204;6800507;6980869;6977290 -143;'504;Morocco;1861;Roundwood;5616;Import quantity;m3;172700;163800;184000;144000;150300;135300;163100;131300;134800;210100;224300;195800;195800;279200;187000;199500;262800;209500;206200;277600;205800;228300;206400;195000;223400;210000;211000;600500;319000;77623;236677;371474;286498;441800;528300;340400;414600;167000;424000;401000;458000;356093;478885;653157;653157;438404;414383;540808;105583;239751;268147;233430;114193;112638;136507;155773;126842;116841;148768;78205;66198;48950;35930 -143;'504;Morocco;1861;Roundwood;5622;Import value;1000 USD;3060;3798;4607;4630;4657;5381;5226;5152;6038;7299;8953;8838;8838;20807;17110;17558;21510;21771;26737;34170;27789;30797;22544;22440;22925;23979;27379;57327;46000;7165;35457;53607;44054;60676;66301;45998;49242;33512;46222;44915;70660;45481;50000;61586;61586;56704;77038;90225;33567;65073;63409;33551;13106;12801;14043;14000;15252;13206;15774;8272;7421;8730;6043 -143;'504;Morocco;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1335;1012;1274;452;100;200;200;100;100;300;0;0;67;457;632;632;191;3175;3107;3107;812;7517;1997;102;1207;243;596;1624;508;2336;146;1444;40;380 -143;'504;Morocco;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;168;127;154;46;12;77;77;72;43;109;0;0;79;61;52;52;101;346;323;323;224;1274;317;146;463;84;79;150;60;174;66;475;17;205 -143;'504;Morocco;1862;Roundwood, coniferous;5516;Production;m3;923913;929487;939088;935716;943369;991045;977746;987467;992210;1002972;1013455;1026448;1038915;1108471;1089438;1056098;1076181;1070257;1064385;1039308;1079583;1083878;1100793;1108886;1145802;1164090;1183471;1164570;1244581;1212718;1307043;1268832;1209252;1355348;1382443;1434539;1215635;1331731;1280826;1315922;1307032;1356151;1260279;1282417;1353564;1306498;1326443;1272398;1276363;1197363;1191021;1194714;1213420;1210138;1193868;1150535;1139214;1135906;1114609;1057325;1136509;1345702;1108905 -143;'504;Morocco;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83801;66467;87768;52123;51782;29600;1750 -143;'504;Morocco;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9436;6836;9673;5653;5482;5843;511 -143;'504;Morocco;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1503;433;2200;0;1332;0;30 -143;'504;Morocco;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117;52;104;3;241;0;14 -143;'504;Morocco;1863;Roundwood, non-coniferous;5516;Production;m3;4633030;4738768;4783650;4811671;4839824;4887106;4923510;4968029;5028657;5078387;5137499;5218437;5282029;5386954;5371204;5401839;5420263;5599509;5549414;5535082;5653218;5677609;5824704;5967184;6115593;5932113;6033239;5819342;6046959;5922818;6364102;6343954;6124452;6503394;6347037;6366079;6120722;6561364;6232007;6221649;6218375;6102151;6164977;6176853;6098779;6151578;6128432;6125342;6020407;5960426;5942893;5907322;5925916;5908573;5962292;5956680;5803134;5785651;5766233;5626879;5663998;5635167;5868385 -143;'504;Morocco;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43041;50374;61000;26082;14416;19350;34180 -143;'504;Morocco;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5816;6370;6101;2619;1939;2887;5532 -143;'504;Morocco;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121;75;136;146;112;40;350 -143;'504;Morocco;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;8;70;63;234;17;191 -143;'504;Morocco;1864;Wood fuel;5516;Production;m3;5296943;5338255;5379738;5421387;5463193;5505151;5547256;5589496;5631867;5674359;5733954;5821885;5893944;5941425;5972642;5957937;6002444;6065766;6109299;6103790;6231201;6220487;6320497;6365070;6383395;6385203;6500710;6469912;6526540;6552536;6567145;6697786;6788404;6814142;6839880;6865618;6891357;6917095;6942833;6968571;6950407;6932302;6914256;6896270;6878343;6859076;6839875;6820740;6801670;6785689;6761814;6741036;6720336;6699711;6679160;6658215;6637348;6616557;6595842;6575204;6557507;6539869;6522290 -143;'504;Morocco;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;741;2645;0;0;0;0;0;0;0;0;93;93;93;93;93;25;174;174;174;46;46;79;12;61;538;0;32;0;0;0;0;0 -143;'504;Morocco;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;101;0;0;0;0;0;0;0;0;4;4;4;4;4;6;80;80;80;30;30;6;14;8;66;0;4;1;1;1;0;0 -143;'504;Morocco;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;11;11;11;11;5;5;5;5;5;18;18;28;80;204;82;43;127;23;99;0;380 -143;'504;Morocco;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;1;1;1;1;0;0;0;0;0;2;2;7;17;50;27;5;65;32;119;0;202 -143;'504;Morocco;1627;Wood fuel, coniferous;5516;Production;m3;842913;849487;856088;862716;869369;876045;882746;889467;896210;902972;912455;926448;937915;945471;950438;948098;955181;965257;972185;971308;991583;989878;1005793;1012886;1015802;1016090;1034471;1029570;1038581;1042718;1045043;1065832;1080252;1084348;1088443;1092539;1096635;1100731;1104826;1108922;1106032;1103151;1100279;1097417;1094564;1091498;1088443;1085398;1082363;1082363;1076021;1072714;1069420;1066138;1062868;1059535;1056214;1052906;1049609;1046325;1043509;1040702;1037905 -143;'504;Morocco;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -143;'504;Morocco;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -143;'504;Morocco;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;30 -143;'504;Morocco;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;14 -143;'504;Morocco;1628;Wood fuel, non-coniferous;5516;Production;m3;4454030;4488768;4523650;4558671;4593824;4629106;4664510;4700029;4735657;4771387;4821499;4895437;4956029;4995954;5022204;5009839;5047263;5100509;5137114;5132482;5239618;5230609;5314704;5352184;5367593;5369113;5466239;5440342;5487959;5509818;5522102;5631954;5708152;5729794;5751437;5773079;5794722;5816364;5838007;5859649;5844375;5829151;5813977;5798853;5783779;5767578;5751432;5735342;5719307;5703326;5685793;5668322;5650916;5633573;5616292;5598680;5581134;5563651;5546233;5528879;5513998;5499167;5484385 -143;'504;Morocco;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;32;0;0;0;0;0 -143;'504;Morocco;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;4;1;1;1;0;0 -143;'504;Morocco;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;43;127;23;99;0;350 -143;'504;Morocco;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;5;65;32;119;0;188 -143;'504;Morocco;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;741;2645;0;0;0;0;0;0;0;0;93;93;93;93;93;25;174;174;174;46;46;79;12;61;538;;;;;;; -143;'504;Morocco;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;101;0;0;0;0;0;0;0;0;4;4;4;4;4;6;80;80;80;30;30;6;14;8;66;;;;;;; -143;'504;Morocco;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;11;11;11;11;5;5;5;5;5;18;18;28;80;204;;;;;;; -143;'504;Morocco;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;1;1;1;1;0;0;0;0;0;2;2;7;17;50;;;;;;; -143;'504;Morocco;1865;Industrial roundwood;5516;Production;m3;260000;330000;343000;326000;320000;373000;354000;366000;389000;407000;417000;423000;427000;554000;488000;500000;494000;604000;504500;470600;501600;541000;605000;711000;878000;711000;716000;514000;765000;583000;1104000;915000;545300;1044600;889600;935000;445000;976000;570000;569000;575000;526000;511000;563000;574000;599000;615000;577000;495100;372100;372100;361000;419000;419000;477000;449000;305000;305000;285000;109000;243000;441000;455000 -143;'504;Morocco;1865;Industrial roundwood;5616;Import quantity;m3;172700;163800;184000;144000;150300;135300;163100;131300;134800;210100;224300;195800;195800;279200;187000;199500;262800;209500;206200;277600;205800;228300;206400;195000;223400;210000;211000;600500;319000;77623;236677;370733;283853;441800;528300;340400;414600;167000;424000;401000;458000;356000;478792;653064;653064;438311;414358;540634;105409;239577;268101;233384;114114;112626;136446;155235;126842;116809;148768;78205;66198;48950;35930 -143;'504;Morocco;1865;Industrial roundwood;5622;Import value;1000 USD;3060;3798;4607;4630;4657;5381;5226;5152;6038;7299;8953;8838;8838;20807;17110;17558;21510;21771;26737;34170;27789;30797;22544;22440;22925;23979;27379;57327;46000;7165;35457;53572;43953;60676;66301;45998;49242;33512;46222;44915;70660;45477;49996;61582;61582;56700;77032;90145;33487;64993;63379;33521;13100;12787;14035;13934;15252;13202;15773;8271;7420;8730;6043 -143;'504;Morocco;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1335;1012;1274;452;100;200;200;100;100;300;0;0;67;446;621;621;180;3170;3102;3102;807;7512;1979;84;1179;163;392;1542;465;2209;123;1345;40;0 -143;'504;Morocco;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;168;127;154;46;12;77;77;72;43;109;0;0;79;60;51;51;100;346;323;323;224;1274;315;144;456;67;29;123;55;109;34;356;17;3 -143;'504;Morocco;1866;Industrial roundwood, coniferous;5516;Production;m3;81000;80000;83000;73000;74000;115000;95000;98000;96000;100000;101000;100000;101000;163000;139000;108000;121000;105000;92200;68000;88000;94000;95000;96000;130000;148000;149000;135000;206000;170000;262000;203000;129000;271000;294000;342000;119000;231000;176000;207000;201000;253000;160000;185000;259000;215000;238000;187000;194000;115000;115000;122000;144000;144000;131000;91000;83000;83000;65000;11000;93000;305000;71000 -143;'504;Morocco;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36093;33488;73000;26600;49100;39000;62500;61500;52000;36000;47000;25000;47000;171452;119948;119948;165607;95843;76850;37758;40758;78497;63138;87687;99567;97311;88444;83801;66467;87768;52123;51782;29600;1750 -143;'504;Morocco;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3009;2939;8739;3332;7628;6947;8279;9619;9537;5040;6402;2760;6662;10459;7317;7317;18867;9813;13974;5513;4636;8263;8384;9176;9929;10069;7992;9436;6836;9673;5653;5482;5843;511 -143;'504;Morocco;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1236;181;9;9;100;100;100;0;0;0;0;0;0;415;346;346;53;2974;2974;2974;679;5420;1895;0;60;139;390;1503;433;2200;0;1332;0;0 -143;'504;Morocco;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;153;15;1;1;12;12;12;0;0;0;0;0;0;22;18;18;3;158;158;158;59;432;171;0;5;52;29;117;52;104;3;241;0;0 -143;'504;Morocco;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36093;33488;73000;26600;49100;39000;62500;61500;52000;36000;47000;25000;47000;171452;119948;119948;165607;95843;76850;37758;40758;78497;63138;87687;99567;97311;88444;83801;66467;87768;52123;51782;29600;1750 -143;'504;Morocco;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3009;2939;8739;3332;7628;6947;8279;9619;9537;5040;6402;2760;6662;10459;7317;7317;18867;9813;13974;5513;4636;8263;8384;9176;9929;10069;7992;9436;6836;9673;5653;5482;5843;511 -143;'504;Morocco;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1236;181;9;9;100;100;100;0;0;0;0;0;0;415;346;346;53;2974;2974;2974;679;5420;1895;0;60;139;390;1503;433;2200;0;1332;0;0 -143;'504;Morocco;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;153;15;1;1;12;12;12;0;0;0;0;0;0;22;18;18;3;158;158;158;59;432;171;0;5;52;29;117;52;104;3;241;0;0 -143;'504;Morocco;1867;Industrial roundwood, non-coniferous;5516;Production;m3;179000;250000;260000;253000;246000;258000;259000;268000;293000;307000;316000;323000;326000;391000;349000;392000;373000;499000;412300;402600;413600;447000;510000;615000;748000;563000;567000;379000;559000;413000;842000;712000;416300;773600;595600;593000;326000;745000;394000;362000;374000;273000;351000;378000;315000;384000;377000;390000;301100;257100;257100;239000;275000;275000;346000;358000;222000;222000;220000;98000;150000;136000;384000 -143;'504;Morocco;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41530;203189;297733;257253;392700;489300;277900;353100;115000;388000;354000;433000;309000;307340;533116;533116;272704;318515;463784;67651;198819;189604;170246;26427;13059;39135;66791;43041;50342;61000;26082;14416;19350;34180 -143;'504;Morocco;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4156;32518;44833;40621;53048;59354;37719;39623;23975;41182;38513;67900;38815;39537;54265;54265;37833;67219;76171;27974;60357;55116;25137;3924;2858;3966;5942;5816;6366;6100;2618;1938;2887;5532 -143;'504;Morocco;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;831;1265;443;0;100;100;100;100;300;0;0;67;31;275;275;127;196;128;128;128;2092;84;84;1119;24;2;39;32;9;123;13;40;0 -143;'504;Morocco;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;112;153;45;0;65;65;72;43;109;0;0;79;38;33;33;97;188;165;165;165;842;144;144;451;15;0;6;3;5;31;115;17;3 -143;'504;Morocco;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85420;155618;181453;103200;80400;77300;82100;62000;58000;51000;133000;55000;61380;194687;194687;64038;92009;80119;16921;36215;27000;1457;238;1400;3439;853;872;1145;1445;22;216;230;1030 -143;'504;Morocco;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20944;29028;32818;29795;25067;21328;19964;18300;18448;18491;47900;18315;21752;31929;31929;20161;42442;27057;10771;15472;10231;544;109;529;1193;270;322;466;589;18;57;67;377 -143;'504;Morocco;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;5;5;5;80;80;80;80;80;80;79;79;1117;0;0;39;0;0;0;0;10;0 -143;'504;Morocco;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;17;82;82;82;82;82;82;64;64;439;0;0;6;0;0;0;0;7;0 -143;'504;Morocco;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41530;117769;142115;75800;289500;408900;200600;271000;53000;330000;303000;300000;254000;245960;338429;338429;208666;226506;383665;50730;162604;162604;168789;26189;11659;35696;65938;42169;49197;59555;26060;14200;19120;33150 -143;'504;Morocco;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4156;11574;15805;7803;23253;34287;16391;19659;5675;22734;20022;20000;20500;17785;22336;22336;17672;24777;49114;17203;44885;44885;24593;3815;2329;2773;5672;5494;5900;5511;2600;1881;2820;5155 -143;'504;Morocco;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;831;1265;443;0;100;100;100;100;300;0;0;64;26;270;270;47;116;48;48;48;2012;5;5;2;24;2;0;32;9;123;13;30;0 -143;'504;Morocco;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;112;153;45;0;65;65;72;43;109;0;0;62;21;16;16;15;106;83;83;83;760;80;80;12;15;0;0;3;5;31;115;10;3 -143;'504;Morocco;1868;Sawlogs and veneer logs;5516;Production;m3;61000;60000;61000;51000;51000;91000;68000;70000;69000;72000;72000;69000;69000;131000;106000;74000;86000;73000;66500;47600;66600;68000;68000;68000;110000;131000;131000;116000;186000;149000;225000;156000;79300;224600;246600;288000;64000;231000;176000;207000;201000;253000;160000;185000;259000;215000;238000;184000;190100;113100;113100;122000;144000;144000;131000;91000;83000;83000;65000;11000;47000;305000;71000 -143;'504;Morocco;1868;Sawlogs and veneer logs;5616;Import quantity;m3;22100;19000;11800;73000;83000;76200;80900;76100;89700;157800;150200;158500;158500;193100;82500;118400;186600;150100;134000;232000;143000;154200;152100;145000;160400;142000;143000;154000;100000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -143;'504;Morocco;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;685;851;434;2930;3164;3549;3157;3444;4572;5507;6189;7508;7508;15571;7807;11808;15966;17333;19886;29458;20891;22544;17465;17740;18811;20184;23584;25828;16000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -143;'504;Morocco;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;58000;56000;58000;48000;48000;88000;67000;69000;67000;70000;70000;68000;68000;130000;105000;73000;85000;68000;55200;30000;49000;54000;54000;54000;87000;104000;104000;89000;159000;122000;213000;153000;78000;219000;241000;288000;64000;231000;176000;207000;201000;253000;160000;185000;259000;215000;238000;179000;189000;112000;112000;122000;144000;144000;131000;91000;83000;83000;65000;11000;43000;305000;71000 -143;'504;Morocco;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;1900;3200;2200;1000;14600;8000;500;100;100;100;100;100;100;100;100;9800;5500;5300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -143;'504;Morocco;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;55;92;60;30;344;244;11;3;3;3;3;3;3;3;3;910;500;576;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -143;'504;Morocco;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;3000;4000;3000;3000;3000;3000;1000;1000;2000;2000;2000;1000;1000;1000;1000;1000;1000;5000;11300;17600;17600;14000;14000;14000;23000;27000;27000;27000;27000;27000;12000;3000;1300;5600;5600;0;0;0;0;0;0;0;0;0;0;0;0;5000;1100;1100;1100;0;0;0;0;0;0;0;0;0;4000;0;0 -143;'504;Morocco;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;20200;15800;9600;72000;68400;68200;80400;76000;89600;157700;150100;158400;158400;193000;82400;108600;181100;144800;134000;232000;143000;154200;152100;145000;160400;142000;143000;154000;100000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -143;'504;Morocco;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;630;759;374;2900;2820;3305;3146;3441;4569;5504;6186;7505;7505;15568;7804;10898;15466;16757;19886;29458;20891;22544;17465;17740;18811;20184;23584;25828;16000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -143;'504;Morocco;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;745000;394000;362000;374000;273000;351000;378000;315000;384000;377000;393000;305000;259000;259000;239000;275000;275000;346000;358000;222000;222000;220000;98000;196000;136000;384000 -143;'504;Morocco;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8000;5000;3000;3000;0;0;0;0;0;0;0;0;0;50000;0;0 -143;'504;Morocco;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;745000;394000;362000;374000;273000;351000;378000;315000;384000;377000;385000;300000;256000;256000;239000;275000;275000;346000;358000;222000;222000;220000;98000;146000;136000;384000 -143;'504;Morocco;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -143;'504;Morocco;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -143;'504;Morocco;1870;Pulpwood and particles (1961-1997);5516;Production;m3;63000;130000;138000;127000;117000;125000;125000;130000;150000;160000;165000;169000;169000;230000;184000;223000;200000;318000;221000;201000;208000;241000;300000;400000;520000;326000;326000;133000;309000;158000;597000;472000;173000;521000;339000;337000;65000;;;;;;;;;;;;;;;;;;;;;;;;;; -143;'504;Morocco;1870;Pulpwood and particles (1961-1997);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -143;'504;Morocco;1870;Pulpwood and particles (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -143;'504;Morocco;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;63000;130000;138000;127000;117000;125000;125000;130000;150000;160000;165000;169000;169000;230000;184000;223000;200000;318000;221000;201000;208000;241000;300000;400000;520000;326000;326000;133000;309000;158000;597000;472000;173000;521000;339000;337000;65000;;;;;;;;;;;;;;;;;;;;;;;;;; -143;'504;Morocco;1871;Other industrial roundwood;5516;Production;m3;136000;140000;144000;148000;152000;157000;161000;166000;170000;175000;180000;185000;189000;193000;198000;203000;208000;213000;217000;222000;227000;232000;237000;243000;248000;254000;259000;265000;270000;276000;282000;287000;293000;299000;304000;310000;316000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -143;'504;Morocco;1871;Other industrial roundwood;5616;Import quantity;m3;150600;144800;172200;71000;67300;59100;82200;55200;45100;52300;74100;37300;37300;86100;104500;81100;76200;59400;72200;45600;62800;74100;54300;50000;63000;68000;68000;446500;219000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -143;'504;Morocco;1871;Other industrial roundwood;5622;Import value;1000 USD;2375;2947;4173;1700;1493;1832;2069;1708;1466;1792;2764;1330;1330;5236;9303;5750;5544;4438;6851;4712;6898;8253;5079;4700;4114;3795;3795;31499;30000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -143;'504;Morocco;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;23000;24000;25000;25000;26000;27000;28000;29000;29000;30000;31000;32000;33000;33000;34000;35000;36000;37000;37000;38000;39000;40000;41000;42000;43000;44000;45000;46000;47000;48000;49000;50000;51000;52000;53000;54000;55000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -143;'504;Morocco;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;113000;116000;119000;123000;126000;130000;133000;137000;141000;145000;149000;153000;156000;160000;164000;168000;172000;176000;180000;184000;188000;192000;196000;201000;205000;210000;214000;219000;223000;228000;233000;237000;242000;247000;251000;256000;261000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -143;'504;Morocco;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;150600;144800;172200;71000;67300;59100;82200;55200;45100;52300;74100;37300;37300;86100;104500;81100;76200;59400;72200;45600;62800;74100;54300;50000;63000;68000;68000;446500;219000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -143;'504;Morocco;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;2375;2947;4173;1700;1493;1832;2069;1708;1466;1792;2764;1330;1330;5236;9303;5750;5544;4438;6851;4712;6898;8253;5079;4700;4114;3795;3795;31499;30000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -143;'504;Morocco;1630;Wood charcoal;5510;Production;t;25489;26497;27545;28634;29766;30944;32167;33439;34762;36136;37739;39354;41008;22000;23000;45000;70000;41000;63000;74000;58000;59000;58656;60507;62397;64208;66050;67925;69819;71746;73575;75421;77301;79215;100000;88000;53000;86521;88349;90178;91875;93571;95268;96965;98661;100220;101800;103300;104894;106452;107849;109245;110642;112039;113435;114661;115887;117114;118340;119566;120717;121869;123021 -143;'504;Morocco;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;0;0;0;0;0;0;0;0;26;54;1;1;392;746;1000;470;584;429;480;502;763;535;457;601;2381;977;959;1398.84;1570;1790 -143;'504;Morocco;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;0;0;0;0;0;0;0;0;87;192;524;524;634;1124;834;776;1225;578;830;1160;855;934;892;1162;1275;2089;2029;3178.93;3717;3824 -143;'504;Morocco;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;103;103;52;52;52;3;18;18;757;291;73;67;54;0;40;0;0;0 -143;'504;Morocco;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;22;22;26;26;26;4;4;4;212;88;43;36;31;0;24;2;0;1 -143;'504;Morocco;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;6;292;1470;1470;67;90;90;371;36354;45542;45496;609;2615;385;940;121;491;619;841;2790.27;460;170 -143;'504;Morocco;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;19;46;71;71;76;69;118;235;2838;3925;4723;390;1090;225;294;69;144;208;123;162;201;139 -143;'504;Morocco;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;2;14;14;37;7;7;7;7;94;76;47;96;1374;1838;2881;2598;0;0;17;30;410 -143;'504;Morocco;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;1;1;1;3;6;6;6;6;41;128;29;132;287;340;500;489;0;0;4;14;39 -143;'504;Morocco;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4033;652;652;0;0;0;0;0;0;6;266;988;988;1;29;34;41;36024;40000;40204;198;79;83;257;105;100;82;125;50;410;80 -143;'504;Morocco;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;197;28;28;0;0;0;0;0;0;19;24;52;52;9;16;31;38;2641;2848;3906;103;67;71;89;62;61;50;82;53;149;86 -143;'504;Morocco;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;19;19;19;19;0;0;0;0;0;0;30;410 -143;'504;Morocco;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;8;8;8;8;0;0;0;0;0;0;14;39 -143;'504;Morocco;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;121;121;121;0;0;0;0;0;0;26;482;482;66;61;56;330;330;5542;5292;411;2536;302;683;16;391;537;716;2740.27;50;90 -143;'504;Morocco;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;4;4;4;0;0;0;0;0;0;22;19;19;67;53;87;197;197;1077;817;287;1023;154;205;7;83;158;41;109;52;53 -143;'504;Morocco;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;2;14;14;37;2;2;2;2;89;57;28;77;1355;1838;2881;2598;0;0;17;0;0 -143;'504;Morocco;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;1;1;1;3;6;6;6;6;41;120;21;124;279;340;500;489;0;0;4;0;0 -143;'504;Morocco;1605;Sawdust (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;90 -143;'504;Morocco;1605;Sawdust (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;53 -143;'504;Morocco;1605;Sawdust (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -143;'504;Morocco;1605;Sawdust (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -143;'504;Morocco;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;670;440 -143;'504;Morocco;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;121 -143;'504;Morocco;1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -143;'504;Morocco;1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -143;'504;Morocco;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;5000;5000;5000;5000;5000;5000;5000 -143;'504;Morocco;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;678;1619;1366;1210;236;262;200;220 -143;'504;Morocco;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;204;491;456;404;107;137;168;35 -143;'504;Morocco;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1836;3432;3767;645;122;115;1720;140 -143;'504;Morocco;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;339;658;786;126;76;64;380;44 -143;'504;Morocco;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;4;48;0;0;0 -143;'504;Morocco;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;4;30;1;1;1 -143;'504;Morocco;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;115;115;1560;140 -143;'504;Morocco;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;64;64;354;44 -143;'504;Morocco;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;5000;5000;5000;5000;5000;5000;5000 -143;'504;Morocco;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;678;1619;1357;1206;188;262;200;220 -143;'504;Morocco;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;204;491;454;400;77;136;167;34 -143;'504;Morocco;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1836;3432;3767;645;7;0;160;0 -143;'504;Morocco;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;339;658;786;126;12;0;26;0 -143;'504;Morocco;1872;Sawnwood;5516;Production;m3;21600;21600;23500;35000;34400;38400;39000;37000;36000;37000;38000;50000;62000;97000;85000;62000;81000;68000;73000;127600;114000;149000;130000;120000;100000;90000;80000;53000;83000;83000;83000;83000;83000;83000;83000;83000;83000;83000;83000;83000;83000;83000;83000;83000;83000;83000;83000;83000;83000;83000;83000;83000;83000;83000;83000;83000;83000;83000;83000;54520;54520;54520;54520 -143;'504;Morocco;1872;Sawnwood;5616;Import quantity;m3;177600;122800;220100;253600;178400;211500;193300;23500;224800;241100;202600;222400;180800;228000;238600;346800;419500;303000;378300;226200;373700;424700;320900;423100;401800;375000;375000;439500;262000;331000;243200;561449;478108;566200;656200;540000;643600;382000;422000;399000;437000;492000;740356;1093963;870363;1174225;1188020;1281540;1212218;1080261;1189777;1025932;1020714;1031163;1154275;941370;1017793;1331969;1193294;1035961;1043185;1097940;1175210 -143;'504;Morocco;1872;Sawnwood;5622;Import value;1000 USD;7329;5124;8365;11290;7972;9645;8614;8536;10408;13059;12428;11989;21928;13513;27362;37621;50018;47008;54343;47851;54498;59934;38948;51656;48527;55597;55597;82503;100400;76218;72458;128988;90774;127384;162913;126231;137075;130318;135946;122312;123375;163056;133812;203780;169915;258310;363228;372013;313246;310230;350320;338200;312264;333016;275927;263582;264962;310610;281326;233423;333509;336392;315438 -143;'504;Morocco;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1264;3992;581;600;500;200;0;0;19000;0;301;83;918;918;337;174;4;4;4;40;207;23;826;63;112;267;460;2552;307;330;270;410 -143;'504;Morocco;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1596;3657;747;736;529;230;0;0;21901;0;66;116;261;261;256;139;13;13;169;201;247;98;229;36;95;197;303;1745;132;364;217;279 -143;'504;Morocco;1632;Sawnwood, coniferous;5516;Production;m3;21600;21600;23500;34500;33500;36700;34000;32000;31000;31000;32000;39500;32000;66000;66000;51000;45000;38000;40000;30000;63000;94000;80000;70000;60000;50000;40000;26000;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 -143;'504;Morocco;1632;Sawnwood, coniferous;5616;Import quantity;m3;172100;103300;191800;245300;173250;202300;185400;18450;216150;228450;192800;207350;165750;208300;218300;330100;408600;252100;324500;190400;341500;380850;289800;377400;366600;321300;321300;388600;250000;313000;225200;476276;459608;488000;584900;470000;574600;336000;363000;343000;377000;427000;678000;967300;743700;1064000;1094920;1155700;1081044;1020052;1088499;958256;951806;956757;1062494;852421;924488;1240000;1094887;945533;927884;1012390;1047820 -143;'504;Morocco;1632;Sawnwood, coniferous;5622;Import value;1000 USD;6860;4746;7842;10870;7653;9123;8068;8125;9852;12265;11668;10924;20863;11075;23798;35003;48464;38517;47010;36771;48044;49830;32602;43315;41851;42305;42305;62503;96000;69218;65458;97109;83832;96337;132072;100002;113530;108110;110147;100192;101007;136100;108371;165148;131283;219338;308714;312456;259231;269088;304679;295622;267916;285066;232880;219319;219871;264746;238237;190358;281092;294784;253511 -143;'504;Morocco;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;97;181;300;300;0;0;0;19000;0;0;0;134;134;139;104;4;4;4;16;21;5;732;9;34;74;136;218;259;1;150;240 -143;'504;Morocco;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;16;69;234;234;0;0;0;21901;0;0;0;22;22;37;36;13;13;1;64;45;2;5;2;7;19;41;39;2;12;89;112 -143;'504;Morocco;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;500;900;1700;5000;5000;5000;6000;6000;10500;30000;31000;19000;11000;36000;30000;33000;97600;51000;55000;50000;50000;40000;40000;40000;27000;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;11520;11520;11520;11520 -143;'504;Morocco;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;5500;19500;28300;8300;5150;9200;7900;5050;8650;12650;9800;15050;15050;19700;20300;16700;10900;50900;53800;35800;32200;43850;31100;45700;35200;53700;53700;50900;12000;18000;18000;85173;18500;78200;71300;70000;69000;46000;59000;56000;60000;65000;62356;126663;126663;110225;93100;125840;131174;60209;101278;67676;68908;74406;91781;88949;93305;91969;98407;90428;115301;85550;127390 -143;'504;Morocco;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;469;378;523;420;319;522;546;411;556;794;760;1065;1065;2438;3564;2618;1554;8491;7333;11080;6454;10104;6346;8341;6676;13292;13292;20000;4400;7000;7000;31879;6942;31047;30841;26229;23545;22208;25799;22120;22368;26956;25441;38632;38632;38972;54514;59557;54015;41142;45641;42578;44348;47950;43047;44263;45091;45864;43089;43065;52417;41608;61927 -143;'504;Morocco;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1185;3895;400;300;200;200;0;0;0;0;301;83;784;784;198;70;0;0;0;24;186;18;94;54;78;193;324;2334;48;329;120;170 -143;'504;Morocco;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1558;3641;678;502;295;230;0;0;0;0;66;116;239;239;219;103;0;0;168;137;202;96;224;34;88;178;262;1706;130;352;128;167 -143;'504;Morocco;1634;Veneer sheets;5516;Production;m3;400;400;400;600;800;800;500;500;400;800;800;900;800;2800;2800;25000;52000;51000;26000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;4200;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500;6500;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000 -143;'504;Morocco;1634;Veneer sheets;5616;Import quantity;m3;200;200;200;100;200;100;200;200;200;200;200;200;200;200;400;200;300;400;400;300;600;1000;1000;1400;1300;1800;1900;1200;1200;1200;1200;1711;1891;1100;2300;1300;2900;2000;2000;6000;6000;7000;9650;19006;19006;12845;10348;11970;10826;18931;34846;34849;30591;21727;25703;29617;36508;31791;40859;35727;44278;98220;51920 -143;'504;Morocco;1634;Veneer sheets;5622;Import value;1000 USD;70;63;97;40;95;65;67;79;104;113;114;82;82;230;263;314;545;693;628;619;1071;1400;1300;1445;1394;1458;2089;1772;1772;1772;1772;2486;1814;1384;2059;1246;2300;2071;2568;3776;5850;7225;8636;14806;14806;12025;16307;17033;14233;21406;38926;32965;30328;23780;25161;29616;35303;29787;35699;29492;46856;103813;56411 -143;'504;Morocco;1634;Veneer sheets;5916;Export quantity;m3;500;400;400;400;900;900;400;600;400;300;300;300;300;200;200;1100;1300;1000;1700;2300;1600;1600;1000;4600;2300;1000;1000;1000;1000;1000;1000;1020;835;200;400;1000;200;1000;1000;0;0;0;6;268;268;574;135;5;5;5;44;39;364;590;159;38;69;11;6;149;30;30;30 -143;'504;Morocco;1634;Veneer sheets;5922;Export value;1000 USD;406;320;279;279;508;515;446;490;580;472;409;433;433;514;248;732;825;614;1100;2002;893;921;584;2114;1042;705;705;705;705;705;705;875;669;232;270;660;150;662;921;0;0;0;8;212;212;242;164;19;19;31;99;35;372;793;173;63;80;45;6;106;38;15;36 -143;'504;Morocco;1873;Wood-based panels;5516;Production;m3;5400;6200;7000;8000;8000;8400;11500;9800;14300;14300;16300;22300;22300;30300;30300;20400;41000;47000;49000;60000;70000;80000;80000;80000;110000;110000;110000;120000;76000;76000;26400;28400;28400;28400;28400;28400;28400;28400;28400;28400;28400;28400;28400;28400;28400;28400;28400;28400;28400;85400;85400;85400;85400;85400;85400;87400;103400;103400;113400;103400;103400;103400;103400 -143;'504;Morocco;1873;Wood-based panels;5616;Import quantity;m3;2100;1800;2700;3200;3800;3800;2595;8492;10172;17437;15089;19201;19201;26893;18806;22411;29800;27900;27200;23800;18000;16000;12000;12400;12900;20250;4950;6250;6650;6650;6650;64941;33643;35325;48900;55600;74400;34000;28000;30000;32000;45140;83632;57254;57254;104502;70659;147244;201072;161103;102274;116747;137007;160121;179590;252471;287994;279952;426387;324106;431233.82;586750;658350 -143;'504;Morocco;1873;Wood-based panels;5622;Import value;1000 USD;210;165;251;283;475;475;205;629;765;1551;1292;1637;1637;3632;2675;2623;3961;3688;4444;5073;3752;3360;2332;2960;2621;4907;3232;4562;5010;4927;4927;15966;9434;10951;11275;14447;12636;12945;10281;9349;11915;14165;18332;16896;16896;29257;44391;59459;76000;59936;52944;61428;55671;83101;78259;98550;106718;120631;128215;119237;182340.35;353896;387806 -143;'504;Morocco;1873;Wood-based panels;5916;Export quantity;m3;0;400;300;300;300;1400;500;;400;2500;3100;5000;5000;7500;3000;600;3200;3700;3500;2500;3400;2700;4500;3600;7800;2900;2900;2900;2900;;;15938;29101;27435;25699;24199;26300;16000;17000;19000;24000;21003;26055;118044;118044;26094;18823;19452;2211;22743;20842;18528;12142;10453;16663;39192;47658;24136;33765;43204;39959.8;43360;34260 -143;'504;Morocco;1873;Wood-based panels;5922;Export value;1000 USD;0;57;37;62;62;234;114;;80;479;627;1044;1044;3156;1198;211;1375;1865;2330;1975;1694;1394;2245;1584;3066;1817;1817;1817;1817;;;12602;19598;19876;21518;20541;22041;20217;21138;21879;28263;28134;24198;38696;38696;26445;19137;20156;2587;17736;16884;16012;9155;8575;11066;19495;26107;23562;27962;26032;38600;55138;44281 -143;'504;Morocco;1640;Plywood and LVL;5516;Production;m3;5400;6200;7000;8000;8000;8000;11000;9500;14000;14000;16000;22000;22000;30000;30000;19000;31000;29000;32000;45000;45000;50000;50000;50000;80000;80000;80000;90000;44000;44000;22000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;82000;82000;82000;82000;82000;82000;84000;100000;100000;110000;100000;100000;100000;100000 -143;'504;Morocco;1640;Plywood and LVL;5616;Import quantity;m3;100;100;300;500;2100;2100;100;100;500;500;500;500;500;500;500;500;500;500;300;300;300;300;300;3700;4100;11400;4600;5900;5900;5900;5900;7461;4597;8600;4800;7800;5400;7000;5000;4000;2000;5000;10955;13980;13980;17991;19692;32340;51744;65340;49017;40842;48865;50276;48607;68183;64316;73237;86953;81258;74621;70720;64140 -143;'504;Morocco;1640;Plywood and LVL;5622;Import value;1000 USD;10;15;28;40;315;315;8;12;62;62;62;62;62;62;62;62;62;62;33;33;33;33;33;1525;1187;3473;3139;4477;4477;4477;4477;6404;3141;4485;3525;5850;3665;5435;4321;3420;2300;3926;5717;4961;4961;9252;19257;24089;32335;30125;26591;24311;28883;33532;28576;38065;35269;36804;38408;27810;37734;46657;44672 -143;'504;Morocco;1640;Plywood and LVL;5916;Export quantity;m3;0;400;300;300;300;1400;500;;400;2500;3100;5000;5000;7500;3000;600;3200;3700;3500;2500;3400;2700;4500;3600;7800;2900;2900;2900;2900;;;15848;20828;23400;21900;23400;26300;16000;17000;19000;24000;21000;26041;117815;117815;25989;18657;19258;2017;22549;20648;18406;11950;9239;16563;39076;47217;23902;30504;26935;37664;43020;34210 -143;'504;Morocco;1640;Plywood and LVL;5922;Export value;1000 USD;0;57;37;62;62;234;114;;80;479;627;1044;1044;3156;1198;211;1375;1865;2330;1975;1694;1394;2245;1584;3066;1817;1817;1817;1817;;;12541;16341;18938;20039;20193;22041;20217;21138;21879;28263;28132;24145;38644;38644;26388;19000;20000;2431;17580;16728;15909;9006;7923;10910;19284;26060;23455;27821;25983;38262;54828;44186 -143;'504;Morocco;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1290;50 -143;'504;Morocco;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;498;65 -143;'504;Morocco;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;350;20 -143;'504;Morocco;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116;25 -143;'504;Morocco;1646;Particle board and OSB (1961-1994);5516;Production;m3;;;;;;400;500;300;300;300;300;300;300;300;300;1400;10000;18000;17000;15000;25000;30000;30000;30000;30000;30000;30000;30000;32000;32000;4400;3400;3400;3400;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -143;'504;Morocco;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;200;200;200;500;600;600;600;600;300;300;900;800;800;700;2300;5800;900;2400;2400;2400;1200;1200;1700;100;200;250;250;250;250;250;250;3003;6477;2700;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -143;'504;Morocco;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;20;20;20;40;40;40;40;40;16;21;58;45;45;99;279;647;99;264;264;264;516;478;1005;56;55;55;55;55;55;55;55;480;961;437;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -143;'504;Morocco;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;7265;3830;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -143;'504;Morocco;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;2730;868;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -143;'504;Morocco;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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 -143;'504;Morocco;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;400;100;1000;1000;1000;1000;4000;13087;13343;13343;16176;9424;35420;65927;42466;19297;23926;37929;50315;72575;90231;116566;110993;152309;114497;121048.84;323350;337650 -143;'504;Morocco;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;604;314;76;317;403;488;491;1532;2211;2188;2188;2924;4299;11961;17913;9486;8336;9626;11156;15716;20408;24773;29896;35824;34753;27902;34185.79;175299;185264 -143;'504;Morocco;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3600;600;0;0;0;0;0;3;8;105;105;7;5;3;3;3;3;3;42;255;32;65;411;205;2499;13730;1835;190;40 -143;'504;Morocco;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1411;280;0;0;0;0;0;2;25;18;18;25;28;13;13;13;13;13;22;293;66;115;27;86;27;23;116;175;62 -143;'504;Morocco;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;508;2006;882;3733;2813;2472;2057.42;2730;6720 -143;'504;Morocco;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;242;680;271;1190;741;771;857;1166;2365 -143;'504;Morocco;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;10;0 -143;'504;Morocco;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;25;0 -143;'504;Morocco;1874;Fibreboard;5616;Import quantity;m3;1800;1500;2200;2200;1100;1100;1895;7792;9372;16637;13689;17901;17901;25693;16006;16111;28400;25000;24500;21100;16500;14500;10000;8600;8600;8600;100;100;500;500;500;54477;22569;24025;41100;47400;68900;26000;22000;25000;29000;36140;59590;29931;29931;70335;41543;79484;83401;53297;33960;51979;50213;59530;57900;92051;106230;91989;184312;125879;233506.56;189950;249840 -143;'504;Morocco;1874;Fibreboard;5622;Import value;1000 USD;180;130;203;203;120;120;157;577;687;1468;1172;1530;1530;3471;2334;1914;3800;3362;4147;4776;3203;2849;1294;1379;1379;1379;38;30;478;395;395;9082;5332;6029;7146;8283;8895;7193;5557;5441;9124;8707;10404;9747;9747;17081;20835;23409;25752;20325;18017;27491;15632;33853;29033;35032;41282;46813;54313;62754;109563.57;130774;155505 -143;'504;Morocco;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;1008;205;199;199;0;0;0;0;0;0;6;124;124;98;161;191;191;191;191;119;150;959;68;51;30;29;762;2539;460.81;140;10 -143;'504;Morocco;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;527;70;68;68;0;0;0;0;0;0;28;34;34;32;109;143;143;143;143;90;127;359;90;96;20;21;114;26;222;110;33 -143;'504;Morocco;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18300;19200;20000;18000;17000;19000;21000;22000;31298;16726;16726;39333;29233;29484;40941;27044;11540;31745;6646;29155;15376;17353;23814;15634;47831;17871;20197.15;18730;19740 -143;'504;Morocco;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5297;5724;5610;5428;4297;4008;7426;6082;8240;7762;7762;13493;14755;15215;19126;11867;6769;16003;4071;15886;7360;7489;10440;10305;9333;12216;19164.86;14668;13772 -143;'504;Morocco;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;114;114;114;114;114;42;42;23;23;5;5;5;210;307;307;70;0 -143;'504;Morocco;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;12;90;90;90;90;90;37;37;17;17;6;6;6;0;2;2;36;0 -143;'504;Morocco;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2400;800;900;1000;1000;2000;3000;2140;3990;7003;7003;8863;6759;10000;15060;12000;15771;10566;12008;16987;40176;69883;80679;75377;135765;107393;211421.16;169820;228370 -143;'504;Morocco;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;428;146;156;225;413;473;611;209;650;1198;1198;1651;3673;2886;3685;4352;8983;5425;6000;9275;20194;26023;30293;36176;44302;49902;88796.82;115085;140644 -143;'504;Morocco;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;42;42;42;42;72;72;72;72;72;72;624;11;24;3;19;461;1926;10.98;50;10 -143;'504;Morocco;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;10;10;10;10;44;44;44;44;44;44;272;20;78;2;11;111;21;31;54;33 -143;'504;Morocco;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43343;4086;3705;20400;27400;48000;7000;4000;4000;5000;12000;24302;6202;6202;22139;5551;40000;27400;14253;6649;9668;31559;13388;2348;4815;1737;978;716;615;1888.25;1400;1730 -143;'504;Morocco;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5664;743;787;1421;2413;3129;1540;847;960;1087;2416;1514;787;787;1937;2407;5308;2941;4106;2265;6063;5561;8692;1479;1520;549;332;678;636;1601.88;1021;1089 -143;'504;Morocco;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;199;199;199;0;0;0;0;0;0;1;79;79;53;5;5;5;5;5;5;36;312;34;22;22;5;91;306;142.83;20;0 -143;'504;Morocco;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;68;68;68;0;0;0;0;0;0;13;12;12;10;9;9;9;9;9;9;46;70;53;12;12;4;3;3;189;20;0 -143;'504;Morocco;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;1800;1500;2200;2200;1100;1100;1895;7792;9372;16637;13689;17901;17901;25693;16006;16111;28400;25000;24500;21100;16500;14500;10000;8600;8600;8600;100;100;500;500;500;11134;18483;20320;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -143;'504;Morocco;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;180;130;203;203;120;120;157;577;687;1468;1172;1530;1530;3471;2334;1914;3800;3362;4147;4776;3203;2849;1294;1379;1379;1379;38;30;478;395;395;3418;4589;5242;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -143;'504;Morocco;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;1005;6;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -143;'504;Morocco;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;526;2;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -143;'504;Morocco;1879;Total fibre furnish;5510;Production;t;20000;22100;28500;28700;33900;30500;29500;38800;43000;50000;51000;42000;53700;55000;64500;54000;67000;76000;92000;93000;121000;134000;139000;141000;134000;136000;138000;167000;163000;161000;151000;163000;127000;138000;134000;134000;145000;148000;142000;165000;129000;129000;129000;129000;129000;129000;186000;186000;181000;191000;191000;296000;296000;145000;145000;145000;145000;145000;145000;145000;145000;145000;145000 -143;'504;Morocco;1879;Total fibre furnish;5610;Import quantity;t;3800;4000;4000;3500;2400;14400;8500;14300;18900;35400;25300;30200;36200;44622;25619;38604;39904;32064;36680;39571;42418;43018;47500;42100;43000;43000;40000;69800;79200;78000;55000;38656;43458;39700;55900;50600;43000;55000;41000;53600;45600;61091;67866;80315;80315;57718;35673;40353;44624;27803;32066;35772;45915;55401;64282;58726;59362;59190;70662;43996;51766.97;60180;60380 -143;'504;Morocco;1879;Total fibre furnish;5622;Import value;1000 USD;305;324;349;288;230;1949;1088;1734;2512;3319;2418;3119;4016;14981;8503;11043;11221;8711;11828;15875;14979;13626;12827;12083;11901;11901;12441;37077;41658;47814;30392;18679;15858;15649;34251;19249;12018;15393;12321;19998;17713;20814;23641;15327;15327;21695;23440;25895;25467;23622;21397;28245;35900;44627;48137;40117;44190;46494;48302;28336;45835.82;71218;52836 -143;'504;Morocco;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;34900;39500;41000;43600;31200;31200;47100;30900;41900;33400;49400;63400;69000;59200;55700;63000;66600;60600;60600;80800;98600;85200;82200;68500;80923;74279;109200;72700;68300;102000;73000;124000;114000;63000;115042;214106;102280;102280;123209;121283;93741;111021;129910;101464;117408;31713;27890;40901;48415;54199;15492;16617;21188;40993.31;61150;51890 -143;'504;Morocco;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;3750;4700;6000;6678;4300;4300;14640;11930;14664;10039;12374;22673;30963;22112;17041;17533;22807;14486;14486;39914;61645;58902;49961;33118;41384;37547;53811;64176;32712;42552;27125;48828;68838;20972;48703;87605;40984;40984;57932;70237;55925;52101;103944;67502;67973;13599;4789;6332;7254;8451;2403;1961;2621;8254.49;11689;6618 -143;'504;Morocco;1878;Pulp for paper;5510;Production;t;20000;22100;28500;28700;33900;30500;29500;38800;43000;45000;46000;37000;48700;50000;58500;48000;61000;71000;87000;88000;80000;85000;91000;88000;86000;86000;86000;113000;113000;105000;96000;108000;97000;108000;104000;104000;115000;118000;112000;130000;94000;94000;94000;94000;94000;94000;151000;151000;146000;156000;156000;156000;156000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000 -143;'504;Morocco;1878;Pulp for paper;5610;Import quantity;t;3800;4000;4000;3500;2400;14400;8500;14300;18900;13400;10300;13200;13200;27400;15700;22800;27900;22200;21000;21300;24900;25500;27600;23000;23800;23800;16800;44200;55200;52400;29400;22483;26678;21600;28600;24200;16900;21000;19000;20600;31600;26091;29408;20874;20874;23375;24419;22353;38474;24816;31233;33005;43148;52497;63478;57495;53189;57443;70606;42869;51344.97;58740;58320 -143;'504;Morocco;1878;Pulp for paper;5622;Import value;1000 USD;305;324;349;288;230;1949;1088;1734;2512;1827;1639;2126;2126;9315;7099;8805;9521;7236;8944;11507;11903;10550;10047;9223;9106;9106;8491;27089;37626;37826;20404;14471;12435;11552;24314;13380;8253;10136;8897;13393;14784;13217;15190;8729;8729;13317;18912;18964;23320;22054;20933;26765;34420;43174;47779;39553;42319;46033;48291;27973;45683.82;70654;52240 -143;'504;Morocco;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;34900;39500;41000;43600;31200;31200;47100;30900;41900;33400;49400;63400;69000;59200;55700;63000;66600;60600;60600;80800;98600;85200;82200;68500;80923;74200;109200;72700;68300;102000;73000;124000;114000;63000;115000;214098;102272;102272;123194;121268;87741;109001;125584;96344;109459;19238;332;780;66;64;68;119;546;616;480;190 -143;'504;Morocco;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;3750;4700;6000;6678;4300;4300;14640;11930;14664;10039;12374;22673;30963;22112;17041;17533;22807;14486;14486;39914;61645;58902;49961;33118;41384;37536;53811;64176;32712;42552;27125;48828;68838;20972;48700;87603;40982;40982;57931;70236;54976;51752;102794;65995;66666;11746;343;488;50;49;58;120;348;546.35;701;283 -143;'504;Morocco;1875;Wood pulp;5510;Production;t;20000;22100;28500;28700;33900;30500;29500;38800;43000;45000;46000;37000;48700;50000;53000;42000;55000;66000;82000;83000;75000;80000;86000;83000;81000;81000;81000;108000;108000;100000;91000;103000;162000;173000;169000;169000;180000;183000;177000;195000;159000;159000;159000;159000;159000;159000;216000;216000;211000;221000;221000;221000;221000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000 -143;'504;Morocco;1875;Wood pulp;5610;Import quantity;t;3800;4000;4000;3500;2400;14400;8500;14300;18900;13400;10300;13200;13200;27400;15700;22800;27900;22200;21000;21300;24900;25500;27600;23000;23800;23800;16800;44200;55200;52400;29400;19848;28788;21600;28600;24200;16900;21000;19000;20600;31600;26090;29407;20870;20870;23365;23586;22399;38590;24848;31267;33000;43143;52394;63147;57146;52632;57420;70251;42483;51113.97;58370;58110 -143;'504;Morocco;1875;Wood pulp;5622;Import value;1000 USD;305;324;349;288;230;1949;1088;1734;2512;1827;1639;2126;2126;9315;7099;8805;9521;7236;8944;11507;11903;10550;10047;9223;9106;9106;8491;27089;37626;37826;20404;12794;13279;11552;24314;13380;8253;10136;8897;13393;14784;12838;14811;8726;8726;13276;18865;19005;23406;22083;20963;26752;34407;43044;47499;39230;41924;46006;48047;27704;45449.82;70336;51999 -143;'504;Morocco;1875;Wood pulp;5910;Export quantity;t;;;;;;;;34900;39500;41000;43600;31200;31200;47100;30900;41900;33400;49400;63400;69000;59200;55700;63000;66600;60600;60600;80800;98600;85200;82200;68500;80923;126200;112300;74100;68300;102000;73000;124000;114000;63000;115000;215796;103970;103970;123301;121375;87848;109108;125691;98229;111406;21185;2279;780;66;64;127;178;605;675;480;190 -143;'504;Morocco;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;3750;4700;6000;6678;4300;4300;14640;11930;14664;10039;12374;22673;30963;22112;17041;17533;22807;14486;14486;39914;61645;58902;49961;33118;41384;55001;54786;65289;32712;42552;27125;48828;68838;20972;48700;88290;41669;41669;57989;70294;55034;51810;102852;67879;68376;13456;2053;488;50;49;125;187;415;613.35;701;283 -143;'504;Morocco;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2315;1;0;7;0;0 -143;'504;Morocco;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1913;1449;14;1;12;26;52 -143;'504;Morocco;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -143;'504;Morocco;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -143;'504;Morocco;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;3800;4000;4000;3500;2400;2600;2100;3600;4400;6300;4500;5100;5100;6500;4200;6300;8300;5200;3400;4300;6700;7100;7700;6200;6200;6200;8500;27100;27600;26200;8800;5619;3700;3800;2300;1100;2000;2000;1000;1000;4000;500;609;1332;1332;397;39;44;210;136;37;48;48;23;186;53;;;;;;; -143;'504;Morocco;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;305;324;349;288;230;225;197;349;438;685;576;526;526;1592;1431;1908;2288;1469;1080;1709;2690;2485;2310;1815;1790;1790;3654;15185;18817;18913;4437;3192;1596;1619;1520;659;602;579;484;272;1535;200;337;442;442;191;66;50;143;116;69;84;84;14;136;47;;;;;;; -143;'504;Morocco;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1767;2729;2729;0;0;0;;;;;;; -143;'504;Morocco;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1088;1724;1724;0;0;0;;;;;;; -143;'504;Morocco;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;150;1100;1400;2200;1000;1000;1000;1000;1000;590;780;122;122;56;56;56;390;608;752;2108;2108;3902;2348;1803;;;;;;; -143;'504;Morocco;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;62;517;952;1192;378;220;226;226;250;239;347;48;48;33;33;33;180;354;307;1308;1308;2923;1435;1038;;;;;;; -143;'504;Morocco;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1271;978;978;741;741;741;741;741;5625;5996;5996;0;0;0;;;;;;; -143;'504;Morocco;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;619;363;363;389;389;389;389;389;3721;3684;3684;0;0;0;;;;;;; -143;'504;Morocco;1656;Chemical wood pulp;5510;Production;t;20000;22100;28500;28700;33900;30500;29500;38800;43000;45000;46000;37000;48700;50000;53000;42000;55000;66000;82000;83000;75000;80000;86000;83000;81000;81000;81000;108000;108000;100000;91000;103000;92000;103000;99000;99000;110000;113000;107000;125000;89000;89000;89000;89000;89000;89000;146000;146000;141000;151000;151000;151000;151000;0;0;0;0;0;0;0;0;0;0 -143;'504;Morocco;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;10700;14500;7100;5800;8100;8100;20900;11500;16500;19600;17000;17600;17000;18200;18400;19900;16800;17600;17600;8300;17100;27600;26200;20600;14188;22329;16700;24900;20900;13900;18000;17000;18600;26600;25000;28018;19416;19416;22912;23348;22250;37870;24068;30442;30843;40986;48468;60612;55289;52631;55104;70249;42483;51080.97;58370;58110 -143;'504;Morocco;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;1385;2074;1142;1063;1600;1600;7723;5668;6897;7233;5767;7864;9798;9213;8065;7737;7408;7316;7316;4837;11904;18809;18913;15967;9572;10533;9416;21842;11529;7273;9337;8187;12895;12999;12399;14127;8236;8236;13052;18652;18868;22986;21573;20547;25357;33012;40104;45925;38142;40009;44555;48031;27703;45423.82;70310;51947 -143;'504;Morocco;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;34900;39500;41000;43600;31200;31200;47100;30900;41900;33400;49400;63400;69000;59200;55700;63000;66600;60600;60600;80800;98600;85200;82200;68500;80923;74200;109200;72700;68300;102000;73000;124000;114000;63000;115000;212827;101294;101294;122453;120527;87000;108260;124843;88952;100734;10513;332;780;66;64;68;119;546;616;480;190 -143;'504;Morocco;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;3750;4700;6000;6678;4300;4300;14640;11930;14664;10039;12374;22673;30963;22112;17041;17533;22807;14486;14486;39914;61645;58902;49961;33118;41384;37536;53811;64176;32712;42552;27125;48828;68838;20972;48700;86984;40619;40619;57542;69847;54587;51363;102405;61186;61258;6338;343;488;50;49;58;120;348;546.35;701;283 -143;'504;Morocco;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;6400;2600;5000;6300;5100;3500;3400;4300;5100;4300;3000;3600;3600;2500;3100;11700;5000;5000;1778;2130;2200;3200;2500;800;1000;2000;600;600;1000;550;246;246;246;150;50;20;52;539;340;340;190;385;489;109;507;210;119;1018.24;290;140 -143;'504;Morocco;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;2104;1265;2023;1991;1546;1356;1844;1844;1844;1447;1050;1494;1494;1312;1792;6010;3013;3500;1191;939;1232;2485;1500;337;253;898;254;192;560;243;87;87;87;103;38;24;74;304;239;239;159;288;299;73;395;165;75;826.51;282;122 -143;'504;Morocco;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;62;62;62;62;62;62;62;0;0;0;0;0;0 -143;'504;Morocco;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;48;48;48;48;48;48;48;3;3;3;3;0;0 -143;'504;Morocco;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;28700;33900;30500;29500;38800;43000;45000;46000;37000;48700;50000;53000;42000;55000;66000;82000;83000;75000;80000;86000;83000;81000;81000;81000;108000;108000;100000;91000;103000;92000;103000;99000;99000;110000;113000;107000;125000;89000;89000;89000;89000;89000;89000;146000;146000;141000;151000;151000;151000;151000;0;0;0;0;0;0;0;0;0;0 -143;'504;Morocco;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;3300;4100;4500;6800;5600;7400;7000;8100;7400;10900;9500;9500;9500;1400;9800;10900;15000;10600;9406;17772;11000;16100;10800;6600;11000;7000;9000;17000;19000;23502;18027;18027;22249;22870;22000;37500;23943;29773;30395;40538;48186;60089;54483;52388;54393;69835;42163;49748.73;58080;57970 -143;'504;Morocco;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;1502;2133;1900;2800;2057;3497;4192;4415;3573;4502;4602;3978;3978;884;7340;9156;12000;10067;6152;8259;6253;14241;5438;3375;5625;3464;7184;7865;9271;11718;7608;7608;12653;18209;18581;22651;21498;20034;25002;32657;39675;45337;37418;39679;43873;47388;27171;43929.23;70028;51825 -143;'504;Morocco;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;47100;30900;41900;33400;49400;63400;69000;59200;55700;63000;66600;60600;60600;80800;98600;85200;82200;68500;80923;74200;109200;72700;68300;102000;73000;124000;114000;63000;115000;212681;101272;101272;121833;119907;87000;108260;124843;88890;100669;10448;270;718;4;2;68;119;546;616;480;190 -143;'504;Morocco;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;14640;11930;14664;10039;12374;22673;30963;22112;17041;17533;22807;14486;14486;39914;61645;58902;49961;33118;41384;37536;53811;64176;32712;42552;27125;48828;68838;20972;48700;86903;40610;40610;56413;68718;54587;51363;102405;61138;61198;6278;295;440;2;1;55;117;345;543.35;701;283 -143;'504;Morocco;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;134;204;204;201;314;0;0 -143;'504;Morocco;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;257;287;478;457;668.08;0;0 -143;'504;Morocco;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -143;'504;Morocco;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -143;'504;Morocco;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;10700;14500;5200;3200;4400;4400;5700;2700;4900;4600;4700;4800;5200;4000;4100;3700;3700;3200;3200;3900;3200;4000;5200;4000;1487;702;400;400;200;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -143;'504;Morocco;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;1385;2074;764;554;840;840;1861;1240;2034;1700;1540;2151;2846;1955;1819;1309;1495;1314;1314;2278;2016;2828;3100;2000;1271;345;276;419;101;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -143;'504;Morocco;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;1900;2600;3700;3700;5500;2100;2100;1900;1600;1900;1400;1800;1800;1000;600;1300;1300;500;1000;1000;1000;1000;1517;1725;3100;5200;7400;6500;6000;8000;9000;9000;5000;3966;1143;1143;417;328;200;350;73;130;108;108;92;138;317;;;;;;; -143;'504;Morocco;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;378;509;760;760;2256;1030;940;742;624;860;916;999;829;479;261;530;530;363;756;815;800;400;958;990;1655;4697;4490;3561;3459;3825;5457;4942;2568;2166;541;541;312;340;249;311;1;209;116;116;270;300;425;;;;;;; -143;'504;Morocco;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;146;22;22;620;620;0;0;0;0;3;3;0;0;0;;;;;;; -143;'504;Morocco;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;9;9;1129;1129;0;0;0;0;12;12;0;0;0;;;;;;; -143;'504;Morocco;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;70000;70000 -143;'504;Morocco;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;2609;0;0;0;0;0;0;0;0;0;0;0;0;0;143;49;120;36;36;1;1;1;1;1;1;1;1;0;26;0;0 -143;'504;Morocco;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;1088;0;0;0;0;0;0;0;0;0;0;0;0;0;114;54;97;40;40;3;3;3;3;3;2;2;2;0;14;0;0 -143;'504;Morocco;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52000;3100;1400;0;0;0;0;0;0;0;1698;1698;1698;107;107;107;107;107;1885;1947;1947;1947;0;0;0;59;59;59;59;0;0 -143;'504;Morocco;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17465;975;1113;0;0;0;0;0;0;0;687;687;687;58;58;58;58;58;1884;1710;1710;1710;0;0;0;67;67;67;67;0;0 -143;'504;Morocco;1668;Pulp from fibres other than wood;5510;Production;t;;;;;;;;;;;;;0;;5500;6000;6000;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;5000;5000;5000;5000;5000;5000;5000 -143;'504;Morocco;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2651;499;0;0;0;0;0;0;0;0;1;1;4;4;10;976;3;4;4;2;6;6;104;332;350;558;24;356;386;257;370;210 -143;'504;Morocco;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1694;244;0;0;0;0;0;0;0;0;379;379;3;3;41;161;13;11;11;10;16;16;133;283;326;397;29;246;269;248;318;241 -143;'504;Morocco;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -143;'504;Morocco;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -143;'504;Morocco;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;32;28;186;55;64;2;6;4;8;0;20 -143;'504;Morocco;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;36;26;166;44;42;1;7;6;15;4;18 -143;'504;Morocco;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;200;200;200;200;200;200;200;0;0;3;3;3;3;0;0 -143;'504;Morocco;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126;126;126;126;126;126;126;126;126;0;0;2;2;2;2;0;0 -143;'504;Morocco;1669;Recovered paper;5510;Production;t;;;;;;;;;;5000;5000;5000;5000;5000;6000;6000;6000;5000;5000;5000;41000;49000;48000;53000;48000;50000;52000;54000;50000;56000;55000;55000;30000;30000;30000;30000;30000;30000;30000;35000;35000;35000;35000;35000;35000;35000;35000;35000;35000;35000;35000;140000;140000;140000;140000;140000;140000;140000;140000;140000;140000;140000;140000 -143;'504;Morocco;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;22000;15000;17000;23000;17222;9919;15804;12004;9864;15680;18271;17518;17518;19900;19100;19200;19200;23200;25600;24000;25600;25600;16173;16780;18100;27300;26400;26100;34000;22000;33000;14000;35000;38458;59441;59441;34343;11254;18000;6150;2987;833;2767;2767;2904;804;1231;6173;1747;56;1127;422;1440;2060 -143;'504;Morocco;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;1492;779;993;1890;5666;1404;2238;1700;1475;2884;4368;3076;3076;2780;2860;2795;2795;3950;9988;4032;9988;9988;4208;3423;4097;9937;5869;3765;5257;3424;6605;2929;7597;8451;6598;6598;8378;4528;6931;2147;1568;464;1480;1480;1453;358;564;1871;461;11;363;152;564;596 -143;'504;Morocco;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;0;0;0;0;0;0;0;0;42;8;8;8;15;15;6000;2020;4326;5120;7949;12475;27558;40121;48349;54135;15424;16498;20642;40377.31;60670;51700 -143;'504;Morocco;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;0;0;0;0;0;0;0;0;3;2;2;2;1;1;949;349;1150;1507;1307;1853;4446;5844;7204;8402;2345;1841;2273;7708.14;10988;6335 -143;'504;Morocco;1876;Paper and paperboard;5510;Production;t;39100;42300;43100;39500;40500;42700;52800;54000;60000;59000;56000;54000;39100;47000;53500;46000;78000;77000;82000;96300;96400;96600;95800;101000;107000;109000;105000;103000;102000;119000;118000;103000;100000;103000;106000;106000;107000;110000;109000;109000;127000;127000;127000;127000;127000;127000;127000;127000;127000;127000;127000;127000;156000;156000;156000;156000;156000;156000;156000;156000;156000;156000;156000 -143;'504;Morocco;1876;Paper and paperboard;5610;Import quantity;t;24400;24100;31300;26800;23900;11300;25500;24500;25800;30800;32700;34200;46400;59500;38400;54300;66000;53300;74400;74400;64500;77700;77000;75500;68000;70400;75200;74000;93300;113700;163500;114610;151561;161400;165400;137700;161300;165000;171000;221000;189500;207900;237154;289491;289491;254994;269373;289000;305740;309806;287905;298886;291871;410615;386557;434449;511485;562343;533039;577468;583685.54;971420;761320 -143;'504;Morocco;1876;Paper and paperboard;5622;Import value;1000 USD;4977;5303;6727;5738;4824;2000;7332;5942;6518;7584;7925;6957;13177;26704;27615;29140;38151;29365;46210;53042;46686;56723;54573;38913;36732;38363;42429;43492;62614;66099;107963;80907;104154;124378;170606;128248;125169;120188;121422;148973;123804;144778;171229;201995;201995;206038;265499;263549;234007;281319;298259;284974;310027;451353;350924;433738;487822;545632;503162;546043;580731.99;1071057;774828 -143;'504;Morocco;1876;Paper and paperboard;5910;Export quantity;t;15200;14400;14200;10700;3800;3800;1200;1600;2400;4600;3300;2600;2600;9200;4000;100;50;50;50;50;200;600;600;600;600;600;600;600;600;600;600;10064;1664;5100;2400;4300;4600;9000;10200;24000;17000;24034;21566;17050;17050;11352;5175;7030;6524;4066;5441;5269;11327;19373;25362;26268;29612;13503;14736;25186;13015.48;20180;19670 -143;'504;Morocco;1876;Paper and paperboard;5922;Export value;1000 USD;2753;2684;2635;2260;1728;1728;126;380;570;1215;943;850;850;3008;3550;72;8;44;44;44;247;502;502;502;502;502;502;502;502;502;502;7709;1411;7034;3148;1776;2181;6550;6229;11589;8594;10673;13719;12144;12144;8153;6006;6517;6937;3814;6168;4543;12172;20216;24918;24069;27833;16403;14851;23834;12873.55;22813;20795 -143;'504;Morocco;2042;Graphic papers;5510;Production;t;1500;1600;2000;2800;4000;4100;6800;8000;10000;10000;10000;10000;9100;11000;16500;2000;12000;13000;17000;25000;24000;24000;23000;24000;24000;25000;25000;25000;25000;29000;29000;29000;25000;29000;30000;30000;23000;25000;25000;25000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000 -143;'504;Morocco;2042;Graphic papers;5610;Import quantity;t;3500;4300;4600;10600;3300;3400;4800;3500;4400;5100;5200;4300;4600;3900;4100;6700;8300;6700;7900;8600;6800;7000;7000;8900;8800;11200;13100;15500;15800;37900;43700;20824;45039;40200;35800;31300;39000;42000;60000;91000;55000;71000;74177;88311;88311;83382;91528;93000;96250;102760;105072;108717;126175;143051;127864;154847;152035;153787;143453;135455;144003.43;166050;138340 -143;'504;Morocco;2042;Graphic papers;5622;Import value;1000 USD;609;732;776;2450;599;826;773;652;841;981;1042;812;989;1445;2385;3422;4476;4224;5250;6113;4686;4723;3573;4314;6519;8150;8829;11670;11046;15903;16936;14130;31641;28467;36554;28975;29076;32537;43518;64690;39336;47156;49771;62543;62543;66194;86947;92734;90734;99908;113921;107780;126915;144257;111339;137568;138361;145355;139252;130175;145617.87;217332;166498 -143;'504;Morocco;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;227;800;400;200;200;1800;2200;5000;8000;9000;13472;7373;7373;4081;1974;1598;923;631;1898;1741;805;655;644;586;183;234;341;140;308;210;230 -143;'504;Morocco;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;176;1077;421;260;311;2006;2441;2561;3136;4590;6862;5638;5638;2203;2343;1439;1596;557;1416;1510;924;881;349;431;231;322;487;364;526;771;1126 -143;'504;Morocco;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 -143;'504;Morocco;1671;Newsprint;5610;Import quantity;t;3000;3700;3900;1900;2000;2100;2800;2300;2600;3100;3300;3500;3800;2700;2800;4900;5200;5600;4700;5400;3600;3800;4800;6500;4800;7200;9100;11500;11800;12100;14000;15828;23387;18800;17000;16800;19000;23000;23000;26000;22000;28000;21262;25578;25578;29844;33974;36000;28390;29570;24247;30520;28589;32007;25464;25690;24783;22060;15316;11974;10365.07;10800;11780 -143;'504;Morocco;1671;Newsprint;5622;Import value;1000 USD;484;582;601;286;314;320;434;353;410;477;540;590;767;738;1309;2122;2376;3303;2323;3186;1759;1796;1870;2383;3269;4900;5579;8420;7796;7917;9200;9218;11236;9610;13825;13575;10856;14132;12707;14047;12170;14422;11164;13045;13045;18367;22652;27048;20909;19734;17138;24461;22712;24666;16252;16228;15881;13400;10672;7731;7028.97;9973;8649 -143;'504;Morocco;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;0;0;0;0;0;0;0;0;1000;159;28;28;28;28;28;28;28;808;126;12;82;296;280;0;0;4;51;120;0;90 -143;'504;Morocco;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;0;0;0;0;0;0;0;573;124;13;13;13;13;13;13;13;484;106;4;72;103;82;1;0;20;68;106;0;85 -143;'504;Morocco;1674;Printing and writing papers;5510;Production;t;1500;1600;2000;2800;4000;4100;6800;8000;10000;10000;10000;10000;9100;11000;16500;2000;12000;13000;17000;25000;24000;24000;23000;24000;24000;25000;25000;25000;25000;29000;29000;29000;25000;29000;30000;30000;23000;25000;25000;25000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000 -143;'504;Morocco;1674;Printing and writing papers;5610;Import quantity;t;500;600;700;8700;1300;1300;2000;1200;1800;2000;1900;800;800;1200;1300;1800;3100;1100;3200;3200;3200;3200;2200;2400;4000;4000;4000;4000;4000;25800;29700;4996;21652;21400;18800;14500;20000;19000;37000;65000;33000;43000;52915;62733;62733;53538;57554;57000;67860;73190;80825;78197;97586;111044;102400;129157;127252;131727;128137;123481;133638.36;155250;126560 -143;'504;Morocco;1674;Printing and writing papers;5622;Import value;1000 USD;125;150;175;2164;285;506;339;299;431;504;502;222;222;707;1076;1300;2100;921;2927;2927;2927;2927;1703;1931;3250;3250;3250;3250;3250;7986;7736;4912;20405;18857;22729;15400;18220;18405;30811;50643;27166;32734;38607;49498;49498;47827;64295;65686;69825;80174;96783;83319;104203;119591;95087;121340;122480;131955;128580;122444;138588.9;207359;157849 -143;'504;Morocco;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;208;800;400;200;200;1800;2200;5000;8000;8000;13313;7345;7345;4053;1946;1570;895;603;1090;1615;793;573;348;306;183;234;337;89;188;210;140 -143;'504;Morocco;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;172;1077;421;260;311;2006;2441;2561;3136;4017;6738;5625;5625;2190;2330;1426;1583;544;932;1404;920;809;246;349;230;322;467;296;420;771;1041 -143;'504;Morocco;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24000;24000;24000;33000;33000;33000;33000;33000;33000;33000;33000;33000;33000;33000;33000;33000;33000;33000;33000;33000;33000;33000;33000;33000;33000;33000 -143;'504;Morocco;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;4000;4000;3000;5000;7002;7893;7893;5075;11166;3000;3210;2277;5602;5357;2438;6973;3966;5245;6001;6963;6173;4484;4594.92;7690;6270 -143;'504;Morocco;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1091;2969;3643;2067;3766;4981;6227;6227;4073;13829;3418;2982;2862;5621;4873;2612;6612;3470;4996;5591;6150;5488;4021;4387.04;9730;7308 -143;'504;Morocco;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;200;0;0;0;0;0;0;14;256;25;25;25;27;65;2;311;140;33;9;1;0;6;2;10;20 -143;'504;Morocco;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1200;225;0;0;0;0;0;0;3;318;34;34;34;15;37;20;508;45;20;23;1;1;21;1;18;39 -143;'504;Morocco;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;18000;28000;13000;19000;27866;26533;26533;27895;20471;27000;33160;33267;40310;40090;63845;65726;58175;80538;74375;80568;77575;80373;89892.45;97490;83600 -143;'504;Morocco;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1091;13921;8988;8345;11185;16526;20937;20937;22878;20765;30087;35415;36972;49506;41565;69264;72048;54581;77294;74401;81838;80702;81812;94645.87;134061;106475 -143;'504;Morocco;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;1000;1000;2000;1000;3365;1677;1677;233;556;545;550;416;959;22;421;73;154;255;146;203;324;61;179;150;0 -143;'504;Morocco;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;403;1108;440;863;410;1985;1284;1284;256;840;595;1101;365;848;28;534;134;165;307;138;287;385;85;350;183;10 -143;'504;Morocco;1616;Printing and writing papers, coated;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;1000;1000 -143;'504;Morocco;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15000;15000;33000;17000;19000;18047;28307;28307;20568;25917;27000;31490;37646;34913;32750;31303;38345;40259;43374;46876;44196;44389;38624;39151;50070;36690 -143;'504;Morocco;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16223;13921;38012;16754;17783;17100;22334;22334;20876;29701;32181;31428;40340;41656;36881;32327;40931;37036;39050;42488;43967;42390;36611;39556;63568;44066 -143;'504;Morocco;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;1000;4000;6000;7000;9948;5668;5668;3806;1134;1000;320;162;104;1528;370;189;54;18;28;30;13;22;7;50;120 -143;'504;Morocco;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;403;1108;2121;2273;3607;4753;4341;4341;1931;1172;797;448;145;69;1339;366;167;36;22;69;34;81;190;69;570;992 -143;'504;Morocco;1675;Other paper and paperboard;5510;Production;t;37600;40700;41100;36700;36500;38600;46000;46000;50000;49000;46000;44000;30000;36000;37000;44000;66000;64000;65000;71300;72400;72600;72800;77000;83000;84000;80000;78000;77000;90000;89000;74000;75000;74000;76000;76000;84000;85000;84000;84000;93000;93000;93000;93000;93000;93000;93000;93000;93000;93000;93000;93000;122000;122000;122000;122000;122000;122000;122000;122000;122000;122000;122000 -143;'504;Morocco;1675;Other paper and paperboard;5610;Import quantity;t;20900;19800;26700;16200;20600;7900;20700;21000;21400;25700;27500;29900;41800;55600;34300;47600;57700;46600;66500;65800;57700;70700;70000;66600;59200;59200;62100;58500;77500;75800;119800;93786;106522;121200;129600;106400;122300;123000;111000;130000;134500;136900;162977;201180;201180;171612;177845;196000;209490;207046;182833;190169;165696;267564;258693;279602;359450;408556;389586;442013;439682.11;805370;622980 -143;'504;Morocco;1675;Other paper and paperboard;5622;Import value;1000 USD;4368;4571;5951;3288;4225;1174;6559;5290;5677;6603;6883;6145;12188;25259;25230;25718;33675;25141;40960;46929;42000;52000;51000;34599;30213;30213;33600;31822;51568;50196;91027;66777;72513;95911;134052;99273;96093;87651;77904;84283;84468;97622;121458;139452;139452;139844;178552;170815;143273;181411;184338;177194;183112;307096;239585;296170;349461;400277;363910;415868;435114.12;853725;608330 -143;'504;Morocco;1675;Other paper and paperboard;5910;Export quantity;t;15200;14400;14200;10700;3800;3800;1200;1600;2400;4600;3300;2600;2600;9200;4000;100;50;50;50;50;200;600;600;600;600;600;600;600;600;600;600;10016;1437;4300;2000;4100;4400;7200;8000;19000;9000;15034;8094;9677;9677;7271;3201;5432;5601;3435;3543;3528;10522;18718;24718;25682;29429;13269;14395;25046;12707.48;19970;19440 -143;'504;Morocco;1675;Other paper and paperboard;5922;Export value;1000 USD;2753;2684;2635;2260;1728;1728;126;380;570;1215;943;850;850;3008;3550;72;8;44;44;44;247;502;502;502;502;502;502;502;502;502;502;7659;1235;5957;2727;1516;1870;4544;3788;9028;5458;6083;6857;6506;6506;5950;3663;5078;5341;3257;4752;3033;11248;19335;24569;23638;27602;16081;14364;23470;12347.55;22042;19669 -143;'504;Morocco;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;1300;1400;1600;1800;2000;3000;3000;3000;3000;2000;2000;2000;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 -143;'504;Morocco;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1400;900;0;1000;1000;1000;1000;600;758;902;902;1977;3811;3000;4610;3484;1671;5207;4224;3951;4007;5176;8001;6417;7503;7836;9429.62;10670;22480 -143;'504;Morocco;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1930;3237;1177;0;907;801;971;713;481;731;991;991;2343;5460;4956;6237;4744;2638;7601;6248;6460;6870;11511;12805;8868;10116;10008;13464.47;17300;32966 -143;'504;Morocco;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;24;449;449;138;7;1981;1981;1981;124;217;5206;12858;14712;12116;14871;6680;6030;9630;3189.69;4330;3110 -143;'504;Morocco;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;26;498;498;94;14;1563;1563;1563;123;412;6676;16065;17134;12761;16296;8910;7219;10228;3834;7684;4082 -143;'504;Morocco;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84000;83000;83000;92000;92000;92000;92000;92000;92000;92000;92000;92000;92000;92000;92000;92000;92000;92000;92000;92000;92000;92000;92000;92000;92000;92000 -143;'504;Morocco;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101000;88000;104000;109500;112300;135742;156971;156971;142609;150905;185000;187720;184761;172301;165781;142291;240574;234781;252164;323571;394496;368177;415465;413336.77;766300;580680 -143;'504;Morocco;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57839;47275;57639;58755;66842;85899;97319;97319;98750;133340;153666;124120;157999;162658;146381;153652;255978;214123;256222;306192;378588;333728;380682;395705.56;801350;549854 -143;'504;Morocco;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7200;8000;19000;9000;14000;7712;8352;8352;3072;2793;3291;2970;1411;2938;3305;5310;5737;9910;13356;14540;6586;8355;15416;9515.78;15640;16310 -143;'504;Morocco;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4544;3788;9028;5458;5576;6411;5044;5044;1972;3080;3317;2674;1624;3438;2460;4411;2864;7130;10576;11183;7149;7084;13231;8438.55;14356;15561 -143;'504;Morocco;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;;;;;;;25000;31000;32500;40000;62000;60000;48000;53000;54000;54000;54000;58000;61000;62000;62000;65000;70000;87000;86000;72000;73000;73000;75000;75000;83000;;;;;;;;;;;;;;;;;;;;;;;;;; -143;'504;Morocco;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;;;;;;;;;19300;19900;30800;50300;55000;48200;60000;59000;58600;29000;29000;30400;29000;51900;45600;89000;58786;60000;105400;115900;94600;111300;;;;;;;;;;;;;;;;;;;;;;;;;; -143;'504;Morocco;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;;;5908;10761;15040;22511;31259;28000;36000;35000;25496;11370;11370;11600;11000;25964;14034;39000;27575;28000;63321;102992;73023;69757;;;;;;;;;;;;;;;;;;;;;;;;;; -143;'504;Morocco;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9416;837;4000;1800;4000;4300;;;;;;;;;;;;;;;;;;;;;;;;;; -143;'504;Morocco;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7157;733;5378;2292;1238;1420;;;;;;;;;;;;;;;;;;;;;;;;;; -143;'504;Morocco;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36000;37000;47000;53000;55000;69016;60496;60496;57783;59211;94000;96440;87225;86484;52327;66850;79704;77646;90348;170635;227001;178032;168068;199407.26;436310;339090 -143;'504;Morocco;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14561;14158;21119;21550;24893;32464;37507;37507;33980;42911;63151;51067;51031;56237;36653;41069;69282;58369;69238;117198;158836;119634;115289;150316.94;374343;235388 -143;'504;Morocco;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;3000;8000;6000;12000;6141;1899;1899;752;1435;174;130;2;64;2179;1063;3643;913;1047;1423;228;18;107;43;10;100 -143;'504;Morocco;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2839;1118;4406;3141;4676;2640;1147;1147;315;1883;172;125;2;64;1169;529;1353;385;573;687;136;80;82;36;31;118 -143;'504;Morocco;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14000;11000;14000;14000;11000;13006;26685;26685;34601;36716;17000;32700;32678;21392;44936;41888;81659;85372;68018;65541;67410;81891;100737;103146.09;154290;92960 -143;'504;Morocco;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9825;7017;8198;12587;10491;13297;16544;16544;25658;36914;11369;20580;45018;29777;36320;75861;98260;86807;99078;93803;113486;103203;125998;131562.32;208673;139072 -143;'504;Morocco;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2000;2000;2000;1000;1246;4921;4921;141;40;1117;250;116;972;791;1349;295;1551;150;80;135;16;20;50;150;320 -143;'504;Morocco;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1618;1618;1618;1618;500;3453;2972;2972;257;168;943;197;201;991;948;1319;199;1047;443;359;346;104;177;229;900;1652 -143;'504;Morocco;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84000;83000;83000;92000;92000;92000;92000;92000;92000;92000;92000;92000;92000;92000;92000;92000;92000;92000;92000;92000;92000;92000;92000;92000;92000;92000 -143;'504;Morocco;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49000;39000;42000;42000;46000;48209;63145;63145;49197;54360;70000;56580;61617;63978;68096;33131;78381;70680;88912;82296;93923;100908;135261;98670.4;158730;134500 -143;'504;Morocco;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31896;24970;27160;24418;31338;37409;39148;39148;38101;52669;75004;50673;59452;76229;72911;36225;87574;67944;84571;91550;102384;106039;131760;105012.39;203428;164302 -143;'504;Morocco;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;3000;9000;1000;1000;241;338;338;2178;1315;1000;1590;293;902;105;2668;1569;7216;12027;12994;6203;8312;15277;9351.78;15460;15880 -143;'504;Morocco;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;1052;3004;699;400;247;204;204;1399;1016;1006;1156;225;1187;146;2366;1115;5501;9465;10119;6654;6893;12961;8102.55;13401;13774 -143;'504;Morocco;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;1000;1000;500;300;5511;6645;6645;1028;618;4000;2000;3241;447;422;422;830;1083;4886;5099;6162;7346;11399;12113.02;16970;14130 -143;'504;Morocco;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1557;1130;1162;200;120;2729;4120;4120;1011;846;4142;1800;2498;415;497;497;862;1003;3335;3641;3882;4852;7635;8813.91;14906;11092 -143;'504;Morocco;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;1194;1194;1;3;1000;1000;1000;1000;230;230;230;230;132;43;20;9;12;71;20;10 -143;'504;Morocco;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;721;721;1;13;1196;1196;1196;1196;197;197;197;197;95;18;13;7;11;71;24;17 -143;'504;Morocco;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;5000;5000;4500;4000;4000;4000;17000;17000;17000;17000;17000;17000;19000;19000;15000;10000;5000;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;0;0;0;0 -143;'504;Morocco;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;20900;19800;26700;16200;20600;7900;20700;21000;21400;25700;27500;29900;41800;55600;34300;28300;37800;15800;16200;10800;9500;10700;11000;8000;30200;30200;31700;29500;25600;30200;30800;35000;46522;14800;12300;10900;11000;21000;22000;25000;24000;24000;26477;43307;43307;27026;23129;8000;17160;18801;8861;19181;19181;23039;19905;22262;27878;7643;13906;18712;16915.72;28400;19820 -143;'504;Morocco;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;4368;4571;5951;3288;4225;1174;6559;5290;5677;6603;6883;6145;12188;25259;25230;19810;22914;10101;18449;15670;14000;16000;16000;9103;18843;18843;22000;20822;25604;36162;52027;39202;44513;30660;27823;25073;26336;28905;29828;25673;25000;30299;34828;41142;41142;38751;39752;12193;12916;18668;19042;23212;23212;44658;18592;28437;30464;12821;20066;25178;25944.09;35075;25510 -143;'504;Morocco;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;15200;14400;14200;10700;3800;3800;1200;1600;2400;4600;3300;2600;2600;9200;4000;100;50;50;50;50;200;600;600;600;600;600;600;600;600;600;600;600;600;300;200;100;100;0;0;0;0;1000;358;876;876;4061;401;160;650;43;481;6;6;123;96;210;18;3;10;0;2;0;20 -143;'504;Morocco;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;2753;2684;2635;2260;1728;1728;126;380;570;1215;943;850;850;3008;3550;72;8;44;44;44;247;502;502;502;502;502;502;502;502;502;502;502;502;579;435;278;450;0;0;0;0;473;420;964;964;3884;569;198;1104;70;1191;161;161;406;305;301;123;22;61;11;75;2;26 -143;'504;Morocco;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;184443;199350;197275;186424;243347;250977;276204 -143;'504;Morocco;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33327;44187;40526;36348;50488;64819;72233 -143;'504;Morocco;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2440;2548;3242;3153;4729;5278;5251 -143;'504;Morocco;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;203;1;20;64;3;11 -143;'504;Morocco;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;796;1333;1128;1112;1474;2021;1611 -143;'504;Morocco;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;0;1;1;16;0;6 -143;'504;Morocco;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1644;1215;2114;2041;3255;3257;3640 -143;'504;Morocco;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;203;0;19;48;3;5 -143;'504;Morocco;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3242;6270;7312;8268;8403;8610;9949 -143;'504;Morocco;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;760;1248;605;924;4063;13035;17834 -143;'504;Morocco;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2587;2917;2827;2582;3621;3377;3947 -143;'504;Morocco;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1906;2087;2362;2037;2246;3359;7927 -143;'504;Morocco;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32763;34968;33679;32942;49245;50068;66918 -143;'504;Morocco;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6642;11063;10012;12618;16880;23378;20625 -143;'504;Morocco;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1060;1190 -143;'504;Morocco;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;823;1645 -143;'504;Morocco;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;450;120 -143;'504;Morocco;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1054;403 -143;'504;Morocco;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;0 -143;'504;Morocco;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;0 -143;'504;Morocco;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -143;'504;Morocco;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -143;'504;Morocco;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;240;110 -143;'504;Morocco;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;171;92 -143;'504;Morocco;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;10 -143;'504;Morocco;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;4 -143;'504;Morocco;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;133769;139936;135748;128614;164758;166126;170460 -143;'504;Morocco;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22156;27958;25981;19272;24967;21726;22563 -143;'504;Morocco;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1868;2335;2475;1159;2440;2613;2989 -143;'504;Morocco;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;43;47;172;803;504;20 -143;'504;Morocco;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7774;10376;11992;9706;10151;14905;16690 -143;'504;Morocco;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1731;1585;1518;1305;1465;2814;3253 -143;'504;Morocco;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;199341;230535;246886;234980;265475;305354;287452 -143;'504;Morocco;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66837;74942;79269;81420;97137;113805;126711 -143;'504;Morocco;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1019;1035;979;1159;1488;3160;2175 -143;'504;Morocco;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;145;145;145;145;145;0;0 -143;'504;Morocco;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24188;24462;25010;23929;30261;43099;37977 -143;'504;Morocco;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;221;246;304;202;225;513;251 -143;'504;Morocco;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37885;46305;60070;56926;66770;55399;54872 -143;'504;Morocco;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1454;1661;1767;542;1349;2286;6741 -143;'504;Morocco;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70626;87210;90389;86736;99504;122583;104450 -143;'504;Morocco;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55040;63733;67920;70933;84832;89582;96022 -143;'504;Morocco;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65623;71523;70438;66230;67452;81113;87978 -143;'504;Morocco;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9977;9157;9133;9598;10586;21424;23697 -144;'508;Mozambique;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106964;142415;154156;120613;153200.78;153427;165925 -144;'508;Mozambique;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;320394;418678;339767;183763;240351.01;199454.99;114065.99 -144;'508;Mozambique;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;3260;1085;1222;2020;2698;1721;2403;2310;3304;4845;4632;4400;7550;5367;7723;7563;7498;6510;9580;10420;6550;9400;9400;1150;396;3717;6936;9643;4836;5036;4886;1153;1292;749;764;349;357;326;10077;1956;1625;919;12334;17326;17326;20605;28093;36867;32697;31468;30819;30316;42288;61696;42675;35732;33243;47825;62179;48475;66512.78;66259;64818 -144;'508;Mozambique;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;3539;3614;3988;5405;5692;4752;4795;5460;6056;5951;5342;6502;9439;10506;10209;10209;8644;7988;8791;7061;5932;4295;974;1559;924;1191;1577;2810;706;1318;1126;4854;2306;2328;2823;5542;14642;8580;13831;28117;21466;24977;35812;38002;38526;19981;110556;109329;84231;148082;172919;221173;259019;431728;330745;323462;314113;289381;296110;169083;227064.01;180780.99;96431.99 -144;'508;Mozambique;1861;Roundwood;5516;Production;m3;7431000;7541000;7692000;7813000;7935000;8443000;8578000;8788000;8979000;9138000;9298000;9522000;9767000;9986000;10212000;10445000;11596000;11893000;12112000;12819000;13230000;13830600;14222000;14437000;14635000;14977000;15327000;15327000;15575000;15778000;16061000;16365000;16802000;17295000;17875000;17910000;17992000;18018000;18043000;18043000;18043000;18043000;18043000;18038000;18028000;18028000;18028000;18028000;18051000;18140000;18200000;18251000;18251000;18708000;18708000;18708000;18708000;18708000;18708000;18708000;18708000;18708000;18708000 -144;'508;Mozambique;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;12574;85;115;115;1686;16187;16187;3790;4542;10880;7142;2785;1319;5144;8392;18088;3839;1146;1075;33244;88135;58796;72477;140430;158005 -144;'508;Mozambique;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;370;8;32;32;982;1116;1116;560;787;7219;1547;405;336;1223;2277;1976;388;190;241;6560;10175;6813;6774;6012;5942 -144;'508;Mozambique;1861;Roundwood;5916;Export quantity;m3;2500;1400;900;2300;2700;1500;1800;2500;3200;2100;3900;5000;6600;3000;8200;8200;8100;7200;10200;11400;8200;4800;700;2200;1300;2300;3400;6200;1000;4499;3272;5105;900;1419;1419;7400;52400;41400;36919;74279;65548;64841;71644;89628;99472;133513;226245;168537;125411;241087;247747;330610;353749;715008;1050547;1021958;1015582;702199;509678;244950;759522;525157;295957 -144;'508;Mozambique;1861;Roundwood;5922;Export value;1000 USD;85;46;31;151;170;112;114;140;163;135;293;388;505;301;764;764;937;894;1825;3286;2659;1680;257;1130;643;1100;1300;2600;446;1048;1034;935;406;830;830;4234;13097;5920;10327;24818;19224;22286;30804;32575;33099;13417;99179;76407;53180;103444;104485;151189;170822;339156;293916;296311;280550;246646;238833;117461;194040;139157;68953 -144;'508;Mozambique;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;6000;8000;6600;13000;26000;38000;38000;38000;30000;30000;30000;30000;6000;10000;11000;34000;34000;57000;57000;57000;57000;57000;57000;57000;11000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000 -144;'508;Mozambique;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;850;31410;52000;41000;27506;94005;76005 -144;'508;Mozambique;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;4931;7072;5576;5765;4997;3891 -144;'508;Mozambique;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5582;309;0;7950;2522;0;1027 -144;'508;Mozambique;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1700;23;164;1805;391;245;168 -144;'508;Mozambique;1863;Roundwood, non-coniferous;5516;Production;m3;7431000;7541000;7692000;7813000;7935000;8443000;8578000;8788000;8979000;9138000;9298000;9522000;9767000;9986000;10212000;10445000;11596000;11893000;12112000;12813000;13222000;13824000;14209000;14411000;14597000;14939000;15289000;15297000;15545000;15748000;16031000;16359000;16792000;17284000;17841000;17876000;17935000;17961000;17986000;17986000;17986000;17986000;17986000;18027000;18018000;18018000;18018000;18018000;18041000;18130000;18190000;18241000;18241000;18698000;18698000;18698000;18698000;18698000;18698000;18698000;18698000;18698000;18698000 -144;'508;Mozambique;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;225;1834;36135;17796;44971;46425;82000 -144;'508;Mozambique;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;175;1629;3103;1237;1009;1015;2051 -144;'508;Mozambique;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1010000;701890;509678;237000;757000;525157;294930 -144;'508;Mozambique;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;278850;246623;238669;115656;193649;138912;68785 -144;'508;Mozambique;1864;Wood fuel;5516;Production;m3;6620000;6700000;6790000;6870000;6960000;7516000;7688000;7865000;8047000;8234000;8426000;8622000;8824000;9029000;9239000;9454000;10700000;11000000;11200000;11880000;12200000;12900000;13300000;13500000;13700000;14055000;14422000;14422000;14641000;14825000;15079000;15398000;15782000;16226000;16724000;16724000;16724000;16724000;16724000;16724000;16724000;16724000;16724000;16724000;16724000;16724000;16724000;16724000;16724000;16724000;16724000;16724000;16724000;16724000;16724000;16724000;16724000;16724000;16724000;16724000;16724000;16724000;16724000 -144;'508;Mozambique;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;6;6;6;68;1;1;18;330;551;551;551;59;50;30;5;109;196;85;34;0;1;0;6;5 -144;'508;Mozambique;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;29;78;78;1;262;28;28;28;7;20;21;4;8;39;30;16;0;5;0;15;16 -144;'508;Mozambique;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;19;305;305;305;305;305;305;305;305;305;305;305;8;8;8;;;;;;; -144;'508;Mozambique;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;44;44;44;44;44;44;44;44;44;44;44;2;2;2;;;;;;; -144;'508;Mozambique;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -144;'508;Mozambique;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5 -144;'508;Mozambique;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15 -144;'508;Mozambique;1628;Wood fuel, non-coniferous;5516;Production;m3;6620000;6700000;6790000;6870000;6960000;7516000;7688000;7865000;8047000;8234000;8426000;8622000;8824000;9029000;9239000;9454000;10700000;11000000;11200000;11880000;12200000;12900000;13300000;13500000;13700000;14055000;14422000;14422000;14641000;14825000;15079000;15398000;15782000;16226000;16724000;16724000;16724000;16724000;16724000;16724000;16724000;16724000;16724000;16724000;16724000;16724000;16724000;16724000;16724000;16724000;16724000;16724000;16724000;16724000;16724000;16724000;16724000;16724000;16724000;16724000;16724000;16724000;16724000 -144;'508;Mozambique;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;34;0;1;0;1;0 -144;'508;Mozambique;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;16;0;5;0;0;1 -144;'508;Mozambique;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;6;6;6;68;1;1;18;330;551;551;551;59;50;30;5;109;196;;;;;;; -144;'508;Mozambique;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;29;78;78;1;262;28;28;28;7;20;21;4;8;39;;;;;;; -144;'508;Mozambique;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;19;305;305;305;305;305;305;305;305;305;305;305;8;8;8;;;;;;; -144;'508;Mozambique;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;44;44;44;44;44;44;44;44;44;44;44;2;2;2;;;;;;; -144;'508;Mozambique;1865;Industrial roundwood;5516;Production;m3;811000;841000;902000;943000;975000;927000;890000;923000;932000;904000;872000;900000;943000;957000;973000;991000;896000;893000;912000;939000;1030000;930600;922000;937000;935000;922000;905000;905000;934000;953000;982000;967000;1020000;1069000;1151000;1186000;1268000;1294000;1319000;1319000;1319000;1319000;1319000;1314000;1304000;1304000;1304000;1304000;1327000;1416000;1476000;1527000;1527000;1984000;1984000;1984000;1984000;1984000;1984000;1984000;1984000;1984000;1984000 -144;'508;Mozambique;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;12538;79;109;109;1618;16186;16186;3772;4212;10329;6591;2234;1260;5094;8362;18083;3730;950;990;33210;88135;58795;72477;140424;158000 -144;'508;Mozambique;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;369;7;31;31;953;1038;1038;559;525;7191;1519;377;329;1203;2256;1972;380;151;211;6544;10175;6808;6774;5997;5926 -144;'508;Mozambique;1865;Industrial roundwood;5916;Export quantity;m3;2500;1400;900;2300;2700;1500;1800;2500;3200;2100;3900;5000;6600;3000;8200;8200;8100;7200;10200;11400;8200;4800;700;2200;1300;2300;3400;6200;1000;4499;3272;5105;900;1419;1419;7400;52400;41400;36900;74260;65529;64822;71339;89323;99167;133208;225940;168232;125106;240782;247442;330305;353444;715000;1050539;1021950;1015582;702199;509678;244950;759522;525157;295957 -144;'508;Mozambique;1865;Industrial roundwood;5922;Export value;1000 USD;85;46;31;151;170;112;114;140;163;135;293;388;505;301;764;764;937;894;1825;3286;2659;1680;257;1130;643;1100;1300;2600;446;1048;1034;935;406;830;830;4234;13097;5920;10325;24816;19222;22284;30760;32531;33055;13373;99135;76363;53136;103400;104441;151145;170778;339154;293914;296309;280550;246646;238833;117461;194040;139157;68953 -144;'508;Mozambique;1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;6000;8000;6600;13000;26000;38000;38000;38000;30000;30000;30000;30000;6000;10000;11000;34000;34000;57000;57000;57000;57000;57000;57000;57000;11000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000 -144;'508;Mozambique;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;11104;70;100;100;1500;7250;7250;2270;3128;9820;3673;1708;430;1730;100;5469;1420;80;850;31410;52000;41000;27506;94000;76000 -144;'508;Mozambique;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;177;5;29;29;558;442;442;138;191;599;468;194;187;97;311;334;200;28;66;4931;7072;5576;5765;4982;3876 -144;'508;Mozambique;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;477;29;29;35;240;1156;11000;28979;5940;9232;16;3902;10020;510;3310;10000;11950;11950;5582;309;0;7950;2522;0;1027 -144;'508;Mozambique;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;188;11;11;19;13;61;585;1536;315;489;10;336;1693;303;2102;3610;4541;4541;1700;23;164;1805;391;245;168 -144;'508;Mozambique;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;11104;70;100;100;1500;7250;7250;2270;3128;9820;3673;1708;430;1730;100;5469;1420;80;850;31410;52000;41000;27506;94000;76000 -144;'508;Mozambique;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;177;5;29;29;558;442;442;138;191;599;468;194;187;97;311;334;200;28;66;4931;7072;5576;5765;4982;3876 -144;'508;Mozambique;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;477;29;29;35;240;1156;11000;28979;5940;9232;16;3902;10020;510;3310;10000;11950;11950;5582;309;0;7950;2522;0;1027 -144;'508;Mozambique;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;188;11;11;19;13;61;585;1536;315;489;10;336;1693;303;2102;3610;4541;4541;1700;23;164;1805;391;245;168 -144;'508;Mozambique;1867;Industrial roundwood, non-coniferous;5516;Production;m3;811000;841000;902000;943000;975000;927000;890000;923000;932000;904000;872000;900000;943000;957000;973000;991000;896000;893000;912000;933000;1022000;924000;909000;911000;897000;884000;867000;875000;904000;923000;952000;961000;1010000;1058000;1117000;1152000;1211000;1237000;1262000;1262000;1262000;1262000;1262000;1303000;1294000;1294000;1294000;1294000;1317000;1406000;1466000;1517000;1517000;1974000;1974000;1974000;1974000;1974000;1974000;1974000;1974000;1974000;1974000 -144;'508;Mozambique;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;1434;9;9;9;118;8936;8936;1502;1084;509;2918;526;830;3364;8262;12614;2310;870;140;1800;36135;17795;44971;46424;82000 -144;'508;Mozambique;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;192;2;2;2;395;596;596;421;334;6592;1051;183;142;1106;1945;1638;180;123;145;1613;3103;1232;1009;1015;2050 -144;'508;Mozambique;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4499;3272;5105;900;1419;1419;7400;52400;41400;36423;74231;65500;64787;71099;88167;88167;104229;220000;159000;125090;236880;237422;329795;350134;705000;1038589;1010000;1010000;701890;509678;237000;757000;525157;294930 -144;'508;Mozambique;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1048;1034;935;406;830;830;4234;13097;5920;10137;24805;19211;22265;30747;32470;32470;11837;98820;75874;53126;103064;102748;150842;168676;335544;289373;291768;278850;246623;238669;115656;193649;138912;68785 -144;'508;Mozambique;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;12;59;59;98;4;1;2353;256;422;2730;7140;10990;2310;30;140;1800;0;211;44;1497;146 -144;'508;Mozambique;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;10;10;10;12;1;1;855;108;58;910;1598;1195;180;5;145;1613;0;22;9;15;14 -144;'508;Mozambique;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4499;3272;5105;900;1419;1419;7400;52400;41400;2262;14082;11800;6787;6011;18167;18167;21802;220000;159000;125090;236880;237422;329795;350134;705000;1038589;1010000;1010000;701890;509678;237000;757000;525157;294930 -144;'508;Mozambique;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1048;1034;935;406;830;830;4234;13097;5920;846;4876;3205;2265;2484;2652;2652;2556;98820;75874;53126;103064;102748;150842;168676;335544;289373;291768;278850;246623;238669;115656;193649;138912;68785 -144;'508;Mozambique;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;1428;3;3;3;106;8877;8877;1404;1080;508;565;270;408;634;1122;1624;0;840;0;0;36135;17584;44927;44927;81854 -144;'508;Mozambique;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;191;1;1;1;385;586;586;409;333;6591;196;75;84;196;347;443;0;118;0;0;3103;1210;1000;1000;2036 -144;'508;Mozambique;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;34161;60149;53700;58000;65088;70000;70000;82427;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -144;'508;Mozambique;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;9291;19929;16006;20000;28263;29818;29818;9281;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -144;'508;Mozambique;1868;Sawlogs and veneer logs;5516;Production;m3;340000;360000;410000;440000;460000;400000;350000;369000;365000;324000;279000;295000;325000;325000;325000;325000;211000;187000;185000;192000;262000;142600;114000;113000;99000;78000;58000;55000;76000;77000;76000;22000;30000;35000;77000;77000;129000;128000;128000;128000;128000;128000;128000;123000;113000;113000;113000;113000;136000;225000;285000;336000;336000;480000;480000;480000;480000;480000;480000;480000;480000;480000;480000 -144;'508;Mozambique;1868;Sawlogs and veneer logs;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -144;'508;Mozambique;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -144;'508;Mozambique;1868;Sawlogs and veneer logs;5916;Export quantity;m3;2500;1400;900;2300;2700;1500;1800;2500;3200;2100;3900;5000;6600;3000;8200;8200;8100;7200;10200;11400;8200;4800;700;2200;1300;2300;3400;6200;1000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -144;'508;Mozambique;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;85;46;31;151;170;112;114;140;163;135;293;388;505;301;764;764;937;894;1825;3286;2659;1680;257;1130;643;1100;1300;2600;446;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -144;'508;Mozambique;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;6000;8000;6600;13000;26000;38000;38000;38000;30000;30000;30000;30000;6000;10000;11000;34000;34000;57000;57000;57000;57000;57000;57000;57000;11000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000 -144;'508;Mozambique;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;340000;360000;410000;440000;460000;400000;350000;369000;365000;324000;279000;295000;325000;325000;325000;325000;211000;187000;185000;186000;254000;136000;101000;87000;61000;40000;20000;25000;46000;47000;46000;16000;20000;24000;43000;43000;72000;71000;71000;71000;71000;71000;71000;112000;103000;103000;103000;103000;126000;215000;275000;326000;326000;470000;470000;470000;470000;470000;470000;470000;470000;470000;470000 -144;'508;Mozambique;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -144;'508;Mozambique;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -144;'508;Mozambique;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;2500;1400;900;2300;2700;1500;1800;2500;3200;2100;3900;5000;6600;3000;8200;8200;8100;7200;10200;11400;8200;4800;700;2200;1300;2300;3400;6200;1000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -144;'508;Mozambique;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;85;46;31;151;170;112;114;140;163;135;293;388;505;301;764;764;937;894;1825;3286;2659;1680;257;1130;643;1100;1300;2600;446;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -144;'508;Mozambique;1871;Other industrial roundwood;5516;Production;m3;471000;481000;492000;503000;515000;527000;540000;554000;567000;580000;593000;605000;618000;632000;648000;666000;685000;706000;727000;747000;768000;788000;808000;824000;836000;844000;847000;850000;858000;876000;906000;945000;990000;1034000;1074000;1109000;1139000;1166000;1191000;1191000;1191000;1191000;1191000;1191000;1191000;1191000;1191000;1191000;1191000;1191000;1191000;1191000;1191000;1504000;1504000;1504000;1504000;1504000;1504000;1504000;1504000;1504000;1504000 -144;'508;Mozambique;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;471000;481000;492000;503000;515000;527000;540000;554000;567000;580000;593000;605000;618000;632000;648000;666000;685000;706000;727000;747000;768000;788000;808000;824000;836000;844000;847000;850000;858000;876000;906000;945000;990000;1034000;1074000;1109000;1139000;1166000;1191000;1191000;1191000;1191000;1191000;1191000;1191000;1191000;1191000;1191000;1191000;1191000;1191000;1191000;1191000;1504000;1504000;1504000;1504000;1504000;1504000;1504000;1504000;1504000;1504000 -144;'508;Mozambique;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;58000;61000;65000;71000;78000;102000;95000;95000;95000;98000;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;259000;263000;263000;263000;263000;263000;263000;263000;263000;887654;770738 -144;'508;Mozambique;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;15;1;1;1;3;32;68;37;37;97;4;31;26;45;27;26;19;48;18;20;38;9 -144;'508;Mozambique;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;6;14;21;7;7;38;6;43;42;167;32;37;15;17;18;13;33;12 -144;'508;Mozambique;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111;100;11;11;11;11;0;564;478;478;478;76;76;76;280;3;13;21;21;13;247;505;966;218;17;16;65;0;1;0;0;0 -144;'508;Mozambique;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;51;5;5;5;5;0;161;132;132;132;53;53;53;15;0;4;7;7;5;83;170;259;102;4;5;22;0;1;0;0;0 -144;'508;Mozambique;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;9;9;9;9;18;949;949;206;125;231;211;211;63;81;97;817;417;80;9;8;0;37;107;1;3005 -144;'508;Mozambique;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;34;39;39;75;67;37;33;33;10;22;159;206;90;38;9;8;1;5;22;2;164 -144;'508;Mozambique;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;4;4;4;4;73;73;73;410;410;1942;819;819;1519;65;81028;89028;78000;0;62000;0;0;0;0;0;0 -144;'508;Mozambique;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;10;10;10;19;19;137;112;112;1193;20;8893;10692;8883;0;3319;0;0;0;0;0;0 -144;'508;Mozambique;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;39;17;62;42;42;13;37;4;6;170;2;2;2;0;0;0;0;0 -144;'508;Mozambique;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;2;2;2;2;6;6;7;7;3;13;10;10;60;1;1;0;0;0;0;1;1 -144;'508;Mozambique;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;73;73;73;73;73;1605;0;0;700;37;81000;89000;78000;0;62000;0;0;0;0;0;0 -144;'508;Mozambique;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;10;10;10;10;10;128;0;0;1081;13;8886;10685;8883;0;3319;0;0;0;0;0;0 -144;'508;Mozambique;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;6;6;6;6;15;946;946;167;108;169;169;169;50;44;93;811;247;78;7;6;0;37;107;1;3005 -144;'508;Mozambique;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;32;37;37;73;61;31;26;26;7;9;149;196;30;37;8;8;1;5;22;1;163 -144;'508;Mozambique;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;152;152;152;152;152;0;0;0;0;0;0;0;0;337;337;337;819;819;819;28;28;28;0;0;0;0;0;0;0;0;0 -144;'508;Mozambique;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;0;0;0;0;0;0;0;0;9;9;9;112;112;112;7;7;7;0;0;0;0;0;0;0;0;0 -144;'508;Mozambique;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119;72;51;76;25 -144;'508;Mozambique;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;36;110;69;78 -144;'508;Mozambique;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -144;'508;Mozambique;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -144;'508;Mozambique;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2;10;0;0 -144;'508;Mozambique;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;5;11;1;1 -144;'508;Mozambique;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119;70;41;76;25 -144;'508;Mozambique;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;31;99;68;77 -144;'508;Mozambique;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -144;'508;Mozambique;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -144;'508;Mozambique;1872;Sawnwood;5516;Production;m3;121300;135100;150200;191200;193300;841300;638000;661000;194200;182000;184000;194000;202000;202000;222000;222000;175000;160000;150000;65300;65400;42300;37800;36600;34600;39100;41700;35750;29750;25600;17500;15600;30000;30000;42000;42000;33000;28000;28000;28000;28000;28000;28000;32000;38000;43000;57000;57000;120000;198000;218000;239000;240021;402512;402512;385679;661000;661000;661000;562000;562000;562000;562000 -144;'508;Mozambique;1872;Sawnwood;5616;Import quantity;m3;11600;14300;6900;4900;5700;6800;8600;16300;19700;30900;27500;15900;13200;6100;1400;;;;;;;;;;;;;;;;;2092;276;238;327;327;129;129;8961;2473;520;177;3966;13163;13163;18913;20959;12981;14338;17139;23079;22301;25239;31590;24623;36750;8838;26800;74262;70777;94495;75385;75808 -144;'508;Mozambique;1872;Sawnwood;5622;Import value;1000 USD;500;546;394;308;380;452;477;738;763;1018;1062;614;989;603;160;;;;;;;;;;;;;;;;;419;45;81;96;96;12;12;992;275;92;22;748;2598;2598;4035;6666;5776;5551;5736;5412;5200;6715;10070;10589;7566;3381;7778;12980;11253;17726;11434;11128 -144;'508;Mozambique;1872;Sawnwood;5916;Export quantity;m3;97550;100150;111050;148600;152550;128850;115350;117100;111900;110400;101000;112100;124100;109000;94900;94900;89700;84500;77800;14100;10100;4950;1100;600;400;100;100;2500;500;600;500;5247;1281;1091;4900;2100;4500;9400;7448;7320;3400;5020;15858;17296;17296;18981;35244;65588;64165;113239;150000;137293;149961;123222;41790;66474;82129;122628;135730;65293;64748;96007;73594 -144;'508;Mozambique;1872;Sawnwood;5922;Export value;1000 USD;3284;3348;3728;5065;5347;4360;4432;5071;5542;5731;4982;6037;8852;10137;9413;9413;7675;7062;6934;3743;3241;1830;403;220;176;38;38;104;154;164;92;1855;516;503;1382;697;1534;2660;3231;3022;1965;2414;4761;5209;5209;6194;10702;32228;29831;43628;65573;68964;77913;79972;24723;24263;27238;39627;44327;24439;23426;35998;23692 -144;'508;Mozambique;1632;Sawnwood, coniferous;5516;Production;m3;23750;34950;39150;42600;40750;375000;275000;275000;34000;27000;40000;50000;50000;50000;70000;70000;70000;70000;70000;8500;11000;6600;6650;12300;8300;8550;8850;8375;8375;8100;7200;5600;13000;11000;13000;13000;0;0;0;0;0;0;0;5000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;12000;12000;12000;12000;12000;12000;12000 -144;'508;Mozambique;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;266;266;27;27;27;129;129;5494;2453;500;157;2005;10812;10812;13809;8949;6563;12030;14242;18701;18919;19589;22580;9783;28000;6798;25220;72464;70067;93398;74785;75207 -144;'508;Mozambique;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;37;5;5;5;12;12;762;273;90;20;150;1881;1881;2478;3003;3818;3650;3757;4077;4168;4709;5916;6315;6096;2210;7516;12466;10531;17226;11052;10900 -144;'508;Mozambique;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;78;400;162;259;359;359;7306;2408;12588;9165;13239;10000;7293;961;66;74;405;4;6438;475;293;748;2007;3594 -144;'508;Mozambique;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;7;62;31;19;60;60;2645;720;3818;2397;3098;2461;3093;284;43;18;83;2;587;126;1819;258;184;339 -144;'508;Mozambique;1633;Sawnwood, non-coniferous;5516;Production;m3;97550;100150;111050;148600;152550;466300;363000;386000;160200;155000;144000;144000;152000;152000;152000;152000;105000;90000;80000;56800;54400;35700;31150;24300;26300;30550;32850;27375;21375;17500;10300;10000;17000;19000;29000;29000;33000;28000;28000;28000;28000;28000;28000;27000;32000;37000;51000;51000;114000;192000;212000;233000;234021;396512;396512;379679;649000;649000;649000;550000;550000;550000;550000 -144;'508;Mozambique;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;11600;14300;6900;4900;5700;6800;8600;16300;19700;30900;27500;15900;13200;6100;1400;;;;;;;;;;;;;;;;;1826;10;211;300;300;0;0;3467;20;20;20;1961;2351;2351;5104;12010;6418;2308;2897;4378;3382;5650;9010;14840;8750;2040;1580;1798;710;1097;600;601 -144;'508;Mozambique;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;500;546;394;308;380;452;477;738;763;1018;1062;614;989;603;160;;;;;;;;;;;;;;;;;382;8;76;91;91;0;0;230;2;2;2;598;717;717;1557;3663;1958;1901;1979;1335;1032;2006;4154;4274;1470;1171;262;514;722;500;382;228 -144;'508;Mozambique;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;97550;100150;111050;148600;152550;128850;115350;117100;111900;110400;101000;112100;124100;109000;94900;94900;89700;84500;77800;14100;10100;4950;1100;600;400;100;100;2500;500;600;500;5247;1281;1091;4900;2100;4500;9400;7400;7242;3000;4858;15599;16937;16937;11675;32836;53000;55000;100000;140000;130000;149000;123156;41716;66069;82125;116190;135255;65000;64000;94000;70000 -144;'508;Mozambique;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;3284;3348;3728;5065;5347;4360;4432;5071;5542;5731;4982;6037;8852;10137;9413;9413;7675;7062;6934;3743;3241;1830;403;220;176;38;38;104;154;164;92;1855;516;503;1382;697;1534;2660;3215;3015;1903;2383;4742;5149;5149;3549;9982;28410;27434;40530;63112;65871;77629;79929;24705;24180;27236;39040;44201;22620;23168;35814;23353 -144;'508;Mozambique;1634;Veneer sheets;5516;Production;m3;;1700;1700;2300;2600;2800;4100;4600;1600;1800;1100;1100;1100;1100;1100;1100;1100;1100;1000;1000;1000;1000;1000;2000;2500;2500;2500;2500;;;300;800;600;1400;1400;1800;2500;2800;2800;2800;2800;2800;0;0;0;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;5000;5000 -144;'508;Mozambique;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;0;198;4;4;4;204;119;119;94;123;12;78;42;51;299;459;27;46;113;224;156;1097;59;8;29;142 -144;'508;Mozambique;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;0;83;1;1;1;47;92;92;60;126;38;179;93;96;277;323;59;45;70;136;93;230;40;46;60;28 -144;'508;Mozambique;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;194;0;0;0;0;0;84;84;84;84;84;20;20;119;186;80;39;39;492;62;653;485;292;303;172;113;99;16;16;3898;3930 -144;'508;Mozambique;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;97;0;0;0;0;0;110;110;110;110;110;15;15;163;390;235;75;76;325;103;269;242;159;155;121;139;93;54;40;936;576 -144;'508;Mozambique;1873;Wood-based panels;5516;Production;m3;900;1200;1700;1400;2400;2800;3200;4500;6200;7100;6200;6200;6200;6200;6200;6200;1500;1400;1300;1000;3300;1800;600;5400;5800;6500;8250;3900;3500;4100;2500;4300;3330;2900;700;700;1000;600;600;600;600;600;600;600;600;1000;1000;1000;1000;1000;2000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000 -144;'508;Mozambique;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;94;56;56;56;86;44;25774;3673;3673;3557;2394;5318;5318;4930;5824;6251;5816;10171;8684;9153;19686;27107;19576;14142;15963;17408;40757;33959;32492;34593;54903 -144;'508;Mozambique;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;21;26;26;26;28;14;1231;451;451;383;1304;1238;1238;2349;3137;3900;3857;3801;4906;6030;11929;12994;11396;6961;6942;7731;9096;9449;11034;12007;11754 -144;'508;Mozambique;1873;Wood-based panels;5916;Export quantity;m3;900;1200;1200;1000;1100;1600;1300;1300;1500;300;200;100;100;100;100;100;100;100;100;100;100;1500;600;400;200;100;450;200;200;200;0;2798;1505;1505;0;0;6;0;0;0;0;0;23;91;91;125;6;24;120;117;290;36;53;121;40;125;23;92;1212;40;377;40;40 -144;'508;Mozambique;1873;Wood-based panels;5922;Export value;1000 USD;170;220;229;189;175;280;249;249;351;85;67;77;82;68;32;32;32;32;32;32;32;785;314;209;105;53;239;106;106;106;0;872;384;384;0;0;1;0;0;0;0;0;28;39;39;70;5;27;129;127;450;22;67;104;61;104;57;116;21;43;19;17;11 -144;'508;Mozambique;1640;Plywood and LVL;5516;Production;m3;900;1200;1700;1400;2400;2800;3200;4500;6200;7100;6200;6200;6200;6200;6200;6200;1500;1400;1300;1000;3300;1800;600;400;200;100;450;200;100;100;100;100;130;100;100;700;1000;600;600;600;600;600;600;600;600;1000;1000;1000;1000;1000;2000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000 -144;'508;Mozambique;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;83;45;45;45;42;0;1559;117;117;1;636;726;726;1299;2517;1709;2204;6559;4534;6652;12325;20397;9816;8158;9287;9835;22161;14440;16911;16845;33475 -144;'508;Mozambique;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;17;22;22;22;14;0;552;71;71;3;510;258;258;728;1456;1695;1679;1623;1893;3443;5600;7173;6400;3991;3127;3148;4666;4416;4767;4244;4944 -144;'508;Mozambique;1640;Plywood and LVL;5916;Export quantity;m3;900;1200;1200;1000;1100;1600;1300;1300;1500;300;200;100;100;100;100;100;100;100;100;100;100;1500;600;400;200;100;450;200;200;200;0;0;0;0;0;0;6;0;0;0;0;0;23;23;23;123;4;22;5;2;12;2;3;71;7;42;1;70;0;0;0;0;0 -144;'508;Mozambique;1640;Plywood and LVL;5922;Export value;1000 USD;170;220;229;189;175;280;249;249;351;85;67;77;82;68;32;32;32;32;32;32;32;785;314;209;105;53;239;106;106;106;0;0;0;0;0;0;1;0;0;0;0;0;28;28;28;69;4;26;3;1;423;1;2;39;4;11;1;60;8;28;0;2;0 -144;'508;Mozambique;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100 -144;'508;Mozambique;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60 -144;'508;Mozambique;1646;Particle board and OSB (1961-1994);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;5000;5600;6400;7800;3700;3400;4000;2400;1200;1200;800;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -144;'508;Mozambique;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -144;'508;Mozambique;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -144;'508;Mozambique;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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 -144;'508;Mozambique;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;4;4;12461;131;131;131;914;3066;3066;2143;1559;1226;482;482;463;660;3040;3274;6267;1272;4163;4163;13866;13866;10029;11843;12639 -144;'508;Mozambique;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;2;2;398;76;76;76;496;502;502;820;949;563;323;323;597;648;3044;2875;2408;681;2260;2260;2466;2466;3632;4348;3975 -144;'508;Mozambique;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;68;2;2;2;115;115;278;34;28;28;11;61;0;0;1173;1;338;1;1 -144;'508;Mozambique;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;1;1;1;126;126;27;21;9;9;1;37;0;0;3;5;9;5;1 -144;'508;Mozambique;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;242;467;467;645;66;1528;842;842;224;27;284;152;239;11;36;60;43;112;97;277;17 -144;'508;Mozambique;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126;77;77;474;52;666;544;544;110;59;227;174;345;16;81;65;24;55;49;225;9 -144;'508;Mozambique;1874;Fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;2000;2000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -144;'508;Mozambique;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;11;11;11;11;40;40;11754;3425;3425;3425;602;1059;1059;843;1682;1788;2288;2288;3463;1814;4037;3284;3254;4701;2477;3350;4687;5541;5455;5628;8772 -144;'508;Mozambique;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;4;4;4;4;12;12;281;304;304;304;172;401;401;327;680;976;1311;1311;2306;1880;3058;2772;2243;2273;1474;2258;1940;2512;2586;3190;2826 -144;'508;Mozambique;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2798;1505;1505;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;22;22;22;22;22;22;39;39;39;39;39 -144;'508;Mozambique;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;872;384;384;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;56;56;56;56;56;56;10;10;10;10;10 -144;'508;Mozambique;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;40;9838;1886;1886;1886;301;756;756;557;1235;631;962;962;1738;679;2567;1702;2197;3414;1459;1764;2177;1650;1030;1317;1153 -144;'508;Mozambique;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;226;285;285;285;102;351;351;291;407;389;567;567;974;663;1868;1135;983;1339;708;867;877;841;514;821;514 -144;'508;Mozambique;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1520;1520;1520;1520;2;244;244;14;424;548;877;877;1549;776;836;1303;1012;1270;960;1489;2333;3554;4344;4040;4664 -144;'508;Mozambique;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;18;18;1;42;42;10;248;220;379;379;1045;629;801;1021;1095;922;637;1292;986;1574;2006;2272;2252 -144;'508;Mozambique;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;11;11;11;11;0;0;396;19;19;19;299;59;59;272;23;609;449;449;176;359;634;279;45;17;58;97;177;337;81;271;2955 -144;'508;Mozambique;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;4;4;4;4;0;0;37;1;1;1;69;8;8;26;25;367;365;365;287;588;389;616;165;12;129;99;77;97;66;97;60 -144;'508;Mozambique;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;22;22;22;22;22;22;39;39;39;39;39 -144;'508;Mozambique;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;56;56;56;56;56;56;10;10;10;10;10 -144;'508;Mozambique;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;2000;2000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -144;'508;Mozambique;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -144;'508;Mozambique;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -144;'508;Mozambique;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2798;1505;1505;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -144;'508;Mozambique;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;872;384;384;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -144;'508;Mozambique;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;8000;13000;13000;13000 -144;'508;Mozambique;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;11;11;11;11;0;0;67;67;67;67;324;136;136;129;485;790;708;708;647;334;536;7702;319;608;894;461;569;1752;2161;3535;2275 -144;'508;Mozambique;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;5;5;5;5;0;0;58;58;58;58;149;85;85;78;155;1062;905;905;1073;375;712;5694;546;439;663;385;414;1407;2487;2459;2243 -144;'508;Mozambique;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;312;4042;1999;1999;1999;0;0;0;21;21;21;606;69;69;158;332;324;969;1135;1360;851;838;1771;553;499;355;1350;3977;5154;12607.71;11882;4994 -144;'508;Mozambique;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;203;422;572;572;572;0;0;0;8;8;8;19;7;7;9;22;56;250;41;150;54;127;152;137;115;124;230;440;369;1074.01;978;433 -144;'508;Mozambique;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;11;11;11;11;0;0;27;27;27;27;102;102;102;76;84;786;697;697;636;329;519;7694;264;553;890;457;540;1752;2161;3535;2275 -144;'508;Mozambique;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;5;5;5;5;0;0;45;45;45;45;81;81;81;49;56;1038;903;903;1071;375;699;5680;477;370;661;383;411;1407;2487;2457;2241 -144;'508;Mozambique;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;199;199;199;200;200;200;200;200;215;215;215 -144;'508;Mozambique;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109;109;109;110;110;110;110;110;115;115;115 -144;'508;Mozambique;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;11;11;11;11;0;0;1;1;1;1;80;80;80;80;88;93;225;225;86;312;487;7578;277;578;830;472;314;1541;2160;5099;3839 -144;'508;Mozambique;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;5;5;5;5;0;0;1;1;1;1;37;37;37;37;44;47;135;135;135;315;557;5240;353;517;569;359;288;1161;2483;4148;3932 -144;'508;Mozambique;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;199;199;199;200;200;200;200;200;215;215;215 -144;'508;Mozambique;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109;109;109;110;110;110;110;110;115;115;115 -144;'508;Mozambique;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;44;2;1;2;2;2 -144;'508;Mozambique;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;21;1;2;3;2;2 -144;'508;Mozambique;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;146;146;37;0;14;;;;;;; -144;'508;Mozambique;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;72;125;14;0;14;;;;;;; -144;'508;Mozambique;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;8;20;20;0;0;3;;;;;;; -144;'508;Mozambique;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;11;11;0;0;4;;;;;;; -144;'508;Mozambique;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;11;11;11;11;0;0;0;0;0;0;75;75;75;75;75;80;212;212;28;129;282;7502;238;522;789;412;296;1524;2142;3532;2272 -144;'508;Mozambique;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;5;5;5;5;0;0;0;0;0;0;36;36;36;36;36;39;127;127;27;160;244;5049;176;322;535;327;276;1148;2469;2454;2238 -144;'508;Mozambique;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;199;199;199;200;200;200;200;200;215;215;215 -144;'508;Mozambique;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109;109;109;110;110;110;110;110;115;115;115 -144;'508;Mozambique;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;137;137;13;26;179;154;26;75;102;102;67;29;142;56;23 -144;'508;Mozambique;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;91;91;16;19;103;132;20;46;78;78;81;34;467;62;14 -144;'508;Mozambique;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;199;199;199;199;199;199;199;199;199;199;199 -144;'508;Mozambique;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109;109;109;109;109;109;109;109;109;109;109 -144;'508;Mozambique;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;67;67;67;67;67;67;67;7;95;95;7348;212;447;687;310;229;1495;2000;3442;2215 -144;'508;Mozambique;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;27;27;27;27;27;27;27;2;132;132;4917;156;276;457;249;195;1114;2002;2380;2212 -144;'508;Mozambique;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;16;16;16 -144;'508;Mozambique;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;6;6;6 -144;'508;Mozambique;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;34 -144;'508;Mozambique;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12 -144;'508;Mozambique;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;11;11;11;11;0;0;0;0;0;0;8;8;8;8;8;8;8;8;8;8;8;0;0;0;;;;;;; -144;'508;Mozambique;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;5;5;5;5;0;0;0;0;0;0;9;9;9;9;9;9;9;9;9;9;9;0;0;0;;;;;;; -144;'508;Mozambique;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;5;5;5;5;5;5;5;5;5;17;39;39;39;39;16;16;16;16;16;1565;1565 -144;'508;Mozambique;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;72;177;177;177;177;11;11;11;11;11;1692;1692 -144;'508;Mozambique;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;27;27;27;27;27;27;1;1;698;477;477;555;34;71;155;26;14;76;1;242;227;17;1;1 -144;'508;Mozambique;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;45;45;45;45;45;45;13;13;992;769;769;937;132;319;617;301;30;103;35;134;257;15;1;1 -144;'508;Mozambique;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;2;2;2;8;160;3;3;3;3;9;14;22;22;22;22;0;702;0;2;4 -144;'508;Mozambique;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1;1;1;22;114;2;2;2;2;581;70;80;80;80;80;2;373;1;4;7 -144;'508;Mozambique;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75 -144;'508;Mozambique;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3 -144;'508;Mozambique;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;8000;13000;13000;13000 -144;'508;Mozambique;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;40;40;40;222;34;34;53;401;4;11;11;11;5;17;8;55;55;4;4;29;0;0;0;0 -144;'508;Mozambique;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;68;4;4;29;99;24;2;2;2;0;13;14;69;69;2;2;3;0;0;2;2 -144;'508;Mozambique;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;312;4042;1999;1999;1999;0;0;0;21;21;21;606;69;69;158;332;324;969;1135;1360;851;639;1572;354;299;155;1150;3777;4954;12392.71;11667;4779 -144;'508;Mozambique;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;203;422;572;572;572;0;0;0;8;8;8;19;7;7;9;22;56;250;41;150;54;18;43;28;5;14;120;330;259;959.01;863;318 -144;'508;Mozambique;1876;Paper and paperboard;5510;Production;t;;;;;;;800;900;1000;1200;1500;1500;1500;1500;1500;1500;1500;1500;1500;3000;2000;1800;1800;1400;2000;2000;2000;2000;2000;1400;2400;2400;1400;1000;1000;1000;0;0;0;0;0;0;0;2000;1000;1000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000 -144;'508;Mozambique;1876;Paper and paperboard;5610;Import quantity;t;9700;2400;2500;6100;8800;4600;10200;5500;9000;14200;11100;12400;19900;10900;10300;10300;13400;11700;16800;16800;8600;12200;12200;1600;500;6800;12200;13100;5000;5300;5000;1262;1886;758;758;323;480;479;11935;1581;1428;525;11461;16932;16932;11734;16635;18239;16693;17758;16520;12245;16168;27060;17607;21037;21837;22986;46305;23178;26584.99;24975;34107 -144;'508;Mozambique;1876;Paper and paperboard;5622;Import value;1000 USD;2760;539;828;1712;2318;1269;1926;1572;2541;3827;3570;3786;6561;4764;7563;7563;7498;6510;9580;10420;6550;9400;9400;1150;396;3717;6936;9643;4836;5036;4886;707;1221;637;637;222;302;300;7339;1159;987;419;9064;12153;12153;13440;17118;18699;20615;20485;18945;17109;19372;30408;19197;20179;21743;25164;29200;19070;28288.78;32487;31770 -144;'508;Mozambique;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1728;979;40;40;40;0;0;2;19;19;19;19;142;142;142;194;248;634;634;953;953;954;1084;1164;1090;1117;1082;4306;21873;6221;1805.03;1029.03 -144;'508;Mozambique;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;942;425;29;29;29;0;0;2;27;27;27;27;94;94;94;239;235;647;647;738;738;758;1151;2764;2510;2699;2601;12396;26716;8465;3694.99;2763.99 -144;'508;Mozambique;2042;Graphic papers;5610;Import quantity;t;800;900;;1100;1200;1300;1400;;;200;200;1900;1900;1300;1700;1700;4200;3700;5500;5500;3300;4700;4700;1300;200;800;2200;3100;1800;2100;1800;1079;1803;734;734;123;280;279;7738;991;838;425;4797;7345;7345;6220;6663;9666;9312;10404;10007;7876;10963;11364;10849;14894;12249;12158;36524;11276;14146.23;12328;20862 -144;'508;Mozambique;2042;Graphic papers;5622;Import value;1000 USD;160;161;;186;210;216;250;;;47;70;386;437;464;804;804;2198;1960;3020;3320;2350;3300;3300;900;146;717;1598;2550;1400;1600;1450;549;1115;596;596;115;160;158;3825;720;548;328;3149;5619;5619;5326;7948;9900;11746;11851;10703;10839;13086;15650;12565;12998;11993;14194;17251;8483;14176.34;14626;13709 -144;'508;Mozambique;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115;;0;0;0;0;0;0;17;17;17;17;140;140;140;140;142;127;127;880;880;879;857;845;841;852;852;814;844;817;5;22 -144;'508;Mozambique;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;;0;0;0;0;0;0;25;25;25;25;92;92;92;92;97;95;95;576;576;596;886;759;605;793;793;519;518;515;25;26 -144;'508;Mozambique;1671;Newsprint;5610;Import quantity;t;800;900;;1100;1200;1300;1400;;;200;200;1900;1900;1300;1700;1700;1800;1600;1500;1500;1500;2000;2000;900;100;100;200;100;800;1100;800;592;261;118;118;23;25;25;4435;136;136;136;478;638;638;744;1569;1641;3041;3041;1070;1827;2029;2233;3124;1531;1391;1430;1091;705;677;1078;605 -144;'508;Mozambique;1671;Newsprint;5622;Import value;1000 USD;160;161;;186;210;216;250;;;47;70;386;437;464;804;804;860;760;720;720;750;1000;1000;500;46;46;98;50;400;600;450;198;193;56;56;15;16;16;932;100;100;100;243;326;326;709;1006;1093;2207;2207;1513;1769;1987;2175;2349;1133;1134;1330;1247;701;905.37;1151;940 -144;'508;Mozambique;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115;;0;0;0;0;0;0;0;0;0;0;91;91;91;91;91;118;118;814;814;814;814;814;814;814;814;814;814;814;3;3 -144;'508;Mozambique;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;;0;0;0;0;0;0;0;0;0;0;43;43;43;43;43;85;85;514;514;514;514;514;514;514;514;514;514;514;1;1 -144;'508;Mozambique;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;2400;2100;4000;4000;1800;2700;2700;400;100;700;2000;3000;1000;1000;1000;487;1542;616;616;100;255;254;3303;855;702;289;4319;6707;6707;5476;5094;8025;6271;7363;8937;6049;8934;9131;7725;13363;10858;10728;35433;10571;13469.23;11250;20257 -144;'508;Mozambique;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;1338;1200;2300;2600;1600;2300;2300;400;100;671;1500;2500;1000;1000;1000;351;922;540;540;100;144;142;2893;620;448;228;2906;5293;5293;4617;6942;8807;9539;9644;9190;9070;11099;13475;10216;11865;10859;12864;16004;7782;13270.96;13475;12769 -144;'508;Mozambique;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;;;17;17;17;17;49;49;49;49;51;9;9;66;66;65;43;31;27;38;38;0;30;3;2;19 -144;'508;Mozambique;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;;;25;25;25;25;49;49;49;49;54;10;10;62;62;82;372;245;91;279;279;5;4;1;24;25 -144;'508;Mozambique;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;2;2;48;417;1415;1415;56;445;3349;308;1400;1766;872;2029;2372;3663;3345;5535;4000;26753;1575;2728.23;2161;1532 -144;'508;Mozambique;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;7;7;39;369;1117;1117;119;2679;3602;1800;1905;2417;1284;2670;4826;5108;3202;5012;4124;6404;2125;2710.96;2917;3015 -144;'508;Mozambique;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;32;32;32;32;6;6;3;3;2;2;2;2;13;13;0;0;0;0;17 -144;'508;Mozambique;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;24;24;24;6;6;12;12;32;32;32;32;220;220;3;0;0;0;1 -144;'508;Mozambique;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;157;2895;528;600;127;2590;3592;3592;5188;4151;3968;5395;5395;6471;4664;6464;6210;3513;7700;4762;5324;6604;5979;8301;7937;18033 -144;'508;Mozambique;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;2528;329;394;93;1897;2834;2834;4207;3617;4384;7062;7062;5900;6837;7409;7663;4123;6383;5150;6106;5037;4422;7585;9117;8422 -144;'508;Mozambique;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;17;17;17;17;17;17;2;2;38;38;38;38;2;2;2;2;0;30;1;2;2 -144;'508;Mozambique;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;25;25;25;25;25;25;25;3;3;27;27;27;27;1;1;1;1;0;1;0;24;24 -144;'508;Mozambique;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97;402;325;100;114;1312;1700;1700;232;498;708;568;568;700;513;441;549;549;2318;561;1404;2076;3017;2440;1152;692 -144;'508;Mozambique;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;355;284;47;96;640;1342;1342;291;646;821;677;677;873;949;1020;986;985;2280;697;2634;4563;1235;2975;1441;1332 -144;'508;Mozambique;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1;1;25;25;25;3;27;23;23;23;0;0;2;0;0 -144;'508;Mozambique;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;1;1;23;23;23;313;212;58;58;58;2;3;1;0;0 -144;'508;Mozambique;1675;Other paper and paperboard;5510;Production;t;;;;;;;800;900;1000;1200;1500;1500;1500;1500;1500;1500;1500;1500;1500;3000;2000;1800;1800;1400;2000;2000;2000;2000;2000;1400;2400;2400;1400;1000;1000;1000;0;0;0;0;0;0;0;2000;1000;1000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000 -144;'508;Mozambique;1675;Other paper and paperboard;5610;Import quantity;t;8900;1500;2500;5000;7600;3300;8800;5500;9000;14000;10900;10500;18000;9600;8600;8600;9200;8000;11300;11300;5300;7500;7500;300;300;6000;10000;10000;3200;3200;3200;183;83;24;24;200;200;200;4197;590;590;100;6664;9587;9587;5514;9972;8573;7381;7354;6513;4369;5205;15696;6758;6143;9588;10828;9781;11902;12438.76;12647;13245 -144;'508;Mozambique;1675;Other paper and paperboard;5622;Import value;1000 USD;2600;378;828;1526;2108;1053;1676;1572;2541;3780;3500;3400;6124;4300;6759;6759;5300;4550;6560;7100;4200;6100;6100;250;250;3000;5338;7093;3436;3436;3436;158;106;41;41;107;142;142;3514;439;439;91;5915;6534;6534;8114;9170;8799;8869;8634;8242;6270;6286;14758;6632;7181;9750;10970;11949;10587;14112.44;17861;18061 -144;'508;Mozambique;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1613;979;40;40;40;0;0;2;2;2;2;2;2;2;2;54;106;507;507;73;73;75;227;319;249;265;230;3492;21029;5404;1800.03;1007.03 -144;'508;Mozambique;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;901;425;29;29;29;0;0;2;2;2;2;2;2;2;2;147;138;552;552;162;162;162;265;2005;1905;1906;1808;11877;26198;7950;3669.99;2737.99 -144;'508;Mozambique;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;1000;1000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000 -144;'508;Mozambique;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;152;16;16;16;688;732;732;869;557;943;634;607;900;737;1410;1408;1361;1095;1523;1301;662;750;901;954;1037 -144;'508;Mozambique;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;360;14;14;14;744;805;805;1189;570;1418;1172;937;1288;1188;1783;1711;1595;1140;1753;1439;1136;1136;1299.18;1577;1606 -144;'508;Mozambique;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;5;5;7;7;55;55;55;55;20;0;0;0.03;0.03 -144;'508;Mozambique;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;0;0;0;0;21;21;21;21;0;0;1;0.99;0.99 -144;'508;Mozambique;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;3771;341;341;68;5676;8136;8136;3975;8862;7216;5952;5952;5178;3429;3519;13293;5349;4566;7588;9113;8838;10704;11184.76;11592;11986 -144;'508;Mozambique;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;142;2450;167;167;51;4509;5046;5046;5483;7110;5818;5426;5426;5618;3776;3627;7823;4918;4351;6192;8325;7487;8191;12223.26;15841;15841 -144;'508;Mozambique;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;103;56;56;55;55;55;212;263;183;203;172;3472;21028;5393;1800;1007 -144;'508;Mozambique;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;117;105;105;100;100;100;222;1840;1869;1856;1777;11875;26189;7881;3668;2736 -144;'508;Mozambique;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;800;800;900;1000;1300;1300;1300;1300;1300;1300;1300;1300;1300;2600;1700;1600;1600;1200;1600;1600;1600;1600;1600;1000;2000;2000;1000;1000;1000;1000;0;;;;;;;;;;;;;;;;;;;;;;;;;; -144;'508;Mozambique;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;;2400;3400;2700;2500;3400;600;600;600;4500;4000;5500;5500;2600;3600;3600;300;300;6000;10000;10000;3200;3200;3200;183;83;24;24;200;200;;;;;;;;;;;;;;;;;;;;;;;;;; -144;'508;Mozambique;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;;549;780;800;800;1009;300;300;300;1500;1350;1860;2000;1100;1600;1600;250;250;3000;5338;7093;3436;3436;3436;158;106;41;41;107;142;;;;;;;;;;;;;;;;;;;;;;;;;; -144;'508;Mozambique;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1613;979;40;40;40;0;;;;;;;;;;;;;;;;;;;;;;;;;; -144;'508;Mozambique;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;901;425;29;29;29;0;;;;;;;;;;;;;;;;;;;;;;;;;; -144;'508;Mozambique;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98;1842;44;44;44;3422;3237;3237;2435;4271;4603;3724;3724;2877;2188;1522;1809;2904;1730;4150;5461;4715;3938;2529;2077;4513 -144;'508;Mozambique;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;699;20;20;20;1603;2007;2007;2105;2365;2871;2532;2532;3192;2340;1795;1771;1479;1058;2838;4618;3323;2460;2026;2534;4055 -144;'508;Mozambique;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;31;31;31;31;31;31;31;31;31;31;31;0;31;0;0;0 -144;'508;Mozambique;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;14;14;14;14;14;14;14;14;14;0;14;0;0;0 -144;'508;Mozambique;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;963;3;3;3;649;2167;2167;249;551;131;867;867;920;904;1503;8001;1946;2096;735;1102;295;1976;1671.82;2745;1272 -144;'508;Mozambique;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;729;7;7;7;1690;1344;1344;1515;786;114;1023;1023;852;1030;1252;4594;1826;2491;1136;1299;836;1930;2501;4724;4183 -144;'508;Mozambique;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;23;23;23;23;23;24;24;24;24;24;0;0;6;0;0 -144;'508;Mozambique;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;84;84;84;84;84;88;88;88;88;88;1;1;8;0;0 -144;'508;Mozambique;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;961;293;293;20;1576;2599;2599;1109;4026;2214;1053;1053;1346;309;352;3432;486;731;2684;2534;3828;4787;6931.94;6770;6185 -144;'508;Mozambique;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;1012;140;140;24;1197;1612;1612;1224;3944;2527;1448;1448;1511;348;493;1385;386;783;2201;2394;3326;3800;7668.27;8582;7589 -144;'508;Mozambique;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;2;2;1;1;1;157;157;77;97;66;3421;20946;5336;1749;956 -144;'508;Mozambique;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98;7;7;2;2;2;120;120;149;136;57;10256;24556;6255;2050;1118 -144;'508;Mozambique;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;1;1;1;29;133;133;182;14;268;308;308;35;28;142;51;13;9;19;16;0;3;52;0;16 -144;'508;Mozambique;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;0;0;0;19;83;83;639;15;306;423;423;63;58;87;73;1227;19;17;14;2;1;28;1;14 -144;'508;Mozambique;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;51;51;51;51;51;51;51;51 -144;'508;Mozambique;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1618;1618;1618;1618;1618;1618;1618;1618;1618 -144;'508;Mozambique;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;100;100;200;200;200;200;200;200;200;200;200;200;400;300;200;200;200;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;0;0;0;0;0 -144;'508;Mozambique;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;5500;6600;10600;8200;8000;14600;9000;8000;8000;4700;4000;5800;5800;2700;3900;3900;;;;;;;;;;;0;0;0;0;0;274;233;233;16;300;719;719;670;553;414;795;795;435;203;276;995;48;482;477;414;281;448;353;101;222 -144;'508;Mozambique;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;1572;1992;3000;2700;2600;5115;4000;6459;6459;3800;3200;4700;5100;3100;4500;4500;;;;;;;;;;;0;0;0;0;0;704;258;258;26;662;683;683;1442;1490;1563;2271;2271;1336;1306;876;5224;119;1690;1805;1206;3326;1260;590;443;614 -144;'508;Mozambique;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2;2;2;2;2;2;2;2;23;3;449;449;13;13;13;8;1;11;7;3;0;1;11;0;0 -144;'508;Mozambique;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2;2;2;2;2;2;2;2;133;21;443;443;62;62;62;43;144;15;29;10;2;9;68;1;1 -144;'508;Mozambique;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32953;33443;32834;27521;32573;27528;26604 -144;'508;Mozambique;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3861;8753;41596;12626;11791;15417;13232 -144;'508;Mozambique;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;250;304;357;258;292;138;254 -144;'508;Mozambique;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1724;217;349;392;392;392;392 -144;'508;Mozambique;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;76;39;9;39;22;23 -144;'508;Mozambique;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;361;25;117;177;177;177;177 -144;'508;Mozambique;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;151;228;318;249;253;116;231 -144;'508;Mozambique;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1363;192;232;215;215;215;215 -144;'508;Mozambique;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2763;3996;3206;3533;5073;4968;3977 -144;'508;Mozambique;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;765;1208;683;1906;2196;2465;1809 -144;'508;Mozambique;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;208;485;338;261;311;250;164 -144;'508;Mozambique;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;14;3599;3929;2938;530;1 -144;'508;Mozambique;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5209;6324;7399;5688;4253;2648;3915 -144;'508;Mozambique;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1179;4675;36026;5458;5851;10592;7372 -144;'508;Mozambique;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0 -144;'508;Mozambique;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2 -144;'508;Mozambique;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;2 -144;'508;Mozambique;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125;1 -144;'508;Mozambique;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;0 -144;'508;Mozambique;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;181;1 -144;'508;Mozambique;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23502;21010;19781;16696;20990;18272;16838 -144;'508;Mozambique;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108;557;766;653;368;679;139 -144;'508;Mozambique;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;271;384;168;69;307;26;19 -144;'508;Mozambique;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -144;'508;Mozambique;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;750;940;1585;1016;1347;1226;1437 -144;'508;Mozambique;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;2082;173;288;46;759;3519 -144;'508;Mozambique;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40768;61147;59143;44617;54115;59640;74503 -144;'508;Mozambique;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2420;120544;2061;2054;1496;3257;4402 -144;'508;Mozambique;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;41;36;20;178;175;48 -144;'508;Mozambique;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;574;180;180;180;180;180;180 -144;'508;Mozambique;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2039;2338;1268;1005;1234;761;620 -144;'508;Mozambique;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;0;15;8;8 -144;'508;Mozambique;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4764;4821;6085;4849;4704;5973;6331 -144;'508;Mozambique;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;209;40;40;4;4;10 -144;'508;Mozambique;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23701;32846;31902;23972;32354;34195;41417 -144;'508;Mozambique;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1822;120092;1743;1826;1284;3031;4023 -144;'508;Mozambique;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10245;21101;19852;14771;15645;18536;26087 -144;'508;Mozambique;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;62;98;8;13;34;181 -28;'104;Myanmar;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;433578;467679;406704;332773;193426.36;331080;323616 -28;'104;Myanmar;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;333102;390875;367408;258776;211784.49;232374;330907.89 -28;'104;Myanmar;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;5488;6080;6080;12013;9646;5086;3712;6035;6279;7414;6305;4839;5130;8275;9190;6595;10607;10400;10760;9770;15745;14527;9934;14358;10429;11069;11995;18261;18261;4721;4721;4961;1886;4986;11427;9743;11961;11843;18875;19633;29255;28189;22024;26663;26019;26195;23959;24281;24487;46246;81594;119577;120527;203375;208408;220520;283200;319884;250432;195261;99343.36;211029;213151 -28;'104;Myanmar;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;19459;26629;34524;31731;31080;34280;26965;32546;33475;23914;29393;28321;43533;48477;32825;57472;53187;57805;83852;119335;110173;94035;122192;120986;127285;79385;115316;126356;137753;158971;405498;325354;294127;176323;259258;204640;162034;203088;225892;247110;292667;320984;421551;361605;731931;724303;783820;935970;674914;959534;1134551;1205764;1637829;1505009;457738;490893;291939;290549;289550;244356;197921.49;225911;323471.89 -28;'104;Myanmar;1861;Roundwood;5516;Production;m3;11741000;11773000;12022000;12279000;12557000;12837000;13361000;13543000;13818000;14114000;14447000;14679000;15076000;15619000;15742000;16116000;16546000;17438000;17877000;18227000;18503000;18885000;18884000;18572000;19215000;19521000;19727000;19956000;20401000;35923000;36233000;36415000;35661000;35139000;34269000;34947000;34804000;34260000;37571000;38083000;39365000;38877400;42191100;41755900;42548000;42548000;42548000;42548000;42548000;42457000;44086000;44240000;45146000;44846000;43146000;43146000;42646000;42646000;42647672;42648098;42648098;42648098;42648098 -28;'104;Myanmar;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;253;168;1132;5;1247;998;0;0;107;363 -28;'104;Myanmar;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;156;85;534;3;117;121;0;0;498;543 -28;'104;Myanmar;1861;Roundwood;5916;Export quantity;m3;73400;97500;140000;135000;122000;100800;52400;71900;80900;57900;113200;111300;171700;85900;66200;57000;61900;76700;143600;209300;230800;205000;262400;268200;259300;255900;418400;473200;603100;1416680;1342242;1342990;1167276;871100;825000;495100;448300;673300;1002000;1115500;1011200;1166869;1354682;1497267;2945663;2081885;1826471;1572758;1365756;1864492;2283973;2137901;2751784;2362318;590536;563768;38992;26504;57554;3621;22000;6587;5050 -28;'104;Myanmar;1861;Roundwood;5922;Export value;1000 USD;8639;13085;17500;16900;15250;18641;13944;19685;18314;10193;17207;17473;29223;22959;18515;29965;28257;34682;40503;52741;61459;52033;74006;83308;81240;41327;88293;109403;106804;137617;250498;248180;236424;123326;165200;144127;98106;137200;185760;206720;194618;220707;289384;238196;557158;581568;609022;769286;547166;814195;979853;1061160;1460076;1343894;207246;184883;28554;22226;30707;3351;17682;6188;3984 -28;'104;Myanmar;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;300000;360000;360000;360000;360000;360000;360000;360000;361672;362098;362098;362098;362098 -28;'104;Myanmar;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1075;633;0;0;107;357 -28;'104;Myanmar;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;56;53;0;0;498;521 -28;'104;Myanmar;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4517;138;38714;0;0;312;0 -28;'104;Myanmar;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;294;11;13166;11;0;22;0 -28;'104;Myanmar;1863;Roundwood, non-coniferous;5516;Production;m3;11741000;11773000;12022000;12279000;12557000;12837000;13361000;13543000;13818000;14114000;14447000;14679000;15076000;15619000;15742000;16116000;16546000;17438000;17877000;18227000;18503000;18885000;18884000;18572000;19215000;19521000;19727000;19956000;20401000;35923000;36233000;36415000;35661000;35139000;34269000;34947000;34804000;34260000;37571000;38083000;39365000;38877400;42191100;41755900;42548000;42548000;42548000;42548000;42548000;42457000;43786000;43880000;44786000;44486000;42786000;42786000;42286000;42286000;42286000;42286000;42286000;42286000;42286000 -28;'104;Myanmar;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;172;365;0;0;0;6 -28;'104;Myanmar;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;61;68;0;0;0;22 -28;'104;Myanmar;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34475;26366;18840;3621;22000;6275;5050 -28;'104;Myanmar;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28260;22215;17541;3340;17682;6166;3984 -28;'104;Myanmar;1864;Wood fuel;5516;Production;m3;9475000;9674000;9878000;10090000;10312000;10544000;10786000;11037000;11296000;11564000;11839000;12123000;12411000;12701000;12989000;13274000;13558000;13843000;14133000;14431000;14738000;15052000;15372000;15695000;16019000;16345000;16672000;16999000;17324000;32270000;32220000;32380000;32400000;32480000;31460000;31960000;31497000;32150000;34223000;34471000;35403000;34938500;37953500;37560000;38286000;38286000;38286000;38286000;38286000;38286000;38286000;38286000;38286000;38286000;38286000;38286000;38286000;38286000;38287672;38288098;38288098;38288098;38288098 -28;'104;Myanmar;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;1009;;74;44;0;0;0;223 -28;'104;Myanmar;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;442;;23;11;0;0;0;45 -28;'104;Myanmar;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94;1300;1300;1500;300;300;300;0;0;0;0;19;19;19;19;19;19;19;19;1303;46;46;4642;4678;71;;;;;;; -28;'104;Myanmar;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;139;139;180;31;32;32;0;0;0;0;6;6;6;6;6;6;6;6;1172;75;75;91;92;47;;;;;;; -28;'104;Myanmar;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;1672;2098;2098;2098;2098 -28;'104;Myanmar;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;0;0;0;0;217 -28;'104;Myanmar;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;0;0;0;0;23 -28;'104;Myanmar;1628;Wood fuel, non-coniferous;5516;Production;m3;9475000;9674000;9878000;10090000;10312000;10544000;10786000;11037000;11296000;11564000;11839000;12123000;12411000;12701000;12989000;13274000;13558000;13843000;14133000;14431000;14738000;15052000;15372000;15695000;16019000;16345000;16672000;16999000;17324000;32270000;32220000;32380000;32400000;32480000;31460000;31960000;31497000;32150000;34223000;34471000;35403000;34938500;37953500;37560000;38286000;38286000;38286000;38286000;38286000;38286000;38286000;38286000;38286000;38286000;38286000;38286000;38286000;38286000;38286000;38286000;38286000;38286000;38286000 -28;'104;Myanmar;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;44;0;0;0;6 -28;'104;Myanmar;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;0;0;0;22 -28;'104;Myanmar;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;1009;;;;;;; -28;'104;Myanmar;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;442;;;;;;; -28;'104;Myanmar;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94;1300;1300;1500;300;300;300;0;0;0;0;19;19;19;19;19;19;19;19;1303;46;46;4642;4678;71;;;;;;; -28;'104;Myanmar;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;139;139;180;31;32;32;0;0;0;0;6;6;6;6;6;6;6;6;1172;75;75;91;92;47;;;;;;; -28;'104;Myanmar;1865;Industrial roundwood;5516;Production;m3;2266000;2099000;2144000;2189000;2245000;2293000;2575000;2506000;2522000;2550000;2608000;2556000;2665000;2918000;2753000;2842000;2988000;3595000;3744000;3796000;3765000;3833000;3512000;2877000;3196000;3176000;3055000;2957000;3077000;3653000;4013000;4035000;3261000;2659000;2809000;2987000;3307000;2110000;3348000;3612000;3962000;3938900;4237600;4195900;4262000;4262000;4262000;4262000;4262000;4171000;5800000;5954000;6860000;6560000;4860000;4860000;4360000;4360000;4360000;4360000;4360000;4360000;4360000 -28;'104;Myanmar;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;238;153;123;5;1173;954;0;0;107;140 -28;'104;Myanmar;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;147;76;92;3;94;110;0;0;498;498 -28;'104;Myanmar;1865;Industrial roundwood;5916;Export quantity;m3;73400;97500;140000;135000;122000;100800;52400;71900;80900;57900;113200;111300;171700;85900;66200;57000;61900;76700;143600;209300;230800;205000;262400;268200;259300;255900;418400;473200;603100;1416680;1342242;1342896;1165976;869800;823500;494800;448000;673000;1002000;1115500;1011200;1166869;1354663;1497248;2945644;2081866;1826452;1572739;1365737;1864473;2282670;2137855;2751738;2357676;585858;563697;38992;26504;57554;3621;22000;6587;5050 -28;'104;Myanmar;1865;Industrial roundwood;5922;Export value;1000 USD;8639;13085;17500;16900;15250;18641;13944;19685;18314;10193;17207;17473;29223;22959;18515;29965;28257;34682;40503;52741;61459;52033;74006;83308;81240;41327;88293;109403;106804;137617;250498;248170;236285;123187;165020;144096;98074;137168;185760;206720;194618;220707;289378;238190;557152;581562;609016;769280;547160;814189;978681;1061085;1460001;1343803;207154;184836;28554;22226;30707;3351;17682;6188;3984 -28;'104;Myanmar;1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000 -28;'104;Myanmar;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;196;0;0;0;1031;633;0;0;107;140 -28;'104;Myanmar;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;38;0;0;0;44;53;0;0;498;498 -28;'104;Myanmar;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4378;156903;153654;238682;268100;211400;85400;25000;17000;22000;0;0;80198;75083;127050;84099;106000;166291;33324;29809;78473;50670;40330;33738;30676;10148;2139;4517;138;38714;0;0;312;0 -28;'104;Myanmar;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;542;6414;6213;13677;12726;9085;4797;1378;1149;1280;0;0;3256;4331;5649;6820;5640;10406;8294;2679;3463;5529;5010;5871;3451;1050;193;294;11;13166;11;0;22;0 -28;'104;Myanmar;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;196;0;0;0;1031;633;0;0;107;140 -28;'104;Myanmar;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;38;0;0;0;44;53;0;0;498;498 -28;'104;Myanmar;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4378;156903;153654;238682;268100;211400;85400;25000;17000;22000;0;0;80198;75083;127050;84099;106000;166291;33324;29809;78473;50670;40330;33738;30676;10148;2139;4517;138;38714;0;0;312;0 -28;'104;Myanmar;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;542;6414;6213;13677;12726;9085;4797;1378;1149;1280;0;0;3256;4331;5649;6820;5640;10406;8294;2679;3463;5529;5010;5871;3451;1050;193;294;11;13166;11;0;22;0 -28;'104;Myanmar;1867;Industrial roundwood, non-coniferous;5516;Production;m3;2266000;2099000;2144000;2189000;2245000;2293000;2575000;2506000;2522000;2550000;2608000;2556000;2665000;2918000;2753000;2842000;2988000;3595000;3744000;3796000;3765000;3833000;3512000;2877000;3196000;3176000;3055000;2957000;3077000;3653000;4013000;4035000;3261000;2659000;2809000;2987000;3307000;2110000;3348000;3612000;3962000;3938900;4237600;4195900;4262000;4262000;4262000;4262000;4262000;4171000;5500000;5594000;6500000;6200000;4500000;4500000;4000000;4000000;4000000;4000000;4000000;4000000;4000000 -28;'104;Myanmar;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;42;153;123;5;142;321;0;0;0;0 -28;'104;Myanmar;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;109;76;92;3;50;57;0;0;0;0 -28;'104;Myanmar;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1412302;1185339;1189242;927294;601700;612100;409400;423000;656000;980000;1115500;1011200;1086671;1279580;1370198;2861545;1975866;1660161;1539415;1335928;1786000;2232000;2097525;2718000;2327000;575710;561558;34475;26366;18840;3621;22000;6275;5050 -28;'104;Myanmar;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;137075;244084;241957;222608;110461;155935;139299;96696;136019;184480;206720;194618;217451;285047;232541;550332;575922;598610;760986;544481;810726;973152;1056075;1454130;1340352;206104;184643;28260;22215;17541;3340;17682;6166;3984 -28;'104;Myanmar;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;42;121;0;0;142;321;0;0;0;0 -28;'104;Myanmar;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;109;61;0;2;50;57;0;0;0;0 -28;'104;Myanmar;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1412302;1185339;1189242;927294;601700;612100;409400;423000;656000;980000;1115500;1011200;1086671;1279580;1370198;2819202;1958550;1653605;1538437;1335462;1786000;2232000;2090000;2718000;2327000;575710;561558;34475;26366;18840;3621;22000;6275;5050 -28;'104;Myanmar;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;137075;244084;241957;222608;110461;155935;139299;96696;136019;184480;206720;194618;217451;285047;232541;548406;574900;598094;760043;544039;810726;973152;1055450;1454130;1340352;206104;184643;28260;22215;17541;3340;17682;6166;3984 -28;'104;Myanmar;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;32;123;5;0;0;0;0;0;0 -28;'104;Myanmar;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;15;92;1;0;0;0;0;0;0 -28;'104;Myanmar;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42343;17316;6556;978;466;0;0;7525;0;0;0;0;0;0;0;0;0;0;0 -28;'104;Myanmar;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1926;1022;516;943;442;0;0;625;0;0;0;0;0;0;0;0;0;0;0 -28;'104;Myanmar;1868;Sawlogs and veneer logs;5516;Production;m3;1600000;1419000;1450000;1480000;1520000;1552000;1817000;1731000;1728000;1737000;1776000;1704000;1793000;2026000;1840000;1909000;2035000;2622000;2751000;2782000;2729000;2775000;2432000;1774000;2070000;2027000;1883000;1762000;1859000;2413000;2783000;2791000;2004000;1388000;1523000;1686000;1989000;2110000;2085000;2337000;2662000;2612500;2884700;2815900;2849000;2849000;2849000;2849000;2849000;2758000;4200000;4354000;5260000;4760000;3060000;3060000;2560000;2560000;2560000;2560000;2560000;2560000;2560000 -28;'104;Myanmar;1868;Sawlogs and veneer logs;5916;Export quantity;m3;73400;97500;140000;135000;122000;100800;52400;71900;80900;57900;113200;111300;171700;85900;66200;57000;61900;76700;143600;209300;230800;205000;262400;268200;259300;255900;418400;473200;603100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -28;'104;Myanmar;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;8639;13085;17500;16900;15250;18641;13944;19685;18314;10193;17207;17473;29223;22959;18515;29965;28257;34682;40503;52741;61459;52033;74006;83308;81240;41327;88293;109403;106804;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -28;'104;Myanmar;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000 -28;'104;Myanmar;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;1600000;1419000;1450000;1480000;1520000;1552000;1817000;1731000;1728000;1737000;1776000;1704000;1793000;2026000;1840000;1909000;2035000;2622000;2751000;2782000;2729000;2775000;2432000;1774000;2070000;2027000;1883000;1762000;1859000;2413000;2783000;2791000;2004000;1388000;1523000;1686000;1989000;2110000;2085000;2337000;2662000;2612500;2884700;2815900;2849000;2849000;2849000;2849000;2849000;2758000;3900000;3994000;4900000;4400000;2700000;2700000;2200000;2200000;2200000;2200000;2200000;2200000;2200000 -28;'104;Myanmar;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;73400;97500;140000;135000;122000;100800;52400;71900;80900;57900;113200;111300;171700;85900;66200;57000;61900;76700;143600;209300;230800;205000;262400;268200;259300;255900;418400;473200;603100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -28;'104;Myanmar;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;8639;13085;17500;16900;15250;18641;13944;19685;18314;10193;17207;17473;29223;22959;18515;29965;28257;34682;40503;52741;61459;52033;74006;83308;81240;41327;88293;109403;106804;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -28;'104;Myanmar;1871;Other industrial roundwood;5516;Production;m3;666000;680000;694000;709000;725000;741000;758000;775000;794000;813000;832000;852000;872000;892000;913000;933000;953000;973000;993000;1014000;1036000;1058000;1080000;1103000;1126000;1149000;1172000;1195000;1218000;1240000;1230000;1244000;1257000;1271000;1286000;1301000;1318000;0;1263000;1275000;1300000;1326400;1352900;1380000;1413000;1413000;1413000;1413000;1413000;1413000;1600000;1600000;1600000;1800000;1800000;1800000;1800000;1800000;1800000;1800000;1800000;1800000;1800000 -28;'104;Myanmar;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;666000;680000;694000;709000;725000;741000;758000;775000;794000;813000;832000;852000;872000;892000;913000;933000;953000;973000;993000;1014000;1036000;1058000;1080000;1103000;1126000;1149000;1172000;1195000;1218000;1240000;1230000;1244000;1257000;1271000;1286000;1301000;1318000;0;1263000;1275000;1300000;1326400;1352900;1380000;1413000;1413000;1413000;1413000;1413000;1413000;1600000;1600000;1600000;1800000;1800000;1800000;1800000;1800000;1800000;1800000;1800000;1800000;1800000 -28;'104;Myanmar;1630;Wood charcoal;5510;Production;t;60898;62342;63820;65333;66882;68467;70091;71753;73454;75195;77174;79212;81295;83396;85502;87392;89273;91157;93075;95051;97083;99163;101281;103424;105572;107866;110175;112491;114806;117099;119522;138735;119000;100000;55000;42000;8000;11000;25000;23000;28000;32600;51300;67634;74504;76561;224292;309814;331433;348171;363490;329227;356828;354157;320623;286712;323825;372436;438167;345000;260000;405000;570000 -28;'104;Myanmar;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;268;432;474;474;2;14;830;236;395;13;58;7;59;59 -28;'104;Myanmar;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;92;81;81;2;34;306;199;160;2;19;2;21;21 -28;'104;Myanmar;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16800;18100;18100;9500;9800;11300;11300;13400;21007;15000;15000;27300;39434;45304;47361;67392;150414;169419;183537;196373;159590;184633;179365;143195;106845;141555;187590;250780;155093;71584;215472;381166 -28;'104;Myanmar;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1239;1298;1298;678;641;619;619;647;1059;1000;1000;1511;2897;9927;11858;15457;17147;19516;21714;32951;24684;31765;27890;21548;15419;22626;32818;44282;26042;11453;44165;90165 -28;'104;Myanmar;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;124;318;318;318;318;797;1125;213;5;12;18;123;126 -28;'104;Myanmar;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;30;30;30;30;357;455;129;13;17;52;54;77 -28;'104;Myanmar;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;0;0;0;0;54;54;54;54;54;54;54;18769;10120;8314;8314;2304;623;407;4045;6377;40;163;163;163;163 -28;'104;Myanmar;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;0;0;0;0;179;179;179;179;179;179;179;413;689;785;785;358;6;126;1337;2303;1;10;10;10;10 -28;'104;Myanmar;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;316;316;316;316;129;97;17;4;3;9;3;6 -28;'104;Myanmar;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;28;28;48;28;30;13;16;51;13;36 -28;'104;Myanmar;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;40;40;56;6;6;6;6;6;6 -28;'104;Myanmar;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;1;1;1;0;0;0;0;0;0 -28;'104;Myanmar;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;124;2;2;2;2;668;1028;196;1;9;9;120;120 -28;'104;Myanmar;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;2;2;2;2;309;427;99;0;1;1;41;41 -28;'104;Myanmar;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3800;3800;3100;700;300;300;0;0;0;0;54;54;54;54;54;54;54;18769;10120;8314;8314;2304;583;367;3989;6371;34;157;157;157;157 -28;'104;Myanmar;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;345;345;277;36;12;12;0;0;0;0;179;179;179;179;179;179;179;413;689;785;785;358;5;125;1336;2303;1;10;10;10;10 -28;'104;Myanmar;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;504;182;33;91;6 -28;'104;Myanmar;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;41;80;17;8 -28;'104;Myanmar;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5982;1195;1195;1195;1619 -28;'104;Myanmar;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1677;335;335;335;382 -28;'104;Myanmar;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;485;157;4;5;0 -28;'104;Myanmar;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;22;3;3;0 -28;'104;Myanmar;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;424 -28;'104;Myanmar;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47 -28;'104;Myanmar;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;25;29;86;6 -28;'104;Myanmar;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;19;77;14;8 -28;'104;Myanmar;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5982;1195;1195;1195;1195 -28;'104;Myanmar;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1677;335;335;335;335 -28;'104;Myanmar;1872;Sawnwood;5516;Production;m3;472100;522000;520000;570000;568000;608600;609900;556300;598100;636800;629000;670200;605700;465700;406700;334700;414700;390700;613500;703400;708000;722200;674000;664100;615300;568300;392000;282500;374700;296000;282000;302000;339000;347000;347000;351000;372000;299000;298000;545000;671000;1011800;1001300;1133000;1591300;1610000;1610000;1610400;1610400;1610000;1610000;1779600;1879600;1779600;1829600;1830000;1830000;1830000;1830000;1670000;1670000;1670000;1670000 -28;'104;Myanmar;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;306;535;32;5;41;272;0;343;186;0;126;464;343;1142;865;1219;4896;11734;3169;4341;5160 -28;'104;Myanmar;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;218;480;13;1;26;210;0;136;38;8;94;361;144;206;134;240;878;1506;348;498;513 -28;'104;Myanmar;1872;Sawnwood;5916;Export quantity;m3;79900;99000;123000;115000;103000;113800;102600;100400;121900;115500;109000;109200;105100;96900;103900;74400;63400;55500;99400;148600;130900;103600;128400;109700;93800;76700;49200;34100;54900;39000;281800;175900;149100;124600;208500;171800;223600;286000;184000;154700;278900;269000;481475;335644;467551;328475;529179;179176;207875;162190;156146;168328;163469;92231;212550;146206;111552;137001;139018;185994;176115;140476;299168 -28;'104;Myanmar;1872;Sawnwood;5922;Export value;1000 USD;10820;13544;17024;14831;15830;15639;13021;12861;15161;13721;12186;10848;14310;25518;14310;27507;24930;23123;43349;66594;48714;42002;48186;37678;46045;38058;27023;16953;30949;21354;155000;75068;54122;48136;87577;53544;58150;60588;38896;35837;93802;84728;114305;102272;143500;100272;131336;123998;86224;96382;87814;95108;120307;94808;140737;161620;121868;157206;132057;139208;103990;103123;181240 -28;'104;Myanmar;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20000;30000;38000;38000;38000;38000;0;0;0;0;0;0;77200;60900;79600;79600;80000;80000;79600;79600;79600;79600;79600;79600;80000;80000;80000;80000;70000;70000;70000;70000 -28;'104;Myanmar;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;0;4;90;235;602;609;1154;4845;10542;3169;4275;5156 -28;'104;Myanmar;1632;Sawnwood, 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;1;25;70;105;105;204;852;1227;348;492;508 -28;'104;Myanmar;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18100;27500;35800;29100;29000;21000;16000;42000;28700;36300;50000;54522;52565;48042;5475;2708;5176;2631;2314;1733;2095;5469;3039;5550;4206;3552;27;18;149;115;12;168 -28;'104;Myanmar;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;863;1975;2053;2170;2122;1217;1490;3536;1645;2533;3530;4548;4017;4391;1111;1483;4982;1593;671;584;585;1175;1451;1633;1302;3824;10;7;54;150;109;46 -28;'104;Myanmar;1633;Sawnwood, non-coniferous;5516;Production;m3;472100;522000;520000;570000;568000;608600;609900;556300;598100;636800;629000;670200;605700;465700;406700;334700;414700;390700;613500;703400;708000;722200;674000;664100;615300;568300;392000;282500;374700;296000;282000;282000;309000;309000;309000;313000;334000;299000;298000;545000;671000;1011800;1001300;1055800;1530400;1530400;1530400;1530400;1530400;1530400;1530400;1700000;1800000;1700000;1750000;1750000;1750000;1750000;1750000;1600000;1600000;1600000;1600000 -28;'104;Myanmar;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;306;535;32;5;41;272;0;343;186;0;122;374;108;540;256;65;51;1192;0;66;4 -28;'104;Myanmar;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;218;480;13;1;26;210;0;136;38;8;93;336;74;101;29;36;26;279;0;6;5 -28;'104;Myanmar;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;79900;99000;123000;115000;103000;113800;102600;100400;121900;115500;109000;109200;105100;96900;103900;74400;63400;55500;99400;148600;130900;103600;128400;109700;93800;76700;49200;34100;54900;39000;281800;157800;121600;88800;179400;142800;202600;270000;142000;126000;242600;219000;426953;283079;419509;323000;526471;174000;205244;159876;154413;166233;158000;89192;207000;142000;108000;136974;139000;185845;176000;140464;299000 -28;'104;Myanmar;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;10820;13544;17024;14831;15830;15639;13021;12861;15161;13721;12186;10848;14310;25518;14310;27507;24930;23123;43349;66594;48714;42002;48186;37678;46045;38058;27023;16953;30949;21354;155000;74205;52147;46083;85407;51422;56933;59098;35360;34192;91269;81198;109757;98255;139109;99161;129853;119016;84631;95711;87230;94523;119132;93357;139104;160318;118044;157196;132050;139154;103840;103014;181194 -28;'104;Myanmar;1634;Veneer sheets;5516;Production;m3;600;1400;1400;300;200;500;1600;2800;300;200;200;100;100;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;500;500;100;350;100;100;0;2000;1000;1000;700;3700;5000;2500;22000;32000;33000;33000;33000;36000;36000;36000;64000;170000;285000;225000;220000;220000;220000;310000;310000;310000 -28;'104;Myanmar;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;464;487;926;5518;6492;9749;9010;4938;6211;2733;3221;5249 -28;'104;Myanmar;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;345;384;545;3033;2565;3261;2858;2555;6336;4039;4323;3619 -28;'104;Myanmar;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;300;0;0;0;0;0;0;513;572;5882;4684;9108;9351;16177;28217;30160;30678;30311;30622;26553;28661;52091;157489;256381;191598;117173;89865;102917;201910;227316;135360 -28;'104;Myanmar;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;172;189;0;0;0;0;0;0;216;159;1880;2818;3299;3875;8101;9000;13116;10911;11935;11742;9328;10901;24025;74670;117873;102535;64960;64110;48986;54675;53694;32684 -28;'104;Myanmar;1873;Wood-based panels;5516;Production;m3;200;500;1000;1000;2000;2400;1900;3000;6000;10000;10000;11600;11600;11600;11600;11600;11600;12000;12000;12000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;10000;17800;8000;10000;8000;8000;55000;53000;80000;128000;117000;110000;111800;116000;116000;116000;115770;115770;115770;115770;115770;115770;115770;115770;115770;115770;115770;159821;159821;159821 -28;'104;Myanmar;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;337;198;198;1700;1700;3800;3800;2300;2300;4300;2034;6379;5072;4549;4721;7576;5861;6551;10152;17429;14675;15494;47823;61682;129568;114911;106499;114186;107019;63670.55;126037;94571 -28;'104;Myanmar;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116;45;45;491;491;701;701;357;357;500;542;1146;926;749;937;1109;1247;1663;4355;8548;10194;10912;26568;36675;47368;41213;45051;41574;36420;21425.43;39805;29863 -28;'104;Myanmar;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1600;5900;10000;16900;19000;21100;19900;2000;46000;44800;47821;63380;49070;60774;69674;66882;23513;20116;23036;19045;18024;16455;17130;17177;11071;11652;9145;3101;4597;6508;6906;8704 -28;'104;Myanmar;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;473;1749;3218;5438;6204;5147;4669;589;3278;3088;12669;13235;14643;17173;22206;18707;12125;10799;11164;11477;11700;10996;10572;10261;8717;9300;7063;2414;2501;3458;8935;9945 -28;'104;Myanmar;1640;Plywood and LVL;5516;Production;m3;200;500;1000;1000;2000;2400;1900;3000;6000;10000;10000;11600;11600;11600;11600;11600;11600;12000;12000;12000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;10000;17800;8000;10000;8000;8000;55000;53000;80000;128000;117000;110000;111800;116000;116000;116000;115770;115770;115770;115770;115770;115770;115770;115770;115770;115770;115770;159821;159821;159821 -28;'104;Myanmar;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;0;0;1500;1500;3700;3700;2000;2000;4000;2034;1125;1020;497;669;3524;1809;2499;3480;5962;3826;4645;29319;43147;70725;72683;63571;57377;57531;33705;38612;42025 -28;'104;Myanmar;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;0;0;426;426;669;669;283;283;426;542;245;278;101;289;461;599;1015;1297;2390;3181;3899;14442;24945;27336;28901;32215;29409;25980;13355;22390;18230 -28;'104;Myanmar;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1600;5900;10000;16900;19000;21100;19900;2000;46000;44800;47821;62752;48442;60146;69046;66254;22885;19488;23028;18907;17545;15976;16921;16974;10451;11111;8607;3020;4483;6394;6872;8670 -28;'104;Myanmar;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;473;1749;3218;5438;6204;5147;4669;589;3278;3088;12669;13113;14521;17051;22084;18585;12003;10677;11113;11384;11435;10731;10473;10193;7048;7605;5367;2340;2293;3250;8877;9887 -28;'104;Myanmar;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -28;'104;Myanmar;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -28;'104;Myanmar;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;505;1000;1000;1000;1000;1000;1000;2402;5340;2648;2648;2362;1895;6209;7517;7517;13379;9644;13538.9;51248;22006 -28;'104;Myanmar;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98;180;180;180;180;180;180;972;2756;1871;1871;1822;1452;3107;2141;2141;2601;1895;1705.41;5541;3863 -28;'104;Myanmar;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;628;628;628;628;628;628;628;8;98;361;361;91;85;502;502;502;47;80;80;0;0 -28;'104;Myanmar;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;122;122;122;122;122;122;122;51;65;230;230;64;33;1634;1634;1634;16;150;150;0;0 -28;'104;Myanmar;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;272;171;27;27;123;21;683;27;27;93;24;17;36;11 -28;'104;Myanmar;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110;76;12;12;119;71;177;14;14;23;6;6;9;2 -28;'104;Myanmar;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;137;198;198;200;200;100;100;300;300;300;0;4749;3052;3052;3052;3052;3052;3052;3998;5956;8174;8174;16019;16619;51951;34684;35384;43337;39820;16409.65;36141;30529 -28;'104;Myanmar;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;45;45;65;65;32;32;74;74;74;0;803;468;468;468;468;468;468;1976;3326;5130;5130;10185;10207;16748;10157;10681;9541;8539;6359.02;11865;7768 -28;'104;Myanmar;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;40;118;118;118;118;118;39;36;34;34;34;34;34 -28;'104;Myanmar;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;28;35;35;35;35;35;61;62;58;58;58;58;58 -28;'104;Myanmar;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;100;100;300;300;300;0;2197;500;500;500;500;500;500;612;1627;2915;2915;3427;1949;2700;2624;3570;5076;5101;1980.1;1975;3377 -28;'104;Myanmar;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;65;32;32;74;74;74;0;535;200;200;200;200;200;200;388;1030;1974;1974;2245;1289;1882;1369;1646;2330;2019;774.02;964;1548 -28;'104;Myanmar;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -28;'104;Myanmar;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -28;'104;Myanmar;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;273;273;273;273;273;273;273;3145;4166;5187;5187;12158;14523;47362;29717;31611;36502;32682;13822;30899;23681 -28;'104;Myanmar;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;57;57;57;57;57;57;1497;2220;3115;3115;7764;8809;14359;8109;8825;6683;5904;5387;10623;5567 -28;'104;Myanmar;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;118;118;118;118;118;5;2;0;0;0;0;0 -28;'104;Myanmar;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;35;35;35;35;35;3;4;0;0;0;0;0 -28;'104;Myanmar;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;100;100;0;0;0;0;0;0;0;0;2279;2279;2279;2279;2279;2279;2279;241;163;72;72;434;147;1889;2343;203;1759;2037;607.55;3267;3471 -28;'104;Myanmar;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;18;18;0;0;0;0;0;0;0;0;211;211;211;211;211;211;211;91;76;41;41;176;109;507;679;210;528;616;198;278;653 -28;'104;Myanmar;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;34;34;34;34;34;34;34 -28;'104;Myanmar;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;58;58;58;58;58;58;58 -28;'104;Myanmar;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;137;98;98;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -28;'104;Myanmar;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;27;27;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -28;'104;Myanmar;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;500;10000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;15000;18000;6000;6000;3000;2000;2000;2000;1000;9000;9000;9000;88000;49000;67000;70000;83000;63300;60400;60400;83200;77800;77800;77800;77800;77800;77800;77800;77800;77800;77800;77800;76600;76600;485000;485000;485000;356000;301374 -28;'104;Myanmar;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96;51;51;0;0;200;200;200;300;300;400;3084;2405;2405;2405;2405;2405;2405;2116;3442;2419;2419;1868;3257;1317;2170;2484;65441;65988;1832.51;2389;1711 -28;'104;Myanmar;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;8;8;0;0;113;113;116;222;222;242;799;759;759;759;759;759;759;1185;1624;1429;1429;1331;3132;1021;2276;2165;6441;6136;1007.49;1587;1610 -28;'104;Myanmar;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;0;0;100;100;0;0;0;0;0;0;0;0;0;0;0;0;0;5322;14212;2900;2900;4168;5751;4521;7522;6244;5182;5213;3656.01;3523;4407 -28;'104;Myanmar;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;0;0;88;88;0;0;0;0;0;0;0;0;0;0;0;0;0;3194;9270;2214;2214;2677;2485;1292;4403;2393;2472;2363;2552.14;5419;1805 -28;'104;Myanmar;1878;Pulp for paper;5510;Production;t;;;;;;;;;;;500;10000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;15000;18000;6000;6000;3000;2000;2000;2000;1000;9000;9000;9000;19000;17000;39000;42000;47000;18200;14500;15200;39800;39800;39800;39800;39800;39800;39800;39800;39800;39800;39800;39800;38600;38600;1000;1000;1000;1000;1000 -28;'104;Myanmar;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;200;200;200;300;300;400;921;921;921;921;921;921;921;988;607;1358;1358;1500;3100;1151;2135;2449;1475;899;1308.51;2123;1711 -28;'104;Myanmar;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;113;113;116;222;222;242;507;507;507;507;507;507;507;811;457;1023;1023;1189;3111;876;2243;2132;999;599;823.49;1533;1610 -28;'104;Myanmar;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;0;0;100;100;0;0;0;0;0;0;0;0;0;0;0;0;0;4893;13673;2172;2172;3730;1789;532;1624;159;8;8;38;1170;33 -28;'104;Myanmar;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;0;0;88;88;0;0;0;0;0;0;0;0;0;0;0;0;0;3170;9188;2101;2101;2634;2153;624;2622;38;4;4;16;3504;39 -28;'104;Myanmar;1875;Wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;700;1400;1200;1200;1200;1200;1200;1200;1200;1200;1200;1200;1200;1200;;;;;;; -28;'104;Myanmar;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;200;200;200;300;300;400;921;921;921;921;921;921;921;1058;930;1677;1677;1610;3422;1004;2086;2763;1798;1216;1631.51;2440;1939 -28;'104;Myanmar;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;113;113;116;222;222;242;507;507;507;507;507;507;507;854;618;1180;1180;1103;3266;630;2021;2287;1160;753;980.49;1690;1632 -28;'104;Myanmar;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;1066;1066;1066;8;8;8;8;8;8;8;8;8;8 -28;'104;Myanmar;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;392;392;392;4;4;4;4;4;4;4;4;4;4 -28;'104;Myanmar;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;29;232;31;247;170;80 -28;'104;Myanmar;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;82;209;122;167;165;176 -28;'104;Myanmar;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;700;1400;1200;1200;1200;1200;1200;1200;1200;1200;1200;1200;1200;1200;;;;;;; -28;'104;Myanmar;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;;;;;;; -28;'104;Myanmar;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;;;;;;; -28;'104;Myanmar;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1058;1058;1058;0;0;0;;;;;;; -28;'104;Myanmar;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;388;388;388;0;0;0;;;;;;; -28;'104;Myanmar;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;200;200;200;300;300;400;921;921;921;921;921;921;921;988;607;1354;1354;1287;3099;653;1735;2411;1243;862;1061.51;1947;1536 -28;'104;Myanmar;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;113;113;116;222;222;242;507;507;507;507;507;507;507;811;457;1019;1019;942;3105;453;1833;2044;790;470;652.49;1364;1295 -28;'104;Myanmar;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;8;8;8;8;8;8;8;8;8;8 -28;'104;Myanmar;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4;4;4;4;4;4;4;4 -28;'104;Myanmar;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;200;200;200;300;300;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;13;83;91;91 -28;'104;Myanmar;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;113;113;116;222;222;242;242;242;242;242;242;242;242;242;242;242;242;242;242;242;242;242;242;4;42;45;45 -28;'104;Myanmar;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;521;521;521;521;521;521;521;264;142;889;889;887;2699;253;1335;2006;843;849;978.51;1853;1442 -28;'104;Myanmar;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;265;265;265;265;265;265;265;186;133;695;695;700;2863;211;1591;1801;546;466;609.49;1311;1242 -28;'104;Myanmar;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;8;8;8;8;8;8;8;8;8;8 -28;'104;Myanmar;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4;4;4;4;4;4;4;4 -28;'104;Myanmar;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;5;0;0;0;3;3 -28;'104;Myanmar;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;2;0;1;8;8 -28;'104;Myanmar;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;324;65;65;65;0;0;0;;;;;;; -28;'104;Myanmar;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;383;82;82;82;0;0;0;;;;;;; -28;'104;Myanmar;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;323;323;323;323;323;323;323;323;323;323;323;323;323 -28;'104;Myanmar;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;161;161;161;161;161;161;161;161;161;161;161;161;161 -28;'104;Myanmar;1668;Pulp from fibres other than wood;5510;Production;t;;;;;;;;;;;500;10000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;15000;18000;6000;6000;3000;2000;2000;2000;1000;9000;9000;9000;19000;17000;39000;42000;47000;18200;13800;13800;38600;38600;38600;38600;38600;38600;38600;38600;38600;38600;38600;38600;38600;38600;1000;1000;1000;1000;1000 -28;'104;Myanmar;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;213;1;470;372;9;0;6;0;6;95 -28;'104;Myanmar;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;247;6;407;383;6;0;7;4;4;139 -28;'104;Myanmar;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;0;0;100;100;0;0;0;0;0;0;0;0;0;0;0;0;0;4885;12607;1106;1106;3722;1781;524;1616;151;0;0;30;1162;25 -28;'104;Myanmar;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;0;0;88;88;0;0;0;0;0;0;0;0;0;0;0;0;0;3166;8796;1709;1709;2630;2149;620;2618;34;0;0;12;3500;35 -28;'104;Myanmar;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;3;3;3;1;1;1;48;144;101;74;0;0;0 -28;'104;Myanmar;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;6;6;6;9;9;9;18;113;87;58;0;0;0 -28;'104;Myanmar;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;328;328;328;328;328;328;328;2915;2915;59327;124576;0;0;0 -28;'104;Myanmar;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;190;190;190;190;190;190;190;484;484;7119;14949;0;0;0 -28;'104;Myanmar;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69000;32000;28000;28000;36000;45100;45900;45200;43400;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;484000;484000;484000;355000;300374 -28;'104;Myanmar;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96;51;51;0;0;0;0;0;0;0;0;2163;1484;1484;1484;1484;1484;1484;1128;2835;1061;1061;368;157;166;35;35;63966;65089;524;266;0 -28;'104;Myanmar;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;8;8;0;0;0;0;0;0;0;0;292;252;252;252;252;252;252;374;1167;406;406;142;21;145;33;33;5442;5537;184;54;0 -28;'104;Myanmar;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;429;539;728;728;438;3962;3989;5898;6085;5174;5205;3618.01;2353;4374 -28;'104;Myanmar;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;24;82;113;113;43;332;668;1781;2355;2468;2359;2536.14;1915;1766 -28;'104;Myanmar;1876;Paper and paperboard;5510;Production;t;;;;;;;;400;400;400;500;2000;6700;10300;10300;10300;10300;10300;10300;10300;10300;10300;10300;10300;15000;23000;9000;8000;10000;11000;11000;11000;15000;15000;15000;15000;39000;41000;37400;39200;41600;49400;44900;42900;45100;45100;45100;45100;45100;45100;45100;45100;45100;45100;45100;45100;45100;45100;356000;356000;356000;269000;229000 -28;'104;Myanmar;1876;Paper and paperboard;5610;Import quantity;t;25200;29200;29200;50600;37800;19400;14700;31500;50000;34300;28500;21600;19700;14500;15500;17500;26100;25000;24700;22000;41300;37300;22400;21500;15500;12800;12500;19300;19300;5400;5400;10743;3660;9600;13700;13300;17300;16500;41500;31300;55200;51500;37399;39303;39303;39303;33841;33841;33841;46319;81864;142062;141982;242747;241833;248187;330365;343811;290148;226483;110363.79;163242;180477 -28;'104;Myanmar;1876;Paper and paperboard;5622;Import value;1000 USD;5488;6080;6080;12013;9646;5086;3712;6035;6279;7414;6305;4839;5130;8275;9190;6595;10607;10400;10760;9770;15745;14527;9934;14358;10429;11069;11995;18261;18261;4721;4721;4833;1833;4933;10936;9252;11147;11029;18402;19054;28533;27405;19861;24498;24498;24498;22065;22065;22065;40398;71006;107323;107430;174212;165105;167993;235480;268890;198507;144567;72228.43;164065;176736 -28;'104;Myanmar;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;211;0;0;0;0;0;0;0;0;0;0;279;279;279;279;279;279;279;341;857;796;796;796;796;853;894;1749;11296;11294;5410.5;3427.29;2396.29 -28;'104;Myanmar;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;186;0;0;0;0;0;0;0;0;0;0;119;119;119;119;119;119;119;347;565;595;595;595;595;773;832;1096;4711;6611;3766.34;4042;3256.89 -28;'104;Myanmar;2042;Graphic papers;5510;Production;t;;;;;;;;400;400;400;500;1500;3500;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;10000;15000;5000;5000;7000;5000;5000;5000;8000;8000;8000;8000;31000;20000;18000;18000;19300;20900;18700;18200;19100;19100;19100;19100;19100;19100;19100;19100;19100;19100;19100;19100;19100;19100;27000;27000;27000;11000;9000 -28;'104;Myanmar;2042;Graphic papers;5610;Import quantity;t;18800;22600;22600;44000;31200;15400;12700;25000;39500;27600;24400;18800;16700;11800;13900;13900;20300;14400;14700;12000;24300;22900;15900;16500;10600;10800;10500;16900;16900;4900;4900;10000;3200;8600;11800;11000;15000;12400;27000;25200;34300;34400;24525;28042;28042;28042;25417;25417;25417;30961;52227;108463;108463;179925;185133;218345;276845;251251;164638;115937;40741;84872;94838 -28;'104;Myanmar;2042;Graphic papers;5622;Import value;1000 USD;3906;4371;4371;10304;7937;3658;3013;4751;5215;5696;5197;4108;4215;6160;8459;4886;8271;6100;6200;5200;10106;9985;7210;11395;8142;8549;8210;12117;12117;4022;4022;4365;1590;4392;9502;7608;8380;8277;11562;13933;19383;19451;11496;14793;14793;14793;13210;13210;13210;25088;42126;83362;83362;130459;129721;147566;200706;204267;124817;84891;28969;97697;113641 -28;'104;Myanmar;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;;;;;;51;51;51;51;51;51;51;51;608;540;540;540;540;600;600;596;1208;405;17;17.29;17.29 -28;'104;Myanmar;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;;;;;;53;53;53;53;53;53;53;53;399;406;406;406;406;610;610;334;259;82;4;4;5.89 -28;'104;Myanmar;1671;Newsprint;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4500;6000;5900;5200;5400;5400;5400;5400;5400;5400;5400;5400;5400;5400;5400;5400;5400;5400;0;0;0;0;0 -28;'104;Myanmar;1671;Newsprint;5610;Import quantity;t;12600;15200;15200;;;6100;8200;14900;21300;15900;15500;11800;10800;9000;6500;7500;11900;6400;6700;4000;15700;12100;8500;12600;5300;5200;9400;11600;11600;3300;3300;8700;1700;400;8100;7300;9600;8100;8400;8900;11700;11700;6824;3930;3930;3930;3930;3930;3930;8860;20047;34935;34935;37652;42877;25396;33892;25743;16985;11684;2772;2776;4483 -28;'104;Myanmar;1671;Newsprint;5622;Import value;1000 USD;2132;2421;2421;;;963;1697;2288;3200;2716;2839;2160;2309;4101;3037;2354;4418;2400;2500;1500;5758;4506;3859;6218;4129;3752;6862;7540;7540;2268;2268;3449;611;211;5823;4199;4089;5246;3212;4196;6713;6713;2459;1749;1749;1749;1749;1749;1749;5652;13704;21966;21966;21656;22385;14671;18767;18604;13143;6857;1619;3159;4853 -28;'104;Myanmar;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;414;414;414;414;414;414;414;414;0;15;15;15;15 -28;'104;Myanmar;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;296;296;296;296;296;296;296;296;0;3;3;3;3 -28;'104;Myanmar;1674;Printing and writing papers;5510;Production;t;;;;;;;;400;400;400;500;1500;3500;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;10000;15000;5000;5000;7000;5000;5000;5000;8000;8000;8000;8000;31000;20000;18000;18000;14800;14900;12800;13000;13700;13700;13700;13700;13700;13700;13700;13700;13700;13700;13700;13700;13700;13700;27000;27000;27000;11000;9000 -28;'104;Myanmar;1674;Printing and writing papers;5610;Import quantity;t;6200;7400;7400;44000;31200;9300;4500;10100;18200;11700;8900;7000;5900;2800;7400;6400;8400;8000;8000;8000;8600;10800;7400;3900;5300;5600;1100;5300;5300;1600;1600;1300;1500;8200;3700;3700;5400;4300;18600;16300;22600;22700;17701;24112;24112;24112;21487;21487;21487;22101;32180;73528;73528;142273;142256;192949;242953;225508;147653;104253;37969;82096;90355 -28;'104;Myanmar;1674;Printing and writing papers;5622;Import value;1000 USD;1774;1950;1950;10304;7937;2695;1316;2463;2015;2980;2358;1948;1906;2059;5422;2532;3853;3700;3700;3700;4348;5479;3351;5177;4013;4797;1348;4577;4577;1754;1754;916;979;4181;3679;3409;4291;3031;8350;9737;12670;12738;9037;13044;13044;13044;11461;11461;11461;19436;28422;61396;61396;108803;107336;132895;181939;185663;111674;78034;27350;94538;108788 -28;'104;Myanmar;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;;;;;;51;51;51;51;51;51;51;51;194;126;126;126;126;186;186;182;1208;390;2;2.29;2.29 -28;'104;Myanmar;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;;;;;;53;53;53;53;53;53;53;53;103;110;110;110;110;314;314;38;259;79;1;1;2.89 -28;'104;Myanmar;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11000;10000;10000;7000;8100;8100;8100;8100;8100;8100;8100;8100;8100;8100;8100;8100;8100;8100;8100;8100;8100;16000;16000;16000;0;0 -28;'104;Myanmar;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;82;72;100;200;1344;1287;1287;1287;1287;1287;1287;4553;3068;1351;1351;6427;6522;1079;5131;213;420;300;142;2037;102 -28;'104;Myanmar;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;53;61;80;148;716;728;728;728;728;728;728;3570;2508;1127;1127;4250;3882;874;4593;189;449;412;91;1560;127 -28;'104;Myanmar;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0 -28;'104;Myanmar;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1 -28;'104;Myanmar;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9000;8000;8000;7800;6800;4700;4900;5600;5600;5600;5600;5600;5600;5600;5600;5600;5600;5600;5600;5600;5600;11000;11000;11000;11000;9000 -28;'104;Myanmar;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2473;10699;9376;13000;13000;10664;9900;9900;9900;14000;14000;14000;8923;8923;52217;52217;116685;116685;133481;195657;192787;128811;88798;28062;66861;77185 -28;'104;Myanmar;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1643;4525;5277;6866;6866;5468;5024;5024;5024;7177;7177;7177;8869;8869;44089;44089;88084;88084;97686;149833;161262;96637;65012;20936;80025;95021 -28;'104;Myanmar;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;24;24;24;24;24;24;16;16;16;16;16;76;76;1;5;0;0;0;0 -28;'104;Myanmar;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;17;17;17;17;17;7;7;7;7;7;211;211;2;18;0;0;0;0 -28;'104;Myanmar;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1808;7819;6852;9500;9500;5693;12925;12925;12925;6200;6200;6200;8625;20189;19960;19960;19161;19049;58389;42165;32508;18422;15155;9765;13198;13068 -28;'104;Myanmar;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1369;3772;4399;5724;5724;2853;7292;7292;7292;3556;3556;3556;6997;17045;16180;16180;16469;15370;34335;27513;24212;14588;12610;6323;12953;13640 -28;'104;Myanmar;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;27;27;27;27;27;27;27;178;110;110;110;110;110;110;181;1203;390;2;2.29;2.29 -28;'104;Myanmar;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;36;36;36;36;36;36;36;96;103;103;103;103;103;103;36;241;79;1;1;1.89 -28;'104;Myanmar;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;;0;0;500;3200;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;5000;8000;4000;3000;3000;6000;6000;6000;7000;7000;7000;7000;8000;21000;19400;21200;22300;28500;26200;24700;26000;26000;26000;26000;26000;26000;26000;26000;26000;26000;26000;26000;26000;26000;329000;329000;329000;258000;220000 -28;'104;Myanmar;1675;Other paper and paperboard;5610;Import quantity;t;6400;6600;6600;6600;6600;4000;2000;6500;10500;6700;4100;2800;3000;2700;1600;3600;5800;10600;10000;10000;17000;14400;6500;5000;4900;2000;2000;2400;2400;500;500;743;460;1000;1900;2300;2300;4100;14500;6100;20900;17100;12874;11261;11261;11261;8424;8424;8424;15358;29637;33599;33519;62822;56700;29842;53520;92560;125510;110546;69622.79;78370;85639 -28;'104;Myanmar;1675;Other paper and paperboard;5622;Import value;1000 USD;1582;1709;1709;1709;1709;1428;699;1284;1064;1718;1108;731;915;2115;731;1709;2336;4300;4560;4570;5639;4542;2724;2963;2287;2520;3785;6144;6144;699;699;468;243;541;1434;1644;2767;2752;6840;5121;9150;7954;8365;9705;9705;9705;8855;8855;8855;15310;28880;23961;24068;43753;35384;20427;34774;64623;73690;59676;43259.43;66368;63095 -28;'104;Myanmar;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;211;0;0;0;0;0;0;0;0;0;0;228;228;228;228;228;228;228;290;249;256;256;256;256;253;294;1153;10088;10889;5393.5;3410;2379 -28;'104;Myanmar;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;186;0;0;0;0;0;0;0;0;0;0;66;66;66;66;66;66;66;294;166;189;189;189;189;163;222;762;4452;6529;3762.34;4038;3251 -28;'104;Myanmar;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;400;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;27000;27000;27000;24000;28000 -28;'104;Myanmar;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;500;200;446;300;300;300;300;300;300;105;1381;1400;1320;1985;1588;2121;4216;4112;4931;3024;1532;3386;1740 -28;'104;Myanmar;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;426;411;159;391;250;250;250;250;250;250;166;1783;1855;1962;1581;1567;1512;3452;3164;4004;2564;1471;4402;1838 -28;'104;Myanmar;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;352;171;159;764;434;319 -28;'104;Myanmar;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;106;155;164;568.07;439;298 -28;'104;Myanmar;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20000;18400;19200;20300;26400;24100;22900;23800;23800;23800;23800;23800;23800;23800;23800;23800;23800;23800;23800;23800;23800;300000;300000;300000;232000;186000 -28;'104;Myanmar;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4100;14500;4000;18400;15800;9938;8264;8264;8264;5427;5427;5427;12091;24662;29824;29824;58779;54321;26784;48222;86976;109764;105181;66467.79;71277;79877 -28;'104;Myanmar;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2752;6840;1693;5563;4562;3450;3265;3265;3265;2415;2415;2415;7184;17229;17465;17465;35765;31435;15621;27363;56773;62133;52622;38257.43;56611;54891 -28;'104;Myanmar;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;225;225;225;225;225;225;225;241;228;235;235;235;235;235;243;787;9903;10727;4628.5;2962;1994 -28;'104;Myanmar;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;42;42;42;42;42;42;49;125;148;148;148;148;148;117;630;4271;6354;3186.28;3292;2853 -28;'104;Myanmar;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;;;;;;500;3200;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;5000;8000;4000;3000;3000;6000;6000;6000;7000;7000;7000;7000;7000;;;;;;;;;;;;;;;;;;;;;;;;;; -28;'104;Myanmar;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;500;743;460;1000;1900;2300;2300;;;;;;;;;;;;;;;;;;;;;;;;;; -28;'104;Myanmar;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;699;699;468;243;541;1434;1644;2767;;;;;;;;;;;;;;;;;;;;;;;;;; -28;'104;Myanmar;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -28;'104;Myanmar;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;186;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -28;'104;Myanmar;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300000;300000;300000;232000;186000 -28;'104;Myanmar;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7100;7100;5437;5437;5437;5437;2600;2600;2600;1608;5047;5995;5995;10737;14360;3142;15716;24993;35185;38619;13325;21297;28628 -28;'104;Myanmar;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1792;1792;1650;1650;1650;1650;800;800;800;819;3132;3102;3102;5901;8416;1671;6504;12907;15617;16881;7476;13315;14182 -28;'104;Myanmar;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;180;180;180;180;180;180;180;180;24;24;24;24;24;24;51;46;302;322;240;53;53 -28;'104;Myanmar;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;25;25;25;25;25;25;16;16;16;16;16;16;21;25;124;114;75;11;11 -28;'104;Myanmar;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1400;1600;1600;1200;1000;800;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;0;0;0;0;0 -28;'104;Myanmar;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3075;10875;3000;4200;2200;2818;1295;1295;1295;1295;1295;1295;8649;18836;23623;23623;44190;38318;12838;26290;49421;50380;37104;25040.32;32849;30193 -28;'104;Myanmar;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2050;5094;1261;1546;986;1131;961;961;961;961;961;961;5385;13039;13919;13919;27086;21616;6738;14719;36859;36238;26106;22437.43;34156;30684 -28;'104;Myanmar;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;9;9;9;9;16;16;16;16;16;16;255;8478;10258;3805;2748;1805 -28;'104;Myanmar;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5;5;5;28;28;28;28;28;28;89;1810;3535;970.93;671;500 -28;'104;Myanmar;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6000;6000;6600;6700;7000;5100;4100;4600;4600;4600;4600;4600;4600;4600;4600;4600;4600;4600;4600;4600;4600;0;0;0;0;0 -28;'104;Myanmar;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;615;2175;600;3700;3100;982;982;982;982;982;982;982;1453;648;105;105;3701;1466;1983;5725;11494;22193;27382;27100;15926;19858 -28;'104;Myanmar;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;517;1285;318;1361;920;454;454;454;454;454;454;454;765;959;365;365;2669;1209;3090;5836;6413;9253;8787;7855;8241;9114 -28;'104;Myanmar;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;36;36;36;36;36;36;36;160;160;160;160;160;160;141;451;1088;112;548.5;126;101 -28;'104;Myanmar;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;12;12;12;12;12;81;81;81;81;81;81;45;493;2314;2682;2117.35;2587;2319 -28;'104;Myanmar;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13000;11000;11000;12000;18200;18000;18000;18100;18100;18100;18100;18100;18100;18100;18100;18100;18100;18100;18100;18100;18100;0;0;0;0;0 -28;'104;Myanmar;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;410;1450;400;3400;3400;701;550;550;550;550;550;550;381;131;101;101;151;177;8821;491;1068;2006;2076;1002.48;1205;1198 -28;'104;Myanmar;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;185;461;114;864;864;215;200;200;200;200;200;200;215;99;79;79;109;194;4122;304;594;1025;848;489;899;911 -28;'104;Myanmar;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;35;35;35;35;35;35;35;35;35;35;35;35;35 -28;'104;Myanmar;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;23;23;23;23;23;23;23;23;23;23;23;23;23 -28;'104;Myanmar;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1700;1400;1100;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;2000;2000;2000;2000;6000 -28;'104;Myanmar;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1600;2000;1100;2490;2697;2697;2697;2697;2697;2697;3162;3594;2375;2375;2058;791;937;1082;1472;10815;2341;1623;3707;4022 -28;'104;Myanmar;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3002;3176;3233;4524;6190;6190;6190;6190;6190;6190;7960;9868;4641;4641;6407;2382;3294;3959;4686;7553;4490;3531;5355;6366 -28;'104;Myanmar;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;3;3;3;3;3;3;3;49;21;21;21;21;21;12;45;14;14;3;1;14;66 -28;'104;Myanmar;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;24;24;24;24;24;24;24;245;41;41;41;41;41;12;102;26;26;11;8;307;100 -28;'104;Myanmar;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43061;24060;24363;18290;7955;12072;11224 -28;'104;Myanmar;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35156;89676;70778;6871;5418;1166;3280 -28;'104;Myanmar;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;624;122;359;59;102;17;62 -28;'104;Myanmar;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4339;837;22;22;355;103;2003 -28;'104;Myanmar;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;17;17;4;4;4 -28;'104;Myanmar;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3669;11;11;11;11;11;37 -28;'104;Myanmar;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;623;121;342;42;98;13;58 -28;'104;Myanmar;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;670;826;11;11;344;92;1966 -28;'104;Myanmar;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1199;1767;1307;1008;380;403;369 -28;'104;Myanmar;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;84;82;90;90;24;24 -28;'104;Myanmar;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;323;269;271;458;285;1270;894 -28;'104;Myanmar;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;15181;115;37;41;51;66 -28;'104;Myanmar;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2899;1329;2081;1462;1110;220;511 -28;'104;Myanmar;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29479;72510;68549;4910;3471;155;310 -28;'104;Myanmar;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;29 -28;'104;Myanmar;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12 -28;'104;Myanmar;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30 -28;'104;Myanmar;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;53 -28;'104;Myanmar;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28287;14854;16738;13099;4153;6929;3816 -28;'104;Myanmar;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1202;794;1073;1771;1420;832;872 -28;'104;Myanmar;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6034;4244;2147;319;1570;227;299 -28;'104;Myanmar;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -28;'104;Myanmar;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3695;1475;1460;1885;355;3006;5273 -28;'104;Myanmar;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;270;937;41;41;1;5 -28;'104;Myanmar;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107317;123735;131909;119222;86128;107979;99241 -28;'104;Myanmar;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6007;10650;7080;7549;8445;5297;4156 -28;'104;Myanmar;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1594;362;256;180;53;198;170 -28;'104;Myanmar;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;10;10 -28;'104;Myanmar;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1914;4459;5357;9509;7702;11308;7501 -28;'104;Myanmar;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;0;2;1;0;0;0 -28;'104;Myanmar;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13184;11005;10210;8683;5820;12056;17287 -28;'104;Myanmar;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2527;1890;1105;1827;4828;4536;3469 -28;'104;Myanmar;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33372;36697;46728;42919;30155;26999;24814 -28;'104;Myanmar;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3094;8367;5778;4831;3209;335;374 -28;'104;Myanmar;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57253;71212;69358;57931;42398;57418;49469 -28;'104;Myanmar;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;357;383;185;880;398;416;303 -147;'516;Namibia;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;162729;167179;156376;124350;163132;170187;169156 -147;'516;Namibia;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35239;43349;45423;52527;58123;74125;68880 -147;'516;Namibia;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22211;20332;21084;14172;38263;29946;30592;39002;41520;52963;60240;63917.58;63357;68112.17;78130;74431;65904;58881;61494;61901;52838;67415;72520;79559 -147;'516;Namibia;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;850;1740;1637;4295;7622;7683;9041;12756;20009;23094;24752;23060;31597;34233;35889;45550;31472;27078;34695;40669;48610;52206;65378;63428 -147;'516;Namibia;1861;Roundwood;5516;Production;m3;337082;345155;353422;361887;370555;379430;388518;397824;407352;417109;429234;440839;453167;461862;466220;478831;483704;498149;512351;528498;542988;560427;578494;594855;610617;620430;631203;647081;661369;678237;685701;692197;711722;720459;730801;746881;762586;761370;767673;920899;925054;907835;921561;1097016;1093523;1103635;1166318;1350995;1356269;1327638;1274691;1308242;1286354;1342754;1437197;1441996;1485728;1571011;1841696;2015081;2135554;2438788;1959736 -147;'516;Namibia;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1660;1532;1337;1624;4370;8521;8691;10843;8589;7626;8567;5344;6060;7436;4455;3825;4548;17966;32809;25658;32087;66509;137496;137636 -147;'516;Namibia;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;452;512;264;352;661;1119;1518;1592;1696;1766;2041;1746;1959;1748;908;894;837;4912;6586;6796;7289;7835;6941;8086 -147;'516;Namibia;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;780;964;483;771;4565;6961;11923;13099;17381;31232;24265;21029;22735;25848;29595;31422;31826;30320;11468;11979;51832;69189;46528;89666 -147;'516;Namibia;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;56;86;83;336;559;865;1294;1579;2654;2486;2217;2525;2283;2461;2268;2143;2155;3700;4010;13017;10784;8339;5533 -147;'516;Namibia;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -147;'516;Namibia;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11796;28182;17547;29743;66131;137181;103561 -147;'516;Namibia;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2940;4897;4585;6072;7747;6646;7199 -147;'516;Namibia;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;293;970;2723;24960;45096;36048;45158 -147;'516;Namibia;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;101;165;1124;4022;6618;3020 -147;'516;Namibia;1863;Roundwood, non-coniferous;5516;Production;m3;337082;345155;353422;361887;370555;379430;388518;397824;407352;417109;429234;440839;453167;461862;466220;478831;483704;498149;512351;528498;542988;560427;578494;594855;610617;620430;631203;647081;661369;678237;685701;692197;711722;720459;730801;746881;762586;761370;767673;920899;925054;907835;921561;1097016;1093523;1103635;1166318;1350995;1356269;1327638;1274691;1308242;1286354;1342754;1437197;1441996;1485728;1571011;1841696;2015081;2135554;2438788;1959736 -147;'516;Namibia;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6170;4627;8111;2344;378;315;34075 -147;'516;Namibia;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972;1689;2211;1217;88;295;887 -147;'516;Namibia;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30027;10498;9256;26872;24093;10480;44508 -147;'516;Namibia;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2124;3599;3845;11893;6762;1721;2513 -147;'516;Namibia;1864;Wood fuel;5516;Production;m3;337082;345155;353422;361887;370555;379430;388518;397824;407352;417109;429234;440839;453167;461862;466220;478831;483704;498149;512351;528498;542988;560427;578494;594855;610617;620430;631203;647081;661369;678237;685701;692197;711722;720459;730801;746881;762586;761370;767673;920899;925054;907835;921561;1097016;1093523;1103635;1166318;1350995;1356269;1327638;1274691;1308242;1286354;1342754;1437197;1441996;1485728;1571011;1841696;2015081;2135554;2438788;1959736 -147;'516;Namibia;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;466;437;202;138;385;760;179;185;124;170;62;86;92;400;461;426;705;257;174;703;1869;205;207;636 -147;'516;Namibia;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105;116;30;56;137;188;127;63;41;65;24;38;34;97;108;82;84;38;33;139;316;40;77;95 -147;'516;Namibia;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;676;567;332;345;3810;6117;9929;9956;15101;20016;20026;20195;20784;21097;22415;27031;27573;10563;2248;5980;32832;49075;42267;50624 -147;'516;Namibia;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;15;46;50;235;407;602;793;1136;1593;1874;1950;1865;1740;1725;1867;1781;689;166;357;1444;4466;7654;3355 -147;'516;Namibia;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -147;'516;Namibia;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;84;605;1743;131;181;561 -147;'516;Namibia;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;25;127;304;25;70;92 -147;'516;Namibia;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;247;807;2718;24960;45084;36036;44815 -147;'516;Namibia;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;85;165;1122;4018;6616;2914 -147;'516;Namibia;1628;Wood fuel, non-coniferous;5516;Production;m3;337082;345155;353422;361887;370555;379430;388518;397824;407352;417109;429234;440839;453167;461862;466220;478831;483704;498149;512351;528498;542988;560427;578494;594855;610617;620430;631203;647081;661369;678237;685701;692197;711722;720459;730801;746881;762586;761370;767673;920899;925054;907835;921561;1097016;1093523;1103635;1166318;1350995;1356269;1327638;1274691;1308242;1286354;1342754;1437197;1441996;1485728;1571011;1841696;2015081;2135554;2438788;1959736 -147;'516;Namibia;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;210;90;98;126;74;26;75 -147;'516;Namibia;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;8;12;12;15;7;3 -147;'516;Namibia;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10316;1441;3262;7872;3991;6231;5809 -147;'516;Namibia;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;660;81;192;322;448;1038;441 -147;'516;Namibia;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;466;437;202;138;385;760;179;185;124;170;62;86;92;400;461;426;705;;;;;;; -147;'516;Namibia;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105;116;30;56;137;188;127;63;41;65;24;38;34;97;108;82;84;;;;;;; -147;'516;Namibia;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;676;567;332;345;3810;6117;9929;9956;15101;20016;20026;20195;20784;21097;22415;27031;27573;;;;;;; -147;'516;Namibia;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;15;46;50;235;407;602;793;1136;1593;1874;1950;1865;1740;1725;1867;1781;;;;;;; -147;'516;Namibia;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1194;1095;1135;1486;3985;7761;8512;10658;8465;7456;8505;5258;5968;7036;3994;3399;3843;17709;32635;24955;30218;66304;137289;137000 -147;'516;Namibia;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;347;396;234;296;524;931;1391;1529;1655;1701;2017;1708;1925;1651;800;812;753;4874;6553;6657;6973;7795;6864;7991 -147;'516;Namibia;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104;397;151;426;755;844;1994;3143;2280;11216;4239;834;1951;4751;7180;4391;4253;19757;9220;5999;19000;20114;4261;39042 -147;'516;Namibia;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;41;40;33;101;152;263;501;443;1061;612;267;660;543;736;401;362;1466;3534;3653;11573;6318;685;2178 -147;'516;Namibia;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;664;383;563;877;2960;6280;5210;8913;5938;5351;5288;1266;1397;1982;1722;1408;1835;11749;28098;16942;28000;66000;137000;103000 -147;'516;Namibia;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;188;191;81;67;226;480;398;913;739;682;601;133;398;207;172;146;166;2929;4872;4458;5768;7722;6576;7107 -147;'516;Namibia;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;175;34;4;300;200;900;900;900;4419;3372;259;476;704;2090;821;0;46;163;5;0;12;12;343 -147;'516;Namibia;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;15;5;1;16;11;45;45;45;391;291;62;251;166;291;85;0;2;16;0;2;4;2;106 -147;'516;Namibia;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;664;383;563;877;2960;6280;5210;8913;5938;5351;5288;1266;1397;1982;1722;1408;1835;11749;28098;16942;28000;66000;137000;103000 -147;'516;Namibia;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;188;191;81;67;226;480;398;913;739;682;601;133;398;207;172;146;166;2929;4872;4458;5768;7722;6576;7107 -147;'516;Namibia;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;175;34;4;300;200;900;900;900;4419;3372;259;476;704;2090;821;0;46;163;5;0;12;12;343 -147;'516;Namibia;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;15;5;1;16;11;45;45;45;391;291;62;251;166;291;85;0;2;16;0;2;4;2;106 -147;'516;Namibia;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;530;712;572;609;1025;1481;3302;1745;2527;2105;3217;3992;4571;5054;2272;1991;2008;5960;4537;8013;2218;304;289;34000 -147;'516;Namibia;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;159;205;153;229;298;451;993;616;916;1019;1416;1575;1527;1444;628;666;587;1945;1681;2199;1205;73;288;884 -147;'516;Namibia;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;222;117;422;455;644;1094;2243;1380;6797;867;575;1475;4047;5090;3570;4253;19711;9057;5994;19000;20102;4249;38699 -147;'516;Namibia;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;26;35;32;85;141;218;456;398;670;321;205;409;377;445;316;362;1464;3518;3653;11571;6314;683;2072 -147;'516;Namibia;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;211;455;281;248;222;143;259;178;350;1986;2957;3827;4500;4927;2042;539;843;2107;560;2726;1191;280;265;6000 -147;'516;Namibia;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;142;101;122;109;70;127;115;256;978;1355;1511;1487;1397;540;246;263;714;307;1107;694;28;243;372 -147;'516;Namibia;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;47;27;26;134;61;43;43;184;6793;824;571;1475;4047;5090;3570;4253;19711;9057;5994;19000;20102;4249;38699 -147;'516;Namibia;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;6;19;7;22;10;7;7;26;669;310;203;409;377;445;316;362;1464;3518;3653;11571;6314;683;2072 -147;'516;Namibia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;319;257;291;361;803;1338;3043;1567;2177;119;260;165;71;127;230;1452;1165;3853;3977;5287;1027;24;24;28000 -147;'516;Namibia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;63;52;107;189;381;866;501;660;41;61;64;40;47;88;420;324;1231;1374;1092;511;45;45;512 -147;'516;Namibia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;175;90;396;321;583;1051;2200;1196;4;43;4;0;0;0;0;0;0;0;0;0;0;0;0 -147;'516;Namibia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;20;16;25;63;131;211;449;372;1;11;2;0;0;0;0;0;0;0;0;0;0;0;0 -147;'516;Namibia;1630;Wood charcoal;5510;Production;t;11507;11912;12330;12764;13212;13677;14158;14655;15170;15703;16385;17020;17733;18232;18503;19224;19477;20341;21195;22183;23236;24462;25794;27087;28320;29234;30237;31711;33074;34684;35597;36478;38425;39566;40907;41776;43761;44361;45952;71928;71928;70311;72877;102396;102089;103955;114583;144541;144541;142080;136370;144452;135373;144953;160676;161549;168912;183198;228385;257355;277476;328056;328056 -147;'516;Namibia;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;2000;100;500;756;651;168;1;1;1;46;62;558;504;174;143;52;283;85;75;73;44;55;109 -147;'516;Namibia;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;318;240;15;48;44;62;18;4;2;4;63;80;225;202;168;78;86;127;82;78;108;73;79;95 -147;'516;Namibia;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24455;25142;20871;22423;50907;49544;50411;60020;89941;52358;84269;74557;79246;74675;83136;97920;98072;104518;117970;110016;129238;134083;181312;178758 -147;'516;Namibia;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;431;1200;1009;3002;5287;5417;6720;9159;14925;14925;17935;16168;16628;13843;14612;17016;16807;18734;23842;30416;32483;38441;53784;54864 -147;'516;Namibia;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;221;373;352;173;231;218;284;685;234;65;149;141;1450;1561;1253;2127;1900;1900;1900;122;297;174;85;108 -147;'516;Namibia;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;42;41;26;142;108;227;491;153;50;109;76;328;255;208;261;196;196;196;42;95;39;48;36 -147;'516;Namibia;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;572;1486;650;1170;1907;1820;768;884;2830;454;346;295;518;275;330;329;848;848;848;656;186;103;113;0 -147;'516;Namibia;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;117;153;85;116;204;136;365;391;167;289;697;531;447;411;160;967;967;967;45;17;11;16;1 -147;'516;Namibia;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;123;138;145;157;203;206;270;684;218;13;57;101;861;984;1129;770;32;32;32;69;136;16;83;55 -147;'516;Namibia;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;37;30;21;138;104;213;490;140;13;41;36;184;139;153;108;15;15;15;35;63;10;38;16 -147;'516;Namibia;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;569;1013;649;1170;1840;1380;768;884;2830;454;320;255;350;157;195;225;776;776;776;484;128;2;39;0 -147;'516;Namibia;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;105;152;85;109;157;136;365;391;167;286;691;513;429;375;155;960;960;960;40;12;0;10;1 -147;'516;Namibia;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98;235;207;16;28;12;14;1;16;52;92;40;589;577;124;1357;1868;1868;1868;53;161;158;2;53 -147;'516;Namibia;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;5;11;5;4;4;14;1;13;37;68;40;144;116;55;153;181;181;181;7;32;29;10;20 -147;'516;Namibia;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;473;1;0;67;440;0;0;0;0;26;40;168;118;135;104;72;72;72;172;58;101;74;0 -147;'516;Namibia;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;12;1;0;7;47;0;0;0;0;3;6;18;18;36;5;7;7;7;5;5;11;6;0 -147;'516;Namibia;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1260;1200 -147;'516;Namibia;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;8;22;33;2;3;3;1072;845;219;279;1184 -147;'516;Namibia;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;20;6;16;1;2;2;221;159;73;127;220 -147;'516;Namibia;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;2;0;0;0;0;482;790;106;518;634 -147;'516;Namibia;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;0;0;0;284;422;39;207;102 -147;'516;Namibia;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;8;22;33;2;3;3;1;31;24;11;26 -147;'516;Namibia;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;20;6;16;1;2;2;4;6;14;5;11 -147;'516;Namibia;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;2;0;0;0;0;290;733;82;18;0 -147;'516;Namibia;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;0;0;0;272;411;32;8;0 -147;'516;Namibia;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1260;1200 -147;'516;Namibia;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1071;814;195;268;1158 -147;'516;Namibia;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;217;153;59;122;209 -147;'516;Namibia;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;192;57;24;500;634 -147;'516;Namibia;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;11;7;199;102 -147;'516;Namibia;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000;702;702 -147;'516;Namibia;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16584;28098;10454;9098;21340;25478;24153;16320;23439;29442;34495;31006;34698;28703;48515;37077;44979;22551;24690;32492;33610;41833;39967;38769 -147;'516;Namibia;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3497;3179;1838;2438;5596;6779;6684;5515;8840;10365;12683;13404;11023;11487;17734;14615;13671;9412;10931;10534;9970;14843;14421;12204 -147;'516;Namibia;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;214;218;176;359;1300;850;1050;2279;4121;6161;2962;1396;1970;2099;2098;2710;702;1315;1874;1025;134;1668;7494;5000 -147;'516;Namibia;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;52;40;56;346;219;269;589;1234;1803;844;456;503;567;707;755;133;237;1257;453;761;507;638;765 -147;'516;Namibia;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -147;'516;Namibia;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12999;26155;10001;8470;20400;24000;21630;13905;18543;26267;26128;20112;25500;21497;41638;31763;40558;17784;18182;22759;25233;36257;36939;35928 -147;'516;Namibia;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2606;2705;1617;2112;5083;5975;5386;3921;5703;7969;6893;5630;5636;6051;12406;10270;10435;5717;4948;6061;6673;12670;13093;10964 -147;'516;Namibia;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;133;157;156;132;1000;600;800;2179;3821;5638;2567;1205;1900;1907;1453;2468;506;40;823;450;14;0;0;0 -147;'516;Namibia;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;36;26;32;253;146;197;549;1159;1474;601;295;463;459;363;610;105;25;275;107;221;169;0;0 -147;'516;Namibia;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000;702;702 -147;'516;Namibia;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3585;1943;453;628;940;1478;2523;2415;4896;3175;8367;10894;9198;7206;6877;5314;4421;4767;6508;9733;8377;5576;3028;2841 -147;'516;Namibia;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;891;474;221;326;513;804;1298;1594;3137;2396;5790;7774;5387;5436;5328;4345;3236;3695;5983;4473;3297;2173;1328;1240 -147;'516;Namibia;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;61;20;227;300;250;250;100;300;523;395;191;70;192;645;242;196;1275;1051;575;120;1668;7494;5000 -147;'516;Namibia;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;16;14;24;93;73;72;40;75;329;243;161;40;108;344;145;28;212;982;346;540;338;638;765 -147;'516;Namibia;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -147;'516;Namibia;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;383;571;345;227;596;513;1581;1585;1461;1395;1305;305;451;665;1127;1297;614;657;428;176;125;587;85;125 -147;'516;Namibia;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113;188;160;173;368;470;656;1101;925;999;966;303;296;503;658;837;498;501;976;370;209;98;92;166 -147;'516;Namibia;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;4;8;10;20;11;17;100;314;22;4;9;16;57;72;26;55;44;2;1;0;0;3 -147;'516;Namibia;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;3;9;11;25;23;130;202;158;120;99;70;111;58;24;9;52;20;3;12;0;16;0 -147;'516;Namibia;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000;1000;1000 -147;'516;Namibia;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12452;12693;5702;5667;9933;9211;11496;15506;19708;26375;23684;68585;24567;26083;19691;25700;28960;21908;26827;20838;21417;36798;28767;27546 -147;'516;Namibia;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4494;4304;1605;2835;4915;5312;5741;7625;8990;11248;11459;12248;11318;11584;10263;12582;12892;13342;12332;8834;7916;11531;12496;10917 -147;'516;Namibia;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;86;154;459;572;778;255;182;817;688;222.4;283;338;270;145;132;31;217;331;142;316;296;76;296 -147;'516;Namibia;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;53;48;247;271;278;339;184;303;809;626;363;216;316;291;239;27;92;181;124;204;423;122;579 -147;'516;Namibia;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000;1000;1000 -147;'516;Namibia;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2017;2257;1760;2141;2739;1853;1962;1970;1920;1693;1785;2409;2683;3632;5099;8209;6476;6176;11095;8344;4326;6603;6528;3868 -147;'516;Namibia;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;720;1222;494;1093;1460;1106;1079;1170;938;1155;1433;1675;1976;2326;3199;4172;3171;4816;3806;3088;1309;1150;1458;1324 -147;'516;Namibia;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;7;92;250;100;65;10;9;40;79;99;52;21;95;8;33;1;163;277;38;26;19;3;2 -147;'516;Namibia;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;5;24;101;47;15;40;37;42;74;20;61;53;110;56;68;3;57;146;42;37;7;7;1 -147;'516;Namibia;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7804;5928;1065;1459;3417;3474;5995;9799;10297;9365;8697;53725;13860;19961;13362;16577;21069;14672;14672;10685;14130;18724;16075;17663 -147;'516;Namibia;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1808;1537;211;700;1343;1642;2779;4965;5349;5049;5641;5824;7025;8362;6506;7920;9020;8016;8016;5038;5688;8233;8371;7565 -147;'516;Namibia;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;58;5;44;60;206;108;173;747;339;105;227;317;119;137;94;28;52;52;29;34;10;31;39 -147;'516;Namibia;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;39;5;28;20;48;44;147;244;495;556;300;163;144;235;165;23;34;34;46;37;30;63;81 -147;'516;Namibia;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;28;152;64;329;161;259;591;236;236;544;1010;724;451;251 -147;'516;Namibia;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;24;151;55;231;111;132;389;198;198;301;370;338;226;177 -147;'516;Namibia;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;60;60;0;0 -147;'516;Namibia;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;0;0 -147;'516;Namibia;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2631;4508;2877;2067;3777;3884;3539;3737;7491;15262;13174;12299;7960;2161;1069;655;824;824;824;1265;1951;10747;5713;5764 -147;'516;Namibia;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966;1545;900;1042;2112;2564;1883;1490;2703;5026;4361;4598;2262;665;447;358;312;312;312;407;549;1810;2441;1851 -147;'516;Namibia;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;21;57;165;412;507;137;0;30;270;18.4;4;0;56;0;5;2;2;2;15;196;207;42;255 -147;'516;Namibia;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;9;19;118;204;215;255;0;17;240;50;2;0;62;0;6;1;1;1;19;113;369;52;497 -147;'516;Namibia;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;668;1116;1141;686;1563;1818;1738;321;379;1208;691;767;79;18;1;19;53;53;53;172;47;54;286;77 -147;'516;Namibia;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1112;530;460;484;1171;1394;1256;298;366;916;630;1054;51;9;6;35;28;28;28;124;39;63;261;71 -147;'516;Namibia;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;7;1;12;107;97;0;0;0;0;0;0;0;0;1;2;2;2;0;37;25;25;25 -147;'516;Namibia;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;5;4;14;80;234;0;0;0;0;0;0;0;0;2;1;1;1;0;45;44;44;44 -147;'516;Namibia;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;860;1128;777;718;868;539;286;740;212;253;337;581;271;210;284;404;150;150;150;154;931;7096;3037;3600 -147;'516;Namibia;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;173;288;150;197;286;204;130;277;179;371;244;417;245;161;221;239;138;138;138;96;405;991;1604;1463 -147;'516;Namibia;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;20;0;38;0;0;0;0;30;270;0.4;4;0;2;0;4;0;0;0;0;0;50;0;45 -147;'516;Namibia;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;8;0;13;0;0;0;0;17;240;5;2;0;1;0;4;0;0;0;0;0;9;0;16 -147;'516;Namibia;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1103;2264;959;663;1346;1527;1515;2676;6900;13801;12146;10951;7610;1933;784;232;621;621;621;939;973;3597;2390;2087 -147;'516;Namibia;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;681;727;290;361;655;966;497;915;2158;3739;3487;3127;1966;495;220;84;146;146;146;187;105;756;576;317 -147;'516;Namibia;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;50;126;400;400;40;0;0;0;18;0;0;54;0;0;0;0;0;15;159;132;17;185 -147;'516;Namibia;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;14;101;190;135;21;0;0;0;45;0;0;61;0;0;0;0;0;19;68;316;8;437 -147;'516;Namibia;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;4000;5000;5000;9000;8000;7000;9000;9000;12000;12000;13000;14000;14000;14000;14000;14000;20000;20000;20000;20000;20000;20000;20000 -147;'516;Namibia;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;97;66;9;249;4;2;77;36;36;927;261.03;85;265.3;47;55;39;40;40;12865;5148;13;1014;6 -147;'516;Namibia;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;53;56;9;119;17;6;57;52;27;1007;248;249;230;41;51;4;6;6;4287;3780;16;999;28 -147;'516;Namibia;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2933;4369;4501;4649;8654;8126;6480;8101;8462;11734;11913;13096;14099;13581;13867;14225;14047;20486;16076;14069;10566;12547;10659;11659 -147;'516;Namibia;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;119;95;363;921;727;566;920;1156;1799;2152;2539;2499;1965;1504;1574;1546;2274;2161;1669;1012;1708;1887;1292 -147;'516;Namibia;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;39;4;1;248;3;2;76;35;20;17;19.03;19;24.3;46;7;39;39;39;12858;5148;13;1009;1 -147;'516;Namibia;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;15;5;1;115;11;6;56;50;19;62;47;167;101;38;11;4;4;4;4272;3780;16;998;25 -147;'516;Namibia;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;2;8;2;0;0;;;89;0;0;1;120 -147;'516;Namibia;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;2;2;0;0;;;15;0;0;1;17 -147;'516;Namibia;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;39;4;1;248;3;1;47;35;23;14;24.03;16.35;23.38;46;11;34;34;34;12825;5129;3;1007;0 -147;'516;Namibia;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;15;5;1;115;14;4;19;46;27;42;29;141;87.17;36;15;1;1;1;4266;3773;8;986;23 -147;'516;Namibia;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;12;55;6;0;0;0;0;89;0;0;1;1 -147;'516;Namibia;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;9;6;3;0;0;0;0;15;0;0;1;1 -147;'516;Namibia;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -147;'516;Namibia;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -147;'516;Namibia;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;1;1 -147;'516;Namibia;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;1;1 -147;'516;Namibia;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;1;1;247;1;0;1;1;0;0;0.03;0;3;0;0;0;;;;;;; -147;'516;Namibia;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;4;3;1;111;2;0;1;4;0;0;1;0;5;0;0;0;;;;;;; -147;'516;Namibia;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;2;8;2;0;0;;;;;;; -147;'516;Namibia;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;2;2;0;0;;;;;;; -147;'516;Namibia;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;33;0;0;0;0;0;3;0;0;0;0;1;1;5;0;0;;;;;;; -147;'516;Namibia;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;5;0;0;0;0;0;3;0;0;0;0;1;3;8;0;0;;;;;;; -147;'516;Namibia;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;4;3;0;1;1;1;43;33;19;13;18;15;19.3;41;7;34;34;34;12825;5129;3;1007;0 -147;'516;Namibia;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;6;2;0;4;8;4;15;40;11;41;17;135;79;28;11;1;1;1;4266;3773;8;986;23 -147;'516;Namibia;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89;0;0;0;0 -147;'516;Namibia;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;0;0;0;0 -147;'516;Namibia;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2;3;0;0;1;1;37;27;18;5;16;2;0.23;0;6;0;0;0;11180;5129;0;0;0 -147;'516;Namibia;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;2;0;0;8;4;12;16;7;4;15;7;8;3;3;0;0;0;3715;3770;0;0;0 -147;'516;Namibia;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89;0;0;0;0 -147;'516;Namibia;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;0;0;0;0 -147;'516;Namibia;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;5;0;0;2;2;2;1;35;1;34;34;34;1645;0;0;1006;0 -147;'516;Namibia;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;2;0;0;3;2;7;2;2;8;1;1;1;551;0;0;983;21 -147;'516;Namibia;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -147;'516;Namibia;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -147;'516;Namibia;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;3;1;0 -147;'516;Namibia;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;8;3;2 -147;'516;Namibia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;10;18;6;0;0;;;;;;; -147;'516;Namibia;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;100;68;22;0;0;;;;;;; -147;'516;Namibia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;2;0;0;1;0;0;1;6;1;6;0;1;0.07;0;0;0;;;;;;; -147;'516;Namibia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;5;0;0;4;0;0;1;24;4;34;0;21;1;1;0;0;;;;;;; -147;'516;Namibia;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;1;0;0;1;4;1;6;0.35;0.08;0;4;0;0;0;0;0;0;0;0 -147;'516;Namibia;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;4;0;0;2;16;1;11;5;0.17;0;4;0;0;0;0;0;0;0;0 -147;'516;Namibia;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;47;4;0;0;0;0;0;0;0;0;0 -147;'516;Namibia;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;8;4;1;0;0;0;0;0;0;0;0;0 -147;'516;Namibia;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;1;1;29;1;1;4;1;3;1;0;0;5;5;5;33;19;10;2;1 -147;'516;Namibia;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;1;2;37;6;8;21;29;31;14;2;0;3;3;3;6;7;8;12;2 -147;'516;Namibia;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119 -147;'516;Namibia;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16 -147;'516;Namibia;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;0;0;1;0;0;1;231;5;0;0.05;0;1;11;0;0;0;0;0;13;1;0;0 -147;'516;Namibia;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;0;0;1;0;0;3;363;10;0;0.58;0;1;7;0;7;7;7;1;18;2;1;1 -147;'516;Namibia;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;35;0;0;0 -147;'516;Namibia;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;7;0;0;0 -147;'516;Namibia;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;4000;5000;5000;9000;8000;7000;9000;9000;12000;12000;13000;14000;14000;14000;14000;14000;20000;20000;20000;20000;20000;20000;20000 -147;'516;Namibia;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;58;62;8;1;1;0;1;1;16;910;242;66;241;1;48;0;1;1;7;0;0;5;5 -147;'516;Namibia;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;38;51;8;4;6;0;1;2;8;945;201;82;129;3;40;0;2;2;15;0;0;1;3 -147;'516;Namibia;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2933;4369;4501;4649;8654;8126;6480;8101;8462;11734;11913;13095;14097;13573;13865;14225;14047;20486;16076;13980;10566;12547;10658;11539 -147;'516;Namibia;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;119;95;363;921;727;566;920;1156;1799;2152;2538;2498;1963;1502;1574;1546;2274;2161;1654;1012;1708;1886;1275 -147;'516;Namibia;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16587;16852;11870;9274;17065;16276;16427;21451;19987;24577;26043;26744;32308;36868;44289;46859;39131;33083;33083;27489;25351;32200;32252;44905 -147;'516;Namibia;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13280;11811;17105;8291;26417;16075;15742;22614;20497;28478;31911;35801;37937;42082;48137;45093;37712;30376;30376;30738;23294;32905;37316;47806 -147;'516;Namibia;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;139;72;348;189;102;110;32;206;634;165;251;5544;10398;10322;18961;8030;2139;2139;2969;653;331;508;563 -147;'516;Namibia;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121;143;203;450;334;254;123;115;219;779;300;515;8617;14696;15843;23514;9840;2567;2567;3663;675;293;369;292 -147;'516;Namibia;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2453;979;1313;1219;2639;3245;4726;6630;4814;12022;11630;8975;10058;10368;12240;13071;20047;20047;20047;10382;9546;9896;9723;10402 -147;'516;Namibia;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2916;1400;1501;1905;3994;4412;5704;8143;5824;15393;14739;11689;11923;10723;11551;13127;17109;17109;17109;12155;9049;11908;14090;14253 -147;'516;Namibia;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;34;35;183;57;23;23;24;99;429;159;191;169;94;295;247;62;62;62;46;203;246;152;472 -147;'516;Namibia;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;61;110;218;61;78;34;70;112;635;217;377;235;184;574;198;15;15;15;55;159;200;125;147 -147;'516;Namibia;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;317;159;125;85;311;450;1433;3029;2091;4031;6357;4694;3831;5312;6091;6154;5142;5142;5142;2843;1994;2176;1303;1527 -147;'516;Namibia;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;362;267;234;145;371;363;1159;2195;1617;3334;5649;3869;3594;4463;4351;5096;3579;3579;3579;2074;1265;1628;1153;1556 -147;'516;Namibia;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;13;0;1;15;3;0;0;5;5;101;137;0;37;24;45;0;0;0;0;68;0;19;19 -147;'516;Namibia;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;7;0;1;21;3;0;0;5;5;110;251;0;8;50;31;0;0;0;0;37;0;12;12 -147;'516;Namibia;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2136;820;1188;1134;2328;2795;3293;3601;2723;7991;5273;4281;6227;5056;6149;6917;14905;14905;14905;7539;7552;7720;8420;8875 -147;'516;Namibia;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2554;1133;1267;1760;3623;4049;4545;5948;4207;12059;9090;7820;8329;6260;7200;8031;13530;13530;13530;10081;7784;10280;12937;12697 -147;'516;Namibia;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;21;35;182;42;20;23;24;94;424;58;54;169;57;271;202;62;62;62;46;135;246;133;453 -147;'516;Namibia;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;54;110;217;40;75;34;70;107;630;107;126;235;176;524;167;15;15;15;55;122;200;113;135 -147;'516;Namibia;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;341;118;267;168;544;617;709;720;605;1043;1190;931;546;1611;2508;2844;2109;2109;2109;2081;561;1855;3001;3534 -147;'516;Namibia;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;331;142;238;195;774;1022;1242;1410;1170;2362;2062;1893;1163;1576;2527;3182;2286;2286;2286;2852;763;2487;3964;4552 -147;'516;Namibia;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;0;33;2;4;1;3;46;211;32;1;76;1;5;30;0;0;0;0;0;0;0;0 -147;'516;Namibia;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;0;53;7;12;1;14;57;343;10;1;132;9;10;4;1;1;1;1;0;9;1;0 -147;'516;Namibia;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;128;111;145;188;314;403;940;403;309;4167;1684;631;978;644;700;646;477;477;477;2273;2397;1853;878;2570 -147;'516;Namibia;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;202;203;156;195;414;605;1072;820;456;5257;2334;1280;1550;958;955;1027;919;919;919;2611;2207;2361;1503;3614 -147;'516;Namibia;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;17;34;110;32;3;3;21;48;41;18;39;70;19;20;17;18;18;18;35;58;204;67;288 -147;'516;Namibia;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;50;107;120;13;8;9;56;50;59;61;35;37;66;11;10;3;3;3;45;62;165;37;87 -147;'516;Namibia;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1667;591;776;778;1470;1775;1644;2478;1809;2781;2399;2719;4703;2801;2941;3427;12319;12319;12319;3185;4594;4012;4541;2771 -147;'516;Namibia;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2021;788;873;1370;2435;2422;2231;3718;2581;4440;4694;4647;5616;3726;3718;3822;10325;10325;10325;4618;4814;5432;7470;4531 -147;'516;Namibia;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;3;1;39;8;13;19;0;0;172;8;14;23;37;246;155;44;44;44;11;77;42;66;165 -147;'516;Namibia;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;3;3;44;20;55;24;0;0;228;36;90;66;101;503;153;11;11;11;9;60;26;75;48 -147;'516;Namibia;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14134;15873;10557;8055;14426;13031;11701;14821;15173;12555;14413;17769;22250;26500;32049;33788;19084;13036;13036;17107;15805;22304;22529;34503 -147;'516;Namibia;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10364;10411;15604;6386;22423;11663;10038;14471;14673;13085;17172;24112;26014;31359;36586;31966;20603;13267;13267;18583;14245;20997;23226;33553 -147;'516;Namibia;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;105;37;165;132;79;87;8;107;205;6;60;5375;10304;10027;18714;7968;2077;2077;2923;450;85;356;91 -147;'516;Namibia;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;82;93;232;273;176;89;45;107;144;83;138;8382;14512;15269;23316;9825;2552;2552;3608;516;93;244;145 -147;'516;Namibia;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2082;5187;4858;1682;1058;478;747;903;484;601;718;850;636;656;868;893;664;664;664;726;1624;1772;853;696 -147;'516;Namibia;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2723;2664;11896;1640;2926;1111;1033;1410;665;1253;1805;1817;1785;1279;1443;1313;946;946;946;787;1823;2013;1315;1155 -147;'516;Namibia;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;4;5;15;6;67;45;3;1;7;2;40;17;8;1;1;2;2;2;0;0;0;3;3 -147;'516;Namibia;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;10;8;20;8;140;53;5;2;30;17;6;29;23;13;4;4;4;4;3;5;3;3;8 -147;'516;Namibia;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11481;10092;5659;6351;13169;11571;10101;13844;14572;11616;13634;16802;21520;25706;31066;32776;18303;12255;12255;16323;14145;20494;21639;33785 -147;'516;Namibia;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7013;6762;3603;4678;19155;9197;8006;12868;13831;11462;15186;21895;23985;29596;34672;30034;19345;12009;12009;17328;12135;18748;21581;32196 -147;'516;Namibia;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;100;16;122;123;11;40;3;103;192;3;6;5339;10283;10019;18680;7966;2075;2075;2923;450;84;347;88 -147;'516;Namibia;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;65;35;132;244;21;33;17;64;62;57;31;8329;14453;15203;23203;9816;2543;2543;3604;510;82;235;129 -147;'516;Namibia;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6038;3579;81;1157;656;417;224;745;450;2870;5068;6235;10385;10457;11935;11835;3557;3557;3557;8030;6026;8734;10928;13003 -147;'516;Namibia;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3875;1460;65;466;546;287;175;628;355;1872;5092;6874;10175;8920;10178;9148;2577;2577;2577;7407;4655;8304;10013;11557 -147;'516;Namibia;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;10;7;37;6;4;1;0;1;1;1;1;0;36;0;323;1;1;1;20;4;72;0;0 -147;'516;Namibia;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;20;6;16;10;7;1;0;2;2;2;2;1;4;0;23;2;2;2;7;24;54;3;0 -147;'516;Namibia;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;319;420;222;268;1499;7347;8236;10462;7811;4897;1947;2914;2775;8256;10104;8012;8172;2124;2124;2006;1394;1048;2756;16052 -147;'516;Namibia;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;737;811;329;218;1839;5178;5694;8596;6649;4913;1936;4858;4613;13044;15884;10310;11320;3984;3984;3437;1785;1410;3579;15483 -147;'516;Namibia;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;3;47;111;1;36;1;4;184;0;0;4984;9234;9107;13479;7629;1738;1738;2553;432;0;26;0 -147;'516;Namibia;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;3;5;98;217;4;24;5;6;27;0;0;7684;13134;13908;17319;9401;2128;2128;3214;458;1;20;1 -147;'516;Namibia;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5123;6093;5354;4925;10979;3807;1632;2598;6243;3847;6619;7645;8358;6993;8915;12714;6569;6569;6569;6281;6725;10710;7953;4730 -147;'516;Namibia;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2395;4491;3206;3993;16723;3732;2125;3570;6780;4672;8158;10149;9193;7630;8523;10427;5438;5438;5438;6478;5693;9033;7988;5156 -147;'516;Namibia;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;64;6;38;6;6;3;2;98;7;2;5;355;1013;912;4878;336;336;336;348;3;1;310;88 -147;'516;Namibia;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;28;24;18;17;10;8;12;56;33;55;29;644;1315;1295;5861;413;413;413;379;4;4;189;127 -147;'516;Namibia;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;2;1;35;0;9;39;68;2;0;8;2;0;112;215;5;5;5;6;0;2;2;0 -147;'516;Namibia;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;0;3;1;47;0;12;74;47;5;0;14;4;2;87;149;10;10;10;6;2;1;1;0 -147;'516;Namibia;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;25;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;11;11;11;0 -147;'516;Namibia;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;14;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;24;23;23;1 -147;'516;Namibia;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;571;594;40;22;199;982;853;74;117;338;61;117;94;138;115;119;117;117;117;58;36;38;37;22 -147;'516;Namibia;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;628;985;105;68;342;1355;999;193;177;370;181;400;244;484;471;619;312;312;312;468;287;236;330;202 -147;'516;Namibia;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;1;16;28;3;1;2;2;3;6;1;14;19;13;7;33;0;0;0;0;0;1;6;0 -147;'516;Namibia;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;7;50;80;21;15;3;23;41;52;9;101;24;36;53;109;5;5;5;1;1;8;6;8 -147;'516;Namibia;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46074;43698;36089;26934;34202;38132;31964 -147;'516;Namibia;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2598;2674;2735;3172;4694;5781;4243 -147;'516;Namibia;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1770;992;1002;783;1093;1296;927 -147;'516;Namibia;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;14;13;27;452;459;326 -147;'516;Namibia;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1301;595;684;497;223;362;152 -147;'516;Namibia;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;6;11;23;85;2;1 -147;'516;Namibia;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;469;397;318;286;870;934;775 -147;'516;Namibia;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;8;2;4;367;457;325 -147;'516;Namibia;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2708;2552;1649;1498;2639;2304;1905 -147;'516;Namibia;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;415;460;500;2013;2434;2666;1460 -147;'516;Namibia;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2220;2556;1859;1386;2777;1577;1261 -147;'516;Namibia;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;169;163;83;323;281;121;212 -147;'516;Namibia;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7208;7164;6154;3818;5532;4843;4721 -147;'516;Namibia;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;157;86;226;68;274;328;312 -147;'516;Namibia;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;13 -147;'516;Namibia;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;18 -147;'516;Namibia;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1 -147;'516;Namibia;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -147;'516;Namibia;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;24 -147;'516;Namibia;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;28 -147;'516;Namibia;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1 -147;'516;Namibia;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1 -147;'516;Namibia;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;14 -147;'516;Namibia;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;25 -147;'516;Namibia;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28435;26431;22510;16967;20062;24357;20294 -147;'516;Namibia;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1717;1753;1784;629;1149;2106;1688 -147;'516;Namibia;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;28;69;653;25;966;102 -147;'516;Namibia;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;0;0;0;0;37 -147;'516;Namibia;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3698;3975;2846;1829;2074;2789;2754 -147;'516;Namibia;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;139;190;129;112;104;101;208 -147;'516;Namibia;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57774;61987;58386;44578;61515;59535;57633 -147;'516;Namibia;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5563;5980;2019;745;1223;2966;1209 -147;'516;Namibia;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;22;40;24;44;29;42 -147;'516;Namibia;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;15;6 -147;'516;Namibia;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1692;1077;849;853;1041;2849;2520 -147;'516;Namibia;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;73;64;4;18;88;4 -147;'516;Namibia;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14878;14842;14647;11725;24109;14873;17225 -147;'516;Namibia;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;55;48;16;32;47;60 -147;'516;Namibia;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20334;21891;19212;17868;19985;22923;20800 -147;'516;Namibia;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4842;5550;1488;453;771;2124;830 -147;'516;Namibia;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20840;24155;23638;14108;16336;18861;17046 -147;'516;Namibia;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;659;302;419;272;402;692;309 -148;'520;Nauru;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1398;1482;1107;1819;3005;3162;1936 -148;'520;Nauru;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108;23;11;11;20;80;22 -148;'520;Nauru;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;615;422;212;205;205;205;205;205;205;205;205;205;205;205;205;205;205;205;105;153;225;377;403;303;426;712;757;644;519;1597;1577;824 -148;'520;Nauru;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;0;0;0;0;0;22;0;0;9;4;4;4;53;4 -148;'520;Nauru;1861;Roundwood;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;870;73;329;1529;225;74;208;3330;25 -148;'520;Nauru;1861;Roundwood;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;53;40;147;181;50;78;247;591;16 -148;'520;Nauru;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -148;'520;Nauru;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -148;'520;Nauru;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;189;1507;0;52;204;295;0 -148;'520;Nauru;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;141;0;61;239;422;0 -148;'520;Nauru;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -148;'520;Nauru;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -148;'520;Nauru;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140;22;225;22;4;3035;25 -148;'520;Nauru;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91;40;50;17;8;169;16 -148;'520;Nauru;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -148;'520;Nauru;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -148;'520;Nauru;1865;Industrial roundwood;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;870;73;329;1529;225;74;208;3330;25 -148;'520;Nauru;1865;Industrial roundwood;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;53;40;147;181;50;78;247;591;16 -148;'520;Nauru;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -148;'520;Nauru;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -148;'520;Nauru;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;189;1507;0;52;204;295;0 -148;'520;Nauru;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;56;141;0;61;239;422;0 -148;'520;Nauru;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -148;'520;Nauru;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -148;'520;Nauru;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;189;1507;0;52;204;295;0 -148;'520;Nauru;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;56;141;0;61;239;422;0 -148;'520;Nauru;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -148;'520;Nauru;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -148;'520;Nauru;1867;Industrial roundwood, 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;870;73;140;22;225;22;4;3035;25 -148;'520;Nauru;1867;Industrial roundwood, non-coniferous;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;53;40;91;40;50;17;8;169;16 -148;'520;Nauru;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -148;'520;Nauru;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -148;'520;Nauru;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;870;73;140;2;5;0;4;0;0 -148;'520;Nauru;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;40;91;0;4;0;8;0;0 -148;'520;Nauru;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -148;'520;Nauru;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -148;'520;Nauru;1670;Industrial roundwood, non-coniferous non-tropical (export/import);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;0;0;0;20;220;22;0;3035;25 -148;'520;Nauru;1670;Industrial roundwood, non-coniferous non-tropical (export/import);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;0;0;0;40;46;17;0;169;16 -148;'520;Nauru;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -148;'520;Nauru;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -148;'520;Nauru;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;67;3;1;2 -148;'520;Nauru;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;64;4;2;3 -148;'520;Nauru;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -148;'520;Nauru;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1687;1430;403;403;403;403;403;403;403;403;403;403;403;403;403;403;403;403;403;403;1739;403;1544;1008;1129;809;673;982;130;3315;7497;8165 -148;'520;Nauru;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;525;378;147;147;147;147;147;147;147;147;147;147;147;147;147;147;147;147;50;91;127;198;180;130;230;376;364;459;146;980;582;536 -148;'520;Nauru;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;0;0;0;0;0;67;0;0;32;0;0;0;0;0 -148;'520;Nauru;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;0;0;0;0;0;22;0;0;9;0;0;0;0;0 -148;'520;Nauru;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -148;'520;Nauru;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1074;817;377;377;377;377;377;377;377;377;377;377;377;377;377;377;377;377;377;377;377;377;377;988;1033;647;673;982;130;2559;7409;7000 -148;'520;Nauru;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;360;213;139;139;139;139;139;139;139;139;139;139;139;139;139;139;139;139;41;47;44;186;59;118;177;273;364;459;146;936;573;455 -148;'520;Nauru;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;0;0;32;0;0;0;0;0 -148;'520;Nauru;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;0;0;9;0;0;0;0;0 -148;'520;Nauru;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -148;'520;Nauru;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;613;613;26;26;26;26;26;26;26;26;26;26;26;26;26;26;26;26;26;26;1362;26;1167;20;96;162;0;0;0;756;88;1165 -148;'520;Nauru;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;165;165;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;9;44;83;12;121;12;53;103;0;0;0;44;9;81 -148;'520;Nauru;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -148;'520;Nauru;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -148;'520;Nauru;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -148;'520;Nauru;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;15;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;25;32;38;2;3;1;2;20;2;6 -148;'520;Nauru;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;18;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;19;19;22;52;34;26;53;3;3;4;27;62;6;23 -148;'520;Nauru;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;0;0 -148;'520;Nauru;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;0;0 -148;'520;Nauru;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -148;'520;Nauru;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;124;24;48;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;196;72;213;211;55;92;1765;47;791 -148;'520;Nauru;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;16;24;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;15;22;55;106;168;74;83;166;189;51;133;200;205;111 -148;'520;Nauru;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;174;0 -148;'520;Nauru;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;49;0 -148;'520;Nauru;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -148;'520;Nauru;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;16;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;194;70;211;209;51;85;1727;20;781 -148;'520;Nauru;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;10;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;14;21;54;105;167;73;82;165;188;49;128;189;100;102 -148;'520;Nauru;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;0;0;0;0;0;0;174;0 -148;'520;Nauru;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;0;0;0;0;0;0;49;0 -148;'520;Nauru;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;2;2;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -148;'520;Nauru;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;1;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -148;'520;Nauru;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;4;7;38;27;10 -148;'520;Nauru;1697;Particle board;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;2;5;11;105;9 -148;'520;Nauru;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;29;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -148;'520;Nauru;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;7;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -148;'520;Nauru;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -148;'520;Nauru;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -148;'520;Nauru;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -148;'520;Nauru;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -148;'520;Nauru;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;29;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -148;'520;Nauru;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;7;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -148;'520;Nauru;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -148;'520;Nauru;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -148;'520;Nauru;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -148;'520;Nauru;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -148;'520;Nauru;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;37;35;47;64;35 -148;'520;Nauru;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;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;78;71;104;191;135 -148;'520;Nauru;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;0 -148;'520;Nauru;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;4;4;4;4;4 -148;'520;Nauru;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;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;20;19;22;5;1 -148;'520;Nauru;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;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;21;23;29;10;4 -148;'520;Nauru;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -148;'520;Nauru;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4 -148;'520;Nauru;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;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;20;19;22;5;1 -148;'520;Nauru;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;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;21;23;29;10;4 -148;'520;Nauru;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -148;'520;Nauru;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4 -148;'520;Nauru;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -148;'520;Nauru;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -148;'520;Nauru;1615;Printing and writing papers, uncoated, woodfree;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;19;19;19;1;1 -148;'520;Nauru;1615;Printing and writing papers, uncoated, woodfree;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;20;23;18;3;4 -148;'520;Nauru;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;3;4;0 -148;'520;Nauru;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;11;7;0 -148;'520;Nauru;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -148;'520;Nauru;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4 -148;'520;Nauru;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;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;17;16;25;59;34 -148;'520;Nauru;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;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;57;48;75;181;131 -148;'520;Nauru;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;0 -148;'520;Nauru;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;0 -148;'520;Nauru;1676;Household and sanitary papers;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;17;16;25;59;34 -148;'520;Nauru;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;57;48;75;181;131 -148;'520;Nauru;1676;Household and sanitary 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 -148;'520;Nauru;1676;Household and sanitary 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 -148;'520;Nauru;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -148;'520;Nauru;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -148;'520;Nauru;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -148;'520;Nauru;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -148;'520;Nauru;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -148;'520;Nauru;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -148;'520;Nauru;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;322;286;194;951;1114;1078;577 -148;'520;Nauru;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;12;4;0;5;14;18 -148;'520;Nauru;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -148;'520;Nauru;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -148;'520;Nauru;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;165;0;2 -148;'520;Nauru;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0 -148;'520;Nauru;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;4;24 -148;'520;Nauru;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -148;'520;Nauru;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;186;197;41;820;614;704;80 -148;'520;Nauru;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111;48;116;80;254;360;427 -148;'520;Nauru;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;12;4;0;5;14;17 -148;'520;Nauru;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;41;37;51;71;10;44 -148;'520;Nauru;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1 -148;'520;Nauru;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;364;439;269;349;294;507;535 -148;'520;Nauru;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;2;3;7;11;13;0 -148;'520;Nauru;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;2;2;0;6;7 -148;'520;Nauru;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -148;'520;Nauru;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;203;319;213;316;222;261;289 -148;'520;Nauru;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;4;15;15;8;108;1 -148;'520;Nauru;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;3;2;0 -148;'520;Nauru;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;142;116;39;16;64;132;238 -148;'520;Nauru;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;2;3;7;8;11;0 -149;'524;Nepal;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;162582;142009;181994;135030;198112.29;198260.78;212816 -149;'524;Nepal;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14541;13112;7170;5607;10957.93;19283.76;7856.76 -149;'524;Nepal;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;200;200;200;200;400;300;300;856;7151;6565;5789;2739;1394;3600;3860;4871;562;639;2233;424;2340;1445;2574;2574;3960;2171;14604;17951;16700.2;9579;15149;20071.1;47927;53954;70408;22916.28;29902;81951;65772;101827;117541;85957;119158;85629;125454.29;137890.78;148658 -149;'524;Nepal;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;2349;1546;2362;5854;6834;4224;4062;4073;2300;2250;3200;3200;3200;8400;5800;3000;12143;15044;14211;11000;11000;12000;12000;12000;591;850;205;131;224;140;79;428;273;31;185;98;1504;1409;1197;1197;1528;1550;3839;9446;10214;4006;15487;7055;5156;5918;5119.1;7119;8388;6739;5884;9168;10752;6785;4740;3482;7408.93;16364.76;4368.76 -149;'524;Nepal;1861;Roundwood;5516;Production;m3;9321000;9463000;9445000;9574999;9880000;10140000;10338000;10569000;10797000;10918999;11781773;11801967;12022493;11986037;12132646;12155232;12228169;12244110;12340103;12625072;12511313;12576799;12920187;12760816;12736411;12778306;12933156;12852376;12906772;12966872;12966377;13011321;13102333;13033873;13101351;13119471;13190994;13853479;13938496;14022684;14004224;13987933;13973789;13961765;13951840;13914348;13879000;13845800;13814715;13825685;13763548;13702581;13644365;13588319;13534406;13411847;13292213;13175437;13061450;12950189;12835477;12723491;12614168 -149;'524;Nepal;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;36;36;0;0;0;0;0;0;0;833;345;30;105;10;382;156;18;52;24;75;1468;6559;116;7858;66;206;97;41;620;57 -149;'524;Nepal;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;0;0;0;0;0;0;0;285;45;9.2;29;4;21;17;16;13;5.28;28;371;653;102;3757;31;113;23;23;33;29 -149;'524;Nepal;1861;Roundwood;5916;Export quantity;m3;91200;51200;91500;184200;177000;177300;171600;171600;91600;90100;126200;126200;126200;270000;162000;72000;124000;147000;124000;126000;126000;126000;126000;126000;13400;8200;1500;1100;3900;635;490;846;846;0;0;0;0;0;4;4;4;0;156;147;410;1311;13108;572;36;13;49;591;57;764;19;38;1;29;121;1;4;291;5 -149;'524;Nepal;1861;Roundwood;5922;Export value;1000 USD;2349;1546;2362;5854;6834;4224;4062;4073;2300;2250;3200;3200;3200;8400;5800;3000;12143;15044;14211;11000;11000;12000;12000;12000;591;850;205;131;224;140;79;124;124;0;0;0;0;0;1;1;1;0;69;69;829;579;9786;1259;209;81;469;1156;885;187;2;5;0;10;37;16;44;7;34 -149;'524;Nepal;1862;Roundwood, coniferous;5516;Production;m3;219000;209000;205000;137999;168000;152000;153000;159000;161000;114999;72327;72675;73708;73537;74224;74330;74672;74747;75196;76532;75999;76305;77914;77168;77053;77250;77975;77597;77851;78086;77850;78060;78487;78166;78482;78567;78902;55555;59406;59800;59714;59637;59571;59515;59468;59293;59100;59000;58826;58690;58936;58113;57840;57578;57325;56751;56190;55643;55109;54588;54050;53525;53013 -149;'524;Nepal;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;193;0;206;97;32;268;44 -149;'524;Nepal;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;0;113;23;17;32;26 -149;'524;Nepal;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -149;'524;Nepal;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -149;'524;Nepal;1863;Roundwood, non-coniferous;5516;Production;m3;9102000;9254000;9240000;9437000;9712000;9988000;10185000;10410000;10636000;10804000;11709446;11729292;11948785;11912500;12058422;12080902;12153497;12169363;12264907;12548540;12435314;12500494;12842273;12683648;12659358;12701056;12855181;12774779;12828921;12888786;12888527;12933261;13023846;12955707;13022869;13040904;13112092;13797924;13879090;13962884;13944510;13928296;13914218;13902250;13892372;13855055;13819900;13786800;13755889;13766995;13704612;13644468;13586525;13530741;13477081;13355096;13236023;13119794;13006341;12895601;12781427;12669966;12561155 -149;'524;Nepal;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7665;66;0;0;9;352;13 -149;'524;Nepal;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3721;31;0;0;6;1;3 -149;'524;Nepal;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;29;121;1;4;291;5 -149;'524;Nepal;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;10;37;16;44;7;34 -149;'524;Nepal;1864;Wood fuel;5516;Production;m3;8686000;8853000;9039000;9192999;9411000;9599000;9790000;9994000;10208000;10382999;11167773;11241967;11462493;11426037;11572646;11595232;11668169;11684110;11780103;12065072;11951313;12016799;12360187;12200816;12176411;12218306;12373156;12292376;12346772;12396872;12346377;12391321;12482333;12413873;12481351;12499471;12570994;12593479;12678496;12762684;12744224;12727933;12713789;12701765;12691840;12654348;12619000;12585800;12554715;12525685;12463548;12402581;12344365;12288319;12234406;12111847;11992213;11875437;11761450;11650189;11535477;11423491;11314168 -149;'524;Nepal;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;100;13;2;23;23;20;0;0;;;;;;82;1 -149;'524;Nepal;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;14;5;5;5;2;0;0;;;;;;6;0 -149;'524;Nepal;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;;;;;;0;4 -149;'524;Nepal;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;;;;;;3;27 -149;'524;Nepal;1627;Wood fuel, coniferous;5516;Production;m3;111000;111000;124000;99999;136000;138000;138000;143000;145000;94999;52327;52675;53708;53537;54224;54330;54672;54747;55196;56532;55999;56305;57914;57168;57053;57250;57975;57597;57851;58086;57850;58060;58487;58166;58482;58567;58902;55555;59406;59800;59714;59637;59571;59515;59468;59293;59100;59000;58826;58690;58936;58113;57840;57578;57325;56751;56190;55643;55109;54588;54050;53525;53013 -149;'524;Nepal;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;1 -149;'524;Nepal;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;0 -149;'524;Nepal;1628;Wood fuel, non-coniferous;5516;Production;m3;8575000;8742000;8915000;9093000;9275000;9461000;9652000;9851000;10063000;10288000;11115446;11189292;11408785;11372500;11518422;11540902;11613497;11629363;11724907;12008540;11895314;11960494;12302273;12143648;12119358;12161056;12315181;12234779;12288921;12338786;12288527;12333261;12423846;12355707;12422869;12440904;12512092;12537924;12619090;12702884;12684510;12668296;12654218;12642250;12632372;12595055;12559900;12526800;12495889;12466995;12404612;12344468;12286525;12230741;12177081;12055096;11936023;11819794;11706341;11595601;11481427;11369966;11261155 -149;'524;Nepal;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;4 -149;'524;Nepal;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;27 -149;'524;Nepal;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;100;13;2;23;23;20;0;0;;;;;;; -149;'524;Nepal;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;14;5;5;5;2;0;0;;;;;;; -149;'524;Nepal;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;;;;;;; -149;'524;Nepal;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;;;;;;; -149;'524;Nepal;1865;Industrial roundwood;5516;Production;m3;635000;610000;406000;382000;469000;541000;548000;575000;589000;536000;614000;560000;560000;560000;560000;560000;560000;560000;560000;560000;560000;560000;560000;560000;560000;560000;560000;560000;560000;570000;620000;620000;620000;620000;620000;620000;620000;1260000;1260000;1260000;1260000;1260000;1260000;1260000;1260000;1260000;1260000;1260000;1260000;1300000;1300000;1300000;1300000;1300000;1300000;1300000;1300000;1300000;1300000;1300000;1300000;1300000;1300000 -149;'524;Nepal;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;36;36;0;0;0;0;0;0;0;833;345;30;105;10;282;56;5;50;1;52;1448;6559;116;7858;66;206;97;41;538;56 -149;'524;Nepal;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;0;0;0;0;0;0;0;285;45;9.2;29;4;20;16;2;8;0.28;23;369;653;102;3757;31;113;23;23;27;29 -149;'524;Nepal;1865;Industrial roundwood;5916;Export quantity;m3;91200;51200;91500;184200;177000;177300;171600;171600;91600;90100;126200;126200;126200;270000;162000;72000;124000;147000;124000;126000;126000;126000;126000;126000;13400;8200;1500;1100;3900;635;490;846;846;0;0;0;0;0;4;4;4;0;156;147;410;1311;13108;572;36;13;49;591;57;764;0;19;1;29;121;1;4;291;1 -149;'524;Nepal;1865;Industrial roundwood;5922;Export value;1000 USD;2349;1546;2362;5854;6834;4224;4062;4073;2300;2250;3200;3200;3200;8400;5800;3000;12143;15044;14211;11000;11000;12000;12000;12000;591;850;205;131;224;140;79;124;124;0;0;0;0;0;1;1;1;0;69;69;829;579;9786;1259;209;81;469;1156;885;187;0;3;0;10;37;16;44;4;7 -149;'524;Nepal;1866;Industrial roundwood, coniferous;5516;Production;m3;108000;98000;81000;38000;32000;14000;15000;16000;16000;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;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -149;'524;Nepal;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;36;36;0;0;0;0;0;0;0;269;171;2;0;0;30;47;0;0;0;0;0;6;0;193;0;206;97;32;186;43 -149;'524;Nepal;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;0;0;0;0;0;0;0;16;10;0.2;0;0;7;10;0;0;0;0;0;1;0;36;0;113;23;17;26;26 -149;'524;Nepal;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;80;44;13;0;0;0;0;0;0;500;0;0;0;18;0;0;0;0;0;0;0 -149;'524;Nepal;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;10;3;4;0;0;0;0;0;0;75;0;0;0;2;0;0;0;0;0;0;0 -149;'524;Nepal;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;36;36;0;0;0;0;0;0;0;269;171;2;0;0;30;47;0;0;0;0;0;6;0;193;0;206;97;32;186;43 -149;'524;Nepal;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;0;0;0;0;0;0;0;16;10;0.2;0;0;7;10;0;0;0;0;0;1;0;36;0;113;23;17;26;26 -149;'524;Nepal;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;80;44;13;0;0;0;0;0;0;500;0;0;0;18;0;0;0;0;0;0;0 -149;'524;Nepal;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;10;3;4;0;0;0;0;0;0;75;0;0;0;2;0;0;0;0;0;0;0 -149;'524;Nepal;1867;Industrial roundwood, non-coniferous;5516;Production;m3;527000;512000;325000;344000;437000;527000;533000;559000;573000;516000;594000;540000;540000;540000;540000;540000;540000;540000;540000;540000;540000;540000;540000;540000;540000;540000;540000;540000;540000;550000;600000;600000;600000;600000;600000;600000;600000;1260000;1260000;1260000;1260000;1260000;1260000;1260000;1260000;1260000;1260000;1260000;1260000;1300000;1300000;1300000;1300000;1300000;1300000;1300000;1300000;1300000;1300000;1300000;1300000;1300000;1300000 -149;'524;Nepal;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;564;174;28;105;10;252;9;5;50;1;52;1448;6553;116;7665;66;0;0;9;352;13 -149;'524;Nepal;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;269;35;9;29;4;13;6;2;8;0.28;23;369;652;102;3721;31;0;0;6;1;3 -149;'524;Nepal;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;635;490;846;846;0;0;0;0;0;4;4;4;0;76;103;397;1311;13108;572;36;13;49;91;57;764;0;1;1;29;121;1;4;291;1 -149;'524;Nepal;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140;79;124;124;0;0;0;0;0;1;1;1;0;59;66;825;579;9786;1259;209;81;469;1081;885;187;0;1;0;10;37;16;44;4;7 -149;'524;Nepal;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;174;28;105;10;252;9;5;50;1;52;800;6553;116;6285;66;0;0;9;352;12 -149;'524;Nepal;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;9;29;4;13;6;2;8;0.28;23;309;652;102;3694;31;0;0;6;1;3 -149;'524;Nepal;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;253;1311;13108;222;0;0;23;0;0;0;0;0;0;28;0;0;4;1;1 -149;'524;Nepal;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;579;579;9786;1224;0;0;216;0;0;0;0;0;0;10;0;0;44;4;7 -149;'524;Nepal;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;564;0;0;0;0;0;0;0;0;0;0;648;0;0;1380;0;0;0;0;0;1 -149;'524;Nepal;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;269;0;0;0;0;0;0;0;0;0;0;60;0;0;27;0;0;0;0;0;0 -149;'524;Nepal;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;635;490;846;846;0;0;0;0;0;4;4;4;0;76;103;144;0;0;350;36;13;26;91;57;764;0;1;1;1;121;1;0;290;0 -149;'524;Nepal;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140;79;124;124;0;0;0;0;0;1;1;1;0;59;66;246;0;0;35;209;81;253;1081;885;187;0;1;0;0;37;16;0;0;0 -149;'524;Nepal;1868;Sawlogs and veneer logs;5516;Production;m3;635000;610000;406000;382000;469000;541000;548000;575000;589000;536000;614000;560000;560000;560000;560000;560000;560000;560000;560000;560000;560000;560000;560000;560000;560000;560000;560000;560000;560000;570000;620000;620000;620000;620000;620000;620000;620000;1260000;1260000;1260000;1260000;1260000;1260000;1260000;1260000;1260000;1260000;1260000;1260000;1300000;1300000;1300000;1300000;1300000;1300000;1300000;1300000;1300000;1300000;1300000;1300000;1300000;1300000 -149;'524;Nepal;1868;Sawlogs and veneer logs;5916;Export quantity;m3;91200;51200;91500;184200;177000;177300;171600;171600;91600;90100;126200;126200;126200;270000;162000;72000;124000;147000;124000;126000;126000;126000;126000;126000;13400;8200;1500;1100;3900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -149;'524;Nepal;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;2349;1546;2362;5854;6834;4224;4062;4073;2300;2250;3200;3200;3200;8400;5800;3000;12143;15044;14211;11000;11000;12000;12000;12000;591;850;205;131;224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -149;'524;Nepal;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;108000;98000;81000;38000;32000;14000;15000;16000;16000;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;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -149;'524;Nepal;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;;8200;28700;12700;5700;5700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -149;'524;Nepal;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;;58;304;132;164;168;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -149;'524;Nepal;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;527000;512000;325000;344000;437000;527000;533000;559000;573000;516000;594000;540000;540000;540000;540000;540000;540000;540000;540000;540000;540000;540000;540000;540000;540000;540000;540000;540000;540000;550000;600000;600000;600000;600000;600000;600000;600000;1260000;1260000;1260000;1260000;1260000;1260000;1260000;1260000;1260000;1260000;1260000;1260000;1300000;1300000;1300000;1300000;1300000;1300000;1300000;1300000;1300000;1300000;1300000;1300000;1300000;1300000 -149;'524;Nepal;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;91200;43000;62800;171500;171300;171600;171600;171600;91600;90100;126200;126200;126200;270000;162000;72000;124000;147000;124000;126000;126000;126000;126000;126000;13400;8200;1500;1100;3900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -149;'524;Nepal;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;2349;1488;2058;5722;6670;4056;4062;4073;2300;2250;3200;3200;3200;8400;5800;3000;12143;15044;14211;11000;11000;12000;12000;12000;591;850;205;131;224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -149;'524;Nepal;1630;Wood charcoal;5510;Production;t;22604;23283;23982;24702;25443;26207;26994;27804;28639;29499;30626;31392;32590;33113;34177;34955;35910;36744;37860;39652;40074;41103;43127;43440;44235;45240;46701;47295;48420;49557;50494;51842;53411;54337;55888;57128;58645;60062;61744;63472;64797;66149;67530;68939;70378;71792;73200;74700;76206;77738;79200;80691;82209;83756;85332;86602;87892;89200;90529;91876;93294;94733;96194 -149;'524;Nepal;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;197;242;40;62;41;361;2;91;133;3;521;48;1063;643;1124.95;482;244 -149;'524;Nepal;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;24;24;48;20;8;19;27;11;0;49;57;5;127;9;183;155;388;77;363 -149;'524;Nepal;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;9;9;9;1;1;1;1;125;0;0;0;0;0 -149;'524;Nepal;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;9;9;9;4;4;4;4;87;0;0;0;0;0 -149;'524;Nepal;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;74;125;125;117;84;7370;102;7;61;61;10;928;20;20;9453;9453;37;39;36;52;7 -149;'524;Nepal;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;4;4;2;5;928;7;39;11;11;3;469;9;9;346;346;2;5;10;24;6 -149;'524;Nepal;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;17;17;17;17;26;18;18;18;18;41;23;23;23;23;34 -149;'524;Nepal;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;10;10;10;10;11;10;10;10;10;6;3;3;3;3;3 -149;'524;Nepal;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;51;43;10;10;100;5;7;7;7;20;14;14;28;28;30;1;4;28;3 -149;'524;Nepal;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;1;4;4;7;39;2;2;2;17;7;7;8;8;2;1;7;20;4 -149;'524;Nepal;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;8;8;8;8;8;8;8;8;31;13;13;13;13;13 -149;'524;Nepal;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;9;9;9;9;9;9;9;5;2;2;2;2;2 -149;'524;Nepal;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;74;74;74;74;74;7360;2;2;54;54;3;908;6;6;9425;9425;7;38;32;24;4 -149;'524;Nepal;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;924;0;0;9;9;1;452;2;2;338;338;0;4;3;4;2 -149;'524;Nepal;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;18;10;10;10;10;10;10;10;10;10;21 -149;'524;Nepal;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;2;1;1;1;1;1;1;1;1;1;1 -149;'524;Nepal;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19182;28282;5802;13087;4695;33 -149;'524;Nepal;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;973;1392;343;779;284;8 -149;'524;Nepal;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;21;28;27.82;27.82 -149;'524;Nepal;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;3;4;3.76;3.76 -149;'524;Nepal;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;95;30;30 -149;'524;Nepal;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;11;7;7 -149;'524;Nepal;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;21;28;27.82;27.82 -149;'524;Nepal;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;3;4;3.76;3.76 -149;'524;Nepal;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19182;28281;5801;12992;4665;3 -149;'524;Nepal;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;973;1391;343;768;277;1 -149;'524;Nepal;1872;Sawnwood;5516;Production;m3;238000;208000;156000;184000;211000;212000;212000;214000;220000;220000;220000;220000;220000;220000;220000;220000;220000;220000;220000;220000;220000;220000;220000;220000;220000;220000;220000;220000;220000;570000;620000;620000;620000;620000;620000;620000;620000;630000;630000;630000;630000;630000;630000;630000;630000;630000;630000;630000;630000;630000;630000;630000;630000;630000;630000;630000;630000;630000;630000;629827;629827;629827;629827 -149;'524;Nepal;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;168;168;168;0;82;55;128;128;123;50;370;2474;7;0;0;1;22;191;96;26;3268;6757;33740;15250;21941;3313;2658;1691;3653;1378;440 -149;'524;Nepal;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;44;44;44;0;4;5;50;50;58;13;108;564;2;0;0;0.1;7;112;334;109;713;2065;8268;6813;13353;934;1478;841;1354;547;132 -149;'524;Nepal;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;186;186;0;0;0;959;6;6;6;6;0;0;14;28;82;12;0;0;24;0;30;86;133;9;30;0;0;0;0;1;1;4 -149;'524;Nepal;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30;0;0;0;297;2;2;2;2;0;0;5;21;40;2;0;0;112;0.1;26;33;92;17;24;0;0;11;0;7;11;10 -149;'524;Nepal;1632;Sawnwood, coniferous;5516;Production;m3;38000;28000;17000;13000;6000;7000;7000;7000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;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 -149;'524;Nepal;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;89;89;89;0;82;55;55;55;50;50;340;1474;0;0;0;0;0;146;96;24;516;218;1740;2610;941;2946;1181;689;170;149;269 -149;'524;Nepal;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;28;28;28;0;4;5;5;5;13;13;76;256;0;0;0;0;0;70;34;11;153;73;332;480;186;651;442;128;56;47;55 -149;'524;Nepal;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;186;186;0;0;0;959;3;3;3;3;0;0;0;0;9;12;0;0;0;0;0;86;0;9;30;0;0;0;0;0;0;4 -149;'524;Nepal;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30;0;0;0;297;1;1;1;1;0;0;0;0;1;2;0;0;0;0;0;33;0;17;24;0;0;11;0;0;0;10 -149;'524;Nepal;1633;Sawnwood, non-coniferous;5516;Production;m3;200000;180000;139000;171000;205000;205000;205000;207000;210000;210000;210000;210000;210000;210000;210000;210000;210000;210000;210000;210000;210000;210000;210000;210000;210000;210000;210000;210000;210000;550000;600000;600000;600000;600000;600000;600000;600000;610000;610000;610000;610000;610000;610000;610000;610000;610000;610000;610000;610000;610000;610000;610000;610000;610000;610000;610000;610000;610000;610000;609827;609827;609827;609827 -149;'524;Nepal;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;79;79;79;0;0;0;73;73;73;0;30;1000;7;0;0;1;22;45;0;2;2752;6539;32000;12640;21000;367;1477;1002;3483;1229;171 -149;'524;Nepal;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;16;16;16;0;0;0;45;45;45;0;32;308;2;0;0;0.1;7;42;300;98;560;1992;7936;6333;13167;283;1036;713;1298;500;77 -149;'524;Nepal;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;3;3;3;3;0;0;14;28;73;0;0;0;24;0;30;0;133;0;0;0;0;0;0;1;1;0 -149;'524;Nepal;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;1;1;1;1;0;0;5;21;39;0;0;0;112;0.1;26;0;92;0;0;0;0;0;0;7;11;0 -149;'524;Nepal;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15000;39000;39000;39000;39000;39000;39000;39000;40000;40000;40000;39000;39000;39000;39000;39000;39000;39000;36845;36845;36845;36845 -149;'524;Nepal;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;13;756;756;756;320;876;2219;1286;806;2109;1938;3041;547;5770;1706;1979;2741;2805;6720;8903;12857;11764;32489;59435;47293;45059 -149;'524;Nepal;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;18;300;300;300;151;1144;1571;789;576;1021;1121;1320;1405;4035;3390;3650;5399;5608;11405;13154;8395;10272;9318;17079;15885;24205 -149;'524;Nepal;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;63;151;623;678;581;160;156;174;90;72;58;25;478;246;0;0;7;0 -149;'524;Nepal;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;10;65;151;154;251;390;367;426;225;190;105;54;48;34;2;23;34;0 -149;'524;Nepal;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;5000;5000;5000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;10000;10000 -149;'524;Nepal;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3085;467;243;45;45;219;5493;8019;3119;2928;1872;6555;1397;1567;2303;4103;968;3409;5279;8216;4424;3971;7559;5116;6689;17711;23461;40856;60069;123035;124339;119977 -149;'524;Nepal;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;599;182;86;11;11;73;151;373;373;340;374;1085;450;579;881;1154;615;2274;3003;4670;3081;2540;4986;3458;4536;9584;8121;12105;11157;22767;22665;21293 -149;'524;Nepal;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;100;100;167;25334;25238;131;2695;3553;6442;4750;2875;3877;3081;2220;835;282;396;191;404;243;393;9787;3 -149;'524;Nepal;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;11;11;19;4272;4264;52;1463;1303;2495;1838;1603;2415;2098;1624;664;192;243;88;219;86;386;2288;2 -149;'524;Nepal;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;5000;5000;5000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;10000;10000 -149;'524;Nepal;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2979;236;118;45;45;219;5000;5000;100;100;0;6095;410;580;735;3479;651;2272;4101;6073;3292;2766;3443;2713;4808;9482;19084;32505;51389;108000;108000;108000 -149;'524;Nepal;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;560;112;55;11;11;73;52;61;61;59;0;786;229;358;447;752;246;1414;1884;3314;1988;1604;2162;1708;2707;4935;5284;6871;6339;14316;14316;14316 -149;'524;Nepal;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;100;100;100;100;4;59;2168;3043;1881;1220;1253;2255;2657;1893;826;273;205;0;213;227;377;9784;0 -149;'524;Nepal;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;11;11;11;11;3;41;707;752;645;463;937;1749;1814;1460;656;184;155;0;131;83;383;2286;0 -149;'524;Nepal;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3 -149;'524;Nepal;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4 -149;'524;Nepal;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -149;'524;Nepal;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -149;'524;Nepal;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;370;1891;1891;1700;365;199;703;703;215;255;27;94;181;919;535;21;113;118;159;2890;2890;2673;2563;3776;5177;2907 -149;'524;Nepal;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;53;251;251;220;84;127;115;115;23;101;47;68;125;506;349;95;81;84;402;1377;1377;1695;1555;2702;2849;1756 -149;'524;Nepal;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25167;25167;5;460;443;4494;3463;1555;1555;104;7;7;7;189;189;189;14;14;1;1 -149;'524;Nepal;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4253;4253;3;748;543;1842;1367;658;658;126;6;6;6;86;86;86;1;1;0;0 -149;'524;Nepal;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;886;0;0;19;34;34;1;143;17;17;17;0;18;5;519;120;31;72 -149;'524;Nepal;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98;0;0;10;15;15;8;58;9;9;9;0;19;1;89;2;3;184 -149;'524;Nepal;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106;231;125;0;0;0;123;1128;1128;1128;1507;261;284;284;467;369;290;1024;963;1190;596;1041;3986;2268;1705;5339;1469;5673;5598;11139;11131;8998 -149;'524;Nepal;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;70;31;0;0;0;46;61;61;61;290;172;106;106;313;301;322;782;979;835;736;783;2734;1657;1418;3272;1441;3538;3174;5747;5497;5037 -149;'524;Nepal;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;67;67;67;67;67;67;67;67;67;320;320;2;2;2;2;2;2;2;2;2 -149;'524;Nepal;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;8;8;8;8;8;8;158;158;2;2;2;2;2;2;2;2;2 -149;'524;Nepal;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;123;123;123;123;123;252;207;207;395;140;97;125;236;320;47;245;476;264;373;458;808;479;522;1046;710;644 -149;'524;Nepal;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;46;46;46;46;169;96;96;303;118;116;126;299;237;151;177;413;228;266;322;729;441;527;831;673;651 -149;'524;Nepal;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;957;957;957;1333;1;6;6;1;142;142;454;473;770;472;744;3395;1836;1279;4278;463;5010;4892;9712;10308;8242 -149;'524;Nepal;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;240;2;1;1;1;120;163;327;425;534;529;561;2219;1275;1062;2740;671;3061;2611;4773;4763;4317 -149;'524;Nepal;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;67;67;67;67;67;67;67;67;67;320;320;2;2;2;2;2;2;2;2;2 -149;'524;Nepal;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;8;8;8;8;8;8;158;158;2;2;2;2;2;2;2;2;2 -149;'524;Nepal;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106;106;0;0;0;0;0;48;48;48;51;8;71;71;71;87;51;445;254;100;77;52;115;168;53;603;198;184;184;381;113;112 -149;'524;Nepal;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;39;0;0;0;0;0;4;4;4;4;1;9;9;9;63;43;329;255;64;56;45;102;154;90;210;41;36;36;143;61;69 -149;'524;Nepal;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -149;'524;Nepal;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -149;'524;Nepal;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125;125;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -149;'524;Nepal;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;31;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -149;'524;Nepal;1879;Total fibre furnish;5510;Production;t;2000;8000;7500;7500;9300;10300;11200;13100;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;19000;19000;19000;19000;19000;19000;19000;19000;19000;19000;27000;33000;34000;49000;53000;53000;53000;53000;53000;53000;53000 -149;'524;Nepal;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;124;124;703;801;801;251;251;857;1017;196;1567;1567;3979;423;419;6679;5094;2586;2577;1139;1194;514;397;861;654;2629;2149;2105.85;2502.77;2794 -149;'524;Nepal;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;101;126;126;60;60;214;186;87;600;600;1912;154;181;1567;1893;1387;1322;391;643;368;259;596;449;1801;1451;2057.16;2479.78;2153 -149;'524;Nepal;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;29;61;61;270;439;274;274;274;521;1528;2542;2542;2194;1078;1425;349;1120;2196;4756;14553;17851;19947;34758;38447;20775;5902;1201;520;480;250 -149;'524;Nepal;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;64;64;402;772;351;351;351;494;1144;1401;1401;2096;952;1676;139;1671;918;2022;3433;2499;3475;6752;7621;5195;2017;869;725;809;584 -149;'524;Nepal;1878;Pulp for paper;5510;Production;t;2000;8000;7500;7500;9300;10300;11200;13100;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 -149;'524;Nepal;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;101;101;157;157;157;157;152;1421;1421;3820;264;266;435;595;408;399;248;198;303;397;781;574;2525;2141;2101.85;1186.77;2058 -149;'524;Nepal;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;28;28;55;55;55;55;69;584;584;1901;143;145;288;399;492;427;185;239;280;259;557;410;1742;1445;2055.16;1731.78;2027 -149;'524;Nepal;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;32;241;410;245;245;245;492;923;1807;1807;1796;803;1262;112;1107;456;685;695;320;555;831;408;408;294;140;140;358;250 -149;'524;Nepal;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;63;401;771;350;350;350;493;1040;1328;1328;2042;917;1648;115;1656;690;1525;2015;800;1607;2773;1044;1044;639;645;645;801;584 -149;'524;Nepal;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;101;101;130;130;130;130;134;1402;1402;3801;245;247;429;454;394;391;251;181;302;398;304;97;2529;2144;2103.85;1186.77;1668 -149;'524;Nepal;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;28;28;33;33;33;33;34;569;569;1886;128;130;284;295;428;415;182;129;248;260;257;110;1746;1448;2054.16;1727.78;1562 -149;'524;Nepal;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96;96;96;96;96;96;96;130;130;130;173;173;92;199;199;199;199;155;155;155;155;155;155;155;155;155;194 -149;'524;Nepal;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96;96;96;96;96;96;96;110;110;110;167;167;78;279;279;279;279;218;218;218;218;218;218;218;218;218;282 -149;'524;Nepal;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;102;11;13;23;47 -149;'524;Nepal;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;45;66;21;26;19;36 -149;'524;Nepal;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -149;'524;Nepal;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -149;'524;Nepal;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;11;145;43;291;291;18;57;226;281;;;;;;; -149;'524;Nepal;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;7;92;31;322;322;14;46;181;190;;;;;;; -149;'524;Nepal;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;0;0;0;;;;;;; -149;'524;Nepal;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;0;0;0;;;;;;; -149;'524;Nepal;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;99;99;99;99;99;99;99;99;210;210;210;65;65;41;41;41;0;0;2;;;;;;; -149;'524;Nepal;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;26;26;26;26;26;26;26;93;93;93;43;43;43;43;43;0;0;4;;;;;;; -149;'524;Nepal;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;43;43;43;43;43;43;0;0;0;;;;;;; -149;'524;Nepal;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;57;57;57;57;57;57;0;0;0;;;;;;; -149;'524;Nepal;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;2;2;31;31;31;31;31;1299;1299;3587;31;26;215;342;58;55;188;120;72;111;283;76;2423;2129;2086.85;1159.77;1617 -149;'524;Nepal;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;2;2;7;7;7;7;7;542;542;1792;34;30;145;217;59;46;121;79;63;62;208;61;1676;1423;2024.16;1704.78;1522 -149;'524;Nepal;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;34;34;34;34;34;140;140;140;140;140;140;140;140;140;140;140;140;140;140 -149;'524;Nepal;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;14;14;14;211;211;211;211;211;211;211;211;211;211;211;211;211;211 -149;'524;Nepal;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;11;10.77;0 -149;'524;Nepal;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;12;11.78;0 -149;'524;Nepal;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106;106;106;106;106;106;106;106;106;106;106;106;106;106 -149;'524;Nepal;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;197;197;197;197;197;197;197;197;197;197;197;197;197;197 -149;'524;Nepal;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1268;1268;3578;22;17;179;306;22;19;152;119;71;110;282;75;2422;2127;2074.85;1149;1617 -149;'524;Nepal;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;535;535;1774;16;12;114;186;28;15;90;79;63;62;208;61;1676;1423;2011.16;1692;1521 -149;'524;Nepal;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34 -149;'524;Nepal;1663;Chemical wood pulp, sulphate, bleached;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 -149;'524;Nepal;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;1;0;0 -149;'524;Nepal;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1;1;1 -149;'524;Nepal;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;2;2;31;31;31;31;31;31;31;9;9;9;36;36;36;36;36;0;0;0;;;;;;; -149;'524;Nepal;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;2;2;7;7;7;7;7;7;7;18;18;18;31;31;31;31;31;0;0;0;;;;;;; -149;'524;Nepal;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4 -149;'524;Nepal;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4 -149;'524;Nepal;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96;96;96;96;96;96;96;96;96;96;96;96;15;15;15;15;15;15;15;15;15;15;15;15;15;15;54 -149;'524;Nepal;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96;96;96;96;96;96;96;96;96;96;96;96;7;7;7;7;7;7;7;7;7;7;7;7;7;7;71 -149;'524;Nepal;1668;Pulp from fibres other than wood;5510;Production;t;2000;8000;7500;7500;9300;10300;11200;13100;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 -149;'524;Nepal;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;27;27;27;27;18;19;19;19;19;19;10;145;18;12;1;21;5;3;481;481;0;1;2;4;394 -149;'524;Nepal;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;22;22;22;22;35;15;15;15;15;15;8;108;68;16;7;114;36;3;304;304;0;1;5;8;469 -149;'524;Nepal;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;32;241;410;245;245;245;492;923;1773;1773;1762;726;1185;35;923;272;501;511;180;415;691;268;268;154;0;0;218;110 -149;'524;Nepal;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;63;401;771;350;350;350;493;1040;1314;1314;2028;846;1577;44;1384;418;1253;1743;589;1396;2562;833;833;428;434;434;590;373 -149;'524;Nepal;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;36;36;36;36;29;29;29;28;28;139;0;28;336;131 -149;'524;Nepal;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;2;2;2;2;7;7;7;23;23;109;0;23;240;135 -149;'524;Nepal;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;12000;18000;19000;34000;38000;38000;38000;38000;38000;38000;38000 -149;'524;Nepal;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121;121;700;700;700;94;94;700;860;44;146;146;159;159;153;6244;4499;2178;2178;891;996;211;0;80;80;104;8;4;1316;736 -149;'524;Nepal;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;98;98;98;5;5;159;131;18;16;16;11;11;36;1279;1494;895;895;206;404;88;0;39;39;59;6;2;748;126 -149;'524;Nepal;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;29;29;29;29;29;29;29;29;29;605;735;735;398;275;163;237;13;1740;4071;13858;17531;19392;33927;38039;20367;5608;1061;380;122;0 -149;'524;Nepal;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;1;1;1;1;1;1;1;1;104;73;73;54;35;28;24;15;228;497;1418;1699;1868;3979;6577;4151;1378;224;80;8;0 -149;'524;Nepal;1876;Paper and paperboard;5510;Production;t;;;;;;;;400;500;600;600;1700;1700;1700;1700;1700;1700;1700;1700;1700;1700;1700;1700;1700;400;2000;2000;2000;2000;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 -149;'524;Nepal;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;400;400;400;400;500;400;400;1600;9200;6200;8000;3800;2200;5600;6000;6733;709;407;1666;407;2946;2389;3970;3970;5062;2359;19248;21473;21473;6647;15512;19211;37494;63353;77236;19215;26186;90238;78547;118957;109078;79639;115406;79338;88844.38;80158;89493 -149;'524;Nepal;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;200;200;200;200;400;300;300;856;7151;6565;5789;2739;1394;3600;3860;4267;334;484;2153;312;2137;1145;1791;1791;3048;1446;11870;14693;14693;6155;12763;17178;42716;47461;59925;14981;22571;67958;47340;78687;76597;66672;91699;62332;80970.12;95652;100330 -149;'524;Nepal;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;441;363;41;92;31;923;753;949;949;1425;486;3437;4812;4812;225;3008;2172;1898;2517;1538;598;202;1440;630;408;813;420;890;777;5032.91;16609;5889 -149;'524;Nepal;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;274;119;30;121;34;709;539;747;747;1067;949;2511;3603;3603;1124;3114;2561;2141;1947;1713;1107;1486;2091;1515;2069;2813;1344;2407;2496;6209.93;13202;3661 -149;'524;Nepal;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;1200;1200;1300;1500;800;;;;5110;59;69;1429;7;2347;2277;3585;3585;4062;1724;10952;11609;11609;4945;6329;8271;28735;47991;54059;12545;16407;51200;50378;77040;69780;42549;77930;55828;63065.42;53729;68459 -149;'524;Nepal;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;556;535;565;600;300;;;;3518;32;69;1925;11;1826;927;1174;1174;2018;763;6342;7820;7820;2579;4377;6550;30408;33162;41793;10044;15122;39673;34018;45288;53269;34234;63074;40446;50216.87;56696;69277 -149;'524;Nepal;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;151;0;0;61;0;739;613;731;731;809;54;920;3773;3773;93;1316;1356;1543;1861;702;505;84;665;91;75;529;277;725;355;735.48;1240;574 -149;'524;Nepal;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;131;0;0;87;0;603;453;447;447;538;474;1133;2889;2889;847;1779;1816;1505;1348;975;613;886;1361;1001;1323;1718;827;2220;2317;4075.93;4948;1657 -149;'524;Nepal;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;1200;1200;1300;1500;800;;;;629;;0;0;0;1372;2255;3354;3354;3100;1024;4268;4809;4809;3758;2561;3632;19136;22806;19986;6045;2531;17190;20488;29135;17706;1090;13393;4131;2931.05;3445;634 -149;'524;Nepal;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;556;535;565;600;300;;;;374;;0;0;0;473;908;1026;1026;1379;362;1478;2453;2453;1695;1307;2215;14164;13189;14081;3764;1582;11171;11066;10866;11945;791;9599;2572;2377.29;3608;514 -149;'524;Nepal;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;;0;0;0;0;0;0;0;0;0;0;0;0;9;9;9;78;78;11;11;11;10;9;0;0;0;0;0;2;2;0 -149;'524;Nepal;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;;0;0;0;0;0;0;0;0;0;0;0;0;4;4;4;39;39;44;44;44;37;5;2;0;0;2;1;2;2;0 -149;'524;Nepal;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4481;59;69;1429;7;975;22;231;231;962;700;6684;6800;6800;1187;3768;4639;9599;25185;34073;6500;13876;34010;29890;47905;52074;41459;64537;51697;60134.37;50284;67825 -149;'524;Nepal;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3144;32;69;1925;11;1353;19;148;148;639;401;4864;5367;5367;884;3070;4335;16244;19973;27712;6280;13540;28502;22952;34422;41324;33443;53475;37874;47839.58;53088;68763 -149;'524;Nepal;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115;0;0;61;0;739;613;731;731;809;54;920;3773;3773;84;1307;1347;1465;1783;691;494;73;655;82;75;529;277;725;355;733.48;1238;574 -149;'524;Nepal;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110;0;0;87;0;603;453;447;447;538;474;1133;2889;2889;843;1775;1812;1466;1309;931;569;842;1324;996;1321;1718;827;2218;2316;4073.93;4946;1657 -149;'524;Nepal;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;62;62;62;55;2880;2831;2831;103;394;1020;231;2891;4522;1593;3505;1502;2013;5552;5237;5237;6740;3365;3527.42;2532;2435 -149;'524;Nepal;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;37;37;37;35;2109;2235;2235;59;420;972;2835;2173;3441;1569;3185;1297;1599;3774;4185;4185;5331;2649;2866.67;2731;2660 -149;'524;Nepal;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;9;9;9;8;598;755;755;7;577;880;1004;881;37;18;6;2;5;4;83;83;230;150;158.48;140;0 -149;'524;Nepal;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;57;456;578;578;34;443;705;814;660;58;75;14;57;115;75;108;108;11;9;30;8;15 -149;'524;Nepal;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;34;34;400;400;1894;2027;2027;56;1722;2197;5595;18802;20933;2729;6922;24087;20943;39272;35126;32081;43610;38079;48360.11;37334;60642 -149;'524;Nepal;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;21;21;225;225;1510;1599;1599;38;1288;2046;9216;12187;17350;2618;7389;20641;15649;28798;27619;26390;37564;27456;37496.91;38523;61101 -149;'524;Nepal;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;315;376;376;700;29;29;2808;2808;60;720;446;342;695;472;472;65;363;34;65;361;96;489;205;575;1094;569 -149;'524;Nepal;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;239;236;236;462;366;366;2150;2150;710;1264;1005;410;443;448;448;746;826;528;1081;1084;534;2052;2303;4023.93;4821;1590 -149;'524;Nepal;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;135;135;500;245;1910;1942;1942;1028;1652;1422;3773;3492;8618;2178;3449;8421;6934;3081;11711;4141;14187;10253;8246.83;10418;4748 -149;'524;Nepal;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;90;90;377;141;1245;1533;1533;787;1362;1317;4193;5613;6921;2093;2966;6564;5704;1850;9520;2868;10580;7769;7476;11834;5002 -149;'524;Nepal;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;290;346;346;100;17;293;210;210;17;10;21;119;207;182;4;2;290;43;6;85;98;6;0;0;4;5 -149;'524;Nepal;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;209;206;206;71;51;311;161;161;99;68;102;242;206;425;46;82;441;353;165;526;185;155;4;20;117;52 -149;'524;Nepal;1675;Other paper and paperboard;5510;Production;t;;;;;;;;400;500;600;600;1700;1700;1700;1700;1700;1700;1700;1700;1700;1700;1700;1700;1700;400;2000;2000;2000;2000;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 -149;'524;Nepal;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;400;400;400;400;500;400;400;400;8000;4900;6500;3000;2200;5600;6000;1623;650;338;237;400;599;112;385;385;1000;635;8296;9864;9864;1702;9183;10940;8759;15362;23177;6670;9779;39038;28169;41917;39298;37090;37476;23510;25778.96;26429;21034 -149;'524;Nepal;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;200;200;200;200;400;300;300;300;6616;6000;5189;2439;1394;3600;3860;749;302;415;228;301;311;218;617;617;1030;683;5528;6873;6873;3576;8386;10628;12308;14299;18132;4937;7449;28285;13322;33399;23328;32438;28625;21886;30753.26;38956;31053 -149;'524;Nepal;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;290;363;41;31;31;184;140;218;218;616;432;2517;1039;1039;132;1692;816;355;656;836;93;118;775;539;333;284;143;165;422;4297.43;15369;5315 -149;'524;Nepal;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;143;119;30;34;34;106;86;300;300;529;475;1378;714;714;277;1335;745;636;599;738;494;600;730;514;746;1095;517;187;179;2134;8254;2004 -149;'524;Nepal;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;200;200;61;30;30;15;15;11;44;1214;349;80;265;439;372;228;894;643;1757;1327;2000.64;2284;1670 -149;'524;Nepal;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;29;127;127;61;32;32;29;29;20;76;285;320;116;261;466;379;232;1028;713;2017;1360;2188.77;3004;2462 -149;'524;Nepal;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;300;51;67;67;67;67;67;67;67;67;67;67;67;67;67;67;67;0;7;7;0;18 -149;'524;Nepal;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;262;262;30;74;74;74;74;74;74;74;74;74;74;74;74;74;74;74;1;28;28;0;20 -149;'524;Nepal;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;190;190;700;287;7397;7576;7576;1481;8520;10036;8031;10560;19038;6486;9287;35704;26129;39043;37485;35354;35152;21655;23183.31;22760;18990 -149;'524;Nepal;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;256;256;682;340;4323;4696;4696;2923;7123;9175;8871;9786;11593;4680;6948;22762;11802;30184;20168;30082;25212;19137;27228.08;33853;27764 -149;'524;Nepal;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;134;134;216;126;2398;864;864;54;1607;691;273;570;760;23;37;663;468;153;214;74;165;415;4290.43;15344;5294 -149;'524;Nepal;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;176;176;192;176;1170;521;521;122;1117;435;456;433;489;387;468;314;332;355;955;395;170;137;2092;8225;1929 -149;'524;Nepal;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;137;137;100;70;374;624;624;2;5558;7048;1983;1995;2425;1047;1538;4683;7198;5099;4917;7094;4849;4950;5413.76;1950;2509 -149;'524;Nepal;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;218;218;37;36;280;387;387;8;3453;4797;1629;1664;1561;833;1145;2626;3748;2075;2333;3044;1998;1820;3002.37;1622;1962 -149;'524;Nepal;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;11;11;11;11;2;2;2;0;3;3;3 -149;'524;Nepal;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;74;74;74;74;74;74;74;12;12;12;0;3;3;24 -149;'524;Nepal;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;400;97;1971;3885;3885;951;1426;1350;1820;2380;2786;557;732;5293;2394;7081;13921;15493;15511;9943;11124.33;13569;5013 -149;'524;Nepal;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;600;282;1703;2408;2408;2605;2831;3320;2206;2455;2037;627;731;3389;1243;16107;7776;19678;16257;12956;18333.85;26088;17923 -149;'524;Nepal;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;72;100;100;3;111;111;2;115;467;179;525;598;1;8;615;453;122;179;19;4;397;3426.43;6925;277 -149;'524;Nepal;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;145;145;145;145;32;67;67;40;119;204;301;319;290;20;6;218;185;87;611;46;97;131;1625;3348;108 -149;'524;Nepal;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;41;100;20;5036;2765;2765;226;1234;1570;4207;6168;13776;4866;6935;25595;16405;26811;17259;12182;14251;6358;6221.25;6855;11203 -149;'524;Nepal;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;33;10;2335;1714;1714;123;652;1014;5007;5625;7939;3193;5025;16648;6724;11968;9324;7020;6651;4154;5609.85;5890;7671 -149;'524;Nepal;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;46;100;10;2379;744;744;43;1483;223;82;33;150;10;17;36;2;18;31;46;152;17;860;8416;1473 -149;'524;Nepal;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;42;26;1133;449;449;77;993;230;80;39;124;292;387;21;67;188;323;331;55;5;463;4873;701 -149;'524;Nepal;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;100;100;16;302;302;302;302;68;21;17;51;16;82;133;132;52;1388;585;541;404;423.97;386;265 -149;'524;Nepal;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;12;12;5;187;187;187;187;44;29;42;56;27;47;99;87;34;735;340;306;207;282;253;208 -149;'524;Nepal;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;16;16;9;9;9;9;1;1;1;1;1;1;1;2;2;2;7;7;1;1;0;3541 -149;'524;Nepal;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5;5;5;1;1;1;1;1;1;1;6;6;9;6;6;1;1;1;1096 -149;'524;Nepal;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;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 -149;'524;Nepal;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112;176;176;100;148;838;2258;2258;206;648;893;684;3588;3790;104;227;2895;1668;2646;919;1093;567;528;595;1385;374 -149;'524;Nepal;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;218;332;332;221;216;1144;2145;2145;624;1234;1433;3361;4228;6219;141;240;5057;1141;2983;2132;1643;1396;1389;1336.41;2099;827 -149;'524;Nepal;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140;84;84;100;6;68;108;108;11;18;58;15;19;9;3;14;45;4;113;3;2;0;0;0;25;3 -149;'524;Nepal;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;124;124;75;37;178;119;119;81;144;236;106;92;175;33;58;342;108;317;66;48;16;14;14;29;55 -149;'524;Nepal;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11572;19276;22900;18930;30303;17201;16459 -149;'524;Nepal;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;399;3004;482;535;1863;1935;1776 -149;'524;Nepal;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;197;186;5679;7845;13290;4846;415 -149;'524;Nepal;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96;96;96;96;96;96;2 -149;'524;Nepal;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;13;622;823;451;48;60 -149;'524;Nepal;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;26;26;26;26;0 -149;'524;Nepal;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;197;173;5057;7022;12839;4798;355 -149;'524;Nepal;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;70;70;70;70;70;2 -149;'524;Nepal;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;467;904;474;223;548;658;1004 -149;'524;Nepal;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;23;30;6;66;49;21 -149;'524;Nepal;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;238;371;495;145;207;348;300 -149;'524;Nepal;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;134;180;163;312;1503;1482;1195 -149;'524;Nepal;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3281;5939;5590;4956;7200;4195;4742 -149;'524;Nepal;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;4;41;2;3;38;268 -149;'524;Nepal;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13 -149;'524;Nepal;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23 -149;'524;Nepal;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7147;11586;9918;4890;7894;6203;8716 -149;'524;Nepal;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101;2688;133;92;151;190;209 -149;'524;Nepal;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;279;219;106;114;732 -149;'524;Nepal;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1 -149;'524;Nepal;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;242;290;465;652;1058;837;550 -149;'524;Nepal;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;13;19;27;44;80;80 -149;'524;Nepal;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33469;36776;39936;30471;42355;43169;47699 -149;'524;Nepal;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3390;3323;1948;1590;1686;984;1712 -149;'524;Nepal;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;40;19;43;485;56;60 -149;'524;Nepal;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1 -149;'524;Nepal;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2611;2911;4155;3580;5826;5202;4674 -149;'524;Nepal;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;0;2;2;2;2;249 -149;'524;Nepal;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1544;2348;2750;2100;2028;2126;1274 -149;'524;Nepal;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;10;4;0;0;11;12 -149;'524;Nepal;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9592;11215;12114;9708;13673;13768;11805 -149;'524;Nepal;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;452;186;298;739;1273;876;1356 -149;'524;Nepal;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19677;20262;20898;15040;20343;22017;29886 -149;'524;Nepal;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2895;3126;1643;848;410;94;94 -150;'528;Netherlands (Kingdom of the);1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11000331.29;12782804;12327179;12526791;16012485;16253143;16163524 -150;'528;Netherlands (Kingdom of the);1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8669778.23;9483400;8800140;8692104;10866436;11748580;10896368 -150;'528;Netherlands (Kingdom of the);1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;231788;230077;261332;339215;344622;339794;328329;426335;496833;566998;509547;580376;937097;1324582;1132577;1482427;1665166;1957936;2481007;2678061;2147543;2054942;1906937;2162941;1905282;2739016;3356363;3761246;4084087;4741184;4440011;4537527;3820587;4110849;5195444;5056646;4657664;5094477;4917707;4506375;4164336;4263651;5056789;5289162;5756654;6249971;7414211;7847128;6290969;7230683;7127993;7052709;5959708;5800820;4569366;4436876;5021270.54;6150095;5571169;5594194;7245906;7341880;7812122 -150;'528;Netherlands (Kingdom of the);1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;67617;67148;77101;100116;106963;112566;121869;118362;140875;171834;139677;168777;292137;507387;333967;517969;469611;702377;899877;1026261;884188;782687;851286;912844;913435;1344286;1743961;2100463;2101874;2630222;2530896;2254585;1920461;2235404;3035617;2755652;2667467;2857286;2748944;2903113;2456080;2574754;3299784;3400520;3745910;4032270;4725193;4675689;4223470;5325648;5268646;5160321;4173827;4156083;3274592;3330156;3846331.64;4347527;3771178;3453553;4390205;5463996;4864480 -150;'528;Netherlands (Kingdom of the);1861;Roundwood;5516;Production;m3;710000;712000;690000;680000;816000;819000;806000;839000;864000;990000;906000;1500000;982000;958000;908000;963000;940000;937000;861000;890000;902000;887000;894000;929000;1055000;1105000;1145000;1310000;1325000;1420000;1123000;1253000;1075000;1043000;1104000;952000;1109000;1023000;1044000;1039000;865000;839000;1044000;1025724;1110000;1106676;1022046;1117099;1016133;1080593;981800;954700;1108200;1251140;2245700;3253305;3150886;3144406;3067700;2965920;3010212;2976322;2976322 -150;'528;Netherlands (Kingdom of the);1861;Roundwood;5616;Import quantity;m3;919700;937300;935200;1074500;1045400;1116000;1069700;1191300;1152000;1120100;820600;760700;1079900;1242100;923600;808100;1065600;939400;843000;930600;606600;463900;492900;595200;641500;600400;641300;709700;697500;121867;712035;636178;553878;499000;465000;413900;463000;590000;491000;388000;440800;514300;387700;278200;316195;391400;469300;361900;261000;236300;353754;273300;255000;311200;341900;257755;327612;350242;340820;371938;370350;416784;431200 -150;'528;Netherlands (Kingdom of the);1861;Roundwood;5622;Import value;1000 USD;28492;25998;27409;34103;32643;34383;29527;34344;36738;35400;32006;32985;60785;76364;53852;58441;70175;67301;68513;77682;47355;40535;37885;37787;36678;51072;57756;65604;62883;13522;64350;59087;50127;56784;56006;46629;45405;55353;50925;34223;36748;37173;31679;21967;26329;33253;46145;37821;29259;29410;38547;21873;34904;33381;20991;23958;47956.72;55064;55174;59035;55559;49379;52578 -150;'528;Netherlands (Kingdom of the);1861;Roundwood;5916;Export quantity;m3;232000;211800;251700;276400;288400;260200;257700;324500;435500;467000;292300;260600;668600;725700;587300;446400;401400;322600;326300;379300;395400;337900;271300;338800;513800;408200;421800;395700;463300;164577;581312;571079;455000;395000;291000;290600;327000;333500;291000;242000;430500;384500;517000;605300;487400;600200;705500;530000;440200;509100;430464;471100;494800;528100;580400;445800;891000;885771;838563;587770;770276;620168;620168 -150;'528;Netherlands (Kingdom of the);1861;Roundwood;5922;Export value;1000 USD;5980;5428;5960;6396;6942;6227;5165;5589;6455;7548;5857;5768;13685;18444;12410;11359;12904;13080;17225;19975;14615;13143;9932;10991;11121;15145;19171;20566;20989;15172;24379;26598;22437;19005;15033;15833;14754;15035;14439;9425;20551;17178;24723;30155;24578;33981;62926;49199;32786;40495;37199;37152;41215;45505;33107;38045;58809.87;72418;66109;36184;35496;27358;27358 -150;'528;Netherlands (Kingdom of the);1862;Roundwood, coniferous;5516;Production;m3;460000;472000;440000;440000;576000;531000;530000;643000;630000;590000;563000;950000;633000;642000;645000;664000;647000;611000;594000;597000;609000;643000;649000;671000;707000;689000;709000;905000;900000;980000;718000;810000;630000;601000;693000;583000;694000;647000;651000;645000;544000;522000;594000;599533;657000;649719;565238;616131;538773;582162;537200;493900;641600;674900;690000;1053651;956558;901913;905300;863420;902529;908838;908838 -150;'528;Netherlands (Kingdom of the);1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;191912;218942;195145;220682;231235;309748;309748 -150;'528;Netherlands (Kingdom of the);1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14023.44;16066;15391;18165;19802;21561;21561 -150;'528;Netherlands (Kingdom of the);1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;412000;411041;397389;382362;376964;350264;350264 -150;'528;Netherlands (Kingdom of the);1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25597.88;20044;18422;17976;18208;15687;15687 -150;'528;Netherlands (Kingdom of the);1863;Roundwood, non-coniferous;5516;Production;m3;250000;240000;250000;240000;240000;288000;276000;196000;234000;400000;343000;550000;349000;316000;263000;299000;293000;326000;267000;293000;293000;244000;245000;258000;348000;416000;436000;405000;425000;440000;405000;443000;445000;442000;411000;369000;415000;376000;393000;394000;321000;317000;450000;426191;453000;456957;456808;500968;477360;498431;444600;460800;466600;576240;1555700;2199654;2194328;2242493;2162400;2102500;2107683;2067484;2067484 -150;'528;Netherlands (Kingdom of the);1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;135700;131300;145675;151256;139115;107036;121452 -150;'528;Netherlands (Kingdom of the);1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33933.28;38998;39783;40870;35757;27818;31017 -150;'528;Netherlands (Kingdom of the);1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;479000;474730;441174;205408;393312;269904;269904 -150;'528;Netherlands (Kingdom of the);1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33211.99;52374;47687;18208;17288;11671;11671 -150;'528;Netherlands (Kingdom of the);1864;Wood fuel;5516;Production;m3;50000;50000;40000;40000;8000;15000;15000;15000;15000;17000;15000;30000;20000;10000;40000;24000;31000;60000;70000;85000;85000;90000;90000;78000;90000;110000;110000;110000;110000;145000;127000;161000;175000;180000;163000;123000;123000;150000;162000;160000;136000;136000;290000;290000;290000;290000;290000;290000;290000;290000;290000;290000;290000;357000;1397000;2301000;2332000;2378000;2325700;2303520;2362278;2361422;2361422 -150;'528;Netherlands (Kingdom of the);1864;Wood fuel;5616;Import quantity;m3;34500;31000;27700;38100;32700;39500;56100;61100;53400;50000;31300;35700;45900;72800;70700;2500;1200;800;500;900;3100;3100;1600;800;1100;1300;1700;4700;1500;2300;4000;6742;10000;2000;2000;4900;61000;64000;63000;5000;5700;8500;9800;3400;295;1800;2000;8900;31700;29800;9900;41000;46900;46000;15500;19400;70200;89242;57768;60668;81568;109981;124397 -150;'528;Netherlands (Kingdom of the);1864;Wood fuel;5622;Import value;1000 USD;334;244;215;325;191;303;644;617;645;675;363;404;550;1040;971;64;28;29;31;48;101;101;65;23;25;80;151;185;142;286;438;425;78;156;142;491;7388;8511;7922;266;286;586;707;407;16;239;633;1215;4484;4045;1217;3351;4900;4754;1051;1312;3426.12;4548;4055;4692;8697;8571;11770 -150;'528;Netherlands (Kingdom of the);1864;Wood fuel;5916;Export quantity;m3;82500;85000;95400;112500;126000;131000;122400;145700;175600;159600;52400;60400;242400;218000;237700;8000;1300;2900;5000;8100;5200;5200;13000;6800;20300;21000;18600;19100;18300;22200;22500;22075;22000;21000;11000;16000;19000;43900;29000;22000;14800;22200;36200;15700;26600;30400;44100;41300;52200;31800;25100;64200;69500;42400;30000;39800;400000;369771;340263;139539;353563;215726;215726 -150;'528;Netherlands (Kingdom of the);1864;Wood fuel;5922;Export value;1000 USD;1080;1125;1226;1566;1765;1804;1590;1757;1924;1799;780;1121;3570;4320;3243;420;61;160;396;721;325;325;814;367;806;853;1180;1106;739;1040;1110;1244;919;885;631;1596;2624;3127;3004;526;249;1406;2080;693;2010;942;5335;5148;4158;4338;3710;5351;6871;4554;2118;2438;24794.32;36321;33054;6477;7068;3781;3781 -150;'528;Netherlands (Kingdom of the);1627;Wood fuel, coniferous;5516;Production;m3;10000;10000;10000;10000;5000;10000;10000;10000;10000;10000;10000;20000;15000;5000;10000;5000;10000;15000;20000;20000;20000;20000;20000;18000;20000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;0;0;0;0;0;0;0;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;71000;140000;411000;420000;434000;423300;417020;450806;459438;459438 -150;'528;Netherlands (Kingdom of the);1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53900;72942;32568;28868;29468;78481;78481 -150;'528;Netherlands (Kingdom of the);1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1787.44;2533;1073;968;1026;2428;2428 -150;'528;Netherlands (Kingdom of the);1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119000;109041;102389;102289;110589;64732;64732 -150;'528;Netherlands (Kingdom of the);1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7376.31;3787;3372;3430;3849;2003;2003 -150;'528;Netherlands (Kingdom of the);1628;Wood fuel, non-coniferous;5516;Production;m3;40000;40000;30000;30000;3000;5000;5000;5000;5000;7000;5000;10000;5000;5000;30000;19000;21000;45000;50000;65000;65000;70000;70000;60000;70000;85000;85000;85000;85000;120000;102000;136000;150000;155000;138000;123000;123000;150000;162000;160000;136000;136000;240000;240000;240000;240000;240000;240000;240000;240000;240000;240000;240000;286000;1257000;1890000;1912000;1944000;1902400;1886500;1911472;1901984;1901984 -150;'528;Netherlands (Kingdom of the);1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16300;16300;25200;31800;52100;31500;45916 -150;'528;Netherlands (Kingdom of the);1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1638.68;2015;2982;3724;7671;6143;9342 -150;'528;Netherlands (Kingdom of the);1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;281000;260730;237874;37250;242974;150994;150994 -150;'528;Netherlands (Kingdom of the);1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17418.01;32534;29682;3047;3219;1778;1778 -150;'528;Netherlands (Kingdom of the);1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;34500;31000;27700;38100;32700;39500;56100;61100;53400;50000;31300;35700;45900;72800;70700;2500;1200;800;500;900;3100;3100;1600;800;1100;1300;1700;4700;1500;2300;4000;6742;10000;2000;2000;4900;61000;64000;63000;5000;5700;8500;9800;3400;295;1800;2000;8900;31700;29800;9900;41000;46900;46000;15500;19400;;;;;;; -150;'528;Netherlands (Kingdom of the);1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;334;244;215;325;191;303;644;617;645;675;363;404;550;1040;971;64;28;29;31;48;101;101;65;23;25;80;151;185;142;286;438;425;78;156;142;491;7388;8511;7922;266;286;586;707;407;16;239;633;1215;4484;4045;1217;3351;4900;4754;1051;1312;;;;;;; -150;'528;Netherlands (Kingdom of the);1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;82500;85000;95400;112500;126000;131000;122400;145700;175600;159600;52400;60400;242400;218000;237700;8000;1300;2900;5000;8100;5200;5200;13000;6800;20300;21000;18600;19100;18300;22200;22500;22075;22000;21000;11000;16000;19000;43900;29000;22000;14800;22200;36200;15700;26600;30400;44100;41300;52200;31800;25100;64200;69500;42400;30000;39800;;;;;;; -150;'528;Netherlands (Kingdom of the);1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;1080;1125;1226;1566;1765;1804;1590;1757;1924;1799;780;1121;3570;4320;3243;420;61;160;396;721;325;325;814;367;806;853;1180;1106;739;1040;1110;1244;919;885;631;1596;2624;3127;3004;526;249;1406;2080;693;2010;942;5335;5148;4158;4338;3710;5351;6871;4554;2118;2438;;;;;;; -150;'528;Netherlands (Kingdom of the);1865;Industrial roundwood;5516;Production;m3;660000;662000;650000;640000;808000;804000;791000;824000;849000;973000;891000;1470000;962000;948000;868000;939000;909000;877000;791000;805000;817000;797000;804000;851000;965000;995000;1035000;1200000;1215000;1275000;996000;1092000;900000;863000;941000;829000;986000;873000;882000;879000;729000;703000;754000;735724;820000;816676;732046;827099;726133;790593;691800;664700;818200;894140;848700;952305;818886;766406;742000;662400;647934;614900;614900 -150;'528;Netherlands (Kingdom of the);1865;Industrial roundwood;5616;Import quantity;m3;885200;906300;907500;1036400;1012700;1076500;1013600;1130200;1098600;1070100;789300;725000;1034000;1169300;852900;805600;1064400;938600;842500;929700;603500;460800;491300;594400;640400;599100;639600;705000;696000;119567;708035;629436;543878;497000;463000;409000;402000;526000;428000;383000;435100;505800;377900;274800;315900;389600;467300;353000;229300;206500;343854;232300;208100;265200;326400;238355;257412;261000;283052;311270;288782;306803;306803 -150;'528;Netherlands (Kingdom of the);1865;Industrial roundwood;5622;Import value;1000 USD;28158;25754;27194;33778;32452;34080;28883;33727;36093;34725;31643;32581;60235;75324;52881;58377;70147;67272;68482;77634;47254;40434;37820;37764;36653;50992;57605;65419;62741;13236;63912;58662;50049;56628;55864;46138;38017;46842;43003;33957;36462;36587;30972;21560;26313;33014;45512;36606;24775;25365;37330;18522;30004;28627;19940;22646;44530.6;50516;51119;54343;46862;40808;40808 -150;'528;Netherlands (Kingdom of the);1865;Industrial roundwood;5916;Export quantity;m3;149500;126800;156300;163900;162400;129200;135300;178800;259900;307400;239900;200200;426200;507700;349600;438400;400100;319700;321300;371200;390200;332700;258300;332000;493500;387200;403200;376600;445000;142377;558812;549004;433000;374000;280000;274600;308000;289600;262000;220000;415700;362300;480800;589600;460800;569800;661400;488700;388000;477300;405364;406900;425300;485700;550400;406000;491000;516000;498300;448231;416713;404442;404442 -150;'528;Netherlands (Kingdom of the);1865;Industrial roundwood;5922;Export value;1000 USD;4900;4303;4734;4830;5177;4423;3575;3832;4531;5749;5077;4647;10115;14124;9167;10939;12843;12920;16829;19254;14290;12818;9118;10624;10315;14292;17991;19460;20250;14132;23269;25354;21518;18120;14402;14237;12130;11908;11435;8899;20302;15772;22643;29462;22568;33039;57591;44051;28628;36157;33489;31801;34344;40951;30989;35607;34015.55;36097;33055;29707;28428;23577;23577 -150;'528;Netherlands (Kingdom of the);1866;Industrial roundwood, coniferous;5516;Production;m3;450000;462000;430000;430000;571000;521000;520000;633000;620000;580000;553000;930000;618000;637000;635000;659000;637000;596000;574000;577000;589000;623000;629000;653000;687000;664000;684000;880000;875000;955000;693000;785000;605000;576000;668000;583000;694000;647000;651000;645000;544000;522000;544000;549533;607000;599719;515238;566131;488773;532162;487200;443900;591600;603900;550000;642651;536558;467913;482000;446400;451723;449400;449400 -150;'528;Netherlands (Kingdom of the);1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38931;376162;321285;291000;264000;247000;213000;212000;292000;202500;152000;265100;350400;240500;165000;220500;322600;406900;307800;206900;188200;226336;167000;132100;154800;120700;88008;138012;146000;162577;191814;201767;231267;231267 -150;'528;Netherlands (Kingdom of the);1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2583;23271;18200;14111;14095;13239;12957;9234;13763;11105;6223;13604;18678;13246;8852;13075;20056;27444;24737;18637;18495;17809;12230;14821;14818;8881;7013;12236;13533;14318;17197;18776;19133;19133 -150;'528;Netherlands (Kingdom of the);1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67124;492160;466004;324000;292000;217000;215600;231000;223400;160000;142000;332400;280700;372900;412600;341200;448200;563200;391800;323400;409000;295764;283000;306600;331100;354800;263000;293000;302000;295000;280073;266375;285532;285532 -150;'528;Netherlands (Kingdom of the);1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3749;16380;15754;10966;11529;8723;9162;7412;7777;6278;4506;14291;12739;17133;17031;15116;24526;42461;28859;21603;28503;21186;18907;23940;25436;17257;19677;18221.57;16257;15050;14546;14359;13684;13684 -150;'528;Netherlands (Kingdom of the);1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38931;376162;321285;291000;264000;247000;213000;212000;292000;202500;152000;265100;350400;240500;165000;220500;322600;406900;307800;206900;188200;226336;167000;132100;154800;120700;88008;138012;146000;162577;191814;201767;231267;231267 -150;'528;Netherlands (Kingdom of the);1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2583;23271;18200;14111;14095;13239;12957;9234;13763;11105;6223;13604;18678;13246;8852;13075;20056;27444;24737;18637;18495;17809;12230;14821;14818;8881;7013;12236;13533;14318;17197;18776;19133;19133 -150;'528;Netherlands (Kingdom of the);1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67124;492160;466004;324000;292000;217000;215600;231000;223400;160000;142000;332400;280700;372900;412600;341200;448200;563200;391800;323400;409000;295764;283000;306600;331100;354800;263000;293000;302000;295000;280073;266375;285532;285532 -150;'528;Netherlands (Kingdom of the);1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3749;16380;15754;10966;11529;8723;9162;7412;7777;6278;4506;14291;12739;17133;17031;15116;24526;42461;28859;21603;28503;21186;18907;23940;25436;17257;19677;18221.57;16257;15050;14546;14359;13684;13684 -150;'528;Netherlands (Kingdom of the);1867;Industrial roundwood, non-coniferous;5516;Production;m3;210000;200000;220000;210000;237000;283000;271000;191000;229000;393000;338000;540000;344000;311000;233000;280000;272000;281000;217000;228000;228000;174000;175000;198000;278000;331000;351000;320000;340000;320000;303000;307000;295000;287000;273000;246000;292000;226000;231000;234000;185000;181000;210000;186191;213000;216957;216808;260968;237360;258431;204600;220800;226600;290240;298700;309654;282328;298493;260000;216000;196211;165500;165500 -150;'528;Netherlands (Kingdom of the);1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80636;331873;308151;252878;233000;216000;196000;190000;234000;225500;231000;170000;155400;137400;109800;95400;67000;60400;45200;22400;18300;117518;65300;76000;110400;205700;150347;119400;115000;120475;119456;87015;75536;75536 -150;'528;Netherlands (Kingdom of the);1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10653;40641;40462;35938;42533;42625;33181;28783;33079;31898;27734;22858;17909;17726;12708;13238;12958;18068;11869;6138;6870;19521;6292;15183;13809;11059;15633;32294.6;36983;36801;37146;28086;21675;21675 -150;'528;Netherlands (Kingdom of the);1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75253;66652;83000;109000;82000;63000;59000;77000;66200;102000;78000;83300;81600;107900;177000;119600;121600;98200;96900;64600;68300;109600;123900;118700;154600;195600;143000;198000;214000;203300;168158;150338;118910;118910 -150;'528;Netherlands (Kingdom of the);1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10383;6889;9600;10552;6591;5679;5075;4718;4131;5157;4393;6011;3033;5510;12431;7452;8513;15130;15192;7025;7654;12303;12894;10404;15515;13732;15930;15793.98;19840;18005;15161;14069;9893;9893 -150;'528;Netherlands (Kingdom of the);1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2691;127375;138017;111878;119000;117000;98000;93000;91300;87000;91000;75100;49800;32700;18500;11500;8100;7000;9166;6500;4000;18870;5000;7600;7400;11700;16200;18300;24100;19500;13600;14900;5700;5700 -150;'528;Netherlands (Kingdom of the);1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;493;24654;26939;23779;32403;33688;24493;21552;21246;19607;19454;15737;11775;10300;5650;4905;5320;8009;5004;3714;2881;12112;4344;6647;8111;5958;8228;13583.91;19267;15059;11830;13740;5831;5831 -150;'528;Netherlands (Kingdom of the);1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11000;10000;8000;7000;6000;4400;2000;5000;200;9700;16400;22100;25200;5000;3200;3200;200;400;9910;6853;5900;4100;300;200;4300;9400;6200;10200;6400;4200;4200 -150;'528;Netherlands (Kingdom of the);1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3169;2789;2490;2557;1647;1269;1016;697;79;304;1304;2107;1709;1316;3022;956;188;229;3528;4274;1890;3297;164;92;3534.32;6261;5127;7788;5449;3240;3240 -150;'528;Netherlands (Kingdom of the);1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77945;204498;170134;141000;114000;99000;98000;97000;142700;138500;140000;94900;105600;104700;91300;83900;58900;53400;36034;15900;14300;98648;60300;68400;103000;194000;134147;101100;90900;100975;105856;72115;69836;69836 -150;'528;Netherlands (Kingdom of the);1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10160;15987;13523;12159;10130;8937;8688;7231;11833;12291;8280;7121;6134;7426;7058;8333;7638;10059;6865;2424;3989;7409;1948;8536;5698;5101;7405;18710.7;17716;21742;25316;14346;15844;15844 -150;'528;Netherlands (Kingdom of the);1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75253;66652;83000;98000;72000;55000;52000;71000;61800;100000;73000;83100;71900;91500;154900;94400;116600;95000;93700;64400;67900;99690;117047;112800;150500;195300;142800;193700;204600;197100;157958;143938;114710;114710 -150;'528;Netherlands (Kingdom of the);1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10383;6889;9600;7383;3802;3189;2518;3071;2862;4141;3696;5932;2729;4206;10324;5743;7197;12108;14236;6837;7425;8775;8620;8514;12218;13568;15838;12259.66;13579;12878;7373;8620;6653;6653 -150;'528;Netherlands (Kingdom of the);1868;Sawlogs and veneer logs;5516;Production;m3;150000;120000;110000;110000;172000;178000;170000;192000;209000;287000;254000;375000;272000;190000;110000;223000;252000;262000;225000;250000;250000;180000;275000;351000;450000;490000;530000;410000;440000;490000;448000;487000;480000;457000;514000;463000;622000;588000;575000;572000;497000;398000;438000;393000;448000;443028;395542;416171;353718;385118;325600;327600;381900;406540;385700;386169;314933;285392;246000;214500;210140;221200;221200 -150;'528;Netherlands (Kingdom of the);1868;Sawlogs and veneer logs;5616;Import quantity;m3;426400;371200;391000;459100;423400;426500;392800;476300;456500;445800;428500;402800;596600;553700;414200;400700;425200;350200;333700;338700;259500;247000;261000;295400;298900;309400;326300;380000;426000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -150;'528;Netherlands (Kingdom of the);1868;Sawlogs and veneer logs;5622;Import value;1000 USD;18387;14804;16778;21452;19315;20083;16971;21439;23312;20819;22903;24356;47180;52880;34242;42052;47059;41955;43902;50478;33001;31300;29061;27797;27417;37580;40602;47800;49000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -150;'528;Netherlands (Kingdom of the);1868;Sawlogs and veneer logs;5916;Export quantity;m3;26000;27400;22700;22900;24900;21800;19000;18300;18800;29900;33300;20300;40700;44200;30800;103600;54000;44400;48400;46800;40900;34000;44800;46300;36400;39900;36500;55200;107000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -150;'528;Netherlands (Kingdom of the);1868;Sawlogs and veneer logs;5922;Export value;1000 USD;2745;2577;2530;2391;2834;2726;2023;1875;1516;1868;2111;2163;3465;4000;2224;3435;5898;6525;8568;8604;4934;4411;3366;4133;2604;4254;4471;7144;10600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -150;'528;Netherlands (Kingdom of the);1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;90000;60000;50000;50000;68000;83000;85000;84000;88000;89000;85000;145000;98000;60000;43000;116000;143000;147000;125000;140000;140000;100000;200000;198000;230000;230000;250000;165000;180000;225000;197000;240000;267000;253000;329000;321000;414000;421000;440000;441000;394000;321000;335000;302000;364000;349693;304988;314640;277716;302369;247100;249300;310900;315500;292800;292983;223346;181522;174000;154400;153534;173100;173100 -150;'528;Netherlands (Kingdom of the);1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;97100;91600;80000;80800;69300;68500;66200;65700;48300;45400;36100;19900;52800;79300;80000;25600;37700;25500;32900;33200;19800;19000;26400;52100;47200;58400;79200;80000;95000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -150;'528;Netherlands (Kingdom of the);1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;2946;2507;2222;2413;2186;2093;1815;2033;1508;1297;902;774;4180;7880;6242;580;2666;2046;3299;3215;1745;1700;1527;2355;2420;3760;5932;5800;6000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -150;'528;Netherlands (Kingdom of the);1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;12300;11700;8700;8100;9100;7600;6500;2700;2400;9400;6400;2500;20700;18800;11500;65000;23100;12200;10800;10700;14100;9000;5200;13900;12400;11200;10200;10200;11000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -150;'528;Netherlands (Kingdom of the);1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;256;276;200;192;247;237;177;120;102;324;156;118;1760;1800;752;940;1070;979;945;1339;687;411;237;330;420;529;744;744;600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -150;'528;Netherlands (Kingdom of the);1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;60000;60000;60000;60000;104000;95000;85000;108000;121000;198000;169000;230000;174000;130000;67000;107000;109000;115000;100000;110000;110000;80000;75000;153000;220000;260000;280000;245000;260000;265000;251000;247000;213000;204000;185000;142000;208000;167000;135000;131000;103000;77000;103000;91000;84000;93335;90554;101531;76002;82749;78500;78300;71000;91040;92900;93186;91587;103870;72000;60100;56606;48100;48100 -150;'528;Netherlands (Kingdom of the);1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;329300;279600;311000;378300;354100;358000;326600;410600;408200;400400;392400;382900;543800;474400;334200;375100;387500;324700;300800;305500;239700;228000;234600;243300;251700;251000;247100;300000;331000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -150;'528;Netherlands (Kingdom of the);1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;15441;12297;14556;19039;17129;17990;15156;19406;21804;19522;22001;23582;43000;45000;28000;41472;44393;39909;40603;47263;31256;29600;27534;25442;24997;33820;34670;42000;43000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -150;'528;Netherlands (Kingdom of the);1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;13700;15700;14000;14800;15800;14200;12500;15600;16400;20500;26900;17800;20000;25400;19300;38600;30900;32200;37600;36100;26800;25000;39600;32400;24000;28700;26300;45000;96000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -150;'528;Netherlands (Kingdom of the);1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;2489;2301;2330;2199;2587;2489;1846;1755;1414;1544;1955;2045;1705;2200;1472;2495;4828;5546;7623;7265;4247;4000;3129;3803;2184;3725;3727;6400;10000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -150;'528;Netherlands (Kingdom of the);2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;246000;215000;197000;148000;189000;190000;309617;328000;341255;316281;380291;324384;353180;304800;317500;422400;474000;450000;545142;483957;458229;444000;402000;394373;352500;352500 -150;'528;Netherlands (Kingdom of the);1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;187000;150000;125000;96000;122000;120000;225534;212000;229865;201520;233228;172779;188117;186700;184100;275300;281700;248800;334994;298774;270112;267000;255400;263289;244100;244100 -150;'528;Netherlands (Kingdom of the);1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59000;65000;72000;52000;67000;70000;84083;116000;111390;114761;147063;151605;165063;118100;133400;147100;192300;201200;210148;185183;188117;177000;146600;131084;108400;108400 -150;'528;Netherlands (Kingdom of the);1614;Pulpwood, round and split, all species (export/import, 1961-1989);5616;Import quantity;m3;272400;310000;312600;373500;358000;412700;386400;409700;409000;353700;269300;212400;229900;288700;203800;162000;358700;328400;270600;370700;196300;105000;122100;132100;174600;118500;133300;145000;140000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -150;'528;Netherlands (Kingdom of the);1614;Pulpwood, round and split, all species (export/import, 1961-1989);5622;Import value;1000 USD;5872;6281;6255;8143;7749;8280;7267;7557;7794;7631;6464;5378;6370;12640;9502;6834;11257;11570;10276;16626;6658;3600;3884;3931;3200;4581;5684;6300;6232;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -150;'528;Netherlands (Kingdom of the);1614;Pulpwood, round and split, all species (export/import, 1961-1989);5916;Export quantity;m3;7100;7800;13500;10200;10400;12800;14900;18700;19900;68300;47900;29000;178200;296000;134000;183000;213200;160200;164600;207400;245700;183000;151300;180000;351400;294500;345300;300000;300000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -150;'528;Netherlands (Kingdom of the);1614;Pulpwood, round and split, all species (export/import, 1961-1989);5922;Export value;1000 USD;114;117;192;163;190;235;240;255;296;1093;780;478;3675;6800;3117;4375;4289;3474;3801;5334;5529;4200;3856;4047;5267;8533;12204;11000;8000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -150;'528;Netherlands (Kingdom of the);1870;Pulpwood and particles (1961-1997);5516;Production;m3;14000;100000;125000;110000;273000;306000;249000;285000;315000;355000;381000;680000;440000;550000;601000;516000;421000;380000;370000;332000;332000;500000;380000;374000;390000;377000;377000;660000;645000;670000;416000;510000;343000;306000;352000;296000;305000;;;;;;;;;;;;;;;;;;;;;;;;;; -150;'528;Netherlands (Kingdom of the);1870;Pulpwood and particles (1961-1997);5616;Import quantity;m3;272400;310000;312600;373500;358000;412700;386400;409700;409000;353700;269300;212400;229900;288700;203800;162000;358700;328400;270600;370700;196300;105000;122100;132100;174600;118500;133300;145000;140000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -150;'528;Netherlands (Kingdom of the);1870;Pulpwood and particles (1961-1997);5622;Import value;1000 USD;5872;6281;6255;8143;7749;8280;7267;7557;7794;7631;6464;5378;6370;12640;9502;6834;11257;11570;10276;16626;6658;3600;3884;3931;3200;4581;5684;6300;6232;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -150;'528;Netherlands (Kingdom of the);1870;Pulpwood and particles (1961-1997);5916;Export quantity;m3;7100;7800;13500;10200;10400;12800;14900;18700;19900;68300;47900;29000;178200;296000;134000;183000;213200;160200;164600;207400;245700;183000;151300;180000;351400;294500;345300;300000;300000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -150;'528;Netherlands (Kingdom of the);1870;Pulpwood and particles (1961-1997);5922;Export value;1000 USD;114;117;192;163;190;235;240;255;296;1093;780;478;3675;6800;3117;4375;4289;3474;3801;5334;5529;4200;3856;4047;5267;8533;12204;11000;8000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -150;'528;Netherlands (Kingdom of the);1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;9000;95000;115000;100000;190000;204000;129000;230000;252000;205000;235000;395000;280000;384000;498000;414000;324000;289000;308000;273000;273000;426000;320000;330000;334000;311000;311000;590000;570000;620000;369000;455000;266000;223000;266000;194000;223000;;;;;;;;;;;;;;;;;;;;;;;;;; -150;'528;Netherlands (Kingdom of the);1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;5000;5000;10000;10000;83000;102000;120000;55000;63000;150000;146000;285000;160000;166000;103000;102000;97000;91000;62000;59000;59000;74000;60000;44000;56000;66000;66000;70000;75000;50000;47000;55000;77000;83000;86000;102000;82000;;;;;;;;;;;;;;;;;;;;;;;;;; -150;'528;Netherlands (Kingdom of the);1871;Other industrial roundwood;5516;Production;m3;496000;442000;415000;420000;363000;320000;372000;347000;325000;331000;256000;415000;250000;208000;157000;200000;236000;235000;196000;223000;235000;117000;149000;126000;125000;128000;128000;130000;130000;115000;132000;95000;77000;100000;75000;70000;59000;39000;92000;110000;84000;116000;126000;33107;44000;32393;20223;30637;48031;52295;61400;19600;13900;13600;13000;20994;19996;22785;52000;45900;43421;41200;41200 -150;'528;Netherlands (Kingdom of the);1871;Other industrial roundwood;5616;Import quantity;m3;186400;225100;203900;203800;231300;237300;234400;244200;233100;270600;91500;109800;207500;326900;234900;242900;280500;260000;238200;220300;147700;108800;108200;166900;166900;171200;180000;180000;130000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -150;'528;Netherlands (Kingdom of the);1871;Other industrial roundwood;5622;Import value;1000 USD;3899;4669;4161;4183;5388;5717;4645;4731;4987;6275;2276;2847;6685;9804;9137;9491;11831;13747;14304;10530;7595;5534;4875;6036;6036;8831;11319;11319;7509;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -150;'528;Netherlands (Kingdom of the);1871;Other industrial roundwood;5916;Export quantity;m3;116400;91600;120100;130800;127100;94600;101400;141800;221200;209200;158700;150900;207300;167500;184800;151800;132900;115100;108300;117000;103600;115700;62200;105700;105700;52800;21400;21400;38000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -150;'528;Netherlands (Kingdom of the);1871;Other industrial roundwood;5922;Export value;1000 USD;2041;1609;2012;2276;2153;1462;1312;1702;2719;2788;2186;2006;2975;3324;3826;3129;2656;2921;4460;5316;3827;4207;1896;2444;2444;1505;1316;1316;1650;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -150;'528;Netherlands (Kingdom of the);1623;Other industrial roundwood, coniferous (production);5516;Production;m3;351000;307000;265000;280000;313000;234000;306000;319000;280000;286000;233000;390000;240000;193000;94000;129000;170000;160000;141000;164000;176000;97000;109000;125000;123000;123000;123000;125000;125000;110000;127000;90000;72000;100000;73000;68000;57000;39000;61000;79000;54000;79000;89000;21999;31000;20161;8730;18263;38278;41676;53400;10500;5400;6700;8400;14674;14438;16279;41000;36600;34900;32200;32200 -150;'528;Netherlands (Kingdom of the);1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;145000;135000;150000;140000;50000;86000;66000;28000;45000;45000;23000;25000;10000;15000;63000;71000;66000;75000;55000;59000;59000;20000;40000;1000;2000;5000;5000;5000;5000;5000;5000;5000;5000;0;2000;2000;2000;0;31000;31000;30000;37000;37000;11108;13000;12232;11493;12374;9753;10619;8000;9100;8500;6900;4600;6320;5558;6506;11000;9300;8521;9000;9000 -150;'528;Netherlands (Kingdom of the);1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;186400;225100;203900;203800;231300;237300;234400;244200;233100;270600;91500;109800;207500;326900;234900;242900;280500;260000;238200;220300;147700;108800;108200;166900;166900;171200;180000;180000;130000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -150;'528;Netherlands (Kingdom of the);1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;3899;4669;4161;4183;5388;5717;4645;4731;4987;6275;2276;2847;6685;9804;9137;9491;11831;13747;14304;10530;7595;5534;4875;6036;6036;8831;11319;11319;7509;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -150;'528;Netherlands (Kingdom of the);1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;116400;91600;120100;130800;127100;94600;101400;141800;221200;209200;158700;150900;207300;167500;184800;151800;132900;115100;108300;117000;103600;115700;62200;105700;105700;52800;21400;21400;38000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -150;'528;Netherlands (Kingdom of the);1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;2041;1609;2012;2276;2153;1462;1312;1702;2719;2788;2186;2006;2975;3324;3826;3129;2656;2921;4460;5316;3827;4207;1896;2444;2444;1505;1316;1316;1650;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -150;'528;Netherlands (Kingdom of the);1630;Wood charcoal;5510;Production;t;0;0;0;0;0;0;0;0;0;0;0;109;4373;7152;11891;11577;11587;11764;10845;8931;4437;4651;2645;449;0;0;0;85;0;0;0;12153;7600;6982;3395;0;295;2000;1000;1000;820;1000;10000;10000;9000;10000;10000;2500;2500;5420;5000;5000;0;0;0;0;0;0;0;0;0;0;0 -150;'528;Netherlands (Kingdom of the);1630;Wood charcoal;5610;Import quantity;t;3100;3800;4500;4400;4600;5200;4000;4600;4000;3400;2800;3500;3500;6100;6500;8900;8700;7200;8000;10600;14100;14100;22600;20900;19400;22000;26000;23700;56100;64400;62200;20786;17917;14000;18000;25600;20300;22200;24000;20000;14000;17500;19700;24000;56840;50920;57280;34800;41320;34800;37400;59520;43360;22120;34360;34280;39680;72000;82967;91095;91429;90669;74220 -150;'528;Netherlands (Kingdom of the);1630;Wood charcoal;5622;Import value;1000 USD;209;245;285;287;341;441;321;378;333;304;326;442;490;1160;1588;2068;2093;2191;2692;4205;5252;5252;2925;2351;2383;3338;4332;3884;5546;5186;4421;8462;8429;5893;7386;9361;6640;7447;7733;6145;5061;6027;7682;10629;19449;20072;20493;14583;20439;16936;20198;27622;22163;20057;15576;15654;17927.42;33148;53971;58827;63947;74635;56785 -150;'528;Netherlands (Kingdom of the);1630;Wood charcoal;5910;Export quantity;t;600;1000;800;700;300;100;100;100;100;100;100;700;1300;3000;4500;6600;6400;5100;5000;5700;4500;4500;10800;6700;4400;4000;4800;8100;21100;24500;27000;15841;7988;3000;3000;5800;1000;800;2000;1000;2100;2080;10320;13600;29080;6440;22200;26440;15000;12360;7400;4040;6560;6080;23200;24120;27600;33120;19446;23080;36401;68323;53731 -150;'528;Netherlands (Kingdom of the);1630;Wood charcoal;5922;Export value;1000 USD;87;142;136;114;70;43;46;54;55;60;90;194;280;760;1329;2027;2158;1978;2231;2846;2203;2203;1890;1643;1055;1311;1937;2178;3027;3672;2381;6521;2704;3170;2965;2610;1767;1936;2362;2171;2870;3232;7054;9941;17767;9441;16379;21052;15474;13419;10304;10506;13582;15046;18009;18665;21767.16;27376;38496;36664;57973;69215;59142 -150;'528;Netherlands (Kingdom of the);1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1007000;1174000;1162000;1282100;1282000;1282000;1282000;1282000;1282000;990000;927500;835000;918286;786200;775000;887000;908000;908000;951000;988000;981000;939000;972000;971000;915000;915000 -150;'528;Netherlands (Kingdom of the);1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;288800;322000;315000;380200;634200;808000;827800;1237400;1101800;1404700;1689700;2069423;2127300;538910;730200;573100;240400;414200;424300;467800;618900;626200;630600;511500;198100;289180 -150;'528;Netherlands (Kingdom of the);1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13974;16675;13253;16237;27437;40955;46149;82948;91913;125661;165414;198518;207840;40479;34994;26781;21173;23123;17387;19963.94;26965;27767;68952;24749;25900;45630 -150;'528;Netherlands (Kingdom of the);1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;267200;241000;180000;181800;326400;420800;738700;357000;415100;395800;598200;567764;898200;720180;533700;619300;492000;557300;390600;407000;691100;712700;238100;172900;235500;447243 -150;'528;Netherlands (Kingdom of the);1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17315;16824;13990;13154;21393;27686;30869;31493;37522;44977;71882;58085;70913;56390;44045;46413;38844;42049;34924;29317.03;40431;40292;38589;36507;28548;57988 -150;'528;Netherlands (Kingdom of the);1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37000;42000;30000;29100;29000;29000;29000;29000;29000;150000;119000;107000;194652;78200;80000;96000;107000;100000;96000;91000;79000;82000;83000;82600;83000;83000 -150;'528;Netherlands (Kingdom of the);1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;15700;38300;38300;23600;21700;48800;33700;65200;89800;81481;62803;73000;104000;81000;128000;139100;109000;136000;152800;149600;180500;244600;299900;266800;290000;374700;297600;105900;105455;190200;131000;128200;85200;192100;210900;320900;331900;190900;74500;148600;239680 -150;'528;Netherlands (Kingdom of the);1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;414;1016;1016;789;781;2182;1391;2807;3201;3509;2905;2909;5561;3811;4270;4460;4440;5005;5777;5752;8596;11873;14374;13402;15463;20534;14756;6648;8796;15455;12566;9959;9720;9197;9703.59;15412;15501;54810;12109;23183;42913 -150;'528;Netherlands (Kingdom of the);1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;1700;3800;3800;2300;2000;13000;39800;42800;73200;42771;80828;109000;74000;64000;61000;77400;78000;36000;25500;40300;48300;41300;26400;22700;40500;93300;167600;232300;144919;303700;365300;164100;322900;150700;247000;508600;522000;50200;17300;160900;372643 -150;'528;Netherlands (Kingdom of the);1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;36;97;97;163;162;330;974;1096;1931;1311;1645;2197;1818;1237;1130;1589;2001;2774;903;1251;1783;2887;1295;905;1479;2918;5140;9031;5748;14236;13324;7719;15194;5458;6030.65;13008;10824;9660;6054;19091;48531 -150;'528;Netherlands (Kingdom of the);1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400000;882000;1144000;1310000;1310000;1034000;970000;1132000;1132000;1253000;1253000;1253000;1253000;1253000;1253000;840000;808500;728000;723634;708000;695000;791000;801000;808000;855000;897000;902000;857000;889000;888400;832000;832000 -150;'528;Netherlands (Kingdom of the);1620;Wood residues;5616;Import quantity;m3;;;;;;;16800;11900;7900;7900;5900;14100;18200;45600;48800;100400;90200;82500;127100;138200;129600;193000;147000;185000;196400;208700;228200;233500;252500;247600;256400;266535;187000;192000;152000;165000;129000;149700;213000;179000;227400;484600;627500;583200;937500;835000;1114700;1315000;1771823;2021400;433455;540000;442100;112200;329000;232200;256900;298000;294300;439700;437000;49500;49500 -150;'528;Netherlands (Kingdom of the);1620;Wood residues;5622;Import value;1000 USD;;;;;;;160;100;70;80;70;140;200;827;980;1244;1638;1452;2224;3308;3138;4600;3041;3941;4561;6876;9033;8634;8425;9981;10450;12507;8147;10397;9850;10285;7133;9514;12235;8248;10460;21685;32359;34276;68574;78511;110198;144880;183762;201192;31683;19539;14215;11214;13403;8190;10260.34;11553;12266;14142;12640;2717;2717 -150;'528;Netherlands (Kingdom of the);1620;Wood residues;5916;Export quantity;m3;;;;;;;74800;83200;71500;61100;44900;60100;66600;37000;15400;251200;211500;187900;190300;259500;211300;224000;262400;297000;276000;277800;381200;387000;453100;442700;447900;458366;286000;308000;247000;216000;161000;189800;163000;144000;156300;286100;372500;697400;330600;392400;355300;504900;400164;665900;575261;230000;254000;327900;234400;239900;160000;182500;190700;187900;155600;74600;74600 -150;'528;Netherlands (Kingdom of the);1620;Wood residues;5922;Export value;1000 USD;;;;;;;750;830;720;600;500;600;700;1151;500;4097;4098;4778;5173;7118;5394;5800;6075;6047;5191;7173;11890;13786;14196;16203;10927;16887;12961;14360;16104;16283;13794;15726;14823;11216;12251;20142;25903;27982;30198;36617;43498;68964;52945;61882;50642;29809;33089;31125;26855;29466;23286.37;27423;29468;28929;30453;9457;9457 -150;'528;Netherlands (Kingdom of the);1605;Sawdust (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49500;43915 -150;'528;Netherlands (Kingdom of the);1605;Sawdust (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2717;2411 -150;'528;Netherlands (Kingdom of the);1605;Sawdust (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74600;72771 -150;'528;Netherlands (Kingdom of the);1605;Sawdust (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9457;9227 -150;'528;Netherlands (Kingdom of the);1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1560000;1560000;1560000;1560000;1560000;1560000;1560000 -150;'528;Netherlands (Kingdom of the);1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;517000;517000;517000;517000;517000;517000;517000 -150;'528;Netherlands (Kingdom of the);1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12925;18612;18731;18731;18731;18731;18731 -150;'528;Netherlands (Kingdom of the);1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;225000;225000;225000;225000;225000;225000;225000 -150;'528;Netherlands (Kingdom of the);1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5625;11700;11590;11590;11590;11590;11590 -150;'528;Netherlands (Kingdom of the);1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;316000;245300;301000;288600;268600;264300;320000;325000;328200;328200;284200;284200 -150;'528;Netherlands (Kingdom of the);1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1055550;517221;471600;160300;121700;258200;342600;1068500;2327899;2677100;2958386;2382731 -150;'528;Netherlands (Kingdom of the);1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;201562;94023;93469;26963;22893;38395.13;73626;183371;416251;489022;587414;544266 -150;'528;Netherlands (Kingdom of the);1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;192900;175100;446600;186700;153300;168800;195800;226100;294477;210500;363420;344533 -150;'528;Netherlands (Kingdom of the);1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39360;48910;152188;47814;36485;41926.07;61302;71898;69351;69538;147626;133813 -150;'528;Netherlands (Kingdom of the);1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300000;225500;279000;265500;245500;242800;298000;303000;306700;306700;268200;268200 -150;'528;Netherlands (Kingdom of the);1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1032550;500422;449200;147100;117300;244700;326900;1050100;2296700;2657400;2937886;2327755 -150;'528;Netherlands (Kingdom of the);1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;197614;91182;89467;24979;21737;35623.8;69651;177561;412050;483530;579940;528757 -150;'528;Netherlands (Kingdom of the);1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;158900;165100;442000;180300;151700;158700;183100;199100;155200;185100;359820;340933 -150;'528;Netherlands (Kingdom of the);1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32508;41304;148705;43527;34973;37015.67;54929;57453;47879;58485;145010;131197 -150;'528;Netherlands (Kingdom of the);1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16000;19800;22000;23100;23100;21500;22000;22000;21500;21500;16000;16000 -150;'528;Netherlands (Kingdom of the);1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23000;16799;22400;13200;4400;13500;15700;18400;31199;19700;20500;54976 -150;'528;Netherlands (Kingdom of the);1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3948;2841;4002;1984;1156;2771.33;3975;5810;4201;5492;7474;15509 -150;'528;Netherlands (Kingdom of the);1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34000;10000;4600;6400;1600;10100;12700;27000;139277;25400;3600;3600 -150;'528;Netherlands (Kingdom of the);1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6852;7606;3483;4287;1512;4910.4;6373;14445;21472;11053;2616;2616 -150;'528;Netherlands (Kingdom of the);1872;Sawnwood;5516;Production;m3;280000;255000;277000;322000;349000;331000;322000;340000;303000;280000;278000;265000;278000;230000;220000;290000;298000;298000;246000;337000;300000;204000;314000;335000;412000;425000;387000;435000;465000;455000;425000;405000;389000;383000;426000;359000;401000;349000;362000;390000;268000;258000;269000;273000;278942;265269;273069;242690;209959;231308;237700;190400;215500;228100;185056;183821;171000;140232;141000;143000;147975;148900;148900 -150;'528;Netherlands (Kingdom of the);1872;Sawnwood;5616;Import quantity;m3;2334400;2350000;2391900;3138500;2919400;2574900;2591100;2956000;3073200;3052700;2859000;2963300;3616300;3087400;2288800;3419900;3429200;3585300;3575000;3179400;2455400;2710900;2893600;2761500;2777100;3199700;3284500;3263700;3623000;3450100;3149000;3221513;3564000;3771000;3277000;3322000;3431000;3534000;3606000;3705000;3294200;3021800;3163400;3174800;3099500;3398800;3434300;3100500;2574800;2750000;2710000;2556900;2477200;2512000;2757100;2821034;3163700;3515100;3355000;3480700;3750700;2793500;2793500 -150;'528;Netherlands (Kingdom of the);1872;Sawnwood;5622;Import value;1000 USD;108121;103980;109051;157831;156424;137362;128608;150069;166170;180574;179523;199958;347481;465120;297045;477747;560614;636475;800033;790301;523253;563800;520867;469776;425932;598458;737108;759777;915870;1065071;856843;942212;934265;1101600;1033493;963410;927511;854615;867765;832418;668122;676841;799601;894439;909593;1113158;1400615;1287900;857321;933237;1033880;854701;790401;858958;738935;761292;891728.84;1084437;949791;971582;1625332;1199029;1317224 -150;'528;Netherlands (Kingdom of the);1872;Sawnwood;5916;Export quantity;m3;37200;38100;31600;30000;27600;27600;29000;26000;24700;36000;29700;47600;92600;106000;91900;134400;165400;190200;220000;212000;229200;221700;250200;282200;268100;320500;378300;445700;445800;412700;461000;439800;427000;426000;458000;389000;377000;415000;427000;380000;304500;355600;400100;387700;487900;554600;600700;422500;291700;314100;321900;431800;445800;508400;525800;467815;586700;688800;767400;679700;553500;651000;651000 -150;'528;Netherlands (Kingdom of the);1872;Sawnwood;5922;Export value;1000 USD;2662;2664;2875;3022;2812;2696;2545;2271;2430;3597;3208;5813;15226;21348;16842;26114;38640;52635;73755;84764;73387;72042;76633;80481;68963;113146;144603;184983;193012;228615;236942;244777;207513;229292;237147;185209;170733;176829;175455;130062;102597;110762;130327;161203;199174;240973;304511;262498;177219;180115;147514;201417;187309;215848;162431;164439;186665.16;229731;233308;243338;261389;304831;343687 -150;'528;Netherlands (Kingdom of the);1632;Sawnwood, coniferous;5516;Production;m3;79000;85000;75000;83000;89000;83000;85000;85000;83000;80000;83000;86000;98000;80000;63000;75000;102000;96000;88000;103000;100000;72000;146000;153000;172000;175000;164000;150000;165000;175000;140000;155000;181000;174000;200000;186000;223000;196000;203000;247000;168000;149000;164000;175000;175942;179541;183584;158785;144065;151865;168500;137300;156200;163100;129074;125586;111000;82423;90000;94900;109815;115100;115100 -150;'528;Netherlands (Kingdom of the);1632;Sawnwood, coniferous;5616;Import quantity;m3;2157500;2185850;2210900;2910950;2691800;2369750;2380500;2679900;2771400;2716600;2539900;2555650;3020400;2593350;1732750;2621950;2578600;2652750;2660750;2470450;1744200;2022650;2060400;2015900;2070700;2281250;2270750;2389300;2550850;2546700;2412000;2435813;2779000;3066000;2646000;2739000;2889000;2926000;2915000;2957000;2669400;2455300;2547200;2522700;2481000;2751100;2793500;2498300;2176000;2341100;2350000;2166800;2159000;2166000;2419900;2528034;2789200;3102200;2988900;3132000;3407600;2545200;2545200 -150;'528;Netherlands (Kingdom of the);1632;Sawnwood, coniferous;5622;Import value;1000 USD;95329;92925;96480;141186;140154;121252;113338;128650;140730;150948;150016;156812;251073;366440;197659;314198;360430;383176;468174;521068;294239;341800;273329;262770;258423;337793;406685;451927;495545;643558;530507;540350;486890;670660;622197;565912;587322;536654;519762;472583;383842;396949;474960;513068;502660;623252;833979;717865;521806;599552;680955;549535;546562;610717;524165;564292;662080.47;783448;696451;727871;1329748;946313;988272 -150;'528;Netherlands (Kingdom of the);1632;Sawnwood, coniferous;5916;Export quantity;m3;24100;23800;17600;15300;13200;14200;17300;13100;11100;14550;9250;11700;30650;48050;34950;51700;58900;73450;87800;72700;85300;77850;80600;84250;97750;95800;119350;160600;190550;189650;213000;214000;245000;255000;323000;247000;254000;271600;277500;269000;211100;220000;317400;271500;360800;417900;452100;289200;203600;226500;230000;318300;358900;410600;448800;399538;506400;610400;690800;596400;481200;586100;586100 -150;'528;Netherlands (Kingdom of the);1632;Sawnwood, coniferous;5922;Export value;1000 USD;1243;1198;1392;1345;1170;1238;1310;1002;1046;1425;1020;1530;3973;7694;4511;6690;8559;13266;18858;21197;18720;17096;14897;14355;15382;21408;29495;44069;53855;71412;77861;77042;76799;94277;114726;80136;78869;76597;76462;62727;49819;48885;66907;66235;83511;103018;142455;95648;71451;78090;55968;99557;110811;146350;110526;108211;114068.52;153710;158751;163328;190091;232496;240908 -150;'528;Netherlands (Kingdom of the);1633;Sawnwood, non-coniferous;5516;Production;m3;201000;170000;202000;239000;260000;248000;237000;255000;220000;200000;195000;179000;180000;150000;157000;215000;196000;202000;158000;234000;200000;132000;168000;182000;240000;250000;223000;285000;300000;280000;285000;250000;208000;209000;226000;173000;178000;153000;159000;143000;100000;109000;105000;98000;103000;85728;89485;83905;65894;79443;69200;53100;59300;65000;55982;58235;60000;57809;51000;48100;38160;33800;33800 -150;'528;Netherlands (Kingdom of the);1633;Sawnwood, non-coniferous;5616;Import quantity;m3;176900;164150;181000;227550;227600;205150;210600;276100;301800;336100;319100;407650;595900;494050;556050;797950;850600;932550;914250;708950;711200;688250;833200;745600;706400;918450;1013750;874400;1072150;903400;737000;785700;785000;705000;631000;583000;542000;608000;691000;748000;624800;566500;616200;652100;618500;647700;640800;602200;398800;408900;360000;390100;318200;346000;337200;293000;374500;412900;366100;348700;343100;248300;248300 -150;'528;Netherlands (Kingdom of the);1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;12792;11055;12571;16645;16270;16110;15270;21419;25440;29626;29507;43146;96408;98680;99386;163549;200184;253299;331859;269233;229014;222000;247538;207006;167509;260665;330423;307850;420325;421513;326336;401862;447375;430940;411296;397498;340189;317961;348003;359835;284280;279892;324641;381371;406933;489906;566636;570035;335515;333685;352925;305166;243839;248241;214770;197000;229648.37;300989;253340;243711;295584;252716;328952 -150;'528;Netherlands (Kingdom of the);1633;Sawnwood, non-coniferous;5916;Export quantity;m3;13100;14300;14000;14700;14400;13400;11700;12900;13600;21450;20450;35900;61950;57950;56950;82700;106500;116750;132200;139300;143900;143850;169600;197950;170350;224700;258950;285100;255250;223050;248000;225800;182000;171000;135000;142000;123000;143400;149500;111000;93400;135600;82700;116200;127100;136700;148600;133300;88100;87600;91900;113500;86900;97800;77000;68277;80300;78400;76600;83300;72300;64900;64900 -150;'528;Netherlands (Kingdom of the);1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;1419;1466;1483;1677;1642;1458;1235;1269;1384;2172;2188;4283;11253;13654;12331;19424;30081;39369;54897;63567;54667;54946;61736;66126;53581;91738;115108;140914;139157;157203;159081;167735;130714;135015;122421;105073;91864;100232;98993;67335;52778;61877;63420;94968;115663;137955;162056;166850;105768;102025;91546;101860;76498;69498;51905;56228;72596.64;76021;74557;80010;71298;72335;102779 -150;'528;Netherlands (Kingdom of the);1634;Veneer sheets;5516;Production;m3;71200;71200;73900;84000;84000;82200;79000;87000;86000;24000;25000;22000;20000;22000;10000;9000;12000;12000;12000;12000;12000;12000;12000;12000;12000;17000;17000;17000;20000;20000;15000;19000;21000;23000;25000;19000;17000;16700;19300;19000;18000;11000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -150;'528;Netherlands (Kingdom of the);1634;Veneer sheets;5616;Import quantity;m3;8600;9700;11200;16200;19400;18900;20900;59400;62200;64200;72300;62900;80000;84400;39300;46000;65200;59300;57000;66600;54300;46500;51700;59700;53900;49100;44900;52600;44400;39600;31200;24983;33000;29000;39000;31000;26000;28400;24000;23000;22500;24900;37000;28700;27300;35900;37900;35400;33700;29400;26300;30800;30500;42900;41400;30200;40700;38400;34300;29800;30300;17200;17200 -150;'528;Netherlands (Kingdom of the);1634;Veneer sheets;5622;Import value;1000 USD;3629;3918;4719;6234;7918;7900;7876;9519;10149;9941;9811;10270;19670;26800;15023;17245;29659;30726;32455;44349;27039;23100;21952;21306;17822;23161;25374;30516;28169;32241;29208;32516;26768;28332;38035;29406;21324;23463;18914;16746;16595;19946;24001;26190;31227;41648;52653;50473;33850;28123;34689;27443;24153;29045;26369;29690;34905.89;36739;30512;40432;48579;43733;54670 -150;'528;Netherlands (Kingdom of the);1634;Veneer sheets;5916;Export quantity;m3;5000;5200;4500;4500;4100;3100;3100;8500;5800;7000;5500;7300;12300;10100;8000;11000;12000;11300;13900;13300;11700;10000;8000;10600;9600;13500;12500;16400;16700;19100;14500;9128;15000;17000;17000;13000;14000;17000;15000;14000;16600;11500;8000;9500;5900;6000;7400;8900;6200;3200;2100;3200;2311;2656;3300;4700;5700;10200;11700;5684;7300;2700;2700 -150;'528;Netherlands (Kingdom of the);1634;Veneer sheets;5922;Export value;1000 USD;1163;1207;1048;1171;1175;923;1026;1485;1518;2146;2141;3151;7245;8200;6060;8891;11134;13199;15238;16841;11164;9500;7715;7645;6249;7360;9360;12794;11237;15867;16247;15961;17495;20489;21275;17090;15840;18226;18154;13989;16159;14175;13149;14668;15011;16560;25066;32796;13131;10701;8802;8144;4955;3960;4432;6080;5808.63;8304;11473;7569;10403;14274;17248 -150;'528;Netherlands (Kingdom of the);1873;Wood-based panels;5516;Production;m3;128500;128600;135400;156200;154400;195800;214300;219200;235500;233200;236200;209000;204800;182600;167200;176000;161000;184000;183000;153000;145000;104000;102000;86000;77000;78000;77000;67000;76000;77000;90000;92000;86000;87000;89000;77000;84000;42200;41500;42000;2000;12000;10000;8000;11000;10000;17500;32950;45700;50611;45700;57500;32903;28800;28800;28900;29000;29000;28751;29000;28751;28751;28751 -150;'528;Netherlands (Kingdom of the);1873;Wood-based panels;5616;Import quantity;m3;205400;219500;271500;359600;399900;527300;583900;638000;699400;748200;441000;487900;909400;918480;870300;1008300;1176400;1141100;1196900;1148100;1055300;961000;991900;1037000;1098500;1305200;1322400;1422700;1480600;1581600;1557900;1506608;1423000;1564000;1560000;1500000;1739000;1784900;2065000;1704000;1793700;1605700;1593000;1568400;1615200;1834900;1848200;1858800;1461000;1453200;1653300;1400300;1340700;1360600;1526700;1577700;1814800;1935300;1757000;1801900;1994900;1842300;1842300 -150;'528;Netherlands (Kingdom of the);1873;Wood-based panels;5622;Import value;1000 USD;20341;20584;25054;34419;38669;39303;41430;46506;56391;65132;48460;60092;107310;150560;133101;196325;223207;241886;325457;358167;281342;257040;248842;232949;242125;346298;405382;472565;481450;602422;589469;639551;539569;596837;640746;588082;557829;553784;508995;508924;482173;474538;575040;640856;661984;785212;947670;1049962;714551;714752;794330;678766;652839;684576;598272;595113;670112.7;804351;780276;787233;1047831;1012718;1338582 -150;'528;Netherlands (Kingdom of the);1873;Wood-based panels;5916;Export quantity;m3;34900;30900;36300;40800;31700;63700;82800;86300;75800;67300;73500;90000;126200;123300;140500;157300;166000;170700;158300;121800;95000;84000;89100;91400;89100;137600;139300;131000;129000;121800;139800;158318;222000;295000;288000;305100;299000;282300;273000;261000;240300;242600;239400;298700;321300;356800;397900;402300;295000;270500;293200;326100;285700;286900;311100;321300;334628;387900;356900;279800;332400;370800;370800 -150;'528;Netherlands (Kingdom of the);1873;Wood-based panels;5922;Export value;1000 USD;4638;4667;5488;6685;5705;6299;7211;8847;9244;9346;9227;13064;24080;30522;31570;38237;43406;47288;54225;50907;31861;30784;24399;23957;24603;47268;59354;50375;49596;62964;75571;87256;109830;143917;141789;116043;112651;94306;81652;75284;64184;74861;78516;96971;119976;150762;190510;210347;143068;129398;153844;153197;139445;150502;137835;137165;147247.83;176892;186932;170347;227072;294766;354007 -150;'528;Netherlands (Kingdom of the);1640;Plywood and LVL;5516;Production;m3;39600;42400;45200;48500;52000;50000;52000;56000;70000;67000;73000;69000;73000;57000;47000;54000;42000;40000;44000;45000;45000;20000;18000;17000;17000;16000;15000;15000;14000;15000;15000;18000;15000;15000;15000;15000;15000;5200;2800;3000;2000;2000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -150;'528;Netherlands (Kingdom of the);1640;Plywood and LVL;5616;Import quantity;m3;38500;36600;45600;64000;72200;79100;78300;111400;133600;149700;122400;142300;143800;212700;222800;341000;400000;424500;538000;487800;446100;395000;436000;447100;462200;569200;548800;627800;581900;655200;618600;583135;612000;560000;552000;522000;556000;528000;558000;594000;600200;540700;527000;542000;526000;602900;608100;634900;456500;494700;620400;475900;399400;467500;552200;535600;632100;639900;604700;634500;695300;577200;577200 -150;'528;Netherlands (Kingdom of the);1640;Plywood and LVL;5622;Import value;1000 USD;6082;5549;7123;10547;12016;12634;12241;16501;21930;25430;22033;28457;37695;67000;58702;93487;124208;129886;209562;209685;170513;150890;153012;143491;145288;194222;211440;257649;246806;312868;284512;327093;292393;303595;304493;273942;269427;254898;249517;256333;243850;224416;266218;305108;305692;354365;424880;467589;288227;304744;346149;294344;264922;295232;268221;253219;289331.68;359985;349756;364027;487148;438758;482396 -150;'528;Netherlands (Kingdom of the);1640;Plywood and LVL;5916;Export quantity;m3;9100;8700;10200;10600;10000;11000;12800;18400;17800;17000;12700;13900;24800;28400;28000;41000;42000;44500;47100;42000;29900;31000;28000;31900;35400;51800;52600;53300;50800;49700;62700;67236;99000;102000;72000;64000;54000;56000;51000;55000;56500;42800;32100;45900;39800;59900;55100;51300;49400;50000;62600;88700;71000;75200;67500;73300;82800;101600;83800;89000;94900;94700;94700 -150;'528;Netherlands (Kingdom of the);1640;Plywood and LVL;5922;Export value;1000 USD;2167;2134;2430;2609;2521;2856;3254;4451;4742;4333;3969;5130;10535;13682;11685;18382;20743;22213;29720;30699;18635;19300;13684;13402;14706;25730;30497;31683;32603;38909;46045;53001;67486;82440;56463;44867;33008;32320;26891;31311;30014;28171;20420;33045;33844;40414;46936;46520;36043;35465;47321;53073;51983;57767;48471;46393;48726.47;63095;72663;74773;87459;105341;130441 -150;'528;Netherlands (Kingdom of the);1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8800;2940 -150;'528;Netherlands (Kingdom of the);1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10281;1751 -150;'528;Netherlands (Kingdom of the);1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8887;166 -150;'528;Netherlands (Kingdom of the);1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;815;363 -150;'528;Netherlands (Kingdom of the);1646;Particle board and OSB (1961-1994);5516;Production;m3;64000;59400;62800;76700;70000;70800;84000;90800;103400;103000;94000;66000;68000;63000;59000;56000;58000;90000;100000;75000;66000;59000;63000;30000;40000;40000;40000;30000;40000;40000;40000;34000;32000;36000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -150;'528;Netherlands (Kingdom of the);1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;66700;73700;100700;145200;169100;196200;238600;263600;300100;348600;122700;143200;560000;548900;528000;548000;660300;609100;547700;528700;486200;434000;424900;455300;496700;540700;565200;601400;670900;683000;680300;704474;604000;755000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -150;'528;Netherlands (Kingdom of the);1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;5018;5134;6466;9194;10774;12108;14220;15339;18884;22917;11729;15168;46830;58800;56537;84143;79905;91700;90999;110908;82326;73350;70997;65833;72667;107950;139945;159989;171712;212937;215485;230590;186081;214015;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -150;'528;Netherlands (Kingdom of the);1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;13200;7600;11000;13000;7600;9300;19200;16200;17100;19700;22400;30200;53300;57700;77500;67000;79000;82400;78500;62200;51300;42000;50900;50200;41400;59000;64000;56500;48000;46700;45600;49175;76000;127000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -150;'528;Netherlands (Kingdom of the);1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;942;529;816;1033;879;1160;1972;2290;2414;2971;3096;5222;8855;11720;14791;13864;16520;18143;18708;16453;10997;9000;9108;8862;7610;15624;21291;11977;10611;14306;15195;19141;22649;35111;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -150;'528;Netherlands (Kingdom of the);1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43000;35000;44000;37000;38700;39000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -150;'528;Netherlands (Kingdom of the);1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;721000;674000;726000;622300;865000;600000;597100;511500;501300;508900;579200;663000;699300;672700;525800;485800;586700;477800;483900;416500;392500;410600;481700;531700;459600;456200;519500;513800;513800 -150;'528;Netherlands (Kingdom of the);1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;236485;219326;197515;163608;181558;150564;134371;112437;130619;150426;166761;191022;258041;281592;186992;162619;183076;146858;143539;146260;102394;102102;116783.5;138587;139987;131894;173387;185830;313430 -150;'528;Netherlands (Kingdom of the);1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;136000;162000;121000;101400;100000;78000;75000;58900;69600;96100;106500;130900;214200;200700;145000;108600;119900;97200;85600;79900;83400;77800;95700;113500;101900;81100;73900;49900;49900 -150;'528;Netherlands (Kingdom of the);1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47176;38188;51621;31427;28494;18489;16147;15590;23297;25780;37490;50465;84331;86246;53277;39698;41272;36063;27991;29081;23726;20912;25163.98;30047;29651;27206;33230;31205;35214 -150;'528;Netherlands (Kingdom of the);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 -150;'528;Netherlands (Kingdom of the);1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97600;111000;77000;79000;112100;126600;120900;99900;92200;57700;87700;47600;49800;46700;43700;49100;46100;73000;98400;135400;157600;143600;171000;207700;285900;285900 -150;'528;Netherlands (Kingdom of the);1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20834;22426;16137;13392;19745;23394;28905;22449;25622;21444;29092;15135;17115;17641;15687;15983;15413;18605;22196;33509.52;46802;37775;40663;74549;103989;115900 -150;'528;Netherlands (Kingdom of the);1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12900;18000;13000;6000;7200;9900;11000;13700;8000;3500;45500;5900;7900;3100;5800;8700;10900;10900;10600;7200;14800;11800;3500;16200;63900;63900 -150;'528;Netherlands (Kingdom of the);1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3185;4146;2790;985;1415;2800;3626;4160;2823;1469;14599;1903;3186;1542;2070;3377;3804;3065;2671;1928.32;4560;3518;1061;9142;28830;38732 -150;'528;Netherlands (Kingdom of the);1874;Fibreboard;5516;Production;m3;24900;26800;27400;31000;32400;75000;78300;72400;62100;63200;69200;74000;63800;62600;61200;66000;61000;54000;39000;33000;34000;25000;21000;39000;20000;22000;22000;22000;22000;22000;35000;40000;39000;36000;31000;27000;25000;0;0;0;0;10000;10000;8000;11000;10000;17500;32950;45700;50611;45700;57500;32903;28800;28800;28900;29000;29000;28751;29000;28751;28751;28751 -150;'528;Netherlands (Kingdom of the);1874;Fibreboard;5616;Import quantity;m3;100200;109200;125200;150400;158600;252000;267000;263000;265700;249900;195900;202400;205600;156880;119500;119300;116100;107500;111200;131600;123000;132000;131000;134600;139600;195300;208400;193500;227800;243400;259000;218999;207000;249000;287000;304000;457000;537000;531000;433000;517400;441400;438100;396600;410100;476800;483100;463500;431100;422900;399500;402900;408300;430500;509000;533100;565600;606100;549100;540200;572400;465400;465400 -150;'528;Netherlands (Kingdom of the);1874;Fibreboard;5622;Import value;1000 USD;9241;9901;11465;14678;15879;14561;14969;14666;15577;16785;14698;16467;22785;24760;17862;18695;19094;20300;24896;37574;28503;32800;24833;23625;24170;44126;53997;54927;62932;76617;89472;81868;61095;79227;99768;94814;90887;114444;55494;85890;90560;117940;154809;156417;167082;214203;243305;271689;224197;230274;247464;221877;228395;227671;209052;217596;230488;258977;252758;250649;312747;284141;426856 -150;'528;Netherlands (Kingdom of the);1874;Fibreboard;5916;Export quantity;m3;12600;14600;15100;17200;14100;43400;50800;51700;40900;30600;38400;45900;48100;37200;35000;49300;45000;43800;32700;17600;13800;11000;10200;9300;12300;26800;22700;21200;30200;25400;31500;41907;47000;66000;80000;79100;124000;112000;104000;115000;102800;133700;127800;145700;161300;158000;125100;104800;94700;104000;107600;134400;120400;120900;149300;159600;148928;158000;159400;106200;147400;162300;162300 -150;'528;Netherlands (Kingdom of the);1874;Fibreboard;5922;Export value;1000 USD;1529;2004;2242;3043;2305;2283;1985;2106;2088;2042;2162;2712;4690;5120;5094;5991;6143;6932;5797;3755;2229;2484;1607;1693;2287;5914;7566;6715;6382;9749;14331;15114;19695;26366;38150;32988;28022;27374;22121;22694;17038;29685;31999;34520;44482;57060;57774;62982;51845;51049;63709;61991;56094;59850;62573;67189;71429.05;79190;81100;67307;97241;129390;149620 -150;'528;Netherlands (Kingdom of the);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 -150;'528;Netherlands (Kingdom of the);1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80000;77000;78000;82000;64000;63000;67700;97600;97200;73400;73700;111700;53000;67800;68400;41400;42600;43600;36600;63000;52700;52500;76200;73200;64500;63700;65900;62800;62800 -150;'528;Netherlands (Kingdom of the);1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32259;35775;35658;43766;37988;38318;34190;67920;94457;96106;94746;126740;78741;105852;89043;90573;96729;69803;64416;65282;56614;58200;51190.13;47301;47477;44181;47913;47742;89693 -150;'528;Netherlands (Kingdom of the);1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27000;18100;16000;15000;10000;10000;13000;24700;23400;14900;9600;14400;2700;4600;2100;1900;2000;14200;3500;7100;7200;8000;7500;7700;10300;20600;21800;19100;19100 -150;'528;Netherlands (Kingdom of the);1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17585;13589;10938;10544;6638;6920;4202;14400;14553;8848;7694;9780;3247;4960;3933;2364;4077;4506;4199;6579;7918;8697;10444.04;10576;13040;13451;16099;18064;22578 -150;'528;Netherlands (Kingdom of the);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 -150;'528;Netherlands (Kingdom of the);1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;159000;172000;228000;313000;327000;219000;298000;230000;214900;187300;240400;294000;333800;303500;283600;308500;286700;294500;305900;310500;381000;421200;418700;462500;412400;398500;408300;343700;343700 -150;'528;Netherlands (Kingdom of the);1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56335;45146;40462;54961;5507;34647;44355;39651;46195;44216;60661;75895;131613;133357;110377;112275;125654;126316;138894;142851;130642;140405;154941.96;187351;184484;183247;236444;213221;297241 -150;'528;Netherlands (Kingdom of the);1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45000;48000;65000;59000;54000;47000;52700;70400;78000;95100;118700;111200;116300;96300;90100;100100;103700;118300;115100;110500;138600;146900;135476;143100;142900;80700;117300;137300;137300 -150;'528;Netherlands (Kingdom of the);1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18042;14758;11093;11059;10573;9349;8977;10927;12985;19256;29016;35104;52700;56664;46549;47517;58325;56416;50665;51859;53140;56430;58306.1;65198;63753;49200;76010;105394;113218 -150;'528;Netherlands (Kingdom of the);1650;Other fibreboard;5516;Production;m3;6300;6800;6900;8800;10000;51200;52800;48000;38000;38400;39200;49600;40000;39600;37200;42000;37000;30000;36000;33000;34000;25000;21000;39000;20000;22000;22000;22000;22000;22000;35000;40000;39000;36000;31000;27000;25000;0;0;0;0;10000;10000;8000;11000;10000;17500;32950;45700;50611;45700;57500;32903;28800;28800;28900;29000;29000;28751;29000;28751;28751;28751 -150;'528;Netherlands (Kingdom of the);1650;Other fibreboard;5616;Import quantity;m3;25300;28700;32300;33300;34800;127200;129600;125600;123200;114400;87200;93600;73200;48000;38400;34000;27000;24500;22700;30100;29200;18000;38100;27900;29300;35700;41800;7600;5500;6500;28000;25419;42000;43000;48000;55000;151000;142000;140000;151000;151700;113800;126000;135900;96000;71100;96300;92200;79100;73000;70200;64800;65800;57000;75300;59400;70700;70400;72200;78000;98200;58900;58900 -150;'528;Netherlands (Kingdom of the);1650;Other fibreboard;5622;Import value;1000 USD;2833;3246;3644;4053;4343;3938;3975;3791;3845;3982;3422;4208;4760;3720;3014;2530;2285;2311;2578;4426;3826;2800;3268;2491;2424;3930;5281;1200;879;908;10110;12149;8018;8540;11174;13893;14767;15717;11999;12925;12015;10369;14157;16095;11675;11568;32951;32480;24777;27426;25081;25758;25085;19538;21796;18991;24355.91;24325;20797;23221;28390;23178;39922 -150;'528;Netherlands (Kingdom of the);1650;Other fibreboard;5916;Export quantity;m3;5400;6200;5800;6800;6200;32800;42000;42400;30400;19600;25600;33600;28800;21600;17600;29600;19700;21300;26100;13000;11700;7000;6800;4700;4500;4900;4400;1200;900;700;2800;3949;4000;5000;8000;13000;43000;38000;40000;58000;37100;38600;26400;35700;33000;32400;6100;3900;2500;2000;1900;1900;1800;3300;3500;4700;5952;7200;6200;4900;8300;5900;5900 -150;'528;Netherlands (Kingdom of the);1650;Other fibreboard;5922;Export value;1000 USD;796;939;831;1006;960;1021;1138;1182;919;741;775;1134;1680;1600;1157;1764;1537;1647;3812;1474;1314;784;857;621;618;881;1109;279;211;197;2102;2267;2337;1687;2523;4641;5991;5771;4910;6425;3859;4358;4461;6416;7772;12176;1827;1358;1363;1168;1307;1069;1230;1412;1515;2062;2678.91;3416;4307;4656;5132;5932;13824 -150;'528;Netherlands (Kingdom of the);1649;Fibreboard, compressed (1961-1994);5516;Production;m3;18600;20000;20500;22200;22400;23800;25500;24400;24100;24800;30000;24400;23800;23000;24000;24000;24000;24000;3000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -150;'528;Netherlands (Kingdom of the);1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;74900;80500;92900;117100;123800;124800;137400;137400;142500;135500;108700;108800;132400;108880;81100;85300;89100;83000;88500;101500;93800;114000;92900;106700;110300;159600;166600;185900;222300;236900;231000;193580;165000;206000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -150;'528;Netherlands (Kingdom of the);1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;6408;6655;7821;10625;11536;10623;10994;10875;11732;12803;11276;12259;18025;21040;14848;16165;16809;17989;22318;33148;24677;30000;21565;21134;21746;40196;48716;53727;62053;75709;79362;69719;53077;70687;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -150;'528;Netherlands (Kingdom of the);1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;7200;8400;9300;10400;7900;10600;8800;9300;10500;11000;12800;12300;19300;15600;17400;19700;25300;22500;6600;4600;2100;4000;3400;4600;7800;21900;18300;20000;29300;24700;28700;37958;43000;61000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -150;'528;Netherlands (Kingdom of the);1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;733;1065;1411;2037;1345;1262;847;924;1169;1301;1387;1578;3010;3520;3937;4227;4606;5285;1985;2281;915;1700;750;1072;1669;5033;6457;6436;6171;9552;12229;12847;17358;24679;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -150;'528;Netherlands (Kingdom of the);1879;Total fibre furnish;5510;Production;t;913000;897000;919000;990000;1011000;1034000;1070000;1129000;1150000;1202000;1074000;1083000;1182000;1300000;924000;1102000;1060000;1046000;1087000;1189000;1190000;1115000;1181000;1286000;1279000;1311500;1546000;1712000;1657000;1760000;1924000;1884000;2162000;2324000;2457000;2105000;2577000;2638000;2642000;2587000;2559500;2508000;2484000;2559000;2579000;2523000;2446380;2374559;2073507;2302855;2193000;2179400;2246600;2253000;2276200;2314000;2671400;2530000;2611821;2638000;2693000;2552000;2148000 -150;'528;Netherlands (Kingdom of the);1879;Total fibre furnish;5610;Import quantity;t;;;1000;1200;1400;2300;1600;508900;554100;669200;550300;633000;758600;812172;643539;781600;762980;788841;846011;814521;817281;766163;839600;985300;981800;1017400;1086400;1257000;1359900;1429300;1597000;1865606;1594051;1927000;2236000;2178400;2201000;2441400;2396000;2749000;2640500;2593200;3091400;3320800;3864500;3802000;3690929;3901600;5242380;5303915;4561300;5531391;3829000;3337000;3244000;3582100;4253800;4354100;4450015;3999400;4268300;4051900;3955202 -150;'528;Netherlands (Kingdom of the);1879;Total fibre furnish;5622;Import value;1000 USD;;;617;685;370;755;562;63745;76826;99915;88033;98204;129153;210680;208446;255024;215117;204738;274861;314557;284306;239731;222334;284329;244531;278680;361533;449611;552305;493971;367432;395099;326124;519134;905133;743849;640970;696526;628098;707643;532046;565240;714971;883324;1030712;1010986;1179564;1377150;1393209;2311923;1851679;2498355;1490602;1293931;1027518;1032053;1268020.96;1653664;1374915;1179011;1597835;1888799;1706124 -150;'528;Netherlands (Kingdom of the);1879;Total fibre furnish;5910;Export quantity;t;;;;22400;12000;9500;8200;9200;11200;241900;192600;239600;280600;359552;195019;281008;228549;235956;342226;345139;322829;333046;353100;495700;447700;375000;460300;583600;591800;645000;896900;1003262;1084840;1263100;1852200;1375100;1533400;1774600;2033000;1976000;2093900;2097300;2580400;2815100;3344300;3703200;3865268;4349800;5389338;5474764;4604300;5595234;3532871;3166221;3136331;3571100;3788400;3652600;3367720;2936500;3222900;3298676;3850068 -150;'528;Netherlands (Kingdom of the);1879;Total fibre furnish;5922;Export value;1000 USD;;;;2911;1625;1276;1080;1170;1611;17000;12623;15896;25296;61571;25371;34794;26464;25075;51180;62252;41639;37762;37002;58958;52259;47034;65160;92458;78065;105168;101734;115517;109702;218539;464833;274089;254689;275266;321073;412812;277357;260865;440198;496238;625548;697653;872071;1142246;1395036;2268043;1627285;2290048;1099184;981188;821539;958560;1196029.53;1310584;915451;750753;1384685;1589510;1552872 -150;'528;Netherlands (Kingdom of the);1878;Pulp for paper;5510;Production;t;553000;536000;533000;557000;573000;557000;515000;516000;464000;446000;353000;348000;355000;351000;218000;191000;169000;160000;152000;207000;206000;141000;148000;153000;139000;134500;135000;182000;167000;193000;178000;138000;122000;122000;151000;128000;138000;129000;117000;137000;129500;118000;124000;119000;117000;177000;139380;141559;71507;96855;34000;39400;40600;44000;44200;29000;37400;37000;33821;37000;37000;37000;37000 -150;'528;Netherlands (Kingdom of the);1878;Pulp for paper;5610;Import quantity;t;;;1000;1200;1400;2300;1600;508900;554100;593200;483300;546000;623600;635700;490200;565600;525700;584600;603800;567400;516500;460900;514300;536600;519000;556400;548000;571200;572100;572800;549900;613181;659527;848000;802000;933200;1087000;1235400;1055000;814000;814800;936300;993800;1219900;1389100;1224800;1241629;1332700;1925680;2375215;1545900;2806991;1396300;1195000;925700;1189200;1351400;1684400;1491400;1695400;2169100;1743500;1711140 -150;'528;Netherlands (Kingdom of the);1878;Pulp for paper;5622;Import value;1000 USD;;;617;685;370;755;562;63745;76826;96154;85092;94548;121008;189926;197942;240503;198782;186603;247902;281259;258144;214993;197566;244419;203450;238444;312068;376969;423073;405844;291325;317953;284356;420972;632223;556626;582647;636245;538312;514148;427097;434775;525622;675896;784345;748998;842838;1011649;1102216;1912612;1287657;2087179;1082409;918379;678974;701160;842048.91;1273038;1004950;948189;1184238;1418074;1397990 -150;'528;Netherlands (Kingdom of the);1878;Pulp for paper;5910;Export quantity;t;;;;22400;12000;9500;8200;9200;11200;16900;8600;9600;11600;14200;12600;15400;4800;2600;7800;5600;3000;2700;1200;1100;4000;3300;2400;2300;3500;7600;4800;18257;72904;164100;231200;258300;281400;325600;358000;354000;266400;137200;309100;327700;480900;494500;409068;599700;1528138;1889864;942600;2293634;762671;627921;480731;873000;1046100;1014200;807600;696500;1286600;1315076;1602323 -150;'528;Netherlands (Kingdom of the);1878;Pulp for paper;5922;Export value;1000 USD;;;;2911;1625;1276;1080;1170;1611;2971;1501;1628;2179;4745;5121;6237;1728;800;3283;2478;1371;1106;449;401;1788;1672;1209;1384;2801;5306;2630;9037;33414;83607;192964;152436;162650;177594;188919;205174;135537;71355;172079;203934;295068;322039;302356;431116;857617;1510594;730009;1650368;548929;480307;358534;490009;643713.51;804809;520070;433301;922775;1089365;1160153 -150;'528;Netherlands (Kingdom of the);1875;Wood pulp;5510;Production;t;130000;137000;137000;152000;158000;179000;175000;186000;192000;162000;146000;145000;152000;156000;134000;138000;145000;149000;146000;201000;200000;135000;146000;153000;138000;133000;133000;180000;164000;190000;175000;135000;119000;119000;148000;125000;138000;129000;117000;137000;129500;118000;124000;119000;117000;177000;139380;141559;71507;96855;34000;39400;40600;44000;44200;29000;37400;37000;33821;37000;37000;37000;37000 -150;'528;Netherlands (Kingdom of the);1875;Wood pulp;5610;Import quantity;t;;;61400;70600;67000;59200;43200;550800;597400;630000;528600;589500;668600;673300;527400;598200;544200;611200;629600;597100;540400;484800;546600;562700;554100;585800;579600;607400;608200;607700;577800;642462;686618;895000;873000;1037200;1149000;1312000;1144000;905000;915600;1055100;1131800;1259700;1419200;1242500;1266929;1360400;1883180;2363315;1567200;2810205;1388900;1208700;910200;1185500;1352200;1676000;1486250;1692971;2168360;1751200;1700531 -150;'528;Netherlands (Kingdom of the);1875;Wood pulp;5622;Import value;1000 USD;;;10131;12413;12357;10574;7653;71316;85040;104075;95370;104313;131671;202997;214211;248016;209169;199274;260507;298130;273481;230330;217965;260282;227849;257913;334851;406360;454968;439478;315866;341881;306167;447483;692341;620582;609179;672374;577705;562446;475336;491781;613762;714844;813363;762971;867412;1040026;1088892;1904169;1308601;2107372;1073878;950445;672240;692851;837367.29;1244698;966765;914940;1156100;1403771;1350388 -150;'528;Netherlands (Kingdom of the);1875;Wood pulp;5910;Export quantity;t;;;;;;300;0;700;2100;9400;2600;3100;2600;5800;10700;15500;4900;2500;7800;5600;3200;2900;1200;1000;3800;2900;2400;2800;3800;7800;4700;19897;75328;160100;226300;256100;274400;321000;352000;363000;282100;159600;346800;369500;498900;508600;430268;623800;1528938;1899064;943700;2301480;763771;630921;479631;872900;1045400;1008100;803700;682161;1274300;1313576;1599503 -150;'528;Netherlands (Kingdom of the);1875;Wood pulp;5922;Export value;1000 USD;;;;;;49;0;91;316;1702;404;467;429;1896;4169;6234;1725;757;3300;2494;1550;1285;440;363;1610;1374;1209;1594;3093;5462;2615;10029;34167;81470;189346;151227;159013;174624;186574;215266;152292;93758;210479;248679;316021;337750;327602;460467;867958;1529649;739783;1673422;539914;480795;352520;489729;642207.82;795119;510764;399741;894347;1083923;1152252 -150;'528;Netherlands (Kingdom of the);1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37400;37000;33821;37000;37000;37000;37000 -150;'528;Netherlands (Kingdom of the);1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83700;189200;177400;202800;223600;125400;89706 -150;'528;Netherlands (Kingdom of the);1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35663.25;92199;89323;87572;107012;63650;60515 -150;'528;Netherlands (Kingdom of the);1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81800;69200;77700;4100;117200;84200;132246 -150;'528;Netherlands (Kingdom of the);1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44424.66;38546;42868;1984;63141;53816;69954 -150;'528;Netherlands (Kingdom of the);1654;Mechanical wood pulp (1961-2016);5510;Production;t;130000;137000;137000;152000;158000;179000;175000;186000;192000;162000;146000;145000;152000;156000;134000;138000;145000;149000;146000;201000;200000;135000;146000;153000;138000;133000;133000;180000;164000;190000;175000;135000;119000;119000;148000;125000;138000;129000;117000;137000;129500;118000;124000;119000;117000;109000;133380;141559;71507;96855;34000;39400;40600;44000;44200;29000;;;;;;; -150;'528;Netherlands (Kingdom of the);1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30000;31000;37000;46000;35000;43000;34000;47300;46800;50500;50400;63100;37000;20500;9900;12100;46600;34300;67793;59000;46800;11600;6500;;;;;;; -150;'528;Netherlands (Kingdom of the);1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11301;16398;15918;13958;11560;17241;15169;17412;15428;18639;20630;25799;15922;11015;5774;5932;22252;18239;33183;31290;23000;5683;3623;;;;;;; -150;'528;Netherlands (Kingdom of the);1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2000;2000;400;0;12000;13000;8500;10300;15400;15100;12500;12500;13300;45500;43600;43800;13400;113222;50900;26800;9000;902;;;;;;; -150;'528;Netherlands (Kingdom of the);1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;645;645;218;92;88;5221;6591;3238;3456;5964;7254;5649;7434;10360;30960;24159;27109;8951;31562;28936;14659;4759;596;;;;;;; -150;'528;Netherlands (Kingdom of the);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;0;0;0;0;;;;;;; -150;'528;Netherlands (Kingdom of the);1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8500;4800;11000;16000;14600;34000;40000;33000;30000;36500;49000;42400;15000;16900;20700;33500;3500;1800;13300;45900;43517;30500;8900;41800;50600;;;;;;; -150;'528;Netherlands (Kingdom of the);1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3541;1867;4579;10612;5897;13051;15509;15143;15037;12200;17237;17640;7252;10013;13242;23896;2884;1082;11593;36065;27866;24618;7199;16850;19791;;;;;;; -150;'528;Netherlands (Kingdom of the);1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;200;100;0;0;0;0;0;400;100;0;200;300;63;2300;120;12200;20400;23135;11200;1400;33200;58798;;;;;;; -150;'528;Netherlands (Kingdom of the);1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;163;79;0;72;59;177;11;357;463;308;144;163;34;1333;46;9021;12058;13453;8822;848;18019;27936;;;;;;; -150;'528;Netherlands (Kingdom of the);1656;Chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;68000;6000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -150;'528;Netherlands (Kingdom of the);1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;506100;551900;590300;481200;544000;620600;631000;485000;553800;516800;579600;597700;561000;510400;454800;512000;532600;515100;554500;545800;568600;566700;569100;548700;602585;651624;803000;751000;873600;999000;1153000;969000;737000;716000;826500;885300;1138100;1295300;1146400;1166729;1300100;1839380;2263415;1446800;2663681;1280200;1129000;852900;1117900;1254600;1469300;1288900;1467300;1924300;1602000;1597440 -150;'528;Netherlands (Kingdom of the);1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;62964;76200;95452;84475;93863;119853;186686;194714;236016;194725;183309;242956;274955;252301;209150;195209;239728;200082;236727;309909;375269;419181;403161;290115;311838;279862;400875;601172;523617;543347;599271;494776;469797;377296;382294;470471;628923;731888;693763;782212;971884;1043677;1822458;1189793;1987482;971028;868221;631166;653844;782071.45;1127235;850040;794766;1022670;1306739;1267892 -150;'528;Netherlands (Kingdom of the);1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;400;2100;9300;2600;2500;2600;5400;9100;15200;4600;2200;7700;5500;2900;2600;1100;1000;3700;2800;2300;2100;3400;7500;4500;18000;72627;156000;224000;254000;274000;321000;340000;340000;255600;124300;291200;310200;465400;478900;393905;549300;1467918;1822664;891600;2147393;687371;597321;436831;812400;962900;938700;725700;677700;1157000;1228376;1466213 -150;'528;Netherlands (Kingdom of the);1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;40;316;1665;404;343;429;1745;3754;6176;1667;699;3244;2438;1333;1068;411;363;1555;1312;1163;1287;2733;5274;2513;8828;33175;80051;188454;150930;158921;174442;181244;196679;128681;64041;162279;193288;285504;310826;289169;395200;818993;1465500;692201;1600653;479905;457202;328606;459862;596425.11;756191;467697;397448;831049;1028496;1080747 -150;'528;Netherlands (Kingdom of the);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 -150;'528;Netherlands (Kingdom of the);1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;35400;34100;35700;29100;35300;52600;57900;30100;30100;26300;27000;23600;9900;4200;1900;4100;2700;1200;2400;1300;1000;900;1400;2100;2179;1073;2000;5000;6500;9000;7000;6000;7000;4300;1200;1800;700;3400;1600;3800;3600;1600;2900;1900;1865;9400;1400;500;1100;1600;3900;1300;600;1400;800;2583 -150;'528;Netherlands (Kingdom of the);1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;3593;3894;4980;4140;5159;8934;16758;11357;11357;8184;6796;8561;4272;1915;696;1434;1114;613;973;730;651;737;938;1264;1216;545;1084;3601;3548;4556;3137;2885;4008;1963;505;883;361;1726;973;2483;2674;946;2604;1743;1282;7332;1162;336;688;1105.6;3687;1011;772;1088;684;2182 -150;'528;Netherlands (Kingdom of the);1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;500;100;100;100;200;2000;5000;5000;100;100;300;100;100;100;100;100;100;100;100;100;400;100;300;0;152;0;0;2000;1000;0;0;2000;1900;300;0;0;0;0;200;0;2;0;0;0;7971;100;31;200;0;100;100;500;22800;1500;3910 -150;'528;Netherlands (Kingdom of the);1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;49;7;13;15;35;611;2036;2036;46;26;113;52;52;52;52;19;19;19;19;19;312;36;222;0;66;0;0;1015;359;75;22;1286;691;135;27;0;0;0;107;0;107;0;0;15;6624;64;20;83;0;733;59;274;17647;1101;2604 -150;'528;Netherlands (Kingdom of the);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 -150;'528;Netherlands (Kingdom of the);1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;248100;315800;359400;310100;348400;397600;406400;343500;382900;381200;453400;476100;474300;451100;405500;445600;473100;445900;489800;485600;496600;504800;517100;491000;541362;568178;709000;678000;804000;920000;1080000;892000;661000;646700;770400;833200;1094800;1257700;1123500;1157200;1270100;1806278;2210815;1413400;2642601;1254500;1121000;844200;1111900;1250900;1464000;1285200;1460000;1914700;1591200;1584270 -150;'528;Netherlands (Kingdom of the);1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;31364;44643;59275;56187;61772;78452;122896;138223;156855;145670;143482;192927;233063;222343;185143;167663;211866;168750;200437;271926;325136;371264;361745;252940;274468;237138;349375;541331;485375;502547;562830;459539;423719;342973;357175;444128;604982;709672;675896;772570;947441;1020518;1783970;1164563;1967505;953141;854565;617434;645581;777811.34;1120680;844587;784454;1010446;1288632;1247130 -150;'528;Netherlands (Kingdom of the);1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;100;1500;7600;1700;2200;2200;3300;2500;5500;3900;1100;5700;2300;2500;500;700;400;2800;2300;1700;1600;2400;3700;3400;15600;62868;139000;188000;220000;257000;306000;323000;323000;245100;123800;270200;270600;377100;389600;382500;525100;1440072;1793464;866900;2131890;676900;593400;434500;809100;962400;938500;725100;674800;1133400;1225900;1459093 -150;'528;Netherlands (Kingdom of the);1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;18;258;1356;249;300;352;1092;1053;1859;1466;321;2329;1119;1154;230;252;150;1134;1069;870;965;1959;2179;1726;7605;28646;70412;158719;136181;151670;167405;174043;185872;124128;63788;152149;173416;233004;254181;279074;376187;802762;1447671;674296;1586318;468155;449101;324327;454230;595336.41;755126;466549;392586;811800;1025441;1071620 -150;'528;Netherlands (Kingdom of the);1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -150;'528;Netherlands (Kingdom of the);1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2100;1400;2400;6700;8200;10000;10587 -150;'528;Netherlands (Kingdom of the);1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3154.51;2868;4442;9540;11136;17423;18580 -150;'528;Netherlands (Kingdom of the);1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;100;500;2400;800;976;3210 -150;'528;Netherlands (Kingdom of the);1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1088.7;332;1089;4588;1602;1954;6523 -150;'528;Netherlands (Kingdom of the);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;;;;;;; -150;'528;Netherlands (Kingdom of the);1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;78700;63300;66600;49900;60300;61100;64700;53000;53000;36900;31600;29700;20000;10800;6800;6900;4200;8300;7600;7500;4100;3900;3000;7400;5578;4964;3000;12000;9100;4000;2000;2000;2000;3100;3800;8200;14000;16700;0;29;0;2;0;0;0;0;0;4100;0;;;;;;; -150;'528;Netherlands (Kingdom of the);1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;8749;7321;9422;7477;9315;10640;18084;21046;21046;13254;9830;11483;9134;5338;2723;2320;1730;3412;3555;4221;2464;2587;1554;3680;2656;1912;1540;8350;4269;1774;707;904;1080;1008;1216;3727;6634;8323;0;19;0;1;0;0;0;0;0;6698;0;;;;;;; -150;'528;Netherlands (Kingdom of the);1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;100;100;100;400;300;1500;100;100;100;100;500;100;100;100;200;100;100;800;161;3000;6000;2000;1000;0;0;0;100;100;0;0;0;0;5;0;44;0;0;0;0;21;0;0;;;;;;; -150;'528;Netherlands (Kingdom of the);1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;18;18;46;144;230;561;37;37;37;26;247;43;24;87;104;49;39;341;79;2811;4728;837;281;120;75;55;28;27;0;1;0;0;3;0;21;0;0;0;0;11;0;0;;;;;;; -150;'528;Netherlands (Kingdom of the);1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;68000;6000;0;0;0;0;0;0;0;0;0;;;;;;; -150;'528;Netherlands (Kingdom of the);1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;143900;138700;128600;92100;100000;109300;102000;58400;87800;72400;67600;68300;56800;44300;40600;55400;52600;59700;54700;51400;66900;57100;47600;48200;53466;77409;89000;56000;54000;66000;64000;69000;67000;61900;51100;42100;28600;17500;21300;5700;26400;31500;49700;31500;19215;16300;6600;4100;4900;;;;;;; -150;'528;Netherlands (Kingdom of the);1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;19258;20342;21775;16671;17617;21827;28948;24088;46758;27617;23201;29985;28486;22705;20588;23792;25018;27307;31762;33032;47018;44593;38924;32231;33498;40267;48876;47890;30425;34470;32597;31448;40990;31352;23398;21733;16946;12167;16894;7140;21769;22212;35884;23487;18695;10555;12494;6698;7575;;;;;;; -150;'528;Netherlands (Kingdom of the);1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;300;100;1600;800;200;200;100;1500;4600;500;600;1400;1600;200;1900;200;400;300;300;400;300;400;3600;700;1600;9446;14000;30000;30000;15000;15000;17000;15000;8500;100;21000;39600;88300;89300;11200;24200;27800;29200;24700;15503;2500;3800;2300;3100;;;;;;; -150;'528;Netherlands (Kingdom of the);1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;22;9;302;142;28;42;42;647;2263;109;208;572;706;90;749;70;168;155;181;250;216;358;3010;526;882;4384;6828;25007;12897;6611;6842;7104;9466;3834;91;10103;19871;52500;56645;9985;19013;16103;17829;17905;14320;5126;8026;4259;5549;;;;;;; -150;'528;Netherlands (Kingdom of the);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 -150;'528;Netherlands (Kingdom of the);1667;Dissolving wood pulp;5610;Import quantity;t;;;61400;70600;67000;59200;43200;44700;45500;39700;47400;45500;48000;42300;42400;44400;27400;31600;31900;36100;30000;30000;34600;30100;39000;31300;33800;38800;41500;38600;29100;31377;30194;51000;75000;112000;70000;84000;99000;104000;115800;132800;153600;56200;43900;38400;46200;46900;29900;40000;40200;35214;19200;24000;3900;10500;13900;17500;19950;22871;20460;23800;13385 -150;'528;Netherlands (Kingdom of the);1667;Dissolving wood pulp;5622;Import value;1000 USD;;;10131;12413;12357;10574;7653;8352;8840;8623;10895;10450;11818;16311;19497;12000;14444;15965;17551;23175;21180;21180;22756;20554;27767;21186;24942;31091;35787;36317;25751;26502;24438;30728;64159;75150;38823;46034;50545;62443;68428;76822;107012;58039;45663;40044;50289;59484;38201;47866;64504;58841;46942;52025;18541;15593;19632.59;25264;27402;32602;26418;33382;21981 -150;'528;Netherlands (Kingdom of the);1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;300;0;300;0;100;0;600;0;400;1600;300;300;300;100;100;300;300;100;0;100;100;100;700;400;300;200;1897;2701;2000;100;0;0;0;0;10000;18000;24600;40100;44200;20800;16900;23000;26700;17300;20400;18300;17730;14300;5400;600;800;700;200;300;361;100;1000;1044 -150;'528;Netherlands (Kingdom of the);1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;49;0;51;0;37;0;124;0;151;415;58;58;58;56;56;217;217;29;0;55;62;46;307;360;188;102;1201;992;735;84;0;0;22;50;11819;20362;25904;41773;47829;24724;19327;28039;32974;24760;28019;26573;27754;22251;8086;1136;1335;1358.05;382;199;309;157;1611;1551 -150;'528;Netherlands (Kingdom of the);1668;Pulp from fibres other than wood;5510;Production;t;423000;399000;396000;405000;415000;378000;340000;330000;272000;284000;207000;203000;203000;195000;84000;53000;24000;11000;6000;6000;6000;6000;2000;;1000;1500;2000;2000;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 -150;'528;Netherlands (Kingdom of the);1668;Pulp from fibres other than wood;5610;Import quantity;t;;;1000;1200;1400;2300;1600;2800;2200;2900;2100;2000;3000;4700;5200;11800;8900;5000;6100;6400;6100;6100;2300;4000;3900;1900;2200;2600;5400;3700;1200;2096;3103;4000;4000;8000;8000;7400;10000;13000;15000;14000;15600;16400;13800;20700;20900;19200;72400;51900;18900;32000;26600;10300;19400;14200;13100;25900;25100;25300;21200;16100;23994 -150;'528;Netherlands (Kingdom of the);1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;617;685;370;755;562;781;626;702;617;685;1155;3240;3228;4487;4057;3294;4946;6304;5843;5843;2357;4691;3368;1717;2159;1700;3892;2683;1210;2574;2627;4217;4041;11194;12291;9905;11152;14145;20189;19816;18872;19091;16645;26071;25715;31107;51525;56309;43560;38648;55473;19959;25275;23902;24314.21;53604;65587;65851;54556;47685;69583 -150;'528;Netherlands (Kingdom of the);1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;22400;12000;9500;8200;8800;9100;7600;6000;7100;9000;8800;3500;200;200;400;100;100;100;100;100;100;300;500;100;200;100;100;300;257;277;6000;5000;2200;7000;4600;6000;1000;2300;2200;2400;2400;2800;2800;1800;2600;16500;11200;17200;9884;13200;2400;1700;900;1400;6300;4200;14700;12400;2500;3864 -150;'528;Netherlands (Kingdom of the);1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;2911;1625;1276;1080;1130;1295;1306;1097;1285;1750;3000;1367;61;61;101;39;40;38;38;38;38;233;360;46;97;68;32;117;209;239;2872;3702;1209;3637;2992;2395;1727;3607;3501;3373;3084;3771;3616;2793;3623;14419;8964;16799;4700;31266;7598;7150;1615;2863.74;10072;9505;33869;28585;7053;9452 -150;'528;Netherlands (Kingdom of the);1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5900;10000;8000;1100;2300;5400;300;1400;10300;600;800;3100;3300;5000;5400;2600;400;100;2400;2300;200;4500;4600;600;3000;4251 -150;'528;Netherlands (Kingdom of the);1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1502;4419;3832;485;1160;724;193;642;1731;448;485;1608;1612;2645;2934;1838;449;79;775;1190.13;227;2408;2476;492;1908;3524 -150;'528;Netherlands (Kingdom of the);1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;20900;21400;1000;700;6900;200;300;600;1000;1500;692;600;100;25;100;1000;4600;800;5800;2200;700;4496 -150;'528;Netherlands (Kingdom of the);1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;20;4;6;4349;5653;250;281;1822;108;163;452;679;1308;7431;587;66;14;52;281.75;1106;532;1711;878;604;1438 -150;'528;Netherlands (Kingdom of the);1669;Recovered paper;5510;Production;t;360000;361000;386000;433000;438000;477000;555000;613000;686000;756000;721000;735000;827000;949000;706000;911000;891000;886000;935000;982000;984000;974000;1033000;1133000;1140000;1177000;1411000;1530000;1490000;1567000;1746000;1746000;2040000;2202000;2306000;1977000;2439000;2509000;2525000;2450000;2430000;2390000;2360000;2440000;2462000;2346000;2307000;2233000;2002000;2206000;2159000;2140000;2206000;2209000;2232000;2285000;2634000;2493000;2578000;2601000;2656000;2515000;2111000 -150;'528;Netherlands (Kingdom of the);1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;76000;67000;87000;135000;176472;153339;216000;237280;204241;242211;247121;300781;305263;325300;448700;462800;461000;538400;685800;787800;856500;1047100;1252425;934524;1079000;1434000;1245200;1114000;1206000;1341000;1935000;1825700;1656900;2097600;2100900;2475400;2577200;2449300;2568900;3316700;2928700;3015400;2724400;2432700;2142000;2318300;2392900;2902400;2669700;2958615;2304000;2099200;2308400;2244062 -150;'528;Netherlands (Kingdom of the);1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;3761;2941;3656;8145;20754;10504;14521;16335;18135;26959;33298;26162;24738;24768;39910;41081;40236;49465;72642;129232;88127;76107;77146;41768;98162;272910;187223;58323;60281;89786;193495;104949;130465;189349;207428;246367;261988;336726;365501;290993;399311;564022;411176;408193;375552;348544;330893;425972.05;380626;369965;230822;413597;470725;308134 -150;'528;Netherlands (Kingdom of the);1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;225000;184000;230000;269000;345352;182419;265608;223749;233356;334426;339539;319829;330346;351900;494600;443700;371700;457900;581300;588300;637400;892100;985005;1011936;1099000;1621000;1116800;1252000;1449000;1675000;1622000;1827500;1960100;2271300;2487400;2863400;3208700;3456200;3750100;3861200;3584900;3661700;3301600;2770200;2538300;2655600;2698100;2742300;2638400;2560120;2240000;1936300;1983600;2247745 -150;'528;Netherlands (Kingdom of the);1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;14029;11122;14268;23117;56826;20250;28557;24736;24275;47897;59774;40268;36656;36553;58557;50471;45362;63951;91074;75264;99862;99104;106480;76288;134932;271869;121653;92039;97672;132154;207638;141820;189510;268119;292304;330480;375614;569715;711130;537419;757449;897276;639680;550255;500881;463005;468551;552316.02;505775;395381;317452;461910;500145;392719 -150;'528;Netherlands (Kingdom of the);1876;Paper and paperboard;5510;Production;t;1050000;1041000;1119000;1232000;1307000;1357000;1334000;1505000;1608000;1596000;1498000;1571000;1694000;1788000;1319000;1603000;1625000;1682000;1711000;1701000;1590000;1671000;1746000;1885000;1956000;2088000;2168000;2460000;2632000;2830000;2922000;2895000;2915000;3011000;2967000;2987000;3159000;3180000;3256000;3332000;3174000;3346000;3339000;3459000;3471000;3367000;3224000;2977000;2609000;2859000;2748000;2761000;2792000;2767000;2643000;2671000;2983010;2980010;2895000;2868999;2941999;2884000;2222001 -150;'528;Netherlands (Kingdom of the);1876;Paper and paperboard;5610;Import quantity;t;345100;374700;421500;463200;478900;539300;547300;615600;747100;827400;694300;763100;916400;992900;812200;1100000;1071000;1281400;1442300;1434800;1434400;1411100;1480600;1687600;1543000;1870300;1975800;2133300;2239600;2420000;2547200;2579479;2429258;2366000;2522000;2797500;3178000;3523100;3496000;3210000;3210600;3306300;3263700;3055400;3385700;3367000;3519100;3413400;2922800;3035600;2874200;2569500;2757600;2789000;2592300;2423600;2438900;2563300;2331500;2278300;2267700;2189000;2465020 -150;'528;Netherlands (Kingdom of the);1876;Paper and paperboard;5622;Import value;1000 USD;70996;75352;84066;93243;95900;109076;112192;113322;141316;167029;140423;167835;260190;376760;403045;462333;548219;757202;957221;1062317;954678;899704;825921;1088932;902467;1409158;1730122;1937382;1992261;2479666;2488886;2418082;1899815;1758235;2435075;2586663;2407759;2841779;2763638;2320748;2338441;2378467;2755124;2707376;2948107;3111954;3590673;3803856;3004013;2938984;3247042;2645618;2775062;2713756;2072999;1922468;1998511.21;2337998;2066851;1959062;2247411;2406252;2652027 -150;'528;Netherlands (Kingdom of the);1876;Paper and paperboard;5910;Export quantity;t;372000;353700;391000;465400;494000;527900;532300;514600;594800;590800;430000;475800;677900;734400;473400;760300;693400;884500;941500;952900;936300;891200;1054200;1157500;1193800;1380300;1568300;1822200;1895100;2098500;2135100;2224471;2049814;2204000;2250000;2438000;2844000;2809600;2588000;3001000;2557500;2818900;3044000;2956600;3150700;3168700;3105700;2374100;2007200;2270100;2484001;1960156;2278800;2268200;2216609;2289313;2507900;2529200;2555600;2538700;2340800;2639000;2111475 -150;'528;Netherlands (Kingdom of the);1876;Paper and paperboard;5922;Export value;1000 USD;53087;53040;61594;79817;88634;95053;104046;98065;118842;131500;106031;124167;205625;365240;239470;392392;330749;544286;680794;781502;703708;611236;687575;723025;743842;1105624;1432278;1722686;1730418;2181277;2060682;1738556;1435182;1583700;2134569;2127258;2082109;2258351;2118915;2233557;1938840;2042035;2530705;2512396;2687358;2824229;3180606;2852532;2363459;2583866;3199427;2341267;2569976;2544850;2006226;1934406;2151495.55;2407301;2194898;2087148;2294517;2974063;2303786 -150;'528;Netherlands (Kingdom of the);2042;Graphic papers;5510;Production;t;348000;349000;390000;450000;492000;533000;531000;599000;569000;656000;595000;651000;670000;703000;531000;640000;624000;668000;683000;742000;690000;642000;705000;762000;753000;785000;815000;995000;1017000;1119000;1143000;1103000;1101000;1213000;1179000;1178000;1251000;1224000;1268000;1345000;1245000;1247000;1337000;1384000;1352000;1430000;1345000;1170000;926000;967000;946000;924000;925000;891000;744000;725000;701000;661000;606000;526000;525000;534000;334000 -150;'528;Netherlands (Kingdom of the);2042;Graphic papers;5610;Import quantity;t;141500;163700;189300;204300;229700;252800;254900;324800;395700;460300;349800;431400;531600;578600;506800;527600;644700;648000;722400;726200;700600;635000;676500;832700;717500;892500;952600;1151500;1222600;1328500;1412200;1427300;1429258;1191000;1142000;1417500;1735000;1874400;2011000;1749000;1712200;1737900;1695100;1679600;1832600;1792800;1958500;1855600;1565500;1495300;1467100;1227900;1185500;1150600;1011600;894900;881600;891700;708100;682600;689900;710400;773584 -150;'528;Netherlands (Kingdom of the);2042;Graphic papers;5622;Import value;1000 USD;24172;30329;34162;36780;41736;46473;46646;58001;73214;88172;69054;95970;152915;190280;260371;172772;368854;398730;494323;535428;461792;392110;349281;443083;402983;655328;821627;1054478;1091625;1361990;1376083;1312776;1090821;903485;1126841;1405721;1378368;1503275;1622007;1265215;1275170;1306620;1443657;1481686;1642887;1646235;1938866;2083079;1624328;1451990;1602749;1226521;1128636;1075830;773900;713565;703092.53;795562;668518;623978;668340;845567;948122 -150;'528;Netherlands (Kingdom of the);2042;Graphic papers;5910;Export quantity;t;82600;102000;117800;150400;166400;190100;198300;227500;188700;186800;120900;223400;342300;349900;216600;220500;281600;237200;272100;328700;316600;308000;371700;436100;456600;507400;577700;786000;808400;908700;886500;1023471;1010814;970000;907000;1103000;1376000;1240600;1537000;1389000;1261700;1399200;1534900;1559900;1628000;1563100;1622000;1259400;1151700;1347300;1474249;1135500;1207600;1043800;901200;934700;914000;891300;854500;772700;659200;724300;479812 -150;'528;Netherlands (Kingdom of the);2042;Graphic papers;5922;Export value;1000 USD;17708;22941;27275;36984;42453;48409;50661;58406;48753;51976;39513;75286;134295;218680;151104;135479;195573;166544;222947;280889;240699;234961;250448;293904;325375;448753;588955;851326;862212;1076465;954761;993877;800993;748833;972007;1084554;1111063;1076380;1312790;1138529;1007652;1102024;1355187;1404850;1428312;1451003;1626627;1367055;1197997;1351638;1655908;1142749;1249085;1090724;788798;795658;790116.08;868422;803443;740089;696350;876847;630712 -150;'528;Netherlands (Kingdom of the);1671;Newsprint;5510;Production;t;152000;149000;150000;155000;164000;175000;162000;183000;171000;167000;127000;136000;139000;148000;125000;122000;123000;127000;119000;171000;190000;150000;179000;182000;191000;185000;212000;305000;280000;300000;309000;306000;326000;311000;361000;338000;373000;349000;376000;415000;399000;357000;427000;422000;421000;422000;421000;462000;273000;242000;253000;255000;254000;0;0;0;0;0;0;0;0;0;0 -150;'528;Netherlands (Kingdom of the);1671;Newsprint;5610;Import quantity;t;49800;78000;91300;95500;103500;121000;117600;150600;193800;247300;199400;215800;245900;267900;257400;262000;280000;305700;348900;331900;287700;287200;286600;302900;270800;327100;354400;360400;361100;393900;369100;340828;403481;432000;430000;394500;473000;515500;592000;518000;571200;527100;419700;357500;396900;371500;385500;353500;313300;337800;388400;376800;384700;308600;323600;297400;290900;321900;270500;228800;202000;206000;272672 -150;'528;Netherlands (Kingdom of the);1671;Newsprint;5622;Import value;1000 USD;7029;11398;13107;13537;14543;16941;16586;19094;25344;34056;28877;32207;44870;87080;104872;15562;126538;154173;190050;186837;144195;141940;125194;113571;106435;174247;225601;233271;215724;273290;255103;213550;206511;219811;287116;289691;254496;285117;312710;245192;296107;280242;234180;209787;240340;242965;287721;271639;223489;209528;275938;253535;242923;192956;155493;141819;141891.13;178925;150624;108254;98485;151235;201255 -150;'528;Netherlands (Kingdom of the);1671;Newsprint;5910;Export quantity;t;43800;43700;45300;43100;37300;42600;39700;42000;38700;35600;7100;16200;35000;33500;22700;24100;20300;21100;21200;45100;47400;48000;62400;69700;77600;86300;99700;171500;123500;200600;213500;209056;238814;227000;220000;238000;294000;232400;216000;231000;219600;233600;264100;319900;346200;298900;341400;276800;272200;198700;217422;168700;147000;117000;101000;79200;33000;29200;24600;20700;39200;45600;59602 -150;'528;Netherlands (Kingdom of the);1671;Newsprint;5922;Export value;1000 USD;6408;6494;6712;6363;5486;6251;5884;5974;5591;5339;1069;2582;7245;11280;8837;9637;9109;10384;11255;24269;24540;25464;28739;29647;34058;49347;63051;117727;78298;150657;147750;121162;107553;104288;158496;166879;149429;130884;114616;109783;116032;112329;149372;199753;211503;207699;245844;215927;214851;158556;186615;129599;111689;88958;52697;41158;14944.21;16313;13243;9878;18395;32295;37373 -150;'528;Netherlands (Kingdom of the);1674;Printing and writing papers;5510;Production;t;196000;200000;240000;295000;328000;358000;369000;416000;398000;489000;468000;515000;531000;555000;406000;518000;501000;541000;564000;571000;500000;492000;526000;580000;562000;600000;603000;690000;737000;819000;834000;797000;775000;902000;818000;840000;878000;875000;892000;930000;846000;890000;910000;962000;931000;1008000;924000;708000;653000;725000;693000;669000;671000;891000;744000;725000;701000;661000;606000;526000;525000;534000;334000 -150;'528;Netherlands (Kingdom of the);1674;Printing and writing papers;5610;Import quantity;t;91700;85700;98000;108800;126200;131800;137300;174200;201900;213000;150400;215600;285700;310700;249400;265600;364700;342300;373500;394300;412900;347800;389900;529800;446700;565400;598200;791100;861500;934600;1043100;1086472;1025777;759000;712000;1023000;1262000;1358900;1419000;1231000;1141000;1210800;1275400;1322100;1435700;1421300;1573000;1502100;1252200;1157500;1078700;851100;800800;842000;688000;597500;590700;569800;437600;453800;487900;504400;500912 -150;'528;Netherlands (Kingdom of the);1674;Printing and writing papers;5622;Import value;1000 USD;17143;18931;21055;23243;27193;29532;30060;38907;47870;54116;40177;63763;108045;103200;155499;157210;242316;244557;304273;348591;317597;250170;224087;329512;296548;481081;596026;821207;875901;1088700;1120980;1099226;884310;683674;839725;1116030;1123872;1218158;1309297;1020023;979063;1026378;1209477;1271899;1402547;1403270;1651145;1811440;1400839;1242462;1326811;972986;885713;882874;618407;571746;561201.4;616637;517894;515724;569855;694332;746867 -150;'528;Netherlands (Kingdom of the);1674;Printing and writing papers;5910;Export quantity;t;38800;58300;72500;107300;129100;147500;158600;185500;150000;151200;113800;207200;307300;316400;193900;196400;261300;216100;250900;283600;269200;260000;309300;366400;379000;421100;478000;614500;684900;708100;673000;814415;772000;743000;687000;865000;1082000;1008200;1321000;1158000;1042100;1165600;1270800;1240000;1281800;1264200;1280600;982600;879500;1148600;1256827;966800;1060600;926800;800200;855500;881000;862100;829900;752000;620000;678700;420210 -150;'528;Netherlands (Kingdom of the);1674;Printing and writing papers;5922;Export value;1000 USD;11300;16447;20563;30621;36967;42158;44777;52432;43162;46637;38444;72704;127050;207400;142267;125842;186464;156160;211692;256620;216159;209497;221709;264257;291317;399406;525904;733599;783914;925808;807011;872715;693440;644545;813511;917675;961634;945496;1198174;1028746;891620;989695;1205815;1205097;1216809;1243304;1380783;1151128;983146;1193082;1469293;1013150;1137396;1001766;736101;754500;775171.87;852109;790200;730211;677955;844552;593339 -150;'528;Netherlands (Kingdom of the);1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;410000;419000;431000;430000;463000;476000;9000;9000;10000;25000;21000;15000;15000;15000;22000;0;0;0;0;0;0;0;0;0;0;0 -150;'528;Netherlands (Kingdom of the);1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;218000;252000;246000;214400;249200;271600;259400;272700;299700;413600;399900;333500;228200;201300;153000;147900;138300;114800;101100;93500;80500;35100;32600;28600;34900;38954 -150;'528;Netherlands (Kingdom of the);1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;144260;160316;136491;130870;154653;183722;188977;209704;234827;339043;357716;285818;174857;178660;120242;109782;101709;76977;67487;61689.39;64760;33956;29019;29841;40268;44774 -150;'528;Netherlands (Kingdom of the);1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79800;147000;149000;122000;135800;200800;213700;175700;171900;159900;119000;70600;130100;142359;106600;63100;37000;96500;94800;91700;73440;60255;19800;153400;202800;147819 -150;'528;Netherlands (Kingdom of the);1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54226;93779;93998;77818;80771;119777;166775;127640;157831;158968;111843;56943;98590;112701;84613;44777;28153;56230;51541;50426.57;41975;33966;13993;81359;145748;116773 -150;'528;Netherlands (Kingdom of the);1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;503000;505000;528000;416000;215000;208000;218000;214000;221000;234000;485000;501000;486000;470000;443181;406300;352663;351993;358027;222270 -150;'528;Netherlands (Kingdom of the);1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;383000;447000;318000;330500;434200;469000;477300;501000;446300;416900;438200;382600;437800;434400;375900;312700;308900;283400;275900;264200;234300;215800;205600;217700;231200;235388 -150;'528;Netherlands (Kingdom of the);1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;390574;514542;337792;361214;430896;515559;514555;530614;504238;540966;625021;487753;514653;567815;485282;399368;377731;275615;293455;274095.57;284856;257481;244117;276023;328516;364212 -150;'528;Netherlands (Kingdom of the);1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;256900;436000;302000;279800;448300;491000;484300;516400;494400;407900;260300;248800;277200;303319;346200;432600;430300;399200;376700;413200;416160;403245;401900;167500;210600;130528 -150;'528;Netherlands (Kingdom of the);1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;299882;479463;355298;314168;421881;538481;531466;553922;552674;558969;406242;363220;394394;434098;404715;522567;509639;392882;338107;366975.66;377779;343434;356911;243815;315056;228380 -150;'528;Netherlands (Kingdom of the);1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;465000;473000;499000;416000;427000;434000;450000;417000;470000;483000;472000;430000;492000;464000;426000;437000;406000;243000;239000;231000;217819;199700;173337;173007;175973;111730 -150;'528;Netherlands (Kingdom of the);1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;757900;720000;667000;596100;527400;534800;585400;662000;675300;742500;664000;536100;491500;443000;322200;340200;394800;289800;220500;233000;255000;186700;215600;241600;238300;226570 -150;'528;Netherlands (Kingdom of the);1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;683324;634439;545740;486979;440829;510196;568367;662229;664205;771136;828703;627268;552952;580336;367462;376563;403434;265815;210804;225416.43;267021;226457;242588;263991;325548;337881 -150;'528;Netherlands (Kingdom of the);1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;671500;738000;707000;640300;581500;579000;542000;589700;597900;712800;603300;560100;741300;811149;514000;564900;459500;304500;384000;376100;372500;366400;330300;299100;265300;141863 -150;'528;Netherlands (Kingdom of the);1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;591388;624932;579450;499634;487043;547557;506856;535247;532799;662846;633043;562983;700098;922494;523822;570052;463974;286989;364852;357769.64;432355;412800;359307;352781;383748;248186 -150;'528;Netherlands (Kingdom of the);1675;Other paper and paperboard;5510;Production;t;702000;692000;729000;782000;815000;824000;803000;906000;1039000;940000;903000;920000;1024000;1085000;788000;963000;1001000;1014000;1028000;959000;900000;1029000;1041000;1123000;1203000;1303000;1353000;1465000;1615000;1711000;1779000;1792000;1814000;1798000;1788000;1809000;1908000;1956000;1988000;1987000;1929000;2099000;2002000;2075000;2119000;1937000;1879000;1807000;1683000;1892000;1802000;1837000;1867000;1876000;1899000;1946000;2282010;2319010;2289000;2342999;2416999;2350000;1888001 -150;'528;Netherlands (Kingdom of the);1675;Other paper and paperboard;5610;Import quantity;t;203600;211000;232200;258900;249200;286500;292400;290800;351400;367100;344500;331700;384800;414300;305400;572400;426300;633400;719900;708600;733800;776100;804100;854900;825500;977800;1023200;981800;1017000;1091500;1135000;1152179;1000000;1175000;1380000;1380000;1443000;1648700;1485000;1461000;1498400;1568400;1568600;1375800;1553100;1574200;1560600;1557800;1357300;1540300;1407100;1341600;1572100;1638400;1580700;1528700;1557300;1671600;1623400;1595700;1577800;1478600;1691436 -150;'528;Netherlands (Kingdom of the);1675;Other paper and paperboard;5622;Import value;1000 USD;46824;45023;49904;56463;54164;62603;65546;55321;68102;78857;71369;71865;107275;186480;142674;289561;179365;358472;462898;526889;492886;507594;476640;645849;499484;753830;908495;882904;900636;1117676;1112803;1105306;808994;854750;1308234;1180942;1029391;1338504;1141631;1055533;1063271;1071847;1311467;1225690;1305220;1465719;1651807;1720777;1379685;1486994;1644293;1419097;1646426;1637926;1299099;1208903;1295418.69;1542436;1398333;1335084;1579071;1560685;1703905 -150;'528;Netherlands (Kingdom of the);1675;Other paper and paperboard;5910;Export quantity;t;289400;251700;273200;315000;327600;337800;334000;287100;406100;404000;309100;252400;335600;384500;256800;539800;411800;647300;669400;624200;619700;583200;682500;721400;737200;872900;990600;1036200;1086700;1189800;1248600;1201000;1039000;1234000;1343000;1335000;1468000;1569000;1051000;1612000;1295800;1419700;1509100;1396700;1522700;1605600;1483700;1114700;855500;922800;1009752;824656;1071200;1224400;1315409;1354613;1593900;1637900;1701100;1766000;1681600;1914700;1631663 -150;'528;Netherlands (Kingdom of the);1675;Other paper and paperboard;5922;Export value;1000 USD;35379;30099;34319;42833;46181;46644;53385;39659;70089;79524;66518;48881;71330;146560;88366;256913;135176;377742;457847;500613;463009;376275;437127;429121;418467;656871;843323;871360;868206;1104812;1105921;744679;634189;834867;1162562;1042704;971046;1181971;806125;1095028;931188;940011;1175518;1107546;1259046;1373226;1553979;1485477;1165462;1232228;1543519;1198518;1320891;1454126;1217428;1138748;1361379.47;1538879;1391455;1347059;1598167;2097216;1673074 -150;'528;Netherlands (Kingdom of the);1676;Household and sanitary papers;5510;Production;t;;;;;48000;35000;57000;71000;67000;70000;69000;75000;81000;85000;83000;91000;95000;99000;105000;117000;118000;121000;136000;149000;151000;157000;158000;170000;169000;167000;174000;171000;166000;167000;161000;159000;169000;169000;144000;133000;129000;128000;127000;132000;125000;109000;115000;117000;120000;118000;121000;124000;124000;116000;113000;112000;112000;110000;94000;94000;80000;89000;85000 -150;'528;Netherlands (Kingdom of the);1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;11700;9400;9600;7900;10400;9100;7100;4400;1400;13700;13700;18100;21800;17600;18600;13000;14500;14000;14600;15900;15700;16000;27000;27900;28000;21000;30000;30000;30000;28000;26500;147000;25000;36400;29200;32200;28200;28300;28500;32100;31200;27200;28600;38400;41000;40500;45000;46100;41300;32800;40600;48000;34100;39900;36500;37806 -150;'528;Netherlands (Kingdom of the);1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;3773;3249;3456;2909;4054;4298;4377;12152;1145;8940;8940;16012;27069;17207;17700;11013;11787;9116;16116;19884;19424;20000;38708;37325;37400;29037;37945;48692;42836;35482;34131;192628;32428;41147;35360;38879;36691;41088;41471;54982;58076;51903;55942;75090;74491;77793;93618;80354;74436;61115.74;74119;78568;55080;69703;77850;88265 -150;'528;Netherlands (Kingdom of the);1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;9000;8800;9000;10700;8800;11700;5800;600;500;700;700;700;14500;12100;12000;8300;9500;9700;12200;13200;13500;14000;12700;13600;13000;20000;20000;17000;15000;17000;20300;106000;13000;9900;14300;18700;16900;16500;19900;23900;23800;22400;23700;25933;20400;16600;23000;26300;25800;25800;23900;14800;18400;15400;37200;33248 -150;'528;Netherlands (Kingdom of the);1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;2888;2665;2779;3816;3491;5283;3821;854;388;703;703;703;17991;12973;10500;8469;9434;9200;16423;19288;20000;20000;24597;23132;23000;30544;29198;34586;24901;21966;23093;148960;17424;14062;18896;23822;26087;25188;33831;37567;37648;34380;41421;51099;39600;37110;45203;42498;40112;41829.14;45688;34470;39383;35185;64005;78235 -150;'528;Netherlands (Kingdom of the);2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1787000;1844000;1854000;1800000;1971000;1875000;1941000;1976000;1828000;1764000;1690000;1563000;1774000;1681000;1713000;1743000;1760000;1786000;1834000;2170010;2209010;2195000;2248999;2336999;2261000;1803001 -150;'528;Netherlands (Kingdom of the);2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1466500;1299000;1318000;1331800;1409400;1413500;1317500;1494000;1510200;1483700;1450200;1264200;1468000;1287800;1220500;1446700;1510300;1512500;1464000;1499500;1604500;1560700;1533400;1522800;1406100;1577430 -150;'528;Netherlands (Kingdom of the);2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1087241;885081;863436;859589;894243;1087290;1073361;1133770;1275805;1422788;1453133;1149433;1277238;1361265;1137265;1330342;1356355;1114136;1040802;1145823.28;1353093;1219461;1168970;1397564;1364594;1475895 -150;'528;Netherlands (Kingdom of the);2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1445100;932000;1457000;1142400;1278100;1357600;1370800;1497500;1572300;1442200;1080500;822800;889000;972767;791456;1033800;1183200;1270800;1314400;1563300;1609900;1682600;1740700;1660600;1870700;1591717 -150;'528;Netherlands (Kingdom of the);2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;998610;643369;875312;725970;816301;1017539;1039647;1177133;1260363;1405787;1337678;1038837;1096141;1397228;1059205;1157603;1294514;1057127;1021310;1224172.21;1392413;1252984;1204891;1463098;1923415;1477673 -150;'528;Netherlands (Kingdom of the);1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;740000;754000;690000;744000;852000;744000;718000;829000;919000;966000;700000;861000;880000;880000;885000;800000;750000;905000;902000;922000;1000000;1094000;1141000;1235000;1386000;1484000;1545000;1561000;1588000;1631000;1627000;1650000;1739000;;;;;;;;;;;;;;;;;;;;;;;;;; -150;'528;Netherlands (Kingdom of the);1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;260800;309800;308000;298200;307400;332000;370500;197900;259200;399400;191800;149500;130800;137400;145100;138000;152800;147500;160400;185400;177700;184000;195000;1063500;1080179;971000;1139000;1338000;1341000;1402000;;;;;;;;;;;;;;;;;;;;;;;;;; -150;'528;Netherlands (Kingdom of the);1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;46233;57872;61701;57208;62596;81852;138673;86709;98106;157873;165273;73107;78090;72038;74100;63720;67138;51923;93548;117512;113895;116200;150000;1034807;1026906;771202;811310;1248063;1129840;985641;;;;;;;;;;;;;;;;;;;;;;;;;; -150;'528;Netherlands (Kingdom of the);1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;261800;295400;284100;203000;232700;253800;134200;179800;207900;400300;261400;305800;135400;149600;140500;203900;203600;208100;236700;270900;282900;297000;320000;1217100;1171000;990000;1188000;1287000;1287000;1423000;;;;;;;;;;;;;;;;;;;;;;;;;; -150;'528;Netherlands (Kingdom of the);1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;33226;39425;43268;32026;40460;52133;54128;78418;73600;124957;212348;263742;57093;73853;60204;58541;59809;58324;82751;103475;107200;108000;137000;1065481;704679;586966;790144;1100897;1000610;937348;;;;;;;;;;;;;;;;;;;;;;;;;; -150;'528;Netherlands (Kingdom of the);1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;727000;782000;784000;747000;862000;802000;823000;867000;864000;859000;821000;760000;885000;868000;904000;936000;934000;939000;979000;1274000;1310000;1316000;1348375;1401135;1355570;1080979 -150;'528;Netherlands (Kingdom of the);1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;615800;532000;544000;518200;587200;541700;513500;569500;495200;494800;486500;417000;590900;440500;490300;694300;803700;788400;741700;714900;795300;787600;806600;687600;666700;812352 -150;'528;Netherlands (Kingdom of the);1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;303715;229759;246627;221261;241404;278376;289057;317468;284686;328073;337706;225317;300373;295466;313845;434251;506677;412753;380673;395743.27;507636;425997;405263;467595;511178;483144 -150;'528;Netherlands (Kingdom of the);1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;584500;536000;558000;633000;661800;667700;780800;833900;827400;814800;560400;385500;397600;435064;345856;625400;768100;896300;916100;1135200;1169300;1242600;1267900;1180000;1277000;1133625 -150;'528;Netherlands (Kingdom of the);1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;222732;166255;182198;200723;212033;254347;318851;330330;347330;407980;321104;177873;219292;282801;197675;351283;441460;441611;426152;590240.05;705130;586104;529375;734643;933484;607397 -150;'528;Netherlands (Kingdom of the);1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;177000;182000;191000;192000;209000;207000;151000;170000;116000;106000;108000;103000;127000;113000;113000;127000;125000;135000;134000;140430;140900;137760;141149;146672;141902;113158 -150;'528;Netherlands (Kingdom of the);1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;594800;538000;541000;598600;570200;605000;553900;568200;655800;657600;612700;538700;561000;532200;415500;427600;390000;425300;414600;430300;462000;412600;393400;413900;360800;379539 -150;'528;Netherlands (Kingdom of the);1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;564225;479852;437645;464448;462694;573835;570844;584706;706772;776373;747265;648282;678176;725857;511529;570717;527874;435746;392915;426822.95;492652;439805;440999;497383;395155;481203 -150;'528;Netherlands (Kingdom of the);1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;258900;240000;265000;328900;335000;365000;244500;330500;388800;289800;339600;314600;358800;392608;313400;272800;279100;242700;264800;290200;292900;292700;289400;294600;400400;295562 -150;'528;Netherlands (Kingdom of the);1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;429132;351720;341578;390183;423151;523809;451196;578641;618483;653437;768075;684844;708029;917884;690909;618509;657513;450862;432160;453337.09;480786;463839;439847;451917;687744;560840 -150;'528;Netherlands (Kingdom of the);1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64000;53000;49000;47000;48000;46000;52000;52000;55000;59000;55000;51000;57000;57000;60000;62000;73000;76000;59000;61830;62037;60660;62152;64584;62484;49827 -150;'528;Netherlands (Kingdom of the);1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;215600;182000;206000;215000;208500;220000;205900;233000;258800;238000;252500;225500;235400;236200;230000;239500;230700;231800;196100;223500;228200;236600;215600;284300;259200;281089 -150;'528;Netherlands (Kingdom of the);1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200315;159671;164731;173880;175013;212332;193393;194555;239835;264866;306899;232573;253705;290544;264080;276792;272439;231473;196987;227983.77;257309;257891;223885;311308;348139;405869 -150;'528;Netherlands (Kingdom of the);1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;122400;124000;124000;180500;238700;281500;289300;261700;307500;297300;152800;102600;110900;121350;109000;113600;114100;107400;109700;118000;122800;118700;129800;147500;160000;144877 -150;'528;Netherlands (Kingdom of the);1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115641;113885;106503;135064;166543;222371;244409;239351;274352;322819;231564;165072;157611;181044;157186;175155;180219;152722;151627;170414.74;193107;188858;204373;244054;277412;293275 -150;'528;Netherlands (Kingdom of the);1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;819000;827000;830000;814000;852000;820000;915000;887000;793000;740000;706000;649000;705000;643000;636000;618000;628000;636000;662000;693750;696073;680580;697323;724608;701044;559037 -150;'528;Netherlands (Kingdom of the);1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40300;47000;27000;0;43500;46800;44200;123300;100400;93300;98500;83000;80700;78900;84700;85300;85900;67000;111600;130800;119000;123900;117800;137000;119400;104450 -150;'528;Netherlands (Kingdom of the);1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18986;15799;14433;0;15132;22747;20067;37041;44512;53476;61263;43261;44984;49398;47811;48582;49365;34164;70227;95273.3;95496;95768;98823;121278;110122;105679 -150;'528;Netherlands (Kingdom of the);1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;479300;32000;510000;0;42600;43400;56200;71400;48600;40300;27700;20100;21700;23745;23200;22000;21900;24400;23800;19900;24900;28600;53600;38500;33300;17653 -150;'528;Netherlands (Kingdom of the);1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;231105;11509;245033;0;14574;17012;25191;28811;20198;21551;16935;11048;11209;15499;13435;12656;15322;11932;11371;10180.32;13390;14183;31296;32484;24775;16161 -150;'528;Netherlands (Kingdom of the);1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;27000;35000;56000;91000;120000;126000;116000;16000;24000;34000;5000;11000;26000;35000;38000;42000;32000;3000;3000;52000;52000;52000;54000;60000;60000;60000;60000;60000;60000;0;0;0;0;0;0;0;0;0;0;2000;18000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -150;'528;Netherlands (Kingdom of the);1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;18300;32200;49500;38400;13900;43700;36700;103100;311800;13200;427900;552300;556000;578800;612400;653100;687600;664000;802800;821900;788400;817000;869500;43600;44000;8000;6000;12000;9000;13000;155700;39000;118000;130200;129800;122900;30100;30800;35500;44800;76400;65900;43700;80900;80100;84900;83100;22100;23400;25000;26500;14700;28200;15100;36000;76200 -150;'528;Netherlands (Kingdom of the);1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;5315;6981;13700;11252;5215;21125;43430;43813;190310;12552;184259;373779;421730;403641;415794;401907;566924;438445;644166;771099;749585;764436;928968;40671;41000;8755;5495;11479;8266;8268;217132;63922;159669;162535;142244;185298;115638;130362;148443;174037;209568;178349;153814;207938;207341;238291;187953;104609;93665;88479.66;115224;100304;111034;111804;118241;139745 -150;'528;Netherlands (Kingdom of the);1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;16300;101900;110900;95400;10900;70100;244500;76400;331400;10800;385200;362900;474300;458000;430700;470300;508300;519400;624000;706500;739800;775700;857100;17900;17000;29000;26000;39000;33000;28000;103600;13000;142000;143500;127300;132800;9000;8700;13400;17600;10400;10300;10100;11052;12800;20800;18200;18309;14413;4800;4100;3700;6900;5600;6800;6698 -150;'528;Netherlands (Kingdom of the);1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;3545;27999;33477;30676;4930;13914;88611;9094;182925;9516;164691;193402;425529;376183;305571;370117;359878;350943;557697;720560;744160;740206;943215;17308;17000;16679;15525;27079;17193;11732;160268;13796;202292;191156;104814;134157;41812;56725;79032;110625;110151;92245;94666;95192;99713;126178;114409;117803;77326;95378.11;100778;104001;102785;99884;109796;117166 -150;'528;Netherlands (Kingdom of the);1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3391545.88;3725730;3843358;4076982;5160249;5022105;4691808 -150;'528;Netherlands (Kingdom of the);1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1826919.88;1988803;1980972;2129781;2735633;2709713;2588177 -150;'528;Netherlands (Kingdom of the);2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81378.13;88018;103701;119336;186839;133758;116994 -150;'528;Netherlands (Kingdom of the);2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41033.47;38957;39042;37025;30408;45763;47176 -150;'528;Netherlands (Kingdom of the);1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12379.13;14151;16371;16825;35052;30999;44331 -150;'528;Netherlands (Kingdom of the);1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2851.35;2076;2452;5039;11126;5965;7405 -150;'528;Netherlands (Kingdom of the);1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68999;73867;87330;102511;151787;102759;72663 -150;'528;Netherlands (Kingdom of the);1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38182.13;36881;36590;31986;19282;39798;39771 -150;'528;Netherlands (Kingdom of the);1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;224869;263059;235227;218801;376423;479169;358450 -150;'528;Netherlands (Kingdom of the);1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;201492;222674;224512;239216;338708;405950;322843 -150;'528;Netherlands (Kingdom of the);1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;165889;172802;164315;158377;206510;262670;187294 -150;'528;Netherlands (Kingdom of the);1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120652;126119;122724;141996;199480;213496;200224 -150;'528;Netherlands (Kingdom of the);1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;336856.76;355078;369621;381512;468435;325514;483487 -150;'528;Netherlands (Kingdom of the);1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;170225.4;166786;175549;159636;176680;164075;212432 -150;'528;Netherlands (Kingdom of the);1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54495;39457 -150;'528;Netherlands (Kingdom of the);1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77524;54067 -150;'528;Netherlands (Kingdom of the);1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27287;28893 -150;'528;Netherlands (Kingdom of the);1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24299;29255 -150;'528;Netherlands (Kingdom of the);1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7156;11350 -150;'528;Netherlands (Kingdom of the);1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4117;13621 -150;'528;Netherlands (Kingdom of the);1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4820;69 -150;'528;Netherlands (Kingdom of the);1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6685;196 -150;'528;Netherlands (Kingdom of the);1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3787;3429 -150;'528;Netherlands (Kingdom of the);1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4473;5661 -150;'528;Netherlands (Kingdom of the);1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;196 -150;'528;Netherlands (Kingdom of the);1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;566;684 -150;'528;Netherlands (Kingdom of the);1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2329725;2542148;2622435;2819335;3420594;3294825;3143480 -150;'528;Netherlands (Kingdom of the);1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1035248;1165210;1154675;1257599;1581063;1474837;1502825 -150;'528;Netherlands (Kingdom of the);1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46137;60707;86599;89755;100642;109602;81509 -150;'528;Netherlands (Kingdom of the);1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58113;53572;49965;62495;95887;79092;63138 -150;'528;Netherlands (Kingdom of the);1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;206691;243918;261460;289866;400806;416567;320594 -150;'528;Netherlands (Kingdom of the);1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200156;215485;214505;231814;313407;326500;239539 -150;'528;Netherlands (Kingdom of the);5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2587514.86;2906979;2912652;2855615;3606330;3889158;3659594 -150;'528;Netherlands (Kingdom of the);5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2996526.72;3147070;3047990;3108770;3740598;3574871;3443711 -150;'528;Netherlands (Kingdom of the);1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9084.86;15024;9897;13260;14627;8574;15564 -150;'528;Netherlands (Kingdom of the);1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;355365.72;382637;341525;305503;307088;318459;231740 -150;'528;Netherlands (Kingdom of the);1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;249966;270980;265242;262222;324503;375684;334796 -150;'528;Netherlands (Kingdom of the);1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;122462;157599;167214;191178;301283;376562;360725 -150;'528;Netherlands (Kingdom of the);1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;419506;435480;425609;452616;526924;612471;749124 -150;'528;Netherlands (Kingdom of the);1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;279833;318541;315957;426628;420282;445278;474307 -150;'528;Netherlands (Kingdom of the);1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1120151;1261447;1296168;1274362;1695636;1838076;1580747 -150;'528;Netherlands (Kingdom of the);1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1422923;1448262;1373651;1364015;1812740;1428199;1296987 -150;'528;Netherlands (Kingdom of the);1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;788807;924048;915736;853155;1044640;1054353;979363 -150;'528;Netherlands (Kingdom of the);1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;815943;840031;849643;821446;899205;1006373;1079952 -151;'530;Netherlands Antilles (former);1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;1327;1393;1558;1779;2152;2401;2782;2782;2782;2782;9554;6366;6366;6540;6630;10042;9792;10758;10899;10820;11386;13603;10086;14229;23467;20894;21807;13703;20173;22047;21029;21053;22112;21633;20228;19458;16977;16977;8392;15317;17022;17018;16337;26976;39360;24949;16391;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;230;12;3;29;152;166;388;248;2202;2202;5942;13468;15141;15141;3288;1208;996;1421;2288;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1861;Roundwood;5516;Production;m3;2700;2704;2708;2712;2716;2719;2723;2727;2731;2735;2724;2699;2694;2522;2570;2591;2579;2568;2459;2474;2403;2413;2439;2466;2512;2523;2534;2545;2578;2689;2699;2909;2680;2774;2784;2806;2848;2862;2883;3078;3102;3126;3150;3174;3199;3222;3245;3269;3293;3317;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1861;Roundwood;5616;Import quantity;m3;;;;600;500;300;500;800;1700;1900;1900;1900;1900;1500;2500;2500;2500;2500;2600;2600;1400;400;400;300;300;300;300;300;300;1399;797;840;1980;3833;897;1374;484;1486;475;288;288;691;642;1622;1622;1249;3139;5814;726;380;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1861;Roundwood;5622;Import value;1000 USD;;;;24;51;15;30;48;106;151;151;151;151;286;373;373;373;373;410;410;133;87;88;86;86;86;86;86;86;186;123;128;184;401;102;258;116;141;100;52;52;90;73;108;108;162;1231;4560;496;251;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;24;24;24;24;24;24;24;24;3;3;3;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;9;9;9;9;9;9;9;9;5;5;5;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1863;Roundwood, non-coniferous;5516;Production;m3;2700;2704;2708;2712;2716;2719;2723;2727;2731;2735;2724;2699;2694;2522;2570;2591;2579;2568;2459;2474;2403;2413;2439;2466;2512;2523;2534;2545;2578;2689;2699;2909;2680;2774;2784;2806;2848;2862;2883;3078;3102;3126;3150;3174;3199;3222;3245;3269;3293;3317;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1864;Wood fuel;5516;Production;m3;2700;2704;2708;2712;2716;2719;2723;2727;2731;2735;2724;2699;2694;2522;2570;2591;2579;2568;2459;2474;2403;2413;2439;2466;2512;2523;2534;2545;2578;2689;2699;2909;2680;2774;2784;2806;2848;2862;2883;3078;3102;3126;3150;3174;3199;3222;3245;3269;3293;3317;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;200;200;200;200;200;300;300;300;300;300;300;300;300;300;300;300;200;200;200;240;174;174;174;174;174;174;174;174;174;174;174;174;174;24;31;31;46;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;54;45;45;45;45;82;82;83;84;85;86;86;86;86;86;86;60;70;70;20;11;11;11;11;11;11;11;11;11;11;11;11;11;6;141;141;5;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1628;Wood fuel, non-coniferous;5516;Production;m3;2700;2704;2708;2712;2716;2719;2723;2727;2731;2735;2724;2699;2694;2522;2570;2591;2579;2568;2459;2474;2403;2413;2439;2466;2512;2523;2534;2545;2578;2689;2699;2909;2680;2774;2784;2806;2848;2862;2883;3078;3102;3126;3150;3174;3199;3222;3245;3269;3293;3317;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;200;200;200;200;200;300;300;300;300;300;300;300;300;300;300;300;200;200;200;240;174;174;174;174;174;174;174;174;174;174;174;174;174;24;31;31;46;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;54;45;45;45;45;82;82;83;84;85;86;86;86;86;86;86;60;70;70;20;11;11;11;11;11;11;11;11;11;11;11;11;11;6;141;141;5;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1865;Industrial roundwood;5616;Import quantity;m3;;;;600;500;300;500;800;1700;1900;1900;1900;1900;1300;2300;2300;2300;2300;2300;2300;1100;100;100;;;;;;;1199;597;640;1740;3659;723;1200;310;1312;301;114;114;517;468;1448;1448;1075;3115;5783;695;334;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1865;Industrial roundwood;5622;Import value;1000 USD;;;;24;51;15;30;48;106;151;151;151;151;232;328;328;328;328;328;328;50;3;3;;;;;;;126;53;58;164;390;91;247;105;130;89;41;41;79;62;97;97;151;1225;4419;355;246;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;24;24;24;24;24;24;24;24;3;3;3;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;9;9;9;9;9;9;9;9;5;5;5;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;506;547;35;549;2168;452;1000;74;129;41;32;32;435;416;576;576;942;2900;248;248;1;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;43;4;43;260;54;226;14;13;12;7;7;45;25;35;35;57;1010;31;31;0;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;506;547;35;549;2168;452;1000;74;129;41;32;32;435;416;576;576;942;2900;248;248;1;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;43;4;43;260;54;226;14;13;12;7;7;45;25;35;35;57;1010;31;31;0;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);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;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;693;50;605;1191;1491;271;200;236;1183;260;82;82;82;52;872;872;133;215;5535;447;333;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;10;54;121;130;37;21;91;117;77;34;34;34;37;62;62;94;215;4388;324;246;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;24;24;24;24;24;24;3;3;3;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;9;9;9;5;5;5;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;35;3;3;3;3;3;11;43;43;5;70;2639;15;28;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;8;2;2;2;2;2;4;7;7;39;16;1786;34;13;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;693;50;605;1191;1491;271;200;201;1180;257;79;79;79;41;829;829;128;145;2896;432;305;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;10;54;121;130;37;21;83;115;75;32;32;32;33;55;55;55;199;2602;290;233;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;24;24;24;24;24;24;3;3;3;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;9;9;9;5;5;5;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1868;Sawlogs and veneer logs;5616;Import quantity;m3;;;;600;500;300;500;800;1700;1900;1900;1900;1900;1300;2300;2300;2300;2300;2300;2300;1100;100;100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1868;Sawlogs and veneer logs;5622;Import value;1000 USD;;;;24;51;15;30;48;106;151;151;151;151;232;328;328;328;328;328;328;50;3;3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;;;;600;500;300;500;800;1700;1900;1900;1900;1900;1300;2300;2300;2300;2300;2300;2300;1100;100;100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;;;;24;51;15;30;48;106;151;151;151;151;232;328;328;328;328;328;328;50;3;3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1630;Wood charcoal;5510;Production;t;209;209;209;208;208;208;208;207;207;207;204;202;200;203;208;209;208;205;204;204;198;197;198;201;204;206;207;208;210;211;212;212;212;62;189;192;28;15;16;232;235;238;241;244;247;251;254;257;261;264;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;236;231;156;30;30;198;213;214;287;287;1;347;347;347;210;36;525;404;288;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;66;33;27;27;57;35;59;81;81;1;206;206;206;143;24;239;157;102;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;452;172;101;101;101;63;177;177;13;54;210;48;20;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;3;11;11;11;10;9;9;3;5;196;11;10;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;35;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;7;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109;82;221;221;221;221;221;21;28;28;28;28;28;28;1;50;155;18;18;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;4;11;11;11;11;11;0;3;3;3;3;3;3;0;4;94;5;5;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;330;258;258;127;10;231;151;73;73;73;35;149;149;12;4;55;30;2;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;12;8;8;4;1;14;3;8;8;8;7;6;6;3;1;102;6;5;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;35;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;7;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1872;Sawnwood;5616;Import quantity;m3;;;;12700;11500;9400;10600;10700;13600;12200;12200;12200;12200;16600;16900;16900;16900;16900;27700;26900;20000;24500;24000;23500;20100;20200;29400;25200;38600;28500;7700;42923;35453;39156;44807;44900;32182;27607;34776;31575;31575;12234;12249;22165;22165;20309;20378;27012;22538;14110;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1872;Sawnwood;5622;Import value;1000 USD;;;;679;689;623;709;783;987;945;945;945;945;2227;1707;1707;1707;1707;2900;2897;2163;2560;2562;2600;4546;4675;6085;5248;9001;7099;3091;7681;7389;9667;9830;10934;9389;7959;8251;6957;6957;3187;3444;4220;4220;6924;9425;13361;10629;4273;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33;0;61;42;44;44;147;146;146;146;144;144;144;144;34;34;16;18;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;0;17;40;41;41;9;10;10;10;10;10;10;10;41;41;46;17;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;11000;8300;7300;8400;8200;11300;8900;8900;8900;8900;10500;6700;6700;6700;6700;10000;10000;3800;9000;9000;9000;19000;18100;23300;23300;32200;26600;6700;39424;33092;36052;42213;43500;30039;25397;30576;29640;29640;12017;10000;19397;19397;19327;18666;18666;21349;12534;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;562;490;423;467;535;716;590;590;590;590;1424;682;682;682;682;1038;1038;300;700;700;700;4275;3895;4539;4539;7373;6430;2800;6182;6362;8108;8135;9832;8185;6719;6518;5883;5883;3059;2457;3375;3375;4177;7845;7845;9281;2968;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;4;3;3;3;1;1;1;1;24;24;6;0;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;1;1;1;1;1;1;1;22;22;27;0;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;1700;3200;2100;2200;2500;2300;3300;3300;3300;3300;6100;10200;10200;10200;10200;17700;16900;16200;15500;15000;14500;1100;2100;6100;1900;6400;1900;1000;3499;2361;3104;2594;1400;2143;2210;4200;1935;1935;217;2249;2768;2768;982;1712;8346;1189;1576;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;117;199;200;242;248;271;355;355;355;355;803;1025;1025;1025;1025;1862;1859;1863;1860;1862;1900;271;780;1546;709;1628;669;291;1499;1027;1559;1695;1102;1204;1240;1733;1074;1074;128;987;845;845;2747;1580;5516;1348;1305;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33;0;61;42;42;42;143;143;143;143;143;143;143;143;10;10;10;18;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;0;17;40;40;40;9;9;9;9;9;9;9;9;19;19;19;17;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;4;8;80;51;176;57;428;149;149;149;149;56;56;10;104;38;38;30;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;10;17;72;32;77;39;225;88;88;88;88;44;44;21;252;99;99;47;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;61;61;61;61;61;61;61;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;133;133;133;133;133;133;133;0;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1873;Wood-based panels;5616;Import quantity;m3;;;;1500;1700;3469;4380;4717;4080;5717;5717;5717;5717;9411;6280;6280;6280;6280;9100;8900;8700;8500;8400;8500;9300;6200;8100;19200;20100;10800;8100;17156;17791;17213;17381;18000;12957;15727;14831;14369;14369;1136;6979;10036;10036;4932;4641;10546;7298;7381;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1873;Wood-based panels;5622;Import value;1000 USD;;;;223;258;446;512;655;606;900;900;900;900;2257;1391;1391;1391;1391;2629;2632;2642;2652;2690;2800;3821;2265;3192;7795;4913;4299;2775;5059;6358;6059;6812;6395;4802;5868;5205;4902;4902;1411;3522;2873;2873;3664;5276;9767;5528;3492;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;155;155;211;205;205;154;158;394;394;394;394;246;258;241;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;14;14;19;41;41;14;17;53;53;53;53;117;121;89;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1640;Plywood and LVL;5616;Import quantity;m3;;;;1300;1500;2100;2800;2400;2500;3400;3400;3400;3400;7200;4700;4700;4700;4700;7000;6900;6800;6700;6600;6500;7200;5800;7900;18000;19100;9000;7300;15919;16727;16049;16700;16700;11868;13852;11409;13011;13011;86;5952;6215;6215;3619;3640;8416;6196;6201;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1640;Plywood and LVL;5622;Import value;1000 USD;;;;206;237;278;332;410;405;630;630;630;630;1475;816;816;816;816;1757;1760;1770;1780;1790;1800;2721;2102;2817;7369;4634;3285;2234;4615;6040;5700;6642;6113;4514;5443;4773;4589;4589;1183;3119;2206;2206;3168;4567;8220;4817;2586;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;3;3;59;52;52;1;5;3;3;3;3;3;3;3;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;2;2;7;29;29;2;5;1;1;1;1;1;1;15;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;178;454;426;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;102;116;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;367;100;11;699;1000;16;16;17;207;905;905;66;47;491;107;367;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;37;9;112;230;6;6;10;94;148;148;54;52;418;141;354;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;238;238;238;238;83;83;59;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;40;40;40;99;99;48;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116;0;15;39;12;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;0;16;32;15;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1874;Fibreboard;5616;Import quantity;m3;;;;200;200;1369;1580;2317;1580;2317;2317;2317;2317;2211;1580;1580;1580;1580;2100;2000;1900;1800;1800;2000;2100;400;200;1200;1000;1800;800;1059;610;738;314;1200;1078;1176;2422;1342;1342;1033;820;2916;2916;1131;954;1624;956;801;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1874;Fibreboard;5622;Import value;1000 USD;;;;17;21;168;180;245;201;270;270;270;270;782;575;575;575;575;872;872;872;872;900;1000;1100;163;375;426;279;1014;541;366;216;243;85;245;279;313;202;307;307;218;309;519;519;399;657;1113;538;537;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;152;152;152;153;153;153;153;153;153;153;153;160;172;179;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;12;12;12;12;12;12;12;12;12;12;12;17;21;26;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;390;237;941;275;275;17;106;151;151;238;123;637;240;54;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;127;88;41;73;73;8;43;70;70;137;87;563;117;23;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;8;20;20;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;5;9;9;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;400;246;263;142;835;835;835;528;2227;2227;810;786;491;509;697;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;97;76;100;53;186;186;186;172;381;381;204;515;362;305;443;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;505;240;382;219;800;442;676;1339;232;232;181;186;538;538;83;45;496;207;50;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;218;97;134;32;148;76;125;108;48;48;24;94;68;68;58;55;188;116;71;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;152;152;152;152;152;152;152;152;152;152;152;152;152;152;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;12;12;12;12;12;12;12;12;12;12;12;12;12;12;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;200;200;1369;1580;2317;1580;2317;2317;2317;2317;2211;1580;1580;1580;1580;2100;2000;1900;1800;1800;2000;2100;400;200;1200;1000;1800;800;554;370;356;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;17;21;168;180;245;201;270;270;270;270;782;575;575;575;575;872;872;872;872;900;1000;1100;163;375;426;279;1014;541;148;119;109;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;275;467;1304;5506;2947;8585;1853;807;444;444;378;454;690;641;94;252;39;100;143;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;137;228;800;1041;2110;112;92;62;62;96;72;110;106;48;69;30;321;391;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1182;186;186;1115;1010;493;1729;2287;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;142;18;18;146;236;79;358;529;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;2;66;1847;2783;12;46;36;36;36;36;82;33;32;21;17;27;27;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1;40;877;1347;10;13;15;15;15;15;42;38;35;28;22;40;40;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;34;10;68;1849;2785;14;48;38;38;38;38;58;9;8;36;32;42;42;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;21;5;47;884;1354;17;20;22;22;22;22;28;24;21;47;41;59;59;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;1800;1800;2;40;32;32;32;32;52;2;1;5;1;1;1;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;840;840;5;10;11;11;11;11;17;8;5;13;7;7;7;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;2;47;47;983;10;6;4;4;4;4;4;5;5;5;5;15;15;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1;37;37;507;5;3;4;4;4;4;4;9;9;9;9;27;27;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;45;45;981;0;0;0;0;0;0;0;1;1;1;1;1;1;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;36;36;503;0;0;0;0;0;0;0;5;5;5;5;5;5;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;2;2;2;2;10;6;4;4;4;4;4;4;4;4;4;14;14;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1;1;1;4;5;3;4;4;4;4;4;4;4;4;4;22;22;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30;8;2;2;2;2;2;2;2;2;2;2;2;2;26;26;26;26;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;4;7;7;7;7;7;7;7;7;7;7;7;7;25;25;25;25;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;26;11;11;11;11;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;21;6;6;6;6;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;275;463;1302;5440;1100;5802;1841;761;408;408;342;418;608;608;62;231;22;73;116;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;135;227;760;164;763;102;79;47;47;81;57;68;68;13;41;8;281;351;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1182;186;186;1115;1010;493;1729;2287;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;142;18;18;146;236;79;358;529;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1876;Paper and paperboard;5610;Import quantity;t;;;;1900;1800;1800;2100;4500;2300;2500;2500;2500;2500;6100;3100;3100;3400;3500;4900;4200;6300;6100;6100;6100;5700;4700;6800;14300;7700;8800;5600;8949;9591;5993;3062;4100;5187;7528;6466;5245;5245;4802;8345;14401;14401;5139;11624;7903;7438;7808;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1876;Paper and paperboard;5622;Import value;1000 USD;;;;401;395;474;528;666;702;786;786;786;786;4784;2895;2895;3069;3159;4103;3853;5820;5600;5480;5900;5150;3060;4866;10338;6894;10223;7714;7172;7868;4601;3384;3403;5063;6042;5516;4817;4817;3501;7895;9445;9445;5365;10669;11083;7683;7800;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110;1;3;10;100;100;556;280;2503;2503;7106;15531;20025;20025;2488;664;1232;1053;1394;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;220;1;2;11;111;111;333;220;2142;2142;5909;13157;14918;14918;2937;731;616;750;1638;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);2042;Graphic papers;5610;Import quantity;t;;;;400;400;800;1000;1100;1200;1200;1200;1200;1200;2600;1100;1100;1400;1500;2400;1700;2900;2900;3100;3300;2900;2300;2300;4000;3000;2600;2300;3381;4714;3665;1969;3100;4187;3849;3849;2773;2773;4191;5386;9573;9573;3610;9587;5314;4589;4934;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);2042;Graphic papers;5622;Import value;1000 USD;;;;40;41;168;188;233;258;299;299;299;299;1684;737;737;869;909;1945;1695;2860;2800;2780;2900;2150;1263;1596;2816;2059;2561;2523;2289;3283;2669;1907;2175;3835;3394;2924;2102;2102;2838;3783;5665;5665;3025;7601;6723;3799;4429;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;226;2304;2304;6907;15349;18515;18515;2338;572;1089;728;1124;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;170;2011;2011;5783;12907;13931;13931;1647;605;452;137;1075;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1671;Newsprint;5610;Import quantity;t;;;;400;400;400;600;700;700;600;600;600;600;800;500;500;800;900;1300;600;1000;1200;1500;1700;2100;1700;1700;2800;1900;1200;1300;2154;2539;1964;1728;2800;3295;3060;3206;2153;2153;3858;3324;6761;6761;1451;7205;2726;2512;2325;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1671;Newsprint;5622;Import value;1000 USD;;;;40;41;39;66;78;83;77;77;77;77;246;228;228;360;400;600;350;560;700;880;1000;1200;604;735;1388;803;846;879;1037;1222;1037;866;1425;2089;2234;2149;1444;1444;2475;2005;3448;3448;1066;5227;2529;1596;1473;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;714;714;714;714;19;601;601;111;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;296;296;296;296;28;13;13;63;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1674;Printing and writing papers;5610;Import quantity;t;;;;;;400;400;400;500;600;600;600;600;1800;600;600;600;600;1100;1100;1900;1700;1600;1600;800;600;600;1200;1100;1400;1000;1227;2175;1701;241;300;892;789;643;620;620;333;2062;2812;2812;2159;2382;2588;2077;2609;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;129;122;155;175;222;222;222;222;1438;509;509;509;509;1345;1345;2300;2100;1900;1900;950;659;861;1428;1256;1715;1644;1252;2061;1632;1041;750;1746;1160;775;658;658;363;1778;2217;2217;1959;2374;4194;2203;2956;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;226;2289;2289;6892;14635;17801;17801;1624;553;488;127;1013;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;170;2003;2003;5775;12611;13635;13635;1351;577;439;124;1012;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;39;57;57;253;194;330;330;384;229;769;274;343;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;50;68;68;240;188;260;260;352;249;1239;305;388;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;19;68;68;68;681;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;20;62;62;62;659;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;391;319;210;210;70;1769;2072;2072;1663;1730;1798;1629;1787;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;551;368;224;224;93;1435;1634;1634;1451;1726;2823;1652;2041;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;2088;2088;6695;14556;17756;17756;1569;152;130;24;43;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;1803;1803;5652;12539;13601;13601;1289;169;35;15;67;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;350;285;353;353;10;99;410;410;112;423;21;174;479;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;534;357;366;366;30;155;323;323;156;399;132;246;527;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;176;200;200;196;78;44;44;36;333;290;35;289;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;139;199;199;122;71;33;33;42;346;342;47;286;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1675;Other paper and paperboard;5610;Import quantity;t;;;;1500;1400;1000;1100;3400;1100;1300;1300;1300;1300;3500;2000;2000;2000;2000;2500;2500;3400;3200;3000;2800;2800;2400;4500;10300;4700;6200;3300;5568;4877;2328;1093;1000;1000;3679;2617;2472;2472;611;2959;4828;4828;1529;2037;2589;2849;2874;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1675;Other paper and paperboard;5622;Import value;1000 USD;;;;361;354;306;340;433;444;487;487;487;487;3100;2158;2158;2200;2250;2158;2158;2960;2800;2700;3000;3000;1797;3270;7522;4835;7662;5191;4883;4585;1932;1477;1228;1228;2648;2592;2715;2715;663;4112;3780;3780;2340;3068;4360;3884;3371;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110;1;3;10;100;100;556;54;199;199;199;182;1510;1510;150;92;143;325;270;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;220;1;2;11;111;111;333;50;131;131;126;250;987;987;1290;126;164;613;563;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;1600;1200;1200;1200;1200;1500;1500;2000;1900;1800;1700;1700;400;500;300;700;200;100;568;877;877;415;400;400;400;1748;1078;1078;301;1181;1215;1215;672;1327;1843;1856;985;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;1458;1256;1256;1280;1300;1294;1294;1760;1700;1600;1800;1800;197;170;122;135;128;84;483;585;585;443;368;368;368;1617;1033;1033;459;1173;1337;1337;790;1871;2709;2609;1522;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;3;3;23;23;23;23;23;23;41;211;211;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;8;8;15;15;15;15;15;15;51;468;468;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;751;673;673;305;1611;2998;2998;783;595;401;891;1607;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;690;578;578;179;2410;1859;1859;708;623;1136;785;1251;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;186;186;166;158;1333;1333;111;66;101;109;54;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;111;111;99;164;803;803;604;88;103;114;64;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;139;168;168;50;294;156;156;161;444;179;530;1127;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98;177;177;27;170;97;97;197;277;216;329;625;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22;2;13;11;11;4;4;45;45;45;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;3;42;7;7;3;3;38;38;38;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;166;209;209;209;141;40;40;27;49;46;181;111;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105;105;105;105;128;25;25;66;66;143;161;122;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;1277;1277;62;4;4;4;4;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;21;21;771;771;576;15;15;1;1;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;435;286;286;43;420;372;372;594;101;148;151;340;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;475;284;284;42;422;231;231;443;278;614;250;459;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;31;31;31;99;7;7;7;20;14;22;4;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;21;21;21;80;4;4;4;49;29;54;23;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;10;10;3;756;2430;2430;1;1;28;29;29;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;5;1690;1506;1506;2;2;163;45;45;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125;125;125;38;38;38;38;38;38;38;1;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;54;54;21;21;21;21;21;21;21;2;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;1900;800;800;800;800;1000;1000;1400;1300;1200;1100;1100;2000;4000;10000;4000;6000;3200;5000;4000;1451;678;600;600;3279;118;721;721;5;167;615;615;74;115;345;102;282;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;1642;902;902;920;950;864;864;1200;1100;1100;1200;1200;1600;3100;7400;4700;7534;5107;4400;4000;1347;1034;860;860;2280;285;1104;1104;25;529;584;584;842;574;515;490;598;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110;1;3;10;100;100;556;26;10;10;10;1;154;154;16;3;1;5;5;;;;;;;;;;;;; -151;'530;Netherlands Antilles (former);1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;220;1;2;11;111;111;333;18;12;12;12;71;169;169;671;23;10;31;31;;;;;;;;;;;;; -153;'540;New Caledonia;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64293;57768;67522;69817;76184;71303;69118 -153;'540;New Caledonia;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;761;809;546;654;3800;362;655 -153;'540;New Caledonia;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;300;261;228;270;270;393;410;581;680;680;680;680;680;680;3595;3364;3862;4439;5566;9620;9625;10296;10296;10296;8186;7116;7116;10558;9807;9723;10337;8579;8181;8092;10836;11107;6617;11172;11595;9668;11706;6731;20844;23676;23676;23974;25329;34256;21327;34932;36600;30563;26232;30110;27168;18872;19072;17375;26941;24900;28063;18614;20529 -153;'540;New Caledonia;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;23;11;39;22;143;136;3;21;21;21;301;5662;5662;5688;5572;5745;4079;2910;3376;1063;1072;884;424;498;235;211;298;529;3643;134;460 -153;'540;New Caledonia;1861;Roundwood;5516;Production;m3;16041;17071;18102;18132;18163;20194;17225;19256;19287;19319;25466;25507;25858;27934;19807;18028;22025;19489;19864;19741;20364;20476;20697;20826;20901;20966;21129;21194;16827;16989;15491;16059;13684;14652;14774;14903;14947;22705;22864;23026;23154;23284;25806;25941;26077;26185;26295;26406;26518;26518;26762;26894;27027;27162;27300;27384;27469;27555;27642;27730;27822;27916;28011 -153;'540;New Caledonia;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;400;1100;600;600;2400;2400;2200;1100;1100;1100;1100;1100;1100;200;400;148;1142;743;894;600;601;400;9;927;600;711;711;841;2412;3754;3754;4065;808;1482;1464;1284;1660;1056;1665;3986;167;24;521;702;392;725;762;2942;493 -153;'540;New Caledonia;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;30;132;135;107;750;750;700;350;350;350;350;350;350;42;98;14;182;87;170;81;68;72;1;110;78;82;82;161;215;249;249;313;138;298;278;524;225;215;281;455;61;30;215;315;180;282;270;485;354 -153;'540;New Caledonia;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;51;3403;3403;722;721;720;712;20;30;30;30;12;648;859;105;81;0;51;212;20;0 -153;'540;New Caledonia;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;167;231;231;218;252;364;264;124;183;183;183;183;181;247;8;13;0;3;3214;2;0 -153;'540;New Caledonia;1862;Roundwood, coniferous;5516;Production;m3;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;3000;3000;3000;5000;1000;1000;2000;3000;1600;1600;1600;1600;1600;1600;1600;1600;1600;1600;0;0;0;0;0;0;0;0;0;4530;4530;4530;4530;4530;9750;9750;9750;9750;9750;9750;9750;9750;9750;9750;9750;9750;9750;9750;9750;9750;9750;9750;9750;9750;9750 -153;'540;New Caledonia;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;520;685;392;692;742;928;493 -153;'540;New Caledonia;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;210;298;180;252;254;455;354 -153;'540;New Caledonia;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -153;'540;New Caledonia;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -153;'540;New Caledonia;1863;Roundwood, non-coniferous;5516;Production;m3;14041;15071;16102;16132;16163;18194;15225;17256;17287;17319;22466;22507;22858;22934;18807;17028;20025;16489;18264;18141;18764;18876;19097;19226;19301;19366;19529;19594;16827;16989;15491;16059;13684;14652;14774;14903;14947;18175;18334;18496;18624;18754;16056;16191;16327;16435;16545;16656;16768;16768;17012;17144;17277;17412;17550;17634;17719;17805;17892;17980;18072;18166;18261 -153;'540;New Caledonia;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;17;0;33;20;2014;0 -153;'540;New Caledonia;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;17;0;30;16;30;0 -153;'540;New Caledonia;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105;81;0;51;212;20;0 -153;'540;New Caledonia;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;13;0;3;3214;2;0 -153;'540;New Caledonia;1864;Wood fuel;5516;Production;m3;7041;7071;7102;7132;7163;7194;7225;7256;7287;7319;7466;7507;7858;7934;7807;8028;8025;8089;7764;7641;8264;8376;8597;8726;8801;8866;9029;9094;9257;9419;9491;9659;9684;9852;9974;10103;10147;10395;10554;10716;10844;10974;11106;11241;11377;11485;11595;11706;11818;11818;12062;12194;12327;12462;12600;12684;12769;12855;12942;13030;13122;13216;13311 -153;'540;New Caledonia;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111;111;111;1;1;1;1;1;1;1;1;1;1;1;1;1;1;;;;;;; -153;'540;New Caledonia;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;1;1;1;1;1;1;1;1;2;2;2;2;2;2;;;;;;; -153;'540;New Caledonia;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -153;'540;New Caledonia;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -153;'540;New Caledonia;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -153;'540;New Caledonia;1628;Wood fuel, non-coniferous;5516;Production;m3;7041;7071;7102;7132;7163;7194;7225;7256;7287;7319;7466;7507;7858;7934;7807;8028;8025;8089;7764;7641;8264;8376;8597;8726;8801;8866;9029;9094;9257;9419;9491;9659;9684;9852;9974;10103;10147;10395;10554;10716;10844;10974;11106;11241;11377;11485;11595;11706;11818;11818;12062;12194;12327;12462;12600;12684;12769;12855;12942;13030;13122;13216;13311 -153;'540;New Caledonia;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -153;'540;New Caledonia;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -153;'540;New Caledonia;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111;111;111;1;1;1;1;1;1;1;1;1;1;1;1;1;1;;;;;;; -153;'540;New Caledonia;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;1;1;1;1;1;1;1;1;2;2;2;2;2;2;;;;;;; -153;'540;New Caledonia;1865;Industrial roundwood;5516;Production;m3;9000;10000;11000;11000;11000;13000;10000;12000;12000;12000;18000;18000;18000;20000;12000;10000;14000;11400;12100;12100;12100;12100;12100;12100;12100;12100;12100;12100;7570;7570;6000;6400;4000;4800;4800;4800;4800;12310;12310;12310;12310;12310;14700;14700;14700;14700;14700;14700;14700;14700;14700;14700;14700;14700;14700;14700;14700;14700;14700;14700;14700;14700;14700 -153;'540;New Caledonia;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;400;1100;600;600;2400;2400;2200;1100;1100;1100;1100;1100;1100;200;400;148;1142;743;894;600;601;400;9;927;600;600;600;730;2411;3753;3753;4064;807;1481;1463;1283;1659;1055;1664;3985;166;23;521;702;392;725;762;2942;493 -153;'540;New Caledonia;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;30;132;135;107;750;750;700;350;350;350;350;350;350;42;98;14;182;87;170;81;68;72;1;110;78;78;78;157;214;248;248;312;137;297;277;523;223;213;279;453;59;28;215;315;180;282;270;485;354 -153;'540;New Caledonia;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;51;3403;3403;722;721;720;712;20;30;30;30;12;648;859;105;81;0;51;212;20;0 -153;'540;New Caledonia;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;167;231;231;218;252;364;264;124;183;183;183;183;181;247;8;13;0;3;3214;2;0 -153;'540;New Caledonia;1866;Industrial roundwood, coniferous;5516;Production;m3;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;3000;3000;3000;5000;1000;1000;2000;3000;1600;1600;1600;1600;1600;1600;1600;1600;1600;1600;0;0;0;0;0;0;0;0;0;4530;4530;4530;4530;4530;9750;9750;9750;9750;9750;9750;9750;9750;9750;9750;9750;9750;9750;9750;9750;9750;9750;9750;9750;9750;9750 -153;'540;New Caledonia;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;148;1131;720;600;600;601;400;9;901;600;600;600;600;1999;2766;2766;3942;710;1095;1327;975;1585;982;1526;2576;0;0;520;685;392;692;742;928;493 -153;'540;New Caledonia;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;181;77;81;81;68;72;1;97;78;78;78;78;122;169;169;240;72;136;169;111;167;130;160;257;0;0;210;298;180;252;254;455;354 -153;'540;New Caledonia;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;674;674;674;674;674;674;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -153;'540;New Caledonia;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;36;36;36;36;36;36;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -153;'540;New Caledonia;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;148;1131;720;600;600;601;400;9;901;600;600;600;600;1999;2766;2766;3942;710;1095;1327;975;1585;982;1526;2576;0;0;520;685;392;692;742;928;493 -153;'540;New Caledonia;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;181;77;81;81;68;72;1;97;78;78;78;78;122;169;169;240;72;136;169;111;167;130;160;257;0;0;210;298;180;252;254;455;354 -153;'540;New Caledonia;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;674;674;674;674;674;674;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -153;'540;New Caledonia;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;36;36;36;36;36;36;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -153;'540;New Caledonia;1867;Industrial roundwood, non-coniferous;5516;Production;m3;7000;8000;9000;9000;9000;11000;8000;10000;10000;10000;15000;15000;15000;15000;11000;9000;12000;8400;10500;10500;10500;10500;10500;10500;10500;10500;10500;10500;7570;7570;6000;6400;4000;4800;4800;4800;4800;7780;7780;7780;7780;7780;4950;4950;4950;4950;4950;4950;4950;4950;4950;4950;4950;4950;4950;4950;4950;4950;4950;4950;4950;4950;4950 -153;'540;New Caledonia;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;23;294;0;0;0;0;26;0;0;0;130;412;987;987;122;97;386;136;308;74;73;138;1409;166;23;1;17;0;33;20;2014;0 -153;'540;New Caledonia;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;10;89;0;0;0;0;13;0;0;0;79;92;79;79;72;65;161;108;412;56;83;119;196;59;28;5;17;0;30;16;30;0 -153;'540;New Caledonia;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;2729;2729;48;47;46;38;20;30;30;30;12;648;859;105;81;0;51;212;20;0 -153;'540;New Caledonia;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;167;195;195;182;216;328;228;124;183;183;183;183;181;247;8;13;0;3;3214;2;0 -153;'540;New Caledonia;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;32;32;32;7;10;89;56;56;56;56;56;0;23;0;0;0;6;0;0;0 -153;'540;New Caledonia;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;16;9;14;66;39;39;39;39;39;0;28;0;0;0;11;0;0;0 -153;'540;New Caledonia;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3;3;3;3;3;648;859;105;81;0;51;212;0;0 -153;'540;New Caledonia;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;34;34;34;34;34;34;34;34;34;34;34;181;247;8;13;0;3;3214;0;0 -153;'540;New Caledonia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;23;294;0;0;0;0;26;0;0;0;130;380;955;955;90;90;376;47;252;18;17;82;1353;166;0;1;17;0;27;20;2014;0 -153;'540;New Caledonia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;10;89;0;0;0;0;13;0;0;0;79;76;63;63;56;56;147;42;373;17;44;80;157;59;0;5;17;0;19;16;30;0 -153;'540;New Caledonia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;2726;2726;45;44;43;35;17;27;27;27;9;0;0;0;0;0;0;0;20;0 -153;'540;New Caledonia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;133;161;161;148;182;294;194;90;149;149;149;149;0;0;0;0;0;0;0;2;0 -153;'540;New Caledonia;1868;Sawlogs and veneer logs;5516;Production;m3;8000;9000;10000;10000;10000;12000;9000;11000;11000;11000;17000;17000;17000;19000;11000;9000;13000;10400;11100;11100;11100;11100;11100;11100;11100;11100;11100;11100;6570;6570;5000;4400;2000;2800;2800;2800;2800;10310;10310;10310;10310;10310;12700;12700;12700;12700;12700;12700;12700;12700;12700;12700;12700;12700;12700;12700;12700;12700;12700;12700;12700;12700;12700 -153;'540;New Caledonia;1868;Sawlogs and veneer logs;5616;Import quantity;m3;;;;;;;;;;;;;;;400;1100;600;600;2400;2400;2200;1100;1100;1100;1100;1100;1100;200;400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -153;'540;New Caledonia;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;;;;;;;;;;;;;;;30;132;135;107;750;750;700;350;350;350;350;350;350;42;98;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -153;'540;New Caledonia;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;3000;3000;3000;5000;1000;1000;2000;3000;1600;1600;1600;1600;1600;1600;1600;1600;1600;1600;0;0;0;0;0;0;0;0;0;4530;4530;4530;4530;4530;9750;9750;9750;9750;9750;9750;9750;9750;9750;9750;9750;9750;9750;9750;9750;9750;9750;9750;9750;9750;9750 -153;'540;New Caledonia;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;400;1100;600;600;2400;2400;2200;1100;1100;1100;1100;1100;1100;200;400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -153;'540;New Caledonia;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;30;132;135;107;750;750;700;350;350;350;350;350;350;42;98;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -153;'540;New Caledonia;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;6000;7000;8000;8000;8000;10000;7000;9000;9000;9000;14000;14000;14000;14000;10000;8000;11000;7400;9500;9500;9500;9500;9500;9500;9500;9500;9500;9500;6570;6570;5000;4400;2000;2800;2800;2800;2800;5780;5780;5780;5780;5780;2950;2950;2950;2950;2950;2950;2950;2950;2950;2950;2950;2950;2950;2950;2950;2950;2950;2950;2950;2950;2950 -153;'540;New Caledonia;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;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;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 -153;'540;New Caledonia;1871;Other industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -153;'540;New Caledonia;1871;Other industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -153;'540;New Caledonia;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;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;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 -153;'540;New Caledonia;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -153;'540;New Caledonia;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -153;'540;New Caledonia;1630;Wood charcoal;5510;Production;t;232;232;233;233;234;234;235;236;236;237;241;240;250;251;240;250;254;260;246;242;277;286;297;313;316;322;330;337;344;352;359;243;367;375;384;390;389;384;438;449;459;469;480;491;502;512;523;533;544;544;565;576;587;598;610;620;629;640;650;660;670;681;691 -153;'540;New Caledonia;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;124;9;9;11;11;23;43;0;34;34;7;68;68;68;78;132;80;11;101;132;73;61;120;96;30;53;34;103;45;35;81;79 -153;'540;New Caledonia;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;7;7;9;9;7;16;0;21;21;4;95;95;95;102;116;102;14;101;155;43;108;152;133;25;34;20;121;54;57;80;113 -153;'540;New Caledonia;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1 -153;'540;New Caledonia;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1 -153;'540;New Caledonia;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;25;102;204;23;434;434;37;601;319;363;59;87;72;83;118;187;5;17;109;106;79;54;32;13 -153;'540;New Caledonia;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;2;3;11;7;18;18;10;41;161;155;42;50;93;46;105;185;9;18;17;28;199;56;11;23 -153;'540;New Caledonia;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;351;351;2;2;2;2;18;46;73;73;53;43;43;43;43;43;43;43;15;58 -153;'540;New Caledonia;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;14;14;7;7;7;7;94;198;312;312;143;2;2;2;2;2;2;2;14;81 -153;'540;New Caledonia;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;104;4;4;4;4;557;277;277;2;42;8;1;2;3;2;2;12;3;41;32;2;5 -153;'540;New Caledonia;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;8;1;1;1;1;26;129;129;3;16;3;0;8;4;3;4;9;3;185;23;3;18 -153;'540;New Caledonia;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;13;1;0;23;100;100;19;430;430;33;44;42;86;57;45;64;82;116;184;3;15;97;103;38;22;30;8 -153;'540;New Caledonia;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;1;0;0;2;3;3;6;17;17;9;15;32;26;39;34;90;46;97;181;6;14;8;25;14;33;8;5 -153;'540;New Caledonia;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;351;351;2;2;2;2;18;46;73;73;53;43;43;43;43;43;43;43;15;58 -153;'540;New Caledonia;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;14;14;7;7;7;7;94;198;312;312;143;2;2;2;2;2;2;2;14;81 -153;'540;New Caledonia;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;56;61;20;347 -153;'540;New Caledonia;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;54;50;25;135 -153;'540;New Caledonia;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;26;14;6;256 -153;'540;New Caledonia;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;35;22;8;75 -153;'540;New Caledonia;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;30;47;14;91 -153;'540;New Caledonia;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;19;28;17;60 -153;'540;New Caledonia;1872;Sawnwood;5516;Production;m3;5000;6600;7400;5900;5900;7100;8100;7700;6500;6500;7000;7000;7000;10000;6000;5000;6000;3000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4700;5400;5400;2500;2200;2000;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300 -153;'540;New Caledonia;1872;Sawnwood;5616;Import quantity;m3;5400;4300;3800;5700;5700;5700;6300;12500;14600;14600;14600;14600;14600;14600;9200;11400;14700;10300;10300;30000;28200;31100;31100;31100;32800;12900;12900;17500;20300;20300;21000;21069;18587;18587;19103;16100;2594;11624;15300;20475;9400;2768;13382;30062;30062;20487;18169;22262;24507;33591;30945;29330;30565;28640;27859;15718;14053;12165;13032;11350;10641;13346;8221 -153;'540;New Caledonia;1872;Sawnwood;5622;Import value;1000 USD;300;261;228;270;270;393;410;581;680;680;680;680;680;680;1195;1319;1849;1955;1955;6009;5079;5600;5600;5600;5900;2277;2277;3535;3289;3289;4779;3619;3657;3657;5956;4024;1151;2331;2503;3351;3490;829;5940;5910;5910;7060;6690;9086;8127;10656;9847;10403;10373;9679;10176;6528;6605;5763;5890;4998;5345;5092;3857 -153;'540;New Caledonia;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;32;0;39;24;31;31;0;26;26;45;70;749;749;1485;1485;1485;1485;1485;1116;749;0;45;6;0;0;6;0;528;164;31;30 -153;'540;New Caledonia;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;0;27;10;32;33;0;10;10;10;25;227;227;405;405;405;405;23;198;4;0;10;2;0;0;2;0;225;57;7;8 -153;'540;New Caledonia;1632;Sawnwood, coniferous;5516;Production;m3;1200;1700;1600;1300;1300;1500;2400;1700;1200;1200;1500;1500;1500;3000;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;0;0;0;0 -153;'540;New Caledonia;1632;Sawnwood, coniferous;5616;Import quantity;m3;5400;4300;3800;5700;5700;5700;6300;12500;14600;14600;14600;14600;14600;14600;9200;11400;14700;10300;10300;30000;28200;31100;31100;31100;32800;12900;12900;17500;20300;20300;21000;19453;18437;18437;18580;16000;807;10977;13800;19990;7400;1690;9977;24884;24884;16728;15309;19266;23345;30075;28694;26993;27428;26380;25665;15268;13040;11501;12494;10908;10481;13215;8130 -153;'540;New Caledonia;1632;Sawnwood, coniferous;5622;Import value;1000 USD;300;261;228;270;270;393;410;581;680;680;680;680;680;680;1195;1319;1849;1955;1955;6009;5079;5600;5600;5600;5900;2277;2277;3535;3289;3289;4779;3103;3475;3475;5402;3921;537;1971;2263;3045;2667;428;4198;4330;4330;5093;4316;5926;7082;7933;8031;8327;7721;7860;8298;6098;5763;5111;5271;4599;4894;4919;3738 -153;'540;New Caledonia;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;736;736;736;736;736;367;0;0;0;6;0;0;0;0;446;164;29;29 -153;'540;New Caledonia;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;178;178;178;178;13;194;0;0;0;2;0;0;0;0;201;57;7;8 -153;'540;New Caledonia;1633;Sawnwood, non-coniferous;5516;Production;m3;3800;4900;5800;4600;4600;5600;5700;6000;5300;5300;5500;5500;5500;7000;5000;4000;5000;3000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4700;5400;5400;2500;2200;2000;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300 -153;'540;New Caledonia;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1616;150;150;523;100;1787;647;1500;485;2000;1078;3405;5178;5178;3759;2860;2996;1162;3516;2251;2337;3137;2260;2194;450;1013;664;538;442;160;131;91 -153;'540;New Caledonia;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;516;182;182;554;103;614;360;240;306;823;401;1742;1580;1580;1967;2374;3160;1045;2723;1816;2076;2652;1819;1878;430;842;652;619;399;451;173;119 -153;'540;New Caledonia;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;32;0;39;24;31;31;0;26;26;45;70;749;749;749;749;749;749;749;749;749;0;45;0;0;0;6;0;82;0;2;1 -153;'540;New Caledonia;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;0;27;10;32;33;0;10;10;10;25;227;227;227;227;227;227;10;4;4;0;10;0;0;0;2;0;24;0;0;0 -153;'540;New Caledonia;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -153;'540;New Caledonia;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;44;44;25;25;25;67;100;33;33;38;2;75;75;26;32;50;27;13;122;79;29;6;10;1;1;8;5;0;74;16;41 -153;'540;New Caledonia;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;44;44;15;15;15;66;52;12;12;23;19;59;59;41;103;152;55;42;139;85;101;8;76;8;4;9;8;3;252;160;108 -153;'540;New Caledonia;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;84;84;84;84;84;84;84;84;84;84;0;0;0;0;0;0;0;0;0 -153;'540;New Caledonia;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;67;67;67;67;67;2;0;0;0;0;2;0;0;0;0;0;0;0;0 -153;'540;New Caledonia;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -153;'540;New Caledonia;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;2900;2300;2000;2300;3100;3100;3100;3100;3100;3100;3100;2900;2900;4200;7500;7500;4400;6425;2277;2277;4623;5100;3968;4133;6600;5177;6400;1648;7283;21845;21845;8569;5325;5808;5715;10782;12035;12017;8204;6550;8184;5787;6020;4638;26085;59451;39700;9975;23233 -153;'540;New Caledonia;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;1306;977;936;1279;1646;1646;1646;1646;1646;1646;1646;1565;1565;3845;3504;3504;2724;3314;924;924;2411;2622;1807;1912;2746;1869;2453;1401;4821;5417;5417;5479;5203;7462;4834;7808;9239;8007;4972;6735;7874;2830;4225;3595;6397;5575;6398;4067;5137 -153;'540;New Caledonia;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;0;0;0;0;1;2521;2521;2521;2117;2068;2086;2086;2086;1450;1449;1449;164;147;110;110;110;110;110;137;114 -153;'540;New Caledonia;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;0;0;0;0;5;697;697;697;646;604;615;618;695;366;351;344;78;56;32;32;32;32;32;42;25 -153;'540;New Caledonia;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -153;'540;New Caledonia;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;1400;1200;1400;1500;2500;2500;2500;2500;2500;2500;2500;2300;2300;3600;6900;6900;4100;4865;482;482;2331;2400;2714;2144;3500;2618;3600;114;3428;7055;7055;3867;2788;2776;1618;7091;8224;9396;6616;4265;5532;4331;3847;2568;5196;5803;5320;2556;2580 -153;'540;New Caledonia;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;880;665;758;1039;1506;1506;1506;1506;1506;1506;1506;1337;1337;3534;3289;3289;2524;2660;195;195;1543;1586;1321;1180;1552;1255;1730;783;2461;2504;2504;2615;2539;3456;1963;3150;4150;3716;3303;2844;3492;1750;1702;1216;1613;1153;1580;1193;1217 -153;'540;New Caledonia;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;0;0;0;0;1;144;144;144;51;2;20;20;20;20;20;20;15;35;0;0;0;0;0;0;0 -153;'540;New Caledonia;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;0;0;0;0;5;47;47;47;48;6;17;20;97;24;11;4;6;23;0;0;0;0;0;0;0 -153;'540;New Caledonia;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;1500;1100;600;800;600;600;600;600;600;600;600;600;600;600;600;600;300;559;560;560;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -153;'540;New Caledonia;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;426;312;178;240;140;140;140;140;140;140;140;228;228;311;215;215;200;182;192;192;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -153;'540;New Caledonia;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;264;700;1155;1713;2500;798;755;368;1847;6940;6940;1600;1089;1781;2668;2177;2453;1643;323;883;906;107;974;974;14114;19559;30150;6406;19039 -153;'540;New Caledonia;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;155;327;423;619;882;262;278;310;1039;1138;1138;821;930;2154;1563;2445;2890;2202;356;1024;1105;110;1477;1477;2943;2739;3378;1812;2624 -153;'540;New Caledonia;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;312;312;312;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;27;27 -153;'540;New Caledonia;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;53;53;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;10;10 -153;'540;New Caledonia;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;645;645;29;7;1077;1077;600;253;136;80;263;274;370;215;399;288;359;350;316;555;416;261;510;466 -153;'540;New Caledonia;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;196;196;22;108;177;177;261;209;119;63;234;330;389;183;378;367;270;192;153;389;348;267;412;291 -153;'540;New Caledonia;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;0;0;0;0;0;0;0 -153;'540;New Caledonia;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;0;0;0;0;0;0;0 -153;'540;New Caledonia;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1001;1235;1235;2028;2000;99;276;600;1116;1400;1137;2001;6773;6773;2502;1195;1115;1349;1251;1084;608;1050;1003;1458;990;849;780;6220;33673;3969;503;1148 -153;'540;New Caledonia;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;472;537;537;713;709;63;113;312;156;249;286;1213;1598;1598;1782;1525;1733;1245;1979;1869;1700;1130;2489;2910;700;854;749;1452;1335;1173;650;1005 -153;'540;New Caledonia;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2065;2065;2065;2065;2065;2065;2065;2065;1429;1428;1428;148;110;110;110;110;110;110;110;87 -153;'540;New Caledonia;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;597;597;597;597;597;597;597;597;341;339;339;71;32;32;32;32;32;32;32;15 -153;'540;New Caledonia;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;14;0;51;100;39;665;1652;1652;796;555;241;288;359;339;203;366;118;166;312;548;494;1055;241;196;157;573 -153;'540;New Caledonia;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;16;0;18;61;117;687;766;766;978;657;380;245;630;716;442;306;212;276;267;424;374;442;352;218;278;652 -153;'540;New Caledonia;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;637;637;637;637;637;637;637;637;1;0;0;0;0;0;0;0;0;0;0;0 -153;'540;New Caledonia;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;258;258;258;258;258;258;258;258;2;0;0;0;0;0;0;0;0;0;0;0 -153;'540;New Caledonia;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;934;900;5;138;500;1029;1000;1000;1236;4132;4132;908;537;754;948;716;661;358;538;875;1290;656;280;275;3067;25146;3715;346;567 -153;'540;New Caledonia;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;453;449;8;57;292;134;152;152;467;706;706;543;670;1071;928;1158;1017;1067;624;2250;2628;416;396;367;942;747;948;372;339 -153;'540;New Caledonia;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1342;1342;1342;1342;1342;1342;1342;1342;1342;1342;1342;62;24;24;24;24;24;24;24;1 -153;'540;New Caledonia;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;325;325;325;325;325;325;325;325;325;325;325;57;18;18;18;18;18;18;18;1 -153;'540;New Caledonia;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;121;121;1094;1100;68;124;100;36;300;98;100;989;989;798;103;120;113;176;84;47;146;10;2;22;21;11;2098;8286;58;0;8 -153;'540;New Caledonia;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111;53;53;260;260;25;40;20;4;36;17;59;126;126;261;198;282;72;191;136;191;200;27;6;17;34;8;68;236;7;0;14 -153;'540;New Caledonia;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86 -153;'540;New Caledonia;1650;Other fibreboard;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 -153;'540;New Caledonia;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;801;1114;1114;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -153;'540;New Caledonia;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;361;484;484;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -153;'540;New Caledonia;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1878;1894;1618;1618;1618;1618;1618;1618;1618;1618;1618 -153;'540;New Caledonia;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;35;142;41;0;0;2000;2000;2002;2039;2039;2012;2103;2423;2410;2259;2238;14;104;23;12;3;3;3;110;86;24;9;9 -153;'540;New Caledonia;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;23;22;0;0;706;706;709;713;713;748;780;1016;899;883;887;56;143;51;32;24;15;15;61;68;24;16;16 -153;'540;New Caledonia;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;168;242;1377;1794;1878;1894;1618;1618;1618;261;1336;1666;1322;70;860 -153;'540;New Caledonia;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;21;28;65;94;106;64;70;70;70;43;208;211;274;15;229 -153;'540;New Caledonia;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;108;7;0;0;2000;2000;2002;2004;2004;2010;2101;2421;2246;2258;2236;12;104;23;12;3;3;3;110;86;24;9;9 -153;'540;New Caledonia;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;11;10;0;0;706;706;709;709;709;742;774;1010;867;877;863;32;143;51;32;24;15;15;61;68;24;16;16 -153;'540;New Caledonia;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;0;0;0;0;0;;;14;14;14;14;14 -153;'540;New Caledonia;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;;;6;6;6;6;6 -153;'540;New Caledonia;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;0;0;2000;2000;2002;2003;2003;2008;2107;2427;2242;2254;2232;0;92;11;0;0;0;0;107;69;15;0;0 -153;'540;New Caledonia;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;0;0;706;706;709;708;708;737;791;1033;863;873;859;0;111;19;0;0;0;0;46;33;8;0;0 -153;'540;New Caledonia;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;99;0;0;0;0;0;1;1;1;1;1;1;1;1;0;0;0;0;0;0;0;14;14;14;14;14 -153;'540;New Caledonia;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;99;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;6;6;6;6;6 -153;'540;New Caledonia;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107;69;15;0;0 -153;'540;New Caledonia;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;33;8;0;0 -153;'540;New Caledonia;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;14;14 -153;'540;New Caledonia;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6 -153;'540;New Caledonia;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;278;93;105;83;0;92;11;0;0;;;;;;; -153;'540;New Caledonia;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;204;34;44;30;0;111;19;0;0;;;;;;; -153;'540;New Caledonia;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;0;0;0;0;0;;;;;;; -153;'540;New Caledonia;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;;;;;;; -153;'540;New Caledonia;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;0;0;2000;2000;2002;2003;2003;2008;2099;2141;2141;2141;2141;0;0;0;0;0;0;0;0;0;0;0;0 -153;'540;New Caledonia;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;0;0;706;706;709;708;708;737;763;801;801;801;801;0;0;0;0;0;0;0;0;0;0;0;0 -153;'540;New Caledonia;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;0;0;0 -153;'540;New Caledonia;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;0;0;0 -153;'540;New Caledonia;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;0;0;0;0;0;0;0;0;0;0;0;0 -153;'540;New Caledonia;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;706;706;706;706;706;706;706;706;706;706;706;0;0;0;0;0;0;0;0;0;0;0;0 -153;'540;New Caledonia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;3;3;8;99;141;141;141;141;0;0;0;0;0;;;;;;; -153;'540;New Caledonia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;2;2;31;57;95;95;95;95;0;0;0;0;0;;;;;;; -153;'540;New Caledonia;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;8;0;0;0;0;0;0;0;0;0;0;0;0 -153;'540;New Caledonia;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;28;28;28;0;0;0;0;0;0;0;0;0;0;0;0 -153;'540;New Caledonia;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;99;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -153;'540;New Caledonia;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;99;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -153;'540;New Caledonia;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107;6;0;0;0;0;0;1;1;2;2;2;12;12;12;12;12;12;12;3;3;3;3;17;9;9;9 -153;'540;New Caledonia;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;9;0;0;0;0;0;1;1;5;11;5;32;32;32;32;32;32;32;24;15;15;15;35;16;16;16 -153;'540;New Caledonia;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;24;24;24;2;2;2;2;2;2;2;2;2;46;2;2 -153;'540;New Caledonia;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;12;12;7;7;7;7;7;7;7;7;7;69;7;7 -153;'540;New Caledonia;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;202 -153;'540;New Caledonia;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41 -153;'540;New Caledonia;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1878;1894;1618;1618;1618;1618;1618;1618;1618;1618;1618 -153;'540;New Caledonia;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;34;34;34;0;0;0;0;0;35;35;2;2;2;164;1;2;2;0;0;0;0;0;0;0;0;0;0;0 -153;'540;New Caledonia;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;12;0;0;0;0;0;4;4;6;6;6;32;6;24;24;0;0;0;0;0;0;0;0;0;0;0 -153;'540;New Caledonia;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;167;241;1376;1794;1878;1894;1618;1618;1618;261;1322;1652;1308;56;846 -153;'540;New Caledonia;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;28;65;94;106;64;70;70;70;43;202;205;268;9;223 -153;'540;New Caledonia;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;1100;1200;1100;1200;1300;1300;2500;2800;2800;2800;300;2000;2000;2200;2300;2300;2200;1090;3074;3074;2298;4800;2674;7006;7199;4852;5311;3004;11175;15005;15005;8826;10574;12131;7007;11700;12094;8516;10073;9870;6445;9232;7400;6954;10823;10838;10422;5892;6726 -153;'540;New Caledonia;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;1064;936;942;1098;1215;1215;2200;2700;2700;2700;290;2924;2924;3136;2916;2916;2652;1513;3379;3379;2364;4352;3612;6715;6216;4331;4939;3596;9038;11215;11215;10221;12218;15939;6925;14836;16018;11654;10201;12918;8624;9411;7949;7634;14211;13660;15542;8671;10779 -153;'540;New Caledonia;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;26;26;26;26;26;1;1;13;13;13;112;7597;7597;7418;7270;7366;5315;4181;4161;73;79;96;59;108;108;108;66;65;85;61;98 -153;'540;New Caledonia;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;11;11;11;11;11;3;3;11;11;11;17;4426;4426;4294;4195;4297;2699;2020;2036;103;119;139;88;122;122;118;55;55;63;53;75 -153;'540;New Caledonia;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;1100;1200;1100;1200;1300;1300;2500;2800;2800;2800;300;2000;2000;2200;2300;2300;2200;581;2039;2039;1695;3800;2384;5826;5599;3140;2600;2246;8282;11084;11084;6056;6796;7751;4044;6988;7570;5640;6674;6388;4077;4936;3765;2901;6651;6289;6904;3366;3523 -153;'540;New Caledonia;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;1064;936;942;1098;1215;1215;2200;2700;2700;2700;290;2924;2924;3136;2916;2916;2652;859;1904;1904;1412;3147;2886;5179;4552;3058;2877;2312;5959;7684;7684;6620;7234;9305;4262;7825;9208;6901;6422;7772;5482;4805;3650;3251;7260;6424;6900;3643;4424 -153;'540;New Caledonia;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;12;6377;6377;6205;6041;6148;4095;4110;4110;22;28;28;20;20;20;20;4;4;25;3;42 -153;'540;New Caledonia;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;12;3683;3683;3559;3442;3555;1956;1983;1983;53;69;69;49;49;49;45;8;8;17;8;33 -153;'540;New Caledonia;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;1100;1200;1100;1200;1300;1300;2500;2800;2800;2800;300;1600;1600;800;1100;1100;1200;;933;933;1455;3300;61;3162;2200;519;100;110;2291;3807;3807;2679;2644;3374;125;2835;2869;2418;2500;1862;1746;1746;48;34;41;346;698;1765;1765 -153;'540;New Caledonia;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;1064;936;942;1098;1215;1215;2200;2700;2700;2700;290;2094;2094;729;895;895;824;;478;478;936;2278;44;1998;1269;274;28;103;1505;1942;1942;2128;2086;2972;81;2238;2455;2202;2127;1653;1843;1843;34;23;29;193;502;1448;1448 -153;'540;New Caledonia;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4084;4084;4084;4084;4084;4084;4084;4084;0;0;0;0;0;0;0;0;0;0;0;39 -153;'540;New Caledonia;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1928;1928;1928;1928;1928;1928;1928;1928;0;0;0;0;0;0;0;0;0;0;0;26 -153;'540;New Caledonia;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;400;400;1400;1200;1200;1000;581;1106;1106;240;500;2323;2664;3399;2621;2500;2136;5991;7277;7277;3377;4152;4377;3919;4153;4701;3222;4174;4526;2331;3190;3717;2867;6610;5943;6206;1601;1758 -153;'540;New Caledonia;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;830;830;2407;2021;2021;1828;859;1426;1426;476;869;2842;3181;3283;2784;2849;2209;4454;5742;5742;4492;5148;6333;4181;5587;6753;4699;4295;6119;3639;2962;3616;3228;7231;6231;6398;2195;2976 -153;'540;New Caledonia;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;12;2293;2293;2121;1957;2064;11;26;26;22;28;28;20;20;20;20;4;4;25;3;3 -153;'540;New Caledonia;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;12;1755;1755;1631;1514;1627;28;55;55;53;69;69;49;49;49;45;8;8;17;8;7 -153;'540;New Caledonia;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;418;533;411;100;62;65;176;176;39;9;129;127;22;42;9;73;4;6;87;54;54;36;164;36;11;57 -153;'540;New Caledonia;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;580;599;508;216;76;85;139;139;82;53;114;210;81;113;51;182;39;39;163;119;119;96;305;97;50;142 -153;'540;New Caledonia;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;1949;1949;1949;1949;1949;2;2;2;3;3;3;3;3;3;3;3;3;3;3;3 -153;'540;New Caledonia;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;1492;1492;1492;1492;1492;1;1;1;7;7;7;7;7;7;7;7;7;7;7;7 -153;'540;New Caledonia;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1544;1970;1519;1800;1356;2258;3803;3803;1936;2111;2577;1748;2441;2453;896;2423;2261;440;1546;1576;2001;4273;4093;5042;532;1207 -153;'540;New Caledonia;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1720;1775;1505;1845;1410;1995;3000;3000;2473;2447;3523;1937;3001;3190;1116;2484;2817;714;1480;1657;2040;4524;4054;5024;793;1850 -153;'540;New Caledonia;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;167;167;167;3;110;6;21;21;16;16;16;16;16;16;16;0;0;0;0;0 -153;'540;New Caledonia;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;127;127;127;10;123;18;45;45;37;37;37;37;37;37;37;0;0;0;0;0 -153;'540;New Caledonia;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;702;896;691;600;718;3668;3298;3298;1402;2032;1671;2044;1690;2206;2317;1678;2261;1885;1557;2087;812;2301;1686;1128;1058;494 -153;'540;New Caledonia;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;881;909;771;788;723;2374;2603;2603;1937;2648;2696;2034;2505;3450;3532;1629;3263;2886;1319;1840;1069;2611;1872;1277;1352;984 -153;'540;New Caledonia;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;177;177;5;5;5;3;3;3;3;9;9;1;1;1;1;1;1;22;0;0 -153;'540;New Caledonia;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;136;136;12;12;12;9;9;9;9;25;25;5;5;5;1;1;1;10;1;0 -153;'540;New Caledonia;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;509;1035;1035;603;1000;290;1180;1600;1712;2711;758;2893;3921;3921;2770;3778;4380;2963;4712;4524;2876;3399;3482;2368;4296;3635;4053;4172;4549;3518;2526;3203 -153;'540;New Caledonia;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;654;1475;1475;952;1205;726;1536;1664;1273;2062;1284;3079;3531;3531;3601;4984;6634;2663;7011;6810;4753;3779;5146;3142;4606;4299;4383;6951;7236;8642;5028;6355 -153;'540;New Caledonia;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;26;26;26;26;26;1;1;2;2;2;100;1220;1220;1213;1229;1218;1220;71;51;51;51;68;39;88;88;88;62;61;60;58;56 -153;'540;New Caledonia;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;11;11;11;11;11;3;3;5;5;5;5;743;743;735;753;742;743;37;53;50;50;70;39;73;73;73;47;47;46;45;42 -153;'540;New Caledonia;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;599;800;44;1258;1496;1496;1217;2050;1900;477;2029;2063;2292;2172;940;1136;2162;1852;1725;3067;3650;2585;1718;2043 -153;'540;New Caledonia;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;497;1142;55;1426;1646;1646;1679;2820;3489;452;3546;3577;3943;2730;1539;2069;2561;2301;2070;4096;4657;3552;2453;2768 -153;'540;New Caledonia;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;34;5;5;5;5;5;5;5;5;2;1;1;1;0 -153;'540;New Caledonia;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;2;8;15;15;15;15;15;15;15;15;2;2;2;2;0 -153;'540;New Caledonia;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;628;811;536;625;1269;1269;424;429;496;1122;868;689;251;1046;919;986;1114;796;1136;1063;872;869;777;1132 -153;'540;New Caledonia;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;358;395;584;677;787;787;831;908;1227;894;1711;1520;489;873;2039;837;1061;1044;1162;1749;1503;1978;1248;2250 -153;'540;New Caledonia;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97;1210;1210;1210;1210;1210;1210;31;31;45;45;33;33;82;82;82;59;59;59;56;56 -153;'540;New Caledonia;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;731;731;731;731;731;731;22;22;33;33;23;23;57;57;57;44;44;44;42;42 -153;'540;New Caledonia;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;365;39;98;98;3;14;2;72;52;21;39;14;36;16;2;461;490;227;50;64;6;18 -153;'540;New Caledonia;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;356;120;60;60;22;77;19;87;78;50;74;21;71;24;3;417;399;162;55;79;20;87 -153;'540;New Caledonia;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1199;1199;1199;1199;1199;1199;9;9;23;23;23;23;23;23;23;0;0;0;0;0 -153;'540;New Caledonia;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;724;724;724;724;724;724;2;2;13;13;13;13;13;13;13;0;0;0;0;0 -153;'540;New Caledonia;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;202;100;25;47;221;221;141;48;76;969;66;107;99;961;129;857;925;86;256;229;410;415;261;422 -153;'540;New Caledonia;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;162;144;40;123;137;137;227;157;187;600;260;263;135;674;391;512;695;325;315;752;783;1014;596;919 -153;'540;New Caledonia;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;13;13;13;13;1;1;50;50;50;50;50;50;50;50 -153;'540;New Caledonia;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;14;14;14;14;4;4;38;38;38;38;38;38;38;38 -153;'540;New Caledonia;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;362;600;145;532;914;914;269;329;416;77;712;524;112;70;720;112;186;112;228;448;377;390;458;538 -153;'540;New Caledonia;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;154;217;186;413;567;567;541;613;1007;192;1298;1137;270;168;1514;293;355;217;361;743;615;884;588;1115 -153;'540;New Caledonia;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;0;0 -153;'540;New Caledonia;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;0;0 -153;'540;New Caledonia;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;100;1;7;36;36;11;38;2;4;38;37;1;1;34;1;1;137;162;159;35;0;52;154 -153;'540;New Caledonia;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;22;2;21;23;23;41;61;14;15;75;70;10;10;63;8;8;85;87;92;50;1;44;129 -153;'540;New Caledonia;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6 -153;'540;New Caledonia;1622;Other papers mainly for packaging;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 -153;'540;New Caledonia;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1180;1600;485;1100;178;1010;1156;1156;1129;1299;1984;1364;1815;1772;333;181;1623;246;1020;987;1192;42;27;64;31;28 -153;'540;New Caledonia;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1536;1664;418;525;645;976;1098;1098;1091;1256;1918;1317;1754;1713;321;176;1568;236;984;954;1151;1106;1076;3112;1327;1337 -153;'540;New Caledonia;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;2;9;9;2;18;7;9;6;15;1;1;30;1;1;1;1;1;1;0;1;0 -153;'540;New Caledonia;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;2;10;10;2;20;9;10;7;16;2;2;32;1;1;1;1;1;1;0;1;0 -153;'540;New Caledonia;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27811;24254;23998;27667;27441;33170;28486 -153;'540;New Caledonia;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;453;464;232;119;120;175;176 -153;'540;New Caledonia;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3706;3770;4068;3950;3401;3319;1954 -153;'540;New Caledonia;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;3;3;3;3;23 -153;'540;New Caledonia;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;772;741;1065;324;544;223;223 -153;'540;New Caledonia;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;3;3;3;3;23 -153;'540;New Caledonia;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2934;3029;3003;3626;2857;3096;1731 -153;'540;New Caledonia;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -153;'540;New Caledonia;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;381;207;204;347;587;374;545 -153;'540;New Caledonia;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;3 -153;'540;New Caledonia;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;828;728;936;630;1215;935;719 -153;'540;New Caledonia;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;56;15;5;0;17;9 -153;'540;New Caledonia;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7096;5165;5579;6772;8361;5222;3788 -153;'540;New Caledonia;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;45;0;0;0;3;16 -153;'540;New Caledonia;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107;339 -153;'540;New Caledonia;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140;324 -153;'540;New Caledonia;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3 -153;'540;New Caledonia;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9 -153;'540;New Caledonia;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12368;12019;10475;13773;11421;21668;19933 -153;'540;New Caledonia;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;369;251;120;39;39;130;115 -153;'540;New Caledonia;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;289;529;322;483;684;181;245 -153;'540;New Caledonia;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3143;1836;2414;1712;1772;1471;1302 -153;'540;New Caledonia;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;110;93;71;77;21;10 -153;'540;New Caledonia;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17410;16139;16583;17250;20680;19519;20103 -153;'540;New Caledonia;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;134;16;6;37;53;19 -153;'540;New Caledonia;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;61;94;97;62;12;25 -153;'540;New Caledonia;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;794;923;627;513;1246;1503;1117 -153;'540;New Caledonia;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;1;1;13;11;3 -153;'540;New Caledonia;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3914;1663;1662;1697;4310;2578;2354 -153;'540;New Caledonia;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;3;0;4;4;20;1 -153;'540;New Caledonia;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5175;5408;6049;6232;6909;6574;6647 -153;'540;New Caledonia;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;87;5;0;14;10;12 -153;'540;New Caledonia;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7518;8084;8151;8711;8153;8852;9960 -153;'540;New Caledonia;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;26;10;1;6;12;3 -156;'554;New Zealand;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1196744;1274159;1324256;1220319;1694705.98;1652819;1230349 -156;'554;New Zealand;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4460951;5031736;4152000;3689690;4885346.37;4278895;3524674 -156;'554;New Zealand;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;25251;18273;18310;17852;18724;14965;12200;12975;15868;20118;16603;18470;25873;50988;33828;41824;46411;40373;61683;82421;73001;106335;64578;74007;115787;124345;178580;168169;168965;212384;189228;295612;258934;229468;313483;284563;309480;297920;269521;264917;262966;303426;368958;453466;490787;492365;557691;551833;390684;545143;589105;554749;572961;644793;641076;531810;548319;582547;600072;551166;743147.98;751553;531953 -156;'554;New Zealand;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;13909;13112;22839;24656;25226;21273;26151;53633;63346;73332;81593;87496;111452;141656;151500;187998;217567;236739;369758;437330;433498;350797;331065;336332;329857;331638;403221;459083;723855;785181;928788;1004514;1311482;1434494;1636952;1552074;1418295;1129226;1291965;1482735;1376994;1630773;1522144;1902722;1914350;1964335;2176072;2311373;2115659;2865383;3333197;3244027;3800010;3780716;3319348;3292198;4221612;4817265;3945693;3509310;4685962.37;4089851;3358536 -156;'554;New Zealand;1861;Roundwood;5516;Production;m3;5392000;5234000;5670000;6208000;6372000;6531000;6800000;7400000;8326000;8706000;8476000;8782000;10693000;8664000;8567000;10019000;9742000;9003000;8803000;9995000;10315000;10007000;9680000;8835000;9752000;10321000;9739000;9814000;10745000;13177000;13870000;14303000;14957000;15998000;16644000;16372000;16971000;15352000;17800000;19329000;20721000;22151000;21303000;19896000;19136000;19471000;20443000;19526000;20877000;24540000;26181000;27465000;29816000;29246000;29018000;29065000;34484000;35999000;35894000;32758000;35643000;34319000;32546000 -156;'554;New Zealand;1861;Roundwood;5616;Import quantity;m3;18100;12300;10100;14800;21900;19500;16100;14600;22300;14300;12500;10700;9100;10600;5700;7600;10100;6000;3600;4200;5200;8200;2200;2400;3400;3100;5300;10400;7200;6201;4021;11004;4695;2400;2300;2900;3300;4000;3400;5200;5050;6100;3100;2100;3000;3408;5806;4000;2325;2779;2266;3601;4398;7216;2223;1526;7600;7327;6873;6348;7883;15809;4783 -156;'554;New Zealand;1861;Roundwood;5622;Import value;1000 USD;640;357;469;515;749;584;456;408;630;754;538;553;560;701;1296;992;1007;749;562;1462;1977;3593;766;831;799;951;2859;3795;2826;1831;1009;1358;1383;1128;924;1158;1010;1167;989;1778;1714;2112;1371;1181;1695;1980;3497;2543;1262;2946;1940;2931;4078;8247;2064;1658;4947;2703;3120;1982;3386;2637;4148 -156;'554;New Zealand;1861;Roundwood;5916;Export quantity;m3;261300;268700;274200;356900;443300;537300;795900;1441000;1671500;1820900;1829500;1872600;1954300;1450000;569000;986000;1073000;977700;1288900;1010000;562900;523200;531100;474600;384600;400600;432200;823600;1761100;1682987;3604873;4276171;4459021;4960300;5388000;5640000;5952000;4304000;5804000;5909000;7283700;7880300;7518000;5240000;5143000;5570700;5979700;6644100;8770103;10745670;12626539;13758897;16545585;16568876;16398203;15951313;18785202;21772414;21750706;20404049;22706536;20220125;21232721 -156;'554;New Zealand;1861;Roundwood;5922;Export value;1000 USD;3199;3396;3489;4459;5526;6532;9683;18488;25257;27809;32401;35882;48880;47952;18996;27192;29933;38870;58384;57243;31138;24302;25608;18186;19464;22204;25041;47862;88081;94984;207838;230264;457222;445325;447016;461442;450491;220875;288820;322986;297544;418526;335304;290740;306796;366159;445631;496317;590170;962198;1293186;1275817;1920082;1885426;1496480;1631886;2414472;2835090;2276895;2030965;2829032;2251618;1998634 -156;'554;New Zealand;1862;Roundwood, coniferous;5516;Production;m3;5134000;4993000;5443000;5978000;6126000;6270000;6604000;7165000;8074000;8414000;8187000;8493000;10272000;7535000;7480000;9032000;8923000;8243000;8143000;9723000;10022000;9720000;9272000;8663000;9578000;10143000;9558000;9626000;10555000;12779000;13622000;14077000;14733000;15742000;16482000;16225000;16873000;15199000;17695000;19250000;20642000;22082000;21244000;19844000;19088000;19428000;20400000;19485000;20838000;24498000;26140000;27425000;29767000;29199000;28956000;28990000;34009000;35694000;35569000;32433000;35318000;33994000;32221000 -156;'554;New Zealand;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;450;1379;2120;2272;1433;779;988 -156;'554;New Zealand;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;249;197;796;413;382;188;236 -156;'554;New Zealand;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18344000;21506396;21447901;20048487;22593054;20133439;21192787 -156;'554;New Zealand;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2366376;2808166;2245582;1986394;2813211;2240413;1995086 -156;'554;New Zealand;1863;Roundwood, non-coniferous;5516;Production;m3;258000;241000;227000;230000;246000;261000;196000;235000;252000;292000;289000;289000;421000;1129000;1087000;987000;819000;760000;660000;272000;293000;287000;408000;172000;174000;178000;181000;188000;190000;398000;248000;226000;224000;256000;162000;147000;98000;153000;105000;79000;79000;69000;59000;52000;48000;43000;43000;41000;39000;42000;41000;40000;49000;47000;62000;75000;475000;305000;325000;325000;325000;325000;325000 -156;'554;New Zealand;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7150;5948;4753;4076;6450;15030;3795 -156;'554;New Zealand;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4698;2506;2324;1569;3004;2449;3912 -156;'554;New Zealand;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;441202;266018;302805;355562;113482;86686;39934 -156;'554;New Zealand;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48096;26924;31313;44571;15821;11205;3548 -156;'554;New Zealand;1864;Wood fuel;5516;Production;m3;510000;510000;510000;510000;510000;510000;510000;510000;510000;510000;510000;510000;250000;250000;250000;250000;250000;250000;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 -156;'554;New Zealand;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;1518;0;0;0;0;0;0;0;0;0;0;0;0;8;6;0;0;14;0;0;1;12;14;0;46;211;861;2548;1830;812;1043 -156;'554;New Zealand;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;63;0;0;0;0;0;0;0;0;0;0;0;0;2;1;0;0;1;0;0;1;4;23;0;4;18;92;312;272;163;204 -156;'554;New Zealand;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1000;1000;100;110;110;386;338;221;0;0;0;985;1;243;368;18735;24866 -156;'554;New Zealand;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;52;52;5;9;9;61;50;39;0;0;0;95;3;32;20;2971;3504 -156;'554;New Zealand;1627;Wood fuel, coniferous;5516;Production;m3;453000;453000;453000;453000;453000;453000;453000;453000;453000;453000;453000;453000;125000;125000;125000;125000;125000;125000;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;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000 -156;'554;New Zealand;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;208;2043;932;597;849 -156;'554;New Zealand;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;23;259;155;124;164 -156;'554;New Zealand;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;966;1;217;364;18709;24837 -156;'554;New Zealand;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;93;0;20;20;2959;3499 -156;'554;New Zealand;1628;Wood fuel, non-coniferous;5516;Production;m3;57000;57000;57000;57000;57000;57000;57000;57000;57000;57000;57000;57000;125000;125000;125000;125000;125000;125000;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;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000 -156;'554;New Zealand;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;211;653;505;898;215;194 -156;'554;New Zealand;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;18;69;53;117;39;40 -156;'554;New Zealand;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;19;0;26;4;26;29 -156;'554;New Zealand;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2;3;12;0;12;5 -156;'554;New Zealand;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;1518;0;0;0;0;0;0;0;0;0;0;0;0;8;6;0;0;14;0;0;1;12;14;0;;;;;;; -156;'554;New Zealand;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;63;0;0;0;0;0;0;0;0;0;0;0;0;2;1;0;0;1;0;0;1;4;23;0;;;;;;; -156;'554;New Zealand;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1000;1000;100;110;110;386;338;221;0;0;;;;;;; -156;'554;New Zealand;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;52;52;5;9;9;61;50;39;0;0;;;;;;; -156;'554;New Zealand;1865;Industrial roundwood;5516;Production;m3;4882000;4724000;5160000;5698000;5862000;6021000;6290000;6890000;7816000;8196000;7966000;8272000;10443000;8414000;8317000;9769000;9492000;8753000;8753000;9945000;10265000;9957000;9630000;8785000;9702000;10271000;9689000;9764000;10695000;13127000;13820000;14253000;14907000;15948000;16594000;16322000;16921000;15302000;17750000;19279000;20671000;22101000;21253000;19846000;19086000;19421000;20393000;19476000;20827000;24490000;26131000;27415000;29766000;29196000;28968000;29015000;34434000;35949000;35844000;32708000;35593000;34269000;32496000 -156;'554;New Zealand;1865;Industrial roundwood;5616;Import quantity;m3;18100;12300;10100;14800;21900;19500;16100;14600;22300;14300;12500;10700;9100;10600;5700;7600;10100;6000;3600;4200;5200;8200;2200;2400;3400;3100;5300;10400;7200;6201;4021;10979;3177;2400;2300;2900;3300;4000;3400;5200;5050;6100;3100;2100;3000;3400;5800;4000;2325;2765;2266;3601;4397;7204;2209;1526;7554;7116;6012;3800;6053;14997;3740 -156;'554;New Zealand;1865;Industrial roundwood;5622;Import value;1000 USD;640;357;469;515;749;584;456;408;630;754;538;553;560;701;1296;992;1007;749;562;1462;1977;3593;766;831;799;951;2859;3795;2826;1831;1009;1357;1320;1128;924;1158;1010;1167;989;1778;1714;2112;1371;1181;1695;1978;3496;2543;1262;2945;1940;2931;4077;8243;2041;1658;4943;2685;3028;1670;3114;2474;3944 -156;'554;New Zealand;1865;Industrial roundwood;5916;Export quantity;m3;261300;268700;274200;356900;443300;537300;795900;1441000;1671500;1820900;1829500;1872600;1954300;1450000;569000;986000;1073000;977700;1288900;1010000;562900;523200;531100;474600;384600;400600;432200;823600;1761100;1682987;3604873;4276171;4459021;4960300;5388000;5640000;5952000;4304000;5804000;5909000;7283700;7880300;7518000;5240000;5143000;5570700;5978700;6643100;8770003;10745560;12626429;13758511;16545247;16568655;16398203;15951313;18785202;21771429;21750705;20403806;22706168;20201390;21207855 -156;'554;New Zealand;1865;Industrial roundwood;5922;Export value;1000 USD;3199;3396;3489;4459;5526;6532;9683;18488;25257;27809;32401;35882;48880;47952;18996;27192;29933;38870;58384;57243;31138;24302;25608;18186;19464;22204;25041;47862;88081;94984;207838;230264;457222;445325;447016;461442;450491;220875;288820;322986;297544;418526;335304;290740;306796;366159;445579;496265;590165;962189;1293177;1275756;1920032;1885387;1496480;1631886;2414472;2834995;2276892;2030933;2829012;2248647;1995130 -156;'554;New Zealand;1866;Industrial roundwood, coniferous;5516;Production;m3;4681000;4540000;4990000;5525000;5673000;5817000;6151000;6712000;7621000;7961000;7734000;8040000;10147000;7410000;7355000;8907000;8798000;8118000;8118000;9698000;9997000;9695000;9247000;8638000;9553000;10118000;9533000;9601000;10530000;12754000;13597000;14052000;14708000;15717000;16457000;16200000;16848000;15174000;17670000;19225000;20617000;22057000;21219000;19819000;19063000;19403000;20375000;19460000;20813000;24473000;26115000;27400000;29742000;29174000;28931000;28965000;33984000;35669000;35544000;32408000;35293000;33969000;32196000 -156;'554;New Zealand;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;617;300;8877;1096;1000;400;300;0;0;2000;200;50;100;100;100;1000;1000;1000;1000;806;6;12;71;9;19;50;25;450;1379;1912;229;501;182;139 -156;'554;New Zealand;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;160;35;721;519;714;233;146;0;0;480;54;11;25;12;15;630;566;566;566;42;1;18;57;15;11;30;7;249;197;773;154;227;64;72 -156;'554;New Zealand;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1675165;3561700;4116400;4290000;4837000;5262000;5640000;5952000;4304000;5802000;5902000;7283000;7880000;7513000;5237000;5141000;5570000;5978000;6643000;8767463;10737189;12614101;13744520;16538480;16559180;16360470;15916430;18344000;21505430;21447900;20048270;22592690;20114730;21167950 -156;'554;New Zealand;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93568;203029;208571;440056;427680;429016;461442;450491;220875;288592;322425;297482;418504;335000;289740;305480;365600;445020;496176;589952;961181;1292004;1274083;1918299;1879968;1491432;1628691;2366376;2808073;2245582;1986374;2813191;2237454;1991587 -156;'554;New Zealand;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;617;300;8877;1096;1000;400;300;0;0;2000;200;50;100;100;100;1000;1000;1000;1000;806;6;12;71;9;19;50;25;450;1379;1912;229;501;182;139 -156;'554;New Zealand;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;160;35;721;519;714;233;146;0;0;480;54;11;25;12;15;630;566;566;566;42;1;18;57;15;11;30;7;249;197;773;154;227;64;72 -156;'554;New Zealand;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1675165;3561700;4116400;4290000;4837000;5262000;5640000;5952000;4304000;5802000;5902000;7283000;7880000;7513000;5237000;5141000;5570000;5978000;6643000;8767463;10737189;12614101;13744520;16538480;16559180;16360470;15916430;18344000;21505430;21447900;20048270;22592690;20114730;21167950 -156;'554;New Zealand;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93568;203029;208571;440056;427680;429016;461442;450491;220875;288592;322425;297482;418504;335000;289740;305480;365600;445020;496176;589952;961181;1292004;1274083;1918299;1879968;1491432;1628691;2366376;2808073;2245582;1986374;2813191;2237454;1991587 -156;'554;New Zealand;1867;Industrial roundwood, non-coniferous;5516;Production;m3;201000;184000;170000;173000;189000;204000;139000;178000;195000;235000;232000;232000;296000;1004000;962000;862000;694000;635000;635000;247000;268000;262000;383000;147000;149000;153000;156000;163000;165000;373000;223000;201000;199000;231000;137000;122000;73000;128000;80000;54000;54000;44000;34000;27000;23000;18000;18000;16000;14000;17000;16000;15000;24000;22000;37000;50000;450000;280000;300000;300000;300000;300000;300000 -156;'554;New Zealand;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5584;3721;2102;2081;1400;1900;2600;3300;4000;1400;5000;5000;6000;3000;2000;2000;2400;4800;3000;1519;2759;2254;3530;4388;7185;2159;1501;7104;5737;4100;3571;5552;14815;3601 -156;'554;New Zealand;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1671;974;636;801;414;691;1012;1010;1167;509;1724;1703;2087;1359;1166;1065;1412;2930;1977;1220;2944;1922;2874;4062;8232;2011;1651;4694;2488;2255;1516;2887;2410;3872 -156;'554;New Zealand;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7822;43173;159771;169021;123300;126000;0;0;0;2000;7000;700;300;5000;3000;2000;700;700;100;2540;8371;12328;13991;6767;9475;37733;34883;441202;265999;302805;355536;113478;86660;39905 -156;'554;New Zealand;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1416;4809;21693;17166;17645;18000;0;0;0;228;561;62;22;304;1000;1316;559;559;89;213;1008;1173;1673;1733;5419;5048;3195;48096;26922;31310;44559;15821;11193;3543 -156;'554;New Zealand;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2099;2121;906;836;400;500;600;300;1000;1000;1000;1000;1000;1000;1000;1000;400;800;1000;599;856;277;751;750;3151;1038;363;971;559;4100;91;942;67;70 -156;'554;New Zealand;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;540;401;134;307;113;153;232;157;292;312;650;522;688;546;546;407;150;280;459;600;1133;229;698;722;3594;964;300;847;368;2255;29;892;14;38 -156;'554;New Zealand;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;142;1;38;0;0;0;0;0;0;0;0;0;2746;0 -156;'554;New Zealand;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96;3;53;0;0;0;0;0;0;0;0;0;452;0 -156;'554;New Zealand;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3485;1600;1196;1245;1000;1400;2000;3000;3000;400;4000;4000;5000;2000;1000;1000;2000;4000;2000;920;1903;1977;2779;3638;4034;1121;1138;6133;5178;0;3480;4610;14748;3531 -156;'554;New Zealand;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1131;573;502;494;301;538;780;853;875;197;1074;1181;1399;813;620;658;1262;2650;1518;620;1811;1693;2176;3340;4638;1047;1351;3847;2120;0;1487;1995;2396;3834 -156;'554;New Zealand;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7822;43173;159771;169021;123300;126000;0;0;0;2000;7000;700;300;5000;3000;2000;700;700;100;2540;8229;12327;13953;6767;9475;37733;34883;441202;265999;302805;355536;113478;83914;39905 -156;'554;New Zealand;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1416;4809;21693;17166;17645;18000;0;0;0;228;561;62;22;304;1000;1316;559;559;89;213;912;1170;1620;1733;5419;5048;3195;48096;26922;31310;44559;15821;10741;3543 -156;'554;New Zealand;1868;Sawlogs and veneer logs;5516;Production;m3;3962000;3716000;3849000;4404000;4582000;4636000;4817000;5468000;6072000;6214000;5973000;6202000;6578000;5212000;5300000;6393000;5693000;5181000;5181000;5816000;5784000;5604000;5289000;4583000;5496000;5875000;5172000;4919000;5718000;8630000;9285000;10396000;11000000;11803000;12438000;12930000;13597000;11911000;14574000;15447000;16777000;18346000;17967000;16307000;15510000;15982000;16572000;15916000;17235000;20454000;22136000;23508000;26039000;25546000;25166000;25227000;30557000;32194000;32043000;29316000;32699000;31077000;30069000 -156;'554;New Zealand;1868;Sawlogs and veneer logs;5616;Import quantity;m3;3800;2700;3700;4200;8300;5100;4700;5600;13300;3300;4600;4900;5600;7000;2900;3900;7000;2200;1200;1300;1200;5900;600;800;400;700;2900;9300;5600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -156;'554;New Zealand;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;28;77;113;91;290;119;102;163;385;238;184;243;344;399;473;369;627;312;222;745;498;2473;196;261;120;431;2241;3377;2099;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -156;'554;New Zealand;1868;Sawlogs and veneer logs;5916;Export quantity;m3;261300;268700;274200;356900;443300;537300;795900;1440500;1670800;1818800;1808600;1858000;1921700;1312000;544000;959000;1030000;937300;1237000;973900;532800;482500;510600;454100;363800;391100;425300;816700;1724500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -156;'554;New Zealand;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;3199;3396;3489;4459;5526;6532;9683;18473;25233;27762;32168;35595;48084;44684;18358;26627;28862;37741;56670;55928;29808;22382;24963;17541;18768;20835;24614;47435;80752;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -156;'554;New Zealand;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;3786000;3552000;3707000;4262000;4424000;4466000;4710000;5344000;5944000;6081000;5840000;6074000;6425000;4462000;4523000;5693000;5161000;4697000;4697000;5730000;5707000;5523000;5207000;4512000;5423000;5802000;5099000;4846000;5645000;8462000;9154000;10268000;10849000;11631000;12322000;12808000;13524000;11833000;14510000;15393000;16723000;18302000;17933000;16280000;15487000;15964000;16554000;15900000;17221000;20437000;22120000;23493000;26015000;25524000;25129000;25177000;30107000;31914000;31743000;29016000;32399000;30777000;29769000 -156;'554;New Zealand;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;;1300;400;2000;700;1900;4200;4500;10600;2200;1400;1400;1300;1000;0;100;300;100;100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -156;'554;New Zealand;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;;33;3;52;11;58;65;97;135;78;58;58;94;43;23;22;19;12;10;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -156;'554;New Zealand;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;261300;268700;274200;356900;443300;537300;795900;1431500;1660500;1809400;1797000;1844000;1915000;1302000;534000;958000;1027000;935700;1236300;970400;529300;479000;507100;450600;360300;387600;418800;810000;1700000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -156;'554;New Zealand;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;3199;3396;3489;4459;5526;6532;9683;18349;25077;27616;31965;35336;47922;44365;18039;26611;28788;37675;56638;55692;29572;22146;24727;17305;18532;20599;24437;47000;78852;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -156;'554;New Zealand;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;176000;164000;142000;142000;158000;170000;107000;124000;128000;133000;133000;128000;153000;750000;777000;700000;532000;484000;484000;86000;77000;81000;82000;71000;73000;73000;73000;73000;73000;168000;131000;128000;151000;172000;116000;122000;73000;78000;64000;54000;54000;44000;34000;27000;23000;18000;18000;16000;14000;17000;16000;15000;24000;22000;37000;50000;450000;280000;300000;300000;300000;300000;300000 -156;'554;New Zealand;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;3800;1400;3300;2200;7600;3200;500;1100;2700;1100;3200;3500;4300;6000;2900;3800;6700;2100;1100;1300;1200;5900;600;800;400;700;2900;9300;5600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -156;'554;New Zealand;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;28;44;110;39;279;61;37;66;250;160;126;185;250;356;450;347;608;300;212;745;498;2473;196;261;120;431;2241;3377;2099;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -156;'554;New Zealand;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;;;;;;;;9000;10300;9400;11600;14000;6700;10000;10000;1000;3000;1600;700;3500;3500;3500;3500;3500;3500;3500;6500;6700;24500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -156;'554;New Zealand;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;;;;;;;;124;156;146;203;259;162;319;319;16;74;66;32;236;236;236;236;236;236;236;177;435;1900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -156;'554;New Zealand;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3391000;3176000;3832000;3894000;3755000;3286000;3539000;3576000;3439000;3821000;3560000;3592000;4036000;3995000;3907000;3727000;3650000;3802000;3788000;3877000;3755000;3801000;3392000;2894000;3192000;2427000 -156;'554;New Zealand;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3341000;3160000;3832000;3894000;3755000;3286000;3539000;3576000;3439000;3821000;3560000;3592000;4036000;3995000;3907000;3727000;3650000;3802000;3788000;3877000;3755000;3801000;3392000;2894000;3192000;2427000 -156;'554;New Zealand;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50000;16000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -156;'554;New Zealand;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5916;Export quantity;m3;;;;;;;;;;1200;20000;13000;32000;126000;24000;26000;42000;39000;49500;35000;28400;39100;19400;19400;19400;5500;5500;5500;25000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -156;'554;New Zealand;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5922;Export value;1000 USD;;;;;;;;;;12;203;237;756;2908;569;462;889;913;1417;1064;1034;1670;485;485;485;132;132;132;1600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -156;'554;New Zealand;1870;Pulpwood and particles (1961-1997);5516;Production;m3;798000;908000;1158000;1062000;1033000;1141000;1260000;1184000;1453000;1580000;1606000;1606000;3415000;2738000;2637000;2850000;3243000;3016000;3016000;3500000;3766000;3739000;3716000;3665000;3654000;3861000;4003000;4342000;4453000;4497000;4535000;3857000;3907000;4145000;4156000;3392000;3324000;;;;;;;;;;;;;;;;;;;;;;;;;; -156;'554;New Zealand;1870;Pulpwood and particles (1961-1997);5916;Export quantity;m3;;;;;;;;;;1200;20000;13000;32000;126000;24000;26000;42000;39000;49500;35000;28400;39100;19400;19400;19400;5500;5500;5500;25000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -156;'554;New Zealand;1870;Pulpwood and particles (1961-1997);5922;Export value;1000 USD;;;;;;;;;;12;203;237;756;2908;569;462;889;913;1417;1064;1034;1670;485;485;485;132;132;132;1600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -156;'554;New Zealand;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;798000;908000;1158000;1062000;1033000;1141000;1260000;1150000;1402000;1495000;1529000;1524000;3288000;2496000;2470000;2700000;3087000;2871000;2871000;3345000;3578000;3564000;3418000;3592000;3581000;3784000;3923000;4255000;4364000;4292000;4443000;3784000;3859000;4086000;4135000;3392000;3324000;;;;;;;;;;;;;;;;;;;;;;;;;; -156;'554;New Zealand;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;34000;51000;85000;77000;82000;127000;242000;167000;150000;156000;145000;145000;155000;188000;175000;298000;73000;73000;77000;80000;87000;89000;205000;92000;73000;48000;59000;21000;0;0;;;;;;;;;;;;;;;;;;;;;;;;;; -156;'554;New Zealand;1871;Other industrial roundwood;5516;Production;m3;122000;100000;153000;232000;247000;244000;213000;238000;291000;402000;387000;464000;450000;464000;380000;526000;556000;556000;556000;629000;715000;614000;625000;537000;552000;535000;514000;503000;524000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -156;'554;New Zealand;1871;Other industrial roundwood;5616;Import quantity;m3;14300;9600;6400;10600;13600;14400;11400;9000;9000;11000;7900;5800;3500;3600;2800;3700;3100;3800;2400;2900;4000;2300;1600;1600;3000;2400;2400;1100;1600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -156;'554;New Zealand;1871;Other industrial roundwood;5622;Import value;1000 USD;612;280;356;424;459;465;354;245;245;516;354;310;216;302;823;623;380;437;340;717;1479;1120;570;570;679;520;618;418;727;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -156;'554;New Zealand;1871;Other industrial roundwood;5916;Export quantity;m3;;;;;;;;500;700;900;900;1600;600;12000;1000;1000;1000;1400;2400;1100;1700;1600;1100;1100;1400;4000;1400;1400;11600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -156;'554;New Zealand;1871;Other industrial roundwood;5922;Export value;1000 USD;;;;;;;;15;24;35;30;50;40;360;69;103;182;216;297;251;296;250;160;160;211;1237;295;295;5729;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -156;'554;New Zealand;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;97000;80000;125000;201000;216000;210000;181000;218000;275000;385000;365000;442000;434000;452000;362000;514000;550000;550000;550000;623000;712000;608000;622000;534000;549000;532000;511000;500000;521000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -156;'554;New Zealand;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;25000;20000;28000;31000;31000;34000;32000;20000;16000;17000;22000;22000;16000;12000;18000;12000;6000;6000;6000;6000;3000;6000;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;0;0;0;0 -156;'554;New Zealand;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;14300;9600;6400;10600;13600;14400;11400;9000;9000;11000;7900;5800;3500;3600;2800;3700;3100;3800;2400;2900;4000;2300;1600;1600;3000;2400;2400;1100;1600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -156;'554;New Zealand;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;612;280;356;424;459;465;354;245;245;516;354;310;216;302;823;623;380;437;340;717;1479;1120;570;570;679;520;618;418;727;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -156;'554;New Zealand;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;;;;;;;;500;700;900;900;1600;600;12000;1000;1000;1000;1400;2400;1100;1700;1600;1100;1100;1400;4000;1400;1400;11600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -156;'554;New Zealand;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;;;;;;;;15;24;35;30;50;40;360;69;103;182;216;297;251;296;250;160;160;211;1237;295;295;5729;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -156;'554;New Zealand;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -156;'554;New Zealand;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;994;0;0;0;0;0;0;0;0;0;0;1000;1000;600;1100;671;812;813;1008;1187;1613;2139;1426;2248;2297;2396;3217;3101;3760.77;5432;3775 -156;'554;New Zealand;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;264;0;0;0;0;0;0;0;0;0;0;400;424;287;464;373;449;619;820;909;1229;1441;1295;1366;1968;1637;2524;2468;3387.42;5526;3348 -156;'554;New Zealand;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;0;0;0;0;0;0;0;0;0;0;0;0;23;0;124;8;3;2;2;2;2;4;3;10;42;49;17;4;12;15 -156;'554;New Zealand;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;0;0;0;0;0;0;0;0;0;0;0;0;5;0;42;7;2;1;7;7;14;23;19;23;45;65;12;6;22;29 -156;'554;New Zealand;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;343000;205000;303000;389000;389000;389000;1073000;1237000;1239000;1239000;1239000;1239000;1239000;1239000;1239000;1239000;1239000;1239000;1239000;1239000;1239000;1239000;1239000;1239000;1239000;1239000 -156;'554;New Zealand;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;28;33;62;62;112;198;712;350;558;420;267;1518.14;371;289 -156;'554;New Zealand;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;90;107;186;387;479;401;571;507;445;526;413;448;451;460 -156;'554;New Zealand;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;338000;239000;303000;454000;335000;324000;225000;261000;597000;941000;962000;538000;974000;1170000;1048000;827000;637000;692000;839266;788194;674035;324351;254162;525136.87;348891;301209 -156;'554;New Zealand;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29567;21730;28881;33151;33699;27283;20946;26460;25600;44078;58460;28526;54238;68616;58609;49828;44773;42546;45227;41333;36488;43674;33948;69479.74;50451;46301 -156;'554;New Zealand;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;343000;205000;303000;389000;389000;389000;1073000;1237000;1239000;1239000;1239000;1239000;1239000;1239000;1239000;1239000;1239000;1239000;1239000;1239000;1239000;1239000;1239000;1239000;1239000;1239000 -156;'554;New Zealand;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119;361;361;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;28;33;62;62;112;198;352;342;358;180;265;1517.14;203;141 -156;'554;New Zealand;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;31;31;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;90;107;186;387;479;401;412;505;436;516;413;448;444;448 -156;'554;New Zealand;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;183300;217400;204000;237000;309000;379000;329000;498000;400400;350000;400000;486600;546000;650000;750000;600000;600000;700000;905000;497500;508500;767300;509313;400500;451600;631900;509000;437000;338000;239000;303000;454000;335000;324000;225000;261000;597000;941000;962000;538000;974000;1170000;1048000;827000;637000;692000;838685;788141;674000;324221;251740;520850.87;348290;297524 -156;'554;New Zealand;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;2064;2473;2719;5151;4665;8113;6017;9663;7607;7400;10000;12150;15000;18084;21000;16800;17000;25775;33500;25219;22047;36697;25650;20852;22220;40287;29417;19003;29567;21730;28881;33151;33699;27283;20946;26460;25600;44078;58460;28526;54238;68616;58609;49828;44773;42546;45048;41322;36478;43600;33775;69116.74;50382;46043 -156;'554;New Zealand;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -156;'554;New Zealand;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;806;454;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;360;8;200;240;2;1;168;148 -156;'554;New Zealand;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;16;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;159;2;9;10;0;0;7;12 -156;'554;New Zealand;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7973;25237;19800;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;581;53;35;130;2422;4286;601;3685 -156;'554;New Zealand;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;359;985;828;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;179;11;10;74;173;363;69;258 -156;'554;New Zealand;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30000;30000;30000;48000;50000;50000;75000;75000;75000;75000;75000;75000 -156;'554;New Zealand;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;248;204;323;443;319;421;541;2047;2646;3254;6306;3199 -156;'554;New Zealand;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;206;209;202;249;176;237;375;354;469;613;1659;906 -156;'554;New Zealand;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;217;325;518;248;387;174;203;739;986;2981;1282;494 -156;'554;New Zealand;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;153;202;278;104;179;72;109;162;270;632;392;202 -156;'554;New Zealand;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30000;30000;30000;48000;50000;50000;75000;75000;75000;75000;75000;75000 -156;'554;New Zealand;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;5;48;22;79;93;69;567;1517;2048;5317;2396 -156;'554;New Zealand;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;4;31;13;16;50;37;104;276;376;1385;669 -156;'554;New Zealand;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -156;'554;New Zealand;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -156;'554;New Zealand;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;244;199;275;421;240;328;472;1480;1129;1206;989;803 -156;'554;New Zealand;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;198;205;171;236;160;187;338;250;193;237;274;237 -156;'554;New Zealand;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;217;325;518;248;387;174;203;739;986;2981;1282;494 -156;'554;New Zealand;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;153;202;278;104;179;72;109;162;270;632;392;202 -156;'554;New Zealand;1872;Sawnwood;5516;Production;m3;1635000;1518000;1590000;1737000;1787000;1765000;1614000;1730000;1806000;1850000;1746000;1793000;2063000;2108000;2075000;2233000;1981000;1666000;1829000;2062000;2203000;2288000;2150000;2109000;2320000;2412000;1876000;1881000;2135000;2198000;2263000;2544000;2805000;2861000;2950000;3032000;3136000;3178000;3653000;3910000;3821000;4301000;4289000;4424000;4271000;4292000;4457000;3787000;3597000;4078911;3831963;4058599;3953000;3612705;4049047;4128386;4657632;4422966;4531000;4082321;4518321;4599321;3724201 -156;'554;New Zealand;1872;Sawnwood;5616;Import quantity;m3;111300;74200;78200;88100;88200;87400;60700;38600;45500;49500;34200;32000;40000;64000;22000;36000;32000;18000;24600;24700;26800;30500;25500;37700;34900;53200;52500;24100;33300;44700;34100;39475;39000;35000;34000;39000;34000;30000;30000;37000;32000;36000;39000;41000;49000;50000;52000;42000;33210;36206;42669;36376;31013;48109;69638;75445;69337;68527;71584;58597;118268;89959;48973 -156;'554;New Zealand;1872;Sawnwood;5622;Import value;1000 USD;6108;3899;4388;5266;5751;5809;3905;2710;3810;4566;3144;3082;5522;12263;4231;6759;6608;4245;7375;10108;11650;13527;9664;14112;12982;14957;19073;13673;15805;25084;18271;17770;23473;23186;22748;23869;24336;19755;20866;25014;18217;24414;26323;31180;35493;38910;48110;44330;30686;36630;37916;38853;40304;49455;57892;65845;75039;81575;76684;61345;118001;123170;61510 -156;'554;New Zealand;1872;Sawnwood;5916;Export quantity;m3;67300;77000;75700;91500;87500;75200;93500;214800;251300;266900;304400;267500;248600;246000;161000;237000;300000;367900;512900;620700;546400;516400;401700;382000;489600;401300;350600;442000;509000;616000;774500;935335;985509;1026000;1073000;961000;1155000;1187000;1371500;1523000;1614000;1792000;1632000;1848000;1805000;1960000;1781000;1794000;1859968;2024720;1911930;2113921;2030219;1708008;1786686;1734031;1826860;1941328;1825049;1719919;1534763;1399372;1347264 -156;'554;New Zealand;1872;Sawnwood;5922;Export value;1000 USD;2861;2938;2887;3376;3505;2842;3515;8263;9951;11982;14021;12734;12297;18923;13539;16387;20293;29428;53857;79981;68319;55728;45200;61929;61739;57924;54759;72266;106739;122102;150311;187906;274101;309442;306821;254349;289417;280249;340321;355331;337772;429431;404466;534320;506310;525346;539098;504913;454521;606644;594685;638701;666142;619435;576159;585065;613207;654992;573722;549776;665199;622137;531993 -156;'554;New Zealand;1632;Sawnwood, coniferous;5516;Production;m3;1541000;1447000;1512500;1655500;1699500;1671500;1549500;1663500;1743000;1796000;1547500;1736500;1993000;2055000;1979500;2172500;1936000;1622500;1785500;1994000;2154500;2242000;2106000;2074000;2285000;2376000;1844000;1849000;2103000;2161000;2198000;2437000;2794000;2848000;2934000;3019000;3130000;3168000;3643000;3897000;3807000;4283000;4275000;4410000;4259000;4281000;4447000;3781000;3590000;4069911;3824000;4052000;3941000;3602000;4038000;4115000;4649632;4414966;4523000;4076000;4512000;4593000;3717880 -156;'554;New Zealand;1632;Sawnwood, coniferous;5616;Import quantity;m3;61950;44900;45650;54900;50950;55200;36300;21700;24600;23100;14100;13000;21000;33000;8000;15000;11000;6200;9300;7300;10500;13700;11000;16500;15700;37100;28100;10400;15800;25300;20200;23471;23000;21000;22000;24000;22000;16000;16000;20000;11000;17000;19000;21000;30000;26000;26000;22000;14572;18900;19177;16208;13699;26349;50494;40624;41841;42562;44787;31022;56161;53465;18576 -156;'554;New Zealand;1632;Sawnwood, coniferous;5622;Import value;1000 USD;3116;2168;2491;3218;3231;3476;2221;1515;2218;2303;1319;1293;3378;6845;1583;3149;2483;1765;3633;3344;4554;6225;4630;7253;6263;9401;10178;6414;6483;13976;9613;9928;12782;12935;14884;16145;16897;11914;11796;15735;8025;13773;14152;16591;20020;20390;23242;24277;13397;18397;17090;14604;12345;24552;35963;40119;42739;48608;44886;31139;72365;73819;27179 -156;'554;New Zealand;1632;Sawnwood, coniferous;5916;Export quantity;m3;67000;76900;75500;91300;87000;75000;93200;212000;247400;256700;297300;262000;244000;241000;157000;231000;295000;364700;507200;614100;543200;513400;398800;378000;485700;399300;347700;407000;480000;580000;772500;911465;971307;1025000;1072000;960000;1153000;1185000;1370000;1521000;1612000;1791000;1630000;1846000;1802000;1956000;1777000;1792000;1858322;2023217;1904720;2112571;2028569;1700250;1773997;1730000;1824058;1939369;1822461;1719460;1532137;1398887;1346612 -156;'554;New Zealand;1632;Sawnwood, coniferous;5922;Export value;1000 USD;2839;2930;2873;3365;3469;2831;3497;8084;9624;11108;13416;12248;11782;18222;12874;15623;19436;28607;52441;78064;67399;54741;44479;60924;60799;57371;53963;63100;96651;111506;149420;182692;270677;309031;305993;253432;288758;279469;339677;354432;336963;428748;403390;533000;504840;523800;537928;503677;453520;605452;593363;637623;665064;617538;572104;582418;611258;653719;572530;549309;663708;621572;531409 -156;'554;New Zealand;1633;Sawnwood, non-coniferous;5516;Production;m3;94000;71000;77500;81500;87500;93500;64500;66500;63000;54000;198500;56500;70000;53000;95500;60500;45000;43500;43500;68000;48500;46000;44000;35000;35000;36000;32000;32000;32000;37000;65000;107000;11000;13000;16000;13000;6000;10000;10000;13000;14000;18000;14000;14000;12000;11000;10000;6000;7000;9000;7963;6599;12000;10705;11047;13386;8000;8000;8000;6321;6321;6321;6321 -156;'554;New Zealand;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;49350;29300;32550;33200;37250;32200;24400;16900;20900;26400;20100;19000;19000;31000;14000;21000;21000;11800;15300;17400;16300;16800;14500;21200;19200;16100;24400;13700;17500;19400;13900;16004;16000;14000;12000;15000;12000;14000;14000;17000;21000;19000;20000;20000;19000;24000;26000;20000;18638;17306;23492;20168;17314;21760;19144;34821;27496;25965;26797;27575;62107;36494;30397 -156;'554;New Zealand;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;2992;1731;1897;2048;2520;2333;1684;1195;1592;2263;1825;1789;2144;5418;2648;3610;4125;2480;3742;6764;7096;7302;5034;6859;6719;5556;8895;7259;9322;11108;8658;7842;10691;10251;7864;7724;7439;7841;9070;9279;10192;10641;12171;14589;15473;18520;24868;20053;17289;18233;20826;24249;27959;24903;21929;25726;32300;32967;31798;30206;45636;49351;34331 -156;'554;New Zealand;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;300;100;200;200;500;200;300;2800;3900;10200;7100;5500;4600;5000;4000;6000;5000;3200;5700;6600;3200;3000;2900;4000;3900;2000;2900;35000;29000;36000;2000;23870;14202;1000;1000;1000;2000;2000;1500;2000;2000;1000;2000;2000;3000;4000;4000;2000;1646;1503;7210;1350;1650;7758;12689;4031;2802;1959;2588;459;2626;485;652 -156;'554;New Zealand;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;22;8;14;11;36;11;18;179;327;874;605;486;515;701;665;764;857;821;1416;1917;920;987;721;1005;940;553;796;9166;10088;10596;891;5214;3424;411;828;917;659;780;644;899;809;683;1076;1320;1470;1546;1170;1236;1001;1192;1322;1078;1078;1897;4055;2647;1949;1273;1192;467;1491;565;584 -156;'554;New Zealand;1634;Veneer sheets;5516;Production;m3;1300;1300;1300;900;3400;7800;6900;7200;11800;8600;13700;11800;20800;8500;6700;10000;8000;11300;14000;3300;5000;11000;4000;4000;4000;4000;4000;4000;4000;4000;20000;32000;41000;74000;100000;114000;311000;262000;361000;399000;447000;553000;638000;681000;672000;689000;562000;519000;404000;663433;701566;678874;620515;661553;619938;520260;497265;484366;473614;356120;432114;434428;341725 -156;'554;New Zealand;1634;Veneer sheets;5616;Import quantity;m3;400;400;800;1200;1700;1300;1400;2200;2700;3600;3700;3600;5800;8800;18000;6100;5300;6100;4400;2000;2400;2500;2000;2600;2800;1800;1800;1100;1300;1000;800;1107;1137;1000;2000;1000;1000;1000;2000;1000;1000;1000;2000;2000;4000;5000;11000;7000;3251;1017;294;571;237;241;361;265;278;280;2537;3435;5292;4777;1947 -156;'554;New Zealand;1634;Veneer sheets;5622;Import value;1000 USD;122;136;235;333;445;336;405;497;651;674;793;809;1630;3090;2341;2730;2863;1860;3405;2186;2726;2781;2104;2753;2618;2508;3107;1807;2080;2223;1083;1063;1128;1405;1719;1373;1616;1263;1713;1399;1597;1876;1812;2178;2485;2483;2991;3101;2219;2455;2492;2826;2175;1535;777;566;633;693;4768;5306;12688;8437;5737 -156;'554;New Zealand;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;200;200;300;200;200;200;200;6000;100;200;200;2000;3400;4300;4500;3200;1000;1400;1200;700;1900;1200;1600;2500;2124;4854;10000;12000;10000;7000;15000;17000;20000;36000;77000;125000;135000;144000;152000;141000;138000;122418;174497;170706;159463;149761;149536;133083;125928;145126;159152;143032;91002;103802;108062;73548 -156;'554;New Zealand;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;21;65;182;78;85;86;59;82;30;61;109;599;1019;1571;1519;987;1217;1183;1013;747;1572;1152;1423;1591;2058;3013;4758;7287;5007;3454;2543;3531;6058;7697;24503;36136;57000;60221;31600;33530;31251;25231;42890;46937;43159;35926;35609;31096;29650;33296;36271;32676;24868;29610;37840;26943 -156;'554;New Zealand;1873;Wood-based panels;5516;Production;m3;56200;54100;56000;62800;69200;100700;93200;111200;132400;180900;192500;196500;265600;251200;259200;316000;277000;303000;299000;316000;345000;346000;316000;348000;389000;403000;490000;628000;654000;683000;723000;768000;824000;963000;992000;932000;1021000;923000;1117000;1255000;1269000;1386056;1434714;1517946;1503764;1564889;1520859;1380030;1059803;1167773;1222606;1239821;1185052;1239991;1263740;1356359;1346170;1298085;1244026;1078794;1179325;1140401;932602 -156;'554;New Zealand;1873;Wood-based panels;5616;Import quantity;m3;2400;1200;1100;700;600;2800;1400;1700;1500;1700;1800;1400;3300;14500;5600;6500;4500;3200;3000;3100;3200;3500;2100;2300;2000;3100;6500;4900;4500;6100;2300;6326;7378;9000;11700;11400;17000;19000;18000;17000;14000;18000;20000;21000;28000;41000;49753;47000;33664;59532;59372;67823;79409;144103;156915;121750;97329;102915;126847;146885;208559;253270;155598 -156;'554;New Zealand;1873;Wood-based panels;5622;Import value;1000 USD;319;227;229;151;113;424;248;252;244;279;347;433;884;3601;2170;2205;1652;862;1713;1796;2263;2256;1349;1715;1532;1779;2944;2928;2590;3347;1477;3582;4374;5829;7727;10358;11033;11427;11319;10298;11088;12109;13151;17399;19548;24106;30425;26776;15542;28697;35353;40737;42894;44045;45197;46412;47393;59052;69780;88584;140952;165931;87438 -156;'554;New Zealand;1873;Wood-based panels;5916;Export quantity;m3;300;700;1200;900;1200;2274;1974;6354;12340;15723;22477;19498;17667;6564;4106;11000;16900;36200;90600;115500;117300;83500;89700;78400;64100;80600;150600;246300;279800;354600;421100;491381;520994;572000;621000;578000;603000;560000;709000;806000;835000;872000;880000;929000;897000;902000;765000;746000;654377;656829;756988;744802;682613;674847;723110;720168;748976;772367;616656;617224;622360;610685;488854 -156;'554;New Zealand;1873;Wood-based panels;5922;Export value;1000 USD;41;64;99;93;144;207;234;584;1171;1546;2132;2551;2555;1439;737;1527;3058;6555;18938;25326;25209;19480;19305;16496;12435;18399;35977;41220;83600;98268;116493;130407;157602;205087;247566;244045;222521;149483;200434;215349;208731;255817;230680;320710;299102;277066;289440;286801;237758;280635;332611;346253;302038;289729;322809;245914;261219;316728;285610;232891;244128;262099;213082 -156;'554;New Zealand;1640;Plywood and LVL;5516;Production;m3;21800;22600;22500;23500;25800;25500;18000;20600;24200;52000;57000;53300;57300;51000;43300;26000;33000;46000;42000;54000;60000;59000;55000;48000;55000;59000;62000;61000;62000;68000;54000;77000;97000;137000;164000;171000;195000;178000;230000;248000;259000;299056;343714;402147;404974;416066;427593;388540;255490;359941;360250;355553;326250;395059;394949;436364;411204;357116;358397;275398;301050;302491;218418 -156;'554;New Zealand;1640;Plywood and LVL;5616;Import quantity;m3;2400;1200;1100;700;600;2800;1400;1700;1500;1700;1800;1400;3300;14500;4500;5400;3400;2100;1900;1600;1900;1900;1500;1700;1800;2600;3100;3100;3000;5100;1900;3366;3951;4000;5000;5000;6000;7000;6000;9000;8000;12000;13000;14000;19000;27000;30000;27000;16903;37656;43619;50699;63879;119415;127323;103432;62546;71582;85641;110460;149766;174536;119602 -156;'554;New Zealand;1640;Plywood and LVL;5622;Import value;1000 USD;319;227;229;151;113;424;248;252;244;279;347;433;884;3601;2113;2148;1595;805;1656;1597;2011;1958;1259;1625;1514;1706;2054;2266;2010;2874;1361;2210;2596;3167;4175;6164;6396;6388;6755;6811;8734;9500;9850;13860;14870;17644;22483;19641;10637;22031;28792;32263;34237;33153;32111;34877;34742;43612;51190;70467;109082;125906;68776 -156;'554;New Zealand;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;100;700;2300;5800;9500;5500;2700;2200;100;900;4800;10900;27000;28400;37700;28100;18800;11400;11900;15700;18000;13000;17000;20400;25100;45960;62196;93000;128000;107000;102000;101000;115000;98000;101000;103000;101000;138000;112000;79000;76000;87000;56438;83418;92022;78636;60976;65090;62007;51701;82367;99981;85992;64826;41263;34161;35198 -156;'554;New Zealand;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;26;86;296;580;786;1013;620;566;88;305;1203;2606;7029;8827;10918;8534;6149;4562;4425;5429;6622;9136;12078;11953;12900;18002;27283;53315;69208;77284;72556;54839;66755;58501;61050;77250;81100;118404;98000;75237;84269;77910;64322;91302;109907;100889;76746;40463;32402;27977;49340;89329;79892;58859;39953;29365;32880 -156;'554;New Zealand;1607;Laminated Veneer Lumber (LVL);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;265352;161000 -156;'554;New Zealand;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;1732 -156;'554;New Zealand;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2060;1664 -156;'554;New Zealand;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27754;37278 -156;'554;New Zealand;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18896;24628 -156;'554;New Zealand;1646;Particle board and OSB (1961-1994);5516;Production;m3;2300;3800;3800;7100;9100;14000;14800;24600;40000;53300;55800;64200;119000;118000;128000;160000;107000;121000;121000;147000;156000;155000;140000;158000;188000;180000;183000;175000;171000;172000;158000;162000;177000;173000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -156;'554;New Zealand;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;1100;1100;1100;1100;1100;1500;1300;1600;600;600;200;500;3400;1800;1500;1000;400;919;1451;2000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -156;'554;New Zealand;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;57;57;57;57;57;199;252;298;90;90;18;73;890;662;580;473;116;346;596;890;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -156;'554;New Zealand;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;200;500;1500;1100;500;900;700;1500;3900;7800;19100;47400;67700;54200;30600;38200;38700;31800;31000;36100;43300;48800;59200;79300;71326;92819;111000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -156;'554;New Zealand;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;15;63;235;168;114;204;190;117;533;1079;2595;7863;11909;7733;4998;5557;5908;5042;4150;5971;8700;12145;13316;18248;15526;24818;31648;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -156;'554;New Zealand;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;167000;166000;215000;165000;177000;212000;191000;205000;222000;243799;237790;241823;256266;226490;155313;142045;156196;163703;156037;151994;149223;153659;157786;149449;135078;122161;140637;123316;114844 -156;'554;New Zealand;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2000;3000;2000;4000;2000;1000;1000;2000;1000;2000;2000;2000;8000;5421;8124;4913;6522;3218;1863;2633;1651;3300;2791;10089;11133;9690;29681;5205 -156;'554;New Zealand;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;882;1150;995;731;1152;598;294;348;545;300;770;560;802;1191;661;722;875;742;916;458;530;744;1634;2395;3229;3729;8237;8771;4096 -156;'554;New Zealand;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121000;117000;98000;70000;77000;101000;94000;90000;111000;112000;109000;103000;125000;126000;84160;63478;68735;67348;77000;78000;73820;66553;80992;72115;76253;46364;49934;34507;30366 -156;'554;New Zealand;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42038;49486;44660;21072;22994;26568;25831;29250;34500;47520;40000;33000;41606;40116;32201;30909;33521;33522;34529;31151;34405;25215;20067;25341;22219;18607;19499;14688;13899 -156;'554;New Zealand;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;756;2740;202;782;3137;3274;943;1552;1458;4513;2096;9595;18869;1757 -156;'554;New Zealand;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107;359;78;208;744;678;453;697;857;1182;849;4774;10190;864 -156;'554;New Zealand;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;159;0;0;34;5;106;40;40 -156;'554;New Zealand;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102;0;0;8;3;44;38;38 -156;'554;New Zealand;1874;Fibreboard;5516;Production;m3;32100;27700;29700;32200;34300;61200;60400;66000;68200;75600;79700;79000;89300;82200;87900;130000;137000;136000;136000;115000;129000;132000;121000;142000;146000;164000;245000;392000;421000;443000;511000;529000;550000;653000;661000;595000;611000;580000;710000;795000;819000;882000;869000;872000;861000;907000;837000;765000;649000;665787;706160;720565;702765;692938;719568;766336;777180;791520;750551;681235;737638;714594;599340 -156;'554;New Zealand;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2041;1976;3000;4700;4400;8000;10000;8000;6000;5000;5000;5000;6000;7000;12000;17753;12000;11340;12996;8100;10400;11530;19688;23685;15724;29931;27084;26604;23196;39508;30184;29034 -156;'554;New Zealand;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1026;1182;1772;2670;3044;3642;4308;3412;2889;2060;2261;2756;3239;3908;5902;7140;5944;4244;5837;5327;7654;7533;9690;11878;10338;10320;12188;14179;13539;18859;21064;13702 -156;'554;New Zealand;1874;Fibreboard;5916;Export quantity;m3;300;700;1200;900;1200;2274;1874;5454;9540;8423;11877;13498;14067;3664;2506;6200;4300;6200;16200;19400;25400;24800;32700;28300;20400;33900;96500;190000;214000;275000;316700;374095;365979;368000;372000;354000;403000;389000;517000;607000;640000;679000;668000;679000;676000;720000;564000;533000;513779;509933;596231;598818;544637;531757;587283;601755;585617;600271;454377;506029;531057;541977;423250 -156;'554;New Zealand;1874;Fibreboard;5922;Export value;1000 USD;41;64;99;93;144;207;208;483;812;731;1178;1424;1731;683;532;689;776;1354;4046;4590;6558;5948;7599;6026;2968;8820;23384;23384;59377;72999;85345;96879;105501;120124;136320;117275;105305;73572;110685;130280;121850;149317;115080;154786;161102;168829;163565;168775;141235;158424;189183;211842;190763;218115;256002;192620;191812;202058;183491;155422;184632;218008;166265 -156;'554;New Zealand;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56000;51000;54000;51000;52000;58000;60000;65000;12000;9000;9000;9000;9000;4000;4000;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -156;'554;New Zealand;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;1000;4000;5000;2000;2000;1000;1000;1000;2000;2000;3000;2007;5000;5929;7106;4000;4000;4000;11198;11869;6382;10846;13222;8112;8024;10920;8858;9753 -156;'554;New Zealand;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1292;1104;1764;2102;1145;953;678;675;856;1119;1533;1612;1958;2894;2817;4565;3278;4367;3468;5459;5910;4844;4499;4566;5288;4497;5752;6525;5865 -156;'554;New Zealand;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;3000;3000;7000;4000;8000;10000;9000;7000;7000;10000;7000;3000;3000;557;33;856;566;1467;64;3;186;16;40;22;310;808;351;2338 -156;'554;New Zealand;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1642;1403;1379;2174;1763;4292;3409;3157;3000;3148;3990;3043;1212;1212;150;9;203;159;400;44;4;84;11;4;13;67;451;98;343 -156;'554;New Zealand;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;454000;409000;419000;398000;530000;620000;638000;687000;841000;844000;828000;872000;801000;744000;645000;665787;706160;720565;702765;692938;719568;766336;777180;791520;750551;681235;737638;714594;599340 -156;'554;New Zealand;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;3000;4000;5000;6000;3000;2000;3000;3000;3000;3000;8000;13046;4000;2769;2685;2100;4400;5530;7549;11205;8593;18250;12553;16634;14281;28106;20216;17420 -156;'554;New Zealand;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1028;1741;1878;2206;2267;1518;888;1275;1550;1700;1575;4090;4144;1989;714;699;1584;2946;3714;3948;5577;5096;5373;7107;8501;8355;12848;14168;7544 -156;'554;New Zealand;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;360000;341000;386000;379000;512000;598000;627000;665000;651000;656000;646000;671000;545000;529000;505996;504654;590841;593618;539674;530636;586694;601041;584902;599636;454352;505569;529732;541503;420527 -156;'554;New Zealand;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;132482;113749;101757;71093;108711;125809;117982;145200;110500;148800;153800;158186;159650;167069;138891;157093;187710;210187;189061;217638;255782;192335;191530;201782;183475;155269;183905;217846;165699 -156;'554;New Zealand;1650;Other fibreboard;5516;Production;m3;9000;7800;7900;8700;9100;35200;34000;34000;35200;39600;43200;44400;55600;48800;56400;96000;112000;112000;112000;30000;27000;31000;27000;32000;33000;37000;55000;88000;95000;100000;115000;120000;125000;148000;151000;135000;138000;131000;128000;117000;121000;130000;16000;19000;24000;26000;27000;17000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -156;'554;New Zealand;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;173;201;800;700;400;0;0;0;1000;2000;1000;1000;1000;2000;1000;2700;3000;2642;3205;2000;2000;2000;941;611;749;835;1309;1858;891;482;1110;1861 -156;'554;New Zealand;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;149;345;350;199;0;0;0;418;494;311;350;420;800;200;1038;1061;713;573;465;341;351;283;391;398;448;515;390;687;259;371;293 -156;'554;New Zealand;1650;Other fibreboard;5916;Export quantity;m3;;;;100;200;800;400;400;800;2000;2400;3600;2800;400;400;800;1000;1300;5600;1500;1300;1600;1600;5900;2500;700;800;10000;14000;25000;26700;21891;14021;12000;9000;10000;14000;3000;1000;1000;3000;5000;10000;16000;20000;42000;16000;1000;7226;5246;4534;4634;3496;1057;586;528;699;595;3;150;517;123;385 -156;'554;New Zealand;1650;Other fibreboard;5922;Export value;1000 USD;;;;19;44;39;26;27;41;46;67;98;91;36;54;51;58;236;1101;393;379;259;259;690;699;132;380;380;9377;12999;15345;5394;4060;1485;2196;2123;2169;305;211;179;459;960;1580;2838;3312;7600;2703;494;2194;1322;1270;1496;1302;433;216;201;271;272;3;86;276;64;223 -156;'554;New Zealand;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;23100;19900;21800;23500;25200;26000;26400;32000;33000;36000;36500;34600;33700;33400;31500;34000;25000;24000;24000;85000;102000;101000;94000;110000;113000;127000;190000;304000;326000;343000;396000;409000;425000;505000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -156;'554;New Zealand;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1868;1775;2200;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -156;'554;New Zealand;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;948;1033;1427;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -156;'554;New Zealand;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;300;700;1200;800;1000;1474;1474;5054;8740;6423;9477;9898;11267;3264;2106;5400;3300;4900;10600;17900;24100;23200;31100;22400;17900;33200;95700;180000;200000;250000;290000;352204;351958;356000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -156;'554;New Zealand;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;41;64;99;74;100;168;182;456;771;685;1111;1326;1640;647;478;638;718;1118;2945;4197;6179;5689;7340;5336;2269;8688;23004;23004;50000;60000;70000;91485;101441;118639;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -156;'554;New Zealand;1879;Total fibre furnish;5510;Production;t;280000;308400;375400;402700;417500;436100;481100;493800;561800;616000;618600;638300;858000;944000;996000;1144000;1131000;1172000;1118000;1190000;1271000;1200000;1112000;1174000;1246000;1206000;1198000;1309000;1362000;1341000;1457000;1434000;1476000;1491000;1525000;1515000;1556000;1508000;1577000;1796000;1692000;1751000;1621000;1834787;1840961;1742732;1788040;1798681;1940386;2089795;2186264;2148490;1983049;2082442;1898762;2005300;2005188;1970392;1981914;1600002;1622875;1617781;1265000 -156;'554;New Zealand;1879;Total fibre furnish;5610;Import quantity;t;1000;1200;600;600;600;500;500;10600;11900;17800;15200;13300;12700;11000;4200;7200;2700;4300;3900;8800;5800;15300;7900;14500;14800;17600;17100;13100;11200;15800;11600;28060;15644;16000;17000;16400;11200;15000;17100;4300;21000;6000;8000;4100;3000;5856;24681;25825;20231;20829;19620;18617;11141;41976;51451;50135;53225;58301;54561;56664;51653.64;54039;33884 -156;'554;New Zealand;1879;Total fibre furnish;5622;Import value;1000 USD;80;86;72;72;72;61;61;1119;1348;3486;1372;2068;2439;2368;949;2002;865;1432;1581;5470;3145;7109;3982;7268;7152;6624;10276;8518;7475;10836;6436;15972;6559;7594;15009;7347;4945;7183;7745;2452;8623;2641;4086;2630;2289;4687;17188;16978;12120;15869;15466;12921;7918;25324;32045;23289;26106;36658;33259;27837;35061.19;48476;23140 -156;'554;New Zealand;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;100;94000;79500;97200;100400;112000;144500;236800;332200;377100;454700;437600;469200;479200;516800;419400;474200;471800;441200;514500;509900;512700;597900;655600;678200;680729;744545;729100;705700;772800;648000;738000;717000;742000;882000;882000;859000;1057000;1060000;1080000;1121000;1052000;1126257;1021958;1077725;1109235;1148682;1181954;1225743;1243543;1281728;1232466;1266372;1145658;1176435;1135392;897036 -156;'554;New Zealand;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;15;7688;7498;9952;10773;12702;20313;36516;65879;63499;71463;73630;112506;130895;142943;116190;113944;116079;102080;114817;152998;154322;253205;254080;223053;216417;207581;243005;351494;278578;212542;212139;208264;306241;245835;237592;252520;357690;343327;406416;488975;455375;390870;494942;535601;477437;509053;565301;512096;483952;591381;640306;498999;428463;575813;635820;407830 -156;'554;New Zealand;1878;Pulp for paper;5510;Production;t;280000;308400;375400;402700;417500;436100;481100;493800;561800;576000;580600;600300;816000;893000;953000;1103000;1084000;1097000;1043000;1122000;1205000;1134000;1042000;1072000;1135000;1110000;1108000;1211000;1259000;1234000;1350000;1282000;1368000;1359000;1410000;1355000;1407000;1418000;1467000;1606000;1501000;1551000;1419000;1596787;1604961;1487732;1533040;1543681;1520386;1542795;1617264;1579490;1433049;1517442;1471762;1482300;1465188;1430392;1441914;1331751;1322875;1276781;924000 -156;'554;New Zealand;1878;Pulp for paper;5610;Import quantity;t;1000;1200;600;600;600;500;500;10600;11900;17800;15200;13300;12700;11000;4200;7200;2700;4300;3900;8800;5800;15300;7900;14500;14800;17600;17100;13100;11200;15800;11600;27863;15215;16000;17000;16400;11200;15000;17100;4300;21000;6000;8000;4100;3000;5388;24212;25152;19783;20536;19506;18364;11023;41833;51376;49869;48807;52775;49343;53093;51508.64;54000;33874 -156;'554;New Zealand;1878;Pulp for paper;5622;Import value;1000 USD;80;86;72;72;72;61;61;1119;1348;3486;1372;2068;2439;2368;949;2002;865;1432;1581;5470;3145;7109;3982;7268;7152;6624;10276;8518;7475;10836;6436;15903;6518;7594;15009;7347;4945;7183;7745;2452;8623;2641;4086;2630;2289;4521;16926;16595;11800;15568;15347;12740;7798;25163;31958;23215;25910;36389;33036;27692;35040.19;48461;23131 -156;'554;New Zealand;1878;Pulp for paper;5910;Export quantity;t;;;;;;;100;94000;79500;95200;97400;109000;141500;232000;327200;370100;447300;430400;463800;475000;514200;416900;470500;458900;428200;503800;483400;483400;567900;625600;648200;637142;698627;665600;640900;679800;586000;708000;627000;742000;795000;768000;675000;861000;837000;838000;867000;791000;882789;780806;814884;852791;882754;894444;934670;928004;946391;888825;953250;879929;883617;879275;637688 -156;'554;New Zealand;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;15;7688;7498;9847;10622;12551;20162;35802;65459;63084;71034;73182;111933;130330;142571;115809;113501;114907;100951;113915;149796;149796;248628;249503;218476;211008;203367;235844;338330;267333;205676;210179;199173;306241;234223;227600;235762;337052;319023;380616;452840;406790;365339;452318;482743;438557;471145;509479;469119;436954;530258;595409;471580;407757;524605;604066;385961 -156;'554;New Zealand;1875;Wood pulp;5510;Production;t;280000;308400;375400;402700;417500;436100;481100;493800;561800;576000;580600;600300;816000;893000;953000;1103000;1084000;1097000;1043000;1122000;1205000;1134000;1042000;1072000;1135000;1110000;1108000;1211000;1259000;1234000;1350000;1287000;1373000;1364000;1415000;1360000;1412000;1418000;1467000;1606000;1501000;1551000;1419000;1596787;1604961;1487732;1533040;1543681;1520386;1542795;1617264;1579490;1433049;1517442;1471762;1482300;1465188;1430392;1441914;1331751;1322875;1276781;924000 -156;'554;New Zealand;1875;Wood pulp;5610;Import quantity;t;1000;1300;1000;900;900;900;800;10900;12400;18700;15800;14000;14600;11600;6700;8000;9200;6400;6000;9500;6900;16300;8700;15300;15600;18400;17900;13900;12000;16600;12400;27780;14762;15500;17000;16400;11200;15000;17100;4300;21000;6000;8000;4100;3000;5000;24000;25000;19658;20123;19073;17794;10767;41574;51307;49773;48706;52669;49263;52790;51265.64;53669;33546 -156;'554;New Zealand;1875;Wood pulp;5622;Import value;1000 USD;80;100;127;116;127;127;115;1166;1424;3615;1482;2199;2835;2518;1912;2358;3041;2106;2400;6040;3914;7609;4363;7649;7533;7005;10657;8899;7856;11217;6817;15814;6284;7330;15009;7347;4945;7183;7745;2452;8623;2641;4086;2630;2289;3912;16668;16418;11667;14737;14331;11739;7165;24427;31727;23149;25823;36318;32927;27328;34390.19;47562;22509 -156;'554;New Zealand;1875;Wood pulp;5910;Export quantity;t;;;;;;;100;94000;79500;95200;97400;109000;141500;232000;327200;370100;447300;430400;463800;475000;514200;416900;470500;458900;428200;503800;483400;483400;567900;625600;648200;642216;699175;665600;640900;679800;586000;708000;627000;742000;795000;768000;675000;861000;837000;838000;867000;791000;882789;780806;814884;852791;882725;894442;934670;928004;946391;888825;954464;881149;884644;881862;640848 -156;'554;New Zealand;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;15;7688;7498;9847;10622;12551;20162;35802;65459;63084;71034;73182;111933;130330;142571;115809;113501;114907;100951;113915;149796;149796;248628;249503;218476;213179;203679;235844;338330;267333;205676;210179;199173;306241;234223;227600;235762;337052;319023;380616;452840;406790;365339;452318;482743;438557;471046;509474;469119;436954;530258;595409;471655;407795;524665;604392;386258 -156;'554;New Zealand;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;681256;664969;649373;581626;590901;494206;264802 -156;'554;New Zealand;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7047;10482;6369;5671;5700.64;6300;4098 -156;'554;New Zealand;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3692;6231;4281;3223;3456.57;4400;2432 -156;'554;New Zealand;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;464067;462576;476826;420782;454042;456362;240519 -156;'554;New Zealand;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;229454;245400;192877;165673;198160;243659;113095 -156;'554;New Zealand;1654;Mechanical wood pulp (1961-2016);5510;Production;t;123500;137600;191300;206600;221200;208600;224700;234700;245000;258900;262600;260000;351000;372000;388000;522000;474000;490000;464000;566000;565000;531000;471000;499000;572000;578000;577000;610000;595000;575000;616000;682000;673000;664000;700000;715000;727000;761000;760000;824000;795000;839000;795000;852787;852961;744732;748040;742681;767386;730795;726264;707579;634049;643806;652138;680775;;;;;;; -156;'554;New Zealand;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;1000;1200;600;600;600;500;500;500;500;1100;1100;1100;1100;1100;1100;1100;100;100;100;100;100;100;100;1700;600;2400;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;19;179;249;421;386;254;652;609;;;;;;; -156;'554;New Zealand;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;80;86;72;72;72;61;61;61;61;187;187;187;187;187;187;187;35;22;35;35;35;35;35;723;200;858;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;20;157;213;374;381;225;655;298;;;;;;; -156;'554;New Zealand;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;100;2500;2000;6700;9600;7900;7200;72100;139000;159800;237000;201000;233000;258400;269400;214200;251000;279100;258800;317600;309400;309400;313900;330100;355300;317909;309130;329600;341300;351100;296000;361000;228000;324000;347000;376000;305000;412000;399000;223000;237000;220000;251377;194979;201771;175247;229303;227533;250817;265209;;;;;;; -156;'554;New Zealand;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;15;183;160;546;802;680;735;8200;18184;16887;26437;24656;38899;45666;46964;42251;48885;52567;46040;62376;77205;77205;95918;92800;92132;77011;72634;95156;127505;99366;77257;77616;42365;70310;62456;70343;75400;117216;115500;60000;70100;62010;79913;66955;75006;67954;98265;103243;101625;102295;;;;;;; -156;'554;New Zealand;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;5600;6000;5200;4500;6300;6800;6400;6900;9400;9200;8900;8100;9000;27000;21000;21000;16000;17000;16000;16000;21000;25000;20000;22000;22000;20000;20000;19000;38000;48000;58000;29000;25000;30000;35000;34000;33000;33000;26000;28000;27000;27000;29000;24000;47000;36000;32000;35000;33000;28000;31000;29911;30000;41311;38000;39311;;;;;;; -156;'554;New Zealand;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;0;0;0;0;0;0;0;1000;5000;4000;1000;1000;3000;1000;1000;1000;1000;60;0;1922;16887;17648;5536;;;;;;; -156;'554;New Zealand;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;0;0;0;0;0;0;0;322;1992;1900;980;1200;2100;1045;484;484;484;56;0;1259;11088;13051;2681;;;;;;; -156;'554;New Zealand;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10833;28697;14600;0;0;0;0;0;0;0;0;0;0;0;139000;169000;152000;182195;177891;191781;208002;201485;207342;219760;202868;;;;;;; -156;'554;New Zealand;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4731;10101;5544;0;0;0;0;0;0;0;0;0;0;0;61966;80038;80122;66079;85684;86094;90393;88161;95249;82108;75690;;;;;;; -156;'554;New Zealand;1656;Chemical wood pulp;5510;Production;t;150900;164800;178900;191600;190000;220700;250000;252200;307400;307900;309100;332200;456000;494000;544000;560000;594000;590000;563000;540000;619000;578000;551000;551000;541000;512000;511000;582000;626000;611000;676000;571000;670000;665000;675000;606000;647000;624000;681000;754000;679000;685000;595000;720000;705000;707000;753000;766000;720000;784000;860000;842000;769000;832325;781624;762214;783932;765423;792541;750125;731974;782575;659198 -156;'554;New Zealand;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;10100;11400;16700;14100;12200;11600;9900;3100;6100;2600;4200;3800;8700;5700;15200;7800;12800;14200;15200;17100;13100;11200;15800;11600;27558;14682;15500;17000;16400;11200;15000;17100;4300;20000;1000;4000;3100;2000;2000;23000;24000;18639;18944;18764;17373;8459;24433;32987;43627;41659;42185;42894;47091;45537;47364;29443 -156;'554;New Zealand;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;1058;1287;3299;1185;1881;2252;2181;762;1815;830;1410;1546;5435;3110;7074;3947;6545;6952;5766;10276;8518;7475;10836;6436;15744;6256;7330;15009;7347;4945;7183;7745;2452;8301;649;2186;1650;1089;1812;15623;15934;11163;14096;14062;11365;5525;13114;18008;20170;22131;30085;28646;24094;30922.62;43141;20056 -156;'554;New Zealand;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;91500;77500;88500;87800;101100;134300;159900;188200;210300;210300;229400;230800;216600;244800;202700;219500;179800;169400;186200;174000;174000;254000;295500;292900;308400;360800;321400;299600;328700;290000;347000;399000;418000;448000;392000;370000;449000;438000;476000;461000;419000;449217;407936;421332;469542;451936;459567;464093;459927;482324;426249;476345;459146;429433;422913;397169 -156;'554;New Zealand;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;7505;7338;9301;9820;11871;19427;27602;47275;46197;44597;48526;73034;84664;95607;73558;64616;62340;54911;51539;72591;72591;152710;156703;126344;129266;120632;135144;210825;167967;128419;132563;156808;235931;171767;157257;160362;219836;203523;258650;302702;264658;219347;299679;321643;280210;284620;310982;285386;258969;300804;350009;278533;242083;326362;360407;272866 -156;'554;New Zealand;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;191600;127600;147800;176300;170400;213500;210900;210100;228600;334000;346000;341000;367000;374000;375000;370000;322000;359000;349000;332000;332000;325000;290000;289000;338000;358000;330000;349000;291000;326000;337000;324000;282000;344000;295000;319000;353000;295000;270000;271000;301000;286000;254000;263000;298000;261000;298000;351000;306000;282000;345968;386955;337537;347728;339518;351547;332732;324681;407293;366000 -156;'554;New Zealand;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2000;2500;0;0;0;0;4000;0;2000;3000;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;623;1999;1999 -156;'554;New Zealand;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1860;1143;0;0;0;0;1306;0;988;1563;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;552.44;1878;1878 -156;'554;New Zealand;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;89400;75000;85900;85700;98600;126200;145700;147900;153100;151300;166800;158100;152200;172700;133500;137400;123000;127000;117200;110900;110900;152400;175500;192900;128300;154900;150900;116900;146200;150000;161000;173000;133000;113000;100000;97000;83000;92000;115000;111000;107000;105933;97071;94052;108521;106003;137850;130753;109862;147575;184914;252229;272911;255316;253391;235703 -156;'554;New Zealand;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;7258;7000;8938;9502;11470;17981;24389;34784;30697;28648;31863;47046;57515;63829;45476;37663;41030;38853;27949;42104;42104;82327;85000;80000;50936;49606;58365;69531;78126;63650;59141;62715;66415;43190;39143;40813;38082;44912;60950;71659;68235;53075;72090;72442;69917;70528;97516;85636;68399;99050;154741;154357;144844;192596;211830;161165 -156;'554;New Zealand;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;62400;72900;73700;81800;93900;97000;99000;103600;122000;148000;203000;193000;220000;215000;193000;218000;260000;229000;219000;219000;216000;222000;222000;244000;268000;281000;327000;280000;344000;328000;351000;324000;303000;329000;362000;401000;384000;415000;324000;419000;419000;453000;490000;468000;459000;486000;509000;536000;487000;486357;394669;424677;436204;425905;440994;417393;407293;375282;293198 -156;'554;New Zealand;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;6200;7200;11400;10900;9600;8400;6900;1300;1300;1300;3000;2700;5400;4800;10700;4600;9600;11000;12000;13200;12100;9600;13500;9300;25561;11694;10300;11000;10600;5100;5000;7000;300;14000;0;0;0;0;0;7000;0;0;0;1682;1682;2025;23989;32609;43348;41528;42087;42695;46998;44684;45171;27308 -156;'554;New Zealand;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;644;906;2521;726;1496;1626;1562;379;379;379;998;1090;3255;2699;4978;2429;5027;5434;4248;8034;7830;6320;9264;4864;14434;4940;4836;9157;4669;2158;2636;3125;141;5691;0;0;0;0;0;4908;0;0;0;1371;1371;1381;12661;17725;19974;22000;29971;28401;23961;29898.18;40786;17832 -156;'554;New Zealand;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;2100;2500;2600;2100;2500;8100;14200;40300;57200;59000;62600;72700;64400;72100;69200;82100;56800;42400;69000;63100;63100;101600;120000;100000;180100;205900;170500;182700;182500;140000;186000;226000;285000;335000;287000;270000;363000;346000;361000;350000;312000;342777;310826;326896;361021;345933;321707;333340;350065;334749;241335;224116;186235;174117;169522;161466 -156;'554;New Zealand;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;247;338;363;318;401;1446;3213;12491;15500;15949;16663;25988;27149;31778;28082;26953;21310;16058;23590;30487;30487;70383;71703;46344;78330;71026;76779;141294;89841;64769;73422;94093;169516;128577;115914;117859;179841;158611;197700;231043;196423;166171;227564;248887;210293;214092;213430;199750;190570;201754;195268;124176;97239;133766;148577;111701 -156;'554;New Zealand;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;129;98;199;93;230;194;136 -156;'554;New Zealand;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;130;114;245;133;472;477;346 -156;'554;New Zealand;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -156;'554;New Zealand;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -156;'554;New Zealand;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;2100;2900;2200;1300;500;500;1600;1600;1600;1000;100;600;600;600;1000;1000;1000;1000;1000;400;400;1000;1000;1000;1000;2987;5200;2000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;7;0;0;0;0;0;0;;;;;;; -156;'554;New Zealand;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;210;201;299;170;68;86;325;325;325;364;28;245;245;245;665;665;665;665;665;286;286;715;715;715;715;1315;2494;2243;0;0;0;0;0;0;0;0;0;0;0;0;0;0;30;0;0;0;0;0;0;;;;;;; -156;'554;New Zealand;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;1800;1300;3100;1900;2100;2700;1400;200;3200;300;1100;500;2700;300;3500;2200;2200;2200;2200;3500;600;600;1300;1300;997;1;0;2000;3300;6100;10000;10100;4000;2000;1000;2000;100;2000;2000;16000;24000;18639;18937;17082;15691;6434;444;378;279;;;;;;; -156;'554;New Zealand;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;204;180;479;289;317;540;294;58;1111;87;384;211;1935;166;1431;853;853;853;853;1956;402;440;857;857;595;1;0;1749;1535;2787;4547;4620;2311;1304;649;1198;87;1089;1812;10715;15934;11163;14066;12691;9994;4144;453;283;196;;;;;;; -156;'554;New Zealand;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;3000;3000;0;0;0;0;507;39;384;0;0;10;0;0;;;;;;; -156;'554;New Zealand;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2200;1690;1913;0;0;0;0;101;25;314;0;0;36;0;0;;;;;;; -156;'554;New Zealand;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;0;0;0;0 -156;'554;New Zealand;1667;Dissolving wood pulp;5610;Import quantity;t;;100;400;300;300;400;300;300;500;900;600;700;1900;600;2500;800;6500;2100;2100;700;1100;1000;800;800;800;800;800;800;800;800;800;222;6;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;20;1;0;2;0;28;28;5;5 -156;'554;New Zealand;1667;Dissolving wood pulp;5622;Import value;1000 USD;;14;55;44;55;66;54;47;76;129;110;131;396;150;963;356;2176;674;819;570;769;500;381;381;381;381;381;381;381;381;381;70;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;13;0;0;2;0;11;11;21;21 -156;'554;New Zealand;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5074;548;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;1293;1221;1169;2587;3160 -156;'554;New Zealand;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2171;312;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;245;39;143;326;297 -156;'554;New Zealand;1668;Pulp from fibres other than wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0 -156;'554;New Zealand;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;305;459;500;0;0;0;0;0;0;0;0;0;0;0;388;212;152;125;413;433;570;256;259;89;97;101;108;80;331;271;336;333 -156;'554;New Zealand;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;159;237;264;0;0;0;0;0;0;0;0;0;0;0;609;258;177;133;831;1016;1001;633;736;244;66;87;73;109;375;661;920;643 -156;'554;New Zealand;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;2;0;0;0;0;79;1;142;0;0 -156;'554;New Zealand;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;5;0;0;0;0;170;1;83;0;0 -156;'554;New Zealand;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101;84;158;147;188;256;183;177;264;184;288;409;570;422;180 -156;'554;New Zealand;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115;86;214;224;223;297;171;177;276;185;266;380;545;445;214 -156;'554;New Zealand;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;0;0;0;0;0;0;0;3;3 -156;'554;New Zealand;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;0;0;0;0;2;2 -156;'554;New Zealand;1669;Recovered paper;5510;Production;t;;;;;;;;;;40000;38000;38000;42000;51000;43000;41000;47000;75000;75000;68000;66000;66000;70000;102000;111000;96000;90000;98000;103000;107000;107000;152000;108000;132000;115000;160000;149000;90000;110000;190000;191000;200000;202000;238000;236000;255000;255000;255000;420000;547000;569000;569000;550000;565000;427000;523000;540000;540000;540000;268251;300000;341000;341000 -156;'554;New Zealand;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;197;429;0;0;0;0;0;0;0;0;0;0;0;0;468;469;673;448;293;114;253;118;143;75;266;4418;5526;5218;3571;145;39;10 -156;'554;New Zealand;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;41;0;0;0;0;0;0;0;0;0;0;0;0;166;262;383;320;301;119;181;120;161;87;74;196;269;223;145;21;15;9 -156;'554;New Zealand;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;2000;3000;3000;3000;4800;5000;7000;7400;7200;5400;4200;2600;2500;3700;12900;13000;10700;26500;29300;30000;30000;30000;43587;45918;63500;64800;93000;62000;30000;90000;0;87000;114000;184000;196000;223000;242000;254000;261000;243468;241152;262841;256444;265928;287510;291073;315539;335337;343641;313122;265729;292818;256117;259348 -156;'554;New Zealand;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;105;151;151;151;714;420;415;429;448;573;565;372;381;443;1172;1129;902;3202;4526;4577;4577;4577;5409;4214;7161;13164;11245;6866;1960;9091;0;11612;9992;16758;20638;24304;25800;36135;48585;25531;42624;52858;38880;37908;55822;42977;46998;61123;44897;27419;20706;51208;31754;21869 -156;'554;New Zealand;1876;Paper and paperboard;5510;Production;t;191900;226100;300800;316100;354400;354000;371800;395800;446000;461900;468800;453400;533900;547000;555000;635000;641000;641000;631000;673000;724000;723000;671000;694000;770000;671000;644000;700000;735000;757000;815000;738000;836000;864000;903000;865000;890000;844000;817000;877000;839000;873585;810130;916913;951181;881399;864451;873047;884639;888822;808677;847189;730520;725595;736068;739193;725132;722393;723764;670026;579168;533154;488247 -156;'554;New Zealand;1876;Paper and paperboard;5610;Import quantity;t;64200;41400;40800;36500;36900;27900;20100;25200;19500;28700;20200;34800;43000;56000;31400;33600;32400;34100;39100;44000;32700;46900;37700;36400;89800;101900;131200;99500;92700;117600;109000;246840;185394;156400;190500;170600;237300;281000;292000;306000;322000;350000;423000;464000;482000;470000;478000;469117;440292;450450;450345;402206;432338;448384;430507;453904;448895;457180;441899;400549;437842.08;400233;331268 -156;'554;New Zealand;1876;Paper and paperboard;5622;Import value;1000 USD;17982;13554;12862;11471;11539;7685;7071;7942;9109;10230;10299;11394;14442;28815;21878;26780;31240;30551;46228;60829;50471;76569;46332;46947;90323;97145;139940;137067;137808;168682;160571;255698;221703;190295;265356;240458;266540;257125;226889;223976;221727;260274;322215;398498;428853;419912;455016;457732;328291;457751;494797;454956;473544;513768;500972;391750;391213;399222;408791;362371;428055.37;394800;345031 -156;'554;New Zealand;1876;Paper and paperboard;5910;Export quantity;t;46100;43200;109400;114800;112200;114900;113400;137400;147800;145300;145100;152200;137500;171500;173700;247700;270000;289000;317600;322800;336200;259600;288300;284700;271700;249800;209400;208000;272800;336200;342500;386389;398674;369600;331500;385000;409300;446800;449300;465600;502850;505300;447050;622100;673100;593100;510800;736800;680445;590545;583393;544696;450920;419422;422220;432802;417433;422835;325813;304669;379238.7;278661;213797 -156;'554;New Zealand;1876;Paper and paperboard;5922;Export value;1000 USD;7808;6714;16364;16728;16051;11692;12704;18589;19404;19797;19715;20823;22170;32102;44154;73346;83096;80540;118074;132866;152168;118578;107937;101425;116156;100281;107924;108341;165859;192277;192805;209272;189804;203829;236481;279236;220867;234370;228865;247889;246264;231205;235755;321316;372134;332143;335320;478214;388576;423834;461560;403891;316730;340151;338035;270306;266609;297236;233645;208078;271919.63;229144;133223 -156;'554;New Zealand;2042;Graphic papers;5510;Production;t;93300;115500;170700;199300;215200;206800;220400;224200;228400;243600;241100;236800;249000;243000;253000;314000;299000;299000;293000;352000;364000;359000;304000;280000;346000;258000;251000;302000;336000;333000;356000;396000;379000;386000;409000;392000;411000;405000;371000;389000;342000;355585;362130;379913;378181;307399;284451;288047;305639;297822;305677;268364;144520;143993;142929;145095;144570;150059;141795;94326;27402;0;0 -156;'554;New Zealand;2042;Graphic papers;5610;Import quantity;t;48000;29600;26600;20800;18200;15500;11200;11500;8700;17400;9300;9800;22000;30000;14900;21100;18100;24500;26200;26700;20600;33500;28700;24200;79500;94000;118100;75600;74600;100000;89000;103305;108794;65200;73300;65400;141000;138000;137000;128000;131000;155000;191000;242000;254000;233000;236000;237117;245017;231513;205876;196604;205842;206903;187351;173829;172543;158889;131090;95484;127431.68;112001;89569 -156;'554;New Zealand;2042;Graphic papers;5622;Import value;1000 USD;10747;8272;7982;6274;5902;3843;3935;3810;4216;4934;4087;5385;7842;14362;10133;13357;15211;18097;26788;35042;25438;47353;25849;22889;79386;86116;121350;97492;95942;121839;113728;106467;114802;67787;91447;89506;149162;130291;124492;119569;116353;137044;168753;217937;239190;226027;239627;244948;154327;239851;229336;222306;230345;227751;225839;151671;148705;141360;123683;86134;114308.69;120635;100909 -156;'554;New Zealand;2042;Graphic papers;5910;Export quantity;t;45200;42200;107600;113900;111500;112600;109500;119800;120600;119000;127100;124200;111500;120500;106700;165000;191000;197000;209300;242800;235700;161100;145500;175800;190500;145300;123000;125000;181900;233200;243500;285531;261574;254500;232900;262100;265000;259700;230200;229300;214500;220300;196800;277800;300800;220800;139800;195800;181884;206067;204454;193155;113026;110311;130301;136793;108169;100682;600;522;519;1522;1364 -156;'554;New Zealand;2042;Graphic papers;5922;Export value;1000 USD;7487;6365;16113;16455;15835;11490;12098;16150;15846;15379;16091;15791;15219;18618;23659;46548;56362;51133;71301;93232;98636;71728;52447;52349;77199;54382;56096;58854;107736;126277;130100;142922;120109;132516;153249;195049;139449;141729;124312;127128;118565;108306;138165;158930;178180;129263;103360;144031;126155;158154;169767;138718;83111;97012;103978;86636;58693;48795;1267;1053;1493.78;2094;1619 -156;'554;New Zealand;1671;Newsprint;5510;Production;t;93300;115500;170700;187300;198700;186800;198700;202700;207400;213900;218000;213200;217800;209000;219000;275000;276000;277000;260000;319000;323000;322000;269000;242000;298000;212000;207000;255000;296000;295000;321000;379000;369000;372000;396000;379000;397000;393000;361000;378000;342000;351585;362130;379913;378181;307399;284451;288047;305639;297822;305677;268364;144520;143993;142929;145095;144570;150059;141795;94326;27402;0;0 -156;'554;New Zealand;1671;Newsprint;5610;Import quantity;t;27200;10700;8200;5200;4100;2100;800;700;800;500;500;400;8000;6000;2300;8600;200;7200;200;300;4400;100;13000;8500;21100;47400;60900;10900;13100;18700;6000;2305;624;100;0;0;0;0;0;0;0;0;0;9000;3000;4000;4000;1117;5160;27381;22095;13384;18180;28736;17559;9773;8051;9128;1785;4106;17922.57;35103;22058 -156;'554;New Zealand;1671;Newsprint;5622;Import value;1000 USD;3695;1571;1145;716;597;222;84;109;122;80;79;74;998;1562;690;2739;90;2290;130;207;2505;53;7542;4582;9569;21281;31726;7402;6675;11585;3474;1520;402;120;0;0;0;0;0;0;0;0;0;6020;1890;2627;2627;966;3931;22453;20886;12722;17609;14655;8955;6105;5259;5972;1347;2752;13880.94;30251;19869 -156;'554;New Zealand;1671;Newsprint;5910;Export quantity;t;45200;42200;107600;113900;111300;112400;109400;119600;120300;118600;126900;124000;111000;120000;106400;164000;190000;196000;208300;241200;234000;158500;143700;174000;187000;143500;121000;121000;169800;224200;240500;279542;255509;251600;228400;257300;260000;257000;228600;226000;211000;217000;194000;276000;299000;219000;138000;194000;180000;199000;191000;178000;84000;71000;84927;86959;92380;99707;2;7;30;1119;1 -156;'554;New Zealand;1671;Newsprint;5922;Export value;1000 USD;7487;6365;16113;16455;15813;11482;12091;16093;15769;15276;16018;15728;15041;18321;23400;45826;55634;50018;70087;91074;96328;68794;50316;50286;73478;51976;52854;52854;93254;117102;127000;137319;114583;128578;147159;186859;132128;138382;122222;123722;113398;102522;133168;155760;174930;126700;100575;140334;122812;150276;155043;123318;53984;46719;40086;41045;43604;47062;4;9;66;1115;3 -156;'554;New Zealand;1674;Printing and writing papers;5510;Production;t;;;;12000;16500;20000;21700;21500;21000;29700;23100;23600;31200;34000;34000;39000;23000;22000;33000;33000;41000;37000;35000;38000;48000;46000;44000;47000;40000;38000;35000;17000;10000;14000;13000;13000;14000;12000;10000;11000;0;4000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -156;'554;New Zealand;1674;Printing and writing papers;5610;Import quantity;t;20800;18900;18400;15600;14100;13400;10400;10800;7900;16900;8800;9400;14000;24000;12600;12500;17900;17300;26000;26400;16200;33400;15700;15700;58400;46600;57200;64700;61500;81300;83000;101000;108170;65100;73300;65400;141000;138000;137000;128000;131000;155000;191000;233000;251000;229000;232000;236000;239857;204132;183781;183220;187662;178167;169792;164056;164492;149761;129305;91378;109509.12;76898;67511 -156;'554;New Zealand;1674;Printing and writing papers;5622;Import value;1000 USD;7052;6701;6837;5558;5305;3621;3851;3701;4094;4854;4008;5311;6844;12800;9443;10618;15121;15807;26658;34835;22933;47300;18307;18307;69817;64835;89624;90090;89267;110254;110254;104947;114400;67667;91447;89506;149162;130291;124492;119569;116353;137044;168753;211917;237300;223400;237000;243982;150396;217398;208450;209584;212736;213096;216884;145566;143446;135388;122336;83382;100427.76;90384;81040 -156;'554;New Zealand;1674;Printing and writing papers;5910;Export quantity;t;;;;;200;200;100;200;300;400;200;200;500;500;300;1000;1000;1000;1000;1600;1700;2600;1800;1800;3500;1800;2000;4000;12100;9000;3000;5989;6065;2900;4500;4800;5000;2700;1600;3300;3500;3300;2800;1800;1800;1800;1800;1800;1884;7067;13454;15155;29026;39311;45374;49834;15789;975;598;515;489;403;1363 -156;'554;New Zealand;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;22;8;7;57;77;103;73;63;178;297;259;722;728;1115;1214;2158;2308;2934;2131;2063;3721;2406;3242;6000;14482;9175;3100;5603;5526;3938;6090;8190;7321;3347;2090;3406;5167;5784;4997;3170;3250;2563;2785;3697;3343;7878;14724;15400;29127;50293;63892;45591;15089;1733;1263;1044;1427.78;979;1616 -156;'554;New Zealand;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12000;10000;11000;0;4000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -156;'554;New Zealand;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20000;17000;16000;14000;14000;19000;23000;24000;13000;13000;11000;2262;2458;1289;4113;2650;4350;3992;4953;7388;4515;5244;6664;10847.83;1908;2093 -156;'554;New Zealand;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16098;13975;12757;11601;11407;14180;16852;18200;12000;14000;9179;3030;2395;1591;4521;2665;3839;4177;3955;5885;3143;4092;5106;8264.96;2192;2556 -156;'554;New Zealand;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;300;300;500;300;300;300;300;300;300;300;38;282;221;10;132;45;25;59;167;60;31;189;56;23;16 -156;'554;New Zealand;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;581;318;351;632;387;350;350;350;350;350;350;65;317;253;74;106;101;114;102;222;123;56;299;138;69;46 -156;'554;New Zealand;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0 -156;'554;New Zealand;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48000;43000;37000;42000;61000;83000;96000;93000;90000;94000;91000;138075;79684;71003;73259;75752;72119;66359;66353;63243;62143;57435;42886;49066.28;36238;38123 -156;'554;New Zealand;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43559;37652;34066;36934;55934;74790;93000;91700;87700;100000;96653;46180;89386;83190;87022;87791;88713;88656;60395;58513;59526;57860;41617;49000.8;42995;45609 -156;'554;New Zealand;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2200;1300;2000;2000;2000;2000;1000;1000;1000;1000;1000;1175;760;751;538;716;311;440;355;428;535;358;155;227;265;1083 -156;'554;New Zealand;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2766;1772;1942;3192;3606;3500;1720;1800;1213;1435;2347;2206;1567;1756;1529;1575;988;1231;700;837;889;750;446;880.78;564;948 -156;'554;New Zealand;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0 -156;'554;New Zealand;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70000;77000;75000;75000;80000;89000;114000;134000;126000;125000;134000;99520;121990;111489;105848;109260;101698;99441;92750;93861;83103;66626;41828;49595;38752;27295 -156;'554;New Zealand;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70634;72865;72746;67818;69703;79783;102065;127400;123700;123000;138150;101186;125617;123669;118041;122280;120544;124051;81216;79048;72719;60384;36659;43162;45197;32875 -156;'554;New Zealand;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;500;500;500;500;500;500;671;6025;12482;14607;28178;38955;44909;49420;15194;380;209;171;206;115;264 -156;'554;New Zealand;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1113;1343;1791;1147;1100;1100;1000;1000;1000;1072;5994;12715;13797;27446;49204;62547;44789;14030;721;457;299;409;346;622 -156;'554;New Zealand;1675;Other paper and paperboard;5510;Production;t;98600;110600;130100;116800;139200;147200;151400;171600;217600;218300;227700;216600;284900;304000;302000;321000;342000;342000;338000;321000;360000;364000;367000;414000;424000;413000;393000;398000;399000;424000;459000;342000;457000;478000;494000;473000;479000;439000;446000;488000;497000;518000;448000;537000;573000;574000;580000;585000;579000;591000;503000;578825;586000;581602;593139;594098;580562;572334;581969;575700;551766;533154;488247 -156;'554;New Zealand;1675;Other paper and paperboard;5610;Import quantity;t;16200;11800;14200;15700;18700;12400;8900;13700;10800;11300;10900;25000;21000;26000;16500;12500;14300;9600;12900;17300;12100;13400;9000;12200;10300;7900;13100;23900;18100;17600;20000;143535;76600;91200;117200;105200;96300;143000;155000;178000;191000;195000;232000;222000;228000;237000;242000;232000;195275;218937;244469;205602;226496;241481;243156;280075;276352;298291;310809;305065;310410.4;288232;241699 -156;'554;New Zealand;1675;Other paper and paperboard;5622;Import value;1000 USD;7235;5282;4880;5197;5637;3842;3136;4132;4893;5296;6212;6009;6600;14453;11745;13423;16029;12454;19440;25787;25033;29216;20483;24058;10937;11029;18590;39575;41866;46843;46843;149231;106901;122508;173909;150952;117378;126834;102397;104407;105374;123230;153462;180561;189663;193885;215389;212784;173964;217900;265461;232650;243199;286017;275133;240079;242508;257862;285108;276237;313746.68;274165;244122 -156;'554;New Zealand;1675;Other paper and paperboard;5910;Export quantity;t;900;1000;1800;900;700;2300;3900;17600;27200;26300;18000;28000;26000;51000;67000;82700;79000;92000;108300;80000;100500;98500;142800;108900;81200;104500;86400;83000;90900;103000;99000;100858;137100;115100;98600;122900;144300;187100;219100;236300;288350;285000;250250;344300;372300;372300;371000;541000;498561;384478;378939;351541;337894;309111;291919;296009;309264;322153;325213;304147;378719.7;277139;212433 -156;'554;New Zealand;1675;Other paper and paperboard;5922;Export value;1000 USD;321;349;251;273;216;202;606;2439;3558;4418;3624;5032;6951;13484;20495;26798;26734;29407;46773;39634;53532;46850;55490;49076;38957;45899;51828;49487;58123;66000;62705;66350;69695;71313;83232;84187;81418;92641;104553;120761;127699;122899;97590;162386;193954;202880;231960;334183;262421;265680;291793;265173;233619;243139;234057;183670;207916;248441;232378;207025;270425.85;227050;131604 -156;'554;New Zealand;1676;Household and sanitary papers;5510;Production;t;;;;;10600;16000;14700;18400;19700;19200;21500;23000;24900;26000;32000;34000;34000;35000;34000;39000;35000;40000;40000;41000;41000;46000;43000;60000;73000;73000;77000;40000;67000;70000;87000;83000;74000;57000;54000;60000;59000;59000;56000;60000;59000;58000;57000;62000;59000;62000;62000;61000;49000;50848;50000;46000;51000;51000;51000;51000;51000;51000;51000 -156;'554;New Zealand;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1635;2200;2900;3200;3700;4300;7000;5000;5000;8000;8000;10000;14000;13000;15000;14000;13000;17071;17182;16796;13549;12520;24037;24470;26696;25809;25920;24848;26184;28933.17;14514;25321 -156;'554;New Zealand;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3893;2770;3628;4707;5452;6394;11993;5344;5668;8238;8479;9500;17131;18130;20000;20000;18936;21342;23383;24182;21771;19495;37787;44345;33939;31253;33175;33982;33487;44370.98;29071;35760 -156;'554;New Zealand;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2900;2100;4900;5000;7700;6900;10200;15000;13000;13000;5000;4000;9000;13000;9000;9000;8000;8228;11038;10737;8833;2451;128;131;1315;529;2559;4112;3172;6569.71;3980;5378 -156;'554;New Zealand;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3945;2662;5260;6452;11089;9109;15378;14591;10147;10633;4427;4100;9295;16608;12140;14534;13643;12445;16810;18525;13667;3930;143;145;1456;833;3792;4814;2633;6800.56;3062;5110 -156;'554;New Zealand;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;373000;384000;419000;435000;459000;392000;477000;514000;516000;523000;523000;520000;529000;441000;517825;520000;502755;487000;485000;529562;521334;530969;524700;500766;482154;437247 -156;'554;New Zealand;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119000;150000;172000;169000;180000;218000;203000;209000;216000;223000;215000;173813;196706;224069;189334;212163;215482;216491;247703;242125;252458;257410;257764;257750.43;250138;201583 -156;'554;New Zealand;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81036;97053;97357;86621;106324;137057;154142;161033;164773;186389;185610;145168;184919;232398;200333;214090;236946;218921;195781;200263;207653;227985;224356;248817.8;226239;196361 -156;'554;New Zealand;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;174900;203000;223200;275250;280000;246250;335300;359300;363300;362000;370000;340333;373427;367590;341963;335418;308892;291717;294681;308721;319579;321078;300915;372097.98;273104;207015 -156;'554;New Zealand;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75230;88233;110413;116833;118472;93490;153091;177346;190740;217426;232377;185493;248719;273173;251327;229350;241928;233149;182098;206921;244407;227374;204018;263135.29;223591;126189 -156;'554;New Zealand;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;128600;131200;136700;153200;197900;199100;206200;193600;260000;278000;199000;208000;200000;200000;278000;255000;286000;308000;302000;308000;316000;318000;298000;307000;312000;339000;370000;292000;379000;396000;393000;376000;398000;;;;;;;;;;;;;;;;;;;;;;;;;; -156;'554;New Zealand;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53800;10000;12300;29100;84300;73000;;;;;;;;;;;;;;;;;;;;;;;;;; -156;'554;New Zealand;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32083;13932;15513;31449;94723;60563;;;;;;;;;;;;;;;;;;;;;;;;;; -156;'554;New Zealand;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;2300;3900;17600;27200;26300;18000;28000;26000;51000;67000;82700;79000;92000;108300;80000;89200;87700;131400;97500;69800;86900;73500;70000;73700;88000;85000;64400;128200;103400;87600;86100;110500;;;;;;;;;;;;;;;;;;;;;;;;;; -156;'554;New Zealand;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;202;606;2439;3558;4418;3624;5032;6951;13484;20495;26798;26734;29407;46773;39634;41016;34179;42871;38252;29039;30595;34600;33100;41445;44000;45705;34475;55621;54560;62467;39463;42947;;;;;;;;;;;;;;;;;;;;;;;;;; -156;'554;New Zealand;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;274000;219000;239000;351000;373000;310000;404000;409000;409000;521000;391000;393000;415000;312000;404825;408000;410123;411000;408000;444562;436334;445969;439700;415766;397154;352247 -156;'554;New Zealand;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50000;98000;127000;117000;120000;156000;132000;133000;146000;151000;148000;109474;128639;159699;127305;151040;159675;165344;179274;171130;165897;156316;153656;154870.92;159990;130347 -156;'554;New Zealand;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23701;47126;53793;46532;52437;85200;83760;82800;92000;104000;102395;70066;94920;137606;108340;122829;134099;137849;106880;106869;105325;96669;91465;105344.96;100295;78119 -156;'554;New Zealand;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;134000;152000;172000;217000;216000;191000;273000;267000;268000;265000;264000;234994;261857;268360;240559;248039;239875;226801;222500;200522;193566;190035;171128;240228.98;141691;144318 -156;'554;New Zealand;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41389;50879;68795;71672;75117;58921;100848;105700;116000;132146;142010;101397;145380;172834;150899;148085;170758;179545;122689;113818;124505;107281;87824;142353.29;89198;68804 -156;'554;New Zealand;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86000;81000;88000;84000;86000;82000;73000;105000;107000;2000;132000;127000;114000;129000;113000;111000;90608;74000;76000;84000;84000;84000;84000;84000;84000;84000 -156;'554;New Zealand;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7000;23000;20000;28000;18000;30000;44000;45000;40000;44000;39000;41217;46047;39452;35915;33789;35294;35829;51137;55597;69102;82030;86122;81481;72282;54467 -156;'554;New Zealand;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12734;24916;22197;21059;26937;27340;46794;50750;45800;54000;51901;50286;64987;61998;58467;58761;73886;55554;70244;76316;82171;106481;109314;111683;99182;87660 -156;'554;New Zealand;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32000;49000;46000;54000;61000;52000;58000;87000;92000;92000;102000;104064;110234;98314;100655;86242;67913;64696;71830;107697;125629;130918;129681;131459;131005;61895 -156;'554;New Zealand;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22515;34336;34414;37601;38233;30751;45300;63700;70000;76000;86056;81990;100946;99216;99325;79964;70045;53087;58944;92093;119092;119408;115715;119916;133644;56016 -156;'554;New Zealand;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;84000;92000;0;0;0;0;0;0;0;0;0;0;0;0;1000;2024;2000;1000;1000;1000;1000;1000;1000;1000;1000 -156;'554;New Zealand;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30000;26000;24000;22000;39000;29000;24000;28000;27000;26000;26000;21348;19275;22592;23003;23216;15870;12309;14578;13286;14687;16979;16179;18929.82;14631;14211 -156;'554;New Zealand;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26948;22869;20005;17654;25500;23000;21863;25683;25200;27000;29859;23609;22838;30653;30805;29393;25195;22851;16863;15392;18136;23048;22102;29131.14;23037;27954 -156;'554;New Zealand;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8600;1000;5000;4000;2000;3000;4000;5000;3000;5000;2000;843;673;175;236;133;96;83;159;179;183;124;105;409;408;801 -156;'554;New Zealand;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11067;2041;7017;7327;3672;3500;6534;7446;4240;9280;3382;1764;1730;619;748;482;461;305;312;355;600;667;474;864;747;1368 -156;'554;New Zealand;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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 -156;'554;New Zealand;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32000;3000;1000;2000;3000;3000;3000;3000;3000;2000;2000;1774;2745;2326;3111;4118;4643;3009;2714;2112;2772;2085;1807;2468.68;3235;2558 -156;'554;New Zealand;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17653;2142;1362;1376;1450;1517;1725;1800;1773;1389;1455;1207;2174;2141;2721;3107;3766;2667;1794;1686;2021;1787;1475;2658.7;3725;2628 -156;'554;New Zealand;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;1000;200;250;1000;250;300;300;300;0;2000;432;663;741;513;1004;1008;137;192;323;201;1;1;1;0;1 -156;'554;New Zealand;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;259;977;187;233;1450;318;409;500;500;0;929;342;663;504;355;819;664;212;153;655;210;18;5;2;2;1 -156;'554;New Zealand;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;71000;79000;108000;107000;26000;27000;39000;16000;25000;65000;67000;49000;52000;31000;14000;12000;12000;10000;11000;12000;14000;14000;7000;9000;8000;9000;3000;0;0;0;0;0;0;0;0;0;0;0;17000;27999;56139;63098;0;0;0;0;0;0;0 -156;'554;New Zealand;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;12400;8900;13700;10800;11300;10900;25000;21000;26000;16500;12500;14300;9600;12900;17300;12100;13400;9000;12200;10300;7900;13100;23900;18100;17600;20000;88100;64400;76000;84900;17200;19000;17000;0;1000;14000;7000;4000;5000;6000;6000;5000;4000;4391;5049;3604;2719;1813;1962;2195;5676;8418;19913;28551;21117;23726.79;23580;14795 -156;'554;New Zealand;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;3842;3136;4132;4893;5296;6212;6009;6600;14453;11745;13423;16029;12454;19440;25787;25033;29216;20483;24058;10937;11029;18590;39575;41866;46843;46843;113255;90199;103367;137753;50777;50421;33805;0;1382;10515;8427;6905;9288;10500;9112;9000;8238;7454;9598;8881;10546;9614;11284;11867;10359;10992;17034;23141;18394;20557.89;18855;12001 -156;'554;New Zealand;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;11300;10800;11400;11400;11400;17600;12900;13000;17200;15000;14000;33558;6800;6800;6000;29100;26900;2000;1100;100;100;0;0;0;0;0;0;163000;150000;13;612;745;25;91;71;13;14;15;23;60;52;55;40 -156;'554;New Zealand;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;12516;12671;12619;10824;9918;15304;17228;16387;16678;22000;17000;27930;11412;11493;14313;33635;29362;2033;1729;201;233;0;0;0;0;0;0;88163;64483;151;95;179;339;1068;763;116;162;242;190;374;490;397;305 -156;'554;New Zealand;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;357024;381161;397039;366105;589383;515886;366948 -156;'554;New Zealand;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;141663;120934;118072;93454;102045;98731;84546 -156;'554;New Zealand;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25264;29833;35470;39794;80078;79889;42059 -156;'554;New Zealand;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74954;67292;67899;58492;65903;65883;51532 -156;'554;New Zealand;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2180;6155;9062;7225;18015;24627;10821 -156;'554;New Zealand;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74617;66944;67337;58429;65831;65759;51428 -156;'554;New Zealand;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23084;23678;26408;32569;62063;55262;31238 -156;'554;New Zealand;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;337;348;562;63;72;124;104 -156;'554;New Zealand;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16189;16229;15485;16599;20929;10912;13778 -156;'554;New Zealand;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2803;3202;2908;2653;4110;3043;2116 -156;'554;New Zealand;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10962;11745;14049;12836;18947;17345;14468 -156;'554;New Zealand;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;906;1005;844;670;2379;2756;1666 -156;'554;New Zealand;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30021;31250;30607;27283;42227;38880;30347 -156;'554;New Zealand;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35403;25462;25478;18015;15973;13078;14780 -156;'554;New Zealand;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;205;217 -156;'554;New Zealand;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;236;214 -156;'554;New Zealand;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19 -156;'554;New Zealand;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15 -156;'554;New Zealand;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;152;320 -156;'554;New Zealand;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;175;306 -156;'554;New Zealand;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;260712;274757;280916;246336;397682;339538;245899 -156;'554;New Zealand;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19278;20037;16244;10066;11615;10680;11189 -156;'554;New Zealand;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3273;4000;5820;9518;9181;8634;4220 -156;'554;New Zealand;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5044;1154;1467;450;96;1339;576 -156;'554;New Zealand;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10603;13347;14692;13739;20339;20688;16177 -156;'554;New Zealand;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3275;2782;3232;3108;1969;1952;2687 -156;'554;New Zealand;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;291401;310451;327145;303048;362175;385380;331448 -156;'554;New Zealand;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97676;93537;88235;86926;97339;90313;81592 -156;'554;New Zealand;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1015;699;621;198;493;474;504 -156;'554;New Zealand;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1572;808;245;267;170;49;36 -156;'554;New Zealand;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48906;51521;58120;49708;58870;61334;51467 -156;'554;New Zealand;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1924;1793;1886;2859;5799;2288;2026 -156;'554;New Zealand;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66993;67153;69265;77907;75175;85942;67473 -156;'554;New Zealand;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43384;37904;35179;30805;36704;33599;33452 -156;'554;New Zealand;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73810;86348;93893;85215;114217;123605;106260 -156;'554;New Zealand;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16925;18016;17716;18259;21108;22802;21202 -156;'554;New Zealand;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100677;104730;105246;90020;113420;114025;105744 -156;'554;New Zealand;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33871;35016;33209;34736;33558;31575;24876 -157;'558;Nicaragua;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;247717;215910;275400;196913;262503.62;301346.36;309760.57 -157;'558;Nicaragua;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35235;33483;28440;29045;39636.02;31740.31;26380.38 -157;'558;Nicaragua;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;1088;1214;1633;1993;2361;2802;3733;3663;3842;4773;3686;5680;7592;10671;10633;13683;15138;13370;6578;8958;8207;12425;11694;13294;13207;19393;15686;9575;9727;8052;7881;14778;18743;13109;7876;10919;9333;16812;16267;21806;21816;17256;28476;30231;30231;29765;31768;38231;37349;47055;46685;43732;44046;51739;31973;55880;85845;72137;130558;49813;85563.62;94369.36;81903.57 -157;'558;Nicaragua;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;3030;2782;2240;2295;2242;3022;2766;2318;2925;3826;5213;5213;5755;4563;7288;7598;7621;11016;6714;4083;3630;2065;2569;2569;2569;1549;555;357;1420;2296;2299;3117;2211;7217;15319;21322;24292;18722;11725;15576;22030;14372;16242;15071;15071;18533;5477;9648;10050;11706;25293;120167;88438;35040;29321;17479;22362;16274;18290;18570;23827.02;15068.31;12356.38 -157;'558;Nicaragua;1861;Roundwood;5516;Production;m3;4596383;4645954;4545115;4595872;4638230;4724200;4811787;4869000;4939845;5084330;5359002;5449723;5513912;5522828;5657904;5668659;5647266;5761225;6095678;6101086;6094452;6158583;6156663;5635372;5703931;5738090;5752553;5873102;5897563;5928677;5924608;5763848;5779015;5769512;5766319;5889972;5845073;5906797;5944523;5983725;5883653;5951356;5958840;5999111;6041178;6067682;6095800;6125500;6156718;6204562;6227872;6242579;6258671;6276135;6294959;6290807;6307449;6301912;6286938;6276954;6284459;6266604;6273331 -157;'558;Nicaragua;1861;Roundwood;5616;Import quantity;m3;600;600;800;1000;1000;3100;4900;4900;500;18300;2600;2600;700;700;3000;5000;7000;9000;11300;11300;11300;200;200;200;;;;;;;284;284;284;835;2300;1200;1200;329;540;277;277;400;102;194;194;1735;1948;3457;3457;483;969;979;169;408;36;46;3672;17945;4000;2388;1229;608;115 -157;'558;Nicaragua;1861;Roundwood;5622;Import value;1000 USD;34;34;57;44;44;189;321;321;40;1290;232;232;71;71;306;510;720;936;1171;1171;1171;65;65;65;;;;;;;29;29;29;66;397;110;110;18;58;46;46;39;32;13;13;138;158;250;250;91;138;153;87;101;21;14;1625;3717;1843;1083;426;334;51 -157;'558;Nicaragua;1861;Roundwood;5916;Export quantity;m3;23900;18700;6200;12300;10500;17600;200;1000;2700;2100;1300;1300;7300;7300;2900;2900;2900;4900;3500;4800;4800;;;;;;;;;44;31;262;814;725;2300;5500;5500;4251;2435;10210;10210;4620;44195;29097;29097;7069;1553;267;1261;3760;10124;59689;40049;9473;42548;20162;13971;7810;9868;9335;12553;12292;17895 -157;'558;Nicaragua;1861;Roundwood;5922;Export value;1000 USD;617;440;155;316;301;438;19;70;140;83;144;144;423;423;308;319;322;567;1008;1511;1511;;;;;;;;;9;12;51;67;48;202;666;666;426;253;772;772;1159;2509;1579;1579;495;104;36;438;1930;11438;105067;72594;14115;12966;6095;8656;5105;8230;7577;8390;2856;3344 -157;'558;Nicaragua;1862;Roundwood, coniferous;5516;Production;m3;644281;649739;601262;606851;606505;627227;543017;548876;607805;700804;782163;822958;824521;843896;871061;872245;869890;882437;919261;919857;919126;926187;925976;687440;694989;698750;700342;713615;716308;719734;719286;649312;653193;677918;694593;753106;791456;798252;802406;806722;673568;696609;686846;691280;695912;698830;701900;705200;708633;727249;726715;728334;730106;732029;734101;733644;744385;744081;703222;767933;768380;746983;747724 -157;'558;Nicaragua;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3635;17902;3912;2388;1228;599;115 -157;'558;Nicaragua;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1614;3703;1811;1083;415;322;49 -157;'558;Nicaragua;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;1;21;0;0;0;31 -157;'558;Nicaragua;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;8;0;0;0;15 -157;'558;Nicaragua;1863;Roundwood, non-coniferous;5516;Production;m3;3952102;3996215;3943853;3989021;4031725;4096973;4268770;4320124;4332040;4383526;4576839;4626765;4689391;4678932;4786843;4796414;4777376;4878788;5176417;5181229;5175326;5232396;5230687;4947932;5008942;5039340;5052211;5159487;5181255;5208943;5205322;5114536;5125822;5091594;5071726;5136866;5053617;5108545;5142117;5177003;5210085;5254747;5271994;5307831;5345266;5368852;5393900;5420300;5448085;5477313;5501157;5514245;5528565;5544106;5560858;5557163;5563064;5557831;5583716;5509021;5516079;5519621;5525607 -157;'558;Nicaragua;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;43;88;0;1;9;0 -157;'558;Nicaragua;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;14;32;0;11;12;2 -157;'558;Nicaragua;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13965;7809;9847;9335;12553;12292;17864 -157;'558;Nicaragua;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8655;5104;8222;7577;8390;2856;3329 -157;'558;Nicaragua;1864;Wood fuel;5516;Production;m3;4171383;4220954;4271115;4321872;4373230;4425200;4477787;4531000;4584845;4639330;4688002;4749723;4763912;4712828;4777904;4788659;4767266;4881225;5215678;5221086;5214452;5278583;5276663;5335372;5403931;5438090;5452553;5573102;5597563;5628677;5624608;5624848;5651015;5648512;5618319;5622972;5617073;5678797;5716523;5755725;5790653;5827356;5865840;5906111;5948178;5974682;6002800;6032500;6063718;6096562;6109872;6124579;6140671;6158135;6176959;6172807;6169915;6168257;6167813;6168562;6173004;6178595;6185322 -157;'558;Nicaragua;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;184;200;200;200;200;200;200;200;0;0;0;0;738;738;738;738;7;5;5;5;5;5;5;;;;;;;0 -157;'558;Nicaragua;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;8;8;8;8;0;0;0;0;45;45;45;45;7;5;5;5;5;5;5;;;;;;;2 -157;'558;Nicaragua;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;308;308;308;0;0;0;0;33;33;33;33;790;493;493;493;371;125;20;;;;;;; -157;'558;Nicaragua;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;19;19;19;0;0;0;0;3;3;3;3;117;59;59;59;62;22;30;;;;;;; -157;'558;Nicaragua;1627;Wood fuel, coniferous;5516;Production;m3;459281;464739;470262;475851;481505;487227;493017;498876;504805;510804;516163;522958;524521;518896;526061;527245;524890;537437;574261;574857;574126;581187;580976;587440;594989;598750;600342;613615;616308;619734;619286;619312;622193;621918;618593;619106;618456;625252;629406;633722;637568;641609;645846;650280;654912;657830;660900;664200;667633;671249;672715;674334;676106;678029;680101;679644;679326;679143;679094;679177;679666;680281;681022 -157;'558;Nicaragua;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -157;'558;Nicaragua;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -157;'558;Nicaragua;1628;Wood fuel, non-coniferous;5516;Production;m3;3712102;3756215;3800853;3846021;3891725;3937973;3984770;4032124;4080040;4128526;4171839;4226765;4239391;4193932;4251843;4261414;4242376;4343788;4641417;4646229;4640326;4697396;4695687;4747932;4808942;4839340;4852211;4959487;4981255;5008943;5005322;5005536;5028822;5026594;4999726;5003866;4998617;5053545;5087117;5122003;5153085;5185747;5219994;5255831;5293266;5316852;5341900;5368300;5396085;5425313;5437157;5450245;5464565;5480106;5496858;5493163;5490589;5489114;5488719;5489385;5493338;5498314;5504300 -157;'558;Nicaragua;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0 -157;'558;Nicaragua;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2 -157;'558;Nicaragua;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;184;200;200;200;200;200;200;200;0;0;0;0;738;738;738;738;7;5;5;5;5;5;5;;;;;;; -157;'558;Nicaragua;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;8;8;8;8;0;0;0;0;45;45;45;45;7;5;5;5;5;5;5;;;;;;; -157;'558;Nicaragua;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;308;308;308;0;0;0;0;33;33;33;33;790;493;493;493;371;125;20;;;;;;; -157;'558;Nicaragua;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;19;19;19;0;0;0;0;3;3;3;3;117;59;59;59;62;22;30;;;;;;; -157;'558;Nicaragua;1865;Industrial roundwood;5516;Production;m3;425000;425000;274000;274000;265000;299000;334000;338000;355000;445000;671000;700000;750000;810000;880000;880000;880000;880000;880000;880000;880000;880000;880000;300000;300000;300000;300000;300000;300000;300000;300000;139000;128000;121000;148000;267000;228000;228000;228000;228000;93000;124000;93000;93000;93000;93000;93000;93000;93000;108000;118000;118000;118000;118000;118000;118000;137534;133655;119125;108392;111455;88009;88009 -157;'558;Nicaragua;1865;Industrial roundwood;5616;Import quantity;m3;600;600;800;1000;1000;3100;4900;4900;500;18300;2600;2600;700;700;3000;5000;7000;9000;11300;11300;11300;200;200;200;;;;;;;284;284;284;651;2100;1000;1000;129;340;77;77;400;102;194;194;997;1210;2719;2719;476;964;974;164;403;31;41;3672;17945;4000;2388;1229;608;115 -157;'558;Nicaragua;1865;Industrial roundwood;5622;Import value;1000 USD;34;34;57;44;44;189;321;321;40;1290;232;232;71;71;306;510;720;936;1171;1171;1171;65;65;65;;;;;;;29;29;29;58;389;102;102;10;50;38;38;39;32;13;13;93;113;205;205;84;133;148;82;96;16;9;1625;3717;1843;1083;426;334;49 -157;'558;Nicaragua;1865;Industrial roundwood;5916;Export quantity;m3;23900;18700;6200;12300;10500;17600;200;1000;2700;2100;1300;1300;7300;7300;2900;2900;2900;4900;3500;4800;4800;;;;;;;;;44;31;262;814;725;2300;5500;5500;4214;2127;9902;9902;4620;44195;29097;29097;7036;1520;234;1228;2970;9631;59196;39556;9102;42423;20142;13971;7810;9868;9335;12553;12292;17895 -157;'558;Nicaragua;1865;Industrial roundwood;5922;Export value;1000 USD;617;440;155;316;301;438;19;70;140;83;144;144;423;423;308;319;322;567;1008;1511;1511;;;;;;;;;9;12;51;67;48;202;666;666;424;234;753;753;1159;2509;1579;1579;492;101;33;435;1813;11379;105008;72535;14053;12944;6065;8656;5105;8230;7577;8390;2856;3344 -157;'558;Nicaragua;1866;Industrial roundwood, coniferous;5516;Production;m3;185000;185000;131000;131000;125000;140000;50000;50000;103000;190000;266000;300000;300000;325000;345000;345000;345000;345000;345000;345000;345000;345000;345000;100000;100000;100000;100000;100000;100000;100000;100000;30000;31000;56000;76000;134000;173000;173000;173000;173000;36000;55000;41000;41000;41000;41000;41000;41000;41000;56000;54000;54000;54000;54000;54000;54000;65059;64938;24128;88756;88714;66702;66702 -157;'558;Nicaragua;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;284;284;284;66;1500;400;400;100;283;20;20;400;48;29;29;764;988;2497;2497;238;726;736;13;98;0;1;3635;17902;3912;2388;1228;599;115 -157;'558;Nicaragua;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;29;29;7;338;51;51;6;19;7;7;39;3;2;2;47;60;152;152;27;76;91;1;17;0;0;1614;3703;1811;1083;415;322;49 -157;'558;Nicaragua;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;31;31;583;583;2200;5400;5400;3420;2025;9900;9900;4500;43604;28371;28371;6618;1461;175;175;373;34;295;0;0;0;0;6;1;21;0;0;0;31 -157;'558;Nicaragua;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;12;12;28;28;182;646;646;383;214;753;753;1050;2311;1504;1504;351;77;9;9;42;31;5;0;0;0;0;1;1;8;0;0;0;15 -157;'558;Nicaragua;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;284;284;284;66;1500;400;400;100;283;20;20;400;48;29;29;764;988;2497;2497;238;726;736;13;98;0;1;3635;17902;3912;2388;1228;599;115 -157;'558;Nicaragua;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;29;29;7;338;51;51;6;19;7;7;39;3;2;2;47;60;152;152;27;76;91;1;17;0;0;1614;3703;1811;1083;415;322;49 -157;'558;Nicaragua;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;31;31;583;583;2200;5400;5400;3420;2025;9900;9900;4500;43604;28371;28371;6618;1461;175;175;373;34;295;0;0;0;0;6;1;21;0;0;0;31 -157;'558;Nicaragua;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;12;12;28;28;182;646;646;383;214;753;753;1050;2311;1504;1504;351;77;9;9;42;31;5;0;0;0;0;1;1;8;0;0;0;15 -157;'558;Nicaragua;1867;Industrial roundwood, non-coniferous;5516;Production;m3;240000;240000;143000;143000;140000;159000;284000;288000;252000;255000;405000;400000;450000;485000;535000;535000;535000;535000;535000;535000;535000;535000;535000;200000;200000;200000;200000;200000;200000;200000;200000;109000;97000;65000;72000;133000;55000;55000;55000;55000;57000;69000;52000;52000;52000;52000;52000;52000;52000;52000;64000;64000;64000;64000;64000;64000;72475;68717;94997;19636;22741;21307;21307 -157;'558;Nicaragua;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;585;600;600;600;29;57;57;57;0;54;165;165;233;222;222;222;238;238;238;151;305;31;40;37;43;88;0;1;9;0 -157;'558;Nicaragua;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;51;51;51;4;31;31;31;0;29;11;11;46;53;53;53;57;57;57;81;79;16;9;11;14;32;0;11;12;0 -157;'558;Nicaragua;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;231;231;142;100;100;100;794;102;2;2;120;591;726;726;418;59;59;1053;2597;9597;58901;39556;9102;42423;20142;13965;7809;9847;9335;12553;12292;17864 -157;'558;Nicaragua;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;39;20;20;20;20;41;20;0;0;109;198;75;75;141;24;24;426;1771;11348;105003;72535;14053;12944;6065;8655;5104;8222;7577;8390;2856;3329 -157;'558;Nicaragua;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;16;16;31;40;37;3;0;0;1;0;0 -157;'558;Nicaragua;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;16;9;11;2;0;0;11;0;0 -157;'558;Nicaragua;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;231;231;142;100;100;100;100;100;0;0;120;416;368;368;53;53;53;53;597;597;901;556;2036;42423;20142;13965;7809;9847;9335;12553;12043;17864 -157;'558;Nicaragua;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;39;20;20;20;20;20;20;0;0;109;133;54;54;22;22;22;22;462;462;793;374;1574;12944;6065;8655;5104;8222;7577;8390;2738;3329 -157;'558;Nicaragua;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;585;600;600;600;29;57;57;57;0;54;165;165;233;222;222;222;222;222;222;135;289;0;0;0;40;88;0;0;9;0 -157;'558;Nicaragua;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;51;51;51;4;31;31;31;0;29;11;11;46;53;53;53;53;53;53;77;75;0;0;0;12;32;0;0;12;0 -157;'558;Nicaragua;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;694;2;2;2;0;175;358;358;365;6;6;1000;2000;9000;58000;39000;7066;0;0;0;0;0;0;0;249;0 -157;'558;Nicaragua;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;0;0;0;0;65;21;21;119;2;2;404;1309;10886;104210;72161;12479;0;0;0;0;0;0;0;118;0 -157;'558;Nicaragua;1868;Sawlogs and veneer logs;5516;Production;m3;370000;370000;251000;251000;240000;269000;304000;308000;315000;405000;631000;650000;700000;750000;830000;830000;830000;830000;830000;830000;830000;830000;830000;250000;250000;250000;250000;250000;250000;250000;250000;89000;78000;121000;148000;267000;228000;228000;228000;228000;93000;124000;93000;93000;93000;93000;93000;93000;93000;108000;118000;118000;118000;118000;118000;118000;137413;133655;119125;108392;111455;88009;88009 -157;'558;Nicaragua;1868;Sawlogs and veneer logs;5916;Export quantity;m3;23900;18700;6200;12300;10500;17600;200;1000;2700;2100;1300;1300;6800;6800;2700;2700;2700;4500;3300;4600;4600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -157;'558;Nicaragua;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;617;440;155;316;301;438;19;70;140;83;144;144;395;395;291;302;305;525;970;1471;1471;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -157;'558;Nicaragua;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;185000;185000;131000;131000;125000;140000;50000;50000;103000;190000;266000;300000;300000;325000;345000;345000;345000;345000;345000;345000;345000;345000;345000;100000;100000;100000;100000;100000;100000;100000;100000;30000;31000;56000;76000;134000;173000;173000;173000;173000;36000;55000;41000;41000;41000;41000;41000;41000;41000;56000;54000;54000;54000;54000;54000;54000;64938;64938;24128;88756;88714;66702;66702 -157;'558;Nicaragua;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;185000;185000;120000;120000;115000;129000;254000;258000;212000;215000;365000;350000;400000;425000;485000;485000;485000;485000;485000;485000;485000;485000;485000;150000;150000;150000;150000;150000;150000;150000;150000;59000;47000;65000;72000;133000;55000;55000;55000;55000;57000;69000;52000;52000;52000;52000;52000;52000;52000;52000;64000;64000;64000;64000;64000;64000;72475;68717;94997;19636;22741;21307;21307 -157;'558;Nicaragua;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;23900;18700;6200;12300;10500;17600;200;1000;2700;2100;1300;1300;6800;6800;2700;2700;2700;4500;3300;4600;4600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -157;'558;Nicaragua;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;617;440;155;316;301;438;19;70;140;83;144;144;395;395;291;302;305;525;970;1471;1471;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -157;'558;Nicaragua;1871;Other industrial roundwood;5516;Production;m3;55000;55000;23000;23000;25000;30000;30000;30000;40000;40000;40000;50000;50000;60000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;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;121;0;0;0;0;0;0 -157;'558;Nicaragua;1871;Other industrial roundwood;5616;Import quantity;m3;600;600;800;1000;1000;3100;4900;4900;500;18300;2600;2600;700;700;3000;5000;7000;9000;11300;11300;11300;200;200;200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -157;'558;Nicaragua;1871;Other industrial roundwood;5622;Import value;1000 USD;34;34;57;44;44;189;321;321;40;1290;232;232;71;71;306;510;720;936;1171;1171;1171;65;65;65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -157;'558;Nicaragua;1871;Other industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;500;500;200;200;200;400;200;200;200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -157;'558;Nicaragua;1871;Other industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;28;28;17;17;17;42;38;40;40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -157;'558;Nicaragua;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121;0;0;0;0;0;0 -157;'558;Nicaragua;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;55000;55000;23000;23000;25000;30000;30000;30000;40000;40000;40000;50000;50000;60000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;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;0;0;0 -157;'558;Nicaragua;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;600;600;800;1000;1000;3100;4900;4900;500;18300;2600;2600;700;700;3000;5000;7000;9000;11300;11300;11300;200;200;200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -157;'558;Nicaragua;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;34;34;57;44;44;189;321;321;40;1290;232;232;71;71;306;510;720;936;1171;1171;1171;65;65;65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -157;'558;Nicaragua;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;;;;;;;;;;;;;500;500;200;200;200;400;200;200;200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -157;'558;Nicaragua;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;;;;;;;;;;;;;28;28;17;17;17;42;38;40;40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -157;'558;Nicaragua;1630;Wood charcoal;5510;Production;t;3614;3792;3980;4177;4383;4600;4827;5066;5316;5579;5817;6091;6289;6335;6668;6879;7010;7545;8752;9037;9304;9778;10087;10614;11215;11724;12166;13093;13634;14190;14852;15509;16110;16792;17342;24000;9000;19263;21476;20662;21344;22048;16500;23528;24305;25001;25700;26500;27212;7000;13000;13000;13000;13000;13000;13000;13000;13000;16000;16000;16000;16000;16000 -157;'558;Nicaragua;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;198;198;200;200;200;5;8;230;230;0;5;5;5;3;4;4;4;5;5;7;9;3;24;26;61;31;63;4;36;30;28 -157;'558;Nicaragua;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;47;50;50;50;1;5;148;148;0;13;13;13;2;5;5;5;10;10;9;14;8;29;13;53;30;53;9;38;33;56 -157;'558;Nicaragua;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1500;130;130;0;3;3;3;45;65;406;406;627;627;704;1080;1232;1494;1876;1423;1247;997;1716;2269.21;2133;2613 -157;'558;Nicaragua;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;99;29;29;0;3;3;3;14;5;83;83;132;132;146;230;238;366;622;438;329;288;574;606.02;609;842 -157;'558;Nicaragua;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;10394;7177;7177;7177;7177;7177;7177 -157;'558;Nicaragua;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;170;76;156;156;0;3;3;3;360;9;9;9;9;9;41;49;49;49;49;11;55;1;8;8;2;0 -157;'558;Nicaragua;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;6;12;12;0;1;1;1;53;7;7;7;7;7;37;39;39;39;39;8;356;1;0;0;4;1 -157;'558;Nicaragua;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;60;60;0;1374;4201;4201;60099;59989;59989;59989;92;92;615;1217;485;254;254;235;235;19;235;235;73;73 -157;'558;Nicaragua;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;0;42;200;200;2069;2065;2065;2065;32;32;6;13;93;25;25;14;14;7;13;13;6;6 -157;'558;Nicaragua;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;500;500;500;164;70;150;150;0;3;3;3;3;3;3;3;3;3;1;9;9;9;9;9;9;0;0;0;0;0 -157;'558;Nicaragua;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;23;23;23;7;6;12;12;0;1;1;1;1;1;1;1;1;1;1;3;3;3;3;3;3;0;0;0;1;1 -157;'558;Nicaragua;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;37;37;0;1210;4064;4064;59962;59962;59962;59962;65;65;150;150;171;38;38;19;19;19;19;19;19;19 -157;'558;Nicaragua;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;0;11;195;195;2064;2064;2064;2064;31;31;2;2;83;18;18;7;7;7;6;6;6;6 -157;'558;Nicaragua;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;10394;7177;7177;7177;7177;7177;7177 -157;'558;Nicaragua;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;6;6;6;6;0;0;0;0;357;6;6;6;6;6;40;40;40;40;40;2;46;1;8;8;2;0 -157;'558;Nicaragua;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;52;6;6;6;6;6;36;36;36;36;36;5;353;1;0;0;3;0 -157;'558;Nicaragua;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;23;0;164;137;137;137;27;27;27;27;27;465;1067;314;216;216;216;216;0;216;216;54;54 -157;'558;Nicaragua;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;31;5;5;5;1;1;1;1;1;4;11;10;7;7;7;7;0;7;7;0;0 -157;'558;Nicaragua;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;0;0;0 -157;'558;Nicaragua;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;1 -157;'558;Nicaragua;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;0;0;0;0;0;0;0;0;0;0 -157;'558;Nicaragua;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;0;0;0;0;0;0;0;0;0 -157;'558;Nicaragua;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;0;0;0 -157;'558;Nicaragua;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;1 -157;'558;Nicaragua;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;0;0;0;0;0;0;0;0;0;0 -157;'558;Nicaragua;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;0;0;0;0;0;0;0;0;0 -157;'558;Nicaragua;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -157;'558;Nicaragua;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -157;'558;Nicaragua;1872;Sawnwood;5516;Production;m3;133900;133900;124500;124500;109300;130500;145000;151500;161800;196800;271800;301000;351000;351000;402000;402000;402000;402000;402000;402000;402000;402000;222000;222000;222000;222000;180000;140000;110000;80000;80000;61000;65000;27000;74000;160000;148000;148000;148000;148000;99000;84000;84000;66800;54100;54100;54100;54100;52000;90000;62000;62000;62000;62000;62000;62000;62904;60231;60231;60231;60231;60231;60231 -157;'558;Nicaragua;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;305;30;2183;300;300;300;622;1379;240;240;200;618;604;604;366;2066;846;846;2637;5306;5392;4477;4041;6481;26855;31031;16180;3645;2935;4315;4491;6648 -157;'558;Nicaragua;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;6;695;103;103;103;261;239;96;96;56;324;157;157;140;668;427;427;731;1515;1598;1363;1587;2464;6143;8490;4820;1813;1678;3029;3402;4511 -157;'558;Nicaragua;1872;Sawnwood;5916;Export quantity;m3;53200;54000;46000;42800;37900;46300;41300;36100;67800;101200;135800;135800;137000;93000;94700;94700;94700;108300;34200;5200;10600;5500;8900;8900;8900;1076;2460;1700;7678;10800;10800;14100;7200;27000;50200;91300;112600;77900;46819;50400;119500;85100;34037;39244;39244;74502;2482;2872;2872;11004;18054;12782;10404;19687;15444;8140;4082;2647;6963;12967;25562;13931;11460 -157;'558;Nicaragua;1872;Sawnwood;5922;Export value;1000 USD;2295;2217;1922;1780;1644;2066;2093;1620;1863;2479;3690;3690;3953;2740;5568;5867;5887;7129;2581;352;706;705;1165;1165;1165;145;404;232;1044;1639;1639;3024;2102;7014;14868;20526;23336;16997;8576;10434;15640;8315;7659;9176;9176;12381;1223;2639;2639;6470;10566;7884;6243;11368;8569;4369;4274;3280;4869;6144;7353;5653;3573 -157;'558;Nicaragua;1632;Sawnwood, coniferous;5516;Production;m3;83950;83950;78250;78250;68150;81250;28000;20250;56900;95900;130900;150500;150500;150500;171000;171000;171000;171000;171000;171000;171000;171000;94000;94000;94000;94000;80000;60000;50000;34000;34000;20000;29000;12000;38000;67000;104000;104000;104000;104000;55000;55000;55000;24000;19500;19500;19500;19500;12000;50000;29000;29000;29000;29000;29000;29000;38298;41042;41042;41042;41042;41042;41042 -157;'558;Nicaragua;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;299;24;2083;0;0;0;552;657;110;110;100;117;208;208;206;1909;522;522;2565;5247;5282;4320;3778;5825;25841;29647;15297;2746;1809;1480;1322;2279 -157;'558;Nicaragua;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;4;659;0;0;0;199;163;47;47;19;49;36;36;74;562;293;293;677;1469;1487;1216;1125;1884;5450;7560;4155;977;779;789;723;1181 -157;'558;Nicaragua;1632;Sawnwood, coniferous;5916;Export quantity;m3;30800;33200;26000;23600;19500;21100;20300;15600;53900;89800;123600;123600;125000;85000;88350;88350;88350;102200;28200;4700;9800;5100;8200;8200;8200;376;2360;1000;7500;9600;9600;9900;2000;12200;25000;56700;76200;65334;36319;34600;108400;74400;24252;20104;20104;45197;431;169;169;1421;631;165;165;192;9;10;29;69;1383;7974;9082;3838;4158 -157;'558;Nicaragua;1632;Sawnwood, coniferous;5922;Export value;1000 USD;1166;1220;956;904;755;813;783;446;1068;1943;2926;2926;3000;2040;4806;5105;5125;6369;1800;300;626;660;1069;1069;1069;49;308;136;948;1216;1216;1248;214;1431;2856;6253;7911;10714;4474;4871;12079;4077;3114;3357;3357;3678;175;86;86;356;51;51;77;71;2;10;7;45;339;1583;1872;898;916 -157;'558;Nicaragua;1633;Sawnwood, non-coniferous;5516;Production;m3;49950;49950;46250;46250;41150;49250;117000;131250;104900;100900;140900;150500;200500;200500;231000;231000;231000;231000;231000;231000;231000;231000;128000;128000;128000;128000;100000;80000;60000;46000;46000;41000;36000;15000;36000;93000;44000;44000;44000;44000;44000;29000;29000;42800;34600;34600;34600;34600;40000;40000;33000;33000;33000;33000;33000;33000;24606;19189;19189;19189;19189;19189;19189 -157;'558;Nicaragua;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;100;300;300;300;70;722;130;130;100;501;396;396;160;157;324;324;72;59;110;157;263;656;1014;1384;883;899;1126;2835;3169;4369 -157;'558;Nicaragua;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;36;103;103;103;62;76;49;49;37;275;121;121;66;106;134;134;54;46;111;147;462;580;693;930;665;836;899;2240;2679;3330 -157;'558;Nicaragua;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;22400;20800;20000;19200;18400;25200;21000;20500;13900;11400;12200;12200;12000;8000;6350;6350;6350;6100;6000;500;800;400;700;700;700;700;100;700;178;1200;1200;4200;5200;14800;25200;34600;36400;12566;10500;15800;11100;10700;9785;19140;19140;29305;2051;2703;2703;9583;17423;12617;10239;19495;15435;8130;4053;2578;5580;4993;16480;10093;7302 -157;'558;Nicaragua;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;1129;997;966;876;889;1253;1310;1174;795;536;764;764;953;700;762;762;762;760;781;52;80;45;96;96;96;96;96;96;96;423;423;1776;1888;5583;12012;14273;15425;6283;4102;5563;3561;4238;4545;5819;5819;8703;1048;2553;2553;6114;10515;7833;6166;11297;8567;4359;4267;3235;4530;4561;5481;4755;2657 -157;'558;Nicaragua;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;600;600;600;600;600;600;600;600;600;1000;1000;1000;0;0;0;0;0;0;0;0;0;0;0 -157;'558;Nicaragua;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;116;12;40;40;70;70;156;156;15;584;42;42;1807;2186;2643;1544;746;1136;34;7;38;204;33;191;13;26 -157;'558;Nicaragua;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;76;4;15;15;29;29;121;121;32;549;40;40;1201;1488;2138;1134;520;828;47;67;198;109;137;296;228;305 -157;'558;Nicaragua;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;200;738;2275;4400;5800;9900;6856;3096;3096;3472;53;4;4;7;7;7;10;10;0;0;2;7;10;0;32;0;19 -157;'558;Nicaragua;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;160;534;1315;2010;3258;2624;2768;2439;2439;1875;18;9;9;26;3;0;6;0;0;0;2;17;14;14;22;23;25 -157;'558;Nicaragua;1873;Wood-based panels;5516;Production;m3;11800;10000;10000;11800;8500;12500;15000;13000;12700;15700;16500;16500;16500;16500;10000;10000;10000;10000;15900;14400;14400;22000;14000;10000;5000;6200;5100;5000;3400;9000;7500;7500;7500;7500;7500;7500;7500;7500;7500;7500;7500;7500;7500;7500;7500;7500;7500;7500;7500;14000;10000;10000;10000;10000;10000;10000;10000;10000;10000;9764;9764;9764;9764 -157;'558;Nicaragua;1873;Wood-based panels;5616;Import quantity;m3;100;400;400;400;300;400;600;1200;1400;1500;1400;1400;100;100;1700;1700;1700;2400;500;500;500;200;200;200;200;200;200;200;200;200;200;4973;3452;4109;5400;6100;6100;7121;7452;9015;9015;7000;7757;13274;13274;9557;6203;7947;5969;21349;20302;15188;12226;10210;11096;16345;21598;18445;19475;14199;17772.84;19728.05;21244.05 -157;'558;Nicaragua;1873;Wood-based panels;5622;Import value;1000 USD;5;29;40;88;67;111;208;233;249;280;278;278;17;17;484;484;484;627;117;136;136;92;92;92;92;92;92;92;92;92;92;1707;882;1678;1741;1930;1930;2962;2236;3190;3190;2298;2348;2744;2744;3207;3858;5300;4418;5074;5352;6916;5811;7064;7468;6846;10028;10459;8785;7745;12828.46;14965.57;12937.57 -157;'558;Nicaragua;1873;Wood-based panels;5916;Export quantity;m3;800;700;700;800;1400;2400;3300;3000;4800;7000;7300;7300;7300;5100;6600;6600;6600;10700;9300;5200;3300;3000;3300;3300;3300;3300;300;300;800;1300;1300;73;73;73;200;200;200;1142;2441;4081;4081;5200;6629;876;876;1479;278;387;387;107;93;4082;5035;81;129;118;175;348;170;59;545;408.05;126.05 -157;'558;Nicaragua;1873;Wood-based panels;5922;Export value;1000 USD;118;125;163;199;297;518;654;628;922;1264;1379;1379;1379;1400;1412;1412;1412;3320;3125;2220;1413;1360;1404;1404;1404;1404;151;125;376;648;648;42;42;42;89;108;108;617;1045;1724;1724;1868;2345;242;242;631;335;351;351;65;71;2404;2835;47;71;75;109;259;126;169;618;176.38;179.38 -157;'558;Nicaragua;1640;Plywood and LVL;5516;Production;m3;11800;10000;10000;11800;8500;12500;15000;13000;12700;15700;16500;16500;16500;16500;10000;10000;10000;10000;15900;14400;14400;22000;14000;10000;5000;6200;5100;5000;3400;9000;7500;7500;7500;7500;7500;7500;7500;7500;7500;7500;7500;7500;7500;7500;7500;7500;7500;7500;7500;14000;10000;10000;10000;10000;10000;10000;10000;10000;10000;9764;9764;9764;9764 -157;'558;Nicaragua;1640;Plywood and LVL;5616;Import quantity;m3;;;100;200;200;300;400;1000;1200;1300;1300;1300;0;0;1600;1600;1600;1200;100;100;100;100;100;100;100;100;100;100;100;100;100;1789;265;1612;1200;1300;1300;2545;1761;3215;3215;900;1254;1813;1813;2338;1430;2888;2888;7303;8413;11737;9432;7317;7809;13860;16422;12958;13369;8709;11196;11389;13161 -157;'558;Nicaragua;1640;Plywood and LVL;5622;Import value;1000 USD;;;16;48;44;78;149;204;220;244;261;261;0;0;467;467;467;414;38;57;57;57;57;57;57;57;57;57;57;57;57;909;85;904;628;645;645;1569;830;1547;1547;549;622;644;644;1332;1366;2761;2761;2523;3118;4609;3889;5228;5480;5436;6824;7046;6331;5699;9700;9801;8639 -157;'558;Nicaragua;1640;Plywood and LVL;5916;Export quantity;m3;800;700;700;800;1400;2400;3300;3000;4800;7000;7300;7300;7300;5100;6600;6600;6600;10700;9300;5200;3300;3000;3300;3300;3300;3300;300;300;800;1300;1300;73;73;73;200;200;200;1014;2135;4050;4050;5100;6528;566;566;1108;122;163;163;11;11;4000;5000;20;31;16;63;236;139;0;376;376;92 -157;'558;Nicaragua;1640;Plywood and LVL;5922;Export value;1000 USD;118;125;163;199;297;518;654;628;922;1264;1379;1379;1379;1400;1412;1412;1412;3320;3125;2220;1413;1360;1404;1404;1404;1404;151;125;376;648;648;42;42;42;89;108;108;591;989;1711;1711;1818;2293;186;186;555;210;220;220;7;20;2353;2797;8;15;13;49;199;110;144;517;159;159 -157;'558;Nicaragua;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;297 -157;'558;Nicaragua;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;154 -157;'558;Nicaragua;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;100;400;300;200;100;100;200;200;200;200;100;100;100;100;100;100;100;1200;400;400;400;100;100;100;100;100;100;100;100;100;100;3060;3060;1335;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -157;'558;Nicaragua;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;5;29;24;40;23;33;59;29;29;36;17;17;17;17;17;17;17;213;79;79;79;35;35;35;35;35;35;35;35;35;35;762;762;339;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -157;'558;Nicaragua;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3700;3900;3900;3432;4000;3900;3900;3000;5219;9082;9082;3283;3314;2711;919;12894;10737;716;1018;1396;1415;437;2906;2906;2473;2649;3266.26;3611;3452 -157;'558;Nicaragua;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;934;958;958;898;1005;991;991;871;1289;1484;1484;844;1661;1354;498;1859;1542;415;647;812;828;406;1869;1869;905;996;1507.16;1969;1795 -157;'558;Nicaragua;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;127;305;30;30;100;100;294;294;294;38;106;106;21;7;7;2;32;32;32;32;32;0;0;23;1;3 -157;'558;Nicaragua;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;56;13;13;50;50;50;50;50;38;44;44;9;2;2;2;24;24;24;24;24;0;0;5;1;4 -157;'558;Nicaragua;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;33;33;33;1082;130;153;153;63;63;116;71;183;193;107;200;50;107;21;21;91;121 -157;'558;Nicaragua;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;11;11;11;246;48;50;50;27;27;55;46;95;94;48;122;42;39;9;9;34;39 -157;'558;Nicaragua;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;6;6;6;6 -157;'558;Nicaragua;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3;3;3;3 -157;'558;Nicaragua;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;124;127;1162;500;900;900;1144;1691;1900;1900;3100;1251;2346;2346;2854;1329;2195;2009;1089;1089;2619;1705;1314;1679;1941;2070;2531;3526;2820;3289.58;4637.05;4510.05 -157;'558;Nicaragua;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;35;435;179;327;327;495;401;652;652;878;426;605;605;785;783;1135;1109;665;665;1837;1229;929;1066;956;1213;1502;1510;1041;1612.3;3161.57;2464.57 -157;'558;Nicaragua;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;0;1;16;16;77;118;118;118;75;75;75;27;23;60;64;74;74;25;53;140;25.05;25.05 -157;'558;Nicaragua;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;2;6;6;26;87;87;87;49;49;49;33;12;29;35;33;33;13;22;93;13.38;13.38 -157;'558;Nicaragua;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;400;400;362;400;1200;1200;1500;692;787;787;666;263;117;117;108;108;108;76;13;126;49;157;1200;1200;2;0;0.05;0.05 -157;'558;Nicaragua;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;193;193;210;251;496;496;605;295;365;365;297;143;48;48;67;67;78;50;11;80;23;73;682;682;3;1;0.57;0.57 -157;'558;Nicaragua;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;2;2.05;2.05 -157;'558;Nicaragua;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6.38;6.38 -157;'558;Nicaragua;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;282;891;300;300;600;422;972;972;1719;734;1324;1324;913;913;2266;1266;969;1320;1774;1793;1291;2224;2809;3270.58;4549;4166 -157;'558;Nicaragua;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;151;11;64;64;138;82;166;166;377;474;721;721;556;556;1579;944;688;838;873;1025;777;800;1031;1601.3;3038;2387 -157;'558;Nicaragua;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;69;69;26;26;26;9;3;40;40;40;40;11;16;115;0;0 -157;'558;Nicaragua;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;54;54;16;16;16;18;2;19;19;19;19;7;10;81;1;1 -157;'558;Nicaragua;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;300;500;500;500;400;400;400;1000;137;587;587;469;332;754;568;68;68;245;363;332;233;118;120;40;102;9;19;88;344 -157;'558;Nicaragua;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;121;134;134;134;139;92;92;135;49;74;74;111;166;366;340;42;42;180;235;230;148;60;115;43;28;7;10;123;77 -157;'558;Nicaragua;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;0;0;2;2;63;35;35;35;35;35;35;4;6;6;10;20;20;0;23;23;23;23 -157;'558;Nicaragua;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;20;27;27;27;27;27;27;9;4;4;10;8;8;0;6;6;6;6 -157;'558;Nicaragua;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;124;127;1157;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -157;'558;Nicaragua;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;35;431;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -157;'558;Nicaragua;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;11000;11000;15000;16000;23000;28000;34000;39000;39000;40000;35000;35000;35000;35000;35000;35000 -157;'558;Nicaragua;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;787;260;3321;2300;1000;1000;1362;793;1697;1697;1300;639;1334;1334;487;353;4518;4518;3971;3971;379;727;310;266;661;368;328;350;348;689;1239;2105 -157;'558;Nicaragua;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92;63;347;388;144;144;99;118;270;280;174;103;259;259;170;132;808;808;763;763;61;130;65;72;142;130;110;115;173;440;678;1095 -157;'558;Nicaragua;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;340;1000;200;200;666;937;1900;1900;2700;1700;4978;4978;5980;8470;10421;10421;14514;14514;22217;28369;33923;38820;29693;39537;34733;28721;25646;32495;29552;28316 -157;'558;Nicaragua;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;160;22;22;62;73;247;247;296;162;493;493;861;1377;2594;2594;2639;2639;4243;6092;6829;6921;5875;6871;5256;3954;3323;6467;5180;4139 -157;'558;Nicaragua;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;83;83;100;100;100;52;124;97;97;0;136;417;417;333;330;330;330;90;90;90;90;110;110;111;111;111;107;107;107;107;107 -157;'558;Nicaragua;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;29;29;29;29;29;27;67;64;64;0;42;157;157;140;131;131;131;34;34;34;34;47;47;67;67;68;42;42;42;42;42 -157;'558;Nicaragua;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;23;34;23;23;23;23;23;23;23;23;23;23 -157;'558;Nicaragua;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;6;6;6;6;6;6;6;6;6;6;6;6 -157;'558;Nicaragua;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;83;83;100;100;100;80;175;148;148;0;136;417;417;333;330;330;330;88;88;88;88;108;108;108;108;108;107;107;107;107;107 -157;'558;Nicaragua;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;29;29;29;29;29;56;110;107;107;0;42;157;157;140;131;131;131;32;32;32;32;45;45;45;45;46;42;42;42;42;42 -157;'558;Nicaragua;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;23;23;0;0;0;0;0;0;1;1;1;1;19;30;19;19;19;19;19;19;19;19;19;19 -157;'558;Nicaragua;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;16;0;0;0;0;0;0;1;1;1;1;11;11;11;11;11;11;11;11;11;11;11;11 -157;'558;Nicaragua;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -157;'558;Nicaragua;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;1;1;1;1;1 -157;'558;Nicaragua;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0 -157;'558;Nicaragua;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0 -157;'558;Nicaragua;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;83;83;100;100;100;40;67;40;40;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -157;'558;Nicaragua;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;29;29;29;29;29;19;26;23;23;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -157;'558;Nicaragua;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;0;0;0;;;;;;; -157;'558;Nicaragua;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;;;;;;; -157;'558;Nicaragua;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;46;46;46;0;136;417;417;333;330;330;330;88;88;88;88;108;108;108;108;108;107;107;107;107;107 -157;'558;Nicaragua;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;37;37;37;0;42;157;157;140;131;131;131;32;32;32;32;45;45;45;45;45;41;41;41;41;41 -157;'558;Nicaragua;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1 -157;'558;Nicaragua;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1 -157;'558;Nicaragua;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;133;133;133;84;84;84;84;84;84;84;84;84;84;84;84;84;84;84;84;84;84 -157;'558;Nicaragua;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;36;36;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23 -157;'558;Nicaragua;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;44;44;0;0;243;243;243;243;243;243;1;1;1;1;24;24;24;24;24;23;23;23;23;23 -157;'558;Nicaragua;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;31;31;0;0;102;102;102;102;102;102;3;3;3;3;22;22;22;22;22;18;18;18;18;18 -157;'558;Nicaragua;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 -157;'558;Nicaragua;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 -157;'558;Nicaragua;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -157;'558;Nicaragua;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -157;'558;Nicaragua;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;0;0;0;;;;;;; -157;'558;Nicaragua;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;;;;;;; -157;'558;Nicaragua;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;2;2;2;0;2;40;40;5;2;2;2;2;2;2;2;0;0;0;;;;;;; -157;'558;Nicaragua;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;6;6;6;0;6;19;19;15;6;6;6;6;6;6;6;0;0;0;;;;;;; -157;'558;Nicaragua;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;62;62;62;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -157;'558;Nicaragua;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;47;47;47;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -157;'558;Nicaragua;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;23;23;0;0;0;0;0;0;0;0;0;0;18;18;18;18;18;18;18;18;18;18;18;18 -157;'558;Nicaragua;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;16;0;0;0;0;0;0;0;0;0;0;10;10;10;10;10;10;10;10;10;10;10;10 -157;'558;Nicaragua;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;9;11;11;11;0;0;0;0;0;0;0;0;2;2;2;2;2;2;3;3;3;0;0;0;0;0 -157;'558;Nicaragua;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;4;4;4;4;0;0;0;0;0;0;0;0;2;2;2;2;2;2;22;22;22;0;0;0;0;0 -157;'558;Nicaragua;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22;22;22;22;22;22;22;22;22;22;22 -157;'558;Nicaragua;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5;5;5;5;5;5 -157;'558;Nicaragua;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;0;0;0;0;1;1;1;1;1;1;1;1;1;1;1;4;32;32;0;1;0.61;0 -157;'558;Nicaragua;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;1;1;1;1;1;1;1;1;1;1;1;1;26;26;0;2;1.79;0 -157;'558;Nicaragua;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;11000;11000;15000;16000;23000;28000;34000;39000;39000;40000;35000;35000;35000;35000;35000;35000 -157;'558;Nicaragua;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;725;177;3238;2200;900;900;1310;669;1600;1600;1300;503;917;917;154;23;4188;4188;3881;3881;289;637;200;156;550;257;217;243;241;582;1132;1998 -157;'558;Nicaragua;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;34;318;359;115;115;72;51;206;216;174;61;102;102;30;1;677;677;729;729;27;96;18;25;75;63;42;73;131;398;636;1053 -157;'558;Nicaragua;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;340;1000;200;200;666;937;1900;1900;2700;1700;4978;4978;5980;8470;10420;10420;14513;14513;22194;28335;33900;38797;29670;39514;34710;28698;25623;32472;29529;28293 -157;'558;Nicaragua;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;160;22;22;62;73;247;247;296;162;493;493;861;1377;2593;2593;2638;2638;4237;6086;6823;6915;5869;6865;5250;3948;3317;6461;5174;4133 -157;'558;Nicaragua;1876;Paper and paperboard;5610;Import quantity;t;3200;3730;5215;8200;10300;10700;14700;14500;14800;12100;11000;22500;22000;27900;21900;26000;27100;24200;8700;10000;10100;13300;12100;14600;18600;38900;21600;16400;17700;14300;13900;16659;18515;14515;7300;11000;9000;15401;16296;22249;22249;17000;30355;37116;37116;30126;25397;41637;41637;39758;38960;28162;29893;29246;19948;59554;71298;53965;136482;43679;77592.91;51704;51428 -157;'558;Nicaragua;1876;Paper and paperboard;5622;Import value;1000 USD;1049;1151;1536;1861;2250;2502;3204;3109;3553;3203;3176;5170;7504;10583;9843;12689;13934;11807;5290;7651;6900;12268;11537;13137;13115;19301;15594;9483;9635;7960;7760;12889;17716;10276;5174;8559;6973;13355;13554;17982;17982;14660;25626;26923;26923;26022;26390;31393;31393;39177;37411;32819;35467;42354;21051;42635;65443;52421;117813;38987;68504.16;74723;62946 -157;'558;Nicaragua;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;186;0;0;0;72;597;656;641;120;955;925;925;200;430;2984;2984;513;513;465;494;1341;372;364;2462;1933;650;562;268;323.15;94 -157;'558;Nicaragua;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;70;0;0;0;70;344;340;340;110;754;939;939;207;350;1871;1871;412;412;407;412;2340;393;408;1988;2004;792;746;348;554.94;238 -157;'558;Nicaragua;2042;Graphic papers;5610;Import quantity;t;2200;2630;2615;4000;4400;5800;5300;7100;6100;6200;6200;8000;6600;8500;5800;5900;5900;7000;3900;4900;7200;7800;6600;9100;7900;11900;8300;6700;6100;7600;7200;10531;5315;6615;2400;7000;4900;9432;10677;13500;13500;12400;17214;24641;24641;16519;15232;18831;18831;21157;21157;13855;11960;17568;15869;18523;19938;12758;12931;13192;12826.96;15520;13542 -157;'558;Nicaragua;2042;Graphic papers;5622;Import value;1000 USD;684;753;763;838;918;1225;1105;1361;1391;1437;1519;1823;2052;2014;3158;4364;4364;4508;2622;3464;4600;6642;5911;7511;5994;6602;6900;4097;3671;4625;4425;7258;3518;4838;1865;5873;4325;8251;8980;11312;11312;10525;14645;16800;16800;14820;15292;16493;16493;19903;19903;14817;12967;18148;15637;15779;20018;15264;15161;13878;15304.15;27697;20960 -157;'558;Nicaragua;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;29;8;8;8;60;195;87;87;5;105;132;132;90;90;144;131;107;106;106;99;92;6;19;34;44;61 -157;'558;Nicaragua;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;18;9;9;9;27;184;67;67;12;79;93;93;78;78;114;101;85;156;156;114;106;27;33;37;59;85 -157;'558;Nicaragua;1671;Newsprint;5610;Import quantity;t;1900;2300;2300;2700;2900;3800;3600;5400;3600;3700;4200;5200;3200;5200;4000;2700;2700;4500;2000;3000;5000;3700;2500;5000;5000;6300;4300;4100;4000;6400;6000;3966;3300;4000;2100;3600;3500;5442;6016;7800;7800;6700;7145;9473;9473;6194;4983;8534;8534;9462;9462;5162;3489;5248;3939;2534;3280;1223;605;912;666.18;273;743 -157;'558;Nicaragua;1671;Newsprint;5622;Import value;1000 USD;336;368;396;447;443;580;541;847;583;635;757;757;757;757;1607;1607;1607;2707;1087;1600;2600;2331;1600;3200;3300;3400;3400;2000;2000;3500;3300;2231;1972;2421;1100;2682;2936;4141;4192;5324;5324;4774;4755;4831;4831;4503;4102;5297;5297;5947;5947;4408;2997;4388;3038;1509;2374;937;571;774;643;394;1515 -157;'558;Nicaragua;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;100;100;24;24;22;22;22;4;4;4;4;0;4;4;24;24 -157;'558;Nicaragua;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;67;67;24;24;10;10;10;5;5;5;5;0;5;5;15;15 -157;'558;Nicaragua;1674;Printing and writing papers;5610;Import quantity;t;300;330;315;1300;1500;2000;1700;1700;2500;2500;2000;2800;3400;3300;1800;3200;3200;2500;1900;1900;2200;4100;4100;4100;2900;5600;4000;2600;2100;1200;1200;6565;2015;2615;300;3400;1400;3990;4661;5700;5700;5700;10069;15168;15168;10325;10249;10297;10297;11695;11695;8693;8471;12320;11930;15989;16658;11535;12326;12280;12160.78;15247;12799 -157;'558;Nicaragua;1674;Printing and writing papers;5622;Import value;1000 USD;348;385;367;391;475;645;564;514;808;802;762;1066;1295;1257;1551;2757;2757;1801;1535;1864;2000;4311;4311;4311;2694;3202;3500;2097;1671;1125;1125;5027;1546;2417;765;3191;1389;4110;4788;5988;5988;5751;9890;11969;11969;10317;11190;11196;11196;13956;13956;10409;9970;13760;12599;14270;17644;14327;14590;13104;14661.15;27303;19445 -157;'558;Nicaragua;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;29;8;8;8;60;195;87;87;5;5;32;32;66;66;122;109;85;102;102;95;88;6;15;30;20;37 -157;'558;Nicaragua;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;18;9;9;9;27;184;67;67;12;12;26;26;54;54;104;91;75;151;151;109;101;27;28;32;44;70 -157;'558;Nicaragua;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;78;100;100;100;694;809;809;545;402;6190;6190;505;505;189;67;534;498;419;236;236;199;140;258;51;100 -157;'558;Nicaragua;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;98;112;112;84;945;638;638;643;357;6685;6685;521;521;207;67;500;433;374;251;251;419;128;281;219;189 -157;'558;Nicaragua;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;68;68;68;68;68;68;0;0;0;0;3 -157;'558;Nicaragua;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;50;50;50;50;50;50;1;0;0;0;4 -157;'558;Nicaragua;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;3505;4100;4100;4000;8069;12425;12425;8738;8941;2525;2525;10132;10132;7652;7428;10742;10267;12278;14091;9655;10638;10317;9797.68;12727;10371 -157;'558;Nicaragua;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3023;3522;4305;4305;3988;7596;9805;9805;8510;9578;2613;2613;11801;11801;8804;8371;11627;10378;10817;14086;10600;11292;9957;10736.65;21388;14396 -157;'558;Nicaragua;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;135;79;79;4;4;31;31;31;31;19;6;6;18;18;17;6;2;0;18;1;10 -157;'558;Nicaragua;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;157;61;61;9;9;23;23;23;23;23;10;10;44;44;26;6;6;0;12;2;17 -157;'558;Nicaragua;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;923;1078;1500;1500;1600;1306;1934;1934;1042;906;1582;1582;1058;1058;852;976;1044;1165;3292;2331;1644;1489;1823;2105.1;2469;2328 -157;'558;Nicaragua;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1003;1168;1571;1571;1679;1349;1526;1526;1164;1255;1898;1898;1634;1634;1398;1532;1633;1788;3079;3307;3476;2879;3019;3643.5;5696;4860 -157;'558;Nicaragua;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;8;8;8;60;60;8;8;1;1;1;1;35;35;35;35;11;16;16;10;14;4;15;12;19;24 -157;'558;Nicaragua;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;9;9;9;27;27;6;6;3;3;3;3;31;31;31;31;15;57;57;33;45;20;28;20;42;49 -157;'558;Nicaragua;1675;Other paper and paperboard;5610;Import quantity;t;1000;1100;2600;4200;5900;4900;9400;7400;8700;5900;4800;14500;15400;19400;16100;20100;21200;17200;4800;5100;2900;5500;5500;5500;10700;27000;13300;9700;11600;6700;6700;6128;13200;7900;4900;4000;4100;5969;5619;8749;8749;4600;13141;12475;12475;13607;10165;22806;22806;18601;17803;14307;17933;11678;4079;41031;51360;41207;123551;30487;64765.95;36184;37886 -157;'558;Nicaragua;1675;Other paper and paperboard;5622;Import value;1000 USD;365;398;773;1023;1332;1277;2099;1748;2162;1766;1657;3347;5452;8569;6685;8325;9570;7299;2668;4187;2300;5626;5626;5626;7121;12699;8694;5386;5964;3335;3335;5631;14198;5438;3309;2686;2648;5104;4574;6670;6670;4135;10981;10123;10123;11202;11098;14900;14900;19274;17508;18002;22500;24206;5414;26856;45425;37157;102652;25109;53200.02;47026;41986 -157;'558;Nicaragua;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;186;0;0;0;43;589;648;633;60;760;838;838;195;325;2852;2852;423;423;321;363;1234;266;258;2363;1841;644;543;234;279.15;33 -157;'558;Nicaragua;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;70;0;0;0;52;335;331;331;83;570;872;872;195;271;1778;1778;334;334;293;311;2255;237;252;1874;1898;765;713;311;495.94;153 -157;'558;Nicaragua;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;300;500;500;37;500;500;600;2848;3230;3230;3421;590;180;180;485;485;518;676;826;457;423;481;589;752;141;701.44;564;887 -157;'558;Nicaragua;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;311;482;482;54;667;667;685;2810;3554;3554;3792;2308;653;653;1627;1627;1793;2458;2474;993;551;640;788;1027;168;845.6;756;1473 -157;'558;Nicaragua;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;413;712;712;107;107;107;107;107;107;107;107;107;107;3;55;28;85;28;1;251;17 -157;'558;Nicaragua;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;359;789;789;110;110;110;110;110;110;110;110;110;110;5;74;41;117;41;2;398;34 -157;'558;Nicaragua;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1500;4323;7049;7049;3400;8921;6712;6712;9272;8234;21192;21192;17136;16338;13471;16933;10134;3184;32672;49202;40226;122727;30324;64033.51;35573;36971 -157;'558;Nicaragua;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1186;3247;4878;4878;2661;5703;4162;4162;5453;6074;11328;11328;14906;13140;15439;19202;19812;3498;20255;43426;35835;101271;24692;52041.42;46038;40290 -157;'558;Nicaragua;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;538;548;533;60;322;109;109;86;212;2716;2716;313;313;211;253;1124;68;164;2217;1722;468;515;233;27.15;16 -157;'558;Nicaragua;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;246;247;247;83;191;66;66;82;151;1644;1644;215;215;174;152;2096;77;197;1750;1807;598;672;309;58.94;119 -157;'558;Nicaragua;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;1000;1100;2600;4200;5900;4400;8600;7000;8100;5200;4200;13900;14400;18500;15500;19400;20500;16500;3700;2500;1400;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;600;1500;;;;;;;;;;;;;;;;;;;;;;;;;; -157;'558;Nicaragua;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;365;398;773;1023;1332;1041;1720;1640;1701;1361;1273;2730;4369;7084;5502;7318;8563;6292;1681;1854;1000;1252;1252;1252;1252;1252;1252;1252;1252;1252;1252;1252;1252;1252;1252;464;1186;;;;;;;;;;;;;;;;;;;;;;;;;; -157;'558;Nicaragua;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;410;1182;3600;3600;1500;6533;2234;2234;3344;4342;16555;16555;13370;13370;9921;13138;4445;737;28283;42749;35992;118169;25963;57054.57;29777;28886 -157;'558;Nicaragua;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;202;552;2400;2400;745;3271;1385;1385;1771;2142;7823;7823;7588;7588;5725;8122;3254;720;14472;27834;26204;91921;15687;40530.03;30370;23086 -157;'558;Nicaragua;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110;15;15;19;90;90;90;90;90;8;8;52;52;52;667;441;45;135;8;8.15;0 -157;'558;Nicaragua;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;9;9;10;41;41;41;41;41;5;5;55;55;55;353;432;39;131;7;6.94;0 -157;'558;Nicaragua;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;170;660;660;100;141;384;384;2999;2388;3010;3010;2385;1587;1860;2240;3302;494;3477;3116;1876;967;1152;1528.38;1683;1661 -157;'558;Nicaragua;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112;306;415;415;286;246;238;238;1200;2362;2080;2080;5558;3792;7906;9520;13757;863;4835;9654;5993;3917;4537;5351.04;7338;7421 -157;'558;Nicaragua;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;0;96;26;26;26;34;8;8;29;29;29;71;1;1;1;2;2;3;5;5;3;13 -157;'558;Nicaragua;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;48;16;16;16;52;12;12;36;36;36;14;3;3;3;41;0;8;16;8;3;102 -157;'558;Nicaragua;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;965;2782;2600;2600;1600;2105;3322;3322;2809;1353;1475;1475;1346;1346;1443;1183;2056;1588;885;3175;2308;3389;3169;5407.57;4092;6348 -157;'558;Nicaragua;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;858;2350;2024;2024;1566;2130;2060;2060;2426;1486;1390;1390;1727;1727;1674;1354;2601;1657;911;5674;3479;5161;4410;6078.35;8278;9656 -157;'558;Nicaragua;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;25;10;60;116;68;68;37;65;2595;2595;172;172;172;172;1069;2;98;1535;1276;420;375;220;16;3 -157;'558;Nicaragua;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;10;10;83;82;41;41;51;44;1577;1577;124;124;124;124;2029;3;123;1340;1371;551;525;294;49;17 -157;'558;Nicaragua;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;189;189;189;200;142;772;772;120;151;152;152;35;35;247;372;331;365;27;162;50;202;40;43;21;76 -157;'558;Nicaragua;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;39;39;39;64;56;479;479;56;84;35;35;33;33;134;206;200;258;37;264;159;272;58;82;52;127 -157;'558;Nicaragua;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;522;522;522;0;0;0;0;4;23;23;23;22;22;2;2;2;13;13;13;3;0;0;0;0;0 -157;'558;Nicaragua;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;237;237;237;0;0;0;0;5;14;14;14;14;14;9;9;9;16;16;16;4;0;0;0;0;0 -157;'558;Nicaragua;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;500;800;400;600;700;600;600;1000;900;600;700;700;700;1100;2600;1500;4000;4000;4000;9200;25500;11800;8200;10100;5200;5200;4628;11700;6400;3400;3100;2100;3969;1259;1200;1200;600;1372;2533;2533;914;1341;1434;1434;980;980;318;324;718;438;7936;1677;392;72;22;31;47;28 -157;'558;Nicaragua;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;236;379;108;461;405;384;617;1083;1485;1183;1007;1007;1007;987;2333;1300;4374;4374;4374;5869;11447;7442;4134;4712;2083;2083;4379;12946;4186;2057;1911;980;3436;1273;1125;1125;789;2468;2407;2407;1957;2716;2919;2919;2741;2741;770;840;1920;923;6050;1359;534;354;249;313;232;223 -157;'558;Nicaragua;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;186;0;0;0;43;51;100;100;0;25;17;17;2;6;29;29;3;3;3;3;3;91;91;91;91;91;0;0;1;0 -157;'558;Nicaragua;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;70;0;0;0;52;89;84;84;0;20;17;17;3;10;24;24;9;9;9;49;49;50;50;50;50;50;0;0;39;0 -157;'558;Nicaragua;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31479;20761;18324;17221;25524;28449;35352 -157;'558;Nicaragua;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7453;9199;6423;5597;7635;11454;10547 -157;'558;Nicaragua;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;460;238;83;213;338;290;474 -157;'558;Nicaragua;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1251;985;591;101;327;329;210 -157;'558;Nicaragua;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;319;207;82;183;306;286;433 -157;'558;Nicaragua;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;3;3;3;17;25 -157;'558;Nicaragua;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;141;31;1;30;32;4;41 -157;'558;Nicaragua;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1251;982;588;98;324;312;185 -157;'558;Nicaragua;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4279;3729;4757;3681;6061;9831;13713 -157;'558;Nicaragua;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1082;2317;2263;1921;3138;4875;3640 -157;'558;Nicaragua;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;289;159;232;189;204;233;310 -157;'558;Nicaragua;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;421;327;214;198;452;651;590 -157;'558;Nicaragua;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3676;2170;2374;1686;2435;2716;3467 -157;'558;Nicaragua;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;454;1179;519;239;206;270;349 -157;'558;Nicaragua;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;16 -157;'558;Nicaragua;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;30 -157;'558;Nicaragua;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21618;13570;9989;10388;15164;14064;16005 -157;'558;Nicaragua;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3183;3579;2095;1976;3326;4852;5072 -157;'558;Nicaragua;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;439;157;46;0;16;11;10 -157;'558;Nicaragua;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;583;744;671;1104;80;289;560 -157;'558;Nicaragua;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;718;738;843;1064;1306;1304;1373 -157;'558;Nicaragua;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;479;68;70;58;106;188;126 -157;'558;Nicaragua;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;130393;123012;126518;129879;151416;178528;192505 -157;'558;Nicaragua;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5420;8010;3727;4878;8174;5218;3477 -157;'558;Nicaragua;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;247;286;227;164;218;544;305 -157;'558;Nicaragua;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;1;0;0;1;18;18 -157;'558;Nicaragua;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4842;4091;4239;3894;4580;4885;4862 -157;'558;Nicaragua;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;25;50;34;18;1;5 -157;'558;Nicaragua;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55423;56229;56126;58158;57915;62361;79230 -157;'558;Nicaragua;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1492;928;858;709;625;885;1161 -157;'558;Nicaragua;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20451;22113;26435;27984;41988;50658;49267 -157;'558;Nicaragua;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3641;6881;2705;4013;7374;4148;1883 -157;'558;Nicaragua;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49430;40293;39491;39679;46715;60080;58841 -157;'558;Nicaragua;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;257;175;114;122;156;166;410 -158;'562;Niger;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42247;32211;44777;29458;31103;27903;18210 -158;'562;Niger;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;932;1054;2612;644;559;602;505 -158;'562;Niger;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;135;277;253;373;192;418;405;506;506;506;506;506;506;345;1323;239;285;285;413;433;1958;3103;4321;4132;4600;2707;4224;6879;6200;6230;3893;3623;714;942;696;2108;5124;6001;6329;3479;4324;5060;10145;7975;7975;8777;8496;9078;5832;9225;10488;10656;21212;19166;14908;14447;34055;17763;20187;18009;19813;17118;10986 -158;'562;Niger;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;406;115;132;59;0;194;140;789;241;364;1594;1431;1431;1637;1365;905;648;497;658;674;325;360;414;386;335;494;2259;406;214;401;322 -158;'562;Niger;1861;Roundwood;5516;Production;m3;2284705;2356302;2429951;2506716;2583662;2663856;2745368;2829270;2914633;3003536;3053146;3185365;3451029;3481414;3648224;3780080;3835387;3865878;3959124;4067650;4217613;4402151;4574816;4959384;5111219;5226773;5445568;5581825;5828795;5980499;6177030;6513498;6750932;6959722;7184681;7413212;7645438;7821174;8022274;8384433;8574463;8769443;8969510;9174806;9507477;9710778;9919222;10132952;10352114;10576857;10792697;11013839;11240427;11472609;11710539;11919690;12133505;12352101;12575598;12804121;13037051;13275282;13518949 -158;'562;Niger;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;848;848;848;848;483;591;591;688;1097;221;4872;794;116;19;129;265;301;20;16;21;10 -158;'562;Niger;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;66;66;66;66;29;50;50;144;326;13;4857;72;11;14;69;129;74;8;12;43;4 -158;'562;Niger;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;527;527;527;800;395;3596;3596;3596;3596;405;134;20;150;150;150;150;150;62;62;224;47;3857;0;0;1254;176 -158;'562;Niger;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;130;130;130;206;159;1198;1198;1198;1198;36;22;16;6;6;6;6;6;3;3;50;15;1086;0;0;157;139 -158;'562;Niger;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 -158;'562;Niger;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;30;291;13;10;6;0 -158;'562;Niger;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;17;69;3;7;10;0 -158;'562;Niger;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140;0;0;0;0;972;0 -158;'562;Niger;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;0;0;0;0;0;0 -158;'562;Niger;1863;Roundwood, non-coniferous;5516;Production;m3;2284705;2356302;2429951;2506716;2583662;2663856;2745368;2829270;2914633;3003536;3053146;3185365;3451029;3481414;3648224;3780080;3835387;3865878;3959124;4067650;4217613;4402151;4574816;4959384;5111219;5226773;5445568;5581825;5828795;5980499;6177030;6513498;6750932;6959722;7184681;7413212;7645438;7821174;8022274;8384433;8574463;8769443;8969510;9174806;9507477;9710778;9919222;10132952;10352114;10576857;10792697;11013839;11240427;11472609;11710539;11919690;12133505;12352101;12575598;12804121;13037051;13275282;13518949 -158;'562;Niger;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110;235;10;7;6;15;10 -158;'562;Niger;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;112;5;5;5;33;4 -158;'562;Niger;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;47;3857;0;0;282;176 -158;'562;Niger;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;15;1086;0;0;157;139 -158;'562;Niger;1864;Wood fuel;5516;Production;m3;2160705;2227302;2295951;2366716;2439662;2514856;2592368;2672270;2754633;2839536;2884146;3012365;3273029;3298414;3460224;3586080;3635387;3658878;3745124;3846650;3989613;4166151;4330816;4706384;4850219;4956773;5167568;5294825;5532795;5674499;5861030;6186498;6412932;6609722;6822681;7039212;7259438;7422174;7611274;7805433;7995463;8190443;8390510;8595806;8806477;9009778;9218222;9431952;9651114;9875857;10091697;10312839;10539427;10771609;11009539;11218690;11432505;11651101;11874598;12103121;12336051;12574282;12817949 -158;'562;Niger;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;;;;;;; -158;'562;Niger;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;;;;;;; -158;'562;Niger;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;62;;;;;;; -158;'562;Niger;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;;;;;;; -158;'562;Niger;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 -158;'562;Niger;1628;Wood fuel, non-coniferous;5516;Production;m3;2160705;2227302;2295951;2366716;2439662;2514856;2592368;2672270;2754633;2839536;2884146;3012365;3273029;3298414;3460224;3586080;3635387;3658878;3745124;3846650;3989613;4166151;4330816;4706384;4850219;4956773;5167568;5294825;5532795;5674499;5861030;6186498;6412932;6609722;6822681;7039212;7259438;7422174;7611274;7805433;7995463;8190443;8390510;8595806;8806477;9009778;9218222;9431952;9651114;9875857;10091697;10312839;10539427;10771609;11009539;11218690;11432505;11651101;11874598;12103121;12336051;12574282;12817949 -158;'562;Niger;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;;;;;;; -158;'562;Niger;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;;;;;;; -158;'562;Niger;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;62;;;;;;; -158;'562;Niger;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;;;;;;; -158;'562;Niger;1865;Industrial roundwood;5516;Production;m3;124000;129000;134000;140000;144000;149000;153000;157000;160000;164000;169000;173000;178000;183000;188000;194000;200000;207000;214000;221000;228000;236000;244000;253000;261000;270000;278000;287000;296000;306000;316000;327000;338000;350000;362000;374000;386000;399000;411000;579000;579000;579000;579000;579000;701000;701000;701000;701000;701000;701000;701000;701000;701000;701000;701000;701000;701000;701000;701000;701000;701000;701000;701000 -158;'562;Niger;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;848;848;848;848;483;591;591;688;1097;221;4872;794;102;5;129;265;301;20;16;21;10 -158;'562;Niger;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;66;66;66;66;29;50;50;144;326;13;4857;72;8;11;69;129;74;8;12;43;4 -158;'562;Niger;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;527;527;527;800;395;3596;3596;3596;3596;405;134;20;150;150;150;150;150;0;0;224;47;3857;0;0;1254;176 -158;'562;Niger;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;130;130;130;206;159;1198;1198;1198;1198;36;22;16;6;6;6;6;6;0;0;50;15;1086;0;0;157;139 -158;'562;Niger;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33;33;33;33;110;110;110;0;0;0;5;0;0;0;19;30;291;13;10;6;0 -158;'562;Niger;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;7;7;7;0;0;0;1;0;0;0;48;17;69;3;7;10;0 -158;'562;Niger;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;387;116;2;0;0;0;0;0;0;0;140;0;0;0;0;972;0 -158;'562;Niger;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;6;0;0;0;0;0;0;0;0;21;0;0;0;0;0;0 -158;'562;Niger;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33;33;33;33;110;110;110;0;0;0;5;0;0;0;19;30;291;13;10;6;0 -158;'562;Niger;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;7;7;7;0;0;0;1;0;0;0;48;17;69;3;7;10;0 -158;'562;Niger;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;387;116;2;0;0;0;0;0;0;0;140;0;0;0;0;972;0 -158;'562;Niger;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;6;0;0;0;0;0;0;0;0;21;0;0;0;0;0;0 -158;'562;Niger;1867;Industrial roundwood, non-coniferous;5516;Production;m3;124000;129000;134000;140000;144000;149000;153000;157000;160000;164000;169000;173000;178000;183000;188000;194000;200000;207000;214000;221000;228000;236000;244000;253000;261000;270000;278000;287000;296000;306000;316000;327000;338000;350000;362000;374000;386000;399000;411000;579000;579000;579000;579000;579000;701000;701000;701000;701000;701000;701000;701000;701000;701000;701000;701000;701000;701000;701000;701000;701000;701000;701000;701000 -158;'562;Niger;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;815;815;815;815;373;481;481;688;1097;221;4867;794;102;5;110;235;10;7;6;15;10 -158;'562;Niger;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;64;64;64;22;43;43;144;326;13;4856;72;8;11;21;112;5;5;5;33;4 -158;'562;Niger;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;527;527;527;800;395;3596;3596;3596;3596;18;18;18;150;150;150;150;150;0;0;84;47;3857;0;0;282;176 -158;'562;Niger;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;130;130;130;206;159;1198;1198;1198;1198;16;16;16;6;6;6;6;6;0;0;29;15;1086;0;0;157;139 -158;'562;Niger;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;44;44;44;10;12;12;12;29;155;120;120;102;5;53;39;0;0;0;0;0 -158;'562;Niger;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;17;1;1;1;1;1;9;4;4;8;11;10;10;0;0;0;0;0 -158;'562;Niger;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;527;527;527;800;395;3596;3596;3596;3596;18;18;18;150;150;150;150;150;0;0;84;47;3857;0;0;282;176 -158;'562;Niger;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;130;130;130;206;159;1198;1198;1198;1198;16;16;16;6;6;6;6;6;0;0;29;15;1086;0;0;157;139 -158;'562;Niger;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;771;771;771;771;363;469;469;676;1068;66;4747;674;0;0;57;196;10;7;6;15;10 -158;'562;Niger;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;47;47;47;21;42;42;143;325;4;4852;68;0;0;11;102;5;5;5;33;4 -158;'562;Niger;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -158;'562;Niger;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -158;'562;Niger;1868;Sawlogs and veneer logs;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -158;'562;Niger;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -158;'562;Niger;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -158;'562;Niger;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -158;'562;Niger;1871;Other industrial roundwood;5516;Production;m3;124000;129000;134000;140000;144000;149000;153000;157000;160000;164000;169000;173000;178000;183000;188000;194000;200000;207000;214000;221000;228000;236000;244000;253000;261000;270000;278000;287000;296000;306000;316000;327000;338000;350000;362000;374000;386000;399000;411000;579000;579000;579000;579000;579000;701000;701000;701000;701000;701000;701000;701000;701000;701000;701000;701000;701000;701000;701000;701000;701000;701000;701000;701000 -158;'562;Niger;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;124000;129000;134000;140000;144000;149000;153000;157000;160000;164000;169000;173000;178000;183000;188000;194000;200000;207000;214000;221000;228000;236000;244000;253000;261000;270000;278000;287000;296000;306000;316000;327000;338000;350000;362000;374000;386000;399000;411000;579000;579000;579000;579000;579000;701000;701000;701000;701000;701000;701000;701000;701000;701000;701000;701000;701000;701000;701000;701000;701000;701000;701000;701000 -158;'562;Niger;1630;Wood charcoal;5510;Production;t;77403;80658;84049;87584;91267;95105;99104;103271;107614;112139;114487;121841;137566;138799;148694;155943;158322;158943;163601;169295;177175;187297;196721;220632;228953;234792;248121;255675;271130;279691;291477;313409;328238;341085;355178;369754;384735;396434;409798;423613;437818;452499;467673;483355;499563;516032;533000;550600;568769;587519;606381;625847;645939;666676;688078;708126;728758;749991;771843;794332;817652;841657;866367 -158;'562;Niger;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;31;31;182;182;3;56;56;4;14;11;11;11;882;422;5833;4163;6144 -158;'562;Niger;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;42;42;7;28;28;5;5;1;1;1;73;61;281;185;283 -158;'562;Niger;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;13;0;76;76;76;76;76;127;5;49;25;264;129;54;54;31;42;162;565;454;201;0;5;0 -158;'562;Niger;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;3;0;14;14;14;14;14;39;4;33;30;108;41;17;17;17;14;53;210;195;78;0;0;0 -158;'562;Niger;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;43;45;45;45;45;45;45;7;12;12;12;1;11;137;137;179 -158;'562;Niger;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;4;4;4;4;4;4;6;3;3;3;1;2;21;19;21 -158;'562;Niger;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;320;0;0;0;0;0;0;0;0;0;0;0;0;29;29;30;6;6;6;6;71;71;71;71 -158;'562;Niger;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;14;0;0;0;0;0;0;0;0;0;0;0;0;1;1;3;0;0;0;0;0;0;0;0 -158;'562;Niger;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;43;43;43;43;43;43;43;5;1;1;1;1;0;126;126;168 -158;'562;Niger;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;6;1;1;1;1;0;19;17;19 -158;'562;Niger;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -158;'562;Niger;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -158;'562;Niger;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;11;11;11;0;11;11;11;11 -158;'562;Niger;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;0;2;2;2;0;2;2;2;2 -158;'562;Niger;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;320;0;0;0;0;0;0;0;0;0;0;0;0;29;29;30;6;6;6;6;71;71;71;71 -158;'562;Niger;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;14;0;0;0;0;0;0;0;0;0;0;0;0;1;1;3;0;0;0;0;0;0;0;0 -158;'562;Niger;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9 -158;'562;Niger;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2 -158;'562;Niger;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;20 -158;'562;Niger;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2 -158;'562;Niger;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9 -158;'562;Niger;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2 -158;'562;Niger;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;20 -158;'562;Niger;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2 -158;'562;Niger;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4300;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000 -158;'562;Niger;1872;Sawnwood;5616;Import quantity;m3;700;500;600;700;900;1100;600;600;600;600;600;600;600;1200;600;600;1500;1500;1500;1500;2200;6100;3100;2600;2000;500;4100;6200;6800;7000;7600;8170;578;503;310;310;4600;4600;5100;837;6340;1151;4708;118;118;5173;3762;3313;2656;3513;3868;5167;9982;10836;8100;8326;10134;11058;77752;79369;74206;67784;67804 -158;'562;Niger;1872;Sawnwood;5622;Import value;1000 USD;43;42;47;57;55;88;50;50;50;50;50;50;50;121;64;37;52;52;180;200;500;685;300;289;199;65;539;773;847;1108;766;862;110;123;36;32;1340;1204;1765;450;1328;159;1950;54;54;2544;2470;2395;1954;2403;2703;3782;7180;7583;5915;5026;6187;7983;6868;7018;7987;6484;6484 -158;'562;Niger;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;213;3544;219;261;100;0;111;0;0;0;236;50;144;144;211;45;35;35;13;27;64;113;33;68;11;65;57;3327;43;16;0;11 -158;'562;Niger;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;406;79;95;22;0;45;0;0;0;114;37;44;44;103;64;49;49;8;25;60;101;34;22;8;31;45;605;22;8;84;23 -158;'562;Niger;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;0;0;0;0;0;0;0;0;0;0;0;0;0 -158;'562;Niger;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;570;551;493;300;300;100;100;0;22;40;1093;7;7;7;7;2;54;27;8;26;38;59;259;264;13;89;93;312;90;388;204;224 -158;'562;Niger;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96;92;119;32;28;5;5;0;13;30;108;20;20;20;20;1;29;13;2;7;15;14;63;86;3;48;21;8;31;10;153;153 -158;'562;Niger;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;42;0;0;0;0;0;0;0;0;0;0;39;5;5;5;0;0;10;0;0;63;0;62;0;0;0;0;0;11 -158;'562;Niger;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;16;0;0;0;0;0;0;0;0;0;0;11;2;2;2;0;0;3;0;0;20;0;29;0;0;0;0;0;23 -158;'562;Niger;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;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 -158;'562;Niger;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;700;500;600;700;900;1100;600;600;600;600;600;600;600;1200;600;600;1500;1500;1500;1500;2200;6100;3100;2600;2000;500;4100;6200;6800;7000;7600;7600;27;10;10;10;4500;4500;5100;815;6300;58;4701;111;111;5166;3760;3259;2629;3505;3842;5129;9923;10577;7836;8313;10045;10965;77440;79279;73818;67580;67580 -158;'562;Niger;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;43;42;47;57;55;88;50;50;50;50;50;50;50;121;64;37;52;52;180;200;500;685;300;289;199;65;539;773;847;1108;766;766;18;4;4;4;1335;1199;1765;437;1298;51;1930;34;34;2524;2469;2366;1941;2401;2696;3767;7166;7520;5829;5023;6139;7962;6860;6987;7977;6331;6331 -158;'562;Niger;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;213;3544;219;219;100;0;111;0;0;0;236;50;144;144;172;40;30;30;13;27;54;113;33;5;11;3;57;3327;43;16;0;0 -158;'562;Niger;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;406;79;79;22;0;45;0;0;0;114;37;44;44;92;62;47;47;8;25;57;101;34;2;8;2;45;605;22;8;84;0 -158;'562;Niger;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000 -158;'562;Niger;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;19;19;900;400;29;0;34;0;0;0;0;0;0;80;72;10;35;77;135;92;174;44;12;24;105;46;107;45;0;36 -158;'562;Niger;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;28;28;216;105;12;0;12;0;0;0;0;0;0;71;30;8;13;67;15;21;290;18;6;35;167;108;42;60;17;17 -158;'562;Niger;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;0;5;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;0;0;0;0;0;0;0;0;0 -158;'562;Niger;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;34;34;0;9;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 -158;'562;Niger;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -158;'562;Niger;1873;Wood-based panels;5616;Import quantity;m3;100;200;100;300;200;300;300;400;400;400;400;400;400;200;100;100;400;400;400;400;400;1600;2200;1900;3600;1500;2100;2600;2600;2600;2800;2800;5;5;67;1551;1800;2200;2800;3853;4702;25;6902;64;64;32;5436;5933;3621;5709;7100;6574;8861;8848;19157;9487;36044;10563;28225;51698;32734;31333;10565 -158;'562;Niger;1873;Wood-based panels;5622;Import value;1000 USD;7;37;21;50;53;125;125;150;150;150;150;150;150;68;20;27;58;58;58;58;58;34;424;360;711;650;965;1578;1525;1841;1563;1563;9;6;12;471;1204;1227;1381;1429;1454;18;1635;23;23;21;2814;3082;1454;2657;3037;3794;5770;6484;5924;5302;25138;6579;8083;6028;8092;6681;2323 -158;'562;Niger;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;0;0;0;28;28;28;28;45;45;66;53;26;26;23;23;23;23;37;193;191;191;191;191;292;189;164;164 -158;'562;Niger;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;0;0;24;24;24;37;15;15;19;123;66;66;25;25;25;25;32;96;95;95;95;95;170;88;77;77 -158;'562;Niger;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -158;'562;Niger;1640;Plywood and LVL;5616;Import quantity;m3;100;200;100;300;200;300;300;400;400;400;400;400;400;200;100;100;400;400;400;400;400;1600;2200;1900;3600;1500;2100;2600;2600;2600;2800;2800;5;5;16;1500;1800;2200;2800;3800;4700;23;6900;62;62;30;5434;5924;3587;5584;6981;6511;8814;8717;19048;9453;36010;10536;27115;51368;32159;31234;10431 -158;'562;Niger;1640;Plywood and LVL;5622;Import value;1000 USD;7;37;21;50;53;125;125;150;150;150;150;150;150;68;20;27;58;58;58;58;58;34;424;360;711;650;965;1578;1525;1841;1563;1563;9;6;4;463;1204;1227;1381;1400;1453;17;1634;22;22;20;2813;3076;1435;2565;2930;3715;5462;6170;5655;5280;25116;6559;6446;5617;7868;6479;2234 -158;'562;Niger;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;28;28;45;45;45;30;3;3;0;0;0;0;1;2;0;0;0;0;103;0;0;0 -158;'562;Niger;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;24;37;15;15;15;98;41;41;0;0;0;0;0;1;0;0;0;0;82;0;0;0 -158;'562;Niger;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -158;'562;Niger;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -158;'562;Niger;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -158;'562;Niger;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -158;'562;Niger;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;51;0;0;0;45;0;0;0;0;0;0;0;0;25;73;73;1;8;104;63;2;2;2;759;304;40;56;52 -158;'562;Niger;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;0;0;0;26;0;0;0;0;0;0;0;0;13;63;63;1;18;278;203;3;3;3;1166;367;22;139;60 -158;'562;Niger;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;0;0;0;0;0;0;0;0;0;21;14;14;14;14;14;14;14;27;27;27;27;27;27;25;25;0;0 -158;'562;Niger;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;0;0;0;0;0;0;0;0;4;11;11;11;11;11;11;11;18;18;18;18;18;18;11;11;0;0 -158;'562;Niger;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;2;16;0;0;0;2;2;0;5;5 -158;'562;Niger;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;7;30;0;0;0;6;10;0;8;8 -158;'562;Niger;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;2;2;2;2;2;2;2;9;9;52;46;62;33;25;30;32;32;25;349;24;535;38;77 -158;'562;Niger;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;1;1;1;1;1;1;1;6;6;29;44;78;280;29;36;19;19;17;465;34;202;55;21 -158;'562;Niger;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;9;9;9;164;164;164;164;164;164;164;164;164 -158;'562;Niger;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;14;14;14;14;14;77;77;77;77;77;77;77;77;77 -158;'562;Niger;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -158;'562;Niger;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -158;'562;Niger;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;2;2;2;2;2;2;2;9;9;52;31;59;30;21;21;23;23;23;25;24;140;17;56 -158;'562;Niger;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;1;1;1;1;1;1;1;6;6;29;20;74;276;27;27;10;10;10;91;28;49;54;20 -158;'562;Niger;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;7;7;162;162;162;162;162;162;162;162;162 -158;'562;Niger;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;13;13;13;13;76;76;76;76;76;76;76;76;76 -158;'562;Niger;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;3;3;4;9;9;9;2;324;0;395;21;21 -158;'562;Niger;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;4;4;2;9;9;9;7;374;6;153;1;1 -158;'562;Niger;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2 -158;'562;Niger;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1 -158;'562;Niger;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -158;'562;Niger;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -158;'562;Niger;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;;;;;;;1128;1088;7452;7496;13204;13204;8317;2204;2204;2204;2214;2214;2203;2200;2193;2194;2206;2206;2206;2021;2244;2210;279;287 -158;'562;Niger;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;;;;;;;673;663;3956;4322;4545;4545;5338;1378;1378;1378;1388;1386;1398;1386;1377;1378;1381;1381;1381;1252;1391;1383;375;378 -158;'562;Niger;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;9;9;995;995;997;997;997;745;745;2;2;18;3;3;3;2;65;65;65;65 -158;'562;Niger;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;1;1;151;151;155;155;155;174;174;4;4;17;5;5;5;4;9;9;9;9 -158;'562;Niger;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;;;;;;;1088;1088;7423;7484;9499;9499;8306;2193;2193;2193;2193;2193;2193;2193;2193;2193;2193;2193;2193;2002;2193;2193;279;279 -158;'562;Niger;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;;;;;;;663;663;3946;4315;4134;4134;5337;1377;1377;1377;1377;1377;1377;1377;1377;1377;1377;1377;1377;1179;1377;1377;375;375 -158;'562;Niger;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2 -158;'562;Niger;1878;Pulp for paper;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;4;4 -158;'562;Niger;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;;;;;;;897;897;7232;7293;9308;9308;8115;2002;2002;2002;2002;2002;2002;2002;2002;2002;2002;2002;2002;2002;2002;2002;271;271 -158;'562;Niger;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;;;;;;;457;457;3740;4109;3928;3928;5131;1171;1171;1171;1171;1171;1171;1171;1171;1171;1171;1171;1171;1171;1171;1171;374;374 -158;'562;Niger;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 -158;'562;Niger;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 -158;'562;Niger;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;;;;;;;897;897;7232;7293;9308;9308;8115;2002;2002;2002;2002;2002;2002;2002;2002;2002;2002;2002;2002;2002;2002;2002;271;271 -158;'562;Niger;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;;;;;;;457;457;3740;4109;3928;3928;5131;1171;1171;1171;1171;1171;1171;1171;1171;1171;1171;1171;1171;1171;1171;1171;374;374 -158;'562;Niger;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 -158;'562;Niger;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 -158;'562;Niger;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;;;;;;;897;897;7232;7293;9308;9308;8115;2002;2002;2002;2002;2002;2002;2002;2002;2002;2002;2002;2002;2002;2002;2002;271;271 -158;'562;Niger;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;;;;;;;457;457;3740;4109;3928;3928;5131;1171;1171;1171;1171;1171;1171;1171;1171;1171;1171;1171;1171;1171;1171;1171;374;374 -158;'562;Niger;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 -158;'562;Niger;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 -158;'562;Niger;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;191;191;191;191;191;191;191;191;191;191;191;191;191;191;191;191;191;191;191;0;191;191;8;8 -158;'562;Niger;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;206;206;206;206;206;206;206;206;206;206;206;206;206;206;206;206;206;206;206;8;206;206;1;1 -158;'562;Niger;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2 -158;'562;Niger;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4 -158;'562;Niger;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;0;29;12;3705;3705;11;11;11;11;21;21;10;7;0;1;13;13;13;19;51;17;0;8 -158;'562;Niger;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;0;10;7;411;411;1;1;1;1;11;9;21;9;0;1;4;4;4;73;14;6;0;3 -158;'562;Niger;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;9;9;995;995;995;995;995;743;743;0;0;16;1;1;1;0;63;63;63;63 -158;'562;Niger;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;1;1;151;151;151;151;151;170;170;0;0;13;1;1;1;0;5;5;5;5 -158;'562;Niger;1876;Paper and paperboard;5610;Import quantity;t;200;400;400;600;200;600;700;600;600;600;600;600;600;300;850;300;300;300;300;300;1900;1400;1200;1300;1600;1900;1500;1500;1300;1500;800;1203;417;704;548;1100;1600;1753;1962;803;713;825;13573;4223;4223;816;1371;2924;1012;2211;2491;1665;2319;3550;2214;3659;1465;1573;3643;11076;2945;5219;2705 -158;'562;Niger;1876;Paper and paperboard;5622;Import value;1000 USD;85;198;185;266;84;205;230;306;306;306;306;306;306;156;1239;175;175;175;175;175;1400;2384;3597;3483;3690;1992;2720;4528;3828;3281;1564;1198;569;785;620;1389;2475;3558;3183;915;879;925;2171;3286;3286;807;1731;2140;942;2574;2958;1622;1966;3351;1651;2714;1241;1520;3728;3459;1977;3312;1474 -158;'562;Niger;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;0;13;12;220;13;44;371;238;238;210;859;445;234;205;99;161;134;196;211;199;92;139;280;191;129;108;108 -158;'562;Niger;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;0;10;10;618;11;53;308;159;159;152;952;609;329;273;320;368;171;263;256;261;101;124;274;127;109;72;72 -158;'562;Niger;2042;Graphic papers;5610;Import quantity;t;;200;200;100;100;100;100;100;100;100;100;100;100;200;250;200;200;200;200;200;1200;1200;800;800;1200;1500;600;800;600;700;600;907;231;586;264;300;300;453;662;604;500;395;845;1174;1174;447;1197;1492;496;1882;1894;1317;2009;2782;1715;3429;1285;1453;3182;10327;2319;4360;1849 -158;'562;Niger;2042;Graphic papers;5622;Import value;1000 USD;;137;82;33;33;20;30;27;27;27;27;27;27;118;237;131;131;131;131;131;800;1774;1833;1065;1371;1140;1002;1015;878;1105;977;940;282;653;324;397;552;821;898;679;571;480;1051;846;846;516;1369;1773;565;2297;1910;1275;1740;2584;1419;2568;1068;1409;2257;2947;1480;2603;1049 -158;'562;Niger;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;0;13;12;13;13;14;299;123;123;95;95;148;101;81;45;107;66;130;152;138;31;31;107;87;25;24;24 -158;'562;Niger;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;0;10;10;11;11;13;232;77;77;70;70;127;76;53;41;89;78;178;190;185;25;25;66;39;21;23;23 -158;'562;Niger;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;150;100;100;100;100;100;600;300;100;;100;100;;200;;100;300;;32;122;122;0;0;52;62;14;100;91;126;288;288;15;149;113;44;425;158;432;268;152;187;197;84;84;121;97;78;61;74 -158;'562;Niger;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;161;42;42;42;42;42;300;202;61;;42;35;;104;;34;520;;30;93;93;0;0;17;70;10;120;92;207;146;146;16;226;198;54;337;178;341;366;228;200;171;64;64;79;82;88;76;88 -158;'562;Niger;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;63;63;63;63;63;63;61;25;89;2;2;16;2;2;2;2;2;2;2;2 -158;'562;Niger;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;30;30;30;30;30;30;33;21;76;2;2;5;1;1;1;1;1;1;1;1 -158;'562;Niger;1674;Printing and writing papers;5610;Import quantity;t;;200;200;100;100;100;100;100;100;100;100;100;100;200;100;100;100;100;100;100;600;900;700;800;1100;1400;600;600;600;600;300;907;199;464;142;300;300;401;600;590;400;304;719;886;886;432;1048;1379;452;1457;1736;885;1741;2630;1528;3232;1201;1369;3061;10230;2241;4299;1775 -158;'562;Niger;1674;Printing and writing papers;5622;Import value;1000 USD;;137;82;33;33;20;30;27;27;27;27;27;27;118;76;89;89;89;89;89;500;1572;1772;1065;1329;1105;1002;911;878;1071;457;940;252;560;231;397;552;804;828;669;451;388;844;700;700;500;1143;1575;511;1960;1732;934;1374;2356;1219;2397;1004;1345;2178;2865;1392;2527;961 -158;'562;Niger;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;0;13;12;13;13;14;229;60;60;32;32;85;38;20;20;18;64;128;136;136;29;29;105;85;23;22;22 -158;'562;Niger;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;0;10;10;11;11;13;204;47;47;40;40;97;46;20;20;13;76;176;185;184;24;24;65;38;20;22;22 -158;'562;Niger;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;128;191;121;0;97;48;129;129;55;67;77;92;10;191;71;38;169;230;2;3;3;468;374;182;100;86 -158;'562;Niger;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;307;316;122;0;148;56;102;102;75;59;76;114;13;203;92;34;102;109;8;17;17;298;204;70;38;22 -158;'562;Niger;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;10;10;10;10;10;10;2;2;2;2;0;0;0;0;0;0;0;0;0;0;0;0 -158;'562;Niger;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;9;9;9;9;9;9;7;7;7;7;0;0;0;0;0;0;0;0;0;0;0;0 -158;'562;Niger;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;220;330;341;300;167;467;567;567;343;788;892;122;853;1219;521;1410;1999;659;2452;1013;930;2199;9308;1766;3424;1631 -158;'562;Niger;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;398;410;429;269;192;496;448;448;393;692;859;117;832;1093;450;1005;1668;475;1784;833;889;1619;2165;1128;1883;873 -158;'562;Niger;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;2;3;3;3;1;35;35;18;18;18;16;7;7;7;53;117;117;117;22;22;21;0;21;21;21 -158;'562;Niger;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;3;3;3;23;27;27;27;27;27;21;4;4;4;67;167;167;167;18;18;18;0;18;18;18 -158;'562;Niger;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;79;128;100;40;204;190;190;34;193;410;238;594;326;293;293;462;639;778;185;436;394;548;293;775;58 -158;'562;Niger;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;102;118;182;48;292;150;150;32;392;640;280;1115;436;392;335;586;635;605;154;439;261;496;194;606;66 -158;'562;Niger;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;218;15;15;4;4;65;20;11;11;11;11;11;19;19;7;7;84;85;2;1;1 -158;'562;Niger;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;172;11;11;4;4;63;18;9;9;9;9;9;18;17;6;6;47;38;2;4;4 -158;'562;Niger;1675;Other paper and paperboard;5610;Import quantity;t;200;200;200;500;100;500;600;500;500;500;500;500;500;100;600;100;100;100;100;100;700;200;400;500;400;400;900;700;700;800;200;296;186;118;284;800;1300;1300;1300;199;213;430;12728;3049;3049;369;174;1432;516;329;597;348;310;768;499;230;180;120;461;749;626;859;856 -158;'562;Niger;1675;Other paper and paperboard;5622;Import value;1000 USD;85;61;103;233;51;185;200;279;279;279;279;279;279;38;1002;44;44;44;44;44;600;610;1764;2418;2319;852;1718;3513;2950;2176;587;258;287;132;296;992;1923;2737;2285;236;308;445;1120;2440;2440;291;362;367;377;277;1048;347;226;767;232;146;173;111;1471;512;497;709;425 -158;'562;Niger;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;207;0;30;72;115;115;115;764;297;133;124;54;54;68;66;59;61;61;108;173;104;104;84;84 -158;'562;Niger;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;607;0;40;76;82;82;82;882;482;253;220;279;279;93;85;66;76;76;99;208;88;88;49;49 -158;'562;Niger;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;0;0;11;20;20;47;10;10;2;5;5;28;21;49;6;1;28;7;144;154;129;166;221 -158;'562;Niger;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;0;0;12;22;22;46;53;53;6;17;17;89;23;68;27;4;54;29;165;137;146;189;138 -158;'562;Niger;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;7;7;7;7;7;7;7;1;1;1;1;1;1;1;1;1 -158;'562;Niger;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;11;11;11;11;11;11;11;11;11;1;1;1;1;1;1;1;1;1 -158;'562;Niger;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;131;163;409;2923;1229;1229;321;84;124;508;90;96;120;161;624;338;205;128;89;316;593;490;692;614 -158;'562;Niger;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94;174;143;545;709;709;234;121;101;338;77;67;115;110;487;96;119;96;59;1298;361;345;515;275 -158;'562;Niger;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;207;0;23;61;96;96;96;745;278;110;109;39;39;53;54;54;56;56;103;168;99;99;79;79 -158;'562;Niger;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;607;0;29;57;58;58;58;858;458;221;191;250;250;64;64;64;74;74;97;206;86;86;47;47 -158;'562;Niger;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;283;283;1;30;29;383;30;21;4;13;26;17;1;1;1;125;302;321;548;537 -158;'562;Niger;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;176;176;2;28;26;152;22;11;6;12;56;15;1;1;1;62;165;217;393;232 -158;'562;Niger;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;72;72;72;5;5;5;5;5;5;5;52;52;52;52;52;52 -158;'562;Niger;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;127;127;127;127;2;2;2;2;2;2;2;25;25;25;25;25;25 -158;'562;Niger;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;123;100;399;652;652;652;26;20;10;11;1;10;45;30;462;301;46;46;6;13;9;31;12;2 -158;'562;Niger;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;106;131;315;315;315;14;40;24;39;10;3;38;21;290;57;49;49;13;18;11;19;19;3 -158;'562;Niger;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;207;0;0;0;45;45;45;650;183;15;15;12;12;26;26;26;26;26;26;26;26;26;26;26 -158;'562;Niger;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;607;0;0;0;27;27;27;659;259;22;22;206;206;20;20;20;20;20;20;20;20;20;20;20 -158;'562;Niger;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;63;10;2109;148;148;148;32;80;109;39;45;53;84;102;18;138;7;8;104;252;113;67;22 -158;'562;Niger;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;68;12;90;92;92;92;47;47;143;32;41;50;36;100;23;66;11;10;1183;161;96;49;16 -158;'562;Niger;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;61;31;31;31;2;2;2;1;1;1;1;2;2;4;4;4;69;0;0;1;1 -158;'562;Niger;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;57;19;19;19;31;31;31;1;1;1;1;1;1;11;11;11;120;0;0;2;2 -158;'562;Niger;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;146;146;146;146;2;5;5;20;20;18;34;34;2;20;74;74;74;30;25;65;53 -158;'562;Niger;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126;126;126;126;6;4;4;13;12;21;41;41;1;3;35;35;35;24;13;54;24 -158;'562;Niger;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;0;0 -158;'562;Niger;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;41;41;41;41;41;41;41;41;41;41;41;41;41;41;41;0;0 -158;'562;Niger;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;800;1300;1300;1300;53;50;21;9794;1800;1800;1;80;1298;6;234;496;200;128;95;155;24;24;24;1;2;7;1;21 -158;'562;Niger;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;992;1923;2737;2285;122;134;302;563;1709;1709;11;188;213;33;183;964;143;93;212;109;23;23;23;8;14;6;5;12 -158;'562;Niger;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;4;12;12;12;12;12;16;8;8;8;8;5;4;4;4;4;4;4;4;4;4 -158;'562;Niger;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;8;13;13;13;13;13;21;18;18;18;18;10;1;1;1;1;1;1;1;1;1 -158;'562;Niger;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4461;10387;20573;6692;6587;6189;3535 -158;'562;Niger;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;406;381;171;126;235;107;91 -158;'562;Niger;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;108;560;28;291;169;65 -158;'562;Niger;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;10;10 -158;'562;Niger;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;8;48;48;48 -158;'562;Niger;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;9;9 -158;'562;Niger;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;108;560;20;243;121;17 -158;'562;Niger;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1 -158;'562;Niger;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1295;4665;85;159;63;43;14 -158;'562;Niger;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;35;15;2;0;0;0 -158;'562;Niger;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;20;142;38;22;62;45 -158;'562;Niger;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;64;0;4;4;4;4 -158;'562;Niger;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;229;1088;6523;1557;870;237;181 -158;'562;Niger;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;42;46;33;44;44;44 -158;'562;Niger;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2815;4316;12480;4500;5210;5569;3186 -158;'562;Niger;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;208;230;100;77;177;49;33 -158;'562;Niger;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;271;181;23;16;16 -158;'562;Niger;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94;190;512;229;108;93;28 -158;'562;Niger;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;0;0;0;0;0;0 -158;'562;Niger;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3731;4061;4017;4757;4703;4596;3689 -158;'562;Niger;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;191;179;182;112;110;94;92 -158;'562;Niger;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;1;1;13;13 -158;'562;Niger;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;41;41;41;41;41;41 -158;'562;Niger;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;18;19;420;19;24;47 -158;'562;Niger;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -158;'562;Niger;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;471;507;660;576;1077;739;685 -158;'562;Niger;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;48;48;48;48;48;48 -158;'562;Niger;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;927;1291;1196;1129;970;1566;569 -158;'562;Niger;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;68;68;4;2;5;3 -158;'562;Niger;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2293;2245;2142;2631;2636;2254;2375 -158;'562;Niger;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;22;25;19;19;0;0 -159;'566;Nigeria;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;677073;655878;658380;923329;730509.43;1024156;985150 -159;'566;Nigeria;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;525913;468222;157467;113354;116723.38;90408;133097 -159;'566;Nigeria;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;5340;7026;7234;8308;12767;12167;11513;12049;15970;27331;33820;30389;48920;86181;121091;172095;196518;224708;205442;250435;428532;290132;277219;159983;151473;92946;36883;115811;69545;95360;95360;87685;77112;82852;52383;47733;83767;107960;138966;148779;131232;133608;165689;241282;243124;256848;308961;448940;540666;660829.2;639096;447757;594109;657149.3;517528.3;502933;629168;612148;597415;829612;639484.43;893507;859275 -159;'566;Nigeria;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;21699;19516;21775;25247;21307;19219;12140;12089;13312;11292;9827;10481;21082;22370;8588;2177;707;896;960;1020;2223;8307;5400;6181;6091;6091;1680;5496;3761;11224;16655;17794;19908;24085;12120;16707;31485;41287;33457;32658;20153;19106;18731;32596;42307;43407;63930;44152;76309;60874;80548;75547;119987;425182;439486;335348;517428;460032;155937;111372;111658.38;79783;121335 -159;'566;Nigeria;1861;Roundwood;5516;Production;m3;38561496;38773920;43987660;39666728;40015148;40706936;40994104;41069684;41602684;42089132;41661528;42370820;42610844;41697456;43990944;43890676;44139640;47184896;47771504;49510384;52773220;53208120;54576696;55959404;55909816;57111784;58690432;58513764;58654024;59179960;59996968;61117280;62293624;63787128;65028876;66151528;67740088;67835792;68291676;68766652;69115552;69482328;69867216;70270440;70692260;71047309;71418000;71806600;72211234;72632728;73017551;73417115;73831551;74865002;75309615;75605432;75912862;76231938;76562702;76905195;77261649;77629483;78008750 -159;'566;Nigeria;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;4600;3000;3000;16000;16000;16000;16000;16000;16000;900;1000;1000;1000;1000;0;0;;;;;1950;1950;1950;1950;500;0;0;500;288;64;500;723;60;742;1799;1064;488;1859;281;838;3063;1929;2659;1078;2016;756;12191;12634;10550;10994 -159;'566;Nigeria;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;356;233;237;1358;1358;1358;1358;1358;1358;164;207;207;207;207;0;0;;;;;170;170;170;170;72;0;0;221;136;35;221;267;28;111;799;235;72.2;631;111;173;781;205;466;302;1251;449;5900;6996;9681;9808 -159;'566;Nigeria;1861;Roundwood;5916;Export quantity;m3;732600;584900;666400;772800;585200;560300;332700;313400;352500;218700;210200;192000;328300;255000;92700;26900;9600;9600;9600;9600;25700;101300;50400;59800;59800;59800;16400;7169;1801;7678;19875;4193;1027;3210;11292;11239;11642;11213;8360;8360;4860;3060;3179;41060;39315;33480;70928;66389;60231;109978;106296;108300;127747;578467;1342927;968681;584322;607775;139295;120079;160698.1;58657;151507 -159;'566;Nigeria;1861;Roundwood;5922;Export value;1000 USD;15341;12246;15059;17883;13743;12574;7330;7090;8212;5794;5158;5500;14075;14194;5989;1984;599;670;720;770;2053;8107;5200;5981;5981;5981;1238;1894;371;2172;7603;1461;489;503;3895;4039;4036;3803;1915;1915;897;780;804;10028;10999;7597;21100;17965;14154;26355;33149;27540;51021;368362;376128;258735;404205;292430;43908;40928;54175;14695;53369 -159;'566;Nigeria;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 -159;'566;Nigeria;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;354;50;12191;12548;10429;10429 -159;'566;Nigeria;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;139;21;5900;6952;9642;9642 -159;'566;Nigeria;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;179;17;259;22;312;272;507 -159;'566;Nigeria;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;1;172;11;198;105;217 -159;'566;Nigeria;1863;Roundwood, non-coniferous;5516;Production;m3;38561496;38773920;43987660;39666728;40015148;40706936;40994104;41069684;41602684;42089132;41661528;42370820;42610844;41697456;43990944;43890676;44139640;47184896;47771504;49510384;52773220;53208120;54576696;55959404;55909816;57111784;58690432;58513764;58654024;59179960;59996968;61117280;62293624;63787128;65028876;66151528;67740088;67835792;68291676;68766652;69115552;69482328;69867216;70270440;70692260;71047309;71418000;71806600;72211234;72632728;73017551;73417115;73831551;74865002;75309615;75605432;75912862;76231938;76562702;76905195;77261649;77629483;78008750 -159;'566;Nigeria;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1039;1662;706;0;86;121;565 -159;'566;Nigeria;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;296;1112;428;0;44;39;166 -159;'566;Nigeria;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;584143;607758;139036;120057;160386.1;58385;151000 -159;'566;Nigeria;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;404194;292429;43736;40917;53977;14590;53152 -159;'566;Nigeria;1864;Wood fuel;5516;Production;m3;36237496;36526920;36818660;37112728;37409148;37707936;38009104;38312684;38618684;38927132;38456528;39120820;39079844;38684456;39881944;39727676;39919640;41526896;41664504;42150384;44266220;45324120;47251696;48402404;48040816;49243784;50822432;50645764;50786024;50916960;51733968;52854280;54030624;55524128;56765876;57672528;58661088;58417792;58873676;59348652;59697552;60064328;60449216;60852440;61274260;61629309;62000000;62388600;62793234;63214728;63599551;63999115;64413551;64843002;65287615;65583432;65890862;66209938;66540702;66883195;67239649;67607483;67986750 -159;'566;Nigeria;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;434;434;434;434;165;28;919;919;919;;;;;;; -159;'566;Nigeria;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;63;63;63;72;14;112;112;112;;;;;;; -159;'566;Nigeria;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;266;266;1060;1060;1060;1060;1060;1060;1060;1060;1060;1883;1883;28;28;74;74;297;407;371;371;4304;36;57;386.1;0;0 -159;'566;Nigeria;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;27;28;28;28;28;28;28;28;28;28;244;244;4;4;12;12;83;127;142;142;1040;90;5;78;0;0 -159;'566;Nigeria;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 -159;'566;Nigeria;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -159;'566;Nigeria;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -159;'566;Nigeria;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -159;'566;Nigeria;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -159;'566;Nigeria;1628;Wood fuel, non-coniferous;5516;Production;m3;36237496;36526920;36818660;37112728;37409148;37707936;38009104;38312684;38618684;38927132;38456528;39120820;39079844;38684456;39881944;39727676;39919640;41526896;41664504;42150384;44266220;45324120;47251696;48402404;48040816;49243784;50822432;50645764;50786024;50916960;51733968;52854280;54030624;55524128;56765876;57672528;58661088;58417792;58873676;59348652;59697552;60064328;60449216;60852440;61274260;61629309;62000000;62388600;62793234;63214728;63599551;63999115;64413551;64843002;65287615;65583432;65890862;66209938;66540702;66883195;67239649;67607483;67986750 -159;'566;Nigeria;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;371;4304;36;57;386.1;0;0 -159;'566;Nigeria;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;142;1040;90;5;78;0;0 -159;'566;Nigeria;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;434;434;434;434;165;28;919;919;919;;;;;;; -159;'566;Nigeria;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;63;63;63;72;14;112;112;112;;;;;;; -159;'566;Nigeria;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;266;266;1060;1060;1060;1060;1060;1060;1060;1060;1060;1883;1883;28;28;74;74;297;407;371;;;;;;; -159;'566;Nigeria;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;27;28;28;28;28;28;28;28;28;28;244;244;4;4;12;12;83;127;142;;;;;;; -159;'566;Nigeria;1865;Industrial roundwood;5516;Production;m3;2324000;2247000;7169000;2554000;2606000;2999000;2985000;2757000;2984000;3162000;3205000;3250000;3531000;3013000;4109000;4163000;4220000;5658000;6107000;7360000;8507000;7884000;7325000;7557000;7869000;7868000;7868000;7868000;7868000;8263000;8263000;8263000;8263000;8263000;8263000;8479000;9079000;9418000;9418000;9418000;9418000;9418000;9418000;9418000;9418000;9418000;9418000;9418000;9418000;9418000;9418000;9418000;9418000;10022000;10022000;10022000;10022000;10022000;10022000;10022000;10022000;10022000;10022000 -159;'566;Nigeria;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;4600;3000;3000;16000;16000;16000;16000;16000;16000;900;1000;1000;1000;1000;0;0;;;;;1950;1950;1950;1950;500;0;0;500;288;64;500;723;60;742;1365;630;54;1425;116;810;2144;1010;1740;1078;2016;756;12191;12634;10550;10994 -159;'566;Nigeria;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;356;233;237;1358;1358;1358;1358;1358;1358;164;207;207;207;207;0;0;;;;;170;170;170;170;72;0;0;221;136;35;221;267;28;111;736;172;9.2;568;39;159;669;93;354;302;1251;449;5900;6996;9681;9808 -159;'566;Nigeria;1865;Industrial roundwood;5916;Export quantity;m3;732600;584900;666400;772800;585200;560300;332700;313400;352500;218700;210200;192000;328300;255000;92700;26900;9600;9600;9600;9600;25700;101300;50400;59800;59800;59800;16400;7169;1801;7678;19875;4193;1027;3210;11292;11239;11376;10947;7300;7300;3800;2000;2119;40000;38255;32420;69868;64506;58348;109950;106268;108226;127673;578170;1342520;968310;583951;603471;139259;120022;160312;58657;151507 -159;'566;Nigeria;1865;Industrial roundwood;5922;Export value;1000 USD;15341;12246;15059;17883;13743;12574;7330;7090;8212;5794;5158;5500;14075;14194;5989;1984;599;670;720;770;2053;8107;5200;5981;5981;5981;1238;1894;371;2172;7603;1461;489;503;3895;4039;4009;3776;1887;1887;869;752;776;10000;10971;7569;21072;17721;13910;26351;33145;27528;51009;368279;376001;258593;404063;291390;43818;40923;54097;14695;53369 -159;'566;Nigeria;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;250;4;0;223;18;178;53;437;44;0;48;0;645;1007;126;39;354;50;12191;12548;10429;10429 -159;'566;Nigeria;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;106;1;0;46;7;18;3;72;5;0;6;0;64;88;11;6;139;21;5900;6952;9642;9642 -159;'566;Nigeria;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;133;619;1200;1200;1200;1800;1800;1800;0;119;0;52;36;0;930;1049;1115;286;189;30;170;520;495;179;17;259;22;312;272;507 -159;'566;Nigeria;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;16;93;486;486;486;117;117;117;0;24;0;46;13;0;70;93;206;111;115;11;93;241;52;11;1;172;11;198;105;217 -159;'566;Nigeria;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;250;4;0;223;18;178;53;437;44;0;48;0;645;1007;126;39;354;50;12191;12548;10429;10429 -159;'566;Nigeria;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;106;1;0;46;7;18;3;72;5;0;6;0;64;88;11;6;139;21;5900;6952;9642;9642 -159;'566;Nigeria;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;133;619;1200;1200;1200;1800;1800;1800;0;119;0;52;36;0;930;1049;1115;286;189;30;170;520;495;179;17;259;22;312;272;507 -159;'566;Nigeria;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;16;93;486;486;486;117;117;117;0;24;0;46;13;0;70;93;206;111;115;11;93;241;52;11;1;172;11;198;105;217 -159;'566;Nigeria;1867;Industrial roundwood, non-coniferous;5516;Production;m3;2324000;2247000;7169000;2554000;2606000;2999000;2985000;2757000;2984000;3162000;3205000;3250000;3531000;3013000;4109000;4163000;4220000;5658000;6107000;7360000;8507000;7884000;7325000;7557000;7869000;7868000;7868000;7868000;7868000;8263000;8263000;8263000;8263000;8263000;8263000;8479000;9079000;9418000;9418000;9418000;9418000;9418000;9418000;9418000;9418000;9418000;9418000;9418000;9418000;9418000;9418000;9418000;9418000;10022000;10022000;10022000;10022000;10022000;10022000;10022000;10022000;10022000;10022000 -159;'566;Nigeria;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1950;1950;1950;1950;500;0;0;500;38;60;500;500;42;564;1312;193;10;1425;68;810;1499;3;1614;1039;1662;706;0;86;121;565 -159;'566;Nigeria;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;170;170;170;170;72;0;0;221;30;34;221;221;21;93;733;100;4.2;568;33;159;605;5;343;296;1112;428;0;44;39;166 -159;'566;Nigeria;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7678;19875;4165;999;3077;10673;10039;10176;9747;5500;5500;2000;2000;2000;40000;38203;32384;69868;63576;57299;108835;105982;108037;127643;578000;1342000;967815;583772;603454;139000;120000;160000;58385;151000 -159;'566;Nigeria;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2172;7603;1458;486;487;3802;3553;3523;3290;1770;1770;752;752;752;10000;10925;7556;21072;17651;13817;26145;33034;27413;50998;368186;375760;258541;404052;291389;43646;40912;53899;14590;53152 -159;'566;Nigeria;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1209;154;1;1363;55;572;906;0;658;1039;1662;513;0;86;92;563 -159;'566;Nigeria;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;701;86;0.2;382;26;132;438;0;183;296;1112;338;0;44;32;152 -159;'566;Nigeria;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7678;19875;4165;999;3077;6534;5900;9747;9747;5500;5500;2000;2000;2000;40000;38203;32384;69868;63172;57299;108835;105982;108037;127546;578000;1342000;967815;583772;603454;139000;120000;160000;40385;151000 -159;'566;Nigeria;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2172;7603;1458;486;487;2957;2708;3290;3290;1770;1770;752;752;752;10000;10925;7556;21072;17514;13817;26145;33034;27413;50956;368186;375760;258541;404052;291389;43646;40912;53899;14199;53152 -159;'566;Nigeria;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1950;1950;1950;1950;500;0;0;500;38;60;500;500;42;564;103;39;9;62;13;238;593;3;956;0;0;193;0;0;29;2 -159;'566;Nigeria;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;170;170;170;170;72;0;0;221;30;34;221;221;21;93;32;14;4;186;7;27;167;5;160;0;0;90;0;0;7;14 -159;'566;Nigeria;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4139;4139;429;0;0;0;0;0;0;0;0;0;0;404;0;0;0;0;97;0;0;0;0;0;0;0;0;18000;0 -159;'566;Nigeria;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845;845;233;0;0;0;0;0;0;0;0;0;0;137;0;0;0;0;42;0;0;0;0;0;0;0;0;391;0 -159;'566;Nigeria;1868;Sawlogs and veneer logs;5516;Production;m3;1229000;1119000;5984000;1319000;1367000;1416000;1359000;1082000;1262000;1400000;1400000;1400000;1633000;1150000;2195000;2195000;2195000;3569000;3956000;5081000;6228000;5605000;5046000;5278000;5590000;5589000;5589000;5589000;5589000;5984000;5984000;5984000;5984000;5984000;5984000;6200000;6800000;7100000;7100000;7100000;7100000;7100000;7100000;7100000;7100000;7100000;7100000;7100000;7100000;7100000;7100000;7100000;7100000;7600000;7600000;7600000;7600000;7600000;7600000;7600000;7600000;7600000;7600000 -159;'566;Nigeria;1868;Sawlogs and veneer logs;5616;Import quantity;m3;;;;;;;;;;;;;;4600;3000;3000;16000;16000;16000;16000;16000;16000;900;1000;1000;1000;1000;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -159;'566;Nigeria;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;;;;;;;;;;;;;;356;233;237;1358;1358;1358;1358;1358;1358;164;207;207;207;207;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -159;'566;Nigeria;1868;Sawlogs and veneer logs;5916;Export quantity;m3;732600;584900;666400;772800;585200;560300;332700;313400;352500;218700;210200;192000;328300;255000;92700;26900;9600;9600;9600;9600;25700;101300;50400;59800;59800;59800;16400;7169;1801;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -159;'566;Nigeria;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;15341;12246;15059;17883;13743;12574;7330;7090;8212;5794;5158;5500;14075;14194;5989;1984;599;670;720;770;2053;8107;5200;5981;5981;5981;1238;1894;371;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -159;'566;Nigeria;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -159;'566;Nigeria;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -159;'566;Nigeria;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;1229000;1119000;5984000;1319000;1367000;1416000;1359000;1082000;1262000;1400000;1400000;1400000;1633000;1150000;2195000;2195000;2195000;3569000;3956000;5081000;6228000;5605000;5046000;5278000;5590000;5589000;5589000;5589000;5589000;5984000;5984000;5984000;5984000;5984000;5984000;6200000;6800000;7100000;7100000;7100000;7100000;7100000;7100000;7100000;7100000;7100000;7100000;7100000;7100000;7100000;7100000;7100000;7100000;7600000;7600000;7600000;7600000;7600000;7600000;7600000;7600000;7600000;7600000 -159;'566;Nigeria;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;4600;3000;3000;16000;16000;16000;16000;16000;16000;900;1000;1000;1000;1000;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -159;'566;Nigeria;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;356;233;237;1358;1358;1358;1358;1358;1358;164;207;207;207;207;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -159;'566;Nigeria;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;732600;584900;666400;772800;585200;560300;332700;313400;352500;218700;210200;192000;328300;255000;92700;26900;9600;9600;9600;9600;25700;101300;50400;59800;59800;59800;16400;7169;1801;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -159;'566;Nigeria;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;15341;12246;15059;17883;13743;12574;7330;7090;8212;5794;5158;5500;14075;14194;5989;1984;599;670;720;770;2053;8107;5200;5981;5981;5981;1238;1894;371;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -159;'566;Nigeria;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000 -159;'566;Nigeria;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000 -159;'566;Nigeria;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -159;'566;Nigeria;1870;Pulpwood and particles (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -159;'566;Nigeria;1871;Other industrial roundwood;5516;Production;m3;1095000;1128000;1185000;1235000;1239000;1583000;1626000;1675000;1722000;1762000;1805000;1850000;1898000;1863000;1914000;1968000;2025000;2089000;2151000;2279000;2279000;2279000;2279000;2279000;2279000;2279000;2279000;2279000;2279000;2279000;2279000;2279000;2279000;2279000;2279000;2279000;2279000;2279000;2279000;2279000;2279000;2279000;2279000;2279000;2279000;2279000;2279000;2279000;2279000;2279000;2279000;2279000;2279000;2400000;2400000;2400000;2400000;2400000;2400000;2400000;2400000;2400000;2400000 -159;'566;Nigeria;1871;Other industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -159;'566;Nigeria;1871;Other industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -159;'566;Nigeria;1871;Other industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -159;'566;Nigeria;1871;Other industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -159;'566;Nigeria;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;1095000;1128000;1185000;1235000;1239000;1583000;1626000;1675000;1722000;1762000;1805000;1850000;1898000;1863000;1914000;1968000;2025000;2089000;2151000;2279000;2279000;2279000;2279000;2279000;2279000;2279000;2279000;2279000;2279000;2279000;2279000;2279000;2279000;2279000;2279000;2279000;2279000;2279000;2279000;2279000;2279000;2279000;2279000;2279000;2279000;2279000;2279000;2279000;2279000;2279000;2279000;2279000;2279000;2400000;2400000;2400000;2400000;2400000;2400000;2400000;2400000;2400000;2400000 -159;'566;Nigeria;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -159;'566;Nigeria;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -159;'566;Nigeria;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -159;'566;Nigeria;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -159;'566;Nigeria;1630;Wood charcoal;5510;Production;t;771261;794540;818523;843229;868680;894900;921912;949739;978405;1007937;1014300;1055688;1076642;1087104;1149970;1168026;1198482;1279394;1311257;1357001;1469004;1545258;1658896;1745863;1773315;1867006;1980778;2020427;2075513;2131778;2210445;2314797;2420873;2542902;2646794;2763475;2872535;2922971;3006209;3085072;3165781;3248602;3333589;3420800;3510292;3592327;3676300;3762200;3850113;3940089;4022763;4107172;4193352;4281341;4371175;4444581;4519220;4595112;4672279;4750741;4828689;4907916;4988442 -159;'566;Nigeria;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;41;21;21;21;22;22;200;0;0;0;0;0;0;0;0;136;9;24;16;88;193;346;213;138;301;285;59;39;103;54;100 -159;'566;Nigeria;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;5;5;36;0;0;0;0;0;0;0;0;61;6;150;16;84;207;201;752;416;232;410;49;31;135;34;233 -159;'566;Nigeria;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8234;11843;11492;1394;16800;16858;16000;11700;28000;22298;17019;26010;42096;52306;71332;90971;24312;87858;88345;126201;132278;156999;140486;171148;194145;226739;280080;243587;139824;124060;114287;114844 -159;'566;Nigeria;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2111;2653;2333;356;3435;3938;3663;3448;6223;4666;3730;6710;11195;14598;20924;28634;7715;31342;27088;41278;39970;53919;45746;47171;53530;66795;88718;84045;51419;44174;51897;54465 -159;'566;Nigeria;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5498;122;25;25;6615;1279;1247;1247;576;0;194;46;20;21;185;1 -159;'566;Nigeria;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1091;35;32;32;1853;83;49.3;49.3;22;0;124;14;9;18;23;7 -159;'566;Nigeria;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;512;104;3;16;1001;2150;2150;61;6;69;1681;1681;23087;21465;27804;27804 -159;'566;Nigeria;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;258;644;3;8;41;185;185;19;7;8;604;604;1893;1320;1957;1957 -159;'566;Nigeria;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6409;1246;1246;1246;576;0;174;26;0;1;1;1 -159;'566;Nigeria;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1782;49;49;49;22;0;115;5;0;9;11;7 -159;'566;Nigeria;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;512;104;1;1;1;150;150;5;1;1;1664;1664;1664;42;1;1 -159;'566;Nigeria;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;258;644;1;1;1;116;116;4;1;1;603;603;603;30;0;0 -159;'566;Nigeria;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5498;122;25;25;206;33;1;1;0;0;20;20;20;20;184;0 -159;'566;Nigeria;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1091;35;32;32;71;34;0.3;0.3;0;0;9;9;9;9;12;0 -159;'566;Nigeria;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;970;53;53;53;31;0;0;0;0;0;0;0;0;0;0;0;0;2;15;1000;2000;2000;56;5;68;17;17;21423;21423;27803;27803 -159;'566;Nigeria;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;5;5;5;1;0;0;0;0;0;0;0;0;0;0;0;0;2;7;40;69;69;15;6;7;1;1;1290;1290;1957;1957 -159;'566;Nigeria;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;252;400;32;202;0;6;290 -159;'566;Nigeria;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;40;63;21;80;0;2;134 -159;'566;Nigeria;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;197;197;2368;20 -159;'566;Nigeria;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;58;58;663;2 -159;'566;Nigeria;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;252;400;8;202;0;6;144 -159;'566;Nigeria;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;40;63;2;80;0;2;14 -159;'566;Nigeria;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -159;'566;Nigeria;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -159;'566;Nigeria;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;0;0;0;146 -159;'566;Nigeria;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;0;0;0;120 -159;'566;Nigeria;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;197;197;2368;20 -159;'566;Nigeria;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;58;58;663;2 -159;'566;Nigeria;1872;Sawnwood;5516;Production;m3;367000;260000;300000;320000;293000;320000;340000;425000;494000;566000;566000;566000;782201;807101;949000;949000;949000;1815000;2012000;2675000;2935000;2667000;2402000;2512000;3277000;2712000;3006000;3006000;3006000;2729000;2725000;2721000;2717000;2533000;2356000;2178000;2000000;2000000;2000000;2000000;2000000;2000000;2000000;2000000;2002000;2002000;2002000;2002000;2002000;2002000;2002000;2002000;2002000;2002000;2002000;2002000;2002000;2002000;2002000;2002000;2002000;2002000;2002000 -159;'566;Nigeria;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;500;1700;1700;1700;1700;2400;700;700;700;100;100;100;173;68;225;225;536;200;273;255;500;2862;400;1300;900;1300;2220;998;1616;335;680;122;2918;2751;2399;6510;5959;10130;10287;844;3003;661;1229;3745;3719;1358;3050;3844 -159;'566;Nigeria;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;209;745;745;745;745;500;100;100;100;15;15;15;86;43;69;69;142;57;106;91;123;1454;181;226;45;96;503;184;240;150;283;97;1778;1761;1083;3527;3835;8161;8530;359;1775;377;646;1753;1498;640;1857;1039 -159;'566;Nigeria;1872;Sawnwood;5916;Export quantity;m3;62300;66200;77400;86700;81800;74300;52500;59500;66200;47400;38600;35600;34000;26900;12600;1400;1500;1500;1500;1500;1000;1100;1100;1100;600;600;800;9313;9487;29074;29074;41366;35280;46819;14443;25300;46010;60600;50000;54000;38300;38300;21779;20710;39916;26365;24057;15677;7561;11192;5717;6929;7257;8576;16720;30362;54841;90579;34054;39932;12780;12788;12790 -159;'566;Nigeria;1872;Sawnwood;5922;Export value;1000 USD;3482;3642;3814;4291;4184;3641;2579;2874;3450;2893;2248;2560;3220;3435;2226;193;108;226;240;250;170;200;200;200;110;110;442;3602;3390;9052;9052;14137;16431;20398;7765;8971;23039;33383;28094;23865;13894;13894;10534;10630;15891;14081;13454;11204;5399;4109;4353;4459;5245;6157;12484;19264;38963;67483;19129;13061;8106;8108;8108 -159;'566;Nigeria;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;6201;6101;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;0;0;0;0;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;2000 -159;'566;Nigeria;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;500;1700;1700;1700;1700;2400;700;700;700;100;100;100;173;68;225;225;450;124;64;46;200;2802;400;400;0;400;400;588;283;166;430;0;825;1539;1457;3442;2595;2360;1090;465;664;273;693;1447;613;1067;2894;3212 -159;'566;Nigeria;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;209;745;745;745;745;500;100;100;100;15;15;15;86;43;69;69;79;28;22;7;46;1411;181;181;0;51;51;78;72;31;156;0;254;613;680;708;801;664;324;150;171;68;275;463;398;392;1283;495 -159;'566;Nigeria;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;200;541;0;0;0;1500;1500;779;710;467;700;787;677;41;10;137;26;174;75;230;61;108;1484;18;0;4;12;14 -159;'566;Nigeria;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;80;134;0;0;0;562;562;364;404;315;321;446;284;56;8;51;11;77;33;100;54;43;366;24;0;2;4;4 -159;'566;Nigeria;1633;Sawnwood, non-coniferous;5516;Production;m3;367000;260000;300000;320000;293000;320000;340000;425000;494000;566000;566000;566000;776000;801000;943000;943000;943000;1809000;2006000;2669000;2929000;2661000;2396000;2506000;3271000;2706000;3000000;3000000;3000000;2723000;2719000;2715000;2711000;2533000;2356000;2178000;2000000;2000000;2000000;2000000;2000000;2000000;2000000;2000000;2000000;2000000;2000000;2000000;2000000;2000000;2000000;2000000;2000000;2000000;2000000;2000000;2000000;2000000;2000000;2000000;2000000;2000000;2000000 -159;'566;Nigeria;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;76;209;209;300;60;0;900;900;900;1820;410;1333;169;250;122;2093;1212;942;3068;3364;7770;9197;379;2339;388;536;2298;3106;291;156;632 -159;'566;Nigeria;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;29;84;84;77;43;0;45;45;45;452;106;168;119;127;97;1524;1148;403;2819;3034;7497;8206;209;1604;309;371;1290;1100;248;574;544 -159;'566;Nigeria;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;62300;66200;77400;86700;81800;74300;52500;59500;66200;47400;38600;35600;34000;26900;12600;1400;1500;1500;1500;1500;1000;1100;1100;1100;600;600;800;9313;9487;29074;29074;41366;35280;46819;14443;25100;45469;60600;50000;54000;36800;36800;21000;20000;39449;25665;23270;15000;7520;11182;5580;6903;7083;8501;16490;30301;54733;89095;34036;39932;12776;12776;12776 -159;'566;Nigeria;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;3482;3642;3814;4291;4184;3641;2579;2874;3450;2893;2248;2560;3220;3435;2226;193;108;226;240;250;170;200;200;200;110;110;442;3602;3390;9052;9052;14137;16431;20398;7765;8891;22905;33383;28094;23865;13332;13332;10170;10226;15576;13760;13008;10920;5343;4101;4302;4448;5168;6124;12384;19210;38920;67117;19105;13061;8104;8104;8104 -159;'566;Nigeria;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;1000;1000;7000;13000;1500;1700;1700;2600;2900;3000;5000;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;1000;1000;1000;1000;1000;1000;1000;1000;1100;1100;1500;1500;1500;1500;1500;1500;5500 -159;'566;Nigeria;1634;Veneer sheets;5616;Import quantity;m3;;;600;500;250;100;100;100;100;100;100;100;1000;1000;2000;1900;6000;6700;5400;5400;5400;5400;5400;500;500;500;500;34;1;2;2;25;18;18;18;0;31;31;100;0;0;138;186;94;1073;300;128;233;651;449;1653;1176;1317;1121;110;3268;1601;4053;525;190;16681;358;413 -159;'566;Nigeria;1634;Veneer sheets;5622;Import value;1000 USD;;;91;82;42;21;22;23;22;22;22;22;94;133;263;254;796;1346;1346;1346;1346;1346;1346;421;421;421;421;34;5;10;10;51;30;30;30;0;13;13;33;0;0;64;139;135;2447;313;304;482;1023;938;2135;413;640;1703;255;3045;1609;1564;479;264;4470;680;435 -159;'566;Nigeria;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;134;304;659;68;300;166;166;0;0;0;32;1;47;119;72;63;70;21;19;36;10;5;42;180;10;539;89;9;77;25;4;4878 -159;'566;Nigeria;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;236;717;39;208;337;337;0;0;0;29;1;64;161;148;69;75;32;45;34;8;5;53;56;9;825;113;22;30;68;123;1064 -159;'566;Nigeria;1873;Wood-based panels;5516;Production;m3;20000;26000;30000;34000;31000;25000;23000;24000;28000;23000;45800;49900;53800;59600;64000;66000;66000;85500;99500;91000;144000;144000;144000;144000;104000;102000;102000;102000;102000;102000;105000;112000;105000;103000;100000;98000;95000;95000;95000;95000;95000;95000;95000;95000;96000;96000;96000;96000;96000;96400;96400;96400;96000;96000;96000;96000;96000;96000;96000;96000;96000;96000;96000 -159;'566;Nigeria;1873;Wood-based panels;5616;Import quantity;m3;10300;10200;9300;10100;10300;7307;6333;3459;7770;13019;13019;13019;14768;12546;33825;51000;123000;112800;112800;163100;152100;124100;111600;22600;22600;22600;5500;11764;3233;3306;3306;19303;9037;4561;12837;19920;11894;11894;89000;49300;73800;76001;54113;42208;41377;80115;126104;113826;94279;168095;276873;199119;336198;284573;313964;297751;249729;294732;393443;378150;511234;241706;389785 -159;'566;Nigeria;1873;Wood-based panels;5622;Import value;1000 USD;1501;1744;1233;1292;1277;1157;892;529;1112;2232;2232;2232;4396;5428;14488;24338;59329;57368;57378;88592;81392;61692;51318;9184;9184;9184;5029;3716;1308;1647;1647;7212;3250;1652;2348;4568;3329;3329;11764;8249;11181;12071;14047;10083;9657;25621;42129;54690;51443;77475;126248;144343;144353;148094;166041;110355;99270;114032;150204;140056;175594;136930;172371 -159;'566;Nigeria;1873;Wood-based panels;5916;Export quantity;m3;18000;23000;21000;22000;24000;21000;14900;16800;12100;21000;19500;19500;10000;16500;1000;;;;;;;;;;;;;;;;;25;67;233;121;72;94;94;0;0;300;46;82;49;6;4;18;2725;2595;57;242;246;99;245;218;5200;7926;19435;14321;473;1829;640;1666 -159;'566;Nigeria;1873;Wood-based panels;5922;Export value;1000 USD;2876;3628;2902;3073;3380;2984;2192;2088;1650;2605;2421;2421;3787;4741;373;;;;;;;;;;;;;;;;;11;33;96;27;16;28;28;0;0;41;18;27;24;3;2;18;811;752;873;301;136;99;125;78;2036;3923;6685;4837;46;131;179;539 -159;'566;Nigeria;1640;Plywood and LVL;5516;Production;m3;20000;26000;30000;34000;31000;25000;23000;24000;28000;23000;45800;49900;53800;59600;64000;66000;66000;78000;86000;68000;89000;89000;89000;89000;72000;70000;70000;70000;70000;67000;70000;72000;65000;63000;60000;58000;55000;55000;55000;55000;55000;55000;55000;55000;56000;56000;56000;56000;56000;56400;56400;56400;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000 -159;'566;Nigeria;1640;Plywood and LVL;5616;Import quantity;m3;5000;5500;4600;5000;2500;1600;1200;100;100;100;100;100;600;200;6500;23000;65300;54600;54600;63600;63600;63600;65300;16900;16900;16900;4000;2376;437;1267;1267;3079;2081;319;85;700;885;885;400;400;200;2401;7285;831;0;22382;29839;39184;32095;107355;155880;147964;172313;131351;107815;145146;139076;110280;168880;182322;453918;218822;339147 -159;'566;Nigeria;1640;Plywood and LVL;5622;Import value;1000 USD;745;1060;575;656;388;208;161;10;10;50;50;50;181;66;2018;7386;20961;18547;18547;21528;21528;21528;20961;5406;5406;5406;3780;1187;406;1092;1092;1718;975;243;32;506;700;700;242;242;171;1061;4369;426;0;13055;16447;24381;22734;43941;73941;120477;72474;82065;79762;50373;51046;70580;95987;90300;151785;117314;154286 -159;'566;Nigeria;1640;Plywood and LVL;5916;Export quantity;m3;18000;23000;21000;22000;24000;21000;14900;16800;12100;21000;19500;19500;10000;16500;1000;;;;;;;;;;;;;;;;;2;64;230;69;69;91;91;0;0;300;46;82;49;6;4;18;199;69;42;92;107;49;78;22;1175;3280;5204;90;409;1569;567;1593 -159;'566;Nigeria;1640;Plywood and LVL;5922;Export value;1000 USD;2876;3628;2902;3073;3380;2984;2192;2088;1650;2605;2421;2421;3787;4741;373;;;;;;;;;;;;;;;;;1;32;95;15;15;27;27;0;0;41;18;27;24;3;2;18;97;38;23;27;47;18;57;10;427;1754;1884;36;43;110;170;530 -159;'566;Nigeria;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;147 -159;'566;Nigeria;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37 -159;'566;Nigeria;1646;Particle board and OSB (1961-1994);5516;Production;m3;;;;;;;;;;;;;;;;;;7500;13500;23000;55000;55000;55000;55000;32000;32000;32000;32000;32000;35000;35000;40000;40000;40000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -159;'566;Nigeria;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;2000;3100;5400;1600;2500;200;2300;2600;2600;2600;900;1500;1000;1100;2300;2800;2800;4500;4500;4500;2300;2400;2400;2400;1200;6786;633;605;605;418;498;1345;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -159;'566;Nigeria;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;172;268;391;342;265;19;230;182;182;182;128;341;262;645;1357;1701;1701;2664;2664;2664;1357;1502;1502;1502;921;1693;503;169;169;183;122;366;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -159;'566;Nigeria;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 -159;'566;Nigeria;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;393;7200;1173;1173;2300;1500;1300;1300;1300;1500;1500;17856;29465;38636;42565;36376;30763;18926;18628;22068;22068;14742;7012;4235;12745;12305;9755;4323;6086 -159;'566;Nigeria;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113;2013;300;300;691;348;244;244;244;500;500;3409;9741;12022;13673;13263;10988;7527;7887;9261;9261;5260;2410;1284;3343;4985;4384;2876;4666 -159;'566;Nigeria;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;0;0;0;0;0;0;0;0;0;0;0;0;2526;2526;10;10;0;0;133;133;3270;4579;14167;14167;0;196;9;9 -159;'566;Nigeria;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;0;0;0;0;0;0;0;0;0;0;0;0;714;714;149;149;0;0;46;46;1468;2137;4799;4799;1;19;2;2 -159;'566;Nigeria;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4050;121;743;1237;193;690;370;370;1836;627;123;67;201;6;329;329 -159;'566;Nigeria;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1749;98;283;501;154;355;135;135;482;162;84;94;38;16;260;260 -159;'566;Nigeria;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;0;2;31;0;0;0;0;0;0;0;0 -159;'566;Nigeria;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;36;0;0;11;11;0;0;0;0;0;0;0;0 -159;'566;Nigeria;1874;Fibreboard;5616;Import quantity;m3;5300;4700;2700;2000;2400;4107;2633;3159;5370;10319;10319;10319;13268;10846;26325;26900;55400;55400;55400;95000;84000;56000;44000;3300;3300;3300;300;2602;2163;1434;1434;15806;6458;2897;12359;12020;9836;9836;86300;47400;72300;72300;45528;39877;39877;39877;66800;31956;19498;23621;88993;32036;144567;130784;183711;136027;103014;180094;211751;183322;47555;18232;44223 -159;'566;Nigeria;1874;Fibreboard;5622;Import value;1000 USD;756;684;486;368;498;607;466;500;872;2000;2000;2000;4087;5021;12208;16307;37011;37120;37130;64400;57200;37500;29000;2276;2276;2276;328;836;399;386;386;5311;2153;1043;2203;2049;2329;2329;10831;7659;10766;10766;9434;9157;9157;9157;15941;16538;14938;19988;40818;16185;63637;56633;76883;54240;45652;42084;50780;44733;19409;16480;13159 -159;'566;Nigeria;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;3;3;3;3;3;3;0;0;0;0;0;0;0;0;0;0;0;4;139;139;50;32;32;755;67;64;64;64;64;64;64 -159;'566;Nigeria;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;1;1;1;1;1;1;0;0;0;0;0;0;0;0;0;0;0;665;89;89;81;11;11;141;32;2;2;2;2;7;7 -159;'566;Nigeria;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4339;4000;5662;5662;9000;28000;36200;36200;36200;30753;30753;30753;54900;15924;9370;9370;38833;11591;31732;30008;28383;14931;5538;4431;4810;6402;3826;4369;188 -159;'566;Nigeria;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1422;1268;1909;1909;3618;6420;8545;8545;8545;8302;8302;8302;14800;8114;6309;6309;19068;6453;15559;15104;13827;6056;3566;2077;2066;2782;2197;2899;148 -159;'566;Nigeria;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;751;63;60;60;60;60;60;60 -159;'566;Nigeria;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;139;30;0;0;0;0;0;0 -159;'566;Nigeria;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1014;1014;58000;900;2000;2000;2000;2000;2000;2000;2000;9663;7865;13708;48601;19552;111011;99004;153236;119136;96735;172513;205225;169254;38440;13647;43009 -159;'566;Nigeria;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107;107;6470;95;246;246;246;246;246;246;246;4543;6278;9127;20763;8639;47033;39844;61836;46745;41517;38681;48541;41034;16605;13434;12854 -159;'566;Nigeria;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;139;139;50;32;32;4;4;4;4;4;4;4;4 -159;'566;Nigeria;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;665;89;89;81;11;11;2;2;2;2;2;2;7;7 -159;'566;Nigeria;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4760;1490;821;8020;8020;3160;3160;19300;18500;34100;34100;7328;7124;7124;7124;9900;6369;2263;543;1559;893;1824;1772;2092;1960;741;3150;1716;7666;5289;216;1026 -159;'566;Nigeria;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1686;493;368;781;781;313;313;743;1144;1975;1975;643;609;609;609;895;3881;2351;4552;987;1093;1045;1685;1220;1439;569;1326;173;917;607;147;157 -159;'566;Nigeria;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;3;3;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 -159;'566;Nigeria;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;1;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;0;0;0 -159;'566;Nigeria;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;5300;4700;2700;2000;2400;4107;2633;3159;5370;10319;10319;10319;13268;10846;26325;26900;55400;55400;55400;95000;84000;56000;44000;3300;3300;3300;300;2602;2163;1434;1434;11046;4968;2076;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -159;'566;Nigeria;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;756;684;486;368;498;607;466;500;872;2000;2000;2000;4087;5021;12208;16307;37011;37120;37130;64400;57200;37500;29000;2276;2276;2276;328;836;399;386;386;3625;1660;675;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -159;'566;Nigeria;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;5000;3000;3000;3000;3000;3000;5000;19600;22600;23600;24600;14600;14600;14600;14600;14600;14600;14600;14600;23000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000 -159;'566;Nigeria;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;1700;2700;6400;6400;6400;4300;6700;11800;12200;5100;5100;5100;4700;4700;4700;5100;3200;3200;3200;3200;2100;2100;0;0;2453;4966;2220;6872;7039;6906;6906;19700;17700;16900;16900;16900;17346;17346;17346;17346;36471;22723;36575;26992;21119;24750;54670;48342;113317;123537;78023;43165;68108;44553.06;70526;59255 -159;'566;Nigeria;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;203;354;790;790;790;1956;3940;6749;5932;3795;3968;4268;4836;4836;4836;3795;3109;3109;3109;3109;2196;2196;0;0;1068;1653;940;3581;3928;4032;4032;7717;7111;6720;6720;6720;6910;6910;6910;6910;20266;7046;23598;16324;18612;21239;21360;16366;32843;41112;44218;29222;52463;47938.47;69492;98929 -159;'566;Nigeria;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;650;650;0;0;0;0;0;0;0;0;0;5319;3683;4266;2992;12224;22569;10049;6815;3007;840;840;166;166;191;144;144 -159;'566;Nigeria;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;73;0;0;0;0;0;0;0;0;0;1398;1303;2022;710;2774;9296;2055;1674;457;167;167;45;45;51;43;43 -159;'566;Nigeria;1878;Pulp for paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;2000;13600;16600;16600;16600;6600;6600;6600;6600;6600;6600;6600;6600;15000;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 -159;'566;Nigeria;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;1700;2700;6400;6400;6400;4300;6700;11800;12200;5100;5100;5100;4700;4700;4700;5100;3200;3200;3200;3200;2100;2100;0;0;1627;2866;1907;6559;6939;6492;6492;19300;17300;16500;16500;16500;16746;16746;16746;16746;35468;22369;34172;24797;17043;22343;20117;13789;24938;37476;35023;26421;52679;42174.49;62356;54435 -159;'566;Nigeria;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;203;354;790;790;790;1956;3940;6749;5932;3795;3968;4268;4836;4836;4836;3795;3109;3109;3109;3109;2196;2196;0;0;773;1098;832;3473;3899;3891;3891;7557;6842;6451;6451;6451;6606;6606;6606;6606;19993;6588;22353;15699;17770;20919;14360;9366;17094;24873;35418;24048;46333;46476.5;62663;95896 -159;'566;Nigeria;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1066;1066;1066;20;318;865;845;845;144;144;144;144;144;144;144;144 -159;'566;Nigeria;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;559;559;559;18;201;580;562;562;43;43;43;43;43;43;43;43 -159;'566;Nigeria;1875;Wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;2000;13600;16600;16600;16600;6600;6600;6600;6600;6600;6600;6600;6600;15000;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 -159;'566;Nigeria;1875;Wood pulp;5610;Import quantity;t;;;;;;;;1700;2700;6400;6400;6400;4300;6700;11800;12200;5100;5100;5100;4700;4700;4700;5100;3200;3200;3200;3200;2100;2100;0;0;1702;2941;1907;3351;3731;3284;3284;19700;17300;16500;16500;16500;16500;16500;16500;16500;35747;22284;34093;24871;17038;22482;20385;14123;24628;36625;33854;26001;51610;41778.63;60981;53079 -159;'566;Nigeria;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;203;354;790;790;790;1956;3940;6749;5932;3795;3968;4268;4836;4836;4836;3795;3109;3109;3109;3109;2196;2196;0;0;818;1143;832;1335;1761;1753;1753;8008;6842;6451;6451;6451;6451;6451;6451;6451;20162;6436;22049;15664;17677;20997;14524;9457;16374;23463;33150;22096;43648;44126.36;59135;92350 -159;'566;Nigeria;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1066;1066;1066;20;318;865;845;845;144;144;144;144;144;144;144;144 -159;'566;Nigeria;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;559;559;559;18;201;580;562;562;43;43;43;43;43;43;43;43 -159;'566;Nigeria;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9000;9000;9000;9000;9000;9000;9000 -159;'566;Nigeria;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;821;1006;347;973;2434.32;3639;2300 -159;'566;Nigeria;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;380;1061;287;830;4161;1563;814 -159;'566;Nigeria;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -159;'566;Nigeria;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -159;'566;Nigeria;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120;500;64;64;15500;15500;15500;15500;15500;15500;15500;15500;15500;62;49;208;208;843;4793;6976;0;0;;;;;;; -159;'566;Nigeria;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;519;23;23;5682;5682;5682;5682;5682;5682;5682;5682;5682;35;34;149;149;606;6849;4136;0;0;;;;;;; -159;'566;Nigeria;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1066;1066;1066;20;20;20;0;0;0;;;;;;; -159;'566;Nigeria;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;559;559;559;18;18;18;0;0;0;;;;;;; -159;'566;Nigeria;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;1000;2400;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;6000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;;;;;;; -159;'566;Nigeria;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;800;2000;1600;1600;1600;1900;2900;4500;6600;1800;1800;1800;900;900;900;1800;1100;1100;1100;1100;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;79;20;20;2437;1346;246;0;1623;;;;;;; -159;'566;Nigeria;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;107;270;220;220;220;850;1214;3054;2949;1668;1668;1668;549;549;549;1668;913;913;913;913;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;150;35;35;851;557;147;0;830;;;;;;; -159;'566;Nigeria;1656;Chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;1000;11200;14000;14000;14000;4000;4000;4000;4000;4000;4000;4000;4000;9000;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 -159;'566;Nigeria;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;900;700;4800;4800;4800;2400;3800;7300;5600;3300;3300;3300;3800;3800;3800;3300;2100;2100;2100;2100;2100;2100;;;1627;2866;1907;3077;3077;3066;3066;3800;1800;1000;1000;1000;1000;1000;1000;1000;35216;22125;33833;24563;13747;16199;12875;13734;22813;35803;32821;25552;50464;38891.3;57077;50752 -159;'566;Nigeria;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;96;84;570;570;570;1106;2726;3695;2983;2127;2300;2600;4287;4287;4287;2127;2196;2196;2196;2196;2196;2196;;;773;1098;832;1074;1074;1562;1562;1875;1160;769;769;769;769;769;769;769;19705;6204;21858;15438;16204;13495;10048;9222;15440;23082;32001;21719;42641;39387.61;57192;91500 -159;'566;Nigeria;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;298;845;845;845;144;144;144;144;144;144;144;144 -159;'566;Nigeria;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;183;562;562;562;43;43;43;43;43;43;43;43 -159;'566;Nigeria;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;1000;11200;14000;14000;14000;4000;4000;4000;4000;4000;4000;4000;4000;9000;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 -159;'566;Nigeria;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;1098;0;0;0;0;0;0;0;0;0;0;0;0;0;0;24828;16574;29447;8777;3357;1749;2697;4367;10956;10754;7183;5804;10125;11120.85;13292;5748 -159;'566;Nigeria;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;353;0;0;0;0;0;0;0;0;0;0;0;0;0;0;12055;3595;8913;4685;2996;1134;1900;2396;7099;6907;7332;5882;9145;11734.87;15835;6061 -159;'566;Nigeria;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;45;45;45;45;45;45;45;45;45;45;45 -159;'566;Nigeria;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;7;7;7;7;7;7 -159;'566;Nigeria;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1291;1680;1533;2834;2834;2884;2884;3800;1800;600;600;600;600;600;600;600;8859;5443;4128;15551;9661;14205;10133;9125;11540;22631;24963;19647;40239;27573.13;34992;44890 -159;'566;Nigeria;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;615;699;703;912;912;1461;1461;1875;1160;432;432;432;432;432;432;432;6621;2389;12621;10460;12520;11706;8057;6643;8107;14095;23989;15772;33485;27501.75;38599;85318 -159;'566;Nigeria;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;253;800;800;800;99;99;99;99;99;99;99;99 -159;'566;Nigeria;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;176;555;555;555;36;36;36;36;36;36;36;36 -159;'566;Nigeria;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2418;675;101;100;197.33;8793;114 -159;'566;Nigeria;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2080;680;65;11;151;2758;121 -159;'566;Nigeria;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;49;49;138;138;0;0;0;0;0;0;0;0;0;0;10;10;10;10;102;0;0;0;;;;;;; -159;'566;Nigeria;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;31;31;0;0;0;0;0;0;0;0;0;0;3;3;3;3;85;0;0;0;;;;;;; -159;'566;Nigeria;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;237;88;325;194;194;44;44;0;0;400;400;400;400;400;400;400;1529;98;248;225;719;143;45;242;317;;;;;;; -159;'566;Nigeria;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116;46;115;148;148;70;70;0;0;337;337;337;337;337;337;337;1029;217;321;290;685;570;91;183;234;;;;;;; -159;'566;Nigeria;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;75;0;154;154;154;154;400;0;0;0;0;0;0;0;0;469;31;32;80;11;144;288;389;192;1;27;102;173;453;265;27 -159;'566;Nigeria;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;45;0;168;168;168;168;451;0;0;0;0;0;0;0;0;422;48;7;42;16;96;193;235;104;1;88;90;177;577.74;380;36 -159;'566;Nigeria;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3362;3362;3362;3362;0;0;0;0;0;246;246;246;246;190;116;111;6;16;5;20;55;502;852;1196;522;1242;848.86;1640;1383 -159;'566;Nigeria;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2306;2306;2306;2306;0;0;0;0;0;155;155;155;155;253;200;311;77;109;18;29;144;824;1411;2356;2042;2862;2927.89;3908;3582 -159;'566;Nigeria;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1288;145;33;33;33;19;555;6;736;656;44;135;482;1481.89;963;1804 -159;'566;Nigeria;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;849;105;45;45;45;250;398;2;465;437;152;128;583;1199;464;1396 -159;'566;Nigeria;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;60;60;60;60;7;7 -159;'566;Nigeria;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;34;34;34;34;2;2 -159;'566;Nigeria;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;5000;3000;3000;3000;3000;3000;3000;6000;6000;7000;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;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000 -159;'566;Nigeria;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;826;2100;313;313;100;414;414;400;400;400;400;400;600;600;600;600;1003;354;2403;2195;4076;2407;34553;34553;88379;86061;43000;16744;15429;2378.57;8170;4820 -159;'566;Nigeria;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;295;555;108;108;29;141;141;160;269;269;269;269;304;304;304;304;273;458;1245;625;842;320;7000;7000;15749;16239;8800;5174;6130;1461.97;6829;3033 -159;'566;Nigeria;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;650;650;0;0;0;0;0;0;0;0;0;4253;2617;3200;2972;11906;21704;9204;5970;2863;696;696;22;22;47;0;0 -159;'566;Nigeria;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;73;0;0;0;0;0;0;0;0;0;839;744;1463;692;2573;8716;1493;1112;414;124;124;2;2;8;0;0 -159;'566;Nigeria;1876;Paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;12000;11000;10000;9000;16000;40000;59000;48000;53000;45000;43000;29000;21000;5000;3000;5500;1188;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 -159;'566;Nigeria;1876;Paper and paperboard;5610;Import quantity;t;18300;17100;21400;23100;33800;36900;32900;36400;49000;79300;100500;74300;90000;113500;103400;154300;140500;153900;131100;123100;261300;172700;172300;124400;122800;58600;19500;103811;50273;86757;86757;120035;107027;106084;62505;54500;91457;143710;145601;188600;194500;202500;250254;297324;297324;297324;332026;356946;378559;371410;570020;256622;511506;549502;421401;484795;524734;454351;467475;662357;424331.08;480033;429715 -159;'566;Nigeria;1876;Paper and paperboard;5622;Import value;1000 USD;3839;5282;5910;6934;11448;10989;10599;11294;14482;24287;30776;27345;42474;76324;99358;141125;130495;159923;140347;153558;339100;220800;220496;146962;138537;80010;28102;109779;65993;93634;93634;79157;72067;79944;45985;38766;74596;100160;118739;133374;113014;114114;144564;223693;223693;223693;259410;368502;478964;557429;490096;278445;418907;475840;333264;353438;485788;449600;415006;628551;401916.21;673964;574887 -159;'566;Nigeria;1876;Paper and paperboard;5910;Export quantity;t;;;;;;100;200;200;;;;;;;;;;;;;;;;;;;0;;;;;;19;19;19;19;19;0;0;1600;1600;1600;1600;1600;1600;1600;1600;1261;263;196;721;336;512;1228;2054;1260;2183;4510;5448;6294;7324.6;2275;2771 -159;'566;Nigeria;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;20;39;37;;;;;;;;;;;;;;;;;;;0;;;;;;33;33;33;33;33;0;0;655;655;655;655;655;655;655;655;4726;22683;379;715;619;217;2499;1876;1310;2508;3798;3308;3858;3541.38;2116;1786 -159;'566;Nigeria;2042;Graphic papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;16000;20000;24000;29000;31000;21000;13000;3000;0;2500;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 -159;'566;Nigeria;2042;Graphic papers;5610;Import quantity;t;16300;13700;14200;11600;15700;17800;14100;17400;23600;42300;56700;35500;48500;59600;52700;84600;71700;84900;59100;70900;119100;57600;57200;60000;64800;22600;6500;90811;37273;73757;73757;69299;57408;50780;22858;24000;52121;97710;78901;121000;126300;134300;143921;161931;161931;161931;145200;179764;198630;202226;291972;126144;292724;318069;258295;223026;320470;290390;352739;442820;298887.34;332030;344044 -159;'566;Nigeria;2042;Graphic papers;5622;Import value;1000 USD;2907;3613;3314;3418;4666;4666;4215;5642;7617;12942;17392;12542;23726;41166;51497;85825;66920;86763;71159;82467;145500;64100;63796;74568;81086;22080;5679;87356;43570;71211;71211;46716;41053;47357;19463;16437;44442;70035;69633;92650;77032;78132;86764;113078;113078;113078;112212;197625;249225;292083;272127;120582;248431;260541;211306;160300;298829;280459;298888;402232;237956.07;470691;439071 -159;'566;Nigeria;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;19;19;;;;;;;;;;;711;74;61;580;213;401;207;381;324;267;90;295;179;2132.95;291;381 -159;'566;Nigeria;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33;33;33;33;;;;;;;;;;;494;339;81;559;490;109;1324;187;164;123;56;103;95;345;397;513 -159;'566;Nigeria;1671;Newsprint;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;16000;20000;24000;29000;31000;21000;13000;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 -159;'566;Nigeria;1671;Newsprint;5610;Import quantity;t;5100;5700;5300;4700;5300;8800;5300;4600;7300;17100;24300;15800;13000;21400;23700;27500;18100;28000;17000;29000;33000;20000;19600;15300;14800;2800;5800;5702;1773;2768;2768;4685;7355;6011;14735;12400;8963;12200;12200;12000;18800;18800;18800;24128;24128;24128;34500;30957;55266;40244;41155;35486;36332;43314;14816;29153;24076;18269;18488;18591;8245.34;6152;7672 -159;'566;Nigeria;1671;Newsprint;5622;Import value;1000 USD;945;1069;926;979;1076;1214;1126;950;1409;3291;5500;3994;4246;8957;12134;15833;13813;16829;11250;22000;25000;15200;14896;12922;18953;2080;4400;3171;939;1100;1100;2101;2944;2196;9786;5993;3405;5879;5000;5008;8519;8519;8519;11530;11530;11530;20207;20646;31643;42946;27341;28396;29882;28870;7917;15815;12405;14029;13148;14553;5712.07;6355;8571 -159;'566;Nigeria;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;636;25;3;213;10;16;24;65;175;4;42;57;57;57;79;79 -159;'566;Nigeria;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;428;251;3;155;6;18;33;22;76;4;28;5;5;5;59;59 -159;'566;Nigeria;1674;Printing and writing papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2500;1000;1000;;;;;;;;;;;;;;;;;;;;;;;;;; -159;'566;Nigeria;1674;Printing and writing papers;5610;Import quantity;t;11200;8000;8900;6900;10400;9000;8800;12800;16300;25200;32400;19700;35500;38200;29000;57100;53600;56900;42100;41900;86100;37600;37600;44700;50000;19800;700;85109;35500;70989;70989;64614;50053;44769;8123;11600;43158;85510;66701;109000;107500;115500;125121;137803;137803;137803;110700;148807;143364;161982;250817;90658;256392;274755;243479;193873;296394;272121;334251;424229;290642;325878;336372 -159;'566;Nigeria;1674;Printing and writing papers;5622;Import value;1000 USD;1962;2544;2388;2439;3590;3452;3089;4692;6208;9651;11892;8548;19480;32209;39363;69992;53107;69934;59909;60467;120500;48900;48900;61646;62133;20000;1279;84185;42631;70111;70111;44615;38109;45161;9677;10444;41037;64156;64633;87642;68513;69613;78245;101548;101548;101548;92005;176979;217582;249137;244786;92186;218549;231671;203389;144485;286424;266430;285740;387679;232244;464336;430500 -159;'566;Nigeria;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;19;19;;;;;;;;;;;75;49;58;367;203;385;183;316;149;263;48;238;122;2075.95;212;302 -159;'566;Nigeria;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33;33;33;33;;;;;;;;;;;66;88;78;404;484;91;1291;165;88;119;28;98;90;340;338;454 -159;'566;Nigeria;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3927;3060;5000;14000;22000;31621;29389;29389;29389;10800;8616;7413;8099;11758;8844;20182;13225;9350;7671;2447;1186;1389;1619;3883;1342;2170 -159;'566;Nigeria;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3479;3505;4753;8900;10000;18632;17401;17401;17401;7818;7674;7440;4170;8857;15369;16672;10132;6499;5268;1732;1215;1652;1707;4108;1687;2653 -159;'566;Nigeria;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;9;9;21;5;5;36;36;36;123;0;0;4;28 -159;'566;Nigeria;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;10;10;4;2;2;20;20;20;45;2;2;1;98 -159;'566;Nigeria;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57238;44671;73000;71100;71100;71100;74092;74092;74092;63600;108260;115924;142421;171624;68383;151475;183035;183035;143391;272763;251956;315685;394707;210655;304451;314352 -159;'566;Nigeria;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46060;46402;62921;47013;47013;47013;57535;57535;57535;53096;137657;182836;224598;170101;63283;128674;155347;155347;104977;267595;247087;270600;359521;162229;435635;405922 -159;'566;Nigeria;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;26;207;167;357;169;305;81;141;5;87;105;2058.95;183;249 -159;'566;Nigeria;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;3;210;450;75;1284;161;35;62;3;40;86;336;315;334 -159;'566;Nigeria;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24345;18970;31000;22400;22400;22400;34322;34322;34322;36300;31931;20027;11462;67435;13431;84735;78495;51094;42811;21184;18979;17177;27903;76104;20085;19850 -159;'566;Nigeria;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14617;14726;19968;12600;12600;12600;26612;26612;26612;31091;31648;27306;20369;65828;13534;73203;66192;41543;34240;17097;18128;13488;26451;65907;27014;21925 -159;'566;Nigeria;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;7;18;151;27;7;9;6;32;86;7;28;17;17;25;25 -159;'566;Nigeria;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;52;60;184;24;12;5;2;33;37;5;13;2;2;22;22 -159;'566;Nigeria;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;12000;11000;10000;9000;16000;40000;43000;28000;29000;16000;12000;8000;8000;2000;3000;3000;188;0;;;;;;;;;;;;;;;;;;;;;;;;;; -159;'566;Nigeria;1675;Other paper and paperboard;5610;Import quantity;t;2000;3400;7200;11500;18100;19100;18800;19000;25400;37000;43800;38800;41500;53900;50700;69700;68800;69000;72000;52200;142200;115100;115100;64400;58000;36000;13000;13000;13000;13000;13000;50736;49619;55304;39647;30500;39336;46000;66700;67600;68200;68200;106333;135393;135393;135393;186826;177182;179929;169184;278048;130478;218782;231433;163106;261769;204264;163961;114736;219537;125443.74;148003;85671 -159;'566;Nigeria;1675;Other paper and paperboard;5622;Import value;1000 USD;932;1669;2596;3516;6782;6323;6384;5652;6865;11345;13384;14803;18748;35158;47861;55300;63575;73160;69188;71091;193600;156700;156700;72394;57451;57930;22423;22423;22423;22423;22423;32441;31014;32587;26522;22329;30154;30125;49106;40724;35982;35982;57800;110615;110615;110615;147198;170877;229739;265346;217969;157863;170476;215299;121958;193138;186959;169141;116118;226319;163960.15;203273;135816 -159;'566;Nigeria;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;100;200;200;;;;;;;;;;;;;;;;;;;0;;;;;;;0;0;0;0;0;0;1600;1600;1600;1600;1600;1600;1600;1600;550;189;135;141;123;111;1021;1673;936;1916;4420;5153;6115;5191.64;1984;2390 -159;'566;Nigeria;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;20;39;37;;;;;;;;;;;;;;;;;;;0;;;;;;;0;0;0;0;0;0;655;655;655;655;655;655;655;655;4232;22344;298;156;129;108;1175;1689;1146;2385;3742;3205;3763;3196.38;1719;1273 -159;'566;Nigeria;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;900;400;1600;1600;1600;2426;2426;2426;2426;1499;3000;5568;8997;11476;4290;5604;515;2172;5335;5227;3608;8890;5809.6;1506;2038 -159;'566;Nigeria;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;909;494;1231;1231;1231;3256;3256;3256;3256;2355;3411;6194;11901;18662;6327;8337;911;2606;6671;6881;4318;11895;9317.37;2596;4124 -159;'566;Nigeria;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;237;123;20;20;41;52;829;1554;832;1810;4143;3616;3280;2502.64;1693;2157 -159;'566;Nigeria;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;513;22265;53;53;46;77;928;1551;1085;2293;3553;2706;2640;2043.38;1666;925 -159;'566;Nigeria;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20000;53800;62000;60800;60800;98933;126967;126967;126967;179600;168736;161929;153616;247171;112275;207302;213258;156941;246257;195636;151441;102177;204366;114176.52;141417;80125 -159;'566;Nigeria;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16000;35033;32211;27928;27928;49746;95904;95904;95904;133505;143803;175804;225618;174313;132642;154213;180044;106843;164675;164632;141968;94656;191265;134221.71;180105;117084 -159;'566;Nigeria;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1600;1600;1600;1600;1600;1600;1600;1600;65;65;42;75;52;9;84;98;67;103;272;1536;2642;2649;177;203 -159;'566;Nigeria;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;655;655;655;655;655;655;655;655;67;67;85;50;38;7;120;128;53;84;188;498;969;977;34;105 -159;'566;Nigeria;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;;;;;;;;;;;;;;12000;11000;10000;9000;16000;40000;43000;28000;29000;16000;12000;8000;8000;2000;3000;3000;188;0;;;;;;;;;;;;;;;;;;;;;;;;;; -159;'566;Nigeria;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;1000;1800;3700;6000;9400;9900;9800;9900;13200;8100;15900;13300;14800;18900;20600;28900;24000;19100;22100;27200;74100;60000;60000;48600;48500;30900;3800;3800;3800;3800;3800;10000;9619;15304;11101;8500;17336;;;;;;;;;;;;;;;;;;;;;;;;;; -159;'566;Nigeria;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;373;668;1038;1406;2713;2529;2554;2261;2746;2680;3556;4800;6489;13489;17548;17878;21584;26360;22388;28425;77400;62700;62700;50169;43527;50169;5553;5553;5553;5553;5553;10000;9000;10573;8487;7145;14970;;;;;;;;;;;;;;;;;;;;;;;;;; -159;'566;Nigeria;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11452;30805;35500;38100;38100;62354;83336;83336;83336;116900;126518;94672;81568;158591;85148;103943;116344;93464;180396;134917;99457;59469;134407;60631.19;89617;38481 -159;'566;Nigeria;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7353;16100;14803;11966;11966;21284;58347;58347;58347;81800;78979;60562;119246;85105;101218;58871;65631;58340;99926;76198;75171;35233;76831;46887.87;97632;27545 -159;'566;Nigeria;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;34;48;930;2637;2637;152;178 -159;'566;Nigeria;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;34;33;426;967;967;10;81 -159;'566;Nigeria;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4032;10847;12500;6800;6800;22283;28921;28921;28921;48900;27744;47643;50688;70291;22081;93673;73564;57267;56093;22996;21397;23900;37599;30796.23;31529;20132 -159;'566;Nigeria;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3282;7187;6608;6001;6001;14621;22857;22857;22857;38700;47551;73734;63350;72083;25685;84041;87316;44248;52502;50955;35541;40540;78753;59312.64;52552;61396 -159;'566;Nigeria;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;38;17;24;48;5;44;44;7;10;22;0;0;0;1;1 -159;'566;Nigeria;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;36;72;8;36;4;40;40;3;1;5;0;0;0;1;1 -159;'566;Nigeria;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4516;12148;14000;15000;15000;13396;13810;13810;13810;12900;11598;19189;19189;18115;2514;6377;19739;6078;9614;33239;29863;18750;32356;22737.1;20268;21346 -159;'566;Nigeria;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5365;11746;10800;9602;9602;13482;14341;14341;14341;12646;14918;41130;41130;17017;4331;9140;24473;4136;12133;34519;30639;18789;35630;27948.2;29892;28025 -159;'566;Nigeria;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1600;1600;1600;1600;1600;1600;1600;1600;27;27;25;51;4;4;1;1;4;4;147;601;0;7;19;19 -159;'566;Nigeria;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;655;655;655;655;655;655;655;655;31;31;13;42;2;3;44;44;3;3;104;70;0;8;21;21 -159;'566;Nigeria;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;900;900;900;900;900;900;900;2876;425;2171;174;2532;3309;3611;132;154;4484;724;58;4;12;3;166 -159;'566;Nigeria;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;359;359;359;359;359;359;359;2355;378;1892;108;1408;2161;2624;119;114;2960;617;94;51;73;29;118 -159;'566;Nigeria;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;53;55;55;55;5;5;5;5;5 -159;'566;Nigeria;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;44;46;46;46;2;2;2;2;2 -159;'566;Nigeria;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;1000;1600;3500;5500;8700;9200;9000;9100;12200;28900;27900;25500;26700;35000;30100;40800;44800;49900;49900;25000;68100;55100;55100;15800;9500;5100;9200;9200;9200;9200;9200;40736;40000;40000;28546;22000;22000;26000;12000;5200;5800;5800;5800;6000;6000;6000;4800;6947;15000;10000;21880;6727;7190;12571;5650;13340;3293;7293;8951;6281;5457.61;5080;3508 -159;'566;Nigeria;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;559;1001;1558;2110;4069;3794;3830;3391;4119;8665;9828;10003;12259;21669;30313;37422;41991;46800;46800;42666;116200;94000;94000;22225;13924;7761;16870;16870;16870;16870;16870;22441;22014;22014;18035;15184;15184;14125;13164;8019;6823;6823;6823;11455;11455;11455;10437;24719;50524;33534;31755;6559;9936;26918;14204;25857;15656;20292;17144;23159;20421.07;20572;14608 -159;'566;Nigeria;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;100;200;200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;248;1;73;46;30;50;108;21;37;3;5;1;193;40;114;30 -159;'566;Nigeria;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;20;39;37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3652;12;160;53;45;24;127;10;8;8;1;1;154;176;19;243 -159;'566;Nigeria;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11722;14920;17718;25762;17410;28141;30190 -159;'566;Nigeria;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8115;6849;1044;1582;2093;6291;6277 -159;'566;Nigeria;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;312;308;7;15;10;93;5 -159;'566;Nigeria;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6538;5839;241;189;1498;5803;5803 -159;'566;Nigeria;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;301;301;1;8;4;25;1 -159;'566;Nigeria;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5731;5731;103;51;1426;5731;5731 -159;'566;Nigeria;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;7;6;7;6;68;4 -159;'566;Nigeria;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;807;108;138;138;72;72;72 -159;'566;Nigeria;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;354;552;1556;2432;487;607;698 -159;'566;Nigeria;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;48;9;165;243;370;370 -159;'566;Nigeria;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3392;4452;1594;3321;2751;295;300 -159;'566;Nigeria;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;745;722;722;2;2;0 -159;'566;Nigeria;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2623;3163;2141;4789;4140;11056;11821 -159;'566;Nigeria;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;18;18;18;7;7;7 -159;'566;Nigeria;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;7 -159;'566;Nigeria;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;3 -159;'566;Nigeria;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1 -159;'566;Nigeria;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1 -159;'566;Nigeria;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;263 -159;'566;Nigeria;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;488 -159;'566;Nigeria;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4105;5843;11603;14600;9596;14872;14507 -159;'566;Nigeria;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;203;62;47;481;336;102;90 -159;'566;Nigeria;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;48 -159;'566;Nigeria;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;936;602;817;605;426;1187;2811 -159;'566;Nigeria;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1225;137;7;7;7;7;7 -159;'566;Nigeria;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36183;28810;43247;67955;73615;102508;95685 -159;'566;Nigeria;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;370;1341;486;400;2972;4334;5485 -159;'566;Nigeria;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1274;377;152;684;888;576;356 -159;'566;Nigeria;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;17;17;17;17 -159;'566;Nigeria;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8336;8965;11396;21230;15882;19018;13816 -159;'566;Nigeria;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4 -159;'566;Nigeria;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1951;1459;715;1173;868;1485;338 -159;'566;Nigeria;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;203;74;74;112;112;112;1 -159;'566;Nigeria;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4854;3760;16160;19578;16450;9146;13341 -159;'566;Nigeria;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;308;259;259;2597;4033;5080 -159;'566;Nigeria;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19768;14249;14824;25290;39527;72283;67834 -159;'566;Nigeria;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106;938;132;8;242;168;383 -160;'570;Niue;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;835;892;791;791;801;662;889 -160;'570;Niue;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;31;26;3;11;37;13 -160;'570;Niue;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;139;231;329;325;325;325;325;325;325;325;325;325;325;325;325;325;325;325;362;649;707;479;439;648;992;483;595;591;575;473;500;538 -160;'570;Niue;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;0 -160;'570;Niue;1861;Roundwood;5516;Production;m3;178;168;159;150;142;134;127;120;114;108;108;108;88;88;88;88;88;62;62;62;63;64;66;62;63;65;66;41;41;42;42;42;42;42;42;42;42;43;43;43;43;44;44;44;44;44;44;45;45;45;45;45;45;46;46;46;46;48;50;53;52;52;52 -160;'570;Niue;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;22;0;2;22;11;0;14 -160;'570;Niue;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;5;0;1;6;6;0;9 -160;'570;Niue;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 -160;'570;Niue;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 -160;'570;Niue;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -160;'570;Niue;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;0;2;22;11;0;14 -160;'570;Niue;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;0;1;6;6;0;9 -160;'570;Niue;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -160;'570;Niue;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -160;'570;Niue;1863;Roundwood, non-coniferous;5516;Production;m3;178;168;159;150;142;134;127;120;114;108;108;108;88;88;88;88;88;62;62;62;63;64;66;62;63;65;66;41;41;42;42;42;42;42;42;42;42;43;43;43;43;44;44;44;44;44;44;45;45;45;45;45;45;46;46;46;46;48;50;53;52;52;52 -160;'570;Niue;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -160;'570;Niue;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -160;'570;Niue;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -160;'570;Niue;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -160;'570;Niue;1864;Wood fuel;5516;Production;m3;178;168;159;150;142;134;127;120;114;108;108;108;88;88;88;88;88;62;62;62;63;64;66;62;63;65;66;41;41;42;42;42;42;42;42;42;42;43;43;43;43;44;44;44;44;44;44;45;45;45;45;45;45;46;46;46;46;48;50;53;52;52;52 -160;'570;Niue;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -160;'570;Niue;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -160;'570;Niue;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -160;'570;Niue;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -160;'570;Niue;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -160;'570;Niue;1628;Wood fuel, non-coniferous;5516;Production;m3;178;168;159;150;142;134;127;120;114;108;108;108;88;88;88;88;88;62;62;62;63;64;66;62;63;65;66;41;41;42;42;42;42;42;42;42;42;43;43;43;43;44;44;44;44;44;44;45;45;45;45;45;45;46;46;46;46;48;50;53;52;52;52 -160;'570;Niue;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;22;0;2;22;11;0;14 -160;'570;Niue;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;5;0;1;6;6;0;9 -160;'570;Niue;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 -160;'570;Niue;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 -160;'570;Niue;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;22;0;2;22;11;0;14 -160;'570;Niue;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;5;0;1;6;6;0;9 -160;'570;Niue;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -160;'570;Niue;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -160;'570;Niue;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;22;0;2;22;11;0;14 -160;'570;Niue;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;5;0;1;6;6;0;9 -160;'570;Niue;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -160;'570;Niue;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -160;'570;Niue;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;0;0;0;0;0 -160;'570;Niue;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;0;0;0;0;0 -160;'570;Niue;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 -160;'570;Niue;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 -160;'570;Niue;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -160;'570;Niue;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -160;'570;Niue;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 -160;'570;Niue;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 -160;'570;Niue;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;0;0;0;0;0 -160;'570;Niue;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;0;0;0;0;0 -160;'570;Niue;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -160;'570;Niue;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -160;'570;Niue;1630;Wood charcoal;5510;Production;t;13;13;12;12;11;11;10;10;9;9;9;9;8;8;8;8;8;6;6;6;6;6;6;5;5;5;5;4;4;4;4;0;4;4;4;4;4;4;4;4;4;4;3;3;3;3;3;3;3;3;3;3;3;3;3;4;4;5;5;6;6;6;6 -160;'570;Niue;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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 -160;'570;Niue;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;0;1;0;0 -160;'570;Niue;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1 -160;'570;Niue;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -160;'570;Niue;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1 -160;'570;Niue;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -160;'570;Niue;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -160;'570;Niue;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;265;36;321;321;321;321;321;321;321;321;321;321;321;321;321;321;321;321;321;5651;2793;321;321;726;780;417;662;668;749;827;375;473 -160;'570;Niue;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;10;105;105;105;105;105;105;105;105;105;105;105;105;105;105;105;105;112;367;412;222;172;379;639;202;299;250;248;196;208;225 -160;'570;Niue;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 -160;'570;Niue;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 -160;'570;Niue;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -160;'570;Niue;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;265;36;315;315;315;315;315;315;315;315;315;315;315;315;315;315;315;315;315;5645;2787;315;315;726;780;377;641;668;749;821;375;463 -160;'570;Niue;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;10;103;103;103;103;103;103;103;103;103;103;103;103;103;103;103;103;112;356;405;222;172;379;639;179;278;250;248;186;208;221 -160;'570;Niue;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -160;'570;Niue;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -160;'570;Niue;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -160;'570;Niue;1633;Sawnwood, non-coniferous;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;0;0;40;21;0;0;6;0;10 -160;'570;Niue;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;0;11;7;0;0;0;0;23;21;0;0;10;0;4 -160;'570;Niue;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 -160;'570;Niue;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 -160;'570;Niue;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -160;'570;Niue;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;90;152;3;22;12;29;32;7 -160;'570;Niue;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;79;34;3;22;12;12;18;16 -160;'570;Niue;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -160;'570;Niue;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -160;'570;Niue;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -160;'570;Niue;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;15;40;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;1817;33;33;33;39;115;48;95;66;127;126;113;67 -160;'570;Niue;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;7;20;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;46;78;91;53;63;35;70;38;89;56;91;49;57;66 -160;'570;Niue;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -160;'570;Niue;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -160;'570;Niue;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -160;'570;Niue;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;11;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;1817;33;33;33;39;115;48;95;47;108;111;94;45 -160;'570;Niue;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;5;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;46;78;91;53;63;35;70;38;89;45;80;40;55;56 -160;'570;Niue;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -160;'570;Niue;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -160;'570;Niue;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -160;'570;Niue;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -160;'570;Niue;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;4;5;1;1;4 -160;'570;Niue;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;1;2;0;0;8 -160;'570;Niue;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;4;7;;;;;;;;;;;;;;;;;;;;;;;;;15;14;14;18;18 -160;'570;Niue;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;2;4;;;;;;;;;;;;;;;;;;;;;;;;;10;9;9;2;2 -160;'570;Niue;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;14;14;18;18 -160;'570;Niue;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;9;9;2;2 -160;'570;Niue;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -160;'570;Niue;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -160;'570;Niue;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;4;7;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -160;'570;Niue;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;2;4;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -160;'570;Niue;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259 -160;'570;Niue;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183 -160;'570;Niue;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;0 -160;'570;Niue;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;0 -160;'570;Niue;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259 -160;'570;Niue;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183 -160;'570;Niue;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 -160;'570;Niue;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 -160;'570;Niue;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259 -160;'570;Niue;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183 -160;'570;Niue;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 -160;'570;Niue;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 -160;'570;Niue;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259 -160;'570;Niue;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183 -160;'570;Niue;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;0 -160;'570;Niue;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;0 -160;'570;Niue;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259;259 -160;'570;Niue;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183 -160;'570;Niue;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;0 -160;'570;Niue;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;0 -160;'570;Niue;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -160;'570;Niue;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -160;'570;Niue;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;28;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;25;2;1;3;2 -160;'570;Niue;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;23;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;79;35;26;34;39 -160;'570;Niue;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 -160;'570;Niue;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 -160;'570;Niue;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;1;0;0;0;0 -160;'570;Niue;2042;Graphic papers;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;8;5;5;0;1;1 -160;'570;Niue;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;1;0;0;0;0 -160;'570;Niue;1674;Printing and writing papers;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;8;5;5;0;1;1 -160;'570;Niue;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;1;0;0;0;0 -160;'570;Niue;1615;Printing and writing papers, uncoated, woodfree;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;5;5;0;1;1 -160;'570;Niue;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -160;'570;Niue;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -160;'570;Niue;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;28;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;24;2;1;3;2 -160;'570;Niue;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;23;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;74;30;26;33;38 -160;'570;Niue;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 -160;'570;Niue;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 -160;'570;Niue;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;2;1;3;2 -160;'570;Niue;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;23;20;29;34 -160;'570;Niue;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -160;'570;Niue;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;3;6;2;3 -160;'570;Niue;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -160;'570;Niue;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -160;'570;Niue;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -160;'570;Niue;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;3;6;2;3 -160;'570;Niue;1683;Other paper and paperboard, not elsewhere specified;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;0;0;0;0;0 -160;'570;Niue;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;0;4;0;2;1 -160;'570;Niue;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 -160;'570;Niue;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 -160;'570;Niue;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;216;121;78;111;177;29;214 -160;'570;Niue;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;6;4 -160;'570;Niue;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -160;'570;Niue;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -160;'570;Niue;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -160;'570;Niue;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -160;'570;Niue;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;3;1;1 -160;'570;Niue;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -160;'570;Niue;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;11;12;6;5;0;157 -160;'570;Niue;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140;108;65;85;117;27;48 -160;'570;Niue;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;6;4 -160;'570;Niue;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -160;'570;Niue;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;2;1;20;52;1;8 -160;'570;Niue;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -160;'570;Niue;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;136;176;122;105;151;133;137 -160;'570;Niue;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;31;26;3;11;31;9 -160;'570;Niue;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -160;'570;Niue;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;9;8;5;3;7;3 -160;'570;Niue;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;98;69;66;101;79;81 -160;'570;Niue;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -160;'570;Niue;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;15;9;9;10;10;10 -160;'570;Niue;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;6;2;6;30;7 -160;'570;Niue;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;54;36;25;37;37;43 -160;'570;Niue;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;30;20;1;5;1;2 -161;'574;Norfolk Island;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1429;934;1029;1903;1966;1540;1054 -161;'574;Norfolk Island;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;25;162;200;61;49;114 -161;'574;Norfolk Island;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;285;230;278;251;251;251;251;251;251;251;251;251;251;251;251;251;251;251;527;500;328;246;328;296;409;513;500;533;442;578;678;613 -161;'574;Norfolk 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;40;95;0;18;155;200;61;49;114 -161;'574;Norfolk Island;1861;Roundwood;5516;Production;m3;12;13;15;16;18;20;22;24;26;29;29;72;91;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;63;63;63;63;63;63;63;62;61;60;59;58;57;56;55;54;53;53;52;52;50;50;48;48;47;46;45;45;44;43;43;42;41 -161;'574;Norfolk 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;23;41;119;0;282;0;0 -161;'574;Norfolk 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;35;17;39;0;18;0;0 -161;'574;Norfolk Island;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117;58;0;0;239;0;78;0;0 -161;'574;Norfolk Island;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;70;0;0;69;0;12;0;0 -161;'574;Norfolk Island;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -161;'574;Norfolk Island;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;41;0;0;282;0;0 -161;'574;Norfolk Island;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;17;0;0;18;0;0 -161;'574;Norfolk Island;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;78;0;0 -161;'574;Norfolk Island;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;12;0;0 -161;'574;Norfolk Island;1863;Roundwood, non-coniferous;5516;Production;m3;12;13;15;16;18;20;22;24;26;29;29;72;91;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;63;63;63;63;63;63;63;62;61;60;59;58;57;56;55;54;53;53;52;52;50;50;48;48;47;46;45;45;44;43;43;42;41 -161;'574;Norfolk Island;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;0;119;0;0;0;0 -161;'574;Norfolk Island;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;0;39;0;0;0;0 -161;'574;Norfolk Island;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;239;0;0;0;0 -161;'574;Norfolk Island;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;69;0;0;0;0 -161;'574;Norfolk Island;1864;Wood fuel;5516;Production;m3;12;13;15;16;18;20;22;24;26;29;29;72;91;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;63;63;63;63;63;63;63;62;61;60;59;58;57;56;55;54;53;53;52;52;50;50;48;48;47;46;45;45;44;43;43;42;41 -161;'574;Norfolk Island;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -161;'574;Norfolk Island;1628;Wood fuel, non-coniferous;5516;Production;m3;12;13;15;16;18;20;22;24;26;29;29;72;91;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;72;63;63;63;63;63;63;63;62;61;60;59;58;57;56;55;54;53;53;52;52;50;50;48;48;47;46;45;45;44;43;43;42;41 -161;'574;Norfolk 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;23;41;119;0;282;0;0 -161;'574;Norfolk 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;35;17;39;0;18;0;0 -161;'574;Norfolk Island;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117;58;0;0;239;0;78;0;0 -161;'574;Norfolk Island;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;70;0;0;69;0;12;0;0 -161;'574;Norfolk Island;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;41;0;0;282;0;0 -161;'574;Norfolk Island;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;17;0;0;18;0;0 -161;'574;Norfolk Island;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117;0;0;0;0;0;78;0;0 -161;'574;Norfolk Island;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;0;0;0;0;0;12;0;0 -161;'574;Norfolk Island;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;41;0;0;282;0;0 -161;'574;Norfolk Island;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;17;0;0;18;0;0 -161;'574;Norfolk Island;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117;0;0;0;0;0;78;0;0 -161;'574;Norfolk Island;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;0;0;0;0;0;12;0;0 -161;'574;Norfolk 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;23;0;119;0;0;0;0 -161;'574;Norfolk 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;35;0;39;0;0;0;0 -161;'574;Norfolk Island;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;58;0;0;239;0;0;0;0 -161;'574;Norfolk Island;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;70;0;0;69;0;0;0;0 -161;'574;Norfolk Island;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -161;'574;Norfolk Island;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -161;'574;Norfolk Island;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;58;0;0;239;0;0;0;0 -161;'574;Norfolk Island;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;70;0;0;69;0;0;0;0 -161;'574;Norfolk 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;23;0;119;0;0;0;0 -161;'574;Norfolk 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;35;0;39;0;0;0;0 -161;'574;Norfolk Island;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -161;'574;Norfolk Island;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -161;'574;Norfolk Island;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;7;7;7;7;7;7;7;7;6;6;6;6;6 -161;'574;Norfolk Island;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;0 -161;'574;Norfolk Island;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;0 -161;'574;Norfolk Island;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -161;'574;Norfolk Island;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -161;'574;Norfolk Island;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -161;'574;Norfolk Island;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -161;'574;Norfolk Island;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;300;300;300;300;300;300;300;300 -161;'574;Norfolk Island;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;781;661;540;540;540;540;540;540;540;540;540;540;540;540;540;540;540;540;540;540;540;540;540;520;448;430;495;787;631;996;830;1092 -161;'574;Norfolk Island;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;181;174;185;185;185;185;185;185;185;185;185;185;185;185;185;185;185;185;361;399;252;158;204;191;296;274;355;365;326;334;427;444 -161;'574;Norfolk 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;136;123;0;0;87;130;0;0;48 -161;'574;Norfolk 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;16;25;0;0;19;67;0;0;11 -161;'574;Norfolk Island;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -161;'574;Norfolk Island;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;735;618;484;484;484;484;484;484;484;484;484;484;484;484;484;484;484;484;484;484;484;484;484;321;448;417;495;787;631;996;830;1092 -161;'574;Norfolk Island;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;161;154;151;151;151;151;151;151;151;151;151;151;151;151;151;151;151;151;335;349;252;147;199;179;296;266;355;365;326;334;427;444 -161;'574;Norfolk 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;136;0;0;0;0;130;0;0;47 -161;'574;Norfolk 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;16;0;0;0;0;67;0;0;10 -161;'574;Norfolk Island;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;300;300;300;300;300;300;300;300 -161;'574;Norfolk Island;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;43;56;56;56;56;56;56;56;56;56;56;56;56;56;56;56;56;56;56;56;56;56;199;0;13;0;0;0;0;0;0 -161;'574;Norfolk Island;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;26;50;0;11;5;12;0;8;0;0;0;0;0;0 -161;'574;Norfolk Island;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;123;0;0;87;0;0;0;1 -161;'574;Norfolk Island;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;25;0;0;19;0;0;0;1 -161;'574;Norfolk Island;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -161;'574;Norfolk Island;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;0;0;0;3;8;0;0;0;0;2 -161;'574;Norfolk Island;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;65;13;1;3;0;0;0;7;8;0;0;0;0;9 -161;'574;Norfolk Island;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -161;'574;Norfolk Island;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -161;'574;Norfolk Island;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -161;'574;Norfolk Island;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;226;289;175;124;124;124;124;124;124;124;124;124;124;124;124;124;124;124;124;124;124;124;124;155;173;235;157;228;343;1003;315;748 -161;'574;Norfolk Island;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;43;81;54;54;54;54;54;54;54;54;54;54;54;54;54;54;54;90;77;64;74;113;94;102;186;109;99;84;128;169;49 -161;'574;Norfolk Island;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;20;0;0;0;0;0 -161;'574;Norfolk Island;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;18;0;0;0;0;0 -161;'574;Norfolk Island;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -161;'574;Norfolk Island;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115;19;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;63;81;143;65;61;38;141;120;15 -161;'574;Norfolk Island;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;10;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;55;42;29;39;78;59;67;151;74;67;60;89;143;19 -161;'574;Norfolk Island;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;20;0;0;0;0;0 -161;'574;Norfolk Island;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;18;0;0;0;0;0 -161;'574;Norfolk Island;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;246;83;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -161;'574;Norfolk Island;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;25;31;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -161;'574;Norfolk Island;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;83;83;83;83;83;83;83;83;83;83;83;83;83;83;83;83;83;83;83;83;83;83;83;52;19;13;4;182 -161;'574;Norfolk Island;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;20;8;8;3;18 -161;'574;Norfolk Island;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;24;60;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;115;286;849;191;551 -161;'574;Norfolk Island;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;8;31;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;12;16;31;23;12 -161;'574;Norfolk Island;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;32 -161;'574;Norfolk Island;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3 -161;'574;Norfolk Island;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106;277;840;157;517 -161;'574;Norfolk Island;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;12;27;16;5 -161;'574;Norfolk Island;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;2;2 -161;'574;Norfolk Island;1650;Other fibreboard;5622;Import 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;4 -161;'574;Norfolk Island;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;24;51;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -161;'574;Norfolk Island;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;8;27;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -161;'574;Norfolk Island;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;2 -161;'574;Norfolk Island;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0 -161;'574;Norfolk Island;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;123;145;93;93;145 -161;'574;Norfolk Island;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;133;49;49;103 -161;'574;Norfolk Island;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;98;46;46;98 -161;'574;Norfolk Island;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;119;33;33;87 -161;'574;Norfolk Island;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;98;46;46;98 -161;'574;Norfolk Island;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;119;33;33;87 -161;'574;Norfolk Island;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;98;46;46;98 -161;'574;Norfolk Island;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;119;33;33;87 -161;'574;Norfolk Island;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;98;46;46;98 -161;'574;Norfolk Island;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;119;33;33;87 -161;'574;Norfolk Island;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;2 -161;'574;Norfolk Island;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0 -161;'574;Norfolk Island;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;47;47;47;47 -161;'574;Norfolk Island;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;14;16;16;16 -161;'574;Norfolk Island;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;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;14;11;21;25;24 -161;'574;Norfolk Island;1876;Paper and paperboard;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;11;11;30;32;98;81;111 -161;'574;Norfolk 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;0;0 -161;'574;Norfolk 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;0;0 -161;'574;Norfolk Island;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;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;14;6;5;8;9 -161;'574;Norfolk Island;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;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;29;11;16;11;23 -161;'574;Norfolk Island;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;2;2;2;0;0;0;0;0 -161;'574;Norfolk Island;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;1;1;1;0;0;1;0;0 -161;'574;Norfolk Island;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;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;14;6;5;8;9 -161;'574;Norfolk Island;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;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;29;11;15;11;23 -161;'574;Norfolk Island;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;2;3;2 -161;'574;Norfolk Island;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;4;6;3;8 -161;'574;Norfolk Island;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;13;3;3;5;7 -161;'574;Norfolk Island;1615;Printing and writing papers, uncoated, woodfree;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;22;6;8;7;13 -161;'574;Norfolk Island;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0 -161;'574;Norfolk Island;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1;1;1;2 -161;'574;Norfolk Island;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;0;5;16;17;15 -161;'574;Norfolk Island;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;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;1;21;82;70;88 -161;'574;Norfolk Island;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;0 -161;'574;Norfolk Island;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;0 -161;'574;Norfolk Island;1676;Household and sanitary papers;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;0;4;14;17;15 -161;'574;Norfolk Island;1676;Household and sanitary papers;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;0;17;75;69;87 -161;'574;Norfolk Island;1676;Household and sanitary 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 -161;'574;Norfolk Island;1676;Household and sanitary 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 -161;'574;Norfolk Island;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;2;0;0 -161;'574;Norfolk Island;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;4;7;1;1 -161;'574;Norfolk Island;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -161;'574;Norfolk Island;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -161;'574;Norfolk Island;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -161;'574;Norfolk Island;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -161;'574;Norfolk Island;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -161;'574;Norfolk Island;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -161;'574;Norfolk Island;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -161;'574;Norfolk Island;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -161;'574;Norfolk Island;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -161;'574;Norfolk Island;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -161;'574;Norfolk Island;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;2;0;0 -161;'574;Norfolk Island;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;4;7;1;1 -161;'574;Norfolk Island;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -161;'574;Norfolk Island;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -161;'574;Norfolk Island;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;132;238;410;1335;1345;782;394 -161;'574;Norfolk Island;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;7;7;0;0;0;0 -161;'574;Norfolk Island;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -161;'574;Norfolk Island;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -161;'574;Norfolk Island;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -161;'574;Norfolk Island;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;0;0;31;28;0 -161;'574;Norfolk Island;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;47;303;1124;1169;196;217 -161;'574;Norfolk Island;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;176;96;159;144;533;112 -161;'574;Norfolk Island;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;7;7;0;0;0;0 -161;'574;Norfolk Island;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -161;'574;Norfolk Island;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;12;11;52;1;25;65 -161;'574;Norfolk Island;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;784;196;86;126;43;80;47 -161;'574;Norfolk Island;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -161;'574;Norfolk Island;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;149;9;11;7;2;1;1 -161;'574;Norfolk Island;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -161;'574;Norfolk Island;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;41;37;27;10;12;4 -161;'574;Norfolk Island;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;581;123;15;91;10;4;5 -161;'574;Norfolk Island;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;23;23;1;21;63;37 -154;'807;North Macedonia;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;208082.9;236324;228764;231228;334623;316826;300739 -154;'807;North Macedonia;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56626.66;67772;69608;61943;307791;102245;103333 -154;'807;North Macedonia;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22910;32701;37844;37844;62586;53532;72336;54495;44410;55981;64976;55144;55840;84661;105356;122605;112680;106426;124480;105704;109730;115892;98029;114799;107539.83;122476;117994;124988;159252;178389;151884 -154;'807;North Macedonia;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;20906;24259;24527;24527;15890;10628;9164;8323;6833;6420;7504;5783;5542;10486;20301;12998;9727;10652;13001;10251;9441;10001;9703;11328;13582.99;17213;16331;13375;21425;24833;21110 -154;'807;North Macedonia;1861;Roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;860000;777000;761000;774000;774000;699000;822000;1052000;740000;715000;812000;841000;822000;825000;634000;709000;639000;631000;597000;779000;691000;655000;850000;890000;807000;802000;759000;735000;700000;765000;698000 -154;'807;North Macedonia;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;431;5225;1300;1300;1100;1200;1100;38321;13561;13942;2545;980;796;1214;1082;933;66554;78096;46163;18883;19241;21529;77330;64820;49031;74081;49785;36651;26069;13860;6699 -154;'807;North Macedonia;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;281;87;87;87;97;73;994;417;367;134;34;33;91;105;142;4243;4228;3356;1510;1516;1514;2947;2138;2137.36;2931;2662;3368;2467;1274;1254 -154;'807;North Macedonia;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8891;3891;2000;2000;4600;2900;2900;1184;9285;7426;12782;13828;36063;10407;20000;4872;779;1347;2130;17349;10291;10621;4861;1118;560;481;430;528;330;199;3184 -154;'807;North Macedonia;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1452;861;462;462;509;395;395;194;602;471;963;1053;984;1313;1559;863;349;424;853;1354;668;713;162;97;235.78;162;180;232;124;59;253 -154;'807;North Macedonia;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46000;48000;49000;54000;54000;584000;47000;71000;46000;44000;48000;61000;81000;70000;66000;99000;52000;47000;56000;69000;64000;67000;87000;80000;61000;74000;70000;77000;102000;138000;142000 -154;'807;North Macedonia;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31912;62558;42594;28443;20293;10777;3344 -154;'807;North Macedonia;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1026.85;2080;2129;2683;1931;973;898 -154;'807;North Macedonia;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;25;2809 -154;'807;North Macedonia;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;2;144 -154;'807;North Macedonia;1863;Roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;814000;729000;712000;720000;720000;115000;775000;981000;694000;671000;764000;780000;741000;755000;568000;610000;587000;584000;541000;710000;627000;588000;763000;810000;746000;728000;689000;658000;598000;627000;556000 -154;'807;North Macedonia;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17119;11523;7191;8208;5776;3083;3355 -154;'807;North Macedonia;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1110.51;851;533;685;536;301;356 -154;'807;North Macedonia;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;560;481;430;528;330;174;375 -154;'807;North Macedonia;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;235.78;162;180;232;124;57;109 -154;'807;North Macedonia;1864;Wood fuel;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;697000;611000;610000;616000;616000;542500;699000;875000;605000;603000;688000;705000;664000;663000;479000;516000;530000;530000;476000;652000;577000;534000;723000;757000;687000;681000;649000;610000;580000;580000;544000 -154;'807;North Macedonia;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;3600;500;500;0;500;500;37316;11103;12495;990;65;32;1;3;1;43941;42988;18760;3390;2070;7979;70839;30958;15169;15613;16055;17649;11935;2176;4539 -154;'807;North Macedonia;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;175;21;21;0;21;22;910;234;249;31;3;0;0;0;1;2126;1633;774;208;83;286;2350;872;872.13;1388;1693;1914;1220;296;604 -154;'807;North Macedonia;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;138;132;2859;4446;4800;5000;2642;24;53;302;13717;9795;9928;4694;0;0;34;0;0;0;16;7 -154;'807;North Macedonia;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;4;6;93;137;145;227;127;2;1;16;995;531;508;81;0;0;5;0;0;0;2;3 -154;'807;North Macedonia;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;542000;2000;3000;4000;2000;1000;9000;12000;1000;1000;4000;7000;7000;1000;9000;11000;10000;21000;24000;14000;21000;22000;26000;49000;54000;56000 -154;'807;North Macedonia;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;6072;10038;12210;7337;720;2062 -154;'807;North Macedonia;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.26;757;1263;1466;842;127;340 -154;'807;North Macedonia;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -154;'807;North Macedonia;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -154;'807;North Macedonia;1628;Wood fuel, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;697000;611000;610000;616000;616000;500;697000;872000;601000;601000;687000;696000;652000;662000;478000;512000;523000;523000;475000;643000;566000;524000;702000;733000;673000;660000;627000;584000;531000;526000;488000 -154;'807;North Macedonia;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15092;9541;6017;5439;4598;1456;2477 -154;'807;North Macedonia;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;864.87;631;430;448;378;169;264 -154;'807;North Macedonia;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;34;0;0;0;16;7 -154;'807;North Macedonia;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;5;0;0;0;2;3 -154;'807;North Macedonia;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;3600;500;500;0;500;500;37316;11103;12495;990;65;32;1;3;1;43941;42988;18760;3390;2070;7979;70839;30958;;;;;;; -154;'807;North Macedonia;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;175;21;21;0;21;22;910;234;249;31;3;0;0;0;1;2126;1633;774;208;83;286;2350;872;;;;;;; -154;'807;North Macedonia;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;138;132;2859;4446;4800;5000;2642;24;53;302;13717;9795;9928;4694;0;;;;;;; -154;'807;North Macedonia;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;4;6;93;137;145;227;127;2;1;16;995;531;508;81;0;;;;;;; -154;'807;North Macedonia;1865;Industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;163000;166000;151000;158000;158000;156500;123000;177000;135000;112000;124000;136000;158000;162000;155000;193000;109000;101000;121000;127000;114000;121000;127000;133000;120000;121000;110000;125000;120000;185000;154000 -154;'807;North Macedonia;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;231;1625;800;800;1100;700;600;1005;2458;1447;1555;915;764;1213;1079;932;22613;35108;27403;15493;17171;13550;6491;33862;33862;58468;33730;19002;14134;11684;2160 -154;'807;North Macedonia;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;106;66;66;87;76;51;84;183;118;103;31;33;91;105;141;2117;2595;2582;1302;1433;1228;597;1266;1265.22;1543;969;1454;1247;978;650 -154;'807;North Macedonia;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8891;3891;2000;2000;4600;2900;2900;1184;9285;7288;12650;10969;31617;5607;15000;2230;755;1294;1828;3632;496;693;167;1118;560;447;430;528;330;183;3177 -154;'807;North Macedonia;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1452;861;462;462;509;395;395;194;602;467;957;960;847;1168;1332;736;347;423;837;359;137;205;81;97;235.78;157;180;232;124;57;250 -154;'807;North Macedonia;1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46000;48000;49000;54000;54000;42000;45000;68000;42000;42000;47000;52000;69000;69000;65000;95000;45000;40000;55000;60000;53000;57000;66000;56000;47000;53000;48000;51000;53000;84000;86000 -154;'807;North Macedonia;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;25;0;0;0;200;100;505;317;865;1254;915;764;868;516;0;15913;26900;19600;11200;11500;9088;3346;31835;31835;56486;32556;16233;12956;10057;1282 -154;'807;North Macedonia;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;6;0;0;0;34;9;42;25;32;57;31;33;51;32;0;1407;1843;1666;904;922;774;232;1020;1019.59;1323;866;1217;1089;846;558 -154;'807;North Macedonia;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;0;400;400;400;0;0;0;60;0;34;57;0;270;0;671;172;53;1295;400;0;102;167;159;0;0;0;0;0;25;2809 -154;'807;North Macedonia;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;157;0;63;63;38;4;4;0;7;0;4;6;0;42;55;165;37;11;423;26;0;7;81;11;0;0;0;0;0;2;144 -154;'807;North Macedonia;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;25;0;0;0;200;100;505;317;865;1254;915;764;868;516;0;15913;26900;19600;11200;11500;9088;3346;31835;31835;56486;32556;16233;12956;10057;1282 -154;'807;North Macedonia;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;6;0;0;0;34;9;42;25;32;57;31;33;51;32;0;1407;1843;1666;904;922;774;232;1020;1019.59;1323;866;1217;1089;846;558 -154;'807;North Macedonia;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;0;400;400;400;0;0;0;60;0;34;57;0;270;0;671;172;53;1295;400;0;102;167;159;0;0;0;0;0;25;2809 -154;'807;North Macedonia;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;157;0;63;63;38;4;4;0;7;0;4;6;0;42;55;165;37;11;423;26;0;7;81;11;0;0;0;0;0;2;144 -154;'807;North Macedonia;1867;Industrial roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117000;118000;102000;104000;104000;114500;78000;109000;93000;70000;77000;84000;89000;93000;90000;98000;64000;61000;66000;67000;61000;64000;61000;77000;73000;68000;62000;74000;67000;101000;68000 -154;'807;North Macedonia;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;1600;800;800;1100;500;500;500;2141;582;301;0;0;345;563;932;6700;8208;7803;4293;5671;4462;3145;2027;2027;1982;1174;2769;1178;1627;878 -154;'807;North Macedonia;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;100;66;66;87;42;42;42;158;86;46;0;0;40;73;141;710;752;916;398;511;454;365;246;245.64;220;103;237;158;132;92 -154;'807;North Macedonia;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7891;3891;1600;1600;4200;2900;2900;1184;9225;7288;12616;10912;31617;5337;15000;1559;583;1241;533;3232;496;591;0;959;560;447;430;528;330;158;368 -154;'807;North Macedonia;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1295;861;399;399;471;391;391;194;595;467;953;954;847;1126;1277;571;310;412;414;333;137;198;0;86;235.78;157;180;232;124;55;106 -154;'807;North Macedonia;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;1;0;0;0;0;0;20;0;0;1831;4319;3176;1611;120;120;120;120;279;59;59;59 -154;'807;North Macedonia;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;1;0;0;0;0;0;7;0;0;150;386;302;135;9;9.05;9;9;117;25;25;25 -154;'807;North Macedonia;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2691;2691;0;0;0;0;0;1096;0;0;0;0;0;0;0;0;0;0;0;49;18;0;0;0;109;109;109;109;109;109;120 -154;'807;North Macedonia;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;615;615;0;0;0;0;0;194;0;0;0;0;0;0;0;0;0;0;0;27;8;0;0;0;20.06;20;20;20;20;20;16 -154;'807;North Macedonia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;1600;800;800;1100;500;500;500;2139;582;300;0;0;345;563;932;6680;8208;7803;2462;1352;1286;1534;1907;1907;1862;1054;2490;1119;1568;819 -154;'807;North Macedonia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;100;66;66;87;42;42;42;157;86;45;0;0;40;73;141;703;752;916;248;125;152;230;237;236.59;211;94;120;133;107;67 -154;'807;North Macedonia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5200;1200;1600;1600;4200;2900;2900;88;9225;7288;12616;10912;31617;5337;15000;1559;583;1241;533;3183;478;591;0;959;451;338;321;419;221;49;248 -154;'807;North Macedonia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;680;246;399;399;471;391;391;0;595;467;953;954;847;1126;1277;571;310;412;414;306;129;198;0;86;215.73;137;160;212;104;35;90 -154;'807;North Macedonia;1868;Sawlogs and veneer logs;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;155000;154000;144000;149000;149000;145000;113000;164000;125000;104000;118000;126000;144000;138000;129000;154000;84000;80000;98000;108000;98000;107000;113000;114000;108000;111000;100000;114000;112000;172000;120000 -154;'807;North Macedonia;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40000;40000;44000;47000;47000;33000;40000;63000;34000;35000;43000;50000;58000;55000;43000;58000;28000;21000;34000;44000;41000;44000;53000;43000;37000;44000;39000;41000;52000;75000;58000 -154;'807;North Macedonia;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115000;114000;100000;102000;102000;112000;73000;101000;91000;69000;75000;76000;86000;83000;86000;96000;56000;59000;64000;64000;57000;63000;60000;71000;71000;67000;61000;73000;60000;97000;62000 -154;'807;North Macedonia;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2500;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 -154;'807;North Macedonia;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;4000;4000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -154;'807;North Macedonia;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;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 -154;'807;North Macedonia;1871;Other industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8000;12000;7000;9000;9000;9000;5000;8000;10000;8000;6000;10000;14000;24000;26000;39000;25000;21000;23000;19000;16000;14000;14000;19000;12000;10000;10000;11000;8000;13000;34000 -154;'807;North Macedonia;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6000;8000;5000;7000;7000;7000;1000;1000;8000;7000;4000;2000;11000;14000;22000;37000;17000;19000;21000;16000;12000;13000;13000;13000;10000;9000;9000;10000;1000;9000;28000 -154;'807;North Macedonia;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;4000;2000;2000;2000;2000;4000;7000;2000;1000;2000;8000;3000;10000;4000;2000;8000;2000;2000;3000;4000;1000;1000;6000;2000;1000;1000;1000;7000;4000;6000 -154;'807;North Macedonia;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -154;'807;North Macedonia;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5200;9100;5000;5000;5200;100;0;4;9;109;12;43;281;620;406;276;250;736;1200;2;535;381;987;757;757;822;860;506;584;778;755 -154;'807;North Macedonia;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1027;1728;753;753;1027;8;5;2;7;24;6;16;84;219;132;145;106;341;589;137;167;163;227;273;272.91;365;397;407;526;998;837 -154;'807;North Macedonia;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;2500;2500;0;41;22;14;35;51;249;2619;624;57;47;73;73;2437;2;420;909;150;0;0;0;0;1;165;41 -154;'807;North Macedonia;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;108;108;2;4;3;2;9;12;58;134;31;30;3;2;2;130;0;23;39;0;0;0;0;0;25;178;100 -154;'807;North Macedonia;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3775;3603;4110;4932;5154;5164;4029;3900;2901;2901;1700;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -154;'807;North Macedonia;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;700;700;544;154;101;308;59;182;10491;1695;2139;996;855;3676;3588;52;33;92;2377;423;425;487;136;317;181;143 -154;'807;North Macedonia;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;37;24;27;15;37;21;24;41;121;147;216;197;381;404;49;54;60;131;146.71;175;210;208;294;224;252 -154;'807;North Macedonia;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;8;30;644;2136;819;655;273;10;682;690;0;0;1;143;387;9;193;12;1;6;53 -154;'807;North Macedonia;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;3;34;94;62;48;22;2;51;51;1;1;0;7;13.32;4;7;8;8;6;23 -154;'807;North Macedonia;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -154;'807;North Macedonia;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;400;0;50;53;64;0;0;100;426;937;165;24;156;68;52;33;92;2281;288;254;437;114;108;119;119 -154;'807;North Macedonia;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;17;0;12;9;17;0;0;16;25;56;32;13;26;49;49;54;60;127;104.65;157;202;194;184;176;176 -154;'807;North Macedonia;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;100;0;10;0;8;0;0;1;20;0;0;0;0;0;1;1 -154;'807;North Macedonia;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;6;0;2;1;1;1;1;0;1;0;0;0;0;1;2;2 -154;'807;North Macedonia;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3775;3603;4110;4932;5154;5164;4029;3900;2901;2901;1700;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -154;'807;North Macedonia;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;700;300;544;104;48;244;59;182;10391;1269;1202;831;831;3520;3520;0;0;0;96;135;171;50;22;209;62;24 -154;'807;North Macedonia;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;20;24;15;6;20;21;24;25;96;91;184;184;355;355;0;0;0;4;42.05;18;8;14;110;48;76 -154;'807;North Macedonia;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;8;30;644;2136;819;555;273;0;682;682;0;0;0;123;387;9;193;12;1;5;52 -154;'807;North Macedonia;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;3;34;94;62;42;22;0;50;50;0;0;0;6;13.32;4;7;8;7;4;21 -154;'807;North Macedonia;1605;Sawdust (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;1 -154;'807;North Macedonia;1605;Sawdust (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;6 -154;'807;North Macedonia;1605;Sawdust (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;8 -154;'807;North Macedonia;1605;Sawdust (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;5 -154;'807;North Macedonia;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;7;2;4;14;54;54 -154;'807;North Macedonia;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.11;2;1;2;10;43;43 -154;'807;North Macedonia;1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5 -154;'807;North Macedonia;1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4 -154;'807;North Macedonia;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -154;'807;North Macedonia;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;501;9513;17290;30250;36835;70081;68221;77044;64771;67208;70752;44774 -154;'807;North Macedonia;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1136;1857;3654;4805;5832;12979.08;13035;14244;17348;19031;20210;16639 -154;'807;North Macedonia;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;676;1051;719;1109;292;541;936;669;243;46;247;476 -154;'807;North Macedonia;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112;188;98;150;34;100.61;186;129;69;145;83;175 -154;'807;North Macedonia;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -154;'807;North Macedonia;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;9182;16868;25190;33362;66608;66389;74808;63617;65916;69627;44608 -154;'807;North Macedonia;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1048;1782;3562;4138;5321;12467.85;12708;13837;17031;18690;19742;16558 -154;'807;North Macedonia;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;559;1012;633;1052;263;343;738;555;169;39;173;402 -154;'807;North Macedonia;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88;178;84;138;28;67.31;151;109;50;121;59;151 -154;'807;North Macedonia;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -154;'807;North Macedonia;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;433;331;422;5060;3473;3473;1832;2236;1154;1292;1125;166 -154;'807;North Macedonia;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88;75;92;667;511;511.23;327;407;317;341;468;81 -154;'807;North Macedonia;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117;39;86;57;29;198;198;114;74;7;74;74 -154;'807;North Macedonia;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;10;14;12;6;33.3;35;20;19;24;24;24 -154;'807;North Macedonia;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63000;57000;42000;40000;33500;26727;36857;36149;22950;20252;20852;27919;17949;17120;17120;9100;2000;5000;3000;8000;4000;6000;4000;4000;6000;6000;8000;7000;7000;6000;6000 -154;'807;North Macedonia;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33713;29700;26500;26500;51900;57900;74200;154366;87052;142890;131304;108176;98871;51760;53182;180677;184067;80741;65378;44634;43807;42670;44724;52992;38252;36597;34227;47834;30924;31454;31933 -154;'807;North Macedonia;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4596;5587;6227;6227;13082;13609;15285;15182;7831;11707;12673;11303;10410;11255;11175;13355;14585;11365;15313;11578;11316;11016;11477;11817;4940.91;4623;4778;12904;12391;12561;13086 -154;'807;North Macedonia;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58672;67200;63400;63400;24200;16100;17800;19195;14142;9848;8951;2015;1728;11910;10925;50384;9710;5873;8414;6079;5408;6753;5706;10718;5052;4021;6845;2752;3716;10051;8192 -154;'807;North Macedonia;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17193;21116;19293;19293;7709;5837;6010;4322;3017;2291;2716;435;458;3205;5848;3151;3586;1803;2857;2063;1486;1883;1478;2101;2061.5;1667;1517;1316;1753;3579;3220 -154;'807;North Macedonia;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15000;11000;10000;8000;6500;5975;10273;8487;5567;5617;5194;7628;5320;4190;4190;0;0;0;0;4000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000 -154;'807;North Macedonia;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31513;27400;22200;22200;45100;54100;71700;148057;82446;138293;127831;106913;97838;49230;49230;177215;179067;69372;61235;42659;42058;40966;43190;46239;31397;30332;27327;45960;28784;29516;29516 -154;'807;North Macedonia;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3701;4990;4728;4728;10334;12547;14586;14149;7083;10903;11881;11055;10208;10486;10167;12024;12982;9866;13145;10544;10399;10125;10673;10657;3763.52;3548;3406;11778;11186;11470;11880 -154;'807;North Macedonia;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8672;200;400;400;200;0;3900;4659;1565;233;298;586;568;750;1325;1414;1710;1320;626;432;1058;1255;1172;2180;352;137;95;198;502;4874;3015 -154;'807;North Macedonia;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1620;99;198;198;136;23;994;613;191;30;42;74;64;140;359;271;286;223;159;107;198;255;185;284;63.11;16;15;48;131;966;741 -154;'807;North Macedonia;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48000;46000;32000;32000;27000;20752;26584;27662;17383;14635;15658;20291;12629;12930;12930;9100;2000;5000;3000;4000;2000;4000;2000;2000;4000;4000;6000;5000;5000;4000;4000 -154;'807;North Macedonia;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2200;2300;4300;4300;6800;3800;2500;6309;4606;4597;3473;1263;1033;2530;3952;3462;5000;11369;4143;1975;1749;1704;1534;6753;6855;6265;6900;1874;2140;1938;2417 -154;'807;North Macedonia;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;895;597;1499;1499;2748;1062;699;1033;748;804;792;248;202;769;1008;1331;1603;1499;2168;1034;917;891;804;1160;1177.39;1075;1372;1126;1205;1091;1206 -154;'807;North Macedonia;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50000;67000;63000;63000;24000;16100;13900;14536;12577;9615;8653;1429;1160;11160;9600;48970;8000;4553;7788;5647;4350;5498;4534;8538;4700;3884;6750;2554;3214;5177;5177 -154;'807;North Macedonia;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15573;21017;19095;19095;7573;5814;5016;3709;2826;2261;2674;361;394;3065;5489;2880;3300;1580;2698;1956;1288;1628;1293;1817;1998.38;1651;1502;1268;1622;2613;2479 -154;'807;North Macedonia;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;0 -154;'807;North Macedonia;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;300;400;400;300;1100;1300;2706;2273;1094;912;480;826;406;954;898;1063;2529;3761;4492;4178;1247;1344;6265;6265;11160;9218;1914;3222;3732;6365 -154;'807;North Macedonia;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;292;229;541;541;267;437;414;419;333;253;236;163;281;575;922;1041;589;780;1147;1423;1518;1215;1478;1666;1666.06;2158;2015;2162;3708;4384;4019 -154;'807;North Macedonia;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3700;4300;5100;5100;200;100;100;229;36;56;0;11;733;425;221;702;447;1998;454;815;1566;317;2021;2135;1800;1669;1197;389;1700;400;1148 -154;'807;North Macedonia;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1543;1773;3237;3237;87;46;46;40;30;17;0;23;345;912;464;362;203;703;225;259;369;418;352;482;390;390;400;496;591;486;524 -154;'807;North Macedonia;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2000;2000;152545;152153;152615;274;132;32;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -154;'807;North Macedonia;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8702;13350;8400;8400;13300;18900;27200;55359;46781;61909;53300;70593;74915;88073;88761;104775;94094;70755;165051;106050;109557;121768;83535;126896;108730;109113;114294;112594;130853;128809;117646 -154;'807;North Macedonia;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2864;3802;3006;3006;5323;7916;11091;10342;9145;12962;14959;20663;22122;25330;28435;35941;34429;32417;39552;36416;37407;41341;29144;40269;34401.12;36481;36019;37890;54051;53559;50919 -154;'807;North Macedonia;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1224;424;900;900;0;0;822;355;227;576;646;1489;952;2548;5811;4749;1448;1188;2404;695;712;890;1379;1656;2056;2102;2255;521;1656;1420;3834 -154;'807;North Macedonia;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;383;153;874;874;0;76;521;152;64;311;411;831;532;802;2538;1665;879;1071;895;489;382;289;371;305;347.78;311;235;212;695;609;558 -154;'807;North Macedonia;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;545;153;615;274;132;32;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -154;'807;North Macedonia;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;600;500;500;1000;1200;2600;1771;1486;2418;1987;1305;837;2398;5911;3170;2403;795;6344;4840;4419;7382;4401;17692;6097;5609;5498;7666;7475;9347;7844 -154;'807;North Macedonia;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;155;371;303;303;597;847;1898;630;553;799;850;686;418;1120;820;1404;1723;197;3531;2674;1666;2879;2232;4154;3006;2861;2936;4580;4220;5292;5175 -154;'807;North Macedonia;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;400;37;14;35;15;153;154;466;2000;1317;244;261;613;158;10;55;70;242;83;154;249;93;182;432;733 -154;'807;North Macedonia;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;8;345;37;10;24;10;80;81;244;1419;667;121;143;291;67;6;30;28;30;28.44;60;19;72;123;198;139 -154;'807;North Macedonia;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;49 -154;'807;North Macedonia;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;55 -154;'807;North Macedonia;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6900;11500;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -154;'807;North Macedonia;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2182;3073;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -154;'807;North Macedonia;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;200;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -154;'807;North Macedonia;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;333;103;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -154;'807;North Macedonia;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;152000;152000;152000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -154;'807;North Macedonia;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6400;6400;9200;13700;18900;37486;34391;38115;37884;47274;50823;53107;55250;62745;56497;41864;122755;54787;60400;67962;58983;67315;66941;73996;77965;74033;69985;69094;72215 -154;'807;North Macedonia;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2310;2310;3676;5223;6692;7259;6672;7722;8695;12750;13551;12391;16730;19049;16898;14716;16531;15382;17325;19217;16889;17620;17796.76;19804;20095;20388;25774;25392;24727 -154;'807;North Macedonia;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;700;700;0;0;400;177;92;231;359;1204;689;1238;2194;2714;582;465;1326;516;428;724;876;766;1013;1763;837;342;1156;752;686 -154;'807;North Macedonia;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;797;797;0;52;160;60;33;135;231;671;401;239;549;753;469;763;376;402;346;208;250;197;257.38;198;163;100;413;279;260 -154;'807;North Macedonia;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 -154;'807;North Macedonia;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;900;748;0;5382;3108;0;0;6352;5414;8764;3886;10730;5245;4913;4500;3264;2327;2410;2784;2294;5246;3132;2616;2931;3516 -154;'807;North Macedonia;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;393;642;290;0;1222;1112;0;0;1582;1788;2780;1315;1321;1788;1610;1202;1066;589;621;443.94;625;710;967;1383;1549;1280 -154;'807;North Macedonia;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;42;0;128;225;0;0;616;1229;146;459;344;344;0;0;8;0;13;60;60;60;35;127;40;40 -154;'807;North Macedonia;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;25;0;71;92;0;0;187;406;45;213;139;139;0;0;1;0;5;20.61;21;21;10;66;16;16 -154;'807;North Macedonia;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 -154;'807;North Macedonia;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1502;1250;1500;1500;3100;3400;4800;15354;10904;15994;10321;22014;23255;26216;22186;30096;31308;17366;30707;41510;40238;43160;17824;39479;32908;27214;25585;27763;50777;47437;34071 -154;'807;North Macedonia;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;527;358;393;393;1050;1453;1859;2163;1920;3219;4302;7227;8153;10237;9097;12708;14493;16183;17702;16750;17214;18179;9434;17874;13154.42;13191;12278;11955;22674;21326;19737 -154;'807;North Macedonia;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;224;224;200;200;0;0;22;99;121;182;47;132;109;228;388;572;163;118;121;21;274;103;433;635;900;125;1109;51;191;196;2375 -154;'807;North Macedonia;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;50;77;77;0;16;10;30;21;81;78;80;50;132;164;200;76;26;89;20;30;50;93;73;41.36;32;32;30;93;116;143 -154;'807;North Macedonia;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 -154;'807;North Macedonia;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;600;2000;2100;2800;5118;3468;5306;5829;9114;9629;10808;7714;11831;6961;6501;22147;9920;10500;10984;10439;17410;17410;11447;9871;12621;15956;16287;9981 -154;'807;North Macedonia;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;181;181;750;843;898;721;946;1538;2465;4575;5161;6463;4637;7112;4893;4800;15033;6773;7430;7772;7390;7343;7343.39;7133;6150;6212;7770;7932;7387 -154;'807;North Macedonia;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;22;33;5;18;0;63;49;165;21;31;49;24;117;21;20;43;210;444;176;44;473;39;24;15;36 -154;'807;North Macedonia;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;10;3;5;0;51;30;113;15;23;28;24;87;20;16;30;27;34;29.67;4;17;24;18;20;45 -154;'807;North Macedonia;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 -154;'807;North Macedonia;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;500;1100;700;1300;5118;2672;4028;3234;7491;7914;11817;4802;5723;15345;3004;4102;24740;24570;25417;2705;7294;11230;12072;12758;11769;31312;27638;20920 -154;'807;North Macedonia;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117;117;300;371;522;721;511;798;1214;1814;2046;3049;1793;2137;7742;9780;1336;8626;8736;9037;1096;4545;4550.03;4891;5170;4792;13735;12123;11215 -154;'807;North Macedonia;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;33;0;40;0;55;60;41;268;92;43;93;4;0;254;54;143;78;722;64;634;12;167;179;2293 -154;'807;North Macedonia;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;10;0;3;0;20;20;15;119;41;28;2;2;0;13;19;57;31;10.69;25;14;6;75;94;55 -154;'807;North Macedonia;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 -154;'807;North Macedonia;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1002;650;400;400;0;600;700;5118;4764;6660;1258;5409;5712;3591;9670;12542;9002;7861;4458;6850;5168;6759;4680;14775;4268;3695;2956;3373;3509;3512;3170 -154;'807;North Macedonia;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;366;170;95;95;0;239;439;721;463;883;623;838;946;725;2667;3459;1858;1603;1333;1351;1048;1370;948;5986;1261;1167;958;951;1169;1271;1135 -154;'807;North Macedonia;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;224;224;200;200;0;0;0;33;116;124;47;14;0;22;99;449;71;1;0;0;0;6;80;113;2;17;2;0;0;2;46 -154;'807;North Macedonia;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;50;77;77;0;8;0;10;18;73;78;9;0;4;30;136;20;0;0;0;1;1;9;8;1;3;1;0;0;2;43 -154;'807;North Macedonia;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;600;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -154;'807;North Macedonia;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;161;188;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -154;'807;North Macedonia;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -154;'807;North Macedonia;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -154;'807;North Macedonia;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;1000;1000;3760;3154;2452;2138;2317;1945;9000;9000;2457;6500;2000;2000;11000;25000;26000;27000;30000;29000;30000;28000;22000;24668;17361;22842;22842;22842 -154;'807;North Macedonia;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1293;5807;2607;2607;307;2807;1207;3338;2526;866;779;1149;1089;1657;4774;1425;2676;3359;1783;624;870;1323;2221;7641;7657;13080;10909;4844;4643;1641;9266 -154;'807;North Macedonia;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;412;2158;2538;2538;73;1441;695;1658;1178;441;452;301;415;969;2754;676;804;787;850;155;278;313;418;1299;1311.62;2077;1589;724;1095;549;1718 -154;'807;North Macedonia;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2500;900;2288;933;450;663;6407;7713;6152;7052;6349;9982;8654;23557;26694;27765;30749;31424;36912;35852;34410;35530;22159;27471;26866;36095 -154;'807;North Macedonia;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;146;55;171;73;38;61;645;586;425;748;670;538;942;3893;3307;3831;4055;3630;4926;5453.02;4545;3850;2178;5324;5490;5382 -154;'807;North Macedonia;1878;Pulp for paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;1000;1000;1213;716;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -154;'807;North Macedonia;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;809;5707;2507;2507;207;2607;1107;3116;2477;776;538;200;532;1343;4044;538;1172;349;915;96;122;168;201;328;344;243;350;203;107;237;1528 -154;'807;North Macedonia;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;383;2140;2529;2529;64;1397;663;1632;1172;415;384;204;372;943;2686;578;659;342;716;102;152;180;225;238;250.66;209;240;183;186;255;682 -154;'807;North Macedonia;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;1;0;0;1;1;1;35;38;3;4;65;72;82;317;122;302;157;94;113;702 -154;'807;North Macedonia;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;2;0;1;4;4;3;48;49;6;6;52;79;103;186.41;100;197;153;128;143;387 -154;'807;North Macedonia;1875;Wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;213;716;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -154;'807;North Macedonia;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;809;5707;2507;2507;207;2707;1107;2916;2475;776;518;200;532;1343;4039;532;1265;343;915;96;117;130;195;124;140;100;122;90;103;100;261 -154;'807;North Macedonia;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;383;2140;2529;2529;64;1437;663;1632;1171;415;373;204;372;943;2682;552;724;329;716;102;141;152;203;168;180.6;158;156;145;175;171;249 -154;'807;North Macedonia;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;1;0;0;1;1;1;35;42;3;4;30;71;39;74;42;52;45;57;47;407 -154;'807;North Macedonia;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;2;0;1;4;4;3;60;61;6;5;38;75;79;95.93;71;87;102;117;103;223 -154;'807;North Macedonia;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -154;'807;North Macedonia;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;22;10;6;8;6;130 -154;'807;North Macedonia;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.21;17;7;5;6;4;11 -154;'807;North Macedonia;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -154;'807;North Macedonia;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -154;'807;North Macedonia;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;;;;;;; -154;'807;North Macedonia;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;7;0;0;0;0;0;0;0;0;0;9;0;0;0;0;2;5;10;;;;;;; -154;'807;North Macedonia;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;28;28;0;0;0;0;0;0;0;0;0;11;0;0;0;0;5;5;8;;;;;;; -154;'807;North Macedonia;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;27;27;0;0;0;0;0;;;;;;; -154;'807;North Macedonia;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;24;24;0;0;0;0;0;;;;;;; -154;'807;North Macedonia;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;;;;;;; -154;'807;North Macedonia;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;;;;;;; -154;'807;North Macedonia;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;31;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -154;'807;North Macedonia;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;;;;;;; -154;'807;North Macedonia;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;;;;;;; -154;'807;North Macedonia;1656;Chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;213;716;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -154;'807;North Macedonia;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;802;5700;2500;2500;200;2600;1100;2916;2475;776;518;200;532;1343;4039;521;1158;343;915;96;117;128;190;114;130;78;112;84;95;94;131 -154;'807;North Macedonia;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;381;2138;2527;2527;62;1357;604;1632;1171;415;373;204;372;943;2682;539;634;329;716;102;141;147;198;160;175.39;141;149;140;169;167;238 -154;'807;North Macedonia;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;1;0;0;1;1;1;8;11;3;4;30;71;39;74;42;52;45;57;47;407 -154;'807;North Macedonia;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;2;0;1;4;4;3;24;25;6;5;38;75;79;95.93;71;87;102;117;103;223 -154;'807;North Macedonia;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 -154;'807;North Macedonia;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;20;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;33;49;0;0;0;0;0;0 -154;'807;North Macedonia;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;283;15;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;59;74.79;0;0;0;0;0;0 -154;'807;North Macedonia;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;4;4;0;0;0;0;0;0;0;0;0;0;0;0 -154;'807;North Macedonia;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;12;12;0;0;0;0;0;0;0;0;0;0;0;0 -154;'807;North Macedonia;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 -154;'807;North Macedonia;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;700;3800;2500;2500;200;2600;400;2650;2203;561;128;200;532;818;3667;500;485;315;186;78;75;65;123;48;48;23;46;23;23;24;23 -154;'807;North Macedonia;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;359;1430;2527;2527;62;1350;247;1440;1032;293;128;204;372;549;2321;438;277;278;185;72;61;54;116;42;41.61;42;40;18;22;28;25 -154;'807;North Macedonia;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;1;0;0;0;0;0;0;2;0;0;0;22;21;30;1;1;1;1;1;350 -154;'807;North Macedonia;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;2;0;0;0;0;0;0;2;0;0;0;18;19;28.24;1;1;1;1;1;89 -154;'807;North Macedonia;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -154;'807;North Macedonia;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;55;66;61;72;70;108 -154;'807;North Macedonia;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58.98;99;109;122;147;139;213 -154;'807;North Macedonia;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;41;51;44;56;46;57 -154;'807;North Macedonia;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67.69;70;86;101;116;102;134 -154;'807;North Macedonia;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;;;;;;; -154;'807;North Macedonia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;1800;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -154;'807;North Macedonia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;658;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -154;'807;North Macedonia;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;;;;;;; -154;'807;North Macedonia;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;;;;;;; -154;'807;North Macedonia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;213;716;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -154;'807;North Macedonia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;100;0;0;0;0;100;246;272;215;390;0;0;525;372;21;673;28;729;18;42;63;67;33;;;;;;; -154;'807;North Macedonia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;50;0;0;0;7;74;177;139;122;245;0;0;394;361;101;357;51;531;30;80;93;82;59;;;;;;; -154;'807;North Macedonia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;1;1;1;4;5;3;4;30;49;18;;;;;;; -154;'807;North Macedonia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;1;4;4;3;12;11;6;5;38;57;60;;;;;;; -154;'807;North Macedonia;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 -154;'807;North Macedonia;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0;0;0;0;0;0;0;0;0;11;98;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -154;'807;North Macedonia;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;0;0;0;0;0;0;0;0;0;13;79;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -154;'807;North Macedonia;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;4;0;0;0;0;0;0;0;0;0;0;0;0 -154;'807;North Macedonia;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;12;12;0;0;0;0;0;0;0;0;0;0;0;0 -154;'807;North Macedonia;1668;Pulp from fibres other than wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;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 -154;'807;North Macedonia;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;2;0;20;0;0;0;5;17;5;6;0;0;5;38;6;204;204;143;228;113;4;137;1267 -154;'807;North Macedonia;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;0;11;0;0;0;4;39;14;13;0;0;11;28;22;70;70.05;51;84;38;11;84;433 -154;'807;North Macedonia;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;35;1;43;243;80;250;112;37;66;295 -154;'807;North Macedonia;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;1;14;4;24;90.48;29;110;51;11;40;164 -154;'807;North Macedonia;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;13;0;11;0;2;2;1;14;6;5;25;27;14;39;138;138;199;193;144;51;143;238 -154;'807;North Macedonia;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;8;0;12;0;2;3;1;13;7;8;25;33;17;37;113;113.2;89;85;129;54;142;96 -154;'807;North Macedonia;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;8;14;475 -154;'807;North Macedonia;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;11;20;371 -154;'807;North Macedonia;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2547;2438;2452;2138;2317;1945;9000;9000;2457;6500;2000;2000;11000;25000;26000;27000;30000;29000;30000;28000;22000;24668;17361;22842;22842;22842 -154;'807;North Macedonia;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;484;100;100;100;100;200;100;222;49;90;241;949;557;314;730;887;1504;3010;868;528;748;1155;2020;7313;7313;12837;10559;4641;4536;1404;7738 -154;'807;North Macedonia;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;18;9;9;9;44;32;26;6;26;68;97;43;26;68;98;145;445;134;53;126;133;193;1061;1060.97;1868;1349;541;909;294;1036 -154;'807;North Macedonia;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2500;900;2288;933;450;663;6406;7713;6152;7051;6348;9981;8619;23519;26691;27761;30684;31352;36830;35535;34288;35228;22002;27377;26753;35393 -154;'807;North Macedonia;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;146;55;171;73;38;61;643;586;424;744;666;535;894;3844;3301;3825;4003;3551;4823;5266.61;4445;3653;2025;5196;5347;4995 -154;'807;North Macedonia;1876;Paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22400;24200;34400;21000;21000;14672;13602;16535;15480;19014;18120;16180;20364;20238;20238;23003;20100;32800;39000;24000;24000;25000;30000;31000;33000;24000;28000;28000;32000;32000;31000 -154;'807;North Macedonia;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15700;20900;22900;22900;42800;33500;38900;37381;39060;43786;45871;28365;27330;56834;91540;69553;62408;60371;61721;57051;58940;61042;64752;66999;64969;69256;70839;67690;74384;78084;68164 -154;'807;North Macedonia;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13680;18916;24692;24692;42727;29944;44736;25874;25472;30204;36479;22631;22471;46179;61709;71144;57616;56304;63284;52920;55589;56605;47436;51261;49566.74;60540;55994;49846;65625;84445;63021 -154;'807;North Macedonia;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;300;200;300;300;6300;6900;7700;6932;7215;8877;7472;6128;7102;8314;14858;9955;7849;12051;4137;2526;2437;2406;4419;3917;7509;16060;17025;16350;17720;15078;17613 -154;'807;North Macedonia;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;335;356;661;661;7477;4020;2135;3440;3044;3290;3344;2781;2545;3601;9051;6209;4147;5693;4213;2486;2516;2521;3521;3376;4980.97;9948;10013;8864;12749;14319;10500 -154;'807;North Macedonia;2042;Graphic papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4400;2200;2400;1000;1000;2160;993;3211;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -154;'807;North Macedonia;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8200;12100;13300;13300;6700;16600;16000;15495;16414;17380;18485;8484;7810;22028;42678;25045;23930;23132;23525;19647;20202;20964;20472;18171;17663;18110;17776;15457;17294;17999;13841 -154;'807;North Macedonia;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9499;14258;17022;17022;5828;15353;13950;11309;11721;13151;15615;6002;5820;19028;21844;26526;23588;21707;24653;18634;19610;20152;16011;15529;15206.23;17280;15969;13120;16452;22218;15946 -154;'807;North Macedonia;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;200;300;300;300;1300;700;1866;1029;578;457;11;24;549;4136;1138;1583;2477;1429;426;223;374;526;449;634;411;647;212;1444;1144;5788 -154;'807;North Macedonia;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;335;356;661;661;661;1425;670;1507;713;323;280;17;29;479;4028;1231;1368;1575;1608;461;282;315;397;362;522.53;445;598;256;1094;1341;986 -154;'807;North Macedonia;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 -154;'807;North Macedonia;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2100;3000;3200;3200;3500;4500;5500;7070;7775;5819;5903;7473;6624;6761;5710;7707;6133;5806;4705;4505;4101;4483;4037;2697;2697;2839;2506;2208;2679;2262;1152 -154;'807;North Macedonia;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;916;1497;2835;2835;2319;2800;2927;3277;4182;3066;3488;4406;4103;4524;4227;5997;4637;3596;3475;3040;2767;3036;2197;1451;1450.63;1765;1510;1187;1662;1985;853 -154;'807;North Macedonia;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;77;60;172;37;0;4;31;33;36;18;29;9;33;14;28;12;78;67;69;57;63;167;128;143 -154;'807;North Macedonia;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;25;19;44;18;0;2;19;24;30;12;15;5;28;6;20;7;40;34.04;64;40;52;145;133;145 -154;'807;North Macedonia;1674;Printing and writing papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4400;2200;2400;1000;1000;2160;993;3211;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -154;'807;North Macedonia;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6100;9100;10100;10100;3200;12100;10500;8425;8639;11561;12582;1011;1186;15267;36968;17338;17797;17326;18820;15142;16101;16481;16435;15474;14966;15271;15270;13249;14615;15737;12689 -154;'807;North Macedonia;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8583;12761;14187;14187;3509;12553;11023;8032;7539;10085;12127;1596;1717;14504;17617;20529;18951;18111;21178;15594;16843;17116;13814;14078;13755.59;15515;14459;11933;14790;20233;15093 -154;'807;North Macedonia;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;200;300;300;300;1300;700;1789;969;406;420;11;20;518;4103;1102;1565;2448;1420;393;209;346;514;371;567;342;590;149;1277;1016;5645 -154;'807;North Macedonia;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;335;356;661;661;661;1425;670;1482;694;279;262;17;27;460;4004;1201;1356;1560;1603;433;276;295;390;322;488.49;381;558;204;949;1208;841 -154;'807;North Macedonia;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 -154;'807;North Macedonia;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;213;198;397;292;0;0;747;290;211;117;251;1052;354;320;322;522;927;419;438;400;355;874;679;379 -154;'807;North Macedonia;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;3;142;288;318;265;0;0;599;282;175;114;199;973;330;334;296;392;657;335.25;387;327;299;710;691;422 -154;'807;North Macedonia;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;3;0;0;0;15;10;51;24;7;9;0;10;30;38;88;4;20;320;31;33;0;4984 -154;'807;North Macedonia;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;0;0;0;1;0;0;0;14;22;39;36;17;19;7;6;18;23;59;9.45;25;246;34;27;0;5 -154;'807;North Macedonia;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 -154;'807;North Macedonia;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2500;2200;125;2053;3163;3843;66;87;4847;25677;6432;7322;6932;7446;6805;7653;7542;7494;8399;8399;8421;8572;7647;8044;9205;7706 -154;'807;North Macedonia;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2379;1876;143;1809;2898;4121;100;161;5487;6229;8220;8088;7617;9170;7451;8320;8283;6527;7758;7757.83;8636;8330;6827;7972;12267;8899 -154;'807;North Macedonia;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1100;400;1676;917;281;328;0;2;51;3402;635;1233;1993;988;103;21;34;20;107;212;146;99;71;299;407;318 -154;'807;North Macedonia;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1021;342;1262;631;217;188;0;1;50;3408;801;1069;1010;1169;125;38;38;26;108;222.59;128;128;90;361;602;461 -154;'807;North Macedonia;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2160;993;3211;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -154;'807;North Macedonia;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9600;8300;8087;6388;8001;8447;945;1099;9673;11001;10695;10358;10143;10322;7983;8128;8617;8419;6148;6148;6412;6298;5247;5697;5853;4604 -154;'807;North Macedonia;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10156;9144;7747;5442;6869;7741;1496;1556;8418;11106;12134;10749;10295;11035;7813;8189;8537;6895;5663;5662.51;6492;5802;4807;6108;7275;5772 -154;'807;North Macedonia;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;300;113;52;122;92;11;18;452;691;416;308;448;423;290;178;282;456;176;351;176;171;47;945;609;343 -154;'807;North Macedonia;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;397;328;220;63;61;74;17;26;396;574;361;251;533;415;301;232;239;341;155;256.46;228;184;80;561;606;375 -154;'807;North Macedonia;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18000;22000;32000;20000;20000;12512;12609;13324;15480;19014;18120;16180;20364;20238;20238;23003;20100;32800;39000;24000;24000;25000;30000;31000;33000;24000;28000;28000;32000;32000;31000 -154;'807;North Macedonia;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7500;8800;9600;9600;36100;16900;22900;21886;22646;26406;27386;19881;19520;34806;48862;44508;38478;37239;38196;37404;38738;40078;44280;48828;47306;51146;53063;52233;57090;60085;54323 -154;'807;North Macedonia;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4181;4658;7670;7670;36899;14591;30786;14565;13751;17053;20864;16629;16651;27151;39865;44618;34028;34597;38631;34286;35979;36453;31425;35732;34360.51;43260;40025;36726;49173;62227;47075 -154;'807;North Macedonia;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;6000;5600;7000;5066;6186;8299;7015;6117;7078;7765;10722;8817;6266;9574;2708;2100;2214;2032;3893;3468;6875;15649;16378;16138;16276;13934;11825 -154;'807;North Macedonia;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;6816;2595;1465;1933;2331;2967;3064;2764;2516;3122;5023;4978;2779;4118;2605;2025;2234;2206;3124;3014;4458.44;9503;9415;8608;11655;12978;9514 -154;'807;North Macedonia;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 -154;'807;North Macedonia;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1800;2000;2000;0;3000;3000;3284;2898;3959;4243;4257;3785;3734;3188;3073;2892;2506;2300;2269;2297;2468;2446;2526;2526;3402;3885;4043;4162;3505;3551 -154;'807;North Macedonia;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;880;1366;1366;0;1872;17315;1816;1650;2318;3010;3244;2879;2947;2877;3286;2900;2765;2822;2508;2780;3062;2623;2731;2731.15;4202;4402;4306;4814;5725;4910 -154;'807;North Macedonia;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;17;14;5;0;10;2;31;28;3;0;1;22;6;2;54;88;51;47;40;112;20;69;16;5 -154;'807;North Macedonia;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;0;15;13;6;0;9;3;35;38;5;0;1;62;14;4;80;111;64;62.93;59;145;23;92;18;6 -154;'807;North Macedonia;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12230;12609;13324;15480;19014;18120;16180;20364;20238;20238;23003;20100;32800;39000;24000;24000;25000;30000;31000;33000;24000;28000;28000;32000;32000;31000 -154;'807;North Macedonia;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12600;18400;16475;17570;20813;21653;14176;13817;29954;37372;33197;29422;29499;35016;34375;35572;36957;41241;45690;44157;47134;48429;47613;52442;55998;50320 -154;'807;North Macedonia;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9508;10410;9799;9264;11514;14543;9957;9832;21345;29024;32355;24364;25609;32114;28427;29661;30700;26731;30358;29281.6;35804;31935;29180;41276;52972;38538 -154;'807;North Macedonia;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4200;2200;4333;5790;8274;6968;6052;6830;7722;6850;6222;4676;6998;2681;2085;2186;1947;3798;3413;6823;15600;16257;16112;16204;13917;11819 -154;'807;North Macedonia;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1544;1093;1584;2042;2884;3011;2676;2202;3063;3589;3804;2241;3254;2529;1964;2066;1959;2970;2918;4386.47;9407;9216;8570;11538;12943;9499 -154;'807;North Macedonia;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11000;13900;19000;12000;12000;;;;;;;;;;;;;;;;;;;;;;;;;; -154;'807;North Macedonia;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7500;6900;7400;7400;36100;;;;;;;;;;;;;;;;;;;;;;;;;; -154;'807;North Macedonia;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4181;3472;5689;5689;36899;;;;;;;;;;;;;;;;;;;;;;;;;; -154;'807;North Macedonia;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6000;;;;;;;;;;;;;;;;;;;;;;;;;; -154;'807;North Macedonia;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6816;;;;;;;;;;;;;;;;;;;;;;;;;; -154;'807;North Macedonia;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2805;2704;2929;4783;5883;6179;6510;8961;8463;8463;10800;9800;11000;11000;12000;12000;12000;15000;15000;16000;7000;9000;8000;9000;9000;9000 -154;'807;North Macedonia;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;5300;4837;5301;6760;7090;292;341;10476;12146;11039;10874;11749;15034;12799;14423;16520;19579;22032;22032;22797;25139;24660;27301;31353;27000 -154;'807;North Macedonia;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1685;2337;2016;1895;2388;2984;182;235;4844;6521;6815;5623;6535;9199;6429;7626;9056;8868;10691;10691.26;13388;11292;9646;16393;23213;13703 -154;'807;North Macedonia;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3500;1200;3137;3991;6173;4881;4090;5572;5547;4410;3379;2633;3871;216;64;20;41;40;112;3710;11385;9942;11180;10153;7248;5259 -154;'807;North Macedonia;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;856;295;700;825;1386;1291;1163;1438;1473;1589;1499;880;1294;115;29;22;33;34;91;1697.8;5620;4067;4406;5865;5322;2688 -154;'807;North Macedonia;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1387;1397;1136;934;942;881;962;0;0;0;0;0;11000;14000;0;0;0;0;0;0;0;0;0;0;0;0 -154;'807;North Macedonia;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2700;4800;4391;965;4035;2957;6859;6735;10423;13622;13863;9819;9496;9400;9604;9852;9274;9581;12602;11069;12538;13273;13380;13735;13219;13300 -154;'807;North Macedonia;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1909;3353;4029;1065;3383;3646;4816;4754;9726;14000;17080;11067;11888;12164;10913;11127;10929;8572;10674;9597.32;11658;11803;11210;13536;16861;14118 -154;'807;North Macedonia;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;43;183;104;89;221;504;1122;685;469;59;313;38;187;40;65;85;91;168;93;215;67;412;1420;927 -154;'807;North Macedonia;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126;39;52;223;221;232;60;316;1044;1015;685;46;141;26;133;81;129;120;153;221.46;162;237;147;283;1524;879 -154;'807;North Macedonia;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7521;8149;9084;9763;11556;11027;8679;11348;11687;11687;12100;10100;10800;14000;12000;12000;13000;15000;16000;17000;17000;19000;20000;23000;23000;22000 -154;'807;North Macedonia;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8500;6800;5891;7423;6699;7777;5462;5774;8403;10392;7256;7473;7246;9627;11145;10378;10282;11410;10229;10229;10994;9017;8744;10264;9114;8406 -154;'807;North Macedonia;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5498;4163;3208;4772;4125;5726;4255;4316;6336;7779;7673;6848;6535;10108;10518;10265;10057;8845;8374;8373.87;10151;8146;7755;10503;10979;9585 -154;'807;North Macedonia;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;800;1153;1616;1729;1986;1741;753;1052;1753;2370;1984;2787;2366;1834;2126;1841;3670;3125;2885;4035;5970;4716;5514;5068;5461 -154;'807;North Macedonia;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;481;678;832;994;1184;1479;1453;447;545;983;1606;1315;1801;2354;1802;1962;1797;2813;2603;2414.29;3533;4810;3924;5298;5960;5814 -154;'807;North Macedonia;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;517;359;175;0;633;33;29;55;88;88;103;200;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -154;'807;North Macedonia;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1500;1356;3881;3319;3829;1563;967;652;1212;1039;1256;1008;955;827;919;881;671;827;827;805;1000;829;1142;2312;1614 -154;'807;North Macedonia;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;416;557;546;1532;1618;2187;704;527;439;724;787;826;651;643;567;643;658;446;619;619.15;607;694;569;844;1919;1132 -154;'807;North Macedonia;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;0;0;268;12;0;1;1;2;4;0;27;61;0;0;0;3;85;60;87;130;149;125;181;172 -154;'807;North Macedonia;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;81;0;0;93;9;0;1;1;2;14;0;18;34;0;1;0;3;71;52.92;92;102;93;92;137;118 -154;'807;North Macedonia;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7000;8100;13000;8000;8000;282;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -154;'807;North Macedonia;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;200;200;0;1300;1500;2127;2178;1634;1490;1448;1918;1118;8302;8238;6164;5234;880;760;869;653;593;612;623;610;749;577;486;582;452 -154;'807;North Macedonia;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;306;615;615;0;3211;3061;2950;2837;3221;3311;3428;3940;2859;7964;8977;6764;6223;3695;3351;3538;2691;2071;2643;2347.76;3254;3688;3240;3083;3530;3627 -154;'807;North Macedonia;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1400;4800;716;382;20;47;55;246;12;3844;2592;1590;2575;5;9;26;31;7;4;5;9;9;6;3;1;1 -154;'807;North Macedonia;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1046;372;334;276;77;53;79;311;24;1396;1169;538;863;14;47;164;167;43;32;9.04;37;54;15;25;17;9 -154;'807;North Macedonia;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43981.63;50920;47646;46399;107245;59982;65738 -154;'807;North Macedonia;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34616.24;40165;41438;37001;271884;58491;63926 -154;'807;North Macedonia;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3551.37;3300;2519;2656;2572;1807;1664 -154;'807;North Macedonia;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56.38;50;52;128;130;133;164 -154;'807;North Macedonia;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;663.37;661;751;1172;1095;871;749 -154;'807;North Macedonia;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.13;23;2;24;7;20;25 -154;'807;North Macedonia;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2888;2639;1768;1484;1477;936;915 -154;'807;North Macedonia;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54.24;27;50;104;123;113;139 -154;'807;North Macedonia;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4422.44;5617;4168;3804;3781;5457;6893 -154;'807;North Macedonia;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1994.96;2605;2710;2631;2881;5421;5907 -154;'807;North Macedonia;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;240.72;322;525;424;930;758;1006 -154;'807;North Macedonia;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10.94;21;21;9;67;35;33 -154;'807;North Macedonia;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6564.69;8036;8462;8904;12004;12879;12473 -154;'807;North Macedonia;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1590.02;2945;3614;1129;1367;1815;2204 -154;'807;North Macedonia;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;303;413 -154;'807;North Macedonia;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;319;340 -154;'807;North Macedonia;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;5 -154;'807;North Macedonia;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;10 -154;'807;North Macedonia;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;0 -154;'807;North Macedonia;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1 -154;'807;North Macedonia;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;0 -154;'807;North Macedonia;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;1 -154;'807;North Macedonia;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;12 -154;'807;North Macedonia;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;12 -154;'807;North Macedonia;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25157.99;29281;27723;26107;84292;35700;39849 -154;'807;North Macedonia;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30608.3;33989;34520;32406;266551;49956;54681 -154;'807;North Macedonia;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18.08;173;38;87;11;33;8 -154;'807;North Macedonia;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.45;5;1;3;4;6;11 -154;'807;North Macedonia;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4026.33;4191;4211;4417;3655;3348;3845 -154;'807;North Macedonia;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;353.18;550;520;695;884;1125;926 -154;'807;North Macedonia;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56561.44;62928;63124;59841;68126;78455;83117 -154;'807;North Macedonia;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8427.43;10394;11839;11567;14482;18921;18297 -154;'807;North Macedonia;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;132.34;155;165;110;111;244;163 -154;'807;North Macedonia;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.79;18;7;3;4;315;10 -154;'807;North Macedonia;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4663.31;6219;6141;5069;5728;8827;9205 -154;'807;North Macedonia;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;491.44;833;845;786;1068;1177;1290 -154;'807;North Macedonia;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15829.42;17376;18447;18816;20547;25864;28677 -154;'807;North Macedonia;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;853.59;1245;1756;1957;1888;3005;3256 -154;'807;North Macedonia;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25126.15;27205;26409;24260;28360;28365;30314 -154;'807;North Macedonia;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5049.04;5153;5847;6132;8642;10757;11155 -154;'807;North Macedonia;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10810.21;11973;11962;11586;13380;15155;14758 -154;'807;North Macedonia;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2028.57;3145;3384;2689;2880;3667;2586 -163;'580;Northern Mariana Islands;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2686;2449;2423;1785;1710;1861;765 -163;'580;Northern Mariana Islands;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;9;1;9;73;73 -163;'580;Northern Mariana Islands;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;62;51;51;51;51;51;51;51;51;51;51;51;51;51;51;51;51;328;210;276;302;327;494;245;334;317;650;530;495;702;329 -163;'580;Northern Mariana Islands;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;6;1;9;73;73 -163;'580;Northern Mariana Islands;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -163;'580;Northern Mariana Islands;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -163;'580;Northern Mariana Islands;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -163;'580;Northern Mariana Islands;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -163;'580;Northern Mariana Islands;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -163;'580;Northern Mariana Islands;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -163;'580;Northern Mariana Islands;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -163;'580;Northern Mariana Islands;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -163;'580;Northern Mariana Islands;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -163;'580;Northern Mariana Islands;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -163;'580;Northern Mariana Islands;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -163;'580;Northern Mariana Islands;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -163;'580;Northern Mariana Islands;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -163;'580;Northern Mariana Islands;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -163;'580;Northern Mariana Islands;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -163;'580;Northern Mariana Islands;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -163;'580;Northern Mariana Islands;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -163;'580;Northern Mariana Islands;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -163;'580;Northern Mariana Islands;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -163;'580;Northern Mariana Islands;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -163;'580;Northern Mariana Islands;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -163;'580;Northern Mariana Islands;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -163;'580;Northern Mariana Islands;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -163;'580;Northern Mariana Islands;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -163;'580;Northern Mariana Islands;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -163;'580;Northern Mariana Islands;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -163;'580;Northern Mariana Islands;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -163;'580;Northern Mariana Islands;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -163;'580;Northern Mariana Islands;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -163;'580;Northern Mariana Islands;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -163;'580;Northern Mariana Islands;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -163;'580;Northern Mariana Islands;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -163;'580;Northern Mariana Islands;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -163;'580;Northern Mariana Islands;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -163;'580;Northern Mariana Islands;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -163;'580;Northern Mariana Islands;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -163;'580;Northern Mariana 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;61;61;61 -163;'580;Northern Mariana Islands;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;2;2;2;2;2 -163;'580;Northern Mariana Islands;1620;Wood 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;61;61;61;61;61;61;61 -163;'580;Northern Mariana Islands;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;2;2;2 -163;'580;Northern Mariana Islands;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -163;'580;Northern Mariana Islands;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112;112;62;62;62;62;62;62;62;62;62;62;62;62;62;62;62;62;62;62;62;62;62;168;202;294;157;66;53;37;0;293 -163;'580;Northern Mariana Islands;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;0;14;7;10;93;79;141;64;31;28;7;0;48 -163;'580;Northern Mariana Islands;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -163;'580;Northern Mariana Islands;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -163;'580;Northern Mariana Islands;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -163;'580;Northern Mariana Islands;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112;112;62;62;62;62;62;62;62;62;62;62;62;62;62;62;62;62;62;62;62;62;62;166;202;263;154;61;53;34;0;0 -163;'580;Northern Mariana Islands;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;0;0;0;0;0;90;79;109;63;28;16;0;0;0 -163;'580;Northern Mariana Islands;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -163;'580;Northern Mariana Islands;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -163;'580;Northern Mariana Islands;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -163;'580;Northern Mariana 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;2;0;31;3;5;0;3;0;293 -163;'580;Northern Mariana 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;21;0;14;7;10;3;0;32;1;3;12;7;0;48 -163;'580;Northern Mariana Islands;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -163;'580;Northern Mariana Islands;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -163;'580;Northern Mariana Islands;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -163;'580;Northern Mariana Islands;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;3;0;0;0;0;0;0 -163;'580;Northern Mariana Islands;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;17;0;0;0;0;0;0 -163;'580;Northern Mariana Islands;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -163;'580;Northern Mariana Islands;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -163;'580;Northern Mariana Islands;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -163;'580;Northern Mariana Islands;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;11;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;425;208;197;339;328;54;1;0;321 -163;'580;Northern Mariana Islands;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;7;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;288;191;243;276;298;382;147;157;234;359;249;290;253;202 -163;'580;Northern Mariana Islands;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -163;'580;Northern Mariana Islands;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -163;'580;Northern Mariana Islands;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -163;'580;Northern Mariana Islands;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;419;202;191;333;322;53;0;0;320 -163;'580;Northern Mariana Islands;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;283;186;238;271;293;377;142;152;229;354;243;286;252;200 -163;'580;Northern Mariana Islands;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -163;'580;Northern Mariana Islands;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -163;'580;Northern Mariana Islands;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -163;'580;Northern Mariana Islands;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -163;'580;Northern Mariana Islands;1697;Particle board;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;6;6;6;6;1;1;0;1 -163;'580;Northern Mariana Islands;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;6;4;1;2 -163;'580;Northern Mariana Islands;1874;Fibreboard;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 -163;'580;Northern Mariana Islands;1874;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;0;0;0;0;0;0;0;0;0;0;0 -163;'580;Northern Mariana Islands;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;0;0;0;0;0;0;0;0;0;0;0 -163;'580;Northern Mariana Islands;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;0;0;0;0;0;0;0;0;0;0;0 -163;'580;Northern Mariana Islands;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -163;'580;Northern Mariana Islands;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -163;'580;Northern Mariana Islands;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115;23;155;357;357 -163;'580;Northern Mariana Islands;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;1;9;73;73 -163;'580;Northern Mariana Islands;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -163;'580;Northern Mariana Islands;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -163;'580;Northern Mariana Islands;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -163;'580;Northern Mariana Islands;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -163;'580;Northern Mariana Islands;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -163;'580;Northern Mariana Islands;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -163;'580;Northern Mariana Islands;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115;23;155;357;357 -163;'580;Northern Mariana Islands;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;1;9;73;73 -163;'580;Northern Mariana Islands;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;48;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;194;174;138;357;66 -163;'580;Northern Mariana Islands;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;37;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;258;251;196;447;77 -163;'580;Northern Mariana Islands;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;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;184;126;101;343;52 -163;'580;Northern Mariana Islands;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;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;224;133;112;415;44 -163;'580;Northern Mariana Islands;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49 -163;'580;Northern Mariana Islands;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36 -163;'580;Northern Mariana Islands;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;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;184;126;101;343;3 -163;'580;Northern Mariana Islands;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;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;224;133;112;415;8 -163;'580;Northern Mariana Islands;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;3;0;0 -163;'580;Northern Mariana Islands;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;7;6;0;0 -163;'580;Northern Mariana Islands;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;117;123;98;342;3 -163;'580;Northern Mariana Islands;1615;Printing and writing papers, uncoated, woodfree;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;130;126;106;412;8 -163;'580;Northern Mariana Islands;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;0;0;1;0 -163;'580;Northern Mariana Islands;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;0;0;3;0 -163;'580;Northern Mariana Islands;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;47;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;10;48;37;14;14 -163;'580;Northern Mariana Islands;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;34;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;34;118;84;32;33 -163;'580;Northern Mariana Islands;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;10;48;37;14;14 -163;'580;Northern Mariana Islands;1676;Household and sanitary papers;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;24;117;84;32;32 -163;'580;Northern Mariana Islands;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -163;'580;Northern Mariana Islands;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;1;0;0;1 -163;'580;Northern Mariana Islands;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -163;'580;Northern Mariana Islands;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -163;'580;Northern Mariana Islands;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -163;'580;Northern Mariana Islands;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -163;'580;Northern Mariana Islands;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -163;'580;Northern Mariana Islands;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;1;0;0;1 -163;'580;Northern Mariana Islands;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1549;1178;1318;659;637;553;293 -163;'580;Northern Mariana Islands;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;3;0;0;0;0 -163;'580;Northern Mariana Islands;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;97;62;55;55;39 -163;'580;Northern Mariana Islands;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;97;62;55;55;39 -163;'580;Northern Mariana Islands;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -163;'580;Northern Mariana Islands;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;59;86;13;21;27;8 -163;'580;Northern Mariana Islands;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;271;311;364;281;211;79;69 -163;'580;Northern Mariana Islands;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1147;622;714;273;309;363;137 -163;'580;Northern Mariana Islands;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;3;0;0;0;0 -163;'580;Northern Mariana Islands;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;156;57;30;41;29;40 -163;'580;Northern Mariana Islands;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;803;954;455;596;578;606;143 -163;'580;Northern Mariana Islands;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -163;'580;Northern Mariana Islands;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -163;'580;Northern Mariana Islands;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;455;799;133;207;164;210;25 -163;'580;Northern Mariana Islands;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;157;51;185;99;12;79;111 -163;'580;Northern Mariana Islands;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -163;'580;Northern Mariana Islands;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;191;104;137;290;402;317;7 -163;'580;Northern Mariana Islands;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -162;'578;Norway;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3526602.99;3683645;3535512;3429904;4314674;4132377;3374604 -162;'578;Norway;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1814100.68;2028471;1804554;1692218;2111115;2331399;2075114 -162;'578;Norway;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;51547;46558;44946;60101;71247;87139;89124;105754;116968;156655;145817;148848;202914;307808;348009;292698;319305;342018;410074;536279;484007;431031;376613;407193;435512;602401;765098;810134;672356;673593;704904;712628;626470;840241;1531590;1424104;1130134;1090034;1020608;1009705;899783;936165;1065314;1179099;1319654;1305693;1700712;1613518;1190883;1344496;1513364;1355132;1308488;1292942;1043231;1022869;1086211.82;1150065;1087545;1026742;1484710;1336780;992904 -162;'578;Norway;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;152893;144914;157545;183706;190456;186405;193778;239597;267694;299015;283935;311569;449765;722118;589325;614370;584960;626165;816930;960077;851850;760406;730224;790695;811373;924896;1135937;1393468;1565350;1599137;1522968;1454228;1257512;1407777;2337976;2087406;1655114;1815993;1806378;1626286;1623810;1563613;1669473;1820861;1895863;1953644;2051597;2077696;1654423;1845353;2040925;1702819;1633779;1643971;1374920;1364128;1470799.71;1673433;1513735;1397223;1755509;2003848;1807141 -162;'578;Norway;1861;Roundwood;5516;Production;m3;9716000;9672000;9051000;9722000;10115000;7954000;8556000;7788000;8069000;8542000;9390000;8333000;8421000;9512000;9751000;9021000;7481000;7893000;8698000;9069000;10354000;9502000;9553000;9955000;9533000;9945000;10371000;11035000;11508000;11819000;11279000;10134000;9710000;8744000;9045000;8423000;8346000;8171900;8424000;8156265;8996340;8651591;8298161;8782000;9667179;9793501;10464680;10323550;8883594;10443082;10291031;10572145;11598290;12386886;11876493;12028000;12219029;12497174;12568431;11749887;13157152;13222022;12870039 -162;'578;Norway;1861;Roundwood;5616;Import quantity;m3;1650800;1350900;1264400;1919700;2168600;2794000;2706400;2865700;2748400;3849100;2888700;1754400;1655100;1931800;2094900;1266500;961100;871500;826500;919400;1008500;737500;867700;1100900;1021800;1359000;1750700;1733600;1071200;1022535;1076663;1077898;1156043;2624900;3723000;2470000;2862700;3520000;3085000;3348000;2837000;2709000;3015586;3029673;3255722;2508257;2702937;1945622;1049561;1478800;1640757;1056002;782544;548061;469674;529967;625877;594756;560019;458925;556781;654976;376897 -162;'578;Norway;1861;Roundwood;5622;Import value;1000 USD;27224;21649;19198;31168;37512;46282;42926;41268;38814;62191;52718;32884;35727;60648;95735;53341;42566;36857;36181;45602;48856;31350;31135;37267;38580;64618;101038;100247;67977;73558;75204;82510;58752;137693;244068;159791;162644;186235;153938;147074;126833;122512;158420;180618;208908;167257;229563;187367;83602;130836;148479;83146;69475;51111;36875;39753;53603.89;59464;56380;40856;58151;90747;46310 -162;'578;Norway;1861;Roundwood;5916;Export quantity;m3;160400;123900;83100;207300;213900;186900;195800;89800;279200;163000;152100;133200;168900;165700;158200;192400;323300;228000;663200;739900;654900;551400;445300;457100;490900;547300;696800;702200;1054500;625693;707560;724121;683515;435600;436000;384000;467000;494000;583000;514400;476000;552000;399437;349302;524789;745898;952041;899307;872726;883857;962839;1627999;2646989;3305284;4018608;3559205;3569256;3550377;3664753;3581725;3964338;4359422;4110966 -162;'578;Norway;1861;Roundwood;5922;Export value;1000 USD;3157;2192;1666;3223;3933;3237;3092;1563;3279;2238;2603;2392;5809;5703;5981;7371;11593;8019;24999;32977;29113;21112;13024;14264;15946;22816;33701;35069;57801;39021;37842;40848;33223;19084;24484;21383;22755;21411;24154;20548;15346;18749;14767;14899;28660;42867;64398;66666;54570;63062;83073;128354;194761;237018;229785;193682;208426.13;238817;245487;214411;278254;316179;309446 -162;'578;Norway;1862;Roundwood, coniferous;5516;Production;m3;8584000;8412000;7808000;8509000;8816000;6906000;7543000;6845000;7182000;7673000;8449000;7429000;7687000;8780000;8997000;8347000;6884000;7269000;8015000;8344000;9498000;8569000;8625000;9009000;8491000;8919000;9309000;9924000;10451000;10722000;10220000;9113000;9026000;8166000;8476000;7836000;7955000;7637600;7802000;7601870;8242370;7849387;7449931;7991000;8889945;8063850;8900357;8744529;7290322;9020968;9056566;9300296;9751404;10544376;10610286;10726000;10863501;11163998;11280814;10477894;11766813;11917335;11374273 -162;'578;Norway;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;515001;456267;406640;341315;356637;381668;231676 -162;'578;Norway;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38863.64;38417;33377;26421;31788;40686;22237 -162;'578;Norway;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3379048;3411493;3501011;3366800;3758540;4217597;3959023 -162;'578;Norway;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;199390.64;231262;236104;203158;268170;308614;300672 -162;'578;Norway;1863;Roundwood, non-coniferous;5516;Production;m3;1132000;1260000;1243000;1213000;1299000;1048000;1013000;943000;887000;869000;941000;904000;734000;732000;754000;674000;597000;624000;683000;725000;856000;933000;928000;946000;1042000;1026000;1062000;1111000;1057000;1097000;1059000;1021000;684000;578000;569000;587000;391000;534300;622000;554395;753970;802204;848230;791000;777234;1729651;1564323;1579021;1593272;1422114;1234465;1271849;1846886;1842510;1266207;1302000;1355528;1333176;1287617;1271993;1390339;1304687;1495766 -162;'578;Norway;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110876;138489;153379;117610;200144;273308;145221 -162;'578;Norway;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14740.25;21047;23003;14435;26363;50061;24073 -162;'578;Norway;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;190208;138884;163742;214925;205798;141825;151943 -162;'578;Norway;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9035.48;7555;9383;11253;10084;7565;8774 -162;'578;Norway;1864;Wood fuel;5516;Production;m3;1628000;1628000;1596000;1555000;1507000;955000;944000;914000;838000;767000;730000;706000;542000;531000;514000;503000;496000;506000;546000;595000;766000;799000;799000;799000;877000;908000;919000;936000;918000;919000;934000;934000;457000;470000;470000;467000;299000;501800;717000;678475;1111800;1188702;1309000;1429000;1177220;2511024;2252769;2252769;2252768;2120652;1784737;1784737;2578814;2578814;1717793;1724000;1728000;1661283;1529731;1508201;1705269;1705269;1875110 -162;'578;Norway;1864;Wood fuel;5616;Import quantity;m3;29800;24300;45400;25000;15300;23500;35000;21900;31400;22000;21000;19700;16300;16500;7900;4000;4900;5800;7700;8000;2300;3300;5700;3600;4000;12600;9800;3300;3600;1600;1700;7613;4900;7800;11000;11000;14700;26000;48000;33000;65000;148000;293490;164071;111186;174976;164391;138062;116587;190726;285967;116252;121225;101186;91646;113170;112680;139936;157633;122292;207413;270608;146496 -162;'578;Norway;1864;Wood fuel;5622;Import value;1000 USD;151;158;268;241;134;241;394;253;347;284;298;310;331;357;225;90;116;158;231;346;110;133;207;111;142;305;513;262;234;85;100;309;206;541;748;698;1100;1422;2043;1264;3007;7428;21298;12010;8858;16084;16338;15667;13006;22701;34025;14045;16235;12885;11366;14011;14751.49;21129;23531;14771;27420;50047;24746 -162;'578;Norway;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;300;400;100;200;600;100;1300;300;100;500;200;1000;600;200;300;2400;300;700;971;0;600;0;0;0;25000;0;400;0;1000;1971;1653;1101;5191;2610;2305;4823;19062;24266;6145;10391;16952;31508;37484;28340;6376;16250;22073;90936;90374;135682 -162;'578;Norway;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;6;2;2;7;11;10;47;5;6;6;3;9;23;4;48;24;5;9;53;0;28;0;0;0;38;3;32;35;31;193;113;49;203;158;152;271;926;1432;272;497;686;894;1074;777.32;524;1331;791;2415;4118;8685 -162;'578;Norway;1627;Wood fuel, coniferous;5516;Production;m3;782000;776000;731000;728000;704000;329000;323000;312000;260000;238000;210000;202000;175000;172000;167000;163000;159000;161000;173000;186000;242000;248000;248000;248000;251000;252000;262000;269000;269000;262000;264000;264000;109000;117000;117000;116000;74000;129700;195000;185311;411120;441358;511000;687000;462957;849479;762112;762112;762111;772032;588963;588963;876797;876797;618042;620000;616000;586373;544816;542633;613536;613536;674810 -162;'578;Norway;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4278;5735;4944;5160;7548;8118;8636 -162;'578;Norway;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;616.61;815;920;674;1287;1752;1462 -162;'578;Norway;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19246;3317;8685;14645;83994;72369;134975 -162;'578;Norway;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;450.33;241;631;416;1778;2199;8627 -162;'578;Norway;1628;Wood fuel, non-coniferous;5516;Production;m3;846000;852000;865000;827000;803000;626000;621000;602000;578000;529000;520000;504000;367000;359000;347000;340000;337000;345000;373000;409000;524000;551000;551000;551000;626000;656000;657000;667000;649000;657000;670000;670000;348000;353000;353000;351000;225000;372100;522000;493164;700680;747344;798000;742000;714263;1661545;1490657;1490657;1490657;1348620;1195774;1195774;1702017;1702017;1099751;1104000;1112000;1074910;984915;965568;1091733;1091733;1200300 -162;'578;Norway;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108402;134201;152689;117132;199865;262490;137860 -162;'578;Norway;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14134.88;20314;22611;14097;26133;48295;23284 -162;'578;Norway;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9094;3059;7565;7428;6942;18005;707 -162;'578;Norway;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;326.99;283;700;375;637;1919;58 -162;'578;Norway;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;29800;24300;45400;25000;15300;23500;35000;21900;31400;22000;21000;19700;16300;16500;7900;4000;4900;5800;7700;8000;2300;3300;5700;3600;4000;12600;9800;3300;3600;1600;1700;7613;4900;7800;11000;11000;14700;26000;48000;33000;65000;148000;293490;164071;111186;174976;164391;138062;116587;190726;285967;116252;121225;101186;91646;113170;;;;;;; -162;'578;Norway;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;151;158;268;241;134;241;394;253;347;284;298;310;331;357;225;90;116;158;231;346;110;133;207;111;142;305;513;262;234;85;100;309;206;541;748;698;1100;1422;2043;1264;3007;7428;21298;12010;8858;16084;16338;15667;13006;22701;34025;14045;16235;12885;11366;14011;;;;;;; -162;'578;Norway;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;300;400;100;200;600;100;1300;300;100;500;200;1000;600;200;300;2400;300;700;971;0;600;0;0;0;25000;0;400;0;1000;1971;1653;1101;5191;2610;2305;4823;19062;24266;6145;10391;16952;31508;37484;;;;;;; -162;'578;Norway;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;6;2;2;7;11;10;47;5;6;6;3;9;23;4;48;24;5;9;53;0;28;0;0;0;38;3;32;35;31;193;113;49;203;158;152;271;926;1432;272;497;686;894;1074;;;;;;; -162;'578;Norway;1865;Industrial roundwood;5516;Production;m3;8088000;8044000;7455000;8167000;8608000;6999000;7612000;6874000;7231000;7775000;8660000;7627000;7879000;8981000;9237000;8518000;6985000;7387000;8152000;8474000;9588000;8703000;8754000;9156000;8656000;9037000;9452000;10099000;10590000;10900000;10345000;9200000;9253000;8274000;8575000;7956000;8047000;7670100;7707000;7477790;7884540;7462889;6989161;7353000;8489959;7282477;8211911;8070781;6630826;8322430;8506294;8787408;9019476;9808072;10158700;10304000;10491029;10835891;11038700;10241686;11451883;11516753;10994929 -162;'578;Norway;1865;Industrial roundwood;5616;Import quantity;m3;1621000;1326600;1219000;1894700;2153300;2770500;2671400;2843800;2717000;3827100;2867700;1734700;1638800;1915300;2087000;1262500;956200;865700;818800;911400;1006200;734200;862000;1097300;1017800;1346400;1740900;1730300;1067600;1020935;1074963;1070285;1151143;2617100;3712000;2459000;2848000;3494000;3037000;3315000;2772000;2561000;2722096;2865602;3144536;2333281;2538546;1807560;932974;1288074;1354790;939750;661319;446875;378028;416797;513197;454820;402386;336633;349368;384368;230401 -162;'578;Norway;1865;Industrial roundwood;5622;Import value;1000 USD;27073;21491;18930;30927;37378;46041;42532;41015;38467;61907;52420;32574;35396;60291;95510;53251;42450;36699;35950;45256;48746;31217;30928;37156;38438;64313;100525;99985;67743;73473;75104;82201;58546;137152;243320;159093;161544;184813;151895;145810;123826;115084;137122;168608;200050;151173;213225;171700;70596;108135;114454;69101;53240;38226;25509;25742;38852.39;38335;32849;26085;30731;40700;21564 -162;'578;Norway;1865;Industrial roundwood;5916;Export quantity;m3;160400;123900;83100;207300;213900;186900;195800;89800;279200;163000;152100;133200;168900;165400;157800;192300;323100;227400;663100;738600;654600;551300;444800;456900;489900;546700;696600;701900;1052100;625393;706860;723150;683515;435000;436000;384000;467000;469000;583000;514000;476000;551000;397466;347649;523688;740707;949431;897002;867903;864795;938573;1621854;2636598;3288332;3987100;3521721;3540916;3544001;3648503;3559652;3873402;4269048;3975284 -162;'578;Norway;1865;Industrial roundwood;5922;Export value;1000 USD;3157;2192;1666;3223;3933;3237;3092;1563;3279;2238;2603;2392;5809;5697;5979;7369;11586;8008;24989;32930;29108;21106;13018;14261;15937;22793;33697;35021;57777;39016;37833;40795;33223;19056;24484;21383;22755;21373;24151;20516;15311;18718;14574;14786;28611;42664;64240;66514;54299;62136;81641;128082;194264;236332;228891;192608;207648.8;238293;244156;213620;275839;312061;300761 -162;'578;Norway;1866;Industrial roundwood, coniferous;5516;Production;m3;7802000;7636000;7077000;7781000;8112000;6577000;7220000;6533000;6922000;7435000;8239000;7227000;7512000;8608000;8830000;8184000;6725000;7108000;7842000;8158000;9256000;8321000;8377000;8761000;8240000;8667000;9047000;9655000;10182000;10460000;9956000;8849000;8917000;8049000;8359000;7720000;7881000;7507900;7607000;7416559;7831250;7408029;6938931;7304000;8426988;7214371;8138245;7982417;6528211;8248936;8467603;8711333;8874607;9667579;9992244;10106000;10247501;10577625;10735998;9935261;11153277;11303799;10699463 -162;'578;Norway;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;789765;812591;657062;815143;1877000;2920000;1958000;2343000;2735000;2443000;2684000;2336000;2060000;2100504;2201778;2343675;1748649;1988269;1570072;928602;1284799;1131443;725145;626649;445425;376622;415241;510723;450532;401696;336155;349089;373550;223040 -162;'578;Norway;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55513;55294;44072;39252;98604;178397;118777;124615;134568;113492;110346;92817;84535;105440;132401;144319;103751;158463;140058;69316;106782;103681;60019;51559;37265;24587;25274;38247.03;37602;32457;25747;30501;38934;20775 -162;'578;Norway;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;617100;697160;707242;672000;423000;430000;381000;467000;459000;571000;510000;467000;546000;396426;344449;518596;729405;939936;867573;842662;843065;924695;1593632;2573206;3180179;3875051;3380870;3359802;3408176;3492326;3352155;3674546;4145228;3824048 -162;'578;Norway;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38266;36878;39584;32379;18000;24168;21197;22755;20896;23652;20231;14905;18549;14500;14562;28442;41988;63621;64504;52866;60648;80462;126393;190630;229808;223435;186065;198940.31;231021;235473;202742;266392;306415;292045 -162;'578;Norway;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;789765;812591;657062;815143;1877000;2920000;1958000;2343000;2735000;2443000;2684000;2336000;2060000;2100504;2201778;2343675;1748649;1988269;1570072;928602;1284799;1131443;725145;626649;445425;376622;415241;510723;450532;401696;336155;349089;373550;223040 -162;'578;Norway;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55513;55294;44072;39252;98604;178397;118777;124615;134568;113492;110346;92817;84535;105440;132401;144319;103751;158463;140058;69316;106782;103681;60019;51559;37265;24587;25274;38247.03;37602;32457;25747;30501;38934;20775 -162;'578;Norway;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;617100;697160;707242;672000;423000;430000;381000;467000;459000;571000;510000;467000;546000;396426;344449;518596;729405;939936;867573;842662;843065;924695;1593632;2573206;3180179;3875051;3380870;3359802;3408176;3492326;3352155;3674546;4145228;3824048 -162;'578;Norway;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38266;36878;39584;32379;18000;24168;21197;22755;20896;23652;20231;14905;18549;14500;14562;28442;41988;63621;64504;52866;60648;80462;126393;190630;229808;223435;186065;198940.31;231021;235473;202742;266392;306415;292045 -162;'578;Norway;1867;Industrial roundwood, non-coniferous;5516;Production;m3;286000;408000;378000;386000;496000;422000;392000;341000;309000;340000;421000;400000;367000;373000;407000;334000;260000;279000;310000;316000;332000;382000;377000;395000;416000;370000;405000;444000;408000;440000;389000;351000;336000;225000;216000;236000;166000;162200;100000;61231;53290;54860;50230;49000;62971;68106;73666;88364;102615;73494;38691;76075;144869;140493;166456;198000;243528;258266;302702;306425;298606;212954;295466 -162;'578;Norway;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;231170;262372;413223;336000;740100;792000;501000;505000;759000;594000;631000;436000;501000;621592;663824;800861;584632;550277;237488;4372;3275;223347;214605;34670;1450;1406;1556;2474;4288;690;478;279;10818;7361 -162;'578;Norway;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17960;19810;38129;19294;38548;64923;40316;36929;50245;38403;35464;31009;30549;31682;36207;55731;47422;54762;31642;1280;1353;10773;9082;1681;961;922;468;605.36;733;392;338;230;1766;789 -162;'578;Norway;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8293;9700;15908;11515;12000;6000;3000;0;10000;12000;4000;9000;5000;1040;3200;5092;11302;9495;29429;25241;21730;13878;28222;63392;108153;112049;140851;181114;135825;156177;207497;198856;123820;151236 -162;'578;Norway;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;750;955;1211;844;1056;316;186;0;477;499;285;406;169;74;224;169;676;619;2010;1433;1488;1179;1689;3634;6524;5456;6543;8708.49;7272;8683;10878;9447;5646;8716 -162;'578;Norway;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25276;380;80000;27000;100;0;0;404000;573000;473000;0;430;133;122069;135240;154064;59528;43;4714;558;308;308;308;113;13;116;50;26;76;26;78;31;158;2082 -162;'578;Norway;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1567;91;11554;1162;128;0;0;31598;41546;32351;112;620;188;4923;5846;7643;3461;86;562;169;337;337;337;86;11;36;18;22.13;45;65;54;51;68;114 -162;'578;Norway;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;3000;0;0;87;963;20;10672;4014;1738;2000;0;23;31;0;0;0;0;178;178;3;50;0;623;10691 -162;'578;Norway;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;9;170;0;0;30;47;5;592;240;132;190;0;8;12;0;0;0;0;219.85;224;3;30;0;15;87 -162;'578;Norway;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;205894;261992;333223;309000;740000;792000;501000;101000;186000;121000;631000;435570;500867;499523;528584;646797;525104;550234;232774;3814;2967;223039;214297;34557;1437;1290;1506;2448;4212;664;400;248;10660;5279 -162;'578;Norway;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16393;19719;26575;18132;38420;64923;40316;5331;8699;6052;35352;30389;30361;26759;30361;48088;43961;54676;31080;1111;1016;10436;8745;1595;950;886;450;583.23;688;327;284;179;1698;675 -162;'578;Norway;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8293;9700;15908;11515;12000;6000;3000;0;10000;12000;1000;9000;5000;953;2237;5072;630;5481;27691;23241;21730;13855;28191;63392;108153;112049;140851;180936;135647;156174;207447;198856;123197;140545 -162;'578;Norway;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;750;955;1211;844;1056;316;186;0;477;490;115;406;169;44;177;164;84;379;1878;1243;1488;1171;1677;3634;6524;5456;6543;8488.65;7048;8680;10848;9447;5631;8629 -162;'578;Norway;1868;Sawlogs and veneer logs;5516;Production;m3;3414000;3367000;3231000;3532000;3630000;3198000;3407000;3124000;3497000;3811000;3782000;3787000;4034000;4566000;4130000;4043000;3694000;3976000;4256000;4364000;5393000;4659000;4710000;5108000;4445000;4778000;4822000;4774000;4886000;5322000;5699000;4429000;4786000;4293000;4603000;4049000;4552000;4121000;4194000;4087889;4414280;4141679;3937908;4057000;4850010;3718939;4353094;3969046;3059594;4374668;4335640;4460219;4727267;5304675;5450778;5462000;5845518;6104268;6012323;5457864;6784369;6787510;6190854 -162;'578;Norway;1868;Sawlogs and veneer logs;5616;Import quantity;m3;56500;62000;94200;97000;134800;164500;194300;135400;137200;313600;193500;180600;181900;250500;259600;227500;250000;181000;171200;206000;196000;157800;197500;161200;125200;236600;279400;246500;1052800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -162;'578;Norway;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;1465;1277;1953;2152;2723;3266;3242;2188;2157;5271;3238;3424;4457;8247;15609;9129;10812;8987;8517;10350;10272;6453;7386;5941;5208;11800;15869;13952;64693;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -162;'578;Norway;1868;Sawlogs and veneer logs;5916;Export quantity;m3;73200;54700;49000;47400;48500;40800;35700;28500;51800;31700;32500;20400;55000;42100;13700;39600;66500;55900;229800;313000;191500;188400;177900;192400;195800;190700;237900;206400;1043700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -162;'578;Norway;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;1881;1160;1104;1115;1308;937;672;622;941;701;725;568;3283;2186;702;1798;3029;2616;11375;16551;9861;8307;6202;7978;8273;9704;14076;12337;56627;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -162;'578;Norway;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;3388000;3340000;3210000;3509000;3601000;3181000;3390000;3110000;3486000;3800000;3763000;3771000;4000000;4544000;4106000;4019000;3679000;3958000;4236000;4348000;5375000;4644000;4700000;5098000;4429000;4763000;4802000;4750000;4861000;5297000;5680000;4412000;4764000;4282000;4590000;4031000;4537000;4108200;4183000;4079114;4407150;4135067;3929876;4051000;4845253;3714601;4349485;3964845;3053928;4369439;4331405;4457890;4724563;5301879;5449951;5455000;5840214;6101667;6011062;5455563;6782832;6785461;6187995 -162;'578;Norway;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;42700;54900;77900;84800;124600;152000;186800;123900;126700;307400;189800;176200;177300;243000;254300;222800;247700;164500;166300;204200;189800;154700;189800;160200;124300;190000;202900;170000;890600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -162;'578;Norway;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;685;811;1116;1323;2122;2605;2780;1599;1742;4821;3015;3062;3960;7466;15158;8602;10539;8224;7931;10136;9511;6069;6428;5712;5023;9564;12117;10200;54872;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -162;'578;Norway;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;73200;54700;49000;47400;48500;40800;34600;27400;51700;30800;31900;19800;54700;41900;13600;39400;66200;55600;229100;312600;191300;185600;175800;187700;188100;185000;231500;200000;1034800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -162;'578;Norway;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;1881;1160;1104;1115;1308;937;661;611;911;675;695;538;3224;2146;697;1784;3020;2607;11342;16522;9855;8214;6136;7766;7942;9385;13639;11900;55994;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -162;'578;Norway;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;26000;27000;21000;23000;29000;17000;17000;14000;11000;11000;19000;16000;34000;22000;24000;24000;15000;18000;20000;16000;18000;15000;10000;10000;16000;15000;20000;24000;25000;25000;19000;17000;22000;11000;13000;18000;15000;12800;11000;8775;7130;6612;8032;6000;4757;4338;3609;4201;5666;5229;4235;2329;2704;2796;827;7000;5304;2601;1261;2301;1537;2049;2859 -162;'578;Norway;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;13800;7100;16300;12200;10200;12500;7500;11500;10500;6200;3700;4400;4600;7500;5300;4700;2300;16500;4900;1800;6200;3100;7700;1000;900;46600;76500;76500;162200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -162;'578;Norway;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;780;466;837;829;601;661;462;589;415;450;223;362;497;781;451;527;273;763;586;214;761;384;958;229;185;2236;3752;3752;9821;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -162;'578;Norway;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;;;;;;;1100;1100;100;900;600;600;300;200;100;200;300;300;700;400;200;2800;2100;4700;7700;5700;6400;6400;8900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -162;'578;Norway;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;;;;;;;11;11;30;26;30;30;59;40;5;14;9;9;33;29;6;93;66;212;331;319;437;437;633;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -162;'578;Norway;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3523600;3483000;3365849;3444590;3294770;3025198;3266000;3614991;3537808;3830043;4067429;3549470;3920893;4148931;4304531;4292209;4503397;4707922;4342000;4585766;4667201;4938570;4703112;4581652;4681721;4757147 -162;'578;Norway;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3374200;3394000;3313393;3398430;3246522;2983000;3223000;3556777;3474040;3759986;3983266;3452521;3852628;4114475;4230785;4150044;4365700;4542293;4151000;4347542;4411536;4637129;4398988;4284583;4470816;4464540 -162;'578;Norway;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;149400;89000;52456;46160;48248;42198;43000;58214;63768;70057;84163;96949;68265;34456;73746;142165;137697;165629;191000;238224;255665;301441;304124;297069;210905;292607 -162;'578;Norway;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5616;Import quantity;m3;1546600;1236700;1106800;1784300;2008900;2592900;2450500;2687400;2557400;3499100;2663900;1542700;1440600;1651100;1817000;1020100;692400;670000;636100;692400;799800;563400;632800;924000;874400;1096800;1446700;1469000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -162;'578;Norway;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5622;Import value;1000 USD;25039;19379;16377;28245;34302;42131;38544;38295;35452;56103;48769;28514;30164;51191;78862;42515;29862;26012;25471;32611;36815;23130;20824;29644;31333;50239;81623;83000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -162;'578;Norway;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5916;Export quantity;m3;49000;57000;27000;148900;139300;130300;140400;48700;214100;115600;105800;95000;88900;99900;126600;139100;248000;164700;426500;421000;452500;358800;264100;261200;290600;353200;453200;490000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -162;'578;Norway;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5922;Export value;1000 USD;507;664;300;1696;1771;1563;1578;429;1815;1036;1290;1057;1239;1640;3265;3865;7127;4306;12480;15483;17492;12284;6486;5931;7224;12615;18937;22000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -162;'578;Norway;1870;Pulpwood and particles (1961-1997);5516;Production;m3;4157000;4157000;3817000;4195000;4569000;3559000;3947000;3502000;3450000;3739000;4688000;3667000;3665000;4317000;5015000;4385000;3212000;3333000;3812000;4030000;3855000;3755000;3755000;3759000;3981000;4030000;4402000;5100000;5484000;5364000;4436000;4561000;4257000;3771000;3762000;3697000;3495000;;;;;;;;;;;;;;;;;;;;;;;;;; -162;'578;Norway;1870;Pulpwood and particles (1961-1997);5616;Import quantity;m3;1546600;1236700;1106800;1784300;2008900;2592900;2450500;2687400;2557400;3499100;2663900;1542700;1440600;1651100;1817000;1020100;692400;670000;636100;692400;799800;563400;632800;924000;874400;1096800;1446700;1469000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -162;'578;Norway;1870;Pulpwood and particles (1961-1997);5622;Import value;1000 USD;25039;19379;16377;28245;34302;42131;38544;38295;35452;56103;48769;28514;30164;51191;78862;42515;29862;26012;25471;32611;36815;23130;20824;29644;31333;50239;81623;83000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -162;'578;Norway;1870;Pulpwood and particles (1961-1997);5916;Export quantity;m3;49000;57000;27000;148900;139300;130300;140400;48700;214100;115600;105800;95000;88900;99900;126600;139100;248000;164700;426500;421000;452500;358800;264100;261200;290600;353200;453200;490000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -162;'578;Norway;1870;Pulpwood and particles (1961-1997);5922;Export value;1000 USD;507;664;300;1696;1771;1563;1578;429;1815;1036;1290;1057;1239;1640;3265;3865;7127;4306;12480;15483;17492;12284;6486;5931;7224;12615;18937;22000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -162;'578;Norway;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;4003000;3897000;3504000;3879000;4150000;3186000;3605000;3213000;3185000;3461000;4329000;3317000;3358000;3980000;4646000;4089000;2980000;3085000;3535000;3743000;3556000;3403000;3403000;3389000;3596000;3695000;4037000;4700000;5121000;4969000;4086000;4247000;3963000;3577000;3579000;3499000;3344000;;;;;;;;;;;;;;;;;;;;;;;;;; -162;'578;Norway;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;154000;260000;313000;316000;419000;373000;342000;289000;265000;278000;359000;350000;307000;337000;369000;296000;232000;248000;277000;287000;299000;352000;352000;370000;385000;335000;365000;400000;363000;395000;350000;314000;294000;194000;183000;198000;151000;;;;;;;;;;;;;;;;;;;;;;;;;; -162;'578;Norway;1871;Other industrial roundwood;5516;Production;m3;517000;520000;407000;440000;409000;242000;258000;248000;284000;225000;190000;173000;180000;98000;92000;90000;79000;78000;84000;80000;340000;289000;289000;289000;230000;229000;228000;225000;220000;214000;210000;210000;210000;210000;210000;210000;0;25500;30000;24052;25670;26440;26055;30000;24958;25730;28774;34306;21762;26869;21723;22658;0;0;0;500000;59745;64422;87807;80710;85862;47522;46928 -162;'578;Norway;1871;Other industrial roundwood;5616;Import quantity;m3;17900;27900;18000;13400;9600;13100;26600;21000;22400;14400;10300;11400;16300;13700;10400;14900;13800;14700;11500;13000;10400;13000;31700;12100;18200;13000;14800;14800;14800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -162;'578;Norway;1871;Other industrial roundwood;5622;Import value;1000 USD;569;835;600;530;353;644;746;532;858;533;413;636;775;853;1039;1607;1776;1700;1962;2295;1659;1634;2718;1571;1897;2274;3033;3033;3050;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -162;'578;Norway;1871;Other industrial roundwood;5916;Export quantity;m3;38200;12200;7100;11000;26100;15800;19700;12600;13300;15700;13800;17800;25000;23400;17500;13600;8600;6800;6800;4600;10600;4100;2800;3300;3500;2800;5500;5500;8400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -162;'578;Norway;1871;Other industrial roundwood;5922;Export value;1000 USD;769;368;262;412;854;737;842;512;523;501;588;767;1287;1871;2012;1706;1430;1086;1134;896;1755;515;330;352;440;474;684;684;1150;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -162;'578;Norway;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;411000;399000;363000;393000;361000;210000;225000;210000;251000;174000;147000;139000;154000;84000;78000;76000;66000;65000;71000;67000;325000;274000;274000;274000;215000;209000;208000;205000;200000;194000;190000;190000;190000;190000;190000;190000;0;25500;30000;24052;25670;26440;26055;30000;24958;25730;28774;34306;21762;26869;21723;22658;0;0;0;500000;59745;64422;87807;80710;85862;47522;46928 -162;'578;Norway;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;106000;121000;44000;47000;48000;32000;33000;38000;33000;51000;43000;34000;26000;14000;14000;14000;13000;13000;13000;13000;15000;15000;15000;15000;15000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;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 -162;'578;Norway;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;17900;27900;18000;13400;9600;13100;26600;21000;22400;14400;10300;11400;16300;13700;10400;14900;13800;14700;11500;13000;10400;13000;31700;12100;18200;13000;14800;14800;14800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -162;'578;Norway;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;569;835;600;530;353;644;746;532;858;533;413;636;775;853;1039;1607;1776;1700;1962;2295;1659;1634;2718;1571;1897;2274;3033;3033;3050;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -162;'578;Norway;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;38200;12200;7100;11000;26100;15800;19700;12600;13300;15700;13800;17800;25000;23400;17500;13600;8600;6800;6800;4600;10600;4100;2800;3300;3500;2800;5500;5500;8400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -162;'578;Norway;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;769;368;262;412;854;737;842;512;523;501;588;767;1287;1871;2012;1706;1430;1086;1134;896;1755;515;330;352;440;474;684;684;1150;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -162;'578;Norway;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -162;'578;Norway;1630;Wood charcoal;5610;Import quantity;t;1100;1600;2200;2500;2800;3700;4600;3700;3200;3900;2000;800;400;700;800;3300;4900;4600;7600;15400;10900;8000;8800;10600;17500;16400;6700;1400;22000;27500;20400;32876;40995;56000;64000;51000;66600;92000;53000;43000;71000;45000;40630;33646;77098;28315;26226;38012;30164;30388;39779;33760;38437;39997;45015;38250;39040;41964;40050;44917;38920;52472;54345 -162;'578;Norway;1630;Wood charcoal;5622;Import value;1000 USD;89;132;187;213;234;296;352;307;285;340;184;126;104;179;205;444;975;863;1609;3385;2705;1701;1910;2287;3893;3641;1967;3295;5466;7179;5677;8769;7727;10325;12947;10699;13718;17052;10790;9303;17252;11065;11729;11500;26452;12685;11843;19547;15285;17672;22882;22827;25252;26265;28027;22865;23126.83;25247;26937;29031;30063;44245;52890 -162;'578;Norway;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;200;300;200;100;200;200;200;1000;200;300;200;200;100;200;700;1000;800;5200;2400;1300;5799;1457;100;0;1700;3000;5000;0;3000;4000;0;3030;3346;3867;1060;1932;1639;1453;2547;2919;827;968;1638;1533;2122;3456;3333;2324;4229;677;1141;6461 -162;'578;Norway;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;40;76;81;50;72;72;72;306;197;131;69;88;61;43;119;188;129;869;272;130;936;190;30;0;310;241;372;37;276;402;60;374;424;916;168;272;390;260;422;578;210;274;381;318;415;700.78;565;394;1484;405;851;7259 -162;'578;Norway;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2692000;2692000;2692000;2692000;2692000;2692000;2692000;2692000;1732000;126000;52673;153673;242000;2064000;2070000;2070000;2070000;2070000;2036000;2012000;2441707;2404929;2183146;2713748;2715004;2476341 -162;'578;Norway;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;857000;741000;828000;1128000;1135000;1240022;1593991;1498671;1053376;1240810;1483087;1212487;1649700;1329592;786968;463794;702528;879749;1111967;649981;711331;780679;732694;611845;561824;639587 -162;'578;Norway;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29545;23790;20921;26586;26980;36120;53089;52070;36884;58301;103451;74890;99045;99366;50668;32234;39121;23720;28273;28024.04;38535;44005;36839;35128;32770;39690 -162;'578;Norway;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;181000;201000;192000;173000;262000;320983;206551;208636;417513;238255;341507;485503;604196;777132;406601;467671;684493;587510;642707;876003;1170966;943201;755600;1937041;1788233;2369726 -162;'578;Norway;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4016;3786;3498;3674;5018;4425;4862;6793;12079;7058;8678;10978;13408;14629;20888;22455;30779;22186;22270;24913.42;35282;34225;33113;38712;36506;72207 -162;'578;Norway;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1606000;1606000;1606000;1606000;1606000;1606000;1606000;1606000;1606000;0;0;0;0;330000;330000;330000;330000;1130000;1291000;1308000;1587110;1563204;1419045;1763936;1764753;1609622 -162;'578;Norway;1619;Wood chips and particles;5616;Import quantity;m3;;;;4000;4000;51700;62400;104800;105800;144400;247100;294400;311000;374500;304800;242000;183700;233000;210900;247600;341800;264200;349400;563000;451600;634900;697000;572300;331400;267600;193500;198000;248700;324900;381000;478000;377600;577000;475000;446000;790000;854000;889568;1121505;1117727;802726;980580;1227002;974037;1394592;1074492;657428;315036;365511;274749;314967;360093;394225;292073;268486;244454;227167;283648 -162;'578;Norway;1619;Wood chips and particles;5622;Import value;1000 USD;;;;45;45;746;893;1435;1512;2287;4366;5020;5964;11389;11888;9696;7492;8857;8653;12249;15744;11296;11040;18155;16365;32156;40684;33922;16766;14259;10463;10943;8952;13115;21007;26695;16192;23582;18325;15480;21014;21443;26470;40593;42812;30216;45410;91175;66523;81295;81616;43228;22320;25474;12820;12813;14816.43;20902;19075;13709;16025;16165;20006 -162;'578;Norway;1619;Wood chips and particles;5916;Export quantity;m3;;;;80000;136700;56000;68600;64600;40800;88700;57000;25800;26700;19500;57700;35900;125000;131800;224700;348600;176500;162000;145500;88900;64600;59500;81300;112200;66500;78900;110000;75457;53000;57400;75000;66000;129000;139000;112000;101000;115000;165000;153379;113016;100235;41292;36943;145465;104425;107479;67963;122601;142671;374493;434510;488707;644920;824342;603686;363415;398041;396233;731697 -162;'578;Norway;1619;Wood chips and particles;5922;Export value;1000 USD;;;;400;717;869;852;723;419;983;564;341;370;327;880;387;1453;1468;3608;6027;7174;4273;3183;2457;1939;2225;3660;2867;3389;3634;5262;3801;1796;1993;3159;2636;2825;2943;2838;2263;2210;3222;2767;2530;2131;1128;445;3906;5377;5378;4065;8094;7820;16814;15318;15340;14514.11;19683;18946;15464;19818;17051;27913 -162;'578;Norway;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2500000;2700000;1000000;1086000;1086000;1086000;1086000;1086000;1086000;1086000;1086000;126000;126000;52673;153673;242000;1734000;1740000;1740000;1740000;940000;745000;704000;854597;841725;764101;949812;950251;866719 -162;'578;Norway;1620;Wood residues;5616;Import quantity;m3;;;;21000;31700;21600;29600;42600;58600;128500;108300;88700;112600;137100;163400;125000;165800;152600;253000;210600;149100;300000;202700;198300;160700;185200;220900;157700;134900;154900;74700;148400;133600;128100;139000;186000;258400;280000;266000;382000;338000;281000;350454;472486;380944;250650;260230;256085;238450;255108;255100;129540;148758;337017;605000;797000;289888;317106;488606;464208;367391;334657;355939 -162;'578;Norway;1620;Wood residues;5622;Import value;1000 USD;;;;247;373;286;371;461;603;1218;864;907;1322;2260;2768;2019;2074;1788;3766;4558;3201;7253;3838;3877;4232;5089;6631;3716;3697;4508;2415;3555;2404;3199;3283;4652;5279;5963;5465;5441;5572;5537;9650;12496;9258;6668;12891;12276;8367;17750;17750;7440;9914;13647;10900;15460;13207.61;17633;24930;23130;19103;16605;19684 -162;'578;Norway;1620;Wood residues;5916;Export quantity;m3;;;;38500;43500;39000;28700;26500;28300;23200;34500;10600;2000;10300;81000;204500;212800;112400;122500;116100;123700;75200;88500;102100;90500;178900;118500;92300;90800;81200;71500;44900;21300;46300;72000;80000;61800;42000;89000;91000;58000;97000;167604;93535;108401;376221;201312;196042;381078;496717;709169;284000;325000;310000;153000;154000;231083;346624;339515;392185;1539000;1392000;1638029 -162;'578;Norway;1620;Wood residues;5922;Export value;1000 USD;;;;55;49;40;37;38;39;33;50;20;7;58;621;1390;1712;806;824;1101;1109;522;527;749;528;1323;1198;1165;892;906;899;603;388;608;1895;2172;1279;1073;948;1235;1464;1796;1658;2332;4662;10951;6613;4772;5601;8030;10564;12794;14635;13965;6868;6930;10399.3;15599;15279;17649;18894;19455;44294 -162;'578;Norway;1605;Sawdust (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;312063;279901 -162;'578;Norway;1605;Sawdust (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15307;17861 -162;'578;Norway;1605;Sawdust (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;221876;166258 -162;'578;Norway;1605;Sawdust (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6291;11485 -162;'578;Norway;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;756000;756000;756000;818000;818000;801000;805000 -162;'578;Norway;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -162;'578;Norway;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -162;'578;Norway;1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;520578;520578;520578;520578;520578;330661;490762 -162;'578;Norway;1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31234.68;24467;26815;26815;26815;13071;32809 -162;'578;Norway;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78354;87300;94900;95274;95292;95768;95768;95768;95768;188400;188400;188400 -162;'578;Norway;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49356;61771;74903;36040;32400;61243;64977;142352;73507;130294;144359;79015 -162;'578;Norway;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12103;14411;7436;7746;6544;9110.09;12751;16049;8231;15334;15441;18472 -162;'578;Norway;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43979;24246;40252;66794;102976;127599;68596;65634;66284;107972;97625;78258 -162;'578;Norway;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5704;3574;8376;13386;11672;6304.93;6219;4456;8581;9065;14155;18208 -162;'578;Norway;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46695;48900;56500;56874;56892;57368;57368;57368;57368;150000;150000;150000 -162;'578;Norway;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39562;53391;74903;29000;26500;46581;52639;101716;37012;88124;103263;69654 -162;'578;Norway;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9779;12039;7436;5825;5069;5514.19;9292;12232;4889;11215;11649;15078 -162;'578;Norway;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43979;24246;17352;29294;65076;35337;24217;17707;34676;65962;79195;66780 -162;'578;Norway;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5704;3574;4188;6518;4742;2924.03;3909;1961;6795;7344;12826;16685 -162;'578;Norway;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31659;38400;38400;38400;38400;38400;38400;38400;38400;38400;38400;38400 -162;'578;Norway;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9794;8380;0;7040;5900;14662;12338;40636;36495;42170;41096;9361 -162;'578;Norway;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2324;2372;0;1921;1475;3595.91;3459;3817;3342;4119;3792;3394 -162;'578;Norway;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;22900;37500;37900;92262;44379;47927;31608;42010;18430;11478 -162;'578;Norway;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;4188;6868;6930;3380.9;2310;2495;1786;1721;1329;1523 -162;'578;Norway;1872;Sawnwood;5516;Production;m3;1588000;1579000;1518000;1678000;1897000;1658300;1825300;1756300;1919300;1993000;1984000;2027000;2361000;2288000;2084300;2020300;2021400;2092800;2356800;2462800;2461800;2261800;2311800;2363800;2229800;2259800;2361800;2386800;2491800;2412800;2261900;2361900;2315000;2415000;2210000;2420000;2520000;2524700;2336000;2280000;2253000;2225000;2186000;2230000;2326000;2389000;2402000;2228000;1850000;2118000;2271000;2289404;2206000;2407000;2444000;2533000;2655000;2675122;2658000;2683000;2808777;2704617;2489505 -162;'578;Norway;1872;Sawnwood;5616;Import quantity;m3;240400;254900;212700;202800;213500;279800;311900;300000;309800;375900;358400;329600;261200;260000;284000;323200;426900;417100;385900;424400;454300;546900;520500;490600;635100;787300;858600;682600;492100;437500;422400;447100;524600;777600;683000;799000;1028000;971000;839000;945000;985000;931000;813779;876653;1042032;1035435;1172610;935678;910609;947956;1002573;1063371;1055392;1009459;1019739;1019635;1035032;960515;994169;1043240;1107992;864763;791237 -162;'578;Norway;1872;Sawnwood;5622;Import value;1000 USD;13982;14169;13406;13272;15237;18779;20282;19868;21706;27583;26533;27264;33782;46697;51540;58469;83356;85610;88479;124906;111512;113123;103327;99020;118557;174411;224104;200771;155207;107557;145682;151587;140521;233792;247518;260037;307893;262723;225707;238562;222520;227557;246598;278514;331093;345782;506861;396292;297626;357089;376728;384704;370168;386285;322154;328354;350607.66;347511;343480;348992;621934;452187;272588 -162;'578;Norway;1872;Sawnwood;5916;Export quantity;m3;63600;58700;109900;171900;120900;64400;56000;105700;122100;96400;115100;153400;466400;430300;232800;441600;236300;298100;465200;429300;247400;361100;446900;457800;313900;293400;275000;419700;690200;634100;644200;810600;871900;777900;713000;709000;704000;692000;763000;656270;580590;619000;558995;481224;442081;473004;387401;416341;457633;484528;467806;494052;515575;516945;565522;600377;653562;681066;718688;860385;703129;869901;929406 -162;'578;Norway;1872;Sawnwood;5922;Export value;1000 USD;3051;2593;4698;8215;6001;3240;2913;4972;6217;5460;7186;10397;43229;57113;29995;52479;35043;41327;73730;82759;42872;44861;56146;57016;32655;40332;46608;65276;133767;107012;144829;177129;154482;164745;178811;147339;163058;127356;136877;103011;87901;100596;107542;101674;94437;112736;122519;105705;98622;117270;121619;122851;137176;137179;115141;129138;142908.31;170545;152061;168017;235415;253390;211805 -162;'578;Norway;1632;Sawnwood, coniferous;5516;Production;m3;1553500;1548500;1492500;1651000;1855000;1616650;1783650;1732650;1895650;1946000;1932500;1976000;2306000;2267000;2068650;2008650;2005700;2086900;2350900;2450900;2450900;2250900;2300900;2350900;2220900;2250900;2350900;2375900;2480900;2400900;2250000;2350000;2300000;2400000;2205000;2400000;2500000;2524700;2336000;2267000;2240000;2200000;2160000;2203000;2300000;2361000;2374000;2200000;1850000;2115000;2271000;2281000;2206000;2407000;2444000;2533000;2655000;2675122;2658000;2683000;2808777;2704617;2489505 -162;'578;Norway;1632;Sawnwood, coniferous;5616;Import quantity;m3;188950;207450;154100;142900;159750;221050;254200;228400;248200;306200;296200;271000;188150;173500;226700;249550;357500;360600;330250;363050;414000;508350;483200;452100;590900;742650;810550;640450;456900;400800;390800;411300;486900;728700;626000;745000;958000;918000;775000;879000;908000;865000;755748;829457;986074;983137;1135167;900798;868091;918672;904196;980939;963292;970393;976404;991164;1006828;933642;968933;1021663;1080835;835058;761684 -162;'578;Norway;1632;Sawnwood, coniferous;5622;Import value;1000 USD;8303;9066;6883;6404;8583;11549;12897;11582;13460;17407;17506;17768;19050;27553;34512;39230;60694;63796;63576;94996;93983;96223;88499;83353;100324;152903;201509;180196;135413;91294;123581;125810;114788;198859;200726;216310;253414;221880;188624;192003;178356;189315;204609;238811;281831;298469;465349;358232;272991;333654;348417;353523;345310;359596;296419;304382;321190.17;315778;313528;319992;577739;412456;248146 -162;'578;Norway;1632;Sawnwood, coniferous;5916;Export quantity;m3;63150;58500;109800;171800;120800;64200;55800;104900;122000;95700;114350;153100;465800;429600;232350;441100;236100;298000;464700;428500;247000;360900;446600;455900;311250;287050;271400;398450;686450;631700;643200;808900;870300;776000;710000;705000;700000;691000;755000;653000;577000;614000;557522;479102;440976;471179;385688;413975;455233;483330;466569;492832;513789;515759;561991;598509;646159;675162;708242;853770;695720;865247;924340 -162;'578;Norway;1632;Sawnwood, coniferous;5922;Export value;1000 USD;3017;2569;4688;8204;5987;3220;2890;4887;6209;5423;7150;10352;43155;56941;29878;52387;35019;41249;73618;82579;42764;44824;56111;56889;32523;40104;46477;64663;133335;106610;144518;176636;153782;163984;178337;146316;160388;126898;136213;102360;86457;97508;106524;100764;93539;111655;121054;103474;96351;116143;120541;120949;134039;135665;113784;127099;139763.59;166764;145510;164903;229860;251534;210262 -162;'578;Norway;1633;Sawnwood, non-coniferous;5516;Production;m3;34500;30500;25500;27000;42000;41650;41650;23650;23650;47000;51500;51000;55000;21000;15650;11650;15700;5900;5900;11900;10900;10900;10900;12900;8900;8900;10900;10900;10900;11900;11900;11900;15000;15000;5000;20000;20000;0;0;13000;13000;25000;26000;27000;26000;28000;28000;28000;0;3000;0;8404;0;0;0;0;0;0;0;0;0;0;0 -162;'578;Norway;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;51450;47450;58600;59900;53750;58750;57700;71600;61600;69700;62200;58600;73050;86500;57300;73650;69400;56500;55650;61350;40300;38550;37300;38500;44200;44650;48050;42150;35200;36700;31600;35800;37700;48900;57000;54000;70000;53000;64000;66000;77000;66000;58031;47196;55958;52298;37443;34880;42518;29284;98377;82432;92100;39066;43335;28471;28204;26873;25236;21577;27157;29705;29553 -162;'578;Norway;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;5679;5103;6523;6868;6654;7230;7385;8286;8246;10176;9027;9496;14732;19144;17028;19239;22662;21814;24903;29910;17529;16900;14828;15667;18233;21508;22595;20575;19794;16263;22101;25777;25733;34933;46792;43727;54479;40843;37083;46559;44164;38242;41989;39703;49262;47313;41512;38060;24635;23435;28311;31181;24858;26689;25735;23972;29417.49;31733;29952;29000;44195;39731;24442 -162;'578;Norway;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;450;200;100;100;100;200;200;800;100;700;750;300;600;700;450;500;200;100;500;800;400;200;300;1900;2650;6350;3600;21250;3750;2400;1000;1700;1600;1900;3000;4000;4000;1000;8000;3270;3590;5000;1473;2122;1105;1825;1713;2366;2400;1198;1237;1220;1786;1186;3531;1868;7403;5904;10446;6615;7409;4654;5066 -162;'578;Norway;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;34;24;10;11;14;20;23;85;8;37;36;45;74;172;117;92;24;78;112;180;108;37;35;127;132;228;131;613;432;402;311;493;700;761;474;1023;2670;458;664;651;1444;3088;1018;910;898;1081;1465;2231;2271;1127;1078;1902;3137;1514;1357;2039;3144.73;3781;6551;3114;5555;1856;1543 -162;'578;Norway;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 -162;'578;Norway;1634;Veneer sheets;5616;Import quantity;m3;4900;4600;5200;5500;6000;6700;7400;7900;9700;11000;9600;10200;13200;11500;9700;11600;11600;18500;15800;14300;14700;14800;15400;12300;15200;15300;13400;13400;17100;14100;13800;16200;17100;16500;16000;13000;17700;8000;8000;7000;25000;8000;7752;10710;13930;9047;9081;7628;4127;4634;4154;3922;4459;3829;3471;5368;4888;5072;4709;4963;6011;11282;45278 -162;'578;Norway;1634;Veneer sheets;5622;Import value;1000 USD;2886;2770;3276;3694;4454;4916;5519;5732;7129;8048;7261;8775;14267;14215;11098;12892;13663;12857;13741;16692;13614;14940;9040;8834;10364;12536;12244;12244;9059;8607;11825;13595;14511;14310;15744;14730;14130;14868;12516;9971;9986;10494;12096;15116;17435;15381;17098;15478;9250;9275;8249;7436;8240;6854;5528;4552;4690.06;5571;4792;5796;8268;9647;7647 -162;'578;Norway;1634;Veneer sheets;5916;Export quantity;m3;100;200;100;100;100;100;100;100;200;400;300;700;700;600;500;1000;800;1600;1100;600;1100;500;300;300;400;300;400;400;600;1700;500;1128;800;3400;3000;800;500;0;0;0;0;0;309;352;190;345;1052;595;118;223;154;80;75;41;21;24;674;746;537;135;721;52;141 -162;'578;Norway;1634;Veneer sheets;5922;Export value;1000 USD;36;65;55;58;57;89;52;57;182;227;168;466;639;650;519;991;960;1132;1098;613;1100;379;176;207;267;262;507;507;439;248;532;553;402;587;158;450;295;659;404;367;217;194;459;817;579;785;2319;1233;323;383;368;210;171;110;64;50;93.48;176;138;187;64;57;178 -162;'578;Norway;1873;Wood-based panels;5516;Production;m3;198100;219400;231800;261600;284400;432000;465400;504600;529700;515700;554900;641100;728000;716000;575000;616000;544000;562000;571000;620000;574000;614000;629000;651000;668000;681000;680000;644000;611000;658000;573000;559000;501000;570000;560000;544000;531000;576600;511000;535000;528000;476140;461000;589000;583000;620000;585000;498237;486467;566504;520028;484400;380820;438000;447000;436000;448000;458000;424000;458000;498947;453753;374604 -162;'578;Norway;1873;Wood-based panels;5616;Import quantity;m3;10500;14500;16100;19600;19000;23800;32000;34400;42100;59200;67800;85300;97200;97200;100400;126200;141860;158300;153300;154300;155700;146500;141200;153500;166200;189900;178800;152900;131200;129300;114600;115438;119172;138000;143000;157000;207700;160000;170650;209861;175980;190631;205586;236692;258829;253074;350562;333984;303763;357355;363216;325388;407703;408767;400488;293051;433742;564036;482505;472521;538566;466195;420613 -162;'578;Norway;1873;Wood-based panels;5622;Import value;1000 USD;1572;1883;2046;2626;2468;3180;4401;4720;6097;8620;10043;13310;20352;25963;24716;32191;42551;43489;50297;58728;52945;48739;44185;44916;45320;67419;85793;89993;61909;55201;64339;70908;60257;68145;93013;102494;111287;104633;99624;104824;98425;110034;132170;156568;177601;218132;282301;300383;220488;241398;274946;282369;286004;294698;246112;233306;260312.11;284319;264544;256779;338567;302751;238472 -162;'578;Norway;1873;Wood-based panels;5916;Export quantity;m3;61600;62100;66500;70500;94400;101100;156300;172500;176200;158400;173600;230900;305300;241400;180900;191900;126100;118500;114700;123800;120700;120700;132000;149900;140300;140900;140900;101800;147000;170200;160800;158848;226963;201600;226000;233000;257300;269070;286050;340773;289690;251020;252160;265938;253473;192147;243844;216313;186754;242398;249073;212140;185696;208951;205419;106276;162236;269724;198207;267154;278331;253642;224955 -162;'578;Norway;1873;Wood-based panels;5922;Export value;1000 USD;4623;5007;5531;6867;9507;9244;7135;7702;7778;7815;10006;16036;26206;22600;16426;16604;12905;11290;13445;19602;17473;17510;17734;18882;18415;22930;27500;22853;37199;43794;44321;44240;37008;43344;76136;73528;82131;80420;82981;73591;65348;66881;80474;90235;97665;112864;126799;109572;89469;95721;125642;108997;86825;94039;82543;61840;113067.09;120819;115223;117583;168788;159210;137489 -162;'578;Norway;1640;Plywood and LVL;5516;Production;m3;15000;16000;17000;18000;19000;20000;22000;22000;23000;24000;24000;25000;25000;25000;9000;9000;8000;8000;8000;9000;9000;10000;10000;11000;11000;12000;13000;7000;7000;7000;8000;4000;4000;4000;4000;20000;0;20000;28000;28000;28000;28000;28000;28000;28000;0;0;0;24467;29504;14028;16400;16500;0;0;0;0;0;0;0;0;0;0 -162;'578;Norway;1640;Plywood and LVL;5616;Import quantity;m3;6300;6800;6800;9100;9000;11800;14900;16000;21900;28600;27700;30400;39700;35400;35300;48400;57360;66400;65000;66900;65200;67200;63700;63500;66900;94200;80000;76300;62400;68300;51400;58934;57000;71100;71000;79000;102400;51000;45000;47000;50000;51000;47274;57119;55559;64070;73278;61311;50764;61654;65274;72006;70259;71593;67336;64958;142156;149416;154078;142183;161260;149196;162870 -162;'578;Norway;1640;Plywood and LVL;5622;Import value;1000 USD;1114;1190;1216;1655;1614;2156;2901;3056;4315;5766;6471;8266;13847;17018;15049;20701;28562;28167;32058;39507;33892;32250;29744;29445;27844;45014;56381;62805;37967;31601;33685;38562;32658;42083;47240;51945;57640;50123;42911;39953;40365;42520;45689;57327;62571;77947;101674;102297;65653;75685;88889;97167;95143;98963;79930;74112;95040.99;105295;99874;95147;128622;121450;84173 -162;'578;Norway;1640;Plywood and LVL;5916;Export quantity;m3;1300;1000;1500;1800;1600;1100;700;300;400;300;400;900;600;600;400;1100;1200;1300;200;2000;1600;2800;2600;2500;2500;4000;2900;1900;2100;3400;3000;2800;1500;1600;3000;5000;4800;2000;1000;1000;5000;2000;2175;1469;1093;1597;1417;1338;503;1739;5578;7422;3994;4765;4682;370;29807;22819;21327;3499;45259;47789;30483 -162;'578;Norway;1640;Plywood and LVL;5922;Export value;1000 USD;212;167;258;328;323;221;147;100;118;91;142;410;352;232;276;759;992;841;139;1733;1285;1943;1540;1503;1728;2906;3708;1623;1934;2221;4380;3556;2514;2389;2843;3750;3272;1979;2143;1733;3123;4794;5379;2897;2010;3299;3117;3055;1567;6061;22411;26658;14444;16707;14861;1114;19132.71;20748;21253;3222;30694;31214;29671 -162;'578;Norway;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5617;2638 -162;'578;Norway;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4623;2009 -162;'578;Norway;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;29 -162;'578;Norway;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;39 -162;'578;Norway;1646;Particle board and OSB (1961-1994);5516;Production;m3;53100;79400;89800;113600;130400;149000;167400;188600;210700;210700;239900;309100;390000;350000;291000;335000;316000;360000;348000;400000;358000;363000;361000;411000;423000;451000;451000;424000;418000;458000;400000;398000;313000;372000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -162;'578;Norway;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;3700;6500;8000;8800;8900;10800;12800;13500;16600;26800;36400;50100;52800;56900;60300;72300;77700;83200;80500;79200;85700;73400;70000;77100;87800;83700;85700;66700;58400;50500;52000;42400;44300;47900;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -162;'578;Norway;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;389;560;688;733;695;844;1003;1159;1424;2434;3150;4385;5739;7923;8554;10286;12242;13380;15894;16159;17225;14651;12627;13108;14115;17985;22685;21648;18812;19384;22911;25984;20447;18562;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -162;'578;Norway;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;900;1100;2600;6800;12500;18800;30300;42300;43400;47700;61500;112900;162900;90200;65700;92500;55500;44900;50000;61900;50600;44000;40700;51600;48900;53000;67000;89100;127700;152000;142200;142700;213300;186600;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -162;'578;Norway;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;45;153;431;1088;1467;1790;2547;3252;3407;4163;5543;10409;18203;12953;8826;9578;6803;5141;7529;10343;7826;7280;6769;7638;7329;9749;14162;16271;28786;35213;33028;32515;25855;31955;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -162;'578;Norway;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;390000;384000;397000;418600;419000;433000;428000;368140;358000;383000;366000;382000;383000;309237;293000;348000;316000;286000;192320;265000;274000;256000;275000;294000;277000;291000;317947;284753;234604 -162;'578;Norway;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48000;50000;55300;36000;36650;44840;37160;45156;59544;51056;67878;33740;76241;44003;35869;44116;39235;44413;61291;44653;43093;29543;52989;49873;24064;21871;21920;18807;76036 -162;'578;Norway;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26139;28996;27721;11228;10341;10960;11561;14215;23710;22301;25491;23735;46606;35579;23219;25308;25626;28556;28850;27692;23291;22992;23529.03;22526;20750;19802;21932;20836;20161 -162;'578;Norway;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;199000;203000;196200;198000;196600;270660;223500;197190;185720;208343;196640;140841;187358;166605;141327;181597;188530;152232;124822;146757;146656;78912;91934;157650;95077;162578;115411;106274;128019 -162;'578;Norway;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43913;42332;41379;37509;40104;36305;31558;33755;38669;45819;45583;51421;59581;60653;44989;54374;68008;51616;42917;47887;39656;32774;38112.2;45330;40646;47484;58965;63160;52507 -162;'578;Norway;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 -162;'578;Norway;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21000;24000;26000;20000;17720;22000;35791;25782;31851;36311;48685;49830;49664;51083;56497;71053;78986;82639;58625;91865;106150;54709;55030;48526;40133;69152 -162;'578;Norway;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16355;15210;13068;10746;10567;14464;19293;19394;20930;13278;17775;15371;15333;18477;18279;24088;26462;20989;23194;23645.61;34399;28946;24973;45603;28445;22177 -162;'578;Norway;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;10000;5000;8000;2870;4000;7975;3510;3904;388;401;14;38;3;2;39;105;21;33;197;269;33;18;21;56;245 -162;'578;Norway;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5077;6072;3879;5581;2190;3192;3741;5265;3199;370;207;10;11;2;1;77;107;32;17;82.47;49;44;15;26;72;63 -162;'578;Norway;1874;Fibreboard;5516;Production;m3;130000;124000;125000;130000;135000;263000;276000;294000;296000;281000;291000;307000;313000;341000;275000;272000;220000;194000;215000;211000;207000;241000;258000;229000;234000;218000;216000;213000;186000;193000;165000;157000;184000;194000;166000;140000;134000;138000;64000;74000;72000;80000;75000;178000;189000;238000;202000;189000;169000;189000;190000;182000;172000;173000;173000;180000;173000;164000;147000;167000;181000;169000;140000 -162;'578;Norway;1874;Fibreboard;5616;Import quantity;m3;500;1200;1300;1700;1100;1200;4300;4900;3600;3800;3700;4800;4700;4900;4800;5500;6800;8700;7800;8200;4800;5900;7500;12900;11500;12000;13100;9900;10400;10500;11200;14104;17872;19000;24000;28000;50000;52000;65000;92021;68820;76755;76768;92726;109610;123413;164732;179985;167300;201921;207624;152472;205100;213535;207420;139925;146732;258597;249654;253437;306860;258059;112555 -162;'578;Norway;1874;Fibreboard;5622;Import value;1000 USD;69;133;142;238;159;180;497;505;358;420;422;659;766;1022;1113;1204;1747;1942;2345;3062;1828;1838;1814;2363;3361;4420;6727;5540;5130;4216;7743;6362;7152;7500;19634;21553;25926;26927;31162;40843;35753;42732;48307;57647;70145;95520;120743;144732;116245;125072;141954;138367;137923;141581;121902;113008;118096.48;122099;114974;116857;142410;132020;111961 -162;'578;Norway;1874;Fibreboard;5916;Export quantity;m3;59400;60000;62400;61900;80300;81200;125300;129900;132400;110400;111700;117100;141800;150600;114800;98300;69400;72300;64500;59900;68500;73900;88700;95800;88900;83900;71000;10800;17200;14800;15600;13348;12163;13400;24000;25000;56300;59070;78450;64113;53190;48960;60265;48151;52230;45805;54681;47969;44910;59024;54962;52484;56841;57324;54060;26961;40298;88986;81770;101059;117640;99523;66208 -162;'578;Norway;1874;Fibreboard;5922;Export value;1000 USD;4366;4687;4842;5451;7717;7233;4441;4350;4253;3561;4321;5217;7651;9415;7324;6267;5110;5308;5777;7526;8362;8287;9425;9741;9358;10275;9630;4959;6479;6360;6913;8169;8639;9000;29380;27446;37480;35855;34662;31674;25086;26142;33234;37778;44807;54945;63731;45657;42903;35275;35221;30722;29387;29338;27994;27935;55739.71;54692;53280;66862;79103;64764;55248 -162;'578;Norway;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36000;32000;31000;32000;32000;36000;35000;37000;37000;45000;57000;61000;60000;57000;50000;51000;56000;55000;46000;46000;46000;48000;50000;49000;49000;51000;57000;51000;41000 -162;'578;Norway;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24000;28000;30000;31000;34000;60021;49490;54756;50875;59868;63070;71169;34047;23433;18694;21086;23341;24640;25146;24801;31171;28272;32492;27464;15121;15244;20690;52097;24714 -162;'578;Norway;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19634;21553;19730;20598;23268;34641;28323;33422;36942;42629;46531;59369;29407;27776;21224;23875;22705;21849;25871;19639;25461;18094;19842.67;22790;12549;12653;17172;43240;52120 -162;'578;Norway;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24000;25000;18000;20070;20450;22113;16850;18954;17925;21203;24920;28094;24002;4360;5796;4139;4978;4098;6675;2701;4264;3392;2707;3364;3800;6288;8380;7309;1929 -162;'578;Norway;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29380;27446;27724;26196;26624;21308;14747;16710;19173;26993;32071;40953;39604;8306;10842;5173;7141;5408;3810;2580;3466;3106;2561.49;3112;3520;5825;7762;6770;2651 -162;'578;Norway;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;45000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -162;'578;Norway;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;6000;7000;10000;12000;9330;11997;13117;18736;30460;38132;116160;145877;139514;167385;168379;123581;163128;171218;159756;106081;107986;206481;215983;220055;264560;185110;76837 -162;'578;Norway;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;2319;2566;3968;2936;3197;3883;4827;7231;12410;21069;83022;109908;90143;97414;114515;112278;106749;116686;92027;90257;92987.16;94348;98691;100553;120889;84584;56166 -162;'578;Norway;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;300;0;0;2000;1330;0;233;24;300;788;12697;22013;23783;22378;20846;18939;15794;18339;22257;15077;28314;55084;54928;67714;79730;63501;29400 -162;'578;Norway;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;104;103;79;1067;335;212;25;122;158;651;14495;24699;23329;20458;18716;16720;15504;16631;17670;17344;44803.37;44673;44549;54917;64661;51500;41154 -162;'578;Norway;1650;Other fibreboard;5516;Production;m3;50000;39600;40000;40000;41000;152000;164000;172000;172000;152000;152000;160000;179000;206000;172000;168000;123000;108000;137000;118000;116000;171000;183000;163000;166000;155000;153000;151000;132000;137000;120000;114000;148000;156000;130000;108000;103000;106000;32000;38000;37000;43000;38000;133000;132000;132000;142000;132000;119000;138000;134000;127000;126000;127000;127000;132000;123000;115000;98000;116000;124000;118000;99000 -162;'578;Norway;1650;Other fibreboard;5616;Import quantity;m3;200;500;600;600;600;600;400;800;800;400;400;400;400;400;400;800;700;2800;1300;1400;800;1400;2700;7200;4000;4100;600;800;600;600;1200;4266;2518;800;0;0;14000;14000;21000;20000;10000;10002;12776;14122;16080;14112;14525;10675;9092;13450;15904;4251;16826;17516;16493;5572;6254;24652;18550;18138;21610;20852;11004 -162;'578;Norway;1650;Other fibreboard;5622;Import value;1000 USD;36;59;70;70;70;70;24;34;39;28;18;29;38;71;70;91;123;238;163;188;154;187;301;569;337;497;103;259;130;121;309;1648;1049;500;0;0;3877;3763;3926;3266;4233;5427;6538;7787;11204;15082;8314;7048;4878;3783;4734;4240;5303;5256;4414;4657;5266.65;4961;3734;3651;4349;4196;3675 -162;'578;Norway;1650;Other fibreboard;5916;Export quantity;m3;22600;23200;25200;25200;25200;25200;103600;108400;111200;99600;94000;97200;115200;134400;103200;90400;66400;69800;59300;51700;55800;65100;77700;79000;79600;74500;63500;500;3000;2600;2600;500;100;0;0;0;38000;39000;58000;40000;35010;30006;42107;26924;27010;16923;17982;21596;15331;32507;29138;29447;34372;36284;27539;8492;9277;30538;23042;27057;29530;28713;34879 -162;'578;Norway;1650;Other fibreboard;5922;Export value;1000 USD;1818;1829;1892;2151;2151;2151;2158;2217;2267;2272;2506;2890;4152;6436;5120;4550;4014;4528;4428;4677;4778;5933;6529;6091;7027;7277;6306;66;351;359;359;104;21;0;0;0;9652;9556;7959;9299;10004;9220;14036;10663;12578;13341;9632;12652;8732;9644;9364;8594;10073;10127;6858;7485;8374.85;6907;5211;6120;6680;6494;11443 -162;'578;Norway;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;80000;84400;85000;90000;94000;111000;112000;122000;124000;129000;139000;147000;134000;135000;103000;104000;97000;86000;78000;93000;91000;70000;75000;66000;68000;63000;63000;62000;54000;56000;45000;43000;36000;38000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -162;'578;Norway;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;300;700;700;1100;500;600;3900;4100;2800;3400;3300;4400;4300;4500;4400;4700;6100;5900;6500;6800;4000;4500;4800;5700;7500;7900;12500;9100;9800;9900;10000;9838;15354;18200;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -162;'578;Norway;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;33;74;72;168;89;110;473;471;319;392;404;630;728;951;1043;1113;1624;1704;2182;2874;1674;1651;1513;1794;3024;3923;6624;5281;5000;4095;7434;4714;6103;7000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -162;'578;Norway;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;36800;36800;37200;36700;55100;56000;21700;21500;21200;10800;17700;19900;26600;16200;11600;7900;3000;2500;5200;8200;12700;8800;11000;16800;9300;9400;7500;10300;14200;12200;13000;12848;12063;13400;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -162;'578;Norway;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;2548;2858;2950;3300;5566;5082;2283;2133;1986;1289;1815;2327;3499;2979;2204;1717;1096;780;1349;2849;3584;2354;2896;3650;2331;2998;3324;4893;6128;6001;6554;8065;8618;9000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -162;'578;Norway;1879;Total fibre furnish;5510;Production;t;1451000;1431000;1530000;1736000;1761000;1715000;1674000;1959000;2048000;2167000;1960000;1935000;2028000;2110000;1675000;1750000;1513000;1387000;1533000;1489000;1593000;1513000;1614000;1856000;1980000;1966000;1925000;1946000;2163000;2147000;2090000;1993400;2202000;2393000;2831000;2637000;2794000;2708000;2647000;2746000;2714000;2630000;2711000;2867000;2765000;2777000;2695000;2568000;2149000;2358000;2032000;1711000;1602000;1370000;1386000;1479000;1504000;1489000;1406000;1359000;1435000;1476000;1270000 -162;'578;Norway;1879;Total fibre furnish;5610;Import quantity;t;400;500;1800;1100;1200;1000;900;130600;173400;182300;122100;230000;327100;290706;286133;246810;214721;288206;381400;367000;302600;254100;163500;151900;143000;132600;112400;112700;120200;114900;102200;94209;101594;151700;186300;150300;178400;177000;188301;219000;177000;179000;180422;156152;132424;118929;125185;124398;161583;196205;191915;124589;119032;97350;107815;113561;118674;122579;89080;88871;132383;135139;161942 -162;'578;Norway;1879;Total fibre furnish;5622;Import value;1000 USD;39;50;99;65;82;75;80;16443;23077;25127;18149;28940;48148;79677;75324;65155;57597;73399;106913;138979;98259;66514;46303;52969;45503;48216;51815;55609;66348;59359;39890;32752;30570;53736;97558;59932;64242;53894;68396;100143;52948;48924;56909;61892;51126;42987;47060;49711;49343;66411;75780;47035;56325;72833;67909;64533;61842.21;60687;47180;41938;62364;65715;49976 -162;'578;Norway;1879;Total fibre furnish;5910;Export quantity;t;477100;465600;485000;558800;552700;564600;530200;834100;855700;921300;717400;749400;888800;867446;561498;579492;498500;545400;509200;439400;464200;426100;439000;496400;501800;471600;490000;466300;523800;549000;524200;565501;537610;626400;628500;571500;613700;611000;695000;656000;691000;646000;659308;718849;768138;748690;787600;776322;671064;767396;826337;753729;714936;664057;665471;654953;682795;709117;624674;593204;632712;594345;551061 -162;'578;Norway;1879;Total fibre furnish;5922;Export value;1000 USD;32178;31512;32183;37488;39727;39730;36750;71434;74655;92074;78857;80664;117148;206096;171233;163573;130263;128678;139376;143670;155076;137664;122067;152965;140146;153309;200767;231206;282534;300709;214744;230903;155353;225065;347840;279967;183513;184039;199649;225622;248196;245101;226396;252977;278380;327854;326229;360526;228108;354957;370279;299594;262856;169428;133501;130350;165921.31;167168;135550;120389;181703;204563;142744 -162;'578;Norway;1878;Pulp for paper;5510;Production;t;1400000;1379000;1474000;1668000;1688000;1644000;1601000;1886000;1969000;2083000;1878000;1847000;1932000;2006000;1563000;1629000;1403000;1276000;1410000;1373000;1474000;1411000;1506000;1738000;1851000;1824000;1810000;1834000;2055000;2045000;1960000;1863400;2024000;2215000;2485000;2270000;2362000;2420600;2354000;2395000;2273000;2174000;2255000;2389000;2324000;2303000;2233000;2099000;1672000;1884000;1605000;1242000;1088000;763000;751000;874000;902000;885000;833000;826000;902000;943000;737000 -162;'578;Norway;1878;Pulp for paper;5610;Import quantity;t;400;500;1800;1100;1200;1000;900;130600;173400;155300;100100;208000;303100;258700;264800;227100;205300;283600;363200;352500;280800;223600;138100;120100;111500;106400;85400;68000;81100;67200;56100;47945;66985;92200;115300;103300;136700;124000;155301;156000;101000;92000;97360;92543;79929;58957;51172;44068;58264;47964;44357;38825;50127;76484;84267;87734;88917;91802;64175;68611;76046;66351;51536 -162;'578;Norway;1878;Pulp for paper;5622;Import value;1000 USD;39;50;99;65;82;75;80;16443;23077;23853;17125;27888;46734;75971;73196;63365;56695;72912;104830;136843;95721;63221;43813;49612;41581;44747;47965;48545;59534;50028;32319;25995;26391;46530;81948;52489;59584;48427;65113;92434;45654;39136;47237;53209;44540;35567;35055;35674;34881;36206;38992;28737;42300;68456;63034;58362;54033.91;55461;43783;39514;52120;56011;38544 -162;'578;Norway;1878;Pulp for paper;5910;Export quantity;t;477100;465600;485000;558800;552700;564600;530200;834100;855700;912300;710400;739400;875800;850100;538300;551300;471600;514100;464600;406600;420400;391400;403000;456400;460100;428500;449300;428700;466900;479200;443200;455632;402983;477400;459500;389500;397000;392000;418000;408000;499000;485000;506439;520125;535563;487552;492747;489737;385619;441067;451015;373353;306736;210758;181188;184919;224588;243872;197288;203615;218844;209048;177607 -162;'578;Norway;1878;Pulp for paper;5922;Export value;1000 USD;32178;31512;32183;37488;39727;39730;36750;71434;74655;91494;78343;80150;116296;203747;168034;159469;126414;124884;133666;139580;150416;133747;118920;149507;136333;148921;195962;225237;276667;292506;208072;221190;146446;215019;324462;263065;171343;173373;184270;204678;235171;232953;212106;231437;252396;302154;289229;315624;195586;304104;294287;232727;198202;105302;75839;71383;96391.24;110215;92254;88185;108920;134633;106845 -162;'578;Norway;1875;Wood pulp;5510;Production;t;1525000;1500000;1594000;1798000;1826000;1794000;1798000;2000000;2088000;2182000;1977000;1992000;2063000;2165000;1657000;1771000;1509000;1384000;1528000;1494000;1608000;1523000;1641000;1864000;2011000;1984000;1980000;2014000;2225000;2203000;2108000;2006400;2167000;2287000;2557000;2342000;2434000;2492600;2426000;2538000;2406000;2303000;2389000;2528000;2458000;2457000;2371000;2254000;1822000;2021000;1745000;1389000;1245000;918000;900000;1022000;1055000;1038000;983000;983000;1054000;1098000;737000 -162;'578;Norway;1875;Wood pulp;5610;Import quantity;t;6200;5600;6800;7800;5200;5700;2000;133100;178000;156800;102100;209900;305000;258800;264900;227223;205400;283700;363300;354200;282500;225300;139800;121800;113200;106500;85500;68100;81200;67300;56200;47566;66526;91650;114300;102300;136200;124000;155301;156000;101000;92000;97139;92309;78579;58521;50537;43579;57832;47619;44113;38490;49866;76204;84108;87763;88756;91394;63966;68348;75904;66001;51546 -162;'578;Norway;1875;Wood pulp;5622;Import value;1000 USD;847;717;738;1083;736;736;236;16775;23644;24266;17505;28209;47055;75999;73210;63416;56713;72951;104878;137661;96539;64039;44631;50430;42129;44775;47993;48573;59562;50056;32347;25687;25956;46096;81474;52015;59293;48339;64796;92306;45594;39044;46864;52752;43375;34705;34092;34801;33844;35378;38131;27823;40962;67817;62643;58136;53610.42;54874;43197;38860;51566;55240;37858 -162;'578;Norway;1875;Wood pulp;5910;Export quantity;t;581500;566100;585800;658500;652200;655200;635700;916400;945600;980500;769800;817400;982500;959400;597400;650200;566700;609900;573100;529300;545000;495500;536100;573900;611800;576700;613000;602700;636100;588800;570100;546209;511636;585400;599500;542500;532000;552000;562000;551000;632000;614000;640594;659028;669860;641219;630513;644967;535835;578216;589246;520159;464248;360782;334524;337234;375617;387107;351570;353849;383801;357273;321526 -162;'578;Norway;1875;Wood pulp;5922;Export value;1000 USD;49827;47471;47952;54319;57441;54751;54336;84399;89618;104942;90659;96650;136296;248022;196783;200669;168414;163778;186898;212047;223972;195201;188823;208041;204691;227171;304103;368670;423507;390346;297556;288144;212077;283085;450672;387734;265817;282649;289582;306814;332485;332563;321843;348804;373446;439090;437806;513271;374378;488876;545980;476753;438210;313775;249643;248855;286440.94;292731;277531;277262;316077;348055;332972 -162;'578;Norway;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;902000;885000;833000;826000;902000;943000;737000 -162;'578;Norway;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1738;976;258;74;267;305;140 -162;'578;Norway;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;328.92;516;181;70;199;339;107 -162;'578;Norway;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;213895;235130;192146;198925;215462;207965;169253 -162;'578;Norway;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90684.45;104717;88242;85801;103081;127729;102637 -162;'578;Norway;1654;Mechanical wood pulp (1961-2016);5510;Production;t;774000;750000;805000;898000;926000;952000;953000;1145000;1193000;1244000;1081000;1060000;1140000;1171000;846000;836000;763000;802000;919000;918000;911000;881000;925000;1083000;1182000;1146000;1083000;1129000;1296000;1334000;1293000;1217000;1418000;1516000;1627000;1502000;1534000;1664100;1644000;1717000;1668000;1616000;1666000;1783000;1684000;1536000;1473000;1354000;1072000;1179000;903000;757000;691000;763000;671000;734000;;;;;;; -162;'578;Norway;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;400;500;1700;1000;1100;900;700;600;400;200;300;100;1000;1700;1200;3200;3500;3500;4400;2000;2800;3500;6900;5700;4700;3900;3700;3300;3800;3000;3000;4754;7832;3000;5000;3000;1900;1000;1000;1000;1000;0;1439;678;1711;1244;1;1755;217;84;27;188;80;148;194;113;;;;;;; -162;'578;Norway;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;39;50;87;60;77;70;62;48;34;22;28;12;111;419;339;1022;1096;995;1390;763;998;1107;1879;1773;1497;1384;1669;1722;2106;1722;1499;2272;2941;1217;2870;1396;862;510;288;395;178;139;473;228;636;708;2;1049;106;51;26;151;76;108;125;53;;;;;;; -162;'578;Norway;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;467600;441700;463700;525700;519700;537900;503900;589000;596300;626200;443800;436600;476600;523200;296700;278400;237900;247200;242700;221200;190900;162100;157500;192600;213500;193800;205500;178300;192100;177700;162000;145738;145500;178800;193000;135000;137000;118000;137000;128000;175000;169000;194319;203346;204575;197047;193294;218524;184720;159309;155162;130524;84445;180034;113211;55131;;;;;;; -162;'578;Norway;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;31482;29811;30682;35073;37162;37815;34855;41255;42098;48664;35814;34405;47480;89451;70325;62694;47439;42649;52048;57984;49160;38658;31797;40679;46952;52304;64790;65127;76207;72936;57630;52337;42323;58255;96829;48045;41575;34595;41404;39904;55865;50186;68517;77803;78142;80924;94438;114177;82889;76626;83407;60268;40157;86365;44740;19158;;;;;;; -162;'578;Norway;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;14000;32000;51000;72000;70000;73000;74000;75000;83000;92000;85000;76000;70000;79000;47000;59000;56000;56000;75000;74000;68000;67000;71000;73000;83000;77000;83000;85000;92000;86000;81000;78400;76000;90000;97000;66000;73000;72200;55000;96000;68000;42000;41000;43000;43000;23000;30000;6000;0;1000;0;0;0;0;80000;140000;;;;;;; -162;'578;Norway;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;100;100;100;100;200;600;1200;500;500;400;600;600;600;600;600;200;100;800;3900;5300;6900;9000;8700;9200;8900;100;2000;1700;1000;715;0;0;300;300;600;1000;301;1000;1000;1000;116;0;18;58;60;75;54;48;38;13;5;644;2101;887;;;;;;; -162;'578;Norway;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;12;5;5;5;18;82;165;53;53;58;86;86;86;86;86;37;14;266;1244;1396;1545;2352;1878;2263;2804;84;1085;1200;524;338;0;0;224;224;229;285;115;385;426;194;40;0;40;475;366;597;59;143;17;11;6;379;941;283;;;;;;; -162;'578;Norway;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;9500;23900;21300;33100;33000;26700;26300;25300;36800;41100;38000;32200;27200;28000;14800;22500;19200;23200;31100;24100;24400;19300;23400;28300;28200;26600;25400;32100;27000;28500;27100;31100;26900;26100;22500;22500;16800;6000;11000;28000;29000;19000;31648;44264;41649;23336;27119;6002;54;892;5317;440;2005;1121;67305;129063;;;;;;; -162;'578;Norway;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;696;1701;1501;2415;2565;1915;1895;1808;2637;3668;3644;2389;2200;5842;4355;5783;4439;4794;8031;7888;7724;5684;5907;7977;7793;8414;10366;14662;13468;13926;10593;12005;7256;9367;13597;13597;6177;2287;4707;15728;12071;7591;14506;20500;20716;12658;16441;3988;38;2416;2704;194;913;435;30741;51915;;;;;;; -162;'578;Norway;1656;Chemical wood pulp;5510;Production;t;612000;597000;618000;698000;692000;619000;574000;666000;693000;747000;712000;711000;722000;756000;670000;734000;584000;418000;416000;381000;495000;463000;510000;582000;586000;601000;644000;620000;667000;625000;586000;568000;530000;609000;761000;702000;755000;684300;655000;582000;537000;516000;548000;563000;597000;744000;730000;739000;600000;704000;702000;485000;397000;0;0;0;0;0;0;0;0;0;0 -162;'578;Norway;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;129400;171800;154600;99300;207500;301500;256400;263000;223300;201200;279900;358700;349700;274100;214800;124300;105400;98100;93300;72800;64600;75300;62500;52100;41939;58651;88600;109000;99000;133700;122000;154000;154000;99000;91000;95448;91396;76785;57098;50430;41749;57545;47487;44047;38288;49750;75412;81800;86598;87018;90413;63657;68272;75430;65670;51381 -162;'578;Norway;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;16313;22878;23778;17044;27818;46537;75466;72771;62257;55513;71880;103426;135814;93479;60718;40389;45487;38206;41100;43492;46739;56343;47106;30296;22971;22996;44849;78380;50395;58202;47518;64356;91491;44693;38424;46224;52361;42648;33418;33673;33155;33656;35184;38087;27658;40852;67330;61553;57616;53281.5;54349;42946;38776;51177;54858;37707 -162;'578;Norway;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;219800;222600;245000;228600;270600;372000;298900;226800;250400;214500;243700;190800;161300;205100;210000;222100;235500;218400;208100;218400;218300;247800;273000;254100;278794;230486;272500;244000;232000;243200;268000;270000;252000;295000;297000;280472;272478;289337;267164;272334;265207;200844;280863;290531;242379;220285;29602;663;725;10693;8742;4926;4690;3273;959;8261 -162;'578;Norway;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;28371;29920;39162;38885;43356;66616;108454;93354;90992;74536;77441;73587;73708;93532;89405;81216;100851;81588;88203;120806;145448;186992;205644;139849;156848;96832;147397;214036;201423;123591;136491;138159;148878;167232;175125;129083;133120;153537;208564;178350;197458;112640;225029;208117;172180;157126;18472;351;301;5698.2;5495;3964;2384;1902;825;876 -162;'578;Norway;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;175000;144000;149000;130000;140000;134000;153000;131000;150000;162000;135000;151000;149000;134000;150000;155000;167000;147000;137000;156000;157000;161000;173000;167000;179000;168000;140000;135000;126000;145000;161000;154000;150000;135700;131000;157000;147000;147000;173000;169000;175000;190000;186000;190000;167000;186000;180000;49000;0;0;0;0;0;0;0;0;0;0;0 -162;'578;Norway;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;33400;43600;45300;16800;114800;193800;134300;184100;136900;126200;148900;207500;172400;167200;145100;46400;16900;14400;10900;9000;5700;7000;7900;5300;4150;5200;6600;5000;5000;7900;7000;4000;4000;1000;3000;3152;3975;4716;159;341;0;41;23;1179;4;0;27;26;0;28;0;0;0;1389;23;12 -162;'578;Norway;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;3481;4706;5906;2158;11250;23964;38260;39523;27501;26480;29912;41487;45978;39799;28821;10368;5754;4987;4466;4707;3142;3779;4690;2802;2042;1959;2668;3821;2791;3910;3230;1771;2909;241;1284;1521;2264;2530;91;234;0;29;6;1049;3;0;20;13;0;19.47;0;0;0;871;18;14 -162;'578;Norway;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;8200;10000;9400;12900;9800;14300;11400;4400;200;2400;1900;700;300;300;500;200;100;100;100;100;100;100;100;200;221;125;200;0;0;500;0;0;0;0;0;0;0;2;0;0;312;0;0;0;0;0;138;180;0;2610;200;7;6;6;360;360 -162;'578;Norway;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;1381;1116;1240;1782;1373;2000;3418;1536;70;441;212;91;59;59;16;7;7;7;7;7;7;7;7;57;99;33;86;0;0;192;53;28;184;0;0;0;0;65;0;0;138;0;0;0;0;0;79;54;0;628;107;27;26;0;186;186 -162;'578;Norway;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;60000;59000;64000;64000;80000;85000;150000;175000;190000;120000;59000;18000;3000;158000;167000;216000;247000;249000;255000;273000;263000;283000;265000;283000;274000;256000;294000;356000;327000;350000;357600;359000;325000;379000;356000;361000;384000;408000;396000;392000;395000;279000;375000;373000;281000;235000;0;0;0;0;0;0;0;0;0;0 -162;'578;Norway;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;82100;110600;97900;78600;85600;98600;96100;70200;78300;65600;101200;117300;143700;74000;44100;55900;66200;59500;57100;51300;42100;48800;42900;33900;29097;41420;58800;69000;75000;92100;80000;119000;130000;80000;71000;78496;76783;58659;47381;41804;33211;49962;39106;35995;28044;40195;67097;72037;75077;74903;68628;55047;62795;65338;65510;51171 -162;'578;Norway;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;11128;15903;16215;14214;15374;20825;30417;29786;31590;25640;33246;49111;73321;37355;20131;21838;30163;23794;26170;31985;31770;38614;34200;19845;15837;16005;30318;58567;40626;46971;37261;55650;81022;37920;31097;37920;43068;31341;26490;25455;23820;26921;27344;28646;18926;32100;60100;53981;49393;44543.01;44831;34352;33815;46307;53987;36859 -162;'578;Norway;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;1700;4000;2600;1900;33400;128300;64600;71300;95700;100400;160000;132600;116900;168200;179200;167000;163100;146800;146900;162300;174500;204000;199900;177500;208514;185253;220700;200000;205000;224000;239000;249000;235000;272000;270000;263467;259544;281179;256486;259381;264688;200434;277473;286752;239942;216768;27631;0;0;7760;7600;4864;4631;3248;583;583 -162;'578;Norway;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;552;447;343;262;4677;18000;26157;27210;32300;32400;49681;48174;49449;74787;74603;60536;72168;56434;62708;91292;116902;154692;150632;95353;112469;71185;118371;178811;183281;112022;119500;124500;136690;153501;160877;119587;123749;146853;200228;173094;197115;112474;220636;201653;168735;153248;17657;0;0;4783;4676;3865;2289;1830;579;579 -162;'578;Norway;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -162;'578;Norway;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12087;21785;8610;5477;8703;137;198 -162;'578;Norway;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8719.01;9518;8594;4961;3999;853;834 -162;'578;Norway;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;323;942;55;53;19;16;7318 -162;'578;Norway;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;287.2;712;72;69;72;60;111 -162;'578;Norway;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;153000;133000;130000;131000;140000;176000;180000;145000;179000;144000;121000;110000;91000;69000;80000;81000;69000;54000;58000;66000;67000;69000;74000;71000;77000;72000;47000;46000;43000;49000;50000;29000;71000;5800;1000;0;0;0;0;0;0;0;7000;0;2000;2000;2000;3000;0;0;0;0;;;;;;; -162;'578;Norway;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;10200;13500;8700;1600;2400;4900;20800;4900;3900;4600;17100;23900;23000;20600;14600;12500;12100;10300;9300;6300;10700;15800;8200;8100;5479;7249;11200;9000;5000;3200;3000;3000;4000;3000;2000;1530;1000;1046;283;0;0;0;0;0;2;1;6;4;11;;;;;;; -162;'578;Norway;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;1206;1698;1209;250;364;881;5170;1820;1456;1482;4708;8576;11031;10048;6477;4451;4779;3850;3756;3215;7592;11057;5545;4747;2983;2721;5263;7057;2481;1450;953;935;1661;1409;852;828;542;563;164;0;0;0;0;1;14;39;31;28;36;;;;;;; -162;'578;Norway;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;14400;14300;16000;16900;17700;10600;8700;8700;7900;1200;3100;1800;2500;5700;5900;8900;10500;12400;9400;10300;4000;4400;4200;4800;1103;1906;2500;0;0;100;0;2000;0;0;0;0;0;0;0;7350;50;410;330;490;390;1470;1819;480;480;;;;;;; -162;'578;Norway;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;1575;1674;2281;2325;2179;1577;2268;3060;2325;246;839;704;184;670;900;1255;1896;1986;1346;1960;296;306;329;349;493;744;942;0;0;27;13;931;57;0;1;0;0;0;0;242;23;166;132;197;157;590;726;293;292;;;;;;; -162;'578;Norway;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;364000;342000;295000;345000;354000;373000;315000;355000;308000;300000;239000;283000;224000;156000;168000;142000;101000;95000;99000;113000;113000;116000;124000;119000;128000;120000;116000;113000;105000;121000;194000;192000;184000;185200;164000;100000;11000;13000;14000;10000;14000;158000;145000;154000;152000;141000;147000;152000;162000;0;0;0;;;;;;; -162;'578;Norway;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;3700;4100;2700;2300;4700;4200;5200;3800;4200;4800;12700;10000;10600;12300;11000;9500;10200;13900;16000;6200;6100;3700;3500;4800;3213;4782;12000;26000;14000;30500;32000;28000;16000;15000;15000;12270;9638;12364;9275;8285;8538;7542;8358;6873;10238;9554;8282;9733;11510;;;;;;; -162;'578;Norway;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;498;571;448;422;830;867;1619;1642;1710;1911;4014;4252;5484;6277;5289;3732;4791;5575;6708;3585;4235;2893;2671;2902;2109;2311;6600;8935;4497;5871;6074;6000;5899;5123;5191;5955;6487;8214;6673;7984;9335;6706;7834;8391;8715;8713;7179;7531;8187;;;;;;; -162;'578;Norway;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;195500;194300;217000;196900;209700;218800;214200;142400;146600;110500;78700;55700;41600;30900;24400;46000;61800;59100;51700;45700;39700;39300;68800;71600;68956;43202;49100;44000;27000;18600;29000;19000;17000;23000;27000;17005;12934;8156;10678;5603;157;0;3060;3289;2047;2047;14;3;245;;;;;;; -162;'578;Norway;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;24863;26683;35298;34516;35127;45039;76611;61548;56297;41449;26709;24618;24016;18016;13886;19418;26780;23161;24142;27547;28243;31987;54676;44090;43787;24870;27998;35225;18142;11350;16925;12700;11947;13731;14247;9496;9371;6619;8336;5014;182;0;4261;6267;3288;3288;10;4;9;;;;;;; -162;'578;Norway;1667;Dissolving wood pulp;5510;Production;t;125000;121000;120000;130000;138000;150000;197000;114000;119000;99000;99000;145000;131000;159000;94000;142000;106000;108000;118000;121000;134000;112000;135000;126000;160000;160000;170000;180000;170000;158000;148000;143000;143000;72000;72000;72000;72000;72000;72000;143000;133000;129000;134000;139000;134000;154000;138000;155000;150000;137000;140000;147000;157000;155000;149000;148000;153000;153000;150000;157000;152000;155000;0 -162;'578;Norway;1667;Dissolving wood pulp;5610;Import quantity;t;5800;5100;5000;6700;4000;4700;1100;2500;4600;1500;2000;1900;1900;100;100;123;100;100;100;1700;1700;1700;1700;1700;1700;100;100;100;100;100;100;158;43;50;0;0;0;0;0;0;0;0;136;235;65;121;46;0;16;0;1;1;31;0;13;165;0;5;51;2;207;26;25 -162;'578;Norway;1667;Dissolving wood pulp;5622;Import value;1000 USD;808;667;639;1018;654;661;156;332;567;413;380;321;321;28;14;51;18;39;48;818;818;818;818;818;548;28;28;28;28;28;28;106;19;30;0;0;0;26;37;35;297;287;127;163;51;104;51;0;23;0;1;3;28;0;24;184;0;9;70;14;190;43;44 -162;'578;Norway;1667;Dissolving wood pulp;5910;Export quantity;t;104400;100500;100800;99700;99500;90600;105500;82300;89900;68200;59400;78000;106700;109300;59100;98900;95100;95800;108500;122700;124600;104100;133100;117500;151700;148200;163700;174000;169200;109600;126900;90577;108750;108000;140000;153000;135000;160000;144000;143000;133000;129000;134155;138940;134299;153672;137766;155234;150217;137152;138236;146816;157513;150025;153345;152315;151029;143235;154498;150234;165066;148349;144012 -162;'578;Norway;1667;Dissolving wood pulp;5922;Export value;1000 USD;17649;15959;15769;16831;17714;15021;17586;12965;14963;13448;12316;16500;20000;44275;28749;41200;42000;38894;53232;72467;73556;61454;69903;58534;68358;78250;108141;143433;146840;97840;89484;66954;65666;68066;126210;124669;94474;109276;105312;102304;97317;99661;109737;117381;121051;136944;148577;197648;178811;184805;251752;244111;240014;208503;173811;177481;190058.29;182519;185325;189077;211094;219501;229459 -162;'578;Norway;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 -162;'578;Norway;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;537;502;600;1000;1000;500;0;0;0;0;0;357;469;1415;557;681;489;448;345;245;336;292;280;172;136;161;413;260;265;349;376;15 -162;'578;Norway;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;414;454;464;474;474;291;114;354;163;357;379;500;620;1216;966;1014;873;1060;828;862;917;1366;639;415;410;423.49;596;656;668;744;814;730 -162;'578;Norway;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;97;0;0;0;0;0;0;0;0;0;0;37;2;5;0;4;1;3;5;10;1;1;9;0;0;0;216;0;109;124;93 -162;'578;Norway;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;35;0;0;0;0;0;0;168;3;51;0;14;1;8;0;1;19;33;59;85;6;30;7;9;8.59;3;48;0;3937;6079;3332 -162;'578;Norway;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;44;33;6;225;437;779;930;1212;653;773;909;1263;1175;2069;2793;1776;1846;1633;1981;1637;2057 -162;'578;Norway;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;208;66;214;93;58;25;14;5;118;352;492;559;565;849;668;840;1053;859;1306;1464.56;1185;1310;1183;1522;1402;1711 -162;'578;Norway;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;28;0;12;280;0;24;12;0;0;0;1;0;0;0;225;325;0;1000;0;0;0 -162;'578;Norway;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;13;9;0;2;3;0;1;24;0;12;8;0;0;0;2;0;2;0;5.08;7;0;36;0;0;0 -162;'578;Norway;1669;Recovered paper;5510;Production;t;51000;52000;56000;68000;73000;71000;73000;73000;79000;84000;82000;88000;96000;104000;112000;121000;110000;111000;123000;116000;119000;102000;108000;118000;129000;142000;115000;112000;108000;102000;130000;130000;178000;178000;346000;367000;432000;287400;293000;351000;441000;456000;456000;478000;441000;474000;462000;469000;477000;474000;427000;469000;514000;607000;635000;605000;602000;604000;573000;533000;533000;533000;533000 -162;'578;Norway;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;27000;22000;22000;24000;32006;21333;19710;9421;4606;18200;14500;21800;30500;25400;31800;31500;26200;27000;44700;39100;47700;46100;46264;34609;59500;71000;47000;41700;53000;33000;63000;76000;87000;83062;63609;52495;59972;74013;80330;103319;148241;147558;85764;68905;20866;23548;25827;29757;30777;24905;20260;56337;68788;110406 -162;'578;Norway;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;1274;1024;1052;1414;3706;2128;1790;902;487;2083;2136;2538;3293;2490;3357;3922;3469;3850;7064;6814;9331;7571;6757;4179;7206;15610;7443;4658;5467;3283;7709;7294;9788;9672;8683;6586;7420;12005;14037;14462;30205;36788;18298;14025;4377;4875;6171;7808.31;5226;3397;2424;10244;9704;11432 -162;'578;Norway;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;9000;7000;10000;13000;17346;23198;28192;26900;31300;44600;32800;43800;34700;36000;40000;41700;43100;40700;37600;56900;69800;81000;109869;134627;149000;169000;182000;216700;219000;277000;248000;192000;161000;152869;198724;232575;261138;294853;286585;285445;326329;375322;380376;408200;453299;484283;470034;458207;465245;427386;389589;413868;385297;373454 -162;'578;Norway;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;580;514;514;852;2349;3199;4104;3849;3794;5710;4090;4660;3917;3147;3458;3813;4388;4805;5969;5867;8203;6672;9713;8907;10046;23378;16902;12170;10666;15379;20944;13025;12148;14290;21540;25984;25700;37000;44902;32522;50853;75992;66867;64654;64126;57662;58967;69530.07;56953;43296;32204;72783;69930;35899 -162;'578;Norway;1876;Paper and paperboard;5510;Production;t;821000;806000;895000;970000;998000;1065000;1120000;1246000;1374000;1417000;1369000;1327000;1403000;1445000;1294000;1257000;1186000;1240000;1400000;1373000;1373000;1305000;1368000;1562000;1604000;1573000;1590000;1670000;1789000;1819000;1784000;1683000;1958000;2148000;2261000;2096000;2129000;2260200;2241000;2300000;2220000;2114000;2186000;2294000;2223000;2109000;2010000;1900000;1577000;1695000;1496000;1209000;1079000;1023000;979000;1099000;1097000;1134000;1155000;933000;1010000;1036000;1025000 -162;'578;Norway;1876;Paper and paperboard;5610;Import quantity;t;13400;13700;16900;22100;30800;37700;47100;51300;58200;65900;78600;92700;110400;118400;109400;110000;117300;131400;149700;164800;179500;189000;194200;227300;218100;242600;254700;261400;254500;268200;290100;306950;326898;358100;506000;519000;475900;470000;493000;466000;434000;450000;467462;450100;475739;490740;516362;484480;431814;404505;432752;441431;439850;476719;397364;377828;364016;390215;326027;301880;298402;267795;241446 -162;'578;Norway;1876;Paper and paperboard;5622;Import value;1000 USD;4947;5238;6095;7753;10188;11918;14144;15188;17178;20828;25319;31301;42927;66752;74721;58440;69013;78259;100387;130362;136353;135297;125017;139050;152150;194287;240794;310309;285899;343337;349381;337903;302757;305896;796452;785074;434749;420850;425744;378658;344843;378254;411120;421625;454913;466363;547282;540797;439817;422205;506084;464173;445511;407286;304277;293199;293430.36;314786;282798;257083;313189;321832;265104 -162;'578;Norway;1876;Paper and paperboard;5910;Export quantity;t;511700;498500;582400;649600;659600;680600;750700;880000;973400;1018200;965500;974100;1005900;1041800;770900;847200;816700;897100;1016900;1048400;1018900;985400;1054000;1214100;1284200;1232600;1228600;1315300;1465100;1476300;1464000;1363411;1596602;1768200;1961000;1832000;1936600;1994583;2003000;1981415;2041000;1865000;1871052;2003599;1911090;1821218;1714179;1643062;1296122;1454761;1334813;1083010;984056;978212;943493;1064013;994988;1060974;903092;847339;934775;890835;730564 -162;'578;Norway;1876;Paper and paperboard;5922;Export value;1000 USD;92199;87586;97643;110569;112751;114935;125361;140143;160162;176737;172185;184713;236281;385215;334871;330303;348959;394479;506312;600664;524246;472562;447376;485560;533076;603330;713667;890963;901620;1005701;984925;888261;809004;884255;1579283;1434952;1104543;1288424;1253165;1097060;1105409;1027351;1125296;1237592;1267381;1207323;1253426;1227266;993274;1015325;1072985;771900;685671;758158;604183;637230;587166.22;726849;614061;517530;605194;786365;645537 -162;'578;Norway;2042;Graphic papers;5510;Production;t;460000;439000;492000;525000;523000;574000;625000;741000;829000;871000;829000;804000;873000;878000;727000;766000;722000;786000;918000;926000;958000;918000;954000;1138000;1181000;1150000;1143000;1221000;1333000;1249000;1323000;1242000;1502000;1613000;1719000;1590000;1659000;1731300;1721000;1748000;1697000;1623000;1709000;1815000;1739000;1625000;1547000;1436000;1173000;1288000;1135000;1029000;971000;914000;865000;975000;968000;973000;994000;775000;838000;864000;864000 -162;'578;Norway;2042;Graphic papers;5610;Import quantity;t;1400;1800;1900;1900;2700;3000;4100;6300;7900;4900;7600;11700;15400;16400;16400;22500;29500;36700;46300;52800;62500;71500;77000;89000;91200;103400;105800;111100;105500;114400;119000;131220;149448;176400;219000;239000;222900;236000;243000;236000;219000;244000;267021;267264;287498;300120;335577;323563;290045;253009;294322;302094;291978;289786;245775;224559;217661;234008;165201;129328;108182;82684;74257 -162;'578;Norway;2042;Graphic papers;5622;Import value;1000 USD;560;742;746;801;1057;1108;1411;2069;2662;1656;2561;3639;5800;9203;10875;14445;21300;25319;36354;47659;54164;58119;53678;60505;65719;90238;110438;142211;128482;157266;151815;149280;139213;159361;344536;343925;199554;205652;205266;185251;175646;211156;236118;251141;276080;278459;336536;341105;282152;249613;312963;289782;256708;215898;148947;134287;135791.96;134970;111368;84395;88202;91774;77574 -162;'578;Norway;2042;Graphic papers;5910;Export quantity;t;327600;302200;354400;389000;402400;414800;478700;595000;679400;699200;662500;666100;681900;690800;543900;567200;532700;601100;700000;754100;741700;725100;775900;906700;983500;919900;945600;989200;1120700;1132000;1104200;1000911;1258450;1366600;1529000;1417000;1499600;1505000;1510000;1440000;1539000;1382000;1404554;1538314;1458552;1368173;1291328;1215191;936854;1052420;969784;933197;885063;875677;841688;950176;878152;942412;782023;737002;817023;783461;630837 -162;'578;Norway;2042;Graphic papers;5922;Export value;1000 USD;51288;46228;52136;57603;60170;61629;69753;83233;98176;103639;101100;107687;134779;215410;204195;201432;207846;245333;320185;390555;344046;315537;299385;327518;365348;409184;492996;624914;617229;709120;689604;584491;571014;636638;1152318;1074745;814922;942444;938305;756205;799495;717141;780492;870852;902705;856013;888797;859770;728631;686228;737423;634302;569659;640665;501740;531683;469332.89;599201;495252;394902;460340;630458;504584 -162;'578;Norway;1671;Newsprint;5510;Production;t;241000;234000;270000;291000;308000;344000;389000;466000;506000;554000;539000;534000;527000;509000;435000;466000;435000;482000;568000;589000;691000;668000;711000;840000;877000;855000;845000;882000;990000;910000;955000;934000;1007000;1007000;973000;913000;798000;914200;870000;868000;886000;804000;784000;861000;738000;665000;631000;525000;436000;472000;480000;474000;479000;450000;414000;499000;483000;488000;563000;418000;471000;505000;505000 -162;'578;Norway;1671;Newsprint;5610;Import quantity;t;400;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;8551;11025;20000;27000;42000;45900;41000;50000;47000;34000;36000;56476;49637;64049;67164;79168;89948;72578;48407;93479;108292;110640;80784;68463;53742;49067;35121;31700;28106;22316;8484;8678 -162;'578;Norway;1671;Newsprint;5622;Import value;1000 USD;67;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;6269;5894;10160;19429;33803;26984;23398;27294;22999;18004;20266;30522;27598;39225;39780;55774;66325;51109;28588;71300;79555;72806;50887;33259;26350;24484;19858;18535;14713;12083;6412;5786 -162;'578;Norway;1671;Newsprint;5910;Export quantity;t;190800;182400;219300;237600;247400;265200;327300;424600;434100;475600;457600;451900;451300;459400;380500;380300;339500;369100;462400;522800;572600;567100;584600;673000;761300;706100;726100;714600;829800;822300;794600;751100;821600;770600;780000;761000;834600;888000;844000;696000;804000;691000;673313;775430;686080;669459;648092;538345;390522;430111;470400;376478;423680;384500;350000;429000;411500;441300;376711;388805;442842;437040;437040 -162;'578;Norway;1671;Newsprint;5922;Export value;1000 USD;24294;23086;26863;28991;30173;32310;39946;50343;52189;58892;59790;62898;75383;117980;130650;127107;123691;141422;198307;250966;252535;236113;215586;223497;261921;295492;357034;418420;428042;471044;452949;372711;330119;315244;539275;526139;409230;539000;512308;323226;362263;329380;351299;386464;387684;379986;420542;328844;250784;226871;341041;206872;234269;260731;187742;211531;207494;260318;214884;191620;228868;325777;325777 -162;'578;Norway;1674;Printing and writing papers;5510;Production;t;219000;205000;222000;234000;215000;230000;236000;275000;323000;317000;290000;270000;346000;369000;292000;300000;287000;304000;350000;337000;267000;250000;243000;298000;304000;295000;298000;339000;343000;339000;368000;308000;495000;606000;746000;677000;861000;817100;851000;880000;811000;819000;925000;954000;1001000;960000;916000;911000;737000;816000;655000;555000;492000;464000;451000;476000;485000;485000;431000;357000;367000;359000;359000 -162;'578;Norway;1674;Printing and writing papers;5610;Import quantity;t;1000;1800;1900;1900;2700;3000;4100;6300;7900;4900;7600;11700;15400;16400;16400;22500;29500;36700;46300;52800;62500;71500;77000;89000;91200;103400;105800;111100;105500;114400;119000;122669;138423;156400;192000;197000;177000;195000;193000;189000;185000;208000;210545;217627;223449;232956;256409;233615;217467;204602;200843;193802;181338;209002;177312;170817;168594;198887;133501;101222;85866;74200;65579 -162;'578;Norway;1674;Printing and writing papers;5622;Import value;1000 USD;493;742;746;801;1057;1108;1411;2069;2662;1656;2561;3639;5800;9203;10875;14445;21300;25319;36354;47659;54164;58119;53678;60505;65719;90238;110438;142211;128482;157266;151815;143011;133319;149201;325107;310122;172570;182254;177972;162252;157642;190890;205596;223543;236855;238679;280762;274780;231043;221025;241663;210227;183902;165011;115688;107937;111307.96;115112;92833;69682;76119;85362;71788 -162;'578;Norway;1674;Printing and writing papers;5910;Export quantity;t;136800;119800;135100;151400;155000;149600;151400;170400;245300;223600;204900;214200;230600;231400;163400;186900;193200;232000;237600;231300;169100;158000;191300;233700;222200;213800;219500;274600;290900;309700;309600;249811;436850;596000;749000;656000;665000;617000;666000;744000;735000;691000;731241;762884;772472;698714;643236;676846;546332;622309;499384;556719;461383;491177;491688;521176;466652;501112;405312;348197;374181;346421;193797 -162;'578;Norway;1674;Printing and writing papers;5922;Export value;1000 USD;26994;23142;25273;28612;29997;29319;29807;32890;45987;44747;41310;44789;59396;97430;73545;74325;84155;103911;121878;139589;91511;79424;83799;104021;103427;113692;135962;206494;189187;238076;236655;211780;240895;321394;613043;548606;405692;403444;425997;432979;437232;387761;429193;484388;515021;476027;468255;530926;477847;459357;396382;427430;335390;379934;313998;320152;261838.89;338883;280368;203282;231472;304681;178807 -162;'578;Norway;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;752000;803000;769000;686000;714000;773000;799000;837000;780000;738000;749000;583000;638000;498000;523000;492000;464000;451000;476000;485000;485000;431000;357000;367000;359000;359000 -162;'578;Norway;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17000;14000;15000;14000;20000;11198;8881;13912;25204;30732;30400;32238;27902;29219;25796;15492;10917;7681;6359;5241;5493;3834;2887;2958;3128;1979 -162;'578;Norway;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14887;11677;10163;9687;18497;11856;7429;11100;18651;26967;28450;29833;23892;28616;25097;16697;9938;5889;5049;4215.18;4977;3224;2555;2946;3753;2842 -162;'578;Norway;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;556000;587000;591000;618000;589000;615219;653581;658716;575515;521041;563854;450375;519200;394800;527371;460155;489500;491000;520000;466000;500500;404944;347737;373559;346043;193315 -162;'578;Norway;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;350800;375574;332239;357230;323400;355522;407123;432247;385601;375176;434431;389179;381144;309588;403386;333904;378100;313160;318713;260785;337680;279247;202112;229839;303408;177225 -162;'578;Norway;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53100;46000;43000;18000;7000;36000;36000;41000;49000;55000;45000;42000;46000;33000;0;0;0;0;0;0;0;0;0;0;0;0 -162;'578;Norway;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51000;54000;51000;49000;65000;68641;77939;78221;75027;78312;72640;66447;64171;63956;74824;83387;127075;113911;121146;115363;153634;92718;65762;53519;49012;44428 -162;'578;Norway;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49686;52024;49401;46633;65282;73574;89052;90841;86569;95999;95770;74116;75394;84430;77103;74623;77153;58534;60410;60657.97;66658;49572;35443;39967;47655;40383 -162;'578;Norway;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50000;34000;34000;13000;5000;1859;989;517;357;526;592;238;460;278;217;419;450;342;437;278;284;191;193;308;309;156 -162;'578;Norway;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41662;21860;23941;9699;3490;1795;1054;501;234;457;1102;495;699;472;532;657;726;413;534;440.66;572;420;470;894;1003;862 -162;'578;Norway;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12000;2000;68000;107000;98000;116000;119000;123000;131000;123000;117000;112000;132000;124000;32000;0;0;0;0;0;0;0;0;0;0;0 -162;'578;Norway;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;127000;125000;123000;122000;123000;130706;130807;131316;132725;147365;130575;118782;112529;107668;93182;82459;71010;55720;43312;47990;39760;36949;32573;29389;22060;19172 -162;'578;Norway;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117681;114271;102688;101322;107111;120166;127062;134914;133459;157796;150560;127094;121739;128617;108027;92582;77920;51265;42478;46434.81;43477;40037;31684;33206;33954;28563 -162;'578;Norway;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11000;45000;119000;104000;97000;114163;108314;113239;122842;121669;112400;95719;102649;104306;29131;809;1227;346;739;374;328;177;267;314;69;326 -162;'578;Norway;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10982;28563;76799;70303;60871;71876;76211;82273;90192;92622;95393;88173;77514;86322;23512;829;1108;425;905;613.23;631;701;700;739;270;720 -162;'578;Norway;1675;Other paper and paperboard;5510;Production;t;361000;367000;403000;445000;475000;491000;495000;505000;545000;546000;540000;523000;530000;567000;567000;491000;464000;454000;482000;447000;415000;387000;414000;424000;423000;423000;447000;449000;456000;570000;461000;441000;456000;535000;542000;506000;470000;528900;520000;552000;523000;491000;477000;479000;484000;484000;463000;464000;404000;407000;361000;180000;108000;109000;114000;124000;129000;161000;161000;158000;172000;172000;161000 -162;'578;Norway;1675;Other paper and paperboard;5610;Import quantity;t;12000;11900;15000;20200;28100;34700;43000;45000;50300;61000;71000;81000;95000;102000;93000;87500;87800;94700;103400;112000;117000;117500;117200;138300;126900;139200;148900;150300;149000;153800;171100;175730;177450;181700;287000;280000;253000;234000;250000;230000;215000;206000;200441;182836;188241;190620;180785;160917;141769;151496;138430;139337;147872;186933;151589;153269;146355;156207;160826;172552;190220;185111;167189 -162;'578;Norway;1675;Other paper and paperboard;5622;Import value;1000 USD;4387;4496;5349;6952;9131;10810;12733;13119;14516;19172;22758;27662;37127;57549;63846;43995;47713;52940;64033;82703;82189;77178;71339;78545;86431;104049;130356;168098;157417;186071;197566;188623;163544;146535;451916;441149;235195;215198;220478;193407;169197;167098;175002;170484;178833;187904;210746;199692;157665;172592;193121;174391;188803;191388;155330;158912;157638.4;179816;171430;172688;224987;230058;187530 -162;'578;Norway;1675;Other paper and paperboard;5910;Export quantity;t;184100;196300;228000;260600;257200;265800;272000;285000;294000;319000;303000;308000;324000;351000;227000;280000;284000;296000;316900;294300;277200;260300;278100;307400;300700;312700;283000;326100;344400;344300;359800;362500;338152;401600;432000;415000;437000;489583;493000;541415;502000;483000;466498;465285;452538;453045;422851;427871;359268;402341;365029;149813;98993;102535;101805;113837;116836;118562;121069;110337;117752;107374;99727 -162;'578;Norway;1675;Other paper and paperboard;5922;Export value;1000 USD;40911;41358;45507;52966;52581;53306;55608;56910;61986;73098;71085;77026;101502;169805;130676;128871;141113;149146;186127;210109;180200;157025;147991;158042;167728;194146;220671;266049;284391;296581;295321;303770;237990;247617;426965;360207;289621;345980;314860;340855;305914;310210;344804;366740;364676;351310;364629;367496;264643;329097;335562;137598;116012;117493;102443;105547;117833.34;127648;118809;122628;144854;155907;140953 -162;'578;Norway;1676;Household and sanitary papers;5510;Production;t;;;;;;;;30000;28000;34000;34000;28000;31000;29000;29000;27000;26000;25000;25000;33000;31000;22000;24000;25000;25000;25000;27000;32000;32000;40000;24000;21000;21000;29000;27000;26000;0;27700;26000;28000;27000;26000;25000;27000;27000;21000;21000;19000;17000;14000;17000;15000;15000;17000;16000;21000;22000;22000;21000;22000;22000;23000;21000 -162;'578;Norway;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;300;1000;2000;1000;2000;2000;3000;2000;1500;2700;4700;4300;3700;5900;6500;8000;8500;11000;13900;14000;1400;1400;1600;2000;3000;400;76000;81000;62000;1000;2000;2000;1000;1000;753;569;716;1040;1686;1872;1818;2704;3493;3798;2703;2609;4391;4748;6478;4981;8685;8752;5937;3423;4242 -162;'578;Norway;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;107;203;455;536;583;938;2000;1332;1300;2773;5444;5766;4325;6143;6626;7762;9198;13484;20479;26300;1666;1800;1700;2100;3000;987;208302;220032;90100;3866;3841;3376;1721;2004;2206;2210;2744;4195;6512;7346;5911;9344;11171;11176;8582;9521;9512;9465;11180.86;9869;14040;13203;10964;9504;11453 -162;'578;Norway;1676;Household and sanitary papers;5910;Export quantity;t;9200;9800;11400;13000;12900;13300;13000;12000;11000;12000;10000;10000;12000;11000;3000;5000;4000;4000;6400;8300;6500;4000;3700;4500;6400;10000;11500;13400;15100;15100;16000;16200;15000;12500;49000;51000;17000;15000;15000;15000;12000;14000;13795;11821;11439;6957;3675;2817;5056;4997;6699;5827;7861;3652;54;63;50;44;42;17;95;342;89 -162;'578;Norway;1676;Household and sanitary papers;5922;Export value;1000 USD;2864;2895;3185;3708;3681;3731;4088;3774;3580;4336;4058;3674;5585;9724;2377;3961;3397;3398;5692;8462;6081;3447;2927;3370;4456;8047;10379;15700;15359;15359;15321;16000;15000;10565;88773;89315;17579;14432;13551;11931;9642;11212;11922;11581;11417;7579;4510;3410;5269;6071;10003;7012;9364;4679;248;308;326.75;352;218;187;504;1503;299 -162;'578;Norway;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;501200;494000;524000;443000;409000;397000;392000;393000;399000;374000;368000;327000;360000;307000;127000;93000;92000;98000;103000;107000;139000;140000;136000;150000;149000;140000 -162;'578;Norway;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;205000;220000;201000;182000;194000;193294;176652;179676;178077;171429;151667;135088;143913;128161;129245;142026;181861;144406;145721;137165;148787;150063;161904;182130;179215;161356 -162;'578;Norway;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;174235;174125;148838;127435;136806;157307;155202;158693;166633;187637;179001;138156;151675;165161;148187;170584;173543;138348;141687;139807;162597;151258;153943;206359;212907;169080 -162;'578;Norway;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;420583;425000;469415;440000;449000;432096;434672;439981;445838;419108;425023;354193;397328;358220;143811;91066;98865;101719;113721;116755;118507;120998;110319;117653;107020;99598 -162;'578;Norway;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;299313;269980;302618;273507;284811;317184;340626;352023;343122;359566;363573;259170;322840;325185;130149;106581;112718;102117;105160;117421.22;127193;118507;122384;143449;154276;140423 -162;'578;Norway;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;;453000;423000;472000;466000;458000;425000;453000;453000;425000;398000;387000;398000;371000;343000;325000;347000;355000;354000;354000;374000;370000;376000;470000;371000;370000;394000;466000;471000;438000;398000;;;;;;;;;;;;;;;;;;;;;;;;;; -162;'578;Norway;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;7000;6900;8700;11700;16300;20100;25000;25000;26000;31000;38000;40000;52000;55000;45000;35000;36300;37000;38700;102500;107000;105600;104800;123900;110000;121000;126600;127700;139100;143400;155000;160000;165000;180200;211000;199000;171000;;;;;;;;;;;;;;;;;;;;;;;;;; -162;'578;Norway;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;1535;1574;1872;2433;3196;3783;4400;4400;4591;5776;7170;7916;11868;19917;22000;18000;19300;19700;20600;72558;72911;66861;60799;66653;71096;84267;101466;130700;142351;169271;170000;161481;150000;144264;243614;221117;123176;;;;;;;;;;;;;;;;;;;;;;;;;; -162;'578;Norway;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;143600;153100;177800;203300;200600;207300;213000;220000;228000;230000;216000;216000;221000;237000;157000;215000;200000;210000;222500;254700;241700;221100;238800;265500;254000;266100;241500;278200;292800;292700;295000;296300;294000;389000;383000;364000;397000;;;;;;;;;;;;;;;;;;;;;;;;;; -162;'578;Norway;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;31092;31432;34585;40254;39962;40513;42000;44000;45645;50172;48656;52093;66686;116822;71419;98013;96100;103700;120000;176337;152447;128368;121720;132015;137656;159353;184686;222700;239000;251190;250000;241078;200000;236951;338192;270892;255923;;;;;;;;;;;;;;;;;;;;;;;;;; -162;'578;Norway;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;321100;337000;360000;333000;292000;314000;302000;295000;313000;298000;303000;275000;300000;270000;87000;23000;28000;28000;26000;26000;33000;24000;23000;18000;14000;17000 -162;'578;Norway;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66000;74000;78000;79000;80000;88440;87488;94751;91155;90455;84562;80933;88673;82335;83151;89348;99188;92676;92433;81447;97033;97392;103580;123479;122096;117230 -162;'578;Norway;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34709;36603;39499;34131;37344;44385;46744;49914;52927;64445;64947;48463;57907;66705;59968;65190;71762;56010;55417;53125.86;75079;64025;60977;95221;105184;81370 -162;'578;Norway;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;275000;302000;339000;326000;311000;299737;296290;285969;306072;296083;329688;271683;326623;296064;98225;37976;41403;42998;42825;40281;46480;46394;48391;56945;52446;54184 -162;'578;Norway;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;141553;134336;164373;150312;148683;170890;178853;175022;189028;211476;232595;157072;217876;220894;54347;20190;22204;21168;20312;21137.33;28606;27186;26441;38783;40543;37218 -162;'578;Norway;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26300;0;0;0;0;0;0;0;0;0;2000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -162;'578;Norway;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75000;79000;79000;64000;42000;45893;41994;40103;42591;40941;33711;29800;29858;23817;28931;36042;65679;36509;36954;36040;34935;34941;37631;40993;41114;32657 -162;'578;Norway;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82236;82135;71022;61683;48603;60101;59236;62282;65032;67857;64864;53851;57188;56538;57525;71869;67246;56744;57596;54204.17;56798;56019;58214;72187;72072;57316 -162;'578;Norway;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74000;49000;54000;45000;35000;39252;36894;36901;36939;28995;6093;10452;1008;632;187;133;67;108;142;278;159;210;105;196;202;117 -162;'578;Norway;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67111;46679;48487;39360;32096;33768;35019;35313;32356;30272;5498;5106;1052;748;522;326;153;177;213;549.5;551;651;859;1239;1168;1034 -162;'578;Norway;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54800;51000;55000;48000;61000;35000;29000;31000;28000;25000;26000;25000;29000;28000;29000;30000;32000;34000;37000;40000;38000;37000;37000;42000;40000;35000 -162;'578;Norway;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36000;38000;43000;37000;49000;40924;39898;39319;40728;36778;30075;21444;23195;18720;13375;12862;13193;11083;12778;15152;13076;14377;18861;15891;14286;10692 -162;'578;Norway;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39447;37317;37636;30704;38855;42198;45252;43399;46724;53319;46651;34001;34776;39179;27828;30611;31761;23244;26290;29440.47;27857;28930;33167;36931;33543;29055 -162;'578;Norway;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71000;73000;76000;68000;66000;60383;69898;80892;68532;60810;55490;43044;49306;45011;30609;34931;35922;37435;46878;52847;48440;47276;42550;42710;42436;37360 -162;'578;Norway;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90352;88456;89547;83468;90009;95864;109388;120463;100527;95468;101857;79731;92085;93090;66109;75752;77267;69820;73163;84232.83;84926;76851;85626;93720;104680;97317 -162;'578;Norway;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99000;106000;109000;62000;56000;48000;61000;67000;58000;51000;37000;27000;31000;9000;11000;40000;32000;36000;40000;41000;68000;79000;76000;90000;95000;88000 -162;'578;Norway;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28000;29000;1000;2000;23000;18037;7272;5503;3603;3255;3319;2911;2187;3289;3788;3774;3801;4138;3556;4526;3743;3353;1832;1767;1719;777 -162;'578;Norway;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17843;18070;681;917;12004;10623;3970;3098;1950;2016;2539;1841;1804;2739;2866;2914;2774;2350;2384;3036.5;2863;2284;1585;2020;2108;1339 -162;'578;Norway;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;583;1000;415;1000;37000;32724;31590;36219;34295;33220;33752;29014;20391;16513;14790;18026;21473;21178;23876;23349;23428;27118;19273;17802;11936;7937 -162;'578;Norway;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;297;509;211;367;14023;16662;17366;21225;21211;22350;23623;17261;11827;10453;9171;10313;13094;10952;11472;11501.56;13110;13819;9458;9707;7885;4854 -162;'578;Norway;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;22000;94000;40000;40000;37000;74000;85000;85000;39000;40000;42000;59000;43000;41000;40000;43000;44000;44000;44000;46000;47000;48000;60000;66000;50000;41000;40000;44000;42000;72000;0;0;0;53000;56000;55000;60000;64000;64000;68000;77000;60000;33000;37000;38000;0;0;0;0;0;0;0;0;0;0;0 -162;'578;Norway;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;5000;5000;6300;8500;11800;14600;18000;20000;24000;29000;31000;40000;41000;45000;45000;50500;50000;55000;60000;5200;6300;6000;5900;6400;8400;7200;8400;8600;8500;9000;14500;13730;9450;1100;0;0;20000;28000;28000;27000;32000;11000;6394;5615;7849;11503;7670;7378;4863;4879;6776;6294;3143;2463;2792;2800;2712;2439;2078;1896;2153;2473;1591 -162;'578;Norway;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;2852;2922;3477;4519;5935;7027;8333;8719;9818;13193;15133;19210;24676;36694;39846;24663;27113;30467;37989;4379;4953;4174;3914;4130;6137;6298;8411;11098;13400;15000;25866;25042;10544;1284;0;0;21919;37097;42512;41193;40041;28288;15489;13072;17396;17076;16597;13345;13598;11573;16789;15028;9637;8324;7470;7760;6650.54;7350;6132;5542;7664;7647;6997 -162;'578;Norway;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;31300;33400;38800;44300;43700;45200;46000;53000;55000;77000;77000;82000;91000;103000;67000;60000;80000;82000;88000;31300;29000;35200;35600;37400;40300;36600;30000;34500;36500;36500;48800;50000;29152;100;0;0;23000;54000;53000;57000;50000;20000;20607;18792;1118;250;68;31;19;16;110;175;66;18;32;53;31;11;29;1;4;12;40 -162;'578;Norway;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;6955;7031;7737;9004;8938;9062;9520;9136;12761;18590;18371;21259;29231;43259;56880;26897;41616;42048;60435;25310;21672;25210;23344;22657;25616;26746;25606;27649;30032;30032;30000;46692;22990;101;0;0;16119;32235;31329;26306;22765;14187;15698;14533;1236;609;553;513;204;186;374;437;67;96;78;79;85.38;103;84;57;901;128;231 -162;'578;Norway;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1891557.16;1956742;1901695;1840544;2229819;2172190;1765958 -162;'578;Norway;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;283847.92;287093;221704;224324;280254;251036;203211 -162;'578;Norway;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105936.22;115241;116890;110686;143525;117833;84711 -162;'578;Norway;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12033.28;14646;13588;13534;21535;21106;11375 -162;'578;Norway;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83239.05;90879;92718;92163;119784;96072;69699 -162;'578;Norway;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10390.23;13007;12546;13011;20767;19655;10978 -162;'578;Norway;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22697.17;24362;24172;18523;23741;21761;15012 -162;'578;Norway;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1643.05;1639;1042;523;768;1451;397 -162;'578;Norway;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55145.36;60644;63408;62698;84906;96636;78424 -162;'578;Norway;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25824.97;28617;27922;30605;33486;36215;41005 -162;'578;Norway;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27044.04;30458;28413;29598;42428;40871;34249 -162;'578;Norway;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;842.87;705;626;707;1119;939;1058 -162;'578;Norway;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;515515;523603;474694;467100;553309;543951;440987 -162;'578;Norway;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82254.7;86017;42111;36787;38163;35348;26180 -162;'578;Norway;1636;Glue-laminated timber (glulam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42380;36305 -162;'578;Norway;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47651;36544 -162;'578;Norway;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44963;36753 -162;'578;Norway;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;187;497 -162;'578;Norway;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;292;529 -162;'578;Norway;1688;Cross-laminated timber (CLT or X-lam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36305;36305 -162;'578;Norway;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14521;20502 -162;'578;Norway;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12221;18013 -162;'578;Norway;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;25 -162;'578;Norway;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;60 -162;'578;Norway;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3585;1741 -162;'578;Norway;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4541;2044 -162;'578;Norway;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;0 -162;'578;Norway;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;0 -162;'578;Norway;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;858821.68;870465;856058;863835;1055921;1012528;880280 -162;'578;Norway;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;135851.82;136135;124277;122999;153706;131311;102422 -162;'578;Norway;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;306254.26;327502;332831;256712;281495;300810;197880 -162;'578;Norway;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24310.95;19040;6706;13314;24206;15193;11263 -162;'578;Norway;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22840.59;28829;29401;49915;68235;59561;49427 -162;'578;Norway;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2729.34;1933;6474;6378;8039;10924;9908 -162;'578;Norway;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;548834.02;576838;546272;562618;600145;623407;615742 -162;'578;Norway;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59453.04;67945;69115;70671;75352;76515;64762 -162;'578;Norway;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8403.75;8744;7546;7221;8855;8134;5936 -162;'578;Norway;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54.18;53;29;17;2;105;22 -162;'578;Norway;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37961.76;41553;39497;43313;48428;47594;45744 -162;'578;Norway;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;564.25;677;648;766;1385;868;1244 -162;'578;Norway;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;246524.29;254375;244071;252876;266909;279084;290765 -162;'578;Norway;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28213.05;33170;33655;33734;34184;31516;28730 -162;'578;Norway;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;165729.92;177898;171796;174592;187501;202458;192975 -162;'578;Norway;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24153.26;26335;27856;29620;32876;36770;28399 -162;'578;Norway;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90214.28;94268;83362;84616;88452;86137;80322 -162;'578;Norway;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6468.31;7710;6927;6534;6905;7256;6367 -221;'512;Oman;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;575478;549476;619554;526720;623032.57;653722;581484 -221;'512;Oman;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111820;106377;83839;91432;90998.97;115530.89;111944.89 -221;'512;Oman;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;35365;50713;57850;56694;59842;62322;49760;41920;48168;33388;41061;41066;50451;52409;34770;53403;48316;14332;18696;17179;18731;83127;75260;75526;107392;111130;114010;155444;170395;164853;241504;206892;229323;252276;316912;324620;292676;288558;263122;262145;262432;290598.57;327839;278964 -221;'512;Oman;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1447;750;750;744;556;444;444;47;47;2262;1977;1977;2966;2966;2966;2966;2966;2966;5898;8779;11162;10857;5027;30609;18247;20654;18466;13902;16857;22848.97;54693.89;51293.89 -221;'512;Oman;1861;Roundwood;5516;Production;m3;3693;3866;4048;4238;4437;4646;4864;5092;5332;5582;5807;5932;6489;6646;6649;6739;7176;7768;8318;8835;9076;9453;9690;9965;10368;11128;12151;12934;13881;14763;15492;16159;17581;18791;20531;21820;22963;23965;25077;26468;27588;28756;29977;31251;32582;33770;35001;36278;37603;38976;40176;41414;42690;44005;45361;46505;47679;48882;50115;51379;52674;54001;55362 -221;'512;Oman;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;9500;12500;8400;7600;10600;7900;59500;25900;22500;7100;;54;645;743;200;3600;1700;1004;2206;4584;4584;6700;23700;23700;57273;57273;57273;57273;57273;57273;9480;9102;8755;21368;15963;19763;23973;19826;20081;17827;14396;16448;37561;35887 -221;'512;Oman;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;3508;4803;3205;2391;3483;3350;8765;6124;4980;3108;;5;36;54;32;607;574;332;842;1772;1772;2061;3998;3998;4038;4038;4038;4038;4038;4038;5034;8060;4920;6015;5669;6594;2856;9850;6579;7892;6063;7804;10470;9202 -221;'512;Oman;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;311;5300;5300;5300;200;200;200;0;0;1300;1300;1300;1358;1358;1358;1358;1358;1358;514;142;1245;968;1127;839;405;198;342;614;673;5675;2065;3461 -221;'512;Oman;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;211;211;204;16;16;16;0;0;47;47;47;50;50;50;50;50;50;360;118;142;647;422;185;144;121;82;247;230;1469;363;623 -221;'512;Oman;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -221;'512;Oman;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17169;18004;15844;14115;14203;34010;33957 -221;'512;Oman;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8698;5642;7162;5989;7019;8651;8639 -221;'512;Oman;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;238;166;157;4142;2000;2000 -221;'512;Oman;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;44;225;183;1181;353;353 -221;'512;Oman;1863;Roundwood, non-coniferous;5516;Production;m3;3693;3866;4048;4238;4437;4646;4864;5092;5332;5582;5807;5932;6489;6646;6649;6739;7176;7768;8318;8835;9076;9453;9690;9965;10368;11128;12151;12934;13881;14763;15492;16159;17581;18791;20531;21820;22963;23965;25077;26468;27588;28756;29977;31251;32582;33770;35001;36278;37603;38976;40176;41414;42690;44005;45361;46505;47679;48882;50115;51379;52674;54001;55362 -221;'512;Oman;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2657;2077;1983;281;2245;3551;1930 -221;'512;Oman;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1152;937;730;74;785;1819;563 -221;'512;Oman;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126;104;448;516;1533;65;1461 -221;'512;Oman;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102;38;22;47;288;10;270 -221;'512;Oman;1864;Wood fuel;5516;Production;m3;3693;3866;4048;4238;4437;4646;4864;5092;5332;5582;5807;5932;6489;6646;6649;6739;7176;7768;8318;8835;9076;9453;9690;9965;10368;11128;12151;12934;13881;14763;15492;16159;17581;18791;20531;21820;22963;23965;25077;26468;27588;28756;29977;31251;32582;33770;35001;36278;37603;38976;40176;41414;42690;44005;45361;46505;47679;48882;50115;51379;52674;54001;55362 -221;'512;Oman;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;543;543;0;0;0;0;0;0;0;1800;1800;1800;3;3;3;3;3;3;2;1662;1632;1009;110;996;166;124;163;807;975;1146;376;567 -221;'512;Oman;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22;0;0;0;0;0;0;0;51;51;51;292;292;292;292;292;292;1;1795;838;567;30;2992;54;16;54;82;116;79;73;116 -221;'512;Oman;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;311;200;200;200;200;200;200;0;0;1300;1300;1300;1300;1300;1300;1300;1300;1300;35;38;255;926;77;112;159;62;148;573;673;1303;65;65 -221;'512;Oman;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;23;23;16;16;16;16;0;0;47;47;47;47;47;47;47;47;47;16;36;77;549;245;67;17;15;51;87;57;95;10;10 -221;'512;Oman;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -221;'512;Oman;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;124;100;176;727;26;157;104 -221;'512;Oman;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;33;19;57;12;32;20 -221;'512;Oman;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;74;127;157;313;0;0 -221;'512;Oman;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;30;66;10;22;0;0 -221;'512;Oman;1628;Wood fuel, non-coniferous;5516;Production;m3;3693;3866;4048;4238;4437;4646;4864;5092;5332;5582;5807;5932;6489;6646;6649;6739;7176;7768;8318;8835;9076;9453;9690;9965;10368;11128;12151;12934;13881;14763;15492;16159;17581;18791;20531;21820;22963;23965;25077;26468;27588;28756;29977;31251;32582;33770;35001;36278;37603;38976;40176;41414;42690;44005;45361;46505;47679;48882;50115;51379;52674;54001;55362 -221;'512;Oman;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;631;248;1120;219;463 -221;'512;Oman;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;63;59;67;41;96 -221;'512;Oman;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;446;516;990;65;65 -221;'512;Oman;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;47;73;10;10 -221;'512;Oman;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;543;543;0;0;0;0;0;0;0;1800;1800;1800;3;3;3;3;3;3;2;1662;1632;1009;110;996;166;;;;;;; -221;'512;Oman;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22;0;0;0;0;0;0;0;51;51;51;292;292;292;292;292;292;1;1795;838;567;30;2992;54;;;;;;; -221;'512;Oman;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;311;200;200;200;200;200;200;0;0;1300;1300;1300;1300;1300;1300;1300;1300;1300;35;38;255;926;77;112;159;;;;;;; -221;'512;Oman;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;23;23;16;16;16;16;0;0;47;47;47;47;47;47;47;47;47;16;36;77;549;245;67;17;;;;;;; -221;'512;Oman;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;9500;12500;8400;7600;10600;7900;59500;25900;22500;7100;;54;102;200;200;3600;1700;1004;2206;4584;4584;4900;21900;21900;57270;57270;57270;57270;57270;57270;9478;7440;7123;20359;15853;18767;23807;19702;19918;17020;13421;15302;37185;35320 -221;'512;Oman;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;3508;4803;3205;2391;3483;3350;8765;6124;4980;3108;;5;14;32;32;607;574;332;842;1772;1772;2010;3947;3947;3746;3746;3746;3746;3746;3746;5033;6265;4082;5448;5639;3602;2802;9834;6525;7810;5947;7725;10397;9086 -221;'512;Oman;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5100;5100;5100;0;0;0;0;0;0;0;0;58;58;58;58;58;58;479;104;990;42;1050;727;246;136;194;41;0;4372;2000;3396 -221;'512;Oman;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;188;188;188;0;0;0;0;0;0;0;0;3;3;3;3;3;3;344;82;65;98;177;118;127;106;31;160;173;1374;353;613 -221;'512;Oman;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3200;1300;581;1722;3900;3900;3400;3900;3900;28269;28269;28269;28269;28269;28269;3480;538;2539;16409;6564;8443;14746;17045;17904;15668;13388;14177;33853;33853 -221;'512;Oman;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;526;493;237;702;1619;1619;1569;2181;2181;1724;1724;1724;1724;1724;1724;248;57;221;1717;655;874;1075;8682;5609;7143;5932;7007;8619;8619 -221;'512;Oman;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5100;5100;5100;0;0;0;0;0;0;0;0;0;0;0;0;0;0;170;5;934;4;382;430;215;10;164;39;0;3829;2000;2000 -221;'512;Oman;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;188;188;188;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;6;18;0;38;30;4;14;159;173;1159;353;353 -221;'512;Oman;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3200;1300;581;1722;3900;3900;3400;3900;3900;28269;28269;28269;28269;28269;28269;3480;538;2539;16409;6564;8443;14746;17045;17904;15668;13388;14177;33853;33853 -221;'512;Oman;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;526;493;237;702;1619;1619;1569;2181;2181;1724;1724;1724;1724;1724;1724;248;57;221;1717;655;874;1075;8682;5609;7143;5932;7007;8619;8619 -221;'512;Oman;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5100;5100;5100;0;0;0;0;0;0;0;0;0;0;0;0;0;0;170;5;934;4;382;430;215;10;164;39;0;3829;2000;2000 -221;'512;Oman;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;188;188;188;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;6;18;0;38;30;4;14;159;173;1159;353;353 -221;'512;Oman;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;102;200;200;400;400;423;484;684;684;1500;18000;18000;29001;29001;29001;29001;29001;29001;5998;6902;4584;3950;9289;10324;9061;2657;2014;1352;33;1125;3332;1467 -221;'512;Oman;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;14;32;32;81;81;95;140;153;153;441;1766;1766;2022;2022;2022;2022;2022;2022;4785;6208;3861;3731;4984;2728;1727;1152;916;667;15;718;1778;467 -221;'512;Oman;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;58;58;58;58;58;58;309;99;56;38;668;297;31;126;30;2;0;543;0;1396 -221;'512;Oman;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;3;3;3;3;3;3;344;82;59;80;177;80;97;102;17;1;0;215;0;260 -221;'512;Oman;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;400;400;400;400;600;600;500;1000;1000;1102;1102;1102;1102;1102;1102;3066;6660;4033;2638;2672;2162;3369;609;542;775;27;334;2995;272 -221;'512;Oman;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;81;81;81;81;94;94;150;184;184;181;181;181;181;181;181;2499;5936;3183;2504;2595;963;762;246;254;380;9;167;1420;121 -221;'512;Oman;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;50;31;31;31;297;31;126;30;2;0;543;0;0 -221;'512;Oman;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;34;26;26;26;80;97;102;17;1;0;215;0;0 -221;'512;Oman;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;102;200;200;0;0;23;84;84;84;1000;17000;17000;27899;27899;27899;27899;27899;27899;2932;242;551;1312;6617;8162;5692;2048;1472;577;6;791;337;1195 -221;'512;Oman;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;14;32;32;0;0;14;59;59;59;291;1582;1582;1841;1841;1841;1841;1841;1841;2286;272;678;1227;2389;1765;965;906;662;287;6;551;358;346 -221;'512;Oman;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;58;58;58;58;58;309;49;25;7;637;0;0;0;0;0;0;0;0;1396 -221;'512;Oman;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;344;48;33;54;151;0;0;0;0;0;0;0;0;260 -221;'512;Oman;1868;Sawlogs and veneer logs;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;9500;4300;1700;2100;2100;1000;56100;22500;22500;7100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -221;'512;Oman;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;3508;1068;498;579;579;171;7621;4980;4980;3108;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -221;'512;Oman;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;9500;4300;1700;2100;2100;1000;56100;22500;22500;7100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -221;'512;Oman;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;3508;1068;498;579;579;171;7621;4980;4980;3108;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -221;'512;Oman;1871;Other industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;8200;6700;5500;8500;6900;3400;3400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -221;'512;Oman;1871;Other industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;3735;2707;1812;2904;3179;1144;1144;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -221;'512;Oman;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;8200;6700;5500;8500;6900;3400;3400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -221;'512;Oman;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;3735;2707;1812;2904;3179;1144;1144;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -221;'512;Oman;1630;Wood charcoal;5510;Production;t;245;263;282;303;325;348;374;401;430;462;490;508;577;602;611;629;689;771;851;932;978;1043;1093;1151;1228;1348;1510;1641;1799;1952;2073;2214;2087;2287;2469;2972;2966;3044;3030;3855;4031;4215;4407;4608;4818;5001;5191;5389;5594;5806;5989;6178;6732;6573;6780;6952;7128;7309;7494;7684;7879;8079;8283 -221;'512;Oman;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;700;700;600;300;488;575;600;600;900;1300;1300;2;2;2;2;2;2;3213;4340;5264;15614;17475;10785;13293;22041;16424;15524;15896;16486.87;14501;13372 -221;'512;Oman;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;222;255;369;241;111;133;170;129;129;338;436;436;630;630;630;630;630;630;1299;3310;4041;6412;7105;6117;6837;6290;7016;7589;7028;7477.48;11005;10449 -221;'512;Oman;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;591;400;400;200;200;200;200;0;0;100;0;0;0;0;0;0;0;0;48;980;506;1920;680;67;152;9385;4177;595;309;585.38;815;817 -221;'512;Oman;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;204;119;119;60;60;60;60;0;0;40;0;0;0;0;0;0;0;0;16;239;478;881;260;82;144;2462;1172;307;301;316;645;656 -221;'512;Oman;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;821;0;0;6000;2700;2700;1977;1977;1977;1977;1977;1977;2181;2950;3906;3237;4030;2709;4814;8053;3257;4463;6833;8725.66;38003;3581 -221;'512;Oman;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96;0;0;519;242;242;82;82;82;82;82;82;650;876;1099;915;2008;915;1168;2060;753;719;1132;1461.76;1735;350 -221;'512;Oman;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;30;82;158;109;51;45;329;31;492;460;493;460;873;497 -221;'512;Oman;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;8;54;34;17;18;10;36;7;46;32;37;32;61;35 -221;'512;Oman;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;218;800;800;800;800;800;800;0;0;3800;500;500;348;348;348;348;348;348;284;290;183;987;1302;480;1157;3297;1998;717;665;437.42;4377;3544 -221;'512;Oman;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;95;95;95;95;95;95;0;0;464;187;187;18;18;18;18;18;18;171;264;146;380;1054;167;297;919;521;255;359;283;386;347 -221;'512;Oman;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5;80;75;54;10;4;4;2;32;0;33;0;413;37 -221;'512;Oman;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;53;23;5;11;3;3;4;14;0;5;0;29;3 -221;'512;Oman;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;329;800;800;800;600;21;21;0;0;2200;2200;2200;1629;1629;1629;1629;1629;1629;1897;2660;3723;2250;2728;2229;3657;4756;1259;3746;6168;8288.24;33626;37 -221;'512;Oman;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;28;28;28;22;1;1;0;0;55;55;55;64;64;64;64;64;64;479;612;953;535;954;748;871;1141;232;464;773;1178.76;1349;3 -221;'512;Oman;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;2;83;55;41;41;325;29;460;460;460;460;460;460 -221;'512;Oman;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;1;11;12;7;7;33;3;32;32;32;32;32;32 -221;'512;Oman;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;771;197;622;126;3509;4511;2222;2054;1103;327;226;292 -221;'512;Oman;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;307;45;377;180;811;1063;726;1055;243;128;73;85 -221;'512;Oman;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;188;222;138;188;30;10 -221;'512;Oman;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;30;41;17;30;19;3 -221;'512;Oman;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;771;197;622;126;362;33;9;0;5;84;56;121 -221;'512;Oman;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;307;45;377;180;107;5;1;1;5;23;17;34 -221;'512;Oman;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3147;4478;2213;2054;1098;243;170;171 -221;'512;Oman;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;704;1058;725;1054;238;105;56;51 -221;'512;Oman;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;188;222;138;188;30;10 -221;'512;Oman;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;30;41;17;30;19;3 -221;'512;Oman;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -221;'512;Oman;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;88200;115700;160700;136900;201600;153200;74200;67000;99700;49400;70000;70000;98686;151900;106400;139400;130900;26085;23085;4916;14329;112200;112000;112000;89585;92441;114375;106301;150869;133886;185317;134713;170881;167718;218833;243894;197328;234534;184871;198064;198084;183647;169561;130359 -221;'512;Oman;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;20228;21422;25795;23560;26573;26724;10718;9228;17700;9734;15289;15289;18371;24097;17316;24480;23012;3532;3902;1297;2849;17685;18665;18665;22462;26200;29080;45566;60517;54975;83247;43146;57579;59060;74761;77222;67127;63228;62646;53542;50114;62345;62890;38115 -221;'512;Oman;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1808;600;600;400;400;208;208;0;0;300;300;300;490;490;490;490;490;490;227;129;1469;1870;6;2408;587;5680;9664;17775;41384;9885;3630;3680 -221;'512;Oman;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;380;153;153;187;187;45;45;0;0;90;85;85;149;149;149;149;149;149;138;63;716;582;7;1526;3187;2319;3140;4952;7601;2097;1289;1289 -221;'512;Oman;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -221;'512;Oman;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;3100;3100;3100;1400;10800;8200;8200;1000;2500;11200;7400;7400;12003;12300;2500;27700;19200;25154;21769;3600;13013;11400;16400;16400;27795;30651;52585;48501;93069;76086;126004;103633;115167;115140;149388;174864;110585;157258;116761;145719;148145;140609;132307;97725 -221;'512;Oman;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;678;465;465;295;1650;1659;1659;169;416;780;1053;1053;1955;1424;507;4305;2837;2958;3037;432;1984;1386;2516;2516;3616;7354;10234;13675;28626;23084;33239;29008;31553;32410;44510;44715;27518;30776;26069;29467;27765;38429;40664;24965 -221;'512;Oman;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1352;400;400;200;200;200;200;0;0;0;0;0;0;0;0;0;0;0;0;0;190;1823;0;289;249;854;4489;5250;25329;5281;3613;3613 -221;'512;Oman;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;272;71;71;44;44;44;44;0;0;0;0;0;0;0;0;0;0;0;9;0;70;439;0;71;990;170;1200;1208;4421;921;1249;1249 -221;'512;Oman;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -221;'512;Oman;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;85100;112600;157600;135500;190800;145000;66000;66000;97200;38200;62600;62600;86683;139600;103900;111700;111700;931;1316;1316;1316;100800;95600;95600;61790;61790;61790;57800;57800;57800;59313;31080;55714;52578;69445;69030;86743;77276;68110;52345;49939;43038;37254;32634 -221;'512;Oman;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;19550;20957;25330;23265;24923;25065;9059;9059;17284;8954;14236;14236;16416;22673;16809;20175;20175;574;865;865;865;16299;16149;16149;18846;18846;18846;31891;31891;31891;50008;14138;26026;26650;30251;32507;39609;32452;36577;24075;22349;23916;22226;13150 -221;'512;Oman;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;456;200;200;200;200;8;8;0;0;300;300;300;490;490;490;490;490;490;227;129;1279;47;6;2119;338;4826;5175;12525;16055;4604;17;67 -221;'512;Oman;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108;82;82;143;143;1;1;0;0;90;85;85;149;149;149;149;149;149;129;63;646;143;7;1455;2197;2149;1940;3744;3180;1176;40;40 -221;'512;Oman;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -221;'512;Oman;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;483;500;500;600;200;463;663;600;600;1800;3600;3600;3301;3301;3301;3301;3301;3301;2067;4826;2613;3449;7173;4826;2078;2584;1391;2535;2049;1649;223;678 -221;'512;Oman;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;620;484;484;665;268;306;273;245;245;756;1899;1899;2573;2573;2573;2573;2573;2573;2442;2905;2636;3042;6358;5664;2294;3579;3982;3513;3119;1739;1197;556 -221;'512;Oman;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;16;81;458;3851;2208;125;163;266;315;0;141;141;1 -221;'512;Oman;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;5;86;120;1351;630;51;321;229;253;268;78;2;2 -221;'512;Oman;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -221;'512;Oman;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;28800;59500;69100;78700;72200;88100;75600;63200;36000;27500;26300;26300;49321;45493;3093;41100;38100;3043;7982;5100;5100;41500;72000;74383;132203;132203;132203;103227;103227;103227;150632;115474;167599;178210;191527;211877;297708;279432;235158;258431;258083;262461.16;156399;153164 -221;'512;Oman;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;11629;20043;24100;25002;21124;22952;20106;15119;13338;10761;12454;12454;17732;14665;1207;17509;16897;1267;2221;1356;1356;27509;23462;23728;30928;30928;30928;41525;41525;41525;72545;58102;80433;90702;104924;105075;110749;102493;87980;86893;86887;91977.1;88052;79654 -221;'512;Oman;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1722;600;600;600;600;600;601;0;0;0;0;0;272;272;272;272;272;272;423;618;2530;4965;884;4941;4458;6559;11334;9234;4179;6150.1;6598;5290 -221;'512;Oman;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;771;220;220;246;246;246;246;0;0;0;0;0;55;55;55;55;55;55;332;419;1644;3139;435;3212;4702;3968;8459;3989;1574;2399.94;4058;3060 -221;'512;Oman;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -221;'512;Oman;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;28800;56100;66800;69700;65600;83800;71300;62200;35200;27300;25800;25800;48098;44300;1900;36500;36500;1327;4753;400;400;33000;49400;49400;45386;45386;45386;33200;33200;33200;118940;98399;120351;135224;137430;151293;196127;164700;142418;116596;134389;131810;95554;104846 -221;'512;Oman;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;11629;19192;22962;23132;19891;21973;19127;14786;12904;10642;12238;12238;17255;14141;683;16499;16499;784;1358;313;313;25809;19138;19138;16112;16112;16112;29517;29517;29517;54626;46870;53804;68065;78353;71832;83431;70183;59766;46464;52229;49989;50306;48938 -221;'512;Oman;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1722;600;600;600;600;600;600;0;0;0;0;0;65;65;65;65;65;65;239;435;777;1306;26;2969;2559;2289;5109;5071;1614;2316;437;437 -221;'512;Oman;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;771;220;220;246;246;246;246;0;0;0;0;0;21;21;21;21;21;21;145;316;570;671;87;2142;3048;1480;2371;2236;548;821;354;354 -221;'512;Oman;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;3400;2300;9000;6600;4300;4300;1000;800;200;500;500;578;200;200;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -221;'512;Oman;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;851;1138;1870;1233;979;979;333;434;119;216;216;239;66;66;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -221;'512;Oman;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -221;'512;Oman;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -221;'512;Oman;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;200;369;376;200;200;800;3000;5383;14551;14551;14551;14551;14551;14551;3234;1410;1046;1055;717;1868;9410;10278;9474;12518;9084;9285.11;8649;6863 -221;'512;Oman;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109;74;150;95;40;40;155;1300;1566;2387;2387;2387;2387;2387;2387;1838;1070;966;572;344;1179;3129;3493;3465;4271;2838;3347.28;4162;3199 -221;'512;Oman;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;1;8;45;9;32;811;166;222;409;137;86;384.39;416;2252 -221;'512;Oman;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;103;18;31;4;9;499;153;129;178;37;15;153;162;947 -221;'512;Oman;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1051;1051;1051;1051;1051;1051;278;52;11;378;9;6;12;9;37;56;0;28;10;11 -221;'512;Oman;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;172;172;172;172;172;172;263;46;10;168;15;4;4;2;30;14;1;14;4;4 -221;'512;Oman;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;645;993;993;4300;1400;1347;2853;4500;4500;7700;19600;19600;71215;71215;71215;54425;54425;54425;28180;15613;46191;41553;53371;58710;92159;104445;83229;129261;114610;121338.05;52186;41444 -221;'512;Oman;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;238;458;458;901;324;333;768;1003;1003;1545;3024;3024;12257;12257;12257;9449;9449;9449;15818;10116;25653;21897;26212;32060;24185;28815;24719;36144;31819;38626.82;33580;27513 -221;'512;Oman;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;207;207;207;207;207;207;183;175;1708;3650;826;1161;1733;4048;5816;4026;2479;3449.71;5745;2601 -221;'512;Oman;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;34;34;34;34;34;84;85;1043;2464;339;571;1501;2359;5910;1716;1011;1425.94;3542;1759 -221;'512;Oman;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;388;900;900;300;1000;1000;2325;2325;2325;2325;2325;2325;1576;306;733;930;823;523;1035;875;644;488;1134;730;214;476 -221;'512;Oman;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;184;210;210;110;329;329;1078;1078;1078;1078;1078;1078;966;328;542;504;593;378;391;338;196;213;333;437.57;173;407 -221;'512;Oman;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;181;811;811;322;156;461;255;78;255;43;6;6 -221;'512;Oman;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;228;228;127;163;243;165;31;165;17;0;0 -221;'512;Oman;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;700;200;184;496;1800;1800;4000;12800;12800;55223;55223;55223;38600;38600;38600;13041;4648;27148;28944;36360;45270;52589;77718;67204;111356;100207;112450.33;45296;34497 -221;'512;Oman;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;377;105;94;255;579;579;959;2002;2002;9443;9443;9443;6571;6571;6571;7326;2435;14962;15221;17707;25059;17020;22675;21245;32475;28672;36237.98;31139;24651 -221;'512;Oman;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;11;11;134;134;1310;2393;5;834;1569;2777;4751;3871;2070;3308.71;5735;2591 -221;'512;Oman;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;59;59;710;1237;2;440;1335;1918;5547;1676;836;1401.94;3541;1758 -221;'512;Oman;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;316;500;500;3600;1200;1140;1969;1800;1800;3400;5800;5800;13667;13667;13667;13500;13500;13500;13563;10659;18310;11679;16188;12917;38535;25852;15381;17417;13269;8157.72;6676;6471 -221;'512;Oman;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;148;247;247;524;219;202;329;214;214;476;693;693;1736;1736;1736;1800;1800;1800;7526;7353;10149;6172;7912;6623;6774;5802;3278;3456;2814;1951.27;2268;2455 -221;'512;Oman;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;196;196;196;196;196;196;49;41;217;446;10;5;8;810;810;77;154;98;4;4 -221;'512;Oman;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;31;31;31;31;31;25;26;251;999;109;4;3;198;198;9;10;7;1;1 -221;'512;Oman;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;329;493;493;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -221;'512;Oman;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;211;211;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -221;'512;Oman;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80000;80000;80000;80000;80000;80000;80000;80000;80000;86000;86000;86000;86000;86000;86000 -221;'512;Oman;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;681;1200;1800;2400;2800;1813;1576;1300;1300;3000;2200;2200;8841;8841;8841;5527;5527;5527;2169;1889;1601;1486;254;1620;1097;2152;1593;1860;913;5366.96;19002;48680 -221;'512;Oman;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;545;243;659;1904;2055;702;623;620;620;1477;959;959;1325;1325;1325;959;959;959;1329;949;749;743;265;7368;699;1177;1490;1699;672;4016.44;7497;11492 -221;'512;Oman;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;288;288;0;0;9000;8000;8000;3357;3357;3357;3357;3357;3357;19590;20271;12662;33062;25934;13840;13840;22069;86917;79430;67191;38620.24;10214.24;17368.24 -221;'512;Oman;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;30;30;0;0;566;602;602;333;333;333;333;333;333;1933;2096;3525;2151;1820;1759;1763;2747;3016;3177;4680;5293.89;4854.89;5512.89 -221;'512;Oman;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;658;900;1500;2100;2500;1513;1276;1300;1300;2600;1800;1800;1227;1227;1227;1227;1227;1227;1383;1575;1475;1379;93;771;934;1990;1466;1500;886;5366.96;3934;5583 -221;'512;Oman;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;539;213;629;1874;2025;672;593;620;620;1434;881;881;480;480;480;480;480;480;659;803;630;620;186;4010;616;1131;1381;1514;625;4016.44;3731;5052 -221;'512;Oman;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;4;4;4;4;4;4;197;197;171;216;49;49;49;69;710;164;1368;3171.24;3171.24;3171.24 -221;'512;Oman;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;1;1;1;1;1;1;61;61;60;152;95;95;95;50;526;90;356;3289.89;3289.89;3289.89 -221;'512;Oman;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;734;1500;2100;2100;2500;1493;1262;1500;1500;2600;1800;1800;1277;1277;1277;1277;1277;1277;1335;1418;1426;1386;96;770;916;1957;1423;1460;744;3484.96;3880;5500 -221;'512;Oman;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;834;1250;1874;2025;657;582;754;754;1434;881;881;512;512;512;512;512;512;537;581;615;602;155;3897;575;1041;1279;1413;555;3471.48;3618;4838 -221;'512;Oman;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;4;4;4;4;4;4;167;167;167;191;24;24;24;66;710;164;1368;3171.24;3171.24;3171.24 -221;'512;Oman;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;1;1;1;1;1;1;57;57;57;76;19;19;19;42;526;90;356;3289.89;3289.89;3289.89 -221;'512;Oman;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;2;0;0;255;255 -221;'512;Oman;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;16;0;0;162;162 -221;'512;Oman;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -221;'512;Oman;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;0;0;0;0;0 -221;'512;Oman;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;260;700;700;100;100;100;100;0;0;0;0;0;135;135;135;135;135;135;168;275;275;275;0;0;0;;;;;;; -221;'512;Oman;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;217;86;86;109;109;109;109;0;0;0;0;0;45;45;45;45;45;45;60;109;109;109;0;0;0;;;;;;; -221;'512;Oman;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4;4;4;4;0;0;0;;;;;;; -221;'512;Oman;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;0;0;0;;;;;;; -221;'512;Oman;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;400;493;456;400;400;1600;900;900;1042;1042;1042;1042;1042;1042;1042;1042;1042;1042;0;0;0;;;;;;; -221;'512;Oman;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;151;151;150;137;137;944;436;436;412;412;412;412;412;412;412;412;412;412;0;0;0;;;;;;; -221;'512;Oman;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;163;163;163;163;0;0;0;;;;;;; -221;'512;Oman;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;56;56;56;0;0;0;;;;;;; -221;'512;Oman;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;398;200;800;2000;2000;900;700;900;900;1000;900;900;45;45;45;45;45;45;70;85;93;53;80;754;915;1957;1423;1458;727;3484.96;3625;5245 -221;'512;Oman;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;322;127;543;1765;1765;397;319;483;483;490;445;445;19;19;19;19;19;19;29;54;88;75;149;3891;575;1037;1279;1397;499;3471.48;3456;4676 -221;'512;Oman;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;24;24;24;24;66;710;164;1368;3171.24;3171.24;3171.24 -221;'512;Oman;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;19;19;19;19;38;526;90;356;3289.89;3289.89;3289.89 -221;'512;Oman;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1600;1600;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;598;0;0;0;0;0;0;546;999 -221;'512;Oman;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1485;1485;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;3779;0;0;0;0;0;0;464;731 -221;'512;Oman;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 -221;'512;Oman;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 -221;'512;Oman;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;398;200;800;400;400;900;700;900;900;1000;900;900;40;40;40;40;40;40;40;55;55;9;39;156;915;1942;1372;1372;654;3398.96;2970;4046 -221;'512;Oman;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;322;127;543;280;280;397;319;483;483;490;445;445;17;17;17;17;17;17;17;42;42;8;12;112;575;992;1110;1110;320;3164.48;2786;3509 -221;'512;Oman;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;24;24;66;710;164;1368;3171.24;3171.24;3171.24 -221;'512;Oman;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;19;38;526;90;356;3289.89;3289.89;3289.89 -221;'512;Oman;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;51;86;73;86;109;200 -221;'512;Oman;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;169;287;179;307;206;436 -221;'512;Oman;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;25;25;0;0;0;;;;;;; -221;'512;Oman;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;0;0;0;;;;;;; -221;'512;Oman;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;;;;;;; -221;'512;Oman;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;;;;;;; -221;'512;Oman;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;5;5;5;5;5;5;5;5;13;19;39;0;0;;;;;;; -221;'512;Oman;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;2;2;2;2;2;2;2;2;36;57;136;0;0;;;;;;; -221;'512;Oman;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;600;600;0;0;0;6;200;200;0;0;0;55;55;55;55;55;55;55;16;16;16;16;16;1;0;0;0;17;0;0;0 -221;'512;Oman;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;621;621;0;0;0;4;134;134;0;0;0;36;36;36;36;36;36;36;6;6;6;6;6;0;0;0;0;56;0;0;0 -221;'512;Oman;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;0;0;0;0;0;5;5;5;5;5;5;103;173;65;9;13;17;19;33;43;40;159;1882;54;83 -221;'512;Oman;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;0;0;0;0;0;4;4;4;4;4;4;158;228;21;24;37;119;41;90;102;101;126;544.96;113;214 -221;'512;Oman;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;30;30;4;25;25;25;25;3;0;0;0;0;0;0 -221;'512;Oman;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;4;4;3;76;76;76;76;8;0;0;0;0;0;0 -221;'512;Oman;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;1;13;2;44;1157;2105;2378;1129;1162;1162;1162 -221;'512;Oman;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;3;14;1;15;449;783;590;324;215;215;215 -221;'512;Oman;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;0;18;200;200;20;200;200;200 -221;'512;Oman;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;0;14;21;21;3;21;21;21 -221;'512;Oman;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80000;80000;80000;80000;80000;80000;80000;80000;80000;86000;86000;86000;86000;86000;86000 -221;'512;Oman;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;300;300;300;300;300;300;0;0;400;400;400;7614;7614;7614;4300;4300;4300;786;314;126;107;161;849;163;162;127;360;27;0;15068;43097 -221;'512;Oman;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;30;30;30;30;30;30;0;0;43;78;78;845;845;845;479;479;479;670;146;119;123;79;3358;83;46;109;185;47;0;3766;6440 -221;'512;Oman;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;288;288;0;0;9000;8000;8000;3353;3353;3353;3353;3353;3353;19393;20074;12491;32846;25885;13791;13791;22000;86207;79266;65823;35449;7043;14197 -221;'512;Oman;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;30;30;0;0;566;602;602;332;332;332;332;332;332;1872;2035;3465;1999;1725;1664;1668;2697;2490;3087;4324;2004;1565;2223 -221;'512;Oman;1876;Paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000 -221;'512;Oman;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;3400;3100;5400;7500;9300;12200;13400;11400;10300;9800;9800;12059;14700;18300;9800;6500;8871;13191;17400;17400;61800;56900;56900;66497;66497;66497;78237;78237;78237;93840;98584;83399;107582;139911;171827;168551;134329;118365;146578;159977;141903.63;134387;134584 -221;'512;Oman;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;4445;4750;5741;8662;9296;10171;11449;12150;9785;13318;13318;12817;11867;13959;7874;5282;7964;10565;11626;11626;32782;25599;25599;45318;45318;45318;60035;60035;60035;74922;89538;77523;85333;115425;115478;100120;98369;91167;98653;106794;113434.78;144705;128846 -221;'512;Oman;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;100;100;100;100;100;100;100;100;3400;1500;1500;4249;4249;4249;4249;4249;4249;3181;6653;5915;5210;556;5681;2203;3464;1558;738;3699;18457.35;61248;82470 -221;'512;Oman;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;47;47;47;47;47;47;47;47;1519;1243;1243;2378;2378;2378;2378;2378;2378;3096;5784;4536;3319;713;23204;8220;8692;2271;883;2146;11112.14;43381;40092 -221;'512;Oman;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;2400;2400;3800;6100;6600;9300;5900;7600;7800;7400;7400;8668;8900;13600;2200;2000;4971;8591;8200;8200;31100;23300;23300;28614;28614;28614;34245;34245;34245;34554;39300;32460;36026;42236;38635;26934;37334;31933;31463;26491;25766.08;22951;23689 -221;'512;Oman;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;3285;3245;3813;7061;6641;6205;5973;7626;6605;6498;6498;9021;7658;10156;2395;1699;4019;6312;5216;5216;17955;14336;14336;20531;20531;20531;27675;27675;27675;34174;41100;36483;32794;42616;33071;22435;35485;30052;29297;23068;24894.95;31750;31253 -221;'512;Oman;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;100;100;100;100;100;100;100;100;400;200;200;2465;2465;2465;2465;2465;2465;480;1106;732;260;173;245;222;961;668;457;1932;4061.2;423;1017 -221;'512;Oman;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;47;47;47;47;47;47;47;47;404;362;362;1271;1271;1271;1271;1271;1271;812;1686;1093;385;151;378;215;984;821;517;680;1446;454;1029 -221;'512;Oman;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;400;200;;600;700;1000;1000;600;1100;1200;1200;411;1000;1000;1100;1200;1000;1769;2100;2100;7700;7900;7900;7334;7334;7334;7000;7000;7000;10715;10257;7957;8230;8585;5808;3627;3729;2767;2988;1316;655;809;2024 -221;'512;Oman;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;558;211;;339;541;589;665;447;736;1110;1110;290;440;440;845;710;525;1049;1148;1148;3704;4666;4666;3739;3739;3739;3734;3734;3734;8617;8965;8164;7038;6921;4420;2553;2610;2290;2497;864;555;687;1623 -221;'512;Oman;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2106;2106;2106;2106;2106;2106;16;204;265;2;60;139;24;15;60;6;0;72;4;16 -221;'512;Oman;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;995;995;995;995;995;995;24;132;186;1;8;109;1;6;50;3;0;37;4;12 -221;'512;Oman;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;2000;2200;3800;5500;5900;8300;4900;7000;6700;6200;6200;8257;7900;12600;1100;800;3971;6822;6100;6100;23400;15400;15400;21280;21280;21280;27245;27245;27245;23839;29043;24503;27796;33651;32827;23307;33605;29166;28475;25175;25111.08;22142;21665 -221;'512;Oman;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;2727;3034;3813;6722;6100;5616;5308;7179;5869;5388;5388;8731;7218;9716;1550;989;3494;5263;4068;4068;14251;9670;9670;16792;16792;16792;23941;23941;23941;25557;32135;28319;25756;35695;28651;19882;32875;27762;26800;22204;24339.95;31063;29630 -221;'512;Oman;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;100;100;100;100;100;100;100;100;400;200;200;359;359;359;359;359;359;464;902;467;258;113;106;198;946;608;451;1932;3989.2;419;1001 -221;'512;Oman;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;47;47;47;47;47;47;47;47;404;362;362;276;276;276;276;276;276;788;1554;907;384;143;269;214;978;771;514;680;1409;450;1017 -221;'512;Oman;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;350;313;313;1200;700;700;2245;2245;2245;2245;2245;2245;3129;3984;2715;6923;6858;9423;995;5060;3936;2544;3465;4242.08;1656;1535 -221;'512;Oman;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;327;253;253;886;522;522;1772;1772;1772;1772;1772;1772;2576;3773;3182;5805;5344;6569;848;8093;2985;2165;2704;3197;2245;1490 -221;'512;Oman;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;5;93;164;78;81;1384;2896.2;238;653 -221;'512;Oman;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;26;22;80;161;145;71;220;454;219;556 -221;'512;Oman;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5976;5344;5344;20500;13100;13100;8668;8668;8668;13700;13700;13700;8194;9860;9126;6353;11829;10805;11732;12424;12085;14407;13508;13537.18;13143;13022 -221;'512;Oman;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4424;3419;3419;11979;7921;7921;6840;6840;6840;12478;12478;12478;9228;10644;9241;6071;10750;10946;10525;11594;12109;13312;11161;12246.44;17856;17653 -221;'512;Oman;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;100;100;400;200;200;161;161;161;161;161;161;65;14;37;59;59;26;16;241;80;175;377;687;165;173 -221;'512;Oman;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;47;47;404;362;362;124;124;124;124;124;124;22;23;8;52;52;81;33;230;82;200;266;620;212;223 -221;'512;Oman;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;496;443;443;1700;1600;1600;10367;10367;10367;11300;11300;11300;12516;15199;12662;14520;14964;12599;10580;16121;13145;11524;8202;7331.82;7343;7108 -221;'512;Oman;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;512;396;396;1386;1227;1227;8180;8180;8180;9691;9691;9691;13753;17718;15896;13880;19601;11136;8509;13188;12668;11323;8339;8896.51;10962;10487 -221;'512;Oman;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;198;198;198;198;198;198;399;888;419;188;43;75;89;541;450;195;171;406;16;175 -221;'512;Oman;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;152;152;152;152;152;152;766;1531;873;306;65;166;101;587;544;243;194;335;19;238 -221;'512;Oman;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000 -221;'512;Oman;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;1000;700;1600;1400;2700;2900;7500;3800;2500;2400;2400;3391;5800;4700;7600;4500;3900;4600;9200;9200;30700;33600;33600;37883;37883;37883;43992;43992;43992;59286;59284;50939;71556;97675;133192;141617;96995;86432;115115;133486;116137.55;111436;110895 -221;'512;Oman;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;1160;1505;1928;1601;2655;3966;5476;4524;3180;6820;6820;3796;4209;3803;5479;3583;3945;4253;6410;6410;14827;11263;11263;24787;24787;24787;32360;32360;32360;40748;48438;41040;52539;72809;82407;77685;62884;61115;69356;83726;88539.84;112955;97593 -221;'512;Oman;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;3000;1300;1300;1784;1784;1784;1784;1784;1784;2701;5547;5183;4950;383;5436;1981;2503;890;281;1767;14396.15;60825;81453 -221;'512;Oman;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;1115;881;881;1107;1107;1107;1107;1107;1107;2284;4098;3443;2934;562;22826;8005;7708;1450;366;1466;9666.14;42927;39063 -221;'512;Oman;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1800;1500;1500;751;751;751;751;751;751;2497;1621;1619;3121;3054;3155;3621;5472;5777;6298;12232;9765;10579;13833 -221;'512;Oman;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;832;597;597;824;824;824;824;824;824;3661;2707;2249;5016;4513;4037;4525;5749;7286;7718;14720;12240.58;19403;23790 -221;'512;Oman;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;699;145;93;68;252;131;374;369;444;23;430;67;63;109 -221;'512;Oman;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;300;253;318;48;357;184;494;514;805;39;678;47;105;177 -221;'512;Oman;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20000;30400;30400;34272;34272;34272;40381;40381;40381;54163;56288;47560;66170;93087;128346;136011;91065;80202;108604;121016;106239.55;100429;96464 -221;'512;Oman;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11372;8596;8596;21246;21246;21246;28819;28819;28819;33396;42374;37144;45343;65765;76692;70328;56700;53073;61400;68622;76005.26;92524;72912 -221;'512;Oman;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;1300;1300;1724;1724;1724;1724;1724;1724;1984;5319;5086;4877;105;5286;1605;2033;375;222;1305;14266.15;60696;81334 -221;'512;Oman;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1115;881;881;1041;1041;1041;1041;1041;1041;1851;3645;3121;2775;136;22580;7474;7084;591;283;743;9564.14;42763;38853 -221;'512;Oman;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5500;21700;21700;23727;23727;23727;26100;26100;26100;17817;15600;7422;10887;14574;45038;50407;45852;45002;86159;90640;64882.77;62197;68327 -221;'512;Oman;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2134;3596;3596;14711;14711;14711;16606;16606;16606;10344;9938;4703;6323;8640;20059;19215;20615;23290;39345;45167;38354.26;48822;41330 -221;'512;Oman;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1938;4794;4794;4794;4;4;33;362;41;59;40;14113.15;59792;79141 -221;'512;Oman;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1599;2601;2601;2601;2;2;23;841;98;54;37;8592.14;41400;36723 -221;'512;Oman;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;1400;1400;1306;1306;1306;1306;1306;1306;25555;23745;21518;34549;43576;42543;45319;1125;12585;1755;9936;15221.46;19117;10560 -221;'512;Oman;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4199;1507;1507;809;809;809;809;809;809;14109;15381;14863;20585;24753;23646;21303;1588;9905;2894;7648;14103.5;20019;10093 -221;'512;Oman;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;695;695;695;695;695;695;30;7;10;12;2;20;82;17;12;5;123;42;5;1755 -221;'512;Oman;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;420;420;420;420;420;420;2;25;40;65;1;16;62;30;43;25;38;35;12;1370 -221;'512;Oman;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10300;6700;6700;7564;7564;7564;11300;11300;11300;10699;16709;18486;20088;34618;40392;39301;42504;20574;18344;18067;23084.02;17430;16068 -221;'512;Oman;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4617;3361;3361;4688;4688;4688;10366;10366;10366;8768;16472;16800;16925;31665;32061;28245;33361;18512;18070;14803;21619.07;22168;20225 -221;'512;Oman;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;1300;1300;1029;1029;1029;1029;1029;1029;13;515;278;67;95;5258;1486;1654;271;107;1091;60;855;394 -221;'512;Oman;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1115;881;881;621;621;621;621;621;621;9;778;477;106;130;22559;7386;6209;429;183;647;916;1308;717 -221;'512;Oman;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1200;600;600;1675;1675;1675;1675;1675;1675;92;234;134;646;319;373;984;1584;2041;2346;2373;3051.3;1685;1509 -221;'512;Oman;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;422;132;132;1038;1038;1038;1038;1038;1038;175;583;778;1510;707;926;1565;1136;1366;1091;1004;1928.43;1515;1264 -221;'512;Oman;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;4;4;4;4;4;0;51;51;51;51;44;44 -221;'512;Oman;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;241;241;3;3;3;3;3;4;21;21;21;21;43;43 -221;'512;Oman;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000 -221;'512;Oman;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;1000;700;1600;1400;2700;2900;7500;3800;2500;2400;2400;3391;5800;4700;7600;4500;3900;4600;9200;9200;8900;1700;1700;2860;2860;2860;2860;2860;2860;2626;1375;1760;2265;1534;1691;1985;458;453;213;238;133;428;598 -221;'512;Oman;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;1160;1505;1928;1601;2655;3966;5476;4524;3180;6820;6820;3796;4209;3803;5479;3583;3945;4253;6410;6410;2623;2070;2070;2717;2717;2717;2717;2717;2717;3691;3357;1647;2180;2531;1678;2832;435;756;238;384;294;1028;891 -221;'512;Oman;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;59;59;59;59;59;59;18;83;4;5;26;19;2;101;71;36;32;63;66;10 -221;'512;Oman;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;64;64;64;64;64;64;133;200;4;111;69;62;37;110;54;44;45;55;59;33 -221;'512;Oman;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;184228;173592;242633;151920;211989;183311;164834 -221;'512;Oman;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41278;40978;33385;36678;36498;21828;23324 -221;'512;Oman;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2288;1770;2781;2686;1952;7440;5278 -221;'512;Oman;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14157;1722;1734;150;109;15;42 -221;'512;Oman;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1942;1419;2654;2447;1696;7335;5215 -221;'512;Oman;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101;37;10;146;57;1;29 -221;'512;Oman;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;346;351;127;239;256;105;63 -221;'512;Oman;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14056;1685;1724;4;52;14;13 -221;'512;Oman;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9181;9959;9701;9988;26577;30732;18115 -221;'512;Oman;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1156;869;750;831;784;485;551 -221;'512;Oman;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2617;2530;2907;2240;2816;2394;1970 -221;'512;Oman;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;799;589;314;644;792;175;79 -221;'512;Oman;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12450;7735;10979;9563;3331;5796;7067 -221;'512;Oman;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4367;5585;2292;2673;1967;828;3301 -221;'512;Oman;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1 -221;'512;Oman;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1 -221;'512;Oman;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6 -221;'512;Oman;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9 -221;'512;Oman;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31 -221;'512;Oman;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52 -221;'512;Oman;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;142389;144866;210207;114819;158572;122806;118775 -221;'512;Oman;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19594;24839;25469;23531;17901;10352;11280 -221;'512;Oman;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9011;2084;1849;846;301;419;311 -221;'512;Oman;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;564;6375;719;42;51;288;53 -221;'512;Oman;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6292;4648;4209;11778;18440;13724;13318 -221;'512;Oman;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;641;999;2107;8807;14894;9685;8018 -221;'512;Oman;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102692;112762;114776;112368;120445;142572;137686 -221;'512;Oman;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49888;46933;36552;37897;31652;39009;37327 -221;'512;Oman;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1041;1056;961;1445;1196;1327;1583 -221;'512;Oman;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;478;641;15;10;16;16;3 -221;'512;Oman;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7109;5967;5769;6911;9328;9318;7558 -221;'512;Oman;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;323;265;194;325;471;84;158 -221;'512;Oman;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32306;32193;33965;26060;28123;29250;27456 -221;'512;Oman;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12570;9049;4991;3684;2140;2200;301 -221;'512;Oman;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34226;37002;38203;46729;47208;53103;52138 -221;'512;Oman;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30269;30716;26713;27805;25232;33547;32535 -221;'512;Oman;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28010;36544;35878;31223;34590;49574;48951 -221;'512;Oman;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6248;6262;4639;6073;3793;3162;4330 -164;'582;Pacific Islands Trust Territory;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -164;'582;Pacific Islands Trust Territory;1861;Roundwood;5516;Production;m3;842;865;887;911;934;959;984;1010;1036;1064;1100;1122;1157;1178;1211;1244;1281;1313;1348;1378;1407;1440;1468;1499;1525;1551;1593;1621;1655;1717;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -164;'582;Pacific Islands Trust Territory;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -164;'582;Pacific Islands Trust Territory;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -164;'582;Pacific Islands Trust Territory;1863;Roundwood, non-coniferous;5516;Production;m3;842;865;887;911;934;959;984;1010;1036;1064;1100;1122;1157;1178;1211;1244;1281;1313;1348;1378;1407;1440;1468;1499;1525;1551;1593;1621;1655;1717;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -164;'582;Pacific Islands Trust Territory;1864;Wood fuel;5516;Production;m3;842;865;887;911;934;959;984;1010;1036;1064;1100;1122;1157;1178;1211;1244;1281;1313;1348;1378;1407;1440;1468;1499;1525;1551;1593;1621;1655;1717;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -164;'582;Pacific Islands Trust Territory;1628;Wood fuel, non-coniferous;5516;Production;m3;842;865;887;911;934;959;984;1010;1036;1064;1100;1122;1157;1178;1211;1244;1281;1313;1348;1378;1407;1440;1468;1499;1525;1551;1593;1621;1655;1717;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -164;'582;Pacific Islands Trust Territory;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -164;'582;Pacific Islands Trust Territory;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -164;'582;Pacific Islands Trust Territory;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -164;'582;Pacific Islands Trust Territory;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -164;'582;Pacific Islands Trust Territory;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -164;'582;Pacific Islands Trust Territory;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -164;'582;Pacific Islands Trust Territory;1630;Wood charcoal;5510;Production;t;114;117;120;123;126;129;133;136;140;143;149;151;156;159;164;169;173;177;181;186;190;194;198;201;205;209;215;217;223;231;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -165;'586;Pakistan;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1009187;1130544;898031;810287;1051726.02;1116177;802340 -165;'586;Pakistan;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;150151;135271;63221;59574;101145.73;136210;94104 -165;'586;Pakistan;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;12444;14494;13001;14914;16453;22085;28317;24489;22002;15998;19284;21556;37294;47520;47442;38156;46308;55824;65307;80374;82864;89585;85095;85929;101292;120535;121594;147623;141812;157354;158841;190269;155089;184551;165513;227743;165450;172154;162973;162875;140923;146744;178514;309155;325712;402412;460627;520946;520836;555437;654211;548745;568859;763230;711380;869486;875958;1003305;779443;703249;917957.02;983543;698917 -165;'586;Pakistan;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;2387;1750;1585;1230;887;1193;860;295;225;;;;;;;;;;;;;;;;;;0;;;25;16;615;791;606;740;0;0;0;0;0;0;0;0;634;860;860;5747;5208;5208;35789;55287;66903;84337;94337;82804;124949;129929;117196;46660;44935;81093.73;107957;68662 -165;'586;Pakistan;1861;Roundwood;5516;Production;m3;13241951;13351223;13496769;13595541;13791394;13998583;14218763;14485488;14754818;15072810;15467172;15756442;15940816;16196116;16421752;16732466;16882245;17194329;17487684;17721593;18105150;18590024;19123242;19753283;20342843;20711646;21022054;21349607;22221032;23661012;23790992;24215027;24188253;24276600;24217706;28982000;30860000;31844000;33055000;33560000;35287000;35287000;35287000;29790000;30410000;30450000;33560000;33720000;33720000;33720000;33720000;33720000;33720000;33593349;33593349;33593349;33593349;33593349;33593349;33593349;32437583;32510431;32584146 -165;'586;Pakistan;1861;Roundwood;5616;Import quantity;m3;11200;14500;25300;16000;41800;21500;19300;35600;66800;91300;206800;77000;38600;38600;50900;42200;53800;73500;59800;52000;27400;29600;18700;17400;18300;31800;36400;29900;34700;67523;91982;76825;107900;120000;125000;525000;719900;557800;502700;354900;294900;180000;205835;202254;197250;259400;224000;283000;178312;151397;125009;56464;52954;58628;121797;186672;207746;213540;73240;65789;122065;55921;28558 -165;'586;Pakistan;1861;Roundwood;5622;Import value;1000 USD;3264;4713;2008;1213;2071;1454;1457;1514;3255;4240;10009;4532;1879;1879;4457;3795;5254;7381;6512;5791;3592;3880;2260;1398;1826;2480;2823;2437;1842;3682;3969;6139;6529;7106;12500;11083;18983;15857;20832;20052;16497;11500;20641;20030;23956;30887;27134;34764;20858;22626;23522;12019;11515;14177;24030;36006;38741;39580;14573;13301;17160;7244;5806 -165;'586;Pakistan;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;337;351;1319;1900;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;96;84;96;298;472;105;263;100;0;1416;1413;10;1764;1546 -165;'586;Pakistan;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;16;87;229;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;63;83;276;595;1048;61;114;31;0;149;139;30;165;146 -165;'586;Pakistan;1862;Roundwood, coniferous;5516;Production;m3;616303;612588;601006;600555;594230;604082;628056;687174;705439;763854;862500;813817;824005;818144;804481;832273;742616;794855;795789;816755;846434;883672;924902;973855;1024651;1042616;1040262;1063467;1198928;1293638;1194964;1317321;1321081;1237012;1051466;1737000;1595000;1540000;1620000;2790000;2805000;2805000;2805000;2600000;2630000;2639000;2759000;2802000;2802000;2802000;2802000;2802000;2802000;2675349;2675349;2675349;2675349;2675349;2675349;2675349;2698569;2701538;2704542 -165;'586;Pakistan;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30385;44670;56045;47823;106074;46178;19516 -165;'586;Pakistan;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4014;6951;9933;8556;11272;5119;2484 -165;'586;Pakistan;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;0;1;0;0;234;42 -165;'586;Pakistan;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;0;13;6;6;6;10 -165;'586;Pakistan;1863;Roundwood, non-coniferous;5516;Production;m3;12625648;12738635;12895763;12994986;13197164;13394501;13590707;13798314;14049379;14308956;14604672;14942625;15116811;15377972;15617271;15900193;16139629;16399474;16691895;16904838;17258716;17706352;18198340;18779428;19318192;19669030;19981792;20286140;21022104;22367374;22596028;22897706;22867172;23039588;23166240;27245000;29265000;30304000;31435000;30770000;32482000;32482000;32482000;27190000;27780000;27811000;30801000;30918000;30918000;30918000;30918000;30918000;30918000;30918000;30918000;30918000;30918000;30918000;30918000;30918000;29739014;29808893;29879604 -165;'586;Pakistan;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;177361;168870;17195;17966;15991;9743;9042 -165;'586;Pakistan;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34727;32629;4640;4745;5888;2125;3322 -165;'586;Pakistan;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;1415;1413;10;1530;1504 -165;'586;Pakistan;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;136;133;24;159;136 -165;'586;Pakistan;1864;Wood fuel;5516;Production;m3;12618951;12822223;13028769;13238541;13451394;13668583;13888763;14112488;14339818;14570810;14930172;15281442;15457816;15731116;15984752;16200466;16454245;16607329;16924684;17095593;17382150;17756024;18154242;18619283;19006843;19447646;19856054;20204607;20633032;21043012;21369992;21575027;21986253;22352600;22682706;26920000;28590000;29515000;30670000;30880000;31515000;31515000;31515000;26000000;26500000;26500000;29520000;29660000;29660000;29660000;29660000;29660000;29660000;29533349;29533349;29533349;29533349;29533349;29533349;29533349;28377583;28450431;28524146 -165;'586;Pakistan;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;15;35;35;159;104;70;1462;;;5;8;2;0;90 -165;'586;Pakistan;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;11;79;79;29;58;5;130;;;54;9;33;0;45 -165;'586;Pakistan;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;4;16;1;1;21;186;99;0;1409;1408;10;1408;1408 -165;'586;Pakistan;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;9;42;8;37;18;89;31;0;145;138;30;138;138 -165;'586;Pakistan;1627;Wood fuel, coniferous;5516;Production;m3;514303;522588;531006;539555;548230;557082;566056;575174;584439;593854;608500;622817;630005;641144;651481;660273;670616;676855;689789;696755;708434;723672;739902;758855;774651;792616;809262;823467;840928;857638;870964;879321;896081;911012;924466;1370000;1280000;1200000;1250000;1280000;1280000;1280000;1280000;1075000;1100000;1100000;1220000;1260000;1260000;1260000;1260000;1260000;1260000;1133349;1133349;1133349;1133349;1133349;1133349;1133349;1156569;1159538;1162542 -165;'586;Pakistan;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;8;2;0;90 -165;'586;Pakistan;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;9;33;0;45 -165;'586;Pakistan;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;0;1;0;0;0;0 -165;'586;Pakistan;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;0;13;6;6;6;6 -165;'586;Pakistan;1628;Wood fuel, non-coniferous;5516;Production;m3;12104648;12299635;12497763;12698986;12903164;13111501;13322707;13537314;13755379;13976956;14321672;14658625;14827811;15089972;15333271;15540193;15783629;15930474;16234895;16398838;16673716;17032352;17414340;17860428;18232192;18655030;19046792;19381140;19792104;20185374;20499028;20695706;21090172;21441588;21758240;25550000;27310000;28315000;29420000;29600000;30235000;30235000;30235000;24925000;25400000;25400000;28300000;28400000;28400000;28400000;28400000;28400000;28400000;28400000;28400000;28400000;28400000;28400000;28400000;28400000;27221014;27290893;27361604 -165;'586;Pakistan;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1408;1408;10;1408;1408 -165;'586;Pakistan;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;132;132;24;132;132 -165;'586;Pakistan;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;15;35;35;159;104;70;1462;;;;;;; -165;'586;Pakistan;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;11;79;79;29;58;5;130;;;;;;; -165;'586;Pakistan;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;4;16;1;1;21;186;;;;;;; -165;'586;Pakistan;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;9;42;8;37;18;89;;;;;;; -165;'586;Pakistan;1865;Industrial roundwood;5516;Production;m3;623000;529000;468000;357000;340000;330000;330000;373000;415000;502000;537000;475000;483000;465000;437000;532000;428000;587000;563000;626000;723000;834000;969000;1134000;1336000;1264000;1166000;1145000;1588000;2618000;2421000;2640000;2202000;1924000;1535000;2062000;2270000;2329000;2385000;2680000;3772000;3772000;3772000;3790000;3910000;3950000;4040000;4060000;4060000;4060000;4060000;4060000;4060000;4060000;4060000;4060000;4060000;4060000;4060000;4060000;4060000;4060000;4060000 -165;'586;Pakistan;1865;Industrial roundwood;5616;Import quantity;m3;11200;14500;25300;16000;41800;21500;19300;35600;66800;91300;206800;77000;38600;38600;50900;42200;53800;73500;59800;52000;27400;29600;18700;17400;18300;31800;36400;29900;34700;67523;91982;76825;107900;120000;125000;525000;719900;557800;502700;354900;294900;180000;205835;202254;197250;259400;224000;283000;178312;151382;124974;56429;52795;58524;121727;185210;207746;213540;73235;65781;122063;55921;28468 -165;'586;Pakistan;1865;Industrial roundwood;5622;Import value;1000 USD;3264;4713;2008;1213;2071;1454;1457;1514;3255;4240;10009;4532;1879;1879;4457;3795;5254;7381;6512;5791;3592;3880;2260;1398;1826;2480;2823;2437;1842;3682;3969;6139;6529;7106;12500;11083;18983;15857;20832;20052;16497;11500;20641;20030;23956;30887;27134;34764;20858;22615;23443;11940;11486;14119;24025;35876;38741;39580;14519;13292;17127;7244;5761 -165;'586;Pakistan;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;337;351;1319;1900;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;67;80;80;297;471;84;77;1;0;7;5;0;356;138 -165;'586;Pakistan;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;16;87;229;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;52;74;234;587;1011;43;25;0;0;4;1;0;27;8 -165;'586;Pakistan;1866;Industrial roundwood, coniferous;5516;Production;m3;102000;90000;70000;61000;46000;47000;62000;112000;121000;170000;254000;191000;194000;177000;153000;172000;72000;118000;106000;120000;138000;160000;185000;215000;250000;250000;231000;240000;358000;436000;324000;438000;425000;326000;127000;367000;315000;340000;370000;1510000;1525000;1525000;1525000;1525000;1530000;1539000;1539000;1542000;1542000;1542000;1542000;1542000;1542000;1542000;1542000;1542000;1542000;1542000;1542000;1542000;1542000;1542000;1542000 -165;'586;Pakistan;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13200;6400;13600;20000;20000;17000;113000;383900;276800;295700;232900;232900;150000;100000;98717;22600;46000;24000;48000;4662;13940;5718;8215;17687;16246;19562;26335;30385;44670;56040;47815;106072;46178;19426 -165;'586;Pakistan;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;421;277;586;796;950;1530;2197;10516;7898;14308;14345;14345;9500;8000;6022;2346;4692;2448;4896;197;1428;786;1362;2440;2086;2597;3803;4014;6951;9879;8547;11239;5119;2439 -165;'586;Pakistan;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;234;42 -165;'586;Pakistan;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;4 -165;'586;Pakistan;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13200;6400;13600;20000;20000;17000;113000;383900;276800;295700;232900;232900;150000;100000;98717;22600;46000;24000;48000;4662;13940;5718;8215;17687;16246;19562;26335;30385;44670;56040;47815;106072;46178;19426 -165;'586;Pakistan;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;421;277;586;796;950;1530;2197;10516;7898;14308;14345;14345;9500;8000;6022;2346;4692;2448;4896;197;1428;786;1362;2440;2086;2597;3803;4014;6951;9879;8547;11239;5119;2439 -165;'586;Pakistan;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;234;42 -165;'586;Pakistan;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;4 -165;'586;Pakistan;1867;Industrial roundwood, non-coniferous;5516;Production;m3;521000;439000;398000;296000;294000;283000;268000;261000;294000;332000;283000;284000;289000;288000;284000;360000;356000;469000;457000;506000;585000;674000;784000;919000;1086000;1014000;935000;905000;1230000;2182000;2097000;2202000;1777000;1598000;1408000;1695000;1955000;1989000;2015000;1170000;2247000;2247000;2247000;2265000;2380000;2411000;2501000;2518000;2518000;2518000;2518000;2518000;2518000;2518000;2518000;2518000;2518000;2518000;2518000;2518000;2518000;2518000;2518000 -165;'586;Pakistan;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54323;85582;63225;87900;100000;108000;412000;336000;281000;207000;122000;62000;30000;105835;103537;174650;213400;200000;235000;173650;137442;119256;48214;35108;42278;102165;158875;177361;168870;17195;17966;15991;9743;9042 -165;'586;Pakistan;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3261;3692;5553;5733;6156;10970;8886;8467;7959;6524;5707;2152;2000;12641;14008;21610;26195;24686;29868;20661;21187;22657;10578;9046;12033;21428;32073;34727;32629;4640;4745;5888;2125;3322 -165;'586;Pakistan;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;337;351;1319;1900;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;67;80;80;297;471;84;77;1;0;7;5;0;122;96 -165;'586;Pakistan;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;16;87;229;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;52;74;234;587;1011;43;25;0;0;4;1;0;27;4 -165;'586;Pakistan;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52482;83643;60307;86000;100000;108000;412000;336000;281000;207000;122000;62000;30000;15000;8373;10650;15400;12000;18000;43534;16792;24252;8752;6776;6183;14974;11983;11986;21208;7487;5676;10006;5844;773 -165;'586;Pakistan;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3155;3590;5412;5533;6156;10970;8886;8467;7959;6524;5707;2152;2000;2000;1745;1310;2195;1430;2569;2754;4259;8071;3438;3909;4985;3997;3418;3260;4238;2599;1840;3126;1371;371 -165;'586;Pakistan;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;2;23;23;3;84;0;0;0;0;0;0;25;1 -165;'586;Pakistan;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;4;16;16;122;43;0;0;0;0;0;0;21;0 -165;'586;Pakistan;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1841;1939;2918;1900;0;0;0;0;0;0;0;0;0;90835;95164;164000;198000;188000;217000;130116;120650;95004;39462;28332;36095;87191;146892;165375;147662;9708;12290;5985;3899;8269 -165;'586;Pakistan;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106;102;141;200;0;0;0;0;0;0;0;0;0;10641;12263;20300;24000;23256;27299;17907;16928;14586;7140;5137;7048;17431;28655;31467;28391;2041;2905;2762;754;2951 -165;'586;Pakistan;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;337;351;1319;1900;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;58;78;57;274;468;0;77;1;0;7;5;0;97;95 -165;'586;Pakistan;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;16;87;229;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;45;70;218;571;889;0;25;0;0;4;1;0;6;4 -165;'586;Pakistan;1868;Sawlogs and veneer logs;5516;Production;m3;446000;350000;280000;150000;115000;101000;97000;150000;197000;281000;322000;255000;256000;233000;199000;288000;178000;330000;299000;354000;442000;543000;668000;822000;1013000;930000;820000;788000;1219000;2238000;2030000;2238000;1790000;1500000;1100000;1605000;1685000;1729000;1765000;2045000;2985000;2985000;2985000;3010000;3040000;3041000;3087000;3093000;3093000;3093000;3093000;3093000;3093000;3093000;3093000;3093000;3093000;3093000;3093000;3093000;3093000;3093000;3093000 -165;'586;Pakistan;1868;Sawlogs and veneer logs;5616;Import quantity;m3;9900;6200;700;9100;12900;15300;15900;31500;56200;23300;31300;50000;11600;11600;49500;40800;53700;73400;59200;51400;26800;29300;17800;16500;17000;31400;35800;29700;33000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -165;'586;Pakistan;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;3073;4151;1222;836;1212;1076;1236;1018;2538;1048;1211;3718;1065;1065;4350;3688;5248;7375;6454;5733;3534;3854;2208;1346;1740;2454;2789;2426;1760;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -165;'586;Pakistan;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;92000;80000;60000;50000;35000;36000;50000;100000;109000;157000;241000;178000;180000;163000;139000;157000;57000;102000;90000;103000;121000;142000;167000;196000;230000;230000;210000;218000;335000;413000;300000;413000;400000;300000;100000;330000;280000;300000;325000;1460000;1460000;1460000;1460000;1460000;1460000;1460000;1460000;1460000;1460000;1460000;1460000;1460000;1460000;1460000;1460000;1460000;1460000;1460000;1460000;1460000;1460000;1460000;1460000 -165;'586;Pakistan;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;;;100;2200;10500;8400;4900;800;200;1300;1300;49000;700;700;2500;2000;8000;14400;11200;2200;1200;3700;4100;5400;500;800;2400;300;1500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -165;'586;Pakistan;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;;;5;178;996;536;262;38;9;60;60;3661;65;65;243;195;771;1479;1181;250;143;463;397;390;52;50;174;22;88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -165;'586;Pakistan;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;354000;270000;220000;100000;80000;65000;47000;50000;88000;124000;81000;77000;76000;70000;60000;131000;121000;228000;209000;251000;321000;401000;501000;626000;783000;700000;610000;570000;884000;1825000;1730000;1825000;1390000;1200000;1000000;1275000;1405000;1429000;1440000;585000;1525000;1525000;1525000;1550000;1580000;1581000;1627000;1633000;1633000;1633000;1633000;1633000;1633000;1633000;1633000;1633000;1633000;1633000;1633000;1633000;1633000;1633000;1633000 -165;'586;Pakistan;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;9900;6200;600;6900;2400;6900;11000;30700;56000;22000;30000;1000;10900;10900;47000;38800;45700;59000;48000;49200;25600;25600;13700;11100;16500;30600;33400;29400;31500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -165;'586;Pakistan;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;3073;4151;1217;658;216;540;974;980;2529;988;1151;57;1000;1000;4107;3493;4477;5896;5273;5483;3391;3391;1811;956;1688;2404;2615;2404;1672;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -165;'586;Pakistan;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50000;50000;56000;59000;59000;59000;59000;59000;59000;59000;59000;59000;59000;59000;59000;59000;59000;59000;59000 -165;'586;Pakistan;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50000;50000;56000;59000;59000;59000;59000;59000;59000;59000;59000;59000;59000;59000;59000;59000;59000;59000;59000 -165;'586;Pakistan;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -165;'586;Pakistan;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -165;'586;Pakistan;1870;Pulpwood and particles (1961-1997);5516;Production;m3;14000;12000;16000;30000;43000;42000;40000;25000;15000;11000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -165;'586;Pakistan;1870;Pulpwood and particles (1961-1997);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -165;'586;Pakistan;1870;Pulpwood and particles (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -165;'586;Pakistan;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;14000;12000;16000;30000;43000;42000;40000;25000;15000;11000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -165;'586;Pakistan;1871;Other industrial roundwood;5516;Production;m3;163000;167000;172000;177000;182000;187000;193000;198000;203000;210000;215000;220000;227000;232000;238000;244000;250000;257000;264000;272000;281000;291000;301000;312000;323000;334000;346000;357000;369000;380000;391000;402000;412000;424000;435000;457000;585000;600000;620000;635000;787000;787000;787000;780000;820000;859000;897000;908000;908000;908000;908000;908000;908000;908000;908000;908000;908000;908000;908000;908000;908000;908000;908000 -165;'586;Pakistan;1871;Other industrial roundwood;5616;Import quantity;m3;1300;8300;24600;6900;28900;6200;3400;4100;10600;68000;175500;27000;27000;27000;1400;1400;100;100;600;600;600;300;900;900;1300;400;600;200;1700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -165;'586;Pakistan;1871;Other industrial roundwood;5622;Import value;1000 USD;191;562;786;377;859;378;221;496;717;3192;8798;814;814;814;107;107;6;6;58;58;58;26;52;52;86;26;34;11;82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -165;'586;Pakistan;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;10000;10000;10000;11000;11000;11000;12000;12000;12000;13000;13000;13000;14000;14000;14000;15000;15000;16000;16000;17000;17000;18000;18000;19000;20000;20000;21000;22000;23000;23000;24000;25000;25000;26000;27000;37000;35000;40000;45000;50000;65000;65000;65000;65000;70000;79000;79000;82000;82000;82000;82000;82000;82000;82000;82000;82000;82000;82000;82000;82000;82000;82000;82000 -165;'586;Pakistan;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;153000;157000;162000;166000;171000;176000;181000;186000;191000;197000;202000;207000;213000;218000;224000;229000;235000;241000;248000;255000;264000;273000;283000;293000;303000;314000;325000;335000;346000;357000;367000;377000;387000;398000;408000;420000;550000;560000;575000;585000;722000;722000;722000;715000;750000;780000;818000;826000;826000;826000;826000;826000;826000;826000;826000;826000;826000;826000;826000;826000;826000;826000;826000 -165;'586;Pakistan;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;1300;8300;24600;6900;28900;6200;3400;4100;10600;68000;175500;27000;27000;27000;1400;1400;100;100;600;600;600;300;900;900;1300;400;600;200;1700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -165;'586;Pakistan;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;191;562;786;377;859;378;221;496;717;3192;8798;814;814;814;107;107;6;6;58;58;58;26;52;52;86;26;34;11;82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -165;'586;Pakistan;1630;Wood charcoal;5510;Production;t;17593;18063;18546;19041;19550;20072;20609;21159;21725;22305;23064;23826;24353;25030;25691;26318;27015;27577;28407;29036;29872;30870;31931;33124;34216;35459;36677;37821;100000;57000;50000;57000;100000;100000;110000;120000;110000;51302;52928;54606;56206;57853;59549;62000;64000;64835;72000;75000;70365;72311;74145;76026;77954;79931;81958;83602;85279;86990;88735;90515;92310;94140;96006 -165;'586;Pakistan;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;200;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;139;154;239;199;369;697;732;288;548;304;98;80;72;70 -165;'586;Pakistan;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;46;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;86;72;83;130;221;310;456;489;464;239;111;97;100;64 -165;'586;Pakistan;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;9;83;5;5;61;55;97;97;36;2;2;2;1;0 -165;'586;Pakistan;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;4;24;5;5;21;32;49;49;22;6;6;6;0;0 -165;'586;Pakistan;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;620000;620000;620000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -165;'586;Pakistan;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;396;483;300;113;208;372;519;199;43;324;1567;1374.98;212;1299 -165;'586;Pakistan;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;150;1785;1676;118;209;221;312;142;176;77;277;412;226;254 -165;'586;Pakistan;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;3034;3373;395;445;87;120;112;295;294;33;33;34;34 -165;'586;Pakistan;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;1156;1426;290;68;53;32;49;121;120;1;1;13;13 -165;'586;Pakistan;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;29;32;32;53;53;11;15;12;7;8;1;35 -165;'586;Pakistan;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1585;1585;12;12;12;12;66;18;3;4;11;14;15 -165;'586;Pakistan;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;339;339;17;17;1;2;2;1;0;0;0;0 -165;'586;Pakistan;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;270;270;21;21;14;2;2;1;0;0;0;0 -165;'586;Pakistan;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;693000;693000;506000;510000;620000;620000;620000;620000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -165;'586;Pakistan;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;300;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;396;454;271;81;176;319;466;188;28;312;1560;1366.98;211;1264 -165;'586;Pakistan;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;17;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;150;200;91;106;197;209;300;76;158;74;273;401;212;239 -165;'586;Pakistan;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;3034;3034;56;428;70;119;110;293;293;33;33;34;34 -165;'586;Pakistan;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;1156;1156;20;47;32;18;47;119;119;1;1;13;13 -165;'586;Pakistan;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;16;23;23;23;977;860;91;77;1487 -165;'586;Pakistan;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;66;75;75;75;436;211;254;258;357 -165;'586;Pakistan;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;417;173;136;135;225 -165;'586;Pakistan;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;95;132;261;73 -165;'586;Pakistan;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;16;23;23;23;19;13;14;10;245 -165;'586;Pakistan;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;66;75;75;75;133;135;225;194;178 -165;'586;Pakistan;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;417;169;130;135;42 -165;'586;Pakistan;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;93;129;261;46 -165;'586;Pakistan;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;958;847;77;67;1242 -165;'586;Pakistan;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;303;76;29;64;179 -165;'586;Pakistan;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;4;6;0;183 -165;'586;Pakistan;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2;3;0;27 -165;'586;Pakistan;1872;Sawnwood;5516;Production;m3;105000;84000;99000;95000;71000;72000;65000;95000;100000;135000;155000;293000;104000;98000;79000;86000;27000;39000;55000;55000;65000;75000;615000;578000;589000;647000;659000;755000;1022000;1450000;1520000;1450000;1503000;1127000;1266000;1280000;1024000;1051000;1075000;1087000;1180000;1180000;1180000;1260000;1288000;1313000;1363000;1381000;1381000;1381000;1381000;1381000;1381000;1381000;1381000;1381000;1381000;1381000;1381000;1381000;1381000;1381000;1381000 -165;'586;Pakistan;1872;Sawnwood;5616;Import quantity;m3;6700;8100;1800;60300;50000;150700;165200;306400;125200;48600;34300;38600;36600;30900;30900;53200;60800;62900;52300;76800;170500;145200;136800;119700;82200;77400;76800;107200;122400;104900;87300;13530;80000;85000;60000;62000;65700;37800;40300;35800;28300;37500;54876;90611;96200;120000;98400;129000;204200;208179;263050;298024;347080;432575;459282;559696;326440;513000;535914;463413;576295;461471;386490 -165;'586;Pakistan;1872;Sawnwood;5622;Import value;1000 USD;3273;2660;3482;5551;5409;8249;9506;10826;8413;3596;2284;2813;3120;2622;2622;5208;5344;5923;5315;8192;11087;15603;13628;14983;5610;5292;5012;6299;5993;5141;4354;4659;5592;5106;6600;6800;2280;1479;5204;1830;2036;4000;9677;18073;19248;24050;19681;26018;39814;47969;63861;74727;88453;116454;117510;139230;83561;140311;131834;109046;184689;139836;92610 -165;'586;Pakistan;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;332;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5;139;2;150;462;1527;2327;447;139;129;168;579;177;651 -165;'586;Pakistan;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;7;178;10;48;239;421;655;129;46;36;162;257;67;117 -165;'586;Pakistan;1632;Sawnwood, coniferous;5516;Production;m3;25000;34000;54000;25000;20500;31000;32500;75000;85000;115000;137500;208000;92500;81500;72500;78500;19500;31500;47500;47500;57500;67500;134000;192000;224000;186000;212000;314000;286000;312000;240000;312000;577000;432000;485000;500000;400000;400000;410000;415000;435000;435000;435000;420000;432000;432000;453000;462000;462000;462000;462000;462000;462000;462000;462000;462000;462000;462000;462000;462000;462000;462000;462000 -165;'586;Pakistan;1632;Sawnwood, coniferous;5616;Import quantity;m3;1400;2150;550;7800;1950;11450;23700;25450;27700;14600;15300;14600;13300;10450;10450;38100;44350;56350;41550;50650;54050;31100;31100;8100;10200;11900;8800;6200;1400;300;300;1264;7000;8000;6000;8000;3700;2700;5500;5900;5300;7500;9900;32705;36200;45000;36400;48000;178400;181229;236000;263114;309610;386465;411532;499476;275000;473000;471914;410413;519295;417471;354490 -165;'586;Pakistan;1632;Sawnwood, coniferous;5622;Import value;1000 USD;1345;1075;1714;575;150;640;1373;1388;1986;1104;994;1148;1017;768;768;3754;3964;5238;4160;5191;5499;2560;2560;475;600;216;84;117;73;18;18;48;1617;530;540;720;131;107;186;220;737;1000;2506;7815;8648;10750;8697;11668;31393;37351;50715;56539;69493;93952;87857;104122;52800;116831;106362;87475;157215;116648;78562 -165;'586;Pakistan;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;121;456;1374;2093;417;73;129;0;48;7;7 -165;'586;Pakistan;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;33;233;300;537;118;21;36;0;86;16;16 -165;'586;Pakistan;1633;Sawnwood, non-coniferous;5516;Production;m3;80000;50000;45000;70000;50500;41000;32500;20000;15000;20000;17500;85000;11500;16500;6500;7500;7500;7500;7500;7500;7500;7500;481000;386000;365000;461000;447000;441000;736000;1138000;1280000;1138000;926000;695000;781000;780000;624000;651000;665000;672000;745000;745000;745000;840000;856000;881000;910000;919000;919000;919000;919000;919000;919000;919000;919000;919000;919000;919000;919000;919000;919000;919000;919000 -165;'586;Pakistan;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;5300;5950;1250;52500;48050;139250;141500;280950;97500;34000;19000;24000;23300;20450;20450;15100;16450;6550;10750;26150;116450;114100;105700;111600;72000;65500;68000;101000;121000;104600;87000;12266;73000;77000;54000;54000;62000;35100;34800;29900;23000;30000;44976;57906;60000;75000;62000;81000;25800;26950;27050;34910;37470;46110;47750;60220;51440;40000;64000;53000;57000;44000;32000 -165;'586;Pakistan;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;1928;1585;1768;4976;5259;7609;8133;9438;6427;2492;1290;1665;2103;1854;1854;1454;1380;685;1155;3001;5588;13043;11068;14508;5010;5076;4928;6182;5920;5123;4336;4611;3975;4576;6060;6080;2149;1372;5018;1610;1299;3000;7171;10258;10600;13300;10984;14350;8421;10618;13146;18188;18960;22502;29653;35108;30761;23480;25472;21571;27474;23188;14048 -165;'586;Pakistan;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;325;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5;139;2;29;6;153;234;30;66;0;168;531;170;644 -165;'586;Pakistan;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5;178;10;15;6;121;118;11;25;0;162;171;51;101 -165;'586;Pakistan;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;148000;148000;148000;170000;180000;184000;213000;217000;217000;217000;217000;217000;217000;217000;217000;217000;217000;217000;217000;217000;217000;217000;217000 -165;'586;Pakistan;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;2000;2300;5300;5000;5000;4000;6000;2200;1900;4600;3400;1300;1800;700;1100;1100;1000;700;800;2800;2500;2100;1700;2000;3000;3000;2000;2000;1500;2800;7000;7000;7000;12000;15000;26000;16200;27000;27000;2015;3185;3362;3369;3786;3567;3602;4305;5101;5751;5230;7682;7764;7676 -165;'586;Pakistan;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;189;238;507;507;550;500;800;643;554;1343;2205;1251;1581;573;594;594;745;445;619;1617;1566;1957;1822;1136;1755;1755;1463;1500;1483;2244;3900;3900;3900;4173;5216;9050;5615;9389;9389;3480;5025;3805;2738;3483;3809;4633;6587;6940;6897;5434;6153;8708;9120 -165;'586;Pakistan;1634;Veneer sheets;5916;Export quantity;m3;;;;;0;;;;;;;;;;;;;;;;;;;;;;;;;;;70;0;0;0;0;0;0;0;0;0;0;0;148;131;131;125;118;118;64;26;262;26;364;22;6;26;10;3;3;18;18;9 -165;'586;Pakistan;1634;Veneer sheets;5922;Export value;1000 USD;;;;;0;;;;;;;;;;;;;;;;;;;;;;;;;;;103;0;0;0;0;0;0;0;0;0;0;0;634;860;860;452;426;426;118;25;326;47;594;34;9;14;18;25;2;4;9;9 -165;'586;Pakistan;1873;Wood-based panels;5516;Production;m3;2400;3300;3300;3300;4400;8900;15159;15059;15375;12875;11375;16439;35581;31700;27100;27100;23500;47100;52000;47800;47800;53800;53800;53800;67000;72400;82500;84600;97500;83400;87300;83000;90400;94400;95000;110000;107000;109000;117000;137000;206000;206000;206000;254000;278000;297000;308000;330000;330000;330000;330000;330000;330000;330000;330000;330000;330000;330000;331000;334000;334000;334000;334000 -165;'586;Pakistan;1873;Wood-based panels;5616;Import quantity;m3;1000;4500;7400;10100;7700;14825;10392;2648;1127;1327;3180;3485;1800;1800;2300;5700;3900;2800;3000;7000;4500;4300;3500;7900;10000;10900;13400;3000;2400;4100;2700;4884;9100;12100;14000;11800;36000;57200;66150;64700;55800;61800;72543;205862;185920;249147;194700;261200;261200;97156;116718;107443;118838;123243;129026;131562;129292;131451;117654;86719;44925.26;26346;41059 -165;'586;Pakistan;1873;Wood-based panels;5622;Import value;1000 USD;298;592;895;1314;1366;1972;1487;562;219;276;662;616;461;481;920;1418;1141;875;930;2425;1841;1791;759;1448;1679;1541;1540;727;1061;1696;1069;1818;3556;4706;5442;1509;3705;5811;5826;5385;4710;5966;10070;46300;42311;59600;44089;62025;62025;40154;51276;48980;51817;53061;65876;72776;71461;57376;40382;39303;34084.06;24691;35178 -165;'586;Pakistan;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97;300;200;1400;0;0;0;0;0;0;0;0;0;0;0;120;116;116;26762;72829;72011;76777;94118;65315;44429;51075;45990;23166;22862;90446.79;76349;43589 -165;'586;Pakistan;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;85;43;310;0;0;0;0;0;0;0;0;0;0;0;505;488;488;22879;38755;37772;41390;47192;39694;37165;39859;36531;7266;7146;27817.24;25120;28231 -165;'586;Pakistan;1640;Plywood and LVL;5516;Production;m3;2400;3300;3300;3300;4400;4400;4600;4500;4500;6000;5000;3200;3000;3700;2100;2100;1100;1100;2800;2800;2800;2800;2800;2800;6000;8000;15000;18000;14000;13000;15000;13000;15000;20000;25000;30000;35000;36000;38000;47000;148000;148000;148000;150000;154000;163000;169000;174000;174000;174000;174000;174000;174000;174000;174000;174000;174000;174000;175000;178000;178000;178000;178000 -165;'586;Pakistan;1640;Plywood and LVL;5616;Import quantity;m3;500;3300;3900;500;1600;2400;2600;1700;600;800;1600;1800;1400;1400;1100;1100;700;800;1100;1400;1800;1800;900;400;600;600;100;300;200;1100;1000;1300;5000;7000;8000;400;100;500;350;1200;1000;1000;4000;38650;41650;68000;43000;71000;71000;19262;22378;34314;31426;17154;23354;32543;52254;32091;16186;17294;16496;9422;21862 -165;'586;Pakistan;1640;Plywood and LVL;5622;Import value;1000 USD;59;386;332;104;290;252;270;390;135;192;382;388;361;361;402;440;277;311;426;560;1038;1038;322;147;249;249;39;100;78;419;349;415;2225;3106;3652;246;86;324;322;581;417;417;1304;16112;17362;28100;17775;29352;29352;6501;8175;14103;13481;10428;14316;15795;18433;12805;5929;4970;7467;5747;21457 -165;'586;Pakistan;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97;100;0;0;0;0;0;0;0;0;0;0;0;0;0;120;116;116;7744;12774;17448;13361;16685;10218;3572;3524;3813;9222;10473;6626;644;109 -165;'586;Pakistan;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;42;0;0;0;0;0;0;0;0;0;0;0;0;0;505;488;488;3646;4217;6319;4386;5504;4227;1757;1423;1959;2185;2492;1768;320;15 -165;'586;Pakistan;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30 -165;'586;Pakistan;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28 -165;'586;Pakistan;1646;Particle board and OSB (1961-1994);5516;Production;m3;;;;;;4500;7400;7400;7400;3400;2900;8500;27000;20000;17000;18000;15700;39900;40000;40000;40000;40000;40000;40000;53000;56000;57000;59000;62000;54000;57000;54000;55000;50000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -165;'586;Pakistan;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;200;600;500;500;500;100;100;100;100;100;100;300;500;100;100;214;1000;1000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -165;'586;Pakistan;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;24;69;91;87;84;14;22;50;54;54;62;200;390;240;135;48;225;290;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -165;'586;Pakistan;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55000;60000;50000;51000;54000;60000;0;0;0;55000;60000;75000;64000;76000;76000;76000;76000;76000;76000;76000;76000;76000;76000;76000;76000;76000;76000;76000;76000 -165;'586;Pakistan;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;300;100;1300;1300;500;500;500;500;4779;6500;8000;7500;9000;9000;854;529;2946;83;87;1034;903;369;369;351;313;745;634;1811 -165;'586;Pakistan;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;299;85;57;315;543;114;114;114;114;1762;2386;2700;2556;3068;3068;2061;1412;1217;101;133;993;743;1745;1745;1195;899;1345.35;991;649 -165;'586;Pakistan;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;316;421;346;371;396;239;103;76;76;3810;3711;11115.83;10797;11216 -165;'586;Pakistan;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;351;398;401;435;401;189;124;60;60;1310;1138;2469.18;2081;1544 -165;'586;Pakistan;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;24;35;26;13;23;18;31;63;15;8;45;3;30 -165;'586;Pakistan;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;112;142;70;86;86;77;70;67;43;15;22;3;8 -165;'586;Pakistan;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;50;338;187;154;80 -165;'586;Pakistan;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;8;39;36;22;18 -165;'586;Pakistan;1874;Fibreboard;5516;Production;m3;;;;;;;3159;3159;3475;3475;3475;4739;5581;8000;8000;7000;6700;6100;9200;5000;5000;11000;11000;11000;8000;8400;10500;7600;21500;16400;15300;16000;20400;24400;15000;20000;22000;22000;25000;30000;58000;58000;58000;49000;64000;59000;75000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000 -165;'586;Pakistan;1874;Fibreboard;5616;Import quantity;m3;500;1200;3500;9600;6100;12425;7792;948;527;527;1580;1685;400;400;1200;4600;3000;1400;1400;5100;2200;2400;2500;7400;9300;10200;13200;2400;1700;2900;1600;3370;3100;4100;5000;11100;35800;55400;64500;63000;54300;60300;68043;162433;137770;173147;144200;181200;181200;76987;93787;70148;87303;105989;104615;98098;76638;98928;101102;69104;27639.26;16287;17356 -165;'586;Pakistan;1874;Fibreboard;5622;Import value;1000 USD;239;206;563;1210;1076;1720;1217;172;84;84;280;228;100;120;518;978;840;495;413;1778;719;739;415;1251;1376;1238;1439;427;593;1037;585;1355;1106;1310;1491;1178;3562;5172;4961;4690;4179;5435;8652;28426;22563;28800;23758;29605;29605;31534;41577;33518;38165;42414;50481;56161;51213;42759;33215;33419;25249.71;17950;13064 -165;'586;Pakistan;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;1400;0;0;0;0;0;0;0;0;0;0;0;0;0;0;18702;59634;54217;63045;77037;54858;40752;47475;42101;10084;8340;72517.95;64754;32184 -165;'586;Pakistan;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;43;310;0;0;0;0;0;0;0;0;0;0;0;0;0;0;18882;34140;31052;36569;41287;35278;35283;38376;34512;3763;3477;23544.06;22697;26654 -165;'586;Pakistan;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7000;7000;10000;10000;11000;13000;23000;23000;23000;6000;8000;3000;11000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000 -165;'586;Pakistan;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;7400;13500;6800;6200;7800;1500;1500;1500;10234;11570;15828;10600;10600;10600;6005;4844;2740;3463;3140;2715;5191;2808;1169;53;23533;326;60;199 -165;'586;Pakistan;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;611;784;1561;624;360;683;385;385;385;2437;2753;4400;2987;2987;2987;3894;3042;1769;2364;2102;1607;3282;1569;795;17;11899;117;80;170 -165;'586;Pakistan;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108;342;240;88;83;83;5738;3051;3;3;3;3;3 -165;'586;Pakistan;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;170;193;52;49;49;3828;1896;3;3;3;3;3 -165;'586;Pakistan;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;13000;12000;12000;14000;17000;35000;35000;35000;43000;56000;56000;64000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000 -165;'586;Pakistan;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;1400;20400;47400;57100;51900;52000;58000;64344;150000;123000;150000;128000;165000;165000;50785;65861;46381;61989;79514;73289;67093;55031;64029;56747;24777;4845;2614;5589 -165;'586;Pakistan;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;580;171;1816;4415;4489;3683;3746;5000;7999;25721;19372;23600;20159;26006;26006;19802;28666;20567;24187;28051;33791;36712;29575;21037;18640;11899;10389;5843;4006 -165;'586;Pakistan;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4406;8052;17395;23834;14805;8296;4670;5738;3051;6601;5665;9912;10141;4916 -165;'586;Pakistan;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4752;4555;9740;15671;8486;5209;4514;3828;1896;2443;2342;2278;2714;3246 -165;'586;Pakistan;1650;Other fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12000;8000;4800;8000;12000;16000;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 -165;'586;Pakistan;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;200;900;400;3000;700;1200;200;200;200;200;1055;1100;1100;1000;2300;1900;1200;1200;3300;800;800;2199;2199;3200;7319;5600;5600;5600;20197;23082;21027;21851;23335;28611;25814;18799;33730;44302;20794;22468.26;13613;11568 -165;'586;Pakistan;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;20;87;37;158;67;120;42;42;42;42;393;420;420;300;223;185;133;112;324;48;50;268;268;438;800;612;612;612;7838;9869;11182;11614;12261;15083;16167;20069;20927;14558;9621;14743.71;12027;8888 -165;'586;Pakistan;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;1400;0;0;0;0;0;0;0;0;0;0;0;0;0;0;14296;51474;36480;38971;62144;46479;35999;35999;35999;3480;2672;62602.95;54610;27265 -165;'586;Pakistan;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;43;310;0;0;0;0;0;0;0;0;0;0;0;0;0;0;14130;29531;21142;20705;32749;30020;30720;30720;30720;1317;1132;21263.06;19980;23405 -165;'586;Pakistan;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;;;;;;;3159;3159;3475;3475;3475;4739;5581;8000;8000;7000;6700;6100;9200;5000;5000;11000;11000;11000;8000;8400;10500;7600;9500;8400;10500;8000;8400;8400;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -165;'586;Pakistan;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;500;1200;3500;9600;6100;12425;7792;948;527;527;1580;1685;400;400;1200;4600;3000;1400;1400;5100;2200;2200;1600;7000;6300;9500;12000;2200;1500;2700;1400;2315;2000;3000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -165;'586;Pakistan;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;239;206;563;1210;1076;1720;1217;172;84;84;280;228;100;120;518;978;840;495;413;1778;719;719;328;1214;1218;1171;1319;385;551;995;543;962;686;890;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -165;'586;Pakistan;1879;Total fibre furnish;5510;Production;t;24500;23500;29000;42500;55800;55500;50000;46300;43800;27800;42000;50000;50000;50000;80000;76000;76000;82000;82000;82000;82000;82000;130000;173000;173000;137000;145000;243000;230000;309000;231000;271000;195000;205000;220000;235000;245000;287000;294000;344000;1063000;1063000;1076000;531000;563000;563000;582000;615000;615000;615000;615000;615000;615000;615000;615000;615000;615000;615000;615000;615000;615000;615000;615000 -165;'586;Pakistan;1879;Total fibre furnish;5610;Import quantity;t;10500;7400;9200;6000;5700;12600;10900;17100;14400;5900;7400;8800;5700;6700;6600;6100;6400;6900;11200;12200;15100;16300;20100;19500;28900;39800;55100;57800;44400;83000;74300;77071;82900;91900;93000;95000;74100;99600;71700;69300;82000;105500;136032;163976;188502;204124;151904;202604;202604;187962;213120;237539;258982;253593;219369;260288;344027;501236;453485;596469;502167.49;470939;415382 -165;'586;Pakistan;1879;Total fibre furnish;5622;Import value;1000 USD;1427;1041;1290;1176;825;1047;1510;3010;3962;1361;967;1706;1149;2198;2174;2384;2275;2451;3798;4301;7314;4814;7021;5998;8197;9825;12317;18306;10822;23768;23701;28223;26279;25663;24002;31925;24636;30492;26891;28030;19772;22578;29171;48279;58362;64393;51373;62889;62889;91309;95823;94383;109423;123448;109841;118075;153906;213968;174536;192648;238539.86;347258;218251 -165;'586;Pakistan;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;15962;2604;2090;1795;1219;1568;960;1043;3860;1912;1736;1430.27;1583;1680 -165;'586;Pakistan;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3731;1446;1079;992;541;664;465;323;1252;486;821;771;404;511 -165;'586;Pakistan;1878;Pulp for paper;5510;Production;t;24500;23500;29000;42500;55800;55500;50000;46300;43800;27800;42000;50000;50000;50000;50000;50000;50000;56000;56000;56000;56000;56000;80000;108000;108000;107000;118000;177000;181000;183000;159000;145000;145000;150000;160000;165000;170000;207000;207000;249000;393000;393000;406000;386000;413000;413000;426000;452000;452000;452000;452000;452000;452000;452000;452000;452000;452000;452000;452000;452000;452000;452000;452000 -165;'586;Pakistan;1878;Pulp for paper;5610;Import quantity;t;10500;7400;9200;6000;5700;12600;10900;17100;14400;5900;7400;8800;5700;6700;6600;6100;6400;6900;11200;12200;12600;11700;16100;14000;18900;27300;37500;36900;28700;63500;64800;51004;56100;68900;53000;55700;46600;50700;40500;45900;30500;30500;32237;63976;79654;93804;78904;91604;91604;78109;82914;100366;127163;143511;108747;132618;222449;238215;210743;289491;247914.02;321093;283328 -165;'586;Pakistan;1878;Pulp for paper;5622;Import value;1000 USD;1427;1041;1290;1176;825;1047;1510;3010;3962;1361;967;1706;1149;2198;2174;2384;2275;2451;3798;4301;6903;3947;6274;5053;6765;8286;10862;12703;8896;20847;22278;24860;22776;23300;21500;27335;19451;24253;22713;24507;13578;13578;14988;34790;42270;49493;41526;47916;47916;70075;67741;70146;85694;102535;86324;94551;132093;184458;142139;155423;189503.3;300857;189912 -165;'586;Pakistan;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2215;1649;1407;1753;849;721;452;148;40;205;235;235;22;303 -165;'586;Pakistan;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1552;1192;818;963;445;451;285;26;45;157;539;539;49;286 -165;'586;Pakistan;1875;Wood pulp;5510;Production;t;3500;3500;4000;7500;10800;10500;10000;6300;3800;2800;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;32000;25000;60000;83000;83000;96000;61000;63000;63000;66000;82000;82000;82000;82000;82000;82000;82000;82000;82000;82000;82000;82000;82000;82000;82000;82000 -165;'586;Pakistan;1875;Wood pulp;5610;Import quantity;t;10500;7400;13500;6000;6600;13700;13100;17500;15400;6500;8000;9400;6300;7300;7200;6700;8000;8500;12800;13800;14200;11800;15000;17400;23300;27400;37600;37000;29000;63500;65200;49925;56000;69900;55000;56400;47000;51300;40800;46500;31100;31100;31100;61693;79754;95364;79064;92864;92864;80467;85440;100954;129090;144735;109432;133722;221810;238328;210555;290241;248696.02;320825;281858 -165;'586;Pakistan;1875;Wood pulp;5622;Import value;1000 USD;1427;1041;1891;1176;1060;1111;2139;3085;4208;1502;1108;1847;1290;2339;2315;2525;2889;3065;4412;4915;7517;3963;6076;6724;8665;8399;10975;12816;9652;20995;22556;24473;22720;24235;22930;27929;19741;24628;22921;24969;14040;14040;14040;32093;42326;50793;41618;48994;48994;72199;69877;70651;87058;103629;87149;95246;131459;184331;142007;155609;189775.3;300368;189062 -165;'586;Pakistan;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;975;1211;1329;1372;468;340;308;117;140;129;129;129;135;416 -165;'586;Pakistan;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;504;712;773;803;285;291;271;109;136;121;121;121;146;383 -165;'586;Pakistan;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41000;41000;41000;41000;41000;41000;41000 -165;'586;Pakistan;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59310;38174;32826;48098;45875;49081;23683 -165;'586;Pakistan;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19681;24997;18431;24212;27701;38981;14833 -165;'586;Pakistan;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43 -165;'586;Pakistan;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43 -165;'586;Pakistan;1654;Mechanical wood pulp (1961-2016);5510;Production;t;3500;3500;4000;7500;10800;10500;10000;6300;3800;2800;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;8000;0;4000;5000;5000;8000;10000;12000;12000;14000;20000;20000;20000;20000;20000;20000;20000;20000;20000;;;;;;; -165;'586;Pakistan;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;10500;7400;9200;6000;5700;12600;10900;7000;5500;3500;4600;8100;5000;2800;2000;1500;1300;1000;2500;5100;2900;1300;1300;1800;2000;12900;1200;500;800;400;400;6486;0;0;0;0;800;3000;1600;2500;2000;2000;2000;8428;10870;18000;12800;17500;17500;2266;5079;2029;9066;8561;5672;5874;;;;;;; -165;'586;Pakistan;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;1427;1041;1290;1176;825;1047;1510;1446;1135;703;461;1557;1000;800;600;700;465;342;851;1755;1807;513;513;633;727;3913;224;112;263;134;134;2410;0;0;0;0;324;1164;586;1085;594;594;594;3778;4929;8500;5737;7843;7843;5386;6215;4396;6112;5134;3753;5055;;;;;;; -165;'586;Pakistan;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;50;8;0;0;;;;;;; -165;'586;Pakistan;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;32;3;0;0;;;;;;; -165;'586;Pakistan;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24000;25000;35000;37000;37000;47000;10000;10000;10000;11000;21000;21000;21000;21000;21000;21000;21000;21000;21000;;;;;;; -165;'586;Pakistan;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;400;4400;1800;200;200;200;3300;3600;3600;3600;3900;2300;3900;6800;1300;1300;500;500;1000;400;600;1000;500;500;0;0;0;0;0;0;1400;3100;3100;3200;3200;3200;4014;4014;4014;4014;4014;4014;7501;10635;17011;16128;19843;12401;15112;;;;;;; -165;'586;Pakistan;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;73;1208;491;43;43;43;1226;1300;1300;1300;1451;851;1481;3696;359;359;165;165;359;90;161;264;69;69;0;0;0;0;0;0;576;1004;1004;1036;1036;1036;1625;1625;1625;1625;1625;1625;4230;6248;9491;9306;12078;7246;8642;;;;;;; -165;'586;Pakistan;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;900;900;862;862;0;0;0;;;;;;; -165;'586;Pakistan;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;436;436;489;489;0;0;0;;;;;;; -165;'586;Pakistan;1656;Chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21000;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000 -165;'586;Pakistan;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;9700;4500;600;2600;500;500;600;1000;1000;1500;2000;6400;3200;2900;7100;10400;11400;16200;11000;33500;33400;23900;61400;63000;43439;56000;68900;53000;55700;45800;46300;35800;40300;25300;25300;25300;48071;63430;70450;60750;68750;68750;68326;67199;81324;101965;115094;90573;111625;162423;199917;177728;241234;201912.02;271742;258170 -165;'586;Pakistan;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;1491;1619;167;463;106;106;172;274;384;510;658;2096;1065;1400;2104;4373;4155;5806;3272;9806;11688;7545;20368;21928;22063;22720;23300;21500;27335;19127;22513;21123;22418;11948;11948;11948;25985;34916;38568;33364;37648;37648;60429;55277;56255;70272;85281;75236;80848;111730;159147;123573;130921;161598.3;261384;174228 -165;'586;Pakistan;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;311;460;460;460;340;308;4;27;16;16;16;22;260 -165;'586;Pakistan;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;276;282;282;282;291;271;12;39;24;24;24;49;243 -165;'586;Pakistan;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000 -165;'586;Pakistan;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5800;5200;4000;3500;3800;2700;2700;2700;6559;6559;7750;7750;7750;7750;6398;2801;5143;6553;12280;6882;9499;13757;13757;8250;16410;10916.85;22108;7928 -165;'586;Pakistan;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3914;2111;1570;2294;1955;919;919;919;3248;3248;4647;4647;4647;4647;6995;2157;4035;4358;9236;6655;7793;9249;9249;5767;9245;8659.16;19729;4866 -165;'586;Pakistan;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121;121;121;1;1;1;1;1;1;1;1;1 -165;'586;Pakistan;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;10;10;10;10;10;10;10;10;10 -165;'586;Pakistan;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000 -165;'586;Pakistan;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;600;1000;1000;1500;2000;6400;3200;2900;3300;8900;7800;15100;9000;15900;15200;20200;52100;50000;40761;48000;64000;43000;47500;39700;41000;30400;34200;18500;18500;18500;36721;52080;62700;53000;61000;61000;56082;59975;71623;91291;99156;81424;98051;142813;178914;164854;215320;185242.4;239320;239994 -165;'586;Pakistan;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;172;274;384;510;658;2096;1065;1400;1504;3818;2864;5429;2702;4402;5530;5828;17871;19950;20637;21065;21500;17490;21742;16388;20192;17491;18884;8330;8330;8330;19244;28175;33921;28717;33001;33001;49037;50031;49336;63186;73265;66694;70624;98250;146069;115341;116707;148846.62;233718;163875 -165;'586;Pakistan;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;311;40;40;40;40;8;3;26;15;15;15;21;259 -165;'586;Pakistan;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;276;24;24;24;24;4;2;29;14;14;14;39;233 -165;'586;Pakistan;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5853;7246;4624;9504;5752.77;10314;10248 -165;'586;Pakistan;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4231;3829;2465;4969;4092.52;7937;5487 -165;'586;Pakistan;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;729;97;97;97;0;0;0;;;;;;; -165;'586;Pakistan;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;363;51;51;51;0;0;0;;;;;;; -165;'586;Pakistan;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;3800;1500;3600;1100;2000;17600;18200;3700;9300;13000;2678;8000;4900;10000;2400;900;1300;1900;2300;4100;4100;4100;4791;4791;0;0;0;0;5117;4326;4461;4024;3658;2267;4075;;;;;;; -165;'586;Pakistan;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;600;555;1291;377;570;5404;6158;1717;2497;1978;1426;1655;1800;4010;1679;628;751;1338;1579;2699;2699;2699;3493;3493;0;0;0;0;4034;3038;2833;2677;2780;1887;2431;;;;;;; -165;'586;Pakistan;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;299;299;299;299;299;;;;;;; -165;'586;Pakistan;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;257;257;257;257;257;;;;;;; -165;'586;Pakistan;1667;Dissolving wood pulp;5610;Import quantity;t;;;4300;0;900;1100;2200;400;1000;600;600;600;600;600;600;600;1600;1600;1600;1600;1600;2100;2000;3700;4600;2500;2500;2500;3300;1200;1300;0;0;1000;2000;700;400;600;300;600;600;600;600;1180;1440;2900;1500;2600;2600;2374;2527;590;1931;1237;786;1111;77;237;1;909;909;2;5 -165;'586;Pakistan;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;601;0;235;64;629;75;246;141;141;141;141;141;141;141;614;614;614;614;614;987;831;1771;1967;855;855;855;1580;424;425;0;0;935;1430;594;290;375;208;462;462;462;462;705;856;2100;892;1878;1878;2154;2137;509;1368;1136;914;701;48;187;3;476;476;3;1 -165;'586;Pakistan;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113;113;113;113;113;113;113 -165;'586;Pakistan;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97;97;97;97;97;97;97 -165;'586;Pakistan;1668;Pulp from fibres other than wood;5510;Production;t;21000;20000;25000;35000;45000;45000;40000;40000;40000;25000;42000;50000;50000;50000;50000;50000;50000;56000;56000;56000;56000;56000;80000;108000;108000;107000;118000;177000;181000;183000;159000;145000;145000;150000;160000;165000;170000;175000;182000;189000;310000;310000;310000;325000;350000;350000;360000;370000;370000;370000;370000;370000;370000;370000;370000;370000;370000;370000;370000;370000;370000;370000;370000 -165;'586;Pakistan;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;2000;3100;300;200;2400;2400;2400;3000;1200;900;1079;100;0;0;0;0;0;0;0;0;0;1737;3463;1340;1340;1340;1340;1340;16;1;2;4;13;101;7;716;124;189;159;127;270;1475 -165;'586;Pakistan;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;971;1029;100;67;742;742;742;824;276;147;387;56;0;0;0;0;0;0;0;0;0;1410;3402;800;800;800;800;800;30;1;4;4;42;89;6;682;314;135;290;204;492;851 -165;'586;Pakistan;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1240;438;78;381;381;381;144;144;13;189;219;219;0;0 -165;'586;Pakistan;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1048;480;45;160;160;160;14;14;6;133;515;515;0;0 -165;'586;Pakistan;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;542;737;1431;1117;1023;1463;1087;1835;406;232;288;0;19;19 -165;'586;Pakistan;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;365;592;663;538;387;636;587;937;82;124;107;1;18;18 -165;'586;Pakistan;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;45;45;1;1;1;1;273;70;70;0;0;0;0 -165;'586;Pakistan;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;32;32;1;1;1;1;111;21;21;0;0;0;0 -165;'586;Pakistan;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;30000;26000;26000;26000;26000;26000;26000;26000;50000;65000;65000;30000;27000;66000;49000;126000;72000;126000;50000;55000;60000;70000;75000;80000;87000;95000;670000;670000;670000;145000;150000;150000;156000;163000;163000;163000;163000;163000;163000;163000;163000;163000;163000;163000;163000;163000;163000;163000;163000 -165;'586;Pakistan;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;2500;4600;4000;5500;10000;12500;17600;20900;15700;19500;9500;26067;26800;23000;40000;39300;27500;48900;31200;23400;51500;75000;103795;100000;108848;110320;73000;111000;111000;109853;130206;137173;131819;110082;110622;127670;121578;263021;242742;306978;254253.46;149846;132054 -165;'586;Pakistan;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;411;867;747;945;1432;1539;1455;5603;1926;2921;1423;3363;3503;2363;2502;4590;5185;6239;4178;3523;6194;9000;14183;13489;16092;14900;9847;14973;14973;21234;28082;24237;23729;20913;23517;23524;21813;29510;32397;37225;49036.56;46401;28339 -165;'586;Pakistan;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;13747;955;683;42;370;847;508;895;3820;1707;1501;1195.27;1561;1377 -165;'586;Pakistan;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2179;254;261;29;96;213;180;297;1207;329;282;232;355;225 -165;'586;Pakistan;1876;Paper and paperboard;5510;Production;t;19000;17000;24500;30000;36000;36000;35000;35000;34900;25300;30400;31500;47000;52000;56000;33000;34000;60000;60000;63000;68000;74000;76000;73000;82000;80000;96000;147000;151000;229000;206000;229000;362000;403000;420000;447000;500000;527000;574000;704000;655000;718000;718000;848000;872000;872000;891000;1079000;1079000;892000;920000;920000;920000;920000;920000;920000;920000;723000;606000;719000;730000;547000;792000 -165;'586;Pakistan;1876;Paper and paperboard;5610;Import quantity;t;3200;10600;13119;23017;24400;38100;53300;25900;13900;15500;22900;32700;72500;77800;67700;71500;64400;69800;97100;94900;81900;94200;99800;120900;166900;171700;230900;220800;255000;172800;165900;215211;150000;272000;215000;246700;200700;200800;151300;166000;166700;169500;172975;274726;264516;303264;435700;443400;443400;409278;432936;376049;379772;476345;422794;545321;545272;610521;440241;404641;464608.22;397685;396616 -165;'586;Pakistan;1876;Paper and paperboard;5622;Import value;1000 USD;4182;5488;4725;5660;6547;9299;13728;8502;5907;6384;5032;11510;30037;39692;36578;24710;30880;37937;47584;57708;56211;61259;59015;59758;81419;99948;98302;118554;119895;121026;123757;147451;111248;139899;113784;174077;114093;116640;102529;104872;93546;98338;104593;171595;175763;212332;311843;323983;323983;347144;410118;311900;302759;450587;388167;496635;520011;544146;410342;342335;436091.1;455201;337258 -165;'586;Pakistan;1876;Paper and paperboard;5910;Export quantity;t;17700;11700;12400;5500;3800;8900;6200;2500;1900;;;;0;;;;;;;;;;;;;;0;;;;;247;1000;1000;800;0;0;0;0;0;0;0;0;0;0;0;2600;2000;2000;8375;8348;9689;16535;17806;13040;34403;38409;34425;16629;19781;30934.54;50702;22539 -165;'586;Pakistan;1876;Paper and paperboard;5922;Export value;1000 USD;2387;1750;1585;1230;887;1193;860;295;225;;;;;;;;;;;;;;;;;;0;;;;;279;476;563;430;0;0;0;0;0;0;0;0;0;0;0;4790;4294;4294;8932;13588;25977;40969;44633;41844;86459;89267;79088;38424;36466;51978.48;81821;39465 -165;'586;Pakistan;2042;Graphic papers;5510;Production;t;;;;3000;6000;7500;9000;10000;7900;6300;12400;16500;15000;20000;17000;19000;21000;25000;25000;28000;33000;33000;33000;30000;34000;25000;25000;29000;68000;55000;62000;55000;52000;62000;99000;110000;120000;127000;137000;143000;169000;232000;232000;242000;247000;247000;252000;258000;258000;258000;258000;258000;258000;258000;258000;258000;258000;199000;167000;198000;201000;151000;151000 -165;'586;Pakistan;2042;Graphic papers;5610;Import quantity;t;1500;1600;6719;8917;8800;19200;18700;5100;3100;7500;15700;21000;47000;64000;51700;49500;20300;33800;59100;56300;54400;57800;64900;64300;103900;94800;98100;95000;97500;98200;98000;139014;90000;185000;135000;114200;118500;123200;97800;109900;117900;117900;117900;168270;166816;179474;245800;240300;240300;207121;219616;208094;205832;243482;237311;275301;320923;298824;206521;188458;218593.04;170799;164271 -165;'586;Pakistan;2042;Graphic papers;5622;Import value;1000 USD;1291;1513;2325;2463;2776;4102;3337;1761;1138;2838;3365;5287;17981;33002;28878;12222;9281;17693;25829;30408;34787;38236;37314;32610;53822;54840;55149;63765;67017;69073;76906;92447;71773;90248;63053;89062;67460;71033;59757;62166;56987;56987;56987;99605;99042;116732;161688;158840;158840;143312;175214;159359;146836;177822;183112;192681;218409;226379;162465;135537;178511.75;181127;143931 -165;'586;Pakistan;2042;Graphic papers;5910;Export quantity;t;17700;11700;12400;5500;3800;8900;6200;2500;1900;;;;0;;;;;;;;;;;;;;0;;;;;47;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;534;428;1559;797;737;499;481;207;729;285;1230;1102.11;2509;1507 -165;'586;Pakistan;2042;Graphic papers;5922;Export value;1000 USD;2387;1750;1585;1230;887;1193;860;295;225;;;;;;;;;;;;;;;;;;0;;;;;85;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;657;485;2462;622;787;540;518;196;1049;198;546;435.55;1315;947 -165;'586;Pakistan;1671;Newsprint;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14000;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 -165;'586;Pakistan;1671;Newsprint;5610;Import quantity;t;100;100;19;17;200;1000;500;1000;500;500;10700;18100;19000;35000;6700;6700;5200;14900;35800;33100;33400;27200;34400;29200;40400;43600;51900;45000;52700;53000;59000;75950;60000;129000;85000;63400;69100;74700;63100;77200;61100;61100;61100;92657;90360;98000;95000;100000;100000;89801;87614;89753;91024;103413;85263;109977;121463;94043;65477;57270;52171.34;29567;27386 -165;'586;Pakistan;1671;Newsprint;5622;Import value;1000 USD;48;52;10;9;5;25;15;31;14;52;1600;4070;4905;19459;2868;2868;2475;5997;13473;15450;18199;13972;15964;11199;17424;17641;21991;24421;30519;28167;37001;36248;39874;49843;32785;52026;35585;34349;34151;39218;24034;24034;24034;46254;45105;49100;47612;50117;50117;48777;54073;53979;52424;61294;55419;54889;61026;51389;39017;28042;28369.82;23677;17661 -165;'586;Pakistan;1671;Newsprint;5910;Export quantity;t;17700;11700;12400;5500;3800;8900;6200;2500;1900;;;;0;;;;;;;;;;;;;;0;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;94;102;137;499;17;9;10;10;173;7;63;19;29;37 -165;'586;Pakistan;1671;Newsprint;5922;Export value;1000 USD;2387;1750;1585;1230;887;1193;860;295;225;;;;;;;;;;;;;;;;;;0;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;104;64;105;312;17;6;15;15;84;5;34;15;20;36 -165;'586;Pakistan;1674;Printing and writing papers;5510;Production;t;;;;3000;6000;7500;9000;10000;7900;6300;12400;16500;15000;20000;17000;19000;21000;25000;25000;28000;33000;33000;33000;30000;34000;25000;25000;29000;68000;55000;62000;55000;52000;62000;99000;110000;120000;113000;120000;143000;169000;232000;232000;242000;247000;247000;252000;258000;258000;258000;258000;258000;258000;258000;258000;258000;258000;199000;167000;198000;201000;151000;151000 -165;'586;Pakistan;1674;Printing and writing papers;5610;Import quantity;t;1400;1500;6700;8900;8600;18200;18200;4100;2600;7000;5000;2900;28000;29000;45000;42800;15100;18900;23300;23200;21000;30600;30500;35100;63500;51200;46200;50000;44800;45200;39000;63064;30000;56000;50000;50800;49400;48500;34700;32700;56800;56800;56800;75613;76456;81474;150800;140300;140300;117320;132002;118341;114808;140069;152048;165324;199460;204781;141044;131188;166421.7;141232;136885 -165;'586;Pakistan;1674;Printing and writing papers;5622;Import value;1000 USD;1243;1461;2315;2454;2771;4077;3322;1730;1124;2786;1765;1217;13076;13543;26010;9354;6806;11696;12356;14958;16588;24264;21350;21411;36398;37199;33158;39344;36498;40906;39905;56199;31899;40405;30268;37036;31875;36684;25606;22948;32953;32953;32953;53351;53937;67632;114076;108723;108723;94535;121141;105380;94412;116528;127693;137792;157383;174990;123448;107495;150141.94;157450;126270 -165;'586;Pakistan;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;0;0;0;0;0;;;;;;;;;;;;;440;326;1422;298;720;490;471;197;556;278;1167;1083.11;2480;1470 -165;'586;Pakistan;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;0;0;0;0;0;;;;;;;;;;;;;553;421;2357;310;770;534;503;181;965;193;512;420.55;1295;911 -165;'586;Pakistan;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113000;120000;125000;125000;125000;125000;107000;107000;107000;107000;107000;107000;107000;107000;107000;107000;107000;107000;107000;107000;83000;70000;83000;84000;63000;63000 -165;'586;Pakistan;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3500;3500;3500;7157;8000;26674;27300;27300;27300;31603;29762;24831;29091;34371;39271;53530;55243;55243;57303;56639;67754.68;61653;52219 -165;'586;Pakistan;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1454;1454;1454;5014;5600;19932;21927;21927;21927;24651;28326;24231;25580;26296;32027;43087;45593;45593;50738;43999;53496.87;65297;45889 -165;'586;Pakistan;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;64;844;8;38;1;24;2;2;20;5;0;2;66 -165;'586;Pakistan;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;88;1768;12;53;15;23;11;11;10;3;0;4;13 -165;'586;Pakistan;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21000;84000;84000;105000;110000;110000;113000;117000;117000;117000;117000;117000;117000;117000;117000;117000;117000;90000;75000;89000;90000;68000;68000 -165;'586;Pakistan;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30000;14600;11800;15600;15600;15600;28262;28262;32800;83000;93000;93000;33001;39245;26442;31652;37118;39673;38973;57351;44590;15551;14783;21180;20270;19724 -165;'586;Pakistan;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24343;10198;8040;12340;12340;12340;20416;20416;24500;58558;65612;65612;27040;36377;24484;25662;35264;36928;32931;44112;41005;14707;13680;21248;21302;20033 -165;'586;Pakistan;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;272;162;245;70;667;422;372;154;356;246;1105;1061.11;2298;1257 -165;'586;Pakistan;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;315;154;331;93;698;444;427;142;336;149;437;393.55;918;421 -165;'586;Pakistan;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18000;23000;23000;23000;30000;30000;30000;32000;34000;34000;34000;34000;34000;34000;34000;34000;34000;34000;26000;22000;26000;27000;20000;20000 -165;'586;Pakistan;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18500;20100;20900;37700;37700;37700;40194;40194;22000;40500;20000;20000;52716;62995;67068;54065;68580;73104;72821;86866;104948;68190;59766;77487.02;59309;64942 -165;'586;Pakistan;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12341;15408;14908;19159;19159;19159;27921;27921;23200;33591;21184;21184;42844;56438;56665;43170;54968;58738;61774;67678;88392;58003;49816;75397.07;70851;60348 -165;'586;Pakistan;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;154;100;333;220;15;67;75;41;198;12;57;22;180;147 -165;'586;Pakistan;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;217;179;258;205;19;75;53;28;618;34;72;27;373;477 -165;'586;Pakistan;1675;Other paper and paperboard;5510;Production;t;19000;17000;24500;27000;30000;28500;26000;25000;27000;19000;18000;15000;32000;32000;39000;14000;13000;35000;35000;35000;35000;41000;43000;43000;48000;55000;71000;118000;83000;174000;144000;174000;310000;341000;321000;337000;380000;400000;437000;561000;486000;486000;486000;606000;625000;625000;639000;821000;821000;634000;662000;662000;662000;662000;662000;662000;662000;524000;439000;521000;529000;396000;641000 -165;'586;Pakistan;1675;Other paper and paperboard;5610;Import quantity;t;1700;9000;6400;14100;15600;18900;34600;20800;10800;8000;7200;11700;25500;13800;16000;22000;44100;36000;38000;38600;27500;36400;34900;56600;63000;76900;132800;125800;157500;74600;67900;76197;60000;87000;80000;132500;82200;77600;53500;56100;48800;51600;55075;106456;97700;123790;189900;203100;203100;202157;213320;167955;173940;232863;185483;270020;224349;311697;233720;216183;246015.18;226886;232345 -165;'586;Pakistan;1675;Other paper and paperboard;5622;Import value;1000 USD;2891;3975;2400;3197;3771;5197;10391;6741;4769;3546;1667;6223;12056;6690;7700;12488;21599;20244;21755;27300;21424;23023;21701;27148;27597;45108;43153;54789;52878;51953;46851;55004;39475;49651;50731;85015;46633;45607;42772;42706;36559;41351;47606;71990;76721;95600;150155;165143;165143;203832;234904;152541;155923;272765;205055;303954;301602;317767;247877;206798;257579.35;274074;193327 -165;'586;Pakistan;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;1000;1000;800;0;0;0;0;0;0;0;0;0;0;0;2600;2000;2000;7841;7920;8130;15738;17069;12541;33922;38202;33696;16344;18551;29832.43;48193;21032 -165;'586;Pakistan;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;194;476;563;430;0;0;0;0;0;0;0;0;0;0;0;4790;4294;4294;8275;13103;23515;40347;43846;41304;85941;89071;78039;38226;35920;51542.93;80506;38518 -165;'586;Pakistan;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;1000;1000;1000;1000;2000;2000;2000;1000;1000;2000;2000;2000;2000;2000;2000;2000;3000;3000;4000;6000;4000;10000;8000;10000;6000;10000;10000;12000;14000;14000;17000;21000;21000;21000;21000;30000;35000;35000;37000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;0;0;0;0;0;0 -165;'586;Pakistan;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;4800;4100;4000;600;600;500;500;500;924;1500;2350;1700;2200;2200;698;1243;2062;1957;2138;2310;3686;4375;4102;3629;3509;4792.39;3018;4083 -165;'586;Pakistan;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13635;10015;7493;10000;1426;1426;325;325;325;824;1200;2000;1360;1870;1870;826;1582;2000;2046;2750;3052;4378;3721;4951;4528;3759;5132.6;3798;3761 -165;'586;Pakistan;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1186;251;143;76;34;34;40;65;76;24;381;338;470;152 -165;'586;Pakistan;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1743;356;227;133;98;102;116;449;635;26;394;686.3;631;184 -165;'586;Pakistan;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;180000;200000;306000;190000;190000;190000;506000;515000;515000;525000;622000;622000;435000;463000;463000;463000;463000;463000;463000;463000;524000;439000;521000;529000;396000;641000 -165;'586;Pakistan;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48600;46000;48600;41100;41100;41100;98532;88200;107600;179400;186300;186300;181094;189131;161800;169430;216356;178817;250408;215466;301377;223950;209755;235790.05;217905;223394 -165;'586;Pakistan;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28607;29313;29247;23026;23026;23026;57966;57430;62300;128795;130257;130257;169244;194281;144954;151657;237715;198957;269268;287121;298325;227657;195079;239082.23;254370;180529 -165;'586;Pakistan;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5973;7001;7614;15341;16588;12256;33410;38082;33565;16320;18152;29463.43;47723;20879 -165;'586;Pakistan;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5118;11080;22448;39475;42568;40601;85055;88351;77274;38199;35498;50835.63;79875;38321 -165;'586;Pakistan;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;;;21000;14000;14000;11000;24000;24000;30000;11000;10000;26000;26000;26000;26000;31000;33000;33000;36000;42000;54000;90000;63000;100000;83000;100000;240000;230000;178000;185000;180000;;;;;;;;;;;;;;;;;;;;;;;;;; -165;'586;Pakistan;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;;;7200;6000;10000;23800;12200;15500;20000;42000;33900;36000;36700;22600;34400;27900;35900;40800;39400;39500;78200;115500;36700;34000;52197;40000;53000;35000;73100;52100;;;;;;;;;;;;;;;;;;;;;;;;;; -165;'586;Pakistan;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;;;3024;1320;5223;10936;5700;7400;10800;19500;18145;19724;25332;14844;20297;14929;15839;14454;21350;13182;19997;21902;26089;23741;41048;25519;32206;21101;60492;33113;;;;;;;;;;;;;;;;;;;;;;;;;; -165;'586;Pakistan;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87000;96000;96000;96000;215000;215000;215000;215000;215000;215000;100000;106000;106000;106000;106000;106000;106000;106000;120000;101000;120000;122000;91000;147000 -165;'586;Pakistan;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7400;6300;7200;10000;10000;10000;18053;21000;23000;22600;25000;25000;30822;34280;29648;30441;37724;45049;51477;43544;41943;28572;32819;31240.89;36903;30612 -165;'586;Pakistan;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4579;3837;4283;3731;3731;3731;8666;10500;10000;12000;10952;10952;20450;23942;18516;21019;26760;33854;36886;35221;29182;20726;23925;24793.91;29934;27824 -165;'586;Pakistan;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4358;1581;1581;1581;102;25;813;2085;897;84;161;3315.64;11668;5100 -165;'586;Pakistan;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2575;793;793;793;42;39;1836;4051;537;143;250;4724.39;7807;3107 -165;'586;Pakistan;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84000;56000;56000;56000;95000;100000;100000;103000;150000;150000;78000;100000;100000;100000;100000;100000;100000;100000;113000;95000;113000;114000;86000;140000 -165;'586;Pakistan;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27900;29000;29000;14200;14200;14200;55494;38200;50000;92700;92700;92700;51485;100060;80112;86214;117813;97114;141889;87854;159201;121565;113903;118431.82;107329;148738 -165;'586;Pakistan;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15987;17651;17088;8790;8790;8790;32931;28000;30000;66857;66857;66857;53613;107383;72826;75989;140063;107638;163891;175811;166716;129993;117546;137116.24;143406;117491 -165;'586;Pakistan;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1315;5374;5985;13674;16214;12205;31778;34183;28434;15531;16763;20086.87;27201;13040 -165;'586;Pakistan;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2119;10225;21598;38574;42240;40527;82279;81634;69348;36782;33960;40681.01;62512;31795 -165;'586;Pakistan;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80000;100000;23000;38000;38000;38000;6000;6000;6000;7000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;34000;28000;33000;34000;25000;40000 -165;'586;Pakistan;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11600;10500;12100;16500;16500;16500;23161;25500;27000;59600;59600;59600;98694;54774;51963;52490;60308;36357;56548;80299;96533;71224;60291;81245.38;67668;38781 -165;'586;Pakistan;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7715;7506;7469;10138;10138;10138;15275;17000;18300;47688;47688;47688;94872;62926;53433;54258;70120;56885;67827;72880;99128;74188;50521;72608.6;74472;30951 -165;'586;Pakistan;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;46;15;27;247;25;817;1811;4186;631;1175;5835.92;6081;2003 -165;'586;Pakistan;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;424;62;22;29;272;31;933;2660;7306;1150;1157;4963.46;8083;3189 -165;'586;Pakistan;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100000;100000;112000;0;0;0;190000;194000;194000;200000;227000;227000;227000;227000;227000;227000;227000;227000;227000;227000;257000;215000;255000;259000;194000;314000 -165;'586;Pakistan;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1700;200;300;400;400;400;1824;3500;7600;4500;9000;9000;93;17;77;285;511;297;494;3769;3700;2589;2742;4871.95;6005;5263 -165;'586;Pakistan;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;326;319;407;367;367;367;1094;1930;4000;2250;4760;4760;309;30;179;391;772;580;664;3209;3299;2750;3087;4563.48;6558;4263 -165;'586;Pakistan;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;59;25;1;2;3;48;74;53;225;2773;736 -165;'586;Pakistan;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;79;14;4;7;6;83;124;131;466.77;1473;230 -165;'586;Pakistan;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;5000;4000;3000;3000;6000;6000;7000;2000;2000;7000;7000;7000;7000;8000;8000;8000;9000;10000;13000;22000;16000;64000;53000;64000;64000;101000;133000;140000;186000;206000;220000;234000;275000;275000;275000;70000;75000;75000;77000;160000;160000;160000;160000;160000;160000;160000;160000;160000;160000;0;0;0;0;0;0 -165;'586;Pakistan;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;800;1200;1700;1700;1600;500;2000;2100;2100;2000;1900;4900;2000;7000;20700;22200;37500;93300;47600;42000;37900;33900;24000;20000;34000;35000;54600;26000;25000;6900;6900;7200;10000;13475;7000;8000;13840;8800;14600;14600;20365;22946;4093;2553;14369;4356;15926;4508;6218;6141;2919;5432.74;5963;4868 -165;'586;Pakistan;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;522;347;1000;1120;990;300;1688;2099;2099;2031;1968;6580;2726;6772;11309;13143;23758;29971;34792;30976;25864;23110;13956;13956;17445;15995;14508;6027;7000;12033;12033;13208;18000;24255;13200;18091;31300;20000;33016;33016;33762;39041;5587;2220;32300;3046;30308;10760;14491;15692;7960;13364.52;15906;9037 -165;'586;Pakistan;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;1000;1000;800;0;0;0;0;0;0;0;0;0;0;0;2600;2000;2000;682;668;373;321;447;251;472;55;55;0;18;31;0;1 -165;'586;Pakistan;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;194;476;563;430;0;0;0;0;0;0;0;0;0;0;0;4790;4294;4294;1414;1667;840;739;1180;601;770;271;130;1;28;21;0;13 -165;'586;Pakistan;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42209;35599;26585;21729;26733;21394;12291 -165;'586;Pakistan;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6921;6053;6066;5176;7481;9220;8654 -165;'586;Pakistan;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111;62;429;589;577;122;97 -165;'586;Pakistan;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;69;43;65;148;105;68 -165;'586;Pakistan;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;8;0;0;0;1;1 -165;'586;Pakistan;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3 -165;'586;Pakistan;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110;54;429;589;577;121;96 -165;'586;Pakistan;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;66;40;62;145;102;65 -165;'586;Pakistan;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;201;372;659;95;90;190;120 -165;'586;Pakistan;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;216;207;273;297;324;212;110 -165;'586;Pakistan;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1732;1894;1518;901;1086;770;570 -165;'586;Pakistan;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1841;1291;1676;1442;1399;1227;946 -165;'586;Pakistan;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9447;8119;6418;5447;6672;5519;3678 -165;'586;Pakistan;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;425;46;46;31;50;8;14 -165;'586;Pakistan;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16 -165;'586;Pakistan;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;43 -165;'586;Pakistan;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22101;14192;9742;5268;6891;3677;2111 -165;'586;Pakistan;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3720;3668;3217;2513;4894;4504;4187 -165;'586;Pakistan;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3465;5063;2069;3301;4452;5077;1048 -165;'586;Pakistan;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;161;240;240;6;3;6;4 -165;'586;Pakistan;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5152;5897;5750;6128;6965;6039;4667 -165;'586;Pakistan;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;526;532;571;822;663;3158;3325 -165;'586;Pakistan;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91020;91640;92003;85309;107036;111240;91132 -165;'586;Pakistan;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13301;12022;10495;9463;12571;19033;16788 -165;'586;Pakistan;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;265;58;241;180;29;45;9 -165;'586;Pakistan;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;12;12;1;1;4;1 -165;'586;Pakistan;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48860;50483;48523;47344;56471;53172;50695 -165;'586;Pakistan;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;901;638;916;555;450;434;525 -165;'586;Pakistan;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3521;5590;7465;7358;6656;5733;4175 -165;'586;Pakistan;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;997;1036;489;406;376;231;122 -165;'586;Pakistan;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9418;11530;13901;10881;15613;15666;12361 -165;'586;Pakistan;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8639;7307;6626;6623;9349;16363;15173 -165;'586;Pakistan;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28956;23979;21873;19546;28267;36624;23892 -165;'586;Pakistan;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2762;3029;2452;1878;2395;2001;967 -180;'585;Palau;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3534;4821;3140;2859;3050;3029;2500 -180;'585;Palau;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;77;56;22;22;23;22 -180;'585;Palau;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1169;1701;1143;1123;1123;1123;1123;1123;1123;1123;1123;1123;1123;1123;1123;1123;1123;1123;1138;1179;1235;2104;2359;2185;2018;1421;2473;2009;1572;2277;1398;1140 -180;'585;Palau;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;89;275;52;22;72;56;22;22;22;22 -180;'585;Palau;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;632;632;632;632;632;632;632;632;632;632;632;632;632;632;632;632;632;632;1119;1440;3893;979;1725;37;130;79;0;0;0;0 -180;'585;Palau;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;41;41;41;41;41;41;41;41;41;41;41;41;41;41;41;53;162;206;267;313;202;364;32;32;24;0;0;0;0 -180;'585;Palau;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;104;0;66;88;0;0;0;0 -180;'585;Palau;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;30;0;33;28;0;0;0;0 -180;'585;Palau;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;130;79;0;0;0;0 -180;'585;Palau;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;32;24;0;0;0;0 -180;'585;Palau;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -180;'585;Palau;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -180;'585;Palau;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;0;0;0;0;0;0 -180;'585;Palau;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;0;0;0;0;0;0 -180;'585;Palau;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;66;88;0;0;0;0 -180;'585;Palau;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;33;28;0;0;0;0 -180;'585;Palau;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -180;'585;Palau;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -180;'585;Palau;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;0;;;;;;; -180;'585;Palau;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;0;;;;;;; -180;'585;Palau;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -180;'585;Palau;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -180;'585;Palau;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;0;;;;;;; -180;'585;Palau;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;0;;;;;;; -180;'585;Palau;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;632;632;632;632;632;632;632;632;632;632;632;632;632;632;632;632;632;632;1119;1440;3893;979;1725;37;130;79;0;0;0;0 -180;'585;Palau;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;41;41;41;41;41;41;41;41;41;41;41;41;41;41;41;53;162;206;267;313;202;364;32;32;24;0;0;0;0 -180;'585;Palau;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;104;0;66;88;0;0;0;0 -180;'585;Palau;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;30;0;33;28;0;0;0;0 -180;'585;Palau;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;632;632;632;632;632;632;632;632;632;632;632;632;632;632;632;632;632;632;1119;1440;3893;903;1725;7;130;79;0;0;0;0 -180;'585;Palau;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;41;41;41;41;41;41;41;41;41;41;41;41;41;41;41;53;162;206;267;313;182;364;14;32;24;0;0;0;0 -180;'585;Palau;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -180;'585;Palau;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -180;'585;Palau;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;632;632;632;632;632;632;632;632;632;632;632;632;632;632;632;632;632;632;1119;1440;3893;903;1725;7;130;79;0;0;0;0 -180;'585;Palau;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;41;41;41;41;41;41;41;41;41;41;41;41;41;41;41;53;162;206;267;313;182;364;14;32;24;0;0;0;0 -180;'585;Palau;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -180;'585;Palau;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -180;'585;Palau;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;76;0;30;0;0;0;0;0;0 -180;'585;Palau;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;20;0;18;0;0;0;0;0;0 -180;'585;Palau;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;104;0;66;88;0;0;0;0 -180;'585;Palau;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;30;0;33;28;0;0;0;0 -180;'585;Palau;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;30;0;0;0;0;0;0 -180;'585;Palau;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;18;0;0;0;0;0;0 -180;'585;Palau;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;104;0;66;88;0;0;0;0 -180;'585;Palau;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;30;0;33;28;0;0;0;0 -180;'585;Palau;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;76;0;0;0;0;0;0;0;0 -180;'585;Palau;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;20;0;0;0;0;0;0;0;0 -180;'585;Palau;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -180;'585;Palau;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -180;'585;Palau;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;30;14;14;14;5;7;8;10;8 -180;'585;Palau;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;44;23;23;23;7;8;9;12;10 -180;'585;Palau;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -180;'585;Palau;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -180;'585;Palau;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;46;46;46;46;46;46;46;46;46 -180;'585;Palau;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;13;13;13;13;13;13 -180;'585;Palau;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;46;46;46;46;46;46;46;46;46 -180;'585;Palau;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;13;13;13;13;13;13 -180;'585;Palau;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -180;'585;Palau;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -180;'585;Palau;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -180;'585;Palau;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2882;3302;2979;2979;2979;2979;2979;2979;2979;2979;2979;2979;2979;2979;2979;2979;2979;2979;920;2310;1454;2284;4000;1747;2141;1125;3360;2639;2529;3328;2363;1760 -180;'585;Palau;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;629;1120;598;598;598;598;598;598;598;598;598;598;598;598;598;598;598;598;647;770;382;1033;1002;628;631;388;1362;952;1013;1382;955;779 -180;'585;Palau;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;182;120;0;0;0;0;0;0;0;0 -180;'585;Palau;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;67;243;0;0;0;0;0;0;0;0 -180;'585;Palau;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -180;'585;Palau;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2643;2425;2904;2904;2904;2904;2904;2904;2904;2904;2904;2904;2904;2904;2904;2904;2904;2904;845;1824;1114;2011;2310;1590;2127;125;1070;2639;2527;3306;2349;1760 -180;'585;Palau;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;520;619;547;547;547;547;547;547;547;547;547;547;547;547;547;547;547;547;223;383;382;788;713;434;629;77;423;945;1011;1376;949;779 -180;'585;Palau;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -180;'585;Palau;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -180;'585;Palau;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -180;'585;Palau;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;239;877;75;75;75;75;75;75;75;75;75;75;75;75;75;75;75;75;75;486;340;273;1690;157;14;1000;2290;0;2;22;14;0 -180;'585;Palau;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109;501;51;51;51;51;51;51;51;51;51;51;51;51;51;51;51;51;424;387;0;245;289;194;2;311;939;7;2;6;6;0 -180;'585;Palau;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;182;120;0;0;0;0;0;0;0;0 -180;'585;Palau;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;67;243;0;0;0;0;0;0;0;0 -180;'585;Palau;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -180;'585;Palau;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;107;190;140;127;111;94;27;0;7;0;12 -180;'585;Palau;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88;195;318;499;329;222;204;40;4;19;0;4 -180;'585;Palau;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -180;'585;Palau;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -180;'585;Palau;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -180;'585;Palau;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1436;1276;1089;1004;1004;1004;1004;1004;1004;1004;1004;1004;1004;1004;1004;1004;1004;1004;1004;1004;143;180;370;362;249;600;586;639;333;529;240;405 -180;'585;Palau;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;492;488;392;372;372;372;372;372;372;372;372;372;372;372;372;372;372;372;326;135;249;342;343;370;298;383;479;466;327;491;350;221 -180;'585;Palau;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;9;7;7;267;7;7;7;7;7 -180;'585;Palau;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;10;9;9;26;15;9;9;9;9 -180;'585;Palau;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -180;'585;Palau;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1155;1125;984;984;984;984;984;984;984;984;984;984;984;984;984;984;984;984;984;984;107;146;350;347;244;595;581;615;323;519;230;394 -180;'585;Palau;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;422;450;364;364;364;364;364;364;364;364;364;364;364;364;364;364;364;364;318;127;233;329;311;264;289;374;470;407;313;477;336;214 -180;'585;Palau;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;260;0;0;0;0;0 -180;'585;Palau;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;17;6;0;0;0;0 -180;'585;Palau;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5 -180;'585;Palau;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3 -180;'585;Palau;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;64;18;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -180;'585;Palau;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;5;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -180;'585;Palau;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;18;18;18;18;18;18;18;18;18;18;18;18;18;18;18;18;18;2;15;2;2;2;16;9;9;9;0 -180;'585;Palau;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;20;90;4;4;4;43;12;12;12;0 -180;'585;Palau;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;7;7;7;7 -180;'585;Palau;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;9;9;9;9;9 -180;'585;Palau;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;217;87;87;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;18;16;18;0;3;3;3;8;1;1;1;11 -180;'585;Palau;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;23;23;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;11;8;12;16;5;5;5;16;2;2;2;7 -180;'585;Palau;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;18;0;3;3;3;8;1;1;1;7 -180;'585;Palau;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;12;16;5;5;5;16;2;2;2;6 -180;'585;Palau;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;0;4 -180;'585;Palau;1650;Other fibreboard;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;0;0;0;0;0;0;0;0;0;0;1 -180;'585;Palau;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;217;85;85;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -180;'585;Palau;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;20;20;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -180;'585;Palau;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;24;42;9;37;37;37;37;37;37;37;37 -180;'585;Palau;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;5;9;6;23;23;23;23;23;23;23;23 -180;'585;Palau;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;0 -180;'585;Palau;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;0 -180;'585;Palau;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;6;4;4;4;4;4;4;4;4 -180;'585;Palau;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;4;4;4;4;4;4;4;4 -180;'585;Palau;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;6;4;4;4;4;4;4;4;4 -180;'585;Palau;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;4;4;4;4;4;4;4;4 -180;'585;Palau;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;24;41;3;33;33;33;33;33;33;33;33 -180;'585;Palau;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;5;7;4;19;19;19;19;19;19;19;19 -180;'585;Palau;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;0 -180;'585;Palau;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;0 -180;'585;Palau;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;72;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;186;178;219;265;149;149;149;398;153;260;34;84 -180;'585;Palau;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;93;112;112;112;112;112;112;112;112;112;112;112;112;112;112;112;112;112;112;308;262;341;436;350;350;350;497;197;353;58;103 -180;'585;Palau;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 -180;'585;Palau;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 -180;'585;Palau;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;13;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;83;41;124;162;68;68;68;391;128;246;31;60 -180;'585;Palau;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;10;29;29;29;29;29;29;29;29;29;29;29;29;29;29;29;29;29;29;122;46;173;189;147;147;147;463;114;277;43;58 -180;'585;Palau;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;16;3;8;6;6;6;4;2;2;2;2 -180;'585;Palau;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;11;6;7;11;11;11;4;1;1;1;2 -180;'585;Palau;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;13;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;79;25;121;154;62;62;62;387;126;244;29;58 -180;'585;Palau;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;10;29;29;29;29;29;29;29;29;29;29;29;29;29;29;29;29;29;29;114;35;167;182;136;136;136;459;113;276;42;56 -180;'585;Palau;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;6;16;3;3;3;3;2;0;0;7;0 -180;'585;Palau;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;6;6;10;6;6;6;10;0;0;16;1 -180;'585;Palau;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;14;40;1;1;1;327;121;241;19;58 -180;'585;Palau;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;26;5;4;4;4;323;106;272;22;55 -180;'585;Palau;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;36;36;36;36;36;36;36;36;36;36;36;36;36;74;17;91;111;58;58;58;58;5;3;3;0 -180;'585;Palau;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;29;29;29;29;29;29;29;29;29;29;29;29;29;110;27;135;167;126;126;126;126;7;4;4;0 -180;'585;Palau;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;103;137;95;103;81;81;81;7;25;14;3;24 -180;'585;Palau;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;83;83;83;83;83;83;83;83;83;83;83;83;83;83;83;83;83;83;83;186;216;168;247;203;203;203;34;83;76;15;45 -180;'585;Palau;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 -180;'585;Palau;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 -180;'585;Palau;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;39;22;54;57;57;57;7;20;9;3;5 -180;'585;Palau;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107;58;68;169;146;146;146;28;52;45;10;16 -180;'585;Palau;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;64;70;44;19;19;19;0;0;0;0;19 -180;'585;Palau;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;70;66;24;30;30;30;6;4;4;4;28 -180;'585;Palau;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;4;2;2;0;0;0;0;0;0;0;19 -180;'585;Palau;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;2;7;6;4;4;4;4;4;4;4;21 -180;'585;Palau;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;2;1;1;0;0;0;0;0;0;0;0 -180;'585;Palau;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1;1;1;0;0;0;1;0;0;0;0 -180;'585;Palau;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;58;67;41;19;19;19;0;0;0;0;0 -180;'585;Palau;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;67;58;17;26;26;26;1;0;0;0;7 -180;'585;Palau;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;5;34;3;5;5;5;5;0;5;5;0;0 -180;'585;Palau;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;83;83;83;83;83;83;83;83;83;83;83;83;83;33;88;34;54;27;27;27;0;27;27;1;1 -180;'585;Palau;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 -180;'585;Palau;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 -180;'585;Palau;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1023;1235;462;593;261;1110;767 -180;'585;Palau;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;5;0;0;0;1;0 -180;'585;Palau;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -180;'585;Palau;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -180;'585;Palau;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -180;'585;Palau;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;74;29;6;1;50;3 -180;'585;Palau;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -180;'585;Palau;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;164;255;261;233;137;283;204 -180;'585;Palau;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -180;'585;Palau;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;811;889;126;225;115;650;401 -180;'585;Palau;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;5;0;0;0;1;0 -180;'585;Palau;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -180;'585;Palau;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;17;46;129;8;127;159 -180;'585;Palau;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1090;1113;669;694;512;521;593 -180;'585;Palau;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -180;'585;Palau;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -180;'585;Palau;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;499;436;182;368;209;247;262 -180;'585;Palau;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -180;'585;Palau;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;134;132;341;105;83;107;144 -180;'585;Palau;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;457;545;146;221;220;167;187 -180;'585;Palau;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -299;'275;Palestine;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;218190;250612;254679;230474;329782;410009;207655 -299;'275;Palestine;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99944;130642;137289;129934;164705;207084;181824 -299;'275;Palestine;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;150703;110438;131681;139935;174122;173061;151490;215251;245289;124457 -299;'275;Palestine;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11171;8338;12328;15182;14973;17640;13497;18606;25985;24679 -299;'275;Palestine;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14449;33798;1043;554;2104;1501;2140;352;5800;2934 -299;'275;Palestine;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1903;4375;170;137;385;440;656;370;1521;466 -299;'275;Palestine;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21984;15490;7597;8077;566;141;99;613;477;488 -299;'275;Palestine;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1613;1225;566;618;37;10;7;60;44;46 -299;'275;Palestine;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1333;1333;1564;66;290;2839 -299;'275;Palestine;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;243;413;562;345;2;448 -299;'275;Palestine;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;38;6;6 -299;'275;Palestine;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;14;6;6 -299;'275;Palestine;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;554;771;168;576;286;5510;95 -299;'275;Palestine;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;137;142;27;94;25;1519;18 -299;'275;Palestine;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8077;566;141;99;575;471;482 -299;'275;Palestine;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;618;37;10;7;46;38;40 -299;'275;Palestine;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13299;33709;796;504;466;168;576;286;2796;2934 -299;'275;Palestine;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1622;4341;99;108;56;27;94;25;252;466 -299;'275;Palestine;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21984;15490;7343;8021;532;141;99;575;471;471 -299;'275;Palestine;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1613;1225;550;600;28;10;7;46;38;38 -299;'275;Palestine;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2839 -299;'275;Palestine;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;448 -299;'275;Palestine;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;504;466;168;576;286;2796;95 -299;'275;Palestine;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108;56;27;94;25;252;18 -299;'275;Palestine;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8021;532;141;99;575;471;471 -299;'275;Palestine;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;28;10;7;46;38;38 -299;'275;Palestine;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13299;33709;796;;;;;;; -299;'275;Palestine;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1622;4341;99;;;;;;; -299;'275;Palestine;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21984;15490;7343;;;;;;; -299;'275;Palestine;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1613;1225;550;;;;;;; -299;'275;Palestine;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1150;89;247;50;1638;1333;1564;66;3004;0 -299;'275;Palestine;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;281;34;71;29;329;413;562;345;1269;0 -299;'275;Palestine;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;254;56;34;0;0;38;6;17 -299;'275;Palestine;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;16;18;9;0;0;14;6;8 -299;'275;Palestine;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;32;0;0;1333;1333;1564;66;290;0 -299;'275;Palestine;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;12;0;0;243;413;562;345;2;0 -299;'275;Palestine;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;38;6;6 -299;'275;Palestine;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;14;6;6 -299;'275;Palestine;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;32;0;0;1333;1333;1564;66;290;0 -299;'275;Palestine;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;12;0;0;243;413;562;345;2;0 -299;'275;Palestine;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;38;6;6 -299;'275;Palestine;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;14;6;6 -299;'275;Palestine;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1150;57;247;50;305;0;0;0;2714;0 -299;'275;Palestine;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;281;22;71;29;86;0;0;0;1267;0 -299;'275;Palestine;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;254;56;34;0;0;0;0;11 -299;'275;Palestine;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;16;18;9;0;0;0;0;2 -299;'275;Palestine;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;2714;0 -299;'275;Palestine;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;1267;0 -299;'275;Palestine;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -299;'275;Palestine;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -299;'275;Palestine;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1150;57;247;50;305;0;0;0;0;0 -299;'275;Palestine;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;281;22;71;29;86;0;0;0;0;0 -299;'275;Palestine;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;254;56;34;0;0;0;0;11 -299;'275;Palestine;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;16;18;9;0;0;0;0;2 -299;'275;Palestine;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2922;7074;11733;9417;9515;10341;12254;10354;10818;2744 -299;'275;Palestine;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1698;3975;6140;4757;5095;5710;7109;6760;8200;2606 -299;'275;Palestine;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2949;3877;3336;2106;2230;2339;1529;2349;2349 -299;'275;Palestine;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1585;1950;1621;1221;1280;1366;1103;1644;1644 -299;'275;Palestine;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;292;144;144;253;1691 -299;'275;Palestine;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;19;19;47;238 -299;'275;Palestine;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1306 -299;'275;Palestine;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;124 -299;'275;Palestine;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;292;144;144;253;385 -299;'275;Palestine;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;19;19;47;114 -299;'275;Palestine;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1647;3028;3720;5267;3717;4593;8185;106;90 -299;'275;Palestine;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;292;505;510;906;629;786;1610;508;506 -299;'275;Palestine;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;192;59;20725;4704;22807;22807;22807 -299;'275;Palestine;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;11;4537;1287;4836;4836;4836 -299;'275;Palestine;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;28;105;9;107;110;31;31;15 -299;'275;Palestine;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;5;17;2;20;20;6;6;4 -299;'275;Palestine;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1589;3000;3615;5258;3610;4483;8154;75;75 -299;'275;Palestine;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;280;500;493;904;609;766;1604;502;502 -299;'275;Palestine;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;192;59;20725;4704;22807;22807;22807 -299;'275;Palestine;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;11;4537;1287;4836;4836;4836 -299;'275;Palestine;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2000;2000;2000;2000;2000;2000;2000;2000 -299;'275;Palestine;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8561;10763;21683;18858;17586;25549;18406;27172;21770;21770 -299;'275;Palestine;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4837;6542;11167;8772;8487;10094;8283;13242;13717;13717 -299;'275;Palestine;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1395;941;1319;681;1048;0;0;0;1632;0 -299;'275;Palestine;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;706;524;658;411;686;210;61;82;1186;1 -299;'275;Palestine;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000;1000;1000 -299;'275;Palestine;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1689;1979;4523;7211;5763;8780;4023;8354;6918;6918 -299;'275;Palestine;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;503;640;1164;2040;1687;2183;1402;3513;3556;3556 -299;'275;Palestine;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -299;'275;Palestine;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;18;0 -299;'275;Palestine;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000;1000;1000 -299;'275;Palestine;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6872;8784;17160;11647;11823;16769;14383;18818;14852;14852 -299;'275;Palestine;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4334;5902;10003;6732;6800;7911;6881;9729;10161;10161 -299;'275;Palestine;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1395;941;1319;681;1048;0;0;0;1632;0 -299;'275;Palestine;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;706;524;658;411;686;210;61;82;1168;1 -299;'275;Palestine;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -299;'275;Palestine;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8115;6810;3534;3217;3805;4004;3041;3208;3208;3725 -299;'275;Palestine;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9984;8805;7156;7094;8947;8481;7196;8026;8885;8885 -299;'275;Palestine;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;59;132;244;392;0;0;0;0;543 -299;'275;Palestine;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;381;109;277;356;431;428;469;789;886;886 -299;'275;Palestine;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -299;'275;Palestine;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;123277;69269;129473;138925;158595;185229;158702;213565;180818;83276 -299;'275;Palestine;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69481;34395;68554;74934;95821;95376;83820;128420;130831;72851 -299;'275;Palestine;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10291;8950;12349;17241;15871;14418;12747;13332;17517;17517 -299;'275;Palestine;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7484;4158;8119;11518;11167;10062;9228;10173;12421;12421 -299;'275;Palestine;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -299;'275;Palestine;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54115;16955;52841;56475;64497;67707;62694;65644;60542;60434 -299;'275;Palestine;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42985;11960;39238;44838;57664;53279;48634;64262;64799;64864 -299;'275;Palestine;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5899;1436;5853;8567;7754;6548;7570;6703;7674;7674 -299;'275;Palestine;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5799;1314;5213;7879;7996;7082;7263;7255;8344;8344 -299;'275;Palestine;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2241;2084;11896;17242;39235;48188;36542;45909;32393;1139 -299;'275;Palestine;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;855;827;4641;5974;15322;17648;14626;21299;19495;311 -299;'275;Palestine;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;302;1281;3005;5239;4782;4226;2391;3805;2209;2209 -299;'275;Palestine;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89;400;1741;2541;2029;1918;1137;1869;864;864 -299;'275;Palestine;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140;161;67;28;58;108;124;6;78;78 -299;'275;Palestine;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;54;18;8;18;28;31;3;31;31 -299;'275;Palestine;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66781;50069;64669;65180;54805;69226;59342;102006;87805;21625 -299;'275;Palestine;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25590;21554;24657;24114;22817;24421;20529;42856;46506;7645 -299;'275;Palestine;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4090;6233;3491;3435;3335;3644;2786;2824;7634;7634 -299;'275;Palestine;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1596;2444;1165;1098;1142;1062;828;1049;3213;3213 -299;'275;Palestine;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;380;176;203;287;958;1026;752;1682;1388;340 -299;'275;Palestine;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;141;142;182;632;669;475;1190;1126;218 -299;'275;Palestine;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46104;37152;47981;48291;49033;58020;48175;85465;76699;11567 -299;'275;Palestine;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19749;16420;18718;18771;20571;21780;17971;38513;42830;4877 -299;'275;Palestine;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3340;5534;2316;3137;2575;2996;2311;1947;5227;5227 -299;'275;Palestine;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1338;2205;819;1011;923;949;738;866;2612;2612 -299;'275;Palestine;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20297;12741;16485;16602;4814;10180;10415;14859;9718;9718 -299;'275;Palestine;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5541;4993;5797;5161;1614;1972;2083;3153;2550;2550 -299;'275;Palestine;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;750;699;1175;298;760;648;475;877;2407;2407 -299;'275;Palestine;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;258;239;346;87;219;113;90;183;601;601 -299;'275;Palestine;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1078;1429;630;801;850;789;984;1138;825;825 -299;'275;Palestine;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;734;935;409;476;621;557;571;847;667;667 -299;'275;Palestine;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;187;187 -299;'275;Palestine;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;48 -299;'275;Palestine;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1078;1419;602;778;813;776;926;1093;816;816 -299;'275;Palestine;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;734;933;404;471;614;554;562;836;664;664 -299;'275;Palestine;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1078;1419;602;778;813;776;926;1093;816;816 -299;'275;Palestine;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;734;933;404;471;614;554;562;836;664;664 -299;'275;Palestine;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;0;;;;;;; -299;'275;Palestine;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;;;;;;; -299;'275;Palestine;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;0;;;;;;; -299;'275;Palestine;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;0;;;;;;; -299;'275;Palestine;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1078;1391;602;778;813;776;926;1093;816;816 -299;'275;Palestine;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;734;917;404;471;614;554;562;836;664;664 -299;'275;Palestine;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;866;550;157;663;450;368;409;450;450;450 -299;'275;Palestine;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;586;363;104;394;320;257;254;320;320;320 -299;'275;Palestine;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;212;841;445;115;363;408;517;643;366;366 -299;'275;Palestine;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;148;554;300;77;294;297;308;516;344;344 -299;'275;Palestine;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;28;23;37;13;58;45;9;9 -299;'275;Palestine;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;5;5;7;3;9;11;3;3 -299;'275;Palestine;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;187;187 -299;'275;Palestine;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;48 -299;'275;Palestine;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62339;49948;40464;46278;49382;54623;48770;53184;56884;18491 -299;'275;Palestine;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62066;51119;37580;43255;53860;51728;43050;55957;80913;24521 -299;'275;Palestine;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1404;836;1017;853;1586;1117;1223;1889;4712;4619 -299;'275;Palestine;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;987;737;758;631;1420;1113;1079;1563;4920;4797 -299;'275;Palestine;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47309;31993;23175;25812;28804;26251;19533;24254;27346;8499 -299;'275;Palestine;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46252;31311;22577;23860;30080;26394;18302;25420;37851;10055 -299;'275;Palestine;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;255;248;193;63;236;153;265;209;2487;2487 -299;'275;Palestine;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;250;252;176;58;223;154;207;211;3033;3033 -299;'275;Palestine;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;626;909;534;841;784;536;278;238;451;451 -299;'275;Palestine;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;417;601;290;441;476;330;143;132;383;383 -299;'275;Palestine;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;6;0;81;2;81;1;12;12 -299;'275;Palestine;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;3;0;47;1;47;1;10;10 -299;'275;Palestine;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46683;31084;22641;24971;28020;25715;19255;24016;26895;8048 -299;'275;Palestine;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45835;30710;22287;23419;29604;26064;18159;25288;37468;9672 -299;'275;Palestine;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;251;248;187;63;155;151;184;208;2475;2475 -299;'275;Palestine;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;247;252;173;58;176;153;160;210;3023;3023 -299;'275;Palestine;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;514;709;1650;483;485;353;147;205;601;1078 -299;'275;Palestine;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;579;716;1129;504;577;444;191;278;688;1134 -299;'275;Palestine;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46000;30000;20000;23727;26540;23602;17473;21883;24016;5535 -299;'275;Palestine;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45072;29592;20026;22194;28033;23875;16467;23054;33661;7012 -299;'275;Palestine;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;250;220;180;61;152;145;184;201;2473;2473 -299;'275;Palestine;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;246;201;167;57;173;147;160;203;3021;3021 -299;'275;Palestine;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;169;375;991;761;995;1760;1635;1928;2278;1435 -299;'275;Palestine;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;184;402;1132;721;994;1745;1501;1956;3119;1526 -299;'275;Palestine;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;28;7;2;3;6;0;7;2;2 -299;'275;Palestine;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;51;6;1;3;6;0;7;2;2 -299;'275;Palestine;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15030;17955;17289;20466;20578;28372;29237;28930;29538;9992 -299;'275;Palestine;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15814;19808;15003;19395;23780;25334;24748;30537;43062;14466 -299;'275;Palestine;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1149;588;824;790;1350;964;958;1680;2225;2132 -299;'275;Palestine;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;737;485;582;573;1197;959;872;1352;1887;1764 -299;'275;Palestine;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1751;2646;2302;3240;4450;5099;6665;6098;7106;2518 -299;'275;Palestine;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2604;4124;3197;3993;6149;6586;8049;8121;13034;4590 -299;'275;Palestine;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;6;1;4;10;51;6;9;7;7 -299;'275;Palestine;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;9;1;5;14;61;7;10;12;11 -299;'275;Palestine;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13136;15174;14909;17086;16037;23168;22445;22677;22219;6182 -299;'275;Palestine;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11425;13507;10850;13733;16685;17609;15546;20496;27523;6854 -299;'275;Palestine;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1147;582;823;786;1340;902;941;1660;2207;2114 -299;'275;Palestine;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;735;476;581;568;1183;874;841;1318;1851;1729 -299;'275;Palestine;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9029;10430;10722;10254;8274;12680;14493;13805;9834;3383 -299;'275;Palestine;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5239;6113;5422;5667;5009;6322;6548;8826;7711;1879 -299;'275;Palestine;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;950;327;570;464;313;95;149;843;1426;1426 -299;'275;Palestine;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;519;191;291;262;207;58;82;531;906;906 -299;'275;Palestine;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2965;3757;2376;5150;5342;7720;6049;5901;8399;2366 -299;'275;Palestine;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4823;6227;3685;6465;9253;8590;7278;8472;14696;4260 -299;'275;Palestine;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113;144;181;227;964;753;749;789;686;686 -299;'275;Palestine;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118;149;210;207;903;752;704;745;811;811 -299;'275;Palestine;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1095;873;1429;1190;1691;1805;1082;1987;2987;254 -299;'275;Palestine;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1329;1086;1499;1316;1963;2121;1257;2509;4218;540 -299;'275;Palestine;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;111;72;95;63;54;43;28;95;2 -299;'275;Palestine;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98;136;80;99;73;64;55;42;134;12 -299;'275;Palestine;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;114;382;492;730;963;821;984;999;179 -299;'275;Palestine;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;81;244;285;460;576;463;689;898;175 -299;'275;Palestine;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;143;135;78;140;91;105;127;155;213;1292 -299;'275;Palestine;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1785;2177;956;1669;946;1139;1153;1920;2505;3022 -299;'275;Palestine;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;11 -299;'275;Palestine;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;24;24;24 -299;'275;Palestine;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43828;44879;48528;44535;72893;67073;64547 -299;'275;Palestine;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67272;95423;100224;97838;120833;157336;156332 -299;'275;Palestine;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;194;29;86;98;113;49;4 -299;'275;Palestine;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;2;2;2;1;10;10 -299;'275;Palestine;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;6;46;46;15;1;3 -299;'275;Palestine;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;2;2;2;1;10;10 -299;'275;Palestine;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;186;23;40;52;98;48;1 -299;'275;Palestine;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -299;'275;Palestine;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;567;517;729;357;437;828;57 -299;'275;Palestine;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15701;15991;15878;15602;20278;19123;19123 -299;'275;Palestine;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;578;537;570;420;479;485;98 -299;'275;Palestine;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1168;959;538;296;288;364;202 -299;'275;Palestine;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14182;11735;13925;14289;25617;15798;15798 -299;'275;Palestine;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;935;1764;3792;1769;1086;2194;2194 -299;'275;Palestine;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26538;30406;31697;28196;44560;48095;48095 -299;'275;Palestine;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48095;73427;79052;79512;98377;134733;134733 -299;'275;Palestine;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1769;1655;1521;1175;1687;1818;495 -299;'275;Palestine;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1355;3280;962;657;803;912;70 -299;'275;Palestine;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34427;31611;33090;34449;41638;97647;18651 -299;'275;Palestine;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17490;20246;19425;18599;25266;23763;813 -299;'275;Palestine;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;218;168;242;180;108;227;21 -299;'275;Palestine;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1899;1628;1284;1595;1577;1760;529 -299;'275;Palestine;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;39;39;199;141;36;0 -299;'275;Palestine;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18898;11820;12719;13236;13598;67727;4974 -299;'275;Palestine;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11144;4250;5541;5731;6929;11223;43 -299;'275;Palestine;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8330;10468;11209;11837;15729;17575;8457 -299;'275;Palestine;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1585;4516;3136;3053;3516;4269;469 -299;'275;Palestine;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5082;7527;7636;7601;10626;10358;4670 -299;'275;Palestine;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4746;11441;10709;9616;14680;8235;301 -166;'591;Panama;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;435091;461339;402795;309828;400961.36;405442;358453 -166;'591;Panama;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;137772;164088;117107;80966;78606.66;78035;85621 -166;'591;Panama;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;2711;3535;5688;6394;9633;11708;11160;12640;13957;15301;14753;16366;17836;24673;17615;17919;22004;30364;29729;35026;36090;33735;27861;37686;59089;87607;54400;30734;49657;79816;80077;58102;90657;104346;76231;96568;95362;67111;67571;69346;60699;65670;63529;81912;82722;104563;119516;149715;108842;101602;127063;123410;119205;126349;133207;118639;129915;141992;110749;90216;131264.36;140576;114077 -166;'591;Panama;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;63;310;296;219;106;101;123;135;324;316;555;323;323;1395;170;170;289;143;424;1071;1329;1249;1308;1100;592;1238;719;1191;3354;3761;4785;3303;5131;3391;16707;7203;7310;6553;5517;6597;7674;12293;12321;21980;18000;25694;31816;32066;28163;27878;58135;32087;47128;57535;63537;58224;85155;93908;76953;49786;71609.66;69426;76185 -166;'591;Panama;1861;Roundwood;5516;Production;m3;1444574;1447979;1445393;1470816;1474248;1451688;1505138;1456596;1452063;1453539;1456116;1484558;1489417;1504199;1513003;1593100;1508769;1457806;1459580;1592095;1584922;1573886;1571954;1555971;1534357;1502624;1489170;1519138;1524582;1517044;1476094;1482613;1468855;1459277;1452677;1418311;1411884;1306168;1338191;1326654;1334760;1337388;1333521;1312137;1360218;1348827;1333900;1322500;1312585;1304086;1298826;1286036;1270699;1316798;1309817;1289435;1399082;1411970;1397355;1383132;1369665;1356551;1343777 -166;'591;Panama;1861;Roundwood;5616;Import quantity;m3;;200;300;300;1500;2200;2300;3500;3200;1100;500;2100;1100;5600;2300;2300;1600;2600;3400;2800;9000;15000;6000;6700;4500;8200;1700;1700;4800;253;8844;615;7580;6300;18400;5300;10900;1100;1100;1200;2700;241;147;78;99;6049;218;225;312;124;433;394;4674;654;4025;704;604;96;694;1021;2310;226;227 -166;'591;Panama;1861;Roundwood;5622;Import value;1000 USD;;21;26;26;70;89;94;145;128;102;29;178;169;210;576;576;581;1063;1055;900;2269;1495;359;445;300;1905;414;512;1116;23;2435;73;1477;1161;2258;1432;2239;335;335;319;979;106;44;22;27;1524;103;219;111;64;205;225;1151;227;1234;174;288;38;234;338;507;125;112 -166;'591;Panama;1861;Roundwood;5916;Export quantity;m3;1200;2000;1100;1900;1800;2800;2800;1400;1400;1400;1400;1400;1400;600;600;600;500;500;500;500;500;500;20000;19000;400;200;200;200;500;1347;4420;218;1873;1900;4400;4400;4400;300;1300;4000;7000;36396;39643;79510;29580;36862;55955;55964;26590;43775;84374;102259;135173;208036;145271;137927;136157;155068;130650;95000;139438;368712;149212 -166;'591;Panama;1861;Roundwood;5922;Export value;1000 USD;63;118;62;69;66;101;123;53;53;53;53;53;53;18;18;18;3;3;3;3;3;3;250;222;17;30;30;30;223;189;618;39;493;632;677;414;414;65;220;324;539;2005;2876;5088;1876;10499;14542;4311;2287;17359;47480;21070;28695;28045;52454;47409;71406;76529;56746;34903;48971;46053;60742 -166;'591;Panama;1862;Roundwood, coniferous;5516;Production;m3;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;0;0;2000;3000;7000;0;0;0;9000;9000;9000;9000;9000;6000;6000;3000;2000;1000;8500;4000;9090;7000;7000;7000;7000;7000;7000 -166;'591;Panama;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;464;35;382;332;1753;143;173 -166;'591;Panama;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;219;20;99;95;343;77;79 -166;'591;Panama;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;0;24;0;327;2960;2960 -166;'591;Panama;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;0;10;0;37;238;238 -166;'591;Panama;1863;Roundwood, non-coniferous;5516;Production;m3;1442575;1445980;1443394;1468817;1472249;1449689;1503139;1454597;1450064;1451540;1454117;1482559;1487418;1502200;1511004;1591101;1506770;1455807;1457581;1590096;1582923;1571887;1569955;1553972;1532358;1500625;1487171;1517139;1522583;1515045;1474095;1480614;1466856;1457278;1450678;1416312;1411884;1306168;1336191;1323654;1327760;1337388;1333521;1312137;1351218;1339827;1324900;1313500;1303585;1298086;1292826;1283036;1268699;1315798;1301317;1285435;1389992;1404970;1390355;1376132;1362665;1349551;1336777 -166;'591;Panama;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140;61;312;689;557;83;54 -166;'591;Panama;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;18;135;243;164;48;33 -166;'591;Panama;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;136087;155068;130626;95000;139111;365752;146252 -166;'591;Panama;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71392;76529;56736;34903;48934;45815;60504 -166;'591;Panama;1864;Wood fuel;5516;Production;m3;1322575;1325980;1329394;1332817;1336249;1339689;1343139;1346597;1350064;1353540;1352117;1362559;1367418;1380200;1394004;1407101;1420770;1411807;1413581;1388796;1383623;1372587;1373655;1377672;1369058;1364325;1362871;1410839;1416283;1408745;1384095;1362814;1349056;1339478;1332878;1326012;1314584;1301168;1290191;1279654;1263760;1248388;1233521;1219137;1205218;1188827;1172900;1157500;1142585;1128086;1111826;1096036;1080699;1065798;1051317;1035435;1019992;1004970;990355;976132;962665;949551;936777 -166;'591;Panama;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;400;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;1;0 -166;'591;Panama;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;259;279;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;1;1 -166;'591;Panama;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 -166;'591;Panama;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;1;0 -166;'591;Panama;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;1;1 -166;'591;Panama;1628;Wood fuel, non-coniferous;5516;Production;m3;1322575;1325980;1329394;1332817;1336249;1339689;1343139;1346597;1350064;1353540;1352117;1362559;1367418;1380200;1394004;1407101;1420770;1411807;1413581;1388796;1383623;1372587;1373655;1377672;1369058;1364325;1362871;1410839;1416283;1408745;1384095;1362814;1349056;1339478;1332878;1326012;1314584;1301168;1290191;1279654;1263760;1248388;1233521;1219137;1205218;1188827;1172900;1157500;1142585;1128086;1111826;1096036;1080699;1065798;1051317;1035435;1019992;1004970;990355;976132;962665;949551;936777 -166;'591;Panama;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;400;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;;;;;;; -166;'591;Panama;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;259;279;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;;;;;;; -166;'591;Panama;1865;Industrial roundwood;5516;Production;m3;121999;121999;115999;137999;137999;111999;161999;109999;101999;99999;103999;121999;121999;123999;118999;185999;87999;45999;45999;203299;201299;201299;198299;178299;165299;138299;126299;108299;108299;108299;91999;119799;119799;119799;119799;92299;97300;5000;48000;47000;71000;89000;100000;93000;155000;160000;161000;165000;170000;176000;187000;190000;190000;251000;258500;254000;379090;407000;407000;407000;407000;407000;407000 -166;'591;Panama;1865;Industrial roundwood;5616;Import quantity;m3;;200;300;300;1500;2200;2300;3500;3200;1100;500;2100;1100;5600;2300;2300;1600;2600;3400;2800;9000;15000;6000;6700;4500;8200;1700;1700;4800;253;8844;615;7180;5900;18400;5300;10900;1100;1100;1200;2700;241;147;78;99;6049;218;225;312;124;433;394;4674;653;4025;704;604;96;694;1021;2310;225;227 -166;'591;Panama;1865;Industrial roundwood;5622;Import value;1000 USD;;21;26;26;70;89;94;145;128;102;29;178;169;210;576;576;581;1063;1055;900;2269;1495;359;445;300;1905;414;512;1116;23;2435;73;1218;882;2258;1432;2239;335;335;319;979;106;44;22;27;1524;103;219;111;64;205;225;1151;226;1234;174;288;38;234;338;507;124;111 -166;'591;Panama;1865;Industrial roundwood;5916;Export quantity;m3;1200;2000;1100;1900;1800;2800;2800;1400;1400;1400;1400;1400;1400;600;600;600;500;500;500;500;500;500;20000;19000;400;200;200;200;500;1347;4420;218;1873;1900;4400;4400;4400;300;1300;4000;7000;36396;39643;79510;29580;36862;55955;55964;26590;43775;84374;102259;135173;208036;145271;137927;136157;155068;130650;95000;139438;368712;149212 -166;'591;Panama;1865;Industrial roundwood;5922;Export value;1000 USD;63;118;62;69;66;101;123;53;53;53;53;53;53;18;18;18;3;3;3;3;3;3;250;222;17;30;30;30;223;189;618;39;493;632;677;414;414;65;220;324;539;2005;2876;5088;1876;10499;14542;4311;2287;17359;47480;21070;28695;28045;52454;47409;71406;76529;56746;34903;48971;46053;60742 -166;'591;Panama;1866;Industrial roundwood, coniferous;5516;Production;m3;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;0;0;2000;3000;7000;0;0;0;9000;9000;9000;9000;9000;6000;6000;3000;2000;1000;8500;4000;9090;7000;7000;7000;7000;7000;7000 -166;'591;Panama;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8789;167;6900;5900;17500;4900;5200;1100;1100;1200;2700;241;147;78;99;5971;136;19;203;41;138;34;4248;35;3957;639;464;35;382;332;1753;142;173 -166;'591;Panama;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2419;33;1193;882;1982;1313;1140;335;335;319;979;106;44;22;27;1500;58;11;72;11;67;15;990;18;1203;150;219;20;99;95;343;76;78 -166;'591;Panama;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2062;73;73;0;0;0;0;300;300;0;0;0;0;0;0;0;0;9;40;180;315;61;77;36;106;53;70;0;24;0;327;2960;2960 -166;'591;Panama;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;449;8;8;0;0;0;0;65;65;0;0;0;0;0;0;0;0;4;28;19;33;22;31;10;20;10;14;0;10;0;37;238;238 -166;'591;Panama;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8789;167;6900;5900;17500;4900;5200;1100;1100;1200;2700;241;147;78;99;5971;136;19;203;41;138;34;4248;35;3957;639;464;35;382;332;1753;142;173 -166;'591;Panama;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2419;33;1193;882;1982;1313;1140;335;335;319;979;106;44;22;27;1500;58;11;72;11;67;15;990;18;1203;150;219;20;99;95;343;76;78 -166;'591;Panama;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2062;73;73;0;0;0;0;300;300;0;0;0;0;0;0;0;0;9;40;180;315;61;77;36;106;53;70;0;24;0;327;2960;2960 -166;'591;Panama;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;449;8;8;0;0;0;0;65;65;0;0;0;0;0;0;0;0;4;28;19;33;22;31;10;20;10;14;0;10;0;37;238;238 -166;'591;Panama;1867;Industrial roundwood, non-coniferous;5516;Production;m3;120000;120000;114000;136000;136000;110000;160000;108000;100000;98000;102000;120000;120000;122000;117000;184000;86000;44000;44000;201300;199300;199300;196300;176300;163300;136300;124300;106300;106300;106300;90000;117800;117800;117800;117800;90300;97300;5000;46000;44000;64000;89000;100000;93000;146000;151000;152000;156000;161000;170000;181000;187000;188000;250000;250000;250000;370000;400000;400000;400000;400000;400000;400000 -166;'591;Panama;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;253;55;448;280;0;900;400;5700;0;0;0;0;0;0;0;0;78;82;206;109;83;295;360;426;618;68;65;140;61;312;689;557;83;54 -166;'591;Panama;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;16;40;25;0;276;119;1099;0;0;0;0;0;0;0;0;24;45;208;39;53;138;210;161;208;31;24;69;18;135;243;164;48;33 -166;'591;Panama;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1347;2358;145;1800;1900;4400;4400;4400;0;1000;4000;7000;36396;39643;79510;29580;36862;55955;55955;26550;43595;84059;102198;135096;208000;145165;137874;136087;155068;130626;95000;139111;365752;146252 -166;'591;Panama;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;189;169;31;485;632;677;414;414;0;155;324;539;2005;2876;5088;1876;10499;14542;4307;2259;17340;47447;21048;28664;28035;52434;47399;71392;76529;56736;34903;48934;45815;60504 -166;'591;Panama;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;253;7;280;280;0;0;0;0;0;0;0;0;0;0;0;0;60;1;96;10;1;3;13;3;161;24;0;2;41;255;207;12;13;0 -166;'591;Panama;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;1;25;25;0;0;0;0;0;0;0;0;0;0;0;0;19;2;52;5;0;1;31;3;49;4;0;2;12;118;115;2;2;0 -166;'591;Panama;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1347;2358;145;1800;1900;0;0;0;0;1000;4000;7000;36396;39643;79510;29580;36862;55955;55955;26550;43595;83935;102198;135096;208000;145165;137874;136087;155068;130626;95000;139111;363299;146252 -166;'591;Panama;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;189;169;31;485;632;0;0;0;0;155;324;539;2005;2876;5088;1876;10499;14542;4307;2259;17340;47425;21048;28664;28035;52434;47399;71392;76529;56736;34903;48934;45320;60504 -166;'591;Panama;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;168;0;0;900;400;5700;0;0;0;0;0;0;0;0;18;81;110;99;82;292;347;423;457;44;65;138;20;57;482;545;70;54 -166;'591;Panama;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;0;0;276;119;1099;0;0;0;0;0;0;0;0;5;43;156;34;53;137;179;158;159;27;24;67;6;17;128;162;46;33 -166;'591;Panama;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4400;4400;4400;0;0;0;0;0;0;0;0;0;0;0;0;0;124;0;0;0;0;0;0;0;0;0;0;2453;0 -166;'591;Panama;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;677;414;414;0;0;0;0;0;0;0;0;0;0;0;0;0;22;0;0;0;0;0;0;0;0;0;0;495;0 -166;'591;Panama;1868;Sawlogs and veneer logs;5516;Production;m3;121999;121999;115999;137999;137999;111999;161999;109999;101999;99999;103999;121999;121999;123999;118999;185999;87999;45999;45999;142999;140999;140999;137999;117999;104999;77999;65999;47999;47999;47999;31699;59499;59499;59499;59499;31999;37000;5000;48000;32000;40000;9000;2000;2000;64000;69000;70000;74000;79000;86000;97000;100000;100000;251000;258500;254000;379090;407000;407000;407000;407000;407000;407000 -166;'591;Panama;1868;Sawlogs and veneer logs;5916;Export quantity;m3;1200;2000;1100;1900;1800;2800;2800;1400;1400;1400;1400;1400;1400;600;600;600;500;500;500;500;500;500;20000;19000;400;200;200;200;500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -166;'591;Panama;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;63;118;62;69;66;101;123;53;53;53;53;53;53;18;18;18;3;3;3;3;3;3;250;222;17;30;30;30;223;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -166;'591;Panama;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;1999;0;0;2000;2000;0;0;0;0;9000;9000;9000;9000;9000;6000;6000;3000;2000;1000;8500;4000;9090;7000;7000;7000;7000;7000;7000 -166;'591;Panama;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;120000;120000;114000;136000;136000;110000;160000;108000;100000;98000;102000;120000;120000;122000;117000;184000;86000;44000;44000;141000;139000;139000;136000;116000;103000;76000;64000;46000;46000;46000;29700;57500;57500;57500;57500;30000;37000;5000;46000;30000;40000;9000;2000;2000;55000;60000;61000;65000;70000;80000;91000;97000;98000;250000;250000;250000;370000;400000;400000;400000;400000;400000;400000 -166;'591;Panama;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;1200;2000;1100;1900;1800;2800;2800;1400;1400;1400;1400;1400;1400;600;600;600;500;500;500;500;500;500;20000;19000;400;200;200;200;500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -166;'591;Panama;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;63;118;62;69;66;101;123;53;53;53;53;53;53;18;18;18;3;3;3;3;3;3;250;222;17;30;30;30;223;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -166;'591;Panama;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15000;31000;79000;97000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;0;0;0;0;0;0;0;0;0;0 -166;'591;Panama;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;7000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -166;'591;Panama;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14000;24000;79000;97000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;0;0;0;0;0;0;0;0;0;0 -166;'591;Panama;1871;Other industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;60300;60300;60300;60300;60300;60300;60300;60300;60300;60300;60300;60300;60300;60300;60300;60300;60300;60300;0;0;0;0;1000;1000;1000;1000;1000;1000;1000;1000;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -166;'591;Panama;1871;Other industrial roundwood;5616;Import quantity;m3;;200;300;300;1500;2200;2300;3500;3200;1100;500;2100;1100;5600;2300;2300;1600;2600;3400;2800;9000;15000;6000;6700;4500;8200;1700;1700;4800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -166;'591;Panama;1871;Other industrial roundwood;5622;Import value;1000 USD;;21;26;26;70;89;94;145;128;102;29;178;169;210;576;576;581;1063;1055;900;2269;1495;359;445;300;1905;414;512;1116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -166;'591;Panama;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;60300;60300;60300;60300;60300;60300;60300;60300;60300;60300;60300;60300;60300;60300;60300;60300;60300;60300;0;0;0;0;1000;1000;1000;1000;1000;1000;1000;1000;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -166;'591;Panama;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;;200;300;300;1500;2200;2300;3500;3200;1100;500;2100;1100;5600;2300;2300;1600;2600;3400;2800;9000;15000;6000;6700;4500;8200;1700;1700;4800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -166;'591;Panama;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;;21;26;26;70;89;94;145;128;102;29;178;169;210;576;576;581;1063;1055;900;2269;1495;359;445;300;1905;414;512;1116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -166;'591;Panama;1630;Wood charcoal;5510;Production;t;2083;2126;2170;2215;2260;2307;2355;2403;2453;2503;2531;2593;2652;2736;2826;2920;3022;3040;3106;3069;3132;3181;3278;3388;3445;3518;3602;3932;4063;4127;4127;4129;4064;4061;4253;4340;4394;4449;8000;8000;4714;4753;4793;4833;4874;4904;4900;5000;4995;5026;5048;5070;5092;5115;5137;5145;5152;5160;5168;5175;5181;5187;5193 -166;'591;Panama;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;129;200;100;100;100;100;100;100;100;150;150;150;150;150;150;150;150;1222;1275;1360;1400;1180;957;1558;2774;3188;3000;415;515.38;292;532 -166;'591;Panama;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;48;90;43;44;44;46;73;45;62;138;138;138;138;138;138;138;138;233;247;262;279;269;224;269;448;451;410;425;448;308;493 -166;'591;Panama;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;913;881;1830;895;54;272;272;614;65 -166;'591;Panama;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;391;432;770;362;31;159;159;289;30 -166;'591;Panama;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;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 -166;'591;Panama;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1400;1400;1500;0;0;0;0;0;0;0;0;0;268;315;1754;1544;2751;2256;5181;344;876;396;308;322.4;115;428 -166;'591;Panama;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;310;310;328;0;0;0;0;0;0;0;0;0;273;365;496;443;642;546;1121;99;147;110;192;231;181;502 -166;'591;Panama;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;69;312;0;0;281;281;281;281;281 -166;'591;Panama;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;9;42;0;0;2;2;2;2;2 -166;'591;Panama;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;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 -166;'591;Panama;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;8;0;14;5;63;336;325;281;308;93;80;84;69 -166;'591;Panama;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;5;0;3;5;19;101;91;101;101;131;137;161;138 -166;'591;Panama;1620;Wood residues;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 -166;'591;Panama;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;6000;4200;3600;1400;1400;1500;0;0;0;0;0;0;0;0;0;266;307;1754;1530;2746;2193;4845;19;595;88;215;242.4;31;359 -166;'591;Panama;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;264;266;288;310;310;328;0;0;0;0;0;0;0;0;0;269;360;496;440;637;527;1020;8;46;9;61;94;20;364 -166;'591;Panama;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;69;312;0;0;281;281;281;281;281 -166;'591;Panama;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;9;42;0;0;2;2;2;2;2 -166;'591;Panama;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;403;377;632;507;1104;709;267;349;79;260;148;121 -166;'591;Panama;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;502;483;662;550;1036;683;221;249;122;328;237;178 -166;'591;Panama;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;9 -166;'591;Panama;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;1;5 -166;'591;Panama;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;36;21;19;25;60;12;2;2;2;4;7 -166;'591;Panama;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;43;25;23;16;28;18;3;12;12;24;23 -166;'591;Panama;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -166;'591;Panama;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -166;'591;Panama;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;391;341;611;488;1079;649;255;347;77;258;144;114 -166;'591;Panama;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;496;440;637;527;1020;655;203;246;110;316;213;155 -166;'591;Panama;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;9 -166;'591;Panama;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;1;5 -166;'591;Panama;1872;Sawnwood;5516;Production;m3;30000;44000;31000;71000;71000;51000;74000;50000;45000;44000;46000;47000;47000;53000;50000;81000;33000;12000;12000;52800;52800;52800;52800;46000;45000;30000;25000;18000;50000;48000;16000;37000;37000;37000;37000;19000;17000;8000;46000;48000;40000;24000;27000;30000;30000;30000;30000;15000;15000;40000;45000;26200;28000;37000;33000;11300;17650;24000;28000;63178;26359;26359;26359 -166;'591;Panama;1872;Sawnwood;5616;Import quantity;m3;5900;6100;9400;7600;8200;9200;12800;17000;14400;23400;25500;25200;29800;29900;18800;18800;8700;13400;13900;13200;8800;3300;8000;1000;2000;9400;1800;1800;2500;4200;3000;9289;4500;5900;4200;13700;8800;1400;3600;6200;4500;6201;6943;10189;7320;4810;7270;12570;11058;16490;26170;24750;19601;24346;32047;36201;30747;28419;24942;17849;32559;19331;17912 -166;'591;Panama;1872;Sawnwood;5622;Import value;1000 USD;222;246;369;330;346;513;609;752;620;1086;1052;925;1378;1779;1091;1091;627;1163;1414;1707;1204;536;1079;193;473;1234;372;372;562;1041;717;1163;1109;1342;994;3709;1498;744;1741;1655;1141;1640;1823;2792;2483;1585;2522;4158;3661;4712;5839;7863;7107;8644;9885;11739;11953;11662;9126;5557;12057;7372;7911 -166;'591;Panama;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1897;3100;1200;1100;600;400;200;100;100;4200;2925;7207;19669;9290;10107;16267;11640;9370;16795;8793;7150;15718;29045;6154;4004;1462;1470;2382;1181;3691;3044;2422 -166;'591;Panama;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;405;497;439;666;298;180;83;36;36;1626;878;792;1490;722;737;1426;1855;1669;3006;2565;2876;8728;20276;3360;2489;1233;1644;1506;683;1623;2397;4563 -166;'591;Panama;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2400;2000;2000;2000;0;0;0;0 -166;'591;Panama;1632;Sawnwood, coniferous;5616;Import quantity;m3;5900;6100;9400;7600;8200;9200;12800;17000;14400;23400;25500;25200;29800;29900;18800;18800;8700;13400;13900;13200;8800;3300;8000;1000;2000;9400;1800;1800;2500;4200;3000;4599;2200;5300;3500;13000;7900;1100;3200;5200;3500;6081;6453;9463;6930;4000;6290;11939;10560;15204;25820;21223;14883;20690;28979;33672;28834;26585;22293;16939;31471;17928;17849 -166;'591;Panama;1632;Sawnwood, coniferous;5622;Import value;1000 USD;222;246;369;330;346;513;609;752;620;1086;1052;925;1378;1779;1091;1091;627;1163;1414;1707;1204;536;1079;193;473;1234;372;372;562;1041;717;775;533;1130;679;3394;1173;619;1447;1178;865;1546;1580;2316;2224;1140;2129;3881;3418;4011;5589;6911;4894;5623;8495;9549;10388;10458;8205;5360;11768;6890;7852 -166;'591;Panama;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;200;100;100;200;300;0;458;50;107;127;1668;5720;9759;5587;4969;7415;1006;3196;222;16;110;1141;221;92;265;295 -166;'591;Panama;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;83;36;36;60;99;0;57;22;37;47;595;1188;2031;1589;1417;2098;300;1029;53;5;30;399;173;26;38;20 -166;'591;Panama;1633;Sawnwood, non-coniferous;5516;Production;m3;30000;44000;31000;71000;71000;51000;74000;50000;45000;44000;46000;47000;47000;53000;50000;81000;33000;12000;12000;52800;52800;52800;52800;46000;45000;30000;25000;18000;50000;48000;16000;37000;37000;37000;37000;19000;17000;8000;44000;46000;40000;24000;27000;30000;30000;30000;30000;15000;15000;40000;45000;26200;28000;37000;33000;8900;15650;22000;26000;63178;26359;26359;26359 -166;'591;Panama;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4690;2300;600;700;700;900;300;400;1000;1000;120;490;726;390;810;980;631;498;1286;350;3527;4718;3656;3068;2529;1913;1834;2649;910;1088;1403;63 -166;'591;Panama;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;388;576;212;315;315;325;125;294;477;276;94;243;476;259;445;393;277;243;701;250;952;2213;3021;1390;2190;1565;1204;921;197;289;482;59 -166;'591;Panama;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1897;3100;1200;1100;600;400;0;0;0;4000;2625;7207;19211;9240;10000;16140;9972;3650;7036;3206;2181;8303;28039;2958;3782;1446;1360;1241;960;3599;2779;2127 -166;'591;Panama;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;405;497;439;666;298;180;0;0;0;1566;779;792;1433;700;700;1379;1260;481;975;976;1459;6630;19976;2331;2436;1228;1614;1107;510;1597;2359;4543 -166;'591;Panama;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;2000;4000;0;1000;1000;0;2000;1000;1000;1000;1000;4500;4500;4000;5000;5000;12000;12000;12000;21000;21000;21000;16000;16000;16000 -166;'591;Panama;1634;Veneer sheets;5616;Import quantity;m3;;;;;;100;100;100;100;100;100;100;100;200;200;200;200;200;100;200;100;500;100;200;500;200;300;600;200;200;100;167;100;0;200;400;500;0;0;0;5600;123;98;155;90;151;305;833;390;251;298;327;643;343;409;101;123;37;13;5;19;9;42 -166;'591;Panama;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;34;67;44;51;42;27;29;21;43;43;43;43;43;90;126;130;591;87;157;196;141;234;292;108;121;129;110;86;0;101;208;296;0;0;0;3105;87;81;133;86;130;169;625;322;402;271;219;147;87;1573;318;226;116;62;21;55;54;88 -166;'591;Panama;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;100;200;100;300;100;200;300;100;100;200;200;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;12;5;102;221;12;72;122;0;0;27;9;2;0;0;0;1 -166;'591;Panama;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;137;197;242;177;277;434;204;66;38;202;339;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;15;16;275;491;32;85;173;0;0;33;8;13;13;0;2;2 -166;'591;Panama;1873;Wood-based panels;5516;Production;m3;4000;4000;4000;2100;2100;3200;4200;3100;3700;4000;4000;9800;9800;6400;6700;8000;12000;12000;14000;14000;13300;13000;12000;9000;5000;6000;5000;4000;5000;8000;13000;21000;21000;21000;21000;21000;21000;0;0;4000;0;0;0;0;0;0;2000;2000;2000;1000;1200;1200;3000;1000;2000;2000;2000;2000;2000;4000;4000;4000;4000 -166;'591;Panama;1873;Wood-based panels;5616;Import quantity;m3;700;600;430;730;943;1201;1307;1785;2911;2617;3022;4164;3606;5000;2500;2500;2100;1900;3200;2500;1700;1900;2300;1900;2400;800;1100;600;400;700;2100;5883;7257;12200;8900;11000;8700;9600;9500;15100;13200;21270;25276;26184;27290;19600;22100;47126;35127;42394;45477;50581;55165;61526;77927;78450;120649;102539;78580;47943;88983.09;70504;67612 -166;'591;Panama;1873;Wood-based panels;5622;Import value;1000 USD;116;83;63;119;164;213;235;350;449;543;552;702;837;1195;682;682;660;577;996;978;748;848;1032;805;1087;434;607;366;226;439;1108;1666;3179;3509;3836;4585;3644;6569;5797;6684;4682;6911;8653;8848;10009;10598;13587;29030;20370;23763;29062;32462;33746;38320;48010;41588;50922;49602;34402;19155;40399.24;39319;32604 -166;'591;Panama;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;200;400;400;200;400;400;200;300;300;800;1000;1000;100;477;34;300;0;0;0;0;0;0;0;0;0;0;0;93;8;114;219;172;110;217;6788;11;67;933;2809;6384;8846;2918;4340;978;1088 -166;'591;Panama;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;77;206;244;110;172;150;111;106;106;279;314;321;58;178;38;131;0;0;0;0;0;0;0;0;0;0;0;38;18;63;157;91;67;220;2207;157;68;794;2175;3082;2573;1958;2357;940;984 -166;'591;Panama;1640;Plywood and LVL;5516;Production;m3;4000;4000;4000;2100;2100;3200;4200;3100;3700;4000;4000;9800;9800;6400;6700;8000;12000;12000;14000;14000;13300;13000;12000;9000;5000;6000;5000;4000;5000;8000;13000;21000;21000;21000;21000;21000;21000;0;0;4000;0;0;0;0;0;0;2000;2000;2000;1000;1200;1200;3000;1000;2000;2000;2000;2000;2000;4000;4000;4000;4000 -166;'591;Panama;1640;Plywood and LVL;5616;Import quantity;m3;200;100;30;30;43;43;43;100;700;300;600;900;1500;2000;1000;1000;200;300;200;200;200;200;400;400;400;600;900;400;200;500;1900;1363;1400;4500;3400;2400;2800;5400;4800;7700;4300;7570;11076;10054;11160;4600;5100;23426;15127;21199;22860;24860;31634;36736;49384;48637;88546;74987;47451;26835;46589;32454;36689 -166;'591;Panama;1640;Plywood and LVL;5622;Import value;1000 USD;46;23;7;7;10;10;10;37;63;110;155;237;410;556;295;295;45;82;83;120;92;147;226;235;244;362;527;286;146;364;1022;406;1268;996;1252;1756;1103;3957;3092;3836;2641;3448;4946;4526;5687;2350;3303;14658;9847;12541;14186;16066;19548;23319;31523;24987;33859;35110;19412;10903;19182;15362;15043 -166;'591;Panama;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;200;400;400;200;400;400;200;300;300;800;1000;1000;100;477;34;300;0;0;0;0;0;0;0;0;0;0;0;93;8;114;219;172;110;217;6784;11;58;809;2619;6263;3847;2512;4285;887;1022 -166;'591;Panama;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;77;206;244;110;172;150;111;106;106;279;314;321;58;178;38;131;0;0;0;0;0;0;0;0;0;0;0;38;18;63;157;91;67;220;2203;157;46;469;1841;3006;1103;1784;2317;799;884 -166;'591;Panama;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1217;3000;3800;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -166;'591;Panama;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;355;1071;1542;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -166;'591;Panama;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -166;'591;Panama;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -166;'591;Panama;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3400;2700;3600;1000;1300;900;400;1100;3000;4000;4000;3000;6000;11300;10000;13126;13520;15800;14184;14716;18740;20124;23473;18771;23116;12787;31640.83;28096;21572 -166;'591;Panama;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2151;1485;1826;758;817;462;139;475;900;1400;1400;2073;2780;5354;4682;5843;6483;8060;6987;7872;9237;9920;10756;8144;9608;5203;14820.36;16507;11873 -166;'591;Panama;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;1;0;0;4828;31;31;4;8 -166;'591;Panama;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;41;0;0;1398;16;16;3;10 -166;'591;Panama;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116;42;2354;101;65;124;31;186;91;263;132;105 -166;'591;Panama;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;25;1362;29;35;74;48;94;37;179;149;57 -166;'591;Panama;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;3;3 -166;'591;Panama;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;3;3 -166;'591;Panama;1874;Fibreboard;5616;Import quantity;m3;500;500;400;700;900;1158;1264;1685;2211;2317;2422;3264;2106;3000;1500;1500;1900;1600;3000;2300;1500;1700;1900;1500;2000;200;200;200;200;200;200;3303;2857;3900;2100;5900;2300;3200;3400;6500;8500;12600;11200;12130;12130;12000;11000;12400;10000;8069;9097;9805;9305;7720;9702;9624;8506;8750;7827;8230;10490.26;9822;9246 -166;'591;Panama;1874;Fibreboard;5622;Import value;1000 USD;70;60;56;112;154;203;225;313;386;433;397;465;427;639;387;387;615;495;913;858;656;701;806;570;843;72;80;80;80;75;86;905;840;971;433;1344;715;1854;1888;2386;1902;2988;2807;2922;2922;6175;7504;9018;5841;5379;8393;8297;7186;5767;7221;6646;6233;6300;5288;3012;6217.87;7301;5631 -166;'591;Panama;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;0;9;123;190;121;171;375;24;84;55 -166;'591;Panama;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;4;0;22;284;334;76;72;158;24;135;87 -166;'591;Panama;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;1000;2100;1000;924;1640;1534;1783;1605;1857;1298;983;878;874;1000;1944.43;1082;1214 -166;'591;Panama;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2790;874;1562;939;574;1175;1068;1278;1213;1524;807;553;480;393;822;1281.21;1051;1090 -166;'591;Panama;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;67;1;1;1;20;20 -166;'591;Panama;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;50;1;1;1;35;35 -166;'591;Panama;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;600;1600;1700;1900;4900;6000;9400;8000;10000;10000;5000;8000;8300;7000;6952;7310;7881;7426;6010;7706;7072;7372;7814;6901;7000;8460.83;8309;7905 -166;'591;Panama;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;167;270;608;769;789;1259;1300;2354;2173;2576;2576;3139;6289;7115;4561;4582;7095;6871;5826;4435;5501;4868;5520;5693;4787;2099;4889.66;5784;4496 -166;'591;Panama;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;0;7;122;122;8;169;286;23;64;35 -166;'591;Panama;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;0;17;281;281;15;71;140;23;97;49 -166;'591;Panama;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2165;1100;2300;1700;5300;700;1500;1500;1600;2500;3200;3200;2130;2130;2000;2000;2000;2000;193;147;390;96;105;139;1254;151;58;52;230;85;431;127 -166;'591;Panama;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;498;251;378;266;1074;107;1085;1099;1127;602;634;634;346;346;246;341;341;341;223;123;358;82;119;196;971;160;127;108;91;47;466;45 -166;'591;Panama;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;2;1;1;46;1;88;0;0;0 -166;'591;Panama;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;5;3;3;11;0;17;0;3;3 -166;'591;Panama;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;500;500;400;700;900;1158;1264;1685;2211;2317;2422;3264;2106;3000;1500;1500;1900;1600;3000;2300;1500;1700;1900;1500;2000;200;200;200;200;200;200;1138;1757;1600;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -166;'591;Panama;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;70;60;56;112;154;203;225;313;386;433;397;465;427;639;387;387;615;495;913;858;656;701;806;570;843;72;80;80;80;75;86;407;589;593;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -166;'591;Panama;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;9000;12000;12000;12000;12000;12000;12000;12000;12000;13000;15000;18000;20000;26000;28000;27000;27000;27000;27000;27000;27000;10300;10400;10400;10400;10400;10400;10400;10400;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;15000;15000;15000;15000;17000;17000;26000;26000;26000;26000;26000;26000 -166;'591;Panama;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;700;500;8700;6000;6600;6700;3800;1100;3200;3900;3600;7400;6800;5100;2300;4300;4800;4500;5000;4800;4900;5700;5200;5100;8369;7800;11700;45700;8700;12800;7000;11500;13200;14200;20200;20200;17922;17922;13500;16500;19000;16000;19492;15340;13456;12724;14932;13689;10989;14677;9073;4456;5094;15587.85;8879;7840 -166;'591;Panama;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;74;48;803;493;607;871;1358;205;509;790;778;1402;1404;1217;706;1214;1441;1487;1870;1936;2277;2850;2435;2187;2270;2787;4346;10594;3203;2476;2329;2634;3643;3842;4199;4199;3072;3072;3399;4276;6234;4032;6217;4462;3552;3952;5143;3482;3406;3977;2482;1095;1141;3646.06;2584;1913 -166;'591;Panama;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;900;900;400;400;400;85;500;34;200;200;200;200;200;2300;2100;1400;3200;616;3200;1200;1600;1600;2700;900;200;4600;1000;1100;1100;1118;1118;11000;12000;20700;15000;17223;19580;28478;23898;24665;23701;26467;29097;34436;28071;10995;22357.21;27746;28132 -166;'591;Panama;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;30;30;16;16;16;30;170;12;71;71;71;71;71;312;281;146;394;74;344;112;288;300;476;97;21;444;588;809;809;605;605;943;1152;2350;982;1331;1728;2136;2008;2080;2517;2522;3514;3969;3227;1043;2408.69;3311;3199 -166;'591;Panama;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;700;500;4700;2000;3600;3700;3200;100;100;1700;1200;2800;1500;2000;800;2400;1500;2300;2900;1100;1000;1300;900;900;1156;1300;2900;2300;2400;2600;1600;1700;500;1500;1500;1500;1500;1500;1500;1500;1500;1500;2013;1340;174;1641;1613;1249;2017;2193;762;225;245;298;240;409 -166;'591;Panama;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;74;48;550;240;491;755;1234;24;24;456;283;828;642;683;344;805;636;794;1194;656;731;1003;656;656;660;701;1375;2167;1356;1120;916;888;334;533;533;533;533;533;533;533;533;533;907;823;168;1123;1144;855;1405;1403;837;390;383;502.67;351;570 -166;'591;Panama;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;478;657;26;0;0;0;0;243;243 -166;'591;Panama;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;411;539;26;0;0;0;0;166;166 -166;'591;Panama;1875;Wood pulp;5610;Import quantity;t;;;;;;;;700;500;4700;2000;3600;3700;3200;100;100;1700;1200;2800;1500;2000;800;2400;1500;2300;2900;1100;1000;1300;900;900;1203;1400;3800;2400;2400;2600;1600;1700;500;1500;1500;1500;1500;1500;1500;1500;1500;1500;2013;1339;173;1641;1613;1229;1977;1933;732;225;245;259;230;233 -166;'591;Panama;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;74;48;550;240;491;755;1234;24;24;456;283;828;642;683;344;805;636;794;1194;656;731;1003;656;656;684;714;1943;2246;1356;1120;916;888;334;533;533;533;533;533;533;533;533;533;907;820;162;1121;1143;831;1372;1175;805;389;383;457.67;332;279 -166;'591;Panama;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;478;657;26;0;0;0;0;243;243 -166;'591;Panama;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;411;539;26;0;0;0;0;166;166 -166;'591;Panama;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;87;53;223;237;70;6 -166;'591;Panama;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;153;87;337;411.67;141;19 -166;'591;Panama;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;700;900;1100;0;0;0;0;0;0;0;0;0;0;0;0;36;178;37;0;0;3;10;;;;;;; -166;'591;Panama;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;877;609;419;0;0;0;0;0;0;0;0;0;0;0;0;48;279;58;0;0;8;17;;;;;;; -166;'591;Panama;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;5;8;9;21;10;17;;;;;;; -166;'591;Panama;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;12;24;24;47;21;43;;;;;;; -166;'591;Panama;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;700;500;4700;2000;3600;3700;3200;100;100;1700;1200;2800;1500;2000;800;2400;1500;2300;2900;1100;1000;1300;900;900;1156;1200;2800;1600;1500;1500;1600;1700;500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1969;1156;128;1632;1592;1216;1950;1926;645;172;22;22;160;227 -166;'591;Panama;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;74;48;550;240;491;755;1234;24;24;456;283;828;642;683;344;805;636;794;1194;656;731;1003;656;656;660;639;1299;1290;747;701;916;888;334;533;533;533;533;533;533;533;533;533;837;529;80;1097;1096;802;1312;1155;652;302;46;46;191;260 -166;'591;Panama;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;478;657;26;0;0;0;0;243;243 -166;'591;Panama;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;411;539;26;0;0;0;0;166;166 -166;'591;Panama;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1500;1500;1600;1700;500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;750;0;0;0;0;0;0;0;0;0;0;0;0 -166;'591;Panama;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;747;701;916;888;334;533;533;533;533;533;533;533;533;533;533;279;0;0;0;0;0;0;0;0;0;0;0;0 -166;'591;Panama;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 -166;'591;Panama;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 -166;'591;Panama;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;900;900;1156;1200;2800;1600;0;0;0;0;0;0;0;0;0;0;0;0;0;0;469;406;128;1632;1592;1207;1875;1926;645;163;11;11;159;226 -166;'591;Panama;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;656;656;660;639;1299;1290;0;0;0;0;0;0;0;0;0;0;0;0;0;0;304;250;80;1097;1096;783;1215;1155;652;287;27;27;190;259 -166;'591;Panama;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;478;657;26;0;0;0;0;243;243 -166;'591;Panama;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;411;539;26;0;0;0;0;166;166 -166;'591;Panama;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;11;11;1;1 -166;'591;Panama;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;19;19;1;1 -166;'591;Panama;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;9;75;;;;;;; -166;'591;Panama;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;19;97;;;;;;; -166;'591;Panama;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;200;1000;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 -166;'591;Panama;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;75;644;79;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -166;'591;Panama;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;100;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;1;0;0;20;40;260;30;0;0;39;10;176 -166;'591;Panama;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;76;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;6;2;1;24;33;228;32;1;0;45;19;291 -166;'591;Panama;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -166;'591;Panama;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -166;'591;Panama;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;6;16;21;16;29;64;47 -166;'591;Panama;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;12;34;54;40;75;123;81 -166;'591;Panama;1669;Recovered paper;5510;Production;t;;;;;;;;;;9000;12000;12000;12000;12000;12000;12000;12000;12000;13000;15000;18000;20000;26000;28000;27000;27000;27000;27000;27000;27000;10300;10400;10400;10400;10400;10400;10400;10400;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;15000;15000;15000;15000;17000;17000;26000;26000;26000;26000;26000;26000 -166;'591;Panama;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;4000;4000;3000;3000;600;1000;3100;2200;2400;4600;5300;3100;1500;1900;3300;2200;2100;3700;3900;4400;4300;4200;7213;6500;8800;43400;6300;10200;5400;9800;12700;12700;18700;18700;16422;16422;12000;15000;17500;14500;17479;14000;13282;11083;13319;12440;8972;12484;8311;4231;4849;15289.85;8639;7431 -166;'591;Panama;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;253;253;116;116;124;181;485;334;495;574;762;534;362;409;805;693;676;1280;1546;1847;1779;1531;1610;2086;2971;8427;1847;1356;1413;1746;3309;3309;3666;3666;2539;2539;2866;3743;5701;3499;5310;3639;3384;2829;3999;2627;2001;2574;1645;705;758;3143.4;2233;1343 -166;'591;Panama;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;900;900;400;400;400;85;500;34;200;200;200;200;200;2300;2100;1400;3200;616;3200;1200;1600;1600;2700;900;200;4600;1000;1100;1100;1118;1118;11000;12000;20700;15000;17223;19580;28478;23898;24665;23223;25810;29071;34436;28071;10995;22357.21;27503;27889 -166;'591;Panama;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;30;30;16;16;16;30;170;12;71;71;71;71;71;312;281;146;394;74;344;112;288;300;476;97;21;444;588;809;809;605;605;943;1152;2350;982;1331;1728;2136;2008;2080;2106;1983;3488;3969;3227;1043;2408.69;3145;3033 -166;'591;Panama;1876;Paper and paperboard;5510;Production;t;500;500;500;800;1000;1100;1200;1400;3000;15000;15000;15000;15000;12000;9000;17000;17000;17000;17000;17000;38000;38000;38000;38000;24000;26000;26000;20000;20000;28000;28000;28000;28000;28000;28000;28000;28000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -166;'591;Panama;1876;Paper and paperboard;5610;Import quantity;t;10500;16400;32100;37600;61100;70600;64700;72400;82100;83700;82500;79100;63300;63400;51000;51000;61000;86800;60900;75200;59400;61000;44800;81900;78700;91000;71200;42100;50200;117900;92500;79281;116200;142400;89300;111600;88200;69700;74090;68300;54600;68400;61300;98137;98137;118647;110300;115700;84595;69220;73833;78984;71234;71152;67413;61895;63700;72534;59945;53457;65566.15;57606;52811 -166;'591;Panama;1876;Paper and paperboard;5622;Import value;1000 USD;2373;3185;5230;5919;9053;10859;10155;11275;12661;12725;12600;13925;14560;20088;15018;15018;19303;26740;24772;29911;30522;29559;24090;34645;55546;82023;50837;26915;44795;75757;73501;52789;81896;93254;58062;83121;84877;56778;56681;56672;46888;52589;48591;66907;66907;87189;98721;109311;80208;65938;86612;77829;71897;72355;67703;58968;61307;77239;65007;63225;73518.06;90273;70195 -166;'591;Panama;1876;Paper and paperboard;5910;Export quantity;t;;800;1000;400;100;0;0;200;1600;1500;3200;1900;1900;3100;400;400;500;200;300;1900;1900;2300;1500;600;200;1200;300;400;2900;3900;4700;2669;6000;5000;19200;12400;16500;13410;15000;9900;11560;24700;17900;28411;28411;25761;27761;43500;43000;10615;10170;10270;8823;7737;4828;6605;8353;12108;14756;14925;18768.56;20141;11222 -166;'591;Panama;1876;Paper and paperboard;5922;Export value;1000 USD;;192;234;150;40;0;0;82;271;263;502;270;270;1377;122;122;270;124;191;635;670;947;538;223;189;965;474;368;2197;3105;3715;2607;3759;2077;15076;6191;6240;6308;5240;5793;4921;8601;7844;14797;14797;13477;14678;23472;23052;5816;5804;5753;5405;6804;4738;4536;6024;8314;12855;11025;16088.97;16431;6658 -166;'591;Panama;2042;Graphic papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0 -166;'591;Panama;2042;Graphic papers;5610;Import quantity;t;4200;4600;5300;5400;5800;7100;8400;8800;12500;11800;10000;12300;11600;10800;6600;6600;5700;7500;6900;4400;6800;4900;13600;19500;15300;17400;16000;2200;11100;19800;17100;27305;24600;22400;14000;31600;27000;35600;37700;38400;37700;44300;36600;38600;38600;42000;41000;47600;39000;40192;42388;43973;41208;36108;34832;32693;29152;28902;23533;11243;16221.78;18962;15865 -166;'591;Panama;2042;Graphic papers;5622;Import value;1000 USD;851;955;1036;1053;1126;1276;1698;1816;2700;2623;2138;2781;3535;5230;3339;3339;2403;3440;3780;2746;4279;3333;9643;11622;11645;12915;16561;1729;11805;17504;15663;20666;18594;17537;13709;29029;27101;31580;31366;33942;28636;34263;29764;31989;31989;41518;39797;48352;38776;40617;45066;47387;42956;39900;37250;32428;29197;31259;26369;12546;18702.64;34418;22420 -166;'591;Panama;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;1800;3800;8500;7600;9800;10260;11000;8100;10200;13800;7000;8000;8000;6000;8000;8500;8000;10526;10117;10009;4938;2265;1758;613;784;717;2714;1930;361;84;30 -166;'591;Panama;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;752;1355;8496;3891;3442;3958;2715;3548;3164;3512;2755;3304;3304;2699;3900;4196;3776;5561;5594;5614;3330;1580;1269;1101;448;377;2721;1670;244;107;41 -166;'591;Panama;1671;Newsprint;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0 -166;'591;Panama;1671;Newsprint;5610;Import quantity;t;2600;2700;3300;3200;3500;4400;4400;4100;4600;5900;6200;6000;5600;4200;3400;3400;4200;5200;4600;2600;4900;2900;5700;5800;6300;7700;6000;1600;1700;9700;7300;11450;11500;11900;10600;12100;14000;15600;17800;19400;18800;14500;15000;17000;17000;18000;17000;20800;16300;19470;22090;20484;19151;15502;14044;11386;7450;9516;4825;1601;1401;1725;926 -166;'591;Panama;1671;Newsprint;5622;Import value;1000 USD;375;400;460;437;457;549;552;515;592;818;929;953;987;1296;1130;1130;1511;1990;1914;1079;2388;1385;2739;2887;3383;4499;3334;958;1159;6476;5072;7123;7517;7464;5753;9605;9487;11113;11528;12831;10129;8322;8695;10150;10150;12531;12061;15079;11463;13957;17472;16419;14716;11575;9695;6480;4168;6172;3093;1057;967.63;1518;780 -166;'591;Panama;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1700;3800;8400;6800;9000;10200;11000;8100;10200;13800;7000;8000;8000;6000;8000;8500;8000;10503;10057;9962;4759;2118;1218;0;597;597;88;312;312;0;0 -166;'591;Panama;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;686;1355;8399;2646;2520;3877;2715;3548;3164;3512;2755;3304;3304;2699;3900;4196;3776;5543;5501;5526;3104;1377;735;0;257;257;48;149;149;1;1 -166;'591;Panama;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 -166;'591;Panama;1674;Printing and writing papers;5610;Import quantity;t;1600;1900;2000;2200;2300;2700;4000;4700;7900;5900;3800;6300;6000;6600;3200;3200;1500;2300;2300;1800;1900;2000;7900;13700;9000;9700;10000;600;9400;10100;9800;15855;13100;10500;3400;19500;13000;20000;19900;19000;18900;29800;21600;21600;21600;24000;24000;26800;22700;20722;20298;23489;22057;20606;20788;21307;21702;19386;18708;9642;14820.78;17237;14939 -166;'591;Panama;1674;Printing and writing papers;5622;Import value;1000 USD;476;555;576;616;669;727;1146;1301;2108;1805;1209;1828;2548;3934;2209;2209;892;1450;1866;1667;1891;1948;6904;8735;8262;8416;13227;771;10646;11028;10591;13543;11077;10073;7956;19424;17614;20467;19838;21111;18507;25941;21069;21839;21839;28987;27736;33273;27313;26660;27594;30968;28240;28325;27555;25948;25029;25087;23276;11489;17735.01;32900;21640 -166;'591;Panama;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;100;0;100;800;800;60;0;0;0;0;0;0;0;0;0;0;0;23;60;47;179;147;540;613;187;120;2626;1618;49;84;30 -166;'591;Panama;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;66;0;97;1245;922;81;0;0;0;0;0;0;0;0;0;0;0;18;93;88;226;203;534;1101;191;120;2673;1521;95;106;40 -166;'591;Panama;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0 -166;'591;Panama;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1600;900;1400;900;2600;2600;2600;2600;1000;1000;1000;1000;1151;1263;2536;4;1491;1325;1493;1463;1145;1126;537;1341.76;1238;1019 -166;'591;Panama;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1378;882;1317;874;2131;2131;2131;2131;971;1441;955;1145;1473;1800;2959;13;1689;1483;1557;1461;1339;1324;669;1388;1775;1229 -166;'591;Panama;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;460;1;1;737;513;3;0;0 -166;'591;Panama;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;667;3;3;830;498;14;3;3 -166;'591;Panama;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0 -166;'591;Panama;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16700;17300;16200;17700;25200;17000;17000;17000;17000;19000;19200;18700;16841;16140;18016;19949;17057;17284;17735;18060;15681;15179;7751;11470.8;13646;11501 -166;'591;Panama;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16301;16687;17615;17291;21537;16665;16960;16960;18505;21182;23918;21268;20081;20322;22441;24258;22691;22090;20789;19736;19100;17812;8502;12926.13;25909;16001 -166;'591;Panama;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;0;0;0;0;0;0;0;0;0;0;0;23;60;47;179;147;530;153;61;2;1817;1062;3;84;30 -166;'591;Panama;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;0;0;0;0;0;0;0;0;0;0;0;18;93;88;226;203;513;434;67;5;1729;946;4;103;37 -166;'591;Panama;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0 -166;'591;Panama;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1700;1700;1400;300;2000;2000;2000;2000;6000;4000;6600;3000;2730;2895;2937;2104;2058;2179;2079;2179;2560;2403;1354;2008.23;2353;2419 -166;'591;Panama;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2788;2269;2179;342;2273;2273;2748;2748;9511;5113;8400;4900;5106;5472;5568;3969;3945;3982;3602;3832;4648;4140;2318;3420.88;5216;4410 -166;'591;Panama;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125;117;72;43;43;0;0 -166;'591;Panama;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121;112;114;77;77;0;0 -166;'591;Panama;1675;Other paper and paperboard;5510;Production;t;500;500;500;800;1000;1100;1200;1400;3000;15000;15000;15000;15000;12000;9000;17000;17000;17000;17000;17000;38000;38000;38000;38000;24000;26000;26000;20000;20000;28000;28000;28000;28000;28000;28000;28000;28000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -166;'591;Panama;1675;Other paper and paperboard;5610;Import quantity;t;6300;11800;26800;32200;55300;63500;56300;63600;69600;71900;72500;66800;51700;52600;44400;44400;55300;79300;54000;70800;52600;56100;31200;62400;63400;73600;55200;39900;39100;98100;75400;51976;91600;120000;75300;80000;61200;34100;36390;29900;16900;24100;24700;59537;59537;76647;69300;68100;45595;29028;31445;35011;30026;35044;32581;29202;34548;43632;36412;42214;49344.37;38644;36946 -166;'591;Panama;1675;Other paper and paperboard;5622;Import value;1000 USD;1522;2230;4194;4866;7927;9583;8457;9459;9961;10102;10462;11144;11025;14858;11679;11679;16900;23300;20992;27165;26243;26226;14447;23023;43901;69108;34276;25186;32990;58253;57838;32123;63302;75717;44353;54092;57776;25198;25315;22730;18252;18326;18827;34918;34918;45671;58924;60959;41432;25321;41546;30442;28941;32455;30453;26540;32110;45980;38638;50679;54815.42;55855;47775 -166;'591;Panama;1675;Other paper and paperboard;5910;Export quantity;t;;800;1000;400;100;0;0;200;1600;1500;3200;1900;1900;3100;400;400;500;200;300;1900;1900;2300;1500;600;200;1200;300;400;2900;3900;4700;2619;4200;1200;10700;4800;6700;3150;4000;1800;1360;10900;10900;20411;20411;19761;19761;35000;35000;89;53;261;3885;5472;3070;5992;7569;11391;12042;12995;18407.56;20057;11192 -166;'591;Panama;1675;Other paper and paperboard;5922;Export value;1000 USD;;192;234;150;40;0;0;82;271;263;502;270;270;1377;122;122;270;124;191;635;670;947;538;223;189;965;474;368;2197;3105;3715;2535;3007;722;6580;2300;2798;2350;2525;2245;1757;5089;5089;11493;11493;10778;10778;19276;19276;255;210;139;2075;5224;3469;3435;5576;7937;10134;9355;15844.97;16324;6617 -166;'591;Panama;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;4000;4000;4000;4000;4000;13000;13000;13000;13000;11000;13000;13000;10000;10000;18000;18000;18000;18000;18000;18000;18000;18000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -166;'591;Panama;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;1000;1500;1800;1300;1100;1000;800;1300;1600;500;500;800;1500;1000;1500;1000;1100;600;1200;1200;1200;1200;200;1300;300;1000;1000;1000;600;300;1700;1500;3400;3000;1200;800;1400;2000;2000;2000;3000;1000;1000;545;382;1185;2736;3316;4076;5856;6169;8726;16380;14215;21849;16184.47;15156;15029 -166;'591;Panama;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;200;300;700;400;450;500;600;700;1600;900;900;1440;2700;2400;2800;2700;2700;1279;2039;2039;2039;2039;455;4345;725;4970;3798;1249;956;443;2171;1900;2299;2325;1036;618;1290;1791;1396;1396;2656;842;842;741;547;1728;4045;4638;6143;8243;7662;10056;18972;17311;33612;21106.63;24992;25276 -166;'591;Panama;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;1200;1000;800;500;500;500;500;0;0;0;0;13;0;0;0;0;0;0;42;53;494;842;842;34;34 -166;'591;Panama;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1457;768;913;885;435;435;435;435;0;0;0;0;10;0;0;0;0;0;0;87;15;594;943;943;40;40 -166;'591;Panama;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0 -166;'591;Panama;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28600;31690;25600;8900;18200;18200;56237;56237;51647;51300;57300;39050;23206;23592;28538;20982;26717;26597;22916;25712;27205;22158;20334;33125.9;23437;21853 -166;'591;Panama;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18724;19818;17212;6615;11115;11115;31152;31152;25143;46144;52548;36425;19606;33248;23322;19203;22554;21816;18345;21412;26727;20957;16767;33481.79;30382;22123 -166;'591;Panama;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1100;2800;800;560;10400;10400;19911;19911;19761;19761;35000;35000;76;53;261;3885;5472;3070;5992;7511;11335;11101;11989;17401.56;19996;11131 -166;'591;Panama;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;789;1757;1332;872;4654;4654;11058;11058;10778;10778;19276;19276;245;210;139;2075;5224;3469;3435;5263;7887;7019;6900;13389.97;16194;6487 -166;'591;Panama;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;;;;15000;15000;15000;15000;12000;9000;13000;13000;13000;13000;13000;25000;25000;25000;25000;13000;13000;13000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;;;;;;;;;;;;;;;;;;;;;;;;;; -166;'591;Panama;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;6300;11800;26800;32200;55300;61700;54000;61000;67600;69900;70600;65100;49100;49600;42700;42700;53100;76200;52000;64300;50600;54000;30000;60000;61000;18800;18600;10000;28600;47900;54200;34676;66500;89800;56500;59500;46000;;;;;;;;;;;;;;;;;;;;;;;;;; -166;'591;Panama;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;1522;2230;4194;4866;7927;9255;8007;8609;9361;9452;9712;10244;9825;12458;9779;9779;14260;19300;17400;18950;22043;22030;12416;19684;40562;7762;9568;5373;20535;26887;28305;8800;31650;43696;25725;35098;37000;;;;;;;;;;;;;;;;;;;;;;;;;; -166;'591;Panama;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;800;1000;400;100;0;0;200;1600;1500;3200;1900;1900;3100;400;400;500;200;300;1900;1900;2300;1500;600;200;1200;300;400;2900;3900;4700;2619;400;200;1800;1800;1700;;;;;;;;;;;;;;;;;;;;;;;;;; -166;'591;Panama;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;192;234;150;40;0;0;82;271;263;502;270;270;1377;122;122;270;124;191;635;670;947;538;223;189;965;474;368;2197;3105;3715;2535;172;86;790;700;798;;;;;;;;;;;;;;;;;;;;;;;;;; -166;'591;Panama;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0 -166;'591;Panama;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;700;600;1600;700;10800;10800;42347;42347;42347;30000;34500;22000;871;754;856;493;1034;729;802;750;481;644;362;932;651;691 -166;'591;Panama;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;608;469;1513;563;4020;4020;17824;17824;17824;16271;21649;12967;1065;814;845;441;931;637;731;724;520;672;333;956;758;841 -166;'591;Panama;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;2500;500;500;10000;10000;19761;19761;19761;19761;35000;35000;2;2;260;3885;4558;1550;3434;3658;1076;1141;533;5;7721;40 -166;'591;Panama;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;555;1428;794;794;4113;4113;10778;10778;10778;10778;19276;19276;7;7;134;2075;4366;2455;2057;3101;827;685;317;7;5915;49 -166;'591;Panama;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0 -166;'591;Panama;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7800;8200;5800;1000;5700;5700;7628;7628;3000;12000;10700;9000;7245;12458;5745;5123;2583;822;930;1490;2526;1498;1262;3259.99;2455;1464 -166;'591;Panama;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5393;5597;4703;1265;4958;4958;6486;6486;2090;22572;20982;17917;6980;23336;6258;5913;3920;2239;2278;2808;4497;3135;2931;6584.94;5342;3097 -166;'591;Panama;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;5;0;0;0;1494;2532;3470;9827;9682;11249;17152.56;11948;11043 -166;'591;Panama;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;21;0;0;0;911;1357;1957;6645;5973;6383;13036.97;10004;6267 -166;'591;Panama;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0 -166;'591;Panama;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19900;22800;17900;6800;1400;1400;5962;5962;6000;9000;12000;8000;14994;10373;21884;15265;22975;24863;21003;23289;24047;19940;18679;28856.9;20260;19614 -166;'591;Panama;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12351;13659;10571;4152;1690;1690;6395;6395;4782;6854;9784;5463;11449;9081;16144;12719;17567;18762;15156;17699;21538;17068;13437;25859.86;24172;18057 -166;'591;Panama;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;300;300;60;400;400;150;150;0;0;0;0;43;46;1;0;914;26;26;19;68;53;16;53;319;40 -166;'591;Panama;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;234;329;538;78;541;541;280;280;0;0;0;0;166;182;5;0;858;103;21;49;259;232;59;205;256;152 -166;'591;Panama;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0 -166;'591;Panama;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;90;300;400;300;300;300;300;300;300;100;50;96;7;53;101;125;183;181;183;151;76;31;77;71;84 -166;'591;Panama;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;372;93;425;635;447;447;447;447;447;447;133;78;112;17;75;130;136;178;180;181;172;82;66;81;110;128 -166;'591;Panama;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;364;364;225;191;191;8;8 -166;'591;Panama;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;156;156;129;141;141;19;19 -166;'591;Panama;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0 -166;'591;Panama;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;800;800;800;700;900;900;900;1300;1400;1200;1200;1400;1600;1000;5000;1000;1000;600;1200;1200;53600;35400;29700;9200;49900;20200;16300;24100;29600;18500;18800;13700;2100;1700;3100;7200;4500;4500;1300;1300;22000;17000;9800;6000;5440;6668;3737;5728;4251;128;117;110;47;39;31;34;51;64 -166;'591;Panama;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;128;150;150;200;200;250;300;500;800;1000;1000;1200;1300;1192;5415;1500;1496;752;1300;1300;59307;22669;19358;8110;30641;24563;19525;30403;31065;18185;16823;18876;4175;3172;4482;11019;5921;5921;2370;2370;17872;11938;7569;4266;5168;6570;3075;5100;3758;394;533;642;281;370;300;227;481;376 -166;'591;Panama;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3800;1000;8900;3000;5000;50;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;16;3;447;164;164;27;27 -166;'591;Panama;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2835;636;5790;1600;2000;104;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;226;35;2521;1512;1512;90;90 -166;'591;Panama;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;134766;154773;120141;63851;107604;96303;88238 -166;'591;Panama;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12705;33529;10636;9538;912;881;1443 -166;'591;Panama;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;568;449;621;438;599;460;382 -166;'591;Panama;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;335;214;34;66;59;40;99 -166;'591;Panama;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;245;270;387;257;362;327;235 -166;'591;Panama;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;320;205;23;66;59;40;40 -166;'591;Panama;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;323;179;234;181;237;133;147 -166;'591;Panama;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;9;11;0;0;0;59 -166;'591;Panama;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3148;5095;6494;6145;8272;5458;5381 -166;'591;Panama;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;234;788;77;83;83;9;1 -166;'591;Panama;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3975;4416;3382;2787;2022;1723;1763 -166;'591;Panama;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1608;1751;2004;2071;4;75;75 -166;'591;Panama;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17912;16901;15609;7852;16143;12657;9768 -166;'591;Panama;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;716;816;462;748;201;432;704 -166;'591;Panama;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2 -166;'591;Panama;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;4 -166;'591;Panama;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1 -166;'591;Panama;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3 -166;'591;Panama;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100766;123087;89361;44507;77286;73338;67786 -166;'591;Panama;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8674;28283;6842;6253;416;307;525 -166;'591;Panama;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5783;2056;2149;558;1062;839;1014 -166;'591;Panama;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;17;41;3;3;3;3 -166;'591;Panama;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2614;2769;2525;1564;2220;1828;2144 -166;'591;Panama;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1078;1660;1176;314;146;15;36 -166;'591;Panama;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;170410;164574;171905;155761;162093;168563;156138 -166;'591;Panama;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39912;36651;29518;21642;6085;7728;7993 -166;'591;Panama;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;603;836;1412;692;1386;1196;325 -166;'591;Panama;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -166;'591;Panama;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7954;7396;8020;6823;7388;11333;8765 -166;'591;Panama;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1283;1196;833;1203;407;1795;425 -166;'591;Panama;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46336;46478;51164;62157;56537;51347;53599 -166;'591;Panama;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10594;5824;5600;3500;1891;1315;3172 -166;'591;Panama;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65436;61042;63769;52583;67199;70668;56516 -166;'591;Panama;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14682;16157;8880;4777;1787;2765;2463 -166;'591;Panama;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50081;48822;47540;33506;29583;34019;36933 -166;'591;Panama;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13353;13474;14205;12162;2000;1853;1933 -168;'598;Papua New Guinea;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83950;83899;62196;60788;65362;115411;93924 -168;'598;Papua New Guinea;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;756353;930163;797676;636027;626211;693752;606440 -168;'598;Papua New Guinea;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;402;312;782;886;662;889;1108;1173;2083;2310;1992;1963;2043;1892;1797;1869;3918;5118;5818;8818;7718;5118;6618;5210;5722;6024;5095;4709;6211;5629;5661;3948;4670;6390;5501;6169;10085;4103;12439;9924;8875;8902;8859;9692;9754;10299;10363;14462;13901;20386;29607;30714;27807;33380;21351;21408;22310;20405;27544;27057;30621;24042;27382 -168;'598;Papua New Guinea;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;2623;2690;2977;3717;3940;4086;4915;5565;5334;7167;9989;10181;15727;30787;18816;26697;28765;33042;39483;72346;66468;85188;68298;93302;67587;78659;124131;122213;84026;127215;165683;255764;463527;644075;505221;335831;368407;123880;168807;166588;113499;128746;275982;157093;180960;215039;239857;558878;369015;609132;777539;678398;763921;1076120;846073;799571;741418;923278;792789;631287;625100;685385;599626 -168;'598;Papua New Guinea;1861;Roundwood;5516;Production;m3;3595000;3707000;3780000;3884000;4048000;4160000;4289000;4464000;4551000;4729000;5042000;5294000;5333000;5603000;5859000;6194000;6131000;6478000;6543000;7142000;7058000;7756000;7623000;7612000;7629000;7892000;8231000;8231000;8231000;8188000;8188000;7997000;8822000;9272000;8772000;8772000;8772000;8597000;8597000;7842000;7340000;7780000;8010000;7865000;8147000;8523000;8573000;8573000;8437000;10009000;9649000;9227208;9550000;10073000;9573000;9573000;9605000;9605000;9605000;9605000;9605000;9605000;9605000 -168;'598;Papua New Guinea;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;143;254;254;20;20;220;0;0;0;0;0;0;0;0;0;0;0;450;566;43;673;697;563;576;555;34;41;1;6;43;77;211;118 -168;'598;Papua New Guinea;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;42;65;65;1;1;43;0;0;0;0;0;0;0;0;0;0;0;27;56;3;246;50;110;48;11;108;28;0;7;7;70;23;4 -168;'598;Papua New Guinea;1861;Roundwood;5916;Export quantity;m3;3400;4800;35400;46400;35300;63700;113600;143600;102300;193300;429700;409100;424700;655200;372200;444400;402400;445100;445100;641900;749000;1063300;1019000;1300000;1158300;1314000;1442000;1361000;906000;1015844;1303364;1823990;1837810;3075042;2813707;2419200;3011100;1622100;1987500;1997500;1560200;1857750;2066970;2018431;2014493;2282835;2835171;2576659;2095806;2784254;3321366;3147275;3300014;3810185;3648970;3450086;3190322;3751245;3770369;2901051;2501711;2926385;2492274 -168;'598;Papua New Guinea;1861;Roundwood;5922;Export value;1000 USD;101;108;709;696;679;981;1537;1835;1318;2760;5881;5254;8036;17824;9465;11263;13373;15859;22300;46478;46825;67222;52819;78564;58204;72357;116133;106803;65024;111113;157744;248695;449946;631499;491780;321528;351552;107315;152351;144104;89809;100167;238706;119268;138854;170313;203936;520519;343207;583708;742394;650188;738848;1054791;822310;776256;721150;896369;753215;557584;567978;637076;554492 -168;'598;Papua New Guinea;1862;Roundwood, coniferous;5516;Production;m3;45000;46000;39000;48000;58000;63000;64000;72000;70000;70000;74000;76000;71000;80000;84000;87000;86000;93000;125000;138000;123000;90000;55000;60000;40000;55000;64000;64000;64000;64000;64000;64000;64000;64000;64000;64000;64000;64000;64000;50000;50000;50000;50000;50000;50000;50000;100000;100000;56000;58000;36000;36000;36000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000 -168;'598;Papua New Guinea;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;1;6;43;0;6;0 -168;'598;Papua New Guinea;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;0;7;7;35;2;0 -168;'598;Papua New Guinea;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;322;1245;369;1051;1711;2385;2229 -168;'598;Papua New Guinea;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;261;139;208;419;638;372 -168;'598;Papua New Guinea;1863;Roundwood, non-coniferous;5516;Production;m3;3550000;3661000;3741000;3836000;3990000;4097000;4225000;4392000;4481000;4659000;4968000;5218000;5262000;5523000;5775000;6107000;6045000;6385000;6418000;7004000;6935000;7666000;7568000;7552000;7589000;7837000;8167000;8167000;8167000;8124000;8124000;7933000;8758000;9208000;8708000;8708000;8708000;8533000;8533000;7792000;7290000;7730000;7960000;7815000;8097000;8473000;8473000;8473000;8381000;9951000;9613000;9191208;9514000;10033000;9533000;9533000;9565000;9565000;9565000;9565000;9565000;9565000;9565000 -168;'598;Papua New Guinea;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;0;0;0;77;205;118 -168;'598;Papua New Guinea;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;0;0;0;35;21;4 -168;'598;Papua New Guinea;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3190000;3750000;3770000;2900000;2500000;2924000;2490045 -168;'598;Papua New Guinea;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;721108;896108;753076;557376;567559;636438;554120 -168;'598;Papua New Guinea;1864;Wood fuel;5516;Production;m3;3443000;3550000;3600000;3650000;3750000;3850000;3900000;4050000;4150000;4223000;4323000;4424000;4529000;4639000;4753000;4870000;4995000;5122000;5255000;5390000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000 -168;'598;Papua New Guinea;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;537;537;537;537;23;;;;;;; -168;'598;Papua New Guinea;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5;5;5;5;59;;;;;;; -168;'598;Papua New Guinea;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45 -168;'598;Papua New Guinea;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28 -168;'598;Papua New Guinea;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -168;'598;Papua New Guinea;1628;Wood fuel, non-coniferous;5516;Production;m3;3443000;3550000;3600000;3650000;3750000;3850000;3900000;4050000;4150000;4223000;4323000;4424000;4529000;4639000;4753000;4870000;4995000;5122000;5255000;5390000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000;5533000 -168;'598;Papua New Guinea;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45 -168;'598;Papua New Guinea;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28 -168;'598;Papua New Guinea;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;537;537;537;537;23;;;;;;; -168;'598;Papua New Guinea;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5;5;5;5;59;;;;;;; -168;'598;Papua New Guinea;1865;Industrial roundwood;5516;Production;m3;152000;157000;180000;234000;298000;310000;389000;414000;401000;506000;719000;870000;804000;964000;1106000;1324000;1136000;1356000;1288000;1752000;1525000;2223000;2090000;2079000;2096000;2359000;2698000;2698000;2698000;2655000;2655000;2464000;3289000;3739000;3239000;3239000;3239000;3064000;3064000;2309000;1807000;2247000;2477000;2332000;2614000;2990000;3040000;3040000;2904000;4476000;4116000;3694208;4017000;4540000;4040000;4040000;4072000;4072000;4072000;4072000;4072000;4072000;4072000 -168;'598;Papua New Guinea;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;143;254;254;0;0;200;0;0;0;0;0;0;0;0;0;0;0;450;566;43;673;160;26;39;18;11;41;1;6;43;77;211;118 -168;'598;Papua New Guinea;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;42;65;65;0;0;42;0;0;0;0;0;0;0;0;0;0;0;27;56;3;246;45;105;43;6;49;28;0;7;7;70;23;4 -168;'598;Papua New Guinea;1865;Industrial roundwood;5916;Export quantity;m3;3400;4800;35400;46400;35300;63700;113600;143600;102300;193300;429700;409100;424700;655200;372200;444400;402400;445100;445100;641900;749000;1063300;1019000;1300000;1158300;1314000;1442000;1361000;906000;1015844;1303364;1823990;1837810;3075042;2813707;2419200;3011100;1622100;1987500;1997500;1560200;1857750;2066970;2018431;2014493;2282835;2835171;2576659;2095806;2784254;3321366;3147275;3300014;3810185;3648970;3450086;3190322;3751245;3770369;2901051;2501711;2926385;2492229 -168;'598;Papua New Guinea;1865;Industrial roundwood;5922;Export value;1000 USD;101;108;709;696;679;981;1537;1835;1318;2760;5881;5254;8036;17824;9465;11263;13373;15859;22300;46478;46825;67222;52819;78564;58204;72357;116133;106803;65024;111113;157744;248695;449946;631499;491780;321528;351552;107315;152351;144104;89809;100167;238706;119268;138854;170313;203936;520519;343207;583708;742394;650188;738848;1054791;822310;776256;721150;896369;753215;557584;567978;637076;554464 -168;'598;Papua New Guinea;1866;Industrial roundwood, coniferous;5516;Production;m3;45000;46000;39000;48000;58000;63000;64000;72000;70000;70000;74000;76000;71000;80000;84000;87000;86000;93000;125000;138000;123000;90000;55000;60000;40000;55000;64000;64000;64000;64000;64000;64000;64000;64000;64000;64000;64000;64000;64000;50000;50000;50000;50000;50000;50000;50000;100000;100000;56000;58000;36000;36000;36000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000 -168;'598;Papua New Guinea;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;385;22;0;0;160;26;0;18;1;20;1;6;43;0;6;0 -168;'598;Papua New Guinea;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;23;20;0;0;45;105;0;6;1;22;0;7;7;35;2;0 -168;'598;Papua New Guinea;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1379;4394;119160;230;8707;8707;3200;5100;5100;4500;4500;4200;4200;4111;3223;2357;421;61;0;0;0;8188;137;2629;185;185;86;322;1245;369;1051;1711;2385;2229 -168;'598;Papua New Guinea;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;322;675;15817;46;928;928;402;433;433;399;399;416;416;294;310;278;45;35;0;0;0;1416;157;290;48;48;6;42;261;139;208;419;638;372 -168;'598;Papua New Guinea;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;385;22;0;0;160;26;0;18;1;20;1;6;43;0;6;0 -168;'598;Papua New Guinea;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;23;20;0;0;45;105;0;6;1;22;0;7;7;35;2;0 -168;'598;Papua New Guinea;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1379;4394;119160;230;8707;8707;3200;5100;5100;4500;4500;4200;4200;4111;3223;2357;421;61;0;0;0;8188;137;2629;185;185;86;322;1245;369;1051;1711;2385;2229 -168;'598;Papua New Guinea;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;322;675;15817;46;928;928;402;433;433;399;399;416;416;294;310;278;45;35;0;0;0;1416;157;290;48;48;6;42;261;139;208;419;638;372 -168;'598;Papua New Guinea;1867;Industrial roundwood, non-coniferous;5516;Production;m3;107000;111000;141000;186000;240000;247000;325000;342000;331000;436000;645000;794000;733000;884000;1022000;1237000;1050000;1263000;1163000;1614000;1402000;2133000;2035000;2019000;2056000;2304000;2634000;2634000;2634000;2591000;2591000;2400000;3225000;3675000;3175000;3175000;3175000;3000000;3000000;2259000;1757000;2197000;2427000;2282000;2564000;2940000;2940000;2940000;2848000;4418000;4080000;3658208;3981000;4500000;4000000;4000000;4032000;4032000;4032000;4032000;4032000;4032000;4032000 -168;'598;Papua New Guinea;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;143;254;254;0;0;200;0;0;0;0;0;0;0;0;0;0;0;65;544;43;673;0;0;39;0;10;21;0;0;0;77;205;118 -168;'598;Papua New Guinea;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;42;65;65;0;0;42;0;0;0;0;0;0;0;0;0;0;0;4;36;3;246;0;0;43;0;48;6;0;0;0;35;21;4 -168;'598;Papua New Guinea;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1014465;1298970;1704830;1837580;3066335;2805000;2416000;3006000;1617000;1983000;1993000;1556000;1853550;2062859;2015208;2012136;2282414;2835110;2576659;2095806;2784254;3313178;3147138;3297385;3810000;3648785;3450000;3190000;3750000;3770000;2900000;2500000;2924000;2490000 -168;'598;Papua New Guinea;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110791;157069;232878;449900;630571;490852;321126;351119;106882;151952;143705;89393;99751;238412;118958;138576;170268;203901;520519;343207;583708;740978;650031;738558;1054743;822262;776250;721108;896108;753076;557376;567559;636438;554092 -168;'598;Papua New Guinea;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;10;2;0;0;0;0;0;0 -168;'598;Papua New Guinea;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;48;2;0;0;0;0;0;0 -168;'598;Papua New Guinea;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1014465;1298970;1704830;1837580;3066335;2805000;2416000;3006000;1617000;1983000;1993000;1556000;1853550;2062859;2015208;2012136;2282414;2835110;2576659;2095806;2784254;3313178;3147138;3297385;3810000;3648721;3450000;3190000;3750000;3770000;2900000;2500000;2924000;2490000 -168;'598;Papua New Guinea;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110791;157069;232878;449900;630571;490852;321126;351119;106882;151952;143705;89393;99751;238412;118958;138576;170268;203901;520519;343207;583708;740978;650031;738558;1054743;822252;776250;721108;896108;753076;557376;567559;636438;554092 -168;'598;Papua New Guinea;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;143;254;254;0;0;200;0;0;0;0;0;0;0;0;0;0;0;65;544;43;673;0;0;39;0;0;19;0;0;0;77;205;118 -168;'598;Papua New Guinea;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;42;65;65;0;0;42;0;0;0;0;0;0;0;0;0;0;0;4;36;3;246;0;0;43;0;0;4;0;0;0;35;21;4 -168;'598;Papua New Guinea;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;0;0;0;0;0;0;0;0 -168;'598;Papua New Guinea;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;0;0;0;0;0;0;0;0 -168;'598;Papua New Guinea;1868;Sawlogs and veneer logs;5516;Production;m3;152000;157000;180000;234000;298000;310000;389000;414000;401000;506000;719000;870000;804000;889000;939000;1181000;965000;1186000;1118000;1464000;1307000;2005000;1872000;1861000;1878000;2141000;2480000;2480000;2480000;2480000;2480000;2289000;3114000;3564000;3064000;3064000;3064000;3064000;3064000;2184000;1710000;2150000;2350000;2250000;2536000;2908000;2958000;2958000;2863000;4435000;4077000;3655208;3978000;4501000;4001000;4001000;4033000;4033000;4033000;4033000;4033000;4033000;4033000 -168;'598;Papua New Guinea;1868;Sawlogs and veneer logs;5916;Export quantity;m3;3400;4800;35400;46400;35300;63700;113600;143600;102300;193300;429700;409100;424700;655200;372200;444400;402400;445100;445100;641900;749000;1063300;1019000;1300000;1158300;1314000;1442000;1361000;906000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -168;'598;Papua New Guinea;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;101;108;709;696;679;981;1537;1835;1318;2760;5881;5254;8036;17824;9465;11263;13373;15859;22300;46478;46825;67222;52819;78564;58204;72357;116133;106803;65024;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -168;'598;Papua New Guinea;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;45000;46000;39000;48000;58000;63000;64000;72000;70000;70000;74000;76000;71000;80000;84000;87000;86000;93000;125000;138000;123000;90000;55000;60000;40000;55000;64000;64000;64000;64000;64000;64000;64000;64000;64000;64000;64000;64000;64000;50000;50000;50000;50000;50000;50000;50000;100000;100000;56000;58000;36000;36000;36000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000 -168;'598;Papua New Guinea;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -168;'598;Papua New Guinea;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -168;'598;Papua New Guinea;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;107000;111000;141000;186000;240000;247000;325000;342000;331000;436000;645000;794000;733000;809000;855000;1094000;879000;1093000;993000;1326000;1184000;1915000;1817000;1801000;1838000;2086000;2416000;2416000;2416000;2416000;2416000;2225000;3050000;3500000;3000000;3000000;3000000;3000000;3000000;2134000;1660000;2100000;2300000;2200000;2486000;2858000;2858000;2858000;2807000;4377000;4041000;3619208;3942000;4461000;3961000;3961000;3993000;3993000;3993000;3993000;3993000;3993000;3993000 -168;'598;Papua New Guinea;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;3400;4800;35400;46400;35300;63700;113600;143600;102300;193300;429700;409100;424700;655200;372200;444400;402400;445100;445100;641900;749000;1063300;1019000;1300000;1158300;1314000;1442000;1361000;906000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -168;'598;Papua New Guinea;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;101;108;709;696;679;981;1537;1835;1318;2760;5881;5254;8036;17824;9465;11263;13373;15859;22300;46478;46825;67222;52819;78564;58204;72357;116133;106803;65024;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -168;'598;Papua New Guinea;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125000;97000;97000;127000;82000;78000;82000;82000;82000;41000;41000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000 -168;'598;Papua New Guinea;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125000;97000;97000;127000;82000;78000;82000;82000;82000;41000;41000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000 -168;'598;Papua New Guinea;1870;Pulpwood and particles (1961-1997);5516;Production;m3;;;;;;;;;;;;;;75000;167000;143000;171000;170000;170000;288000;218000;218000;218000;218000;218000;218000;218000;218000;218000;175000;175000;175000;175000;175000;175000;175000;175000;;;;;;;;;;;;;;;;;;;;;;;;;; -168;'598;Papua New Guinea;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;;;;;;75000;167000;143000;171000;170000;170000;288000;218000;218000;218000;218000;218000;218000;218000;218000;218000;175000;175000;175000;175000;175000;175000;175000;175000;;;;;;;;;;;;;;;;;;;;;;;;;; -168;'598;Papua New Guinea;1871;Other industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -168;'598;Papua New Guinea;1871;Other industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -168;'598;Papua New Guinea;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -168;'598;Papua New Guinea;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -168;'598;Papua New Guinea;1630;Wood charcoal;5510;Production;t;1792;1843;1896;1951;2008;2066;2125;2187;2250;2315;2354;2399;2438;2510;2617;2743;2837;2864;2950;3077;3177;3276;3348;3459;3519;3573;3656;3737;3884;4052;4053;4030;3950;4042;4222;4414;4638;4757;4884;5013;5116;5220;5327;5436;5547;5648;5751;5856;5963;6071;6175;6281;6388;6498;6609;6700;6792;6886;6981;7077;7177;7278;7381 -168;'598;Papua New Guinea;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;4;5;6;20;1707;6;3667;196;0 -168;'598;Papua New Guinea;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;6;5;9;12;26;9;11;26;0 -168;'598;Papua New Guinea;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1512;1512;1512;1512;1512;1512;233;233;233;233;513;513;0 -168;'598;Papua New Guinea;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;622;622;622;622;622;622;77;77;77;77;14;14;0 -168;'598;Papua New Guinea;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;145;146;146;45;159;159;39;39;39;47;26;4593;271;7368;7368;54 -168;'598;Papua New Guinea;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;67;67;67;24;6;6;66;65;65;74;12;56;24;12;12;10 -168;'598;Papua New Guinea;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97700;76100;84400;84400;95000;95000;95000;95000;95000;47000;18000;41000;41000;10534;5704;5704;5704;5704;5704;5704;5704;74;74;75;1;1 -168;'598;Papua New Guinea;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8612;5622;5880;5880;6504;6504;6504;6504;6504;5623;2579;1714;1700;2533;1471;1471;1471;1471;1471;1471;1471;91;81;86;7;7 -168;'598;Papua New Guinea;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;145;145;145;42;80;80;1;1;1;9;9;4527;254;7368;7368;54 -168;'598;Papua New Guinea;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;67;67;23;3;3;1;0;0;9;9;51;21;12;12;10 -168;'598;Papua New Guinea;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;9600;68200;143000;170600;170000;170000;130800;95100;148400;154400;158300;126500;100000;101000;200000;232300;191000;93100;82258;90509;93420;98000;73300;70600;97700;76100;84400;84400;95000;95000;95000;95000;95000;47000;18000;41000;41000;10460;5630;5630;5630;5630;5630;5630;5630;0;0;1;1;1 -168;'598;Papua New Guinea;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;264;1982;4243;5402;7240;7240;10579;8120;7695;7101;6862;5362;4200;6596;14000;17000;14000;5837;5226;11068;9653;10392;8400;8157;8612;5622;5880;5880;6504;6504;6504;6504;6504;5623;2579;1714;1700;2452;1390;1390;1390;1390;1390;1390;1390;10;0;5;5;5 -168;'598;Papua New Guinea;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;40;40;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;1;3;79;79;38;38;38;38;17;66;17;0;0;0 -168;'598;Papua New Guinea;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;3;3;65;65;65;65;3;5;3;0;0;0 -168;'598;Papua New Guinea;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;74;74;74;74;74;74;74;74;74;74;74;0;0 -168;'598;Papua New Guinea;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;81;81;81;81;81;81;81;81;81;81;81;2;2 -168;'598;Papua New Guinea;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1443;0;1067;25;2989 -168;'598;Papua New Guinea;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;3;16;21;489 -168;'598;Papua New Guinea;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2964 -168;'598;Papua New Guinea;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;468 -168;'598;Papua New Guinea;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1443;0;1067;25;25 -168;'598;Papua New Guinea;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;3;16;21;21 -168;'598;Papua New Guinea;1872;Sawnwood;5516;Production;m3;43000;41000;35000;67000;82000;88000;94000;92000;108000;115000;91000;178000;141000;142000;137000;152000;138000;138000;138000;187000;124000;124000;124000;124000;117000;117000;117000;117000;117000;117000;117000;183000;118000;218000;218000;218000;218000;218000;40000;40000;40000;70000;60000;60000;61000;61000;61000;61000;81000;81000;63142;82000;82000;82000;82000;120000;120000;220000;220000;339994;339994;339994;339994 -168;'598;Papua New Guinea;1872;Sawnwood;5616;Import quantity;m3;600;263;600;500;1100;700;3500;2400;300;5200;1700;900;700;700;700;1000;;;;;;;;;;;;;;;;363;86;395;100;100;0;0;0;0;0;401;154;38;38;0;65;312;501;648;3879;3874;2195;3470;1466;3027;344;160;44;118;140;760;1573 -168;'598;Papua New Guinea;1872;Sawnwood;5622;Import value;1000 USD;52;19;44;21;89;72;227;151;38;507;273;139;125;125;125;54;;;;;;;;;;;;;;;;111;16;73;28;28;0;0;0;0;0;154;77;18;7;0;48;139;163;163;964;2595;1472;1426;555;818;167;80;74;424;63;103;63 -168;'598;Papua New Guinea;1872;Sawnwood;5916;Export quantity;m3;8100;6400;8800;10800;12300;12200;12200;14300;16500;17100;14600;24600;30300;51600;27300;51400;51100;47000;47000;56500;35100;32500;31300;29100;17200;9400;6400;5100;7200;7300;7300;5783;11357;6343;6000;17300;29800;26500;24000;38100;40600;42600;42900;58486;44332;59300;45649;44286;33266;27297;35478;16833;44632;26703;36179;35429;33593;63659;122871;43595;138458;32734;25319 -168;'598;Papua New Guinea;1872;Sawnwood;5922;Export value;1000 USD;502;426;636;780;925;901;999;1060;1253;1380;1125;2389;3844;7117;3498;6351;7155;6440;6440;10710;6857;6254;5278;5203;3396;1900;1200;1208;1800;1900;1900;1827;2421;1992;2039;5587;8481;7296;8926;13947;15617;14952;13549;16726;13798;19750;16090;23524;17301;17225;18743;14788;16794;12295;12246;12337;11250;18095;33140;63938;49213;36908;34373 -168;'598;Papua New Guinea;1632;Sawnwood, coniferous;5516;Production;m3;12000;14000;12000;18000;20000;18000;18000;23000;26000;23000;27000;32000;26000;28000;24000;29000;25000;25000;25000;54000;46000;46000;46000;46000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;10000;0;0;10000;10000;10000;10000;10000;10000;10000;10000;10000;20000;20000;20000;20000;20000;20000;20000;20000;20000;19994;19994;19994;19994 -168;'598;Papua New Guinea;1632;Sawnwood, coniferous;5616;Import quantity;m3;300;63;100;100;300;300;300;100;100;2100;1100;700;700;700;700;1000;;;;;;;;;;;;;;;;71;85;392;100;100;0;0;0;0;0;72;135;31;38;0;65;256;493;341;3009;2510;2168;3436;1428;469;24;57;9;25;102;627;10 -168;'598;Papua New Guinea;1632;Sawnwood, coniferous;5622;Import value;1000 USD;19;4;7;3;24;28;36;9;10;419;210;125;125;125;125;54;;;;;;;;;;;;;;;;16;14;72;28;28;0;0;0;0;0;41;61;11;7;0;48;127;144;136;912;1321;1445;1413;517;290;18;34;10;11;27;84;25 -168;'598;Papua New Guinea;1632;Sawnwood, coniferous;5916;Export quantity;m3;5500;3700;7300;9300;10300;10400;10400;10200;11900;13700;11500;14600;12500;15700;10900;17800;13100;11300;11300;11300;11300;11300;11300;11300;2400;2400;2400;2400;2400;2400;2400;162;523;182;400;300;800;500;1000;1300;800;400;1500;3586;3432;3000;2549;1480;565;691;525;42;19;982;41;242;983;371;0;0;96;205;846 -168;'598;Papua New Guinea;1632;Sawnwood, coniferous;5922;Export value;1000 USD;366;265;522;692;773;780;879;800;975;1146;895;1357;1449;2136;1373;1840;1477;1489;1489;1489;1489;1489;1489;1489;400;400;400;400;400;400;400;62;108;96;126;109;316;211;400;183;273;139;450;989;798;750;671;740;305;295;411;17;16;358;68;80;260;134;1;27;7;404;3000 -168;'598;Papua New Guinea;1633;Sawnwood, non-coniferous;5516;Production;m3;31000;27000;23000;49000;62000;70000;76000;69000;82000;92000;64000;146000;115000;114000;113000;123000;113000;113000;113000;133000;78000;78000;78000;78000;74000;74000;74000;74000;74000;74000;74000;140000;75000;175000;175000;175000;175000;175000;30000;40000;40000;60000;50000;50000;51000;51000;51000;51000;71000;71000;43142;62000;62000;62000;62000;100000;100000;200000;200000;320000;320000;320000;320000 -168;'598;Papua New Guinea;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;300;200;500;400;800;400;3200;2300;200;3100;600;200;;;;;;;;;;;;;;;;;;;;292;1;3;0;0;0;0;0;0;0;329;19;7;0;0;0;56;8;307;870;1364;27;34;38;2558;320;103;35;93;38;133;1563 -168;'598;Papua New Guinea;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;33;15;37;18;65;44;191;142;28;88;63;14;;;;;;;;;;;;;;;;;;;;95;2;1;0;0;0;0;0;0;0;113;16;7;0;0;0;12;19;27;52;1274;27;13;38;528;149;46;64;413;36;19;38 -168;'598;Papua New Guinea;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;2600;2700;1500;1500;2000;1800;1800;4100;4600;3400;3100;10000;17800;35900;16400;33600;38000;35700;35700;45200;23800;21200;20000;17800;14800;7000;4000;2700;4800;4900;4900;5621;10834;6161;5600;17000;29000;26000;23000;36800;39800;42200;41400;54900;40900;56300;43100;42806;32701;26606;34953;16791;44613;25721;36138;35187;32610;63288;122871;43595;138362;32529;24473 -168;'598;Papua New Guinea;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;136;161;114;88;152;121;120;260;278;234;230;1032;2395;4981;2125;4511;5678;4951;4951;9221;5368;4765;3789;3714;2996;1500;800;808;1400;1500;1500;1765;2313;1896;1913;5478;8165;7085;8526;13764;15344;14813;13099;15737;13000;19000;15419;22784;16996;16930;18332;14771;16778;11937;12178;12257;10990;17961;33139;63911;49206;36504;31373 -168;'598;Papua New Guinea;1634;Veneer sheets;5516;Production;m3;700;800;800;800;700;900;1200;2600;2900;2900;3100;3100;5000;5000;4000;4500;8000;10000;10000;10000;10000;10000;10000;10000;10000;15000;15000;20000;20000;33000;33000;33000;5000;5000;5000;5000;5000;5000;5000;20000;68000;70000;80000;80000;80000;81000;81000;81000;81000;81000;104800;62800;62800;62800;62800;62800;62800;62800;62800;76000;76000;76000;76000 -168;'598;Papua New Guinea;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;26;41;9;28;34;27;13;303;2;3;158;236;16;11;78;11;41;28;38;21 -168;'598;Papua New Guinea;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;19;19;19;23;75;38;26;682;153;36;197;284;16;12;269;128;42;170;137;87 -168;'598;Papua New Guinea;1634;Veneer sheets;5916;Export quantity;m3;700;800;800;700;700;900;800;2200;2900;2000;3100;2900;3300;5000;3600;4500;2100;2500;2500;1500;400;400;400;400;400;400;400;400;400;400;400;26;150;2418;1000;200;300;300;1700;5000;5000;36000;68825;65000;58466;41849;20116;16504;2851;1982;4277;6160;4320;4892;5183;3222;1733;308;1801;16689;5425;5842;10721 -168;'598;Papua New Guinea;1634;Veneer sheets;5922;Export value;1000 USD;85;70;81;76;82;92;93;135;283;192;281;242;418;697;405;550;275;351;351;327;102;102;102;102;102;102;102;102;102;102;102;13;75;921;1000;216;147;147;394;1143;1143;6302;15796;12480;19493;15567;9737;7557;1514;733;2275;2897;3208;3523;3682;2178;819;293;810;4334;1446;1668;2379 -168;'598;Papua New Guinea;1873;Wood-based panels;5516;Production;m3;9700;14200;10700;10300;20200;11600;12200;16800;16000;16300;18100;16400;17700;21700;19000;15300;15000;15000;15000;10300;9000;9000;9000;9000;9000;9000;9000;9000;9000;13000;13000;13000;10000;10000;10000;10000;10000;20000;10000;9000;9000;9000;12000;12000;12000;12000;13000;13000;14000;13000;44500;35963;28000;28000;29000;64000;69000;64000;64000;64000;64000;64000;64000 -168;'598;Papua New Guinea;1873;Wood-based panels;5616;Import quantity;m3;5557;4071;5171;4234;7800;12100;12100;12200;12500;3200;2800;1900;1900;1500;700;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;2382;611;705;415;1817;1517;1100;1900;2000;1000;600;694;1946;2197;4013;2977;3459;6823;8562;12313;16722;13229;18103;11128;7078;7353;4641;5539;5430;8561;5257;8825 -168;'598;Papua New Guinea;1873;Wood-based panels;5622;Import value;1000 USD;180;130;167;113;247;395;439;418;488;709;530;274;274;235;140;218;218;218;218;218;218;218;218;218;218;218;218;218;218;218;218;793;363;343;154;711;591;453;394;402;205;133;167;302;375;927;939;1750;2805;3576;5823;10273;8207;11169;6810;3577;4175;3509;2364;1898;3762;3193;3639 -168;'598;Papua New Guinea;1873;Wood-based panels;5916;Export quantity;m3;9700;11700;7600;9200;9600;7900;9500;10700;10500;11900;11800;9100;13000;15700;12400;10700;5500;6300;6300;6300;7800;6300;5000;5000;1100;200;200;200;200;200;200;8;26;14;14;200;200;2800;7000;7000;3000;2150;3085;4261;4152;4746;5944;6605;9880;10037;13464;8929;2249;2700;6627;8492;10311;11638;14487;7981;7838;9836;10733 -168;'598;Papua New Guinea;1873;Wood-based panels;5922;Export value;1000 USD;1935;2086;1551;2165;2254;2112;2286;2535;2480;2835;2702;2296;3429;4885;3466;4290;2560;3152;3152;4252;4564;3915;2998;2571;523;100;100;100;100;100;100;3;13;5;5;95;66;506;1514;1514;1050;821;1427;2115;2311;2905;4471;4688;4774;5270;9958;7409;2023;3169;5513;6435;6241;6563;5258;5010;6187;9552;8213 -168;'598;Papua New Guinea;1640;Plywood and LVL;5516;Production;m3;9700;14200;10700;10300;20200;11600;12200;16800;16000;16300;18100;16400;17700;21700;19000;15300;15000;15000;15000;10300;9000;9000;9000;9000;9000;9000;9000;9000;9000;13000;13000;13000;10000;10000;10000;10000;10000;20000;10000;9000;9000;9000;12000;12000;12000;12000;13000;13000;14000;13000;44500;35963;28000;28000;29000;64000;69000;64000;64000;64000;64000;64000;64000 -168;'598;Papua New Guinea;1640;Plywood and LVL;5616;Import quantity;m3;57;71;71;34;100;100;100;200;500;1200;800;800;800;500;700;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;1551;339;366;366;500;500;700;300;400;400;0;94;662;913;2729;1693;2140;4473;5903;10289;14252;10759;15557;9379;6454;6504;3185;2187;1009;5169;2469;3181 -168;'598;Papua New Guinea;1640;Plywood and LVL;5622;Import value;1000 USD;17;21;21;10;29;38;82;61;131;476;275;138;138;85;140;218;218;218;218;218;218;218;218;218;218;218;218;218;218;218;218;489;156;136;136;246;309;352;140;72;72;0;34;117;190;742;754;972;1531;2210;4399;7238;5172;9151;5236;2926;3498;2471;1071;699;2190;1499;1595 -168;'598;Papua New Guinea;1640;Plywood and LVL;5916;Export quantity;m3;9700;11700;7600;9200;9600;7900;9500;10700;10500;11900;11800;9100;13000;15700;12400;10700;5500;6300;6300;6300;7800;6300;5000;5000;1100;200;200;200;200;200;200;8;26;14;14;200;200;2800;7000;7000;3000;2150;3085;4261;4152;4746;5944;6605;9880;9988;13415;8880;2200;2651;6578;8443;10262;11589;14438;7932;7789;9836;10733 -168;'598;Papua New Guinea;1640;Plywood and LVL;5922;Export value;1000 USD;1935;2086;1551;2165;2254;2112;2286;2535;2480;2835;2702;2296;3429;4885;3466;4290;2560;3152;3152;4252;4564;3915;2998;2571;523;100;100;100;100;100;100;3;13;5;5;95;66;506;1514;1514;1050;821;1427;2115;2311;2905;4471;4688;4774;5249;9937;7388;2002;3148;5492;6414;6220;6542;5237;4989;6166;9550;8211 -168;'598;Papua New Guinea;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;5500;4000;5100;4200;7700;12000;12000;12000;12000;2000;2000;1100;1100;1000;;;;;;;;;;;;;;;;;;610;3;32;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -168;'598;Papua New Guinea;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;163;109;146;103;218;357;357;357;357;233;255;136;136;150;;;;;;;;;;;;;;;;;;165;2;14;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -168;'598;Papua New Guinea;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -168;'598;Papua New Guinea;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -168;'598;Papua New Guinea;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;1300;1000;300;800;800;400;400;400;1000;1000;1000;1000;270;807;859;219;111;111;141;131;128;293;293;1550;2379;1062;1476;1888 -168;'598;Papua New Guinea;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;461;278;91;104;180;82;82;82;144;144;144;144;276;448;436;203;1392;1392;118;117;97;217;217;525;330;434;622;759 -168;'598;Papua New Guinea;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 -168;'598;Papua New Guinea;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 -168;'598;Papua New Guinea;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;36;15;15;15;8;8;75;28;28;43;32;131;16;74 -168;'598;Papua New Guinea;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;15;6;6;6;4;4;27;78;78;11;11;52;161;154 -168;'598;Papua New Guinea;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;221;269;307;17;17;17;100;800;800;200;200;200;284;284;284;284;1049;1507;1764;1790;2344;2344;2397;1610;421;528;1135;1759;2010;2199;1296;3682 -168;'598;Papua New Guinea;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;139;205;193;4;4;4;10;150;150;51;51;51;41;41;41;41;502;812;915;1215;1637;1637;1896;1453;527;382;743;757;858;1086;911;1131 -168;'598;Papua New Guinea;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;49;49;49;49;49;49;49;49;49;49;49;0;0 -168;'598;Papua New Guinea;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;21;21;21;21;21;21;21;21;21;21;2;2 -168;'598;Papua New Guinea;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;704;770;953;641;847;847;684;710;10;30;350;51;108;89;54;914 -168;'598;Papua New Guinea;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;263;292;368;316;442;442;357;337;13;21;137;33;68;63;35;212 -168;'598;Papua New Guinea;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;314;637;753;553;901;901;1117;861;363;456;753;1494;1659;1794;668;1537 -168;'598;Papua New Guinea;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;211;480;374;393;689;689;1033;1092;495;329;581;681;740;954;421;517 -168;'598;Papua New Guinea;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;49;49;49;49;49;49;49;49;49;49;49;0;0 -168;'598;Papua New Guinea;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;21;21;21;21;21;21;21;21;21;21;2;2 -168;'598;Papua New Guinea;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;20;17;17;17;17;100;800;800;200;200;200;284;284;284;284;31;100;58;596;596;596;596;39;48;42;32;214;243;316;574;1231 -168;'598;Papua New Guinea;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;10;150;150;51;51;51;41;41;41;41;28;40;173;506;506;506;506;24;19;32;25;43;50;69;455;402 -168;'598;Papua New Guinea;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;208;249;290;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -168;'598;Papua New Guinea;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;135;201;189;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -168;'598;Papua New Guinea;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;193;107;144;288;288;288;288;288;288;288 -168;'598;Papua New Guinea;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;201;60;58;58;200;200;200;400;200;1400;1400;1400;1800;1800;1800;1800;3;140;1162;564;315;315;42;45;82;24;24;12;16846;20;384;5 -168;'598;Papua New Guinea;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;8;8;8;47;32;32;48;45;467;467;467;800;800;800;800;1;190;298;767;285;285;146;145;173;79;79;39;2222;22;91;14 -168;'598;Papua New Guinea;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;438;438;15;1751;1573;1383;498;412;449;593;593;412;478;458;499;499 -168;'598;Papua New Guinea;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;11;11;2;520;431;363;151;130;133;282;282;115;135;137;149;149 -168;'598;Papua New Guinea;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;4;189;212;212;26;26;63;5;5;2;1;0;1;1 -168;'598;Papua New Guinea;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;6;83;220;220;140;140;168;74;74;13;5;0;5;5 -168;'598;Papua New Guinea;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;305;305;305;305;305;305;305;305;305;305;305;305 -168;'598;Papua New Guinea;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;103;103;103;103;103;103;103;103;103;103;103;103 -168;'598;Papua New Guinea;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;186;186;186;0;0;0;0;0;0;0;0;0;0 -168;'598;Papua New Guinea;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;80;80;80;0;0;0;0;0;0;0;0;0;0 -168;'598;Papua New Guinea;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;305;305;305;305;305;305;305;305;305;305;305;305 -168;'598;Papua New Guinea;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;103;103;103;103;103;103;103;103;103;103;103;103 -168;'598;Papua New Guinea;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;185;185;185;0;0;0;;;;;;; -168;'598;Papua New Guinea;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;77;77;0;0;0;;;;;;; -168;'598;Papua New Guinea;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;0;0;0;0;0;0;0;0;0;0 -168;'598;Papua New Guinea;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;0;0;0;0;0;0;0;0;0;0 -168;'598;Papua New Guinea;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;305;305;305;305;305;305;305;305;305;305;305;305 -168;'598;Papua New Guinea;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;103;103;103;103;103;103;103;103;103;103;103;103 -168;'598;Papua New Guinea;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;305;305;305;305;305;305;305;305;305;305;305;305 -168;'598;Papua New Guinea;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;103;103;103;103;103;103;103;103;103;103;103;103 -168;'598;Papua New Guinea;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -168;'598;Papua New Guinea;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -168;'598;Papua New Guinea;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;0;0;0;;;;;;; -168;'598;Papua New Guinea;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;0;0;0;;;;;;; -168;'598;Papua New Guinea;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;26;26;26;26;63;5;5;2;1;0;1;1 -168;'598;Papua New Guinea;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;140;140;140;140;168;74;74;13;5;0;5;5 -168;'598;Papua New Guinea;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;3;4;4;4;3;3;13;9;76;76;76;76;76;76 -168;'598;Papua New Guinea;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;6;11;11;4;4;23;14;53;53;53;53;53;53 -168;'598;Papua New Guinea;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;193;107;144;288;288;288;288;288;288;288 -168;'598;Papua New Guinea;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;201;60;58;58;200;200;200;400;200;1400;1400;1400;1800;1800;1800;1800;3;139;1158;375;103;103;16;19;19;19;19;10;16845;20;383;4 -168;'598;Papua New Guinea;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;8;8;8;47;32;32;48;45;467;467;467;800;800;800;800;1;187;292;684;65;65;6;5;5;5;5;26;2217;22;86;9 -168;'598;Papua New Guinea;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;438;438;15;1751;1268;1078;193;107;144;288;288;107;173;153;194;194 -168;'598;Papua New Guinea;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;2;520;328;260;48;27;30;179;179;12;32;34;46;46 -168;'598;Papua New Guinea;1876;Paper and paperboard;5610;Import quantity;t;500;500;1600;2100;900;1100;1200;1700;5200;3400;3500;3800;4100;3600;3600;4200;7200;9400;9500;12800;11500;7700;10000;7800;8600;7900;8500;6600;9500;8100;8100;2774;6548;8636;7996;5500;14500;9500;18800;17800;16400;16000;16000;16187;16187;16187;16187;17420;15717;20743;24281;20454;19860;24399;17593;22128;21681;20558;26777;27736;31258;19945;23198 -168;'598;Papua New Guinea;1876;Paper and paperboard;5622;Import value;1000 USD;170;163;571;752;326;422;442;604;1557;1094;1189;1550;1644;1532;1532;1597;3700;4900;5600;8600;7500;4900;6400;4992;5504;5806;4877;4491;5993;5401;5401;2935;4217;5964;5310;5340;9462;3618;11997;9477;8203;8148;8148;8553;8553;8553;8553;12403;10578;16249;21095;17341;17680;20237;13471;16623;17752;16391;24789;22375;26442;20383;23023 -168;'598;Papua New Guinea;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;5;6;6;6;5;5;0;0;0;0;0;0;0;0;0;0;1046;1046;1046;1053;1053;7;8;34;27;27;16;32;21;11;26 -168;'598;Papua New Guinea;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;4;5;5;5;4;4;0;0;0;0;0;0;0;0;0;0;494;494;494;592;592;98;99;139;128;128;83;128;39;11;13 -168;'598;Papua New Guinea;2042;Graphic papers;5610;Import quantity;t;100;100;100;0;100;200;100;300;200;600;500;700;1000;500;500;1100;;;;;;;;;;;0;;;;;1584;3861;4532;3892;3500;2600;3700;5100;3800;4000;3700;3700;4347;4347;4347;4347;3772;4345;3560;4950;13581;13581;5410;4644;4969;4629;4794;9237;13208;11920;5162;7970 -168;'598;Papua New Guinea;2042;Graphic papers;5622;Import value;1000 USD;18;22;32;0;21;62;21;51;29;79;71;183;277;165;165;230;;;;;;;;;;;0;;;;;1617;2498;3734;3080;3436;3364;3186;4563;2927;2826;2588;2588;3467;3467;3467;3467;4004;3704;4029;6048;9929;9929;6067;5112;5181;5220;5140;10102;9028;10765;5960;9586 -168;'598;Papua New Guinea;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;0;0;0;0;0;0;0;0;0;0;1046;1046;1046;1046;1046;0;0;0;0;0;0;0;0;0;0 -168;'598;Papua New Guinea;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;0;0;0;0;0;0;0;0;0;0;494;494;494;494;494;0;0;0;0;0;0;0;0;0;0 -168;'598;Papua New Guinea;1671;Newsprint;5610;Import quantity;t;100;100;100;0;100;200;100;300;200;600;500;700;1000;500;500;1100;;;;;;;;;;;0;;;;;3;2800;2940;2300;2700;700;2100;1100;1000;700;500;500;1118;1118;1118;1118;1205;652;829;767;9185;9185;1407;1066;1296;952;69;4300;6478;5221;1602;2096 -168;'598;Papua New Guinea;1671;Newsprint;5622;Import value;1000 USD;18;22;32;0;21;62;21;51;29;79;71;183;277;165;165;230;;;;;;;;;;;0;;;;;4;1378;1704;1050;2019;319;1195;599;500;341;192;192;570;570;570;570;615;332;423;391;4684;4684;718;544;661;486;35;2672;2087;2353;786;1474 -168;'598;Papua New Guinea;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1046;1046;1046;1046;1046;0;0;0;0;0;0;0;0;0;0 -168;'598;Papua New Guinea;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;494;494;494;494;494;0;0;0;0;0;0;0;0;0;0 -168;'598;Papua New Guinea;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1581;1061;1592;1592;800;1900;1600;4000;2800;3300;3200;3200;3229;3229;3229;3229;2567;3693;2731;4183;4396;4396;4003;3578;3673;3677;4725;4937;6730;6699;3560;5874 -168;'598;Papua New Guinea;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1613;1120;2030;2030;1417;3045;1991;3964;2427;2485;2396;2396;2897;2897;2897;2897;3389;3372;3606;5657;5245;5245;5349;4568;4520;4734;5105;7430;6941;8412;5174;8112 -168;'598;Papua New Guinea;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;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 -168;'598;Papua New Guinea;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;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 -168;'598;Papua New Guinea;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;251;197;269;507;1231;1231;215;204;242;260;387;246;454;603;118;330 -168;'598;Papua New Guinea;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;438;181;496;831;1095;1095;484;676;552;518;439;443;231;777;466;712 -168;'598;Papua New Guinea;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -168;'598;Papua New Guinea;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -168;'598;Papua New Guinea;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1115;2788;1952;2300;2300;2300;2300;2300;2300;2300;1910;2212;1931;2795;2542;2542;3084;2794;2908;2354;3545;3956;5035;5175;2494;4751 -168;'598;Papua New Guinea;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1224;2437;1492;1528;1528;1528;1528;1528;1528;1528;2370;2619;2335;3422;2601;2601;4029;3250;3221;3016;3650;4988;5279;5841;3084;5981 -168;'598;Papua New Guinea;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;485;1212;848;1000;900;900;929;929;929;929;406;1284;531;881;623;623;704;580;523;1063;793;735;1241;921;948;793 -168;'598;Papua New Guinea;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;767;1527;935;957;868;868;1369;1369;1369;1369;581;572;775;1404;1549;1549;836;642;747;1200;1016;1999;1431;1794;1624;1419 -168;'598;Papua New Guinea;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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 -168;'598;Papua New Guinea;1616;Printing and writing papers, coated;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 -168;'598;Papua New Guinea;1675;Other paper and paperboard;5610;Import quantity;t;400;400;1500;2100;800;900;1100;1400;5000;2800;3000;3100;3100;3100;3100;3100;7200;9400;9500;12800;11500;7700;10000;7800;8600;7900;8500;6600;9500;8100;8100;1190;2687;4104;4104;2000;11900;5800;13700;14000;12400;12300;12300;11840;11840;11840;11840;13648;11372;17183;19331;6873;6279;18989;12949;17159;17052;15764;17540;14528;19338;14783;15228 -168;'598;Papua New Guinea;1675;Other paper and paperboard;5622;Import value;1000 USD;152;141;539;752;305;360;421;553;1528;1015;1118;1367;1367;1367;1367;1367;3700;4900;5600;8600;7500;4900;6400;4992;5504;5806;4877;4491;5993;5401;5401;1318;1719;2230;2230;1904;6098;432;7434;6550;5377;5560;5560;5086;5086;5086;5086;8399;6874;12220;15047;7412;7751;14170;8359;11442;12532;11251;14687;13347;15677;14423;13437 -168;'598;Papua New Guinea;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1;1;1;0;;;;;;;;;;;;;;;7;7;7;8;34;27;27;16;32;21;11;26 -168;'598;Papua New Guinea;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1;1;1;0;;;;;;;;;;;;;;;98;98;98;99;139;128;128;83;128;39;11;13 -168;'598;Papua New Guinea;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1400;1400;1400;940;940;940;940;73;37;356;1400;2597;2597;842;475;890;1028;248;1403;1568;334;658;631 -168;'598;Papua New Guinea;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1041;1041;1041;567;567;567;567;80;51;364;1906;2872;2872;1355;1320;1759;1520;329;2009;2288;493;1622;1495 -168;'598;Papua New Guinea;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;11;4;4;1;4;3;0;0 -168;'598;Papua New Guinea;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;84;84;84;16;5;5;6;5;4;1;1 -168;'598;Papua New Guinea;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8500;10100;10100;10100;10100;10100;10100;13160;10289;15996;17209;2864;2270;16550;10847;12483;12705;13258;15879;10341;15899;11042;12376 -168;'598;Papua New Guinea;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3199;3634;3634;3634;3634;3634;3634;6781;4976;8820;10859;2689;3028;10516;5738;6542;8469;8800;11365;8473;12233;10344;9746 -168;'598;Papua New Guinea;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;3;3;3;10;8;10;10;26 -168;'598;Papua New Guinea;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;5;5;5;8;5;8;8;8 -168;'598;Papua New Guinea;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;1200;1200;1200;1200;1200;1200;159;640;255;727;422;422;379;181;309;10378;11195;6293;5845;3007;7070;9941 -168;'598;Papua New Guinea;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;364;600;600;600;600;600;600;241;354;284;596;1368;1368;427;143;191;5527;6322;4241;3388;2515;4349;6418 -168;'598;Papua New Guinea;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7 -168;'598;Papua New Guinea;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3 -168;'598;Papua New Guinea;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;800;1800;1800;1800;1800;1800;1800;12178;8641;15165;15469;1473;879;14574;10250;9711;466;204;7687;1027;243;196;311 -168;'598;Papua New Guinea;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;370;569;569;569;569;569;569;6097;4017;7971;9555;569;908;8278;5242;4734;1316;470;4961;1434;477;1020;919 -168;'598;Papua New Guinea;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7100;7100;7100;7100;7100;7100;7100;793;971;550;971;764;764;1236;394;2451;1743;1668;1871;3400;12474;3756;2088 -168;'598;Papua New Guinea;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2465;2465;2465;2465;2465;2465;2465;416;565;528;655;487;487;1623;318;1595;1533;1788;2137;3612;9079;4960;2381 -168;'598;Papua New Guinea;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;0;2;2;18 -168;'598;Papua New Guinea;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;1;4;4;4 -168;'598;Papua New Guinea;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;37;26;42;205;205;361;22;12;118;191;28;69;175;20;36 -168;'598;Papua New Guinea;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;40;37;53;265;265;188;35;22;93;220;26;39;162;15;28 -168;'598;Papua New Guinea;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1 -168;'598;Papua New Guinea;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1 -168;'598;Papua New Guinea;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;400;400;1500;2100;800;900;1100;1400;5000;2800;3000;3100;3100;3100;3100;3100;7200;9400;9500;12800;11500;7700;10000;7800;8600;7900;8500;6600;9500;8100;8100;1190;2687;4104;4104;2000;11900;5800;13700;14000;2500;800;800;800;800;800;800;415;1046;831;722;1412;1412;1597;1627;3786;3319;2258;258;2619;3105;3083;2221 -168;'598;Papua New Guinea;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;152;141;539;752;305;360;421;553;1528;1015;1118;1367;1367;1367;1367;1367;3700;4900;5600;8600;7500;4900;6400;4992;5504;5806;4877;4491;5993;5401;5401;1318;1719;2230;2230;1904;6098;432;7434;6550;1137;885;885;885;885;885;885;1538;1847;3036;2282;1851;1851;2299;1301;3141;2543;2122;1313;2586;2951;2457;2196 -168;'598;Papua New Guinea;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;20;20;20;5;20;8;1;0 -168;'598;Papua New Guinea;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;14;118;118;118;69;118;27;2;4 -168;'598;Papua New Guinea;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15144;16212;9537;9414;7554;18465;16768 -168;'598;Papua New Guinea;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14903;6634;4592;4502;912;8185;6744 -168;'598;Papua New Guinea;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;12;95;40;54;22;107 -168;'598;Papua New Guinea;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;476;1053;529;194;194;385;452 -168;'598;Papua New Guinea;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;1;14;0;1;4;8 -168;'598;Papua New Guinea;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;193;193;193;193;193;193;193 -168;'598;Papua New Guinea;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;11;81;40;53;18;99 -168;'598;Papua New Guinea;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;283;860;336;1;1;192;259 -168;'598;Papua New Guinea;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;253;478;153;279;116;106;122 -168;'598;Papua New Guinea;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;37;71;13;1;0;1 -168;'598;Papua New Guinea;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;142;139;117;103;189;90;155 -168;'598;Papua New Guinea;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;45;14;219;1;12;24 -168;'598;Papua New Guinea;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2810;2454;1570;1698;1196;2079;1926 -168;'598;Papua New Guinea;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;58;101;61;206;15;15 -168;'598;Papua New Guinea;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9066;11773;6796;6953;5666;15075;13974 -168;'598;Papua New Guinea;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;57;9;12;1;48;1 -168;'598;Papua New Guinea;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2361;875;1;65;1;112;64 -168;'598;Papua New Guinea;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -168;'598;Papua New Guinea;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;472;481;805;276;332;981;420 -168;'598;Papua New Guinea;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14272;5384;3868;4003;509;7725;6251 -168;'598;Papua New Guinea;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46496;47282;25115;24317;27187;72904;49774 -168;'598;Papua New Guinea;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;251;295;238;199;182;70 -168;'598;Papua New Guinea;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;2;223;145;19;18;39 -168;'598;Papua New Guinea;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1690;1992;1177;1131;1453;3046;1524 -168;'598;Papua New Guinea;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -168;'598;Papua New Guinea;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9970;8597;5827;6558;6027;22078;16879 -168;'598;Papua New Guinea;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;16;0;0;20;20;0 -168;'598;Papua New Guinea;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9319;7538;7255;7341;9713;18254;11932 -168;'598;Papua New Guinea;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;146;280;237;162;6;19 -168;'598;Papua New Guinea;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25479;29153;10633;9142;9975;29508;19400 -168;'598;Papua New Guinea;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;89;15;1;17;156;51 -169;'600;Paraguay;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;271142;303073;254746;247915;271408.6;310332;284160 -169;'600;Paraguay;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104950;120972;106981;97534;139027.71;176233.47;159885.47 -169;'600;Paraguay;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;501;472;572;728;752;793;979;992;1003;1321;1091;1430;1997;4692;4732;4245;5543;6534;8611;11524;8902;11971;6077;7450;8566;8638;10464;13055;19193;18747;20947;22998;32106;27821;24747;24873;24263;36067;31132;29925;46420;46420;47005;64258;64258;64258;71976;117541;106343;143482;166560;150636;159676;179823;114428;160897;174145;200999;159310;158641;174861.6;210849;178673 -169;'600;Paraguay;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;6354;6599;4680;7077;9641;10567;7608;7739;10745;12627;10396;9596;11820;23302;24053;12135;19912;21152;39477;66451;59289;91859;70635;87236;91030;67005;48100;24971;38676;29311;27832;49072;68252;79527;115198;65184;77246;53613;50987;42397;37492;39439;39667;33452;35057;39681;59959;82008;73752;82745;94480;86299;98302;81034;80353;70960;87736;106787;95574;86537;126262.71;161204.47;143793.47 -169;'600;Paraguay;1861;Roundwood;5516;Production;m3;2056250;2061623;3117081;3122626;3128259;3228983;4183798;3995706;3564709;3720807;3811223;3645259;3952789;4267933;4575672;4560414;4778245;5241361;5783437;6268415;6683630;6651014;6628457;7009526;7143631;7703293;7925447;7822157;8080634;8340835;8550346;8632956;8845666;9042333;9267666;9273089;9440784;9453861;9551823;9594923;9690197;9787375;9886503;9987627;10090794;10192644;10296400;10402200;10510004;10619874;10727532;10837115;10948658;11062202;11177785;11287621;11399210;11512581;11627764;11744788;11863059;11983209;12105267 -169;'600;Paraguay;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5676;5676;5495;0;0;0;300;300;300;300;20;20;20;20;20;20;20;20;20;20;20;0;19;61;0;133;3;1472;568;1853 -169;'600;Paraguay;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;507;507;479;0;0;0;69;69;69;69;1;1;1;1;1;1;1;1;1;1;1;0;23;12;0;38;2;230;103;188 -169;'600;Paraguay;1861;Roundwood;5916;Export quantity;m3;216700;218100;174300;238800;311600;318600;229100;189800;174500;166900;114900;21400;1100;2300;3000;100;1600;200;200;100;100;;;;;;;;;6144;2155;2070;857;1501;1501;7900;2400;1700;1700;0;0;14169;8200;13296;13296;13296;13296;15280;13374;15923;8730;13225;16375;13464;17603;12298;16355;18769;8866;8981;10914;17988;13019 -169;'600;Paraguay;1861;Roundwood;5922;Export value;1000 USD;4700;4915;3877;5494;7445;8563;6215;5582;6344;6625;4492;902;43;122;162;17;148;19;15;23;23;;;;;;;;;514;264;316;121;244;244;273;419;252;252;0;0;1629;800;1069;1069;1069;1069;2564;1487;1848;2978;2422;3441;3028;4786;1913;6822;10328;3892;1963;3001;5520;2874 -169;'600;Paraguay;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -169;'600;Paraguay;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;2;0;26;0 -169;'600;Paraguay;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;1;0;20;0 -169;'600;Paraguay;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107;15;15;0;0;268;268 -169;'600;Paraguay;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;4;0;0;0;86;86 -169;'600;Paraguay;1863;Roundwood, non-coniferous;5516;Production;m3;2056250;2061623;3117081;3122626;3128259;3228983;4183798;3995706;3564709;3720807;3811223;3645259;3952789;4267933;4575672;4560414;4778245;5241361;5783437;6268415;6683630;6651014;6628457;7009526;7143631;7703293;7925447;7822157;8080634;8340835;8550346;8632956;8845666;9042333;9267666;9273089;9440784;9453861;9551823;9594923;9690197;9787375;9886503;9987627;10090794;10192644;10296400;10402200;10510004;10619874;10727532;10837115;10948658;11062202;11177785;11287621;11399210;11512581;11627764;11744788;11863059;11983209;12105267 -169;'600;Paraguay;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;0;133;1;1472;542;1853 -169;'600;Paraguay;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;0;38;1;230;83;188 -169;'600;Paraguay;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16248;18754;8851;8981;10914;17720;12751 -169;'600;Paraguay;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6775;10324;3892;1963;3001;5434;2788 -169;'600;Paraguay;1864;Wood fuel;5516;Production;m3;1661250;1666623;2342081;2347626;2353259;2458983;3162798;3301706;2775709;2914807;3055223;2892259;3033789;3228933;3420672;3612414;3650245;3719361;3794437;3856415;4271630;4239014;4216457;4276526;4396631;4463293;4573447;4716157;4757634;4840835;4913346;4975956;5071666;5165333;5279666;5346089;5423784;5464861;5507823;5550923;5646197;5743375;5842503;5943627;6046794;6148644;6252400;6358200;6466004;6575874;6683532;6793115;6904658;7018202;7133785;7243621;7355210;7468581;7583764;7700788;7819059;7939209;8061267 -169;'600;Paraguay;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;120;120;120;7000;1500;1700;1700;0;0;0;0;0;0;0;0;0;0;57;161;136;140;204;3;102;328;37;0;35;36;348;358 -169;'600;Paraguay;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;5;5;5;84;230;252;252;0;0;0;0;0;0;0;0;0;0;12;35;18;24;122;0;50;27;10;0;12;10;97;103 -169;'600;Paraguay;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -169;'600;Paraguay;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;268;268 -169;'600;Paraguay;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;86 -169;'600;Paraguay;1628;Wood fuel, non-coniferous;5516;Production;m3;1661250;1666623;2342081;2347626;2353259;2458983;3162798;3301706;2775709;2914807;3055223;2892259;3033789;3228933;3420672;3612414;3650245;3719361;3794437;3856415;4271630;4239014;4216457;4276526;4396631;4463293;4573447;4716157;4757634;4840835;4913346;4975956;5071666;5165333;5279666;5346089;5423784;5464861;5507823;5550923;5646197;5743375;5842503;5943627;6046794;6148644;6252400;6358200;6466004;6575874;6683532;6793115;6904658;7018202;7133785;7243621;7355210;7468581;7583764;7700788;7819059;7939209;8061267 -169;'600;Paraguay;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;328;37;0;35;36;80;90 -169;'600;Paraguay;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;10;0;12;10;11;17 -169;'600;Paraguay;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;120;120;120;7000;1500;1700;1700;0;0;0;0;0;0;0;0;0;0;57;161;136;140;204;3;102;;;;;;; -169;'600;Paraguay;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;5;5;5;84;230;252;252;0;0;0;0;0;0;0;0;0;0;12;35;18;24;122;0;50;;;;;;; -169;'600;Paraguay;1865;Industrial roundwood;5516;Production;m3;395000;395000;775000;775000;775000;770000;1021000;694000;789000;806000;756000;753000;919000;1039000;1155000;948000;1128000;1522000;1989000;2412000;2412000;2412000;2412000;2733000;2747000;3240000;3352000;3106000;3323000;3500000;3637000;3657000;3774000;3877000;3988000;3927000;4017000;3989000;4044000;4044000;4044000;4044000;4044000;4044000;4044000;4044000;4044000;4044000;4044000;4044000;4044000;4044000;4044000;4044000;4044000;4044000;4044000;4044000;4044000;4044000;4044000;4044000;4044000 -169;'600;Paraguay;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5676;5676;5495;0;0;0;300;300;300;300;20;20;20;20;20;20;20;20;20;20;20;0;19;61;0;133;3;1472;568;1853 -169;'600;Paraguay;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;507;507;479;0;0;0;69;69;69;69;1;1;1;1;1;1;1;1;1;1;1;0;23;12;0;38;2;230;103;188 -169;'600;Paraguay;1865;Industrial roundwood;5916;Export quantity;m3;216700;218100;174300;238800;311600;318600;229100;189800;174500;166900;114900;21400;1100;2300;3000;100;1600;200;200;100;100;;;;;;;;;6144;2155;2028;737;1381;1381;900;900;0;0;0;0;14169;8200;13296;13296;13296;13296;15280;13374;15866;8569;13089;16235;13260;17600;12196;16027;18732;8866;8946;10878;17640;12661 -169;'600;Paraguay;1865;Industrial roundwood;5922;Export value;1000 USD;4700;4915;3877;5494;7445;8563;6215;5582;6344;6625;4492;902;43;122;162;17;148;19;15;23;23;;;;;;;;;514;264;314;116;239;239;189;189;0;0;0;0;1629;800;1069;1069;1069;1069;2564;1487;1836;2943;2404;3417;2906;4786;1863;6795;10318;3892;1951;2991;5423;2771 -169;'600;Paraguay;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;2;0;26;0 -169;'600;Paraguay;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;1;0;20;0 -169;'600;Paraguay;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;102;102;102;102;102;208;0;0;0;234;0;62;0;107;15;15;0;0;0;0 -169;'600;Paraguay;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;5;5;5;5;5;11;0;0;0;20;0;4;0;47;4;0;0;0;0;0 -169;'600;Paraguay;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;2;0;26;0 -169;'600;Paraguay;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;1;0;20;0 -169;'600;Paraguay;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;102;102;102;102;102;208;0;0;0;234;0;62;0;107;15;15;0;0;0;0 -169;'600;Paraguay;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;5;5;5;5;5;11;0;0;0;20;0;4;0;47;4;0;0;0;0;0 -169;'600;Paraguay;1867;Industrial roundwood, non-coniferous;5516;Production;m3;395000;395000;775000;775000;775000;770000;1021000;694000;789000;806000;756000;753000;919000;1039000;1155000;948000;1128000;1522000;1989000;2412000;2412000;2412000;2412000;2733000;2747000;3240000;3352000;3106000;3323000;3500000;3637000;3657000;3774000;3877000;3988000;3927000;4017000;3989000;4044000;4044000;4044000;4044000;4044000;4044000;4044000;4044000;4044000;4044000;4044000;4044000;4044000;4044000;4044000;4044000;4044000;4044000;4044000;4044000;4044000;4044000;4044000;4044000;4044000 -169;'600;Paraguay;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5676;5676;5495;0;0;0;300;300;300;300;20;20;20;20;20;20;20;20;20;20;20;0;19;61;0;133;1;1472;542;1853 -169;'600;Paraguay;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;507;507;479;0;0;0;69;69;69;69;1;1;1;1;1;1;1;1;1;1;1;0;23;12;0;38;1;230;83;188 -169;'600;Paraguay;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6144;2155;2028;737;1381;1381;900;900;0;0;0;0;14169;8200;13194;13194;13194;13194;15178;13166;15866;8569;13089;16001;13260;17538;12196;15920;18717;8851;8946;10878;17640;12661 -169;'600;Paraguay;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;514;264;314;116;239;239;189;189;0;0;0;0;1629;800;1064;1064;1064;1064;2559;1476;1836;2943;2404;3397;2906;4782;1863;6748;10314;3892;1951;2991;5423;2771 -169;'600;Paraguay;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;181;181;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;19;0;0;18;0;0;0;37 -169;'600;Paraguay;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;23;0;0;5;0;0;0;9 -169;'600;Paraguay;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6144;2155;2028;737;1381;1381;900;900;0;0;0;0;0;0;1714;1714;1714;1714;514;224;89;89;155;330;330;17538;12196;15920;18717;8851;8946;10878;1977;12661 -169;'600;Paraguay;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;514;264;314;116;239;239;189;189;0;0;0;0;0;0;250;250;250;250;82;84;23;23;114;546;546;4782;1863;6748;10314;3892;1951;2991;1733;2771 -169;'600;Paraguay;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5495;5495;5495;0;0;0;300;300;300;300;20;20;20;20;20;20;20;20;20;20;20;0;0;61;0;115;1;1472;542;1816 -169;'600;Paraguay;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;479;479;479;0;0;0;69;69;69;69;1;1;1;1;1;1;1;1;1;1;1;0;0;12;0;33;1;230;83;179 -169;'600;Paraguay;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14169;8200;11480;11480;11480;11480;14664;12942;15777;8480;12934;15671;12930;0;0;0;0;0;0;0;15663;0 -169;'600;Paraguay;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1629;800;814;814;814;814;2477;1392;1813;2920;2290;2851;2360;0;0;0;0;0;0;0;3690;0 -169;'600;Paraguay;1868;Sawlogs and veneer logs;5516;Production;m3;350000;350000;600000;600000;600000;600000;850000;520000;620000;650000;600000;597000;688000;801000;860000;817000;990000;1196000;1650000;2073000;2073000;2073000;2073000;2358000;2362000;2846000;2948000;2692000;2902000;3073000;3204000;3218000;3322000;3413000;3511000;3437000;3515000;3473000;3515000;3515000;3515000;3515000;3515000;3515000;3515000;3515000;3515000;3515000;3515000;3515000;3515000;3515000;3515000;3515000;3515000;3515000;3515000;3515000;3515000;3515000;3515000;3515000;3515000 -169;'600;Paraguay;1868;Sawlogs and veneer logs;5916;Export quantity;m3;211100;215600;168100;236400;310000;317700;228100;189000;173600;165800;113900;21000;1000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -169;'600;Paraguay;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;4557;4841;3718;5424;7393;8533;6183;5552;6316;6587;4459;886;38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -169;'600;Paraguay;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;350000;350000;600000;600000;600000;600000;850000;520000;620000;650000;600000;597000;688000;801000;860000;817000;990000;1196000;1650000;2073000;2073000;2073000;2073000;2358000;2362000;2846000;2948000;2692000;2902000;3073000;3204000;3218000;3322000;3413000;3511000;3437000;3515000;3473000;3515000;3515000;3515000;3515000;3515000;3515000;3515000;3515000;3515000;3515000;3515000;3515000;3515000;3515000;3515000;3515000;3515000;3515000;3515000;3515000;3515000;3515000;3515000;3515000;3515000 -169;'600;Paraguay;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;211100;215600;168100;236400;310000;317700;228100;189000;173600;165800;113900;21000;1000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -169;'600;Paraguay;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;4557;4841;3718;5424;7393;8533;6183;5552;6316;6587;4459;886;38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -169;'600;Paraguay;1871;Other industrial roundwood;5516;Production;m3;45000;45000;175000;175000;175000;170000;171000;174000;169000;156000;156000;156000;231000;238000;295000;131000;138000;326000;339000;339000;339000;339000;339000;375000;385000;394000;404000;414000;421000;427000;433000;439000;452000;464000;477000;490000;502000;516000;529000;529000;529000;529000;529000;529000;529000;529000;529000;529000;529000;529000;529000;529000;529000;529000;529000;529000;529000;529000;529000;529000;529000;529000;529000 -169;'600;Paraguay;1871;Other industrial roundwood;5916;Export quantity;m3;5600;2500;6200;2400;1600;900;1000;800;900;1100;1000;400;100;2300;3000;100;1600;200;200;100;100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -169;'600;Paraguay;1871;Other industrial roundwood;5922;Export value;1000 USD;143;74;159;70;52;30;32;30;28;38;33;16;5;122;162;17;148;19;15;23;23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -169;'600;Paraguay;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;45000;45000;175000;175000;175000;170000;171000;174000;169000;156000;156000;156000;231000;238000;295000;131000;138000;326000;339000;339000;339000;339000;339000;375000;385000;394000;404000;414000;421000;427000;433000;439000;452000;464000;477000;490000;502000;516000;529000;529000;529000;529000;529000;529000;529000;529000;529000;529000;529000;529000;529000;529000;529000;529000;529000;529000;529000;529000;529000;529000;529000;529000;529000 -169;'600;Paraguay;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;5600;2500;6200;2400;1600;900;1000;800;900;1100;1000;400;100;2300;3000;100;1600;200;200;100;100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -169;'600;Paraguay;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;143;74;159;70;52;30;32;30;28;38;33;16;5;122;162;17;148;19;15;23;23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -169;'600;Paraguay;1630;Wood charcoal;5510;Production;t;55481;56367;57268;58183;59112;60057;61016;61991;62982;63988;65211;66207;67120;67969;69411;71183;72310;73484;74652;74978;76577;81239;86028;89351;92669;97563;101383;104635;179000;120000;191000;324000;325000;384000;386000;390000;394000;387000;391000;409000;423000;444200;457500;226000;234000;510000;510000;510000;474000;480000;460000;440000;461000;454000;430000;430000;430000;430000;430000;430000;430000;430000;430000 -169;'600;Paraguay;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;13;13;0;0;0;0;300;100;100;100;100;100;100;100;100;100;2;69;12;867;406;690;495;756;1203;1724;221;279;25;3 -169;'600;Paraguay;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;0;0;0;0;61;14;14;14;14;14;14;14;14;14;1;23;8;385;245;658;471;708;1124;971;248;290;38;1 -169;'600;Paraguay;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;311;1117;709;3000;7000;6000;7500;7000;20800;20000;55800;56700;103000;155000;210000;210000;210000;207995;208544;199844;157744;137982;129729;96966;87150;97861;106070;101622;98386;133411.25;176763;139479 -169;'600;Paraguay;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;266;184;693;750;1441;1810;1241;1928;2117;2435;3492;6511;8116;12740;23162;40083;37857;37727;37108;34667;44969;34883;31441;30119;34069;38721;35752;34709;47950.26;60950;52989 -169;'600;Paraguay;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21000;22000;25700;31600;31600;31600;31600;31600;31600;31600;31600;31600;31600;31600 -169;'600;Paraguay;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;348;348;348;348;25;25;54;54;37;46;44;23;25;23;46;55;32;71;77;56 -169;'600;Paraguay;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;17;17;17;17;32;20;37;37;63;51;40;30;35;28;90;60;42;77;80;66 -169;'600;Paraguay;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;700;700;400;200;200;200;205;205;205;205;1107;13261;11295;11295;3354;1170;10;10;2;2;2;2;34;27;51.01;51.01 -169;'600;Paraguay;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22;11;5;5;5;8;8;8;8;229;267;181;181;155;30;23;23;0;0;0;0;14;27;33.47;33.47 -169;'600;Paraguay;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21000;22000;25700;31600;31600;31600;31600;31600;31600;31600;31600;31600;31600;31600 -169;'600;Paraguay;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;768;768;0;0;0;0;0;0;0;0;180;180;180;180;22;7;14;14;23;44;42;21;23;21;37;46;23;62;41;56 -169;'600;Paraguay;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33;0;0;0;0;0;0;0;0;10;10;10;10;18;5;13;13;38;39;28;18;23;16;69;39;21;56;73;66 -169;'600;Paraguay;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101;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;24;24 -169;'600;Paraguay;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;0;0;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 -169;'600;Paraguay;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22;22;0;0;0;0;0;0;0;0;168;168;168;168;3;18;40;40;14;2;2;2;2;2;9;9;9;9;36;0 -169;'600;Paraguay;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;0;0;0;0;0;0;0;0;7;7;7;7;14;15;24;24;25;12;12;12;12;12;21;21;21;21;7;0 -169;'600;Paraguay;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1362;493;493;493;200;100;700;700;400;200;200;200;205;205;205;205;1107;13261;11295;11295;3354;1170;10;10;2;2;2;2;34;27;27.01;27.01 -169;'600;Paraguay;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;9;9;9;12;6;22;22;11;5;5;5;8;8;8;8;229;267;181;181;155;30;23;23;0;0;0;0;14;27;27.47;27.47 -169;'600;Paraguay;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;761;1185.76;1377;220 -169;'600;Paraguay;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;123;208;297;47 -169;'600;Paraguay;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;124;56;200 -169;'600;Paraguay;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;26;1;43 -169;'600;Paraguay;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;706;1128.76;1325;220 -169;'600;Paraguay;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;184;268;47 -169;'600;Paraguay;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;124;2;146 -169;'600;Paraguay;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;26;0;42 -169;'600;Paraguay;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;55;57;52;0 -169;'600;Paraguay;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;23;24;29;0 -169;'600;Paraguay;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;54 -169;'600;Paraguay;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1 -169;'600;Paraguay;1872;Sawnwood;5516;Production;m3;48000;45000;144000;142100;142100;136200;136900;153700;213200;213500;213200;230200;268800;325000;340000;345000;314000;380000;524000;655000;655000;655000;655000;834000;758000;766000;862000;906000;510000;228000;313000;357000;357000;357000;400000;500000;550000;550000;550000;550000;550000;550000;550000;550000;550000;550000;550000;550000;550000;550000;550000;550000;550000;550000;550000;550000;550000;550000;550000;560000;560000;560000;560000 -169;'600;Paraguay;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;138;241;447;447;400;700;900;14000;4100;13400;13400;20597;41180;41180;41180;15500;9709;2513;5978;3654;1702;1963;1591;2340;2645;2087;1948;2725;2127;3940;4015;5165 -169;'600;Paraguay;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;134;141;141;102;185;248;3864;1196;2796;2796;3381;8512;8512;8512;3569;3037;658;1930;2112;1067;935;1173;1242;1275;1037;1109;1152;1149;1349;1410;1807 -169;'600;Paraguay;1872;Sawnwood;5916;Export quantity;m3;38500;37600;19400;34200;44100;37600;27400;42900;72900;86600;84100;122900;153000;200500;149800;98400;146400;146100;271200;285500;265600;340600;271600;339000;353900;253000;246700;111800;216500;199600;214800;238300;252600;303300;386000;451000;458000;325700;207000;183000;163000;163000;163000;43762;43762;43762;82066;108766;66209;26664;30300;20465;17048;16412;19744;9739;19964;21743;14818;9369;13167;18380;9373 -169;'600;Paraguay;1872;Sawnwood;5922;Export value;1000 USD;1654;1684;803;1583;2196;1969;1369;2103;4153;5617;5480;7913;9780;21091;22022;9989;16672;16719;32152;52195;48836;62636;49936;62400;65100;57459;38043;20567;24295;24485;22857;42096;46624;54081;70000;34128;38036;28000;17391;16154;13683;13683;13683;13158;13158;13158;24571;23151;20656;17119;16853;12679;11934;10830;8939;5682;11093;13094;4933;4478;5063;9151;5281 -169;'600;Paraguay;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;10000;10000;10000;10000 -169;'600;Paraguay;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;175;351;351;200;300;300;13000;3000;10000;10000;17197;30903;30903;30903;8200;4848;1926;2562;1228;74;1021;259;692;986;651;660;1270;633;1322;1789;2956 -169;'600;Paraguay;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;53;81;81;64;62;62;3636;500;2300;2300;2885;5377;5377;5377;1369;1163;518;428;327;21;230;206;163;262;172;176;199;174;210;246;405 -169;'600;Paraguay;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1066;1066;1066;1066;806;1058;523;479;18;118;60;0;4;0;100;0;0;926;1336;44 -169;'600;Paraguay;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;178;178;178;178;133;373;248;34;10;141;62;0;1;0;26;0;0;390;634;35 -169;'600;Paraguay;1633;Sawnwood, non-coniferous;5516;Production;m3;48000;45000;144000;142100;142100;136200;136900;153700;213200;213500;213200;230200;268800;325000;340000;345000;314000;380000;524000;655000;655000;655000;655000;834000;758000;766000;862000;906000;510000;228000;313000;357000;357000;357000;400000;500000;550000;550000;550000;550000;550000;550000;550000;550000;550000;550000;550000;550000;550000;550000;550000;550000;550000;550000;550000;550000;550000;550000;550000;550000;550000;550000;550000 -169;'600;Paraguay;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119;66;96;96;200;400;600;1000;1100;3400;3400;3400;10277;10277;10277;7300;4861;587;3416;2426;1628;942;1332;1648;1659;1436;1288;1455;1494;2618;2226;2209 -169;'600;Paraguay;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;81;60;60;38;123;186;228;696;496;496;496;3135;3135;3135;2200;1874;140;1502;1785;1046;705;967;1079;1013;865;933;953;975;1139;1164;1402 -169;'600;Paraguay;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;38500;37600;19400;34200;44100;37600;27400;42900;72900;86600;84100;122900;153000;200500;149800;98400;146400;146100;271200;285500;265600;340600;271600;339000;353900;253000;246700;111800;216500;199600;214800;238300;252600;303300;386000;451000;458000;325700;207000;183000;163000;163000;163000;42696;42696;42696;81000;107960;65151;26141;29821;20447;16930;16352;19744;9735;19964;21643;14818;9369;12241;17044;9329 -169;'600;Paraguay;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;1654;1684;803;1583;2196;1969;1369;2103;4153;5617;5480;7913;9780;21091;22022;9989;16672;16719;32152;52195;48836;62636;49936;62400;65100;57459;38043;20567;24295;24485;22857;42096;46624;54081;70000;34128;38036;28000;17391;16154;13683;13683;13683;12980;12980;12980;24393;23018;20283;16871;16819;12669;11793;10768;8939;5681;11093;13068;4933;4478;4673;8517;5246 -169;'600;Paraguay;1634;Veneer sheets;5516;Production;m3;;;;100;100;100;100;200;900;8300;8500;6000;5000;7500;7500;9000;14000;22000;37000;63000;63000;77000;54000;93000;84000;85000;96000;102000;102000;102000;102000;60000;60000;60000;60000;60000;60000;60000;60000;60000;60000;60000;60000;60000;60000;60000;60000;60000;60000;61000;61000;61000;61000;61000;61000;61000;61000;61000;61000;61000;61000;61000;61000 -169;'600;Paraguay;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1071;1071;100;100;0;0;0;0;0;0;61;61;61;61;12;2;402;1927;83;448;693;0;41;30;43;363;164;114;156;293 -169;'600;Paraguay;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;227;227;17;18;0;0;0;0;0;0;47;47;47;47;7;36;117;100;57;34;58;4;123;48;58;174;88;62;64;129 -169;'600;Paraguay;1634;Veneer sheets;5916;Export quantity;m3;;;;;;100;100;200;600;200;200;300;2800;6200;6700;7600;11800;22000;37000;62800;33200;76500;53500;61400;64300;30000;48000;25800;44500;25100;25100;43200;47400;49400;48000;36000;33300;20000;30400;28200;13700;13700;13700;1298;1298;1298;1298;3038;2077;2477;2836;2893;3424;2537;1188;1144;927;746;979;1201;2002;3225;3397 -169;'600;Paraguay;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;35;24;54;110;40;40;58;406;1659;1329;1609;2337;3448;5639;9481;7207;26000;20000;24600;25800;9267;9195;2937;13100;3400;3400;2966;12612;10003;9681;7804;5281;4350;5576;4921;2447;2447;2447;1024;1024;1024;1024;1121;661;646;569;570;718;644;272;179;175;156;214;380;591;1238;1412 -169;'600;Paraguay;1873;Wood-based panels;5516;Production;m3;2300;2500;2500;500;500;500;500;800;2700;6500;6800;7100;9300;11000;8000;1800;3000;4000;5000;30000;20000;20000;4000;3500;2900;3000;5000;12000;13000;10000;10000;19000;30000;50000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;83000;82000;82000;81000;81000;81000;81000;81000;81000;81000;81000;81000;85000;85000 -169;'600;Paraguay;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;269;997;1268;653;1900;600;1400;900;1400;1800;1800;1800;4886;4886;4886;4886;8733;7599;12578;24714;25076;31197;28845;28416;28211;34891;38235;44792;46056;54445.86;50236;58146 -169;'600;Paraguay;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110;370;460;175;799;251;537;266;376;563;563;563;1124;1124;1124;1124;4568;3884;6705;10861;11204;12700;13542;12451;10805;13435;14966;15322;14288;19216.24;21028;22856 -169;'600;Paraguay;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;700;1500;1700;3100;8400;1400;1200;1200;2700;3000;4000;23500;12600;12600;1300;400;300;500;4500;10800;11800;7000;9000;13220;25110;33494;113210;59200;65200;37700;61600;56100;56100;56100;56100;29234;29234;29234;25095;15173;12730;28125;28590;39721;22186;22548;15901;17161;16173;16404;17192;11018;31824;36603;31030 -169;'600;Paraguay;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;138;345;384;723;1591;430;540;520;755;966;1671;4752;3223;3223;699;236;130;279;862;1467;1281;912;1311;3509;8505;14908;34473;20084;29598;17113;24716;17791;17791;17791;17791;9581;9581;9581;8024;11987;10483;19603;20185;23310;20895;15837;16027;16271;9108;9602;11302;7046;16798;20891;18251 -169;'600;Paraguay;1640;Plywood and LVL;5516;Production;m3;2300;2500;2500;500;500;500;500;800;2700;6500;6800;7100;9300;11000;8000;1800;3000;4000;5000;30000;20000;20000;4000;3500;2900;3000;5000;12000;13000;10000;10000;19000;30000;50000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;83000;82000;82000;81000;81000;81000;81000;81000;81000;81000;81000;81000;85000;85000 -169;'600;Paraguay;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;340;297;297;1100;200;200;200;0;200;200;200;602;602;602;602;203;155;1006;3132;3318;2959;4034;4187;4233;3752;4098;3830;3453;4170;2574;3874 -169;'600;Paraguay;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;125;95;95;633;168;168;45;0;50;50;50;214;214;214;214;203;158;429;1405;1633;1597;2331;2066;1995;1850;1957;1838;1588;2091;2518;2706 -169;'600;Paraguay;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;700;1500;1700;3100;8400;1400;1200;1200;2700;3000;4000;23500;12600;12600;1300;400;300;500;4500;10800;11800;7000;9000;13200;25000;33384;113100;59200;65200;37700;61600;54000;54000;54000;54000;29139;29139;29139;25000;15133;12691;28086;28551;39680;22147;22440;15793;16969;15988;16219;17106;10935;31741;36477;30904 -169;'600;Paraguay;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;138;345;384;723;1591;430;540;520;755;966;1671;4752;3223;3223;699;236;130;279;862;1467;1281;912;1311;3504;8481;14884;34449;20084;29598;17113;24716;17251;17251;17251;17251;9557;9557;9557;8000;11972;10446;19566;20148;23272;20858;15763;15953;16181;9042;9536;11271;7016;16768;20832;18192 -169;'600;Paraguay;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116;270;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -169;'600;Paraguay;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;42;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -169;'600;Paraguay;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;110;110;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -169;'600;Paraguay;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;24;24;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -169;'600;Paraguay;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;270;600;100;900;400;1200;1400;1400;1400;2758;2758;2758;2758;4976;3793;5752;11816;12260;15300;14179;12464;11599;16397;16397;18907;18095;20102.77;20141;23869 -169;'600;Paraguay;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;133;21;307;159;324;461;461;461;452;452;452;452;2473;1858;2980;4524;4659;4707;4592;3964;2879;4087;4087;5548;4831;5923;6518;7387 -169;'600;Paraguay;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110;0;0;0;0;2100;2100;2100;2100;63;63;63;63;8;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -169;'600;Paraguay;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;0;0;0;0;540;540;540;540;11;11;11;11;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -169;'600;Paraguay;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;79;135;135;135;135;51;13;34;149;79;364;130;314;1088;713 -169;'600;Paraguay;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;32;69;69;69;69;24;7;20;48;42;110;33;126;341;195 -169;'600;Paraguay;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;7;7;0;0;0;0;0;0;0 -169;'600;Paraguay;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;24;24;24;24;24;24;0;0;0;0;0;0;0 -169;'600;Paraguay;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;212;541;701;86;200;300;300;300;200;200;200;200;1526;1526;1526;1526;3475;3572;5685;9631;9363;12803;10581;11752;12345;14593;17661;21691;24378;29859.1;26433;29690 -169;'600;Paraguay;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88;221;323;38;33;62;62;62;52;52;52;52;458;458;458;458;1860;1836;3227;4863;4843;6327;6595;6414;5911;7450;8880;7826;7836;11076.24;11651;12568 -169;'600;Paraguay;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;32;32;32;32;32;32;32;32;34;32;101;101;185;185;185;86;83;83;126;126 -169;'600;Paraguay;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;13;13;13;13;13;13;13;13;14;13;50;50;66;66;66;31;30;30;59;59 -169;'600;Paraguay;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;678;678;678;678;1335;1016;1411;1557;1342;1844;1616;1113;1868;1586;3877;1569;1863;2361.51;2613;1796 -169;'600;Paraguay;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;314;314;314;314;729;566;791;925;770;1056;974;628;913;818;1796;693;766;1177.75;1308;840 -169;'600;Paraguay;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32 -169;'600;Paraguay;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 -169;'600;Paraguay;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;822;822;822;822;2137;2509;4244;8074;8009;10537;8951;10315;10452;13002;13779;20121;22486;27408.59;23728;27684 -169;'600;Paraguay;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;141;141;141;141;1131;1243;2402;3938;4069;5185;5603;5606;4985;6629;7081;7132;7058;9846.49;10299;11648 -169;'600;Paraguay;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;46;46;102;102;102;3;0;0;43;43 -169;'600;Paraguay;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;25;25;36;36;36;1;0;0;29;29 -169;'600;Paraguay;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;74;86;86;200;300;300;300;200;200;200;200;26;26;26;26;3;47;30;0;12;422;14;324;25;5;5;1;29;89;92;210 -169;'600;Paraguay;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;34;38;38;33;62;62;62;52;52;52;52;3;3;3;3;0;27;34;0;4;86;18;180;13;3;3;1;12;52;44;80 -169;'600;Paraguay;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;23;23;51;51;51;51;51;51;51;51 -169;'600;Paraguay;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;12;12;17;17;17;17;17;17;17;17 -169;'600;Paraguay;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;136;467;615;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -169;'600;Paraguay;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;187;285;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -169;'600;Paraguay;1879;Total fibre furnish;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;30000;30000 -169;'600;Paraguay;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;413;353;1158;1158;149;400;500;700;400;400;400;400;65;65;65;65;391;706;4266;12777;981;1858;7750;14189;7683;15702;24091;28287;17580;32927.47;16185;17642 -169;'600;Paraguay;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104;110;384;384;89;248;272;400;345;224;224;224;31;31;31;31;64;276;1073;4245;645;641;1405;2828;1590;2990;5075;4897;4450;7991.56;3653;4853 -169;'600;Paraguay;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;200;200;20500;16000;14000;11000;10000;10000;10000;10000;4022;4022;4022;4022;12083;8810;12082;3788;6970;5483;8525;5723;6185;6601;6058;2493;1629;12174.28;5004;2972 -169;'600;Paraguay;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;27;27;930;1574;1159;467;411;411;411;411;398;398;398;398;532;303;565;638;1098;541;1540;1097;1046;1141;1154;408;320;1482.9;721;457 -169;'600;Paraguay;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;23;49;49;49;400;500;700;400;400;400;400;65;65;65;65;65;87;87;66;863;305;361;1126;1437;2358;3881;3365;3768;2913.7;2394;3065 -169;'600;Paraguay;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;33;54;54;54;248;272;400;345;224;224;224;31;31;31;31;31;57;57;37;624;206;316;918;957;1786;3040;2351;2539;2190;2397;2707 -169;'600;Paraguay;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;156;156;156;156;156;156;178;178;178;178 -169;'600;Paraguay;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;109;109;109;109;109;109;120;120;120;121 -169;'600;Paraguay;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;23;49;49;49;400;500;700;400;400;400;400;63;63;63;63;63;63;63;63;840;304;347;1112;1431;2349;3870;3360;3730;2902.7;2385;3053 -169;'600;Paraguay;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;33;54;54;54;248;272;400;345;224;224;224;30;30;30;30;30;30;30;30;572;201;259;874;939;1756;2999;2330;2506;2164;2345;2660 -169;'600;Paraguay;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;156;156;156;156;156;156;178;178;178;178 -169;'600;Paraguay;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;109;109;109;109;109;109;120;120;120;120 -169;'600;Paraguay;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1122;1445;1481;911.79;53;131 -169;'600;Paraguay;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;803;1117;1152;635;43;149 -169;'600;Paraguay;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;66;0;;;;;;; -169;'600;Paraguay;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;62;0;;;;;;; -169;'600;Paraguay;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;23;49;49;49;400;500;700;400;400;400;400;63;63;63;63;63;63;63;63;840;304;347;1046;1431;2349;2748;1915;2249;1990.9;2332;2922 -169;'600;Paraguay;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;33;54;54;54;248;272;400;345;224;224;224;30;30;30;30;30;30;30;30;572;201;259;812;939;1756;2196;1213;1354;1529;2302;2511 -169;'600;Paraguay;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;156;156;156;156;156;156;178;178;178;178 -169;'600;Paraguay;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;109;109;109;109;109;109;120;120;120;120 -169;'600;Paraguay;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;211;189;189;189;189;189;189;189;189;189;25;25 -169;'600;Paraguay;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;141;128;128;128;128;128;128;128;128;128;25;25 -169;'600;Paraguay;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;156;156;156;156;156;156;156;156;156;156 -169;'600;Paraguay;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109;109;109;109;109;109;109;109;109;109 -169;'600;Paraguay;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;566;52;128;853;1242;2160;2559;1726;2060;1801.9;2299;2889 -169;'600;Paraguay;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;401;43;97;680;811;1628;2068;1085;1226;1401;2255;2464 -169;'600;Paraguay;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;22;22;22;22 -169;'600;Paraguay;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;11;11;11;11 -169;'600;Paraguay;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8 -169;'600;Paraguay;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22 -169;'600;Paraguay;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;2;0;;;;;;; -169;'600;Paraguay;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;2;0;;;;;;; -169;'600;Paraguay;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;23;49;49;49;400;500;700;400;400;400;400;63;63;63;63;63;63;63;63;63;63;16;2;0;;;;;;; -169;'600;Paraguay;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;33;54;54;54;248;272;400;345;224;224;224;30;30;30;30;30;30;30;30;30;30;27;2;0;;;;;;; -169;'600;Paraguay;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;24;24;3;23;1;14;14;6;9;11;5;38;11;9;12 -169;'600;Paraguay;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;27;27;7;52;5;57;44;18;30;41;21;33;26;52;47 -169;'600;Paraguay;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0 -169;'600;Paraguay;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1 -169;'600;Paraguay;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1244;1;10;35;41;13;14 -169;'600;Paraguay;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;2;15;7;24;22;25 -169;'600;Paraguay;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;27;27;27;0;0;0;0;0;0;0;0;0;0;0 -169;'600;Paraguay;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;0;0;0;0;0;0;0;0;0;0;0 -169;'600;Paraguay;1669;Recovered paper;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;30000;30000 -169;'600;Paraguay;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;407;330;1109;1109;100;0;0;0;0;0;0;0;0;0;0;0;326;619;4179;12711;118;1553;7389;13063;6246;13344;20210;24922;13812;30013.78;13791;14577 -169;'600;Paraguay;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96;77;330;330;35;0;0;0;0;0;0;0;0;0;0;0;33;219;1016;4208;21;435;1089;1910;633;1204;2035;2546;1911;5801.56;1256;2146 -169;'600;Paraguay;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;200;200;20500;16000;14000;11000;10000;10000;10000;10000;4022;4022;4022;4022;12083;8810;12082;3788;6970;5483;8369;5567;6029;6445;5902;2337;1451;11996.28;4826;2794 -169;'600;Paraguay;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;27;27;930;1574;1159;467;411;411;411;411;398;398;398;398;532;303;565;638;1098;541;1431;988;937;1032;1045;299;200;1362.9;601;336 -169;'600;Paraguay;1876;Paper and paperboard;5510;Production;t;400;400;500;900;1100;1100;400;400;400;400;400;400;400;400;1000;1000;1000;2000;3000;3000;12000;12000;12000;12000;6300;6600;7200;8300;8300;12000;13000;15000;15000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;67000;67000;67000;67000;67000;67000;67000 -169;'600;Paraguay;1876;Paper and paperboard;5610;Import quantity;t;2500;2500;2500;3500;3900;3600;4800;5200;5900;6700;5300;6300;8100;8500;7000;8500;12200;13800;14800;16100;13100;17900;9100;13200;15600;14000;15400;16200;24700;24400;27500;30647;42753;42204;33713;32200;33400;49101;39300;34000;46500;46500;46500;74567;74567;74567;82068;96675;90178;110434;106442;99526;105111;116676;96447;111050;125419;139160;110846;115595;121830.16;129356;110794 -169;'600;Paraguay;1876;Paper and paperboard;5622;Import value;1000 USD;501;472;572;728;752;793;979;992;1003;1321;1091;1430;1997;4692;4732;4245;5543;6534;8611;11524;8902;11971;6077;7450;8566;8638;10464;13055;19193;18747;20947;22732;31488;26065;23276;23387;23561;35010;26602;27878;42754;42754;42754;54512;54512;54512;67173;109818;101454;133618;149181;137591;144929;163359;97215;146575;155792;178575;136675;138244;145413.81;184154;148701 -169;'600;Paraguay;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;255;296;117;117;1700;2000;2000;3000;3100;2900;2900;2900;2838;2838;2838;2838;4792;5425;9624;27788;20432;27968;23296.33;30463.33;28765;47356;55292;68428;66943;67604.95;67939;75178 -169;'600;Paraguay;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;115;64;64;1203;891;907;1322;1181;1038;1038;1038;1703;1703;1703;1703;2341;2035;5053;15965;11395;15774;14249;17768;15750;25328;33732;39073;37607;51323.55;62699;62453 -169;'600;Paraguay;2042;Graphic papers;5510;Production;t;;;;;;;;;;;;;;;;;;1000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;; -169;'600;Paraguay;2042;Graphic papers;5610;Import quantity;t;1400;1500;1500;2000;1800;1600;2600;3200;4100;4600;3900;4500;6000;5600;4500;5700;8800;10500;9900;11800;7500;13800;6600;10300;11700;10300;10600;10000;18200;17400;20500;24223;30387;32272;24513;19500;23400;35101;26100;22000;25800;25800;25800;42454;42454;42454;48890;60681;53310;66710;69053;58713;63079;64329;54246;60247;57335;68728;55991;47927;49382.43;52290;44926 -169;'600;Paraguay;2042;Graphic papers;5622;Import value;1000 USD;241;259;336;360;313;285;459;581;623;786;714;927;1333;2555;2355;2568;3675;4290;5350;7242;4772;8568;4070;4917;5561;5309;5822;6470;13408;12657;14857;17545;20549;21062;15689;14293;16339;23844;10030;11783;21251;21251;21251;30472;30472;30472;41485;57791;48444;66090;77981;64134;68105;70622;57704;60776;57880;72561;55450;44378;48324.41;63130;51383 -169;'600;Paraguay;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;163;43;43;43;600;200;700;700;700;700;700;700;700;700;700;700;3;3;32;27;187;6;6.33;6.33;8;23;43;0;1;23;272;267 -169;'600;Paraguay;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;23;23;23;568;99;363;363;363;363;363;363;363;363;363;363;5;5;34;35;248;15;20;20;19;42;85;1;1;24;213;335 -169;'600;Paraguay;1671;Newsprint;5610;Import quantity;t;1000;1100;1100;1400;1400;1100;2000;2100;3700;4100;3300;3700;4600;3200;3100;3600;6500;7300;6200;8000;4900;10000;3000;6000;8000;6000;6700;6700;12700;10500;13600;13264;15440;15513;15513;7300;13800;20000;5300;6000;11100;11100;11100;10835;10835;10835;9900;13022;11413;11467;10975;11035;9310;9191;8497;8702;7366;9837;8454;7802;7729.98;9693;7750 -169;'600;Paraguay;1671;Newsprint;5622;Import value;1000 USD;140;160;206;206;199;154;286;286;505;636;517;675;798;981;1366;1412;2513;2513;2790;3877;2624;5400;1315;2106;3304;2362;3080;3785;8361;6000;8200;8236;9960;8689;8689;5436;7358;10954;2855;3392;8049;8049;8049;5525;5525;5525;6537;9712;7893;7552;8293;8536;7086;6858;5834;5074;4104;5956;5196;4008;4672.66;7897;5418 -169;'600;Paraguay;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -169;'600;Paraguay;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -169;'600;Paraguay;1674;Printing and writing papers;5510;Production;t;;;;;;;;;;;;;;;;;;1000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;; -169;'600;Paraguay;1674;Printing and writing papers;5610;Import quantity;t;400;400;400;600;400;500;600;1100;400;500;600;800;1400;2400;1400;2100;2300;3200;3700;3800;2600;3800;3600;4300;3700;4300;3900;3300;5500;6900;6900;10959;14947;16759;9000;12200;9600;15101;20800;16000;14700;14700;14700;31619;31619;31619;38990;47659;41897;55243;58078;47678;53769;55138;45749;51545;49969;58891;47537;40125;41652.45;42597;37176 -169;'600;Paraguay;1674;Printing and writing papers;5622;Import value;1000 USD;101;99;130;154;114;131;173;295;118;150;197;252;535;1574;989;1156;1162;1777;2560;3365;2148;3168;2755;2811;2257;2947;2742;2685;5047;6657;6657;9309;10589;12373;7000;8857;8981;12890;7175;8391;13202;13202;13202;24947;24947;24947;34948;48079;40551;58538;69688;55598;61019;63764;51870;55702;53776;66605;50254;40370;43651.75;55233;45965 -169;'600;Paraguay;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;163;43;43;43;600;200;700;700;700;700;700;700;700;700;700;700;3;3;32;27;187;6;6.33;6.33;8;23;43;0;1;23;272;267 -169;'600;Paraguay;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;23;23;23;568;99;363;363;363;363;363;363;363;363;363;363;5;5;34;35;248;15;20;20;19;42;85;1;1;24;213;335 -169;'600;Paraguay;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;390;390;390;390;736;639;125;28;79;5;124;248;118;193;193;40;21;23;31;62 -169;'600;Paraguay;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;307;307;307;307;611;561;132;36;99;14;106;131;121;289;289;54;23;30;56;84 -169;'600;Paraguay;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;246;144 -169;'600;Paraguay;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;172;101 -169;'600;Paraguay;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9438;13000;10000;8000;8000;8000;17089;17089;17089;20400;21053;20625;27645;28376;21573;25413;23939;18935;25612;26755;31240;25986;22076;21202.22;22478;24014 -169;'600;Paraguay;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6226;3466;4053;6857;6857;6857;13483;13483;13483;18753;22158;20542;29381;34057;25618;28833;27488;20542;25967;27436;33986;27273;20867;20429.28;25174;27320 -169;'600;Paraguay;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;700;700;700;700;700;700;700;700;700;700;3;3;30;25;181;0;0.33;0.33;2;17;17;0;1;23;26;48 -169;'600;Paraguay;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;363;363;363;363;363;363;363;363;363;363;5;5;31;32;233;0;5;5;4;27;27;1;1;24;41;80 -169;'600;Paraguay;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5663;7800;6000;6700;6700;6700;14140;14140;14140;18200;25870;20633;27473;29674;26026;28351;31075;26566;25815;23021;27458;21511;18028;20427.23;20088;13100 -169;'600;Paraguay;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6664;3709;4338;6345;6345;6345;11157;11157;11157;15888;25310;19448;29025;35595;29881;32172;36170;31197;29614;26051;32330;22927;19480;23192.46;30003;18561 -169;'600;Paraguay;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;6;6;6;6;6;6;26;0;0;0;0;75 -169;'600;Paraguay;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;15;15;15;15;15;15;58;0;0;0;0;154 -169;'600;Paraguay;1675;Other paper and paperboard;5510;Production;t;400;400;500;900;1100;1100;400;400;400;400;400;400;400;400;1000;1000;1000;1000;1000;1000;10000;10000;10000;10000;4300;4600;5200;6300;6300;10000;11000;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;67000;67000;67000;67000;67000;67000;67000 -169;'600;Paraguay;1675;Other paper and paperboard;5610;Import quantity;t;1100;1000;1000;1500;2100;2000;2200;2000;1800;2100;1400;1800;2100;2900;2500;2800;3400;3300;4900;4300;5600;4100;2500;2900;3900;3700;4800;6200;6500;7000;7000;6424;12366;9932;9200;12700;10000;14000;13200;12000;20700;20700;20700;32113;32113;32113;33178;35994;36868;43724;37389;40813;42032;52347;42201;50803;68084;70432;54855;67668;72447.73;77066;65868 -169;'600;Paraguay;1675;Other paper and paperboard;5622;Import value;1000 USD;260;213;236;368;439;508;520;411;380;535;377;503;664;2137;2377;1677;1868;2244;3261;4282;4130;3403;2007;2533;3005;3329;4642;6585;5785;6090;6090;5187;10939;5003;7587;9094;7222;11166;16572;16095;21503;21503;21503;24040;24040;24040;25688;52027;53010;67528;71200;73457;76824;92737;39511;85799;97912;106014;81225;93866;97089.4;121024;97318 -169;'600;Paraguay;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92;253;74;74;1100;1800;1300;2300;2400;2200;2200;2200;2138;2138;2138;2138;4789;5422;9592;27761;20245;27962;23290;30457;28757;47333;55249;68428;66942;67581.95;67667;74911 -169;'600;Paraguay;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;92;41;41;635;792;544;959;818;675;675;675;1340;1340;1340;1340;2336;2030;5019;15930;11147;15759;14229;17748;15731;25286;33647;39072;37606;51299.55;62486;62118 -169;'600;Paraguay;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 -169;'600;Paraguay;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1200;1600;1600;1600;850;850;850;850;1348;1147;1306;1537;1535;1620;2345;1928;1961;2185;2601;1611;3218;3030.59;2658;2460 -169;'600;Paraguay;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;871;1121;1121;1121;935;935;935;935;1734;1424;1865;2369;2355;2578;3743;2830;2449;2781;3463;1960;3411;3477.38;3636;3719 -169;'600;Paraguay;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;47;47;47;565;724;585;75;88;38;101;101;101;107;14;298;0;0;0;0 -169;'600;Paraguay;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;52;52;52;116;125;147;21;35;14;51;51;51;56;15;303;0;0;0;0 -169;'600;Paraguay;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;65000;65000;65000;65000;65000;65000;65000 -169;'600;Paraguay;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8100;11100;11100;11100;19984;19984;19984;20628;28404;29445;34290;29774;34209;34777;43638;39017;42771;59589;61236;47887;59059;64527.83;70612;59897 -169;'600;Paraguay;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8817;10626;10626;10626;12391;12391;12391;13628;36068;35287;46333;52218;57292;58690;71455;35393;68488;78120;82882;64701;74499;78670.88;103223;80506 -169;'600;Paraguay;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;900;1000;1000;1000;2041;2041;2041;2041;4134;4622;8291;27670;20121;27901;22875;30249;28646;47209;55123;67844;66416;66817.95;67138;74136 -169;'600;Paraguay;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;285;284;284;284;1233;1233;1233;1233;2111;1846;4535;15886;11054;15706;13995;17638;15618;25190;33408;38123;36465;49583.55;61292;60887 -169;'600;Paraguay;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;10000;10000;10000;10000;2900;1800;1800;2500;2500;7000;8000;11000;11000;11000;11000;11000;11000;;;;;;;;;;;;;;;;;;;;;;;;;; -169;'600;Paraguay;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;1200;900;1300;700;800;900;600;700;400;1000;1600;3200;3100;4000;2000;400;900;1500;1000;1300;1700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -169;'600;Paraguay;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;251;200;280;151;199;243;262;529;188;415;745;1522;1731;2047;995;235;474;751;452;820;1262;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -169;'600;Paraguay;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;65000;65000;65000;65000;65000;65000;65000 -169;'600;Paraguay;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;900;2600;2600;2600;2783;2783;2783;2783;8055;9550;9089;8278;11575;11045;6730;8986;8583;21738;20476;14700;21664;31070.43;32510;30475 -169;'600;Paraguay;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;518;1213;1213;1213;1726;1726;1726;1726;4599;5043;6433;6503;7751;7834;5203;6450;5659;12168;14262;8595;13528;22661.02;28253;21024 -169;'600;Paraguay;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;600;600;600;1270;1270;1270;1270;59;134;474;26829;18454;19378;9795;11381;12305;23448;16381;23394;24446;28244.84;26365;27059 -169;'600;Paraguay;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;165;188;188;188;768;768;768;768;36;83;260;15427;10180;11026;5702;6326;6575;11805;9871;12675;13187;20511.31;22997;23307 -169;'600;Paraguay;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3900;4100;4100;4100;11697;11697;11697;12000;13994;13957;18649;14440;16067;16112;30690;24294;27073;29504;27998;22433;23519;19184;24533;18925 -169;'600;Paraguay;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5853;6358;6358;6358;7252;7252;7252;7400;25540;25486;33804;37763;42522;43104;59296;23166;55099;57625;56043;46832;48915;42694;59671;48352 -169;'600;Paraguay;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;16;3484;3746;7441;203;585;7262;12530;18504;16258;23575;38650;44379;41787;37875.46;40620;46997 -169;'600;Paraguay;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;1873;1530;4080;111;376;4065;7941;11177;8995;13296;23452;25384;23102;28506.24;38143;37500 -169;'600;Paraguay;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3300;4400;4400;4400;5259;5259;5259;5600;6234;5897;6469;6153;5946;6883;6036;5523;7063;6926;11230;9739;12641;13124.4;12930;9960 -169;'600;Paraguay;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2446;3055;3055;3055;3261;3261;3261;4350;5788;4644;5928;7070;6449;7131;6450;5195;7397;7336;11496;8660;11220;12428.85;14702;10721 -169;'600;Paraguay;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;400;400;400;155;155;155;155;155;155;155;84;1;106;345;311;30;133;39;18;130;644.65;100;27 -169;'600;Paraguay;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120;96;96;96;93;93;93;93;93;93;93;59;2;114;209;96;9;50;46;25;137;527;113;41 -169;'600;Paraguay;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;245;245;245;245;121;41;83;903;621;737;182;214;52;1421;1532;1015;1235;1149;639;537 -169;'600;Paraguay;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;152;152;152;152;141;114;168;882;570;621;506;582;333;991;1081;614;836;887;597;409 -169;'600;Paraguay;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;600;600;600;436;587;221;554;1081;1155;205;53;53;53;53;53;53;53;53;53 -169;'600;Paraguay;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;362;362;362;362;109;140;102;289;496;501;143;39;39;39;39;39;39;39;39;39 -169;'600;Paraguay;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;1400;2800;3400;3800;3800;3000;3000;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 -169;'600;Paraguay;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;800;900;800;700;1000;1200;2300;1800;2400;2400;1700;1700;1200;1600;2100;2100;2000;2400;2700;3500;4500;6500;7000;7000;6424;12366;9932;9200;12700;10000;14000;13200;2700;8000;8000;8000;11279;11279;11279;11700;6242;6276;8128;6078;5069;5635;6364;1256;6071;6310;6595;5357;5391;4889.31;3796;3511 -169;'600;Paraguay;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;160;180;255;226;304;421;1875;1848;1489;1453;1499;1739;2551;2083;2408;1772;2059;2254;2877;3822;5323;5785;6090;6090;5187;10939;5003;7587;9094;7222;11166;16572;6407;9756;9756;9756;10714;10714;10714;11125;14225;16299;19330;16613;13810;15556;17539;1288;14862;17011;19669;14564;15956;14941.14;14165;13093 -169;'600;Paraguay;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92;253;74;74;1100;1800;1300;2300;1500;1200;1200;1200;50;50;50;50;90;76;716;16;36;23;314;107;10;17;112;286;526;764;529;775 -169;'600;Paraguay;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;92;41;41;635;792;544;959;533;391;391;391;55;55;55;55;109;59;337;23;58;39;183;59;62;40;224;646;1141;1716;1194;1231 -169;'600;Paraguay;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31021;31836;29570;24402;29865;26125;29466 -169;'600;Paraguay;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14456;12240;10297;9942;11118;12249;13833 -169;'600;Paraguay;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;185;223;52;154;225;220;263 -169;'600;Paraguay;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6291;4788;6470;7454;6443;6151;9341 -169;'600;Paraguay;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;125;37;139;190;203;224 -169;'600;Paraguay;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;36 -169;'600;Paraguay;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126;98;15;15;35;17;39 -169;'600;Paraguay;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6287;4784;6466;7450;6439;6147;9305 -169;'600;Paraguay;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;364;287;417;474;680;1155;1517 -169;'600;Paraguay;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;105;7;20;179;360;341 -169;'600;Paraguay;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;253;415;376;297;395;629;545 -169;'600;Paraguay;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;16;66;68;47;45;128 -169;'600;Paraguay;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1249;1311;1431;1119;1294;1718;2828 -169;'600;Paraguay;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7386;6775;3235;1889;3552;5089;3343 -169;'600;Paraguay;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;54 -169;'600;Paraguay;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;122;32 -169;'600;Paraguay;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1 -169;'600;Paraguay;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1 -169;'600;Paraguay;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27663;27906;25949;20418;25879;20798;22754 -169;'600;Paraguay;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;431;344;407;463;582;495;334 -169;'600;Paraguay;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;193;94;1029;90;102;19 -169;'600;Paraguay;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1214;1501;1251;911;1302;1503;1540 -169;'600;Paraguay;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;219;212;112;48;315;109;346 -169;'600;Paraguay;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65976;70238;65866;64872;66682;73358;76021 -169;'600;Paraguay;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2758;1945;1110;1055;1647;2780;2259 -169;'600;Paraguay;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;438;478;593;502;774;838;503 -169;'600;Paraguay;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;368;368;0;0;0;0;0 -169;'600;Paraguay;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5566;6221;5599;5163;5570;6885;6694 -169;'600;Paraguay;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;554;224;3;100;421;3 -169;'600;Paraguay;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20571;19629;19686;21394;19324;22734;27124 -169;'600;Paraguay;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;228;82;78;60;59;147;110 -169;'600;Paraguay;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27697;30428;26531;26856;28840;30379;29332 -169;'600;Paraguay;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;136;308;191;677;1198;1814;1984 -169;'600;Paraguay;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11704;13482;13457;10957;12174;12522;12368 -169;'600;Paraguay;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2014;633;617;315;290;398;162 -170;'604;Peru;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;914454;1127719;1167812;936922;1267090.81;1535523;1043966 -170;'604;Peru;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;278088;278050;267622;206775;249065.16;258702;220872 -170;'604;Peru;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;13853;14558;15185;15066;17844;18394;18320;17617;18323;18291;24610;25689;24604;37521;55139;28632;41828;24721;26428;37401;56644;74778;48297;44387;44644;60173;92466;94469;103518;122960;128630;65397;106083;110377;122187;104761;179484;166801;131522;176175;181562;216662;234188;273037;312728;372010;435328;668586;536606;677930;777378;788482;850613;865653;826221;779154;684685;868397;909061;739044;973785.81;1219579;796035 -170;'604;Peru;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;167;264;246;384;863;1155;795;897;2286;2675;2653;4103;3921;3899;2664;6217;8630;11350;10965;6173;6476;7515;8976;3415;4260;4295;3125;2243;6290;3479;4077;8607;11903;23550;13159;24889;43631;46554;79799;80087;80107;101975;91825;115764;136404;158769;143318;221906;151223;175653;183167;142092;127196;161818;97290;130915;149082;145997;135124;102843;118327.16;134920;116834 -170;'604;Peru;1861;Roundwood;5516;Production;m3;4532000;4660000;4735000;4841000;4982000;4665712;4784870;5033378;5134333;5359838;5689287;5868756;6026620;6376214;6595094;7343785;7032528;6908039;7213054;7715961;7440183;7299780;7160927;7201662;7410700;8328000;8555100;8620900;8416600;7591300;7657000;7822200;8216200;9037800;8026000;7914000;8410000;9157000;9153000;9288000;8620000;8769000;8436000;8921000;9106000;9258000;9425200;9119000;8690000;8690000;8921000;8777000;8585000;8784720;8395872;8484337;8271891;8247862;8578374;7283293;7902146;8160871;8160871 -170;'604;Peru;1861;Roundwood;5616;Import quantity;m3;1200;1300;1300;3800;14100;13400;5000;4300;7100;6800;6200;12500;21300;24000;5400;3600;2700;3400;100;2300;200;600;600;300;100;100;100;100;100;84;3318;2010;1919;900;5000;4400;5500;11000;3600;1000;0;0;392;5126;2466;3256;11690;1885;111;1065;19853;5100;47192;49445;2041;2048;19814;41570;53201;36314;29975;36753;25128 -170;'604;Peru;1861;Roundwood;5622;Import value;1000 USD;106;113;153;89;637;598;166;112;275;261;165;422;1855;3931;1157;399;288;263;24;411;54;252;252;180;32;32;25;25;30;9;347;265;266;85;2466;1451;1354;3572;233;102;0;0;83;508;670;807;1813;555;8;67;2790;698;18284;21700;685;460;7925;15094;15568;7956;8647;10210;10399 -170;'604;Peru;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;114;94;1182;2682;4000;200;5700;5700;0;0;0;0;0;72;96;808;643;548;1877;579;710;1896;1782;2906;10350;6657;3416;6865;9817;9923;5142;20002;8720;26000 -170;'604;Peru;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;13;228;280;197;53;3966;3966;0;0;0;0;0;53;107;520;293;281;1031;275;225;1104;1187;1330;3320;2708;1476;3549;4615;2286;2178;8485;4421;4181 -170;'604;Peru;1862;Roundwood, coniferous;5516;Production;m3;7000;13000;23000;135000;157000;185000;152000;66000;61000;58000;58000;58000;58000;58000;58000;58000;9000;5800;6000;10400;2000;1000;1000;2000;2000;3000;5500;4800;4800;4800;4800;2000;0;0;0;0;0;0;40000;10000;8000;10000;12000;18000;14000;31000;8200;24000;13000;4000;18000;16000;11000;14794;2563;5673;1160;0;16383;7959;965;430;430 -170;'604;Peru;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19807;41566;51836;35134;29232;36586;22727 -170;'604;Peru;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7897;15079;14950;7429;8462;10201;10125 -170;'604;Peru;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -170;'604;Peru;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -170;'604;Peru;1863;Roundwood, non-coniferous;5516;Production;m3;4525000;4647000;4712000;4706000;4825000;4480712;4632870;4967378;5073333;5301838;5631287;5810756;5968620;6318214;6537094;7285785;7023528;6902239;7207054;7705561;7438183;7298780;7159927;7199662;7408700;8325000;8549600;8616100;8411800;7586500;7652200;7820200;8216200;9037800;8026000;7914000;8410000;9157000;9113000;9278000;8612000;8759000;8424000;8903000;9092000;9227000;9417000;9095000;8677000;8686000;8903000;8761000;8574000;8769926;8393309;8478664;8270731;8247862;8561991;7275334;7901181;8160441;8160441 -170;'604;Peru;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;4;1365;1180;743;167;2401 -170;'604;Peru;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;15;618;527;185;9;274 -170;'604;Peru;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6865;9817;9923;5142;20002;8720;26000 -170;'604;Peru;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3549;4615;2286;2178;8485;4421;4181 -170;'604;Peru;1864;Wood fuel;5516;Production;m3;4040000;4120000;4120000;4240000;4370000;3799712;3912870;4029378;4149333;4272838;4409287;4546756;4701620;4920214;5062094;5181785;5294528;5390239;5577054;5727561;5942183;6043780;5942927;6132662;6286200;7132000;7366000;7591000;7639000;6518000;6735000;6868000;6836000;7519000;6629000;6512000;7291000;7328000;7625000;7777000;7299000;7335000;7300000;7300000;7364000;7454000;7454000;7337000;7343000;7338000;7425000;7308000;7308000;7382657;7150355;7332910;7206962;7214463;7299112;6524393;6581080;6581080;6581080 -170;'604;Peru;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;1762;;;3;376;376;5;820 -170;'604;Peru;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;304;;;10;35;35;17;6 -170;'604;Peru;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;151;3;0;0;0;5;0;1;389;3;2;0;0 -170;'604;Peru;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;11;0;0;0;14;0;3;8;9;18;0;0 -170;'604;Peru;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 -170;'604;Peru;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;2;260 -170;'604;Peru;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;11;3 -170;'604;Peru;1628;Wood fuel, non-coniferous;5516;Production;m3;4040000;4120000;4120000;4240000;4370000;3799712;3912870;4029378;4149333;4272838;4409287;4546756;4701620;4920214;5062094;5181785;5294528;5390239;5577054;5727561;5942183;6043780;5942927;6132662;6286200;7132000;7366000;7591000;7639000;6518000;6735000;6868000;6836000;7519000;6629000;6512000;7291000;7328000;7625000;7777000;7299000;7335000;7300000;7300000;7364000;7454000;7454000;7337000;7343000;7338000;7425000;7308000;7308000;7382657;7150355;7332910;7206962;7214463;7299112;6524393;6581080;6581080;6581080 -170;'604;Peru;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;375;375;3;560 -170;'604;Peru;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;30;30;6;3 -170;'604;Peru;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;389;3;2;0;0 -170;'604;Peru;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;8;9;18;0;0 -170;'604;Peru;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;1762;;;;;;; -170;'604;Peru;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;304;;;;;;; -170;'604;Peru;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;151;3;0;0;0;5;;;;;;; -170;'604;Peru;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;11;0;0;0;14;;;;;;; -170;'604;Peru;1865;Industrial roundwood;5516;Production;m3;492000;540000;615000;601000;612000;866000;872000;1004000;985000;1087000;1280000;1322000;1325000;1456000;1533000;2162000;1738000;1517800;1636000;1988400;1498000;1256000;1218000;1069000;1124500;1196000;1189100;1029900;777600;1073300;922000;954200;1380200;1518800;1397000;1402000;1119000;1829000;1528000;1511000;1321000;1434000;1136000;1621000;1742000;1804000;1971200;1782000;1347000;1352000;1496000;1469000;1277000;1402063;1245517;1151427;1064929;1033399;1279262;758900;1321066;1579791;1579791 -170;'604;Peru;1865;Industrial roundwood;5616;Import quantity;m3;1200;1300;1300;3800;14100;13400;5000;4300;7100;6800;6200;12500;21300;24000;5400;3600;2700;3400;100;2300;200;600;600;300;100;100;100;100;100;84;3318;2010;1919;900;5000;4400;5500;11000;3600;1000;0;0;392;5126;2466;3256;11690;1885;111;1065;19853;5100;47192;49445;2041;286;19814;41570;53198;35938;29599;36748;24308 -170;'604;Peru;1865;Industrial roundwood;5622;Import value;1000 USD;106;113;153;89;637;598;166;112;275;261;165;422;1855;3931;1157;399;288;263;24;411;54;252;252;180;32;32;25;25;30;9;347;265;266;85;2466;1451;1354;3572;233;102;0;0;83;508;670;807;1813;555;8;67;2790;698;18284;21700;685;156;7925;15094;15558;7921;8612;10193;10393 -170;'604;Peru;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;114;94;1182;2682;4000;200;5700;5700;0;0;0;0;0;72;96;808;643;548;1877;579;710;1745;1779;2906;10350;6657;3411;6865;9816;9534;5139;20000;8720;26000 -170;'604;Peru;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;13;228;280;197;53;3966;3966;0;0;0;0;0;53;107;520;293;281;1031;275;225;1087;1176;1330;3320;2708;1462;3549;4612;2278;2169;8467;4421;4181 -170;'604;Peru;1866;Industrial roundwood, coniferous;5516;Production;m3;7000;13000;23000;135000;157000;185000;152000;66000;61000;58000;58000;58000;58000;58000;58000;58000;9000;5800;6000;10400;2000;1000;1000;2000;2000;3000;5500;4800;4800;4800;4800;2000;0;0;0;0;0;0;40000;10000;8000;10000;12000;18000;14000;31000;8200;24000;13000;4000;18000;16000;11000;14794;2563;5673;1160;0;16383;7959;965;430;430 -170;'604;Peru;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;3074;264;173;900;3700;3100;5500;11000;3600;1000;0;0;59;3180;2000;2000;11690;1807;31;1039;19759;4980;1189;699;1813;286;19807;41566;51835;35133;29231;36584;22467 -170;'604;Peru;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;314;29;30;85;2093;1078;1354;3572;233;102;0;0;32;194;540;449;1813;537;3;51;2751;668;250;91;654;156;7897;15079;14945;7424;8457;10190;10122 -170;'604;Peru;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;486;486;500;100;5700;5700;0;0;0;0;0;72;67;123;14;0;26;124;315;226;63;215;243;0;0;0;0;0;0;0;0;0 -170;'604;Peru;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;53;53;39;11;3966;3966;0;0;0;0;0;53;64;120;14;0;10;76;36;42;46;22;137;0;0;0;0;0;0;0;0;0 -170;'604;Peru;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;3074;264;173;900;3700;3100;5500;11000;3600;1000;0;0;59;3180;2000;2000;11690;1807;31;1039;19759;4980;1189;699;1813;286;19807;41566;51835;35133;29231;36584;22467 -170;'604;Peru;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;314;29;30;85;2093;1078;1354;3572;233;102;0;0;32;194;540;449;1813;537;3;51;2751;668;250;91;654;156;7897;15079;14945;7424;8457;10190;10122 -170;'604;Peru;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;486;486;500;100;5700;5700;0;0;0;0;0;72;67;123;14;0;26;124;315;226;63;215;243;0;0;0;0;0;0;0;0;0 -170;'604;Peru;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;53;53;39;11;3966;3966;0;0;0;0;0;53;64;120;14;0;10;76;36;42;46;22;137;0;0;0;0;0;0;0;0;0 -170;'604;Peru;1867;Industrial roundwood, non-coniferous;5516;Production;m3;485000;527000;592000;466000;455000;681000;720000;938000;924000;1029000;1222000;1264000;1267000;1398000;1475000;2104000;1729000;1512000;1630000;1978000;1496000;1255000;1217000;1067000;1122500;1193000;1183600;1025100;772800;1068500;917200;952200;1380200;1518800;1397000;1402000;1119000;1829000;1488000;1501000;1313000;1424000;1124000;1603000;1728000;1773000;1963000;1758000;1334000;1348000;1478000;1453000;1266000;1387269;1242954;1145754;1063769;1033399;1262879;750941;1320101;1579361;1579361 -170;'604;Peru;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;244;1746;1746;0;1300;1300;0;0;0;0;0;0;333;1946;466;1256;0;78;80;26;94;120;46003;48746;228;0;7;4;1363;805;368;164;1841 -170;'604;Peru;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;236;236;0;373;373;0;0;0;0;0;0;51;314;130;358;0;18;5;16;39;30;18034;21609;31;0;28;15;613;497;155;3;271 -170;'604;Peru;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98;78;696;2196;3500;100;0;0;0;0;0;0;0;0;29;685;629;548;1851;455;395;1519;1716;2691;10107;6657;3411;6865;9816;9534;5139;20000;8720;26000 -170;'604;Peru;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;11;175;227;158;42;0;0;0;0;0;0;0;0;43;400;279;281;1021;199;189;1045;1130;1308;3183;2708;1462;3549;4612;2278;2169;8467;4421;4181 -170;'604;Peru;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;19;0;45858;48600;228;0;7;4;1288;581;0;164;0 -170;'604;Peru;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;8;0;17930;21504;31;0;28;15;520;282;0;2;0 -170;'604;Peru;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98;78;696;2196;3500;100;0;0;0;0;0;0;0;0;29;685;629;548;1851;455;338;1519;1716;2691;10107;6657;3411;6865;9816;9534;5139;20000;8181;26000 -170;'604;Peru;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;11;175;227;158;42;0;0;0;0;0;0;0;0;43;400;279;281;1021;199;167;1045;1130;1308;3183;2708;1462;3549;4612;2278;2169;8467;4048;4181 -170;'604;Peru;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;244;1746;1746;0;1300;1300;0;0;0;0;0;0;333;1946;466;1256;0;78;80;26;75;120;145;146;0;0;0;0;75;224;368;0;1841 -170;'604;Peru;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;236;236;0;373;373;0;0;0;0;0;0;51;314;130;358;0;18;5;16;31;30;104;105;0;0;0;0;93;215;155;1;271 -170;'604;Peru;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;57;0;0;0;0;0;0;0;0;0;0;0;539;0 -170;'604;Peru;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;22;0;0;0;0;0;0;0;0;0;0;0;373;0 -170;'604;Peru;1868;Sawlogs and veneer logs;5516;Production;m3;225000;270000;286000;428000;480000;614000;602000;648000;637000;738000;888000;906000;940000;1067000;1140000;1693000;1159000;927800;1031000;1377400;1347000;1163000;1163000;1044000;1118000;1190000;1182500;1023800;771800;1055800;919800;952000;1379000;1517000;1397000;1402000;916000;1617000;1382000;1335000;1089000;1204000;1012000;1306000;1438000;1657000;1810200;1542000;1192000;1212000;1373000;1349000;1127000;1295113;1128296;1037366;942362;909218;1155081;634719;1196885;1455610;1455610 -170;'604;Peru;1868;Sawlogs and veneer logs;5616;Import quantity;m3;100;200;300;2100;10900;9800;2900;700;5600;5300;5800;12100;20900;23600;1900;3000;2500;3400;100;2300;200;600;600;300;100;100;100;100;100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -170;'604;Peru;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;17;21;55;35;555;508;111;22;135;127;130;385;1818;3894;203;231;263;263;24;411;54;252;252;180;32;32;25;25;30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -170;'604;Peru;1868;Sawlogs and veneer logs;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -170;'604;Peru;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -170;'604;Peru;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;7000;13000;23000;135000;157000;185000;152000;66000;61000;58000;58000;58000;58000;58000;58000;58000;9000;5800;6000;10400;2000;1000;1000;2000;2000;3000;5500;4800;4800;4800;4800;2000;0;0;0;0;0;0;40000;10000;8000;10000;12000;18000;14000;31000;8200;24000;13000;4000;18000;16000;11000;14794;2563;5673;1160;0;16383;7959;965;430;430 -170;'604;Peru;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;;100;200;1600;10300;9100;2100;300;3900;3700;5100;11100;20800;21000;400;2500;2200;2200;100;2300;200;600;600;300;100;100;100;100;100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -170;'604;Peru;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;;4;38;23;495;465;71;14;103;98;117;367;1816;3800;72;188;245;245;24;411;54;252;252;180;32;32;25;25;30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -170;'604;Peru;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;218000;257000;263000;293000;323000;429000;450000;582000;576000;680000;830000;848000;882000;1009000;1082000;1635000;1150000;922000;1025000;1367000;1345000;1162000;1162000;1042000;1116000;1187000;1177000;1019000;767000;1051000;915000;950000;1379000;1517000;1397000;1402000;916000;1617000;1342000;1325000;1081000;1194000;1000000;1288000;1424000;1626000;1802000;1518000;1179000;1208000;1355000;1333000;1116000;1280319;1125733;1031693;941202;909218;1138698;626760;1195920;1455180;1455180 -170;'604;Peru;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;100;100;100;500;600;700;800;400;1700;1600;700;1000;100;2600;1500;500;300;1200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -170;'604;Peru;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;17;17;17;12;60;43;40;8;32;29;13;18;2;94;131;43;18;18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -170;'604;Peru;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -170;'604;Peru;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -170;'604;Peru;1870;Pulpwood and particles (1961-1997);5516;Production;m3;;;;;;;;;10000;20000;40000;54000;40000;32000;23000;35000;26000;20000;19000;25000;29000;5000;5000;5000;5000;5000;5000;5000;5000;5000;0;0;0;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;; -170;'604;Peru;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;10000;20000;40000;54000;40000;32000;23000;35000;26000;20000;19000;25000;29000;5000;5000;5000;5000;5000;5000;5000;5000;5000;0;0;0;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;; -170;'604;Peru;1871;Other industrial roundwood;5516;Production;m3;267000;270000;329000;173000;132000;252000;270000;356000;338000;329000;352000;362000;345000;357000;370000;434000;553000;570000;586000;586000;122000;88000;50000;20000;1500;1000;1600;1100;800;12500;2200;2200;1200;1800;0;0;203000;212000;146000;176000;232000;230000;124000;315000;304000;147000;161000;240000;155000;140000;123000;120000;150000;106950;117221;114061;122567;124181;124181;124181;124181;124181;124181 -170;'604;Peru;1871;Other industrial roundwood;5616;Import quantity;m3;1100;1100;1000;1700;3200;3600;2100;3600;1500;1500;400;400;400;400;3500;600;200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -170;'604;Peru;1871;Other industrial roundwood;5622;Import value;1000 USD;89;92;98;54;82;90;55;90;140;134;35;37;37;37;954;168;25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -170;'604;Peru;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;267000;270000;329000;173000;132000;252000;270000;356000;338000;329000;352000;362000;345000;357000;370000;434000;553000;570000;586000;586000;122000;88000;50000;20000;1500;1000;1600;1100;800;12500;2200;2200;1200;1800;0;0;203000;212000;146000;176000;232000;230000;124000;315000;304000;147000;161000;240000;155000;140000;123000;120000;150000;106950;117221;114061;122567;124181;124181;124181;124181;124181;124181 -170;'604;Peru;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;1100;1100;1000;1700;3200;3600;2100;3600;1500;1500;400;400;400;400;3500;600;200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -170;'604;Peru;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;89;92;98;54;82;90;55;90;140;134;35;37;37;37;954;168;25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -170;'604;Peru;1630;Wood charcoal;5510;Production;t;148632;153799;159146;164679;170404;176328;182458;188801;195364;202156;209157;216609;223507;227081;235797;245632;256367;268625;275337;284513;289028;300770;326446;332393;340868;342387;344709;367457;393765;412835;421228;436868;439999;434591;436496;444451;446854;456237;464679;473469;478446;483475;488557;493692;498882;502713;506600;103000;105000;103000;132000;93000;47000;59065;20257;50774;29782;31033;45141;36250;21531;21531;21531 -170;'604;Peru;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;0;0;600;1600;2000;600;400;1000;400;0;0;0;0;0;0;235;1059;628;570;1493;1341;202;20;264;508;187;195;220;801;1419;2533 -170;'604;Peru;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;46;125;116;36;47;63;21;0;0;0;0;0;0;21;94;69;65;184;227;57;13;126;254;93;80;67;167;286;385 -170;'604;Peru;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;18;152;180;14;14;46;55;55;37;55;0;1;0;14;0 -170;'604;Peru;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;4;34;74;29;29;39;48;48;38;26;0;1;0;8;1 -170;'604;Peru;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;217;83;52;89;102;137;203;295;2883;3765;3636;7693;13199;4139;161;11522 -170;'604;Peru;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;78;98;113;143;71;142;164;202;462;1474;1293;755;1284;586;233;104 -170;'604;Peru;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;12;7;8;8;31;67;67;0;1;51;651;62;62;382;4 -170;'604;Peru;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;4;5;7;7;4;3;3;0;2;79;7;173;173;306;15 -170;'604;Peru;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;15;21;31;35;92;104;122;111;322;165;2281;7346;361;97;2451 -170;'604;Peru;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;10;16;24;24;49;117;149;59;326;184;436;1073;84;185;71 -170;'604;Peru;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;0;0;0;1;13;1;60;60;381;1 -170;'604;Peru;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;0;0;0;0;2;70;0;161;161;304;10 -170;'604;Peru;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;133;68;31;58;67;45;99;173;2772;3443;3471;5412;5853;3778;64;9071 -170;'604;Peru;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;50;88;97;119;47;93;47;53;403;1148;1109;319;211;502;48;33 -170;'604;Peru;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;12;7;7;7;31;67;67;0;0;38;650;2;2;1;3 -170;'604;Peru;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;4;5;5;5;4;3;3;0;0;9;7;12;12;2;5 -170;'604;Peru;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;1;0;0;10;3509;108;56;130;281;218;157 -170;'604;Peru;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;1;0;0;9;546;47;28;104;224;234;201 -170;'604;Peru;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;8;56;58;2;1 -170;'604;Peru;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;9;55;78;25;6 -170;'604;Peru;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;1;0;0;10;37;34;15;56;152;149;139 -170;'604;Peru;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;1;0;0;9;19;18;8;53;145;189;189 -170;'604;Peru;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;8;56;56;0;0 -170;'604;Peru;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;8;53;53;1;1 -170;'604;Peru;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3472;74;41;74;129;69;18 -170;'604;Peru;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;527;29;20;51;79;45;12 -170;'604;Peru;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;2;2;1 -170;'604;Peru;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;2;25;24;5 -170;'604;Peru;1872;Sawnwood;5516;Production;m3;124300;149400;158600;235600;263500;338400;354400;312000;309000;351000;382000;384000;391000;467000;516000;786000;476000;486000;546000;610800;653000;532300;389900;482000;535300;615000;628200;546400;391900;499000;477000;500000;592000;649300;630000;693000;482000;590000;835000;646000;506000;626000;528000;671000;743000;856000;948000;808000;626000;627828;711000;693000;574000;667153;579079;531315;482320;464647;596547;327848;625013;754857;943571 -170;'604;Peru;1872;Sawnwood;5616;Import quantity;m3;66500;90000;93200;86400;105700;109200;96300;45900;41700;39600;38200;44200;37150;4650;82500;24700;10000;10000;14100;17800;16000;23000;23000;12800;9400;9200;3900;3900;3900;1000;1000;1986;2000;5700;1800;5200;2500;5000;5500;7200;11300;14034;17045;21720;23120;25850;39816;52958;48162;99201;93987;98680;122419;112653;107482;91947;100186;124629;133498;129671;143738;134035;97097 -170;'604;Peru;1872;Sawnwood;5622;Import value;1000 USD;2615;3634;3591;3524;3426;3338;4381;1759;1980;2080;1606;2184;2227;431;7115;1838;863;906;1567;2827;3183;2941;2941;3252;2180;1867;978;978;999;357;377;493;533;1727;1321;1482;1213;1896;1525;2109;2942;3226;3814;4873;6147;7138;11534;16646;13730;24099;25343;26202;34943;32651;28958;25197;26433;33153;34769;30743;44342;43135;38961 -170;'604;Peru;1872;Sawnwood;5916;Export quantity;m3;4150;5300;4500;7100;3200;6800;3500;2000;3300;3500;1300;2900;5000;8200;1800;8500;9300;13200;15400;15900;7400;10900;10900;3000;2300;1500;2700;500;7200;3300;4200;12046;16200;40100;13300;24000;47000;63000;77900;87000;80000;110117;118187;144809;168668;181818;179555;573872;364907;295383;309930;332767;240110;290798;140059;119501;143473;179546;169769;89804;111343;111304;93405 -170;'604;Peru;1872;Sawnwood;5922;Export value;1000 USD;167;264;246;384;308;342;166;139;187;200;78;250;460;840;167;1071;1677;2606;3293;3032;2741;3800;3800;936;745;413;1045;163;2178;1182;1744;5783;8119;17505;7816;14927;27912;36409;59272;52462;52156;78277;73171;83206;98447;126009;111945;161491;106335;116923;100632;66197;57308;95169;49995;81916;77704;65568;67809;53043;53971;67683;43112 -170;'604;Peru;1632;Sawnwood, coniferous;5516;Production;m3;11850;14200;20800;87800;104250;119200;98200;41500;41000;38000;1000;2000;1500;1000;1000;1500;6000;5000;5500;7000;3500;5300;3900;3000;5300;6000;6200;5400;3900;5000;;2000;3000;1300;0;0;0;0;44000;3000;3000;5000;6000;9000;7000;16000;16000;13000;7000;1828;9000;8000;5000;7705;1335;2955;604;0;8533;4145;5027;226;282 -170;'604;Peru;1632;Sawnwood, coniferous;5616;Import quantity;m3;64250;89200;91250;83450;100350;104700;94050;42950;39900;37850;37950;43950;36900;4400;69150;24150;9900;9900;11400;16350;13500;20500;20500;10500;7100;6900;1600;1600;1600;900;900;1232;1500;3400;1100;4800;2000;3000;5300;7000;10000;13734;15943;20170;21670;24500;38999;52456;47553;98398;93474;97857;120939;111083;106572;90693;99144;122783;131543;124749;142929;130067;92503 -170;'604;Peru;1632;Sawnwood, coniferous;5622;Import value;1000 USD;2509;3615;3513;3290;3217;3256;4289;1646;1885;1990;1600;2174;2217;421;6079;1779;853;887;1296;2523;2442;2200;2200;2546;1474;1161;272;272;293;175;270;273;284;762;874;1378;1029;1408;1466;2049;2338;3075;3229;4308;5562;6473;11032;16221;13297;23547;24991;25778;34291;31196;28548;24634;25563;32138;33756;29385;43921;41024;37140 -170;'604;Peru;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2180;2700;28500;0;0;11000;1000;9900;7000;3000;500;3187;10809;4668;11818;2555;8567;9271;13540;5942;767;419;3525;3026;1501;0;13;13;0;1343;345;862 -170;'604;Peru;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;610;1521;12040;0;0;4683;294;3353;1316;471;75;835;3206;3541;11009;2285;2463;2666;5351;2864;461;216;1546;1375;850;0;4;4;10;181;156;521 -170;'604;Peru;1633;Sawnwood, non-coniferous;5516;Production;m3;112450;135200;137800;147800;159250;219200;256200;270500;268000;313000;381000;382000;389500;466000;515000;784500;470000;481000;540500;603800;649500;527000;386000;479000;530000;609000;622000;541000;388000;494000;477000;498000;589000;648000;630000;693000;482000;590000;791000;643000;503000;621000;522000;662000;736000;840000;932000;795000;619000;626000;702000;685000;569000;659448;577744;528360;481716;464647;588014;323703;619986;754631;943289 -170;'604;Peru;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;2250;800;1950;2950;5350;4500;2250;2950;1800;1750;250;250;250;250;13350;550;100;100;2700;1450;2500;2500;2500;2300;2300;2300;2300;2300;2300;100;100;754;500;2300;700;400;500;2000;200;200;1300;300;1102;1550;1450;1350;817;502;609;803;513;823;1480;1570;910;1254;1042;1846;1955;4922;809;3968;4594 -170;'604;Peru;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;106;19;78;234;209;82;92;113;95;90;6;10;10;10;1036;59;10;19;271;304;741;741;741;706;706;706;706;706;706;182;107;220;249;965;447;104;184;488;59;60;604;151;585;565;585;665;502;425;433;552;352;424;652;1455;410;563;870;1015;1013;1358;421;2111;1821 -170;'604;Peru;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;4150;5300;4500;7100;3200;6800;3500;2000;3300;3500;1300;2900;5000;8200;1800;8500;9300;13200;15400;15900;7400;10900;10900;3000;2300;1500;2700;500;7200;3300;4200;9866;13500;11600;13300;24000;36000;62000;68000;80000;77000;109617;115000;134000;164000;170000;177000;565305;355636;281843;303988;332000;239691;287273;137033;118000;143473;179533;169756;89804;110000;110959;92543 -170;'604;Peru;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;167;264;246;384;308;342;166;139;187;200;78;250;460;840;167;1071;1677;2606;3293;3032;2741;3800;3800;936;745;413;1045;163;2178;1182;1744;5173;6598;5465;7816;14927;23229;36115;55919;51146;51685;78202;72336;80000;94906;115000;109660;159028;103669;111572;97768;65736;57092;93623;48620;81066;77704;65564;67805;53033;53790;67527;42591 -170;'604;Peru;1634;Veneer sheets;5516;Production;m3;;;;;5200;7400;4600;7100;11200;13600;11000;12000;12000;8000;3000;6000;23800;24000;28000;35000;38000;21000;15000;12000;14000;10000;5000;5000;5000;3300;1500;1000;7300;8000;2400;2000;4000;1000;4000;20000;10000;7000;9000;5000;3000;4000;4000;2000;1000;3000;2000;5000;6967;4297;4989;5225;4942;5180;2943;1530;1681;1905;2381 -170;'604;Peru;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;176;300;300;100;200;1000;800;1600;1500;1300;229;241;572;160;433;681;323;456;371;1171;67;59;113;1079;1682;1542;1564;1768;2253;5440;332;2851 -170;'604;Peru;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;262;588;450;97;447;715;611;905;872;661;419;365;1290;391;848;1179;537;737;781;2438;1718;1009;1771;2203;3248;2825;2038;2099;2741;5080;841;1847 -170;'604;Peru;1634;Veneer sheets;5916;Export quantity;m3;;;;;5200;7400;4600;6400;6100;8500;7900;12000;12000;7600;3000;6000;13400;13500;8500;5200;7400;7400;7400;200;1000;1000;100;100;500;100;100;172;4500;3000;2500;2100;4000;7000;11000;8000;8200;5339;5477;6234;9541;6164;827;3371;586;1309;1021;2275;2494;1786;1567;1479;847;664;581;464;91;209;29 -170;'604;Peru;1634;Veneer sheets;5922;Export value;1000 USD;;;;;555;813;629;658;792;915;756;1135;1235;866;373;891;2330;3017;2204;1503;2748;2748;2748;51;441;437;64;64;131;25;25;86;2407;2198;1833;1035;2574;3393;6163;3488;3653;2107;2392;3232;5016;3179;355;2478;370;823;737;2070;2884;2592;2150;2308;1472;1332;1194;916;430;371;166 -170;'604;Peru;1873;Wood-based panels;5516;Production;m3;;;1600;10400;14000;26200;28200;32000;31200;40200;46200;55500;59000;55800;57100;81000;40000;24000;38000;49000;40000;37000;22000;30000;20000;35000;43000;45000;20000;24000;31300;37400;48600;50500;74500;80500;53000;57000;34000;36000;100000;100000;106000;124000;121000;71000;79000;114000;77000;70538;61696;62134;74824;56413;50960;49592;53290;53992;0;0;0;0;0 -170;'604;Peru;1873;Wood-based panels;5616;Import quantity;m3;6000;7200;7900;7600;6700;8338;4474;1432;727;727;932;2227;700;500;500;500;200;200;200;200;200;200;200;200;200;200;200;200;100;300;200;3732;9302;9300;18400;29200;32700;40000;33600;40200;46000;60452;84000;83174;102735;122970;128664;211235;183826;231806;311320;327655;354002;362228;407124;424809;502205;572153;620323;695386;854190.91;714875;698495 -170;'604;Peru;1873;Wood-based panels;5622;Import value;1000 USD;1178;1161;1430;1312;1540;1647;962;282;106;126;165;559;195;200;261;261;19;19;19;19;19;69;69;69;69;69;69;69;43;150;65;824;1995;2333;5674;7717;9429;11761;9261;11028;12350;14979;19973;21402;27402;40366;43652;84998;68050;91109;113878;128397;155821;159086;144832;148826;167934;196210;204755;228484;321584.57;306230;129802 -170;'604;Peru;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;1000;100;100;200;200;200;2400;3700;5300;1400;800;800;800;800;100;100;100;100;100;100;200;182;800;3500;2900;7700;15000;10000;13000;14000;19000;12821;14656;37647;45695;55685;44093;54452;28222;41230;44591;41084;31965;30778;25054;12452;9013;10951;4396;4671;11460.52;4176;21127 -170;'604;Peru;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;74;26;26;88;88;88;793;1897;1638;868;479;458;458;458;61;66;66;66;69;65;110;116;706;1960;1767;4520;8203;5669;7082;7169;9801;6314;7752;19291;22493;24784;25486;35543;15760;20607;22988;22831;19652;15625;15142;7039;6639;5057;3182;3001;3733;3453;3786 -170;'604;Peru;1640;Plywood and LVL;5516;Production;m3;;;;6700;7400;15000;20000;24000;25000;33000;39000;48000;51000;48000;49000;76000;39000;24000;38000;49000;40000;37000;22000;30000;20000;35000;43000;45000;20000;24000;26000;30000;36000;40000;64000;70000;53000;57000;34000;36000;100000;100000;106000;124000;121000;71000;79000;114000;77000;70538;61696;62134;74824;56413;50960;49592;53290;53992;0;0;0;0;0 -170;'604;Peru;1640;Plywood and LVL;5616;Import quantity;m3;4100;3900;5200;3400;5100;5600;3000;800;200;200;300;1700;700;500;500;500;200;200;200;200;200;200;200;200;200;200;200;200;100;300;200;195;100;200;100;100;300;1000;600;200;1000;1452;1500;1774;3735;1945;6639;15235;12973;27471;38831;31529;42686;40661;64237;49210;79552;84767;118049;119874;159501;102501;135801 -170;'604;Peru;1640;Plywood and LVL;5622;Import value;1000 USD;975;861;1163;868;1331;1343;777;219;56;53;80;491;195;200;261;261;19;19;19;19;19;69;69;69;69;69;69;69;43;150;65;75;114;109;103;103;166;415;315;103;316;593;539;511;1263;1102;2566;6071;4894;10530;10240;14512;19650;22909;24587;19460;31124;30822;38191;51768;60627;47165;55063 -170;'604;Peru;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;1000;100;100;200;200;200;2400;3700;5300;1400;800;800;800;800;100;100;100;100;100;100;200;182;800;2900;2900;7700;15000;10000;13000;14000;19000;12821;14656;36447;44495;55585;43993;54377;26737;30116;31817;34432;26064;26829;22610;10857;8885;10831;3640;3670;11335;4139;4139 -170;'604;Peru;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;74;26;26;88;88;88;793;1897;1638;868;479;458;458;458;61;66;66;66;69;65;110;116;706;1874;1767;4520;8203;5669;7082;7169;9801;6314;7752;19123;22325;24700;25402;35489;15210;17452;19385;20993;17852;14009;13751;6149;6552;4970;2586;2578;3656;3426;3426 -170;'604;Peru;1646;Particle board and OSB (1961-1994);5516;Production;m3;;;1600;3700;6600;11200;8200;8000;6200;7200;7200;7500;8000;7800;8100;5000;1000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -170;'604;Peru;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3095;8300;8500;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -170;'604;Peru;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;592;1507;1939;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -170;'604;Peru;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -170;'604;Peru;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -170;'604;Peru;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 -170;'604;Peru;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14200;24000;24400;27000;21000;27000;31000;41000;57000;57400;72000;81000;104000;129237;125263;141713;177860;184125;216455;230572;244805;273481;308524;361568;366822;413172;486554;467478;397482 -170;'604;Peru;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3931;5466;5900;7417;5330;6680;7638;8896;11774;13000;16994;22717;31544;41071;40218;47544;61153;65413;82092;82518;72725;81351;91500;109628;111325;118059;162081;184481;15730 -170;'604;Peru;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;1200;1200;100;100;49;1459;11088;12668;6552;5832;3753;2286;1411;58;115;108;89;23.64;36;8760 -170;'604;Peru;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;168;168;84;84;43;539;3144;3549;1781;1687;1364;1183;695;18;65;74;13;19;25;82 -170;'604;Peru;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4763;4763;4763;7110;12396;16366;9835;21280;15411;43350;31790;51132;76331;90289;42548;75792 -170;'604;Peru;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1863;1863;1863;3183;3890;6055;3354;6170;4115;11351;8997;13422;18571;29598;15695;17985 -170;'604;Peru;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118 -170;'604;Peru;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;230 -170;'604;Peru;1874;Fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5300;7400;12600;10500;10500;10500;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -170;'604;Peru;1874;Fibreboard;5616;Import quantity;m3;1900;3300;2700;4200;1600;2738;1474;632;527;527;632;527;;;;;;;;;;;;;;;;;;;;442;902;600;4100;5100;8000;12000;12000;13000;14000;18000;25500;24000;27000;40025;18025;62000;40827;57859;87519;99605;78495;81160;76802;86707;70779;94028;84320;86009;117846.91;102348;89420 -170;'604;Peru;1874;Fibreboard;5622;Import value;1000 USD;203;300;267;444;209;304;185;63;50;73;85;68;;;;;;;;;;;;;;;;;;;;157;374;285;1640;2148;3363;3929;3616;4245;4396;5490;7660;7891;9145;16547;9542;35993;21075;31172;39302;44582;48024;50305;41350;43900;33959;46763;41817;40086;69278.57;58889;41024 -170;'604;Peru;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;;;;;;;;;26;26;26;106;100;69;196;158;184;70;5;648;912;101.89;1;8110 -170;'604;Peru;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;;;;;;;;;11;11;11;54;57;113;252;208;195;69;22;522;410;58;2;48 -170;'604;Peru;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10500;10500;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -170;'604;Peru;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;0;0;0;9000;10000;11000;13000;17000;18000;18000;26000;13000;37000;18695;16780;21633;21667;22572;23682;22723;27639;17726;25431;17538;14705;16319.24;11571;8775 -170;'604;Peru;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;574;0;0;0;2524;3070;3261;3627;4995;5637;5636;10224;7185;20325;9005;8143;10048;10958;11433;12145;10820;11441;8248;12684;9678;7443;11174.57;9494;6290 -170;'604;Peru;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;24;75;75;40;117;117;117;38;1;479;479;4;0;8026 -170;'604;Peru;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;27;27;34;145;145;145;37;5;393;393;6;0;21 -170;'604;Peru;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;1100;0;0;2000;2000;2000;4000;8000;5000;8000;12000;3000;24000;21702;40823;65578;76952;55676;57333;53935;58857;52945;68274;66234;70218;99442;89771;79143 -170;'604;Peru;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;197;640;0;0;656;719;657;1326;2416;1913;3168;5766;1800;15121;11659;22777;28718;33082;36395;37892;30340;32228;25616;33872;31763;32035;57227;48587;33885 -170;'604;Peru;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;31;17;21;68;30;56;31;3;169;23;96.18;0;74 -170;'604;Peru;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;27;20;69;103;59;46;25;10;127;14;50;0;25 -170;'604;Peru;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;0;0;3400;4000;8000;12000;1000;1000;1000;1000;500;1000;1000;2025;2025;1000;430;256;308;986;247;145;144;211;108;323;548;1086;2085.66;1006;1502 -170;'604;Peru;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;0;0;869;1508;3363;3929;436;456;478;537;249;341;341;557;557;547;411;252;536;542;196;268;190;231;95;207;376;608;877;808;849 -170;'604;Peru;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;;;;;;;;;;;;;8;8;11;11;11;1;1;0;410;1.7;1;10 -170;'604;Peru;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;;;;;;;;;;;;;10;10;4;4;4;7;7;2;3;2;2;2 -170;'604;Peru;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5300;7400;12600;10500;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -170;'604;Peru;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;1900;3300;2700;4200;1600;2738;1474;632;527;527;632;527;;;;;;;;;;;;;;;;;;;;414;902;600;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -170;'604;Peru;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;203;300;267;444;209;304;185;63;50;73;85;68;;;;;;;;;;;;;;;;;;;;152;374;285;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -170;'604;Peru;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -170;'604;Peru;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -170;'604;Peru;1879;Total fibre furnish;5510;Production;t;27000;26100;41600;42700;50800;54100;42800;46900;57200;90800;108000;131000;125000;149000;148800;157900;164500;155000;217200;203700;182500;144000;122000;122000;191000;275000;249000;242000;334000;283000;334000;334000;129000;73000;120000;120000;120000;89000;89000;89000;89000;89000;89000;89000;89000;89000;89000;89000;89000;89000;89000;89000;89000;89000;72000;72000;72000;72000;72000;72000;72000;72000;72000 -170;'604;Peru;1879;Total fibre furnish;5610;Import quantity;t;500;800;600;600;1200;600;1000;39100;27500;26200;38800;42900;34200;37962;28700;29000;40200;35700;44100;33000;25400;37300;24700;42600;33600;55200;59200;82700;126700;242500;254700;18211;19092;28800;43300;34800;36100;28000;31200;34200;53000;54000;51000;58000;61000;92430;107000;132304;108998;136259;143633;140686;141226;134886;131452;104940;133817;154553;174464;205890;198061.1;215166;169871 -170;'604;Peru;1879;Total fibre furnish;5622;Import value;1000 USD;43;61;47;48;98;51;58;4412;3997;3798;6873;6692;6664;11679;12366;8366;12145;8469;16246;14024;13362;20716;13635;17351;11901;17764;31310;38086;46046;57944;60841;6954;7504;13965;15651;13623;13115;12392;13733;20489;21805;19819;19816;27952;24478;47238;65347;89769;51569;90037;95141;84060;88215;78472;74351;59510;71638;96160;99937;91650;113716.54;143214;107057 -170;'604;Peru;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;24;0;0;0;0;0;0;3000;2000;1000;3000;5000;5000;7000;4000;3017;9790;8744;14945;5410;17857;25760;2191;17251;18598;15624;10456;6222;10238.22;2827;4197 -170;'604;Peru;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;10;0;0;0;0;0;0;440;309;85;224;500;500;808;805;826;971;1558;3529;907;3167;5053;512;3843;4699;5671;3914;1956;2939.01;1636;2238 -170;'604;Peru;1878;Pulp for paper;5510;Production;t;27000;26100;41600;42700;50800;54100;42800;46900;57200;57800;78000;91000;80000;104000;92800;95900;102500;102000;160200;146700;123500;101000;76000;76000;145000;203000;163000;165000;183000;132000;175000;175000;82000;23000;48000;48000;48000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;0;0;0;0;0;0;0;0;0 -170;'604;Peru;1878;Pulp for paper;5610;Import quantity;t;500;800;600;600;1200;600;1000;39100;27500;26200;38800;42900;34200;36600;26400;28000;37600;33900;43600;31100;23400;35600;24400;41700;32300;44100;53900;59100;61700;64500;67700;11141;11324;20300;22400;19400;20700;20000;24000;27000;26000;35000;30000;41000;35000;68430;86000;100304;78736;89022;97807;101225;107884;88737;86639;91536;100662;108429;123524;145460;133442.8;134411;130067 -170;'604;Peru;1878;Pulp for paper;5622;Import value;1000 USD;43;61;47;48;98;51;58;4412;3997;3798;6873;6692;6664;11496;12144;8229;11804;8232;16180;13798;13128;20253;13553;17124;11624;16526;30407;33831;37306;39992;41992;6166;5957;12026;11801;10688;10180;10461;12237;18993;14874;16274;15730;24270;19115;42531;59828;79366;44744;74586;78770;71718;77782;64328;61345;56315;62788;84613;88078;78665;91745.43;107951;95407 -170;'604;Peru;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;24;0;0;0;0;0;0;0;0;0;0;0;0;0;0;17;21;179;179;19;20;134;134;4;32;32;1046;1913;2566;1614;1614 -170;'604;Peru;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;10;0;0;0;0;0;0;0;0;0;0;0;0;0;0;32;62;186;186;13;17;119;119;2;34;34;666;1075;1565;1013;1013 -170;'604;Peru;1875;Wood pulp;5510;Production;t;;;;;;;;;;;;;;;3800;4900;4500;5000;5200;6700;3500;1000;1000;1000;73000;73000;73000;73000;73000;73000;59000;59000;59000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -170;'604;Peru;1875;Wood pulp;5610;Import quantity;t;500;800;600;600;1200;600;1000;39100;27500;26200;38800;42900;34200;36600;26400;28000;37600;33900;43600;31100;23400;35600;24400;41700;32300;44100;53900;59100;61700;64500;67700;11141;11295;20300;22400;19400;20700;20000;24000;27000;26000;35000;30000;41000;35000;68430;86000;101131;79664;89948;98710;102152;107876;88675;86591;91503;100608;108365;123516;144741;133053.8;134410;130062 -170;'604;Peru;1875;Wood pulp;5622;Import value;1000 USD;43;61;47;48;98;51;58;4412;3997;3798;6873;6692;6664;11496;12144;8229;11804;8232;16180;13798;13128;20253;13553;17124;11624;16526;30407;33831;37306;39992;41992;6166;5934;12026;11801;10688;10180;10461;12237;18993;14874;16274;15730;24270;19115;42531;59828;79997;45570;75401;79541;72532;77768;64281;61301;56268;62690;84496;88056;78316;91452.43;107949;95396 -170;'604;Peru;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;24;0;0;0;0;0;0;0;0;0;0;0;0;0;0;15;19;177;177;17;20;114;114;4;32;32;1038;1194;1847;895;895 -170;'604;Peru;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;10;0;0;0;0;0;0;0;0;0;0;0;0;0;0;32;62;186;186;13;17;107;107;2;34;34;644;726;1216;664;664 -170;'604;Peru;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;164;263;291;325;733;823;835 -170;'604;Peru;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119;169;183;213;712;757;755 -170;'604;Peru;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -170;'604;Peru;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -170;'604;Peru;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;500;800;600;600;1200;600;1000;600;100;100;200;300;800;900;600;600;600;1200;1200;2700;300;300;300;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;100;96;83;59;34;96;200;283;329;;;;;;; -170;'604;Peru;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;43;61;47;48;98;51;58;50;8;8;21;24;162;128;234;234;234;195;195;789;153;153;153;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;122;72;66;56;53;90;154;185;231;;;;;;; -170;'604;Peru;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;0;0;0;0;0;0;;;;;;; -170;'604;Peru;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;0;0;0;0;0;0;;;;;;; -170;'604;Peru;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;2056;2438;0;0;0;0;;;;;;; -170;'604;Peru;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;1211;1383;0;0;0;0;;;;;;; -170;'604;Peru;1656;Chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;3800;4900;4500;5000;5200;6700;3500;1000;1000;1000;73000;73000;73000;73000;73000;73000;59000;59000;59000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -170;'604;Peru;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;38500;27400;26100;38600;42600;33400;35700;25800;27400;37000;32700;42400;28400;23100;35300;24100;41700;32300;44100;53900;59100;61700;64500;67700;11141;11295;20300;22400;19400;20700;20000;24000;27000;26000;35000;30000;41000;35000;68430;86000;100100;78637;88934;95664;98749;107780;88475;86308;91167;100444;108102;123225;144416;132320.8;133587;129227 -170;'604;Peru;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;4362;3989;3790;6852;6668;6502;11368;11910;7995;11570;8037;15985;13009;12975;20100;13400;17124;11624;16526;30407;33831;37306;39992;41992;6166;5934;12026;11801;10688;10180;10461;12237;18993;14874;16274;15730;24270;19115;42531;59828;79043;44666;74503;77442;70264;77678;64127;61116;56008;62571;84327;87873;78103;90740.43;107192;94641 -170;'604;Peru;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;;;;;;;;;;;;;;;15;19;177;177;17;20;114;114;4;32;32;1038;1194;1847;895;895 -170;'604;Peru;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;;;;;;;;;;;;;;;32;62;186;186;13;17;107;107;2;34;34;644;726;1216;664;664 -170;'604;Peru;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;20000;14100;13400;22200;26200;21300;23300;18300;16900;21600;14500;23300;13600;11600;15600;12500;16700;16700;19400;24000;26000;27000;28000;30000;2301;2689;3800;0;0;0;1000;2500;2000;5000;5000;3000;2000;2000;3164;5000;4000;3453;4859;4930;6676;5703;5410;5639;5539;5824;6680;4553;6248;7087.8;6712;7031 -170;'604;Peru;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;2000;1834;1743;3705;3755;4113;7500;7762;3883;5946;3145;8098;5140;5733;7700;6200;5395;5395;6439;12000;14000;16000;17000;20000;975;1146;1853;0;0;0;561;1107;1190;3019;1825;1145;1014;1014;1625;3518;2890;1886;3933;3839;4696;4004;4184;3889;3572;3930;5889;3338;3912;6085.71;6494;6184 -170;'604;Peru;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;644;597;597;597;597 -170;'604;Peru;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;398;363;363;363;363 -170;'604;Peru;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;;;;3800;4900;4500;5000;5200;6700;3500;1000;1000;1000;43000;43000;43000;43000;43000;43000;25000;25000;25000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -170;'604;Peru;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;18500;13300;12700;16400;16400;12100;12400;7500;10500;15400;18200;19100;14800;11500;19700;11600;25000;15600;24700;29900;33100;34700;36500;37700;8840;8606;16500;22400;19400;20700;18000;21000;25000;21000;30000;27000;39000;33000;65266;81000;96000;75132;83876;90371;91773;101929;82994;80669;85428;94560;101362;118598;138103;124887.4;126810;122149 -170;'604;Peru;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;2362;2155;2047;3147;2913;2389;3868;4148;4112;5624;4892;7887;7869;7242;12400;7200;11729;6229;10087;18407;19831;21306;22992;21992;5191;4788;10173;11801;10688;10180;9567;10735;17803;11855;14449;14585;23256;18101;40906;56310;76093;42650;70158;72939;65330;73425;59743;57227;52033;58629;78317;84386;74050;83992.73;100518;88339 -170;'604;Peru;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;;;;;;;;;;;;;;;15;19;177;177;17;20;114;114;4;32;32;394;597;1250;298;298 -170;'604;Peru;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;;;;;;;;;;;;;;;32;62;186;186;13;17;107;107;2;34;34;246;363;853;301;301 -170;'604;Peru;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;60;74;65;345.6;65;47 -170;'604;Peru;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;121;149;141;662;180;118 -170;'604;Peru;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;30000;30000;30000;30000;30000;30000;34000;34000;34000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -170;'604;Peru;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;1000;500;0;0;0;0;0;0;0;0;0;0;0;9;216;0;0;0;0;;;;;;; -170;'604;Peru;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;333;395;0;0;0;0;0;0;0;0;0;0;0;6;80;0;0;0;0;;;;;;; -170;'604;Peru;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;52;199;354;84;148;71;0;200;;;;;;; -170;'604;Peru;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;130;412;658;158;249;200;0;403;;;;;;; -170;'604;Peru;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;931;931;931;931;931;0;0;0;7;0;0;0;0;0;0;0 -170;'604;Peru;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;832;832;832;832;832;0;0;0;29;0;0;0;0;0;0;0 -170;'604;Peru;1668;Pulp from fibres other than wood;5510;Production;t;27000;26100;41600;42700;50800;54100;42800;46900;57200;57800;78000;91000;80000;104000;89000;91000;98000;97000;155000;140000;120000;100000;75000;75000;72000;130000;90000;92000;110000;59000;116000;116000;23000;23000;48000;48000;48000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;0;0;0;0;0;0;0;0;0 -170;'604;Peru;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;;;;;;;;;;;;;;;104;3;5;28;4;8;62;48;40;54;64;8;719;389;1;5 -170;'604;Peru;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;;;;;;;;;;;;;;;201;6;17;61;18;14;47;44;76;98;117;22;349;293;2;11 -170;'604;Peru;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;0;20;20;0;0;0;8;719;719;719;719 -170;'604;Peru;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;12;12;0;0;0;22;349;349;349;349 -170;'604;Peru;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;256;1;21;35;28;33;79;10;5;13;8;27;10;18;9;1 -170;'604;Peru;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;159;1;35;73;60;64;67;17;7;18;11;50;12;24;14;6 -170;'604;Peru;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;673;347;2608;2608;22;0;0;0;0;0;0;1;0;0;0;0 -170;'604;Peru;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112;28;359;359;4;0;0;0;0;0;0;1;0;0;0;0 -170;'604;Peru;1669;Recovered paper;5510;Production;t;;;;;;;;;;33000;30000;40000;45000;45000;56000;62000;62000;53000;57000;57000;59000;43000;46000;46000;46000;72000;86000;77000;151000;151000;159000;159000;47000;50000;72000;72000;72000;72000;72000;72000;72000;72000;72000;72000;72000;72000;72000;72000;72000;72000;72000;72000;72000;72000;72000;72000;72000;72000;72000;72000;72000;72000;72000 -170;'604;Peru;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;1362;2300;1000;2600;1800;500;1900;2000;1700;300;900;1300;11100;5300;23600;65000;178000;187000;7070;7768;8500;20900;15400;15400;8000;7200;7200;27000;19000;21000;17000;26000;24000;21000;32000;30262;47237;45826;39461;33342;46149;44813;13404;33155;46124;50940;60430;64618.3;80755;39804 -170;'604;Peru;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;183;222;137;341;237;66;226;234;463;82;227;277;1238;903;4255;8740;17952;18849;788;1547;1939;3850;2935;2935;1931;1496;1496;6931;3545;4086;3682;5363;4707;5519;10403;6825;15451;16371;12342;10433;14144;13006;3195;8850;11547;11859;12985;21971.1;35263;11650 -170;'604;Peru;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;3000;2000;1000;3000;5000;5000;7000;4000;3000;9769;8565;14766;5391;17837;25626;2057;17247;18566;15592;9410;4309;7672.22;1213;2583 -170;'604;Peru;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;440;309;85;224;500;500;808;805;794;909;1372;3343;894;3150;4934;393;3841;4665;5637;3248;881;1374.01;623;1225 -170;'604;Peru;1876;Paper and paperboard;5510;Production;t;55700;53200;61900;67100;41500;85600;90500;100100;109800;123800;142000;155000;144000;162000;139000;149000;146000;156000;204000;202700;272000;272000;146000;138000;150000;149000;209000;260000;311000;263000;279000;126000;70000;90000;132000;128000;119000;79000;85000;98000;100900;102800;105800;105800;147357;173000;188000;188000;173000;190000;215000;345679;368729;376942;399936;391472;485481;496106;578339;543000;538300;528000;460000 -170;'604;Peru;1876;Paper and paperboard;5610;Import quantity;t;40400;40400;42300;50000;55900;61800;71500;60100;61900;60900;76900;72800;54100;81300;65100;38600;61900;43100;11500;19300;46900;62900;43600;41500;53700;70700;100000;95500;98500;102400;107400;96966;150162;148400;125600;105400;196600;179999;158000;173000;174000;249000;267000;291000;319000;326624;354000;467000;433120;483009;515891;545053;558559;593547;621435;635529;495145;565841;610509;493211;526437.87;552294;504656 -170;'604;Peru;1876;Paper and paperboard;5622;Import value;1000 USD;9911;9589;9964;10093;12143;12760;12753;11052;11965;12026;15801;15832;13663;21280;34240;17768;28513;15064;8572;20120;40026;50800;31400;23535;30462;40441;60084;55311;56400;64500;67000;56596;95197;91817;96932;79916;153542;136533;105818;141512;143783;178219;190137;217012;253640;275613;311803;474991;401487;470788;536675;546256;551907;571685;574960;541280;405638;524298;551020;376003;479414.7;715182;507273 -170;'604;Peru;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;500;9800;10500;11500;20600;13300;9600;9300;15400;14000;14000;14000;1500;1200;1200;4600;4600;8100;6600;3600;3600;8300;4500;4500;2928;1033;3601;3601;600;1000;1000;4000;32600;28400;28200;13400;17400;17400;5127;7400;23165;30198;45506;58193;63762;59884;51486;40569;58099;83845;82415;63491;55478;59734.88;53590;61429 -170;'604;Peru;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;100;1307;1560;1745;2692;2200;2105;2036;4167;3830;3830;3830;770;508;509;1970;1970;3013;3379;1950;1950;3912;2185;2185;2394;381;1690;1690;441;976;1083;7282;16528;14188;15192;8233;9428;9428;3696;4446;20401;27476;35119;53737;48860;42822;40016;26732;34285;54979;63649;56722;41520;48518.15;57017;63329 -170;'604;Peru;2042;Graphic papers;5510;Production;t;7900;6000;6500;7300;10000;10500;9000;10700;18200;22000;36000;33000;36000;42000;38000;46000;41000;36000;86000;72400;93000;93000;47000;41000;49000;49000;56000;77000;93000;45000;50000;12000;12000;9000;22000;22000;22000;11000;11000;11000;11000;11000;11000;11000;52000;50000;57000;57000;40000;39000;47000;60204;53404;44933;55885;31957;44955;42000;14703;2000;1300;2000;2000 -170;'604;Peru;2042;Graphic papers;5610;Import quantity;t;35400;35300;37100;43400;44500;48500;58000;55800;57200;52100;68100;64000;45300;72500;55600;32800;55900;41400;7500;9700;37900;53200;40500;37600;44800;63000;89500;87000;88800;90700;95200;74501;108818;110300;78600;69400;140900;80399;116000;135000;120000;180000;184000;203000;227000;222624;255000;299000;276694;324435;334758;366049;367256;385873;382103;392903;339969;384767;337181;177776;189286.9;243039;241841 -170;'604;Peru;2042;Graphic papers;5622;Import value;1000 USD;7378;6783;6754;7093;7037;7492;8482;8868;9416;7926;11701;11732;9563;17180;22121;11462;20605;12324;2879;5462;25453;35000;26300;18800;23400;33837;49000;48000;49500;56200;58400;43207;68369;59240;62015;52926;106810;58342;80065;106525;96224;123527;127895;149427;181486;192607;221599;298348;249130;303922;334669;347902;341517;350216;335379;320111;276585;354696;300359;138381;161234.33;294380;251001 -170;'604;Peru;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;1500;2700;5800;4600;6000;5000;3600;9700;8300;8300;8300;400;100;100;500;500;900;1000;800;800;800;900;900;44;1;1;1;0;0;0;0;5000;3000;7000;4000;5000;5000;727;1000;1443;1354;1690;2857;406;303;406;159;298;428;262;622;1959;1318;338;129 -170;'604;Peru;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;346;680;1120;739;1100;1199;857;2988;2628;2628;2628;336;74;74;370;370;700;744;750;750;750;823;823;46;3;3;3;0;0;0;0;4561;2825;5021;2774;3200;3200;742;1021;1784;2131;2592;9816;1372;710;493;200;303;462;232;961;1990;1705.08;645;387 -170;'604;Peru;1671;Newsprint;5510;Production;t;;;;;;;;;;;;;;;;;;;45000;30000;25000;25000;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;0;0;0;0;0;0 -170;'604;Peru;1671;Newsprint;5610;Import quantity;t;23400;26400;31000;37100;40400;42900;50400;45600;47800;49400;61500;58000;43000;72300;51400;28700;55600;41300;7300;6500;32100;48000;37900;35000;39000;57000;87300;85000;86300;87600;91900;40184;50565;54500;56900;47900;60900;48400;53000;52000;53000;68000;57000;61000;61000;57000;68000;72000;70248;75470;80598;82482;88250;84916;71708;71204;36136;33526;58002;21705;25331.07;24023;17445 -170;'604;Peru;1671;Newsprint;5622;Import value;1000 USD;3867;4248;4850;5493;5940;6036;7030;6312;6795;7171;9628;9672;8263;17000;18182;8653;20186;12188;2597;3450;20281;30400;24000;16500;18400;28637;47000;46000;47000;53000;55000;20324;23676;23900;40759;31973;33124;27000;30087;29939;36173;35031;26915;32709;32709;37796;44203;50474;47523;46923;57126;59387;61273;56608;43662;40659;19930;21087;36064;11013;14085.36;19520;13943 -170;'604;Peru;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;2000;1500;100;6200;4800;4800;4800;;;;;;;;0;;;;;18;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;50;1352;48;0;0;4;13;13;59;2;0;425;41;0 -170;'604;Peru;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;400;399;57;2188;1828;1828;1828;;;;;;;;0;;;;;12;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;37;7331;32;0;0;5;31;31;41;19;0;368;32;0 -170;'604;Peru;1674;Printing and writing papers;5510;Production;t;7900;6000;6500;7300;10000;10500;9000;10700;18200;22000;36000;33000;36000;42000;38000;46000;41000;36000;41000;42400;68000;68000;37000;41000;49000;49000;56000;77000;93000;45000;50000;12000;12000;9000;22000;22000;22000;11000;11000;11000;11000;11000;11000;11000;52000;50000;57000;57000;40000;39000;47000;60204;53404;44933;55885;31957;44955;42000;14703;2000;1300;2000;2000 -170;'604;Peru;1674;Printing and writing papers;5610;Import quantity;t;12000;8900;6100;6300;4100;5600;7600;10200;9400;2700;6600;6000;2300;200;4200;4100;300;100;200;3200;5800;5200;2600;2600;5800;6000;2200;2000;2500;3100;3300;34317;58253;55800;21700;21500;80000;31999;63000;83000;67000;112000;127000;142000;166000;165624;187000;227000;206446;248965;254160;283567;279006;300957;310395;321699;303833;351241;279179;156071;163955.82;219016;224396 -170;'604;Peru;1674;Printing and writing papers;5622;Import value;1000 USD;3511;2535;1904;1600;1097;1456;1452;2556;2621;755;2073;2060;1300;180;3939;2809;419;136;282;2012;5172;4600;2300;2300;5000;5200;2000;2000;2500;3200;3400;22883;44693;35340;21256;20953;73686;31342;49978;76586;60051;88496;100980;116718;148777;154811;177396;247874;201607;256999;277543;288515;280244;293608;291717;279452;256655;333609;264295;127368;147148.96;274860;237058 -170;'604;Peru;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;1500;2700;5800;4600;4000;3500;3500;3500;3500;3500;3500;400;100;100;500;500;900;1000;800;800;800;900;900;26;1;1;1;0;0;;;5000;3000;7000;4000;5000;5000;727;1000;1443;1354;1640;1505;358;303;406;155;285;415;203;620;1959;893;297;129 -170;'604;Peru;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;346;680;1120;739;700;800;800;800;800;800;800;336;74;74;370;370;700;744;750;750;750;823;823;34;3;3;3;0;0;;;4561;2825;5021;2774;3200;3200;742;1021;1784;2131;2555;2485;1340;710;493;195;272;431;191;942;1990;1337.08;613;387 -170;'604;Peru;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4571;9000;12000;1000;1000;10000;13000;13000;14000;16000;19000;14337;16801;11725;14732;11977;12832;10822;11939;5598;9236;12801;7858;2463.36;4589;8103 -170;'604;Peru;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4059;6472;8633;580;372;6054;8164;8164;9794;12331;16890;12176;13439;9783;12714;9734;10196;8273;8534;3836;6529;9587;5678;1766.92;5645;7931 -170;'604;Peru;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;3;3;0;0;0;45;45;45;0;0;0;2;0 -170;'604;Peru;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;26;5;5;0;0;0;7;7;7;1;0;3;5;0 -170;'604;Peru;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15238;30000;31000;34000;61000;61000;63000;79000;72624;88000;91000;120366;130169;137012;136621;157413;170003;187993;207851;201214;241119;186932;103534;114596.64;147725;163616 -170;'604;Peru;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14209;22658;28401;29095;47421;49342;52841;71613;67298;82000;102389;116453;136950;151002;141585;160102;167339;177672;179281;170055;228863;178725;85443;96989.1;174207;168541 -170;'604;Peru;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;3000;7000;4000;5000;5000;727;1000;1417;687;447;204;299;299;134;86;87;314;65;193;1920;400;179;120 -170;'604;Peru;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4561;2825;5021;2774;3200;3200;742;1021;1727;782;561;383;408;408;174;111;77;320;80;505;1940;424.07;264;173 -170;'604;Peru;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11000;11000;11000;11000;11000;11000;11000;52000;50000;57000;57000;40000;39000;47000;60204;53404;44933;55885;31957;44955;42000;14703;2000;1300;2000;2000 -170;'604;Peru;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12190;24000;40000;32000;50000;56000;66000;74000;79000;83000;117000;71743;101995;105423;132214;109616;118122;111580;101909;97021;100886;79446;44679;46895.82;66702;52677 -170;'604;Peru;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13074;20848;39552;30376;40703;45584;55713;69000;77719;83065;128595;72978;106610;116758;134216;110408;116073;105772;91637;82764;98217;75983;36247;48392.94;95008;60586 -170;'604;Peru;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;655;1181;1298;56;4;272;69;153;56;93;427;39;493;116;9 -170;'604;Peru;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;1323;1968;2097;927;302;319;84;188;104;104;436;50;910;344;214 -170;'604;Peru;1675;Other paper and paperboard;5510;Production;t;47800;47200;55400;59800;31500;75100;81500;89400;91600;101800;106000;122000;108000;120000;101000;103000;105000;120000;118000;130300;179000;179000;99000;97000;101000;100000;153000;183000;218000;218000;229000;114000;58000;81000;110000;106000;97000;68000;74000;87000;89900;91800;94800;94800;95357;123000;131000;131000;133000;151000;168000;285475;315325;332009;344051;359515;440526;454106;563636;541000;537000;526000;458000 -170;'604;Peru;1675;Other paper and paperboard;5610;Import quantity;t;5000;5100;5200;6600;11400;13300;13500;4300;4700;8800;8800;8800;8800;8800;9500;5800;6000;1700;4000;9600;9000;9700;3100;3900;8900;7700;10500;8500;9700;11700;12200;22465;41344;38100;47000;36000;55700;99600;42000;38000;54000;69000;83000;88000;92000;104000;99000;168000;156426;158574;181133;179004;191303;207674;239332;242626;155176;181074;273328;315435;337150.97;309255;262815 -170;'604;Peru;1675;Other paper and paperboard;5622;Import value;1000 USD;2533;2806;3210;3000;5106;5268;4271;2184;2549;4100;4100;4100;4100;4100;12119;6306;7908;2740;5693;14658;14573;15800;5100;4735;7062;6604;11084;7311;6900;8300;8600;13389;26828;32577;34917;26990;46732;78191;25753;34987;47559;54692;62242;67585;72154;83006;90204;176643;152357;166866;202006;198354;210390;221469;239581;221169;129053;169602;250661;237622;318180.37;420802;256272 -170;'604;Peru;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;500;8300;7800;5700;16000;7300;4600;5700;5700;5700;5700;5700;1100;1100;1100;4100;4100;7200;5600;2800;2800;7500;3600;3600;2884;1032;3600;3600;600;1000;1000;4000;27600;25400;21200;9400;12400;12400;4400;6400;21722;28844;43816;55336;63356;59581;51080;40410;57801;83417;82153;62869;53519;58416.88;53252;61300 -170;'604;Peru;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;100;961;880;625;1953;1100;906;1179;1179;1202;1202;1202;434;434;435;1600;1600;2313;2635;1200;1200;3162;1362;1362;2348;378;1687;1687;441;976;1083;7282;11967;11363;10171;5459;6228;6228;2954;3425;18617;25345;32527;43921;47488;42112;39523;26532;33982;54517;63417;55761;39530;46813.08;56372;62942 -170;'604;Peru;1676;Household and sanitary papers;5510;Production;t;;;;;;;;5900;11800;10500;10000;11000;12000;13000;14000;15000;17000;20000;18000;19300;22000;22000;21000;17000;18000;18000;30000;44000;55000;55000;58000;14000;20000;28000;30000;26000;17000;16000;18000;20000;22900;24800;27800;27800;28357;39000;52000;52000;52000;52000;52000;97212;112777;150405;169056;165576;188510;202000;255827;255000;234000;216000;148000 -170;'604;Peru;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;4000;1000;3000;3000;5000;7000;2000;376;2426;7123;4540;4163;2291;4889;3605;3449;2061;9077;25795;32396.91;28111;21343 -170;'604;Peru;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1567;3037;700;2611;2611;5262;8178;2672;657;3623;9258;7155;4163;3905;6862;4567;4157;3154;11062;28184;39804.86;50197;27609 -170;'604;Peru;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;10000;6000;3000;3000;3000;1000;1000;10000;14608;9662;10706;11430;8257;8023;3024;4561;12204;18383;25376;15875;15716.16;18557;21498 -170;'604;Peru;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1843;5432;4813;2640;2640;2640;1248;707;11720;16811;11407;14736;14437;11321;11729;4507;6258;15814;23102;32807;18181;18875.59;27401;30154 -170;'604;Peru;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41000;56000;67000;67000;67000;67000;67000;67000;84000;79000;79000;81000;99000;116000;137018;152075;126197;117685;140386;199232;199232;254874;245000;272000;285000;282000 -170;'604;Peru;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99600;41000;36000;47000;58000;69000;77000;79000;84000;77000;151000;141550;147788;167675;165523;181580;202167;233267;237700;149251;175871;260892;288889;303675.06;280274;240295 -170;'604;Peru;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78191;24828;31650;37119;41050;46716;55729;58507;59424;58361;146070;128218;155706;186776;184185;201065;213993;230136;213931;121799;162845;235549;207496;275597.57;368284;226236 -170;'604;Peru;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;4000;24000;15000;14800;6000;9000;9000;3000;5000;11501;14097;34075;44302;51857;51323;43055;37376;53173;71211;63768;37492;37643;42699.72;34694;39799 -170;'604;Peru;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1083;7282;9507;5475;4930;2391;3160;3160;1278;2290;6082;7937;20783;28110;31935;30778;27748;21980;27141;38578;40190;22936;21328;27918.48;28960;32773 -170;'604;Peru;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;31500;75100;81500;83500;79800;91300;96000;111000;96000;107000;87000;88000;88000;100000;100000;111000;157000;157000;78000;80000;83000;82000;123000;139000;163000;163000;171000;100000;38000;51000;77000;77000;77000;;;;;;;;;;;;;;;;;;;;;;;;;; -170;'604;Peru;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;;;;;;;;1500;700;900;400;200;6900;2400;3800;1900;2400;5900;4700;8000;6000;6000;7200;7500;17565;31344;36300;45000;36000;55700;;;;;;;;;;;;;;;;;;;;;;;;;; -170;'604;Peru;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;;1914;885;1070;405;204;9467;4119;6500;3200;2971;5539;5081;9384;5611;4300;5200;5300;9889;19728;27778;29917;26990;46732;;;;;;;;;;;;;;;;;;;;;;;;;; -170;'604;Peru;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;;;;;;;;5700;5700;5700;5700;5700;1100;1100;1100;4100;4100;7200;5600;2800;2800;7500;3600;3600;2884;1032;3600;3600;600;1000;;;;;;;;;;;;;;;;;;;;;;;;;; -170;'604;Peru;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;;;1179;1179;1202;1202;1202;434;434;435;1600;1600;2313;2635;1200;1200;3162;1362;1362;2348;378;1687;1687;441;976;;;;;;;;;;;;;;;;;;;;;;;;;; -170;'604;Peru;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16000;18000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;39787;44314;42712;43140;48147;47872;47872;55161;53000;47000;46000;43000 -170;'604;Peru;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19434;8000;1000;10000;11000;24000;28000;28000;22000;17000;55000;52608;43752;43074;52066;58398;84331;99543;106667;62520;76752;113733;166860;145962.5;127825;115496 -170;'604;Peru;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13747;4365;6654;5002;4609;10523;13791;13791;10956;9419;34897;26856;28666;30934;33753;42102;57619;62423;60273;39501;61537;75081;88735;109460.41;134328;74642 -170;'604;Peru;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;625;2500;15000;14000;13000;4000;7000;7000;1000;3000;8000;13976;33642;42751;51757;50950;42672;36801;52730;70677;62885;36791;36601;41763.83;32843;38359 -170;'604;Peru;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;662;4451;5811;4804;3765;1231;2000;2000;383;1395;3766;7463;19679;26614;31395;29509;26420;20491;25632;37136;38113;20842;18856;25232.3;24351;29003 -170;'604;Peru;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24000;36000;43000;43000;43000;43000;43000;43000;58000;51000;51000;55000;75000;91000;94073;104761;83485;74545;92239;151360;151360;199713;192000;225000;239000;239000 -170;'604;Peru;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36439;15000;21000;22000;28000;29000;31000;31000;37000;37000;63000;57031;68216;80022;71057;75540;72977;89420;82969;52309;60694;85428;70478;82831.73;115819;77460 -170;'604;Peru;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28161;8942;15317;22203;24669;26165;30276;30276;29152;29152;76526;73948;91216;106875;107199;111883;112392;127340;113698;51337;62165;97984;77154;98275.65;186784;101625 -170;'604;Peru;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;3371;94;363;159;87;265;342;444;412;423;837;671;674;625.89;926;880 -170;'604;Peru;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;672;672;672;672;407;407;2079;421;964;584;435;1037;1227;1352;1274;1326;1912;2017;2050;2301.23;3306;3124 -170;'604;Peru;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;2000;3000;3000;3000;3000;3000;3000;5000;7000;7000;5000;3000;4000;3158;3000;0;0;0;0;0;0;0;0;0;0 -170;'604;Peru;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43727;18000;14000;15000;19000;16000;18000;20000;25000;23000;32000;31004;34684;43419;41566;46766;43775;43569;46682;33368;37986;60861;51134;74323.83;35410;46513 -170;'604;Peru;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36283;11521;9679;9914;11772;10028;11662;14440;19316;19790;33788;26463;34664;47536;42115;45924;42898;39385;38560;29876;38622;61670;41255;67182.51;45601;49157 -170;'604;Peru;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;375;1500;9000;1000;800;1000;1000;1000;1000;1000;130;27;70;1390;13;108;41;131;31;100;35;30;368;310;925;551 -170;'604;Peru;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;421;2831;3696;671;493;488;488;488;488;488;237;53;140;907;105;232;100;136;234;108;157;73;422;384.95;1303;619 -170;'604;Peru;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;907;1136;1160;834;876;1084;735;1382;1054;439;870;417;557;1220;826 -170;'604;Peru;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;859;951;1160;1431;1118;1156;1084;988;1400;1085;521;814;352;679;1571;812 -170;'604;Peru;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;0;11;11;0;0;0;0;9 -170;'604;Peru;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;0;0;1;1;1;8;8;4;0;0;0;27 -170;'604;Peru;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;3000;3000;3000;11000;0;0;0;0;0;0;0;0;0;0;0;0;0;51245;50473;55407;57310;53553;52784;52874;52935;41000;31000;25000;28000 -170;'604;Peru;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;4300;4700;8800;8800;8800;8800;8800;8000;5100;5100;1300;3800;2700;6600;5900;1200;1500;3000;3000;2500;2500;3700;4500;4700;4900;10000;1800;2000;0;0;0;1000;2000;5000;7000;13000;8000;10000;15000;15000;15000;14500;8360;6335;8941;5560;3216;1176;1321;2476;3142;3359;751;1079;870;1177 -170;'604;Peru;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;2184;2549;4100;4100;4100;4100;4100;10205;5421;6838;2335;5489;5191;10454;9300;1900;1764;1523;1523;1700;1700;2600;3100;3300;3500;7100;4799;5000;0;0;0;925;3337;8873;10605;14826;9245;11036;18320;23665;27901;23482;7537;5972;7014;5162;3571;2583;2671;3097;3603;4050;1942;2777.94;2321;2427 -170;'604;Peru;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;600;400;400;400;400;400;400;400;221;139;79;328;69;1;2;10;67;2;2;1;1;1;1;3 -170;'604;Peru;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;617;456;428;428;428;428;428;428;815;597;337;1075;1116;13;46;45;583;125;125;18;21;19;11;15 -170;'604;Peru;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104881;118505;108575;85399;144007;119189;90057 -170;'604;Peru;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88924;94761;92760;63869;82797;64178;48482 -170;'604;Peru;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;124;1021;430;360;1224;1510;104 -170;'604;Peru;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74683;78334;80528;54325;71260;53366;34772 -170;'604;Peru;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;598;403;349;1049;574;83 -170;'604;Peru;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;0;0;0;0;0;0 -170;'604;Peru;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;423;27;11;175;936;21 -170;'604;Peru;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74613;78334;80528;54325;71260;53366;34772 -170;'604;Peru;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3253;3449;5170;4324;5171;7185;2827 -170;'604;Peru;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;133;322;100;41;102;264;2241 -170;'604;Peru;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3076;3291;3335;2679;3519;3941;3468 -170;'604;Peru;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1708;1533;1755;1614;3284;2181;2167 -170;'604;Peru;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5738;5389;7190;4384;5081;11773;7376 -170;'604;Peru;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6227;9020;6065;3969;3968;3562;5224 -170;'604;Peru;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;1 -170;'604;Peru;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;128;2 -170;'604;Peru;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;176;276 -170;'604;Peru;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;146;217 -170;'604;Peru;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;32 -170;'604;Peru;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18 -170;'604;Peru;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8 -170;'604;Peru;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8 -170;'604;Peru;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106;182 -170;'604;Peru;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;206;230 -170;'604;Peru;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87303;99354;85367;67350;119051;84993;66037 -170;'604;Peru;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3885;5160;3836;3694;4054;4648;3888 -170;'604;Peru;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;237;99;59;183;179;6 -170;'604;Peru;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;2;94;18;0;40;9 -170;'604;Peru;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5375;5764;6984;6243;9778;9608;10239 -170;'604;Peru;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2279;390;382;208;129;117;181 -170;'604;Peru;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;124888;140817;150176;112479;149298;196755;157874 -170;'604;Peru;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40082;37292;39738;40063;47941;59604;55556 -170;'604;Peru;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1043;1609;1662;1032;1458;3772;1595 -170;'604;Peru;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -170;'604;Peru;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30163;35300;35353;29614;39722;51808;37912 -170;'604;Peru;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;897;1829;2083;1398;1307;1401;2028 -170;'604;Peru;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11070;12390;13498;9189;11584;14687;13766 -170;'604;Peru;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13396;14045;17079;17969;18957;20482;21405 -170;'604;Peru;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36033;37867;43063;28339;39357;48214;44586 -170;'604;Peru;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13600;12476;12332;14280;16348;22213;14766 -170;'604;Peru;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46579;53651;56600;44305;57177;78274;60015 -170;'604;Peru;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12189;8942;8244;6416;11329;15508;17357 -171;'608;Philippines;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2070979;2728519;2640743;2299286;3092677.1;3254293;2698613 -171;'608;Philippines;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;828769;488833;559314;692032;664835.7;702134;529227 -171;'608;Philippines;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;19073;10815;13936;14670;13995;21013;24882;26805;28525;33434;29928;30642;28526;58446;35347;39816;37998;67365;89013;95769;89935;91563;87554;97236;82057;98603;134067;144601;169137;228155;203955;283025;341911;426801;608983;720488;703701;498885;617858;633426;573058;573771;581899;596301;675385;680363;588314;539998;481654;661089;909257;945323;1193483;1359634;1261317;1460424;1566185;2122769;1936004;1761901;2481317.1;2559305;1918858 -171;'608;Philippines;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;106905;123934;164821;153411;164934;173956;187389;270363;287042;290534;271189;242003;423750;299814;228997;257899;266012;312998;480821;482202;454544;385026;367214;341001;236154;219911;268963;288701;227035;116721;95146;101367;94992;68973;91323;106089;100896;102151;81800;165968;153151;144927;119561;144130;186337;189321;183339;238994;217299;306477;380510;296684;306492;302288;307325;246801;256045;300298;320354;324928;422768.71;429061;365488 -171;'608;Philippines;1861;Roundwood;5516;Production;m3;26781292;26928932;21015236;28948008;29816244;27625744;30940104;31414230;31057514;30731560;30798956;30485092;30602972;27702286;28539510;28858168;28166920;27444268;26795176;26489080;24587560;23416484;23274808;22743179;22532421;22127941;22589229;21928357;20968616;20104941;18859075;18164094;17686737;17547962;17173281;16999074;16660307;16654137;16689803;16693709;16263695;16017084;15987500;16129590;16079034;16127030;15868000;16392700;16266718;15954935;16157439;16041722;16240559;16079741;15728066;15552083;15373495;15406099;15360103;15228215;15019165;14922084;14828252 -171;'608;Philippines;1861;Roundwood;5616;Import quantity;m3;;;;;;;;700;700;1700;1000;1400;100;100;900;1500;2400;2500;2000;1200;1200;1200;1200;1200;1200;1400;1400;2500;4400;320871;378519;548623;530000;463900;698500;877500;892500;458000;585000;562400;550400;434175;355787;324442;308570;200184;196000;77460;31602;22818;66959;85617;124059;63740;110624;121839;72743;72109;44681;60776;28840;28116;17319 -171;'608;Philippines;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;37;37;101;59;84;8;8;99;150;408;427;409;471;471;471;471;471;471;440;440;446;745;31536;26219;50992;61682;53843;82263;127232;130855;54875;69450;46091;44707;40614;33108;33762;45769;38517;45986;18527;6969;6600;18319;23886;22888;7252;20002;28151;9629;15889;9500;7695;4919;4563;3089 -171;'608;Philippines;1861;Roundwood;5916;Export quantity;m3;4580700;4794000;6520800;6140000;6700000;6800000;7266000;8861700;9638500;9914000;8750600;6968100;7794000;4727900;4608700;2347800;2060800;2214800;1253600;1168600;1687000;1650400;1140400;1473400;878200;542600;409000;333900;204700;27913;3852;4962;3200;6700;4500;0;0;0;0;100;5400;1426;9;1762;46;283;79;2666;4412;16087;13842;6262;8756;20265;9006;2565;5005;8850;5557;5026;5045;5240;5259 -171;'608;Philippines;1861;Roundwood;5922;Export value;1000 USD;88412;101719;136906;122800;134000;138971;155427;220315;236618;245860;224988;173869;303785;216235;167056;135389;134139;145047;144465;149113;181848;167879;100647;143527;67761;35984;17774;13372;11661;2954;595;711;439;556;207;0;0;0;0;15;142;43;1;60;3;20;12;588;1275;2835;2306;2133;2078;5946;3566;1094;2743;1529;473;257;292;350;359 -171;'608;Philippines;1862;Roundwood, coniferous;5516;Production;m3;0;0;2000;8000;21000;20000;13000;26000;110000;57000;62000;37000;53000;53000;53000;66000;54000;54000;54000;139000;120000;52000;147000;64000;61000;39000;66000;28000;23000;1000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000 -171;'608;Philippines;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1010;21092;12878;53286;11834;21442;10813 -171;'608;Philippines;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;509;7747;1755;5912;1517;2814;1341 -171;'608;Philippines;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;0;3;0;0;71;71 -171;'608;Philippines;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;1;0;0;10;10 -171;'608;Philippines;1863;Roundwood, non-coniferous;5516;Production;m3;26781292;26928932;21013236;28940008;29795244;27605744;30927104;31388230;30947514;30674560;30736956;30448092;30549972;27649286;28486510;28792168;28112920;27390268;26741176;26350080;24467560;23364484;23127808;22679179;22471421;22088941;22523229;21900357;20945616;20103941;18859075;18164094;17686737;17547962;17173281;16999074;16660307;16654137;16689803;16693709;16263695;16017084;15987500;16129590;16079034;16127030;15868000;16392700;16266718;15914935;16117439;16001722;16200559;16039741;15688066;15512083;15333495;15366099;15320103;15188215;14979165;14882084;14788252 -171;'608;Philippines;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71733;51017;31803;7490;17006;6674;6506 -171;'608;Philippines;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9120;8142;7745;1783;3402;1749;1748 -171;'608;Philippines;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4993;8850;5554;5026;5045;5169;5188 -171;'608;Philippines;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2742;1529;472;257;292;340;349 -171;'608;Philippines;1864;Wood fuel;5516;Production;m3;18663292;18591932;18521236;18451008;18381244;18311744;18309104;18245230;18322514;18344560;18381956;18193092;17993972;18008286;17908510;17747168;17652920;17562268;17451176;17381080;17082560;16814484;16608808;16675179;16726421;16451941;16141229;15763357;15412616;15175941;15063075;14949094;14791737;14582962;14359281;14136074;13961307;13832137;13719803;13614709;13467695;13328084;13195500;13069590;12950034;12821030;12698000;12580700;12468718;12361935;12250439;12143722;12041559;11943741;11850066;11725083;11604495;11488099;11375705;11375705;11166655;11069574;10975742 -171;'608;Philippines;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;539;539;218;7034;54;32;75;26;26;26;6;6 -171;'608;Philippines;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;214;214;43;2177;29;16;28;6;6;6;10;10 -171;'608;Philippines;1864;Wood fuel;5916;Export quantity;m3;;;;;;;66000;71100;217100;307600;307600;110100;35000;34900;12700;16800;13800;14800;5600;14600;4000;5900;5900;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;585;260;10;6;10;6908;5021;5021;5021;5092;5092 -171;'608;Philippines;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;86;675;917;1371;1371;616;221;386;175;167;291;178;58;247;84;181;181;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;22;14;7;6;14;646;249;249;249;259;259 -171;'608;Philippines;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 -171;'608;Philippines;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -171;'608;Philippines;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -171;'608;Philippines;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;71 -171;'608;Philippines;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10 -171;'608;Philippines;1628;Wood fuel, non-coniferous;5516;Production;m3;18663292;18591932;18521236;18451008;18381244;18311744;18309104;18245230;18322514;18344560;18381956;18193092;17993972;18008286;17908510;17747168;17652920;17562268;17451176;17381080;17082560;16814484;16608808;16675179;16726421;16451941;16141229;15763357;15412616;15175941;15063075;14949094;14791737;14582962;14359281;14136074;13961307;13832137;13719803;13614709;13467695;13328084;13195500;13069590;12950034;12821030;12698000;12580700;12468718;12361935;12250439;12143722;12041559;11943741;11850066;11725083;11604495;11488099;11375705;11375705;11166655;11069574;10975742 -171;'608;Philippines;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;75;26;26;26;6;6 -171;'608;Philippines;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;28;6;6;6;10;10 -171;'608;Philippines;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;6908;5021;5021;5021;5021;5021 -171;'608;Philippines;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;646;249;249;249;249;249 -171;'608;Philippines;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;539;539;218;7034;54;;;;;;; -171;'608;Philippines;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;214;214;43;2177;29;;;;;;; -171;'608;Philippines;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;66000;71100;217100;307600;307600;110100;35000;34900;12700;16800;13800;14800;5600;14600;4000;5900;5900;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;585;260;10;6;;;;;;; -171;'608;Philippines;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;86;675;917;1371;1371;616;221;386;175;167;291;178;58;247;84;181;181;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;22;14;7;6;;;;;;; -171;'608;Philippines;1865;Industrial roundwood;5516;Production;m3;8118000;8337000;2494000;10497000;11435000;9314000;12631000;13169000;12735000;12387000;12417000;12292000;12609000;9694000;10631000;11111000;10514000;9882000;9344000;9108000;7505000;6602000;6666000;6068000;5806000;5676000;6448000;6165000;5556000;4929000;3796000;3215000;2895000;2965000;2814000;2863000;2699000;2822000;2970000;3079000;2796000;2689000;2792000;3060000;3129000;3306000;3170000;3812000;3798000;3593000;3907000;3898000;4199000;4136000;3878000;3827000;3769000;3918000;3984398;3852510;3852510;3852510;3852510 -171;'608;Philippines;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;700;700;1700;1000;1400;100;100;900;1500;2400;2500;2000;1200;1200;1200;1200;1200;1200;1400;1400;2500;4400;320871;378519;548623;530000;463900;698500;877500;892500;458000;585000;562400;550400;434175;355787;324442;308570;200184;196000;77460;31602;22818;66959;85078;123520;63522;103590;121785;72711;72034;44655;60750;28814;28110;17313 -171;'608;Philippines;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;37;37;101;59;84;8;8;99;150;408;427;409;471;471;471;471;471;471;440;440;446;745;31536;26219;50992;61682;53843;82263;127232;130855;54875;69450;46091;44707;40614;33108;33762;45769;38517;45986;18527;6969;6600;18319;23672;22674;7209;17825;28122;9613;15861;9494;7689;4913;4553;3079 -171;'608;Philippines;1865;Industrial roundwood;5916;Export quantity;m3;4580700;4794000;6520800;6140000;6700000;6800000;7200000;8790600;9421400;9606400;8443000;6858000;7759000;4693000;4596000;2331000;2047000;2200000;1248000;1154000;1683000;1644500;1134500;1473400;878200;542600;409000;333900;204700;27913;3852;4962;3200;6700;4500;0;0;0;0;100;5400;1426;9;1762;46;283;79;2666;4412;16087;13842;6262;8171;20005;8996;2559;4995;1942;536;5;24;148;167 -171;'608;Philippines;1865;Industrial roundwood;5922;Export value;1000 USD;88412;101719;136906;122800;134000;138971;155341;219640;235701;244489;223617;173253;303564;215849;166881;135222;133848;144869;144407;148866;181764;167698;100466;143527;67761;35984;17774;13372;11661;2954;595;711;439;556;207;0;0;0;0;15;142;43;1;60;3;20;12;588;1275;2835;2306;2133;2056;5932;3559;1088;2729;883;224;8;43;91;100 -171;'608;Philippines;1866;Industrial roundwood, coniferous;5516;Production;m3;;;2000;8000;21000;20000;13000;26000;110000;57000;62000;37000;53000;53000;53000;66000;54000;54000;54000;139000;120000;52000;147000;64000;61000;39000;66000;28000;23000;1000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000 -171;'608;Philippines;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16000;113600;9368;34900;24600;159800;102000;104000;11000;26000;41400;53400;49737;47820;13596;7841;3365;6676;3176;892;1898;12194;170;5539;11465;1041;6785;1010;21092;12878;53286;11834;21442;10813 -171;'608;Philippines;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1366;4819;1314;4571;2975;18378;13880;16353;2114;7328;3844;4226;4652;4368;1992;1959;967;1896;734;313;483;2954;82;348;1058;108;1567;509;7747;1755;5912;1517;2814;1341 -171;'608;Philippines;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;200;200;1000;4500;4500;0;0;0;0;100;5400;1426;9;1762;46;283;79;10;4;790;82;402;0;1063;126;0;12;0;3;0;0;0;0 -171;'608;Philippines;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;57;57;90;207;207;0;0;0;0;15;142;43;1;60;3;20;12;3;1;118;9;95;0;99;11;0;1;0;1;0;0;0;0 -171;'608;Philippines;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16000;113600;9368;34900;24600;159800;102000;104000;11000;26000;41400;53400;49737;47820;13596;7841;3365;6676;3176;892;1898;12194;170;5539;11465;1041;6785;1010;21092;12878;53286;11834;21442;10813 -171;'608;Philippines;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1366;4819;1314;4571;2975;18378;13880;16353;2114;7328;3844;4226;4652;4368;1992;1959;967;1896;734;313;483;2954;82;348;1058;108;1567;509;7747;1755;5912;1517;2814;1341 -171;'608;Philippines;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;200;200;1000;4500;4500;0;0;0;0;100;5400;1426;9;1762;46;283;79;10;4;790;82;402;0;1063;126;0;12;0;3;0;0;0;0 -171;'608;Philippines;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;57;57;90;207;207;0;0;0;0;15;142;43;1;60;3;20;12;3;1;118;9;95;0;99;11;0;1;0;1;0;0;0;0 -171;'608;Philippines;1867;Industrial roundwood, non-coniferous;5516;Production;m3;8118000;8337000;2492000;10489000;11414000;9294000;12618000;13143000;12625000;12330000;12355000;12255000;12556000;9641000;10578000;11045000;10460000;9828000;9290000;8969000;7385000;6550000;6519000;6004000;5745000;5637000;6382000;6137000;5533000;4928000;3796000;3215000;2895000;2965000;2814000;2863000;2699000;2822000;2970000;3079000;2796000;2689000;2792000;3060000;3129000;3306000;3170000;3812000;3798000;3553000;3867000;3858000;4159000;4096000;3838000;3787000;3729000;3878000;3944398;3812510;3812510;3812510;3812510 -171;'608;Philippines;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;304871;264919;539255;495100;439300;538700;775500;788500;447000;559000;521000;497000;384438;307967;310846;300729;196819;189324;74284;30710;20920;54765;84908;117981;52057;102549;115000;71701;50942;31777;7464;16980;6668;6500 -171;'608;Philippines;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30170;21400;49678;57111;50868;63885;113352;114502;52761;62122;42247;40481;35962;28740;31770;43810;37550;44090;17793;6656;6117;15365;23590;22326;6151;17717;26555;9104;8114;7739;1777;3396;1739;1738 -171;'608;Philippines;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27513;3652;4762;2200;2200;0;0;0;0;0;0;0;0;0;0;0;0;0;2656;4408;15297;13760;5860;8171;18942;8870;2559;4983;1942;533;5;24;148;167 -171;'608;Philippines;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2855;538;654;349;349;0;0;0;0;0;0;0;0;0;0;0;0;0;585;1274;2717;2297;2038;2056;5833;3548;1088;2728;883;223;8;43;91;100 -171;'608;Philippines;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;286056;261732;523056;416800;361000;535200;652000;665000;226000;366000;341000;259000;233046;230000;147346;143629;61819;94624;32275;21380;17807;50754;72587;80794;45815;86731;69297;66458;40302;9246;7119;15423;109;716 -171;'608;Philippines;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28138;20431;46976;43207;36964;63658;72000;73150;22500;40500;31687;23372;21800;21464;15885;21909;18775;22045;9721;4634;5254;13635;19656;19214;5463;10866;8439;8061;5386;3503;1655;2995;15;1016 -171;'608;Philippines;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27513;3652;4762;2200;2200;0;0;0;0;0;0;0;0;0;0;0;0;0;2656;4408;15297;13760;5860;8171;18942;8870;2559;4933;1942;533;5;24;121;167 -171;'608;Philippines;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2855;538;654;349;349;0;0;0;0;0;0;0;0;0;0;0;0;0;585;1274;2717;2297;2038;2056;5833;3548;1088;2701;883;223;8;43;71;100 -171;'608;Philippines;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18815;3187;16199;78300;78300;3500;123500;123500;221000;193000;180000;238000;151392;77967;163500;157100;135000;94700;42009;9330;3113;4011;12321;37187;6242;15818;45703;5243;10640;22531;345;1557;6559;5784 -171;'608;Philippines;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2032;969;2702;13904;13904;227;41352;41352;30261;21622;10560;17109;14162;7276;15885;21901;18775;22045;8072;2022;863;1730;3934;3112;688;6851;18116;1043;2728;4236;122;401;1724;722 -171;'608;Philippines;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;50;0;0;0;0;27;0 -171;'608;Philippines;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;27;0;0;0;0;20;0 -171;'608;Philippines;1868;Sawlogs and veneer logs;5516;Production;m3;6940000;7115000;800000;9138000;10036000;7863000;11127000;11610000;11115000;10737000;10662000;10483000;10243000;7385000;8494000;8712000;7927000;7223000;6632000;6351000;5024000;4025000;3845000;2940000;3246000;3117000;3478000;3213000;2819000;2157000;1561000;800000;685000;805000;589000;400000;241000;546000;568000;384000;260000;288000;346000;410000;345000;539000;648000;474000;689000;518000;780000;742000;641000;631000;443000;440000;465000;672000;736377;656714;656714;656714;656714 -171;'608;Philippines;1868;Sawlogs and veneer logs;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -171;'608;Philippines;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -171;'608;Philippines;1868;Sawlogs and veneer logs;5916;Export quantity;m3;4580700;4794000;6520800;6140000;6700000;6800000;7200000;8790600;9421400;9606400;8443000;6858000;7759000;4693000;4596000;2331000;2047000;2200000;1248000;1154000;1683000;1590000;1017000;1323000;679000;427100;209700;176000;101200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -171;'608;Philippines;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;88412;101719;136906;122800;134000;138971;155341;219640;235701;244489;223617;173253;303564;215849;166881;135222;133848;144869;144407;148866;181764;165360;95598;137600;61110;31564;9127;6110;5706;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -171;'608;Philippines;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;;;2000;8000;21000;20000;13000;26000;110000;57000;62000;37000;53000;53000;53000;66000;54000;54000;54000;139000;120000;52000;147000;64000;61000;39000;66000;28000;23000;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;0;0;0 -171;'608;Philippines;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -171;'608;Philippines;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -171;'608;Philippines;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;6940000;7115000;798000;9130000;10015000;7843000;11114000;11584000;11005000;10680000;10600000;10446000;10190000;7332000;8441000;8646000;7873000;7169000;6578000;6212000;4904000;3973000;3698000;2876000;3185000;3078000;3412000;3185000;2796000;2156000;1561000;800000;685000;805000;589000;400000;241000;546000;568000;384000;260000;288000;346000;410000;345000;539000;648000;474000;689000;518000;780000;742000;641000;631000;443000;440000;465000;672000;736377;656714;656714;656714;656714 -171;'608;Philippines;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -171;'608;Philippines;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -171;'608;Philippines;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;4580700;4794000;6520800;6140000;6700000;6800000;7200000;8790600;9421400;9606400;8443000;6858000;7759000;4693000;4596000;2331000;2047000;2200000;1248000;1154000;1683000;1590000;1017000;1323000;679000;427100;209700;176000;101200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -171;'608;Philippines;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;88412;101719;136906;122800;134000;138971;155341;219640;235701;244489;223617;173253;303564;215849;166881;135222;133848;144869;144407;148866;181764;165360;95598;137600;61110;31564;9127;6110;5706;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -171;'608;Philippines;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82000;160000;400000;241000;106000;151000;355000;489000;472000;227000;338000;109000;35000;87000;116000;518000;465000;395000;347000;264000;206000;208021;155796;155796;155796;155796 -171;'608;Philippines;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82000;160000;400000;241000;106000;151000;355000;489000;472000;227000;338000;109000;35000;87000;116000;518000;465000;395000;347000;264000;206000;208021;155796;155796;155796;155796 -171;'608;Philippines;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -171;'608;Philippines;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;54500;117500;150400;199200;115500;199300;157900;103500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -171;'608;Philippines;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;2338;4868;5927;6651;4420;8647;7262;5955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -171;'608;Philippines;1870;Pulpwood and particles (1961-1997);5516;Production;m3;40000;50000;487000;115000;115000;125000;135000;145000;160000;145000;205000;215000;728000;628000;413000;633000;780000;810000;820000;820000;496000;541000;732000;987000;368000;318000;681000;615000;351000;335000;349000;487000;241000;149000;167000;365000;312000;;;;;;;;;;;;;;;;;;;;;;;;;; -171;'608;Philippines;1870;Pulpwood and particles (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -171;'608;Philippines;1870;Pulpwood and particles (1961-1997);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;54500;117500;150400;199200;115500;199300;157900;103500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -171;'608;Philippines;1870;Pulpwood and particles (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;2338;4868;5927;6651;4420;8647;7262;5955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -171;'608;Philippines;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;40000;50000;487000;115000;115000;125000;135000;145000;160000;145000;205000;215000;728000;628000;413000;633000;780000;810000;820000;820000;496000;541000;732000;987000;368000;318000;681000;615000;351000;335000;349000;487000;241000;149000;167000;365000;312000;;;;;;;;;;;;;;;;;;;;;;;;;; -171;'608;Philippines;1871;Other industrial roundwood;5516;Production;m3;1138000;1172000;1207000;1244000;1284000;1326000;1369000;1414000;1460000;1505000;1550000;1594000;1638000;1681000;1724000;1766000;1807000;1849000;1892000;1937000;1985000;2036000;2089000;2141000;2192000;2241000;2289000;2337000;2386000;2437000;1886000;1928000;1969000;2011000;2058000;2098000;2146000;2194000;2242000;2295000;2295000;2295000;2295000;2295000;2295000;2295000;2295000;3000000;3000000;3040000;3040000;3040000;3040000;3040000;3040000;3040000;3040000;3040000;3040000;3040000;3040000;3040000;3040000 -171;'608;Philippines;1871;Other industrial roundwood;5616;Import quantity;m3;;;;;;;;700;700;1700;1000;1400;100;100;900;1500;2400;2500;2000;1200;1200;1200;1200;1200;1200;1400;1400;2500;4400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -171;'608;Philippines;1871;Other industrial roundwood;5622;Import value;1000 USD;;;;;;;;37;37;101;59;84;8;8;99;150;408;427;409;471;471;471;471;471;471;440;440;446;745;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -171;'608;Philippines;1871;Other industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -171;'608;Philippines;1871;Other industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -171;'608;Philippines;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000 -171;'608;Philippines;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;1138000;1172000;1207000;1244000;1284000;1326000;1369000;1414000;1460000;1505000;1550000;1594000;1638000;1681000;1724000;1766000;1807000;1849000;1892000;1937000;1985000;2036000;2089000;2141000;2192000;2241000;2289000;2337000;2386000;2437000;1886000;1928000;1969000;2011000;2058000;2098000;2146000;2194000;2242000;2295000;2295000;2295000;2295000;2295000;2295000;2295000;2295000;3000000;3000000;3000000;3000000;3000000;3000000;3000000;3000000;3000000;3000000;3000000;3000000;3000000;3000000;3000000;3000000 -171;'608;Philippines;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;;;700;700;1700;1000;1400;100;100;900;1500;2400;2500;2000;1200;1200;1200;1200;1200;1200;1400;1400;2500;4400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -171;'608;Philippines;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;37;37;101;59;84;8;8;99;150;408;427;409;471;471;471;471;471;471;440;440;446;745;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -171;'608;Philippines;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -171;'608;Philippines;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -171;'608;Philippines;1630;Wood charcoal;5510;Production;t;11686;12045;12416;12798;13192;13598;14016;14448;14892;15351;15896;16446;16998;17552;33906;34424;3000;3000;53509;69285;54658;45981;5000;51735;6000;40218;4800;31724;29682;4300;85000;82723;86755;77295;72466;71375;72000;60000;39738;41000;42000;110000;138000;93000;215000;326000;608000;610000;464000;359000;517000;433000;410000;407000;426000;426000;426000;348000;289000;247000;117880;89430;89430 -171;'608;Philippines;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;0;0;0;0;0;0;0;500;100;100;100;100;38;73;73;140;136;111;2850;102;481;34;26;162;120;132;89;1111;1984.16;854;446 -171;'608;Philippines;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;0;0;0;0;0;0;0;58;24;24;24;24;15;44;44;84;63;57;1204;37;172;30;41;94;76;144;100;573;1041;290;109 -171;'608;Philippines;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;0;15800;15800;3000;3000;33300;48500;33100;23600;5000;27600;1000;14300;4000;4000;1000;700;3600;50999;53900;43300;37300;35100;0;0;0;30000;27300;29296;29000;46028;37400;32395;58200;57000;39472;37282;29383;69857;92505;90962;70991;43642;37080;137735;76077;96923;114785.24;117343;134947 -171;'608;Philippines;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;0;1814;1814;344;344;5151;8901;5749;3348;574;5293;38;134;96;53;15;22;119;10915;12078;10204;8363;15000;0;0;0;7470;5278;5088;5000;9128;10000;8084;8574;8526;12413;11623;11716;27930;52367;37888;67846;21754;21707;51065;35622;50431;79652.03;81448;74501 -171;'608;Philippines;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4700;5400;16000;11100;18137;13243;8147;6898;9985;5512;419;2901;1517;1633;1575;893;7320;30082;20395;23951;882;835;1568;2891;14765;8898 -171;'608;Philippines;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1059;1494;2124;1301;2843;2370;1900;2000;4012;927;128;544;720;1217;1126;625;796;2187;1311;1682;352;296;540;226;1333;728 -171;'608;Philippines;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;1493;816;580;900;720;800;200;200;660;2092;771;187;783;1627;636;5643;2488;1314;3349;14306;4944;3939 -171;'608;Philippines;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;399;327;400;391;370;354;150;150;181;694;477;151;203;336;351;482;1031;90;586;1099;371;348 -171;'608;Philippines;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;100;4200;4900;15500;10900;17532;12000;7000;6000;9043;5312;19;2560;465;28;87;65;88;65;142;134;338;679;763;2737;14381;8788 -171;'608;Philippines;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;25;967;1365;2023;1257;2700;2100;1700;1800;3752;860;3;373;100;20;39;51;65;48;58;56;122;247;296;208;1222;704 -171;'608;Philippines;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;306;160;0;34;34;182;4939;1160;1222;3042;13999;4925;3920 -171;'608;Philippines;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;8;0;4;4;16;343;169;86;213;726;362;339 -171;'608;Philippines;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;100;200;500;700;1000;500;500;500;200;605;1243;1147;898;942;200;400;341;1052;1605;1488;828;7232;30017;20253;23817;544;156;805;154;384;110 -171;'608;Philippines;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;26;43;61;110;158;92;129;101;44;143;270;200;200;260;67;125;171;620;1197;1087;574;731;2139;1253;1626;230;49;244;18;111;24 -171;'608;Philippines;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14280;16800;14000;13000;0;0;0;0;0;0;1493;816;580;900;720;800;200;200;660;1786;611;187;749;1593;454;704;1328;92;307;307;19;19 -171;'608;Philippines;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;643;653;627;573;0;0;0;0;0;0;399;327;400;391;370;354;150;150;181;667;469;151;199;332;335;139;862;4;373;373;9;9 -171;'608;Philippines;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;30;245;1795;1988 -171;'608;Philippines;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;2;44;318;699 -171;'608;Philippines;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1139;1139;176;350;739 -171;'608;Philippines;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;122;122;4;189;386 -171;'608;Philippines;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;30;245;243;1558 -171;'608;Philippines;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;2;44;75;512 -171;'608;Philippines;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1139;1139;176;225;523 -171;'608;Philippines;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;122;122;4;9;35 -171;'608;Philippines;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1552;430 -171;'608;Philippines;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;243;187 -171;'608;Philippines;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125;216 -171;'608;Philippines;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;180;351 -171;'608;Philippines;1872;Sawnwood;5516;Production;m3;1041000;958000;647000;1180000;1254000;887000;760000;1022000;1466000;1341000;861000;1412000;1061000;1292000;1470000;1609000;1567000;1781000;1626100;1529100;1219000;1200000;1222000;1234000;1062000;977000;1233000;1033000;975000;846000;729000;651000;440000;407000;286000;313000;351000;222000;288000;151000;199000;163000;246000;339000;288000;432000;362000;358000;304000;700000;700000;500000;700000;700000;322000;424000;359000;370000;246000;283700;400000;450000;490000 -171;'608;Philippines;1872;Sawnwood;5616;Import quantity;m3;300;300;300;1700;1100;1100;1100;1100;200;400;300;200;300;600;400;200;200;300;500;100;200;200;300;300;200;300;300;200;700;600;400;48171;336200;298400;378500;567400;412000;296000;382000;359000;370900;401086;338064;246685;362509;261110;174456;134847;128755;412861;411939;557036;693930;625081;599065;811318;432432;1010990;995980;735970;1295948;1002100;914854 -171;'608;Philippines;1872;Sawnwood;5622;Import value;1000 USD;23;23;16;169;120;120;120;120;39;76;80;82;51;142;122;108;144;245;534;224;332;434;429;429;320;350;390;382;643;800;83;11414;38144;66589;82225;141972;112616;71188;116772;79810;86270;103886;105404;88401;117743;95709;90703;52019;47703;121757;157179;203019;261311;226933;181723;199438;141680;418864;396270;282150;841366;749210;359536 -171;'608;Philippines;1872;Sawnwood;5916;Export quantity;m3;191000;122700;115400;134800;116200;112500;103500;153300;178000;185400;231200;231100;427100;284000;254000;493000;455000;572800;915000;741800;546900;590700;727900;536900;507000;494600;645300;628900;438100;76900;57100;55800;66200;37500;83800;145200;142000;41000;68300;120000;97500;90566;119414;124791;130175;185673;212975;244335;356023;675028;596756;519912;748078;633138;348216;325738;341276;255552;296642;257979;479737;489313;579166 -171;'608;Philippines;1872;Sawnwood;5922;Export value;1000 USD;7639;6408;5966;7551;6722;6894;6265;8988;14994;11148;11776;14786;35117;30068;27229;68195;66681;85190;198345;181286;125766;123696;149075;106560;90421;103707;154203;156437;136170;19424;16416;14434;17542;6116;17340;23196;21852;4742;8739;20457;15221;10265;12120;9733;8484;14314;15810;43479;42834;80061;94819;94248;126716;118274;62644;54321;54137;47034;48387;32471;60190;61023;63831 -171;'608;Philippines;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;3000;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 -171;'608;Philippines;1632;Sawnwood, coniferous;5616;Import quantity;m3;300;300;300;1700;1100;1100;1100;1100;200;400;300;200;300;600;400;200;200;300;500;100;200;200;300;300;200;300;300;200;700;600;400;990;5500;10900;53500;78000;60000;28000;46000;46000;90900;84679;66539;44116;45075;26455;40186;14456;20188;298486;278754;366658;485074;443000;377757;516919;161458;581476;544332;442993;805548;542560;519442 -171;'608;Philippines;1632;Sawnwood, coniferous;5622;Import value;1000 USD;23;23;16;169;120;120;120;120;39;76;80;82;51;142;122;108;144;245;534;224;332;434;429;429;320;350;390;382;643;800;83;286;1399;3439;14967;23751;19296;15449;15904;16549;24923;23493;21376;21704;12360;10305;20250;5452;7588;98650;92780;117209;154682;131128;115812;117959;50270;197827;164420;137391;428325;300150;167601 -171;'608;Philippines;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;6600;28500;55900;38000;2000;300;0;0;0;0;0;0;1290;2030;3900;2594;2802;5756;4770;7481;6318;6216;7738;6549;713;1699;1129;2299;3989;4535 -171;'608;Philippines;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;2352;7621;9193;4877;89;55;0;0;0;0;0;0;1121;1242;1890;1643;2949;4987;4123;5220;4820;4504;5349;4497;491;448;1197;2126;5743;3703 -171;'608;Philippines;1633;Sawnwood, non-coniferous;5516;Production;m3;1041000;958000;647000;1180000;1254000;887000;760000;1022000;1466000;1341000;861000;1412000;1061000;1292000;1470000;1609000;1567000;1781000;1626100;1529100;1219000;1200000;1222000;1234000;1062000;977000;1233000;1033000;975000;841000;726000;647000;440000;407000;286000;313000;351000;222000;288000;151000;199000;163000;246000;339000;288000;432000;362000;358000;304000;700000;700000;500000;700000;700000;322000;424000;359000;370000;246000;283700;400000;450000;490000 -171;'608;Philippines;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47181;330700;287500;325000;489400;352000;268000;336000;313000;280000;316407;271525;202569;317434;234655;134270;120391;108567;114375;133185;190378;208856;182081;221308;294399;270974;429514;451648;292977;490400;459540;395412 -171;'608;Philippines;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11128;36745;63150;67258;118221;93320;55739;100868;63261;61347;80393;84028;66697;105383;85404;70453;46567;40115;23107;64399;85810;106629;95805;65911;81479;91410;221037;231850;144759;413041;449060;191935 -171;'608;Philippines;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;191000;122700;115400;134800;116200;112500;103500;153300;178000;185400;231200;231100;427100;284000;254000;493000;455000;572800;915000;741800;546900;590700;727900;536900;507000;494600;645300;628900;438100;76900;57100;55800;66200;30900;55300;89300;104000;39000;68000;120000;97500;90566;119414;124791;130175;184383;210945;240435;353429;672226;591000;515142;740597;626820;342000;318000;334727;254839;294943;256850;477438;485324;574631 -171;'608;Philippines;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;7639;6408;5966;7551;6722;6894;6265;8988;14994;11148;11776;14786;35117;30068;27229;68195;66681;85190;198345;181286;125766;123696;149075;106560;90421;103707;154203;156437;136170;19424;16416;14434;17542;3764;9719;14003;16975;4653;8684;20457;15221;10265;12120;9733;8484;13193;14568;41589;41191;77112;89832;90125;121496;113454;58140;48972;49640;46543;47939;31274;58064;55280;60128 -171;'608;Philippines;1634;Veneer sheets;5516;Production;m3;53000;88200;80000;134900;164200;245000;356000;185000;124000;242000;234000;215000;172000;189000;99000;89000;110000;121000;140000;133000;138000;159000;146000;98000;77000;73000;75000;85000;61000;49000;54000;80000;65000;39000;19000;82000;62000;59000;89000;178000;135000;172000;152000;180000;133000;95000;124000;101000;88000;136000;114000;129000;60000;45000;64000;64000;64000;213000;285000;170090;293320;219200;235900 -171;'608;Philippines;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;882;4600;4800;25800;94800;86000;63000;138200;123000;114000;78412;92949;59859;66864;37220;24895;27261;22876;23327;93690;88580;68338;62352;22962;40245;48036;85443;75436;121988;84178;105598;95320 -171;'608;Philippines;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1359;3145;2595;8058;26424;27659;16586;40249;33826;29039;19795;21407;16428;17923;11574;9486;9265;5486;6822;36451;35265;25085;25152;18854;28166;37452;54772;54774;45788;24260;31669;24069 -171;'608;Philippines;1634;Veneer sheets;5916;Export quantity;m3;36500;54800;70700;113200;99900;109000;109500;146000;124000;121900;136000;215000;169300;189000;99000;50000;36000;30600;49700;62800;39100;44600;122500;71400;68800;49800;64300;78500;64400;40100;29600;21600;7000;29800;32500;26300;31300;32000;4600;4600;2800;5982;4449;7493;6555;5857;6714;3764;3831;2609;6856;28313;7503;3557;951;669;573;4412;2346;334;1604;1175;741 -171;'608;Philippines;1634;Veneer sheets;5922;Export value;1000 USD;2904;4636;5985;7040;7154;8405;7490;12085;11490;8100;7125;17545;18471;18634;8115;5150;4703;4531;9590;15416;9796;8703;27820;14069;11646;9379;14806;20999;17433;10879;8470;7525;2658;11891;13487;12856;14385;11748;2890;2962;1584;3089;2389;3251;2712;4019;3833;2003;1301;2243;4092;13149;2344;3269;853;414;484;12931;11166;1419;3371;3272;2608 -171;'608;Philippines;1873;Wood-based panels;5516;Production;m3;123900;151200;350100;222600;286000;349093;456227;357543;391914;706177;695177;785177;780000;343000;485000;467000;543000;556000;590100;626000;539000;490000;530000;639000;416000;493000;586000;457000;386000;456000;369000;378000;319000;422000;296000;542000;515000;285000;272000;330000;357000;403000;421000;452000;388000;346000;311000;269000;289000;312000;336000;333000;235000;200000;182000;176000;171000;199000;308321;190922;339970;306920;356110 -171;'608;Philippines;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34050;49500;86100;130600;153300;158400;101900;128500;141300;115800;166187;156192;176507;200871;205239;207785;143881;145210;249399;300313;486013;706274;717769;667528;1179859;1262394;1197139;1149752;1043052;1469061.42;1099424;947638 -171;'608;Philippines;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7170;10095;16441;22464;39236;37161;23513;28811;25470;20659;41623;44727;52953;78267;73832;70231;73989;77256;99360;149391;200520;297234;420560;378985;444389;481391;536544;511302;504238;623739.1;618362;491684 -171;'608;Philippines;1873;Wood-based panels;5916;Export quantity;m3;72600;84200;119100;147600;144700;170600;171300;261100;203600;260800;278000;317300;388000;171000;157000;260000;339800;385100;420500;372100;407000;249400;296800;250200;241400;240500;243800;242900;116700;180500;118600;82876;58500;15400;23100;14800;17600;6500;12400;11000;7300;22409;27599;67798;60516;52952;69757;76128;44311;32365;47225;21352;15255;21675;12425;17212;10421;31408;45818;22537;39183;35397;33068 -171;'608;Philippines;1873;Wood-based panels;5922;Export value;1000 USD;7950;11171;15964;16020;17058;19686;18207;28975;23940;25426;27300;34140;59008;27530;20602;43163;55957;74902;113173;117891;119637;69403;77066;57559;51832;57249;68107;78823;38527;61319;43607;34445;31370;6936;8565;5564;6781;2238;3978;3936;3282;9893;7388;20011;20739;14119;19310;24369;28733;21435;33211;16130;9002;9323;7663;8824;5968;25866;30871;40453;59165.67;53680;53270 -171;'608;Philippines;1640;Plywood and LVL;5516;Production;m3;111900;136200;331000;202200;256900;308000;410000;309000;338000;653000;642000;732000;705000;274000;423000;416000;489000;490000;515100;553000;463000;422000;459000;573000;350000;424000;517000;415000;344000;414000;327000;336000;277000;380000;290000;536000;511000;281000;268000;326000;348000;395000;410000;441000;376000;337000;301000;255000;273000;296000;320000;317000;219000;184000;166000;166000;166000;189000;210000;140410;280600;280600;327110 -171;'608;Philippines;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1419;2400;7100;2200;11000;12400;4700;4900;4900;8200;42287;48557;42000;78000;75000;58500;75064;98113;136684;217666;338991;539021;562556;510572;979906;1059463;1009511;955862;886580;1246276;867784;775225 -171;'608;Philippines;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;855;1902;3489;1980;6907;8535;4282;3371;3728;4284;20394;28416;28600;55150;51118;41500;46602;58271;70913;102680;151298;242952;367318;329253;384860;407196;467913;437364;448468;532533;528416;419762 -171;'608;Philippines;1640;Plywood and LVL;5916;Export quantity;m3;72600;84200;119100;147600;144700;170600;171300;261100;203600;260800;278000;317300;388000;171000;157000;260000;339800;382600;416500;367200;398200;248600;295300;249900;241100;240200;243500;242600;116400;180200;117600;80317;38700;10300;16900;12400;14100;6000;11800;10700;6800;21909;16368;47731;40016;19952;36757;43128;39256;32062;47199;20325;15172;21519;12290;17180;10391;15207;25038;7649;10862;3280;2195 -171;'608;Philippines;1640;Plywood and LVL;5922;Export value;1000 USD;7950;11171;15964;16020;17058;19686;18207;28975;23940;25426;27300;34140;59008;27530;20602;43163;55957;74676;112683;117314;118540;69306;76678;57514;51787;57204;68062;78778;38482;61274;43387;33601;26531;4401;5793;4508;5164;1987;3758;3859;3162;9773;5651;17703;17778;9619;14810;19869;27999;21371;33206;14647;8684;9183;7529;8595;5959;7392;8908;7907;11039;2118;2939 -171;'608;Philippines;1646;Particle board and OSB (1961-1994);5516;Production;m3;;;;1500;1500;1500;;;;;;;;4000;;;;2000;2000;5000;10000;5000;8000;3000;3000;6000;6000;6000;6000;6000;6000;6000;6000;6000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -171;'608;Philippines;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4099;16000;29300;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -171;'608;Philippines;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1048;3709;5461;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -171;'608;Philippines;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;2500;4000;4900;8800;800;1500;300;300;300;300;300;300;300;1000;2559;19700;5100;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -171;'608;Philippines;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;226;490;577;1097;97;388;45;45;45;45;45;45;45;220;844;4820;2535;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -171;'608;Philippines;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6000;6000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;0;0;92000;47790;55960;23540;29000 -171;'608;Philippines;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44500;35900;42000;14200;18600;28400;18700;4930;10652;9272;6500;12635;31681;12964;11457;17007;18662;43285;43878;40152;46630;75959;90600;89330;88454;57609;117007;84221;57583 -171;'608;Philippines;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9439;7735;8716;4597;5408;5523;3250;871;1739;1572;1100;2144;8161;6059;4540;4489;8119;10854;11847;11178;13312;21660;27646;27808;27414;21731;43097;38797;27554 -171;'608;Philippines;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6200;2400;3500;500;600;300;500;500;500;500;500;0;0;0;55;0;0;3;10;118;118;13;0;222;114;22;1525;972;2303 -171;'608;Philippines;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2772;1056;1617;251;220;77;120;120;120;120;120;0;0;0;34;0;0;194;219;120;120;55;0;491;157;82;504;437;969 -171;'608;Philippines;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18970;11043;13855;16100;16646;16646;21516;13623;34535;21838;30471;44293;37258;19207;10546;1280;1580;1220;838;2198;1229;15101 -171;'608;Philippines;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3168;1901;3199;3800;3400;3400;7509;5145;8067;10406;10334;13051;11869;5761;3377;363;682;511;286;876;498;4850 -171;'608;Philippines;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;69;8;0;157;395;5955 -171;'608;Philippines;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;131;16;0;58;155;1846 -171;'608;Philippines;1874;Fibreboard;5516;Production;m3;12000;15000;19100;18900;27600;39593;46227;48543;53914;53177;53177;53177;75000;65000;62000;51000;54000;64000;73000;68000;66000;63000;63000;63000;63000;63000;63000;36000;36000;36000;36000;36000;36000;36000;;;;;;;5000;4000;7000;7000;8000;5000;6000;10000;12000;12000;12000;12000;12000;12000;12000;6000;5000;10000;6321;2722;3410;2780;0 -171;'608;Philippines;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28532;31100;49700;83900;106400;104000;83000;105000;108000;88900;100000;85940;111380;100271;100958;100958;34337;22017;61173;42147;73266;79082;77803;91119;113448;111051;96718;104216;98025;103580.42;146190;99729 -171;'608;Philippines;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5267;4484;7491;11045;24594;19910;14634;20032;16219;13125;17190;12671;19582;18217;17170;17170;13819;9300;15891;28186;28034;29384;30195;30659;34492;46186;40141;46013;33753;47233.1;50651;39518 -171;'608;Philippines;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;;;;;;;;;;10731;19567;20000;33000;33000;33000;5000;303;26;1024;73;38;17;19;20;15910;20658;14866;26639;30750;22615 -171;'608;Philippines;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;;;;;;;;;;1617;2188;2841;4500;4500;4500;700;64;5;1289;99;20;14;174;2;17852;21790;32464;47564.67;50970;47516 -171;'608;Philippines;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;4000;7000;7000;8000;5000;6000;10000;12000;12000;12000;12000;12000;12000;12000;6000;5000;10000;6321;2722;3410;2780;0 -171;'608;Philippines;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25900;32400;32000;25000;30000;4700;3100;1400;1000;3226;3211;3658;3658;5131;7290;11704;20184;24163;29236;27246;23357;12680;12680;2496;2813;1979;4003.7;4464;4184 -171;'608;Philippines;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3777;7308;6000;4000;4428;1047;760;553;285;913;955;1200;1200;2193;3221;5096;11985;14685;17068;16785;12567;6968;6968;1581;1719;1282;2689.72;3093;3342 -171;'608;Philippines;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;0;0 -171;'608;Philippines;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;19;19;0;0 -171;'608;Philippines;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23600;29000;28000;22000;35000;94400;79700;89800;68601;92000;82500;80700;80700;25741;12619;41244;19998;33657;32001;31796;55469;98175;86000;85174;90262;91083;82828.31;79516;67454 -171;'608;Philippines;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5327;13525;11000;8000;12563;14241;11713;15803;10950;17278;15438;14000;14000;10314;4834;9834;15014;11308;10232;11248;16342;27136;37429;37167;42384;31546;41370.55;37767;30452 -171;'608;Philippines;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10731;19567;20000;33000;33000;33000;5000;200;20;1000;8;33;12;15;0;15890;20637;14847;26620;30750;22615 -171;'608;Philippines;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1617;2188;2841;4500;4500;4500;700;27;3;1253;10;7;1;168;0;17850;21766;32444;47544.67;50969;47515 -171;'608;Philippines;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16000;19200;17700;34400;45000;44000;36000;40000;8900;6100;8800;16339;16154;14560;16600;16600;3465;2108;8225;1965;15446;17845;18761;12293;2593;12371;9048;11141;4963;16748.41;62210;28091 -171;'608;Philippines;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1898;2698;1096;1941;3761;2910;2634;3041;931;652;834;1436;1391;1824;1970;1970;1312;1245;961;1187;2041;2084;2162;1750;388;1789;1393;1910;925;3172.83;9791;5724 -171;'608;Philippines;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;;;;;;;;;;;;;;;;;103;6;24;65;5;5;4;20;20;2;0;0;0;0 -171;'608;Philippines;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;;;;;;;;;;;;;;;;;37;2;36;89;13;13;6;2;2;6;1;1;1;1 -171;'608;Philippines;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;12000;15000;19100;18900;27600;39593;46227;48543;53914;53177;53177;53177;75000;65000;62000;51000;54000;64000;73000;68000;66000;63000;63000;63000;63000;63000;63000;36000;36000;36000;36000;36000;36000;36000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -171;'608;Philippines;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12532;11900;32000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -171;'608;Philippines;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3369;1786;6395;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -171;'608;Philippines;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -171;'608;Philippines;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -171;'608;Philippines;1879;Total fibre furnish;5510;Production;t;18000;25000;48000;55000;56000;59000;61000;66000;69000;131000;152000;131000;311000;239000;191000;250000;233000;241000;295000;241000;242000;224000;251000;269000;250000;235000;235000;235000;201000;229000;228000;232000;201000;180000;203000;203000;349000;449000;700000;535000;528000;528000;537000;538000;538000;538000;538000;538000;538000;1182000;1066500;874500;879500;879500;879500;877500;879500;880500;879500;945377;945377;945377;945377 -171;'608;Philippines;1879;Total fibre furnish;5610;Import quantity;t;700;2200;100;1500;400;400;400;37700;37700;62300;51400;40700;68400;68678;38920;70468;119200;94000;113300;101800;92400;94700;113700;111300;100500;164200;170700;195600;249100;254000;277700;283831;329000;314800;355700;330100;332600;392500;442300;473419;412712;418401;463500;417685;374848;280301;236174;172055;155111;173582;329016;104784;81625;128037;147495;221371;232434;259165;215714;120119;164245;205669;112091 -171;'608;Philippines;1879;Total fibre furnish;5622;Import value;1000 USD;74;209;8;111;39;39;39;4324;4173;8235;6505;8286;10640;19903;11027;17828;26571;22683;31055;34518;31762;29144;27906;35759;19099;29954;37488;45994;52361;61399;65076;66409;81495;80698;134693;108466;95550;85604;103693;128242;80269;71003;77944;83143;73778;69518;65427;63596;53669;63996;102683;46472;37864;61760;61383;87056;97029;120814;99715;61415;82955;129839;84669 -171;'608;Philippines;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;900;12200;6000;4500;4500;4500;4500;9600;5508;11290;8690;8390;8790;9690;10700;14400;11200;19400;19500;23900;13301;11100;12200;12200;14250;23208;18168;15815;17492;16925;18650;21470;26760;25877;25000;40741;50933;94680;101479;152958;94115;65174;82999;66746;97558;144018;158321;101825;91092;115021;125992;139234 -171;'608;Philippines;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;474;3390;5489;2740;2740;2740;2740;9039;8935;10401;10712;10466;12909;13741;11771;13029;17476;19965;21049;25217;31136;28347;30491;30491;38914;38958;36784;32759;36253;30204;31952;36871;41579;52848;53260;48869;63479;51953;87185;128900;88313;70832;82757;118736;114445;113190;94739;136109;146944;173240;158253;110219 -171;'608;Philippines;1878;Pulp for paper;5510;Production;t;18000;25000;48000;55000;56000;59000;61000;66000;69000;63000;84000;63000;184000;182000;118000;174000;169000;196000;202000;163000;164000;177000;197000;211000;205000;195000;195000;195000;175000;175000;174000;178000;147000;126000;149000;149000;149000;149000;200000;202000;202000;202000;211000;212000;212000;212000;212000;212000;212000;212000;212000;20000;25000;25000;25000;23000;25000;26000;25000;33000;33000;33000;33000 -171;'608;Philippines;1878;Pulp for paper;5610;Import quantity;t;700;2200;100;1500;400;400;400;37700;37700;44300;33400;33700;56400;50500;27000;45968;72700;60600;66500;55000;34200;37000;64700;50100;42700;61200;51700;50600;45100;44500;41700;46814;77700;63500;61700;91900;101400;85500;73300;65619;58612;56401;63500;81144;92248;61001;62374;62355;66559;53904;59016;46431;38017;69933;65131;90281;97624;105513;94863;70923;83043;121660;91972 -171;'608;Philippines;1878;Pulp for paper;5622;Import value;1000 USD;74;209;8;111;39;39;39;4324;4173;6454;5045;7630;9502;16426;8835;13166;18244;15978;22086;23769;15855;17489;19845;19153;13120;18067;21637;27960;27523;26615;26863;24688;34428;33631;50889;52197;54366;42551;41121;43280;34301;29011;32944;39113;36877;38018;38569;39756;36595;37974;44136;30194;24197;43844;39981;54641;61593;76387;66682;47365;62267;108280;77835 -171;'608;Philippines;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;900;12200;6000;4500;4500;4500;4500;8300;5500;10100;7500;7200;7600;8500;6400;9400;10800;19000;19100;20000;12300;11100;12000;12000;14050;14508;16168;14215;16892;16425;17550;20370;22142;24857;24227;20241;19833;12950;23439;31553;23115;18087;23035;28412;26592;20838;16345;28463;31211;34677;33163;22144 -171;'608;Philippines;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;474;3390;5489;2740;2740;2740;2740;8949;8934;10296;10607;10361;12804;13636;11641;12898;17364;19853;20937;24754;30843;28347;30425;30425;38890;38078;36599;32119;36183;30148;31826;36671;41033;52723;53118;45763;59433;43037;73120;105284;75253;61801;71523;111947;101506;86028;70918;125473;138542;156098;137727;90212 -171;'608;Philippines;1875;Wood pulp;5510;Production;t;8000;10000;30000;32000;33000;35000;37000;40000;42000;39000;51000;53000;174000;146000;99000;149000;146000;173000;173000;144000;133000;126000;146000;160000;154000;162000;162000;162000;153000;153000;152000;151000;120000;99000;122000;122000;122000;122000;173000;175000;175000;175000;184000;185000;185000;185000;185000;185000;185000;185000;185000;0;0;0;0;0;0;0;0;0;0;0;0 -171;'608;Philippines;1875;Wood pulp;5610;Import quantity;t;700;2200;100;1000;300;300;300;36900;37400;43900;33000;33600;56200;67700;26900;47400;74100;62100;66200;55900;34500;37700;64700;50800;42900;60300;51300;50300;45000;40900;41200;44802;77500;63000;61800;92000;107400;85500;73300;64500;56000;55124;60159;64644;63445;61043;62526;62436;66922;54251;58714;46348;37929;69954;65253;89687;97097;104498;93939;70217;82057;120796;91594 -171;'608;Philippines;1875;Wood pulp;5622;Import value;1000 USD;74;209;8;99;28;28;28;3901;4031;6300;4891;7585;9437;20971;8740;13575;18605;16366;21947;24353;16028;18026;19866;19055;12704;17411;21288;27793;27463;25793;26446;23355;34121;32963;50931;52239;56798;42551;41121;42172;32227;28219;31507;36613;32355;37948;39144;39012;36040;37537;43268;29933;23971;44003;40229;53741;60628;74700;65134;46175;60310;106346;76614 -171;'608;Philippines;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;9600;2700;2700;2700;2700;2700;2700;500;2100;1600;1600;1600;1600;1600;1600;1600;1600;;;;;0;0;100;300;100;80;100;300;200;200;200;200;200;200;200;166;10;1;1;48;449;449;0;65;0;0;0;0;320;479 -171;'608;Philippines;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;1354;799;799;799;799;799;799;198;582;401;401;401;401;401;401;401;401;;;;;0;0;51;160;174;49;132;197;160;160;160;160;160;160;160;221;63;6;6;107;206;206;0;34;0;0;0;0;319;386 -171;'608;Philippines;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;336;288;243;44;362;274;205 -171;'608;Philippines;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;568;396;415;75;181;148;128 -171;'608;Philippines;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;6;20 -171;'608;Philippines;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;38;12 -171;'608;Philippines;1654;Mechanical wood pulp (1961-2016);5510;Production;t;;;15000;19000;20000;21000;21000;22000;21000;21000;20000;21000;57000;41000;33000;45000;40000;43000;42000;39000;40000;37000;40000;38000;32000;52000;52000;52000;50000;50000;39000;53000;30000;20000;28000;28000;28000;28000;28000;28000;28000;28000;37000;38000;38000;38000;38000;38000;38000;38000;38000;0;0;0;0;0;;;;;;; -171;'608;Philippines;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;700;2200;100;1000;300;300;300;11600;12300;3600;2600;800;800;1100;500;1100;1400;700;1000;2000;600;400;100;400;400;400;400;400;400;400;300;1675;1000;1000;1400;4100;3100;1100;1100;5000;2500;2100;2100;1854;764;2533;3900;5000;12270;5950;1323;56;15;266;650;111;;;;;;; -171;'608;Philippines;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;74;209;8;99;28;28;28;1033;993;422;303;76;76;328;164;318;451;212;298;732;225;178;29;166;166;166;166;166;166;166;151;664;336;336;1062;2079;3788;1464;1464;2863;1567;1580;1580;800;235;830;1400;1988;3469;1773;941;120;9;600;772;223;;;;;;; -171;'608;Philippines;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1052;400;1500;0;0;0;0;0;1100;700;1400;1400;1400;4568;692;692;202;376;771;263;74;107;307;152;23;;;;;;; -171;'608;Philippines;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;417;183;625;0;0;0;0;0;666;388;657;657;657;1481;292;292;194;233;455;155;98;66;281;95;52;;;;;;; -171;'608;Philippines;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;449;449;0;;;;;;; -171;'608;Philippines;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107;206;206;0;;;;;;; -171;'608;Philippines;1656;Chemical wood pulp;5510;Production;t;8000;10000;15000;13000;13000;14000;16000;18000;21000;18000;31000;32000;117000;105000;66000;104000;106000;130000;131000;105000;93000;89000;106000;122000;122000;110000;110000;110000;103000;103000;113000;98000;90000;79000;94000;94000;94000;94000;145000;147000;147000;147000;147000;147000;147000;147000;147000;147000;147000;147000;147000;0;0;0;0;0;0;0;0;0;0;0;0 -171;'608;Philippines;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;25300;25100;40300;30400;32800;55400;49000;26100;44600;71000;59700;65100;52600;33200;36400;64500;49300;41400;59800;50600;49500;44500;40400;40800;42001;76000;60300;60300;87800;98300;84400;72200;58400;52800;51624;55500;59390;57816;56134;56134;56134;53073;46706;56803;45894;37366;68967;64170;89538;96718;104094;93656;70128;81572;120426;91102 -171;'608;Philippines;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;2868;3038;5878;4588;7509;9361;15820;8446;12704;17601;15601;21608;22857;15450;17221;19773;18686;12335;17196;20963;27286;27192;25468;26188;22214;33502;31822;49827;50118;50578;41087;39657;38643;30272;25982;28870;34556;30322;36129;36129;36129;31655;34692;41697;29259;23380;42474;38934;53451;60008;74121;64667;46014;60002;106076;76088 -171;'608;Philippines;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;9600;2700;2700;2700;2700;2700;2700;500;2100;1600;1600;1600;1600;1600;1600;1600;1600;;;;;0;0;100;300;100;80;100;300;200;200;200;200;200;200;200;166;10;1;1;0;0;0;0;65;0;0;0;0;314;459 -171;'608;Philippines;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;1354;799;799;799;799;799;799;198;582;401;401;401;401;401;401;401;401;;;;;0;0;51;160;174;49;132;197;160;160;160;160;160;160;160;221;63;6;6;0;0;0;0;34;0;0;0;0;281;374 -171;'608;Philippines;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;;;;;;;;;;67000;19000;61000;51000;76000;89000;66000;53000;53000;66000;67000;67000;66000;66000;66000;62000;62000;53000;67000;59000;52000;62000;62000;62000;62000;96000;97000;97000;97000;97000;97000;97000;97000;97000;97000;97000;97000;97000;0;0;0;0;0;0;0;0;0;0;0;0 -171;'608;Philippines;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;5000;7300;7700;7000;10000;13800;40800;22400;39600;45700;32800;35500;28100;11900;14100;12500;15800;8800;17300;22500;18900;15700;10400;14700;6966;11800;10300;7500;4300;5900;2700;10500;10100;9000;15916;20000;5136;5086;910;910;910;1385;1512;2709;4740;4766;9371;9371;11561;15744;18193;14769;9763;16994;13574;13707 -171;'608;Philippines;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;540;848;1103;1000;1500;2488;12926;7110;10969;9148;7727;10701;10954;5312;4826;3019;5699;2287;4253;9073;9585;7104;5051;8165;3334;4319;4860;5555;2472;2459;1154;4127;4984;3617;6216;8500;2955;2717;657;657;657;800;1100;2086;2935;3104;6381;6381;6722;9780;12000;10294;5662;11740;11434;10376 -171;'608;Philippines;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 -171;'608;Philippines;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 -171;'608;Philippines;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;8000;10000;15000;13000;13000;14000;16000;18000;21000;18000;31000;32000;117000;38000;47000;43000;55000;54000;42000;39000;40000;36000;40000;55000;55000;44000;44000;44000;41000;41000;60000;31000;31000;27000;32000;32000;32000;32000;49000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;0;0;0;0;0;0;0;0;0;0;0;0 -171;'608;Philippines;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;20300;23600;26200;23200;20500;21300;51500;32000;31200;41600;27000;28900;27300;28400;22000;32060;59600;48300;52400;82100;91000;81000;60000;47000;43200;35208;35000;49907;46500;44080;44080;44080;45290;38868;49247;36918;27712;53181;53181;75945;79885;85456;78328;59906;63797;106420;77166 -171;'608;Philippines;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;6453;6535;9323;11243;9744;11910;16505;12300;9453;12499;11325;16604;18956;19249;15277;16767;26013;26069;43951;46577;47214;39426;34560;32776;26270;19396;20000;28599;24100;28751;28751;28751;27382;28965;35801;23281;16754;31295;31295;44889;49180;61437;53463;39561;46971;93894;65242 -171;'608;Philippines;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;100;300;100;80;100;300;200;200;200;200;200;200;200;166;10;1;1;0;0;0;0;0;0;0;0;0;314;459 -171;'608;Philippines;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;51;160;174;49;132;197;160;160;160;160;160;160;160;221;63;6;6;0;0;0;0;0;0;0;0;0;281;374 -171;'608;Philippines;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1089;445;559;459;781;432;229 -171;'608;Philippines;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1048;684;910;791;1291;748;470 -171;'608;Philippines;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;0;0;0;0;0;0 -171;'608;Philippines;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;0;0;0;0;0;0 -171;'608;Philippines;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;206;0;0;400;600;1000;500;600;0;200;0;0;3246;5706;8280;8280;8280;5125;6033;4728;3698;4582;6154;1389;95;;;;;;; -171;'608;Philippines;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;0;0;321;309;454;251;223;0;63;0;0;2148;3155;4939;4939;4939;2783;4257;3590;2465;3066;4486;917;65;;;;;;; -171;'608;Philippines;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;;;;;;; -171;'608;Philippines;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;;;;;;; -171;'608;Philippines;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;20300;17800;32600;23400;22800;41600;8200;3700;5000;5000;3300;3400;1300;800;1000;500;1500;1400;900;1100;1700;1500;1600;4100;2769;4600;1700;0;800;400;200;1100;1300;400;500;500;1101;524;2864;2864;2864;1273;293;119;538;306;261;229;1937;;;;;;; -171;'608;Philippines;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;2328;2190;4775;3588;6009;6873;2894;1336;1735;2000;1339;1584;660;394;485;249;687;595;444;565;1097;1132;1168;2746;2026;3170;893;0;760;451;256;747;883;322;370;370;854;350;1782;1782;1782;690;370;220;578;456;312;341;1775;;;;;;; -171;'608;Philippines;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;0;0;0;0;0;;;;;;; -171;'608;Philippines;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;0;0;0;0;0;;;;;;; -171;'608;Philippines;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;17600;300;1700;1700;1700;100;1300;700;900;100;1100;1100;100;300;400;100;100;100;74;100;200;100;100;6000;0;0;0;0;0;1159;2000;297;1684;1800;1100;1203;824;325;324;441;414;281;15;43;116;40;45;123;96;287 -171;'608;Philippines;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;4823;130;553;553;553;41;764;353;627;64;203;203;49;159;341;105;159;107;60;100;180;42;42;2432;0;0;0;0;0;400;600;317;697;1323;701;683;617;475;456;516;648;428;15;52;183;52;86;127;122;398 -171;'608;Philippines;1668;Pulp from fibres other than wood;5510;Production;t;10000;15000;18000;23000;23000;24000;24000;26000;27000;24000;33000;10000;10000;36000;19000;25000;23000;23000;29000;19000;31000;51000;51000;51000;51000;33000;33000;33000;22000;22000;22000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;20000;25000;25000;25000;23000;25000;26000;25000;33000;33000;33000;33000 -171;'608;Philippines;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;500;100;100;100;800;300;400;400;100;200;400;400;268;300;200;400;400;400;200;100;400;900;1000;700;700;200;3700;600;2086;300;700;0;0;0;0;0;1119;2612;1277;4500;18500;29100;1642;1648;1019;840;477;627;407;529;393;159;609;570;1131;964;751;1109;960;665 -171;'608;Philippines;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;12;11;11;11;423;142;154;154;45;65;278;225;144;192;165;180;180;180;90;43;301;619;705;508;508;165;981;524;1393;407;848;0;0;0;0;0;1108;2074;792;1837;3100;4839;767;748;1445;1238;1054;1343;717;742;489;180;915;1017;1870;1600;1276;2084;2056;1619 -171;'608;Philippines;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;900;2600;3300;1800;1800;1800;1800;5600;5000;8000;5900;5600;6000;6900;4800;7800;9200;17400;19100;20000;12300;11100;12000;12000;13950;14208;16068;14135;16792;16125;17350;20170;21942;24657;24027;20041;19633;12784;23429;31552;23114;18039;22586;27963;26592;20773;16345;28463;31211;34677;32843;21665 -171;'608;Philippines;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;474;2036;4690;1941;1941;1941;1941;8150;8736;9714;10206;9960;12403;13235;11240;12497;16963;19452;20937;24754;30843;28347;30425;30425;38839;37918;36425;32070;36051;29951;31666;36511;40873;52563;52958;45603;59273;42816;73057;105278;75247;61694;71317;111741;101506;85994;70918;125473;138542;156098;137408;89826 -171;'608;Philippines;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;2500;1262;1500;1500;413;413;413;413;6657;3862;1862;1652;723;791;293;545;900;856;594;457;920;973;1112 -171;'608;Philippines;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1107;2073;790;800;800;210;210;210;210;676;945;731;812;583;812;265;347;839;1015;644;490;847;748;776 -171;'608;Philippines;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15700;15300;16000;2000;0;0;0;0;0;0;535;0;14;278;963;963;21;160;22;197;9091;394;6769;7833 -171;'608;Philippines;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36050;29950;31651;300;0;0;0;0;0;0;104;0;123;765;562;562;25;119;19;67;2169;334;4490;3603 -171;'608;Philippines;1669;Recovered paper;5510;Production;t;;;;;;;;;;68000;68000;68000;127000;57000;73000;76000;64000;45000;93000;78000;78000;47000;54000;58000;45000;40000;40000;40000;26000;54000;54000;54000;54000;54000;54000;54000;200000;300000;500000;333000;326000;326000;326000;326000;326000;326000;326000;326000;326000;970000;854500;854500;854500;854500;854500;854500;854500;854500;854500;912377;912377;912377;912377 -171;'608;Philippines;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;18000;18000;7000;12000;18178;11920;24500;46500;33400;46800;46800;58200;57700;49000;61200;57800;103000;119000;145000;204000;209500;236000;237017;251300;251300;294000;238200;231200;307000;369000;407800;354100;362000;400000;336541;282600;219300;173800;109700;88552;119678;270000;58353;43608;58104;82364;131090;134810;153652;120851;49196;81202;84009;20119 -171;'608;Philippines;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;1781;1460;656;1138;3477;2192;4662;8327;6705;8969;10749;15907;11655;8061;16606;5979;11887;15851;18034;24838;34784;38213;41721;47067;47067;83804;56269;41184;43053;62572;84962;45968;41992;45000;44030;36901;31500;26858;23840;17074;26022;58547;16278;13667;17916;21402;32415;35436;44427;33033;14050;20688;21559;6834 -171;'608;Philippines;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;1300;8;1190;1190;1190;1190;1190;4300;5000;400;400;400;3900;1001;0;200;200;200;8700;2000;1600;600;500;1100;1100;4618;1020;773;20500;31100;81730;78040;121405;71000;47087;59964;38334;70966;123180;141976;73362;59881;80344;92829;117090 -171;'608;Philippines;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;90;1;105;105;105;105;105;130;131;112;112;112;463;293;0;66;66;24;880;185;640;70;56;126;200;546;125;142;3106;4046;8916;14065;23616;13060;9031;11234;6789;12939;27162;23821;10636;8402;17142;20526;20007 -171;'608;Philippines;1876;Paper and paperboard;5510;Production;t;89000;96000;79000;89000;90000;86000;95000;104000;108000;86000;182000;287000;340000;270000;245000;281000;305000;341000;350000;323000;290000;242000;280000;290000;268000;218000;358000;314000;239000;245000;473000;570000;518000;518000;613000;613000;613000;987000;1010000;1107000;1056000;1056000;1091000;1097000;1097000;1097000;1097000;1097000;1097000;1097000;950200;815000;803000;803000;803000;911000;944000;995000;1014000;755000;755000;755000;755000 -171;'608;Philippines;1876;Paper and paperboard;5610;Import quantity;t;78300;59600;90100;84600;81300;113800;139600;148800;163700;150800;151400;126500;56800;66900;38600;39500;24400;95400;115400;119500;113000;133400;126600;148400;151200;172900;200600;193100;212400;239900;182900;254951;290000;396200;347700;393200;458400;391640;477302;467600;533100;571200;539353;556026;548152;619966;433344;431113;425341;507728;535901;552186;721254;802606;857711;1049685;1150903;1216629;1131935;1189751;1212171;1190683;1205428 -171;'608;Philippines;1876;Paper and paperboard;5622;Import value;1000 USD;18976;10583;13912;14390;13836;20854;24723;22324;24276;25022;23284;22190;17827;33570;23969;21177;10322;43457;56974;59792;57017;60887;58684;60374;61964;67810;95590;97438;115283;134261;112470;145597;147224;206412;279177;277006;297245;246060;257389;316698;308716;293193;295715;318290;339363;386250;303977;321479;288605;360215;441607;433730;547205;615691;597449;671457;796355;974192;863321;858924;901793;1022851;953101 -171;'608;Philippines;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;9900;15100;4400;2900;2900;2900;600;2700;600;1100;1000;1300;900;500;1600;1100;1100;2100;900;600;2100;1738;2000;13100;16400;44400;102700;77800;122300;136900;171400;144938;126978;199625;176093;167723;132223;106171;128450;109455;34570;22551;19650;16852;22869;26272;28753;27413;20259;19486;40805;32883 -171;'608;Philippines;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;1189;3979;1858;1441;1448;1448;244;1058;660;1347;1285;1566;1084;715;1687;948;1541;3264;1074;722;1558;1905;2152;12297;10559;18920;46639;33434;58825;67490;52547;55165;59968;91160;95135;86577;96400;78640;100810;104772;54181;42237;44066;45119;45573;57215;66084;57447;50076;45421;65985;56363 -171;'608;Philippines;2042;Graphic papers;5510;Production;t;60000;66000;50000;60000;60000;60000;65000;70000;75000;60000;90000;140000;140000;131000;106000;117000;118000;123000;154000;138000;122000;101000;110000;118000;87000;94000;197000;135000;99000;146000;195000;269000;213000;213000;292000;292000;292000;452000;470000;571000;554000;554000;589000;595000;595000;595000;595000;595000;595000;595000;430000;195000;218000;218000;218000;157000;159000;165000;146000;60000;60000;60000;60000 -171;'608;Philippines;2042;Graphic papers;5610;Import quantity;t;56500;48200;51500;61700;58600;64500;80100;71500;82200;56200;67800;50600;10400;15200;12400;9200;9500;17800;27600;32000;14000;22000;20600;10400;10200;12100;22800;16000;13100;11600;36100;51147;87800;116900;76000;95200;123500;87340;158301;129000;160100;135900;121414;106078;98597;120880;144144;145616;178028;200375;211965;239283;248927;255082;265672;358955;365086;376889;345985;391391;440019;393191;421600 -171;'608;Philippines;2042;Graphic papers;5622;Import value;1000 USD;10245;8051;7091;9345;8773;9454;10295;9313;10294;7998;9147;7604;2594;8636;5738;4385;4434;7855;12819;17687;8566;13635;12538;6740;6318;9438;13962;15863;14816;13090;30877;36094;52686;72021;71327;84859;97786;70230;102933;116444;115222;84242;77533;69570;70249;88957;108323;119199;136230;155574;185141;191222;185998;198280;199629;221622;259934;295254;292068;278044;297528;295541;344868 -171;'608;Philippines;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1494;338;900;10300;14700;43100;100700;74800;105100;132400;166300;141350;121350;141673;137804;129423;91923;91333;117113;94834;23575;15195;12400;9597;10511;9504;9772;6304;1899;2111;1440;1230 -171;'608;Philippines;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;945;248;1074;9866;9041;17573;44200;30816;53341;64893;49362;51267;50997;66550;70100;59425;63455;48357;67917;62889;15865;11165;8459;5630;6228;7367;10011;5435;1471;2780;5784;4311 -171;'608;Philippines;1671;Newsprint;5510;Production;t;40000;46000;40000;44000;51000;52000;45000;40000;40000;30000;45000;70000;70000;64000;68000;74000;78000;80000;81000;80000;82000;63000;71000;83000;56000;49000;168000;81000;71000;52000;100000;125000;110000;110000;138000;138000;138000;156000;174000;275000;258000;258000;293000;299000;299000;299000;299000;299000;299000;299000;170000;72000;55000;55000;55000;57000;53000;60000;44000;11000;11000;11000;11000 -171;'608;Philippines;1671;Newsprint;5610;Import quantity;t;45000;36700;41700;44800;45500;51500;68400;59100;71500;45500;58300;42100;4600;700;800;100;400;5000;19300;20000;4900;2700;1200;2400;2000;800;200;1700;300;200;100;2290;16800;34800;3100;11100;23600;3300;1800;3000;1700;13900;6703;4553;9860;2500;4000;2400;25991;38987;32277;48630;60606;57003;50844;56522;34960;38751;32142;18009;10886;7176;13293 -171;'608;Philippines;1671;Newsprint;5622;Import value;1000 USD;6297;5082;4858;5211;5319;6000;7903;6664;8050;5460;6909;5763;705;214;312;62;111;1463;7500;9435;2519;1660;554;903;700;355;49;894;135;65;27;1641;7089;17982;2500;6555;12414;1570;796;1421;657;5532;2678;1066;3456;1159;1633;1636;15308;23173;21861;31852;37978;34441;30928;28080;18335;19613;20833;9472;5913;5713;10655 -171;'608;Philippines;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1128;238;500;9800;14600;43000;100400;71600;105000;132300;166000;141000;121000;141250;137681;129300;91800;91177;117065;94715;23517;15067;12314;9445;9853;7860;8356;4796;1446;1446;101;7 -171;'608;Philippines;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;546;64;253;8924;8244;16981;43380;29004;53101;64529;49102;50763;50493;66050;70000;59325;63355;47632;67595;62337;15584;10853;7682;5076;4932;4085;5581;3007;680;680;86;5 -171;'608;Philippines;1674;Printing and writing papers;5510;Production;t;20000;20000;10000;16000;9000;8000;20000;30000;35000;30000;45000;70000;70000;67000;38000;43000;40000;43000;73000;58000;40000;38000;39000;35000;31000;45000;29000;54000;28000;94000;95000;144000;103000;103000;154000;154000;154000;296000;296000;296000;296000;296000;296000;296000;296000;296000;296000;296000;296000;296000;260000;123000;163000;163000;163000;100000;106000;105000;102000;49000;49000;49000;49000 -171;'608;Philippines;1674;Printing and writing papers;5610;Import quantity;t;11500;11500;9800;16900;13100;13000;11700;12400;10700;10700;9500;8500;5800;14500;11600;9100;9100;12800;8300;12000;9100;19300;19400;8000;8200;11300;22600;14300;12800;11400;36000;48857;71000;82100;72900;84100;99900;84040;156501;126000;158400;122000;114711;101525;88737;118380;140144;143216;152037;161388;179688;190653;188321;198079;214828;302433;330126;338138;313843;373382;429133;386015;408307 -171;'608;Philippines;1674;Printing and writing papers;5622;Import value;1000 USD;3948;2969;2233;4134;3454;3454;2392;2649;2244;2538;2238;1841;1889;8422;5426;4323;4323;6392;5319;8252;6047;11975;11984;5837;5618;9083;13913;14969;14681;13025;30850;34453;45597;54039;68827;78304;85372;68660;102137;115023;114565;78710;74855;68504;66793;87798;106690;117563;120922;132401;163280;159370;148020;163839;168701;193542;241599;275641;271235;268572;291615;289828;334213 -171;'608;Philippines;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;366;100;400;500;100;100;300;3200;100;100;300;350;350;423;123;123;123;156;48;119;58;128;86;152;658;1644;1416;1508;453;665;1339;1223 -171;'608;Philippines;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;399;184;821;942;797;592;820;1812;240;364;260;504;504;500;100;100;100;725;322;552;281;312;777;554;1296;3282;4430;2428;791;2100;5698;4306 -171;'608;Philippines;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48000;0;0;0;0;0;0;0;0;0;0;0 -171;'608;Philippines;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3400;6335;5100;7200;10900;5600;5384;1837;780;532;1348;1330;1022;2091;2073;5572;3594;5141;2798;1482;1482;8543;2369;3518;1713;13074 -171;'608;Philippines;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2318;3449;3884;3936;5930;2698;2294;1493;580;2104;1165;1134;839;1985;1399;3013;2854;3474;2007;3517;3517;20898;7128;5230;3368;17599 -171;'608;Philippines;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;193;193;6;18;13;8;0 -171;'608;Philippines;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;1026;1026;17;20;8;6;0 -171;'608;Philippines;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;296000;296000;296000;296000;296000;296000;296000;296000;296000;296000;296000;296000;296000;260000;75000;163000;163000;163000;100000;106000;105000;102000;49000;49000;49000;49000 -171;'608;Philippines;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31867;59371;47800;77400;54700;58078;39294;34000;40000;47677;45850;47082;48728;57672;88734;99316;95989;110533;167468;171356;166947;184577;232357;274381;249556;251428 -171;'608;Philippines;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22571;33576;37812;50362;37119;37434;26218;25500;32000;38308;41287;49312;48278;62195;80391;78296;86376;88660;104990;135405;139796;149083;158114;180910;188216;206254 -171;'608;Philippines;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;3200;100;100;300;350;350;423;123;123;123;156;48;73;58;128;86;101;289;413;646;558;399;352;307;257 -171;'608;Philippines;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;820;1812;240;364;260;504;504;500;100;100;100;725;322;486;281;312;777;529;675;496;2110;775;730;856;2750;731 -171;'608;Philippines;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0 -171;'608;Philippines;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48773;90795;73100;73800;56400;51033;56847;52900;77600;91935;96018;103625;111638;119925;99846;83433;98496;99154;132167;157288;169709;120723;138656;151234;134746;143805 -171;'608;Philippines;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43771;65112;73327;60267;35661;34723;39992;39800;55218;66278;75111;70476;83284;99100;77580;66711;74609;76567;86545;102677;132328;101254;103330;105475;98244;110360 -171;'608;Philippines;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;0;0;0;51;366;1038;577;944;36;300;1024;966 -171;'608;Philippines;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;0;0;0;25;613;1760;1294;1636;41;1236;2942;3575 -171;'608;Philippines;1675;Other paper and paperboard;5510;Production;t;29000;30000;29000;29000;30000;26000;30000;34000;33000;26000;92000;147000;200000;139000;139000;164000;187000;218000;196000;185000;168000;141000;170000;172000;181000;124000;161000;179000;140000;99000;278000;301000;305000;305000;321000;321000;321000;535000;540000;536000;502000;502000;502000;502000;502000;502000;502000;502000;502000;502000;520200;620000;585000;585000;585000;754000;785000;830000;868000;695000;695000;695000;695000 -171;'608;Philippines;1675;Other paper and paperboard;5610;Import quantity;t;21800;11400;38600;22900;22700;49300;59500;77300;81500;94600;83600;75900;46400;51700;26200;30300;14900;77600;87800;87500;99000;111400;106000;138000;141000;160800;177800;177100;199300;228300;146800;203804;202200;279300;271700;298000;334900;304300;319001;338600;373000;435300;417939;449948;449555;499086;289200;285497;247313;307353;323936;312903;472327;547524;592039;690730;785817;839740;785950;798360;772152;797492;783828 -171;'608;Philippines;1675;Other paper and paperboard;5622;Import value;1000 USD;8731;2532;6821;5045;5063;11400;14428;13011;13982;17024;14137;14586;15233;24934;18231;16792;5888;35602;44155;42105;48451;47252;46146;53634;55646;58372;81628;81575;100467;121171;81593;109503;94538;134391;207850;192147;199459;175830;154456;200254;193494;208951;218182;248720;269114;297293;195654;202280;152375;204641;256466;242508;361207;417411;397820;449835;536421;678938;571253;580880;604265;727310;608233 -171;'608;Philippines;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;9900;15100;4400;2900;2900;2900;600;2700;600;1100;1000;1300;900;500;1600;1100;1100;2100;900;600;606;1400;1100;2800;1700;1300;2000;3000;17200;4500;5100;3588;5628;57952;38289;38300;40300;14838;11337;14621;10995;7356;7250;7255;12358;16768;18981;21109;18360;17375;39365;31653 -171;'608;Philippines;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;1189;3979;1858;1441;1448;1448;244;1058;660;1347;1285;1566;1084;715;1687;948;1541;3264;1074;722;613;1657;1078;2431;1518;1347;2439;2618;5484;2597;3185;3898;8971;24610;25035;27152;32945;30283;32893;41883;38316;31072;35607;39489;39345;49848;56073;52012;48605;42641;60201;52052 -171;'608;Philippines;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;15000;15000;12000;20000;20000;19000;16000;20000;15000;17000;22000;12000;9000;5000;14000;10000;8000;18000;20000;21000;21000;19000;19000;19000;23000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;30000;20000;14000;14000;14000;37000;37000;37000;45000;21000;21000;21000;21000 -171;'608;Philippines;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4600;5200;3000;5500;4800;4900;4900;6028;12428;11700;12200;15800;17032;17032;22519;24720;27261;25512;23821;27728;34140;39294;48795;49151;49896;53305;54488 -171;'608;Philippines;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6221;5750;2618;4791;3253;3562;3562;4854;11314;10393;11900;17266;15292;15292;21656;29530;30905;30881;31825;30941;36878;46854;57487;52480;51564;94790;93707 -171;'608;Philippines;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;88;111;4;506;1343;2081;5870;7401;5141;811;2497;2960;2861 -171;'608;Philippines;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;103;238;10;1239;1678;2263;6059;8145;5229;945;2920;5029;4661 -171;'608;Philippines;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;504000;504000;504000;470000;470000;470000;470000;470000;470000;470000;470000;470000;470000;466200;600000;540000;540000;540000;717000;748000;793000;823000;674000;674000;674000;674000 -171;'608;Philippines;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;260700;295901;299900;330400;378000;337596;353438;355227;426386;266700;256797;224294;282295;285747;260862;406516;491792;537169;637362;717877;781207;720776;728439;696657;722815;710043 -171;'608;Philippines;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;127433;123136;157459;153420;157183;146998;168866;174700;216900;166427;166514;126413;175299;207202;175629;285961;346377;329725;375215;441650;597495;479947;487361;509858;594325;504260 -171;'608;Philippines;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;700;2100;16700;2900;2900;1200;0;52000;33000;32300;32000;6539;1083;2401;2543;719;404;295;4583;4608;4943;9655;11205;8878;28581;23341 -171;'608;Philippines;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;922;1564;4583;689;689;432;0;13353;8813;8513;8383;1818;599;1591;811;317;209;135;2475;2578;3425;4536;5160;2823;15104;10647 -171;'608;Philippines;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;;;;;;;;124000;124000;152000;167000;198000;177000;169000;148000;126000;145000;143000;153000;103000;144000;149000;109000;78000;250000;267000;270000;270000;269000;269000;269000;;;;;;;;;;;;;;;;;;;;;;;;;; -171;'608;Philippines;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;12600;6600;22400;13300;13200;28600;34500;44600;36900;45400;38200;37000;15800;13200;6700;700;700;14200;32000;39900;36200;47900;58500;49900;110100;123000;116000;106500;114100;149700;146100;202804;201200;277000;270400;240000;285200;;;;;;;;;;;;;;;;;;;;;;;;;; -171;'608;Philippines;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;3754;1089;2933;2169;2177;4902;6204;5550;4575;6181;4695;4804;3095;4228;2219;524;524;4015;10836;14639;14115;15780;18927;16187;35353;36216;42941;40385;48193;64910;81041;108468;93061;132732;205301;137168;151886;;;;;;;;;;;;;;;;;;;;;;;;;; -171;'608;Philippines;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;;;;;;5700;2800;2800;2800;2800;500;2600;200;100;100;100;100;100;100;300;300;300;300;300;300;700;500;2800;200;1300;;;;;;;;;;;;;;;;;;;;;;;;;; -171;'608;Philippines;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;2811;1354;1354;1354;1354;180;1013;314;251;251;251;251;251;251;116;116;116;116;116;116;1026;637;2431;283;1347;;;;;;;;;;;;;;;;;;;;;;;;;; -171;'608;Philippines;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;504000;504000;504000;470000;470000;470000;470000;470000;470000;470000;470000;470000;470000;466200;460000;506000;506000;506000;607000;645000;684000;719000;583000;583000;583000;583000 -171;'608;Philippines;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;199067;225946;229000;251600;293000;269283;242981;247200;294791;184500;195900;165128;220002;220918;196759;231795;296831;332101;366601;452439;467423;455163;472984;420104;388951;431963 -171;'608;Philippines;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84113;81277;103932;99901;109688;110109;107548;114700;145515;106941;120421;87912;131466;158184;126979;140975;183851;188333;203296;259234;314048;289483;259648;258478;277622;249504 -171;'608;Philippines;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40800;25800;25800;25800;420;779;2070;1025;102;269;269;2068;1219;191;4217;70;3064;17738;23057 -171;'608;Philippines;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10450;6681;6681;6681;173;363;1214;499;51;70;70;772;765;142;1537;32;1876;12367;10315 -171;'608;Philippines;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80000;0;0;0;35000;37000;42000;38000;30000;30000;30000;30000 -171;'608;Philippines;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50332;57128;57900;63700;66200;66263;75540;77500;98200;54300;39397;23808;24659;30265;33048;122251;138421;148493;203359;219795;248026;204521;209524;230962;288723;229500 -171;'608;Philippines;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33025;31911;40806;39714;32816;34989;39041;39200;51085;39236;28898;18109;20537;25609;28867;108609;121475;105417;131540;145836;227507;144877;193573;207746;268948;208394 -171;'608;Philippines;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9200;6100;6100;6100;6100;87;35;35;103;20;20;2116;2497;3700;612;766;214;213;52 -171;'608;Philippines;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2411;1632;1632;1632;1632;117;35;35;141;22;22;1222;1207;2493;902;621;318;358;54 -171;'608;Philippines;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32867;28527;32395;26900;20500;35358;37634;34564;31055;46772;50490;52593;58539;38204;50994;51559;39690;37985;39321;43500 -171;'608;Philippines;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20377;19794;19700;19650;16595;20392;23296;23409;19783;33975;37944;33843;35398;31642;45576;38904;30975;38310;42388;42107 -171;'608;Philippines;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;1100;400;100;19;217;296;1483;514;115;6;399;874;946;4826;10359;5590;10627;128 -171;'608;Philippines;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;492;500;200;70;13;119;342;277;125;117;43;481;586;651;2097;4501;623;2377;189 -171;'608;Philippines;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60000;34000;34000;34000;75000;66000;67000;66000;61000;61000;61000;61000 -171;'608;Philippines;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11301;12827;13000;15100;18800;2050;2050;2000;1000;1000;1000;0;0;0;0;5698;6050;3982;8863;7439;14764;9533;6241;7606;5820;5080 -171;'608;Philippines;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10295;9948;12721;13805;14679;1900;1900;1006;600;600;600;0;0;0;0;2402;3107;2132;4981;4938;10364;6683;3165;5324;5367;4255 -171;'608;Philippines;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;700;2100;16700;2900;2900;1200;0;0;0;0;0;0;0;0;0;0;0;0;0;18;106;0;10;10;3;104 -171;'608;Philippines;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;922;1564;4583;689;689;432;0;0;0;0;0;0;0;0;0;0;0;0;0;20;139;0;6;6;2;89 -171;'608;Philippines;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;8000;7000;16000;12000;12000;16000;21000;13000;10000;14000;14000;14000;33000;33000;33000;8000;9000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;24000;0;31000;31000;31000;0;0;0;0;0;0;0;0 -171;'608;Philippines;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;9200;4800;16200;9600;9500;20700;25000;32700;44600;49200;45400;38900;30600;38500;19500;29600;14200;63400;55800;47600;62800;63500;47500;88100;30900;37800;61800;70600;85200;78600;700;1000;1000;2300;1300;58000;45100;38400;20100;33200;37800;52400;75443;90482;81900;61000;10300;12900;5987;8026;15670;27321;38550;30220;31049;25640;33800;19239;16379;20770;25599;21372;19297 -171;'608;Philippines;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;4977;1443;3888;2876;2886;6498;8224;7461;9407;10843;9442;9782;12138;20706;16012;16268;5364;31587;33319;27466;34336;31472;27219;37447;20293;22156;38687;41190;52274;56261;552;1035;1477;1659;2549;54979;41352;42647;28702;38004;36821;48206;67622;75000;83100;70000;17327;18500;10670;14050;27608;37349;44341;40153;36270;43679;57893;34589;33819;41039;42843;38195;10266 -171;'608;Philippines;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;9400;1600;100;100;100;100;100;400;1000;900;1200;800;400;1500;800;800;1800;600;300;306;700;600;0;1500;0;1300;900;500;1600;2200;2388;5628;5952;5289;6000;8300;8299;10187;12132;8341;6633;6340;5617;5694;6290;6637;6313;6344;6000;7824;5451 -171;'608;Philippines;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;1168;504;87;94;94;64;45;346;1096;1034;1315;833;464;1436;832;1425;3148;958;606;497;631;441;0;1235;0;1517;1054;901;1908;2496;3466;8971;11257;16222;18639;24562;28465;32222;40189;37267;30745;34159;37676;34607;41211;44503;42247;42500;36898;40068;36744 -171;'608;Philippines;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;213222;264545;336442;217921;242117;236618;284262 -171;'608;Philippines;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;514476;140989;170786;310830;195570;228423;124353 -171;'608;Philippines;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8579;10545;8424;4118;5692;4828;2153 -171;'608;Philippines;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7802;3850;361;1217;2457;2253;2653 -171;'608;Philippines;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2648;4874;4428;2597;3954;1932;920 -171;'608;Philippines;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5720;2733;137;885;2301;1542;344 -171;'608;Philippines;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5931;5671;3996;1521;1738;2896;1233 -171;'608;Philippines;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2082;1117;224;332;156;711;2309 -171;'608;Philippines;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30203;16723;18318;15062;11703;10940;15529 -171;'608;Philippines;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2999;3617;5635;2431;2293;1338;4744 -171;'608;Philippines;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2008;2847;7081;4215;4474;3975;9065 -171;'608;Philippines;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18467;18918;23900;26426;26114;36141;18569 -171;'608;Philippines;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16526;19661;40069;24562;28578;24738;24628 -171;'608;Philippines;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;386238;32193;73491;154986;47200;97528;36197 -171;'608;Philippines;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4385;4385 -171;'608;Philippines;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6199;6199 -171;'608;Philippines;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;151702;211924;248271;159243;181236;184716;219256 -171;'608;Philippines;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91075;81672;66979;125319;114908;85714;57305 -171;'608;Philippines;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;272;272;832;445;1290;617;419 -171;'608;Philippines;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;44;71;2013;4210;2509 -171;'608;Philippines;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3932;2573;13447;10276;9144;6804;13212 -171;'608;Philippines;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7892;736;376;380;585;1239;2376 -171;'608;Philippines;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;291572;341205;368297;319464;369243;458370;495493 -171;'608;Philippines;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58248;47546;68174;56274;46497;44650;39386 -171;'608;Philippines;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3261;2611;1693;1825;1947;2001;1675 -171;'608;Philippines;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;12;0;0;0;0;0 -171;'608;Philippines;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35666;43473;45467;42343;60465;67904;68431 -171;'608;Philippines;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2049;537;2579;1490;1178;562;281 -171;'608;Philippines;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27536;26711;27071;22111;22353;29025;40670 -171;'608;Philippines;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;854;118;83;798;1403;614;345 -171;'608;Philippines;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84652;111146;116807;102891;135106;172755;198965 -171;'608;Philippines;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33015;25254;43392;28949;25303;23969;21818 -171;'608;Philippines;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140457;157264;177259;150294;149372;186685;185752 -171;'608;Philippines;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22319;21625;22120;25037;18613;19505;16942 -172;'612;Pitcairn;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;185;105;116;258;153;182;137 -172;'612;Pitcairn;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;60;47;53;63;47;50 -172;'612;Pitcairn;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;43;29;29;29;29;29;29;29;29;29;29;29;29;29;29;29;29;31;35;49;34;30;49;29;133;46;44;169;41;92;56 -172;'612;Pitcairn;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;6;0;0;0;0;0;0;0;0 -172;'612;Pitcairn;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;504;0;0;0;0;0;0 -172;'612;Pitcairn;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;18;0;0;0;0;0;0 -172;'612;Pitcairn;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -172;'612;Pitcairn;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -172;'612;Pitcairn;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -172;'612;Pitcairn;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -172;'612;Pitcairn;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -172;'612;Pitcairn;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -172;'612;Pitcairn;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;504;0;0;0;0;0;0 -172;'612;Pitcairn;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;0;0;0;0;0;0 -172;'612;Pitcairn;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -172;'612;Pitcairn;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -172;'612;Pitcairn;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;504;0;0;0;0;0;0 -172;'612;Pitcairn;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;18;0;0;0;0;0;0 -172;'612;Pitcairn;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -172;'612;Pitcairn;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -172;'612;Pitcairn;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -172;'612;Pitcairn;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -172;'612;Pitcairn;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -172;'612;Pitcairn;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -172;'612;Pitcairn;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -172;'612;Pitcairn;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -172;'612;Pitcairn;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -172;'612;Pitcairn;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -172;'612;Pitcairn;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;504;0;0;0;0;0;0 -172;'612;Pitcairn;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;18;0;0;0;0;0;0 -172;'612;Pitcairn;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -172;'612;Pitcairn;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -172;'612;Pitcairn;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -172;'612;Pitcairn;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -172;'612;Pitcairn;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -172;'612;Pitcairn;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -172;'612;Pitcairn;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;504;0;0;0;0;0;0 -172;'612;Pitcairn;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;18;0;0;0;0;0;0 -172;'612;Pitcairn;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -172;'612;Pitcairn;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -172;'612;Pitcairn;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -172;'612;Pitcairn;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;46;5;142;456;126;457;179;353;213 -172;'612;Pitcairn;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;8;5;16;8;3;24;5;92;17;17;108;5;67;31 -172;'612;Pitcairn;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;17;0;0;0;0;0;0;0;0 -172;'612;Pitcairn;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;6;0;0;0;0;0;0;0;0 -172;'612;Pitcairn;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -172;'612;Pitcairn;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;46;5;142;456;126;457;179;353;213 -172;'612;Pitcairn;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;8;5;16;8;3;24;5;92;17;17;108;5;67;31 -172;'612;Pitcairn;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;0;0;0;0;0;0;0;0 -172;'612;Pitcairn;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;0;0;0;0;0;0;0;0 -172;'612;Pitcairn;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -172;'612;Pitcairn;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -172;'612;Pitcairn;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -172;'612;Pitcairn;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 -172;'612;Pitcairn;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 -172;'612;Pitcairn;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -172;'612;Pitcairn;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;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 -172;'612;Pitcairn;1634;Veneer sheets;5622;Import 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;0;0;0;0;0;0;0 -172;'612;Pitcairn;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -172;'612;Pitcairn;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -172;'612;Pitcairn;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -172;'612;Pitcairn;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;2;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;4;3;2;8;3;79;36;2;2 -172;'612;Pitcairn;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;1;8;11;4;5;3;2;1;7;2;37;12;1;1 -172;'612;Pitcairn;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -172;'612;Pitcairn;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -172;'612;Pitcairn;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -172;'612;Pitcairn;1640;Plywood and LVL;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;2;1;0;6;1;77;34;0;0 -172;'612;Pitcairn;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;0;7;10;3;4;2;1;0;6;1;36;11;0;0 -172;'612;Pitcairn;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -172;'612;Pitcairn;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -172;'612;Pitcairn;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;2;2;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -172;'612;Pitcairn;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -172;'612;Pitcairn;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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 -172;'612;Pitcairn;1697;Particle board;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 -172;'612;Pitcairn;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;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;11;11;11;11;11 -172;'612;Pitcairn;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;25;24;24;24;24 -172;'612;Pitcairn;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 -172;'612;Pitcairn;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 -172;'612;Pitcairn;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;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;11;11;11;11;11 -172;'612;Pitcairn;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;25;24;24;24;24 -172;'612;Pitcairn;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 -172;'612;Pitcairn;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 -172;'612;Pitcairn;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -172;'612;Pitcairn;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -172;'612;Pitcairn;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1 -172;'612;Pitcairn;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;2;2;2;2 -172;'612;Pitcairn;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1 -172;'612;Pitcairn;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;2;2;2;2 -172;'612;Pitcairn;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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 -172;'612;Pitcairn;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22 -172;'612;Pitcairn;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 -172;'612;Pitcairn;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 -172;'612;Pitcairn;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;50;70;86;110;74;80 -172;'612;Pitcairn;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;60;45;42;45;43;43 -172;'612;Pitcairn;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;29;29;29;29;29;29 -172;'612;Pitcairn;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1 -172;'612;Pitcairn;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;29;29;29;29;29;29 -172;'612;Pitcairn;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1 -172;'612;Pitcairn;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1 -172;'612;Pitcairn;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1 -172;'612;Pitcairn;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2;1;0;3;1;1 -172;'612;Pitcairn;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5 -172;'612;Pitcairn;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;40;40;40;40;40;40 -172;'612;Pitcairn;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;19;7;2;27;7 -172;'612;Pitcairn;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;16;2;0;0;0;0 -172;'612;Pitcairn;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;10;16;44;73;12;38 -172;'612;Pitcairn;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -172;'612;Pitcairn;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;9;2;3;2;16;1 -172;'612;Pitcairn;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;2;11;18;4;7 -172;'612;Pitcairn;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -172;'612;Pitcairn;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;0;0;0;14;0 -172;'612;Pitcairn;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;7;0;0 -172;'612;Pitcairn;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;2;0;1;1;0 -172;'612;Pitcairn;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;2;11;11;4;4 -172;'612;Pitcairn;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;3;0;3;1;1;1 -172;'612;Pitcairn;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;3 -173;'616;Poland;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7353335.67;8612581;8051751;8586688;11230310;12270673;10169893 -173;'616;Poland;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14786505.73;17083032;16747891;17822884;22234906;24288835;22369212 -173;'616;Poland;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;10929;17184;11874;15410;20340;26948;35446;57674;72054;82017;91750;99462;140642;191264;237023;242084;239926;260511;317167;310198;246876;227030;133766;134813;142972;139888;253999;196473;223905;96672;125296;144986;315840;417242;855207;1008138;1116945;1225000;1269530;1406610;1380973;1572164;1925294;2470274;2732329;3269664;4171849;4595758;3503797;4212626;4959157;4478806;4933833;5317655;4519923;4524874;5163636.77;6109566;5485949;5740274;7686751;8539458;6861262 -173;'616;Poland;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;36318;39816;46144;57233;63203;53978;46148;46740;54620;59764;51831;61003;99196;118598;106471;127369;144991;159794;204373;244402;186226;142423;145556;171955;157575;160977;290393;234780;310960;234830;271916;538494;417544;567425;744570;656043;730502;830400;871900;1019400;1018273;1301120;1689969;2026131;2181683;2475146;2893549;3000397;2468279;3034012;3503267;3454599;3910650;4087912;3339783;3398273;3887627.98;4896498;4445526;4631015;5950469;6639132;5368329 -173;'616;Poland;1861;Roundwood;5516;Production;m3;16095000;16397000;16824000;17073000;17227000;16802000;17433000;18108000;18073000;18473000;18320000;18799000;20081000;21543000;21820000;21594000;22107000;21530000;20339000;22290000;21859000;23279000;25542000;24701000;24065000;25343000;24488000;24264000;22675000;18676000;18196000;22037000;21630000;21922000;22492000;22057500;23496800;24916800;26017800;27659100;26671400;28957000;30836000;32733000;31944500;32384000;35934563;34273421;34629172;35467417;37179982;38015431;38938843;40862038;41375282;42401232;45312633;46711225;43321969;40635778;43147171;45692953;42785407 -173;'616;Poland;1861;Roundwood;5616;Import quantity;m3;140200;216100;156400;211200;100600;191000;231000;209500;181000;175000;162000;134000;53000;151000;154000;154000;143000;204000;164000;222000;179500;161400;211900;153100;165900;151000;141400;201000;248000;839;15836;12545;7554;39036;411500;376900;275000;371500;591200;732400;882200;726600;668600;954700;2045400;1828100;2091945;1871487;1888631;2323826;3449978;2492527;2327201;2722631;2551427;2499940;1740795;1133218;1669327;3014185;3033577;3783538;1837264 -173;'616;Poland;1861;Roundwood;5622;Import value;1000 USD;2084;3121;2467;3363;2343;2935;4599;5162;5345;5416;4408;4485;8359;9761;7358;9577;9009;13349;13168;16863;10839;8107;9147;6242;5722;5185;9483;9730;15882;98;1606;1604;1225;2204;20000;21418;16345;21100;31300;36385;40600;30605;32616;59284;100102;97968;155861;144092;85956;124526;204141;126465;128654;160629;117538;91730;96820.11;91623;94875;150432;210183;337648;171715 -173;'616;Poland;1861;Roundwood;5916;Export quantity;m3;357100;272700;448700;513400;832900;552800;416000;348700;433000;483000;303000;399000;819000;1094000;1148000;1178000;906000;929000;1126000;1265500;1282700;859300;1335900;2151100;2224000;1512000;1221600;1114000;740000;407615;892474;972244;593093;1206800;386200;232200;318200;362600;390800;347200;310000;723300;1008500;1027800;603800;490000;387472;435934;1089252;1733535;1904247;2002918;3072894;2911920;2663782;2735189;2963978;5571373;4601629;4558138;4159199;5249252;3312081 -173;'616;Poland;1861;Roundwood;5922;Export value;1000 USD;3805;2544;3981;5054;9615;5780;4208;3884;5516;6974;5138;5851;13091;25769;32795;28251;25027;25316;35878;51283;52884;32027;31659;50801;52208;45391;68140;40820;41140;26627;53865;69464;37682;103827;45570;20243;29202;25100;28900;23656;20749;39407;62765;68173;46661;52619;51001;56173;83239;157579;172499;209923;279619;257355;195389;182397;204900.41;374177;352945;386390;435090;488226;383574 -173;'616;Poland;1862;Roundwood, coniferous;5516;Production;m3;13659000;13762000;14095000;14251000;14649000;14070000;14447000;14949000;14754000;15252000;14910000;15450000;16545000;17637000;17706000;17439000;17947000;17348000;16451000;17976000;17915000;19793000;22163000;21192000;20058000;20552000;19464000;18487500;17073000;14305000;13277000;16099000;16077000;15874500;16286000;15865000;16877500;17762100;18512300;20357700;18874700;20738000;21887000;23501000;23028400;23403500;27269190;25477377;25493062;26529013;27429072;27649657;28418153;30156044;30631438;31825383;34917215;35891491;33132600;30969320;33360546;35567562;33414164 -173;'616;Poland;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;806828;538283;990395;2478881;2575846;2936079;1316512 -173;'616;Poland;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38869.14;36941;47710;112092;160308;240923;102542 -173;'616;Poland;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2628071;4878530;4087101;3940470;3388720;4399237;2757235 -173;'616;Poland;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;178671.16;326504;315828;337318;356249;355760;287643 -173;'616;Poland;1863;Roundwood, non-coniferous;5516;Production;m3;2436000;2635000;2729000;2822000;2578000;2732000;2986000;3159000;3319000;3221000;3410000;3349000;3536000;3906000;4114000;4155000;4160000;4182000;3888000;4314000;3944000;3486000;3379000;3509000;4007000;4791000;5024000;5776500;5602000;4371000;4919000;5938000;5553000;6047500;6206000;6192500;6619300;7154700;7505500;7301400;7796700;8219000;8949000;9232000;8916100;8980500;8665373;8796044;9136110;8938404;9750910;10365774;10520690;10705994;10743844;10575849;10395418;10819734;10189369;9666458;9786625;10125391;9371243 -173;'616;Poland;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;933967;594935;678932;535304;457731;847459;520752 -173;'616;Poland;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57950.97;54682;47165;38340;49875;96725;69173 -173;'616;Poland;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;335907;692843;514528;617668;770479;850015;554846 -173;'616;Poland;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26229.25;47673;37117;49072;78841;132466;95931 -173;'616;Poland;1864;Wood fuel;5516;Production;m3;1584000;1621000;1708000;1886000;1960000;1579000;1718000;1848000;1971000;1765000;1890000;2071000;1762000;1637000;1616000;1692000;1634000;1465000;1436000;2505500;3572000;3179000;3149000;3506000;3797500;4901000;4267000;3716000;2860000;2644000;3362000;3882000;3401000;3041000;2299000;2442500;2545400;2246100;2363500;2464400;2593100;3211000;3632000;3396000;3413200;3617200;3473604;3803834;4153916;4124416;4979775;5043141;5143794;5184868;5497000;5295143;5248213;5358506;5068902;4713304;4519348;6957929;6977245 -173;'616;Poland;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;36;36;3700;400;0;500;1100;100;200;200;5900;11400;36500;14000;3482;3410;15059;35290;31212;23633;57110;89555;16704;17949;58320;62498;62283;61496;269934;200810;100865 -173;'616;Poland;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;4;4;100;10;0;100;200;100;100;100;79;275;1221;465;167;175;508;958;1517;987;2545;3589;1023;1251;3229.98;3308;2774;2775;8432;10715;9496 -173;'616;Poland;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9840;9952;26800;12100;18500;15400;17200;23800;25200;35600;46900;66700;53500;45500;77700;51473;67307;118293;149010;101205;129160;236743;228884;199378;128139;170428;243509;204872;185350;160675;191964;144459 -173;'616;Poland;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;713;471;659;800;1200;1000;1000;1200;1303;1895;2800;4661;5026;4715;8723;6927;9074;13191;15402;14149;13764;23000;22701;17890;12141;12577.49;23070;17198;25806;28035;44768;27536 -173;'616;Poland;1627;Wood fuel, coniferous;5516;Production;m3;804000;794000;815000;906000;1015000;830000;889000;931000;943000;850000;906000;1106000;896000;779000;763000;748000;769000;691000;732000;1498500;2258000;2112000;2217000;2527000;2628000;3274000;2717000;2128500;1585500;1468000;1734000;2037000;1816500;1560500;1142500;1195000;1224900;1006300;1061900;1194100;1219500;1640000;1922000;1749000;1671500;1748000;1789668;1906692;2072960;2068304;2460242;2587195;2651508;2674216;2694000;2570698;2607537;2685746;2504929;2297226;2189028;3626741;3575025 -173;'616;Poland;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37148;39508;43571;44762;254721;175584;74946 -173;'616;Poland;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1674.4;1528;1305;1234;6376;5949;3899 -173;'616;Poland;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;138722;176396;144343;129493;65405;77099;39214 -173;'616;Poland;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8345.71;15692;10728;14375;8876;13067;6072 -173;'616;Poland;1628;Wood fuel, non-coniferous;5516;Production;m3;780000;827000;893000;980000;945000;749000;829000;917000;1028000;915000;984000;965000;866000;858000;853000;944000;865000;774000;704000;1007000;1314000;1067000;932000;979000;1169500;1627000;1550000;1587500;1274500;1176000;1628000;1845000;1584500;1480500;1156500;1247500;1320500;1239800;1301600;1270300;1373600;1571000;1710000;1647000;1741700;1869200;1683936;1897142;2080956;2056112;2519533;2455946;2492286;2510652;2803000;2724445;2640676;2672760;2563973;2416078;2330320;3331188;3402220 -173;'616;Poland;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21172;22990;18712;16734;15213;25226;25919 -173;'616;Poland;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1555.58;1780;1469;1541;2056;4766;5597 -173;'616;Poland;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31706;67113;60529;55857;95270;114865;105245 -173;'616;Poland;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4231.78;7378;6470;11431;19159;31701;21464 -173;'616;Poland;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;36;36;3700;400;0;500;1100;100;200;200;5900;11400;36500;14000;3482;3410;15059;35290;31212;23633;57110;89555;16704;17949;;;;;;; -173;'616;Poland;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;4;4;100;10;0;100;200;100;100;100;79;275;1221;465;167;175;508;958;1517;987;2545;3589;1023;1251;;;;;;; -173;'616;Poland;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9840;9952;26800;12100;18500;15400;17200;23800;25200;35600;46900;66700;53500;45500;77700;51473;67307;118293;149010;101205;129160;236743;228884;199378;128139;;;;;;; -173;'616;Poland;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;713;471;659;800;1200;1000;1000;1200;1303;1895;2800;4661;5026;4715;8723;6927;9074;13191;15402;14149;13764;23000;22701;17890;12141;;;;;;; -173;'616;Poland;1865;Industrial roundwood;5516;Production;m3;14511000;14776000;15116000;15187000;15267000;15223000;15715000;16260000;16102000;16708000;16430000;16728000;18319000;19906000;20204000;19902000;20473000;20065000;18903000;19784500;18287000;20100000;22393000;21195000;20267500;20442000;20221000;20548000;19815000;16032000;14834000;18155000;18229000;18881000;20193000;19615000;20951400;22670700;23654300;25194700;24078300;25746000;27204000;29337000;28531300;28766800;32460959;30469587;30475256;31343001;32200207;32972290;33795049;35677170;35878282;37106089;40064420;41352719;38253067;35922474;38627823;38735024;35808162 -173;'616;Poland;1865;Industrial roundwood;5616;Import quantity;m3;140200;216100;156400;211200;100600;191000;231000;209500;181000;175000;162000;134000;53000;151000;154000;154000;143000;204000;164000;222000;179500;161400;211900;153100;165900;151000;141400;201000;248000;839;15836;12524;7518;39000;407800;376500;275000;371000;590100;732300;882000;726400;662700;943300;2008900;1814100;2088463;1868077;1873572;2288536;3418766;2468894;2270091;2633076;2534723;2481991;1682475;1070720;1607044;2952689;2763643;3582728;1736399 -173;'616;Poland;1865;Industrial roundwood;5622;Import value;1000 USD;2084;3121;2467;3363;2343;2935;4599;5162;5345;5416;4408;4485;8359;9761;7358;9577;9009;13349;13168;16863;10839;8107;9147;6242;5722;5185;9483;9730;15882;98;1606;1603;1221;2200;19900;21408;16345;21000;31100;36285;40500;30505;32537;59009;98881;97503;155694;143917;85448;123568;202624;125478;126109;157040;116515;90479;93590.13;88315;92101;147657;201751;326933;162219 -173;'616;Poland;1865;Industrial roundwood;5916;Export quantity;m3;357100;272700;448700;513400;832900;552800;416000;348700;433000;483000;303000;399000;819000;1094000;1148000;1178000;906000;929000;1126000;1265500;1282700;859300;1335900;2151100;2224000;1512000;1221600;1114000;740000;407615;892474;962404;583141;1180000;374100;213700;302800;345400;367000;322000;274400;676400;941800;974300;558300;412300;335999;368627;970959;1584525;1803042;1873758;2836151;2683036;2464404;2607050;2793550;5327864;4396757;4372788;3998524;5057288;3167622 -173;'616;Poland;1865;Industrial roundwood;5922;Export value;1000 USD;3805;2544;3981;5054;9615;5780;4208;3884;5516;6974;5138;5851;13091;25769;32795;28251;25027;25316;35878;51283;52884;32027;31659;50801;52208;45391;68140;40820;41140;26627;53865;68751;37211;103168;44770;19043;28202;24100;27700;22353;18854;36607;58104;63147;41946;43896;44074;47099;70048;142177;158350;196159;256619;234654;177499;170256;192322.92;351107;335747;360584;407055;443458;356038 -173;'616;Poland;1866;Industrial roundwood, coniferous;5516;Production;m3;12855000;12968000;13280000;13345000;13634000;13240000;13558000;14018000;13811000;14402000;14004000;14344000;15649000;16858000;16943000;16691000;17178000;16657000;15719000;16477500;15657000;17681000;19946000;18665000;17430000;17278000;16747000;16359000;15487500;12837000;11543000;14062000;14260500;14314000;15143500;14670000;15652600;16755800;17450400;19163600;17655200;19098000;19965000;21752000;21356900;21655500;25479522;23570685;23420102;24460709;24968830;25062462;25766645;27481828;27937438;29254685;32309678;33205745;30627671;28672094;31171518;31940821;29839139 -173;'616;Poland;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;11161;2274;280;23000;211500;222700;66400;92500;240300;279600;347500;231000;198600;297300;886800;709700;1019546;709191;750555;941219;1660304;862748;1052163;1317953;1377584;1246086;769680;498775;946824;2434119;2321125;2760495;1241566 -173;'616;Poland;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;395;207;30;915;9700;10500;4100;6100;11900;13331;13866;6701;5765;13138;34632;31333;66216;53451;33190;49241;100906;47645;58110;72849;59533;43798;37194.73;35413;46405;110858;153932;234974;98643 -173;'616;Poland;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;215542;648209;689515;420514;787000;116400;164600;173900;163700;243100;238300;204400;591300;845300;897900;505600;359200;266805;279568;899405;1450217;1607318;1680064;2592889;2421666;2216625;2302441;2489349;4702134;3942758;3810977;3323315;4322138;2718021 -173;'616;Poland;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17199;39870;44377;27181;78000;10300;11600;10800;9700;14000;13833;11472;27505;46458;52451;34873;36444;35256;37516;65694;123557;138165;145008;215830;213898;160457;147438;170325.45;310812;305100;322943;347373;342693;281571 -173;'616;Poland;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;11161;2274;280;23000;211500;222700;66400;92500;240300;279600;347500;231000;198600;297300;886800;709700;1019546;709191;750555;941219;1660304;862748;1052163;1317953;1377584;1246086;769680;498775;946824;2434119;2321125;2760495;1241566 -173;'616;Poland;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;395;207;30;915;9700;10500;4100;6100;11900;13331;13866;6701;5765;13138;34632;31333;66216;53451;33190;49241;100906;47645;58110;72849;59533;43798;37194.73;35413;46405;110858;153932;234974;98643 -173;'616;Poland;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;215542;648209;689515;420514;787000;116400;164600;173900;163700;243100;238300;204400;591300;845300;897900;505600;359200;266805;279568;899405;1450217;1607318;1680064;2592889;2421666;2216625;2302441;2489349;4702134;3942758;3810977;3323315;4322138;2718021 -173;'616;Poland;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17199;39870;44377;27181;78000;10300;11600;10800;9700;14000;13833;11472;27505;46458;52451;34873;36444;35256;37516;65694;123557;138165;145008;215830;213898;160457;147438;170325.45;310812;305100;322943;347373;342693;281571 -173;'616;Poland;1867;Industrial roundwood, non-coniferous;5516;Production;m3;1656000;1808000;1836000;1842000;1633000;1983000;2157000;2242000;2291000;2306000;2426000;2384000;2670000;3048000;3261000;3211000;3295000;3408000;3184000;3307000;2630000;2419000;2447000;2530000;2837500;3164000;3474000;4189000;4327500;3195000;3291000;4093000;3968500;4567000;5049500;4945000;5298800;5914900;6203900;6031100;6423100;6648000;7239000;7585000;7174400;7111300;6981437;6898902;7055154;6882292;7231377;7909828;8028404;8195342;7940844;7851404;7754742;8146974;7625396;7250380;7456305;6794203;5969023 -173;'616;Poland;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;639;4675;10250;7238;16000;196300;153800;208600;278500;349800;452700;534500;495400;464100;646000;1122100;1104400;1068917;1158886;1123017;1347317;1758462;1606146;1217928;1315123;1157139;1235905;912795;571945;660220;518570;442518;822233;494833 -173;'616;Poland;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;1211;1396;1191;1285;10200;10908;12245;14900;19200;22954;26634;23804;26772;45871;64249;66170;89478;90466;52258;74327;101718;77833;67999;84191;56982;46681;56395.4;52902;45696;36799;47819;91959;63576 -173;'616;Poland;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;192073;244265;272889;162627;393000;257700;49100;128900;181700;123900;83700;70000;85100;96500;76400;52700;53100;69194;89059;71554;134308;195724;193694;243262;261370;247779;304609;304201;625730;453999;561811;675209;735150;449601 -173;'616;Poland;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9428;13995;24374;10030;25168;34470;7443;17402;14400;13700;8520;7382;9102;11646;10696;7073;7452;8818;9583;4354;18620;20185;51151;40789;20756;17042;22818;21997.47;40295;30647;37641;59682;100765;74467 -173;'616;Poland;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3281;5872;5872;0;300;800;600;700;800;900;1300;500;1000;4400;3300;2400;5919;1035;1111;2107;1557;2276;1898;1549;2069;1158;1686;780;1137;1558;1717;2290;1928 -173;'616;Poland;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;851;808;808;0;300;800;600;600;500;501;798;300;553;1770;1582;2046;4691;999;1934;1414;1566;1318;1706;1209;1352;959;1133.76;847;1176;1359;1771;2286;1856 -173;'616;Poland;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;100;0;0;0;0;0;200;100;100;100;100;4;57;1;7;194;960;4538;73;154;85;946;66;74;163;244;205;144 -173;'616;Poland;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;20;0;0;0;0;0;100;6;27;37;119;6;59;1;6;998;2253;19675;83;230;104;1177.02;100;96;115;182;142;182 -173;'616;Poland;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;639;1394;4378;1366;16000;196000;153000;208000;277800;349000;451800;533200;494900;463100;641600;1118800;1102000;1062998;1157851;1121906;1345210;1756905;1603870;1216030;1313574;1155070;1234747;911109;571165;659083;517012;440801;819943;492905 -173;'616;Poland;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;360;588;383;1285;9900;10108;11645;14300;18700;22453;25836;23504;26219;44101;62667;64124;84787;89467;50324;72913;100152;76515;66293;82982;55630;45722;55261.64;52055;44520;35440;46048;89673;61720 -173;'616;Poland;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;192073;244265;272889;162627;393000;257500;49000;128900;181700;123900;83700;70000;84900;96400;76300;52600;53000;69190;89002;71553;134301;195530;192734;238724;261297;247625;304524;303255;625664;453925;561648;674965;734945;449457 -173;'616;Poland;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9428;13995;24374;10030;25168;34370;7423;17402;14400;13700;8520;7382;9002;11640;10669;7036;7333;8812;9524;4353;18614;19187;48898;21114;20673;16812;22714;20820.45;40195;30551;37526;59500;100623;74285 -173;'616;Poland;1868;Sawlogs and veneer logs;5516;Production;m3;9334000;9269000;9069000;9149000;9433000;9531000;9772000;10073000;9936000;9900000;9642000;10444000;11274000;11663000;12022000;11765000;12112000;11704000;10886000;10945000;10533000;10030000;11446000;10595000;10275000;10047000;10103000;10449000;10470000;8689000;7886000;9145000;9104000;9620000;9664000;9673000;10203600;10543600;11327000;11955000;10728900;10924000;11765000;13076000;12715300;13141700;15771609;14138303;13604135;14319919;14721649;14907691;15268570;16363067;16401651;16796155;17879405;17793710;17030698;16946574;18510057;18532665;17524461 -173;'616;Poland;1868;Sawlogs and veneer logs;5616;Import quantity;m3;1100;1200;6500;6400;11400;56000;75000;61000;73000;68000;33000;32000;45000;40000;45000;44000;34000;130000;104000;117000;69300;70900;104000;80200;74100;90000;103000;140000;89000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -173;'616;Poland;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;218;191;431;526;854;1057;2346;2814;3521;3602;2112;2392;8222;7176;4471;6250;5460;10775;10885;12309;5663;5030;6313;4538;3727;3992;8559;8574;9978;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -173;'616;Poland;1868;Sawlogs and veneer logs;5916;Export quantity;m3;800;800;800;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1500;600;600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -173;'616;Poland;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;58;58;60;80;88;80;92;96;108;115;117;115;149;149;149;149;149;149;149;149;149;82;21;21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -173;'616;Poland;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;8309000;8134000;7979000;8061000;8456000;8358000;8444000;8708000;8534000;8671000;8353000;9076000;9746000;9999000;10243000;10005000;10326000;9881000;9211000;9288000;9170000;8874000;10243000;9309000;8881000;8635000;8587000;8690000;8637000;7338000;6514000;7595000;7508000;7825000;7754000;7623000;8104300;8254000;8808800;9470600;8225600;8527000;9168000;10237000;9953200;10444700;12934333;11517190;11057471;11691348;11877257;11835177;12214663;13235063;13330773;13773367;15005713;14963692;14300000;14200000;15700000;15775241;14993232 -173;'616;Poland;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;101000;68000;88000;63700;64300;87700;67200;64300;83000;91000;126000;82000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -173;'616;Poland;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;4953;3383;5012;4048;3008;3044;1981;1705;1944;2741;3938;3050;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -173;'616;Poland;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;800;800;800;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1500;600;600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -173;'616;Poland;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;58;58;60;80;88;80;92;96;108;115;117;115;149;149;149;149;149;149;149;149;149;82;21;21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -173;'616;Poland;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;1025000;1135000;1090000;1088000;977000;1173000;1328000;1365000;1402000;1229000;1289000;1368000;1528000;1664000;1779000;1760000;1786000;1823000;1675000;1657000;1363000;1156000;1203000;1286000;1394000;1412000;1516000;1759000;1833000;1351000;1372000;1550000;1596000;1795000;1910000;2050000;2099300;2289600;2518200;2484400;2503300;2397000;2597000;2839000;2762100;2697000;2837276;2621113;2546664;2628571;2844392;3072514;3053907;3128004;3070878;3022788;2873692;2830018;2730698;2746574;2810057;2757424;2531229 -173;'616;Poland;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;1100;1200;6500;6400;11400;56000;75000;61000;73000;68000;33000;32000;45000;40000;45000;44000;34000;29000;36000;29000;5600;6600;16300;13000;9800;7000;12000;14000;7000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -173;'616;Poland;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;218;191;431;526;854;1057;2346;2814;3521;3602;2112;2392;8222;7176;4471;6250;5460;5822;7502;7297;1615;2022;3269;2557;2022;2048;5818;4636;6928;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -173;'616;Poland;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -173;'616;Poland;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -173;'616;Poland;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9297300;9901400;10987400;11306100;12600000;13250000;13960000;13640000;13570000;14800000;14610000;15385000;15600000;16015000;16778227;17234645;18051108;18334000;19378000;21192794;22625218;20437371;18364159;19510003;19350045;17625171 -173;'616;Poland;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6171400;6689100;7842500;7785800;8800000;9100000;9790000;9760000;9650000;11050000;10700000;11220000;11650000;11975000;12040239;12393335;13115216;13585000;14597000;16364694;17366632;15600000;13900000;14900000;15411187;14243864 -173;'616;Poland;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3125900;3212300;3144900;3520300;3800000;4150000;4170000;3880000;3920000;3750000;3910000;4165000;3950000;4040000;4737988;4841310;4935892;4749000;4781000;4828100;5258586;4837371;4464159;4610003;3938858;3381307 -173;'616;Poland;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5616;Import quantity;m3;139100;214900;149900;204800;89200;135000;156000;148500;108000;107000;129000;102000;8000;111000;109000;110000;109000;74000;60000;105000;110200;90500;107900;72900;91800;61000;38400;61000;159000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -173;'616;Poland;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5622;Import value;1000 USD;1866;2930;2036;2837;1489;1878;2253;2348;1824;1814;2296;2093;137;2585;2887;3327;3549;2574;2283;4554;5176;3077;2834;1704;1995;1193;924;1156;5904;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -173;'616;Poland;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5916;Export quantity;m3;341700;271300;447300;511800;810900;530800;390000;297700;352000;412000;254000;353000;715000;975000;1047000;1121000;832000;843000;1030000;1168500;1187000;803900;1302900;2100600;2189000;1479000;1181600;1085000;703000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -173;'616;Poland;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5922;Export value;1000 USD;3528;2476;3911;4964;9188;5133;3193;2588;3510;4850;3275;4030;9832;20630;27348;25122;20951;19781;28602;43407;45994;27575;29550;48692;50267;43994;63999;39496;38722;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -173;'616;Poland;1870;Pulpwood and particles (1961-1997);5516;Production;m3;2002000;2135000;2250000;2303000;2109000;2273000;2606000;2688000;2732000;3205000;3172000;3129000;3406000;4490000;4242000;4376000;4647000;4726000;4562000;4794000;4238000;6226000;6746000;6473000;6094000;6144000;5979000;5940000;5247000;4740000;4324000;6016000;6295000;6477000;7630000;7285000;8172900;;;;;;;;;;;;;;;;;;;;;;;;;; -173;'616;Poland;1870;Pulpwood and particles (1961-1997);5616;Import quantity;m3;139100;214900;149900;204800;89200;135000;156000;148500;108000;107000;129000;102000;8000;111000;109000;110000;109000;74000;60000;105000;110200;90500;107900;72900;91800;61000;38400;61000;159000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -173;'616;Poland;1870;Pulpwood and particles (1961-1997);5622;Import value;1000 USD;1866;2930;2036;2837;1489;1878;2253;2348;1824;1814;2296;2093;137;2585;2887;3327;3549;2574;2283;4554;5176;3077;2834;1704;1995;1193;924;1156;5904;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -173;'616;Poland;1870;Pulpwood and particles (1961-1997);5916;Export quantity;m3;341700;271300;447300;511800;810900;530800;390000;297700;352000;412000;254000;353000;715000;975000;1047000;1121000;832000;843000;1030000;1168500;1187000;803900;1302900;2100600;2189000;1479000;1181600;1085000;703000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -173;'616;Poland;1870;Pulpwood and particles (1961-1997);5922;Export value;1000 USD;3528;2476;3911;4964;9188;5133;3193;2588;3510;4850;3275;4030;9832;20630;27348;25122;20951;19781;28602;43407;45994;27575;29550;48692;50267;43994;63999;39496;38722;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -173;'616;Poland;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;1734000;1819000;1897000;1957000;1773000;1840000;2145000;2182000;2182000;2506000;2448000;2420000;2644000;3642000;3320000;3509000;3691000;3768000;3660000;3839000;3544000;5392000;5962000;5693000;5141000;4877000;4485000;4188000;3424000;3339000;2885000;4050000;4430000;4228000;5079000;4891000;5522100;;;;;;;;;;;;;;;;;;;;;;;;;; -173;'616;Poland;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;268000;316000;353000;346000;336000;433000;461000;506000;550000;699000;724000;709000;762000;848000;922000;867000;956000;958000;902000;955000;694000;834000;784000;780000;953000;1267000;1494000;1752000;1823000;1401000;1439000;1966000;1865000;2249000;2551000;2394000;2650800;;;;;;;;;;;;;;;;;;;;;;;;;; -173;'616;Poland;1871;Other industrial roundwood;5516;Production;m3;3175000;3372000;3797000;3735000;3725000;3419000;3337000;3499000;3434000;3603000;3616000;3155000;3639000;3753000;3940000;3761000;3714000;3635000;3455000;4045500;3516000;3844000;4201000;4127000;3898500;4251000;4139000;4159000;4098000;2603000;2624000;2994000;2830000;2784000;2899000;2657000;2574900;2829800;2425900;2252300;2043300;2222000;2189000;2301000;2176000;2055100;1889350;1721284;1486121;1423082;1463558;1286372;1291834;1262995;1142631;931934;992221;933791;784998;611741;607763;852314;658530 -173;'616;Poland;1871;Other industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -173;'616;Poland;1871;Other industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -173;'616;Poland;1871;Other industrial roundwood;5916;Export quantity;m3;14600;600;600;600;21000;21000;25000;50000;80000;70000;48000;45000;103000;118000;100000;56000;73000;85000;95000;96000;94700;53900;32400;49900;35000;33000;40000;29000;37000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -173;'616;Poland;1871;Other industrial roundwood;5922;Export value;1000 USD;219;10;10;10;339;567;923;1200;1898;2009;1746;1706;3110;4990;5298;2980;3927;5386;7127;7727;6741;4370;2088;2088;1941;1397;4141;1324;2418;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -173;'616;Poland;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;2812000;3015000;3404000;3327000;3405000;3042000;2969000;3128000;3095000;3225000;3203000;2848000;3259000;3217000;3380000;3177000;3161000;3008000;2848000;3350500;2943000;3415000;3741000;3663000;3408000;3766000;3675000;3481000;3426500;2160000;2144000;2417000;2322500;2261000;2310500;2156000;2026200;2330400;1952500;1850500;1643800;1771000;1697000;1725000;1643700;1560800;1495189;1353495;1142631;1119361;1116573;1187046;1158647;1131549;1021665;884318;939271;875421;727671;572094;571518;754393;602043 -173;'616;Poland;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;363000;357000;393000;408000;320000;377000;368000;371000;339000;378000;413000;307000;380000;536000;560000;584000;553000;627000;607000;695000;573000;429000;460000;464000;490500;485000;464000;678000;671500;443000;480000;577000;507500;523000;588500;501000;548700;499400;473400;401800;399500;451000;492000;576000;532300;494300;394161;367789;343490;303721;346985;99326;133187;131446;120966;47616;52950;58370;57327;39647;36245;97921;56487 -173;'616;Poland;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -173;'616;Poland;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -173;'616;Poland;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;14600;600;600;600;21000;21000;25000;50000;80000;70000;48000;45000;103000;118000;100000;56000;73000;85000;95000;96000;94700;53900;32400;49900;35000;33000;40000;29000;37000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -173;'616;Poland;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;219;10;10;10;339;567;923;1200;1898;2009;1746;1706;3110;4990;5298;2980;3927;5386;7127;7727;6741;4370;2088;2088;1941;1397;4141;1324;2418;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -173;'616;Poland;1630;Wood charcoal;5510;Production;t;66952;67100;67247;67396;67544;67693;67842;67992;68142;68292;67800;66883;66001;65222;64726;64538;64708;65296;67069;69812;73573;76119;76088;75963;76051;76528;77306;77745;78261;79660;81112;105015;112993;119428;27000;27000;27000;27000;27000;27000;35000;30000;85000;85000;90000;130000;140000;73027;66061;62693;78933;88683;99456;127758;110470;133979;143857;91026;80690;118408;120609;103509;88964 -173;'616;Poland;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;369;156;1100;1900;2200;1200;800;1700;3600;10300;11700;12700;15800;22200;28600;39349;43070;59381;60875;75510;87624;78229;96245;118513;145567;146169;167078;139451;133164;125336;103065;90432 -173;'616;Poland;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;32;240;500;600;400;300;400;601;1197;1500;1787;2942;5115;6851;12411;17636;21874;21609;27160;30224;29563;34060;33213;40812;43096.03;56066;46710;46817;47156;44202;41684 -173;'616;Poland;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24464;32487;40700;32200;33800;37100;35000;35600;40000;48600;45000;59000;59900;59000;63200;62581;64747;64652;71326;81761;102393;107651;118812;129347;161033;168006;183257;133576;169400;148649;118986;99219 -173;'616;Poland;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10181;12429;14298;13700;15000;15200;14300;14200;14133;16359;16003;24331;28242;29662;32864;36654;44695;47446;50454;58187;67981;77021;81217;72638;93520;101609.29;115160;82802;115891;106549;90188;94280 -173;'616;Poland;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1024000;1312000;1691000;1946000;1960000;3264000;3622000;3975000;5452600;6766425;5984091;6429256;6800000;7686552;8348596;8113997;9320538;9677798;9847447;10199102;10523775;9393206;9680239;10210869;14180794;13496109 -173;'616;Poland;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5300;11300;4100;6600;29500;46400;90787;331100;276400;387446;398656;404806;533623;927356;1790235;1346036;1800298;1778684;2018479;1607857;2155120;3004478;2864157;2212766;1663985;698906 -173;'616;Poland;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;600;401;499;600;1579;4053;11800;8666;14159;22394;20790;25934;63004;68023;49708;60360;41715;36281;30202.04;50131;61344;54704;46820;65920;41414 -173;'616;Poland;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78300;109100;111500;116500;119800;273600;352700;390400;550600;659112;650113;647210;704828;200687;118058;594637;910712;854932;683999;845778;868682;665278;567221;469362;396376;319140 -173;'616;Poland;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;5400;4911;6085;7801;14243;19729;24601;47142;60766;62731;63669;71167;14072;8216;45899;60533;45292;28204;24433.31;31410;25741;24531;24638;35357;27980 -173;'616;Poland;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;293000;381000;497000;729200;652807;506963;929256;1547991;2186552;3048596;2613997;3320538;3177798;3047447;2999102;3123775;2693206;2780239;3010869;3523794;3196109 -173;'616;Poland;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1257;387;0;2400;1600;1700;4200;9400;1800;4900;27700;42400;28487;94100;120800;156676;126046;129565;253714;459356;1170235;1123894;1557625;1624541;1943208;1556952;2037819;2786393;2645580;1943817;1459050;532036 -173;'616;Poland;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;39;0;100;100;300;300;400;100;200;300;547;683;2280;2649;5468;4847;2989;6616;16594;36452;38285;50673;33972;33669;28232.83;46343;55545;48399;39955;56307;30820 -173;'616;Poland;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21620;22537;44000;48500;23200;3400;9800;22900;19900;13700;15300;80100;90500;51900;64100;95196;94146;89996;103175;68867;23402;92641;178906;153593;120608;212657;243022;201626;187535;105412;119898;105958 -173;'616;Poland;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;663;598;787;900;500;100;300;1000;501;299;400;1112;2048;1259;2143;4388;5590;4551;5515;4085;2284;7901;12188;7799;5617;9690.7;13678;9975;9499;7805;13521;11180 -173;'616;Poland;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1950000;485000;513000;689000;1024000;1312000;1691000;1946000;1960000;2971000;3241000;3478000;4723400;6113618;5477128;5500000;5252009;5500000;5300000;5500000;6000000;6500000;6800000;7200000;7400000;6700000;6900000;7200000;10657000;10300000 -173;'616;Poland;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2974;7587;0;1900;1100;1300;1100;1900;2300;1700;1800;4000;62300;237000;155600;230770;272610;275241;279909;468000;620000;222142;242673;154143;75271;50905;117301;218085;218577;268949;204935;166870 -173;'616;Poland;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;212;284;0;100;300;300;200;200;301;299;300;1032;3370;9520;6017;8691;17547;17801;19318;46410;31571;11423;9687;7743;2612;1969.21;3788;5799;6305;6865;9613;10594 -173;'616;Poland;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104973;40854;58000;42500;48100;62400;68500;86200;91600;102800;104500;193500;262200;338500;486500;563916;555967;557214;601653;131820;94656;501996;731806;701339;563391;633121;625660;463652;379686;363950;276478;213182 -173;'616;Poland;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2910;830;1404;2000;2400;3300;3700;4400;4410;5786;7401;13131;17681;23342;44999;56378;57141;59118;65652;9987;5932;37998;48345;37493;22587;14742.61;17732;15766;15032;16833;21836;16800 -173;'616;Poland;1605;Sawdust (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;172939;143841 -173;'616;Poland;1605;Sawdust (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7673;8599 -173;'616;Poland;1605;Sawdust (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;253120;164272 -173;'616;Poland;1605;Sawdust (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15618;10429 -173;'616;Poland;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;246722;252514;295819;303454;483120;596400;571603 -173;'616;Poland;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23550;57503;94185;60247;45391;22397;16121 -173;'616;Poland;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1116.61;2499;3223;2350;1724;1940;1995 -173;'616;Poland;1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101414;91929;74728;47253;53751;35372;34237 -173;'616;Poland;1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4488.98;5301;5361;4872;6347;6218;6371 -173;'616;Poland;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1107991;1186978;1394313;1462328;1448302;1327000;1669826;1705000;1352898;1606570;1477791;1444266 -173;'616;Poland;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;324453;112153;67628;78629;83766;132304;188643;251447;176289;269127;366358;338329 -173;'616;Poland;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42245;18280;12098;10141;10956;20074.33;33563;45307;24466;35886;84138;75418 -173;'616;Poland;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;226494;305782;311112;365952;440265;610468;751194;743008;710984;694170;676878;556592 -173;'616;Poland;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45045;62270;65836;62823;64417;94452.16;146681;145662;138081;135684;228232;168280 -173;'616;Poland;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600000;600000;700000;750000;800000;1000000;1200000;1405000;1068789;1284261;1267987;1264471 -173;'616;Poland;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;194592;87060;52204;60945;64969;74150;141166;216668;146090;233644;320088;279576 -173;'616;Poland;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28408;14922;9821;8157;8911;16315.09;27877;40660;21365;30524;72178;64144 -173;'616;Poland;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111730;183940;182545;206426;266260;338917;447022;518605;543030;486741;503100;398625 -173;'616;Poland;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23217;38804;38769;36397;38692;56194.9;89942;104940;104689;95148;169551;121327 -173;'616;Poland;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;507991;586978;694313;712328;648302;327000;469826;300000;284109;322309;209804;179795 -173;'616;Poland;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;129861;25093;15424;17684;18797;58154;47477;34779;30199;35483;46270;58753 -173;'616;Poland;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13837;3358;2277;1984;2045;3759.24;5686;4647;3101;5362;11960;11274 -173;'616;Poland;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;114764;121842;128567;159526;174005;271551;304172;224403;167954;207429;173778;157967 -173;'616;Poland;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21828;23466;27067;26426;25725;38257.25;56739;40722;33392;40536;58681;46953 -173;'616;Poland;1872;Sawnwood;5516;Production;m3;6631000;6662000;6680000;7177000;7207000;7332000;7290300;7556700;7510800;7165100;7373400;7519600;7847000;8059000;8484000;8453700;8259200;8107100;7654600;7386300;6751000;6368000;6762000;6765000;6639000;6645000;6442000;5577000;4878000;4129000;3205000;4082000;4260000;5300000;3842000;3747000;4214000;4320000;4137000;4262000;3083000;3180000;3360000;3743000;3359900;3607200;4416600;3862900;3850400;4220000;4422020;4249000;4320605;4724700;4835189;4944725;5031392;5012843;4993725;4667101;5069098;4814799;4206213 -173;'616;Poland;1872;Sawnwood;5616;Import quantity;m3;40500;182700;93000;128500;175000;172500;168000;274000;226000;241000;351000;239000;222000;249000;246000;229000;258000;246000;186000;188000;191300;213500;169200;159300;222900;172000;138200;144000;119700;108700;131200;25567;22479;35000;127200;219300;197900;233600;307500;378500;458300;495800;423900;530200;668600;540800;804774;917703;651493;714722;897329;745695;668723;818054;953100;982785;1084180;1269416;1373326;1486558;1550963;1485635;834273 -173;'616;Poland;1872;Sawnwood;5622;Import value;1000 USD;1983;8296;4293;5977;8337;7908;7825;11586;10046;11118;16822;13545;15952;16928;25201;26608;28608;29750;24481;27647;31716;50464;15779;13780;17052;12886;12561;9029;8311;1986;3938;6115;9025;12300;24300;45700;42800;49400;54500;65053;71722;84614;90754;125685;167317;194677;297005;332196;211241;227431;316664;253457;256263;297207;260814;265782;297212.94;339888;306268;373361;577659;582009;309936 -173;'616;Poland;1872;Sawnwood;5916;Export quantity;m3;497800;662800;797000;951700;912400;874800;763000;734000;729000;820000;714000;793000;795000;584000;615000;751000;719000;810000;762000;713000;576900;527200;513500;545400;456200;498000;496000;728400;390000;300400;287600;1036096;1305882;1310000;1148100;830900;1003300;1002100;1030200;1100300;756500;788600;944700;868200;655900;603800;624714;481245;416667;508584;475491;478682;589487;725758;715011;833272;884905;1005982;1035260;1178299;1250891;991121;805891 -173;'616;Poland;1872;Sawnwood;5922;Export value;1000 USD;23037;27742;33009;41792;44149;40548;33299;31947;34781;41044;37822;41984;67127;73320;60198;77020;90021;94039;119793;139276;91234;76554;56365;56141;44187;57241;102366;82388;94193;53213;49408;192308;185198;181000;226500;180700;193500;179700;180800;179021;129379;138023;183670;200733;176536;194359;235612;202190;141808;177386;183615;173579;206531;230142;192578;219115;274875.91;329007;318305;401545;515491;488930;385381 -173;'616;Poland;1632;Sawnwood, coniferous;5516;Production;m3;5862000;5770000;5800000;6092000;6184000;6296500;6158150;6382850;6339400;6058550;6189700;6280300;6568000;6736500;7020000;6991850;6888600;6682050;6334800;6123150;5706500;5539500;5963500;5922500;5784000;5731500;5525000;4697500;4058000;3399000;2644000;3556000;3694000;4500000;3065000;2856000;3450000;3538000;3349000;3532000;2478000;2574000;2792000;3102000;2812800;3017900;3769800;3369000;3382700;3765000;3946427;3796000;3873546;4232700;4315003;4355785;4419476;4400468;4430541;4181055;4582684;4327990;3829439 -173;'616;Poland;1632;Sawnwood, coniferous;5616;Import quantity;m3;16550;165850;85000;120300;151000;152000;151000;256000;204000;221000;310000;214500;189500;227000;225000;213000;222000;213000;159500;180000;186300;212400;162100;143400;200700;162000;130200;140000;117700;99800;99800;17940;11578;25000;66000;140800;122800;140000;174400;218900;252800;257100;205000;271100;372000;255000;456285;588746;456974;494940;653667;520633;444903;573186;646320;641582;774214;983939;1105454;1236692;1239066;1218813;681782 -173;'616;Poland;1632;Sawnwood, coniferous;5622;Import value;1000 USD;759;7286;3756;5407;6810;6498;6540;10423;8634;9692;14072;11643;12576;14162;23148;24715;24867;26058;21231;25880;30176;49996;14644;11692;14349;11145;10972;8235;7016;1208;1208;3140;2419;3300;8800;19300;20000;23700;24300;26262;28529;30805;30917;45582;71135;79103;152872;183803;124424;134434;202205;156467;154942;192212;160267;150398;179378.69;221701;200818;251572;427823;440727;208484 -173;'616;Poland;1632;Sawnwood, coniferous;5916;Export quantity;m3;487400;645850;782100;938100;893000;859000;744000;721500;713500;807000;701000;777000;769000;561500;593000;728000;693500;780000;735000;690000;564500;520400;509100;541000;451800;494000;491000;725000;384000;295000;275000;876783;1071908;1132000;884500;592300;746900;704700;722300;785200;522400;560700;684500;643100;478600;457400;494805;358457;340876;415006;380084;393161;502716;637221;622206;708721;705135;822360;845142;957688;964500;732033;588945 -173;'616;Poland;1632;Sawnwood, coniferous;5922;Export value;1000 USD;22312;26773;32094;40846;42678;39288;31916;30757;33302;39402;36076;39644;62007;66255;55253;70785;81080;81058;104625;126323;84598;73371;54823;54473;42165;55065;97908;78387;89196;50425;45388;141515;130239;131000;156200;109500;114000;100100;99700;97730;65438;73512;98874;107280;88618;102136;141880;105004;87564;105170;109275;104486;131882;164871;135137;142167;148040.67;189314;192983;232534;312316;271439;199196 -173;'616;Poland;1633;Sawnwood, non-coniferous;5516;Production;m3;769000;892000;880000;1085000;1023000;1035500;1132150;1173850;1171400;1106550;1183700;1239300;1279000;1322500;1464000;1461850;1370600;1425050;1319800;1263150;1044500;828500;798500;842500;855000;913500;917000;879500;820000;730000;561000;526000;566000;800000;777000;891000;764000;782000;788000;730000;605000;606000;568000;641000;547100;589300;646800;493900;467700;455000;475593;453000;447059;492000;520186;588940;611916;612375;563184;486046;486414;486809;376774 -173;'616;Poland;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;23950;16850;8000;8200;24000;20500;17000;18000;22000;20000;41000;24500;32500;22000;21000;16000;36000;33000;26500;8000;5000;1100;7100;15900;22200;10000;8000;4000;2000;8900;31400;7627;10901;10000;61200;78500;75100;93600;133100;159600;205500;238700;218900;259100;296600;285800;348489;328957;194519;219782;243662;225062;223820;244868;306780;341203;309966;285477;267872;249866;311897;266822;152491 -173;'616;Poland;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;1224;1010;537;570;1527;1410;1285;1163;1412;1426;2750;1902;3376;2766;2053;1893;3741;3692;3250;1767;1540;468;1135;2088;2703;1741;1589;794;1295;778;2730;2975;6606;9000;15500;26400;22800;25700;30200;38791;43193;53809;59837;80103;96182;115574;144133;148393;86817;92997;114459;96990;101321;104995;100547;115384;117834.25;118187;105450;121789;149836;141282;101452 -173;'616;Poland;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;10400;16950;14900;13600;19400;15800;19000;12500;15500;13000;13000;16000;26000;22500;22000;23000;25500;30000;27000;23000;12400;6800;4400;4400;4400;4000;5000;3400;6000;5400;12600;159313;233974;178000;263600;238600;256400;297400;307900;315100;234100;227900;260200;225100;177300;146400;129909;122788;75791;93578;95407;85521;86771;88537;92805;124551;179770;183622;190118;220611;286391;259088;216946 -173;'616;Poland;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;725;969;915;946;1471;1260;1383;1190;1479;1642;1746;2340;5120;7065;4945;6235;8941;12981;15168;12953;6636;3183;1542;1668;2022;2176;4458;4001;4997;2788;4020;50793;54959;50000;70300;71200;79500;79600;81100;81291;63941;64511;84796;93453;87918;92223;93732;97186;54244;72216;74340;69093;74649;65271;57441;76948;126835.23;139693;125322;169011;203175;217491;186185 -173;'616;Poland;1634;Veneer sheets;5516;Production;m3;46000;50000;51000;53000;59000;23000;24000;26000;29000;28000;30000;33000;37000;41000;41000;59000;51000;47000;46000;46000;39000;38000;33000;35000;34000;28000;28000;30000;26000;15000;15000;11000;11000;12000;36000;39000;42000;45000;48000;58000;68000;72000;90000;107000;110000;72300;88741;81712;76477;112002;49044;43111;49809;53502;54334;39359;64582;59077;47140;38894;46340;45025;36027 -173;'616;Poland;1634;Veneer sheets;5616;Import quantity;m3;9600;7000;8500;8300;11000;3000;3000;3600;4300;4200;4700;5100;5200;3500;1100;3000;3000;900;500;700;100;100;100;700;300;300;500;600;1000;4000;11600;3812;5426;5000;8800;14400;12700;13500;15800;19600;20200;21600;23900;29400;35300;31000;39656;39104;32724;32743;33544;40440;50262;47951;47180;53914;74419;73843;73204;74074;120633;92036;86934 -173;'616;Poland;1634;Veneer sheets;5622;Import value;1000 USD;1596;1206;1522;1579;2151;2503;2448;3011;3540;3383;3865;4520;5511;3232;1035;2632;3000;948;619;988;217;145;272;865;371;284;632;670;965;1246;4505;6019;7570;2500;16000;17500;19600;23200;24900;29169;31222;33906;43778;58616;65883;72260;88291;91091;66662;64097;67550;56176;58803;62071;48183;56040;71667.27;84448;78378;81861;108138;142792;140170 -173;'616;Poland;1634;Veneer sheets;5916;Export quantity;m3;100;400;100;100;100;100;100;100;100;100;100;200;200;200;500;700;500;700;600;500;100;100;100;100;100;100;1000;300;13;13;13;3049;4512;5000;8100;9200;6900;7700;13600;13100;12000;16200;18800;20000;24100;23400;25552;24732;17590;18352;15933;18439;16953;18269;17608;17898;13639;12310;13524;14881;20895;16063;13716 -173;'616;Poland;1634;Veneer sheets;5922;Export value;1000 USD;11;48;4;4;4;4;4;4;4;4;4;94;94;94;378;761;620;1025;883;736;191;191;191;191;191;191;579;429;18;18;18;1937;3195;3500;10400;11900;11900;15000;15800;17341;20649;30105;38630;46224;56276;60513;63178;59006;43365;38090;34108;33249;30207;31112;25832;23483;26455.58;31957;31916;33106;45818;55488;54028 -173;'616;Poland;1873;Wood-based panels;5516;Production;m3;359600;407600;439500;547600;591800;775500;847800;902700;940400;1016700;1110200;1173000;1340100;1451100;1648800;1760700;1923300;2060000;1919000;1971000;1775000;1852000;1948000;2019000;2071000;2180000;1998000;2100000;1808000;1380000;1562000;1612000;1726000;1975000;2398000;2614000;3125000;3764000;3988000;4612200;4569000;4822000;5754000;6384000;6627000;7284100;8445335;8031235;7729987;8063580;8346805;8439036;8953962;9147159;9685690;10401133;11017110;11368622;11974387;11807066;13452971;11379527;10386551 -173;'616;Poland;1873;Wood-based panels;5616;Import quantity;m3;100;300;200;2100;1800;28600;63800;98400;168400;235800;189000;269400;346200;450600;446200;475600;437900;345500;419100;377600;351700;294900;220100;167400;181900;294200;297700;284300;385200;75800;35700;42154;28204;104500;304000;463300;744300;690900;451700;668100;823200;924700;1042400;1372600;1488400;1539300;1677823;1847708;1461687;1680586;1549062;1339317;2022553;2169034;2142005;2373646;3062035;3149183;2989883;3138565;3784905;2752243;2351449 -173;'616;Poland;1873;Wood-based panels;5622;Import value;1000 USD;65;67;80;321;202;1709;4046;6100;9701;12753;11533;16973;26991;36633;45879;46753;44772;38609;48160;48591;48264;33339;19558;14912;13666;19104;24942;15690;17969;2700;1746;13005;12630;31597;68600;111700;175400;190300;137600;150754;167484;205235;260675;371484;423284;546111;662775;729881;457425;548175;582604;469415;637581;706581;495180;498000;655616.99;838595;738265;849212;1269087;1094433;936762 -173;'616;Poland;1873;Wood-based panels;5916;Export quantity;m3;28300;41900;52600;77400;85700;146000;164100;184900;194100;178700;134600;209000;266100;203600;147300;209100;233000;268900;266600;245400;192900;130800;171500;165100;236300;266200;319400;357700;345200;429000;366700;208509;187833;234900;443300;412300;585700;861700;1107400;1323600;1480800;1593600;1949400;2271600;2358200;2108900;2249087;2250543;1880292;2131177;2096648;2327506;2351395;2439515;2440937;2606750;2855376;3102829;3151110;3464641;3803272;3442024;2752805 -173;'616;Poland;1873;Wood-based panels;5922;Export value;1000 USD;1898;2284;2826;4274;4568;4452;4508;4959;5492;6041;4658;7062;11844;13445;9747;13044;21681;27117;32667;38209;29085;19171;17585;18209;20470;24704;42124;44125;65063;56667;58335;74453;52544;109150;146900;136200;166400;243900;257700;285272;310328;362661;475635;627292;707647;808644;888268;889388;625718;730921;828110;813878;907232;988785;739395;762019;866366.01;1133685;1066478;1161529;1614450;1719731;1452774 -173;'616;Poland;1640;Plywood and LVL;5516;Production;m3;160000;165000;168300;167700;165700;155800;168400;174400;184400;205200;204900;204300;223100;225700;257800;269000;260300;240000;225000;214000;192000;172000;172000;174000;170000;168000;162000;165000;154000;126000;111000;132000;133000;124000;164000;173000;226000;178000;223000;316000;281000;261000;289000;342000;361300;385000;440324;390951;312072;402406;411196;388240;429736;406218;390444;462272;546467;583166;518746;482953;542856;539360;486408 -173;'616;Poland;1640;Plywood and LVL;5616;Import quantity;m3;100;300;200;1200;300;3000;10000;14000;22000;33000;29000;37000;45000;48000;59000;50000;46000;48000;47000;49000;44000;58900;48100;40800;46000;54000;54000;54800;149000;16200;400;8079;6231;10000;29600;37700;65900;63800;70600;67500;65600;75400;78000;100400;119000;116400;162136;156796;119520;160001;198568;186904;215000;299034;290456;310048;401728;385342;369031;415230;464478;468075;325898 -173;'616;Poland;1640;Plywood and LVL;5622;Import value;1000 USD;65;67;80;209;51;500;1493;1915;2980;4302;4010;6083;8516;8935;18375;15321;13898;15653;16959;17964;16577;16462;10578;8978;7818;9921;12609;7789;8173;1336;207;4316;3051;8783;13200;19000;35600;32200;32000;30271;28629;34906;39310;56665;68897;80427;132210;130982;68300;95002;123815;115991;128107;170093;132319;124921;163988.43;196335;166268;191503;299734;344337;247910 -173;'616;Poland;1640;Plywood and LVL;5916;Export quantity;m3;5100;3000;3500;4200;4000;4000;3000;4000;6000;8000;2000;3000;5000;4000;2000;10000;38000;44000;47200;39000;30500;21700;28200;26300;27500;31000;30000;23000;30000;44000;48900;55614;41246;66000;74400;75900;95300;93200;95000;108600;128200;137500;149000;171100;176700;136700;148001;133411;116599;132613;141400;168917;181187;202734;250426;257056;307308;335983;286245;308620;373976;357139;336896 -173;'616;Poland;1640;Plywood and LVL;5922;Export value;1000 USD;503;295;340;414;401;379;262;356;552;877;290;380;939;1135;550;1828;8900;10631;14176;14836;10656;7569;7812;7294;7360;8786;15392;11452;18959;22608;25029;30273;21732;49000;45400;48000;59800;57900;57100;57636;69128;77113;93652;122148;139837;157118;145906;143000;90258;101073;129149;137186;155046;177704;160342;180937;225289.48;257976;217328;224969;291950;382522;368069 -173;'616;Poland;1607;Laminated Veneer Lumber (LVL);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200000;180000 -173;'616;Poland;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1737;1210 -173;'616;Poland;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2673;1431 -173;'616;Poland;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9531;48670 -173;'616;Poland;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10360;44682 -173;'616;Poland;1646;Particle board and OSB (1961-1994);5516;Production;m3;80000;113700;133100;224000;234400;264600;283700;300600;316500;336000;347700;396000;478000;558000;692000;743000;908000;1086000;1010000;1087000;1040000;1073000;1193000;1244000;1298000;1365000;1216000;1308000;1051000;718000;941000;1008000;1129000;1336000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -173;'616;Poland;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;900;900;11000;33000;60000;81000;87000;86000;115000;176000;231000;203000;263000;237000;141000;214000;169000;142300;104800;97700;52600;53200;96000;101000;92000;105000;22000;30000;29299;14994;85000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -173;'616;Poland;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;112;127;609;1715;3195;4311;3980;4756;6056;12448;18280;14943;19805;18970;10023;18205;16222;14738;7116;4915;2286;2110;3466;4736;3046;4007;441;941;7067;6719;17014;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -173;'616;Poland;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;10000;12000;21100;39100;44000;48000;56000;51000;50000;39000;15000;23000;30000;16000;25000;23000;15000;17000;6000;5000;700;15300;33700;41000;34800;51000;85100;95000;69000;92000;72600;50667;29788;21000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -173;'616;Poland;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;450;550;968;1713;1540;1573;1810;1614;1732;1362;644;997;1576;1060;1480;1352;981;986;391;473;82;1615;2368;2604;2204;3872;12856;10581;10439;7220;9555;11926;5401;24541;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -173;'616;Poland;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1584000;1747000;1972000;2124000;2266000;2681000;2587000;2661000;3298000;3531000;3359600;3885900;4730430;4481400;4241656;4214019;4455381;4466391;4290123;4374922;4409885;4497631;4705459;4888124;5649945;5738550;6332992;5232608;4936312 -173;'616;Poland;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;230200;303500;392200;406300;183700;304200;420100;424000;475200;728200;785400;872900;877919;943077;741463;891882;788210;726006;1304827;1228183;1391962;1612857;2040184;1952670;1747549;1626201;2092521;1392173;1331515 -173;'616;Poland;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39700;54600;72700;67500;37400;41598;53467;52309;65792;119253;139611;206162;219623;238460;153465;197108;205104;178782;306577;281450;241088;253999;345704.84;398577;319168;324849;490798;398984;358504 -173;'616;Poland;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82100;48000;89700;144800;290000;323500;446000;455300;622300;659400;668300;648300;637951;608683;330266;337641;331196;511099;437269;442194;454145;460601;511107;443346;534212;724385;824435;899408;622851 -173;'616;Poland;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24800;21200;35300;44500;54400;64953;84390;84114;111856;135715;141316;159019;187807;183654;84011;85207;104136;144848;132954;134743;108226;104382;117400.59;110073;125216;174932;270836;329998;281916 -173;'616;Poland;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;41000;146000;350000;350000;350000;350000;450000;450000;570000;580000;600000;600000;600000;462174;470081;462094;412988;495647;434555;604254;919757;911404;975394;938055;832614;826887;647392;752619 -173;'616;Poland;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21800;78600;49700;42800;52100;74100;129900;129600;166500;147500;145600;136894;213380;237178;259460;192994;194525;215697;247172;201666;96072;134845;110367;124257;245655;315997;301580;219461 -173;'616;Poland;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2700;8600;5600;3600;4310;6584;13502;19007;35002;31513;52188;51476;66633;54565;74841;64393;51371;60344;62146;36969;18032;27134.4;26459;28469;55934;108981;63078;66211 -173;'616;Poland;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;39200;169900;289800;327800;283000;273300;312800;245000;264300;278000;218556;237205;236641;223040;242057;227383;240608;224472;237858;334647;373214;386511;364100;412740;340623;293668;289143 -173;'616;Poland;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;7800;32200;56500;59039;38804;39807;50606;67138;68896;73918;73380;76796;60522;68714;83540;37990;72244;63508;44809;62426;78226.84;107467;88883;87405;148616;96462;83745 -173;'616;Poland;1874;Fibreboard;5516;Production;m3;119600;128900;138100;155900;191700;355100;395700;427700;439500;475500;557600;572700;639000;667400;699000;748700;755000;734000;684000;670000;543000;607000;583000;601000;603000;647000;620000;627000;603000;536000;510000;472000;464000;515000;650000;653000;781000;1112000;1149000;1265200;1351000;1450000;1717000;1941000;2326100;2413200;2674581;2558884;2714085;2977074;3018134;3171417;3738456;3931464;4281107;4521473;4853780;4921938;4867641;4752949;5750236;4960167;4211212 -173;'616;Poland;1874;Fibreboard;5616;Import quantity;m3;;;;;600;14600;20800;24400;65400;115800;74000;117400;125200;171600;184200;162600;154900;156500;158100;159600;165400;131200;74300;74000;82700;144200;142700;137500;131200;37600;5300;4776;6979;9500;44200;100300;207600;171100;154600;244300;263400;295400;359600;377500;436500;404400;500874;534455;363526;369243;369290;231882;287029;394645;257921;354669;485278;700804;749046;851479;911909;590415;474575 -173;'616;Poland;1874;Fibreboard;5622;Import value;1000 USD;;;;;24;600;838;990;2410;4471;2767;4834;6027;9418;12561;11627;11904;12933;12996;14405;16949;9761;4065;3648;3738;5717;7597;4855;5789;923;598;1622;2860;5800;15700;35400;58500;85000;64600;74575;78804;104518;136566;160564;183263;207334;259466;293806;181095;181224;189292;123271;142553;192892;84804;101048;118789.32;217224;224360;276926;369574;288034;264137 -173;'616;Poland;1874;Fibreboard;5916;Export quantity;m3;13200;26900;28000;34100;37700;94000;105100;129900;138100;131700;117600;183000;231100;183600;120300;176100;180000;207900;213400;201400;161700;93800;109600;97800;174000;184200;204300;239700;246200;293000;245200;102228;116799;147900;286800;288100;361500;453800;432600;563700;623600;727500;865300;1196100;1248900;1045900;1244579;1271244;1196786;1437883;1381995;1420107;1492331;1570115;1498508;1554446;1663747;1936989;1966553;2018896;2264238;1891809;1503915 -173;'616;Poland;1874;Fibreboard;5922;Export value;1000 USD;945;1439;1518;2147;2627;2500;2436;2989;3208;3802;3724;5685;9329;11250;7717;9864;11800;15500;18100;22900;18347;9987;7405;8311;10906;12046;13876;22092;35665;26839;23751;32254;25411;35609;76700;66800;63500;109300;89700;103644;118006;161627;219521;302291;357598;418589;481175;485938;390927;475927;511285;493854;546988;612830;426018;414274;445449.1;658169;635051;674223;903048;910749;719044 -173;'616;Poland;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;296000;285000;310000;289000;249000;258000;242000;243000;251000;300000;313100;307000;302937;215602;195461;168623;158255;164729;199574;218349;107306;118473;114853;117013;102345;90684;76231;79993;84360 -173;'616;Poland;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20700;24100;47700;80500;62000;82500;81500;113400;141900;152400;183600;113600;179251;197353;155777;189114;195706;111787;129149;187079;16824;17986;16511;15626;14520;150600;139030;88135;96846 -173;'616;Poland;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5700;9800;28900;63200;43900;45607;43891;57310;77716;99614;115773;118851;121186;139881;106638;118177;120727;76576;83244;117412;8817;9087;8550.47;9135;8339;87422;87470;63271;91139 -173;'616;Poland;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87300;82400;95700;104600;152400;172200;188000;239800;159800;208500;257300;226500;268811;283074;286457;340745;330428;340633;330366;300937;26776;36686;40294;41664;42373;398400;427478;346806;269861 -173;'616;Poland;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23800;22000;24800;41400;45500;46710;51372;83214;57059;84952;118975;162150;192996;189184;161786;181657;196551;191472;198534;202934;15842;20996;23216.09;25233;24096;242091;311699;287381;220046 -173;'616;Poland;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;168000;196000;294000;637000;702000;768000;850000;900000;1082000;1167000;1506400;1522200;1726384;1760402;1901096;2175727;2218087;2365939;2844569;3068087;3471819;3354000;3511098;3485279;3655906;3177657;3541568;3052304;2666068 -173;'616;Poland;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9600;41200;49000;59500;67500;105900;125600;151500;206200;205300;200100;250800;303311;319922;201712;167962;163325;113461;145550;198468;233704;321896;460021;675717;721170;684300;743197;469598;368410 -173;'616;Poland;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6200;18900;15700;15900;15800;20147;25237;41607;56547;56960;58360;81456;132216;148547;71919;60118;65770;44516;54308;70846;71099;86349;104657.11;203631;212218;183367;273773;208961;166908 -173;'616;Poland;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113300;100400;133700;211500;126200;180800;184400;250800;405200;528000;513600;320000;446663;467354;434243;570600;562767;580452;637614;710536;804406;803736;853774;1094337;1067879;652800;751853;604613;518966 -173;'616;Poland;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42000;32900;24000;51100;28100;37087;43392;54209;127491;163286;179656;183476;203126;205201;144965;186217;222147;208964;236291;271423;253394;247632;265246.9;460807;429354;214328;308585;326908;279224 -173;'616;Poland;1650;Other fibreboard;5516;Production;m3;29000;30800;32200;34600;37300;171600;202400;227000;238000;259000;332000;340000;380000;397000;387000;420000;415000;387000;352000;342000;246000;276000;265000;273000;274000;294000;282000;285000;274000;125000;110000;194000;168000;176000;186000;172000;177000;186000;198000;239200;259000;307000;384000;474000;506600;584000;645260;582880;617528;632724;641792;640749;694313;645028;701982;1049000;1227829;1319646;1109390;1484608;2132437;1827870;1460784 -173;'616;Poland;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;10900;19300;12300;19600;20900;28600;37500;19600;16300;16500;16700;16800;17400;13800;7800;7800;8700;15000;15300;14500;13800;4000;600;1680;383;4500;13900;35000;110900;31100;25100;55900;56300;30500;11500;19800;52800;40000;18312;17180;6037;12167;10259;6634;12330;9098;7393;14787;8746;9461;13356;16579;29682;32682;9319 -173;'616;Poland;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;120;224;138;242;302;471;628;582;566;620;623;705;829;600;300;292;312;717;800;510;608;28;18;560;175;1670;3800;6700;13900;5900;4900;8821;9676;5601;2303;3990;9130;7027;6064;5378;2538;2929;2795;2179;5001;4634;4888;5612;5581.73;4458;3803;6137;8331;15802;6090 -173;'616;Poland;1650;Other fibreboard;5916;Export quantity;m3;8200;4900;4900;4900;4900;45800;51200;63300;67300;64200;57300;89200;112600;89500;54900;76000;76800;88700;91000;85900;69100;40100;46800;35000;74300;78700;87300;102400;105200;125200;104800;25207;22398;20000;86200;105300;132100;137700;154000;210700;251200;236900;300300;459600;478000;499400;529105;520816;476086;526538;488800;499022;524351;558642;667326;714024;769679;800988;856301;967696;1084907;940390;715088 -173;'616;Poland;1650;Other fibreboard;5922;Export value;1000 USD;657;369;418;418;418;500;488;598;642;761;745;1137;1866;2250;1544;2300;2500;3500;3800;3900;3200;1800;2100;1363;2972;3046;3500;5592;9025;6839;5751;9244;4515;3241;10900;11900;14700;16800;16100;19847;23242;24204;34971;54053;58967;72963;85053;91553;84176;108053;92587;93418;112163;138473;156782;145646;156986.11;172129;181601;217804;282764;296460;219774 -173;'616;Poland;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;90600;98100;105900;121300;154400;183500;193300;200700;201500;216500;225600;232700;259000;270400;312000;328700;340000;347000;332000;328000;297000;331000;318000;328000;329000;353000;338000;342000;329000;411000;400000;278000;296000;339000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -173;'616;Poland;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;600;14600;20800;24400;54500;96500;61700;97800;104300;143000;146700;143000;138600;140000;141400;142800;148000;117400;66500;66200;74000;129200;127400;123000;117400;33600;4700;3096;6596;5000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -173;'616;Poland;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;24;600;838;990;2290;4247;2629;4592;5725;8947;11933;11045;11338;12313;12373;13700;16120;9161;3765;3356;3426;5000;6797;4345;5181;895;580;1062;2685;4130;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -173;'616;Poland;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;5000;22000;23100;29200;32800;48200;53900;66600;70800;67500;60300;93800;118500;94100;65400;100100;103200;119200;122400;115500;92600;53700;62800;62800;99700;105500;117000;137300;141000;167800;140400;77021;94401;127900;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -173;'616;Poland;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;288;1070;1100;1729;2209;2000;1948;2391;2566;3041;2979;4548;7463;9000;6173;7564;9300;12000;14300;19000;15147;8187;5305;6948;7934;9000;10376;16500;26640;20000;18000;23010;20896;32368;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -173;'616;Poland;1879;Total fibre furnish;5510;Production;t;437500;454000;458000;462000;474600;527700;535500;542500;539500;801400;826400;963900;1072200;1109000;1071000;1138000;1153000;1150000;1106000;1124000;999000;1014000;1255000;1216100;1194000;1235000;1264000;1280000;1280000;1118000;1104000;1119000;893000;967000;1270000;1369000;1529000;1593000;1626000;1772000;1792000;1899000;2055000;2153000;2313600;2486000;2733006;2751025;2719389;2833255;3050560;3009000;3386011;3716435;3655142;4336934;4535311;4612905;4581292;4864039;5416642;5392632;5149447 -173;'616;Poland;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;83000;105000;158000;211000;185000;167000;182000;245000;225000;230000;242000;249000;229000;153300;174000;148700;180400;211300;181000;224000;204000;197300;94100;94100;131747;102600;131700;211300;192300;194000;180500;238100;269200;294900;398400;419000;478010;501720;417500;509078;662031;670957;947931;1028191;1113719;1311152;1442800;1422586;1509390;1445235;1550584;1507738;1665360;1780777;1751230;1456669 -173;'616;Poland;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;11893;15422;24839;31453;30447;32771;46950;75674;70519;71600;81987;97487;100984;69927;62015;41006;43718;48305;41384;101906;73130;81180;38044;38044;45271;31177;48732;123107;96520;96400;83500;114430;174510;140851;168127;197635;247341;264294;300591;351723;471900;357140;550048;596185;542912;644110;689483;676734;650069;675464.77;889897;724143;627518;883768;1088708;809029 -173;'616;Poland;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;27000;54000;16000;9000;12000;11000;6000;11000;16000;19000;19000;19000;12000;2700;5200;98800;116200;85400;45000;38000;40000;41000;51200;51200;46466;47030;57500;55300;67100;60900;51100;54100;62400;70000;87900;146700;195002;273600;436700;428518;569400;381585;429445;569047;561121;682475;749810;841269;919604;1023926;1091264;1153773;1335518;1491945;1406390;1433453 -173;'616;Poland;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;3143;6883;3097;1762;2225;2694;1300;800;1189;1427;1527;1532;1127;529;2077;18472;18754;16789;9415;16329;10215;14656;17127;17127;21086;14485;23869;40400;28100;25800;19100;17600;22954;18355;17803;30434;43384;49209;63390;80497;113216;57293;106325;151978;108502;162504;228484;226402;252570;295224.18;313941;251370;262061;465058;469857;370055 -173;'616;Poland;1878;Pulp for paper;5510;Production;t;437500;454000;458000;462000;474600;527700;535500;542500;539500;562400;569400;623900;685200;682000;627000;688000;676000;649000;605000;643000;588000;589000;800000;738100;738000;739000;772000;780000;785000;693000;679000;694000;724000;798000;833000;834000;841000;930000;909000;994000;977000;1025000;1029000;1029000;1050900;1062300;1166206;1151025;1145189;1179755;1210360;1151500;1216011;1181435;1159742;1654934;1735411;1720605;1681292;1864039;1966642;1942632;1749447 -173;'616;Poland;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;83000;105000;158000;211000;185000;167000;182000;245000;225000;230000;242000;249000;229000;153300;174000;148700;180400;211300;181000;224000;204000;187300;84100;84100;78615;77300;93100;139200;183000;184300;177700;237400;266000;294000;369700;414400;472410;492020;413700;502224;647796;653114;683254;721546;720652;853457;924252;976485;1030016;1026882;1159572;1082106;1140222;1190603;1298690;1082241 -173;'616;Poland;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;11893;15422;24839;31453;30447;32771;46950;75674;70519;71600;81987;97487;100984;69927;62015;41006;43718;48305;41384;101906;73130;79540;36404;36404;41137;29298;44517;107707;95820;95700;83100;114030;173909;140552;165227;197026;245189;261612;298811;350025;467471;354082;507877;536949;481885;578326;617049;623617;588127;614355.24;845676;688595;592257;796925;1017572;776497 -173;'616;Poland;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;27000;54000;16000;9000;12000;11000;6000;1000;2000;2000;2000;2000;2000;2000;4600;35100;32600;34900;19000;17000;14000;15000;25200;25200;45490;46430;53500;49600;65900;59600;48200;36900;33300;36100;28500;34200;40602;42300;30600;17939;21526;22641;30630;37833;18981;89352;162689;168097;171988;193097;151509;115953;156684;176884;183341;198615 -173;'616;Poland;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;3143;6883;3097;1762;2225;2694;1300;250;389;427;427;427;427;427;1987;13174;14166;13797;7981;13872;8781;13222;15693;15693;20984;14411;23312;39100;27600;25700;18700;15900;19446;15063;11002;15853;20542;21083;16854;13232;15221;12925;24390;27666;12601;59895;126819;127152;134474;149220.95;162555;118171;123448;156134;196950;183488 -173;'616;Poland;1875;Wood pulp;5510;Production;t;469400;486300;489900;496100;504200;554900;591300;623200;626700;636100;640000;689900;751000;758000;693000;761000;761000;724000;662000;734000;641000;644000;852000;783000;783000;790000;815000;829000;834000;734000;721000;740000;767000;842000;879000;877000;884000;954000;912000;994000;977000;1025000;1029000;1027000;1049100;1061200;1055782;1041267;1033756;1079801;1101691;1039800;1107000;1119359;1115234;1630365;1761716;1742656;1622544;1716539;1749182;1728868;1544994 -173;'616;Poland;1875;Wood pulp;5610;Import quantity;t;;;;;;;;83000;105000;158000;211000;185000;167000;182000;245000;225000;230000;242000;249000;229000;153300;174000;148700;180400;211300;181000;224000;204000;187300;84100;84100;81816;87200;104100;143400;189500;188000;180800;250500;265700;293600;367400;414000;467810;489020;414900;499638;643672;647924;678920;717255;718265;850582;925737;983429;1043148;1024832;1161964;1087446;1152142;1194429;1294976;1079584 -173;'616;Poland;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;11893;15422;24839;31453;30447;32771;46950;75674;70519;71600;81987;97487;100984;69927;62015;41006;43718;48305;41384;101906;73130;79540;36404;36404;42801;35243;52191;117000;102420;98700;85300;119930;173709;139954;163527;196281;241696;258776;295930;347368;463785;349183;503838;532003;478156;574815;616427;626259;592962;611041.42;846162;689844;595311;798145;1010720;770977 -173;'616;Poland;1875;Wood pulp;5910;Export quantity;t;;;;;;;;27000;54000;16000;9000;12000;11000;6000;1000;2000;2000;2000;2000;2000;2000;4600;35100;32600;34900;19000;17000;14000;15000;25200;25200;59388;73630;76200;69400;94800;91900;73300;39800;32600;36100;28500;34200;40601;42020;30500;17882;21518;22005;30239;37585;18902;87472;160785;166190;166424;189405;149384;114321;159426;176658;183152;198362 -173;'616;Poland;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;3143;6883;3097;1762;2225;2694;1300;250;389;427;427;427;427;427;1987;13174;14166;13797;7981;13872;8781;13222;15693;15693;29221;29060;35845;56800;44800;42600;31300;17500;19346;15063;11002;15849;20540;20917;16777;13197;15222;12297;24021;27225;11347;57784;124387;125402;131599;146883.98;160781;117319;124681;155795;196609;182853 -173;'616;Poland;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;711000;702400;626611;678289;691241;686809;615534 -173;'616;Poland;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74598;65004;71409;76731;80345;75409;69100 -173;'616;Poland;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35564.89;39623;37428;32208;45073;44016;39374 -173;'616;Poland;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2200;233;320;161;2487;1716;995 -173;'616;Poland;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;982.52;156;162;88;1769;1317;771 -173;'616;Poland;1654;Mechanical wood pulp (1961-2016);5510;Production;t;163600;167900;167400;168700;164400;158300;162900;159900;158700;162800;160800;155000;152000;155000;153000;155000;158000;148000;143000;145000;123000;126000;125000;125000;118000;105000;116000;108000;108000;108000;108000;84000;77000;98000;112000;101000;99000;113000;126000;103000;99000;102000;68000;82000;86200;64500;65354;48875;20290;58800;20000;72000;71000;71333;68593;250900;;;;;;; -173;'616;Poland;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8983;3600;3200;6000;100;0;1500;1600;300;300;900;600;3300;1100;4300;4827;5970;2276;3045;3443;4566;6421;5480;5828;2023;;;;;;; -173;'616;Poland;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3260;1148;677;3800;20;0;500;600;100;100;400;256;1403;436;1894;2508;3188;1033;1429;1814;2230;3249;2514;2210;708;;;;;;; -173;'616;Poland;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;0;0;200;0;0;0;0;0;0;0;1;200;3800;69;0;0;76;0;3;3;351;500;611;;;;;;; -173;'616;Poland;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;0;0;100;0;0;0;0;0;0;4;3;78;127;6;0;0;9;0;4;6;173;221;269;;;;;;; -173;'616;Poland;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;1500;11900;17700;19600;20400;19800;19900;19600;28000;22000;20000;16000;34000;53000;53000;69000;59000;59000;63000;69000;70000;71000;76000;98000;103000;103000;103000;90000;93000;100000;96000;88000;78000;95000;85000;140000;125000;139000;150000;154000;160900;172100;176670;172447;187200;140000;187369;120200;121100;121667;114511;431500;;;;;;; -173;'616;Poland;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6936;1500;2600;3900;5500;4900;4300;11200;23400;13600;5000;20800;22400;26000;18900;18512;30780;62040;52345;61896;61947;63076;48216;63727;69613;;;;;;; -173;'616;Poland;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3046;727;545;3000;2800;2100;1800;4600;11928;5586;1900;8625;9701;10054;17155;12470;17692;25390;30505;34803;30762;32684;25111;31643;29758;;;;;;; -173;'616;Poland;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;200;0;0;0;100;0;0;0;0;0;0;0;0;0;150;1;1;0;2;3;0;0;0;;;;;;; -173;'616;Poland;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;27;0;0;0;0;0;0;0;0;4;0;0;0;0;82;0;1;0;1;1;0;0;0;;;;;;; -173;'616;Poland;1656;Chemical wood pulp;5510;Production;t;270200;281000;285600;288100;298700;343800;339000;345900;343700;362900;369300;430300;486000;486000;435000;499000;461000;431000;402000;423000;400000;400000;610000;543000;549000;562000;576000;573000;573000;481000;467000;519000;553000;599000;625000;645000;664000;722000;698000;751000;753000;784000;811000;791000;802000;824600;813758;819945;826266;881001;894322;847600;914900;880653;873334;877417;935716;961489;937781;981950;995101;983823;884999 -173;'616;Poland;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;83000;105000;158000;211000;185000;167000;182000;245000;225000;230000;242000;249000;229000;153300;174000;148700;180400;211300;181000;224000;204000;187300;84100;84100;60347;71100;86700;123100;177400;178500;170600;223300;240100;277700;359400;390400;440810;460420;389700;474493;605764;582854;623291;651822;648419;779445;867314;903497;954477;948172;1090878;1007794;1059894;1106476;1218430;1009395 -173;'616;Poland;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;11893;15422;24839;31453;30447;32771;46950;75674;70519;71600;81987;97487;100984;69927;62015;41006;43718;48305;41384;101906;73130;79540;36404;36404;32804;26459;42868;97600;93000;92400;79000;107430;160177;132871;160027;186101;229677;247086;275201;330350;441229;321843;471574;495319;443201;537763;585685;586208;553580;574255.21;801504;647365;555109;746823;965298;730246 -173;'616;Poland;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;27000;54000;16000;9000;12000;11000;6000;1000;2000;2000;2000;2000;2000;2000;4600;35100;32600;34900;19000;17000;14000;15000;25200;25200;43128;46100;53200;49600;65700;59600;47200;36600;32600;36100;28500;34200;40600;41800;26700;17796;21342;22001;30162;37585;18325;87462;160423;165690;165813;187205;149151;113977;156196;174171;181430;197367 -173;'616;Poland;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;3143;6883;3097;1762;2225;2694;1300;250;389;427;427;427;427;427;1987;13174;14166;13797;7981;13872;8781;13222;15693;15693;19459;14345;23273;39100;27500;25700;18600;15800;19346;15063;11002;15841;20537;20773;16650;13152;15081;12289;24011;27225;11293;57776;124212;125181;131330;145901.46;160625;117146;123022;154026;195280;182082 -173;'616;Poland;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;163600;208100;191700;192500;181000;192700;180400;238600;303000;310000;251000;327000;314000;275000;279000;303000;279000;279000;338000;285000;288000;295000;302000;315000;315000;264000;256000;284000;303000;328000;312500;322500;332000;361000;349000;407000;402000;427000;452000;431000;443000;458200;456366;444653;446000;490000;498000;475000;512300;494000;489134;522000;561000;577000;562669;589170;595101;593823;534999 -173;'616;Poland;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1192;4000;4900;21000;19200;5800;300;5300;2400;4000;2800;2700;7300;15000;4400;4832;6381;4247;8624;6098;8315;7197;8569;10893;8260;3759;6329;11540;19688;7030;7886;4892 -173;'616;Poland;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;630;1120;1269;14700;8500;2400;100;1900;1303;2195;1100;995;2819;6046;2013;3061;3664;2038;5419;4241;4954;4485;5478;6200;4334;2382.55;4693;6184;12873;5692;5945;2705 -173;'616;Poland;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7030;5500;2100;700;0;700;2100;300;0;0;0;0;600;2100;900;1265;2810;1930;2587;1248;357;0;0;0;0;0;0;0;163;0;1271;2294 -173;'616;Poland;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2970;2083;733;100;0;100;500;100;0;0;0;11;366;1035;1072;1322;2024;1191;1974;1013;267;0;0;0;0;0;0;0;91;0;1032;1682 -173;'616;Poland;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;30500;35200;49000;42800;55700;56000;59000;58000;65000;56000;33000;48000;32000;31000;37000;37000;184000;178000;180000;184000;189000;197000;197000;165000;160000;178000;190000;206000;312500;322500;332000;361000;349000;344000;351000;357000;359000;360000;359000;366400;357392;375292;380266;391001;396322;372600;402600;386653;384200;355417;374716;384489;375112;392780;400000;390000;350000 -173;'616;Poland;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84100;84100;32153;49100;63700;73000;120200;151800;160800;208100;226600;262500;344900;376300;428200;436000;380400;465835;591548;575299;611407;642710;634123;758678;844267;874312;933438;936382;1076100;993436;1033911;1096836;1204340;1000305 -173;'616;Poland;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36404;36404;16250;17889;34258;59500;62300;80300;73700;100800;151858;125389;153526;178449;222278;234695;267670;322225;429261;315402;462357;487065;431880;521811;569744;567492;540120;564964.69;788685;637434;536723;736927;951729;722224 -173;'616;Poland;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25200;25200;35440;40500;51000;48900;65000;58900;45100;36300;32600;35900;25700;25200;35100;39200;25800;15808;18409;18888;26481;36321;17518;87419;160406;165611;165784;187126;148487;113922;154938;173658;179297;193260 -173;'616;Poland;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15693;15693;16170;12256;22498;39000;27200;25600;18100;15700;19346;14963;9602;11033;17382;19444;15578;10927;12913;10300;20975;26171;10720;57729;124181;125056;131297;145805.26;159603;117046;121943;153737;193879;179977 -173;'616;Poland;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -173;'616;Poland;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8031;8449;2818;6295;2610;6204;4198 -173;'616;Poland;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6907.96;8126;3747;5513;4204;7624;5317 -173;'616;Poland;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;664;55;1095;513;862;1813 -173;'616;Poland;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96.2;1022;100;988;289;369;423 -173;'616;Poland;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;135100;135700;57100;58700;54900;52500;52100;49100;38000;35000;37000;34000;29000;34000;22000;25000;24000;24000;32000;25000;25000;26000;27000;19000;19000;17000;17000;19000;20000;22000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -173;'616;Poland;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1462;3100;7900;6400;1700;1000;500;100;500;1000;600;100;10;20;300;2;3;12;38;2;1;2;2;3;0;;;;;;; -173;'616;Poland;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;566;879;2132;3000;700;300;100;30;100;200;100;32;9;15;202;15;16;53;85;14;8;18;19;30;33;;;;;;; -173;'616;Poland;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117;0;0;0;400;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -173;'616;Poland;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;0;0;0;200;0;0;0;0;0;0;12;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -173;'616;Poland;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;;;59700;59500;58800;74900;81100;86600;86000;83000;82000;82000;85000;74000;69000;64000;60000;60000;56000;55000;56000;57000;58000;42000;42000;35000;34000;38000;40000;43000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -173;'616;Poland;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25540;14900;10200;22700;36300;19900;9000;9800;10600;10200;11100;11300;5300;9400;4600;3824;7832;3296;3222;3012;5980;13568;14476;18289;12779;;;;;;; -173;'616;Poland;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15358;6571;5209;20400;21500;9400;5100;4700;6916;5087;5301;6625;4571;6330;5316;5049;8288;4350;3713;3999;6359;11449;10444;12486;9093;;;;;;; -173;'616;Poland;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;541;100;100;0;300;0;0;0;0;200;2800;9000;4900;500;0;723;123;1183;1094;16;450;43;17;79;29;;;;;;; -173;'616;Poland;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;249;6;42;0;100;0;0;0;0;100;1400;4785;2789;294;0;903;144;798;1062;41;306;47;31;125;33;;;;;;; -173;'616;Poland;1667;Dissolving wood pulp;5510;Production;t;35600;37400;36900;39300;39600;40900;71700;97800;103900;90600;90000;85000;85000;95000;85000;91000;108000;92000;64000;97000;59000;59000;54000;46000;46000;52000;47000;50000;50000;42000;43000;47000;44000;45000;46000;43000;43000;24000;3000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;45706;58796;70548;115000;78767;58152;56300;62840;58236;44461 -173;'616;Poland;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5550;11000;11600;10400;6500;4600;4400;14400;1900;2000;2100;2200;1300;1500;2000;1806;1158;754;239;94;3333;1640;4727;10377;17035;2062;6082;8243;15517;7608;1137;1089 -173;'616;Poland;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3691;6909;8101;12600;6600;4200;4000;7300;1504;1397;1200;1299;915;1200;1680;2040;1676;917;330;67;1963;1119;3117;6198;8916;1221.33;5035;5051;7994;6249;1406;1357 -173;'616;Poland;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16260;27400;22800;19800;28900;32300;26000;3200;0;0;0;0;0;20;0;17;26;3;0;0;572;4;11;0;0;0;0;24;3069;0;6;0 -173;'616;Poland;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9762;14682;12545;17700;17200;16900;12700;1700;0;0;0;0;0;66;0;39;59;8;0;0;49;1;2;0;0;0;0;11;1571;0;12;0 -173;'616;Poland;1668;Pulp from fibres other than wood;5510;Production;t;3700;5100;5000;5200;10000;13700;15900;17100;16700;16900;19400;19000;19200;19000;19000;18000;23000;17000;7000;6000;6000;4000;2000;1100;1000;1000;4000;1000;1000;1000;1000;1000;1000;1000;0;0;0;0;0;0;0;0;0;2000;1800;1100;110424;109758;111433;99954;108669;111700;109011;107782;103304;95117;88695;56716;116900;203800;280300;272000;248914 -173;'616;Poland;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2349;1100;600;6200;0;900;1300;1300;2200;2400;4400;2600;5900;4500;800;4392;5282;5944;4573;4385;5720;4515;3242;3433;3903;4112;3690;2903;3597;3782;4851;3746 -173;'616;Poland;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2027;964;427;3307;0;1200;1800;1400;1704;1995;2900;2044;4408;4036;4561;4697;5362;5816;4369;5013;5692;4630;3739;3556;4081;4535.14;4549;3802;4940;5029;8258;6877 -173;'616;Poland;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2362;200;100;0;0;0;900;300;700;0;0;0;1;300;100;74;34;639;391;248;651;1884;1915;1907;5564;3692;2125;1656;327;226;195;253 -173;'616;Poland;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1525;33;12;0;0;0;100;100;100;0;0;4;2;232;77;74;58;636;369;441;1303;2112;2434;1750;2875;2336.97;1774;863;338;339;353;635 -173;'616;Poland;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;800;1000;2000;3900;3000;800;600;300;6359;7781;7364;8137;9840;14541;9035;9492;7346;7438;10805;12242;10135;9569;11605;9312;9835 -173;'616;Poland;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;400;401;599;1200;1797;359;274;2157;3220;4002;3476;3966;6180;8921;5802;5729;3613;3445;5024.37;6196;5038;4555;5803;5362;5423 -173;'616;Poland;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;800;1000;2000;2900;2600;800;0;0;197;118;1819;103;90;4165;6968;2851;2841;3514;8008;11853;10592;9214;6164;4557;6898 -173;'616;Poland;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;100;100;200;300;342;88;0;0;37;84;126;70;20;1665;3120;1680;1320;1550;3659.82;6237;5399;5477;4180;3551;4765 -173;'616;Poland;1669;Recovered paper;5510;Production;t;;;;;;;;;;239000;257000;340000;387000;427000;444000;450000;477000;501000;501000;481000;411000;425000;455000;478000;456000;496000;492000;500000;495000;425000;425000;425000;169000;169000;437000;535000;688000;663000;717000;778000;815000;874000;1026000;1124000;1262700;1423700;1566800;1600000;1574200;1653500;1840200;1857500;2170000;2535000;2495400;2682000;2799900;2892300;2900000;3000000;3450000;3450000;3400000 -173;'616;Poland;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;10000;10000;53132;25300;38600;72100;9300;9700;2800;700;3200;900;28700;4600;5600;9700;3800;6854;14235;17843;264677;306645;393067;457695;518548;446101;479374;418353;391012;425632;525138;590174;452540;374428 -173;'616;Poland;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1640;1640;1640;4134;1879;4215;15400;700;700;400;400;601;299;2900;609;2152;2682;1780;1698;4429;3058;42171;59236;61027;65784;72434;53117;61942;61109.54;44221;35548;35261;86843;71136;32532 -173;'616;Poland;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;10000;14000;17000;17000;17000;10000;700;600;63700;83600;50500;26000;21000;26000;26000;26000;26000;976;600;4000;5700;1200;1300;2900;17200;29100;33900;59400;112500;154400;231300;406100;410579;547874;358944;398815;531214;542140;593123;587121;673172;747616;830829;939755;1037820;1178834;1315061;1223049;1234838 -173;'616;Poland;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;550;800;1000;1100;1105;700;102;90;5298;4588;2992;1434;2457;1434;1434;1434;1434;102;74;557;1300;500;100;400;1700;3508;3292;6801;14581;22842;28126;46536;67265;97995;44368;81935;124312;95901;102609;101665;99250;118096;146003.23;151386;133199;138613;308924;272907;186567 -173;'616;Poland;1876;Paper and paperboard;5510;Production;t;689200;721200;756200;799900;815600;837400;853600;866500;887800;961400;1038700;1106400;1156000;1212000;1323000;1324000;1361000;1326000;1247000;1277000;1125000;1182000;1231000;1257000;1292000;1327000;1380000;1448000;1406000;1064000;1066000;1147000;1183000;1326000;1352000;1360000;1486000;1718000;1839000;1934000;2086007;2342000;2461000;2634700;2731900;2857100;2992000;3055400;3274957;3699800;3755600;3821802;4105513;4278384;4399344;4693902;4779031;4856027;4879733;5128862;5323938;5234232;4635594 -173;'616;Poland;1876;Paper and paperboard;5610;Import quantity;t;26700;19400;12600;13600;33300;71000;96000;118000;157000;138120;117000;131000;178000;181000;192000;192000;194000;202000;237000;186000;136700;144100;111200;132400;142100;147000;146000;214000;253800;44100;72300;70007;262500;271100;409900;581900;830900;924700;1064400;1229100;1275800;1475000;1660400;1964700;2157800;2577600;2837858;2843111;2713719;3051637;3133738;3218466;3372840;3584960;3687543;3773405;4168603;4288355;4322588;4677252;5233203;4868940;4579177 -173;'616;Poland;1876;Paper and paperboard;5622;Import value;1000 USD;5201;4494;3512;4170;7307;11893;16528;19922;28000;24508;23669;29492;51058;77760;81876;85995;82937;95868;133252;115125;85913;72960;48004;55296;57856;61045;104475;88224;99598;52598;75457;68922;246949;311568;589900;707700;761200;852400;898100;947832;925402;1045177;1293374;1599595;1693060;2038703;2584364;2780890;2278316;2646510;3095602;2879005;3103950;3286320;2826594;2862843;3266119.98;3711625;3377347;3517004;4494278;5090900;4326359 -173;'616;Poland;1876;Paper and paperboard;5910;Export quantity;t;43700;42100;41200;41800;33000;21100;22100;20100;14100;18100;13000;18000;18000;14000;7000;21000;17000;33000;34000;30000;29000;29900;72400;93100;76500;72100;101000;129000;159000;190200;246900;193336;270900;294500;335500;416200;491200;554900;635500;754100;846000;1124800;1221300;1262200;1407300;1468500;1553250;1496241;1582125;1943792;1966972;2111206;2169999;2206444;2165493;2202960;2301736;2449097;2425412;2473949;2555558;2573764;2270470 -173;'616;Poland;1876;Paper and paperboard;5922;Export value;1000 USD;7567;7198;6324;6109;4867;3194;4129;2803;1944;2604;2447;3787;4346;4670;2553;7104;6215;10770;13620;13771;12303;12403;21284;27859;23730;24035;60855;56803;95890;81178;93163;155730;95901;117045;240500;243800;268200;316600;349700;472012;496169;689017;859919;992266;1091025;1215615;1477497;1572855;1405607;1702020;2060678;1992512;2136246;2142766;1778114;1770998;1991162.35;2408942;2159536;2095961;2597164;3053342;2420841 -173;'616;Poland;2042;Graphic papers;5510;Production;t;233100;237700;242300;246800;252800;252400;257500;262600;270100;276000;289600;286800;286000;292000;293000;302000;317000;302000;286000;290000;255000;268000;291000;291000;298000;317000;365000;381000;345000;268000;294000;323000;330000;404000;484000;517000;565000;594000;667000;590000;759007;733000;900000;950000;907000;1012600;1005787;1054707;981461;880864;871124;896331;900721;900541;870123;884566;871530;818302;813735;773664;813765;814251;616197 -173;'616;Poland;2042;Graphic papers;5610;Import quantity;t;;;;400;300;11000;28000;30000;41000;36000;27000;58000;74000;91000;94000;97000;71000;68000;92000;64000;60500;61100;59500;70400;70400;64000;52000;52000;38000;12300;8400;22945;109100;105200;233809;330200;456100;501600;565500;648900;642000;639000;780800;895600;970100;1119300;1199847;1252897;1067363;1231623;1236805;1197700;1240649;1286217;1244179;1220392;1301386;1295422;1182656;1177656;1258628;1109568;979193 -173;'616;Poland;2042;Graphic papers;5622;Import value;1000 USD;;;;54;56;1601;4826;5007;7163;5973;4500;11360;17905;35710;38703;39818;29370;29307;47636;36678;31888;25103;18723;23121;23543;22303;30136;26967;19711;6650;9521;20922;66411;68466;276088;328700;336700;424500;443400;472412;476018;472680;634181;769750;813746;954423;1125706;1277935;984162;1072285;1202013;1089723;1144855;1172640;931349;906620;978807.09;1091671;979813;932683;1043219;1230929;1124351 -173;'616;Poland;2042;Graphic papers;5910;Export quantity;t;30700;31100;30200;24600;18000;11100;15100;13100;9100;15100;11000;9000;5000;3000;2000;3000;3000;3000;3000;2000;1100;1100;1100;1100;1100;1100;12000;25000;45000;30100;30400;28610;46600;35400;111475;137700;166700;166900;185700;224900;248400;412000;434400;478600;500000;519800;538085;535853;555729;577256;579607;623529;630214;627579;604270;564764;558283;580123;567180;519999;558022;509519;363589 -173;'616;Poland;2042;Graphic papers;5922;Export value;1000 USD;4719;4785;4155;3122;2138;1351;2330;1452;1066;1988;1940;1992;1549;1005;867;1405;1516;1396;1614;1346;767;767;767;767;767;767;11169;16492;22941;18108;17297;18512;17578;19226;100700;101800;121200;128700;125100;168196;186837;300351;351412;414929;428281;462617;552874;608185;563974;614486;695775;681616;680905;679036;538877;517153;531278.15;622221;588638;525531;631233;700594;475924 -173;'616;Poland;1671;Newsprint;5510;Production;t;78000;79300;76200;76200;78700;73000;83300;87200;86700;87900;87500;87100;83000;86000;83000;83000;84000;89000;91000;91000;82000;76000;83000;86000;82000;59000;69000;22000;8000;25000;64000;61000;46000;68000;95000;86000;80000;92000;149000;211000;211000;217000;191000;217000;220700;191100;204288;170424;166272;148982;148733;149429;141695;125376;109759;112410;85705;53264;63207;11015;0;0;0 -173;'616;Poland;1671;Newsprint;5610;Import quantity;t;;;;400;;4000;5000;4000;7000;15000;17000;21000;26000;36000;38000;43000;43000;40000;45000;36000;42200;44800;45600;49900;53400;49000;35000;39000;30900;8000;2000;513;41000;19500;7900;15300;26100;18200;16100;28400;44700;63800;72600;105300;134200;143600;128559;138897;98008;120812;135506;107977;115443;119063;97118;93570;163649;162805;139716;162500;181681;169959;93200 -173;'616;Poland;1671;Newsprint;5622;Import value;1000 USD;;;;54;;475;663;588;975;2097;2371;3308;4502;8750;10570;12659;12996;12240;15853;14397;18023;13376;10860;11779;13817;13821;14544;15077;9725;2241;953;380;12511;6048;5000;7800;12200;8900;8100;12930;24240;33406;40395;57584;71436;91027;94941;104076;73129;70182;97643;69844;75735;80855;51229;49745;94647.33;103787;86922;88017;98885;129854;75788 -173;'616;Poland;1671;Newsprint;5910;Export quantity;t;22700;23100;23200;21600;17000;11000;15000;13000;9000;15000;9000;5000;1000;;;;;;;;;;;;;;0;;7000;15400;15000;2367;15000;12700;44000;42400;44800;36000;38700;49000;75300;95000;51900;59200;49900;48200;32000;29265;11842;8579;7683;12445;9585;7150;4441;3265;1948;8557;14648;12320;8683;7174;7921 -173;'616;Poland;1671;Newsprint;5922;Export value;1000 USD;2825;2920;2689;2472;1905;1310;2297;1399;1035;1931;1273;757;191;;;;;;;;;;;;;;0;;8358;8269;7956;1177;2226;5107;31300;23000;18800;16400;16700;21651;33617;35206;18417;25106;23412;26376;18773;18609;5261;3915;4243;5982;4763;4153;2662;2017;1213.31;5853;8444;7030;6116;7155;8109 -173;'616;Poland;1674;Printing and writing papers;5510;Production;t;155100;158400;166100;170600;174100;179400;174200;175400;183400;188100;202100;199700;203000;206000;210000;219000;233000;213000;195000;199000;173000;192000;208000;205000;216000;258000;296000;359000;337000;243000;230000;262000;284000;336000;389000;431000;485000;502000;518000;379000;548007;516000;709000;733000;686300;821500;801499;884283;815189;731882;722391;746902;759026;775165;760364;772156;785825;765038;750528;762649;813765;814251;616197 -173;'616;Poland;1674;Printing and writing papers;5610;Import quantity;t;;;;;300;7000;23000;26000;34000;21000;10000;37000;48000;55000;56000;54000;28000;28000;47000;28000;18300;16300;13900;20500;17000;15000;17000;13000;7100;4300;6400;22432;68100;85700;225909;314900;430000;483400;549400;620500;597300;575200;708200;790300;835900;975700;1071288;1114000;969355;1110811;1101299;1089723;1125206;1167154;1147061;1126822;1137737;1132617;1042940;1015156;1076947;939609;885993 -173;'616;Poland;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;56;1126;4163;4419;6188;3876;2129;8052;13403;26960;28133;27159;16374;17067;31783;22281;13865;11727;7863;11342;9726;8482;15592;11890;9986;4409;8568;20542;53900;62418;271088;320900;324500;415600;435300;459482;451778;439274;593786;712166;742310;863396;1030765;1173859;911033;1002103;1104370;1019879;1069120;1091785;880120;856875;884159.76;987884;892891;844666;944334;1101075;1048563 -173;'616;Poland;1674;Printing and writing papers;5910;Export quantity;t;8000;8000;7000;3000;1000;100;100;100;100;100;2000;4000;4000;3000;2000;3000;3000;3000;3000;2000;1100;1100;1100;1100;1100;1100;12000;25000;38000;14700;15400;26243;31600;22700;67475;95300;121900;130900;147000;175900;173100;317000;382500;419400;450100;471600;506085;506588;543887;568677;571924;611084;620629;620429;599829;561499;556335;571566;552532;507679;549339;502345;355668 -173;'616;Poland;1674;Printing and writing papers;5922;Export value;1000 USD;1894;1865;1466;650;233;41;33;53;31;57;667;1235;1358;1005;867;1405;1516;1396;1614;1346;767;767;767;767;767;767;11169;16492;14583;9839;9341;17335;15352;14119;69400;78800;102400;112300;108400;146545;153220;265145;332995;389823;404869;436241;534101;589576;558713;610571;691532;675634;676142;674883;536215;515136;530064.84;616368;580194;518501;625117;693439;467815 -173;'616;Poland;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;168000;173000;127000;182667;172000;194000;175000;76300;108300;99359;138088;83966;8019;14297;13741;12420;18856;18259;13975;23301;13000;13966;7543;9452;10925;12534 -173;'616;Poland;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;155400;180200;205600;199700;186900;212800;206400;184000;230900;296709;362538;344153;337668;350293;336239;335122;331433;317587;303090;258822;219361;188230;198278;187603;177737;199860 -173;'616;Poland;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101900;112400;113367;118805;111319;139134;157348;142190;176495;230490;317039;274151;241013;279918;253617;253715;251101;189481;179372;155251.08;148209;126935;127250;123761;165798;194457 -173;'616;Poland;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;300;1500;1300;600;48200;34500;37100;24000;22311;24788;29646;31345;35899;46412;41867;37534;48663;45174;35072;37905;29329;5688;5550;7001;8326 -173;'616;Poland;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;200;1403;998;600;18970;16869;19621;14097;16066;17244;19148;16677;23217;30720;25003;24443;24788;24016;20884.67;23320;19338;7369;8562;10129;12615 -173;'616;Poland;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;167000;173000;126000;182670;172000;515000;558000;595000;623000;648417;672823;703700;706481;691104;711874;719089;728639;711524;728772;732687;717445;693000;674085;712000;701315;501036 -173;'616;Poland;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47100;52700;56500;54600;73700;84100;115400;145500;175500;166573;158436;146708;182514;173462;168537;186927;206901;223590;193505;203502;204475;189834;184097;209002;215600;206762 -173;'616;Poland;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44200;48000;54528;53467;71112;86334;111618;133437;166890;191983;201916;152626;190812;199333;184813;204561;217633;190996;163085;176827.09;204377;187367;176426;204268;283388;267023 -173;'616;Poland;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126500;142100;165600;165400;310900;328000;377800;403700;435800;453892;466333;508210;520369;515713;542133;553677;555515;526326;488667;493443;503132;492976;475193;512746;457628;315440 -173;'616;Poland;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105800;102800;137825;145838;259144;306801;363669;372182;405501;499399;549888;528677;558929;626121;600530;603865;599002;472388;450181;467583.38;542440;513514;467332;565747;616055;393163 -173;'616;Poland;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;167000;172000;126000;182670;172000;0;0;15000;90200;53723;73372;27523;17382;16990;21287;27517;27670;30581;29409;29837;34593;43562;81021;92313;102011;102627 -173;'616;Poland;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;280900;316500;358400;343000;314600;411300;468500;506400;569300;608006;593026;478494;590629;577544;584947;603157;628820;605884;630227;675413;708781;664876;632781;680342;546272;479371 -173;'616;Poland;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;269500;274900;291587;279506;256843;368318;443200;466683;520011;608292;654904;484256;570278;625119;581449;610844;623051;499643;514418;552081.59;635298;578589;540990;616305;651889;587083 -173;'616;Poland;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3900;4600;8800;6400;5500;6300;7100;9300;11800;29882;15467;6031;16963;20312;22539;25085;27380;24840;27658;27820;30529;30227;26798;31043;37716;31902 -173;'616;Poland;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6100;5400;7317;6384;5401;7224;9285;13066;16643;18636;22444;10888;34965;42194;44384;47274;51438;39039;40939;41596.8;50608;47342;43800;50808;67255;62037 -173;'616;Poland;1675;Other paper and paperboard;5510;Production;t;456100;483500;513900;553100;562800;585000;596100;603900;617700;685400;749100;819600;870000;920000;1030000;1022000;1044000;1024000;961000;987000;870000;914000;940000;966000;994000;1010000;1015000;1067000;1061000;796000;772000;824000;853000;922000;868000;843000;921000;1124000;1172000;1344000;1327000;1609000;1561000;1684700;1824900;1844500;1986213;2000693;2293496;2818936;2884476;2925471;3204792;3377843;3529221;3809336;3907501;4037725;4065998;4355198;4510173;4419981;4019397 -173;'616;Poland;1675;Other paper and paperboard;5610;Import quantity;t;26700;19400;12600;13200;33000;60000;68000;88000;116000;102120;90000;73000;104000;90000;98000;95000;123000;134000;145000;122000;76200;83000;51700;62000;71700;83000;94000;162000;215800;31800;63900;47062;153400;165900;176091;251700;374800;423100;498900;580200;633800;836000;879600;1069100;1187700;1458300;1638011;1590214;1646356;1820014;1896933;2020766;2132191;2298743;2443364;2553013;2867217;2992933;3139932;3499596;3974575;3759372;3599984 -173;'616;Poland;1675;Other paper and paperboard;5622;Import value;1000 USD;5201;4494;3512;4116;7251;10292;11702;14915;20837;18535;19169;18132;33153;42050;43173;46177;53567;66561;85616;78447;54025;47857;29281;32175;34313;38742;74339;61257;79887;45948;65936;48000;180538;243102;313812;379000;424500;427900;454700;475420;449384;572497;659193;829845;879314;1084280;1458658;1502955;1294154;1574225;1893589;1789282;1959095;2113680;1895245;1956223;2287312.89;2619954;2397534;2584321;3451059;3859971;3202008 -173;'616;Poland;1675;Other paper and paperboard;5910;Export quantity;t;13000;11000;11000;17200;15000;10000;7000;7000;5000;3000;2000;9000;13000;11000;5000;18000;14000;30000;31000;28000;27900;28800;71300;92000;75400;71000;89000;104000;114000;160100;216500;164726;224300;259100;224025;278500;324500;388000;449800;529200;597600;712800;786900;783600;907300;948700;1015165;960388;1026396;1366536;1387365;1487677;1539785;1578865;1561223;1638196;1743453;1868974;1858232;1953950;1997536;2064245;1906881 -173;'616;Poland;1675;Other paper and paperboard;5922;Export value;1000 USD;2848;2413;2169;2987;2729;1843;1799;1351;878;616;507;1795;2797;3665;1686;5699;4699;9374;12006;12425;11536;11636;20517;27092;22963;23268;49686;40311;72949;63070;75866;137218;78323;97819;139800;142000;147000;187900;224600;303816;309332;388666;508507;577337;662744;752998;924623;964670;841633;1087534;1364903;1310896;1455341;1463730;1239237;1253845;1459884.19;1786721;1570898;1570430;1965931;2352748;1944917 -173;'616;Poland;1676;Household and sanitary papers;5510;Production;t;;;;;3200;3100;3100;3100;3200;4600;5000;4900;5000;5000;64000;70000;89000;94000;166000;167000;130000;136000;140000;144000;149000;152000;152000;160000;159000;120000;116000;91000;92000;86000;100000;107000;126000;122000;117000;109000;162000;185000;138000;142700;235900;245000;259914;261678;332835;343294;346472;350653;382488;425151;453547;510208;525524;563696;537732;604180;597237;699290;701396 -173;'616;Poland;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;120;3000;2000;2000;4000;4000;4000;4000;4000;5000;4000;2600;2700;1700;2000;2300;2600;3000;6000;8000;8000;16000;14000;1800;1600;2100;4700;8100;10100;20200;24400;31700;36000;39900;41300;44100;42400;67521;84587;50830;45255;49075;69250;81509;87422;96335;152245;133904;101430;98703;147870;128884;119229;129000 -173;'616;Poland;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;91;2262;2267;2761;4136;5090;5907;6000;6010;8000;6447;4400;3876;2000;2198;2344;2700;5000;9000;11700;11700;16000;14000;1501;2573;3900;7200;9200;10600;21200;16940;30624;33806;44718;49268;53705;56136;95115;91468;63405;65167;76841;95446;121865;145654;124128;166643;151236.39;131859;121563;169052;162988;201787;202824 -173;'616;Poland;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4800;3600;6700;8900;15000;19100;17700;19300;20200;36400;28300;16600;13100;18600;16973;26720;26619;26216;23526;22909;40725;54260;57367;69647;58523;71141;48333;54051;49393;49712;42962 -173;'616;Poland;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3986;3322;8600;9000;10400;12400;10400;12028;10873;24304;22184;13463;9928;14479;15881;29677;27932;26584;23283;23455;45713;62205;57357;70292;60554.06;87391;57164;62200;60924;79972;65763 -173;'616;Poland;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;886000;873000;1051000;1089000;1181000;1173000;1252000;1463000;1439000;1563082;1610276;1821824;2337759;2432530;2466692;2708567;2813683;2934653;3094289;3203942;3263527;3380596;3599007;3741586;3587119;3272692 -173;'616;Poland;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;366700;426500;495600;575000;728300;827400;1010500;1125900;1396300;1551699;1481239;1578735;1752865;1815851;1910301;2008258;2159984;2287740;2345547;2674236;2831091;2987625;3286621;3780943;3571269;3410829 -173;'616;Poland;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;307300;319700;337194;381852;463078;568048;717593;764726;967939;1295505;1334017;1169142;1432317;1685012;1543218;1688144;1799708;1612633;1645158;1972950.96;2318117;2123529;2225160;3096744;3468296;2819103 -173;'616;Poland;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;362100;425200;497800;573800;673800;757700;765200;891900;921200;993659;930926;995861;1334798;1356009;1450088;1481879;1511286;1491268;1556891;1669408;1786440;1797755;1884647;1934161;1993046;1843693 -173;'616;Poland;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;168600;204800;268132;291975;362062;484940;560881;646959;728955;902176;929490;805368;1049661;1286332;1190447;1294210;1306933;1105466;1119609;1330183;1634427;1455450;1418565;1813442;2180410;1761964 -173;'616;Poland;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;316000;329700;336500;337600;344900;405100;460600;511300;543000;558000;731000;796000;795000;782000;700000;576000;444000;755000;776000;797000;820000;832000;837000;880000;875000;656000;636000;710000;734000;692000;726000;697000;747000;;;;;;;;;;;;;;;;;;;;;;;;;; -173;'616;Poland;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35800;48900;134332;190700;317100;;;;;;;;;;;;;;;;;;;;;;;;;; -173;'616;Poland;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18554;21920;134284;161100;267100;;;;;;;;;;;;;;;;;;;;;;;;;; -173;'616;Poland;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;;;;;;;11000;5000;18000;14000;30000;31000;28000;27900;28800;71300;92000;75400;71000;89000;104000;114000;160100;216500;164726;213300;251600;209345;259700;300100;;;;;;;;;;;;;;;;;;;;;;;;;; -173;'616;Poland;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;;3665;1686;5699;4699;9374;12006;12425;11536;11636;20517;27092;22963;23268;49686;40311;72949;63070;75866;137218;69829;90865;124689;126400;126900;;;;;;;;;;;;;;;;;;;;;;;;;; -173;'616;Poland;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27000;12000;17810;18460;20020;751000;806000;1020000;915200;999181;1019728;1138825;1546276;1627972;1689256;1904602;2010528;2068403;2199915;2261607;2353104;2414602;2508314;2578585;2488371;2323139 -173;'616;Poland;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;174200;204900;233000;294700;422600;508600;640400;719700;874600;1003212;931474;1006282;1060249;1083770;1137521;1209482;1329370;1430941;1451472;1635356;1763892;1877220;1965306;2275342;2024000;2034311 -173;'616;Poland;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68500;77100;93119;108830;154526;200586;259821;276999;394179;582433;551042;394067;563708;705983;608300;700411;785388;714210;713545;865580.45;1082617;899725;827288;1375992;1483261;1059813 -173;'616;Poland;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;188000;216200;295700;385500;436000;484800;489600;583400;579500;618461;570925;607010;890533;914079;976130;1062130;1096286;1066059;1122298;1161143;1235655;1233574;1340062;1343365;1428078;1377623 -173;'616;Poland;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68300;76200;121887;143743;164128;196561;202407;236706;272243;330823;324793;255074;443360;577451;532331;631525;638247;544229;550259;642940.03;846605;672580;645571;876422;1167134;903709 -173;'616;Poland;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85000;47000;59380;61520;66720;178000;188000;230000;280000;296432;325710;485295;547968;560938;562388;566756;568341;619293;668325;711548;716844;728011;824606;827715;760617;580034 -173;'616;Poland;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96300;100500;121900;128800;196200;207000;244800;279800;365500;351508;364591;356819;404472;439072;451061;474128;501369;526813;569855;636895;649045;684750;778485;868163;923664;810529 -173;'616;Poland;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;176200;173300;168096;185639;229839;272216;350485;378963;437414;524050;582119;575115;607583;668828;636253;671180;713417;629403;670665;746084.82;801516;812693;923990;1089975;1244384;1146312 -173;'616;Poland;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51100;80000;85400;87100;105800;129700;150900;161500;214600;245134;247862;284871;288621;281431;318582;258610;246412;247104;262777;314614;331788;338591;330296;354225;340977;258385 -173;'616;Poland;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35900;64300;84800;96760;128222;197522;277678;315466;366774;454379;490954;467347;473116;541140;516758;510338;505059;417895;436250;516010.14;579959;579959;592420;708794;738532;618225 -173;'616;Poland;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;774000;814000;973810;1009020;1094260;240000;253000;203000;213800;218172;254245;155627;194376;203547;176600;192860;189535;191919;138559;140465;101799;140343;153113;209867;214679;258393 -173;'616;Poland;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58900;72700;82800;90800;84200;79400;83600;93600;122500;147311;137321;167308;224094;221332;245531;245384;243683;250596;235779;307614;322837;340883;448128;533390;523830;481002 -173;'616;Poland;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45700;49300;55631;66236;67811;79430;85538;91881;118693;160911;171630;174173;226094;263977;255393;269781;247703;227020;212135;306892.7;372044;362622;426319;564509;659453;548479 -173;'616;Poland;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119900;125900;115600;99100;130700;140200;121000;145300;123900;125654;109172;101749;153149;156147;149537;150586;157796;168612;160795;178854;206659;210788;196383;218683;198365;187173 -173;'616;Poland;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63100;63200;61144;50774;69112;89809;78753;93552;88025;113825;111465;81252;131552;164495;137917;146749;157765;139066;127967;164299.01;201213;195837;172182;218102;258160;226857 -173;'616;Poland;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;4000;5000;10000;30000;49297;10593;42077;49139;40073;38448;44349;45279;55038;87490;90322;91780;97640;112974;125419;123452;111126 -173;'616;Poland;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37300;48400;57900;60700;25300;32400;41700;32800;33700;49668;47853;48326;64050;71677;76188;79264;85562;79390;88441;94371;95317;84772;94702;104048;99775;84987 -173;'616;Poland;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16900;20000;20348;21147;10902;15816;21749;16883;17653;28111;29226;25787;34932;46224;43272;46772;53200;42000;48813;54392.99;61940;48489;47563;66268;81198;64499 -173;'616;Poland;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3100;3100;1100;2100;1300;3000;3700;1700;3200;4410;2967;2231;2495;4352;5839;10553;10792;9493;11021;14797;12338;14802;17906;17888;25626;20512 -173;'616;Poland;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1300;1100;301;698;600;1048;2043;1235;1913;3149;2278;1695;1633;3246;3441;5598;5862;4276;5133;6933.82;6650;7074;8392;10124;16584;13173 -173;'616;Poland;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;243600;252200;256500;263200;269600;275700;283500;303400;322000;357000;235000;156000;160000;148000;95000;244000;296000;23000;24000;25000;25000;26000;26000;27000;27000;20000;20000;23000;27000;144000;42000;39000;48000;116000;182000;184000;76000;243000;250000;290000;126000;160500;163217;128739;138837;137883;105474;108126;113737;139009;141021;204839;178035;210502;147670;152011;171350;133572;45309 -173;'616;Poland;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;88000;116000;102000;87000;71000;102000;86000;94000;91000;119000;130000;140000;118000;73600;80300;50000;60000;69400;80400;91000;156000;207800;23800;47900;33062;115800;115400;39659;56300;49600;46300;52200;60200;27100;71700;12300;17300;17700;19600;18791;24388;16791;21894;32007;41215;42424;51337;59289;55221;59077;60412;53604;65105;64748;68874;60155 -173;'616;Poland;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;14915;20837;18444;16907;15865;30392;37914;38083;40270;47567;60551;77616;72000;49625;43981;27281;29977;31969;36042;69339;52257;68187;34248;49936;34000;160483;218609;175628;210700;148200;110000;113800;121286;36908;75613;46427;62984;60883;60205;68038;77470;61607;76741;131736;150618;149086;168318;158484;144422;163125.54;169978;152442;190109;191327;189888;180081 -173;'616;Poland;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6200;3900;7980;9900;9400;6800;6900;12100;3600;2600;900;1800;2300;8900;4533;2742;3916;5522;7830;14680;17181;13319;12588;11658;15522;11393;12144;15252;13982;21487;20226 -173;'616;Poland;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4508;3632;6511;6600;9700;6900;9400;23656;6484;2300;1383;2993;5857;9564;6566;5503;8333;11289;55288;96994;115418;94592;76414;63944;69147.13;64903;58284;89665;91565;92366;117190 -173;'616;Poland;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;794784.3;987813;1128873;1295753;1747322;1795871;1482538 -173;'616;Poland;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8496721.39;9437662;9468749;10213484;12775152;13696898;12988701 -173;'616;Poland;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32564.05;39514;47592;74855;108013;90828;57930 -173;'616;Poland;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;255245.57;276221;285239;343841;405484;420200;326294 -173;'616;Poland;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19895.38;26099;30205;59987;90168;70027;41608 -173;'616;Poland;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125340.76;133016;146733;185694;225773;215408;171022 -173;'616;Poland;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12668.67;13415;17387;14868;17845;20801;16322 -173;'616;Poland;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;129904.82;143205;138506;158147;179711;204792;155272 -173;'616;Poland;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65241.32;80737;82913;88815;152553;180245;132626 -173;'616;Poland;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;437303.2;569961;531118;629916;1037375;1325029;1000290 -173;'616;Poland;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35065.05;38510;45943;50901;64871;79597;67019 -173;'616;Poland;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112050.52;132904;135349;144208;195868;188917;172312 -173;'616;Poland;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105594.16;173987;190561;195068;183417;227116;173733 -173;'616;Poland;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1289660.83;1373824;1385612;1416434;1726717;1946506;1757212 -173;'616;Poland;1636;Glue-laminated timber (glulam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105000;110000 -173;'616;Poland;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10731;14266 -173;'616;Poland;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12316;12386 -173;'616;Poland;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22956;19606 -173;'616;Poland;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37112;25072 -173;'616;Poland;1688;Cross-laminated timber (CLT or X-lam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;5000 -173;'616;Poland;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;805 -173;'616;Poland;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;734 -173;'616;Poland;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;506;86 -173;'616;Poland;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;768;162 -173;'616;Poland;1684;I-beams (I-joists);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;205000;205000 -173;'616;Poland;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;744;0 -173;'616;Poland;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;967;0 -173;'616;Poland;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79834;35784 -173;'616;Poland;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65614;50276 -173;'616;Poland;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;480081.94;562675;634420;740668;1040302;1017931;892459 -173;'616;Poland;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5761578.91;6329966;6406024;6870502;8367880;8746866;8860758 -173;'616;Poland;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2881.78;4326;6071;8991;19775;17907;13209 -173;'616;Poland;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86925.36;81801;74982;86048;143632;175971;159108 -173;'616;Poland;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73356;88064;121373;136455;178391;182247;145562 -173;'616;Poland;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;553957;672985;650425;722535;898196;893409;712727 -173;'616;Poland;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1394914.59;1515202;1436929;1550661;1796237;1935344;1826093 -173;'616;Poland;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2402156.35;2748872;2833616;2978385;3509285;3952805;4012182 -173;'616;Poland;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30661.08;28810;24385;30483;46611;54270;43072 -173;'616;Poland;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8309.44;10297;11426;12936;16797;24345;19268 -173;'616;Poland;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;251648.53;264936;259662;281565;309607;350038;337496 -173;'616;Poland;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;495532.1;568734;567314;578803;687649;673047;499164 -173;'616;Poland;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;228864.02;244515;150985;148904;163847;193450;173864 -173;'616;Poland;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;461034.83;531131;557829;597123;583717;763569;901955 -173;'616;Poland;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;543732;586878;591293;632474;729845;758596;689488 -173;'616;Poland;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;987469;1117543;1138946;1201224;1483840;1665895;1745805 -173;'616;Poland;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;340008.97;390063;410604;457235;546327;578990;582173 -173;'616;Poland;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;449810.99;521167;558101;588299;737282;825949;845990 -174;'620;Portugal;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2391164.8;2661292;2590434;2333120;2918496;3548126;3246842 -174;'620;Portugal;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4274539.44;4808954;4518024;4071592;4997705;6081861;5443150 -174;'620;Portugal;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;9943;8520;8989;11239;14934;15450;17975;24527;30449;33394;33962;39413;60842;87567;63877;42506;128135;77581;93289;162171;180940;162191;120922;112623;168183;216392;279814;453821;466340;678237;501401;638921;704020;820004;1155504;1133592;1106549;1001111;913537;965044;925757;892419;1007735;1129846;1155889;1207479;1553452;1573682;1276505;1441457;1510918;1235000;1517673;1506258;1467874;1403694;1541955.4;1706807;1590294;1374617;1896895;2274223;1951171 -174;'620;Portugal;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;17612;15872;18295;21897;23550;22591;21400;47054;60267;81790;78648;105833;127119;197927;172879;211374;196736;197487;322555;434556;401047;369288;408099;510447;546317;668708;924465;1123655;1153817;1319244;1112165;1109628;853611;1251798;1748940;1447224;1421647;1232881;1185564;1311009;1186412;1347895;1692396;1686639;1867642;2051898;2518886;2660243;2192299;2051203;3005568;2892956;3169107;3133147;2754362;2677441;2756913.72;3098801;2925565;2556269;3267729;4018264;3236978 -174;'620;Portugal;1861;Roundwood;5516;Production;m3;5900000;5750000;5900000;5900000;6050000;6100000;6040000;5900000;5920000;6370000;6450000;7000000;7300000;7190000;7587000;7830000;8020000;9178000;9150000;8530000;7580000;7792000;8556000;8349000;9292000;9826000;9322000;9339000;10205000;11205000;10809000;10278000;10207000;9819000;9350000;8978000;8978000;8548000;8978000;10831000;8946000;8742000;9673000;10869000;10746238;10804638;10822886;10168749;9564069;9648360;10961419;10710813;10609589;11152372;11399677;13103429;13564816;13332841;13499916;12747924;14497993;14618736;13694733 -174;'620;Portugal;1861;Roundwood;5616;Import quantity;m3;85100;69900;76300;88300;111000;94200;133300;134500;187600;160800;257700;239200;475400;317100;334600;374100;504100;249300;172900;361700;475500;454900;309100;331400;391900;443900;452000;881000;820000;780667;590000;638493;428843;1113000;1638000;1473800;1680000;2123900;1433000;1342139;1152000;911000;469000;364000;363523;337000;747000;521589;473102;856259;1720219;1645780;2322213;2606210;2020664;2136208;2050843;2013159;2053955;2538631;2618392;3134813;3423126 -174;'620;Portugal;1861;Roundwood;5622;Import value;1000 USD;3410;2742;2943;4023;4903;4382;5400;7545;10756;9827;12116;14254;26453;35720;24802;6081;66086;33333;25302;72413;86106;67773;39820;28214;59743;79243;85295;132050;148602;146800;123541;147961;99486;161682;234803;216989;188727;262582;177922;158928;127828;119038;105122;117329;99027;96662;142541;99604;66118;116581;174405;154201;265810;234690;153575;162481;148726.34;149499;159729;193773;255103;340314;339577 -174;'620;Portugal;1861;Roundwood;5916;Export quantity;m3;196000;149700;162800;215400;130500;90000;84800;64500;62000;239400;121100;96000;234000;239100;87000;172100;248200;510200;1003700;725700;304900;312000;182900;336100;625100;497500;598100;451500;538500;377810;456683;652487;579248;644000;799100;483200;646000;585400;557000;570103;812000;822000;1019000;1011000;1279000;1430000;1535000;1346908;616779;1002960;1132572;1007529;1265063;1042955;323837;324340;523409;514177;459302;296063;320331;290376;298232 -174;'620;Portugal;1861;Roundwood;5922;Export value;1000 USD;2146;1818;1918;2487;1856;1365;1274;1205;1127;3443;2151;1949;4081;5657;3481;4390;5408;9575;19496;29437;14042;9972;6134;8925;19150;22861;33025;30897;32433;32457;32188;46999;23951;27733;52271;34883;41905;33260;31397;28147;42791;43053;64318;68805;86192;98548;126465;161003;58931;94893;125788;105667;135573;101707;36097;32924;34466.6;49859;49165;37479;41665;43884;47070 -174;'620;Portugal;1862;Roundwood, coniferous;5516;Production;m3;3950000;3750000;3900000;4000000;4150000;4200000;4100000;4280000;4230000;4480000;4810000;5100000;5200000;5140000;4840000;6220000;6410000;6522000;6292000;5495000;4845000;5057000;5364000;4569000;4752000;5226000;4707000;4804000;5833000;6684000;5726000;5311000;5283000;5107000;5117000;4760000;4760000;4384000;4380000;5182000;3958000;3285000;3532000;4177000;3468403;3700903;3836984;3315666;3619446;3651599;3715292;3047459;2542299;2828311;2988056;4043266;3988823;4291912;4531138;3143233;4195139;4041000;3372000 -174;'620;Portugal;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;308417;224249;220323;456444;280749;367827;544385 -174;'620;Portugal;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17278.63;18383;17936;25860;31369;43916;47846 -174;'620;Portugal;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;283046;62109;89600;53770;65789;58172;54125 -174;'620;Portugal;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14800.01;17084;17919;16623;21641;22328;21165 -174;'620;Portugal;1863;Roundwood, non-coniferous;5516;Production;m3;1950000;2000000;2000000;1900000;1900000;1900000;1940000;1620000;1690000;1890000;1640000;1900000;2100000;2050000;2747000;1610000;1610000;2656000;2858000;3035000;2735000;2735000;3192000;3780000;4540000;4600000;4615000;4535000;4372000;4521000;5083000;4967000;4924000;4712000;4233000;4218000;4218000;4164000;4598000;5649000;4988000;5457000;6141000;6692000;7277835;7103735;6985902;6853083;5944623;5996761;7246127;7663354;8067290;8324061;8411621;9060163;9575993;9040929;8968778;9604691;10302854;10577736;10322733 -174;'620;Portugal;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1742426;1788910;1833632;2082187;2337643;2766986;2878741 -174;'620;Portugal;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;131447.71;131116;141793;167913;223734;296398;291731 -174;'620;Portugal;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;240363;452068;369702;242293;254542;232204;244107 -174;'620;Portugal;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19666.58;32775;31246;20856;20024;21556;25905 -174;'620;Portugal;1864;Wood fuel;5516;Production;m3;3000000;2800000;2700000;2200000;2200000;2000000;1700000;1300000;950000;800000;650000;650000;500000;500000;500000;600000;600000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;550000;550000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;600000;1092029;1047650;1287232;1243714;1716005;2296581;2383259;2473733 -174;'620;Portugal;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2404;9000;8000;6000;3000;1000;2100;1000;1715;43000;10000;1000;0;1523;2000;1000;218;279;932;3496;1819;2562;6458;7103;5664;8365;3085;2789;380;1628;3883;744 -174;'620;Portugal;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112;200;338;641;129;74;117;37;98;1894;464;123;173;83;241;190;188;185;139;366;88;97;147;193;312;387.99;247;199;71;77;163;291 -174;'620;Portugal;1864;Wood fuel;5916;Export quantity;m3;;;;;;2600;1600;1000;800;1700;16600;28500;59500;22200;10200;37800;99700;51400;51400;22500;22500;79000;11800;3100;4700;4500;4500;4500;4500;4500;4500;14464;40248;14000;20000;19500;19000;13400;14000;13180;3000;2000;1000;2000;5000;8000;9000;2192;14409;2094;7346;7228;8292;6173;5492;25930;12909;13959;29915;34552;23747;23536;44739 -174;'620;Portugal;1864;Wood fuel;5922;Export value;1000 USD;;;;;;19;12;7;9;14;209;256;579;306;261;576;1520;790;790;628;628;1964;122;44;20;22;22;22;22;22;22;531;806;344;667;668;587;425;457;372;174;82;110;106;588;1261;1714;2345;3900;447;1003;659;836;854;647;2399;3808.68;2368;2175;2094;1579;1376;1523 -174;'620;Portugal;1627;Wood fuel, coniferous;5516;Production;m3;1700000;1500000;1500000;1200000;1200000;1100000;900000;800000;600000;500000;400000;400000;300000;300000;300000;300000;350000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;150000;150000;164000;185000;185000;185000;185000;185000;185000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;207266;169437;384736;338052;425912;979000;996000;794000 -174;'620;Portugal;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;176;116;90;40;833;2825;286 -174;'620;Portugal;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67.19;82;60;45;62;134;110 -174;'620;Portugal;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12893;13951;13654;213;2440;3439;3070 -174;'620;Portugal;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3801.35;2366;1223;16;257;129;83 -174;'620;Portugal;1628;Wood fuel, non-coniferous;5516;Production;m3;1300000;1300000;1200000;1000000;1000000;900000;800000;500000;350000;300000;250000;250000;200000;200000;200000;300000;250000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;350000;350000;336000;315000;315000;315000;315000;365000;365000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;884763;878213;902496;905662;1290093;1317581;1387259;1679733 -174;'620;Portugal;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8189;2969;2699;340;795;1058;458 -174;'620;Portugal;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;320.8;165;139;26;15;29;181 -174;'620;Portugal;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;8;16261;34339;21307;20097;41669 -174;'620;Portugal;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.34;2;952;2078;1322;1247;1440 -174;'620;Portugal;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2404;9000;8000;6000;3000;1000;2100;1000;1715;43000;10000;1000;0;1523;2000;1000;218;279;932;3496;1819;2562;6458;7103;5664;;;;;;; -174;'620;Portugal;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112;200;338;641;129;74;117;37;98;1894;464;123;173;83;241;190;188;185;139;366;88;97;147;193;312;;;;;;; -174;'620;Portugal;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;2600;1600;1000;800;1700;16600;28500;59500;22200;10200;37800;99700;51400;51400;22500;22500;79000;11800;3100;4700;4500;4500;4500;4500;4500;4500;14464;40248;14000;20000;19500;19000;13400;14000;13180;3000;2000;1000;2000;5000;8000;9000;2192;14409;2094;7346;7228;8292;6173;5492;25930;;;;;;; -174;'620;Portugal;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;19;12;7;9;14;209;256;579;306;261;576;1520;790;790;628;628;1964;122;44;20;22;22;22;22;22;22;531;806;344;667;668;587;425;457;372;174;82;110;106;588;1261;1714;2345;3900;447;1003;659;836;854;647;2399;;;;;;; -174;'620;Portugal;1865;Industrial roundwood;5516;Production;m3;2900000;2950000;3200000;3700000;3850000;4100000;4340000;4600000;4970000;5570000;5800000;6350000;6800000;6690000;7087000;7230000;7420000;8678000;8650000;8030000;7080000;7292000;8056000;7849000;8792000;9326000;8822000;8839000;9705000;10705000;10309000;9778000;9707000;9319000;8850000;8428000;8428000;7948000;8378000;10231000;8346000;8142000;9073000;10269000;10146238;10204638;10222886;9568749;8964069;9048360;10361419;10110813;10009589;10552372;10799677;12011400;12517166;12045609;12256202;11031919;12201412;12235477;11221000 -174;'620;Portugal;1865;Industrial roundwood;5616;Import quantity;m3;85100;69900;76300;88300;111000;94200;133300;134500;187600;160800;257700;239200;475400;317100;334600;374100;504100;249300;172900;361700;475500;454900;309100;331400;391900;443900;452000;881000;820000;780667;590000;636089;419843;1105000;1632000;1470800;1679000;2121800;1432000;1340424;1109000;901000;468000;364000;362000;335000;746000;521371;472823;855327;1716723;1643961;2319651;2599752;2013561;2130544;2042478;2010074;2051166;2538251;2616764;3130930;3422382 -174;'620;Portugal;1865;Industrial roundwood;5622;Import value;1000 USD;3410;2742;2943;4023;4903;4382;5400;7545;10756;9827;12116;14254;26453;35720;24802;6081;66086;33333;25302;72413;86106;67773;39820;28214;59743;79243;85295;132050;148602;146800;123541;147849;99286;161344;234162;216860;188653;262465;177885;158830;125934;118574;104999;117156;98944;96421;142351;99416;65933;116442;174039;154113;265713;234543;153382;162169;148338.35;149252;159530;193702;255026;340151;339286 -174;'620;Portugal;1865;Industrial roundwood;5916;Export quantity;m3;196000;149700;162800;215400;130500;87400;83200;63500;61200;237700;104500;67500;174500;216900;76800;134300;148500;458800;952300;703200;282400;233000;171100;333000;620400;493000;593600;447000;534000;373310;452183;638023;539000;630000;779100;463700;627000;572000;543000;556923;809000;820000;1018000;1009000;1274000;1422000;1526000;1344716;602370;1000866;1125226;1000301;1256771;1036782;318345;298410;510500;500218;429387;261511;296584;266840;253493 -174;'620;Portugal;1865;Industrial roundwood;5922;Export value;1000 USD;2146;1818;1918;2487;1856;1346;1262;1198;1118;3429;1942;1693;3502;5351;3220;3814;3888;8785;18706;28809;13414;8008;6012;8881;19130;22839;33003;30875;32411;32435;32166;46468;23145;27389;51604;34215;41318;32835;30940;27775;42617;42971;64208;68699;85604;97287;124751;158658;55031;94446;124785;105008;134737;100853;35450;30525;30657.92;47491;46990;35385;40086;42508;45547 -174;'620;Portugal;1866;Industrial roundwood, coniferous;5516;Production;m3;2250000;2250000;2400000;2800000;2950000;3100000;3200000;3480000;3630000;3980000;4410000;4700000;4900000;4840000;4540000;5920000;6060000;6422000;6192000;5395000;4745000;4957000;5264000;4469000;4652000;5126000;4607000;4704000;5683000;6534000;5562000;5126000;5098000;4922000;4932000;4575000;4575000;4184000;4180000;4982000;3758000;3085000;3332000;3977000;3268403;3500903;3636984;3115666;3419446;3451599;3515292;2847459;2342299;2628311;2788056;3836000;3819386;3907176;4193086;2717321;3216139;3045000;2578000 -174;'620;Portugal;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8011;7779;1040;5866;108000;181000;314000;144000;166500;118000;180555;138000;57000;70000;44000;92000;58000;172000;178122;103462;102726;134241;107787;187084;365494;419928;247015;308241;224133;220233;456404;279916;365002;544099 -174;'620;Portugal;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;426;477;101;784;5499;8942;17543;5795;9306;6675;8523;7023;4009;3939;4468;6966;6135;12695;14465;6003;8766;8426;7781;16336;18084;20850;14073;17211.44;18301;17876;25815;31307;43782;47736 -174;'620;Portugal;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30326;63171;190310;213000;224000;194000;87800;126000;95200;127000;96752;121000;86000;53000;61000;91000;134000;115000;17579;19884;3920;33564;39849;49431;44946;60588;99064;270153;48158;75946;53557;63349;54733;51055 -174;'620;Portugal;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2461;3569;10658;5855;6562;5826;6070;9839;6636;7717;5624;5968;4584;3826;3477;5564;6900;6881;6508;737;1733;8240;12203;11667;5472;12653;11854;10998.67;14718;16696;16607;21384;22199;21082 -174;'620;Portugal;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8011;7779;1040;5866;108000;181000;314000;144000;166500;118000;180555;138000;57000;70000;44000;92000;58000;172000;178122;103462;102726;134241;107787;187084;365494;419928;247015;308241;224133;220233;456404;279916;365002;544099 -174;'620;Portugal;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;426;477;101;784;5499;8942;17543;5795;9306;6675;8523;7023;4009;3939;4468;6966;6135;12695;14465;6003;8766;8426;7781;16336;18084;20850;14073;17211.44;18301;17876;25815;31307;43782;47736 -174;'620;Portugal;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30326;63171;190310;213000;224000;194000;87800;126000;95200;127000;96752;121000;86000;53000;61000;91000;134000;115000;17579;19884;3920;33564;39849;49431;44946;60588;99064;270153;48158;75946;53557;63349;54733;51055 -174;'620;Portugal;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2461;3569;10658;5855;6562;5826;6070;9839;6636;7717;5624;5968;4584;3826;3477;5564;6900;6881;6508;737;1733;8240;12203;11667;5472;12653;11854;10998.67;14718;16696;16607;21384;22199;21082 -174;'620;Portugal;1867;Industrial roundwood, non-coniferous;5516;Production;m3;650000;700000;800000;900000;900000;1000000;1140000;1120000;1340000;1590000;1390000;1650000;1900000;1850000;2547000;1310000;1360000;2256000;2458000;2635000;2335000;2335000;2792000;3380000;4140000;4200000;4215000;4135000;4022000;4171000;4747000;4652000;4609000;4397000;3918000;3853000;3853000;3764000;4198000;5249000;4588000;5057000;5741000;6292000;6877835;6703735;6585902;6453083;5544623;5596761;6846127;7263354;7667290;7924061;8011621;8175400;8697780;8138433;8063116;8314598;8985273;9190477;8643000 -174;'620;Portugal;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;772656;582221;635049;413977;997000;1451000;1156800;1535000;1955300;1314000;1159869;971000;844000;398000;320000;270000;277000;574000;343249;369361;752601;1582482;1536174;2132567;2234258;1593633;1883529;1734237;1785941;1830933;2081847;2336848;2765928;2878283 -174;'620;Portugal;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;146374;123064;147748;98502;155845;225220;199317;182858;253159;171210;150307;118911;114565;101060;112688;91978;90286;129656;84951;59930;107676;165613;146332;249377;216459;132532;148096;131126.91;130951;141654;167887;223719;296369;291550 -174;'620;Portugal;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;342984;389012;447713;326000;406000;585100;375900;501000;476800;416000;460171;688000;734000;965000;948000;1183000;1288000;1411000;1327137;582486;996946;1091662;960452;1207340;991836;257757;199346;240347;452060;353441;207954;233235;212107;202438 -174;'620;Portugal;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29974;28597;35810;17290;20827;45778;28145;31479;26199;23223;22151;36649;38387;60382;65222;80040;90387;117870;152150;54294;92713;116545;92805;123070;95381;22797;18671;19659.25;32773;30294;18778;18702;20309;24465 -174;'620;Portugal;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;525575;461182;481141;343977;358000;413000;565800;325000;484500;368000;356763;656000;668000;240000;205000;151000;116000;126000;128497;36742;32407;31782;20529;19410;20679;23584;24252;22746;21917;71569;57206;198406;315886;844552 -174;'620;Portugal;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119904;105627;125600;85482;105092;130737;128032;90060;141128;99464;93750;90381;89316;70022;82193;59309;48960;51769;44757;17522;15293;17054;10230;10747;12450;11807;12663;10302.84;11736;14635;23980;92043;146544;108371 -174;'620;Portugal;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1100;1100;1000;3900;2000;2915;12000;2000;5000;6000;4000;3000;3000;1143;1606;4740;4812;3539;2881;1018;5700;7352;4334;8125;5995;5055;5438;3353;3959 -174;'620;Portugal;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;157;181;181;376;1052;781;949;3933;757;1902;2952;1879;1683;1815;1442;804;3336;3353;2135;1614;701;3090;4401;2589.12;4809;3464;2793;3335;1941;2647 -174;'620;Portugal;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;247081;121039;153908;70000;639000;1038000;591000;1210000;1470800;946000;803106;315000;176000;158000;115000;119000;161000;448000;214752;332619;720194;1550700;1515645;2113157;2213579;1570049;1859277;1711491;1764024;1759364;2024641;2138442;2450042;2033731 -174;'620;Portugal;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26470;17437;22148;13020;50753;94483;71285;92798;112031;71746;56557;28530;25249;31038;30495;32669;41326;77887;40194;42408;92383;148559;136102;238630;204009;120725;135433;120824.07;119215;127019;143907;131676;149825;183179 -174;'620;Portugal;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;342984;389012;447713;326000;405000;584000;374800;500000;472900;414000;457256;676000;732000;960000;942000;1179000;1285000;1408000;1325994;580880;992206;1086850;956913;1204459;990818;252057;191994;236013;443935;347446;202899;227797;208754;198479 -174;'620;Portugal;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29974;28597;35810;17290;20670;45597;27964;31103;25147;22442;21202;32716;37630;58480;62270;78161;88704;116055;150708;53490;89377;113192;90670;121456;94680;19707;14270;17070.13;27964;26830;15985;15367;18368;21818 -174;'620;Portugal;1868;Sawlogs and veneer logs;5516;Production;m3;2000000;2000000;2150000;2450000;2500000;2650000;2750000;2800000;2900000;3150000;3300000;3360000;3600000;3350000;3050000;3800000;3900000;5588000;5500000;4450000;3700000;3912000;4161000;3731000;3744000;4025000;3597000;3490000;4142000;4880000;3910000;3989000;3912000;4211000;4189000;3868000;3868000;3372000;3230000;3588000;2575000;2294000;2553000;2246000;2483488;2510488;2674495;2368302;2554228;2578246;2433338;2098100;1632574;1874040;2073226;2094000;1906100;2114988;1936511;1974493;2070768;2037963;1612000 -174;'620;Portugal;1868;Sawlogs and veneer logs;5616;Import quantity;m3;85100;65300;73200;82600;102500;82400;116100;129200;173200;150500;247800;222800;428600;279100;322900;357200;469100;236800;159400;340100;471600;451000;305200;327500;388000;440000;424000;518000;502000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -174;'620;Portugal;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;3410;2545;2785;3758;4457;3812;4779;7212;9926;9216;11607;13267;23275;31406;23135;4110;62166;31643;22848;68670;85613;67280;39327;27721;59250;78750;83922;106406;123602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -174;'620;Portugal;1868;Sawlogs and veneer logs;5916;Export quantity;m3;100;300;400;1100;2000;1100;1100;800;600;600;600;1700;8400;1100;2700;26900;6000;5000;17200;33700;7300;9000;8900;11500;12700;37000;80000;14000;18000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -174;'620;Portugal;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;4;6;8;29;58;35;37;38;32;31;28;70;268;32;92;516;137;172;465;2224;770;625;629;1120;1451;3491;6428;1928;2850;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -174;'620;Portugal;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;1800000;1800000;1950000;2200000;2300000;2400000;2500000;2550000;2650000;2850000;3000000;3100000;3300000;3100000;2800000;3500000;3600000;5080000;5000000;4050000;3400000;3612000;3841000;3331000;3524000;3745000;3377000;3290000;3990000;4700000;3730000;3591000;3521000;3796000;3810000;3500000;3500000;3072000;2961000;3546000;2540000;2215000;2363000;2194000;2369103;2396103;2568194;2265496;2458658;2481777;2342291;2004045;1554603;1844680;2024472;2044000;1847500;1912844;1713484;1737000;1701000;1682000;1262000 -174;'620;Portugal;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;18900;20100;30100;38400;46700;22700;5300;300;100;100;200;300;800;300;3900;200;1200;100;1200;200;900;1000;19600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -174;'620;Portugal;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;539;668;994;1639;1657;940;209;20;5;5;14;15;69;33;76;21;143;143;143;64;245;115;2183;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -174;'620;Portugal;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;100;300;400;1100;2000;1100;1100;800;400;400;400;1600;2300;100;2100;4000;2000;3000;15300;8700;5200;4000;4000;2700;2700;11000;17000;8000;7000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -174;'620;Portugal;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;4;6;8;29;58;35;37;38;20;19;16;68;95;8;77;121;35;54;352;1280;690;472;472;267;267;1732;2614;933;950;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -174;'620;Portugal;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;200000;200000;200000;250000;200000;250000;250000;250000;250000;300000;300000;260000;300000;250000;250000;300000;300000;508000;500000;400000;300000;300000;320000;400000;220000;280000;220000;200000;152000;180000;180000;398000;391000;415000;379000;368000;368000;300000;269000;42000;35000;79000;190000;52000;114385;114385;106301;102806;95570;96469;91047;94055;77971;29360;48754;50000;58600;202144;223027;237493;369768;355963;350000 -174;'620;Portugal;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;66200;45200;43100;44200;55800;59700;110800;128900;173100;150400;247600;222500;427800;278800;319000;357000;467900;236700;158200;339900;470700;450000;285600;327500;388000;440000;424000;518000;502000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -174;'620;Portugal;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;2871;1877;1791;2119;2800;2872;4570;7192;9921;9211;11593;13252;23206;31373;23059;4089;62023;31500;22705;68606;85368;67165;37144;27721;59250;78750;83922;106406;123602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -174;'620;Portugal;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;;;;;;;;;200;200;200;100;6100;1000;600;22900;4000;2000;1900;25000;2100;5000;4900;8800;10000;26000;63000;6000;11000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -174;'620;Portugal;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;;;;;;;;;12;12;12;2;173;24;15;395;102;118;113;944;80;153;157;853;1184;1759;3814;995;1900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -174;'620;Portugal;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4396000;4968000;6463000;5591000;5668000;6340000;7843000;7482750;7514150;7369105;7020447;6229841;6288422;7756600;7710000;8210984;8407000;8407500;9635400;10315366;9593900;9955400;8731920;9701000;9799000;9299000 -174;'620;Portugal;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;962000;1069000;1286000;1068000;720000;819000;1633000;749300;954800;918790;700170;810788;818412;1030100;664000;712784;712000;695300;1714000;1860886;1835000;2336000;852920;1370000;1213000;1166000 -174;'620;Portugal;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3434000;3899000;5177000;4523000;4948000;5521000;6210000;6733450;6559350;6450315;6320277;5419053;5470010;6726500;7046000;7498200;7695000;7712200;7921400;8454480;7758900;7619400;7879000;8331000;8586000;8133000 -174;'620;Portugal;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;1300;3100;3100;14300;3500;12600;9500;6000;2500;1000;5300;5600;13200;13300;1200;600;8700;3900;3900;3900;3900;3900;3900;28000;363000;318000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -174;'620;Portugal;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;60;140;140;465;223;720;575;317;120;66;978;907;1514;1003;90;108;1397;493;493;493;493;493;493;1373;25644;25000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -174;'620;Portugal;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5916;Export quantity;m3;142900;91400;113900;154500;70300;41700;53600;35400;38700;179900;66200;41200;123900;162600;26000;63000;103100;408200;899000;637900;251500;203000;142300;302200;594000;427000;487000;414000;496000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -174;'620;Portugal;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5922;Export value;1000 USD;1337;929;1138;1611;893;519;636;445;464;2096;870;750;1602;3002;591;999;1579;6123;16392;24827;11256;5241;4031;6430;16676;16609;23063;25794;26000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -174;'620;Portugal;1870;Pulpwood and particles (1961-1997);5516;Production;m3;460000;550000;650000;840000;940000;940000;1040000;1300000;1650000;2000000;2100000;2450000;2850000;3000000;3697000;3000000;3100000;2957000;3032000;3480000;3280000;3280000;3795000;4018000;4988000;5241000;5165000;5289000;5503000;5765000;6339000;5608000;5617000;4928000;4480000;4380000;4380000;;;;;;;;;;;;;;;;;;;;;;;;;; -174;'620;Portugal;1870;Pulpwood and particles (1961-1997);5616;Import quantity;m3;;;;1300;3100;3100;14300;3500;12600;9500;6000;2500;1000;5300;5600;13200;13300;1200;600;8700;3900;3900;3900;3900;3900;3900;28000;363000;318000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -174;'620;Portugal;1870;Pulpwood and particles (1961-1997);5622;Import value;1000 USD;;;;60;140;140;465;223;720;575;317;120;66;978;907;1514;1003;90;108;1397;493;493;493;493;493;493;1373;25644;25000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -174;'620;Portugal;1870;Pulpwood and particles (1961-1997);5916;Export quantity;m3;142900;91400;113900;154500;70300;41700;53600;35400;38700;179900;66200;41200;123900;162600;26000;63000;103100;408200;899000;637900;251500;203000;142300;302200;594000;427000;487000;414000;496000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -174;'620;Portugal;1870;Pulpwood and particles (1961-1997);5922;Export value;1000 USD;1337;929;1138;1611;893;519;636;445;464;2096;870;750;1602;3002;591;999;1579;6123;16392;24827;11256;5241;4031;6430;16676;16609;23063;25794;26000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -174;'620;Portugal;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;170000;210000;210000;350000;400000;400000;360000;620000;750000;900000;1200000;1250000;1350000;1500000;1500000;2100000;2150000;1245000;1107000;1280000;1280000;1280000;1358000;1073000;1078000;1331000;1180000;1364000;1643000;1784000;1782000;1375000;1421000;970000;965000;930000;930000;;;;;;;;;;;;;;;;;;;;;;;;;; -174;'620;Portugal;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;290000;340000;440000;490000;540000;540000;680000;680000;900000;1100000;900000;1200000;1500000;1500000;2197000;900000;950000;1712000;1925000;2200000;2000000;2000000;2437000;2945000;3910000;3910000;3985000;3925000;3860000;3981000;4557000;4233000;4196000;3958000;3515000;3450000;3450000;;;;;;;;;;;;;;;;;;;;;;;;;; -174;'620;Portugal;1871;Other industrial roundwood;5516;Production;m3;440000;400000;400000;410000;410000;510000;550000;500000;420000;420000;400000;540000;350000;340000;340000;430000;420000;133000;118000;100000;100000;100000;100000;100000;60000;60000;60000;60000;60000;60000;60000;181000;178000;180000;181000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;180000;179286;180000;180000;181692;171481;302713;166031;271332;318951;282000;295700;336721;364291;325506;429644;398514;310000 -174;'620;Portugal;1871;Other industrial roundwood;5616;Import quantity;m3;;4600;3100;4400;5400;8700;2900;1800;1800;800;3900;13900;45800;32700;6100;3700;21700;11300;12900;12900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -174;'620;Portugal;1871;Other industrial roundwood;5622;Import value;1000 USD;;197;158;205;306;430;156;110;110;36;192;867;3112;3336;760;457;2917;1600;2346;2346;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -174;'620;Portugal;1871;Other industrial roundwood;5916;Export quantity;m3;53000;58000;48500;59800;58200;44600;28500;27300;21900;57200;37700;24600;42200;53200;48100;44400;39400;45600;36100;31600;23600;21000;19900;19300;13700;29000;26600;19000;20000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -174;'620;Portugal;1871;Other industrial roundwood;5922;Export value;1000 USD;805;883;772;847;905;792;589;715;622;1302;1044;873;1632;2317;2537;2299;2172;2490;1849;1758;1388;2142;1352;1331;1003;2739;3512;3153;3561;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -174;'620;Portugal;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;280000;240000;240000;250000;250000;300000;340000;310000;230000;230000;210000;350000;250000;240000;240000;320000;310000;97000;85000;65000;65000;65000;65000;65000;50000;50000;50000;50000;50000;50000;50000;160000;156000;156000;157000;145000;145000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;151410;142901;179414;74912;71631;68284;78000;111000;159332;143602;127401;145139;150000;150000 -174;'620;Portugal;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;160000;160000;160000;160000;160000;210000;210000;190000;190000;190000;190000;190000;100000;100000;100000;110000;110000;36000;33000;35000;35000;35000;35000;35000;10000;10000;10000;10000;10000;10000;10000;21000;22000;24000;24000;35000;35000;30000;30000;30000;30000;30000;30000;30000;30000;30000;29286;30000;30000;30282;28580;123299;91119;199701;250667;204000;184700;177389;220689;198105;284505;248514;160000 -174;'620;Portugal;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;;4600;3100;4400;5400;8700;2900;1800;1800;800;3900;13900;45800;32700;6100;3700;21700;11300;12900;12900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -174;'620;Portugal;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;;197;158;205;306;430;156;110;110;36;192;867;3112;3336;760;457;2917;1600;2346;2346;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -174;'620;Portugal;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;53000;58000;48500;59800;58200;44600;28500;27300;21900;57200;37700;24600;42200;53200;48100;44400;39400;45600;36100;31600;23600;21000;19900;19300;13700;29000;26600;19000;20000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -174;'620;Portugal;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;805;883;772;847;905;792;589;715;622;1302;1044;873;1632;2317;2537;2299;2172;2490;1849;1758;1388;2142;1352;1331;1003;2739;3512;3153;3561;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -174;'620;Portugal;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;3000;3200;5600;5600;5200;5600;7400;9000;12000;19500;16300;16300;20000;20000;16300;16300;16300;16300;16300;16300;16300;16300;16300;0;23000;23000;19000;21000;18000;20000;19000;19000;20000;20753;19458;19386;20804;19389;12478;8770;8770;8770;7118;12019;10000;8139;8539;8800;7000 -174;'620;Portugal;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;136;483;1000;3000;2400;2000;5000;9000;9234;11000;15000;18000;27000;18000;20000;25000;71469;50836;32508;45278;55395;35749;34294;35577;41563;52190;54868;47021;37392;62313;67516;77204 -174;'620;Portugal;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;131;229;741;732;696;1265;2280;2346;2751;3929;5340;8257;5811;6539;10351;10967;12513;14541;16315;12009;15834;15102;13833;14909;18713.38;19454;16220;14011;22893;30035;32741 -174;'620;Portugal;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;0;0;0;3300;3000;3200;5600;5600;5200;5600;7400;9000;12000;19500;16300;15000;20000;20000;13000;8400;7000;4941;2835;1000;100;500;500;0;0;35;0;0;0;0;161;153;2000;352;3237;6677;7819;10646;5331;9238;8963;15403;12147;16047;19247;17998;40415;36118;40680 -174;'620;Portugal;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;0;0;0;253;283;347;683;683;949;1436;1921;2053;2413;3639;3213;3545;4844;5088;2962;2557;2437;1705;939;434;27;71;71;17;21;15;59;43;43;128;81;94;1344;975;1608;2111;3617;2982;1774;2931;3161;6551;4637.24;5616;6998;7459;17397;17497;22422 -174;'620;Portugal;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2049000;1963000;1580000;1527000;1874000;1185000;2343000;1749450;1837850;1929497;1566667;1705602;2035036;1879171;4702516;4098417;3901610;3605354;2590843;2323250;2185897;2042069;1971714;1866678;1865467;1700000 -174;'620;Portugal;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;182400;177000;155144;192000;86000;38000;15000;89000;12000;114000;544759;471097;2436815;2496742;1398100;2083100;2501744;2691657;1800205;1736197;1719308;1997725;863783;1731054;2435301;1838461 -174;'620;Portugal;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7353;6393;4895;4098;3339;2818;2429;5518;1792;8612;43665;37971;117245;138903;112135;158072;174926;195344;121930;123839.95;126461;155168;57777;120775;199925;154086 -174;'620;Portugal;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36800;40000;63610;82000;135000;93000;100000;153000;172000;292000;471665;621535;980303;899428;238299;214779;310850;317912;228436;50565;142380;99236;452071;325028;417035;154621 -174;'620;Portugal;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;616;691;1492;2498;4720;5002;6421;8761;11522;25547;45544;65657;88991;14101;16959;15800;24618;21629;19328;6290.03;13847;13401;21385;13891;17548;22650 -174;'620;Portugal;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;820000;766000;532000;487000;578000;576000;1734000;652000;722400;740358;350994;198410;198410;96964;2264245;1749148;1193864;1274664;1757143;1498300;1271897;1170069;1146714;981678;991467;900000 -174;'620;Portugal;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1422;1000;149000;75000;55400;152000;181100;172000;137398;181000;67000;29000;9000;79000;7000;86000;481561;434000;2328618;2406742;707000;1082000;1267000;1389000;1649376;1727887;1710621;1991804;856864;1706122;2411489;1791664 -174;'620;Portugal;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;131;118;7208;4757;2162;7626;7112;5915;4316;3566;1092;735;387;3791;457;5571;40009;35901;112535;134248;56491;81576;87223;97808;118569;123258.41;125933;154827;57446;119830;198796;151856 -174;'620;Portugal;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;55600;119000;176000;269000;269000;279000;207000;109000;106000;125800;62000;100525;76939;36000;35000;23000;12000;5300;6000;7916;3000;7000;4000;8000;19000;20000;46000;148178;46781;422;1711;50299;45400;71499;52640;50052;44727;76874;66794;420014;316040;409068;146754 -174;'620;Portugal;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;880;1900;2856;4142;4142;6676;6028;4497;4358;2591;1555;4458;1851;1943;2302;918;730;308;255;246;210;175;115;277;677;748;2745;9876;2901;130;259;4733;4848;7253;5305;5050;5958.16;12104;12456;20430;13025;16859;22040 -174;'620;Portugal;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1361000;1279000;1376000;1313000;1313000;1313000;1229000;1197000;1048000;1040000;1296000;609000;609000;1097450;1115450;1189139;1215673;1507192;1836626;1782207;2438271;2349269;2707746;2330690;833700;824950;914000;872000;825000;885000;874000;800000 -174;'620;Portugal;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4180;1420;1000;3000;3800;1000;1300;5000;17746;11000;19000;9000;6000;10000;5000;28000;63198;37097;108197;90000;691100;1001100;1234744;1302657;150829;8310;8687;5921;6919;24932;23812;46797 -174;'620;Portugal;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;146;60;187;240;190;205;241;478;579;532;2247;2083;2042;1727;1335;3041;3656;2070;4710;4655;55644;76496;87703;97536;3361;581.54;528;341;331;945;1129;2230 -174;'620;Portugal;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;183000;122000;59600;77500;77500;80000;23000;14000;12500;3000;1500;9231;28231;29000;19000;7500;18000;31500;34000;55694;79000;128000;89000;92000;134000;152000;246000;323487;574754;979881;897717;188000;169379;239351;265272;178384;5838;65506;32442;32057;8988;7967;7867 -174;'620;Portugal;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;2920;1963;824;1204;1204;1773;697;355;420;62;35;273;605;410;420;204;222;308;436;1246;2288;4545;4887;6144;8084;10774;22802;35668;62756;88861;13842;12226;10952;17365;16324;14278;331.87;1743;945;955;866;689;610 -174;'620;Portugal;1605;Sawdust (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23812;46797 -174;'620;Portugal;1605;Sawdust (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1129;2230 -174;'620;Portugal;1605;Sawdust (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7967;7867 -174;'620;Portugal;1605;Sawdust (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;689;610 -174;'620;Portugal;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;180200;138000;198000;271000;322000;303000;312000 -174;'620;Portugal;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36837;25952;20293;30519;69996;95201;82326 -174;'620;Portugal;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1621.39;1024;790;2095;2709;3685;6813 -174;'620;Portugal;1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63887;13372;37231;142636;317359;166454;105741 -174;'620;Portugal;1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8066.46;3658;5793;7347;18357;9628;8351 -174;'620;Portugal;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;690000;834000;1038000;1038000;606000;710218;735000;1008000;859000;731000;747000;558000 -174;'620;Portugal;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24256;31264;37415;70089;64991;33588;5239;18222;35978;45587;38110;34612 -174;'620;Portugal;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1719;2046;3422;6041;4525;2098.49;984;2278;3750;7270;6177;6259 -174;'620;Portugal;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;586681;782102;726266;691726;470235;500669;553478;728391;616387;537675;527445;431220 -174;'620;Portugal;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94690;135639;128026;102819;66652;69117.48;84732;114741;97995;86575;120429;102776 -174;'620;Portugal;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;690000;812000;1034000;1034000;606000;689218;735000;1008000;859000;731000;747000;558000 -174;'620;Portugal;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24126;31169;36874;69108;63386;29336;4561;11768;20521;4045;6554;3056 -174;'620;Portugal;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1432;1833;2011;4653;3532;1609.85;758;1409;3127;760;1232;1136 -174;'620;Portugal;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;581081;776743;723115;690331;469716;475658;531925;709019;601441;507726;502761;410031 -174;'620;Portugal;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93845;134837;127448;102472;66434;63536.17;80522;111175;93868;80358;113555;97676 -174;'620;Portugal;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;22000;4000;4000;0;21000;0;0;0;0;0;0 -174;'620;Portugal;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;130;95;541;981;1605;4252;678;6454;15457;41542;31556;31556 -174;'620;Portugal;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;287;213;1411;1388;993;488.64;226;869;623;6510;4945;5123 -174;'620;Portugal;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5600;5359;3151;1395;519;25011;21553;19372;14946;29949;24684;21189 -174;'620;Portugal;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845;802;578;347;218;5581.31;4210;3566;4127;6217;6874;5100 -174;'620;Portugal;1872;Sawnwood;5516;Production;m3;1210000;1310000;1310000;1470000;1520000;1575000;1640000;1620000;1685000;1810000;1870000;1990000;2210000;1840000;1600000;1820000;1930000;1970000;2240000;2270000;1870000;2229000;2360000;2606000;1860000;2070000;2095000;2088000;2090000;2090000;1970000;1550000;1494000;1670000;1731000;1731000;1731000;1490000;1430000;1427000;1492000;1298000;1383000;1060000;1010000;1010000;1010816;1009783;1093073;1044852;1044425;941551;854025;1034800;1134255;1085155;979155;1135907;1033933;992141;1005657;988614;945000 -174;'620;Portugal;1872;Sawnwood;5616;Import quantity;m3;31100;22400;23000;22300;21700;31500;31000;33900;37300;34700;37200;37300;26700;44200;13100;12500;18800;11800;8700;18200;34000;36000;17200;17400;16700;27000;31000;64000;69000;95100;114200;193426;135992;130000;153000;222200;190000;230400;273000;297227;252000;262000;263000;280000;333000;258000;302000;202767;129183;208384;154348;146643;126121;145755;167007;185818;171192;225083;229163;224328;235973;250683;388774 -174;'620;Portugal;1872;Sawnwood;5622;Import value;1000 USD;1558;1189;1335;1426;1437;1997;2095;2625;2951;2760;2883;3152;4042;6472;2417;1956;3703;2660;1981;5391;9389;6963;3854;3717;4007;7284;9994;18357;19727;40441;46893;71087;61465;66479;93662;98987;107018;108013;122953;109262;98310;107442;119936;155658;162591;160276;216948;175875;98007;130280;101005;80132;73134;85607;81678;87482;90281.39;104404;102224;93697;114781;116569;103013 -174;'620;Portugal;1872;Sawnwood;5916;Export quantity;m3;300700;290800;330500;400300;402000;381600;360500;396200;398400;479400;447700;457600;652200;585800;331500;549600;625900;649400;884800;899800;787100;881000;896500;1194000;1055500;1168000;1041000;1365000;1486200;1604700;1425000;1091698;473559;568000;525000;717200;407000;428300;339000;283377;281000;286000;298000;319000;375000;462000;635000;293729;234886;296147;443545;340156;615517;394972;352453;308615;382260;382587;363995;256648;331275;275994;463044 -174;'620;Portugal;1872;Sawnwood;5922;Export value;1000 USD;13331;12279;13614;16218;17829;17280;15421;17441;17007;22013;21702;24500;35367;63259;32516;44650;57385;66610;97542;121318;83647;75670;77817;88166;87856;122289;142096;157527;129672;195778;145289;112104;56674;98191;110605;76080;76565;76655;61590;41666;39482;42631;55295;67740;74087;94576;127390;92325;54478;75814;98834;76003;82103;81382;73605;66573;66827.36;78382;71132;56480;80864;80912;61616 -174;'620;Portugal;1632;Sawnwood, coniferous;5516;Production;m3;1050000;1150000;1150000;1300000;1350000;1400000;1460000;1475000;1530000;1630000;1685000;1790000;1990000;1640000;1435000;1640000;1740000;1785000;2035000;2035000;1685000;1890000;2010000;2030000;1530000;1730000;1755000;1755000;1750000;1750000;1650000;1350000;1300000;1244000;1250000;1250000;1250000;1120000;1080000;1020000;987000;859000;910000;954000;909000;909000;909734;908805;957687;929131;922240;878000;801342;1014962;1101313;1054000;948000;986002;883239;843708;817000;807000;765000 -174;'620;Portugal;1632;Sawnwood, coniferous;5616;Import quantity;m3;13100;10400;10100;8700;7900;8900;3100;2900;5700;5800;6600;4500;7900;1100;1300;600;500;1900;1200;4200;6100;4000;2700;1100;1800;2000;2000;6000;11000;10000;9000;29397;36992;26000;15000;22200;29000;43600;50000;45048;50000;51000;56000;46000;110000;56000;68000;37814;26895;62633;55047;62390;55531;74480;81584;105899;93105;118203;113933;134083;122907;130433;186491 -174;'620;Portugal;1632;Sawnwood, coniferous;5622;Import value;1000 USD;547;529;570;508;533;557;228;226;497;435;512;402;700;219;311;123;167;750;484;1339;1948;880;862;380;458;635;554;2764;4272;4581;4658;8096;7517;6134;7347;6096;10056;14554;14593;11254;12262;13036;15538;16574;19595;19481;30461;22443;14500;34397;21229;21107;21017;30770;27557;34664;30208.78;41144;37492;39507;51146;48891;35649 -174;'620;Portugal;1632;Sawnwood, coniferous;5916;Export quantity;m3;300700;290700;329900;397400;397500;378900;357800;391700;394400;473500;436300;451600;643000;577300;329700;541900;620400;638300;868900;892700;779800;873000;886000;1154000;1016600;1118000;1016000;1297000;1421200;1535000;1386000;1078810;449559;540000;495000;704600;400000;415700;325000;271664;272000;267000;274000;293000;344000;432000;512000;278493;224650;256656;394837;321300;599803;382004;320457;278798;279466;310838;324189;235231;300922;241854;265995 -174;'620;Portugal;1632;Sawnwood, coniferous;5922;Export value;1000 USD;13331;12276;13584;16041;17537;17147;15275;17132;16766;21687;21156;24152;34603;62200;32259;43213;56590;65000;95168;119524;82226;74854;76517;85463;84872;116670;138040;147712;124053;178578;133668;106917;53804;90029;101503;72354;72606;72134;57020;37672;35760;35918;44814;53914;61406;79366;110836;79644;45964;58386;74946;62292;70506;71997;60426;54503;54642.03;65353;59091;45849;65545;63681;47708 -174;'620;Portugal;1633;Sawnwood, non-coniferous;5516;Production;m3;160000;160000;160000;170000;170000;175000;180000;145000;155000;180000;185000;200000;220000;200000;165000;180000;190000;185000;205000;235000;185000;339000;350000;576000;330000;340000;340000;333000;340000;340000;320000;200000;194000;426000;481000;481000;481000;370000;350000;407000;505000;439000;473000;106000;101000;101000;101082;100978;135386;115721;122185;63551;52683;19838;32942;31155;31155;149905;150694;148433;188657;181614;180000 -174;'620;Portugal;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;18000;12000;12900;13600;13800;22600;27900;31000;31600;28900;30600;32800;18800;43100;11800;11900;18300;9900;7500;14000;27900;32000;14500;16300;14900;25000;29000;58000;58000;85100;105200;164029;99000;104000;138000;200000;161000;186800;223000;252179;202000;211000;207000;234000;223000;202000;234000;164953;102288;145751;99301;84253;70590;71275;85423;79919;78087;106880;115230;90245;113066;120250;202283 -174;'620;Portugal;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;1011;660;765;918;904;1440;1867;2399;2454;2325;2371;2750;3342;6253;2106;1833;3536;1910;1497;4052;7441;6083;2992;3337;3549;6649;9440;15593;15455;35860;42235;62991;53948;60345;86315;92891;96962;93459;108360;98008;86048;94406;104398;139084;142996;140795;186487;153432;83507;95883;79776;59025;52117;54837;54121;52818;60072.61;63260;64732;54190;63635;67678;67364 -174;'620;Portugal;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;100;600;2900;4500;2700;2700;4500;4000;5900;11400;6000;9200;8500;1800;7700;5500;11100;15900;7100;7300;8000;10500;40000;38900;50000;25000;68000;65000;69700;39000;12888;24000;28000;30000;12600;7000;12600;14000;11713;9000;19000;24000;26000;31000;30000;123000;15236;10236;39491;48708;18856;15714;12968;31996;29817;102794;71749;39806;21417;30353;34140;197049 -174;'620;Portugal;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;3;30;177;292;133;146;309;241;326;546;348;764;1059;257;1437;795;1610;2374;1794;1421;816;1300;2703;2984;5619;4056;9815;5619;17200;11621;5187;2870;8162;9102;3726;3959;4521;4570;3994;3722;6713;10481;13826;12681;15210;16554;12681;8514;17428;23888;13711;11597;9385;13179;12070;12185.33;13029;12041;10631;15319;17231;13908 -174;'620;Portugal;1634;Veneer sheets;5516;Production;m3;;400;3500;3400;6000;10000;3700;5100;8600;9900;6400;8000;3400;8000;11000;2000;9000;6000;5000;13000;21000;10000;100000;110000;120000;130000;120000;120000;130000;140000;110000;110000;110000;110000;110000;110000;110000;0;0;45000;41000;42000;28000;28000;30000;30000;28750;27816;29583;29094;29354;47705;25776;35095;35024;32000;12561;94685;45415;24779;50000;20000;20000 -174;'620;Portugal;1634;Veneer sheets;5616;Import quantity;m3;100;100;100;300;100;200;200;300;700;800;600;800;1200;6700;3100;1900;1100;1100;1000;1000;1000;1000;400;400;500;1000;2000;2000;3300;5400;4000;6026;5324;6000;6000;12300;23000;13900;16000;31604;38000;40000;35000;46000;48000;57000;114000;40517;29574;26280;23033;31809;19275;22510;22957;24526;25587;24539;21373;29246;31802;37767;212775 -174;'620;Portugal;1634;Veneer sheets;5622;Import value;1000 USD;56;49;51;104;94;56;107;235;208;257;363;334;722;1586;958;607;449;449;1030;1030;1030;1058;644;677;1126;1799;3480;3961;4968;7405;8753;12353;11689;11434;12946;19745;25759;22545;24907;38851;36086;36454;42791;51415;63444;73772;82166;71173;48577;44830;37216;27312;27362;34611;30218;32402;45799.54;36167;30926;32510;43207;43936;47060 -174;'620;Portugal;1634;Veneer sheets;5916;Export quantity;m3;;0;0;0;0;100;200;500;200;400;1900;200;600;300;1800;600;500;48000;57100;57100;47000;9000;88100;97800;106700;121000;104000;104000;117700;126000;92800;91440;3000;3000;12000;8000;66000;16200;13000;53345;40000;44000;35000;34000;38000;43000;41000;35053;24637;26108;35373;52574;30764;44640;46919;52641;55779;32268;64788;70497;76969;67444;78053 -174;'620;Portugal;1634;Veneer sheets;5922;Export value;1000 USD;;0;0;0;0;14;18;37;19;31;100;62;50;42;253;77;104;6700;8010;8010;7000;1403;11070;13687;17362;19980;23340;23340;29770;39871;29087;30168;4381;4805;7493;7000;20443;9306;7706;17239;16085;18346;21600;24726;29279;27748;34171;32526;21850;28249;29977;52796;27411;34546;31961;34320;35872.72;36253;36176;37633;53918;69645;74701 -174;'620;Portugal;1873;Wood-based panels;5516;Production;m3;31200;35100;48000;60000;70000;80200;93600;115500;149900;163300;168900;248800;238000;255000;217000;314000;379000;393000;411000;459000;472000;461000;513000;488000;648000;762000;819000;842000;1026000;1102000;1136000;898000;890000;1120000;1060000;1105000;1105000;1242900;1245000;1248000;1202000;1208000;1187000;1295000;1276000;1276000;1308339;1324623;1355593;1334375;1350675;1426937;1143387;1192285;1277088;1152326;1097210;1059000;1235042;1242042;1407810;1394610;1252000 -174;'620;Portugal;1873;Wood-based panels;5616;Import quantity;m3;500;100;100;100;200;405;805;1105;1205;1205;1511;1011;605;1121;811;550;440;640;440;440;500;400;400;500;600;4200;6100;6100;16800;40700;80100;138526;139538;108000;111000;102700;102000;122200;147000;214421;226000;228000;196000;196000;253000;324000;506000;556930;399798;390031;457379;447161;576269;495403;492002;611796;871659;992159;961776;770624;793537;757976;728346 -174;'620;Portugal;1873;Wood-based panels;5622;Import value;1000 USD;197;39;24;23;81;120;190;180;211;234;267;165;120;158;199;125;218;218;218;218;250;153;176;182;220;1260;1886;3575;6984;13058;24029;40669;38814;34777;38497;33656;38285;43394;50059;59809;53698;54132;60902;74267;93415;120163;158616;177043;167102;164496;192573;156202;221342;196137;161447;188515;244663.05;294778;259884;240295;332702;344178;304707 -174;'620;Portugal;1873;Wood-based panels;5916;Export quantity;m3;2600;5800;15400;23300;25900;25553;38349;47771;70607;82363;103005;104850;82420;40658;43507;45300;33500;63200;134100;114100;99800;111900;155600;222700;325300;390600;441600;465600;513300;652200;636100;655729;573352;735000;614000;639000;838000;761800;658600;694169;612000;671000;761000;929000;876000;900000;735000;949399;650306;483672;686502;806625;865925;972804;887706;796324;805983;783986;956873;827415;994836;864289;803961 -174;'620;Portugal;1873;Wood-based panels;5922;Export value;1000 USD;459;500;1227;1735;2000;1953;2624;3283;4766;5717;6980;8183;7692;5148;5585;4793;4489;7685;18811;19366;15982;16315;19984;24921;34690;51756;74447;87361;97062;129341;138748;142775;118272;150391;162620;162240;178296;171781;136950;135735;120721;139768;168914;223069;234639;262486;270491;304429;186363;146929;215922;211051;232598;276035;224480;205714;195983.74;214709;233036;225870;299172;327855;284894 -174;'620;Portugal;1640;Plywood and LVL;5516;Production;m3;11200;10100;10000;10000;11000;12200;14600;16500;20400;20200;21200;31500;33700;29000;22000;28000;25000;23000;20000;19000;21000;22000;19000;20000;17000;20000;20000;21000;24000;21000;23000;24000;25000;27000;23000;23000;23000;24900;26000;31000;32000;32000;25000;21000;21000;21000;21749;35779;23108;24033;96075;62996;32474;28960;44494;47000;47000;0;77042;91042;129810;102610;110000 -174;'620;Portugal;1640;Plywood and LVL;5616;Import quantity;m3;;;;;100;300;700;600;700;700;900;400;100;200;100;100;200;400;200;200;200;100;100;100;100;100;0;1000;3000;4000;2900;3103;7538;9000;6000;4800;8000;15000;20000;29517;32000;26000;30000;39000;52000;61000;102000;62457;75979;57411;69438;41000;50230;63584;56104;79958;93225;93654;159506;113118;118913;94933;136031 -174;'620;Portugal;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;48;83;143;129;162;185;211;102;63;102;44;22;148;148;148;148;148;51;51;51;51;51;0;1420;2349;2306;3379;2615;4279;6067;4311;3901;5653;9753;13052;16240;13937;12995;16131;23043;28663;32732;45202;47426;45581;33598;38627;27459;29974;39782;29578;36774;45436.03;50820;49995;43774;68863;70098;72912 -174;'620;Portugal;1640;Plywood and LVL;5916;Export quantity;m3;2100;800;1700;700;400;100;700;1200;700;800;500;200;1100;300;2700;5900;1800;200;4300;5200;9300;9300;4400;1100;4200;5000;4000;1000;3700;12000;2200;6127;6065;3000;1000;5100;1000;4700;4000;4682;6000;11000;10000;8000;10000;8000;29000;43954;7700;10200;6900;6800;5900;32772;10429;11637;12472;11131;26470;19327;19721;18791;9968 -174;'620;Portugal;1640;Plywood and LVL;5922;Export value;1000 USD;378;125;244;139;77;33;47;68;47;85;45;28;143;105;503;544;190;21;1881;1384;1819;1819;429;400;1386;796;1080;320;1498;2592;1980;4029;2708;2112;787;4779;981;2126;1674;2221;2884;4660;5058;3738;4668;4293;4397;5212;6020;7551;7312;5010;4200;7838;3786;5004;5557.13;7299;8904;6916;10036;10111;9545 -174;'620;Portugal;1607;Laminated Veneer Lumber (LVL);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;6609 -174;'620;Portugal;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;851;426 -174;'620;Portugal;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;805;338 -174;'620;Portugal;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;0 -174;'620;Portugal;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;0 -174;'620;Portugal;1646;Particle board and OSB (1961-1994);5516;Production;m3;14000;15000;22000;35000;38000;51000;58000;71000;95500;105100;107700;172300;163300;162000;134000;237000;294000;322000;321000;364000;378000;371000;420000;395000;560000;671000;710000;720000;820000;805000;787000;630000;575000;757000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -174;'620;Portugal;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;100;100;100;100;100;100;100;100;100;100;100;100;3000;4000;2000;8700;22000;56800;97097;89000;55000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -174;'620;Portugal;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;17;45;24;32;32;32;32;32;32;29;29;29;796;1179;1086;2683;6356;12500;22998;19228;13371;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -174;'620;Portugal;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;2700;4500;7800;8000;10500;16800;23300;36000;52500;72600;67900;55100;25300;20800;26100;21500;52800;108800;83300;73800;85000;124600;187800;291300;360000;409000;423000;435000;483000;475000;393405;328000;455000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -174;'620;Portugal;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;208;312;537;575;853;1196;1659;2400;3413;4758;5202;4958;3064;2525;2695;2635;6000;12282;12065;10227;11094;14720;19104;28518;45365;65063;74886;73018;89079;88379;71558;54562;74991;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -174;'620;Portugal;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;650000;695000;695000;722000;719000;722000;700000;736000;742000;875000;850000;850000;849516;849069;848464;848415;693134;594246;648915;681933;738335;700398;661209;637000;716000;708000;743000;766000;695000 -174;'620;Portugal;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55000;51100;42000;45900;59000;86711;79000;69000;47000;45000;54000;68000;46000;159235;122172;92190;134347;115993;146029;178841;189028;245210;432028;472563;437878;288453;307351;281159;312587 -174;'620;Portugal;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15555;12984;15332;12629;14959;16719;13207;10514;10520;11229;13871;17718;19487;32774;35811;26986;41167;34563;42452;53484;45521;55393;74404.62;91826;75739;72474;100791;99510;97975 -174;'620;Portugal;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;363000;369200;430000;360400;308000;379597;296000;320000;387000;538000;501000;489000;226000;452921;277662;142233;301884;344015;405556;459397;455966;446690;458356;433532;463245;436077;592482;509918;512956 -174;'620;Portugal;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78641;70399;80826;67545;54836;53179;39872;44619;58638;89842;91974;102022;68174;115685;65538;25777;69725;75743;94234;117187;100754;98006;94521.74;100429;114256;105390;143842;163121;146054 -174;'620;Portugal;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 -174;'620;Portugal;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;800;1000;1877;1000;8000;4000;7000;6000;10000;4000;3562;3317;4628;7960;8843;9594;12109;12064;15871;23738;33205;31800;35224;33717;49805;55084 -174;'620;Portugal;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;806;861;1051;403;1393;1086;2315;1714;3258;984;1299;1204;1593;3306;3122;3613;4163;3267;4137;6367.49;10449;8496;9025;13553;12667;14071 -174;'620;Portugal;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;1000;4000;0;15;959;28;7914;84;221;710;2383;460;290;1514;1594;729;2594;3809;1596 -174;'620;Portugal;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;200;907;0;11;69;14;203;40;125;253;271;185;105.13;419;290;144;433;687;416 -174;'620;Portugal;1874;Fibreboard;5516;Production;m3;6000;10000;16000;15000;21000;17000;21000;28000;34000;38000;40000;45000;41000;64000;61000;49000;60000;48000;70000;76000;73000;68000;74000;73000;71000;71000;89000;101000;182000;276000;326000;244000;290000;336000;387000;387000;387000;496000;500000;495000;470000;440000;420000;399000;405000;405000;437074;439775;484021;461927;561466;769695;461998;481392;494259;404928;389001;422000;442000;443000;535000;526000;447000 -174;'620;Portugal;1874;Fibreboard;5616;Import quantity;m3;500;100;100;100;100;105;105;505;505;505;611;611;505;821;611;350;140;140;140;140;200;200;200;300;400;1100;2100;3100;5100;14700;20400;38326;43000;44000;50000;46800;52000;60500;67000;96316;114000;125000;115000;105000;141000;185000;354000;331676;198330;235802;245634;281325;370416;240869;234806;270757;322668;392737;332592;333829;333556;332079;224644 -174;'620;Portugal;1874;Fibreboard;5622;Import value;1000 USD;197;39;24;23;33;37;47;51;49;49;56;63;57;39;110;79;38;38;38;38;70;70;96;102;140;413;707;1069;1952;4396;8150;15056;15307;15339;18631;16771;17300;20206;21187;25799;26151;29230;33165;37680;49167;66455;92943;95544;84506;102319;109473;91058;145303;98708;83081;92211;118454.9;141683;125654;115022;149495;161903;119749 -174;'620;Portugal;1874;Fibreboard;5916;Export quantity;m3;500;2300;9200;14800;17500;14953;20849;23271;33907;29063;29905;36750;26220;15058;20007;13300;10200;10200;21000;25600;16700;17600;26600;33800;29800;25600;28600;41600;74600;157200;158900;256197;239287;277000;250000;264700;407000;396700;346600;309890;310000;340000;364000;383000;364000;399000;480000;452509;363985;331211;369804;455726;454248;479925;418928;337537;334865;337809;465564;371282;380039;331771;279441 -174;'620;Portugal;1874;Fibreboard;5922;Export value;1000 USD;81;167;671;1059;1348;1067;1381;1556;2319;2219;2177;2953;2591;1979;2557;1554;1664;1664;4648;5917;3936;3402;4835;5417;4786;5595;8304;12155;22546;37670;48389;67188;61002;73288;83192;87062;96489;102110;80440;80335;77965;90489;105218;129489;137797;155264;197920;183521;114736;113587;138682;130258;134039;150757;119669;102519;95799.73;106562;109586;113420;144861;153936;128879 -174;'620;Portugal;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70000;70000;70000;70000;70000;70000;70000;70000;70000;73000;75000;75000;74946;74752;123884;119555;92882;0;0;0;0;0;28808;26000;21000;12000;0;0;0 -174;'620;Portugal;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26000;27600;33000;41300;37000;47062;43000;46000;41000;39000;45000;59000;22000;26307;24158;40812;41500;37100;174835;22521;19356;29703;49357;51615;33791;28535;36017;61029;26432 -174;'620;Portugal;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10236;9945;11727;14940;13253;16048;14848;15896;17803;21835;26330;34461;18011;22511;17982;30855;32338;20943;71365;13511;10708;16124;24488.06;26508;19073;14046;20506;23411;18128 -174;'620;Portugal;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40000;59000;64000;85000;63000;68753;66000;74000;70000;70000;91000;73000;40000;36341;12661;9821;41869;35120;41510;52392;37125;22806;19648;25657;22763;10539;12545;10552;4879 -174;'620;Portugal;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16369;18799;19964;28370;19402;18709;16792;19205;21434;22796;29972;26138;16682;17845;5577;3096;13857;11626;13739;17340;11636;10268;8843.47;11546;8164;6558;6141;6187;3719 -174;'620;Portugal;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;317000;317000;317000;426000;430000;425000;400000;370000;350000;326000;330000;330000;327128;330023;326137;325812;443173;700714;461998;481392;494259;404928;360193;387000;412000;423000;535000;494000;447000 -174;'620;Portugal;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19000;13200;14000;14700;24000;36755;48000;52000;46000;47000;72000;100000;308000;282867;158000;171000;186000;176000;183527;199773;199475;221269;253538;316101;284303;284027;281832;257466;186865 -174;'620;Portugal;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6987;5609;4643;4421;6951;8105;9072;10353;11843;12328;18479;27583;70337;68173;62538;68605;74866;63134;71471;81383;69713;73342;91047.22;113172;104180;97737;125958;134662;98431 -174;'620;Portugal;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;207000;199700;342000;311400;283000;240169;243000;263000;292000;312000;272000;324000;381000;358960;301369;294158;290951;283400;332222;362130;343962;276329;281453;278876;402668;340934;356214;304803;263650 -174;'620;Portugal;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66536;67159;76348;73673;60921;61539;61083;70615;83436;106469;107434;128744;169794;153163;100112;101104;112620;99306;105062;114091;93621;76399;72670.05;80628;89176;95456;130121;136674;116683 -174;'620;Portugal;1650;Other fibreboard;5516;Production;m3;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;2000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;7000;2000;2000;0;0;0;0;0;0;0;0;0;0;0;0;35000;35000;34000;16560;25411;68981;0;0;0;0;0;9000;9000;8000;0;32000;0 -174;'620;Portugal;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;400;400;400;400;400;400;400;400;200;40;40;40;40;100;100;100;100;100;100;100;100;100;2400;2400;1540;5000;3000;5000;6000;5000;4500;6000;12499;23000;27000;28000;19000;24000;26000;24000;22502;16172;23990;18134;68225;12054;18575;15975;19785;19773;25021;14498;21267;15707;13584;11347 -174;'620;Portugal;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;18;16;23;23;20;25;25;36;22;6;6;6;6;18;18;18;39;32;32;32;32;32;472;711;957;901;1406;1408;1217;930;845;983;1646;2231;2981;3519;3517;4358;4411;4595;4860;3986;2859;2269;6981;2467;3814;2660;2745;2919.62;2003;2401;3239;3031;3830;3190 -174;'620;Portugal;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;1100;100;100;500;2000;600;600;600;600;600;600;600;600;600;400;800;8471;3300;1000;3000;6000;1000;300;600;968;1000;3000;2000;1000;1000;2000;59000;57208;49955;27232;36984;137206;80516;65403;37841;38402;33764;33276;40133;19809;11280;16416;10912 -174;'620;Portugal;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;48;9;9;41;152;36;36;36;36;36;36;36;36;36;140;121;2064;746;540;287;1104;177;67;117;87;90;669;348;224;391;382;11444;12513;9047;9387;12205;19326;15238;19326;14412;15852;14286.21;14388;12246;11406;8599;11075;8477 -174;'620;Portugal;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;6000;10000;16000;15000;21000;17000;21000;28000;34000;38000;40000;45000;41000;64000;60000;48000;59000;47000;69000;74000;72000;67000;73000;72000;70000;70000;88000;100000;181000;275000;325000;237000;288000;334000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -174;'620;Portugal;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;500;100;100;100;100;105;105;105;105;105;211;211;105;421;211;150;100;100;100;100;100;100;100;200;300;1000;2000;3000;5000;12300;18000;36786;38000;41000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -174;'620;Portugal;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;197;39;24;23;33;37;47;33;33;26;33;43;32;14;74;57;32;32;32;32;52;52;78;63;108;381;675;1037;1920;3924;7439;14099;14406;13933;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -174;'620;Portugal;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;500;2300;9200;14800;17500;14953;20849;23271;33907;29063;29905;36750;26220;15058;20007;12200;10100;10100;20500;23600;16100;17000;26000;33200;29200;25000;28000;41000;74000;156800;158100;247726;235987;276000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -174;'620;Portugal;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;81;167;671;1059;1348;1067;1381;1556;2319;2219;2177;2953;2591;1979;2557;1506;1655;1655;4607;5765;3900;3366;4799;5381;4750;5559;8268;12119;22510;37530;48268;65124;60256;72748;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -174;'620;Portugal;1879;Total fibre furnish;5510;Production;t;107000;109700;131600;163700;195600;216700;242600;288700;374900;440800;495100;539000;573200;624000;578000;515000;550000;633000;759300;845800;918800;1112100;1190400;1244000;1576000;1613000;1687000;1758000;1787000;1767000;1945000;1918000;1778000;1822000;1930000;1908000;2003000;2060000;2119000;2167000;2152000;2270000;2259000;2386000;2587000;2809000;2821370;2726137;2840634;2597656;3051652;3129804;3278531;3336423;3267300;3361400;3478200;3541925;3573923;3485941;3651408;3703000;3584000 -174;'620;Portugal;1879;Total fibre furnish;5610;Import quantity;t;11800;17400;13000;9400;9400;10800;4600;21200;25700;17800;9600;11900;15500;14000;14000;17664;87300;42500;44500;44500;34100;22400;16900;27900;62900;43800;45000;66000;65500;94900;90800;88967;73009;93000;112100;117506;130000;109742;109000;136631;178400;159000;148000;120000;83006;75083;89587;84530;102514;52105;109692;112249;146535;148713;145677;171389;201102;209972;189632;165067;165476;156204;155996 -174;'620;Portugal;1879;Total fibre furnish;5622;Import value;1000 USD;759;816;1047;773;582;659;300;2287;2879;1874;1201;862;2788;3403;4512;6469;22177;10804;17138;17138;14117;8981;6611;11526;19227;17621;21599;26738;34976;43051;38764;37953;26590;41370;73971;54832;61117;47765;45480;63821;79148;60200;62124;61809;38828;39227;58422;61723;54364;32100;76486;63185;86335;88307;82528;88661;111798.06;149830;111257;82411;115354;125094;111274 -174;'620;Portugal;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;200900;269100;340300;291100;459200;464100;363300;264800;359400;317500;290500;344400;450300;454900;518900;612800;668800;883500;897000;1024000;1031000;1018900;1077500;1114000;1055501;942128;1099000;1006500;1041700;1142000;1123359;1235000;1117240;1127000;1133000;1147000;1082000;1057000;1331044;1431000;1303782;1571183;1261362;1491913;1489766;1560571;1515107;1502415;1574265;1533153;1492893;1575767;1646758;1611542;1557485;1752765 -174;'620;Portugal;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;22346;33809;47436;45991;66926;72823;99082;93534;116721;95808;73506;117189;186003;202890;191878;196767;272304;287174;342530;541071;660111;716898;681267;549345;547678;348920;507958;737934;465262;499846;457888;498353;555827;424945;404754;451466;461733;414741;598793;684422;695582;582701;531781;742138;673775;709750;672079;665237;611326;641625.4;710899;651123;594065;824023;872909;782878 -174;'620;Portugal;1878;Pulp for paper;5510;Production;t;107000;109700;131600;163700;195600;216700;242600;288700;367900;434800;481100;525000;549200;601000;555000;492000;527000;605000;732300;677800;717800;896100;972400;1010000;1328000;1388000;1422000;1485000;1495000;1462000;1632000;1605000;1533000;1552000;1630000;1608000;1703000;1708000;1755000;1774000;1806000;1929000;1935000;1949000;1990000;2065000;2092175;2021757;2066634;1837514;2265100;2452030;2536674;2625900;2612300;2624400;2647500;2666400;2643800;2591000;2712000;2773000;2614000 -174;'620;Portugal;1878;Pulp for paper;5610;Import quantity;t;11800;17400;13000;9400;9400;10800;4600;21200;25700;17800;9600;11900;15500;14000;14000;17664;76400;37300;39300;39300;27400;15300;15200;22700;44300;38800;37000;29000;37500;50300;59800;64507;63340;72000;74100;88806;113000;95842;94000;91957;158400;144000;133000;112000;76006;68083;82587;72844;92336;34793;94498;94846;122823;122976;126817;152479;171438;176492;162148;148618;150713;140122;142937 -174;'620;Portugal;1878;Pulp for paper;5622;Import value;1000 USD;759;816;1047;773;582;659;300;2287;2879;1874;1201;862;2788;3403;4512;6469;20953;10252;16586;16586;13260;8280;6453;10873;17335;17052;20349;20487;30246;36813;34717;34620;25624;37006;63341;49336;58288;45879;43497;55895;76408;57709;59414;59500;37396;37379;56514;55700;50113;22975;71589;58736;80878;83576;79498;85621;102192.5;138936;103465;79466;111136;120096;108350 -174;'620;Portugal;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;200900;269100;340300;291100;459200;464100;363300;264800;359400;317500;290500;344400;443000;452800;514000;603000;661900;878600;890000;1013000;1019000;1009900;1066300;1106000;1046053;916060;1060000;970500;999500;1087000;1070159;1145000;969099;982000;962000;961000;933000;762000;1038044;1040000;945257;1149440;831029;1013367;1076389;1166202;1144197;1143088;1134419;1075025;1077123;1167702;1227641;1201855;1162248;1309872 -174;'620;Portugal;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;22346;33809;47436;45991;66926;72823;99082;93534;116721;95808;73506;117189;185155;202533;191088;195857;271539;286406;341480;539544;658531;715366;679735;548130;545934;343297;501632;728251;460305;494542;453042;491157;539246;414836;390102;434074;442584;387175;567669;628954;635427;541492;447089;642267;605246;645239;616610;613592;548895;566345.42;655861;608838;550655;741824;799470;727799 -174;'620;Portugal;1875;Wood pulp;5510;Production;t;102500;104400;126000;156600;187600;208300;233200;283200;361200;427400;474100;516000;536200;591000;547000;462000;494000;600000;697600;645000;685000;870100;950400;988000;1306000;1375000;1409000;1472000;1482000;1449000;1619000;1592000;1520000;1539000;1617000;1595000;1703000;1708000;1755000;1774000;1806000;1929000;1935000;1949000;1990000;2065000;2092175;2021757;2066634;1837514;2265100;2452030;2536674;2625900;2660900;2729100;2752900;2772900;2744900;2683000;2809000;2869000;2714000 -174;'620;Portugal;1875;Wood pulp;5610;Import quantity;t;14800;19200;15000;12900;12100;14100;9000;26000;23000;26200;16700;15300;19100;19100;15000;22700;79300;41600;44500;44500;32600;21000;20100;23400;44800;39700;37000;29000;37500;49800;59700;64346;64676;72500;74100;90100;114000;96500;99000;94233;159400;144500;133000;112000;75980;68005;82435;84713;92313;34788;94498;94743;122167;122875;124958;152304;171758;176396;162085;148398;150930;140054;142960 -174;'620;Portugal;1875;Wood pulp;5622;Import value;1000 USD;1344;1116;1343;1352;1125;1164;1107;3135;3027;3545;2788;2036;3884;5337;5896;9012;22728;12247;19270;19270;15944;11310;8688;11229;17627;17723;20740;20932;30113;36627;34717;34467;26047;37181;63614;49878;58636;46153;45278;56862;76524;57708;59411;59481;37367;37336;56409;61651;50064;22889;71589;58584;80406;83412;78540;85309;102034.1;138534;103171;79146;111046;119908;108293 -174;'620;Portugal;1875;Wood pulp;5910;Export quantity;t;;;;;;;;205900;276200;340300;291900;459200;464100;363300;264800;359500;317600;290600;345700;445000;454800;515000;603000;661900;878600;890000;1013000;1017000;1003100;1057300;1093000;1040950;905533;1060000;970500;1009700;1087000;1070159;1145000;969099;980000;962000;961000;933000;762000;1038044;1040000;945256;1149275;830923;1013367;1080691;1165935;1144197;1189833;1238617;1179166;1169799;1255259;1318255;1293627;1251578;1400737 -174;'620;Portugal;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;23246;35087;47436;46135;66926;72823;99082;93534;116744;95831;73529;117684;185898;203276;191483;195857;271539;286406;341480;539544;657208;710642;674707;542598;543829;339397;501632;728251;466051;494542;453042;491157;539246;414266;390102;434074;442584;387175;567669;628954;635425;541055;446719;642267;608052;644792;616610;650146;634166;653081.94;739661;674219;610475;824867;886403;813635 -174;'620;Portugal;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -174;'620;Portugal;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1843;36;74;130;126;177;160 -174;'620;Portugal;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;789.62;40;61;86;96;174;149 -174;'620;Portugal;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;35;15;1;1;2;0 -174;'620;Portugal;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11.4;13;14;2;1;3;0 -174;'620;Portugal;1654;Mechanical wood pulp (1961-2016);5510;Production;t;4900;5100;5600;6500;5600;6300;5300;2800;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -174;'620;Portugal;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;11800;17400;13000;8900;8200;10300;4500;8500;7900;9800;5900;7100;5300;7200;2100;2300;4400;4500;5700;5700;5700;1000;600;900;2800;3000;4000;5000;9400;12700;8600;2932;3000;3000;3000;3600;4000;3600;3000;2705;6000;6000;4000;2000;1000;4000;329;299;187;421;1229;367;83;3466;1567;2386;;;;;;; -174;'620;Portugal;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;759;816;1047;701;423;596;282;555;503;674;534;68;669;1417;479;426;645;599;840;840;840;408;174;237;705;936;1442;2485;5906;8734;4700;1201;1153;1153;1582;1377;1397;1259;1058;778;1244;1801;1388;473;383;1237;111;213;115;257;735;209;47;1661;615;936;;;;;;; -174;'620;Portugal;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;1000;1000;153;1000;1000;1000;1900;3000;0;0;0;0;0;0;0;0;0;0;51;0;0;0;7;18;37;2;14;;;;;;; -174;'620;Portugal;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1602;531;531;79;555;555;494;840;1494;0;0;0;0;0;0;0;0;0;0;36;1;2;0;8;38;12;1;11;;;;;;; -174;'620;Portugal;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;0;0;0;0;;;;;;; -174;'620;Portugal;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;0;0;0;0;0;0;0;0;0;0;0;0;509;387;104;0;7;11;12;0;5698;7490;1614;0;;;;;;; -174;'620;Portugal;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;0;0;0;0;0;0;16;0;0;102;32;107;234;218;71;0;41;55;84;0;3313;4152;730;1;;;;;;; -174;'620;Portugal;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;259;0;0;0;0;0;0;0;0;0;0;24;2;0;0;0;234;57;0;;;;;;; -174;'620;Portugal;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;95;0;0;0;0;0;1;0;0;0;0;0;0;0;0;1;605;45;0;;;;;;; -174;'620;Portugal;1656;Chemical wood pulp;5510;Production;t;97600;99300;120400;150100;182000;202000;227900;280400;361200;427400;474100;516000;536200;591000;547000;462000;494000;600000;697600;645000;685000;870100;950400;988000;1306000;1375000;1409000;1472000;1482000;1449000;1619000;1592000;1520000;1539000;1617000;1595000;1703000;1708000;1755000;1774000;1806000;1929000;1935000;1949000;1990000;2065000;2092175;2021757;2066634;1837514;2265100;2452030;2536674;2625900;2612300;2624400;2647500;2666400;2643800;2591000;2712000;2773000;2614000 -174;'620;Portugal;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;12500;8000;5200;2300;1900;4800;3800;7900;15300;70300;32500;33300;33300;21400;14000;14500;21600;41400;35700;32000;23000;27100;36700;51000;60157;60284;69000;70100;85200;109000;92200;91000;89243;152400;138000;129000;110000;74471;63607;82000;72521;92083;34318;93257;94373;116386;111919;121777;149918;169366;176223;161768;148256;150374;139712;142511 -174;'620;Portugal;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;1717;1331;897;423;377;1111;1235;2872;6008;19943;9508;15601;15601;12275;7727;6213;10533;16579;16065;18737;17556;23406;27515;29934;32735;24444;35853;61612;47952;56891;44525;42418;55117;75042;55805;57991;58901;36750;35875;56226;55371;49842;22525;70770;58368;77046;77599;77195;84372;100878.53;138349;102831;79036;110693;119495;107800 -174;'620;Portugal;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;200900;269100;340300;291100;459200;464100;363300;264800;359400;317500;290500;344400;443000;452800;514000;603000;661900;878600;890000;1013000;1017000;1001100;1056300;1092000;1040500;903500;1059000;969500;997600;1084000;1069900;1145000;969099;980000;962000;961000;933000;762000;1038044;1040000;945205;1149251;830904;1013367;1076282;1165917;1143926;1142896;1134391;1074927;1077088;1167687;1227638;1201757;1162246;1309872 -174;'620;Portugal;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;22346;33809;47436;45991;66926;72823;99082;93534;116721;95808;73506;117189;185155;202533;191088;195857;271539;286406;341480;539544;657208;709040;674176;542067;543593;338400;501077;727757;459465;493048;452947;491157;539246;414266;390102;434074;442583;387175;567669;628954;635389;541054;446717;642267;604945;644753;615993;613197;548855;566165.42;655848;608824;550651;741699;799467;727799 -174;'620;Portugal;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;38500;43000;40000;44900;77000;77500;70000;57800;48600;70400;126600;139000;136000;202000;182000;178000;199000;233000;268400;107000;121000;275000;251000;261000;345000;239000;284000;307000;336000;328000;366000;360000;345000;288000;329000;327000;318000;321000;309000;291000;317000;313000;313000;316000;324000;338000;345320;220721;186788;204947;149900;216630;223574;221700;218300;227600;221800;224200;227900;217000;223000;221000;193000 -174;'620;Portugal;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;100;100;400;400;400;1200;1200;1200;4600;10400;10400;400;400;900;;;;;;;;;;;485;640;0;0;0;0;200;0;20;0;0;1000;4000;5000;4000;7000;4829;4441;6129;5458;6345;5847;84474;3938;3473;1991;2510;4322;3922;1764;4556;2564 -174;'620;Portugal;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;8;8;83;83;83;275;275;275;1608;1605;1605;222;222;543;;;;;;;;;;;199;266;0;0;0;0;112;0;11;0;11;345;1656;1642;1576;2597;2366;2043;2650;2645;3406;3401;60605;3303;2640;1547.27;2209;3510;2508;1603;5072;2239 -174;'620;Portugal;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;17400;18500;29400;31200;92500;106900;74700;29700;72800;45800;29100;57200;73500;36300;47000;86400;60200;78000;91000;93000;74000;83300;104800;91000;114200;83700;114000;99000;91800;91000;80000;90000;58370;73000;57000;58000;43000;59000;86000;70000;427;1201;809;0;0;0;0;24;0;0;0;0;0;0;48;0 -174;'620;Portugal;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;1651;1921;1945;3947;10019;13637;22111;8753;17850;10580;6087;17526;27600;13764;12101;19805;18615;19086;24040;37958;38675;35847;42515;38459;47260;28110;48466;73490;38966;38399;31039;36635;31131;27274;21830;25617;21099;26731;41686;40900;368;539;492;0;0;0;0;14;0;0;0;0;0;0;31;0 -174;'620;Portugal;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;32700;29600;37400;57000;60100;76200;111100;169900;253500;293200;298300;306500;326000;316000;298000;219000;229000;279000;340300;432000;456000;520000;605000;628000;831000;1025000;1008000;1045000;1026000;1003000;1121000;1125000;1076000;1160000;1203000;1184000;1310000;1303000;1361000;1390000;1393000;1513000;1517000;1528000;1561000;1617000;1640257;1687782;1879846;1632567;2115200;2235400;2313100;2320000;2348000;2396800;2425700;2442200;2415900;2374000;2489000;2552000;2421000 -174;'620;Portugal;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;1600;600;900;700;200;1200;1300;4000;9300;56900;20000;18900;18900;18400;13000;14000;20800;39700;34000;30000;22000;24100;30300;44000;54328;57531;66000;69000;84100;108000;91400;90000;88288;152000;134000;123000;104000;69000;59000;74000;66478;86990;27426;87165;85963;109934;26456;117579;145942;166973;173360;157083;144020;148275;134806;138733 -174;'620;Portugal;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;255;81;40;150;17;280;421;1623;3662;17291;7102;8157;8157;10339;7166;6029;10099;15872;15358;17814;17131;20978;22206;25311;29008;23125;34628;61158;47295;56458;44010;41764;54458;74759;55420;57153;56930;34781;33907;52925;51987;47063;19111;67382;54443;72971;16513;73603;81290;98898.64;135767;98898;76134;108698;113958;104049 -174;'620;Portugal;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;130400;201700;262300;220400;300500;284400;258400;175100;221700;203700;187800;195400;251700;332700;392000;434600;513500;698700;693000;822000;854000;829500;855200;907000;859900;727200;853000;802000;840000;944000;913700;995000;833965;821000;811000;810000;819000;598000;843000;868000;849778;1043111;707753;908398;983384;1075239;1058737;1095682;1133488;1074924;1076458;1167683;1227635;1201757;1162197;1309870 -174;'620;Portugal;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;15245;26196;38360;35583;46911;47339;69542;65368;78354;66588;49861;67857;107355;152431;151430;146005;220517;237884;279373;450906;561669;609210;566390;454743;459483;275028;406573;597213;392631;431998;387931;428960;461518;340930;329340;362986;385651;305889;463021;522473;565696;488296;370962;567642;533309;576307;553528;579920;547957;566159.47;651792;608816;550646;741699;799434;727798 -174;'620;Portugal;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -174;'620;Portugal;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;402;353;363;314;335;350;1214 -174;'620;Portugal;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;432.63;373;423;394;392;465;1512 -174;'620;Portugal;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;630;4;3;0;1;2 -174;'620;Portugal;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.95;4056;8;5;0;2;1 -174;'620;Portugal;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;12400;4300;11600;5300;6000;6000;100;300;800;700;200;200;200;2000;1000;1000;1000;4000;100;1000;1000;100;400;1000;1000;1000;1000;1000;2000;3000;4000;1000;1000;1000;1000;0;1000;1000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -174;'620;Portugal;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;0;0;0;0;0;0;24;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -174;'620;Portugal;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;0;0;0;0;0;0;14;0;0;0;158;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -174;'620;Portugal;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1000;500;0;0;1200;0;407;0;0;0;0;1000;44;0;0;0;0;0;0;0;0;0;0;;;;;;; -174;'620;Portugal;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;525;240;0;0;504;176;245;53;0;0;0;576;21;0;0;0;0;0;0;0;0;0;0;;;;;;; -174;'620;Portugal;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;14000;22400;31400;42900;38900;42300;46700;52400;58300;63100;49000;70300;74000;71000;66000;64000;65000;84000;88800;105000;107000;75000;94000;98000;129000;110000;116000;119000;118000;115000;128000;106000;98000;90000;84000;84000;74000;83000;85000;93000;96000;103000;105000;105000;105000;110000;106598;113254;0;0;0;0;0;84200;46000;0;;;;;;; -174;'620;Portugal;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;10800;7300;3900;1200;1300;2400;1300;2700;1400;3000;2100;14000;14000;2100;1000;500;800;1700;1700;2000;1000;3000;6400;7000;5344;2096;3000;1100;1100;1000;600;1000;911;400;4000;5000;2000;471;607;1000;1214;652;763;634;2065;605;989;260;503;;;;;;; -174;'620;Portugal;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;1454;1242;774;190;277;556;539;974;738;1047;801;7222;7222;1393;561;184;434;707;707;923;425;2428;5309;4623;3528;1047;1225;454;657;433;403;654;634;283;374;493;157;327;392;704;1018;736;764;743;519;674;481;289;442;;;;;;; -174;'620;Portugal;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;53100;48900;48600;39500;66200;72800;30200;60000;64900;68000;73600;91800;117800;83800;75000;82000;88200;101900;106000;98000;89000;88300;96300;94000;66400;92600;91000;68000;65800;49000;75000;60000;76357;86000;94000;93000;71000;104000;109000;102000;95000;104939;122342;104969;92898;90678;85189;47190;903;;;;;;; -174;'620;Portugal;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;5450;5692;7131;6461;9996;11847;7429;19413;20517;18640;17558;31806;50200;36338;27557;30047;32407;29436;38067;50680;56864;63983;65271;48865;36850;35262;45513;56814;27868;22651;33473;25386;46352;46009;38932;45471;35833;53979;62941;65581;69325;52219;75263;74625;71636;68446;62465;33263;898;;;;;;; -174;'620;Portugal;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;48600;104700;105400;106500;101100;92000;97000;96000;100000 -174;'620;Portugal;1667;Dissolving wood pulp;5610;Import quantity;t;3000;1800;2000;4000;3900;3800;4500;5000;7100;11200;8500;6300;9000;8100;5000;5100;4600;4600;5500;5500;5500;6000;5000;900;600;1000;1000;1000;1000;400;100;1238;1392;500;1000;1300;1000;700;5000;2285;1000;500;0;0;0;11;2;11893;36;38;0;3;0;0;0;0;549;137;243;12;430;165;289 -174;'620;Portugal;1667;Dissolving wood pulp;5622;Import value;1000 USD;585;300;296;651;702;568;825;863;1193;1974;1831;1591;2104;2685;2545;2578;2140;2140;2829;2829;2829;3175;2301;459;343;722;561;891;801;378;83;525;450;175;420;549;348;369;1786;967;238;0;0;0;0;6;1;6067;66;52;0;7;0;0;0;0;365.96;145;279;24;257;239;344 -174;'620;Portugal;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;5000;7100;0;800;0;0;0;0;100;100;100;1300;2000;2000;1000;0;0;0;0;0;0;0;0;0;297;1033;0;0;10200;0;0;0;0;0;0;0;0;0;0;0;0;0;17;0;4402;0;0;46878;104212;104212;92676;87557;90616;91869;89330;90865 -174;'620;Portugal;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;900;1278;0;144;0;0;0;0;23;23;23;495;743;743;395;0;0;0;0;0;0;0;0;0;157;442;0;0;5746;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3099;0;0;36903;85300;86905.13;83800;65381;59822;83167;86933;85836 -174;'620;Portugal;1668;Pulp from fibres other than wood;5510;Production;t;4500;5300;5600;7100;8000;8400;9400;5500;6700;7400;7000;9000;13000;10000;8000;30000;33000;5000;34700;32800;32800;26000;22000;22000;22000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -174;'620;Portugal;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;500;1200;500;100;200;9800;2800;1400;2900;5400;3000;4000;64;1700;300;300;300;300;300;100;200;100;100;1000;1000;1000;900;200;1399;56;0;1000;6;0;42;0;9;0;0;0;0;26;89;154;24;59;43;0;106;656;101;1859;175;229;233;306;232;213;233;266 -174;'620;Portugal;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;72;159;63;18;15;1045;303;244;417;1008;751;1161;35;365;145;145;145;145;145;66;103;51;51;170;446;934;564;83;678;27;0;147;7;0;95;5;0;122;1;3;19;29;49;106;116;115;138;0;159;472;164;958;312;524.35;547;573;344;347;427;401 -174;'620;Portugal;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;6800;9000;13000;5400;11560;0;0;0;0;0;0;0;2000;0;0;0;0;0;0;1;165;123;0;100;267;0;133;14;71;0;0;2;97;0;0 -174;'620;Portugal;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;1323;4724;5028;5532;2262;4342;0;0;0;0;0;0;0;570;0;0;0;0;0;0;2;437;370;0;293;447;0;349;29;168.61;0;0;2;124;0;0 -174;'620;Portugal;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;0;252;0;0;0;0;491;368;284;208;8;249;115;50;366;848;65;56;79;258;204;295;455;220;204 -174;'620;Portugal;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;107;0;150;215;170;230;236;202;195;309;294;608;257;116;466;1037;70;45;63.92;246;172;297;563;227;227 -174;'620;Portugal;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;36;72;7051;6551;31;26;71;34;0;0;1;0;1;0;0;1;0 -174;'620;Portugal;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;71;0;0;0;0;0;22;798;562;741;101;133;270;1255;0;0;4.9;0;2;0;0;3;0 -174;'620;Portugal;1669;Recovered paper;5510;Production;t;;;;;;;;;7000;6000;14000;14000;24000;23000;23000;23000;23000;28000;27000;168000;201000;216000;218000;234000;248000;225000;265000;273000;292000;305000;313000;313000;245000;270000;300000;300000;300000;352000;364000;393000;346000;341000;324000;437000;597000;744000;729195;704380;774000;760142;786552;677774;741857;710523;655000;737000;830700;875525;930123;894941;939408;930000;970000 -174;'620;Portugal;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;10900;5200;5200;5200;6700;7100;1700;5200;18600;5000;8000;37000;28000;44600;31000;24460;9669;21000;38000;28700;17000;13900;15000;44674;20000;15000;15000;8000;7000;7000;7000;11686;10178;17312;15194;17403;23712;25737;18860;18910;29664;33480;27484;16449;14763;16082;13059 -174;'620;Portugal;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;1224;552;552;552;857;701;158;653;1892;569;1250;6251;4730;6238;4047;3333;966;4364;10630;5496;2829;1886;1983;7926;2740;2491;2710;2309;1432;1848;1908;6023;4251;9125;4897;4449;5457;4731;3030;3040;9605.56;10894;7792;2945;4218;4998;2924 -174;'620;Portugal;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;7300;2100;4900;9800;6900;4900;7000;11000;12000;9000;11200;8000;9448;26068;39000;36000;42200;55000;53200;90000;148141;145000;171000;186000;149000;295000;293000;391000;358525;421743;430333;478546;413377;394369;370910;359327;439846;458128;415770;408065;419117;409687;395237;442893 -174;'620;Portugal;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;848;357;790;910;765;768;1050;1527;1580;1532;1532;1215;1744;5623;6326;9683;4957;5304;4846;7196;16581;10109;14652;17392;19149;27566;31124;55468;60155;41209;84692;99871;68529;64511;55469;51645;62431;75279.98;55038;42285;43410;82199;73439;55079 -174;'620;Portugal;1876;Paper and paperboard;5510;Production;t;118000;119400;117300;131300;152400;156800;153900;168200;215200;219400;238000;228100;254000;310000;357000;333000;449300;438100;493300;463000;485000;527000;592000;671000;706000;590000;628000;681000;740000;780000;877000;959000;878000;949000;977000;1026000;1080000;1136000;1163000;1290000;1419000;1537000;1530000;1664000;1570000;1644000;1643760;1661618;1633805;1456470;2180100;2120123;2129035;2187000;2220200;2097400;2095200;2060100;2024500;2115000;2169000;2243000;1830000 -174;'620;Portugal;1876;Paper and paperboard;5610;Import quantity;t;13900;13900;12000;16500;32000;35900;44900;58800;57500;76000;62900;72000;78300;75200;46800;39900;62300;52500;57500;76700;80000;82000;78700;81900;102600;126300;158500;220000;222000;294600;259400;334195;408449;447000;458000;490700;625000;564200;573000;643566;642000;668000;696000;783000;757000;736000;836000;777814;804114;802209;820683;765265;788227;788452;894190;848425;877239;890196;886595;821350;929673;948223;813445 -174;'620;Portugal;1876;Paper and paperboard;5622;Import value;1000 USD;3378;3385;3293;4239;7135;7668;9058;10792;12251;16468;15301;19055;24613;37543;28444;24690;33362;27977;44791;63152;67219;74088;67516;67848;83517;108463;156999;268249;250282;427104;259338;328023;465217;496463;695467;705750;676768;507808;481650;526165;523450;507670;608532;658452;687019;708840;875600;927256;791493;820724;773758;627982;667272;672419;743140;702744;753983.93;823815;751367;653977;881281;1063844;845070 -174;'620;Portugal;1876;Paper and paperboard;5910;Export quantity;t;8700;5700;7000;6200;8900;10500;10700;8000;9800;11700;15000;16700;26400;61900;105900;129100;117900;117100;168000;144000;148500;161000;220900;214700;216900;204600;164400;208000;225600;289500;336700;332107;456334;601200;603100;629800;726100;642939;683000;744414;792335;980991;1172689;1045427;1227548;1079337;1325326;1284019;1360240;962394;1773607;1791742;1843279;1883944;1882076;1916765;1889331;1891562;1892031;1744924;1930212;1981446;1594527 -174;'620;Portugal;1876;Paper and paperboard;5922;Export value;1000 USD;1676;1275;1536;1457;1865;1979;2063;1842;2261;3150;1580;4213;7106;24486;37227;40373;32836;32705;60063;68243;71022;67739;90234;93459;91526;97298;98917;154479;140242;235320;213481;223311;297576;459933;675268;694820;603569;483358;448856;530888;539760;694580;925758;834017;1019862;958131;1249034;1327061;1220149;1081694;1775090;1655801;1828189;1810568;1558470;1548753;1607116.66;1817046;1678617;1410734;1748700;2371021;1743784 -174;'620;Portugal;2042;Graphic papers;5510;Production;t;37800;37400;40400;39000;36500;36600;34100;43700;48800;43900;43900;44100;55000;68000;55000;60000;79300;82100;91000;87000;92000;97000;99000;116000;103000;119000;168000;151000;154000;167000;282000;353000;385000;435000;438000;486000;533000;552000;572000;700000;865000;954000;972000;1093000;1038000;1045000;1055136;1064218;1088300;934187;1551700;1553023;1515388;1581700;1597700;1609800;1594500;1537500;1443500;1299000;1463000;1519000;1140000 -174;'620;Portugal;2042;Graphic papers;5610;Import quantity;t;9300;9200;7600;10800;24400;26900;30900;35800;35500;45000;34900;40000;39300;38200;30800;26200;31100;35600;35100;45300;47400;45000;48200;50800;56300;58000;70000;132000;120400;133500;155000;163627;170449;183000;185000;181000;264000;272600;285000;320282;305000;297000;335000;410000;362000;362000;402000;371319;329366;307324;348544;305202;292875;293316;271001;254140;245257;219996;219067;180232;193309;214956;166956 -174;'620;Portugal;2042;Graphic papers;5622;Import value;1000 USD;1418;1376;1085;1666;3862;4047;4390;4996;5013;6349;5325;6269;7258;13567;12906;9747;11074;12964;15179;21352;23219;23450;21146;23384;27924;33459;47669;126398;104922;141156;156306;166932;140878;146276;219675;181160;206735;226182;220142;241885;235401;221902;278484;323829;323670;337208;398776;409382;333065;316688;367177;295386;295190;297862;210267;210004;212693.77;211772;200697;164111;191335;253687;198146 -174;'620;Portugal;2042;Graphic papers;5910;Export quantity;t;2500;600;1300;900;1000;300;300;300;500;500;800;2900;6700;12000;16500;19100;2600;14400;20100;14000;18500;17000;27800;39200;35400;40000;25000;44000;41400;49500;132500;119472;147334;292200;287100;305300;368100;375839;391000;469927;484138;671518;895284;750162;918213;965026;977030;986734;1045250;617216;1449637;1452022;1475174;1512462;1509626;1525053;1518522;1455448;1413901;1261188;1419204;1471029;1140099 -174;'620;Portugal;2042;Graphic papers;5922;Export value;1000 USD;428;197;302;261;300;124;118;96;170;173;253;882;2106;6256;7698;7809;1688;6841;11548;10310;13089;10597;14797;21729;20002;28020;21771;48017;41148;56077;108441;102151;110362;244081;348024;354999;316218;328666;309383;389562;383090;543793;771542;663970;854461;881169;994871;1108595;1041640;825111;1525383;1420006;1548958;1542218;1328265;1309028;1335004.68;1434544;1330090;1082172;1317129;1835816;1337435 -174;'620;Portugal;1671;Newsprint;5510;Production;t;19200;19000;20000;15900;10100;9300;5500;5400;3200;700;1700;1200;1000;1000;1000;1000;300;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;0 -174;'620;Portugal;1671;Newsprint;5610;Import quantity;t;9200;8600;7000;9300;22900;25500;29000;33700;33800;43500;33100;38900;36700;35500;28500;25900;30500;33300;31700;41000;41000;39000;36100;35000;40300;43000;54000;67000;65000;54000;56000;59185;63415;62000;69000;79600;86000;86600;95000;94547;101000;84000;99000;104000;91000;95000;114000;100165;90134;74997;69718;59025;57940;51192;54699;49626;50357;38885;37497;24046;24237;25354;24662 -174;'620;Portugal;1671;Newsprint;5622;Import value;1000 USD;1379;1263;965;1270;3439;3658;3830;4442;4522;5941;4812;6022;6498;12173;11416;9319;10513;11500;12651;17900;18000;18643;12701;12664;16153;21298;30941;43861;43011;37227;37980;41114;34377;30867;56393;61940;44679;51010;52939;47108;58402;45668;56775;62977;56946;64129;83987;78578;66513;46667;50607;38526;38019;33855;28284;25101;25923.63;23261;23362;13162;14184;20786;19037 -174;'620;Portugal;1671;Newsprint;5910;Export quantity;t;2500;600;1300;800;800;100;100;0;200;200;200;400;200;600;2100;1600;500;500;;;;;;;;;0;;300;400;500;1208;921;200;100;5300;100;39;0;96;138;518;284;162;213;26;30;1923;4012;584;472;185;112;64;74;175;9;445;21;31;69;31;50 -174;'620;Portugal;1671;Newsprint;5922;Export value;1000 USD;428;197;302;226;230;46;34;0;52;65;74;115;70;335;1093;650;224;178;;;;;;;;;0;;285;94;167;858;450;72;40;4999;91;50;32;79;80;282;163;190;275;188;237;1673;714;500;513;211;132;86;82;142;23.98;936;26;42;30;26;79 -174;'620;Portugal;1674;Printing and writing papers;5510;Production;t;18600;18400;20400;23100;26400;27300;28600;38300;45600;43200;42200;42900;54000;67000;54000;59000;79000;82000;91000;87000;92000;97000;99000;116000;103000;119000;168000;151000;154000;167000;282000;353000;385000;435000;438000;486000;533000;552000;572000;700000;865000;954000;972000;1093000;1038000;1045000;1055136;1064218;1088300;934187;1551700;1553023;1515388;1581700;1597700;1609800;1594500;1537500;1443500;1299000;1463000;1519000;1140000 -174;'620;Portugal;1674;Printing and writing papers;5610;Import quantity;t;100;600;600;1500;1500;1400;1900;2100;1700;1500;1800;1100;2600;2700;2300;300;600;2300;3400;4300;6400;6000;12100;15800;16000;15000;16000;65000;55400;79500;99000;104442;107034;121000;116000;101400;178000;186000;190000;225735;204000;213000;236000;306000;271000;267000;288000;271154;239232;232327;278826;246177;234935;242124;216302;204514;194900;181111;181570;156186;169072;189602;142294 -174;'620;Portugal;1674;Printing and writing papers;5622;Import value;1000 USD;39;113;120;396;423;389;560;554;491;408;513;247;760;1394;1490;428;561;1464;2528;3452;5219;4807;8445;10720;11771;12161;16728;82537;61911;103929;118326;125818;106501;115409;163282;119220;162056;175172;167203;194777;176999;176234;221709;260852;266724;273079;314789;330804;266552;270021;316570;256860;257171;264007;181983;184903;186770.14;188511;177335;150949;177151;232901;179109 -174;'620;Portugal;1674;Printing and writing papers;5910;Export quantity;t;;0;0;100;200;200;200;300;300;300;600;2500;6500;11400;14400;17500;2100;13900;20100;14000;18500;17000;27800;39200;35400;40000;25000;44000;41100;49100;132000;118264;146413;292000;287000;300000;368000;375800;391000;469831;484000;671000;895000;750000;918000;965000;977000;984811;1041238;616632;1449165;1451837;1475062;1512398;1509552;1524878;1518513;1455003;1413880;1261157;1419135;1470998;1140049 -174;'620;Portugal;1674;Printing and writing papers;5922;Export value;1000 USD;;0;0;35;70;78;84;96;118;108;179;767;2036;5921;6605;7159;1464;6663;11548;10310;13089;10597;14797;21729;20002;28020;21771;48017;40863;55983;108274;101293;109912;244009;347984;350000;316127;328616;309351;389483;383010;543511;771379;663780;854186;880981;994634;1106922;1040926;824611;1524870;1419795;1548826;1542132;1328183;1308886;1334980.7;1433608;1330064;1082130;1317099;1835790;1337356 -174;'620;Portugal;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 -174;'620;Portugal;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17600;20000;25140;21000;27000;21000;15000;19000;29000;28000;29060;26581;23984;27896;27322;28818;28362;29926;28583;26276;26633;24261;18322;15781;17959;10941 -174;'620;Portugal;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13351;14061;15887;14077;18063;15983;13184;16793;24109;24902;28561;24661;22300;37057;33707;36610;39267;19954;19039;17604.97;20771;18262;14295;12882;18337;12387 -174;'620;Portugal;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5300;3000;6480;2000;0;1000;1000;1000;1000;2000;846;2054;2118;2230;2929;5015;1671;2665;3300;3292;2791;2864;1457;3076;2608;2408 -174;'620;Portugal;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2266;1547;2821;812;399;1012;800;962;910;1693;1484;2803;2244;4003;2984;5605;3258;3892;4546;4358.89;4641;4651;2182;4841;4489;4866 -174;'620;Portugal;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;537000;565000;700000;865000;954000;972000;1093000;1038000;1045000;1055136;1064218;1088300;934187;1551700;1553023;1515388;1581700;1597700;1609800;1594500;1537500;1443500;1299000;1463000;1519000;1140000 -174;'620;Portugal;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32500;39000;32754;33000;42000;47000;100000;64000;56000;67000;49406;49233;42217;68444;58896;58515;72869;54679;46803;48271;38872;36523;37762;41548;41971;34629 -174;'620;Portugal;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32914;37257;39375;36856;44990;49548;57496;65981;64687;78053;66485;56662;61149;81063;61701;64687;76955;52311;55430;63796.34;51735;50866;49730;59072;64531;54270 -174;'620;Portugal;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;364700;383000;461182;481000;662000;884000;740000;909000;955000;967000;970588;1037543;613822;1441402;1446054;1461610;1499523;1501820;1518189;1512901;1449322;1407569;1257885;1414338;1466654;1135681 -174;'620;Portugal;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;321124;303595;383419;380838;535584;760427;652510;843715;869619;981696;1089058;1035221;819597;1513938;1412404;1535815;1527653;1319316;1298522;1325617.4;1422013;1316912;1075205;1308141;1826654;1328673 -174;'620;Portugal;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15000;7000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -174;'620;Portugal;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;135900;131000;167841;150000;144000;168000;191000;188000;182000;193000;192688;163418;166126;182486;159959;147602;140893;131697;129128;120353;115606;120786;100102;111743;129672;96724 -174;'620;Portugal;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;128907;115885;139515;126066;113181;156178;190172;183950;184283;211834;235758;185229;186572;198450;161452;155874;147785;109718;110434;105368.83;116005;108207;86924;105197;150033;112452 -174;'620;Portugal;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5800;5000;2169;1000;9000;10000;9000;8000;9000;8000;13377;1641;692;5533;2854;8437;11204;5067;3389;2320;2890;3447;1815;1721;1736;1960 -174;'620;Portugal;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5226;4209;3243;1360;7528;9940;10470;9509;10452;11245;16380;2902;2770;6929;4407;7406;11221;4975;5818;5004.41;6954;8501;4743;4117;4647;3817 -174;'620;Portugal;1675;Other paper and paperboard;5510;Production;t;80200;82000;76900;92300;115900;120200;119800;124500;166400;175500;194100;184000;199000;242000;302000;273000;370000;356000;402300;376000;393000;430000;493000;555000;603000;471000;460000;530000;586000;613000;595000;606000;493000;514000;539000;540000;547000;584000;591000;590000;554000;583000;558000;571000;532000;599000;588624;597400;545505;522283;628400;567100;613647;605300;622500;487600;500700;522600;581000;816000;706000;724000;690000 -174;'620;Portugal;1675;Other paper and paperboard;5610;Import quantity;t;4600;4700;4400;5700;7600;9000;14000;23000;22000;31000;28000;32000;39000;37000;16000;13700;31200;16900;22400;31400;32600;37000;30500;31100;46300;68300;88500;88000;101600;161100;104400;170568;238000;264000;273000;309700;361000;291600;288000;323284;337000;371000;361000;373000;395000;374000;434000;406495;474748;494885;472139;460063;495352;495136;623189;594285;631982;670200;667528;641118;736364;733267;646489 -174;'620;Portugal;1675;Other paper and paperboard;5622;Import value;1000 USD;1960;2009;2208;2573;3273;3621;4668;5796;7238;10119;9976;12786;17355;23976;15538;14943;22288;15013;29612;41800;44000;50638;46370;44464;55593;75004;109330;141851;145360;285948;103032;161091;324339;350187;475792;524590;470033;281626;261508;284280;288049;285768;330048;334623;363349;371632;476824;517874;458428;504036;406581;332596;372082;374557;532873;492740;541290.16;612043;550670;489866;689946;810157;646924 -174;'620;Portugal;1675;Other paper and paperboard;5910;Export quantity;t;6200;5100;5700;5300;7900;10200;10400;7700;9300;11200;14200;13800;19700;49900;89400;110000;115300;102700;147900;130000;130000;144000;193100;175500;181500;164600;139400;164000;184200;240000;204200;212635;309000;309000;316000;324500;358000;267100;292000;274487;308197;309473;277405;295265;309335;114311;348296;297285;314990;345178;323970;339720;368105;371482;372450;391712;370809;436114;478130;483736;511008;510417;454428 -174;'620;Portugal;1675;Other paper and paperboard;5922;Export value;1000 USD;1248;1078;1234;1196;1565;1855;1945;1746;2091;2977;1327;3331;5000;18230;29529;32564;31148;25864;48515;57933;57933;57142;75437;71730;71524;69278;77146;106462;99094;179243;105040;121160;187214;215852;327244;339821;287351;154692;139473;141326;156670;150787;154216;170047;165401;76962;254163;218466;178509;256583;249707;235795;279231;268350;230205;239725;272111.97;382502;348527;328562;431571;535205;406349 -174;'620;Portugal;1676;Household and sanitary papers;5510;Production;t;;;;;;;;4200;5700;6400;9300;3700;12000;19000;32000;27000;21000;22000;26500;26300;26700;29000;38000;38000;69000;49000;50000;50000;51000;53000;51000;63000;58000;61000;59000;63000;64000;65000;63000;65000;68000;71000;68000;73000;77000;75000;72263;72570;75984;75583;164200;91966;100500;97200;106200;109500;134100;142000;181400;303000;203000;205000;207000 -174;'620;Portugal;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;2900;4100;4000;3000;2000;4000;3000;12700;9000;10800;10000;14263;15000;17000;14000;14000;26000;22000;27000;25698;32298;32159;41217;40489;37859;45252;37785;21350;21350;17744;19455;21488;18316;16465;19425 -174;'620;Portugal;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;21266;5512;7403;8004;6254;4038;4352;5085;21527;10598;12322;12668;16269;14837;13853;14363;15001;25158;23697;33998;39931;42498;43419;55534;46873;48231;58173;42049;23217;23654.46;23804;24361;25904;24070;29096;30211 -174;'620;Portugal;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;9000;5300;6300;2000;4200;8000;11000;13000;14500;14000;11800;9000;13098;17000;15000;9000;9000;9000;8000;4000;1560;5047;19157;11481;13724;10593;10556;8955;10127;10127;46905;59352;61483;77432;56754;57500 -174;'620;Portugal;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;13296;6745;9121;3124;4186;7608;11168;18738;20900;13872;12506;8220;10925;11702;11637;9246;10186;9594;8595;4439;2576;6342;24149;15080;16015;13883;13815;9993;10713;10915.05;55171;66854;65308;84658;86054;74443 -174;'620;Portugal;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;511000;518000;515000;475000;502000;480000;489000;435000;494000;489937;521294;465985;427472;449100;435505;473647;508100;516300;378100;366600;380600;399600;513000;503000;519000;483000 -174;'620;Portugal;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;255200;246000;275659;289000;318000;340000;351000;361000;340000;398000;371784;435935;454548;397304;377287;408099;397836;578961;568371;605218;644889;637854;610374;707391;709158;619913 -174;'620;Portugal;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;224214;200003;216206;221410;233596;296838;299443;318019;325844;420276;454661;398926;439567;320851;252774;285467;277072;461441;442619;492574.45;562719;498301;436877;634926;753514;590127 -174;'620;Portugal;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;251600;278000;254985;286197;293473;265405;281265;297335;103311;343296;293664;308652;325244;309709;310809;340260;341528;363082;380368;358361;385674;415811;419069;430980;451340;394782 -174;'620;Portugal;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;134688;123675;121974;134595;138054;141861;156298;153594;66096;248327;212341;170341;230990;230064;209405;254393;243919;218496;224500;255531.42;319156;274202;254610;339201;440793;323799 -174;'620;Portugal;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;77000;77100;73400;100800;126300;123000;163200;133100;142000;182000;238000;219000;320000;284000;307200;284800;300500;329000;391000;493000;470000;357000;340000;387000;435000;455000;442000;475000;428000;444000;471000;463000;469000;;;;;;;;;;;;;;;;;;;;;;;;;; -174;'620;Portugal;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;3100;3100;2900;3800;5100;6000;10000;18000;16000;23000;20000;22000;25000;21000;8000;6000;20200;12100;14600;20500;21300;22000;20700;20200;32500;17100;23600;45000;82800;80000;89400;145868;101000;111000;142000;167000;158000;;;;;;;;;;;;;;;;;;;;;;;;;; -174;'620;Portugal;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;1078;1105;1214;1415;1800;2000;3000;4500;5000;7300;7000;9000;12500;13000;5800;4369;8679;6531;15000;21200;22300;35195;29075;28150;34893;6783;12317;35995;123110;73084;82852;140470;64117;70065;155835;183271;86570;;;;;;;;;;;;;;;;;;;;;;;;;; -174;'620;Portugal;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;6200;5100;5700;5300;7900;10200;10400;7700;9300;11200;14200;13800;19700;49900;89400;110000;115300;102700;147900;130000;130000;134000;136100;141500;147700;143200;115300;136000;170400;190700;202000;208135;253000;234000;237000;240000;221000;;;;;;;;;;;;;;;;;;;;;;;;;; -174;'620;Portugal;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;1248;1078;1234;1196;1565;1855;1945;1746;2091;2977;1327;3331;5000;18230;29529;32564;31148;25864;48515;57933;57933;49210;40489;48574;48980;53017;55478;76181;84218;100547;101652;116430;109259;114926;172731;174917;106842;;;;;;;;;;;;;;;;;;;;;;;;;; -174;'620;Portugal;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;381000;388000;391000;356000;356000;353000;354000;295000;358000;356580;390248;387649;357240;402200;395387;393947;386400;395700;378100;366600;380600;399600;393000;368000;389000;352000 -174;'620;Portugal;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104300;94000;108043;136000;172000;191000;201000;217000;190000;236000;243082;264291;269486;279416;270750;299052;292617;332213;323658;356086;368906;382440;384623;459169;436536;401591 -174;'620;Portugal;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41302;32448;40445;50940;61783;77260;90414;98804;83234;134838;160444;112521;147751;187268;150818;178109;170769;172855;164671;209064.92;242669;214958;181057;318974;358656;269270 -174;'620;Portugal;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;183200;224000;211611;237000;239000;216000;235000;245000;42000;278000;274913;285345;299934;284344;298695;328433;329860;325485;345138;315223;341171;359612;369150;374538;370756;333010 -174;'620;Portugal;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90387;95112;95942;102323;105937;107282;120921;119217;19953;187627;187292;146537;202124;206771;196548;241690;231105;189084;197693;217995.91;276672;231286;211736;282487;324812;229218 -174;'620;Portugal;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;57000;42000;43000;43000;35000;32593;33072;33072;35887;35300;35294;35300;77300;77300;0;0;0;0;98000;98000;98000;98000 -174;'620;Portugal;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73900;78000;98292;92000;82000;88000;100000;95000;99000;108000;99649;99660;110730;68847;64560;68288;67958;140897;140570;143471;142690;136690;123925;141114;156575;123292 -174;'620;Portugal;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;130295;119940;130131;127172;124292;164560;160387;171089;190328;220030;241439;211328;207096;70809;59082;66565;69375;197881;190391;189067.34;202875;186777;170903;207500;250441;212589 -174;'620;Portugal;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17800;25000;20345;23000;3000;1000;3000;2000;2000;6000;7377;10929;19643;22128;10589;10646;9899;7340;4267;6486;3043;3473;9339;4393;10788;9172 -174;'620;Portugal;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13497;13567;14507;17474;2841;1520;3941;2431;5834;10530;16202;16326;23469;18948;10441;10273;9785;10876;7629;12426.01;10906;10731;13187;12203;40058;36532 -174;'620;Portugal;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64000;61000;54000;48000;60000;56000;63000;91000;95000;68614;67422;14712;10584;9900;2322;2400;2400;1300;0;0;0;0;22000;22000;22000;22000 -174;'620;Portugal;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56800;52000;46103;51000;54000;49000;43000;41000;43000;45000;26871;54501;57564;35807;36901;37445;30913;76359;75598;75482;103599;78807;71010;81241;87681;74640 -174;'620;Portugal;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42701;36870;35312;40103;43275;48510;44775;42890;47379;58782;48928;63316;72298;40386;36331;37300;30026;75865;73331;78123.69;99914;80452;71742;90816;119995;91227 -174;'620;Portugal;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49600;29000;15009;26000;51000;48000;43000;50000;59000;59000;11254;11631;4300;1180;918;577;577;7918;8411;9790;11712;12975;10467;12493;32518;22380 -174;'620;Portugal;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30608;14959;8102;14714;29074;32886;31323;31789;40118;49952;8642;6842;3649;1908;1505;1450;1450;10335;10501;13759.82;16311;16271;14855;22833;48405;35889 -174;'620;Portugal;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66000;69000;70000;71000;29000;29000;29000;6000;6000;32150;30552;30552;23761;1700;2502;42000;42000;42000;0;0;0;0;0;15000;10000;11000 -174;'620;Portugal;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20200;22000;23221;10000;10000;12000;7000;8000;8000;9000;2182;17483;16768;13234;5076;3314;6348;29492;28545;30179;29694;39917;30816;25867;28366;20390 -174;'620;Portugal;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9916;10745;10318;3195;4246;6508;3867;5236;4903;6626;3850;11761;12422;22388;6543;3493;6902;14840;14226;16318.5;17261;16114;13175;17636;24422;17041 -174;'620;Portugal;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;0;8020;197;473;405;265;335;311;296;120;747;1367;2057;607;604;1192;22339;22552;26862;29748;39751;30113;39556;37278;30220 -174;'620;Portugal;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;196;37;3423;84;202;173;113;157;191;218;205;636;1748;2437;911;980;1579;8201;8677;11349.69;15267;15914;14832;21678;27518;22160 -174;'620;Portugal;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;38900;43100;46400;19500;34400;46100;21600;47200;45000;41000;32000;27000;29000;50000;68600;64900;65800;72000;64000;24000;64000;65000;70000;93000;100000;105000;102000;68000;7000;9000;9000;14000;14000;8000;10000;10000;11000;10000;10000;9000;20000;30000;26424;3536;3536;19228;15100;39629;39500;0;0;0;0;0;0;0;0;0;0 -174;'620;Portugal;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;1500;1600;1500;1900;2500;3000;4000;5000;6000;8000;8000;10000;14000;16000;8000;7700;11000;4800;7800;10900;11300;15000;9800;10900;13800;51200;64900;33000;15900;77000;11000;21700;135000;149000;128000;130000;194000;25600;32000;33362;33000;36000;7000;8000;8000;12000;9000;9013;6515;8178;33618;42287;49394;52048;6443;4564;5414;7567;10219;9256;10657;7644;7151 -174;'620;Portugal;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;882;904;994;1158;1473;1621;1668;1296;2238;2819;2976;3786;4855;10976;9738;10574;13609;8482;14612;20600;21700;15443;17295;16314;20700;68221;97013;84590;16738;205461;12176;14367;256184;275770;314872;319792;372865;45090;48837;51805;51802;38319;18847;20179;20172;22091;22550;23282;17004;21050;30196;32949;38384;39312;29383;26904;25061.25;25520;28008;27085;30950;27547;26586 -174;'620;Portugal;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;10000;57000;34000;33800;21400;24100;19000;8500;43000;200;300;48000;64000;66000;70000;123000;3700;5000;6404;5000;1000;3000;5000;3000;3000;1000;2061;1291;777;2780;15187;17252;19398;413;1217;2321;3535;2967;3184;2596;2323;2146 -174;'620;Portugal;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;7932;34948;23156;22544;16261;21668;16985;8131;69575;264;544;70347;89758;135775;144004;166637;7498;7578;8427;10373;1096;3109;3563;2213;2271;1397;3549;1826;1444;4563;10375;10955;10616;1716;4512;5665.5;8175;7471;8644;7712;8358;8107 -174;'620;Portugal;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;415887.78;470420;509873;492509;560094;671832;677960 -174;'620;Portugal;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1074537.74;1134355;1075147;1009551;1199695;1385308;1472342 -174;'620;Portugal;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23115.91;33028;30597;30010;24382;31065;23168 -174;'620;Portugal;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16098.59;12720;12835;11374;14365;16987;14853 -174;'620;Portugal;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8606.38;10349;9251;12657;12803;13683;11875 -174;'620;Portugal;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5197.23;3889;4666;3803;4919;5870;6084 -174;'620;Portugal;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14509.53;22679;21346;17353;11579;17382;11293 -174;'620;Portugal;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10901.36;8831;8169;7571;9446;11117;8769 -174;'620;Portugal;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32929.16;33316;36104;32043;34547;45988;46444 -174;'620;Portugal;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53345;63122;60244;51564;56253;75296;93370 -174;'620;Portugal;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26067.33;24425;29872;24842;24499;30256;27961 -174;'620;Portugal;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16089.4;13607;13583;8489;10824;11453;15684 -174;'620;Portugal;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42147.61;49481;47998;57565;56715;72476;87924 -174;'620;Portugal;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;149806.46;154676;131061;131873;137872;157995;173727 -174;'620;Portugal;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6843;26221 -174;'620;Portugal;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13618;17136 -174;'620;Portugal;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;932;2725 -174;'620;Portugal;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2497;3740 -174;'620;Portugal;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1215;2850 -174;'620;Portugal;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2330;1808 -174;'620;Portugal;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2 -174;'620;Portugal;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3 -174;'620;Portugal;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112;40 -174;'620;Portugal;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;55 -174;'620;Portugal;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;44 -174;'620;Portugal;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;24 -174;'620;Portugal;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;256835.11;287429;317281;301847;366677;410370;399295 -174;'620;Portugal;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;804449.99;857406;824998;771381;941567;1066899;1117329 -174;'620;Portugal;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7986.65;4925;5940;8440;8409;28162;35739 -174;'620;Portugal;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3986.27;1793;1729;2586;3888;10398;14259 -174;'620;Portugal;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26806.02;37816;42081;37762;44865;53515;57429 -174;'620;Portugal;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30762.02;31031;30697;32284;34926;46280;43120 -174;'620;Portugal;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;433321.61;484065;490267;465994;461507;602071;617711 -174;'620;Portugal;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;443087.99;575798;517312;505772;530281;678289;733830 -174;'620;Portugal;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11434.51;13729;13031;10244;10807;18773;13460 -174;'620;Portugal;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;858.07;935;78;25;76;38;92 -174;'620;Portugal;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84386.94;91982;91062;88014;91750;126509;121238 -174;'620;Portugal;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28952.92;32967;31258;30631;31766;18501;15960 -174;'620;Portugal;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76428.73;83004;80896;86093;78462;101749;115138 -174;'620;Portugal;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;137353.31;171145;196342;212820;182746;239164;307852 -174;'620;Portugal;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;127842.88;161206;167434;155329;151518;198562;209207 -174;'620;Portugal;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;173557.67;285388;189797;181236;214685;280938;276166 -174;'620;Portugal;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;133228.55;134144;137844;126314;128970;156478;158668 -174;'620;Portugal;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102366.02;85363;99837;81060;101008;139648;133760 -179;'634;Qatar;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;613538;652659;622289;558522;723781.36;919833;632853 -179;'634;Qatar;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13288;12726;7039;7655;6664;10172;10584 -179;'634;Qatar;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;1112;1334;1546;1465;1832;3446;2610;5305;6565;8015;11642;18412;20855;17660;17065;17065;18015;12699;13071;12971;11098;11051;11094;13157;8977;11316;10331;11780;16678;19926;15680;14657;39998;25310;33630;50896;66989;112892;74735;203492;109468;172860;160240;160294;245343;307968;334334;256553;198650;247306;207643;181329;238326.36;315397;266055 -179;'634;Qatar;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;11;28;47;37;19;19;29;34;24;23;282;1824;1824;6118;3170;9078;9265;9149;7651;7299;5796;6538;5450;4832;5672;5610;1813;1406;2119;5329;5115 -179;'634;Qatar;1861;Roundwood;5516;Production;m3;231;251;274;299;325;355;386;421;459;500;400;400;400;400;400;33;153;182;268;282;414;676;1005;1250;1559;1992;2276;2273;2481;2673;2866;3800;3934;2632;2778;2765;2745;4277;4372;4487;4540;4595;4650;4706;4763;4805;4847;4890;4933;4976;5005;5034;5063;5092;5122;5120;5118;5116;5114;5112;5107;5102;5097 -179;'634;Qatar;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;200;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;1021;1387;1247;1247;3808;3005;2830;1821;88;194;185;5912;8735;8262;37673;46073;44946;2518;3172;4914;11219;1417;7341;4928;14473;8088;6286;7402;8218;6390;14226;5693.97;5887;2580 -179;'634;Qatar;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;9;65;65;65;65;65;65;65;65;65;65;65;65;65;65;65;65;65;65;76;119;96;96;388;394;371;356;60;126;50;1450;2638;2220;2673;3135;8548;992;1427;1714;5399;959;1557;1515;7590;3265;1836;1902;1986;1320;1206;857;1564;1369 -179;'634;Qatar;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;546;546;3058;390;2115;2115;174;499;535;432;432;254;108;0;0;0;0;0;0;0 -179;'634;Qatar;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;32;611;24;163;163;60;143;179;163;163;29;16;0;0;0;0;0;0;0 -179;'634;Qatar;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -179;'634;Qatar;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;873;1439;635;3277;2207.85;1281;719 -179;'634;Qatar;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;131;166;81;406;244;337;137 -179;'634;Qatar;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -179;'634;Qatar;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -179;'634;Qatar;1863;Roundwood, non-coniferous;5516;Production;m3;231;251;274;299;325;355;386;421;459;500;400;400;400;400;400;33;153;182;268;282;414;676;1005;1250;1559;1992;2276;2273;2481;2673;2866;3800;3934;2632;2778;2765;2745;4277;4372;4487;4540;4595;4650;4706;4763;4805;4847;4890;4933;4976;5005;5034;5063;5092;5122;5120;5118;5116;5114;5112;5107;5102;5097 -179;'634;Qatar;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6529;6779;5755;10949;3486.12;4606;1861 -179;'634;Qatar;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1771;1820;1239;800;613;1227;1232 -179;'634;Qatar;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -179;'634;Qatar;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -179;'634;Qatar;1864;Wood fuel;5516;Production;m3;231;251;274;299;325;355;386;421;459;500;400;400;400;400;400;33;153;182;268;282;414;676;1005;1250;1559;1992;2276;2273;2481;2673;2866;3800;3934;2632;2778;2765;2745;4277;4372;4487;4540;4595;4650;4706;4763;4805;4847;4890;4933;4976;5005;5034;5063;5092;5122;5120;5118;5116;5114;5112;5107;5102;5097 -179;'634;Qatar;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;200;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;1471;1471;1471;1471;17;17;8;8;100;27;4000;4000;10499;17;671;671;477;52;3989;613;3587;5980;5458;6021;5408;5994;4787;5279.97;1442;958 -179;'634;Qatar;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;9;65;65;65;65;65;65;65;65;65;65;65;65;65;65;65;65;65;65;65;65;65;65;246;246;246;246;2;2;1;1;24;5;423;423;3889;12;447;447;178;6;1257;264;1785;2383;1500;1518;1436;1042;578;558;293;194 -179;'634;Qatar;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;105;105;105;105;105;2;2;108;108;;;;;;; -179;'634;Qatar;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;21;21;21;21;21;5;5;16;16;;;;;;; -179;'634;Qatar;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -179;'634;Qatar;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;578;3077;2137.85;943;282 -179;'634;Qatar;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;391;194;158;54 -179;'634;Qatar;1628;Wood fuel, non-coniferous;5516;Production;m3;231;251;274;299;325;355;386;421;459;500;400;400;400;400;400;33;153;182;268;282;414;676;1005;1250;1559;1992;2276;2273;2481;2673;2866;3800;3934;2632;2778;2765;2745;4277;4372;4487;4540;4595;4650;4706;4763;4805;4847;4890;4933;4976;5005;5034;5063;5092;5122;5120;5118;5116;5114;5112;5107;5102;5097 -179;'634;Qatar;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6021;5408;5416;1710;3142.12;499;676 -179;'634;Qatar;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1518;1436;993;187;364;135;140 -179;'634;Qatar;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;200;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;1471;1471;1471;1471;17;17;8;8;100;27;4000;4000;10499;17;671;671;477;52;3989;613;3587;5980;5458;;;;;;; -179;'634;Qatar;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;9;65;65;65;65;65;65;65;65;65;65;65;65;65;65;65;65;65;65;65;65;65;65;246;246;246;246;2;2;1;1;24;5;423;423;3889;12;447;447;178;6;1257;264;1785;2383;1500;;;;;;; -179;'634;Qatar;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;105;105;105;105;105;2;2;108;108;;;;;;; -179;'634;Qatar;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;21;21;21;21;21;5;5;16;16;;;;;;; -179;'634;Qatar;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121;487;347;347;2337;1534;1359;350;71;177;177;5904;8635;8235;33673;42073;34447;2501;2501;4243;10742;1365;3352;4315;10886;2108;828;1381;2810;396;9439;414;4445;1622 -179;'634;Qatar;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;54;31;31;142;148;125;110;58;124;49;1449;2614;2215;2250;2712;4659;980;980;1267;5221;953;300;1251;5805;882;336;384;550;278;628;299;1271;1175 -179;'634;Qatar;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;546;546;3050;382;2010;2010;69;394;430;430;430;146;0;0;0;0;0;0;0;0 -179;'634;Qatar;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;32;610;23;142;142;39;122;158;158;158;13;0;0;0;0;0;0;0;0 -179;'634;Qatar;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;21;21;21;21;1600;235;235;1600;10000;27698;304;304;122;5311;365;390;1166;2607;1104;241;873;1439;57;200;70;338;437 -179;'634;Qatar;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;10;348;111;111;98;560;1690;19;19;7;604;12;160;310;298;241;69;131;166;32;15;50;179;83 -179;'634;Qatar;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;380;380;1941;1941;0;0;0;0;0;146;0;0;0;0;0;0;0;0 -179;'634;Qatar;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;20;20;103;103;0;0;0;0;0;13;0;0;0;0;0;0;0;0 -179;'634;Qatar;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;21;21;21;21;1600;235;235;1600;10000;27698;304;304;122;5311;365;390;1166;2607;1104;241;873;1439;57;200;70;338;437 -179;'634;Qatar;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;10;348;111;111;98;560;1690;19;19;7;604;12;160;310;298;241;69;131;166;32;15;50;179;83 -179;'634;Qatar;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;380;380;1941;1941;0;0;0;0;0;146;0;0;0;0;0;0;0;0 -179;'634;Qatar;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;20;20;103;103;0;0;0;0;0;13;0;0;0;0;0;0;0;0 -179;'634;Qatar;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121;487;347;347;2337;1513;1338;329;50;156;156;4304;8400;8000;32073;32073;6749;2197;2197;4121;5431;1000;2962;3149;8279;1004;587;508;1371;339;9239;344;4107;1185 -179;'634;Qatar;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;54;31;31;142;138;115;100;48;114;39;1101;2503;2104;2152;2152;2969;961;961;1260;4617;941;140;941;5507;641;267;253;384;246;613;249;1092;1092 -179;'634;Qatar;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;542;542;2670;2;69;69;69;394;430;430;430;0;0;0;0;0;0;0;0;0 -179;'634;Qatar;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;32;590;3;39;39;39;122;158;158;158;0;0;0;0;0;0;0;0;0 -179;'634;Qatar;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121;487;347;347;1399;575;400;37;37;37;4;4;0;300;357;357;191;1591;1591;1591;531;531;153;153;4;182;98;474;1371;328;24;343;303;898 -179;'634;Qatar;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;54;31;31;122;118;95;44;44;44;1;1;0;104;59;59;129;422;422;422;356;356;13;13;6;45;69;47;384;232;14;210;171;744 -179;'634;Qatar;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94;130;130;130;0;0;0;0;0;0;0;0;0 -179;'634;Qatar;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;101;101;101;0;0;0;0;0;0;0;0;0 -179;'634;Qatar;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;938;938;938;292;13;119;152;4300;8400;7700;31716;31716;6558;606;606;2530;4900;469;2809;2996;8275;822;489;34;0;11;9215;1;3804;287 -179;'634;Qatar;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;56;4;70;38;1100;2503;2000;2093;2093;2840;539;539;838;4261;585;127;928;5501;596;198;206;0;14;599;39;921;348 -179;'634;Qatar;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;542;542;2670;2;69;69;69;300;300;300;300;0;0;0;0;0;0;0;0;0 -179;'634;Qatar;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;32;590;3;39;39;39;57;57;57;57;0;0;0;0;0;0;0;0;0 -179;'634;Qatar;1630;Wood charcoal;5510;Production;t;32;35;38;42;46;50;55;60;60;60;60;60;60;60;60;60;60;60;60;60;60;60;60;60;60;60;60;60;60;60;60;60;282;328;328;328;328;328;328;681;689;698;706;715;724;730;736;743;750;756;761;765;769;774;778;778;777;777;777;776;776;775;774 -179;'634;Qatar;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;2200;4400;3500;1700;1700;1700;1700;1700;1700;1700;1400;5800;5800;5800;5800;5800;5800;5800;5800;5800;5800;5800;5800;1082;313;293;2297;1700;1229;1463;1564;1478;3700;1225;94;8;8;3941;1055;5634;718;7857;8689;4481;3740;7153;5534;8701;9744;5891;7726;5732;3901.18;5243;3838 -179;'634;Qatar;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;119;238;183;95;95;100;200;280;340;350;334;1488;1490;1495;1500;1500;1500;1500;1500;1500;1500;1500;1500;177;54;53;610;450;314;243;301;302;869;249;382;3288;3288;1761;375;1775;267;2411;2418;916;1809;3813;2983;4372;4434;2810;3170;2407;2440.91;2070;3016 -179;'634;Qatar;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;184;184;184;184;184;184;184;184;2;2;2;1;0;0;0;0 -179;'634;Qatar;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;99;99;99;99;99;99;99;12;12;12;0;0;0;0;0 -179;'634;Qatar;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;620;736;171;245;200;336;3285;3285;3620;2455;11947;6315;5820;3769;7782;13095;5979;5561;6945;5964;5197;1028;374;951.27;1784;16401 -179;'634;Qatar;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;77;16;190;179;276;162;162;1451;262;11068;733;3551;722;939;1890;2848;2819;3618;2477;2002;229;90;241;790;1647 -179;'634;Qatar;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;193;193;193;193;193;193;229;229;229;68;83;83;114;114;114;114;114;114 -179;'634;Qatar;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;35;35;35;35;35;35;44;44;44;136;138;138;138;138;138;138;138;138 -179;'634;Qatar;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;126;126;200;200;200;2367;2367;3128;883;9720;5367;1269;2298;853;9801;2849;2023;1973;1999;647;310;176;444;1549;11753 -179;'634;Qatar;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;3;3;177;179;179;126;126;1346;156;10498;448;1415;215;100;945;1429;913;1208;370;375;130;59;164;702;1220 -179;'634;Qatar;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;160;160;160;160;160;160;160;160;160;67;67;67;67;67;67;67;67;67 -179;'634;Qatar;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;31;31;31;31;31;31;31;31;135;135;135;135;135;135;135;135;135 -179;'634;Qatar;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;267;267;267;400;610;610;610;45;45;0;136;918;918;492;1572;2227;948;4551;1471;6929;3294;3130;3538;4972;3965;4550;718;198;507.27;235;4648 -179;'634;Qatar;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;11;11;11;15;74;74;74;13;13;0;97;36;36;105;106;570;285;2136;507;839;945;1419;1906;2410;2107;1627;99;31;77;88;427 -179;'634;Qatar;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;33;33;33;33;33;33;69;69;69;1;16;16;47;47;47;47;47;47 -179;'634;Qatar;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;4;4;4;4;4;4;13;13;13;1;3;3;3;3;3;3;3;3 -179;'634;Qatar;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2620;2332;3586;4836;5460;2081;4848;4287;4761.82;2350;1529 -179;'634;Qatar;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;832;982;1918;2370;2635;753;1849;1701;1747.83;1698;448 -179;'634;Qatar;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2620;2332;3586;4836;5460;2081;455;263;546.08;19;86 -179;'634;Qatar;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;832;982;1918;2370;2635;753;144;156;254;11;24 -179;'634;Qatar;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4393;4024;4215.74;2331;1443 -179;'634;Qatar;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1705;1545;1493.83;1687;424 -179;'634;Qatar;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -179;'634;Qatar;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;8777;13531;28992;17796;18423;18423;24028;10070;4502;8122;13900;13206;18698;37338;15188;31200;23287;38710;38043;74585;70532;60210;75414;111486;112416;143610;151492;158854;218238;250076;227464;184240;211643;200216;146660;182862;237156;237156 -179;'634;Qatar;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;2325;3346;4725;3767;4075;4075;4453;1670;1469;1855;2652;2302;4008;4441;2992;7926;4357;6608;9174;18211;20504;22837;28021;26929;30257;38794;41417;51816;61117;64123;56243;45311;60027;59032;42655;68646;102451;102451 -179;'634;Qatar;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;26;26;26;0;0;0;0;0;0;0;20;122;122;91;74;266;266;215;8;21;29;7;42;0;46;65;49;0;39;1;0 -179;'634;Qatar;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;9;9;9;0;0;0;0;0;0;0;6;37;37;18;23;183;183;16;10;46;244;12;18;0;16;9;14;35;18;2;0 -179;'634;Qatar;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -179;'634;Qatar;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;2498;7651;24235;13115;14645;14645;17960;9905;2870;5939;11500;12469;12436;17306;12907;9900;20700;34000;15400;51942;50708;49701;59496;103000;95796;128000;128263;135064;192375;183425;174546;147714;178110;170964;126832;157469;200872;200872 -179;'634;Qatar;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;436;1373;2956;2135;2749;2749;2926;1574;346;931;1941;1799;1955;2252;1700;1254;2816;4241;2268;11305;12882;14013;18300;20008;21266;28928;28036;38018;46278;40374;34692;31637;39361;42001;29003;49388;77023;77023 -179;'634;Qatar;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;46;29;72;72;21;0;21;21;0;0;0;45;65;49;0;0;0;0 -179;'634;Qatar;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;7;12;83;83;13;0;46;12;0;0;0;15;9;14;35;0;1;0 -179;'634;Qatar;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -179;'634;Qatar;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;6279;5880;4757;4681;3778;3778;6068;165;1632;2183;2400;737;6262;20032;2281;21300;2587;4710;22643;22643;19824;10509;15918;8486;16620;15610;23229;23790;25863;66651;52918;36526;33533;29252;19828;25393;36284;36284 -179;'634;Qatar;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;1889;1973;1769;1632;1326;1326;1527;96;1123;924;711;503;2053;2189;1292;6672;1541;2367;6906;6906;7622;8824;9721;6921;8991;9866;13381;13798;14839;23749;21551;13674;20666;17031;13652;19258;25428;25428 -179;'634;Qatar;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;26;26;26;0;0;0;0;0;0;0;20;118;118;45;45;194;194;194;8;0;8;7;42;0;1;0;0;0;39;1;0 -179;'634;Qatar;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;9;9;9;0;0;0;0;0;0;0;6;36;36;11;11;100;100;3;10;0;232;12;18;0;1;0;0;0;18;1;0 -179;'634;Qatar;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -179;'634;Qatar;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;1;16;0;0;43;94;189;306;600;26;592;963;963;2550;1056;4616;2399;1532;227;835;3034;1116;2874;3418;2124;1651;516;536;1165;1579;1157 -179;'634;Qatar;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;20;20;0;0;49;39;89;155;206;29;488;751;751;1171;975;3765;2022;2347;572;348;2324;1108;3074;2921;2720;3843;1754;3048;3354;4954;1863 -179;'634;Qatar;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;23;23;19;3;3;2;5;52;0;0;0;3;0;1;0;5 -179;'634;Qatar;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;14;14;43;24;0;82;5;34;0;0;2;53;22;12;13;13 -179;'634;Qatar;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -179;'634;Qatar;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;1000;2000;2000;1100;1100;1100;1100;7000;10000;13000;16000;18300;18300;18300;18300;18300;18300;12437;13611;14517;14124;4530;4530;16278;8931;16184;11968;13600;25338;35853;32595;15022;99442;46029;43462;65579;65579;122685;40513;124539;50964;165644;195532;223650;262616;268764;339654;231781;235724;221046;224422;242709;325216.78;260475;173168 -179;'634;Qatar;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;199;409;425;246;246;246;246;1871;3000;4300;6036;7347;7400;7100;6500;6500;6500;4139;4865;4506;3092;1667;1667;6443;3823;6751;5467;6162;10273;10103;5619;4924;17132;15460;14210;16922;16922;45503;23153;98229;43400;66172;76829;91047;132402;161110;193476;118338;82171;95138;76955;81452;105376.76;109614;77910 -179;'634;Qatar;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;0;0;0;0;12;12;8;8;104;104;180;194;296;296;541;275;339;339;339;689;236;224;487;396;42;45;2;139 -179;'634;Qatar;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;4;4;4;4;33;33;8;14;136;136;346;61;112;114;116;576;347;249;272;466;75;31;241;190 -179;'634;Qatar;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -179;'634;Qatar;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;1000;2000;2000;1100;1100;1100;1100;7000;10000;13000;16000;18300;18300;18300;18300;18300;18300;12437;13611;14517;14124;4530;4530;14240;7278;14624;11093;11500;21630;31587;12790;12045;40600;40600;30416;30619;30619;82991;14795;94736;30036;150488;170583;175353;225459;214596;263912;165031;170759;155518;136318;155994;207058;143951;101434 -179;'634;Qatar;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;199;409;425;246;246;246;246;1871;3000;4300;6036;7347;7400;7100;6500;6500;6500;4139;4865;4506;3092;1667;1667;5754;3158;6117;4927;5172;9239;9105;5003;4321;14538;14536;11070;10869;10869;33815;6150;76668;30899;55987;63052;68628;107759;126063;143240;88171;53315;61909;47048;50865;60045;56874;38263 -179;'634;Qatar;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;85;85;8;22;116;116;72;3;3;3;3;484;31;176;439;359;4;7;0;137 -179;'634;Qatar;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;28;28;1;7;87;87;17;7;0;2;4;250;21;134;157;446;57;13;232;181 -179;'634;Qatar;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;334 -179;'634;Qatar;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;272 -179;'634;Qatar;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;745;89;400;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -179;'634;Qatar;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;205;40;261;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -179;'634;Qatar;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;200;186;21;164;139;1172;110;927;10027;10027;1246;8743;4380;6776;987;2177;1383;8171;14175;18198;18848;20244;20244;24555;30761;31417;35212;26903 -179;'634;Qatar;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;196;229;12;38;32;515;21;336;1645;1645;556;6490;3052;4784;1271;1793;1288;5626;6900;7672;6997;8223;8223;8162;11221;10997.94;17511;12645 -179;'634;Qatar;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;0;0;0;0;8;8;0;0;12;12;12;12;22;22;311;114;114;114;114;114;114;0;0;36;36;36;0;0 -179;'634;Qatar;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;1;1;0;0;2;2;2;2;42;42;322;47;47;47;47;47;47;0;0;18;18;18;1;1 -179;'634;Qatar;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;0;0;0;0;3448;3058;7191;0;16;126;1000;1428;3580;3147;2165;1029;246;294;173;394;163;366 -179;'634;Qatar;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22;0;0;0;0;1556;2882;5553;0;5;39;394;1097;2694;2509;1651;506;308;156;326;170;208;117 -179;'634;Qatar;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;0;0;0;0;0;0;0 -179;'634;Qatar;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;0;0;0;0;0;0;0 -179;'634;Qatar;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1293;1564;1160;803;1900;3522;4245;19641;2810;57642;5319;12119;24933;24933;35000;13917;18232;14152;14153;22646;45914;27558;36413;54397;45737;43692;45038;63255;55781;86347.78;81149;44465 -179;'634;Qatar;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;484;625;373;505;794;805;986;578;549;2057;903;2804;4408;4408;9576;7631;12956;7717;8909;11945;20737;17920;25453;40055;21519;20127;24698;21589;19040;34163.82;35021;26885 -179;'634;Qatar;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;7;7;160;160;157;157;157;157;221;221;221;90;90;48;48;1;2;2;2;2 -179;'634;Qatar;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;5;5;5;5;5;5;63;63;63;277;277;115;115;2;0;0;8;8 -179;'634;Qatar;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;571;281;935;1048;600;614;1144;1507;1507;9263;716;6082;869;671;581;2383;503;1554;1320;1772;978;1819;4012;6184;2843;2357;1332 -179;'634;Qatar;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;170;134;50;358;195;184;660;699;699;4822;563;4416;774;686;454;310;1334;7893;1295;1090;1020;1192;1699;2450;2301;2459;1140 -179;'634;Qatar;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;28;28;28;28;28;0;1;1;1;1 -179;'634;Qatar;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;29;29;29;29;29;29;0;0;0;0;0 -179;'634;Qatar;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;499;1000;404;3384;17398;942;942;4200;9662;16691;16691;10807;9203;9664;9555;10764;14206;30000;21000;30000;48000;36000;39000;37857;47762;38407;72042.61;67847;31657 -179;'634;Qatar;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;451;572;328;739;455;98;98;635;1837;2854;2854;2599;4648;6473;4515;6452;7518;17010;11752;14585;35511;16436;15943;19467;16451;14042;28986.71;29616;22784 -179;'634;Qatar;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4;4;1;1;1;1;37;37;37;43;43;1;1;0;0;0;1;1 -179;'634;Qatar;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3;3;3;3;3;32;32;32;167;167;5;5;2;0;0;8;8 -179;'634;Qatar;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;936;1027;658;304;900;2547;580;1308;820;56100;505;1313;6735;6735;14930;3998;2486;3728;2718;7859;13531;6055;4859;5077;7965;3714;5362;11481;11190;11462.17;10945;11476 -179;'634;Qatar;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;362;422;254;54;222;307;113;73;93;1764;84;307;855;855;2155;2420;2067;2428;1771;3973;3417;4834;2975;3249;3993;3164;4039;3439;2548;2876.11;2946;2961 -179;'634;Qatar;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;156;156;156;156;156;156;156;156;156;19;19;19;19;1;1;1;0;0 -179;'634;Qatar;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;2;2;2;2;2;2;2;2;2;81;81;81;81;0;0;0;0;0 -179;'634;Qatar;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;357;537;502;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -179;'634;Qatar;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;122;203;119;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -179;'634;Qatar;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6000;8000;5000;15000;13000;17000;18000;20000;15000;15000;15000;15000;15000;15000;15000;15000;15000 -179;'634;Qatar;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101;121;158;158;802;327;454;436;436;354;739;1860;1860;6202;675;3190;2444;3920;315;4419;964;927;687;1459;7714;7309;7182;4406;389;835;768 -179;'634;Qatar;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;20;38;38;254;49;54;78;78;69;328;443;443;4652;364;2460;1745;2276;393;1410;452;1203;784;1750;1823;898;793;383;504;395;434 -179;'634;Qatar;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;1740;1740;2359;6220;7694;4947;15067;12701;17074;17963;19714;14278;14976;16613;16590;4307;4686;8765;10117;8820 -179;'634;Qatar;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;172;172;256;1398;1727;1049;2462;3910;4249;4306;4708;3408;3526;4614;4529;767;832;1574;1756;1533 -179;'634;Qatar;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;57;57;555;80;69;86;86;40;527;580;580;5240;663;2905;2234;3779;312;661;682;336;222;98;183;258;131;249;386;255;188 -179;'634;Qatar;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;28;28;240;35;29;49;49;43;297;301;301;4239;358;2320;1703;1990;379;378;227;226;221;174;161;297;189;274;483;337;376 -179;'634;Qatar;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;1;1;27;27;27;174;203;203;71;71;71;71;48;48;48;48;48;48 -179;'634;Qatar;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;1;1;91;91;91;248;269;269;127;127;127;127;42;42;42;42;42;42 -179;'634;Qatar;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;57;57;555;90;79;96;96;40;523;570;570;653;607;528;510;257;282;631;354;261;144;90;109;184;125;245;311;97;133 -179;'634;Qatar;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;28;28;240;39;33;53;53;43;287;293;293;322;329;339;303;365;358;357;149;127;149;141;120;256;184;271;440;212;268 -179;'634;Qatar;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;1;1;1;1;1;148;177;177;45;45;45;45;45;45;45;45;45;45 -179;'634;Qatar;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;1;1;1;1;1;158;179;179;37;37;37;37;37;37;37;37;37;37 -179;'634;Qatar;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;0;0;0;18;18 -179;'634;Qatar;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;0;0;0;0;26;26 -179;'634;Qatar;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -179;'634;Qatar;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -179;'634;Qatar;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;80;1;1;69;95;291;102;16;20;0;;;;;;; -179;'634;Qatar;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;35;35;40;34;38;27;5;15;0;;;;;;; -179;'634;Qatar;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;7;7;7;7;0;;;;;;; -179;'634;Qatar;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;0;0;0;0;0;;;;;;; -179;'634;Qatar;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;0;0;0;;;;;;; -179;'634;Qatar;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;0;0;0;;;;;;; -179;'634;Qatar;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;57;57;555;80;69;86;86;40;523;570;570;570;524;524;506;185;184;333;245;238;117;90;106;184;125;245;311;76;112 -179;'634;Qatar;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;28;28;240;35;29;49;49;43;287;293;293;293;300;300;264;321;320;319;122;122;134;141;96;256;184;271;440;183;239 -179;'634;Qatar;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;147;176;176;45;45;45;45;45;45;45;45;45;45 -179;'634;Qatar;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;157;178;178;37;37;37;37;37;37;37;37;37;37 -179;'634;Qatar;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;122;122;122;2;2;2;2;2;2;2;1;1 -179;'634;Qatar;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;11;11;11;11;11;11;11;1;1 -179;'634;Qatar;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;12;12;510;22;22;22;22;0;504;504;504;504;504;504;504;182;182;182;77;77;86;51;87;106;84;185;185;2;2 -179;'634;Qatar;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;9;9;221;10;10;10;10;0;262;262;262;262;262;262;262;315;315;315;44;44;72;36;53;93;73;132;132;0;0 -179;'634;Qatar;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;16;45;45;45;45;45;45;45;45;45;45;45;45 -179;'634;Qatar;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;16;37;37;37;37;37;37;37;37;37;37;37;37 -179;'634;Qatar;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;76;39;58;124;73;109 -179;'634;Qatar;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;152;100;128;297;182;238 -179;'634;Qatar;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;46;46;46;0;0;0;0;0;0;0;0;0;0;7;7;0;0;0;;;;;;; -179;'634;Qatar;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;18;18;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -179;'634;Qatar;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;45;45;45;12;1;18;18;40;19;66;66;66;20;20;2;3;2;22;39;39;29;37;;;;;;; -179;'634;Qatar;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;19;19;19;7;1;21;21;43;25;31;31;31;38;38;2;6;5;3;77;77;51;94;;;;;;; -179;'634;Qatar;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;131;131;131;0;0;0;;;;;;; -179;'634;Qatar;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;141;141;141;0;0;0;;;;;;; -179;'634;Qatar;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;3 -179;'634;Qatar;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;3 -179;'634;Qatar;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;10;10;4587;56;2377;1724;3522;30;30;328;75;78;8;74;74;6;4;75;161;58 -179;'634;Qatar;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;8;8;3917;29;1981;1400;1625;21;21;78;99;72;33;41;41;5;3;43;128;111 -179;'634;Qatar;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;26;26;26;26;26;26;26;26;3;3;3;3;3;3 -179;'634;Qatar;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;90;90;90;90;90;90;90;90;90;5;5;5;5;5;5 -179;'634;Qatar;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1442;1442;34;34;51;51;52;52;43;2;2;2;11;11;11;1538;5;5;32;32 -179;'634;Qatar;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1153;1153;12;12;59;59;38;38;2;3;7;5;9;9;9;138;5;5;41;41 -179;'634;Qatar;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;84;84;84;84;84;0;0;0;0;0;0;0;0;0;0 -179;'634;Qatar;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;20;20;20;0;0;0;0;0;0;0;0;0;0 -179;'634;Qatar;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6000;8000;5000;15000;13000;17000;18000;20000;15000;15000;15000;15000;15000;15000;15000;15000;15000 -179;'634;Qatar;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101;101;101;101;247;247;385;350;350;314;212;1280;1280;962;12;285;210;141;3;3758;282;591;465;1361;7531;7051;7051;4157;3;580;580 -179;'634;Qatar;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;14;14;25;29;29;26;31;142;142;413;6;140;42;286;14;1032;225;977;563;1576;1662;601;604;109;21;58;58 -179;'634;Qatar;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;1740;1740;2358;6219;7667;4920;15040;12527;16871;17760;19643;14207;14905;16542;16542;4259;4638;8717;10069;8772 -179;'634;Qatar;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;172;172;255;1397;1636;958;2371;3662;3980;4037;4581;3281;3399;4487;4487;725;790;1532;1714;1491 -179;'634;Qatar;1876;Paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000 -179;'634;Qatar;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;900;1600;1700;1300;1900;2500;2500;2900;2900;2900;4000;6200;7300;5300;5300;5300;5900;5340;3560;2409;2627;4335;4335;2325;3851;3100;1549;2100;3010;6379;6654;6810;18306;3492;12135;21908;28366;29836;28657;46774;32301;48776;37910;29016;52255;66151;60333;66140;59729;74623;59981;50956;50194.52;68722;53571 -179;'634;Qatar;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;794;687;929;1059;1426;3035;2099;3089;3160;3300;5207;9512;11900;9000;9000;9000;9950;4670;3295;2175;2674;3733;3733;1943;3293;2604;1956;2092;3056;5345;4969;6136;12143;2329;9118;16330;22924;29290;25765;56688;32599;60409;39515;22658;52300;68190;61887;65096;55168;79840;62403;48382;55153.86;91817;76873 -179;'634;Qatar;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;12;40;40;12;12;32;33;13;12;744;2535;2535;15136;3981;14093;16654;12715;5959;4719;1036;2335;1966;666;445;446;601;518;575;5772;5792 -179;'634;Qatar;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;19;37;37;19;19;29;30;20;19;271;1549;1549;5189;1675;6701;7566;6068;3349;2550;724;1391;1150;793;643;648;375;304;346;3179;3241 -179;'634;Qatar;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;600;400;700;900;1400;1400;1600;1600;1600;1900;3400;4000;2900;2900;2900;3500;3791;2330;1264;2194;3970;3970;1869;2837;1985;1201;1700;2610;5745;5543;4739;13300;3419;10671;16093;22551;25118;26616;34323;30802;35780;34458;21314;42686;45759;42017;42183;41270;51770;37951;23714;22386.16;30730;24993 -179;'634;Qatar;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;226;218;325;528;1702;1702;1724;1760;1800;2317;4465;5600;4400;4400;4400;5350;3519;2249;1159;2169;3227;3227;1362;2558;1776;1513;1550;2320;4484;3770;4365;9317;2098;7479;12003;18597;22164;22883;38970;30561;40304;35210;16466;40476;46057;41952;37313;33641;51745;36660;20976;22041.2;37714;32064 -179;'634;Qatar;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;12;12;12;12;12;32;32;12;12;65;1670;1670;12179;169;12902;12902;7163;5669;4449;606;1993;1835;82;130;131;200;33;90;105;105 -179;'634;Qatar;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;19;19;19;19;19;29;29;19;19;34;977;977;3939;83;6289;6289;3569;3133;2307;417;1035;927;112;102;107;157;29;71;86;86 -179;'634;Qatar;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;24;53;306;900;570;2292;1841;1360;3100;523;797;2481;8939;12660;11787;16339;16339;17338;2774;4334;10817;14070;7726;10241;6181;3810;2587;97;94;70;1124 -179;'634;Qatar;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;14;25;216;481;262;1190;920;811;2322;218;460;1265;7859;10649;10205;16913;16913;16773;2103;3162;10144;12850;6193;6995;4266;3032;1825;72;80;103;901 -179;'634;Qatar;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;0;0;0;1030;1030;2446;48;5808;5808;69;1481;192;192;1784;1784;31;31;31;31;31;31;31;31 -179;'634;Qatar;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;0;0;0;486;486;822;19;2821;2821;101;1040;121;121;833;833;18;18;18;18;18;18;18;18 -179;'634;Qatar;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;600;400;700;900;1400;1400;1600;1600;1600;1900;3400;4000;2900;2900;2900;3500;3791;2330;1264;2194;3970;3970;1776;2813;1932;895;800;2040;3453;3702;3379;10200;2896;9874;13612;13612;12458;14829;17984;14463;18442;31684;16980;31869;31689;34291;31942;35089;47960;35364;23617;22292.16;30660;23869 -179;'634;Qatar;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;226;218;325;528;1702;1702;1724;1760;1800;2317;4465;5600;4400;4400;4400;5350;3519;2249;1159;2169;3227;3227;1319;2544;1751;1297;1069;2058;3294;2850;3554;6995;1880;7019;10738;10738;11515;12678;22057;13648;23531;33107;13304;30332;33207;35759;30318;29375;48713;34835;20904;21961.2;37611;31163 -179;'634;Qatar;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;12;12;12;12;12;12;12;12;12;65;640;640;9733;121;7094;7094;7094;4188;4257;414;209;51;51;99;100;169;2;59;74;74 -179;'634;Qatar;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;19;19;19;19;19;19;19;19;19;34;491;491;3117;64;3468;3468;3468;2093;2186;296;202;94;94;84;89;139;11;53;68;68 -179;'634;Qatar;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;984;1055;892;4600;972;2707;6684;6684;3655;2747;3841;2538;5165;6957;7717;4875;1754;3368;1793;1458;2969;2034;916;731;651;2086 -179;'634;Qatar;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;817;707;991;3793;484;1459;5273;5273;3304;1860;5030;2469;6346;6805;6805;3935;1973;3031;1566;1336;2764;2026;795;740;941;2054 -179;'634;Qatar;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2496;53;4048;4048;4048;4048;4048;205;0;0;0;0;0;0;0;0;0;0 -179;'634;Qatar;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;769;27;1984;1984;1984;1984;1984;94;0;0;0;0;0;0;0;0;0;0 -179;'634;Qatar;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1142;1224;1377;1800;98;2490;4609;4609;5334;4694;7724;6504;5363;15309;5347;14052;18288;17089;17572;17422;22414;17766;12828;11660;17232;14766 -179;'634;Qatar;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1015;878;1359;1313;98;1815;3636;3636;5004;4004;9468;6326;6871;16351;3821;14314;18943;18523;17618;15384;24708;19238;11768;10702;20069;19212 -179;'634;Qatar;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;4945;48;2485;2485;2485;21;7;7;7;51;51;99;99;169;2;2;1;1 -179;'634;Qatar;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;1600;17;1209;1209;1209;16;21;21;21;94;94;84;84;139;3;3;3;3 -179;'634;Qatar;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1327;1423;1110;3800;1826;4677;2319;2319;3469;7388;6419;5421;7914;9418;3916;12942;11647;13834;12577;16209;22577;15564;9873;9901.16;12777;7017 -179;'634;Qatar;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1462;1265;1204;1889;1298;3745;1829;1829;3207;6814;7559;4853;10314;9951;2678;12083;12291;14205;11134;12655;21241;13571;8341;10519.2;16601;9897 -179;'634;Qatar;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;12;12;65;624;624;2292;20;561;561;561;119;202;202;202;0;0;0;1;0;0;57;73;73 -179;'634;Qatar;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;19;19;34;478;478;748;20;275;275;275;93;181;181;181;0;0;0;5;0;8;50;65;65 -179;'634;Qatar;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000 -179;'634;Qatar;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;900;1000;1300;600;1000;1100;1100;1300;1300;1300;2100;2800;3300;2400;2400;2400;2400;1549;1230;1145;433;365;365;456;1014;1115;348;400;400;634;1111;2071;5006;73;1464;5815;5815;4718;2041;12451;1499;12996;3452;7702;9569;20392;18316;23957;18459;22853;22030;27242;27808.37;37992;28578 -179;'634;Qatar;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;794;461;711;734;898;1333;397;1365;1400;1500;2890;5047;6300;4600;4600;4600;4600;1151;1046;1016;505;506;506;581;735;828;443;542;736;861;1199;1771;2826;231;1639;4327;4327;7126;2882;17718;2038;20105;4305;6192;11824;22133;19935;27783;21527;28095;25743;27406;33112.66;54103;44809 -179;'634;Qatar;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;28;28;0;0;0;1;1;0;679;865;865;2957;3812;1191;3752;5552;290;270;430;342;131;584;315;315;401;485;485;5667;5687 -179;'634;Qatar;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;18;18;0;0;0;1;1;0;237;572;572;1250;1592;412;1277;2499;216;243;307;356;223;681;541;541;218;275;275;3093;3155 -179;'634;Qatar;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97;479;479;18;332;719;719;906;247;1720;66;2533;602;602;961;4029;5790;7240;8155;14377;14417;18106;16882.3;24305;19851 -179;'634;Qatar;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;196;530;530;30;333;790;790;1936;349;3262;153;5102;868;724;1479;7855;10213;13579;11792;19233;17549;18727;19901.87;36247;34139 -179;'634;Qatar;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;41;22;53;97;97;97;97;97;97;9;85;266;266;266;3;36;36;36;56 -179;'634;Qatar;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;44;28;82;28;28;28;28;28;28;77;167;516;516;516;29;29;29;29;91 -179;'634;Qatar;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;882;1505;4440;30;985;3957;3957;2462;1393;6501;1260;7491;2453;6943;6436;15300;11399;15812;10092;8346;7591;9078;10881.06;13644;8710 -179;'634;Qatar;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;768;1007;2062;109;896;2455;2455;2391;1587;7829;1286;7900;2407;5051;5721;11966;8176;12000;8696;8562;8078;8509;13098.78;17489;10501 -179;'634;Qatar;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;599;765;765;2641;3744;235;2796;4596;152;108;268;268;42;30;48;48;397;445;445;5631;5631 -179;'634;Qatar;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;209;463;463;849;1489;99;964;2186;99;34;98;98;44;46;20;20;184;211;211;3063;3063 -179;'634;Qatar;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;25;140;1;28;82;82;531;132;1918;490;2045;860;4669;3891;5861;5044;5634;2178;752;351;318;478;799;2339 -179;'634;Qatar;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;18;77;4;20;50;50;328;189;1898;211;1874;539;2902;2227;3336;2606;2612;1127;586;379;206;663.45;707;1864 -179;'634;Qatar;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;213;213;2344;3437;45;2635;3762;34;0;0;0;0;0;0;0;0;0;0;5585;5585 -179;'634;Qatar;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;129;129;734;1346;8;882;1775;36;0;0;0;0;0;0;0;0;0;0;3006;3006 -179;'634;Qatar;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;404;989;2900;1;286;785;785;843;411;1077;334;3184;985;2000;1183;7886;4993;5048;4811;4872;4976;5623;5969.06;7676;3868 -179;'634;Qatar;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;395;573;1152;12;334;487;487;571;522;946;541;2703;1108;1892;1309;6446;3467;4408;3762;4502;4671;5116;6377.09;9304;5099 -179;'634;Qatar;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;29;29;79;79;40;11;11;14;14;14;14;14;26;26;26;294;175;175;20;20 -179;'634;Qatar;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;40;40;14;5;5;4;4;4;4;4;10;10;10;141;73;73;42;42 -179;'634;Qatar;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;411;408;700;27;610;2277;2277;1046;693;3093;352;2088;242;37;1065;1027;795;4740;3078;2585;2239;3015;4233;4709;2177 -179;'634;Qatar;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;346;369;497;89;484;1413;1413;1434;825;4432;389;2844;506;141;1832;1365;1313;4237;3747;3394;3012;3113;5922.24;6984;3265 -179;'634;Qatar;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;546;168;168;192;202;80;80;753;34;24;184;184;0;0;0;0;1;1;1;0;0 -179;'634;Qatar;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;182;102;102;51;79;69;69;398;51;22;86;86;0;0;0;0;4;2;2;1;1 -179;'634;Qatar;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;83;700;1;61;813;813;42;157;413;84;174;366;237;297;526;567;390;25;137;25;122;201;460;326 -179;'634;Qatar;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;47;336;4;58;505;505;58;51;553;145;479;254;116;353;819;790;743;60;80;16;74;136;494;273 -179;'634;Qatar;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;355;355;26;26;70;70;70;70;70;70;70;28;4;22;22;102;269;269;26;26 -179;'634;Qatar;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;215;215;24;24;8;8;8;8;8;8;8;40;36;10;10;39;136;136;14;14 -179;'634;Qatar;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000 -179;'634;Qatar;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;634;132;87;87;25;147;1139;1139;1350;401;4230;173;2972;397;157;2172;1063;1127;905;212;130;22;58;45;43;17 -179;'634;Qatar;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;861;235;234;234;92;410;1082;1082;2799;946;6627;599;7103;1030;417;4624;2312;1546;2204;1039;300;116;170;112;367;169 -179;'634;Qatar;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1;1;0;80;59;59;294;15;859;859;859;41;65;65;65;4;288;1;1;1;4;4;0;0 -179;'634;Qatar;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1;1;0;28;65;65;373;21;285;285;285;89;181;181;181;12;119;5;5;5;35;35;1;1 -179;'634;Qatar;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;294991;285649;289659;280007;385961;464437;257249 -179;'634;Qatar;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5586;6084;3939;5636;3503;2674;2741 -179;'634;Qatar;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2989;2600;3125;1228;1955;3702;1135 -179;'634;Qatar;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126;126;126;126;126;126;126 -179;'634;Qatar;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1910;1341;384;281;682;1122;349 -179;'634;Qatar;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;41;41;41;41;41;41 -179;'634;Qatar;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1079;1259;2741;947;1273;2580;786 -179;'634;Qatar;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;85;85;85;85;85;85 -179;'634;Qatar;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4976;3541;3271;1110;2298;3155;1320 -179;'634;Qatar;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;384;284;66;126;408;186;185 -179;'634;Qatar;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6546;7058;5678;4496;6826;7899;4823 -179;'634;Qatar;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117;275;15;56;37;251;245 -179;'634;Qatar;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23284;22704;17480;25543;37976;16829;15327 -179;'634;Qatar;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;42;42;42;42;42;42 -179;'634;Qatar;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;94 -179;'634;Qatar;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;93 -179;'634;Qatar;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;838;402 -179;'634;Qatar;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1068;385 -179;'634;Qatar;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;263 -179;'634;Qatar;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;380 -179;'634;Qatar;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;252867;246074;256566;222625;301274;396913;222778 -179;'634;Qatar;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4682;4499;2834;4430;2034;2034;2034 -179;'634;Qatar;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;858;1148;1089;21331;31448;25013;3026 -179;'634;Qatar;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3471;2524;2450;3674;4184;10926;8840 -179;'634;Qatar;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;235;858;856;856;856;35;109 -179;'634;Qatar;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119897;119704;124987;97186;99494;139999;109549 -179;'634;Qatar;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2030;1032;1287;613;1042;2169;2728 -179;'634;Qatar;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;914;830;266;521;332;662;132 -179;'634;Qatar;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;194;194;194;194;194;194 -179;'634;Qatar;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6599;6338;7690;4709;5926;8286;7643 -179;'634;Qatar;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -179;'634;Qatar;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37857;35602;31127;24801;19566;22381;29160 -179;'634;Qatar;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;214;85;171;171;224;546;225 -179;'634;Qatar;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32184;35049;41085;29381;32859;48875;30795 -179;'634;Qatar;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;255;290;39;115;287;637;1190 -179;'634;Qatar;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42343;41885;44819;37774;40811;59795;41819 -179;'634;Qatar;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1561;463;883;133;337;792;1119 -117;'410;Republic of Korea;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8214644;9106830;7979459;7418207;9153264.51;9309765;8375741 -117;'410;Republic of Korea;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3172535;3672334;3239648;2752862;2965322.63;3189561;2949139 -117;'410;Republic of Korea;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;14945;22357;24661;20150;21246;47475;62244;121790;132794;168588;208910;179053;376472;463568;390838;576914;709009;862369;1316349;1220118;1069842;972231;961641;1064692;982539;1095024;1537023;2280970;2660353;2808469;3080248;3073799;3254619;3759054;4979601;4449030;3739686;2082533;2950053;3734050;3162403;3545588;3619199;3937311;3991633;4299657;5110079;5436843;4205553;5296526;5503114;5235023;5561091;6029749;5650118;5641124;6136901;6905660;5702801;5033107;6438776.51;6776757;6110350 -117;'410;Republic of Korea;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;1217;2284;6369;12613;19206;31190;36955;66032;82378;103404;140760;181666;320130;244147;261880;414714;534718;513399;594692;522848;537812;294987;188943;147824;132018;225563;347626;388257;414591;459476;441511;586410;569650;867499;1213118;962140;1213620;1544433;1514287;1626515;1380478;1357948;1569174;1875862;1971875;1874556;1998693;2189564;1925546;2283715;2626408;2592327;2733560;2559789;2339778;2364403;2404495;2837762;2403517;1981606;2184099.63;2364418;2138251 -117;'410;Republic of Korea;1861;Roundwood;5516;Production;m3;4097418;4099845;4453309;4783812;5046354;5027934;5245553;5368209;5130904;3635637;3815381;3605200;3735450;3771362;3683297;3699702;3762474;3690484;3612191;3696014;3932719;4030634;3933077;3968328;4059453;4098500;4278634;4013143;3986876;3872618;3948479;3733825;3741653;3668055;3795736;3624927;3497415;3866248;4138075;4041237;3986806;4062638;4133761;4704202;4814989;4912872;5152100;5176600;5652595;3984000;4210000;4506000;4897000;5179000;4913000;5151000;4845000;4577000;4273000;3959000;3852000;3700000;4529408 -117;'410;Republic of Korea;1861;Roundwood;5616;Import quantity;m3;318800;604200;609700;469700;676900;1336700;1783200;2905800;2650000;3155000;3756000;4167000;5002000;4830000;5119000;6323000;7807000;9427000;9084000;6141000;5558000;5671000;6524000;5773000;5578000;5772700;6462000;7319000;7787000;10061971;8881115;7990939;7861519;7807000;8328000;8030000;8266000;4370000;6623000;6734000;7118000;7657000;8616948;7848641;7569253;7690978;8488151;6406319;5013771;4217737;6141295;5471108;5897809;5688749;5345856;5966986;6106027;5563963;4281370;3244213;2715911;2457333;2231451 -117;'410;Republic of Korea;1861;Roundwood;5622;Import value;1000 USD;9815;16846;20712;17969;18139;42132;55779;88388;99966;125451;160995;131233;283590;312572;269190;415298;524195;642737;1008531;838237;634635;611327;587472;571065;489116;484867;638050;900256;960023;988611;1038440;914682;1181368;1011576;1047332;961860;877117;349655;520655;560297;536113;597373;609925;745139;707378;755683;909047;837668;623928;723306;704216;567762;675792;649850;594044;578150;585318;517428;407207;368984;528302;452669;452678 -117;'410;Republic of Korea;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12739;1841;6431;5656;3356;2200;2100;0;0;0;0;0;2387;307;873;425;216;221;957;1452;950;462;519;906;656;1316;1159;6903;1753;1136;753;226;308;186 -117;'410;Republic of Korea;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1421;468;1191;866;294;251;170;0;0;0;0;0;362;180;243;189;152;214;558;383;314;133;178;150;1230;1318;155;1282;571;287;418;430;389;394 -117;'410;Republic of Korea;1862;Roundwood, coniferous;5516;Production;m3;2022649;2011873;2293110;2552361;2754626;2424905;2508197;2617503;2851823;1550156;1664993;1520643;1615589;1638772;1581177;1602822;1650812;1614244;1570925;1616219;1756614;1805369;1738456;1757617;1811376;1841107;1964012;1798265;1783670;1716292;1786885;1662437;1683447;1653091;1862763;1830831;1714791;1927803;2024884;1969727;1916359;1956728;2042843;2305715;2475353;2609740;2777900;2793800;2917498;2408000;2653000;2701000;2907000;3211000;3021000;3389000;3149000;2737000;2500000;2299000;2226000;2210000;3039408 -117;'410;Republic of Korea;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5969002;5394940;4144739;3097058;2485714;2138333;2138355 -117;'410;Republic of Korea;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;537213;463157;362303;329299;486585;414155;414161 -117;'410;Republic of Korea;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5970;85;133;547;8;143;7 -117;'410;Republic of Korea;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;921;21;46;142;131;46;51 -117;'410;Republic of Korea;1863;Roundwood, non-coniferous;5516;Production;m3;2074769;2087972;2160199;2231451;2291728;2603029;2737356;2750706;2279081;2085481;2150388;2084557;2119861;2132590;2102120;2096880;2111662;2076240;2041266;2079795;2176105;2225265;2194621;2210711;2248077;2257393;2314622;2214878;2203206;2156326;2161594;2071388;2058206;2014964;1932973;1794096;1782624;1938445;2113191;2071510;2070447;2105910;2090918;2398487;2339636;2303132;2374200;2382800;2735097;1576000;1557000;1805000;1990000;1968000;1892000;1762000;1696000;1840000;1773000;1660000;1626000;1490000;1490000 -117;'410;Republic of Korea;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;137025;169023;136631;147155;230197;319000;93096 -117;'410;Republic of Korea;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48105;54271;44904;39685;41717;38514;38517 -117;'410;Republic of Korea;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;933;1668;1003;206;218;165;179 -117;'410;Republic of Korea;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;361;550;241;276;299;343;343 -117;'410;Republic of Korea;1864;Wood fuel;5516;Production;m3;2877418;2866845;2856309;2845812;2835354;2824934;2814553;2804209;2793904;2783637;2780381;2810200;2776450;2771362;2775297;2740702;2715474;2677484;2654191;2683014;2731719;2778634;2790077;2807328;2823453;2811500;2791634;2767143;2759876;2733618;2662479;2610825;2557653;2495055;2429736;2429927;2435415;2438248;2444075;2449237;2453806;2457638;2460761;2463202;2464989;2468872;2472100;2474600;2476595;518000;536000;648000;702000;967000;373000;188000;293000;337000;247000;384000;190000;490000;1319408 -117;'410;Republic of Korea;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;74;16;11;47;69;26;421;159;2999;240;184;255;229;336;289;163;305 -117;'410;Republic of Korea;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;15;14;1;5;9;32;124;63;276;123;38;51;66;65;114;88;97 -117;'410;Republic of Korea;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;1;1;0;0;0;11;16;4;1;0;19;0;1;0;0;0;0 -117;'410;Republic of Korea;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;3;1;0;0;0;7;3;17;1;0;9;0;0;0;0;0;0 -117;'410;Republic of Korea;1627;Wood fuel, coniferous;5516;Production;m3;1027649;1023873;1020110;1016361;1012626;1008905;1005197;1001503;997823;994156;992993;1003643;991589;989772;991177;978822;969812;956244;947925;958219;975614;992369;996456;1002617;1008376;1004107;997012;988265;985670;976292;950885;932437;913447;891091;867763;867831;869791;870803;872884;874727;876359;877728;878843;879715;880353;881740;882900;883800;884498;284000;284000;168000;317000;410000;157000;86000;121000;139000;54000;80000;145000;47000;876408 -117;'410;Republic of Korea;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1;1;12;23;0;22 -117;'410;Republic of Korea;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;4;4;7;0;6 -117;'410;Republic of Korea;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0 -117;'410;Republic of Korea;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -117;'410;Republic of Korea;1628;Wood fuel, non-coniferous;5516;Production;m3;1849769;1842972;1836199;1829451;1822728;1816029;1809356;1802706;1796081;1789481;1787388;1806557;1784861;1781590;1784120;1761880;1745662;1721240;1706266;1724795;1756105;1786265;1793621;1804711;1815077;1807393;1794622;1778878;1774206;1757326;1711594;1678388;1644206;1603964;1561973;1562096;1565624;1567445;1571191;1574510;1577447;1579910;1581918;1583487;1584636;1587132;1589200;1590800;1592097;234000;252000;480000;385000;557000;216000;102000;172000;198000;193000;304000;45000;443000;443000 -117;'410;Republic of Korea;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;182;254;228;324;266;163;283 -117;'410;Republic of Korea;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;48;62;61;107;88;91 -117;'410;Republic of Korea;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;0;0;0;0;0;0 -117;'410;Republic of Korea;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;0;0;0;0;0;0 -117;'410;Republic of Korea;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;74;16;11;47;69;26;421;159;2999;240;;;;;;; -117;'410;Republic of Korea;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;15;14;1;5;9;32;124;63;276;123;;;;;;; -117;'410;Republic of Korea;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;1;1;0;0;0;11;16;4;1;0;;;;;;; -117;'410;Republic of Korea;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;3;1;0;0;0;7;3;17;1;0;;;;;;; -117;'410;Republic of Korea;1865;Industrial roundwood;5516;Production;m3;1220000;1233000;1597000;1938000;2211000;2203000;2431000;2564000;2337000;852000;1035000;795000;959000;1000000;908000;959000;1047000;1013000;958000;1013000;1201000;1252000;1143000;1161000;1236000;1287000;1487000;1246000;1227000;1139000;1286000;1123000;1184000;1173000;1366000;1195000;1062000;1428000;1694000;1592000;1533000;1605000;1673000;2241000;2350000;2444000;2680000;2702000;3176000;3466000;3674000;3858000;4195000;4212000;4540000;4963000;4552000;4240000;4026000;3575000;3662000;3210000;3210000 -117;'410;Republic of Korea;1865;Industrial roundwood;5616;Import quantity;m3;318800;604200;609700;469700;676900;1336700;1783200;2905800;2650000;3155000;3756000;4167000;5002000;4830000;5119000;6323000;7807000;9427000;9084000;6141000;5558000;5671000;6524000;5773000;5578000;5772700;6462000;7319000;7787000;10061971;8881115;7990939;7861519;7807000;8328000;8030000;8266000;4370000;6623000;6734000;7118000;7657000;8616948;7848641;7569253;7690978;8488077;6406303;5013760;4217690;6141226;5471082;5897388;5688590;5342857;5966746;6105843;5563708;4281141;3243877;2715622;2457170;2231146 -117;'410;Republic of Korea;1865;Industrial roundwood;5622;Import value;1000 USD;9815;16846;20712;17969;18139;42132;55779;88388;99966;125451;160995;131233;283590;312572;269190;415298;524195;642737;1008531;838237;634635;611327;587472;571065;489116;484867;638050;900256;960023;988611;1038440;914682;1181368;1011576;1047332;961860;877117;349655;520655;560297;536113;597373;609925;745139;707378;755683;909032;837654;623927;723301;704207;567730;675668;649787;593768;578027;585280;517377;407141;368919;528188;452581;452581 -117;'410;Republic of Korea;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12739;1841;6431;5656;3356;2200;2100;0;0;0;0;0;2387;307;873;425;216;220;956;1452;950;462;508;890;652;1315;1159;6884;1753;1135;753;226;308;186 -117;'410;Republic of Korea;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1421;468;1191;866;294;251;170;0;0;0;0;0;362;180;243;189;152;211;557;383;314;133;171;147;1213;1317;155;1273;571;287;418;430;389;394 -117;'410;Republic of Korea;1866;Industrial roundwood, coniferous;5516;Production;m3;995000;988000;1273000;1536000;1742000;1416000;1503000;1616000;1854000;556000;672000;517000;624000;649000;590000;624000;681000;658000;623000;658000;781000;813000;742000;755000;803000;837000;967000;810000;798000;740000;836000;730000;770000;762000;995000;963000;845000;1057000;1152000;1095000;1040000;1079000;1164000;1426000;1595000;1728000;1895000;1910000;2033000;2124000;2369000;2533000;2590000;2801000;2864000;3303000;3028000;2598000;2446000;2219000;2081000;2163000;2163000 -117;'410;Republic of Korea;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5858208;5393000;4683000;5408519;5700000;6450000;6653000;6955000;3541000;5516000;5763000;6347000;6993000;7983948;7186641;6965222;7275978;8141007;6153029;4724350;3954010;5901136;5224222;5670964;5414264;5163441;5793746;5969000;5394939;4144738;3097046;2485691;2138333;2138333 -117;'410;Republic of Korea;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;526166;535390;464625;702930;610542;721323;702409;653476;256691;370293;414170;422910;500073;514348;604169;612727;673467;833483;766330;563253;659564;641428;500560;620852;558094;534281;523540;537210;463154;362299;329295;486578;414155;414155 -117;'410;Republic of Korea;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;137;49;1215;202;1956;300;1500;0;0;0;0;0;48;216;631;131;216;59;89;1405;497;191;227;640;333;315;1082;5970;85;132;547;8;143;7 -117;'410;Republic of Korea;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;5;226;51;131;20;102;0;0;0;0;0;13;137;153;44;152;50;25;345;146;29;71;69;85;29;79;921;21;46;142;131;46;51 -117;'410;Republic of Korea;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5858208;5393000;4683000;5408519;5700000;6450000;6653000;6955000;3541000;5516000;5763000;6347000;6993000;7983948;7186641;6965222;7275978;8141007;6153029;4724350;3954010;5901136;5224222;5670964;5414264;5163441;5793746;5969000;5394939;4144738;3097046;2485691;2138333;2138333 -117;'410;Republic of Korea;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;526166;535390;464625;702930;610542;721323;702409;653476;256691;370293;414170;422910;500073;514348;604169;612727;673467;833483;766330;563253;659564;641428;500560;620852;558094;534281;523540;537210;463154;362299;329295;486578;414155;414155 -117;'410;Republic of Korea;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;137;49;1215;202;1956;300;1500;0;0;0;0;0;48;216;631;131;216;59;89;1405;497;191;227;640;333;315;1082;5970;85;132;547;8;143;7 -117;'410;Republic of Korea;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;5;226;51;131;20;102;0;0;0;0;0;13;137;153;44;152;50;25;345;146;29;71;69;85;29;79;921;21;46;142;131;46;51 -117;'410;Republic of Korea;1867;Industrial roundwood, non-coniferous;5516;Production;m3;225000;245000;324000;402000;469000;787000;928000;948000;483000;296000;363000;278000;335000;351000;318000;335000;366000;355000;335000;355000;420000;439000;401000;406000;433000;450000;520000;436000;429000;399000;450000;393000;414000;411000;371000;232000;217000;371000;542000;497000;493000;526000;509000;815000;755000;716000;785000;792000;1143000;1342000;1305000;1325000;1605000;1411000;1676000;1660000;1524000;1642000;1580000;1356000;1581000;1047000;1047000 -117;'410;Republic of Korea;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4203763;3488115;3307939;2453000;2107000;1878000;1377000;1311000;829000;1107000;971000;771000;664000;633000;662000;604031;415000;347070;253274;289410;263680;240090;246860;226424;274326;179416;173000;136843;168769;136403;146831;229931;318837;92813 -117;'410;Republic of Korea;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;462445;503050;450057;478438;401034;326009;259451;223641;92964;150362;146127;113203;97300;95577;140970;94651;82216;75549;71324;60674;63737;62779;67170;54816;91693;59487;54487;48070;54223;44842;39624;41610;38426;38426 -117;'410;Republic of Korea;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12602;1792;5216;5454;1400;1900;600;0;0;0;0;0;2339;91;242;294;0;161;867;47;453;271;281;250;319;1000;77;914;1668;1003;206;218;165;179 -117;'410;Republic of Korea;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1408;463;965;815;163;231;68;0;0;0;0;0;349;43;90;145;0;161;532;38;168;104;100;78;1128;1288;76;352;550;241;276;299;343;343 -117;'410;Republic of Korea;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4043400;3340000;3173000;2322000;2041000;1800000;1211000;1181000;749000;967000;796000;554000;460000;458000;457000;342000;251000;299424;147554;151880;175790;150950;164770;129830;106858;126895;157000;98873;92238;71455;61526;59753;45631;34339 -117;'410;Republic of Korea;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;430913;473110;424426;445113;378923;301423;222331;194455;80045;120109;108983;69311;50742;54243;58458;51688;43381;55652;37201;27653;36609;35893;40355;31534;34085;42799;52828;32181;35550;29004;18206;14638;12972;19196 -117;'410;Republic of Korea;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;132;7;0;10;70;40;134;52;0;30;168;89;0;0;16;15 -117;'410;Republic of Korea;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;222;7;0;9;41;24;403;25;0;22;101;41;0;0;14;15 -117;'410;Republic of Korea;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;160363;148115;134939;131000;66000;78000;166000;130000;80000;140000;175000;217000;204000;175000;205000;262031;164000;47646;105720;137530;87890;89140;82090;96594;167468;52521;16000;37970;76531;64948;85305;170178;273206;58474 -117;'410;Republic of Korea;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31532;29940;25631;33325;22111;24586;37120;29186;12919;30253;37144;43892;46558;41334;82512;42963;38835;19897;34123;33021;27128;26886;26815;23282;57608;16688;1659;15889;18673;15838;21418;26972;25454;19230 -117;'410;Republic of Korea;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12602;1792;5216;5454;1400;1900;600;0;0;0;0;0;2339;91;242;294;0;88;735;40;453;261;211;210;185;948;77;884;1500;914;206;218;149;164 -117;'410;Republic of Korea;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1408;463;965;815;163;231;68;0;0;0;0;0;349;43;90;145;0;107;310;31;168;95;59;54;725;1263;76;330;449;200;276;299;329;328 -117;'410;Republic of Korea;1868;Sawlogs and veneer logs;5516;Production;m3;500000;530000;840000;1130000;1340000;1303000;1516000;1584000;1297000;189000;299000;184000;337000;305000;178000;207000;272000;83000;126000;105000;286000;274000;193000;187000;224000;192000;252000;143000;112000;216000;358000;402000;611000;612000;511000;372000;330000;490000;621000;420000;575000;229000;289000;406000;297000;426000;440000;456000;451000;458000;537000;533000;721000;840000;1282000;950000;874000;852000;676000;609000;709000;538000;538000 -117;'410;Republic of Korea;1868;Sawlogs and veneer logs;5616;Import quantity;m3;316800;579500;572700;468200;675400;1335600;1783200;2905800;2650000;3155000;3756000;4167000;5002000;4830000;5119000;6323000;7807000;9427000;9084000;6141000;5558000;5671000;6524000;5773000;5578000;5772700;6462000;7319000;7787000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -117;'410;Republic of Korea;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;9500;16155;19448;17920;18085;41978;55779;88388;99966;125451;160995;131233;283590;312572;269190;415298;524195;642737;1008531;838237;634635;611327;587472;571065;489116;484867;638050;900256;960023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -117;'410;Republic of Korea;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -117;'410;Republic of Korea;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;375000;400000;630000;850000;1005000;668000;743000;811000;1004000;123000;194000;120000;219000;198000;116000;135000;177000;54000;82000;68000;186000;178000;125000;122000;146000;125000;164000;93000;73000;140000;233000;261000;397000;398000;332000;298000;264000;308000;356000;241000;330000;131000;165000;282000;235000;336000;347000;360000;289000;435000;510000;510000;689000;829000;1251000;927000;766000;747000;652000;594000;613000;518000;518000 -117;'410;Republic of Korea;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;;98000;187300;217600;72100;239000;289400;470000;228000;290000;432000;322000;823000;771000;458000;746000;1191000;2400000;2100000;1518000;1170000;1527000;2098000;2053000;2198000;2426700;2788000;3198000;3967000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -117;'410;Republic of Korea;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;;2948;5879;7055;2103;6389;8237;14414;8193;11746;16482;12175;34644;48187;32789;56193;96670;164297;179929;178224;129780;146408;172997;175049;177685;184339;219049;360781;448183;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -117;'410;Republic of Korea;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;125000;130000;210000;280000;335000;635000;773000;773000;293000;66000;105000;64000;118000;107000;62000;72000;95000;29000;44000;37000;100000;96000;68000;65000;78000;67000;88000;50000;39000;76000;125000;141000;214000;214000;179000;74000;66000;182000;265000;179000;245000;98000;124000;124000;62000;90000;93000;96000;162000;23000;27000;23000;32000;11000;31000;23000;108000;105000;24000;15000;96000;20000;20000 -117;'410;Republic of Korea;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;316800;481500;385400;250600;603300;1096600;1493800;2435800;2422000;2865000;3324000;3845000;4179000;4059000;4661000;5577000;6616000;7027000;6984000;4623000;4388000;4144000;4426000;3720000;3380000;3346000;3674000;4121000;3820000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -117;'410;Republic of Korea;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;9500;13207;13569;10865;15982;35589;47542;73974;91773;113705;144513;119058;248946;264385;236401;359105;427525;478440;828602;660013;504855;464919;414475;396016;311431;300528;419001;539475;511840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -117;'410;Republic of Korea;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -117;'410;Republic of Korea;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;406000;410000;552000;376000;1019000;1017000;1354000;1491000;1422000;1643000;1757000;1919000;2503000;2666000;2598000;2455000;2535000;2451000;2353000;2458000;2170000;2357000;2154000;2037000;1977000;1977000 -117;'410;Republic of Korea;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;244000;266000;358000;244000;662000;705000;743000;1091000;1038000;1193000;1276000;1228000;1401000;1680000;1530000;1456000;1422000;1270000;1315000;1433000;1285000;1275000;1167000;1117000;1288000;1288000 -117;'410;Republic of Korea;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;162000;144000;194000;132000;357000;312000;611000;400000;384000;450000;481000;691000;1102000;986000;1068000;999000;1113000;1181000;1038000;1025000;885000;1082000;987000;920000;689000;689000 -117;'410;Republic of Korea;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -117;'410;Republic of Korea;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -117;'410;Republic of Korea;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -117;'410;Republic of Korea;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -117;'410;Republic of Korea;1870;Pulpwood and particles (1961-1997);5516;Production;m3;65000;45000;40000;55000;55000;70000;75000;120000;170000;212000;265000;216000;204000;239000;188000;254000;241000;313000;206000;393000;287000;339000;317000;291000;293000;323000;326000;334000;475000;411000;463000;378000;346000;385000;405000;392000;367000;;;;;;;;;;;;;;;;;;;;;;;;;; -117;'410;Republic of Korea;1870;Pulpwood and particles (1961-1997);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -117;'410;Republic of Korea;1870;Pulpwood and particles (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -117;'410;Republic of Korea;1870;Pulpwood and particles (1961-1997);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -117;'410;Republic of Korea;1870;Pulpwood and particles (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -117;'410;Republic of Korea;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;45000;30000;27000;37000;37000;45000;50000;80000;115000;140000;172000;140000;133000;155000;122000;165000;157000;203000;134000;255000;187000;220000;206000;189000;190000;210000;212000;217000;309000;267000;301000;246000;225000;250000;263000;251000;235000;;;;;;;;;;;;;;;;;;;;;;;;;; -117;'410;Republic of Korea;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;20000;15000;13000;18000;18000;25000;25000;40000;55000;72000;93000;76000;71000;84000;66000;89000;84000;110000;72000;138000;100000;119000;111000;102000;103000;113000;114000;117000;166000;144000;162000;132000;121000;135000;142000;141000;132000;;;;;;;;;;;;;;;;;;;;;;;;;; -117;'410;Republic of Korea;1871;Other industrial roundwood;5516;Production;m3;655000;658000;717000;753000;816000;830000;840000;860000;870000;451000;471000;395000;418000;456000;542000;498000;534000;617000;626000;515000;628000;639000;633000;683000;719000;772000;909000;769000;640000;512000;465000;343000;227000;176000;450000;431000;365000;532000;663000;620000;582000;357000;367000;481000;562000;596000;597000;489000;806000;505000;471000;727000;1019000;837000;807000;1660000;1220000;1218000;993000;812000;916000;695000;695000 -117;'410;Republic of Korea;1871;Other industrial roundwood;5616;Import quantity;m3;2000;24700;37000;1500;1500;1100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -117;'410;Republic of Korea;1871;Other industrial roundwood;5622;Import value;1000 USD;315;691;1264;49;54;154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -117;'410;Republic of Korea;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;575000;558000;616000;649000;700000;703000;710000;725000;735000;293000;306000;257000;272000;296000;352000;324000;347000;401000;407000;335000;408000;415000;411000;444000;467000;502000;591000;500000;416000;333000;302000;223000;148000;114000;400000;414000;346000;505000;530000;496000;466000;286000;294000;401000;269000;354000;355000;274000;516000;288000;179000;493000;445000;550000;343000;1061000;829000;566000;519000;458000;351000;357000;357000 -117;'410;Republic of Korea;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;80000;100000;101000;104000;116000;127000;130000;135000;135000;158000;165000;138000;146000;160000;190000;174000;187000;216000;219000;180000;220000;224000;222000;239000;252000;270000;318000;269000;224000;179000;163000;120000;79000;62000;50000;17000;19000;27000;133000;124000;116000;71000;73000;80000;293000;242000;242000;215000;290000;217000;292000;234000;574000;287000;464000;599000;391000;652000;474000;354000;565000;338000;338000 -117;'410;Republic of Korea;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;2000;24700;37000;1500;1500;1100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -117;'410;Republic of Korea;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;315;691;1264;49;54;154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -117;'410;Republic of Korea;1630;Wood charcoal;5510;Production;t;2831;0;495;3394;3606;3830;4069;4322;4591;18000;14000;21000;8000;8000;8000;21000;6000;16000;11000;9000;7000;4000;1000;2000;1000;2000;1000;1000;1000;1000;17772;1000;0;1000;1000;650;1000;2000;5000;32000;32000;8000;6000;6000;10000;27000;12000;8000;8000;11000;10000;6000;9000;9000;9000;9000;9000;9000;8000;8000;9000;5000;5000 -117;'410;Republic of Korea;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;30893;23825;44900;59700;66000;75700;48400;70300;95000;100000;114000;109000;111000;119000;124000;109000;110000;116269;108374;113443;111627;115092;119227;120574;126462;127133;130774;121902;105302;98845.4;120355;50592 -117;'410;Republic of Korea;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;8723;5961;13659;21404;25659;29029;15157;21565;30301;30531;33206;31621;30644;37654;49700;48210;60205;66710;69269;84681;91852;99321;105038;113150;112165;108618;121867;110109;90585;85459.79;115712;38167 -117;'410;Republic of Korea;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1031;508;400;0;0;0;1000;400;300;400;500;500;500;500;500;204;145;256;554;211;91;271;446;279;413;379;343;288;287;338;216;373 -117;'410;Republic of Korea;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;331;191;571;0;0;0;455;234;270;321;436;317;248;341;341;164;190;227;304;311;161;424;745;512;714;570;516;479;383;629;387;643 -117;'410;Republic of Korea;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;217000;2159000;2442000;2545000;4145000;3970000;3516000;11122000;11934000;3235000;3048000;2581000;2185000;2763000;2404000;2212000;942000;976000;904000;2234000;2699000;2311000;2007000;1816000;1081000;1081000 -117;'410;Republic of Korea;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;890000;1180600;1649800;1643000;1335000;1492000;1599000;1513000;1412347;1382000;1733000;1249000;1097004;1143639;1206237;2087000;2071000;1849000;2073000;1435583;1504263;940502;765584;832661;1096825;1102219 -117;'410;Republic of Korea;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50999;91380;83496;80850;64580;73900;93055;95443;97791;89817;136689;73683;111122;112882;108103;122203;118348;106894;111073;65730;70355;79700;61357;74323.77;112804;106520 -117;'410;Republic of Korea;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0;0;0;0;0;0;0;0;13;27;8;18;305;9038;10194;198;1500;12028;7;4;95;92;102;89;38 -117;'410;Republic of Korea;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;0;0;0;0;0;0;0;0;25;20;24;45;94;917;970;144;215;191;29;47;24;38;37;24;6 -117;'410;Republic of Korea;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;217000;956000;956000;956000;956000;956000;956000;956000;956000;956000;956000;956000;625000;1097000;757000;862000;471000;488000;452000;1988000;2437000;2182000;1874000;1584000;796000;796000 -117;'410;Republic of Korea;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;116100;116300;77900;22400;66300;203100;133400;144700;321807;855000;1007000;1049400;1032100;1124000;885000;1162000;1577000;1634000;1330000;1487000;1594000;1505000;1372347;1326000;1691000;1186000;981832;1003544;1011237;1768000;1808000;1544000;1634000;1422000;1482000;922721;755062;825504;1088521;1093860 -117;'410;Republic of Korea;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;8563;8211;5525;1590;6171;20247;11748;12170;27480;67818;81362;101956;99089;94872;50610;90495;80571;80342;64214;73343;92592;94553;93291;82934;130886;67556;97330;96044;90911;93945;93557;81202;77890;64499;68058;77404;59697;72981.77;110743;105169 -117;'410;Republic of Korea;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8980;10150;173;0;4028;7;4;1;5;15;2;2 -117;'410;Republic of Korea;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;814;930;84;0;31;29;47;5;19;18;5;5 -117;'410;Republic of Korea;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1700;1700;0;1203000;1486000;1589000;3189000;3014000;2560000;10166000;10978000;2279000;2092000;1625000;1560000;1666000;1647000;1350000;471000;488000;452000;246000;262000;129000;133000;232000;285000;285000 -117;'410;Republic of Korea;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;3500;2200;5000;18600;72800;9000;5000;5000;5000;8000;40000;56000;42000;63000;115172;140095;195000;319000;263000;305000;439000;13583;22263;17781;10522;7157;8304;8359 -117;'410;Republic of Korea;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;246;307;389;885;2925;508;366;557;463;890;4500;6883;5803;6127;13792;16838;17192;28258;24791;25692;33183;1231;2297;2296;1660;1342;2061;1351 -117;'410;Republic of Korea;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;100;0;0;0;0;0;0;0;0;13;27;8;18;305;58;44;25;1500;8000;0;0;94;87;87;87;36 -117;'410;Republic of Korea;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;36;0;0;0;0;0;0;0;0;25;20;24;45;94;103;40;60;215;160;0;0;19;19;19;19;1 -117;'410;Republic of Korea;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1356000;1298000;1244000;1377000;1446000;1269000;1269000 -117;'410;Republic of Korea;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15000;15000;50000;120000;120000;68000;188000;243000;331000;694000;720000;720000 -117;'410;Republic of Korea;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;122447;484668;1849641;1470684;1716641;2613452;3638328;3231799;3298111;3593918.07;4110628;3956790 -117;'410;Republic of Korea;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18285;77362;323661;176963;173121;302867;551704;392768;368545;479693.82;758556;602313 -117;'410;Republic of Korea;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;1;2;1500;100;4;2618;76;22;7;36;0 -117;'410;Republic of Korea;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;1;3;215;8;1;375;29;7;15;10;0 -117;'410;Republic of Korea;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15000;15000;50000;120000;120000;68000;188000;243000;331000;694000;720000;720000 -117;'410;Republic of Korea;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;122447;484668;1849641;1470684;1716641;2431165;3445136;3002318;3003892;3356643.05;3917199;3726902 -117;'410;Republic of Korea;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18285;77362;323661;176963;173121;280433;521771;362283;329069;439379.4;716561;563598 -117;'410;Republic of Korea;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;1;2;1500;100;4;2618;73;0;0;35;0 -117;'410;Republic of Korea;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;1;3;215;8;1;375;18;0;0;8;0 -117;'410;Republic of Korea;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;182287;193192;229481;294219;237275.02;193429;229888 -117;'410;Republic of Korea;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22434;29933;30485;39476;40314.42;41995;38715 -117;'410;Republic of Korea;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;22;7;1;0 -117;'410;Republic of Korea;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;7;15;2;0 -117;'410;Republic of Korea;1872;Sawnwood;5516;Production;m3;392000;528000;693000;744000;898000;1046000;1304000;935000;1190000;1149000;1395000;1311000;1570000;1909000;2242000;2242000;2995000;3363000;3139000;3043000;2978000;3010000;3518000;2908000;2952000;3497000;4079000;5949000;4128000;3897000;4041000;3513000;3249000;3862000;3440000;4291000;4759000;2240000;4300000;4544000;4420000;4410000;4380000;4366000;4366000;4366000;3798000;3344000;3144000;2024000;1917000;2082000;2343000;2406000;2417000;2293000;2188000;2052000;2015000;1900000;1954000;1973000;1973000 -117;'410;Republic of Korea;1872;Sawnwood;5616;Import quantity;m3;42700;47500;28000;5200;11300;16800;17800;26000;26000;26000;11000;25000;41000;54500;166000;166000;166000;166000;166000;166000;178000;89000;59000;136000;169000;237500;377000;707000;689000;691000;946000;913000;1279000;886000;1016000;1161000;985000;480000;697000;729000;761000;848000;763000;834000;775000;804000;966416;727123;916590;1053506;1360238;1714639;1669808;1894345;2183961;2116169;2645573;2263492;2426237;2238967;2256257;1946735;1946735 -117;'410;Republic of Korea;1872;Sawnwood;5622;Import value;1000 USD;1270;1108;1263;282;646;904;1696;2439;2439;2439;807;797;2205;3222;5267;5267;5267;5267;5267;5267;12404;17853;22698;28853;29176;42790;71672;130456;168553;136711;228222;250183;449499;372835;408530;465494;452520;165622;260952;245197;223743;233203;205468;213932;224538;250469;305247;240985;249793;330047;409236;472967;540488;639640;554095;615490;709534;726050;627077;576846;852558;681521;681521 -117;'410;Republic of Korea;1872;Sawnwood;5916;Export quantity;m3;;;;;700;1100;1100;600;2500;3000;9000;38200;212000;217000;183000;300000;600000;470000;520000;376000;241000;172000;127000;170700;166400;170100;278000;259000;290200;198000;142000;88000;53000;35000;32000;24000;20000;7000;7000;17000;20000;14000;13000;17321;12000;15000;28403;19417;18182;23664;27842;8357;12630;13035;19885;24132;24483;21647;23992;10073;4533;4184;3016 -117;'410;Republic of Korea;1872;Sawnwood;5922;Export value;1000 USD;;;;;45;89;89;44;202;347;891;2748;28704;28522;18403;38407;64431;70801;115308;82262;48483;33439;19230;26608;22446;29192;48229;57570;69555;49347;33172;28296;23338;18259;15836;11183;9831;4151;4516;9139;9024;7408;7716;10941;8167;8104;8227;7346;5794;6130;7996;7393;9060;12470;18148;23022;21993;20612;23113;8415;6963;6182;3763 -117;'410;Republic of Korea;1632;Sawnwood, coniferous;5516;Production;m3;131000;360000;563000;656000;801000;543000;618000;767000;738000;643000;862000;770000;659000;1042000;846000;846000;1693000;1773000;2081000;1603000;2159000;2153000;2543000;1890000;1919000;2273000;2651000;3867000;2683000;2884000;3152000;2810000;2696000;3190000;3048000;3598000;4059000;1900000;3648000;4044000;4330000;4209000;4200000;4200000;4200000;4200000;3654000;3200000;3000000;1902000;1815000;1969000;2240000;2320000;2299000;2180000;2084000;1984000;1954000;1837000;1883000;1899000;1899000 -117;'410;Republic of Korea;1632;Sawnwood, coniferous;5616;Import quantity;m3;30150;38400;15000;3400;7500;8800;9300;13000;13000;13000;3000;13000;23000;36500;148000;148000;148000;148000;148000;148000;148000;8000;9000;10000;8000;11500;7000;39000;69000;67000;149000;121000;252000;148000;221000;410000;347000;135000;253000;235000;247000;335000;334000;438000;424000;466000;664154;571465;718420;935764;1200238;1501928;1519708;1723690;2022256;1941916;2495578;2112493;2208354;2029561;2040822;1786827;1786827 -117;'410;Republic of Korea;1632;Sawnwood, coniferous;5622;Import value;1000 USD;795;666;632;190;438;355;751;1131;1131;1131;393;453;1802;2819;4864;4864;4864;4864;4864;4864;4864;2182;1914;2839;2186;2324;2859;13969;24785;22028;34838;37286;62786;51931;98170;166128;168326;48434;67568;68978;54951;63402;62227;83758;90689;109266;156539;175772;155693;246854;335956;362739;427770;513574;427016;499634;595948;608461;512484;457191;708916;576200;576200 -117;'410;Republic of Korea;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;20000;139700;115000;130000;242000;492000;418000;472000;358000;231000;167000;127000;165000;159000;164000;263000;251000;283000;191000;139000;85000;48000;34000;30000;22000;18000;5000;6000;11000;11000;9000;8000;10321;9000;11000;24881;17992;16012;22233;24750;6187;10610;9903;18365;23000;21519;18075;20340;6212;2846;2485;2485 -117;'410;Republic of Korea;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;1166;20413;16956;12403;26620;41751;59881;96948;75015;45201;31755;19230;25300;20078;26828;45543;53815;67600;47416;31738;26811;20303;16431;14671;10271;8734;2386;3812;6288;4886;4661;4749;6471;5891;5612;6275;5458;4187;5203;6052;5565;7701;10273;17033;21932;20105;18498;20704;6329;3102;1803;1803 -117;'410;Republic of Korea;1633;Sawnwood, non-coniferous;5516;Production;m3;261000;168000;130000;88000;97000;503000;686000;168000;452000;506000;533000;541000;911000;867000;1396000;1396000;1302000;1590000;1058000;1440000;819000;857000;975000;1018000;1033000;1224000;1428000;2082000;1445000;1013000;889000;703000;553000;672000;392000;693000;700000;340000;652000;500000;90000;201000;180000;166000;166000;166000;144000;144000;144000;122000;102000;113000;103000;86000;118000;113000;104000;68000;61000;63000;71000;74000;74000 -117;'410;Republic of Korea;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;12550;9100;13000;1800;3800;8000;8500;13000;13000;13000;8000;12000;18000;18000;18000;18000;18000;18000;18000;18000;30000;81000;50000;126000;161000;226000;370000;668000;620000;624000;797000;792000;1027000;738000;795000;751000;638000;345000;444000;494000;514000;513000;429000;396000;351000;338000;302262;155658;198170;117742;160000;212711;150100;170655;161705;174253;149995;150999;217883;209406;215435;159908;159908 -117;'410;Republic of Korea;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;475;442;631;92;208;549;945;1308;1308;1308;414;344;403;403;403;403;403;403;403;403;7540;15671;20784;26014;26990;40466;68813;116487;143768;114683;193384;212897;386713;320904;310360;299366;284194;117188;193384;176219;168792;169801;143241;130174;133849;141203;148708;65213;94100;83193;73280;110228;112718;126066;127079;115856;113586;117589;114593;119655;143642;105321;105321 -117;'410;Republic of Korea;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;700;1100;1100;600;2500;3000;9000;18200;72300;102000;53000;58000;108000;52000;48000;18000;10000;5000;0;5700;7400;6100;15000;8000;7200;7000;3000;3000;5000;1000;2000;2000;2000;2000;1000;6000;9000;5000;5000;7000;3000;4000;3522;1425;2170;1431;3092;2170;2020;3132;1520;1132;2964;3572;3652;3861;1687;1699;531 -117;'410;Republic of Korea;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;45;89;89;44;202;347;891;1582;8291;11566;6000;11787;22680;10920;18360;7247;3282;1684;0;1308;2368;2364;2686;3755;1955;1931;1434;1485;3035;1828;1165;912;1097;1765;704;2851;4138;2747;2967;4470;2276;2492;1952;1888;1607;927;1944;1828;1359;2197;1115;1090;1888;2114;2409;2086;3861;4379;1960 -117;'410;Republic of Korea;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;700000;700000;722000;651000;664000;714000;616000;574000;544000;481000;376000;286000;224000;251000;200000;239000;245000;230000;240000;217130;116000;115000;59000;85000;93000;93000 -117;'410;Republic of Korea;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;25000;74000;101000;116000;82000;31000;23000;24000;27000;27000;28000;31000;43000;75000;61000;102000;407000;131000;121000;246000;335000;390000;332000;303000;305000;257000;255623;243804;210126;185467;168631;148557;181647;188795;205725;198640;158878;131871;99762;144391;142164;158957;99868 -117;'410;Republic of Korea;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;7691;14426;17945;19194;18121;11760;11562;19787;22723;25609;31251;30222;37085;55460;48893;63932;111708;42625;52041;75957;93093;112164;99406;91682;90946;105315;139830;154840;110934;115439;112457;108906;121592;125996;127981;114335;97875;89766;65354;78435;86935;97272;58629 -117;'410;Republic of Korea;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;213;150;200;400;1000;1000;500;5000;4000;1000;1000;759;1176;1109;471;420;645;962;669;444;360;277;331;419;549;1074;529;439;379;930;878 -117;'410;Republic of Korea;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;214;194;236;469;1209;952;492;3383;3519;881;1166;1505;1650;1151;1386;1917;2001;2066;1810;1530;1666;1728;1733;1937;2980;5701;2650;2718;3047;2387;2241 -117;'410;Republic of Korea;1873;Wood-based panels;5516;Production;m3;45800;84500;111500;164900;239800;384100;474400;739800;854400;1098000;1329000;1412000;1953000;1670000;1858000;2157000;2360000;2619000;2394000;1656700;1712000;1488000;1569000;1421000;1296000;1241000;1356000;1520000;1454000;1456000;1582000;1578000;1740000;1916000;2136000;2299000;2485000;1732000;2290000;2482000;2543000;2849000;3006000;3244000;3186000;3166000;3442000;3313000;3089000;3205000;3062000;2947000;2962000;3315000;3199000;3138000;3136000;2864000;2579000;2490000;2711000;2523000;2183000 -117;'410;Republic of Korea;1873;Wood-based panels;5616;Import quantity;m3;;2700;1800;1800;42;300;300;200;300;300;300;300;300;1900;1900;1900;1900;1900;1900;1900;1900;1900;1900;19000;11000;25000;22000;718000;959000;1220000;1565000;1471900;1813887;1556000;1867000;1542000;1321000;683000;1358000;1845000;2180000;2958000;2707000;2413000;2417000;2705000;2535368;2155643;2167092;2120079;2009825;2328167;2388547;2429798;2837332;2910696;3436362;3371763;2536850;2476476;3115247.99;2761135;2765180 -117;'410;Republic of Korea;1873;Wood-based panels;5622;Import value;1000 USD;;84;56;56;10;71;71;53;132;132;132;132;132;395;395;395;395;395;395;395;395;395;395;2244;2929;3043;11120;167612;251232;357562;457819;450478;658714;677579;724673;631731;528053;189830;356770;459094;483508;639283;604313;591515;628948;766607;842046;886478;805707;651659;704165;881846;838428;1004789;999347;1091379;1226184;1276118;972290;913068;1178884.16;1088765;911688 -117;'410;Republic of Korea;1873;Wood-based panels;5916;Export quantity;m3;11700;17800;54100;104400;169600;276600;311400;600000;708600;1057300;1048900;1224900;1433000;1062000;1323000;1714000;1740800;1640000;1329000;962000;1087000;658000;359000;222000;138000;182000;187000;72000;81000;87000;75000;67880;61638;69344;124200;120000;124000;233000;236000;199000;153000;99000;107000;147281;65000;46000;49580;27405;33316;34592;68284;111546;89400;55935;45977;56891;50351;34617;26321;20429;19174;22612;24441 -117;'410;Republic of Korea;1873;Wood-based panels;5922;Export value;1000 USD;1217;2284;6309;12550;19055;30683;36448;65570;81758;102639;139451;176853;274987;195254;230350;350782;411988;414898;452268;354106;393770;203251;111982;68704;41932;52698;58142;34674;31980;38992;31614;40250;18346;42834;55969;66103;59389;81140;83771;78373;53429;36747;45735;62754;39952;22479;21290;17313;17430;17148;29106;45047;43456;41107;30552;29678;27693;24769;21794;14222;14527;21173;17150 -117;'410;Republic of Korea;1640;Plywood and LVL;5516;Production;m3;45000;83700;98900;147900;215100;353400;439600;703300;821200;1067000;1290000;1376000;1866000;1583000;1809000;2105000;2289000;2560000;2338000;1575000;1599000;1423000;1491000;1326000;1227000;1110000;1177000;1267000;1180000;1124000;1134000;948000;898000;886000;974000;896000;1014000;641000;774000;817000;801000;886000;888000;758000;680000;741000;764000;667000;494000;450000;455000;434000;482000;474000;478000;464000;441000;281000;243000;233000;241000;268000;268000 -117;'410;Republic of Korea;1640;Plywood and LVL;5616;Import quantity;m3;;2700;1800;1800;42;300;300;200;300;300;300;300;300;1900;1900;1900;1900;1900;1900;1900;1900;1900;1900;19000;11000;25000;22000;351000;589000;735000;999000;953000;1153000;1003000;1307000;1081000;970000;500000;750000;980000;1095000;1339000;1444000;1203000;1242000;1297000;1358974;949541;1320973;1107499;1129025;1478107;1401297;1145947;1486273;1529286;1715005;1483273;1133810;1144679;1585489;1400746;1344507 -117;'410;Republic of Korea;1640;Plywood and LVL;5622;Import value;1000 USD;;84;56;56;10;71;71;53;132;132;132;132;132;395;395;395;395;395;395;395;395;395;395;2244;2929;3043;11120;104473;172773;256164;358411;350658;516803;535927;593861;528867;449052;154398;260338;306946;311991;382350;417201;397118;427765;513697;593504;592462;645050;443310;504607;692321;637785;748587;740198;842205;889177;925879;722150;690895;834456;776836;650351 -117;'410;Republic of Korea;1640;Plywood and LVL;5916;Export quantity;m3;11700;17800;54100;104400;169600;276600;311400;600000;708600;1055000;1044000;1214000;1421000;1038000;1304000;1693000;1718000;1617000;1307000;953000;1076000;647000;348000;211000;127000;171000;176000;61000;70000;76000;64000;61000;49000;61000;104000;89000;44000;146000;130000;93000;70000;45000;49000;60281;15000;12000;14272;1991;8504;7122;7274;4186;5170;3723;4117;6410;3562;3272;3411;597;806;3796;1369 -117;'410;Republic of Korea;1640;Plywood and LVL;5922;Export value;1000 USD;1217;2284;6309;12550;19055;30683;36448;65570;81758;102396;138724;175236;273987;192600;228754;347589;408717;411954;447928;352199;391645;201126;109857;66579;39807;50573;56017;32549;29855;36867;29489;37702;11467;38987;47699;53506;30624;53053;53563;47238;27877;18043;26335;35769;20396;7979;4384;3341;5902;4785;5187;4225;5773;5519;6775;4361;3370;3458;4826;1343;1432;6262;3502 -117;'410;Republic of Korea;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;443 -117;'410;Republic of Korea;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;154 -117;'410;Republic of Korea;1646;Particle board and OSB (1961-1994);5516;Production;m3;800;800;10600;13800;20300;25700;28800;30500;25800;16000;19000;27000;75000;75000;39000;39000;57000;45000;43000;68000;105000;54000;66000;85000;55000;105000;115000;171000;164000;165000;155000;276000;435000;524000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -117;'410;Republic of Korea;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;306000;274000;403000;493000;450900;516887;401000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -117;'410;Republic of Korea;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;42561;45257;74278;75428;71826;91066;72267;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -117;'410;Republic of Korea;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;2300;4900;10900;12000;24000;19000;21000;22800;23000;22000;9000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;101;293;1000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -117;'410;Republic of Korea;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;243;727;1617;1000;2654;1596;3193;3271;2944;4340;1907;2125;2125;2125;2125;2125;2125;2125;2125;2125;2125;2125;33;201;286;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -117;'410;Republic of Korea;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;548000;659000;721000;507000;672000;722000;723000;728000;794000;896000;847000;777000;955000;950000;934000;919000;795000;801000;802000;830000;820000;815000;855000;843000;807000;857000;858000;785000;597000 -117;'410;Republic of Korea;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;485000;408000;293000;149000;436000;485000;595000;866000;681000;867000;759000;955000;712000;733000;623000;741920;715810;664000;775610;1026000;1113331;1108410;1409000;1453000;1082539;1068991;1274228.02;1108445;1157886 -117;'410;Republic of Korea;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91318;76734;53651;25115;54756;70861;77593;110159;78067;120791;100047;137000;107309;124870;87157;114162;127214;111892;119289;169288;173835;161282;238384;216140;149684;143808;241745.76;206133;176614 -117;'410;Republic of Korea;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;2000;4000;4000;3000;2000;5000;2000;2000;1000;1815;1040;1505;1100;1160;1940;3810;4568;2883;2138;1458;1456;1512;1747;1391;788;3240 -117;'410;Republic of Korea;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;506;1048;1727;1289;2111;3150;2430;1673;2485;1322;1022;800;1199;719;913;792;841;1511;3676;3986;1758;1677;1284;1164;1065;993;1100;274;1176 -117;'410;Republic of Korea;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56000;40000;55000;63030;56680;78980;81440;109000;132000;168000;176275;138128;108460;112729;111774.97;110722;52414 -117;'410;Republic of Korea;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13356;15330;11787;18623;15515;21863;26422;29361;28754;37479;43826;41529;24267;23041;31681.4;31276;16933 -117;'410;Republic of Korea;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;380;290;110;80;47;452;867;788;761;285;0;0;110;15 -117;'410;Republic of Korea;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121;176;68;40;34;208;270;234;299;84;0;0;33;5 -117;'410;Republic of Korea;1874;Fibreboard;5516;Production;m3;;;2000;3200;4400;5000;6000;6000;7400;15000;20000;9000;12000;12000;10000;13000;14000;14000;13000;13700;8000;11000;12000;10000;14000;26000;64000;82000;110000;167000;293000;354000;407000;506000;614000;744000;750000;584000;844000;943000;1019000;1235000;1324000;1590000;1659000;1648000;1723000;1696000;1661000;1836000;1812000;1712000;1678000;2011000;1901000;1859000;1840000;1740000;1529000;1400000;1612000;1470000;1318000 -117;'410;Republic of Korea;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;61000;96000;82000;73000;68000;144000;152000;75000;53000;58000;34000;172000;380000;490000;753000;582000;343000;416000;453000;408394;433102;168119;207630;108310;107080;130200;148851;105728;105000;136082;297362;212041;150077;143756;141222;210373 -117;'410;Republic of Korea;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;20578;33202;27120;23980;27994;50845;69385;39494;26130;25350;10317;41676;81287;93924;146774;109045;73606;101136;115910;127877;153816;61713;75564;56829;55770;54932;57553;56560;50413;54797;92570;76189;55324;71001;74520;67790 -117;'410;Republic of Korea;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6779;12345;7344;19200;30000;79000;85000;102000;102000;80000;52000;53000;85000;48000;33000;33493;24374;23307;25990;59560;105310;80340;47597;38525;47476;44543;29128;21113;18085;16977;17918;19817 -117;'410;Republic of Korea;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2515;6678;3561;7764;11549;27038;26798;28097;27985;23122;17031;16915;25663;18534;13700;15707;13253;10615;11450;22902;39243;33967;31568;21811;23370;22805;19848;15819;11886;11995;14604;12467 -117;'410;Republic of Korea;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41000;24000;22000;13000;13000;12000;10000;6000;6000;6000;6000;6000;6000;6000;6000;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -117;'410;Republic of Korea;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13000;15000;11000;6000;28000;66000;29000;48000;52000;48000;118000;145000;93000;82000;64000;62000;54000;67220;74020;85000;37114;33000;27005;23628;21748;8637;10708;12504;3376 -117;'410;Republic of Korea;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7682;7911;4792;2683;10794;15756;8758;15904;19170;18045;37597;50000;43819;50450;33267;34389;35836;38471;33190;32117;29874;24917;19932;16660;12310;6251;9059;10384;2974 -117;'410;Republic of Korea;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7000;9000;23000;22000;25000;48000;29000;23000;26000;31000;25000;26000;5144;5244;3465;4690;2880;6240;5560;1339;1350;1476;2529;2227;1930;1143;999;880;471 -117;'410;Republic of Korea;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2873;3347;7995;7531;8000;13228;10135;8670;9589;11712;11198;11000;4326;5113;3117;3150;2552;3783;3992;1329;1294;1382;2301;1980;1901;1211;1014;1100;378 -117;'410;Republic of Korea;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;573000;720000;728000;571000;831000;931000;1009000;1229000;1318000;1584000;1653000;1642000;1717000;1690000;1655000;1836000;1812000;1712000;1678000;2011000;1901000;1859000;1840000;1740000;1529000;1400000;1612000;1470000;1318000 -117;'410;Republic of Korea;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52000;31000;42000;26000;124000;295000;447000;658000;511000;279000;293000;301000;250220;299454;81952;133860;37910;28770;47800;53000;63000;68000;106880;271537;186553;137881;129620;126237;204795 -117;'410;Republic of Korea;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21519;9940;14445;4672;18837;60711;81744;120840;86092;52465;61934;64800;69643;89757;21586;36145;13928;12213;17761;19159;23116;23122;32905;73907;61013;47386;60224;62796;63546 -117;'410;Republic of Korea;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12000;16000;41000;49000;61000;33000;35000;14000;14000;40000;15000;4000;22805;16078;17154;18250;55050;98340;74250;45874;36855;45000;41828;26506;18895;16842;15972;17005;19074 -117;'410;Republic of Korea;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4765;6083;12022;11312;12097;7366;6981;3123;3094;9000;4109;1700;8850;6930;5698;6400;19327;34957;29654;29686;20003;20337;19900;15718;12659;10626;10962;13473;11841 -117;'410;Republic of Korea;1650;Other fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0 -117;'410;Republic of Korea;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;20000;13000;10000;7000;5000;2000;20000;19000;14000;47000;19000;16000;5000;7000;65174;51648;22167;11770;16400;11090;8380;10851;5614;4000;2197;2197;3740;3559;3428;2481;2202 -117;'410;Republic of Korea;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4786;8922;10645;10293;8279;6113;2962;12045;4820;3422;10030;3783;3096;1605;1110;14415;13609;6860;5030;7065;5086;3981;6277;3570;2374;1960;2003;2866;1687;1718;1340;1270 -117;'410;Republic of Korea;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;987;182;205;200;5000;15000;14000;16000;21000;16000;15000;13000;14000;8000;3000;5544;3052;2688;3050;1630;730;530;384;320;1000;186;395;288;100;6;33;272 -117;'410;Republic of Korea;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;345;75;142;126;2119;7021;7955;8000;7391;6006;5238;4232;4951;3227;1000;2531;1210;1800;1900;1023;503;321;553;514;1651;604;2150;1259;49;19;31;248 -117;'410;Republic of Korea;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;;;2000;3200;4400;5000;6000;6000;7400;15000;20000;9000;12000;12000;10000;13000;14000;14000;13000;13700;8000;11000;12000;10000;14000;26000;64000;82000;110000;167000;293000;354000;407000;506000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -117;'410;Republic of Korea;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;61000;96000;82000;73000;64000;124000;139000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -117;'410;Republic of Korea;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;20578;33202;27120;23980;23208;41923;58740;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -117;'410;Republic of Korea;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5792;12163;7139;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -117;'410;Republic of Korea;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2170;6603;3419;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -117;'410;Republic of Korea;1879;Total fibre furnish;5510;Production;t;24600;18800;20900;21500;22700;27000;28700;45100;65600;164200;190500;228300;230600;256800;303000;375000;533000;629000;829000;799000;809000;818000;946000;1053000;1084000;1277000;1495000;1734000;2203000;2193000;2421000;2648000;3148000;3836000;4216000;4569000;5122000;4287000;4456000;5597000;5805000;6533000;7134000;7420000;7597000;7971000;8416000;8438000;8318000;9368000;9412000;8606000;9199000;9325000;8833000;8861000;9350000;9046000;8688000;8919000;9744000;8592000;8172864 -117;'410;Republic of Korea;1879;Total fibre furnish;5610;Import quantity;t;1000;8300;7200;5000;9000;10100;15400;144900;168100;189100;228800;343500;405700;404152;387095;646801;705118;884306;1005585;1005893;1126478;1001100;1067200;1243800;1399600;1648900;1910500;2177800;2279000;2554800;2660300;3028312;2932426;3248700;3228500;3690750;3432700;3709000;4525000;4106000;3823300;3910000;3772000;4113000;3844000;3633000;3753593;3787489;3508603;3877963;4025037;3845460;3971938;3823592;3857250;3804814;3726410;3801999;3696685;3282448;3257981.64;3166714;2809625 -117;'410;Republic of Korea;1879;Total fibre furnish;5622;Import value;1000 USD;110;1019;737;574;1186;1230;2139;23840;23316;30679;35277;35463;74158;124163;92075;110698;135474;166069;244608;305492;324920;254225;260561;345042;326903;393683;595304;819216;937316;959913;883272;983060;549928;1041671;1855193;1486745;1157826;976318;1227143;1667259;1184511;1210158;1301223;1496117;1469282;1537914;1880233;2131494;1443190;2209804;2233689;1841251;1901128;1805055;1787308;1548089;1717934;2089117;1678478;1275755;1699774.74;1987023;1566505 -117;'410;Republic of Korea;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;2000;2000;1000;1000;1000;1000;1000;1000;100;100;1009;2082;38000;20800;2550;2600;2000;0;7000;1000;64000;158000;53000;46000;125000;463080;293168;408154;353193;354754;559773;441507;485597;558276;647764;597266;776984;429969;468561;496231.68;464823;636811 -117;'410;Republic of Korea;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;295;290;197;271;252;252;252;252;29;29;526;554;15765;15312;1180;1444;464;0;1466;391;6857;18943;7174;6550;14900;68141;57853;81664;107094;89283;96075;75391;73281;84668;97230;124168;159942;82061;85684;130224.88;108596;118181 -117;'410;Republic of Korea;1878;Pulp for paper;5510;Production;t;24600;18800;20900;21500;22700;27000;28700;45100;65600;84200;88500;88300;85600;100800;94000;94000;129000;106000;226000;217000;246000;265000;262000;270000;267000;287000;315000;313000;301000;318000;327000;323000;447000;531000;554000;625000;591000;418000;587000;594000;554000;534000;523000;545000;511000;516000;418000;536000;467000;511000;585000;562000;553000;602000;500000;521000;505000;575000;510000;440000;479000;277000;468000 -117;'410;Republic of Korea;1878;Pulp for paper;5610;Import quantity;t;1000;8300;7200;5000;9000;10100;15400;144900;168100;162100;199800;305500;267700;246600;191700;254700;306800;400300;407800;436800;482000;414200;488000;563000;658600;719400;779300;851300;906400;1068200;1270000;1524312;1476426;1857100;1911200;2265250;1981000;1746000;2200000;2142000;2306300;2521000;2445000;2570000;2494000;2422000;2571593;2480489;2386776;2521973;2494165;2378310;2382452;2276303;2315086;2242814;2266593;2247788;2235501;2132199;2069184.92;2140877;1958473 -117;'410;Republic of Korea;1878;Pulp for paper;5622;Import value;1000 USD;110;1019;737;574;1186;1230;2139;23840;23316;28373;33076;32936;62578;100744;69797;71280;86050;106040;158048;207458;223900;164292;166704;233438;228211;261445;399154;552295;665079;678201;633560;742601;458397;825150;1450632;1205526;918813;753156;961157;1307856;973294;1011591;1080388;1226128;1222514;1322514;1608086;1750981;1235083;1860057;1791769;1494734;1541188;1454291;1448796;1220664;1363222;1760487;1420977;1077795;1397161.57;1674661;1351430 -117;'410;Republic of Korea;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;366;536;28600;17900;450;2300;1000;0;0;0;0;0;0;0;0;80;168;83928;81206;31134;12395;13297;3547;3723;12764;24190;36789;38198;54938;52049.04;31945;47795 -117;'410;Republic of Korea;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;398;342;13087;14308;667;1293;235;0;0;0;0;0;0;0;0;63;128;43589;58406;21211;8816;10481;5327;6598;7017;15976;29919;20800;23173;28323.12;24007;27201 -117;'410;Republic of Korea;1875;Wood pulp;5510;Production;t;24600;18800;20900;21500;22700;27000;28700;45100;65600;80200;84500;84300;81600;96800;91000;91000;117000;103000;159000;167000;206000;235000;242000;260000;267000;287000;315000;313000;301000;318000;327000;323000;447000;531000;554000;625000;591000;418000;587000;594000;554000;534000;523000;545000;511000;516000;418000;536000;467000;511000;585000;562000;553000;602000;500000;521000;505000;575000;510000;440000;479000;277000;468000 -117;'410;Republic of Korea;1875;Wood pulp;5610;Import quantity;t;1000;8300;7200;5000;3463;8800;14400;144900;172700;168800;204400;305400;278100;259100;197800;274400;340100;428500;441200;464500;517200;434700;501600;589200;674200;728900;786900;860300;912600;1080600;1276400;1523225;1474507;1858100;1912000;2240650;1981000;1746000;2204000;2138000;2307300;2527000;2450000;2577000;2494000;2423000;2569593;2473489;2378147;2517326;2492584;2372714;2377661;2265092;2308246;2238081;2266518;2240708;2227894;2121562;2061989.63;2140623;1956053 -117;'410;Republic of Korea;1875;Wood pulp;5622;Import value;1000 USD;110;1019;737;574;420;1046;1936;23899;24330;30748;34439;33625;65065;106173;73785;81976;100045;117006;173251;223405;245664;175830;172889;244472;234911;265920;403287;558719;671482;688438;637824;741733;458552;824438;1450427;1188104;918813;752912;962877;1305823;972157;1013990;1082641;1230043;1220155;1321947;1603104;1736986;1222841;1844412;1772879;1477673;1532489;1441136;1439008;1213938;1360790;1756849;1421491;1064238;1376545.41;1655847;1352626 -117;'410;Republic of Korea;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;317;29500;17800;350;2200;1000;0;0;0;0;0;0;0;0;43;156;83891;81230;31002;12487;13391;3439;3293;12197;22522;35956;37976;54919;45761.51;31882;43704 -117;'410;Republic of Korea;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;167;13197;13775;191;817;235;0;0;0;0;0;0;0;0;36;86;43494;58443;20755;8957;10591;5152;5948;6944;13937;26697;20486;23126;27315.12;24003;23781 -117;'410;Republic of Korea;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68000;76000;56000;47000;55000;50000;44000 -117;'410;Republic of Korea;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;308430;338826;312481;241869;282000.81;252117;236541 -117;'410;Republic of Korea;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;172566;228541;170543;114370;161931.51;175269;142841 -117;'410;Republic of Korea;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;296;297;100;16;12;0;400 -117;'410;Republic of Korea;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106;59;56;36;7;0;158 -117;'410;Republic of Korea;1654;Mechanical wood pulp (1961-2016);5510;Production;t;24600;18800;20900;21500;22700;27000;28700;41700;61100;75400;79400;79100;76800;92200;87000;87000;110000;93000;139000;137000;137000;127000;126000;139000;138000;143000;168000;158000;145000;159000;167000;161000;142000;170000;181000;229000;197000;169000;174000;175000;127000;115000;108000;117000;100000;90000;80000;111000;106000;109000;138000;112000;103000;85000;59000;71000;;;;;;; -117;'410;Republic of Korea;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;1000;8300;7200;5000;3400;8700;13900;16400;13000;14500;8200;4200;6300;19900;14900;1500;4700;12100;25500;31200;33100;35700;42300;41400;25000;31800;29500;27000;27100;12300;9400;4000;6000;4200;2500;5600;8000;4000;7000;8000;8000;7000;7000;5000;2000;1000;2000;4000;1000;649;950;2263;5358;12172;7510;2000;;;;;;; -117;'410;Republic of Korea;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;110;1019;737;574;415;1038;1846;1704;1483;1663;1080;507;751;5705;4846;352;1063;2463;6328;9923;11525;12193;13133;13956;8500;10687;12204;13795;15896;5963;3989;1620;2190;1844;1577;2848;3364;1482;2286;4023;3140;2575;2636;2375;870;537;1544;2448;488;480;679;1278;2678;6159;3820;1087;;;;;;; -117;'410;Republic of Korea;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;0;0;0;0;0;0;0;0;0;0;0;0;0;1;19;0;14;23;4;6;17;17;579;;;;;;; -117;'410;Republic of Korea;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;0;0;0;0;0;0;0;0;0;0;0;0;1;5;0;11;28;9;31;5;5;162;;;;;;; -117;'410;Republic of Korea;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;;;;;;; -117;'410;Republic of Korea;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60000;70551;73000;100200;130900;157400;171300;112000;166000;225000;172000;190000;201000;216000;174000;195000;248000;278000;205000;259992;304107;331579;337929;305234;284935;311000;;;;;;; -117;'410;Republic of Korea;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23171;27677;23483;39799;90356;64989;64182;42880;69803;121322;66046;70741;83116;95435;78076;98200;140385;188962;104077;181135;189878;192280;204470;178076;150464;143085;;;;;;; -117;'410;Republic of Korea;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;238;83;38;242;379;268;170;145;;;;;;; -117;'410;Republic of Korea;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;3;0;180;75;41;323;569;364;261;113;;;;;;; -117;'410;Republic of Korea;1656;Chemical wood pulp;5510;Production;t;;;;;;;;3400;4500;4800;5100;5200;4800;4600;4000;4000;7000;10000;20000;30000;69000;108000;116000;121000;129000;144000;147000;155000;156000;159000;160000;162000;305000;361000;373000;396000;394000;249000;413000;419000;427000;419000;415000;428000;411000;426000;338000;425000;361000;402000;447000;450000;450000;517000;441000;450000;437000;499000;454000;393000;424000;227000;424000 -117;'410;Republic of Korea;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;124000;152700;143800;186600;291700;261300;226500;173500;243600;300200;385700;377500;402100;446000;377100;443900;519600;631000;677100;738000;813700;867100;1053500;1198700;1445304;1391545;1750600;1775600;2075550;1797700;1628000;2025000;1900000;2119300;2319000;2231000;2343000;2308000;2216000;2307593;2179489;2162167;2245716;2174841;2023473;2020589;1934485;1999327;1906081;1936742;1880741;1894766;1863387;1758186.66;1862284;1688835 -117;'410;Republic of Korea;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;21281;21465;26217;31343;31083;61752;94901;63903;67876;84149;102256;149482;195139;210536;150749;151834;217392;217330;245658;380455;531381;639489;669256;603500;709915;430353;780436;1355705;1118107;847439;706319;886593;1176059;895774;931798;987340;1120739;1132299;1213077;1449637;1532544;1106227;1649701;1559899;1256380;1300743;1234380;1261416;1042823;1154493;1489057;1210371;926181;1185453.85;1439471;1150351 -117;'410;Republic of Korea;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;305;28500;17800;350;2200;1000;0;0;0;0;0;0;0;0;41;137;83652;81108;30941;12126;12887;3149;3106;11470;22206;35639;37876;54903;45749.51;31881;43297 -117;'410;Republic of Korea;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;156;12632;13775;191;817;235;0;0;0;0;0;0;0;0;32;81;43313;58319;20686;8455;9839;4775;5682;6647;13819;26626;20430;23090;27308.12;23993;23596 -117;'410;Republic of Korea;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;;;;3400;4500;4800;5100;5200;4800;4600;4000;4000;7000;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -117;'410;Republic of Korea;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;45000;49000;46900;66200;74500;85100;93100;69800;106700;130000;138800;135900;146000;158600;138000;146400;162100;188300;196800;183200;174000;164300;197000;193100;220304;160381;271400;270500;270500;245600;193000;270000;246000;299000;295000;286000;255000;228000;216000;245000;186000;206000;190890;202640;184208;203942;191561;182229;174000;191256;180730;182567;181828;199971.33;193229;169433 -117;'410;Republic of Korea;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;5977;6782;7726;10080;10676;17358;37308;23501;25086;29907;31682;47228;61057;64624;45698;41619;56497;54902;58481;81234;102847;92062;88992;90431;94056;44507;108728;188669;136643;101934;72953;99003;120795;105562;108261;109981;108017;97148;104500;149933;103850;94760;124497;142560;107725;121167;128364;108570;98115;98218;152758;121481;98601;144844.84;159636;115222 -117;'410;Republic of Korea;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;0;3600;0;0;0;0;0;0;0;0;0;0;0;0;0;0;163;0;411;457;950;1380;470;101;0;0;0;0;0;0 -117;'410;Republic of Korea;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;2070;0;0;0;0;0;0;0;0;0;0;0;0;0;0;122;0;761;1641;3324;4532;1481;45;0;0;0;0;0;0 -117;'410;Republic of Korea;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;30000;69000;108000;116000;121000;129000;144000;147000;155000;156000;159000;160000;162000;305000;361000;373000;396000;394000;249000;413000;419000;427000;419000;415000;428000;411000;426000;338000;425000;361000;402000;447000;450000;450000;517000;441000;450000;437000;499000;454000;393000;424000;227000;424000 -117;'410;Republic of Korea;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;56000;77000;77300;110800;212900;152000;111200;93600;122600;163000;236700;230900;240600;270600;226200;282900;338800;424600;456400;524000;610300;668000;807400;969600;1194509;1192764;1451700;1479100;1766400;1525000;1413000;1735000;1614000;1806000;2009000;1931000;2073000;2074000;1998000;2058000;1991000;1955000;2052844;1970585;1838265;1815935;1742180;1816165;1731000;1744766;1699682;1711961;1681296;1557502.33;1667893;1517095 -117;'410;Republic of Korea;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;8593;10618;14656;19310;19658;39837;48428;35818;38058;51649;69726;97523;125683;137482;98759;104207;152207;155516;177123;282961;408566;520197;547704;493582;599278;370811;657346;1146069;959505;731687;622158;777316;1029392;780652;815497;869743;1003217;1031226;1106600;1296598;1426376;1010510;1523207;1415727;1147624;1178856;1105070;1151949;943989;1055524;1335815;1088457;827095;1039361.59;1278186;1030008 -117;'410;Republic of Korea;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28500;14000;350;2200;1000;0;0;0;0;0;0;0;0;41;127;83652;80930;30941;11715;12430;2199;1726;11000;22105;35639;37876;54903;45742.51;31881;43297 -117;'410;Republic of Korea;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12632;11544;191;817;235;0;0;0;0;0;0;0;0;32;67;43313;58179;20686;7694;8198;1441;1150;5166;13774;26626;20428;23089;27306.12;23992;23595 -117;'410;Republic of Korea;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -117;'410;Republic of Korea;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;720;329;238;263;713;1162;2307 -117;'410;Republic of Korea;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;751;484;433;485;1247.42;1649;5121 -117;'410;Republic of Korea;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;7;0;0 -117;'410;Republic of Korea;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1;2;1;1 -117;'410;Republic of Korea;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;;;;;;; -117;'410;Republic of Korea;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;1000;700;600;1000;100;100;8100;2400;5700;500;700;3100;800;7200;300;300;300;300;100;100;300;300;300;100;65;31;200;300;50;0;0;0;0;300;2000;2000;2000;0;0;593;489;0;208;4;9;0;0;432;81;;;;;;; -117;'410;Republic of Korea;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;100;106;86;169;8;8;2932;965;1628;114;189;1179;329;3145;90;90;90;90;86;105;223;223;223;71;76;21;78;336;60;0;0;0;0;189;779;592;592;0;0;366;262;0;158;13;3;0;2;322;57;;;;;;; -117;'410;Republic of Korea;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;;;;;;; -117;'410;Republic of Korea;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;5;0;0;;;;;;; -117;'410;Republic of Korea;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;;;;;;; -117;'410;Republic of Korea;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;22000;26000;19000;8600;4200;24100;14100;7700;8600;6700;9500;7600;14700;9600;12600;14300;18400;17800;23800;30700;29100;34500;48800;35900;30426;38369;27300;25700;38600;27100;22000;20000;40000;14000;13000;12000;13000;6000;2000;4000;2000;1167;1774;1612;991;712;744;501;1000;;;;;;; -117;'410;Republic of Korea;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;6611;3959;3749;1784;741;4549;6233;3619;3104;2479;659;3552;8070;5285;6202;5918;8598;6822;9968;16155;19745;27007;32337;19416;16505;15014;14284;20631;21899;13818;11208;10274;25872;9371;7261;7024;8913;3925;1977;2740;2056;957;1839;1599;1028;720;944;575;662;;;;;;; -117;'410;Republic of Korea;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;300;0;200;0;0;0;0;0;0;0;0;0;0;0;0;10;0;15;0;0;0;0;0;0;;;;;;; -117;'410;Republic of Korea;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;154;0;161;0;0;0;0;0;0;0;0;0;0;0;0;14;0;18;0;0;0;5;0;0;;;;;;; -117;'410;Republic of Korea;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0 -117;'410;Republic of Korea;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;63;100;500;4500;7000;10500;9600;9500;10500;12700;9400;29300;35200;30700;38200;31200;38100;21900;15400;28200;18200;20000;19400;19600;18400;14800;8300;3370;3962;3100;3000;2100;4000;2000;6000;5000;8000;11000;11000;13000;10000;11000;12000;12000;9980;10969;12686;15399;13785;13201;16474;19000;21346;21141;20647;16306;21802.16;26222;30677 -117;'410;Republic of Korea;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;5;8;90;914;1382;2868;2016;2035;2562;5567;5036;13748;14833;12287;17441;18343;23603;12888;7922;13124;9081;9575;10628;13543;16097;13219;7164;2521;2526;2359;2789;2160;3828;2231;4195;4419;7197;8876;9549;11494;8910;10133;11538;13032;12049;13096;22423;27735;24598;22521;23308;26943;33731;39251;40577;23687;29160.04;41107;59434 -117;'410;Republic of Korea;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;3;1000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;25;0;115;119;5;0;3;20;20;0;0;0;1;7 -117;'410;Republic of Korea;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;8;565;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;38;0;170;152;8;0;22;12;12;0;0;0;10;27 -117;'410;Republic of Korea;1668;Pulp from fibres other than wood;5510;Production;t;;;;;;;;;;4000;4000;4000;4000;4000;3000;3000;12000;3000;67000;50000;40000;30000;20000;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;0;0;0;0;0;0;0;0;0;0;0;0 -117;'410;Republic of Korea;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;5600;1400;1500;4500;2400;3800;5000;9600;100;200;3300;9600;1900;2500;4800;3500;2900;1400;1800;2000;2600;10500;11800;10600;12200;2400;1900;4457;5881;2100;2200;26700;4000;2000;2000;9000;7000;5000;6000;6000;10000;10000;14000;19000;18609;15616;14267;20995;18576;24412;23314;23733;21421;28221;28254;26943;28997.45;26476;33097 -117;'410;Republic of Korea;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;771;192;293;855;368;493;653;1346;75;138;1048;3052;838;1321;2238;2396;1839;1350;1737;2090;2381;5100;6495;7119;9694;2982;2900;3389;2371;3071;2994;19582;3828;2475;2475;6452;8334;6477;7296;7579;11269;10700;16520;27027;24291;28741;41313;44796;33297;35676;33096;33669;36163;42889;40063;37244;49776.2;59921;58238 -117;'410;Republic of Korea;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;357;222;100;100;100;100;0;0;0;0;0;0;0;0;0;37;12;38;1;132;23;25;113;430;570;1688;853;222;19;6287.53;64;4098 -117;'410;Republic of Korea;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;393;183;455;533;476;476;0;0;0;0;0;0;0;0;0;27;42;96;1;456;29;42;183;650;95;2051;3234;314;47;1008;14;3447 -117;'410;Republic of Korea;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20000;6000;0;0;0;0;0;1000;2000;3886;21103;5623;4879;6591;4472;3111;2000;2617;5562;4771;6793;7487;8638;11678 -117;'410;Republic of Korea;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16688;3297;0;0;0;0;0;482;960;2320;16377;4773;3504;4850;4004;2706;1462;2128;5368;4510;6343;6079;7647;9611 -117;'410;Republic of Korea;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;90;212;77;241;1007;883;381;336;5960;26584;143984;18148.36;4676;7501 -117;'410;Republic of Korea;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;12;80;41;47;230;145;84;252;2389;8371;41580;6863.9;1715;2155 -117;'410;Republic of Korea;1669;Recovered paper;5510;Production;t;;;;;;;;;;80000;102000;140000;145000;156000;209000;281000;404000;523000;603000;582000;563000;553000;684000;783000;817000;990000;1180000;1421000;1902000;1875000;2094000;2325000;2701000;3305000;3662000;3944000;4531000;3869000;3869000;5003000;5251000;5999000;6611000;6875000;7086000;7455000;7998000;7902000;7851000;8857000;8827000;8044000;8646000;8723000;8333000;8340000;8845000;8471000;8178000;8479000;9265000;8315000;7704864 -117;'410;Republic of Korea;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;27000;29000;38000;138000;157552;195395;392101;398318;484006;597785;569093;644478;586900;579200;680800;741000;929500;1131200;1326500;1372600;1486600;1390300;1504000;1456000;1391600;1317300;1425500;1451700;1963000;2325000;1964000;1517000;1389000;1327000;1543000;1350000;1211000;1182000;1307000;1121827;1355990;1530872;1467150;1589486;1547289;1542164;1562000;1459817;1554211;1461184;1150249;1188796.72;1025837;851152 -117;'410;Republic of Korea;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;2306;2201;2527;11580;23419;22278;39418;49424;60029;86560;98034;101020;89933;93857;111604;98692;132238;196150;266921;272237;281712;249712;240459;91531;216521;404561;281219;239013;223162;265986;359403;211217;198567;220835;269989;246768;215400;272147;380513;208107;349747;441920;346517;359940;350764;338512;327425;354712;328630;257501;197960;302613.17;312362;215075 -117;'410;Republic of Korea;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;2000;2000;1000;1000;1000;1000;1000;1000;100;100;643;1546;9400;2900;2100;300;1000;0;7000;1000;64000;158000;53000;46000;125000;463000;293000;324226;271987;323620;547378;428210;482050;554553;635000;573076;740195;391771;413623;444182.64;432878;589016 -117;'410;Republic of Korea;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;295;290;197;271;252;252;252;252;29;29;128;212;2678;1004;513;151;229;0;1466;391;6857;18943;7174;6550;14900;68078;57725;38075;48688;68072;87259;64910;67954;78070;90213;108192;130023;61261;62511;101901.76;84589;90980 -117;'410;Republic of Korea;1876;Paper and paperboard;5510;Production;t;66800;89600;98000;108100;120400;139000;154700;198000;240900;330000;433000;486000;512000;618000;662000;698000;1124000;1365000;1594000;1680000;1783000;1737000;1982000;2207000;2312000;2773000;3163000;3659000;4029000;4524000;4922000;5504000;5804000;6435000;6878000;7681000;8334000;7750000;8875000;9308000;9332000;9812000;10148000;10511000;10549000;10703000;10932000;9890000;9726000;11022000;11256000;11332000;11767000;11622000;11569000;11652000;11091000;11529000;10647000;10818000;10977000;10733000;10245000 -117;'410;Republic of Korea;1876;Paper and paperboard;5610;Import quantity;t;18100;14900;8200;6600;5600;14800;15700;33200;23500;24400;36500;34200;28700;25200;22000;31900;23300;28100;32500;53500;60600;52700;53100;62900;98400;155700;195400;191400;257900;274600;412600;508155;482725;561900;697000;676400;470100;258000;445000;570000;564000;784000;814000;728000;753473;764000;844000;804000;696670;876831;845893;832990;926396;1020945;1008099;1224011;1204857;1192801;1098695;1109694;1249153.95;1113764;1209262 -117;'410;Republic of Korea;1876;Paper and paperboard;5622;Import value;1000 USD;3750;3300;1893;1269;1260;3130;2469;6156;5559;7019;9683;9393;13825;17649;18875;31508;28845;35614;40107;52384;66194;61117;64648;76607;99002;143781;197097;223929;284162;315096;421910;406450;301720;502553;768831;712114;484426;290096;415352;591342;519560;646745;683794;663733;728534;726045;883629;974492;817239;1056407;1114592;1112812;1155329;1230847;1164322;1268917;1286982;1418636;1324731;1269502;1417606.18;1433681;1623284 -117;'410;Republic of Korea;1876;Paper and paperboard;5910;Export quantity;t;;;100;100;300;1000;1000;1000;1000;1000;1000;6400;31300;30900;28900;57100;56300;56100;50200;132200;154300;100500;97900;76500;102300;247700;358700;359300;391000;469500;457700;601965;694400;952200;993700;1384400;1900200;2787000;2678000;2471000;2328332;2430250;2739000;2996000;3228182;3130000;3046961;2674652;2875913;2813459;2968996;3115106;3343291;3191845;3160300;3210000;2993150;3022218;2907358;2653794;2458240.17;2440134;2395574 -117;'410;Republic of Korea;1876;Paper and paperboard;5922;Export value;1000 USD;;;60;63;106;418;418;418;418;418;418;2065;16439;20371;13127;25525;58299;27700;27116;86480;95559;58002;57441;52315;67369;143421;241003;295761;312804;369687;376228;515805;526133;789017;1125514;883035;1141747;1457235;1425274;1533884;1313794;1305257;1495117;1792997;1915026;1827429;1899246;2104367;1818022;2150564;2497595;2440810;2602243;2428843;2202272;2211362;2225515;2622828;2264709;1828141;2021362.85;2223545;1993691 -117;'410;Republic of Korea;2042;Graphic papers;5510;Production;t;48700;58000;66000;70900;75100;89500;123200;107500;126600;124000;189000;209000;264000;292000;287000;323000;385000;430000;492000;542000;573000;577000;648000;695000;721000;887000;991000;1113000;1221000;1441000;1482000;1653000;1859000;2224000;2387000;2945000;3405000;3325000;3594000;3784000;3719000;3892000;3849000;4154000;4027000;4368000;4189000;3978000;3752000;4586000;4703000;4081000;4072000;3688000;3468000;3328000;3487000;3666000;2392000;2129000;2038000;2153000;1956000 -117;'410;Republic of Korea;2042;Graphic papers;5610;Import quantity;t;8600;5000;3000;5300;2300;11000;14500;26200;12500;7000;13500;5500;5400;100;4100;8800;4300;4600;2900;22400;25500;15900;2400;2000;8600;35300;41700;20300;70700;75200;198500;251278;183121;205300;300700;241400;91100;25000;93000;218000;227000;321000;377000;232000;309000;303000;338000;333000;303924;384340;308690;298905;386881;422095;426302;448011;445661;392655;352715;306239;326744.03;289019;395944 -117;'410;Republic of Korea;2042;Graphic papers;5622;Import value;1000 USD;1300;750;458;963;380;1850;2247;3959;1785;1194;2364;877;990;110;1273;2694;1506;2076;1505;11529;13970;8001;2552;2044;4691;14929;23363;13969;40732;53541;132195;140153;87828;119563;278699;219136;97778;22216;63877;192276;164777;205930;235781;169087;276766;283463;323112;366700;296813;399880;349240;339506;409089;437545;418653;406701;413068;413596;360663;294666;331034.82;331459;468896 -117;'410;Republic of Korea;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;3100;18300;11900;10900;28200;33500;35900;18100;50500;62500;35700;43900;31800;43800;53900;118500;88600;71100;75900;68900;104065;187000;337100;382400;531400;1414200;1673000;1505000;2023000;1967900;1212250;1649000;2049000;2378000;2328000;2359961;2290652;2401163;2311920;2590239;2664647;2716710;2520485;2348358;2357000;2021872;1881194;1551908;1246897;1256578.06;1257354;1152586 -117;'410;Republic of Korea;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;845;9755;8360;4981;12218;17617;19188;12348;43092;45225;23320;24602;20033;27311;33973;93096;87010;78776;74310;62701;84445;137358;283495;436051;452095;975916;993219;920493;1308609;1131958;778480;1027373;1342262;1528132;1553153;1678587;1871809;1588337;1803346;2165556;2082510;2128888;1933388;1660494;1642753;1505315;1722508;1400171;1028781;1115223.79;1318954;1214097 -117;'410;Republic of Korea;1671;Newsprint;5510;Production;t;32700;37600;42000;43000;45400;54700;57600;62200;79300;101700;105000;108000;120000;152000;155000;165000;198000;183000;194000;249000;270000;244000;232000;220000;238000;273000;302000;368000;444000;522000;563000;613000;743000;874000;948000;1305000;1592000;1700000;1718000;1770000;1585000;1597000;1538000;1679000;1588000;1612000;1630000;1562000;1464000;1556000;1537000;1523000;1515000;1423000;1334000;1390000;1120000;986000;720000;570000;474000;505000;452000 -117;'410;Republic of Korea;1671;Newsprint;5610;Import quantity;t;8600;5000;3000;4900;2100;9100;11400;21200;12000;6600;12800;5300;5300;;4000;8000;4200;3500;2400;22000;24800;14800;1000;300;7200;33700;39500;16500;33800;40300;120300;200278;149121;135400;177000;83300;14100;0;1000;20000;40000;75000;147000;39000;26000;14000;19000;4000;1557;1932;585;92;2005;5;3;11;1568;108;4;16;3;570;76 -117;'410;Republic of Korea;1671;Newsprint;5622;Import value;1000 USD;1300;750;458;763;314;1375;1718;3096;1665;1093;2107;790;897;;1180;2388;1416;1083;926;10884;12947;6697;446;62;2723;12846;20211;10167;13044;22500;67250;97480;59432;64766;143786;70436;6077;0;264;10000;17690;33226;65531;17574;14013;7763;10536;2541;820;928;306;62;1556;5;4;55;895;71;4;11;7;343;78 -117;'410;Republic of Korea;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;200;;300;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;65;16000;29000;11600;61000;279200;808000;652000;461000;338000;274000;405000;522000;569000;597000;572000;583000;661335;688010;685043;702217;786252;771087;753330;791000;508380;445578;203305;107607;86064.03;132889;131384 -117;'410;Republic of Korea;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;50;;76;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;56;6003;11817;8338;33922;114159;369866;281803;223350;182643;104268;163063;244447;296810;331600;303945;391634;314419;392821;454118;427202;464090;434507;362105;388840;255627;288124;111376;48661;50445.46;93347;83027 -117;'410;Republic of Korea;1674;Printing and writing papers;5510;Production;t;16000;20400;24000;27900;29700;34800;65600;45300;47300;22300;84000;101000;144000;140000;132000;158000;187000;247000;298000;293000;303000;333000;416000;475000;483000;614000;689000;745000;777000;919000;919000;1040000;1116000;1350000;1439000;1640000;1813000;1625000;1876000;2014000;2134000;2295000;2311000;2475000;2439000;2756000;2559000;2416000;2288000;3030000;3166000;2558000;2557000;2265000;2134000;1938000;2367000;2680000;1672000;1559000;1564000;1648000;1504000 -117;'410;Republic of Korea;1674;Printing and writing papers;5610;Import quantity;t;;;;400;200;1900;3100;5000;500;400;700;200;100;100;100;800;100;1100;500;400;700;1100;1400;1700;1400;1600;2200;3800;36900;34900;78200;51000;34000;69900;123700;158100;77000;25000;92000;198000;187000;246000;230000;193000;283000;289000;319000;329000;302367;382408;308105;298813;384876;422090;426299;448000;444093;392547;352711;306223;326741.03;288449;395868 -117;'410;Republic of Korea;1674;Printing and writing papers;5622;Import value;1000 USD;;;;200;66;475;529;863;120;101;257;87;93;110;93;306;90;993;579;645;1023;1304;2106;1982;1968;2083;3152;3802;27688;31041;64945;42673;28396;54797;134913;148700;91701;22216;63613;182276;147087;172704;170250;151513;262753;275700;312576;364159;295993;398952;348934;339444;407533;437540;418649;406646;412173;413525;360659;294655;331027.82;331116;468818 -117;'410;Republic of Korea;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;2900;18300;11600;10900;28200;33500;35900;18100;50500;62500;35700;43900;31800;43800;53900;118500;88600;71100;75900;68900;104000;171000;308100;370800;470400;1135000;865000;853000;1562000;1629900;938250;1244000;1527000;1809000;1731000;1787961;1707652;1739828;1623910;1905196;1962430;1930458;1749398;1595028;1566000;1513492;1435616;1348603;1139290;1170514.03;1124465;1021202 -117;'410;Republic of Korea;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;795;9755;8284;4981;12218;17617;19188;12348;43092;45225;23320;24602;20033;27311;33973;93096;87010;78776;74310;62701;84389;131355;271678;427713;418173;861757;623353;638690;1085259;949315;674212;864310;1097815;1231322;1221553;1374642;1480175;1273918;1410525;1711438;1655308;1664798;1498881;1298389;1253913;1249688;1434384;1288795;980120;1064778.33;1225607;1131070 -117;'410;Republic of Korea;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;172000;167000;162000;131000;136000;133000;149000;87000;59000;84000;103000;117000;112000;104000;88000;86000;91000;89000;90000;208000;643000;66000;49000;50000;53000;53000 -117;'410;Republic of Korea;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2000;4000;1000;1000;2000;4000;8000;4000;5520;13360;12395;10547;16993;19256;18999;31000;32195;19247;15384;12220;13225.96;9972;4227 -117;'410;Republic of Korea;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1637;1517;2977;1112;2203;2989;5000;9847;7668;6737;15296;15787;14469;19982;21902;18674;27752;31935;22101;16963;12697;14621.82;12211;6431 -117;'410;Republic of Korea;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;900;250;2000;6000;3000;2000;4961;14652;5562;7694;5500;10607;8132;2786;3238;5000;3855;2987;3966;3563;5105.23;2779;2430 -117;'410;Republic of Korea;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;801;801;251;988;3482;2044;2453;1819;22863;31992;31198;17287;30995;26171;10951;12677;15202;13329;9250;11005;9405;14626.71;3577;3101 -117;'410;Republic of Korea;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;407000;515000;555000;549000;611000;544000;555000;557000;612000;563000;502000;462000;801000;844000;514000;541000;461000;443000;430000;423000;387000;413000;496000;430000;425000;425000 -117;'410;Republic of Korea;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8000;62000;126200;105000;146000;124000;105000;144000;110000;114000;125000;123808;157346;139403;139554;167304;189480;208189;222000;221384;223567;205648;185019;203283.49;189102;276297 -117;'410;Republic of Korea;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5559;37202;104627;75003;98952;88876;79679;129853;106100;111452;138247;119990;168772;155344;149709;173614;195396;202453;199493;201994;236405;205905;167875;199726.08;211519;333731 -117;'410;Republic of Korea;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63000;25000;16000;13000;7000;10000;26000;17000;30000;41000;52000;42298;20991;58641;84385;80492;48837;28786;75000;98245;118922;101851;84807;75924.86;89347;107455 -117;'410;Republic of Korea;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44162;27538;19510;19255;5471;7154;19341;16998;25800;36350;54632;35910;23037;58081;85479;80017;48948;25755;57022;76770;112879;96587;70103;65654.78;96474;112000 -117;'410;Republic of Korea;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1046000;1194000;1297000;1454000;1548000;1634000;1771000;1795000;2085000;1912000;1811000;1709000;2117000;2218000;1956000;1930000;1713000;1602000;1418000;1736000;1650000;1193000;1014000;1084000;1170000;1026000 -117;'410;Republic of Korea;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17000;30000;69800;80000;96000;105000;87000;137000;175000;197000;200000;173039;211702;156307;148712;200579;213354;199111;195000;190514;149733;131679;108984;110231.59;89375;115344 -117;'410;Republic of Korea;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16657;26411;76012;70567;70775;80262;69631;129911;164600;191277;218244;169266;214884;177803;175266;213937;220242;197522;179401;178244;155019;137791;114083;116679.92;107386;128656 -117;'410;Republic of Korea;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;802000;828000;1544000;1616000;931000;1232000;1495000;1789000;1699000;1742000;1641000;1691968;1595225;1841055;1867438;1841834;1697775;1563004;1486000;1411392;1313707;1242786;1050920;1089483.94;1032339;911317 -117;'410;Republic of Korea;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;579191;611152;1064948;929259;668490;856168;1074992;1212280;1193300;1336473;1402680;1206016;1356290;1636070;1538834;1558610;1438982;1259957;1181689;1159589;1312255;1181203;900612;984496.83;1125556;1015969 -117;'410;Republic of Korea;1675;Other paper and paperboard;5510;Production;t;18100;31600;32000;37200;45300;49500;31500;90500;114300;206000;244000;277000;248000;326000;375000;375000;739000;935000;1102000;1138000;1210000;1160000;1334000;1512000;1591000;1886000;2172000;2546000;2808000;3083000;3440000;3851000;3945000;4211000;4491000;4736000;4929000;4425000;5281000;5524000;5613000;5920000;6299000;6357000;6522000;6335000;6743000;5912000;5974000;6436000;6553000;7251000;7695000;7934000;8101000;8324000;7604000;7863000;8255000;8689000;8939000;8580000;8289000 -117;'410;Republic of Korea;1675;Other paper and paperboard;5610;Import quantity;t;9500;9900;5200;1300;3300;3800;1200;7000;11000;17400;23000;28700;23300;25100;17900;23100;19000;23500;29600;31100;35100;36800;50700;60900;89800;120400;153700;171100;187200;199400;214100;256877;299604;356600;396300;435000;379000;233000;352000;352000;337000;463000;437000;496000;444473;461000;506000;471000;392746;492491;537203;534085;539515;598850;581797;776000;759196;800146;745980;803455;922409.92;824745;813318 -117;'410;Republic of Korea;1675;Other paper and paperboard;5622;Import value;1000 USD;2450;2550;1435;306;880;1280;222;2197;3774;5825;7319;8516;12835;17539;17602;28814;27339;33538;38602;40855;52224;53116;62096;74563;94311;128852;173734;209960;243430;261555;289715;266297;213892;382990;490132;492978;386648;267880;351475;399066;354783;440815;448013;494646;451768;442582;560517;607792;520426;656527;765352;773306;746240;793302;745669;862216;873914;1005040;964068;974836;1086571.36;1102222;1154388 -117;'410;Republic of Korea;1675;Other paper and paperboard;5910;Export quantity;t;;;100;100;300;1000;1000;1000;1000;1000;1000;3300;13000;19000;18000;28900;22800;20200;32100;81700;91800;64800;54000;44700;58500;193800;240200;270700;319900;393600;388800;497900;507400;615100;611300;853000;486000;1114000;1173000;448000;360432;1218000;1090000;947000;850182;802000;687000;384000;474750;501539;378757;450459;626581;671360;811942;853000;971278;1141024;1355450;1406897;1201662.11;1182780;1242988 -117;'410;Republic of Korea;1675;Other paper and paperboard;5922;Export value;1000 USD;;;60;63;106;418;418;418;418;418;418;1220;6684;12011;8146;13307;40682;8512;14768;43388;50334;34682;32839;32282;40058;109448;147907;208751;234028;295377;313527;431360;388775;505522;689463;430940;165831;464016;504781;225275;181836;526777;467744;450735;386894;274276;220659;232558;229685;347218;332039;358300;473355;495455;541778;568609;720200;900320;864538;799360;906139.05;904591;779594 -117;'410;Republic of Korea;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;11000;7000;7000;7000;11000;16000;23000;32000;39000;48000;61000;85000;88000;106000;121000;142000;189000;196000;232000;268000;298000;317000;318000;308000;332000;272000;291000;289000;347000;352000;403000;413000;404000;411000;424000;418000;442000;446000;462000;464000;479000;529000;468000;513000;512000;556000;556000;583000;556000;547000;529000 -117;'410;Republic of Korea;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;200;400;2000;1000;2000;3000;1000;1000;2000;3000;2000;2000;5000;4000;6389;8037;12840;16088;28110;31930;35585;46000;64053;62018;86204;136700;116557.48;109107;145526 -117;'410;Republic of Korea;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;153;415;860;5726;4350;4646;4096;1669;1616;2323;5436;4483;6900;10202;10826;10841;13257;21688;25220;39465;44852;48370;54333;73262;78702;105515;155221;137444.76;148132;185539 -117;'410;Republic of Korea;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;500;500;500;300;400;2100;900;900;1100;500;1800;3100;1800;2600;1900;3600;3700;6400;3400;3000;3100;5000;4000;12000;4000;2000;2000;2000;7000;3000;1000;1000;2000;2744;7470;5633;4326;6937;7846;8959;13000;12835;13569;18191;14724;12405.99;9177;5332 -117;'410;Republic of Korea;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;697;688;688;384;795;2669;1314;1547;1526;827;2376;4144;2233;3392;2475;4330;4305;6837;4634;4853;5454;6228;4609;9086;4266;2924;3279;2407;6845;4400;1800;1777;3781;4799;14474;12243;10621;14827;19465;22504;29177;29882;32698;37778;31022;26568.94;19823;9384 -117;'410;Republic of Korea;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3690000;4358000;4583000;4613000;4837000;5166000;5206000;5251000;5286000;5507000;5313000;5370000;5813000;5929000;5886000;6300000;6482000;6662000;6827000;6954000;7181000;7335000;7725000;7936000;7603000;7344000 -117;'410;Republic of Korea;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100000;154000;294000;271000;180000;165000;217000;384000;413000;455000;412000;334069;427294;459431;452857;442719;489344;478542;660000;618808;676010;611230;622931;775561.55;681971;633494 -117;'410;Republic of Korea;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55880;78997;307963;271352;99891;98690;125845;356996;393900;485317;519426;440386;568591;657360;658720;611098;650155;609746;715459;695051;829880;775411;732208;876196.49;876199;888943 -117;'410;Republic of Korea;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1056000;1096000;408000;297432;818000;966000;858000;747000;726000;664000;368000;453439;472182;356506;438768;611661;657308;796509;832000;949355;1111069;1328482;1381840;1180287.34;1164813;1227967 -117;'410;Republic of Korea;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;394854;412274;170383;120466;268749;323503;304789;288459;191876;205455;215356;207768;300954;291760;326710;436999;455176;500993;517211;663857;835949;799570;737583;847397.66;856606;743713 -117;'410;Republic of Korea;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;;;;;;;226000;303000;342000;323000;682000;806000;960000;973000;1037000;996000;1129000;1262000;1295000;1549000;1780000;2125000;2279000;2503000;2725000;3063000;3128000;3330000;3566000;3802000;3729000;;;;;;;;;;;;;;;;;;;;;;;;;; -117;'410;Republic of Korea;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;;;;;;16900;17200;9300;5800;2800;14300;11800;14900;15400;13400;18900;22600;26700;37700;51300;56100;66200;70700;76400;93100;133900;178300;196300;228200;284000;;;;;;;;;;;;;;;;;;;;;;;;;; -117;'410;Republic of Korea;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;3834;6140;3560;2033;1402;12759;5697;8696;11405;10062;11565;13482;14725;21485;31766;30686;37078;41160;44949;52665;70265;91091;138451;138902;209524;;;;;;;;;;;;;;;;;;;;;;;;;; -117;'410;Republic of Korea;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;;;;;;7700;10900;8700;15200;16200;19000;29200;78000;86800;61400;50700;36100;55700;188900;233600;253700;307000;382300;369800;467600;472400;555200;548100;791200;466000;;;;;;;;;;;;;;;;;;;;;;;;;; -117;'410;Republic of Korea;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;3462;7046;2455;4399;4894;5819;11186;33350;36436;23921;19927;15774;25237;84762;101155;130627;154367;194035;197622;248000;224929;274321;339742;365183;128786;;;;;;;;;;;;;;;;;;;;;;;;;; -117;'410;Republic of Korea;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2198000;2574000;2775000;2874000;3101000;3434000;3525000;3585000;3648000;3811000;3686000;3694000;4084000;4157000;4037000;4381000;4544000;4677000;4853000;4932000;5039000;5309000;5783000;5983000;5646000;5455000 -117;'410;Republic of Korea;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81000;130000;123000;106000;143000;126000;172000;161000;163000;162000;123000;78913;119216;121795;119687;111436;121541;128187;227000;159726;194856;144268;140546;288508.02;167245;148261 -117;'410;Republic of Korea;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39903;60589;74506;58886;69541;62131;83629;86421;93300;106744;98171;64613;101926;112813;107528;97570;99084;103824;149472;128996;170250;136340;122856;208246.13;148617;126876 -117;'410;Republic of Korea;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;324000;312000;371000;240000;471000;562000;491000;314000;317000;269000;250000;300782;281266;170443;175176;257422;220764;246771;308000;376886;335587;556414;703763;516320.34;462438;517816 -117;'410;Republic of Korea;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70347;75728;124204;56462;112727;138297;138423;82353;84500;83117;99536;84594;113028;81204;72535;102869;86440;86279;103874;159279;161238;212305;264963;273926.66;242245;230126 -117;'410;Republic of Korea;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1047000;1258000;1262000;1234000;1222000;1201000;1187000;1195000;1176000;1232000;1202000;1251000;1294000;1348000;1418000;1493000;1469000;1524000;1541000;1592000;1663000;1626000;1469000;1443000;1477000;1418000 -117;'410;Republic of Korea;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;9000;122000;124000;19000;20000;23000;131000;148000;151000;163000;156562;186802;208401;199598;199802;226186;196612;275000;285213;279299;290135;286087;282087.61;292351;271737 -117;'410;Republic of Korea;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4665;6182;166428;159890;17037;22657;26222;167557;189200;225179;259911;249979;295817;337518;323919;319167;349166;311184;381340;365118;420392;424896;400185;430710.5;466923;455846 -117;'410;Republic of Korea;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;676000;774000;17000;24000;330000;386000;325000;325000;290000;270000;23000;48114;88362;100054;191190;258938;370682;493232;473000;506222;666516;691277;555600;544506;597397;604567 -117;'410;Republic of Korea;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;258683;330475;21283;25235;150071;178123;153100;153100;54014;59952;57263;71498;119480;139685;193390;252913;312877;357205;358161;427981;573113;506557;389628;475419;528519;429590 -117;'410;Republic of Korea;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;209000;238000;227000;218000;236000;217000;205000;196000;180000;176000;147000;151000;136000;111000;117000;125000;195000;186000;187000;176000;198000;163000;227000;247000;229000;220000 -117;'410;Republic of Korea;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;3000;48000;40000;10000;12000;17000;80000;88000;132000;120000;95117;116626;121865;125919;121381;130829;139114;143000;156330;185373;160241;156071;162507.34;147925;155483 -117;'410;Republic of Korea;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2481;1857;64730;51533;5717;7349;10612;89522;96600;141457;146605;112821;155041;179138;202528;163489;168230;163600;158957;173491;220517;198494;173702;193452.37;208473;240971 -117;'410;Republic of Korea;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;5000;19000;31000;5000;7000;6000;78000;89000;114000;85000;87755;99235;84671;71350;94073;59421;51582;45000;54087;90563;63856;97308;108785;96907;96057 -117;'410;Republic of Korea;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1271;2489;23677;37282;2106;3148;2602;42844;43200;57929;53304;45746;66109;69726;59825;79972;51087;49175;48050;71471;89382;72501;74165;92934;81815;79565 -117;'410;Republic of Korea;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;236000;288000;319000;287000;278000;314000;289000;275000;282000;288000;278000;274000;299000;313000;314000;301000;274000;275000;246000;254000;281000;237000;246000;263000;251000;251000 -117;'410;Republic of Korea;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12000;12000;1000;1000;8000;7000;5000;12000;14000;10000;6000;3477;4650;7370;7653;10100;10788;14629;15000;17539;16482;16586;40227;42458.59;74450;58013 -117;'410;Republic of Korea;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8831;10369;2299;1043;7596;6553;5382;13496;14800;11937;14739;12973;15807;27891;24745;30872;33675;31138;25690;27446;18721;15681;35465;43787.5;52186;65250 -117;'410;Republic of Korea;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54000;5000;1000;2432;12000;11000;36000;30000;30000;11000;10000;16788;3319;1338;1052;1228;6441;4924;6000;12160;18403;16935;25169;10676;8071;9527 -117;'410;Republic of Korea;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64553;3582;1219;1487;3845;3935;10664;10162;10162;4457;5253;5930;2337;1145;960;1245;4772;8334;7126;5126;12216;8207;8827;5118;4027;4432 -117;'410;Republic of Korea;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;11000;16000;26000;45000;46000;113000;119000;133000;134000;116000;144000;165000;208000;231000;271000;279000;340000;384000;483000;520000;519000;564000;607000;626000;868000;463000;632000;652000;653000;731000;730000;738000;867000;638000;812000;181000;162000;177000;162000;901000;916000;923000;971000;984000;138000;126000;364000;381000;447000;430000;416000 -117;'410;Republic of Korea;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;6400;7900;8600;17300;16200;9200;17800;16200;19700;23400;31800;38300;63100;82700;102400;115000;121000;128700;137700;163777;165704;178200;199800;206400;93000;132000;196000;55000;65000;282000;270000;276000;58473;46000;46000;55000;52288;57160;64932;65140;68686;77576;67670;70000;76335;62118;48546;43824;30290.89;33667;34298 -117;'410;Republic of Korea;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;9001;11399;14042;26781;25937;20779;32905;32159;40819;43054;50531;61081;79586;107367;141968;179274;206352;220395;244766;213632;143627;291746;351266;353216;171398;207650;267832;87007;81762;339308;347000;363365;90289;41782;64998;77540;69199;74679;86304;89366;95677;98295;87553;92424;105601;96458;83142;87407;72930.11;77891;79906 -117;'410;Republic of Korea;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;5300;8100;9300;13200;6100;700;2600;3300;2900;2500;2400;7500;2300;3100;3500;15200;10300;9400;15400;26600;28600;56500;60200;58700;15000;54000;65000;36000;61000;398000;122000;82000;100182;75000;22000;14000;18567;21887;16618;7365;7983;6206;6474;8000;9088;16386;8777;10333;8968.78;8790;9689 -117;'410;Republic of Korea;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;3222;4965;5691;8211;35100;2005;3198;9243;11229;9447;11365;14982;13994;22310;42608;75891;76269;98867;111575;179055;157009;226567;344868;60303;30817;64553;83421;50626;58446;254749;141834;139101;94035;80600;13427;13421;17118;31790;28036;20969;21529;20814;18281;22221;26461;31673;27190;30755;32172.46;28162;26497 -117;'410;Republic of Korea;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1523082;1604866;1638385;1744257;1904233;1708699;1495523 -117;'410;Republic of Korea;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118138;125222;128101;128871;113745;89701;68890 -117;'410;Republic of Korea;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;181700;187669;167057;158216;164432;132961;92378 -117;'410;Republic of Korea;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;249;492;170;68;509;485;336 -117;'410;Republic of Korea;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45190;43980;33178;36361;47955;33475;10355 -117;'410;Republic of Korea;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;142;87;8;18;10;22;186 -117;'410;Republic of Korea;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;136510;143689;133879;121855;116477;99486;82023 -117;'410;Republic of Korea;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107;405;162;50;499;463;150 -117;'410;Republic of Korea;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33402;39976;45313;53814;70841;64476;65479 -117;'410;Republic of Korea;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18785;22154;21033;23395;23293;20530;6106 -117;'410;Republic of Korea;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83906;86706;80272;84337;100833;104645;88829 -117;'410;Republic of Korea;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4660;3299;4111;3553;4852;4248;4391 -117;'410;Republic of Korea;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54650;50819;61640;60087;67254;90592;103535 -117;'410;Republic of Korea;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6160;5896;6805;6482;3371;2918;1509 -117;'410;Republic of Korea;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5071;2136 -117;'410;Republic of Korea;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5666;1708 -117;'410;Republic of Korea;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2091 -117;'410;Republic of Korea;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;619 -117;'410;Republic of Korea;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;580;138 -117;'410;Republic of Korea;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;805;151 -117;'410;Republic of Korea;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0 -117;'410;Republic of Korea;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;0 -117;'410;Republic of Korea;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;1 -117;'410;Republic of Korea;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;3 -117;'410;Republic of Korea;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2 -117;'410;Republic of Korea;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;5 -117;'410;Republic of Korea;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1093688;1160688;1201797;1305335;1408283;1184400;1000914 -117;'410;Republic of Korea;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83663;86901;90785;84727;67844;50357;47792 -117;'410;Republic of Korea;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5656;4789;4365;2434;3924;3511;4307 -117;'410;Republic of Korea;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140;263;109;296;1187;953;128 -117;'410;Republic of Korea;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70080;74219;77941;80034;88666;128114;140081 -117;'410;Republic of Korea;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4481;6217;5088;10350;12689;10210;8628 -117;'410;Republic of Korea;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;554661;596304;638273;640843;810255;824309;769868 -117;'410;Republic of Korea;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;649902;709350;708030;642385;667478;735442;741998 -117;'410;Republic of Korea;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3190;3264;3442;3328;5439;6945;7812 -117;'410;Republic of Korea;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7854;12224;13898;10702;7860;6090;3282 -117;'410;Republic of Korea;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112808;122387;129202;113923;142406;123690;119622 -117;'410;Republic of Korea;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90503;126381;149785;138281;147240;228334;273137 -117;'410;Republic of Korea;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59507;74320;87630;91612;105535;126591;105482 -117;'410;Republic of Korea;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70837;77526;80936;76211;66671;72273;66831 -117;'410;Republic of Korea;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;178540;189004;202464;199728;268478;288347;290744 -117;'410;Republic of Korea;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;174359;195546;185524;178547;186615;178603;180323 -117;'410;Republic of Korea;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200616;207329;215535;232252;288397;278736;246208 -117;'410;Republic of Korea;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;306349;297673;277887;238644;259092;250142;218425 -146;'498;Republic of Moldova;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;197896.86;227171;231817;231177;237371;231430;234828 -146;'498;Republic of Moldova;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51289.78;62248;58083;60906;68406;66077;70160 -146;'498;Republic of Moldova;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4460;10805;20254;19628;18929;19171;28745;28745;26721;29634;32535;34643;28067;32706;52873;67205;70983;69781;76407;111220;103816;107572;116562;104449;93952;110535.96;121261;126523;125550;125550;125550;125550 -146;'498;Republic of Moldova;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;693;700;3864;3489;3439;3404;4308;4089;2229;3382;5078;10222;2716;6097;24186;35888;22912;16228;16317;10275;10581;8169;6994;6994;6624;5822.19;6566;5887;5497;5497;5497;5497 -146;'498;Republic of Moldova;1861;Roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;202800;198400;245600;397300;360300;385400;330900;327000;321300;307800;344700;375200;355300;341200;379100;351800;351800;351800;351800;351800;521300;1336900;1398210;1330580;1342650;1266645;1266645;1261645;1263645;471000;567000;567000 -146;'498;Republic of Moldova;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26200;28300;28300;28300;30500;30500;30500;30500;30500;30500;30500;30500;45459;41364;41364;41364;41364;47319;50120;36804;29652;29652;16452;394;364;218;82;82;82;82 -146;'498;Republic of Moldova;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;837;1112;1112;1112;1351;1351;1351;1351;1351;1351;1351;1351;3235;3122;3122;3122;3122;3442;3818;2759;2300;2300;1343;35.93;35;26;7;7;7;7 -146;'498;Republic of Moldova;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;200;200;200;800;900;300;300;300;300;300;300;370;2548;2548;2548;2548;134;150;56;56;56;2997;0;22;0;813;813;813;813 -146;'498;Republic of Moldova;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;5;5;5;143;41;9;9;9;9;9;9;88;605;605;605;605;37;85;23;23;23;677;0;2;0;80;80;80;80 -146;'498;Republic of Moldova;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1300;2500;2500;2500;2500;2500;0;2100;6000;5000;5000;4000;4000;3000;3000;3000;7000;7000 -146;'498;Republic of Moldova;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;316;316;0;4;4;4;4 -146;'498;Republic of Moldova;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27.84;28;0;0;0;0;0 -146;'498;Republic of Moldova;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;41;41;41;41 -146;'498;Republic of Moldova;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;4;4;4;4 -146;'498;Republic of Moldova;1863;Roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;202800;198400;245600;397300;360300;385400;330900;327000;321300;307800;344700;375200;355300;341200;377800;349300;349300;349300;349300;349300;521300;1334800;1392210;1325580;1337650;1262645;1262645;1258645;1260645;468000;560000;560000 -146;'498;Republic of Moldova;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;48;218;78;78;78;78 -146;'498;Republic of Moldova;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.09;7;26;7;7;7;7 -146;'498;Republic of Moldova;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;22;0;772;772;772;772 -146;'498;Republic of Moldova;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2;0;76;76;76;76 -146;'498;Republic of Moldova;1864;Wood fuel;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;153800;148200;185500;315100;288500;302800;263500;252500;240500;236800;252200;281200;268700;257400;334100;308800;308800;308800;308800;308800;488700;1307000;1351210;1278580;1290650;1220645;1220645;1218645;1218645;434000;506000;506000 -146;'498;Republic of Moldova;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2200;2200;2200;2200;2200;2200;2200;2200;2059;2364;2364;2364;2364;1871;140;552;552;552;0;30;0;0;0;0;0;0 -146;'498;Republic of Moldova;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;35;35;35;35;35;35;35;91;104;104;104;104;88;11;19;19;19;0;1;0;0;0;0;0;0 -146;'498;Republic of Moldova;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;22;0;813;813;813;813 -146;'498;Republic of Moldova;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;2;0;80;80;80;80 -146;'498;Republic of Moldova;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1300;2500;2500;2500;2500;2500;0;0;5000;4000;4000;4000;4000;2000;2000;2000;6000;6000 -146;'498;Republic of Moldova;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -146;'498;Republic of Moldova;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -146;'498;Republic of Moldova;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;41;41;41;41 -146;'498;Republic of Moldova;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;4;4;4;4 -146;'498;Republic of Moldova;1628;Wood fuel, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;153800;148200;185500;315100;288500;302800;263500;252500;240500;236800;252200;281200;268700;257400;332800;306300;306300;306300;306300;306300;488700;1307000;1346210;1274580;1286650;1216645;1216645;1216645;1216645;432000;500000;500000 -146;'498;Republic of Moldova;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;0;0;0;0;0;0 -146;'498;Republic of Moldova;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;0;0 -146;'498;Republic of Moldova;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;22;0;772;772;772;772 -146;'498;Republic of Moldova;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2;0;76;76;76;76 -146;'498;Republic of Moldova;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2200;2200;2200;2200;2200;2200;2200;2200;2059;2364;2364;2364;2364;1871;140;552;552;552;0;;;;;;; -146;'498;Republic of Moldova;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;35;35;35;35;35;35;35;91;104;104;104;104;88;11;19;19;19;0;;;;;;; -146;'498;Republic of Moldova;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;;;;;;; -146;'498;Republic of Moldova;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;;;;;;; -146;'498;Republic of Moldova;1865;Industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49000;50200;60100;82200;71800;82600;67400;74500;80800;71000;92500;94000;86600;83800;45000;43000;43000;43000;43000;43000;32600;29900;47000;52000;52000;46000;46000;43000;45000;37000;61000;61000 -146;'498;Republic of Moldova;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26200;28300;28300;28300;28300;28300;28300;28300;28300;28300;28300;28300;43400;39000;39000;39000;39000;45448;49980;36252;29100;29100;16452;364;364;218;82;82;82;82 -146;'498;Republic of Moldova;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;837;1112;1112;1112;1316;1316;1316;1316;1316;1316;1316;1316;3144;3018;3018;3018;3018;3354;3807;2740;2281;2281;1343;34.93;35;26;7;7;7;7 -146;'498;Republic of Moldova;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;200;200;200;800;900;300;300;300;300;300;300;370;2548;2548;2548;2548;134;150;56;56;56;2997;0;0;0;0;0;0;0 -146;'498;Republic of Moldova;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;5;5;5;143;41;9;9;9;9;9;9;88;605;605;605;605;37;85;23;23;23;677;0;0;0;0;0;0;0 -146;'498;Republic of Moldova;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;2100;1000;1000;1000;0;0;1000;1000;1000;1000;1000 -146;'498;Republic of Moldova;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17500;19700;19700;19700;19700;19700;19700;19700;19700;19700;19700;19700;36200;35400;35400;35400;35400;31916;33300;21178;21200;21200;16452;316;316;0;4;4;4;4 -146;'498;Republic of Moldova;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;628;921;921;921;921;921;921;921;921;921;921;921;2646;2752;2752;2752;2752;2627;2823;1837;1827;1827;1343;27.84;28;0;0;0;0;0 -146;'498;Republic of Moldova;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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 -146;'498;Republic of Moldova;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;0;0;0;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 -146;'498;Republic of Moldova;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17500;19700;19700;19700;19700;19700;19700;19700;19700;19700;19700;19700;36200;35400;35400;35400;35400;31916;33300;21178;21200;21200;16452;316;316;0;4;4;4;4 -146;'498;Republic of Moldova;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;628;921;921;921;921;921;921;921;921;921;921;921;2646;2752;2752;2752;2752;2627;2823;1837;1827;1827;1343;27.84;28;0;0;0;0;0 -146;'498;Republic of Moldova;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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 -146;'498;Republic of Moldova;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;0;0;0;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 -146;'498;Republic of Moldova;1867;Industrial roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49000;50200;60100;82200;71800;82600;67400;74500;80800;71000;92500;94000;86600;83800;45000;43000;43000;43000;43000;43000;32600;27800;46000;51000;51000;46000;46000;42000;44000;36000;60000;60000 -146;'498;Republic of Moldova;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8700;8600;8600;8600;8600;8600;8600;8600;8600;8600;8600;8600;7200;3600;3600;3600;3600;13532;16680;15074;7900;7900;0;48;48;218;78;78;78;78 -146;'498;Republic of Moldova;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;209;191;191;191;395;395;395;395;395;395;395;395;498;266;266;266;266;727;984;903;454;454;0;7.08;7;26;7;7;7;7 -146;'498;Republic of Moldova;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;200;200;200;800;900;300;300;300;300;300;300;370;2548;2548;2548;2548;134;150;56;56;56;2997;0;0;0;0;0;0;0 -146;'498;Republic of Moldova;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;5;5;5;141;41;9;9;9;9;9;9;88;605;605;605;605;37;85;23;23;23;677;0;0;0;0;0;0;0 -146;'498;Republic of Moldova;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 -146;'498;Republic of Moldova;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 -146;'498;Republic of Moldova;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 -146;'498;Republic of Moldova;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 -146;'498;Republic of Moldova;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8700;8600;8600;8600;8600;8600;8600;8600;8600;8600;8600;8600;7200;3600;3600;3600;3600;13532;16680;15074;7900;7900;0;48;48;218;78;78;78;78 -146;'498;Republic of Moldova;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;209;191;191;191;395;395;395;395;395;395;395;395;498;266;266;266;266;727;984;903;454;454;0;7.08;7;26;7;7;7;7 -146;'498;Republic of Moldova;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;200;200;200;800;900;300;300;300;300;300;300;370;2548;2548;2548;2548;134;150;56;56;56;2997;0;0;0;0;0;0;0 -146;'498;Republic of Moldova;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;5;5;5;141;41;9;9;9;9;9;9;88;605;605;605;605;37;85;23;23;23;677;0;0;0;0;0;0;0 -146;'498;Republic of Moldova;1868;Sawlogs and veneer logs;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24500;25200;26300;34100;30100;35700;29800;33200;33700;31800;43100;40200;37100;34300;27100;26000;26000;26000;26000;26000;32600;21300;24000;27000;37000;35000;35000;33000;31000;25000;40000;40000 -146;'498;Republic of Moldova;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;300;1000;1000;1000;0;0;1000;1000;1000;1000;1000 -146;'498;Republic of Moldova;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24500;25200;26300;34100;30100;35700;29800;33200;33700;31800;43100;40200;37100;34300;27100;26000;26000;26000;26000;26000;32600;21000;23000;26000;36000;35000;35000;32000;30000;24000;39000;39000 -146;'498;Republic of Moldova;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 -146;'498;Republic of Moldova;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 -146;'498;Republic of Moldova;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 -146;'498;Republic of Moldova;1871;Other industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24500;25000;33800;48100;41700;46900;37600;41300;47100;39200;49400;53800;49500;49500;17900;17000;17000;17000;17000;17000;0;8600;23000;25000;15000;11000;11000;10000;14000;12000;21000;21000 -146;'498;Republic of Moldova;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;1800;0;0;0;0;0;0;0;0;0;0 -146;'498;Republic of Moldova;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24500;25000;33800;48100;41700;46900;37600;41300;47100;39200;49400;53800;49500;49500;17900;17000;17000;17000;17000;17000;0;6800;23000;25000;15000;11000;11000;10000;14000;12000;21000;21000 -146;'498;Republic of Moldova;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87000;60;80;46;53;72;90;86;141;76;76;76;76;76;0;0;1000;130;1000;508;432;542;522;548;548;548 -146;'498;Republic of Moldova;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;11;11;11;11;105;154;154;154;154;188;290;456;456;456;616;807;1082;1420;968;968;968;968 -146;'498;Republic of Moldova;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4;4;37;54;55;54;54;163;0;304;304;304;265;428.38;638;891;656;656;656;656 -146;'498;Republic of Moldova;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;600;162;162;162;162;21;10;0;0;0;15;17;22;136;42;42;42;42 -146;'498;Republic of Moldova;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;56;56;56;56;11;3;0;0;0;5;8.86;11;73;39;39;39;39 -146;'498;Republic of Moldova;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25300;25500;24700;24700;24700;24700;24700;24700;6800;6300;6300;6300;6300;6300;6300;1877;10500;1300;1000;1519;1475;62;100;436;436;436 -146;'498;Republic of Moldova;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;100;100;100;100;100;100;100;1098;1845;1845;1845;1845;417;450;1495;1495;1495;3165;4740;2344;542;865;865;865;865 -146;'498;Republic of Moldova;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;6;46;78;78;78;78;152;160;474;474;474;383;705.78;636;455;413;413;413;413 -146;'498;Republic of Moldova;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;200;200;200;230;145;40;200;103;103;103;1;9;10;3;0;0;0;0 -146;'498;Republic of Moldova;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;14;28;3;29;55;55;55;3;6.13;19;31;5;5;5;5 -146;'498;Republic of Moldova;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;56;0;0;0;519;475;62;100;436;436;436 -146;'498;Republic of Moldova;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;215;230;737;737;737;633;1155;472;542;825;825;825;825 -146;'498;Republic of Moldova;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;76;80;306;306;306;203;413.94;400;455;400;400;400;400 -146;'498;Republic of Moldova;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;2;2;1;0;1;3;0;0;0;0 -146;'498;Republic of Moldova;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;17;17;17;3;0.27;13;31;5;5;5;5 -146;'498;Republic of Moldova;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25300;25500;24700;24700;24700;24700;24700;24700;6800;6300;6300;6300;6300;6300;6300;1821;10500;1300;1000;1000;1000;0;0;0;0;0 -146;'498;Republic of Moldova;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;232;700;100;100;100;100;100;100;100;100;100;100;100;1098;1845;1845;1845;1845;202;220;758;758;758;2532;3585;1872;0;40;40;40;40 -146;'498;Republic of Moldova;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;56;7;7;7;6;6;6;6;6;6;6;6;46;78;78;78;78;76;80;168;168;168;180;291.85;236;0;13;13;13;13 -146;'498;Republic of Moldova;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;200;200;200;230;145;40;200;101;101;101;0;9;9;0;0;0;0;0 -146;'498;Republic of Moldova;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;14;28;2;29;38;38;38;0;5.86;6;0;0;0;0;0 -146;'498;Republic of Moldova;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -146;'498;Republic of Moldova;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;16000;18005;26060;24267;30606;21773;21773;21773 -146;'498;Republic of Moldova;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;0;0;0;3273;4339;4339;5319;3040;3040;3040;3040 -146;'498;Republic of Moldova;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;156;0;0;0;319;505.09;505;841;515;515;515;515 -146;'498;Republic of Moldova;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;0;0;0;88;201;201;0;22;22;22;22 -146;'498;Republic of Moldova;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;0;0;0;10;34.06;34;0;6;6;6;6 -146;'498;Republic of Moldova;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;16000;18005;26060;24267;30606;21773;21773;21773 -146;'498;Republic of Moldova;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;270;0;0;0;1585;1949;1949;1661;1878;1878;1878;1878 -146;'498;Republic of Moldova;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;0;0;0;139;213.25;213;238;344;344;344;344 -146;'498;Republic of Moldova;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;0;0;0;88;195;195;0;22;22;22;22 -146;'498;Republic of Moldova;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;0;0;0;10;28.2;28;0;6;6;6;6 -146;'498;Republic of Moldova;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -146;'498;Republic of Moldova;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;230;0;0;0;1688;2390;2390;3658;1162;1162;1162;1162 -146;'498;Republic of Moldova;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;0;0;0;180;291.85;292;603;171;171;171;171 -146;'498;Republic of Moldova;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;0;0;0;0;6;6;0;0;0;0;0 -146;'498;Republic of Moldova;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;0;0;0;0;5.86;6;0;0;0;0;0 -146;'498;Republic of Moldova;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31000;25000;29200;29600;29900;5800;5400;15000;31000;31000;31000;31000;30940;34480;34480;34480;34480;34480;18234;16280;14920;16000;14000;16578;17640;12724;10659;19330;19330;19330 -146;'498;Republic of Moldova;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45000;50100;66400;59700;57300;47600;109700;109700;109700;109700;109700;109700;109700;109700;134000;143400;143400;143400;143400;137483;117300;126715;141787;138900;158623;204093;204093;216786;223000;223000;223000;223000 -146;'498;Republic of Moldova;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2900;3100;2745;4336;3637;3879;4336;4336;4336;4336;4336;4336;4336;4336;14127;16008;16008;16008;16008;18349;17396;19621;21827;20964;21525;27070.61;27070;32033;33328;33328;33328;33328 -146;'498;Republic of Moldova;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3821;2711;5600;900;600;300;300;0;16;16;16;16;16;16;3900;4000;4000;4000;4000;1678;1980;1378;2081;2081;2136;117;117;270;432;432;432;432 -146;'498;Republic of Moldova;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;403;321;1066;152;102;67;117;0;2;2;2;2;2;2;963;1489;1490;1489;1489;628;743;481;999;999;1061;72.22;72;102;149;149;149;149 -146;'498;Republic of Moldova;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31000;25000;25000;25000;25000;0;0;0;0;0;0;0;14300;16100;16100;16100;16100;16100;10761;8117;6496;6000;5000;7051;5527;3826;2139;7575;7575;7575 -146;'498;Republic of Moldova;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40000;40100;45100;57000;57000;46000;57000;57000;57000;57000;57000;57000;57000;57000;128200;140400;140400;140400;140400;133260;112450;121439;136887;134000;149762;197871;197871;212274;219418;219418;219418;219418 -146;'498;Republic of Moldova;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2800;2900;2318;3560;3560;3685;3560;3560;3560;3560;3560;3560;3560;3560;12993;15252;15252;15252;15252;17328;16351;18395;20768;19905;20229;25987.19;25987;31128;32324;32324;32324;32324 -146;'498;Republic of Moldova;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3222;2500;200;300;300;0;300;0;0;0;0;0;0;0;500;600;600;600;600;54;290;42;8;8;32;9;9;239;432;432;432;432 -146;'498;Republic of Moldova;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;286;250;16;35;35;0;115;0;0;0;0;0;0;0;381;478;479;478;478;25;105;24;5;5;10;0.95;1;83;149;149;149;149 -146;'498;Republic of Moldova;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4200;4600;4900;5800;5400;15000;31000;31000;31000;31000;16640;18380;18380;18380;18380;18380;7473;8163;8424;10000;9000;9527;12113;8898;8520;11755;11755;11755 -146;'498;Republic of Moldova;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;10000;21300;2700;300;1600;52700;52700;52700;52700;52700;52700;52700;52700;5800;3000;3000;3000;3000;4223;4850;5276;4900;4900;8861;6222;6222;4512;3582;3582;3582;3582 -146;'498;Republic of Moldova;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;200;427;776;77;194;776;776;776;776;776;776;776;776;1134;756;756;756;756;1021;1045;1226;1059;1059;1296;1083.42;1083;905;1004;1004;1004;1004 -146;'498;Republic of Moldova;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;599;211;5400;600;300;300;0;0;16;16;16;16;16;16;3400;3400;3400;3400;3400;1624;1690;1336;2073;2073;2104;108;108;31;0;0;0;0 -146;'498;Republic of Moldova;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117;71;1050;117;67;67;2;0;2;2;2;2;2;2;582;1011;1011;1011;1011;603;638;457;994;994;1051;71.27;71;19;0;0;0;0 -146;'498;Republic of Moldova;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 -146;'498;Republic of Moldova;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;1500;8400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;0;0;0;0;0;7691;5690;5726;5726;5726;15211;19153;18931;17646;14634;14634;14634;14634 -146;'498;Republic of Moldova;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;1890;10735;1789;1789;1789;160;160;160;160;160;160;160;160;0;0;0;0;0;1203;853;1156;1156;1156;1854;3228.18;3621;3037;2868;2868;2868;2868 -146;'498;Republic of Moldova;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;100;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;47;10;1;1;1;7;139;107;21;44;44;44;44 -146;'498;Republic of Moldova;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;47;0;0;0;5;5;5;5;5;5;5;5;0;0;0;0;0;71;8;3;3;3;8;260.4;266;15;39;39;39;39 -146;'498;Republic of Moldova;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47000;14000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;0;0;0;0;0;0;55;270;240;0;1000;280;466;56;3422;4803;4803;4803 -146;'498;Republic of Moldova;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;4900;2200;18300;18300;18300;23231;23231;23231;23231;23231;23231;23231;23231;73;100;100;100;100;116771;125590;128080;153667;145548;125343;152146;154866;170464;171846;171846;171846;171846 -146;'498;Republic of Moldova;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;2700;109;773;773;773;2180;2180;2180;2180;2180;2180;2180;2180;22;31;31;31;31;43472;45310;47189;51976;40726;39377;46556.23;52493;53813;54643;54643;54643;54643 -146;'498;Republic of Moldova;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;400;200;300;300;300;321;321;321;321;321;321;321;321;1900;280;280;280;280;7278;13940;5335;3163;3163;1630;1838;2166;2232;2866;2866;2866;2866 -146;'498;Republic of Moldova;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;90;49;81;81;81;50;50;50;50;50;50;50;50;1144;47;48;47;47;3134;4743;2123;1080;1080;863;988.93;1226;1232;1702;1702;1702;1702 -146;'498;Republic of Moldova;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;111;95;54;3422;4803;4803;4803 -146;'498;Republic of Moldova;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;4900;2200;600;600;600;600;600;600;600;600;600;600;600;5;5;5;5;5;4288;5010;5451;7200;7200;5551;7451;9117;8199;7731;7731;7731;7731 -146;'498;Republic of Moldova;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;2700;109;184;184;184;184;184;184;184;184;184;184;184;2;3;3;3;3;3565;4032;3499;4325;4325;2801;3908.4;4663;4231;3887;3887;3887;3887 -146;'498;Republic of Moldova;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;400;200;100;100;100;100;100;100;100;100;100;100;100;100;0;0;0;0;1282;1620;59;59;59;1482;1403;1569;2053;2769;2769;2769;2769 -146;'498;Republic of Moldova;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;90;49;27;27;27;27;27;27;27;27;27;27;27;58;0;0;0;0;856;1039;42;42;42;789;773.2;988;1161;1633;1633;1633;1633 -146;'498;Republic of Moldova;1607;Laminated Veneer Lumber (LVL);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -146;'498;Republic of Moldova;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;77 -146;'498;Republic of Moldova;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;49 -146;'498;Republic of Moldova;1646;Particle board and OSB (1961-1994);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47000;14000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -146;'498;Republic of Moldova;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;0;0;0;0;0;0;55;270;240;0;1000;169;371;2;0;0;0;0 -146;'498;Republic of Moldova;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21300;21300;21300;21300;21300;21300;21300;21300;0;0;0;0;0;55633;56000;63181;66400;65260;47322;78724;84257;92746;93099;93099;93099;93099 -146;'498;Republic of Moldova;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1640;1640;1640;1640;1640;1640;1640;1640;0;0;0;0;0;17176;17160;19488;20358;15844;15727;18681.22;21715;22564;22471;22471;22471;22471 -146;'498;Republic of Moldova;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;200;200;200;200;200;200;0;80;80;80;80;15;940;31;30;30;18;16;272;66;27;27;27;27 -146;'498;Republic of Moldova;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;7;7;0;43;43;43;43;12;6;10;9;9;6;11.28;64;25;19;19;19;19 -146;'498;Republic of Moldova;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 -146;'498;Republic of Moldova;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;73;73;73;73;19798;28830;23436;26900;25600;30678;33218;27149;33901;33567;33567;33567;33567 -146;'498;Republic of Moldova;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;18;18;18;18;7061;8828;8564;8602;5331;5725;7417.93;7765;8800;8345;8345;8345;8345 -146;'498;Republic of Moldova;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;5745;11290;5035;2864;2864;56;13;24;24;24;24;24;24 -146;'498;Republic of Moldova;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;2100;3637;1969;927;927;12;2.01;4;4;4;4;4;4 -146;'498;Republic of Moldova;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 -146;'498;Republic of Moldova;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17700;17700;17700;1331;1331;1331;1331;1331;1331;1331;1331;18;22;22;22;22;37052;35750;36012;53167;47488;41792;32753;34343;35618;37449;37449;37449;37449 -146;'498;Republic of Moldova;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;589;589;589;356;356;356;356;356;356;356;356;8;10;10;10;10;15670;15290;15638;18691;15226;15124;16548.69;18350;18218;19940;19940;19940;19940 -146;'498;Republic of Moldova;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;200;21;21;21;21;21;21;21;21;1800;200;200;200;200;236;90;210;210;210;74;406;301;89;46;46;46;46 -146;'498;Republic of Moldova;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;54;54;16;16;16;16;16;16;16;16;1086;4;5;4;4;166;61;102;102;102;56;202.45;170;42;46;46;46;46 -146;'498;Republic of Moldova;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 -146;'498;Republic of Moldova;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9600;9600;9600;482;482;482;482;482;482;482;482;11;12;12;12;12;10125;10050;8965;6519;8300;9976;10313;11926;12973;15531;15531;15531;15531 -146;'498;Republic of Moldova;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;314;314;314;195;195;195;195;195;195;195;195;6;7;7;7;7;6848;6575;6181;6153;6553;6220;6579.98;7747;7720;9294;9294;9294;9294 -146;'498;Republic of Moldova;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;12;12;12;12;12;1800;0;0;0;0;236;90;98;98;98;1;19;21;19;21;21;21;21 -146;'498;Republic of Moldova;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;12;12;12;12;12;1086;0;0;0;0;166;58;68;68;68;5;12.71;13;13;18;18;18;18 -146;'498;Republic of Moldova;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 -146;'498;Republic of Moldova;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1600;1600;1600;189;189;189;189;189;189;189;189;7;10;10;10;10;25030;24330;26291;44000;38100;29434;21775;22099;22501;21423;21423;21423;21423 -146;'498;Republic of Moldova;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;58;58;89;89;89;89;89;89;89;89;2;3;3;3;3;8376;8347;9221;12261;8413;8457;9759.78;10503;10441;10447;10447;10447;10447 -146;'498;Republic of Moldova;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;7;7;0;200;200;200;200;0;0;35;35;35;60;387;280;46;25;25;25;25 -146;'498;Republic of Moldova;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4;4;0;4;5;4;4;0;3;18;18;18;22;189.73;157;25;28;28;28;28 -146;'498;Republic of Moldova;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 -146;'498;Republic of Moldova;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6500;6500;6500;660;660;660;660;660;660;660;660;0;0;0;0;0;1897;1370;756;2648;1088;2382;665;318;144;495;495;495;495 -146;'498;Republic of Moldova;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;217;217;217;72;72;72;72;72;72;72;72;0;0;0;0;0;446;368;236;277;260;447;208.93;100;57;199;199;199;199 -146;'498;Republic of Moldova;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;200;2;2;2;2;2;2;2;2;0;0;0;0;0;0;0;77;77;77;13;0;0;24;0;0;0;0 -146;'498;Republic of Moldova;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;54;54;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;16;16;16;29;0;0;4;0;0;0;0 -146;'498;Republic of Moldova;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;18000;2800;2800;2800;2800;2800;15000;15000;15000;15000;16000;17000;18000;18000;16000;0;0;0 -146;'498;Republic of Moldova;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;160;160;160;160;160;160;160;160;7600;24900;24900;24900;24900;58;110;132;150;150;2822;2294;2161;1507;1339;1339;1339;1339 -146;'498;Republic of Moldova;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;25;25;25;25;25;25;1090;3706;3706;3706;3706;59;92;133;133;133;515;439.53;451;344;312;312;312;312 -146;'498;Republic of Moldova;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;813;813;813;813;813;813;813;813;25400;400;400;400;400;9743;9720;10977;10028;10028;18398;19444;19904;19368;17344;17344;17344;17344 -146;'498;Republic of Moldova;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;328;328;328;328;328;328;328;328;8400;11937;11937;11937;11937;1815;1523;1704;1720;1720;2635;3012.18;3279;2638;2058;2058;2058;2058 -146;'498;Republic of Moldova;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 -146;'498;Republic of Moldova;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102;102;102;102;102;102;102;102;0;0;0;0;0;20;50;72;72;72;52;27;44;38;36;36;36;36 -146;'498;Republic of Moldova;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;20;20;20;20;20;0;0;0;0;0;49;87;126;126;126;63;46.12;54;62;46;46;46;46 -146;'498;Republic of Moldova;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;642;642;642;642;642;642;642;642;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -146;'498;Republic of Moldova;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;311;311;311;311;311;311;311;311;0;0;0;0;0;0;0;1;1;1;0;0;0;0;0;0;0;0 -146;'498;Republic of Moldova;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 -146;'498;Republic of Moldova;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102;102;102;102;102;102;102;102;0;0;0;0;0;6;30;39;39;39;11;9;11;29;42;42;42;42 -146;'498;Republic of Moldova;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;20;20;20;20;20;0;0;0;0;0;14;41;60;60;60;20;18.03;25;45;42;42;42;42 -146;'498;Republic of Moldova;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;642;642;642;642;642;642;642;642;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -146;'498;Republic of Moldova;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;331;331;331;331;331;331;331;331;0;0;0;0;0;0;0;1;1;1;0;0;0;0;0;0;0;0 -146;'498;Republic of Moldova;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -146;'498;Republic of Moldova;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;7;17;17;17;17 -146;'498;Republic of Moldova;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;7;12;12;12;12 -146;'498;Republic of Moldova;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -146;'498;Republic of Moldova;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -146;'498;Republic of Moldova;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;;;;;;; -146;'498;Republic of Moldova;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;100;100;100;100;100;100;100;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -146;'498;Republic of Moldova;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;19;19;19;19;19;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -146;'498;Republic of Moldova;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;0;;;;;;; -146;'498;Republic of Moldova;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;0;;;;;;; -146;'498;Republic of Moldova;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;;;;;;; -146;'498;Republic of Moldova;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;;;;;;; -146;'498;Republic of Moldova;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;;;;;;; -146;'498;Republic of Moldova;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;;;;;;; -146;'498;Republic of Moldova;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;;;;;;; -146;'498;Republic of Moldova;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 -146;'498;Republic of Moldova;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;0;0;0;0;0;2;30;39;39;39;10;9;9;15;8;8;8;8 -146;'498;Republic of Moldova;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;0;0;0;0;0;5;41;60;60;60;17;18.03;21;31;18;18;18;18 -146;'498;Republic of Moldova;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;642;642;642;642;642;642;642;642;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -146;'498;Republic of Moldova;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;311;311;311;311;311;311;311;311;0;0;0;0;0;0;0;1;1;1;0;0;0;0;0;0;0;0 -146;'498;Republic of Moldova;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 -146;'498;Republic of Moldova;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0 -146;'498;Republic of Moldova;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;2;0;1;0;0;0;0;0 -146;'498;Republic of Moldova;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 -146;'498;Republic of Moldova;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 -146;'498;Republic of Moldova;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 -146;'498;Republic of Moldova;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -146;'498;Republic of Moldova;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;0;0;0;0;0;0;0;0;0;0;1;1.88;1;1;1;1;1;1 -146;'498;Republic of Moldova;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;642;642;642;642;642;642;642;642;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -146;'498;Republic of Moldova;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;311;311;311;311;311;311;311;311;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -146;'498;Republic of Moldova;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -146;'498;Republic of Moldova;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;15;8;8;8;8 -146;'498;Republic of Moldova;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16.15;19;30;17;17;17;17 -146;'498;Republic of Moldova;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -146;'498;Republic of Moldova;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -146;'498;Republic of Moldova;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;;;;;;; -146;'498;Republic of Moldova;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -146;'498;Republic of Moldova;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -146;'498;Republic of Moldova;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -146;'498;Republic of Moldova;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -146;'498;Republic of Moldova;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;;;;;;; -146;'498;Republic of Moldova;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;2;30;39;39;39;8;;;;;;; -146;'498;Republic of Moldova;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;5;41;60;60;60;14;;;;;;; -146;'498;Republic of Moldova;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -146;'498;Republic of Moldova;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;1;1;1;0;;;;;;; -146;'498;Republic of Moldova;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 -146;'498;Republic of Moldova;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;4;0;0;0;0;1;0;2;7;17;17;17;17 -146;'498;Republic of Moldova;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;9;0;0;0;0;3;0;4;7;12;12;12;12 -146;'498;Republic of Moldova;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 -146;'498;Republic of Moldova;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;20;20;20;20;20;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -146;'498;Republic of Moldova;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 -146;'498;Republic of Moldova;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;18;20;33;33;33;42;18;35;16;11;11;11;11 -146;'498;Republic of Moldova;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;44;46;66;66;66;46;28.1;33;24;16;16;16;16 -146;'498;Republic of Moldova;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 -146;'498;Republic of Moldova;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 -146;'498;Republic of Moldova;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;700;900;900;900;900;48;50;183;183;183;155;160;64;134;223;223;223;223 -146;'498;Republic of Moldova;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;392;655;655;655;655;61;46;166;166;166;119;108.86;65;107;175;175;175;175 -146;'498;Republic of Moldova;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 -146;'498;Republic of Moldova;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 -146;'498;Republic of Moldova;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;18000;2800;2800;2800;2800;2800;15000;15000;15000;15000;16000;17000;18000;18000;16000;0;0;0 -146;'498;Republic of Moldova;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;58;58;58;58;58;58;58;7600;24900;24900;24900;24900;38;60;60;78;78;2770;2267;2117;1469;1303;1303;1303;1303 -146;'498;Republic of Moldova;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5;5;1090;3706;3706;3706;3706;10;5;7;7;7;452;393.41;397;282;266;266;266;266 -146;'498;Republic of Moldova;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;171;171;171;171;171;171;171;171;25400;400;400;400;400;9743;9720;10977;10028;10028;18398;19444;19904;19368;17344;17344;17344;17344 -146;'498;Republic of Moldova;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;17;17;17;17;17;17;17;17;8400;11937;11937;11937;11937;1815;1523;1703;1719;1719;2635;3012.18;3279;2638;2058;2058;2058;2058 -146;'498;Republic of Moldova;1876;Paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;84200;97500;97500;97500;97500;97500;4414;6579;8088;9000;7000;7000;6832;7586;8134;8616;8616;8616 -146;'498;Republic of Moldova;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5005;10114;20000;18400;18400;18400;26742;26742;28451;34154;36446;36890;29713;38548;35039;36404;41869;38124;44403;39982;35650;34686;35805;35805;33764;35758;37592;37658;38581;38581;38581;38581 -146;'498;Republic of Moldova;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1506;3106;5772;11611;11611;11611;20683;20683;18659;21572;24473;26581;20005;24644;33924;43551;47328;46127;52753;44310;35985;35770;38226;38226;28249;31457.37;35743;34969;32621;32621;32621;32621 -146;'498;Republic of Moldova;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;993;993;6900;5200;5200;5200;7873;7873;4315;4589;5471;19952;5805;15394;38626;54179;18979;4788;5139;10155;8140;5429;4805;4805;2624;2501;2773;2307;2428;2428;2428;2428 -146;'498;Republic of Moldova;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;286;286;2663;3251;3251;3251;3645;3645;1815;2968;4664;9808;2302;5683;13591;21754;8776;2080;2155;4576;3417;3780;3114;3114;1362;1439.4;1657;1796;1419;1419;1419;1419 -146;'498;Republic of Moldova;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 -146;'498;Republic of Moldova;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;114;5700;8800;8800;8800;8800;8800;8800;8800;8800;8800;8800;8800;6382;5101;5101;5101;5101;16047;13850;13617;11110;11110;13664;13648;13972;14068;12236;12236;12236;12236 -146;'498;Republic of Moldova;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;106;2082;4326;4326;4326;7490;7490;7490;7490;7490;7490;7490;7490;4079;3270;3270;3270;3270;18354;14385;14236;11049;11049;11653;11822.74;13389;12968;10903;10903;10903;10903 -146;'498;Republic of Moldova;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;3800;1600;1600;1600;2600;2600;2600;2600;2600;2600;2600;2600;0;3700;3700;3700;3700;3916;3710;8;8;8;75;0;271;90;21;21;21;21 -146;'498;Republic of Moldova;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1570;1398;1398;1398;1101;1101;1101;1101;1101;1101;1101;1101;0;424;424;424;424;607;451;13;13;13;63;1.22;262;91;30;30;30;30 -146;'498;Republic of Moldova;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 -146;'498;Republic of Moldova;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;4200;4200;4200;4200;4200;4200;4200;4200;4200;4200;4200;4300;4400;4400;4400;4400;2719;2000;2055;2900;2900;2075;1871;1936;1613;1325;1325;1325;1325 -146;'498;Republic of Moldova;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;288;2708;2708;2708;2710;2710;2710;2710;2710;2710;2710;2710;2490;2738;2738;2738;2738;1808;1215;1276;1728;1728;979;892.63;1244;892;622;622;622;622 -146;'498;Republic of Moldova;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;600;500;500;500;1500;1500;1500;1500;1500;1500;1500;1500;0;0;0;0;0;182;0;0;0;0;63;0;0;0;0;0;0;0 -146;'498;Republic of Moldova;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;290;826;826;826;826;826;826;826;826;826;826;826;0;0;0;0;0;139;0;0;0;0;33;0;0;0;0;0;0;0 -146;'498;Republic of Moldova;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 -146;'498;Republic of Moldova;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;114;5100;4600;4600;4600;4600;4600;4600;4600;4600;4600;4600;4600;2082;701;701;701;701;13328;11850;11562;8210;8210;11589;11777;12036;12455;10911;10911;10911;10911 -146;'498;Republic of Moldova;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;106;1794;1618;1618;1618;4780;4780;4780;4780;4780;4780;4780;4780;1589;532;532;532;532;16546;13170;12960;9321;9321;10674;10930.1;12145;12076;10281;10281;10281;10281 -146;'498;Republic of Moldova;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3200;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;0;3700;3700;3700;3700;3734;3710;8;8;8;12;0;271;90;21;21;21;21 -146;'498;Republic of Moldova;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1280;572;572;572;275;275;275;275;275;275;275;275;0;424;424;424;424;468;451;13;13;13;30;1.22;262;91;30;30;30;30 -146;'498;Republic of Moldova;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 -146;'498;Republic of Moldova;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4600;4600;4600;4600;4600;4600;4600;4600;2076;695;695;695;695;68;40;62;36;36;88;188;6;60;61;61;61;61 -146;'498;Republic of Moldova;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4780;4780;4780;4780;4780;4780;4780;4780;1588;532;532;532;532;321;70;88;45;45;72;147.7;180;57;66;66;66;66 -146;'498;Republic of Moldova;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1100;1100;1100;1100;1100;1100;1100;1100;0;3700;3700;3700;3700;3700;3700;0;0;0;0;0;1;2;0;0;0;0 -146;'498;Republic of Moldova;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;275;275;275;275;275;275;275;275;0;424;424;424;424;424;424;0;0;0;1;0.74;4;5;0;0;0;0 -146;'498;Republic of Moldova;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 -146;'498;Republic of Moldova;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;9704;8950;8510;5184;5184;8696;8890;9083;9351;8720;8720;8720;8720 -146;'498;Republic of Moldova;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;11389;9876;9533;5937;5937;7950;8228.49;9061;9092;8182;8182;8182;8182 -146;'498;Republic of Moldova;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;28;0;5;5;5;9;0;260;87;16;16;16;16 -146;'498;Republic of Moldova;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;30;12;6;6;6;24;0.06;241;81;18;18;18;18 -146;'498;Republic of Moldova;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 -146;'498;Republic of Moldova;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;3556;2860;2990;2990;2990;2805;2699;2947;3044;2130;2130;2130;2130 -146;'498;Republic of Moldova;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;4836;3224;3339;3339;3339;2652;2553.92;2904;2927;2033;2033;2033;2033 -146;'498;Republic of Moldova;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;6;10;3;3;3;3;0;10;1;5;5;5;5 -146;'498;Republic of Moldova;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;14;15;7;7;7;5;0.42;17;5;12;12;12;12 -146;'498;Republic of Moldova;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;84200;97500;97500;97500;97500;97500;4414;6579;8088;9000;7000;7000;6832;7586;8134;8616;8616;8616 -146;'498;Republic of Moldova;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;10000;14300;9600;9600;9600;17942;17942;19651;25354;27646;28090;20913;29748;28657;31303;36768;33023;39302;23935;21800;21069;24695;24695;20100;22110;23620;23590;26345;26345;26345;26345 -146;'498;Republic of Moldova;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1500;3000;3690;7285;7285;7285;13193;13193;11169;14082;16983;19091;12515;17154;29845;40281;44058;42857;49483;25956;21600;21534;27177;27177;16596;19634.64;22354;22001;21718;21718;21718;21718 -146;'498;Republic of Moldova;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;993;993;3100;3600;3600;3600;5273;5273;1715;1989;2871;17352;3205;12794;38626;50479;15279;1088;1439;6239;4430;5421;4797;4797;2549;2501;2502;2217;2407;2407;2407;2407 -146;'498;Republic of Moldova;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;286;286;1093;1853;1853;1853;2544;2544;714;1867;3563;8707;1201;4582;13591;21330;8352;1656;1731;3969;2966;3767;3101;3101;1299;1438.19;1395;1705;1389;1389;1389;1389 -146;'498;Republic of Moldova;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;1200;1800;1800;1800;1800;1800;0;0;5656;7000;6000;5200;5000;5450;5462;5652;5652;5652 -146;'498;Republic of Moldova;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;300;300;300;300;300;300;300;300;300;300;300;4900;5600;5600;5600;5600;2008;2360;2167;1850;1850;1450;1390;1511;1535;1957;1957;1957;1957 -146;'498;Republic of Moldova;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;183;142;142;142;142;142;142;142;142;142;142;142;11511;15191;15191;15191;15191;1390;1473;1414;1254;1254;843;879.56;1032;1024;1242;1242;1242;1242 -146;'498;Republic of Moldova;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;400;400;400;400;1686;1780;2109;2109;2109;2427;2213;2403;1890;2187;2187;2187;2187 -146;'498;Republic of Moldova;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;534;1254;1255;1254;1254;927;894;1034;1034;1034;973;897.44;1013;771;873;873;873;873 -146;'498;Republic of Moldova;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;82700;95600;95600;95600;95600;95600;4414;6579;2432;2000;1000;1800;1832;2136;2672;2964;2964;2964 -146;'498;Republic of Moldova;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9300;9300;11009;16712;19004;19448;12271;21106;13957;13203;18668;14923;21202;21065;18760;18362;22305;22305;18158;20240;21636;21519;23951;23951;23951;23951 -146;'498;Republic of Moldova;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7143;7143;5119;8032;10933;13041;6465;11104;7138;7884;11661;10460;17086;21696;17692;18079;23882;23882;14231;17071.95;19530;19012;18757;18757;18757;18757 -146;'498;Republic of Moldova;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3600;3600;42;316;1198;15679;1532;11121;38266;49979;14779;588;939;4465;2530;3202;2578;2578;50;194;41;204;199;199;199;199 -146;'498;Republic of Moldova;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1853;1853;23;1176;2872;8016;510;3891;13015;19987;7008;313;388;2709;1770;2247;1581;1581;81;183.45;113;354;365;365;365;365 -146;'498;Republic of Moldova;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;10000;13700;9300;9300;9300;;;;;;;;;;;;;;;;;;;;;;;;;; -146;'498;Republic of Moldova;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1500;3000;3507;7143;7143;7143;;;;;;;;;;;;;;;;;;;;;;;;;; -146;'498;Republic of Moldova;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;993;993;3100;3600;3600;3600;;;;;;;;;;;;;;;;;;;;;;;;;; -146;'498;Republic of Moldova;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;286;286;1093;1853;1853;1853;;;;;;;;;;;;;;;;;;;;;;;;;; -146;'498;Republic of Moldova;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;34900;31100;31100;31100;31100;31100;0;0;0;0;1000;0;0;0;0;0;0;0 -146;'498;Republic of Moldova;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9300;9300;4431;8023;8714;10379;6293;12334;7839;7734;13958;9554;12249;9095;8370;7679;3400;3400;6471;7216;7637;7477;8227;8227;8227;8227 -146;'498;Republic of Moldova;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7143;7143;1749;2956;3224;3975;2818;5410;3206;3733;7826;4176;6603;6115;5266;4644;3460;3460;3190;3597.76;4209;3778;3638;3638;3638;3638 -146;'498;Republic of Moldova;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3600;3600;0;20;580;13368;998;10739;38102;49484;14655;33;580;2567;1090;1591;907;907;0;0;2;10;0;0;0;0 -146;'498;Republic of Moldova;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1853;1853;0;18;147;3438;305;3716;12920;19702;6916;13;188;904;444;679;863;863;0;1.43;14;14;0;0;0;0 -146;'498;Republic of Moldova;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;47800;64500;64500;64500;64500;64500;4414;6579;2432;2000;0;1800;1832;2136;2672;2964;2964;2964 -146;'498;Republic of Moldova;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1047;1473;1591;2717;1180;2419;1668;1991;1312;2412;3850;4531;3110;3625;1950;1950;3413;4047;4240;4923;4663;4663;4663;4663 -146;'498;Republic of Moldova;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1039;2096;4015;5897;949;2133;1527;1896;916;4152;6337;8502;5894;6874;6472;6472;4869;5908.2;6322;7081;6547;6547;6547;6547 -146;'498;Republic of Moldova;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;274;598;991;0;0;0;1;0;390;294;496;10;14;14;14;17;10;29;148;191;191;191;191 -146;'498;Republic of Moldova;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;1140;2707;4098;0;0;0;2;0;246;154;488;33;54;54;54;54;33.37;83;261;345;345;345;345 -146;'498;Republic of Moldova;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 -146;'498;Republic of Moldova;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5316;6877;8363;5141;4738;6095;4117;3125;3055;2841;4783;6959;6990;6903;16800;16800;7900;8661;9532;8843;10833;10833;10833;10833 -146;'498;Republic of Moldova;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2233;2845;3543;2607;2676;3459;2269;2094;2717;2048;3895;6528;6079;6405;13794;13794;5970;7396.7;8863;7983;8428;8428;8428;8428 -146;'498;Republic of Moldova;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;22;20;1320;534;382;164;494;119;22;46;1261;1430;1597;1657;1657;33;184;10;46;8;8;8;8 -146;'498;Republic of Moldova;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;18;18;480;205;175;95;283;83;20;42;1256;1293;1514;664;664;27;148.64;16;79;20;20;20;20 -146;'498;Republic of Moldova;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 -146;'498;Republic of Moldova;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;215;339;336;1211;60;258;333;353;343;116;320;480;290;155;155;155;374;316;227;276;228;228;228;228 -146;'498;Republic of Moldova;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98;135;151;562;22;102;136;161;202;84;251;551;453;156;156;156;202;169.3;136;170;144;144;144;144 -146;'498;Republic of Moldova;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;5;143;19;141;0;0;0;0;0;0;0;0;0;0;0;0 -146;'498;Republic of Moldova;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;9;34;4;61;0;0;0;0;0;0.01;0;0;0;0;0;0 -146;'498;Republic of Moldova;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;300;100;100;100;100;100;0;0;0;0;0;0;0;0;0;0;0;0 -146;'498;Republic of Moldova;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8342;8342;8342;8342;8342;8342;8342;8342;9800;12500;12500;12500;12500;862;680;540;540;540;492;480;473;536;437;437;437;437 -146;'498;Republic of Moldova;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5908;5908;5908;5908;5908;5908;5908;5908;11196;17206;17206;17206;17206;2870;2435;2041;2041;2041;1522;1683.12;1792;1965;1719;1719;1719;1719 -146;'498;Republic of Moldova;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1673;1673;1673;1673;1673;1673;1673;1673;60;100;100;100;100;88;120;110;110;110;72;94;58;123;21;21;21;21 -146;'498;Republic of Moldova;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;691;691;691;691;691;691;691;691;42;89;89;89;89;333;302;486;486;486;245;357.3;269;580;151;151;151;151 -146;'498;Republic of Moldova;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44239.19;54916;54300;54633;60827;54886;58284 -146;'498;Republic of Moldova;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37945.95;46650;43164;46377;53877;51548;55631 -146;'498;Republic of Moldova;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3772.87;3913;3913;3913;3913;3913;3913 -146;'498;Republic of Moldova;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;432.01;642;642;642;642;642;642 -146;'498;Republic of Moldova;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3088.84;3611;3611;3611;3611;3611;3611 -146;'498;Republic of Moldova;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48.17;9;9;9;9;9;9 -146;'498;Republic of Moldova;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;684.03;302;302;302;302;302;302 -146;'498;Republic of Moldova;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;383.84;633;633;633;633;633;633 -146;'498;Republic of Moldova;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4195.83;11690;11690;11690;11690;11690;11690 -146;'498;Republic of Moldova;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1843.48;8106;8106;8106;8106;8106;8106 -146;'498;Republic of Moldova;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;539.34;654;654;654;654;654;654 -146;'498;Republic of Moldova;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;138.59;78;78;78;78;78;78 -146;'498;Republic of Moldova;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11677.44;11688;11688;11688;11688;11688;11688 -146;'498;Republic of Moldova;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;781.82;1499;1499;1499;1499;1499;1499 -146;'498;Republic of Moldova;1636;Glue-laminated timber (glulam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -146;'498;Republic of Moldova;1688;Cross-laminated timber (CLT or X-lam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -146;'498;Republic of Moldova;1684;I-beams (I-joists);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -146;'498;Republic of Moldova;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21851.87;23935;23319;23652;29846;23905;27303 -146;'498;Republic of Moldova;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28485.04;29482;25996;29209;36709;34380;38463 -146;'498;Republic of Moldova;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;162;162;162;162;162;162 -146;'498;Republic of Moldova;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1033;1267;1267;1267;1267;1267;1267 -146;'498;Republic of Moldova;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2128.84;2874;2874;2874;2874;2874;2874 -146;'498;Republic of Moldova;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5231.99;5576;5576;5576;5576;5576;5576 -146;'498;Republic of Moldova;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43121.71;50994;50994;50994;50994;50994;50994 -146;'498;Republic of Moldova;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7521.64;9032;9032;9032;9032;9032;9032 -146;'498;Republic of Moldova;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;129.32;116;116;116;116;116;116 -146;'498;Republic of Moldova;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -146;'498;Republic of Moldova;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3782.95;3752;3752;3752;3752;3752;3752 -146;'498;Republic of Moldova;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27.43;48;48;48;48;48;48 -146;'498;Republic of Moldova;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8033.2;9964;9964;9964;9964;9964;9964 -146;'498;Republic of Moldova;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22.96;145;145;145;145;145;145 -146;'498;Republic of Moldova;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12052.24;16543;16543;16543;16543;16543;16543 -146;'498;Republic of Moldova;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4061.8;6006;6006;6006;6006;6006;6006 -146;'498;Republic of Moldova;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19124.01;20619;20619;20619;20619;20619;20619 -146;'498;Republic of Moldova;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3409.45;2833;2833;2833;2833;2833;2833 -182;'638;Réunion;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57703;57703;57703;57703;57703;57703;57703 -182;'638;Réunion;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;328;328;328;328;328;328;328 -182;'638;Réunion;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;1974;2388;2965;3441;2910;4019;3778;4208;7120;5645;5739;6401;8635;9171;8498;10008;13380;13694;15712;16242;21862;19610;20685;19532;22761;32977;47339;45788;46105;53939;54042;67315;58904;60724;69029;69029;69029;57703;57703;57703;57703;57703;57703;57703;57703;57703;57703;57703;57703;57703;57703;57703;57703;57703;57703;57703;57703;57703;57703;57703;57703;57703;57703 -182;'638;Réunion;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;123;174;202;342;342;342;328;328;328;328;328;328;328;328;328;328;328;328;328;328;328;328;328;328;328;328;328;328;328;328;328;328 -182;'638;Réunion;1861;Roundwood;5516;Production;m3;134000;314000;112000;101000;89000;69000;70000;64000;53000;44000;30000;30000;30000;30000;29000;33000;109671;106538;101246;100537;105328;108467;113208;118746;118736;114093;108364;106362;108688;104564;104615;103231;103146;102866;102677;103696;104980;104716;104819;104925;105176;105431;106689;107352;105517;106362;106411;110924;112216;110343;111861;111719;112044;112015;111365;114259;109596;111163;110848;110536;110226;109918;109612 -182;'638;Réunion;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;300;1100;1100;2600;2600;3100;3100;3000;2900;2900;2800;2800;1700;1600;89;572;4789;1639;280;518;518;518;518;518;518;518;518;518;518;518;518;518;518;518;518;518;518;518;518;518;518;518;518;518;518;518;518;518 -182;'638;Réunion;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;102;381;381;678;678;1122;1122;1201;1036;1036;1409;1409;730;414;33;252;413;172;63;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 -182;'638;Réunion;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465 -182;'638;Réunion;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95 -182;'638;Réunion;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;2100;2500;2700;2700;3200;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;4300;4700;2600;3398;3398;7860;9100;7173;8834;8834;9300;9410;8898;12112;7767;9650;9650;9650;9650;9650;9650 -182;'638;Réunion;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;265;265;265;265;265;265;265 -182;'638;Réunion;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;51;51;51;51;51;51 -182;'638;Réunion;1863;Roundwood, non-coniferous;5516;Production;m3;134000;314000;112000;101000;89000;69000;70000;64000;53000;44000;30000;30000;30000;30000;29000;33000;109671;106538;101246;100537;105328;108467;113208;118746;118736;111993;105864;103662;105988;101364;101315;99931;99846;99566;99377;100396;101680;101416;101519;101625;101876;102131;102389;102652;102917;102964;103013;103064;103116;103170;103027;102885;102744;102605;102467;102147;101829;101513;101198;100886;100576;100268;99962 -182;'638;Réunion;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;253;253;253;253;253;253;253 -182;'638;Réunion;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;60;60;60;60;60;60 -182;'638;Réunion;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2465;2465;2465;2465;2465;2465;2465 -182;'638;Réunion;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;95;95;95;95;95;95 -182;'638;Réunion;1864;Wood fuel;5516;Production;m3;117000;303000;108000;86000;76000;58000;56000;48000;42000;35000;28000;28000;28000;28000;27000;31000;107671;104538;99246;98537;103328;106467;111208;116746;116736;107593;101264;101412;103888;98664;99515;98131;98046;97766;97577;98596;99880;99616;99719;99825;100076;100331;100589;100852;101117;101164;101213;101264;101316;101370;101227;101085;100944;100805;100667;100347;100029;99713;99398;99086;98776;98468;98162 -182;'638;Réunion;1628;Wood fuel, non-coniferous;5516;Production;m3;117000;303000;108000;86000;76000;58000;56000;48000;42000;35000;28000;28000;28000;28000;27000;31000;107671;104538;99246;98537;103328;106467;111208;116746;116736;107593;101264;101412;103888;98664;99515;98131;98046;97766;97577;98596;99880;99616;99719;99825;100076;100331;100589;100852;101117;101164;101213;101264;101316;101370;101227;101085;100944;100805;100667;100347;100029;99713;99398;99086;98776;98468;98162 -182;'638;Réunion;1865;Industrial roundwood;5516;Production;m3;17000;11000;4000;15000;13000;11000;14000;16000;11000;9000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;6500;7100;4950;4800;5900;5100;5100;5100;5100;5100;5100;5100;5100;5100;5100;5100;5100;6100;6500;4400;5198;5198;9660;10900;8973;10634;10634;11100;11210;10698;13912;9567;11450;11450;11450;11450;11450;11450 -182;'638;Réunion;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;300;1100;1100;2600;2600;3100;3100;3000;2900;2900;2800;2800;1700;1600;89;572;4789;1639;280;518;518;518;518;518;518;518;518;518;518;518;518;518;518;518;518;518;518;518;518;518;518;518;518;518;518;518;518;518 -182;'638;Réunion;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;102;381;381;678;678;1122;1122;1201;1036;1036;1409;1409;730;414;33;252;413;172;63;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 -182;'638;Réunion;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465 -182;'638;Réunion;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95 -182;'638;Réunion;1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;2100;2500;2700;2700;3200;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;4300;4700;2600;3398;3398;7860;9100;7173;8834;8834;9300;9410;8898;12112;7767;9650;9650;9650;9650;9650;9650 -182;'638;Réunion;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;418;568;74;216;265;265;265;265;265;265;265;265;265;265;265;265;265;265;265;265;265;265;265;265;265;265;265;265;265;265;265;265;265 -182;'638;Réunion;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;179;36;13;54;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 -182;'638;Réunion;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;418;568;74;216;265;265;265;265;265;265;265;265;265;265;265;265;265;265;265;265;265;265;265;265;265;265;265;265;265;265;265;265;265 -182;'638;Réunion;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;179;36;13;54;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 -182;'638;Réunion;1867;Industrial roundwood, non-coniferous;5516;Production;m3;17000;11000;4000;15000;13000;11000;14000;16000;11000;9000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;4400;4600;2250;2100;2700;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;1800;1800;1800;1800 -182;'638;Réunion;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;154;4221;1565;64;253;253;253;253;253;253;253;253;253;253;253;253;253;253;253;253;253;253;253;253;253;253;253;253;253;253;253;253;253 -182;'638;Réunion;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;73;377;159;9;60;60;60;60;60;60;60;60;60;60;60;60;60;60;60;60;60;60;60;60;60;60;60;60;60;60;60;60;60 -182;'638;Réunion;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465 -182;'638;Réunion;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95 -182;'638;Réunion;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;66;66;66;66;66;66;66;66;66;66;66;66;66;66;66;66;66;66;66;66;66;66;66;66;66;66;66;66;66 -182;'638;Réunion;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;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;29;29;29;29 -182;'638;Réunion;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465;2465 -182;'638;Réunion;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95 -182;'638;Réunion;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;154;4221;1565;64;187;187;187;187;187;187;187;187;187;187;187;187;187;187;187;187;187;187;187;187;187;187;187;187;187;187;187;187;187 -182;'638;Réunion;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;73;377;159;9;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31 -182;'638;Réunion;1868;Sawlogs and veneer logs;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;4500;4800;4000;3900;5000;4200;4200;4200;4200;4200;4200;4200;4200;4200;4200;4200;4200;5200;5600;3500;4298;4298;8760;10000;8073;9734;9734;10200;10310;9798;13012;8667;10550;10550;10550;10550;10550;10550 -182;'638;Réunion;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;2100;2500;2700;2700;3200;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;4300;4700;2600;3398;3398;7860;9100;7173;8834;8834;9300;9410;8898;12112;7767;9650;9650;9650;9650;9650;9650 -182;'638;Réunion;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;2400;2300;1300;1200;1800;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900 -182;'638;Réunion;1871;Other industrial roundwood;5516;Production;m3;17000;11000;4000;15000;13000;11000;14000;16000;11000;9000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2300;950;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900 -182;'638;Réunion;1871;Other industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;300;1100;1100;2600;2600;3100;3100;3000;2900;2900;2800;2800;1700;1600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -182;'638;Réunion;1871;Other industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;102;381;381;678;678;1122;1122;1201;1036;1036;1409;1409;730;414;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -182;'638;Réunion;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;17000;11000;4000;15000;13000;11000;14000;16000;11000;9000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2300;950;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900 -182;'638;Réunion;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;;;;;;;;;;;300;1100;1100;2600;2600;3100;3100;3000;2900;2900;2800;2800;1700;1600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -182;'638;Réunion;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;;;;;;;102;381;381;678;678;1122;1122;1201;1036;1036;1409;1409;730;414;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -182;'638;Réunion;1630;Wood charcoal;5510;Production;t;23196;22526;21875;21244;20631;20035;19456;18895;18349;17819;17582;16698;15792;15403;14298;14507;14400;14027;13328;13294;14059;14576;15343;16222;16291;14978;14081;14158;14574;13840;13990;13570;13541;13286;13131;13312;13540;13533;13579;14276;14340;14405;14470;14535;14600;14627;14654;14682;14709;14736;14731;14725;14719;14713;14708;14672;14637;14602;14567;14532;14497;14462;14427 -182;'638;Réunion;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;225;269;500;651;651;651;651;651;651;651;651;651;651;651;651;651;651;651;651;651;651;651;651;651;651;651;651;651;651;651;651;651 -182;'638;Réunion;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;161;185;280;198;198;198;198;198;198;198;198;198;198;198;198;198;198;198;198;198;198;198;198;198;198;198;198;198;198;198;198;198 -182;'638;Réunion;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1649;1649;1649;1649;1649;1649;1649;1649;1649;1649;1649;1649;1649;1649;1649;1649;1649;1649;1649;1649;1649;1649;1649;1649;1649;1649 -182;'638;Réunion;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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 -182;'638;Réunion;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 -182;'638;Réunion;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 -182;'638;Réunion;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;582;582;582;582;582;582;582;582;582;582;582;582;582;582;582;582;582;582;582;582;582;582;582;582;582;582;582;582;582;582 -182;'638;Réunion;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;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;25 -182;'638;Réunion;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;722;2606;1849;1067;1067;1067;1067;1067;1067;1067;1067;1067;1067;1067;1067;1067;1067;1067;1067;1067;1067;1067;1067;1067;1067;1067;1067;1067;1067;1067;1067;1067 -182;'638;Réunion;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;91;61;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47 -182;'638;Réunion;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;0;0;0;0 -182;'638;Réunion;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;0;0;0;0 -182;'638;Réunion;1872;Sawnwood;5516;Production;m3;4400;4300;2500;2800;2200;1600;1100;700;600;600;400;400;400;400;400;600;600;600;600;600;600;600;600;1000;1500;2400;2200;1300;1400;2500;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200 -182;'638;Réunion;1872;Sawnwood;5616;Import quantity;m3;19000;27500;31200;30400;36400;46100;40000;40800;72800;71800;84000;82400;96200;40100;35600;49700;47800;47800;48500;48500;60900;57000;54700;49500;61500;73200;83300;97700;82100;85600;79600;84390;72455;77438;84695;84695;84695;84695;84695;84695;84695;84695;84695;84695;84695;84695;84695;84695;84695;84695;84695;84695;84695;84695;84695;84695;84695;84695;84695;84695;84695;84695;84695 -182;'638;Réunion;1872;Sawnwood;5622;Import value;1000 USD;1290;1797;2181;2208;2195;2325;2309;2293;4798;4436;4452;4696;6166;6065;5530;6766;8844;8844;10160;10160;14752;12500;12350;10250;13271;17128;20642;26940;26711;27043;27090;27667;25946;32678;38726;38726;38726;38726;38726;38726;38726;38726;38726;38726;38726;38726;38726;38726;38726;38726;38726;38726;38726;38726;38726;38726;38726;38726;38726;38726;38726;38726;38726 -182;'638;Réunion;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;48;83;312;312;312;312;312;312;312;312;312;312;312;312;312;312;312;312;312;312;312;312;312;312;312;312;312;312;312;312;312 -182;'638;Réunion;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;28;39;109;109;109;109;109;109;109;109;109;109;109;109;109;109;109;109;109;109;109;109;109;109;109;109;109;109;109;109;109 -182;'638;Réunion;1632;Sawnwood, coniferous;5616;Import quantity;m3;9100;14100;13500;12300;13900;13600;12900;13300;45300;44300;56500;54900;68700;6000;6600;11900;5900;5900;10800;10800;12900;12100;9700;14300;13000;14900;2300;17600;22000;18300;18400;31280;30159;21640;20910;20910;20910;20910;20910;20910;20910;20910;20910;20910;20910;20910;20910;20910;20910;20910;20910;20910;20910;20910;20910;20910;20910;20910;20910;20910;20910;20910;20910 -182;'638;Réunion;1632;Sawnwood, coniferous;5622;Import value;1000 USD;735;1036;1131;987;1066;822;1094;1013;3518;3156;3172;3416;4886;1459;1447;2169;1139;1139;2011;2011;3059;2200;2065;2926;2911;3418;470;4908;8611;5490;5038;7724;7367;7279;5962;5962;5962;5962;5962;5962;5962;5962;5962;5962;5962;5962;5962;5962;5962;5962;5962;5962;5962;5962;5962;5962;5962;5962;5962;5962;5962;5962;5962 -182;'638;Réunion;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;129;129;129;129;129;129;129;129;129;129;129;129;129;129;129;129;129;129;129;129;129;129;129;129;129;129;129;129;129 -182;'638;Réunion;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;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 -182;'638;Réunion;1633;Sawnwood, non-coniferous;5516;Production;m3;4400;4300;2500;2800;2200;1600;1100;700;600;600;400;400;400;400;400;600;600;600;600;600;600;600;600;1000;1500;2400;2200;1300;1400;2500;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200 -182;'638;Réunion;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;9900;13400;17700;18100;22500;32500;27100;27500;27500;27500;27500;27500;27500;34100;29000;37800;41900;41900;37700;37700;48000;44900;45000;35200;48500;58300;81000;80100;60100;67300;61200;53110;42296;55798;63785;63785;63785;63785;63785;63785;63785;63785;63785;63785;63785;63785;63785;63785;63785;63785;63785;63785;63785;63785;63785;63785;63785;63785;63785;63785;63785;63785;63785 -182;'638;Réunion;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;555;761;1050;1221;1129;1503;1215;1280;1280;1280;1280;1280;1280;4606;4083;4597;7705;7705;8149;8149;11693;10300;10285;7324;10360;13710;20172;22032;18100;21553;22052;19943;18579;25399;32764;32764;32764;32764;32764;32764;32764;32764;32764;32764;32764;32764;32764;32764;32764;32764;32764;32764;32764;32764;32764;32764;32764;32764;32764;32764;32764;32764;32764 -182;'638;Réunion;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;33;68;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183;183 -182;'638;Réunion;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;22;33;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86 -182;'638;Réunion;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;69;47;5239;5239;5239;5239;5239;5239;5239;5239;5239;5239;5239;5239;5239;5239;5239;5239;5239;5239;5239;5239;5239;5239;5239;5239;5239;5239;5239;5239;5239 -182;'638;Réunion;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;58;24;3136;3136;3136;3136;3136;3136;3136;3136;3136;3136;3136;3136;3136;3136;3136;3136;3136;3136;3136;3136;3136;3136;3136;3136;3136;3136;3136;3136;3136 -182;'638;Réunion;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;0 -182;'638;Réunion;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;0 -182;'638;Réunion;1873;Wood-based panels;5616;Import quantity;m3;700;900;1200;2400;1800;3300;2900;3300;3700;4000;4800;5800;6800;4500;5700;4100;5100;5100;5100;5100;2000;2000;3800;5100;7200;4900;22100;19100;17400;21300;21500;22946;18415;16105;18368;18368;18368;18368;18368;18368;18368;18368;18368;18368;18368;18368;18368;18368;18368;18368;18368;18368;18368;18368;18368;18368;18368;18368;18368;18368;18368;18368;18368 -182;'638;Réunion;1873;Wood-based panels;5622;Import value;1000 USD;193;232;306;649;479;578;474;549;660;691;832;995;1620;1306;1607;1115;1583;1845;2100;2530;1159;1159;1685;1762;2371;1961;8970;9107;8794;11063;10900;12487;11605;10914;8694;8694;8694;8694;8694;8694;8694;8694;8694;8694;8694;8694;8694;8694;8694;8694;8694;8694;8694;8694;8694;8694;8694;8694;8694;8694;8694;8694;8694 -182;'638;Réunion;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;33;108;143;143;143;143;143;143;143;143;143;143;143;143;143;143;143;143;143;143;143;143;143;143;143;143;143;143;143;143;143 -182;'638;Réunion;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;13;29;75;75;75;75;75;75;75;75;75;75;75;75;75;75;75;75;75;75;75;75;75;75;75;75;75;75;75;75;75 -182;'638;Réunion;1640;Plywood and LVL;5616;Import quantity;m3;700;800;1100;2300;1600;3000;2700;3100;3500;3700;4500;5500;6500;4300;5400;3800;4500;4500;4500;4500;1600;1600;3200;4800;6400;4000;20800;17600;16000;19100;19100;17768;14948;13947;15528;15528;15528;15528;15528;15528;15528;15528;15528;15528;15528;15528;15528;15528;15528;15528;15528;15528;15528;15528;15528;15528;15528;15528;15528;15528;15528;15528;15528 -182;'638;Réunion;1640;Plywood and LVL;5622;Import value;1000 USD;193;222;296;639;453;533;451;520;614;640;781;944;1569;1255;1529;1037;1326;1575;1800;2200;917;917;1444;1643;2014;1454;8125;8234;8085;9427;9427;9487;9697;9652;7455;7455;7455;7455;7455;7455;7455;7455;7455;7455;7455;7455;7455;7455;7455;7455;7455;7455;7455;7455;7455;7455;7455;7455;7455;7455;7455;7455;7455 -182;'638;Réunion;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;11;59;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 -182;'638;Réunion;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;10;18;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;64;64;64;64 -182;'638;Réunion;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;100;100;100;200;300;200;200;200;300;300;300;300;200;300;300;600;600;600;600;400;400;600;300;800;900;1300;1500;1400;2200;2400;4476;3102;1989;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -182;'638;Réunion;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;10;10;10;26;45;23;29;46;51;51;51;51;51;78;78;257;270;300;330;242;242;241;119;357;507;845;873;709;1636;1473;2480;1600;1069;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -182;'638;Réunion;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22;49;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -182;'638;Réunion;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;11;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -182;'638;Réunion;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2160;2160;2160;2160;2160;2160;2160;2160;2160;2160;2160;2160;2160;2160;2160;2160;2160;2160;2160;2160;2160;2160;2160;2160;2160;2160;2160;2160;2160 -182;'638;Réunion;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1047;1047;1047;1047;1047;1047;1047;1047;1047;1047;1047;1047;1047;1047;1047;1047;1047;1047;1047;1047;1047;1047;1047;1047;1047;1047;1047;1047;1047 -182;'638;Réunion;1697;Particle board;5916;Export 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;49;49;49;49;49 -182;'638;Réunion;1697;Particle board;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;11;11;11;11;11;11;11;11 -182;'638;Réunion;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;702;365;169;680;680;680;680;680;680;680;680;680;680;680;680;680;680;680;680;680;680;680;680;680;680;680;680;680;680;680;680;680 -182;'638;Réunion;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;520;308;193;192;192;192;192;192;192;192;192;192;192;192;192;192;192;192;192;192;192;192;192;192;192;192;192;192;192;192;192;192 -182;'638;Réunion;1648;Medium/high density fibreboard (MDF/HDF);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;72;72;72;72;72;72 -182;'638;Réunion;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47 -182;'638;Réunion;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;382;201;74;608;608;608;608;608;608;608;608;608;608;608;608;608;608;608;608;608;608;608;608;608;608;608;608;608;608;608;608;608 -182;'638;Réunion;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;261;134;69;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 -182;'638;Réunion;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;320;164;95;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -182;'638;Réunion;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;259;174;124;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -182;'638;Réunion;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;195;221;309;262;262;262;262;262;262;262;262;262;262;262;262;262;262;262;262;262;262;262;262;262;262;262;262;262;262;262;262;262 -182;'638;Réunion;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;141;149;217;185;185;185;185;185;185;185;185;185;185;185;185;185;185;185;185;185;185;185;185;185;185;185;185;185;185;185;185;185 -182;'638;Réunion;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;2;2;2;2;2;2;2 -182;'638;Réunion;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;2;2;2;2;2;2;2 -182;'638;Réunion;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;131;157;183;136;136;136;136;136;136;136;136;136;136;136;136;136;136;136;136;136;136;136;136;136;136;136;136;136;136;136;136;136 -182;'638;Réunion;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;135;143;165;133;133;133;133;133;133;133;133;133;133;133;133;133;133;133;133;133;133;133;133;133;133;133;133;133;133;133;133;133 -182;'638;Réunion;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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 -182;'638;Réunion;1878;Pulp for paper;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;2;2;2;2;2;2;2;2;2 -182;'638;Réunion;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;131;47;73;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;26;26;26;26 -182;'638;Réunion;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;135;41;63;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31 -182;'638;Réunion;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;131;47;73;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;26;26;26;26 -182;'638;Réunion;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;135;41;63;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31 -182;'638;Réunion;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;131;47;73;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;26;26;26;26 -182;'638;Réunion;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;135;41;63;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31 -182;'638;Réunion;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;;;;;;; -182;'638;Réunion;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;;;;;;; -182;'638;Réunion;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;110;110 -182;'638;Réunion;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102;102;102;102;102;102;102;102;102;102;102;102;102;102;102;102;102;102;102;102;102;102;102;102;102;102;102;102;102;102;102 -182;'638;Réunion;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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 -182;'638;Réunion;1668;Pulp from fibres other than wood;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;2;2;2;2;2;2;2;2;2 -182;'638;Réunion;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;64;126;126;126;126;126;126;126;126;126;126;126;126;126;126;126;126;126;126;126;126;126;126;126;126;126;126;126;126;126;126 -182;'638;Réunion;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;52;52;52;52;52;52;52;52;52;52;52;52;52;52;52;52;52;52;52;52;52;52;52;52;52;52;52;52;52;52 -182;'638;Réunion;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;0 -182;'638;Réunion;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;0 -182;'638;Réunion;1876;Paper and paperboard;5610;Import quantity;t;800;700;900;1000;800;1300;1300;2000;2700;1500;1300;1300;1300;2400;1800;2900;3200;3200;3200;3200;4700;4700;5900;8900;7200;7700;9200;8500;8800;11900;11900;21692;20540;17533;15486;15486;15486;7519;7519;7519;7519;7519;7519;7519;7519;7519;7519;7519;7519;7519;7519;7519;7519;7519;7519;7519;7519;7519;7519;7519;7519;7519;7519 -182;'638;Réunion;1876;Paper and paperboard;5622;Import value;1000 USD;491;359;478;584;236;1116;995;1366;1662;518;455;710;849;1800;1361;2025;2572;2624;2774;2874;4829;4829;5449;6484;6083;12479;16318;9011;10186;15800;15800;26319;20697;16462;17907;17907;17907;6581;6581;6581;6581;6581;6581;6581;6581;6581;6581;6581;6581;6581;6581;6581;6581;6581;6581;6581;6581;6581;6581;6581;6581;6581;6581 -182;'638;Réunion;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97;195;62;99;99;99;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;91 -182;'638;Réunion;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;133;37;61;61;61;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47 -182;'638;Réunion;2042;Graphic papers;5610;Import quantity;t;500;500;600;600;400;400;500;900;900;700;800;800;800;600;800;1300;1900;1900;1900;1900;2900;2900;3800;4800;4700;3800;4800;7500;4400;7800;7800;13495;11931;10760;11069;11069;11069;7519;7519;7519;7519;7519;7519;7519;7519;7519;7519;7519;7519;7519;7519;7519;7519;7519;7519;7519;7519;7519;7519;7519;7519;7519;7519 -182;'638;Réunion;2042;Graphic papers;5622;Import value;1000 USD;125;132;155;182;110;200;575;762;771;218;241;496;635;250;367;911;1280;1324;1374;1424;2672;2672;2694;3043;3146;3239;4514;7427;4934;10041;10041;16482;12623;10786;12235;12235;12235;6581;6581;6581;6581;6581;6581;6581;6581;6581;6581;6581;6581;6581;6581;6581;6581;6581;6581;6581;6581;6581;6581;6581;6581;6581;6581 -182;'638;Réunion;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91;165;36;98;98;98;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;91 -182;'638;Réunion;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;111;27;58;58;58;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47 -182;'638;Réunion;1671;Newsprint;5610;Import quantity;t;500;500;600;;0;;;100;100;400;500;500;500;300;500;800;1000;1000;1000;1000;1500;1500;2300;3200;3100;2900;3500;4200;2200;3900;3900;5788;5730;5186;7519;7519;7519;7519;7519;7519;7519;7519;7519;7519;7519;7519;7519;7519;7519;7519;7519;7519;7519;7519;7519;7519;7519;7519;7519;7519;7519;7519;7519 -182;'638;Réunion;1671;Newsprint;5622;Import value;1000 USD;125;132;155;;0;;;21;30;75;84;339;478;93;210;336;406;450;500;550;906;906;1081;1377;1390;1746;2567;2567;1549;3021;3021;4405;3936;3482;6581;6581;6581;6581;6581;6581;6581;6581;6581;6581;6581;6581;6581;6581;6581;6581;6581;6581;6581;6581;6581;6581;6581;6581;6581;6581;6581;6581;6581 -182;'638;Réunion;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;12;24;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;91;91;91;91 -182;'638;Réunion;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;6;22;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47;47 -182;'638;Réunion;1674;Printing and writing papers;5610;Import quantity;t;;;;600;400;400;500;800;800;300;300;300;300;300;300;500;900;900;900;900;1400;1400;1500;1600;1600;900;1300;3300;2200;3900;3900;7707;6201;5574;3550;3550;3550;;;;;;;;;;;;;;;;;;;;;;;;;; -182;'638;Réunion;1674;Printing and writing papers;5622;Import value;1000 USD;;;;182;110;200;575;741;741;143;157;157;157;157;157;575;874;874;874;874;1766;1766;1613;1666;1756;1493;1947;4860;3385;7020;7020;12077;8687;7304;5654;5654;5654;;;;;;;;;;;;;;;;;;;;;;;;;; -182;'638;Réunion;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;153;12;7;7;7;;;;;;;;;;;;;;;;;;;;;;;;;; -182;'638;Réunion;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;105;5;11;11;11;;;;;;;;;;;;;;;;;;;;;;;;;; -182;'638;Réunion;1675;Other paper and paperboard;5610;Import quantity;t;300;200;300;400;400;900;800;1100;1800;800;500;500;500;1800;1000;1600;1300;1300;1300;1300;1800;1800;2100;4100;2500;3900;4400;1000;4400;4100;4100;8197;8609;6773;4417;4417;4417;;;;;;;;;;;;;;;;;;;;;;;;;; -182;'638;Réunion;1675;Other paper and paperboard;5622;Import value;1000 USD;366;227;323;402;126;916;420;604;891;300;214;214;214;1550;994;1114;1292;1300;1400;1450;2157;2157;2755;3441;2937;9240;11804;1584;5252;5759;5759;9837;8074;5676;5672;5672;5672;;;;;;;;;;;;;;;;;;;;;;;;;; -182;'638;Réunion;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;30;26;1;1;1;;;;;;;;;;;;;;;;;;;;;;;;;; -182;'638;Réunion;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;22;10;3;3;3;;;;;;;;;;;;;;;;;;;;;;;;;; -183;'642;Romania;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2073924.58;2623030;2494774;2463986;3213091;3540858;3481568 -183;'642;Romania;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3357688.3;3655592;3413442;3354858;4577754;4864572;4435753 -183;'642;Romania;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;3095;3280;2230;2742;2917;4575;6100;13466;16590;24520;16654;21864;26620;41400;48360;52900;54900;51720;79559;97564;109675;89560;88360;119060;117360;115697;119366;104143;78520;118860;82539;74087;50270;78951;128675;118046;152643;189599;165365;189706;223465;288900;388260;527861;638202;617509;901905;890090;799050;801042;809861;876458;984017;1001046;1015349;1124760;1208979.61;1423654;1270795;1232465;1695920;1908710;1853768 -183;'642;Romania;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;82831;94195;113772;129260;135569;145924;140251;142720;141784;160511;170283;198960;188000;264915;295570;277993;256472;289400;315870;425430;432996;424950;427610;382750;297950;306723;269191;289606;281605;213495;184078;142253;141726;217907;289224;287612;323033;335213;426012;516060;473783;565994;701809;900497;858211;971978;1169524;1016545;1024989;1639137;1716073;1802090;2201035;2145960;1700562;1478394;1590004.97;1719850;1597995;1612678;2258997;2264664;2064123 -183;'642;Romania;1861;Roundwood;5516;Production;m3;19748000;21316000;21316000;21579000;21830000;22424000;23290000;22560000;22000000;22286000;22304000;21915000;21537000;21043000;20559000;20587000;20274000;20609000;17823000;17670000;19759000;22375000;22275000;23448000;22326000;20029000;19172000;17522000;15575000;12608000;12961000;12440000;8840000;11925000;12178000;12250000;13529000;11649000;12703500;13148200;12424000;15154000;15440000;15809000;14501000;13970000;15341000;13667000;12556500;13111640;14358629;16087912;15194722;15329913;15314700;15116714;14491635;15989205;15827246;18048528;17796330;17476457;17476457 -183;'642;Romania;1861;Roundwood;5616;Import quantity;m3;;1000;1000;2300;1000;2500;3500;5700;8800;13100;5000;11800;15200;260300;200600;141000;141000;153000;386000;483000;173000;33000;26000;110000;110000;60000;57000;11388;22230;419928;94754;131896;33311;17500;79800;66300;25700;1600;2000;20400;25000;88000;21000;144000;336037;426060;411050;214891;397851;611067;686449;935654;1299025;1638675;2344397;2370721;1824923;1582543;1176323;1714306;2607911;2387273;2387273 -183;'642;Romania;1861;Roundwood;5622;Import value;1000 USD;;50;50;115;50;125;317;383;770;1100;470;1000;1200;6300;6760;5000;5100;5920;14209;23714;12235;4200;3000;7400;7400;6800;6250;3556;7875;48456;12135;15895;3311;2194;5534;4912;1314;296;155;1186;2153;3313;1443;7294;19930;32180;34018;20251;29089;43442;53689;66927;82377;107400;127684;137076;113571.82;119743;84913;105886;260721;198006;198006 -183;'642;Romania;1861;Roundwood;5916;Export quantity;m3;1107000;1104000;1368200;1453300;1227400;923400;845100;801600;648500;829800;673300;425500;490400;526800;389200;226200;215900;186100;210600;186400;190000;169000;186000;162000;112000;92000;92000;2000;2000;3810;2805;2160;1523;0;0;0;0;161000;603400;535100;112000;94600;211000;186000;159000;190090;179000;257050;224715;429273;831848;586526;774626;529730;315770;158092;186959;154637;160709;162026;152239;303817;303817 -183;'642;Romania;1861;Roundwood;5922;Export value;1000 USD;11941;11915;14032;16680;13769;10644;8516;7334;6279;9784;9600;6940;8600;14215;12570;8251;8022;8850;7070;6830;9996;9200;9800;6000;4200;3600;3600;100;100;270;198;551;651;0;0;0;0;10365;46133;48503;15373;7932;18458;21799;17385;17417;24925;33770;20747;40644;84743;55707;88782;61604;32489;15282;26454.86;23658;23110;31379;14989;33132;33132 -183;'642;Romania;1862;Roundwood, coniferous;5516;Production;m3;6334000;6212000;6212000;6367000;6760000;7300000;7208000;6913000;6978000;7147000;7337000;7158000;6956000;6322000;6538000;6422000;6395000;6527000;7262000;7015000;6549000;6922000;6397000;7136000;7136000;6687000;6687000;6437000;6400000;4534000;3590000;3396000;2211000;3942000;4355000;4575000;5369000;4769000;5146200;4918500;4523000;6592000;6568000;5848000;5575000;4674000;6667000;5532300;4922100;5139763;5857621;6129496;5901560;6540172;6024412;5420427;5277916;5953536;5329976;7472299;7122260;6083925;6083925 -183;'642;Romania;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1450358;1429250;1088465;1665695;2472768;2247943;2247943 -183;'642;Romania;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84756.76;97887;67544;97582;250610;186469;186469 -183;'642;Romania;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25779;16047;21590;25288;53051;136843;136843 -183;'642;Romania;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4051.16;4396;5017;4806;5158;14129;14129 -183;'642;Romania;1863;Roundwood, non-coniferous;5516;Production;m3;13414000;15104000;15104000;15212000;15070000;15124000;16082000;15647000;15022000;15139000;14967000;14757000;14581000;14721000;14021000;14165000;13879000;14082000;10561000;10655000;13210000;15453000;15878000;16312000;15190000;13342000;12485000;11085000;9175000;8074000;9371000;9044000;6629000;7983000;7823000;7675000;8160000;6880000;7557300;8229700;7901000;8562000;8872000;9961000;8926000;9296000;8674000;8134700;7634400;7971877;8501008;9958416;9293162;8789741;9290288;9696287;9213719;10035669;10497270;10576229;10674070;11392532;11392532 -183;'642;Romania;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;374565;153293;87858;48611;135143;139330;139330 -183;'642;Romania;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28815.06;21856;17369;8304;10111;11537;11537 -183;'642;Romania;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;161180;138590;139119;136738;99188;166974;166974 -183;'642;Romania;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22403.7;19262;18093;26573;9831;19003;19003 -183;'642;Romania;1864;Wood fuel;5516;Production;m3;7714000;7445000;7445000;6987000;6727000;6847000;7653000;7160000;6212000;5916000;5494000;5830000;5382000;4774000;4879000;4590000;4380000;4490000;3457000;3430000;3302000;3891000;3891000;3891000;3891000;3885000;3400000;3150000;2100000;1883000;2000000;2000000;1100000;2285000;2163000;2809000;3692000;3020000;3220000;3032200;2618000;3062000;2903000;3015000;2959000;4516000;3769000;4149700;3969200;2563588;4014177;5037575;5103239;4859293;5079301;5163781;4913883;5553105;5641341;6419848;6461030;6573551;6573551 -183;'642;Romania;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;562;72;0;0;0;0;0;0;0;0;0;0;0;37;1000;11000;3193;14407;47584;81450;295814;563461;631025;551957;601494;346437;317896;187331;70378;447172;257727;257727 -183;'642;Romania;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;3;0;0;0;0;0;0;0;0;0;0;1;2;31;730;240;694;1604;3368;11454;22431;21581;13432;16582;11327.91;13409;11526;2806;25199;19294;19294 -183;'642;Romania;1864;Wood fuel;5916;Export quantity;m3;249100;259000;334100;152000;176000;47500;68200;71700;36400;73900;42200;61200;79800;11700;6400;6400;6400;6400;6400;6400;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;54;54;0;0;0;0;0;1000;4300;3000;7600;89000;72000;68000;79000;24000;47187;57416;108216;134306;229622;293147;202920;146113;73128;68264;64023;52887;43658;49986;64295;64295 -183;'642;Romania;1864;Wood fuel;5922;Export value;1000 USD;1500;1600;2100;900;1000;220;283;350;384;884;300;480;600;115;70;70;70;70;70;70;96;100;100;100;100;100;100;100;100;100;100;9;9;0;0;0;0;0;60;170;110;293;3141;2863;2902;4039;1981;2473;2550;5496;7923;14351;18173;12903;8404;3580;3951.84;5467;4788;3469;4677;9113;9113 -183;'642;Romania;1627;Wood fuel, coniferous;5516;Production;m3;425000;421000;421000;373000;360000;402000;511000;387000;377000;421000;419000;463000;443000;272000;569000;380000;370000;380000;488000;429000;324000;406000;406000;406000;406000;400000;400000;400000;400000;733000;286000;286000;88000;188000;182000;296000;559000;370000;420000;332000;198000;565000;369000;298000;313000;914000;733000;838500;694000;411181;749775;735540;954203;908542;1017574;869986;858392;1084985;970056;1410894;1362460;1156288;1156288 -183;'642;Romania;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;280900;277896;180059;65256;415801;222626;222626 -183;'642;Romania;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9080;11860;11168;2494;23485;16191;16191 -183;'642;Romania;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5283;8023;11126;4490;4941;19368;19368 -183;'642;Romania;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1129.75;3022;2943;1109;1038;4068;4068 -183;'642;Romania;1628;Wood fuel, non-coniferous;5516;Production;m3;7289000;7024000;7024000;6614000;6367000;6445000;7142000;6773000;5835000;5495000;5075000;5367000;4939000;4502000;4310000;4210000;4010000;4110000;2969000;3001000;2978000;3485000;3485000;3485000;3485000;3485000;3000000;2750000;1700000;1150000;1714000;1714000;1012000;2097000;1981000;2513000;3133000;2650000;2800000;2700200;2420000;2497000;2534000;2717000;2646000;3602000;3036000;3311200;3275200;2152407;3264402;4302035;4149036;3950751;4061727;4293795;4055491;4468120;4671285;5008954;5098570;5417263;5417263 -183;'642;Romania;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65537;40000;7272;5122;31371;35101;35101 -183;'642;Romania;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2247.9;1549;358;312;1714;3103;3103 -183;'642;Romania;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62981;56000;41761;39168;45045;44927;44927 -183;'642;Romania;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2822.09;2445;1845;2360;3639;5045;5045 -183;'642;Romania;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;562;72;0;0;0;0;0;0;0;0;0;0;0;37;1000;11000;3193;14407;47584;81450;295814;563461;631025;551957;601494;;;;;;; -183;'642;Romania;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;3;0;0;0;0;0;0;0;0;0;0;1;2;31;730;240;694;1604;3368;11454;22431;21581;13432;16582;;;;;;; -183;'642;Romania;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;249100;259000;334100;152000;176000;47500;68200;71700;36400;73900;42200;61200;79800;11700;6400;6400;6400;6400;6400;6400;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;54;54;0;0;0;0;0;1000;4300;3000;7600;89000;72000;68000;79000;24000;47187;57416;108216;134306;229622;293147;202920;146113;73128;;;;;;; -183;'642;Romania;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;1500;1600;2100;900;1000;220;283;350;384;884;300;480;600;115;70;70;70;70;70;70;96;100;100;100;100;100;100;100;100;100;100;9;9;0;0;0;0;0;60;170;110;293;3141;2863;2902;4039;1981;2473;2550;5496;7923;14351;18173;12903;8404;3580;;;;;;; -183;'642;Romania;1865;Industrial roundwood;5516;Production;m3;12034000;13871000;13871000;14592000;15103000;15577000;15637000;15400000;15788000;16370000;16810000;16085000;16155000;16269000;15680000;15997000;15894000;16119000;14366000;14240000;16457000;18484000;18384000;19557000;18435000;16144000;15772000;14372000;13475000;10725000;10961000;10440000;7740000;9640000;10015000;9441000;9837000;8629000;9483500;10116000;9806000;12092000;12537000;12794000;11542000;9454000;11572000;9517300;8587300;10548052;10344452;11050337;10091483;10470620;10235399;9952933;9577752;10436100;10185905;11628680;11335300;10902906;10902906 -183;'642;Romania;1865;Industrial roundwood;5616;Import quantity;m3;;1000;1000;2300;1000;2500;3500;5700;8800;13100;5000;11800;15200;260300;200600;141000;141000;153000;386000;483000;173000;33000;26000;110000;110000;60000;57000;11388;22230;419928;94754;131334;33239;17500;79800;66300;25700;1600;2000;20400;25000;88000;21000;144000;336000;425060;400050;211698;383444;563483;604999;639840;735564;1007650;1792440;1769227;1478486;1264647;988992;1643928;2160739;2129546;2129546 -183;'642;Romania;1865;Industrial roundwood;5622;Import value;1000 USD;;50;50;115;50;125;317;383;770;1100;470;1000;1200;6300;6760;5000;5100;5920;14209;23714;12235;4200;3000;7400;7400;6800;6250;3556;7875;48456;12135;15868;3308;2194;5534;4912;1314;296;155;1186;2153;3313;1443;7293;19928;32149;33288;20011;28395;41838;50321;55473;59946;85819;114252;120494;102243.91;106334;73387;103080;235522;178712;178712 -183;'642;Romania;1865;Industrial roundwood;5916;Export quantity;m3;857900;845000;1034100;1301300;1051400;875900;776900;729900;612100;755900;631100;364300;410600;515100;382800;219800;209500;179700;204200;180000;188000;167000;184000;160000;110000;90000;90000;0;0;1810;805;2106;1469;0;0;0;0;161000;602400;530800;109000;87000;122000;114000;91000;111090;155000;209863;167299;321057;697542;356904;481479;326810;169657;84964;118695;90614;107822;118368;102253;239522;239522 -183;'642;Romania;1865;Industrial roundwood;5922;Export value;1000 USD;10441;10315;11932;15780;12769;10424;8233;6984;5895;8900;9300;6460;8000;14100;12500;8181;7952;8780;7000;6760;9900;9100;9700;5900;4100;3500;3500;0;0;170;98;542;642;0;0;0;0;10365;46073;48333;15263;7639;15317;18936;14483;13378;22944;31297;18197;35148;76820;41356;70609;48701;24085;11702;22503.02;18191;18322;27910;10312;24019;24019 -183;'642;Romania;1866;Industrial roundwood, coniferous;5516;Production;m3;5909000;5791000;5791000;5994000;6400000;6898000;6697000;6526000;6601000;6726000;6918000;6695000;6513000;6050000;5969000;6042000;6025000;6147000;6774000;6586000;6225000;6516000;5991000;6730000;6730000;6287000;6287000;6037000;6000000;3801000;3304000;3110000;2123000;3754000;4173000;4279000;4810000;4399000;4726200;4586500;4325000;6027000;6199000;5550000;5262000;3760000;5934000;4693800;4228100;4728582;5107846;5393956;4947357;5631630;5006838;4550441;4419524;4868551;4359920;6061405;5759800;4927637;4927637 -183;'642;Romania;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;205119;10274;81676;4187;2000;67200;51000;24500;100;0;10900;14000;77000;19000;138000;328000;417060;389050;192500;364292;542404;555233;622306;667172;917005;1643651;1616787;1169458;1151354;908406;1600439;2056967;2025317;2025317 -183;'642;Romania;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19645;1428;8289;357;97;3960;2863;1158;62;34;325;710;2003;777;4873;16578;26229;27265;13764;20835;33444;43039;50439;51740;73156;102156;105125;75676.75;86027;56376;95088;227125;170278;170278 -183;'642;Romania;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;381;728;160;0;0;0;0;130000;407400;234200;37000;50000;38000;3000;2000;9090;18000;77900;42243;151165;403232;176879;373045;214480;73170;27964;20496;8024;10464;20798;48110;117475;117475 -183;'642;Romania;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;32;45;10;0;0;0;0;5204;19138;11420;1849;2806;2070;386;309;628;1956;6785;3683;16054;39666;18520;44825;27956;8237;3323;2921.41;1374;2074;3697;4120;10061;10061 -183;'642;Romania;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;205119;10274;81676;4187;2000;67200;51000;24500;100;0;10900;14000;77000;19000;138000;328000;417060;389050;192500;364292;542404;555233;622306;667172;917005;1643651;1616787;1169458;1151354;908406;1600439;2056967;2025317;2025317 -183;'642;Romania;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19645;1428;8289;357;97;3960;2863;1158;62;34;325;710;2003;777;4873;16578;26229;27265;13764;20835;33444;43039;50439;51740;73156;102156;105125;75676.75;86027;56376;95088;227125;170278;170278 -183;'642;Romania;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;381;728;160;0;0;0;0;130000;407400;234200;37000;50000;38000;3000;2000;9090;18000;77900;42243;151165;403232;176879;373045;214480;73170;27964;20496;8024;10464;20798;48110;117475;117475 -183;'642;Romania;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;32;45;10;0;0;0;0;5204;19138;11420;1849;2806;2070;386;309;628;1956;6785;3683;16054;39666;18520;44825;27956;8237;3323;2921.41;1374;2074;3697;4120;10061;10061 -183;'642;Romania;1867;Industrial roundwood, non-coniferous;5516;Production;m3;6125000;8080000;8080000;8598000;8703000;8679000;8940000;8874000;9187000;9644000;9892000;9390000;9642000;10219000;9711000;9955000;9869000;9972000;7592000;7654000;10232000;11968000;12393000;12827000;11705000;9857000;9485000;8335000;7475000;6924000;7657000;7330000;5617000;5886000;5842000;5162000;5027000;4230000;4757300;5529500;5481000;6065000;6338000;7244000;6280000;5694000;5638000;4823500;4359200;5819470;5236606;5656381;5144126;4838990;5228561;5402492;5158228;5567549;5825985;5567275;5575500;5975269;5975269 -183;'642;Romania;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;214809;84480;49658;29052;15500;12600;15300;1200;1500;2000;9500;11000;11000;2000;6000;8000;8000;11000;19198;19152;21079;49766;17534;68392;90645;148789;152440;309028;113293;80586;43489;103772;104229;104229 -183;'642;Romania;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28811;10707;7579;2951;2097;1574;2049;156;234;121;861;1443;1310;666;2420;3350;5920;6023;6247;7560;8394;7282;5034;8206;12663;12096;15369;26567.16;20307;17011;7992;8397;8434;8434 -183;'642;Romania;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1746;424;1378;1309;0;0;0;0;31000;195000;296600;72000;37000;84000;111000;89000;102000;137000;131963;125056;169892;294310;180025;108434;112330;96487;57000;98199;82590;97358;97570;54143;122047;122047 -183;'642;Romania;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;166;66;497;632;0;0;0;0;5161;26935;36913;13414;4833;13247;18550;14174;12750;20988;24512;14514;19094;37154;22836;25784;20745;15848;8379;19581.61;16817;16248;24213;6192;13958;13958 -183;'642;Romania;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24849;8244;3131;3131;1000;1000;1000;200;0;0;50;2000;1000;0;0;760;1000;1000;145;108;524;1211;415;149;115;231;372;46;264;297;85;100;379;379 -183;'642;Romania;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3336;1772;860;860;67;67;67;87;49;18;51;204;219;85;126;438;930;970;224;124;621;1194;317;110;128;139;164;61.94;208;283;61;102;152;152 -183;'642;Romania;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;70;40;0;0;918;117;0;0;0;0;3;13;2;16;12;0;0 -183;'642;Romania;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;84;71;0;0;391;45;0;0;0;0;3.24;5;1;3;6;0;0 -183;'642;Romania;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;189960;76236;46527;25921;14500;11600;14300;1000;1500;2000;9450;9000;10000;2000;6000;7240;7000;10000;19053;19044;20555;48555;17119;68243;90530;148558;152068;308982;113029;80289;43404;103672;103850;103850 -183;'642;Romania;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25475;8935;6719;2091;2030;1507;1982;69;185;103;810;1239;1091;581;2294;2912;4990;5053;6023;7436;7773;6088;4717;8096;12535;11957;15205;26505.22;20099;16728;7931;8295;8282;8282 -183;'642;Romania;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1746;424;1378;1309;0;0;0;0;31000;195000;296600;72000;37000;84000;111000;89000;102000;136930;131923;125056;169892;293392;179908;108434;112330;96487;57000;98196;82577;97356;97554;54131;122047;122047 -183;'642;Romania;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;166;66;497;632;0;0;0;0;5161;26935;36913;13414;4833;13247;18550;14174;12750;20904;24441;14514;19094;36763;22791;25784;20745;15848;8379;19578.37;16812;16247;24210;6186;13958;13958 -183;'642;Romania;1868;Sawlogs and veneer logs;5516;Production;m3;7312000;8491000;8491000;8870000;9178000;9445000;9951000;8763000;9216000;9571000;10206000;10117000;9570000;9011000;8813000;8817000;8807000;8867000;8890000;8482000;8358000;8755000;8690000;8910000;7788000;5000000;5000000;4650000;5075000;5164000;4640000;4600000;3512000;4300000;4274000;4107000;4299000;4304000;5286500;6146300;5638000;7062000;7952000;8198000;7847000;6387000;9777000;8255400;7221600;8213340;7764841;9522757;8607973;8952376;8643529;8292836;7854347;8436149;8187481;9169030;9081430;8572882;8572882 -183;'642;Romania;1868;Sawlogs and veneer logs;5616;Import quantity;m3;;1000;1000;2300;1000;2500;3500;5700;8800;13100;5000;11800;15200;18400;9500;20000;20000;32000;18000;29000;38000;21000;14000;20000;20000;30000;27000;11388;22230;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -183;'642;Romania;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;;50;50;115;50;125;317;383;770;1100;470;1000;1200;1800;460;1000;1100;1920;2800;5100;6700;3700;2500;3600;3600;5500;4950;3556;7875;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -183;'642;Romania;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;4060000;3944000;3944000;4035000;4281000;4630000;4363000;3946000;4015000;4119000;4387000;4392000;4010000;3520000;3327000;3317000;3287000;3332000;3499000;3369000;3151000;3175000;3170000;3040000;3040000;2100000;2100000;1850000;2630000;2224000;1820000;1800000;1592000;1800000;1974000;2479000;2720000;2850000;3274000;3422800;3023000;4087000;4687000;4512000;4213000;2783000;5267000;4276000;3748000;4506338;4527941;4842301;4326147;5025712;4438417;4030408;3824460;4197046;3757633;5100219;4932430;4185676;4185676 -183;'642;Romania;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;3252000;4547000;4547000;4835000;4897000;4815000;5588000;4817000;5201000;5452000;5819000;5725000;5560000;5491000;5486000;5500000;5520000;5535000;5391000;5113000;5207000;5580000;5520000;5870000;4748000;2900000;2900000;2800000;2445000;2940000;2820000;2800000;1920000;2500000;2300000;1628000;1579000;1454000;2012500;2723500;2615000;2975000;3265000;3686000;3634000;3604000;4510000;3979400;3473600;3707002;3236900;4680456;4281826;3926664;4205112;4262428;4029887;4239103;4429848;4068811;4149000;4387206;4387206 -183;'642;Romania;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;;1000;1000;2300;1000;2500;3500;5700;8800;13100;5000;11800;15200;18400;9500;20000;20000;32000;18000;29000;38000;21000;14000;20000;20000;30000;27000;11388;22230;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -183;'642;Romania;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;;50;50;115;50;125;317;383;770;1100;470;1000;1200;1800;460;1000;1100;1920;2800;5100;6700;3700;2500;3600;3600;5500;4950;3556;7875;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -183;'642;Romania;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1473000;1424800;1652000;2150000;2463000;2486000;2500000;1878000;822000;1248000;601100;488500;1809134;1839028;615186;579621;700494;896684;895426;968549;1089758;1072061;1386111;1323110;1307744;1307744 -183;'642;Romania;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1087000;1050000;971000;1196000;1407000;1136000;740000;715000;301000;467000;244100;206000;104029;374888;306475;285572;326105;372594;329447;387099;480367;431728;665829;607790;528826;528826 -183;'642;Romania;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;386000;374800;681000;954000;1056000;1350000;1760000;1163000;521000;781000;357000;282500;1705105;1464140;308711;294049;374389;524090;565979;581450;609391;640333;720282;715320;778918;778918 -183;'642;Romania;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;;;;;;;;;241900;191100;121000;121000;121000;368000;454000;135000;12000;12000;90000;90000;30000;30000;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -183;'642;Romania;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;;;;;4500;6300;4000;4000;4000;11409;18614;5535;500;500;3800;3800;1300;1300;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -183;'642;Romania;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5916;Export quantity;m3;526100;557700;723200;925500;706300;491600;462100;521300;500500;667700;563100;276300;327600;436200;324600;161600;151300;121500;190200;164000;148000;127000;144000;160000;110000;90000;90000;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -183;'642;Romania;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5922;Export value;1000 USD;5571;6000;7232;10180;7769;4424;3583;4467;4225;7150;7970;4660;6000;9200;8800;4381;4102;3280;5700;5000;5500;4700;5300;5900;4100;3500;3500;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -183;'642;Romania;1870;Pulpwood and particles (1961-1997);5516;Production;m3;1693000;1993000;1993000;2447000;2104000;2138000;1808000;2347000;2399000;2634000;2721000;2710000;3289000;3669000;3740000;3510000;3580000;3650000;3619000;3711000;3997000;4070000;4035000;4988000;4988000;5485000;5485000;5485000;3900000;2947000;3021000;2540000;1072000;1524000;1934000;1765000;1936000;;;;;;;;;;;;;;;;;;;;;;;;;; -183;'642;Romania;1870;Pulpwood and particles (1961-1997);5616;Import quantity;m3;;;;;;;;;;;;;;241900;191100;121000;121000;121000;368000;454000;135000;12000;12000;90000;90000;30000;30000;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -183;'642;Romania;1870;Pulpwood and particles (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;4500;6300;4000;4000;4000;11409;18614;5535;500;500;3800;3800;1300;1300;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -183;'642;Romania;1870;Pulpwood and particles (1961-1997);5916;Export quantity;m3;526100;557700;723200;925500;706300;491600;462100;521300;500500;667700;563100;276300;327600;436200;324600;161600;151300;121500;190200;164000;148000;127000;144000;160000;110000;90000;90000;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -183;'642;Romania;1870;Pulpwood and particles (1961-1997);5922;Export value;1000 USD;5571;6000;7232;10180;7769;4424;3583;4467;4225;7150;7970;4660;6000;9200;8800;4381;4102;3280;5700;5000;5500;4700;5300;5900;4100;3500;3500;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -183;'642;Romania;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;1175000;958000;958000;900000;756000;969000;1083000;1411000;1519000;1622000;1617000;1375000;1532000;1800000;1837000;1960000;2010000;2070000;2347000;2276000;2265000;2254000;1734000;2603000;2603000;3100000;3100000;3100000;2020000;877000;1154000;980000;215000;1168000;1409000;1244000;1440000;;;;;;;;;;;;;;;;;;;;;;;;;; -183;'642;Romania;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;518000;1035000;1035000;1547000;1348000;1169000;725000;936000;880000;1012000;1104000;1335000;1757000;1869000;1903000;1550000;1570000;1580000;1272000;1435000;1732000;1816000;2301000;2385000;2385000;2385000;2385000;2385000;1880000;2070000;1867000;1560000;857000;356000;525000;521000;496000;;;;;;;;;;;;;;;;;;;;;;;;;; -183;'642;Romania;1871;Other industrial roundwood;5516;Production;m3;3029000;3387000;3387000;3275000;3821000;3994000;3878000;4290000;4173000;4165000;3883000;3258000;3296000;3589000;3127000;3670000;3507000;3602000;1857000;2047000;4102000;5659000;5659000;5659000;5659000;5659000;5287000;4237000;4500000;2614000;3300000;3300000;3156000;3816000;3807000;3569000;3602000;2852000;2772200;2317700;2018000;2567000;2099000;2096000;1817000;2245000;547000;660800;877200;525578;740583;912394;903889;817750;695186;764671;754856;910193;926363;1073539;930760;1022280;1022280 -183;'642;Romania;1871;Other industrial roundwood;5916;Export quantity;m3;331800;287300;310900;375800;345100;384300;314800;208600;111600;88200;68000;88000;83000;78900;58200;58200;58200;58200;14000;16000;40000;40000;40000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -183;'642;Romania;1871;Other industrial roundwood;5922;Export value;1000 USD;4870;4315;4700;5600;5000;6000;4650;2517;1670;1750;1330;1800;2000;4900;3700;3800;3850;5500;1300;1760;4400;4400;4400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -183;'642;Romania;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;674000;889000;889000;1059000;1363000;1299000;1251000;1169000;1067000;985000;914000;928000;971000;730000;805000;765000;728000;745000;928000;941000;809000;1087000;1087000;1087000;1087000;1087000;1087000;1087000;1350000;700000;330000;330000;316000;786000;790000;556000;650000;462000;402200;192700;106000;533000;376000;298000;334000;676000;200000;173700;274100;118215;205017;245180;335638;279813;195827;190586;207965;191138;170559;295357;219580;213135;213135 -183;'642;Romania;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;2355000;2498000;2498000;2216000;2458000;2695000;2627000;3121000;3106000;3180000;2969000;2330000;2325000;2859000;2322000;2905000;2779000;2857000;929000;1106000;3293000;4572000;4572000;4572000;4572000;4572000;4200000;3150000;3150000;1914000;2970000;2970000;2840000;3030000;3017000;3013000;2952000;2390000;2370000;2125000;1912000;2034000;1723000;1798000;1483000;1569000;347000;487100;603100;407363;535566;667214;568251;537937;499359;574085;546891;719055;755804;778182;711180;809145;809145 -183;'642;Romania;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;331800;287300;310900;375800;345100;384300;314800;208600;111600;88200;68000;88000;83000;78900;58200;58200;58200;58200;14000;16000;40000;40000;40000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -183;'642;Romania;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;4870;4315;4700;5600;5000;6000;4650;2517;1670;1750;1330;1800;2000;4900;3700;3800;3850;5500;1300;1760;4400;4400;4400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -183;'642;Romania;1630;Wood charcoal;5510;Production;t;34191;54730;60371;59914;54759;53206;60655;51206;60259;58714;52262;48397;41335;54563;46936;29907;29483;29327;33276;48562;36967;33954;33720;33499;33905;34009;35191;35699;36696;37698;39461;40806;41456;42972;47949;48063;45999;26000;26000;27000;28000;29000;26000;26000;26000;90000;88000;13795;13647;8970;15833;17925;21267;16461;6000;2282;1220;1106;1035;1646;2040;327;327 -183;'642;Romania;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;485;3000;4000;4500;4000;14128;3110;242;446;480;2371;13168;24934;31360;29607;30861;40614;37403;37403 -183;'642;Romania;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;23;7;11;18;45;95;378;185;470;683;2876;309;1034;398;172;343;332;1172;4835;8973.34;12796;12140;13288;19593;23595;23595 -183;'642;Romania;1630;Wood charcoal;5910;Export quantity;t;;20800;26700;26500;21600;20300;28000;18800;28100;26800;20600;17000;10400;23900;16600;16600;16600;16600;4000;19000;7000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;3515;4353;6200;12000;12500;9500;11000;10500;15400;17000;18700;16000;16000;17000;75500;26100;6000;2000;869;17370;1388;5834;6610;7348;7103;6839;2325;2030;2925;5089;1645;1645 -183;'642;Romania;1630;Wood charcoal;5922;Export value;1000 USD;;1020;1310;1300;1060;900;1283;750;1185;1517;1350;1300;800;1900;1300;1300;1300;1300;1100;6000;2200;1150;1150;1150;1150;1150;1150;1150;1150;1150;1150;1209;1607;2081;3467;3461;2460;2768;2445;3281;3668;4363;4671;4828;5852;4767;2214;3834;164;59;1352;749;3635;4304;4174;4244;3929.61;1645;1677;2324;3728;1365;1365 -183;'642;Romania;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;345500;1605500;1611000;1581000;1697000;1901000;2102000;2412000;1575000;1564000;1587000;2142028;2807360;3232390;2658257;2547770;2631927;2630000;2530000;2608730;2528754;2589015;2906261;3252066;3252100;3252100 -183;'642;Romania;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;500;100;0;1400;1000;1000;3231;2700;3200;6700;4471;7358;7962;7611;7772;8106;4941;18942;135983;238995;271908;261013;353926;192853;192853 -183;'642;Romania;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;183;171;40;89;217;297;382;571;588;767;1965;416;677;1531;614;583;716;715;1281;5353.27;12837;12140;11549;17872;17292;17292 -183;'642;Romania;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;800;5000;6800;19000;22078;106000;142500;120000;188900;239305;371943;1561640;207020;283700;313253;291067;32888;9439;10514;12471;11675;8754;6104;6104 -183;'642;Romania;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;38;49;392;585;969;2291;3029;9426;11687;14000;24845;41163;112908;10963;17565;16420;13233;1864;829.23;887;1328;787;547;725;725 -183;'642;Romania;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;500;1000;1000;1000;1000;1000;87000;120000;110000;568000;409667;464950;577028;611280;481982;486654;330000;330000;523449;504823;140000;125705;160512;160500;160500 -183;'642;Romania;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8500;11400;5000;500;200;300;0;0;1000;0;0;2231;200;200;1500;564;288;1372;2611;3885;1557;928;15905;123177;186063;193238;219046;273985;119496;119496 -183;'642;Romania;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;336;425;190;19;15;42;9;5;78;59;64;79;95;85;989;56;32;90;150;234;306;309;783;4664.65;10369;8436;9536;13506;9471;9471 -183;'642;Romania;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;0;0;0;700;200;200;0;0;0;0;78;80000;66000;52000;81800;25597;12844;96440;197020;249615;299853;277012;21414;3794;3601;3378;3156;262;1398;1398 -183;'642;Romania;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;24;31;30;2;7;10;24;21;1807;1371;3152;4067;2274;1112;5243;10218;15004;15619;12749;1396;553.04;573;470;154;74;262;262 -183;'642;Romania;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600000;620000;620000;654000;345000;1605000;1610000;1580000;1696000;1900000;2101000;2325000;1455000;1454000;1019000;1732361;2342410;2655362;2046977;2065788;2145273;2300000;2200000;2085281;2023931;2449015;2780556;3091554;3091600;3091600 -183;'642;Romania;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3359;6670;0;0;0;0;200;200;100;0;400;1000;1000;1000;2500;3000;5200;3907;7070;6590;5000;3887;6549;4013;3037;12806;52932;78670;41967;79941;73357;73357 -183;'642;Romania;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104;236;0;0;0;0;168;129;31;84;139;238;318;492;493;682;976;360;645;1441;464;349;410;406;498;688.62;2468;3704;2013;4366;7821;7821 -183;'642;Romania;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1524;30;0;0;0;0;0;0;800;5000;6800;19000;22000;26000;76500;68000;107100;213708;359099;1465200;10000;34085;13400;14055;11474;5645;6913;9093;8519;8492;4706;4706 -183;'642;Romania;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92;1;0;0;0;0;3;8;47;385;575;945;2270;1222;8055;8535;9933;22571;40051;107665;745;2561;801;484;468;276.19;314;858;633;473;463;463 -183;'642;Romania;1605;Sawdust (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5703;5703 -183;'642;Romania;1605;Sawdust (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;730;730 -183;'642;Romania;1605;Sawdust (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3510;3510 -183;'642;Romania;1605;Sawdust (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;287;287 -183;'642;Romania;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;170000;175000;210000;240000;250000;55151;55151 -183;'642;Romania;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0 -183;'642;Romania;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0 -183;'642;Romania;1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0 -183;'642;Romania;1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0 -183;'642;Romania;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;450000;690000;730000;730000;900000;800000;800000;800000;750000;686140;666316;666316 -183;'642;Romania;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3225;7704;4575;8701;17341;58812;62238;74783;53818;85141;78865;78865 -183;'642;Romania;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;633;1774;1145;1483;2652;8821.31;8944;9339;8226;17591;23188;23188 -183;'642;Romania;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;336702;541617;500230;394909;320479;216261;182226;267103;417145;456492;426324;426324 -183;'642;Romania;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65755;121726;109187;63190;48057;36683.89;35801;48675;73558;78036;109610;109610 -183;'642;Romania;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;340000;520000;550000;550000;700000;600000;600000;600000;550000;530177;510353;510353 -183;'642;Romania;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1125;6147;2820;8147;13830;32255;35149;37280;41847;73562;63232;63232 -183;'642;Romania;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;273;1505;798;1375;2215;5515.38;5861;6216;6589;15422;19361;19361 -183;'642;Romania;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;276702;456608;412920;323325;261106;182922;139451;240202;388346;424780;396107;396107 -183;'642;Romania;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54508;105877;91958;53973;40848;31794.6;28285;44459;69027;72805;99897;99897 -183;'642;Romania;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110000;170000;180000;180000;200000;200000;200000;200000;200000;155963;155963;155963 -183;'642;Romania;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2100;1557;1755;554;3511;26557;27089;37503;11971;11579;15633;15633 -183;'642;Romania;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;360;269;347;108;437;3305.93;3083;3123;1637;2169;3827;3827 -183;'642;Romania;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60000;85009;87310;71584;59373;33339;42775;26901;28799;31712;30217;30217 -183;'642;Romania;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11247;15849;17229;9217;7209;4889.29;7516;4216;4531;5231;9713;9713 -183;'642;Romania;1872;Sawnwood;5516;Production;m3;4426000;4566000;4783000;4842000;5199000;5527000;5460000;5389000;5404000;5441000;5674000;5587000;5373000;4955000;4757000;4406000;4359000;4562000;4737000;4677000;4500000;4568000;4878000;4868000;4425000;3538000;2858000;2758000;2850000;2911000;2233000;2460000;2460000;1727000;1777000;1693000;1861000;2200000;2818000;3395700;3059000;3696000;4246000;4588000;4321000;3476000;4143000;3793900;3597780;4323000;4441808;5500000;5532300;5404000;6299709;6039000;5688353;5666833;5716700;6195495;5245960;4650000;4100000 -183;'642;Romania;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;1500;2600;53000;62000;62000;210000;230000;220000;230000;167000;53;344;344;20407;6233;1700;2600;2200;3700;3000;4500;7500;13000;11000;15000;21000;29000;48000;47000;48950;48029;42904;53193;47318;46038;80189;142157;334587;383469;547344;448768;416512;320566;332867;262000 -183;'642;Romania;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;250;540;9500;11200;11200;38000;41600;40000;42000;30600;11;114;114;5372;2454;670;1120;866;2056;1585;1549;2784;3727;4189;4854;8996;10663;16150;21053;15915;24426;21837;23058;27526;29469;38570;43824;83535;101412.18;146069;117746;102650;122122;137339;82397 -183;'642;Romania;1872;Sawnwood;5916;Export quantity;m3;1577700;1568000;1951400;2056200;2062700;2327400;2306900;2188500;1982300;2024900;2157000;2039300;1335400;1154900;1553900;1214500;1057900;1297100;942300;1003000;1152000;1145000;1193000;1121000;770000;750000;685000;788000;796158;789359;308646;333442;426259;670000;746000;887000;1242000;1543000;1917200;2322400;1842000;2187000;2609000;2840000;2310000;2351000;2384000;1910350;2259290;2895944;3058912;3225382;3334218;3253080;2741432;2032256;1901949;1788524;1727183;1930501;2113906;1714767;1440000 -183;'642;Romania;1872;Sawnwood;5922;Export value;1000 USD;62520;71250;84350;91200;92000;102700;99784;95285;91315;102100;111138;138000;119000;157800;180000;146362;126700;150700;147000;211000;239600;233500;244660;232900;155300;154000;142000;161300;149580;114132;84787;93148;108543;154260;166115;201775;245195;253708;309739;364334;321462;365549;427272;521530;506485;552441;638912;548439;544243;698512;810324;852608;940209;911210;698282;533681;535252;551518;492932;527551;772492;666349;465808 -183;'642;Romania;1632;Sawnwood, coniferous;5516;Production;m3;2895000;2916000;2789500;2786500;3012000;3176000;3011500;2834500;2765000;2830000;2986000;2956000;2729500;2374000;2303500;1896500;1879500;2030500;2138500;2171000;2012500;1898000;1879000;1799000;1668000;1409000;1329000;1279000;1673000;1357000;1019000;860000;860000;867000;877000;924000;1115000;1456000;1845000;2076500;1805000;2264000;2696000;2808000;2584000;1832000;2159000;2202100;2087335;2713000;2900403;3400000;3739300;3704000;4599709;4339000;4088353;4066833;4116700;4580495;3545960;3200000;2900000 -183;'642;Romania;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;1500;2600;53000;62000;62000;210000;230000;220000;230000;167000;53;344;344;7488;282;700;600;1000;1700;1000;1000;1400;4000;1000;3000;4000;12000;25000;25000;39900;16500;10404;14426;15646;15915;25189;88665;242405;308069;473642;377115;366656;253492;264254;199000 -183;'642;Romania;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;250;540;9500;11200;11200;38000;41600;40000;42000;30600;11;114;114;612;68;115;108;259;237;239;157;308;654;405;672;1097;2792;6207;5912;7837;3547;2940;3020;4197;4696;6201;14708;42124;60932.79;99541;74686;73190;82062;91613;47606 -183;'642;Romania;1632;Sawnwood, coniferous;5916;Export quantity;m3;978600;987300;1322050;1434200;1417400;1625000;1580700;1394700;1237600;1273900;1395200;1409100;773000;626300;1016100;700000;612900;826100;548000;572000;710000;768000;773000;682000;550000;540000;480000;578000;586158;579359;98646;220503;248559;430000;494000;556000;917000;1210000;1494200;1676500;1344000;1584000;2001000;2086000;1612000;1576000;1668000;1249800;1593710;2202750;2324297;2475381;2608625;2500000;1935656;1404873;1259464;1224967;1192946;1428861;1571390;1253541;989000 -183;'642;Romania;1632;Sawnwood, coniferous;5922;Export value;1000 USD;34710;34825;46275;50200;50000;57000;55384;48351;47345;55800;60345;76500;64000;73800;96500;66480;57700;77700;86000;104000;130000;140000;140500;124000;100700;99000;88000;106000;94280;58832;29487;55091;51892;72309;87322;98281;140145;157846;180644;194626;157061;185409;240968;287804;277003;316464;409151;293751;331461;496352;582138;600216;687710;633406;418179;306479;296035.86;319969;278314;329239;524472;424247;258017 -183;'642;Romania;1633;Sawnwood, non-coniferous;5516;Production;m3;1531000;1650000;1993500;2055500;2187000;2351000;2448500;2554500;2639000;2611000;2688000;2631000;2643500;2581000;2453500;2509500;2479500;2531500;2598500;2506000;2487500;2670000;2999000;3069000;2757000;2129000;1529000;1479000;1177000;1554000;1214000;1600000;1600000;860000;900000;769000;746000;744000;973000;1319200;1254000;1432000;1550000;1780000;1737000;1644000;1984000;1591800;1510445;1610000;1541405;2100000;1793000;1700000;1700000;1700000;1600000;1600000;1600000;1615000;1700000;1450000;1200000 -183;'642;Romania;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12919;5951;1000;2000;1200;2000;2000;3500;6100;9000;10000;12000;17000;17000;23000;22000;9050;31529;32500;38767;31672;30123;55000;53492;92182;75400;73702;71653;49856;67074;68613;63000 -183;'642;Romania;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4760;2386;555;1012;607;1819;1346;1392;2476;3073;3784;4182;7899;7871;9943;15141;8078;20879;18897;20038;23329;24773;32369;29116;41411;40479.39;46528;43060;29460;40060;45726;34791 -183;'642;Romania;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;599100;580700;629350;622000;645300;702400;726200;793800;744700;751000;761800;630200;562400;528600;537800;514500;445000;471000;394300;431000;442000;377000;420000;439000;220000;210000;205000;210000;210000;210000;210000;112939;177700;240000;252000;331000;325000;333000;423000;645900;498000;603000;608000;754000;698000;775000;716000;660550;665580;693194;734615;750001;725593;753080;805776;627383;642485;563557;534237;501640;542516;461226;451000 -183;'642;Romania;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;27810;36425;38075;41000;42000;45700;44400;46934;43970;46300;50793;61500;55000;84000;83500;79882;69000;73000;61000;107000;109600;93500;104160;108900;54600;55000;54000;55300;55300;55300;55300;38057;56651;81951;78793;103494;105050;95862;129095;169708;164401;180140;186304;233726;229482;235977;229761;254688;212782;202160;228186;252392;252499;277804;280103;227202;239216.14;231549;214618;198312;248020;242102;207791 -183;'642;Romania;1634;Veneer sheets;5516;Production;m3;15400;22200;23000;19300;19600;24400;27700;34700;37500;39800;42500;43800;44800;47900;52700;57000;63000;67000;67000;70000;72000;79000;79000;79000;79000;79000;79000;79000;79000;50000;44000;35000;35000;50000;37000;36000;33000;25000;21000;19400;23000;28000;34000;38000;57000;85000;42000;36900;275000;273000;234000;148000;132000;110030;108727;117068;136536;121141;127776;118931;125720;125720;125720 -183;'642;Romania;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;100;1100;1900;3200;3100;1400;1400;2100;800;900;900;900;1000;1000;600;400;400;400;400;392;1762;1243;2069;1581;1581;1794;3818;5200;5100;5200;11200;8200;26800;9600;17500;19000;22000;44000;29833;19310;18350;11860;32987;16533;23123;15231;23769;27219;34840;31863;34492;34843;32731;23912;32382;36939;36939 -183;'642;Romania;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;33;433;700;1517;1317;1400;1400;1500;600;700;700;700;900;910;540;360;360;360;360;897;3116;1987;2634;2290;2290;2743;4663;8329;9050;9300;20618;17542;23172;20019;21923;30632;48249;64602;63670;45326;52681;32602;20944;33283;34223;32567;32495;34611;34208;29618;36572.35;41201;35990;26808;28909;34422;34422 -183;'642;Romania;1634;Veneer sheets;5916;Export quantity;m3;7600;13500;16400;18100;14000;15000;11400;21200;23900;19200;18300;5900;5000;3500;2800;3700;4100;3800;4300;3500;3000;3000;3000;3000;3000;22526;27538;20941;43664;11431;11431;2231;8752;1300;100;300;1100;2200;5000;7500;8000;18000;24000;38000;48000;54000;48000;30530;53566;42243;53008;56258;62304;70690;84224;85643;87187;82052;74443;58987;67230;66185;66185 -183;'642;Romania;1634;Veneer sheets;5922;Export value;1000 USD;1050;1800;2200;2400;2500;2700;1433;2650;2855;2500;2250;2800;2800;2000;2300;3000;3400;3150;3600;3500;3500;3500;3500;3500;3500;4447;6162;4668;11604;2916;2916;1040;1927;836;18;119;500;1561;2064;3410;4880;17163;30542;52664;64957;78359;97049;72900;90360;74458;89289;84621;91658;105819;96518;95184;108924.74;125606;115930;92110;115433;131288;131288 -183;'642;Romania;1873;Wood-based panels;5516;Production;m3;181000;298000;429000;551000;566000;595000;647000;695000;755900;829200;944200;1025400;1111800;1230500;1338500;1396000;1483000;1574000;1629000;1540000;1482000;1511000;1388000;1539000;1334000;1198000;1198000;1198000;1463000;1044000;804000;793000;793000;402000;400000;397000;384000;294000;301000;286900;419000;555000;731000;913000;954000;1291000;1221000;1880576;2047200;2757000;2958000;3874000;4810000;4780946;4991171;5420903;5181390;3888070;3963667;3812738;4457255;3626789;3626789 -183;'642;Romania;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30806;167;35130;41300;98400;96700;123000;180200;216000;300000;417400;418000;511000;669000;762000;1029000;920948;904286;603398;501056;479279;437031;413042;480329;627263;713719;701662;741195;841388;767978;750377;750377 -183;'642;Romania;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7032;136;8304;12194;18572;16876;29433;31782;44352;57900;84513;112881;166012;234742;299154;461804;436805;310456;258388;218668;195438;196662;216306;203339;242180;279630.57;314360;297451;307254;377344;406342;406342 -183;'642;Romania;1873;Wood-based panels;5916;Export quantity;m3;45200;68700;108400;157000;207700;206734;226615;227416;201121;190165;282054;299285;379538;344540;478738;483700;467500;503600;480500;438900;328000;315000;335000;185000;155000;290994;212199;201843;201823;39088;39088;158674;83083;146820;133000;101800;108600;78000;94200;145700;253000;431500;495000;654000;656000;878000;818000;877634;1028558;1640899;1630764;2095062;2686885;2644320;2631272;2549438;2373381;2257361;2329743;2460263;2517121;2042741;2042741 -183;'642;Romania;1873;Wood-based panels;5922;Export value;1000 USD;5250;7150;10650;15500;21200;21300;20968;19317;19640;19835;22200;24700;31260;45200;54300;56080;56350;58900;66600;84800;82100;81600;82400;51200;42800;51526;41872;47605;47597;9787;9787;34499;19776;33228;40237;32047;24093;29061;27810;32034;56358;81453;111335;175627;179358;241440;266996;251366;265930;676112;512188;596061;781375;768078;648085;614648;654658.03;717558;681735;675366;971126;927255;927255 -183;'642;Romania;1640;Plywood and LVL;5516;Production;m3;123000;171000;201000;229000;236000;251000;264000;271000;284600;291200;303700;264800;270800;284500;290500;295000;304000;308000;295000;291000;277000;283000;233000;248000;230000;220000;220000;220000;181000;123000;51000;100000;100000;97000;83000;83000;81000;76000;65000;71900;79000;90000;94000;117000;126000;188000;107000;152000;212000;266000;331000;472000;665000;622946;316171;285106;277190;72999;259553;238508;278829;226878;226878 -183;'642;Romania;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6469;32;1200;700;2600;2200;4200;8200;9800;9000;13000;14000;19000;26000;36000;37000;35100;23670;29758;34207;50602;58218;70876;77321;85638;111919;125895;123134;121628;127172;126385;126385 -183;'642;Romania;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2908;40;488;693;2203;917;1616;3758;3735;3809;5853;6756;11734;15352;25767;27645;24825;14094;13615;20256;27891;31335;38112;35590;36425;49447.78;60831;55095;54370;82104;92650;92650 -183;'642;Romania;1640;Plywood and LVL;5916;Export quantity;m3;38700;51600;67400;80300;112200;109000;119500;111800;109400;102800;127300;102600;123200;94800;108700;118000;125700;125100;131000;135000;110000;122000;100000;96000;70000;116140;92970;109916;100440;13131;13131;95568;52425;55000;57600;49000;55600;48000;41200;55000;57000;73000;80000;112000;109000;130000;80000;19200;77000;94000;113000;119457;141968;143790;159316;143476;134720;154269;175572;143869;150083;140377;140377 -183;'642;Romania;1640;Plywood and LVL;5922;Export value;1000 USD;5000;6500;8500;11300;15800;15300;15484;13817;13880;14100;13600;13100;16000;26000;27300;29600;31550;31400;33000;41000;34000;37700;31000;30000;22000;33919;27588;33505;33007;5778;5778;24614;12469;18532;23847;21117;12670;18596;16543;20088;22925;30091;37896;57406;59410;83290;65870;20281;52100;59000;74200;73417;91096;96152;91678;81397;78638.97;111879;113198;107878;118505;151731;151731 -183;'642;Romania;1607;Laminated Veneer Lumber (LVL);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -183;'642;Romania;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7172;21519 -183;'642;Romania;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6703;13368 -183;'642;Romania;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;718;32 -183;'642;Romania;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;644;53 -183;'642;Romania;1646;Particle board and OSB (1961-1994);5516;Production;m3;58000;103000;154000;194000;191000;200000;212000;243000;262900;314600;399500;505600;550000;648000;756000;784000;897000;960000;1031000;938000;896000;917000;864000;1001000;766000;480000;480000;480000;859000;581000;470000;430000;430000;241000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -183;'642;Romania;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22168;56;20000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -183;'642;Romania;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3521;43;3900;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -183;'642;Romania;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;6500;17100;31400;55400;65800;61300;65100;69600;45600;52300;119900;135400;164200;179400;305700;309900;280900;316500;302000;237000;156000;122000;174000;44000;45000;141043;88719;54685;69856;17281;17281;24333;2465;44000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -183;'642;Romania;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;250;650;1100;2000;2300;2400;2517;2350;1870;1900;4830;5980;8320;13000;20800;21080;19000;21500;29000;24000;31000;24300;34600;8800;8800;11981;8344;6853;8362;2243;2243;2458;586;7011;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -183;'642;Romania;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;228000;226000;229000;173000;157000;133000;134000;145000;364000;475000;483000;760000;775000;1371000;1255000;1640000;1743000;1908000;2384000;2450000;2595302;2900000;2800000;1663430;1595049;1468347;1716552;1396728;1396728 -183;'642;Romania;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30000;78600;82600;98200;143000;176600;227000;306900;321000;347000;398000;350000;457000;357986;324597;256178;113946;101285;75052;82234;92612;168461;203832;140742;198984;217077;182627;205643;205643 -183;'642;Romania;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8515;13192;13867;23029;23046;30579;39323;53219;66647;88563;107382;106433;159625;129259;64786;82512;38413;37526;33541;35502;30811;44183;54958.76;48731;59842;57269;63119;78934;78934 -183;'642;Romania;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16700;16200;12900;8000;8000;9500;18000;47300;191000;254000;211000;300000;310000;460167;417758;959793;937204;1014628;1309329;1283040;1169659;1092523;975354;985789;902906;903244;978879;753297;753297 -183;'642;Romania;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3898;3685;4067;5565;5786;4725;7604;6961;31417;55219;39273;59444;62021;90617;96419;400361;240720;235755;307423;310050;260291;243103;264081.89;278207;243082;230182;325443;314296;314296 -183;'642;Romania;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;110000;500000;480000;987000;1150000;1125000;1436698;1580323;1456610;1411671;1273464;1068186;1248759;1016093;1016093 -183;'642;Romania;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7800;13000;8600;38000;41700;18000;15000;43000;75000;144000;175462;120388;67583;62932;28283;16107;21144;40240;63983;81347;95764;107650;189136;117835;147093;147093 -183;'642;Romania;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2450;1153;3195;3485;4119;2860;4650;13161;25154;56930;68413;32937;22532;22635;9798;5880;7082;8955;13436;17964.33;28165;27973;41646;47203;53699;53699 -183;'642;Romania;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6800;10000;11200;4000;11500;11000;19000;15000;16000;7000;5567;57498;159177;136490;525442;777690;763030;837800;910772;884459;784358;809899;831711;778181;572112;572112 -183;'642;Romania;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1634;2633;1639;1229;6785;7348;9757;8042;8842;3823;2824;18576;92680;49085;140342;234914;216918;165951;177381;198617.71;217449;188874;179390;287343;209796;209796 -183;'642;Romania;1874;Fibreboard;5516;Production;m3;;24000;74000;128000;139000;144000;171000;181000;208400;223400;241000;255000;291000;298000;292000;317000;282000;306000;303000;311000;309000;311000;291000;290000;338000;498000;498000;498000;423000;340000;283000;263000;263000;64000;89000;88000;74000;45000;79000;82000;206000;320000;273000;321000;345000;343000;339000;357576;470200;351000;404000;507000;611000;583000;643000;655474;647590;739970;835601;1037697;1213115;987090;987090 -183;'642;Romania;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2169;79;13930;10600;17200;11900;12800;16000;21000;26000;55800;65000;130000;202000;301000;391000;352400;435631;249879;289971;299109;287654;238788;270156;309181;316621;339261;311427;313547;340344;271256;271256 -183;'642;Romania;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;603;53;3916;2986;3177;2092;2338;3825;6843;11283;21322;36618;61065;98847;141800;217604;214308;198639;139729;137364;120223;125906;135610;127983;148136;157259.7;176633;154541;153969;184918;181059;181059 -183;'642;Romania;1874;Fibreboard;5916;Export quantity;m3;;;9600;21300;29700;36434;42015;46016;46121;35065;34854;61285;92138;70340;64338;55800;60900;62000;47500;66900;62000;71000;61000;45000;40000;33811;30510;37242;31527;8676;8676;38773;28193;47820;58700;36600;40100;15200;35000;70000;174000;299700;213000;269000;321000;432000;421000;392700;476302;427929;444070;435535;457898;454460;464497;402667;378848;332945;441366;581439;609978;576955;576955 -183;'642;Romania;1874;Fibreboard;5922;Export value;1000 USD;;;1050;2200;3100;3600;2967;3150;3890;3835;3770;5620;6940;6200;6200;5400;5800;6000;4600;19800;17100;19600;16800;12400;12000;5626;5940;7247;6228;1766;1766;7427;6721;7685;12492;7245;7356;3266;2848;5582;24600;37616;34674;53245;72633;89864;135282;137644;98835;124071;148183;146547;147942;144958;130165;112767;113319.46;110023;136581;157916;239835;251432;251432 -183;'642;Romania;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65000;60000;52000;31000;35000;20000;20000;15000;20000;47000;51000;50000;0;0;200;1000;4000;1000;1000;1000;1000;785;0;0;0;103133;120563;98100;98100 -183;'642;Romania;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7300;11100;4900;7500;4000;10000;19000;42800;41000;62000;97000;162000;170000;156000;162500;114789;118612;109159;130364;142974;166287;165899;154422;130929;120533;122914;125560;128385;128385 -183;'642;Romania;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1669;1579;899;1198;2278;4950;8187;16062;28404;41888;60572;87650;142383;133214;108539;69921;77597;63141;75920;82867;80705;84525;84097.76;76987;66536;65917;75436;90531;90531 -183;'642;Romania;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55300;33100;34800;12000;14000;15000;13000;13700;15000;17000;43000;66000;76000;76700;72500;89502;97900;90362;91436;85340;68676;60170;68334;51187;45347;61155;71021;42783;42783 -183;'642;Romania;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11918;6423;6452;2418;1944;2041;1899;2101;2582;4395;20792;33365;42559;52754;34054;42961;48617;49050;51208;48373;39710;34493;38606.9;33090;28559;37621;48000;32361;32361 -183;'642;Romania;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20000;24000;18000;10000;16000;38000;174000;301000;250000;270000;290000;289000;339000;357576;470000;350000;400000;506000;610000;582000;642000;650000;615490;709170;800821;932415;1090039;886945;886945 -183;'642;Romania;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2500;4900;4000;1500;2000;3000;5000;8000;15000;59000;88000;114000;144000;163200;196331;115000;132499;123831;126944;90979;98646;131102;156821;199560;184156;185739;204441;125254;125254 -183;'642;Romania;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845;1257;565;297;500;644;1524;3080;5367;15875;33979;48245;62173;73484;75952;65744;52560;45361;44525;50118;45273;59070;71327.13;96071;85250;86299;106560;83285;83285 -183;'642;Romania;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;700;400;3500;600;1000;31000;156000;284000;196000;250000;272000;356000;333000;300000;395002;336000;344000;343000;362000;367000;394823;341861;309257;280669;394901;519332;538036;528822;528822 -183;'642;Romania;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102;110;546;26;205;2500;21692;34780;31270;48199;50344;54224;89953;82382;63104;80810;99098;96821;95509;95936;89783;77804;73626.74;76039;106987;119595;191107;215670;215670 -183;'642;Romania;1650;Other fibreboard;5516;Production;m3;;;4000;9000;10000;10000;10000;11000;11000;10000;11000;10000;10000;9000;11000;11000;10000;10000;104000;103000;107000;113000;105000;105000;105000;156000;156000;156000;156000;156000;156000;156000;156000;2000;4000;4000;4000;4000;28000;24000;12000;4000;3000;4000;4000;4000;0;0;0;0;0;0;0;0;0;4689;32100;30800;34780;2149;2513;2045;2045 -183;'642;Romania;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;542;19;400;800;1200;3000;3800;10000;8000;2000;5000;9000;9000;17000;25000;77000;33200;76800;20090;38860;66119;30346;4835;5223;12180;5378;8772;6738;4894;10343;17617;17617 -183;'642;Romania;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;158;9;286;472;341;628;843;1047;1249;1572;2180;2847;3302;4296;5905;13048;7610;14148;4064;7207;11721;5461;2625;2005;4541;1834.81;3575;2755;1753;2922;7243;7243 -183;'642;Romania;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6300;11701;1600;2700;3100;1800;2600;20000;24000;5000;2000;2000;2000;6000;10000;12000;16000;8800;2427;2170;2173;4462;2120;998;636;1257;1089;1118;952;921;5350;5350 -183;'642;Romania;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;885;2882;331;472;712;358;822;699;1041;1009;735;822;651;1497;2275;2770;2508;1677;300;468;676;1225;649;672;470;1085.81;894;1035;700;728;3401;3401 -183;'642;Romania;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;;24000;70000;119000;129000;134000;161000;170000;197400;213400;230000;245000;281000;289000;281000;306000;272000;296000;199000;208000;202000;198000;186000;185000;233000;342000;342000;342000;267000;184000;127000;107000;107000;62000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -183;'642;Romania;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1627;60;13530;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -183;'642;Romania;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;445;44;3630;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -183;'642;Romania;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;9600;21300;29700;36434;42015;46016;46121;35065;34854;61285;92138;70340;64338;55800;60900;62000;47500;66900;62000;71000;61000;45000;40000;33811;30510;37242;31527;8676;8676;32473;16492;46220;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -183;'642;Romania;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;1050;2200;3100;3600;2967;3150;3890;3835;3770;5620;6940;6200;6200;5400;5800;6000;4600;19800;17100;19600;16800;12400;12000;5626;5940;7247;6228;1766;1766;6542;3839;7354;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -183;'642;Romania;1879;Total fibre furnish;5510;Production;t;190900;224600;270200;300000;321000;369000;433600;473000;479000;596000;666000;686000;687000;785000;886000;886000;860000;939000;904000;895000;895000;847000;847000;729000;729000;749000;749000;781000;694000;630000;512000;513000;513000;304000;410000;372000;363000;308000;290700;388600;422000;447000;512000;524000;459000;408000;464000;373138;315000;300000;350000;410000;450000;491420;492000;490000;607000;500000;600000;550000;600000;600000;600000 -183;'642;Romania;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;36200;32000;46600;63300;71100;75700;64100;60700;58400;60000;60000;95000;96000;99000;71000;71000;71000;71000;71000;71000;71000;71000;71000;71000;48001;27253;23230;16618;3600;15500;24200;1900;3800;15100;25600;37000;14000;22002;21355;34446;34110;73303;78003;75254;87212;104718;118838;127454;182584;178007;238634;230376;194921;188396;188972;188972 -183;'642;Romania;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;5867;5500;9200;12900;14464;17520;16500;22300;21600;22500;22500;35800;43600;60000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;26586;13990;11954;14317;1076;6425;5157;1137;1398;3192;8690;11974;4969;9267;10531;21577;22714;40686;60280;55164;52742;68739;78197;78840;90167;99284.71;135104;101223;81078;107056;138938;138938 -183;'642;Romania;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;39300;39700;32400;32300;41900;44700;60500;60600;55900;36400;33800;31400;26000;17000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3087;3065;1704;4000;4100;3000;2500;10200;31200;27300;30100;51800;36000;20000;15000;23003;13721;70826;76413;93889;118685;110784;108600;122580;140363;182221;141541;139038;163670;188090;170954;170954 -183;'642;Romania;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;5417;5650;5685;6535;8770;11280;14800;14700;13500;8800;8100;7600;12000;8000;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1439;1426;670;3010;2100;1438;1041;5716;16640;8545;9952;17021;12712;6632;2101;5991;3994;9374;14795;22607;19610;19440;21491;20235;23729;32848.15;26088;28748;28977;49677;43586;43586 -183;'642;Romania;1878;Pulp for paper;5510;Production;t;190900;224600;270200;300000;321000;369000;433600;473000;479000;456000;521000;536000;537000;625000;689000;689000;663000;742000;727000;712000;691000;649000;649000;649000;649000;649000;649000;649000;575000;432000;314000;315000;315000;221000;295000;247000;248000;217000;200700;292600;268000;274000;290000;262000;161000;150000;169000;42438;15000;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -183;'642;Romania;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;36200;32000;46600;63300;71100;75700;64100;60700;58400;60000;60000;95000;96000;99000;71000;71000;71000;71000;71000;71000;71000;71000;71000;71000;46034;27242;22330;14918;1900;9300;8200;1900;3800;5100;12000;15000;6000;14002;15355;28446;27210;68005;74142;71818;81303;99512;116338;122031;167908;152679;156429;133326;141540;138626;153023;153023 -183;'642;Romania;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;5867;5500;9200;12900;14464;17520;16500;22300;21600;22500;22500;35800;43600;60000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;26318;13989;11897;14163;922;5797;3611;1137;1398;2307;7156;8457;4036;8202;9605;20634;21391;39490;59246;53815;51008;66862;77142;77423;87191;93918.98;122165;87839;72855;94263;129216;129216 -183;'642;Romania;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;39300;39700;32400;32300;41900;44700;60500;60600;55900;36400;33800;31400;26000;17000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3041;3041;1104;4000;4100;2700;2300;9900;31200;25400;30100;48800;32000;15000;2000;9003;4321;8706;1289;3942;797;138;1650;124;36;1516;991;14495;16314;9206;2384;2384 -183;'642;Romania;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;5417;5650;5685;6535;8770;11280;14800;14700;13500;8800;8100;7600;12000;8000;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1425;1425;592;3010;2100;1399;983;5716;16640;8372;9888;16670;12214;6075;873;4269;2585;3354;1068;2605;445;99;1251;141;53;1034.06;332;8433;7305;7176;2380;2380 -183;'642;Romania;1875;Wood pulp;5510;Production;t;157400;169000;204600;229000;241000;279000;378600;417500;438000;401000;464000;472000;504000;593000;668000;668000;639000;723000;723000;741000;701000;673000;673000;673000;673000;673000;673000;673000;619000;481000;363000;364000;364000;220000;298000;249000;248000;217000;201000;292700;268000;274000;290000;262000;161000;150000;169000;42438;15000;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -183;'642;Romania;1875;Wood pulp;5610;Import quantity;t;;;;;;;;36200;32000;46600;63300;71100;75700;64100;60700;58400;60000;60000;95000;96000;99000;71000;71000;71000;71000;71000;71000;71000;71000;71000;71000;47318;38571;30232;17618;4600;12800;15100;1900;3800;5100;12000;15000;6000;14022;15155;27646;24914;67438;73873;71555;80944;99069;115777;121552;167044;151600;155603;132599;140950;138120;152222;152222 -183;'642;Romania;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;5867;5500;9200;12900;14464;17520;16500;22300;21600;22500;22500;35800;43600;60000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;26627;21443;16964;17101;3860;7850;8126;1212;1381;2295;7143;8433;3883;8220;9218;19925;19113;38813;58856;53414;50560;66383;76293;76798;86432;93172.33;120935;86721;71686;93320;128238;128238 -183;'642;Romania;1875;Wood pulp;5910;Export quantity;t;;;;;;;;39300;39700;32400;32300;41900;44700;60500;60600;55900;36400;33800;31400;26000;17000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;1084;4000;4100;2700;2300;9900;31200;25400;30100;48800;32000;15000;2000;9000;4312;8700;1280;3926;779;124;1640;109;6;1508;986;14492;16311;9202;2363;2363 -183;'642;Romania;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;5417;5650;5685;6535;8770;11280;14800;14700;13500;8800;8100;7600;12000;8000;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;551;3010;2100;1399;983;5716;16634;8372;9888;16670;12214;6075;873;4266;2580;3346;1057;2577;416;78;1228;113;9;1032.44;322;8427;7299;7061;2252;2252 -183;'642;Romania;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -183;'642;Romania;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;212;1360;1700;299;117;155;155 -183;'642;Romania;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;136.44;491;599;172;65;121;121 -183;'642;Romania;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;985;427;0;0;37;37 -183;'642;Romania;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.15;320;129;0;0;35;35 -183;'642;Romania;1654;Mechanical wood pulp (1961-2016);5510;Production;t;61700;63200;65000;67000;68000;59000;69200;62000;61000;61000;68000;68000;63000;63000;61000;61000;83000;82000;99000;98000;100000;93000;93000;93000;93000;93000;93000;93000;82000;100000;70000;70000;70000;43000;38000;23000;28000;30000;23500;35200;36000;30000;29000;25000;27000;31000;13000;0;0;0;0;0;0;0;0;0;;;;;;; -183;'642;Romania;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;100;0;0;0;0;0;0;1;2;1;200;1;0;0;10;104;195;;;;;;; -183;'642;Romania;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;2;4;34;0;0;1;157;0;0;11;3;2;390;1;0;0;10;57;114;;;;;;; -183;'642;Romania;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;194;0;0;0;0;0;0;;;;;;; -183;'642;Romania;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;366;0;0;0;0;0;0;;;;;;; -183;'642;Romania;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;23000;38000;34000;34000;46000;45000;30000;35000;30000;24000;24000;24000;24000;24000;24000;24000;15000;12000;27000;27000;27000;39000;46000;29000;47000;36000;33700;50000;44000;44000;49000;50000;31000;29000;37000;17100;5000;0;0;0;0;0;0;0;;;;;;; -183;'642;Romania;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;0;0;0;0;0;0;0;0;0;2;65;145;6;393;48;278;321;2;40;1;147;;;;;;; -183;'642;Romania;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;0;0;2;4;0;1;2;1;1;1;30;77;7;421;35;196;201;2;1;7;75;;;;;;; -183;'642;Romania;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;;;;;;; -183;'642;Romania;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;;;;;;; -183;'642;Romania;1656;Chemical wood pulp;5510;Production;t;95700;104800;138600;162000;173000;220000;263600;311000;332000;297000;349000;364000;357000;421000;510000;510000;450000;531000;529000;533000;503000;482000;482000;482000;482000;482000;482000;482000;448000;295000;192000;193000;193000;135000;210000;194000;172000;151000;143500;207400;188000;200000;212000;187000;103000;90000;119000;25338;10000;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -183;'642;Romania;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;36200;32000;46600;63300;71100;75700;64100;60700;58400;60000;60000;95000;96000;99000;71000;71000;71000;71000;71000;71000;71000;71000;71000;71000;34403;25656;21912;14100;1100;6900;8100;1800;3700;5100;12000;15000;6000;14000;15090;27300;24900;67036;73622;71276;80623;99067;115698;121447;166702;151388;154243;130899;140651;137981;152007;152007 -183;'642;Romania;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;5867;5500;9200;12900;14464;17520;16500;22300;21600;22500;22500;35800;43600;60000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;18336;13152;11629;13939;709;3925;3493;1050;1345;2294;7141;8431;3721;8201;9188;19819;19090;38373;58425;53217;50359;66381;76281;76730;86240;93035.88;120444;86122;71514;93148;127875;127875 -183;'642;Romania;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;39300;39700;32400;32300;41900;44700;60500;60600;55900;36400;33800;31400;26000;17000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;1084;4000;4100;2700;2300;9900;31200;25400;30100;48800;32000;15000;2000;9000;4311;8700;1086;3926;779;124;1640;109;6;1502;1;14065;16311;9202;2326;2326 -183;'642;Romania;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;5417;5650;5685;6535;8770;11280;14800;14700;13500;8800;8100;7600;12000;8000;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;1400;551;3010;2100;1399;983;5716;16634;8372;9888;16670;12214;6075;873;4266;2572;3346;691;2577;416;78;1228;113;9;1027.29;2;8298;7299;7061;2217;2217 -183;'642;Romania;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;;;104800;110000;120000;126000;140000;141000;153000;171000;190000;190000;167000;198000;195000;191000;184000;194000;194000;194000;194000;194000;194000;194000;181000;106000;68000;69000;69000;43000;93000;83000;77000;75000;66000;83300;90000;111000;124000;116000;41000;35000;75000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -183;'642;Romania;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;484;400;0;0;1000;0;0;200;0;0;0;0;60;2000;2500;5753;3573;1560;2619;3706;2108;1586;1681;5981;2455;1913;1641;5204;1612;1612 -183;'642;Romania;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;191;383;0;0;401;0;0;48;11;0;0;0;43;1657;1964;3037;2244;1205;1709;2506;1416;973;1062;3711.47;2064;1327;1061;3800;1207;1207 -183;'642;Romania;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1300;4100;3400;8100;14300;14000;6000;1000;4000;700;4000;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -183;'642;Romania;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;498;1910;913;2333;3820;4221;2153;426;1983;423;1569;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -183;'642;Romania;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;49700;95000;95000;61000;88000;101000;85000;138000;180000;180000;159000;188000;200000;218000;202000;189000;189000;189000;189000;189000;189000;189000;176000;119000;65000;65000;65000;44000;75000;75000;61000;46000;56300;91600;75000;82000;88000;71000;62000;55000;44000;25338;6000;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -183;'642;Romania;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;71000;71000;71000;71000;71000;71000;33578;24800;16348;12900;0;6100;5800;1700;3400;4600;12000;14000;6000;13000;14000;25000;21900;60983;69395;68944;77229;95103;113300;119488;164616;144939;151352;128516;138489;131328;145884;145884 -183;'642;Romania;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;43000;43000;43000;43000;43000;43000;17836;12774;8880;12703;0;3281;2633;692;985;1852;6610;7547;3090;7090;8134;17678;16415;34951;55373;51219;48203;63460;74333;75188;84541;88560.93;117632;83953;69528;87491;122132;122132 -183;'642;Romania;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;3000;3000;3000;1084;4000;4100;2700;2300;8600;26900;22000;22000;34500;18000;9000;1000;5000;3600;4700;1086;3422;777;95;1530;89;0;1500;0;13948;16310;9202;2321;2321 -183;'642;Romania;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1400;1400;1400;1400;551;3010;2100;1399;983;5218;14592;7438;7555;12850;7993;3922;447;2283;2107;1777;691;2264;415;56;1147;74;0;1023.55;0;7928;7297;7061;2191;2191 -183;'642;Romania;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -183;'642;Romania;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;468;436;470;521;1449;4511;4511 -183;'642;Romania;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;763.48;748;842;925;1857;4536;4536 -183;'642;Romania;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1;117;1;0;5;5 -183;'642;Romania;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.73;2;370;2;0;26;26 -183;'642;Romania;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;;;57100;54000;60000;50000;67000;60000;59000;53000;62000;62000;55000;64000;74000;71000;73000;68000;68000;68000;68000;68000;68000;68000;63000;54000;41000;41000;41000;36000;34000;26000;27000;27000;18600;27400;23000;7000;0;0;0;0;0;0;4000;0;0;0;0;0;0;0;;;;;;; -183;'642;Romania;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;255;618;657;500;0;100;0;0;0;0;0;0;0;0;30;0;0;0;0;0;0;0;0;0;0;;;;;;; -183;'642;Romania;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;159;211;434;475;0;63;0;0;0;0;0;0;0;0;147;0;0;0;0;0;0;0;0;0;0;;;;;;; -183;'642;Romania;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;;;;;;; -183;'642;Romania;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;;;;;;; -183;'642;Romania;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;;;52000;52000;57000;60000;54000;62000;60000;59000;78000;78000;69000;81000;60000;53000;44000;31000;31000;31000;31000;31000;31000;31000;28000;16000;18000;18000;18000;12000;8000;10000;7000;3000;2600;5100;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -183;'642;Romania;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;570;192;4423;300;1100;700;1300;100;300;300;0;1000;0;1000;1000;300;500;300;654;772;775;258;290;373;405;;;;;;; -183;'642;Romania;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;341;152;2124;378;709;581;459;358;360;394;520;884;631;1111;864;484;711;385;808;793;447;415;532;569;637;;;;;;; -183;'642;Romania;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;200;0;0;0;0;0;0;0;11;0;0;504;2;29;110;20;6;;;;;;; -183;'642;Romania;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;132;21;0;0;0;0;0;0;42;0;0;313;1;22;81;39;9;;;;;;; -183;'642;Romania;1667;Dissolving wood pulp;5510;Production;t;;1000;1000;;;;45800;44500;45000;43000;47000;40000;61000;71000;63000;63000;60000;65000;65000;75000;68000;74000;74000;74000;74000;74000;74000;74000;74000;74000;74000;74000;74000;3000;4000;3000;1000;0;300;100;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -183;'642;Romania;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12915;12915;8302;3500;3500;5900;7000;100;0;0;0;0;0;20;0;200;6;8;3;0;0;0;29;0;0;0;0;0;0;22;60;60 -183;'642;Romania;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8291;8291;5324;3151;3151;3925;4629;154;2;0;0;0;4;18;0;18;13;17;6;0;0;0;1;4;3;0;0;0;0;107;242;242 -183;'642;Romania;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -183;'642;Romania;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;8;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -183;'642;Romania;1668;Pulp from fibres other than wood;5510;Production;t;33500;56600;66600;71000;80000;90000;100800;100000;86000;98000;104000;104000;94000;103000;84000;84000;84000;84000;69000;46000;58000;50000;50000;50000;50000;50000;50000;50000;30000;25000;25000;25000;25000;4000;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 -183;'642;Romania;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11631;1586;400;800;800;2400;100;100;0;0;0;0;0;0;200;1000;2302;575;272;263;359;443;590;479;864;1079;826;727;590;528;861;861 -183;'642;Romania;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7982;837;257;213;213;1872;114;79;19;12;13;24;157;0;387;727;2291;694;396;401;448;479;850;629;762;746.65;1230;1118;1169;1050;1220;1220 -183;'642;Romania;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;41;20;0;0;0;0;0;0;0;0;0;0;0;0;3;10;6;9;16;18;14;10;15;30;8;5;3;3;4;21;21 -183;'642;Romania;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;41;0;0;0;0;0;6;0;0;0;0;0;0;3;13;8;11;28;29;21;23;28;44;1.62;10;6;6;115;128;128 -183;'642;Romania;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;200;1100;0;0;1000;1000;3000;2000;2500;3681;1912;2748;3585;3070;1960;2149;2273;5227;8589;3971;5759;10137;8526;8526 -183;'642;Romania;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;5;116;588;222;288;773;650;1503;1319;1798;2369;1184;2203;2686;2200;1459;1300;1418;1787.06;1772;2305;2939;3936;3350;3350 -183;'642;Romania;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;2;0;2;0;5;0;13;49;200;118;65;0;0;10;10;59;107;107 -183;'642;Romania;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;1;0;4;0;4;0;11;47;201;96;52;0;0;7;8;52;91;91 -183;'642;Romania;1669;Recovered paper;5510;Production;t;;;;;;;;;;140000;145000;150000;150000;160000;197000;197000;197000;197000;177000;183000;204000;198000;198000;80000;80000;100000;100000;132000;119000;198000;198000;198000;198000;83000;115000;125000;115000;91000;90000;96000;154000;173000;222000;262000;298000;258000;295000;330700;300000;300000;350000;410000;450000;491420;492000;490000;607000;500000;600000;550000;600000;600000;600000 -183;'642;Romania;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1967;11;900;1700;1700;6200;16000;0;0;10000;13600;22000;8000;8000;6000;6000;6900;5298;3861;3436;5909;5206;2500;5423;14676;25328;82205;97050;53381;49770;35949;35949 -183;'642;Romania;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;268;1;57;154;154;628;1546;0;0;885;1534;3517;933;1065;926;943;1323;1196;1034;1349;1734;1877;1055;1417;2976;5365.73;12939;13384;8223;12793;9722;9722 -183;'642;Romania;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;24;600;0;0;300;200;300;0;1900;0;3000;4000;5000;13000;14000;9400;62120;75124;89947;117888;110646;106950;122456;140327;180705;140550;124543;147356;178884;168570;168570 -183;'642;Romania;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;1;78;0;0;39;58;0;0;173;64;351;498;557;1228;1722;1409;6020;13727;20002;19165;19341;20240;20094;23676;31814.09;25756;20315;21672;42501;41206;41206 -183;'642;Romania;1876;Paper and paperboard;5510;Production;t;199300;100300;108100;109000;122000;135000;411300;485000;513000;525000;549000;563000;590000;628000;649000;649000;753000;794000;819000;822000;834000;802000;802000;806000;801000;811000;816000;819000;739000;547000;359000;359000;359000;288000;364000;332000;324000;301100;288900;339600;395000;370000;443000;454000;371000;432000;558000;421563;342000;364000;385500;402000;355000;423759;389954;425588;492008;586728;569068;503839;602144;606010;606010 -183;'642;Romania;1876;Paper and paperboard;5610;Import quantity;t;12700;13400;9500;11500;13100;20500;23300;28300;45500;53800;14100;33600;43800;54500;53500;60700;61400;53800;55000;50000;48000;51000;51000;50000;40000;40000;40000;40000;40000;40000;40000;10802;18338;41900;62300;76300;120200;132300;112800;147100;158900;193000;256000;321000;351000;268000;351000;355869;401678;429594;444107;527760;558127;564067;644928;667904;668377;673141;682565;683154;791536;832385;832385 -183;'642;Romania;1876;Paper and paperboard;5622;Import value;1000 USD;3095;3230;2180;2627;2867;4450;5750;6783;9620;12703;1967;5000;6500;17100;18700;25600;26600;22600;28400;28800;27400;30800;30800;30300;25000;25000;25000;25000;25000;25000;25000;8064;17189;41840;82884;79979;101410;130747;107233;119798;133875;157079;208179;274451;298506;211607;307985;355151;370338;380911;420927;497153;569375;522309;522780;531995;553572.99;630828;597548;572787;740669;925996;925996 -183;'642;Romania;1876;Paper and paperboard;5910;Export quantity;t;8900;4500;6500;9900;17000;25000;46300;71000;90400;105700;91400;85900;72300;107400;94800;152900;162000;181000;173000;178000;180000;156000;133000;137000;144000;144000;119584;114163;103631;126976;126976;15026;12931;64800;125300;80500;108800;87800;82500;115100;158100;182400;213420;225000;130245;121310;182200;101709;69857;93802;80683;105031;133312;132760;159636;177630;251979;305157;327619;311903;330482;366599;366599 -183;'642;Romania;1876;Paper and paperboard;5922;Export value;1000 USD;2070;1060;1230;2180;5040;7680;8267;11967;14860;19090;17210;16450;14260;29000;30400;49500;51900;58400;82900;101300;87600;94600;84700;86600;89600;90600;73007;73383;70174;83840;83840;10275;7793;26832;76377;48110;49323;36675;32067;47809;63105;78997;91541;109046;74513;66026;121750;88230;69326;93390;82662;116005;136598;147646;124260;141653;190424.48;237089;203853;180618;252917;351263;351263 -183;'642;Romania;2042;Graphic papers;5510;Production;t;85200;91300;99100;100000;112000;125000;154400;171000;163000;176000;191000;193000;194000;198000;165000;165000;242000;230000;251000;244000;250000;230000;230000;234000;229000;239000;244000;247000;228000;178000;109000;109000;109000;93000;95000;87000;82000;68000;69400;89500;96000;83000;82000;79000;89000;104000;61000;44013;41000;25000;27000;13000;8000;9759;2246;0;57;69812;53120;54952;57040;54610;54610 -183;'642;Romania;2042;Graphic papers;5610;Import quantity;t;600;800;500;500;500;2000;3000;8000;9300;9500;9100;11400;11500;12200;12500;12000;12000;12000;11000;12000;13000;11000;11000;10000;;;0;;;;;1187;9854;18000;32600;50600;83200;64800;39500;71200;68800;100500;125000;168000;163000;117000;176000;213900;217856;234804;235345;281189;277173;281484;299792;292249;279270;279423;268616;241068;262114;262925;262925 -183;'642;Romania;2042;Graphic papers;5622;Import value;1000 USD;95;130;80;67;67;270;417;1100;1270;1317;1250;1900;2000;2100;3700;3600;3600;3600;3400;3800;4100;5800;5800;5300;;;0;;;;;1604;9909;17322;44489;58103;73976;60158;35727;60062;58795;87278;118064;145246;146770;112455;182346;230689;214904;224126;236560;263112;262839;262036;226096;225997;220551.62;253542;228152;192336;215885;290862;290862 -183;'642;Romania;2042;Graphic papers;5910;Export quantity;t;5800;2700;5000;6400;9900;12900;30400;44000;42700;55900;51800;50200;44800;68000;50400;78900;84000;93000;107000;116000;104000;88000;65000;69000;76000;76000;51584;46163;35631;58976;58976;9541;2391;19200;25000;13200;20800;4400;22000;11900;12200;8300;4420;15000;28115;39100;19150;19841;9153;6480;4477;7789;4175;3140;3174;2479;3175;5052;4388;3300;2805;2241;2241 -183;'642;Romania;2042;Graphic papers;5922;Export value;1000 USD;970;430;730;900;1700;2380;6050;7884;7800;10920;10360;10250;9260;19000;14900;23500;24900;28400;43800;55900;50600;50100;40200;42100;45100;46100;28507;28883;25674;39340;39340;6036;1315;9623;16479;8750;13476;2470;9694;6275;6634;5051;3135;8275;14703;23584;17083;20272;10963;6955;5471;8761;3157;3437;2639;2306;2297.55;3227;2700;2206;2703;3141;3141 -183;'642;Romania;1671;Newsprint;5510;Production;t;44500;46100;49700;50000;52000;52000;51500;52000;52000;53000;53000;53000;53000;53000;44000;44000;98000;103000;102000;103000;103000;91000;91000;95000;90000;100000;105000;108000;90000;67000;57000;57000;57000;57000;47000;31000;42000;44000;40800;54300;59000;43000;43000;44000;54000;73000;41000;36288;25000;7000;7000;0;0;0;0;0;0;0;0;0;0;0;0 -183;'642;Romania;1671;Newsprint;5610;Import quantity;t;600;800;500;500;500;2000;3000;8000;9300;9500;9100;11400;11500;12200;12500;12000;12000;12000;11000;12000;13000;11000;11000;10000;;;0;;;;;18;65;3500;9500;24900;17500;15800;6400;10700;4300;13700;22000;42000;41000;34000;44000;63000;68732;74242;70746;68059;65103;58020;57788;54766;44173;41141;36812;35344;37066;45700;45700 -183;'642;Romania;1671;Newsprint;5622;Import value;1000 USD;95;130;80;67;67;270;417;1100;1270;1317;1250;1900;2000;2100;3700;3600;3600;3600;3400;3800;4100;5800;5800;5300;;;0;;;;;28;26;1573;7406;16846;8621;9883;2879;4814;2032;6228;10774;22259;23437;21323;31932;48793;50504;45372;52049;44600;42768;39222;30386;29708;25085.46;26875;24602;21414;22665;27730;27730 -183;'642;Romania;1671;Newsprint;5910;Export quantity;t;3500;1900;4100;5500;3400;2000;2300;4700;4700;10800;4000;1800;1100;17500;12400;15900;17000;19000;55000;59000;52000;42000;19000;23000;30000;30000;24575;15538;9263;12976;12976;1837;1043;5800;6000;2700;10800;2300;3800;8700;8600;1100;20;12000;25000;35000;10000;11900;1810;2186;1267;1720;3214;740;80;286;9;82;37;25;317;207;207 -183;'642;Romania;1671;Newsprint;5922;Export value;1000 USD;450;250;530;700;400;200;283;517;550;1400;530;250;160;3500;2900;3700;3900;4400;13800;18000;16000;18000;8100;10000;13000;14000;11458;7997;6379;7240;7240;846;450;2112;3482;1567;3858;1020;1567;3951;4051;524;11;6009;12727;20000;6439;8075;1154;1168;1026;1192;1708;454;54;148;10.03;49;24;26;222;141;141 -183;'642;Romania;1674;Printing and writing papers;5510;Production;t;40700;45200;49400;50000;60000;73000;102900;119000;111000;123000;138000;140000;141000;145000;121000;121000;144000;127000;149000;141000;147000;139000;139000;139000;139000;139000;139000;139000;138000;111000;52000;52000;52000;36000;48000;56000;40000;24000;28600;35200;37000;40000;39000;35000;35000;31000;20000;7725;16000;18000;20000;13000;8000;9759;2246;0;57;69812;53120;54952;57040;54610;54610 -183;'642;Romania;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1169;9789;14500;23100;25700;65700;49000;33100;60500;64500;86800;103000;126000;122000;83000;132000;150900;149124;160562;164599;213130;212070;223464;242004;237483;235097;238282;231804;205724;225048;217225;217225 -183;'642;Romania;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1576;9883;15749;37083;41257;65355;50275;32848;55248;56763;81050;107290;122987;123333;91132;150414;181896;164400;178754;184511;218512;220071;222814;195710;196289;195466.16;226667;203550;170922;193220;263132;263132 -183;'642;Romania;1674;Printing and writing papers;5910;Export quantity;t;2300;800;900;900;6500;10900;28100;39300;38000;45100;47800;48400;43700;50500;38000;63000;67000;74000;52000;57000;52000;46000;46000;46000;46000;46000;27009;30625;26368;46000;46000;7704;1348;13400;19000;10500;10000;2100;18200;3200;3600;7200;4400;3000;3115;4100;9150;7941;7343;4294;3210;6069;961;2400;3094;2193;3166;4970;4351;3275;2488;2034;2034 -183;'642;Romania;1674;Printing and writing papers;5922;Export value;1000 USD;520;180;200;200;1300;2180;5767;7367;7250;9520;9830;10000;9100;15500;12000;19800;21000;24000;30000;37900;34600;32100;32100;32100;32100;32100;17049;20886;19295;32100;32100;5190;865;7511;12997;7183;9618;1450;8127;2324;2583;4527;3124;2266;1976;3584;10644;12197;9809;5787;4445;7569;1449;2983;2585;2158;2287.52;3178;2676;2180;2481;3000;3000 -183;'642;Romania;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;2000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -183;'642;Romania;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3500;7800;3900;4000;6300;9000;13000;20000;0;2000;700;2149;2872;3381;19000;20853;26154;30424;48686;48730;51273;48891;27467;24986;22369;22369 -183;'642;Romania;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;7671;2832;2865;4110;6950;11725;14572;0;3380;1259;2121;2712;4440;15884;16827;21590;19376;31362;31566.84;36471;34640;19863;15692;21588;21588 -183;'642;Romania;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;100;100;1200;0;0;18;0;0;318;526;655;221;50;153;190;754;579;1424;2958;2383;1930;613;193;193 -183;'642;Romania;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;68;90;800;74;41;14;0;0;375;523;607;288;57;123;149;435;386;500.24;987;791;578;230;233;233 -183;'642;Romania;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24000;28600;35200;37000;40000;39000;35000;35000;29000;20000;7725;16000;18000;20000;13000;8000;9759;2246;0;17;69784;53100;54614;54610;54610;54610 -183;'642;Romania;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30100;19800;17900;19800;34000;45000;53000;61000;70000;118000;136200;131043;141185;147921;120519;124734;130500;145959;120884;123599;122523;123667;110113;125461;126328;126328 -183;'642;Romania;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31932;19738;15977;17111;33042;46356;53072;57706;68591;127197;157435;129618;142192;157288;119697;129276;126707;114538;99739;102749.34;119070;112670;90725;107208;155645;155645 -183;'642;Romania;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1900;18100;2500;3500;5000;3400;3000;3000;4000;9000;6983;6735;3617;2829;5719;533;960;940;924;1134;1224;1306;764;822;1214;1214 -183;'642;Romania;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1290;8080;1919;2414;3414;2563;2016;1869;3474;10506;10031;9084;5123;3894;7111;829;1154;973;952;1093.47;1256;1242;861;836;1740;1740 -183;'642;Romania;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;40;28;20;338;2430;0;0 -183;'642;Romania;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15400;5500;38700;40700;46500;49000;60000;41000;13000;12000;14000;15932;16505;13297;73611;66483;66810;65621;67913;62768;64486;59246;68144;74601;68528;68528 -183;'642;Romania;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15343;5439;36439;36787;43898;53984;58190;51055;22541;19837;23202;32661;33850;22783;82931;73968;74517;61796;65188;61149.98;71126;56240;60334;70320;85899;85899 -183;'642;Romania;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;100;600;0;1000;1000;0;97;100;150;640;82;22;160;300;275;1250;1400;690;608;788;662;581;1053;627;627 -183;'642;Romania;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;160;47;337;79;313;487;209;93;110;138;1791;202;57;263;401;497;1680;1177;820;693.81;935;643;741;1415;1027;1027 -183;'642;Romania;1675;Other paper and paperboard;5510;Production;t;114100;9000;9000;9000;10000;10000;256900;314000;350000;349000;358000;370000;396000;430000;484000;484000;511000;564000;568000;578000;584000;572000;572000;572000;572000;572000;572000;572000;511000;369000;250000;250000;250000;195000;269000;245000;242000;233100;219500;250100;299000;287000;361000;375000;282000;328000;497000;377550;301000;339000;358500;389000;347000;414000;387708;425588;491951;516916;515948;448887;545104;551400;551400 -183;'642;Romania;1675;Other paper and paperboard;5610;Import quantity;t;12100;12600;9000;11000;12600;18500;20300;20300;36200;44300;5000;22200;32300;42300;41000;48700;49400;41800;44000;38000;35000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;9615;8484;23900;29700;25700;37000;67500;73300;75900;90100;92500;131000;153000;188000;151000;175000;141969;183822;194790;208762;246571;280954;282583;345136;375655;389107;393718;413949;442086;529422;569460;569460 -183;'642;Romania;1675;Other paper and paperboard;5622;Import value;1000 USD;3000;3100;2100;2560;2800;4180;5333;5683;8350;11386;717;3100;4500;15000;15000;22000;23000;19000;25000;25000;23300;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;6460;7280;24518;38395;21876;27434;70589;71506;59736;75080;69801;90115;129205;151736;99152;125639;124462;155434;156785;184367;234041;306536;260273;296684;305998;333021.37;377286;369396;380451;524784;635134;635134 -183;'642;Romania;1675;Other paper and paperboard;5910;Export quantity;t;3100;1800;1500;3500;7100;12100;15900;27000;47700;49800;39600;35700;27500;39400;44400;74000;78000;88000;66000;62000;76000;68000;68000;68000;68000;68000;68000;68000;68000;68000;68000;5485;10540;45600;100300;67300;88000;83400;60500;103200;145900;174100;209000;210000;102130;82210;163050;81868;60704;87322;76206;97242;129137;129620;156462;175151;248804;300105;323231;308603;327677;364358;364358 -183;'642;Romania;1675;Other paper and paperboard;5922;Export value;1000 USD;1100;630;500;1280;3340;5300;2217;4083;7060;8170;6850;6200;5000;10000;15500;26000;27000;30000;39100;45400;37000;44500;44500;44500;44500;44500;44500;44500;44500;44500;44500;4239;6478;17209;59898;39360;35847;34205;22373;41534;56471;73946;88406;100771;59810;42442;104667;67958;58363;86435;77191;107244;133441;144209;121621;139347;188126.93;233862;201153;178412;250214;348122;348122 -183;'642;Romania;1676;Household and sanitary papers;5510;Production;t;;9000;9000;9000;10000;10000;11000;11000;12000;12000;14000;17000;21000;21000;17000;17000;17000;19000;20000;19000;23000;23000;23000;23000;23000;23000;23000;23000;40000;30000;20000;20000;20000;27000;30000;34000;33000;35000;32200;35600;39000;41000;43000;50000;56000;64000;80000;87000;112000;144000;118500;127000;63000;102000;35000;64411;106439;106054;99981;65434;96649;127868;127868 -183;'642;Romania;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;;1000;2000;3800;2400;1500;2000;2900;4000;6000;10000;6000;6000;6800;12915;12950;15713;16644;17148;17082;14685;15967;21077;21950;28526;33919;42729;43009;43009 -183;'642;Romania;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;212;;1184;3599;3886;3882;2490;2671;2595;3810;4986;6995;5871;6447;10172;14870;14122;17618;17862;17865;16505;11247;13517;20097.47;22942;30230;35317;46455;63407;63407 -183;'642;Romania;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;;;;100;100;0;0;0;0;5000;9000;9000;12000;17300;25102;39551;34337;35433;40511;50230;44511;59135;60384;47321;32501;29503;29391;49157;49157 -183;'642;Romania;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;372;;;;140;35;11;68;3;108;3443;7427;7413;11830;20915;31462;53526;45689;43128;51805;63485;48228;58878;64037.31;57976;36153;30304;32914;80502;80502 -183;'642;Romania;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;188100;183700;200900;247000;233000;314000;321000;219000;228000;316000;228550;182000;195000;240000;262000;284000;312000;352708;360290;382232;405902;412320;380384;445385;420462;420462 -183;'642;Romania;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35300;42900;67000;74900;79800;113000;132000;157000;142000;165000;134569;162395;181333;192658;220774;255265;256061;318494;349321;356531;359837;372985;394346;469892;504847;504847 -183;'642;Romania;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22230;26185;41287;46961;40777;73537;99857;114211;89628;113893;112252;111187;141460;165547;191654;240278;191851;235368;248828;264397.53;306813;290306;291754;414552;514065;514065 -183;'642;Romania;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52000;55400;94000;139500;171900;204000;201000;93030;73200;151000;64567;35528;47756;41858;61668;88339;78900;111528;115473;187835;252181;290018;278403;295293;312442;312442 -183;'642;Romania;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25933;20320;39604;55235;72983;87566;96564;52138;35024;92817;47034;26566;32877;31475;63811;78559;76361;69949;75963;118820.28;170491;158020;139791;209397;260337;260337 -183;'642;Romania;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;213700;254000;283000;300000;320000;332000;356000;391000;446000;446000;446000;491000;490000;499000;491000;494000;494000;494000;494000;494000;494000;494000;373000;289000;196000;196000;196000;145000;152000;199000;198000;;;;;;;;;;;;;;;;;;;;;;;;;; -183;'642;Romania;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;;;;5000;22200;32300;42300;41000;48700;49400;41800;44000;38000;35000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;9615;8484;18300;18900;24200;30000;;;;;;;;;;;;;;;;;;;;;;;;;; -183;'642;Romania;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;717;3100;4500;15000;15000;22000;23000;19000;25000;25000;23300;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;6460;7280;20017;27486;18161;19293;;;;;;;;;;;;;;;;;;;;;;;;;; -183;'642;Romania;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;;47700;49800;39600;35700;27500;39400;44400;74000;78000;88000;66000;62000;76000;68000;68000;68000;68000;68000;68000;68000;68000;68000;68000;5485;10540;42400;97700;64700;87000;;;;;;;;;;;;;;;;;;;;;;;;;; -183;'642;Romania;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;;7060;8170;6850;6200;5000;10000;15500;26000;27000;30000;39100;45400;37000;44500;44500;44500;44500;44500;44500;44500;44500;44500;44500;4239;6478;16147;59208;38670;35567;;;;;;;;;;;;;;;;;;;;;;;;;; -183;'642;Romania;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101000;113800;138100;186000;169000;234000;249000;177000;38000;111000;31850;109000;140000;152000;159000;173000;184565;222260;227037;255369;287909;301883;273590;320336;302411;302411 -183;'642;Romania;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30300;28400;30100;42500;50000;66000;66000;76000;38000;34000;30800;48991;57112;64810;111589;123738;146362;162817;183709;180191;181000;185344;214616;264597;285084;285084 -183;'642;Romania;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15074;13105;11856;15828;17658;25974;28350;32398;17316;16398;19148;24175;35950;42954;68534;81633;92234;88202;91307;91719.13;111231;90865;107381;175434;218639;218639 -183;'642;Romania;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40400;48400;53600;93000;120000;151000;152000;62000;49000;108000;23703;9456;18681;12273;36078;61740;52930;87088;85080;156665;218574;255288;243378;250998;235008;235008 -183;'642;Romania;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19608;15322;17026;31375;46047;53438;64120;24634;21721;60035;11849;3733;8210;7099;17034;29648;26301;36229;36989;76319.68;120107;109343;92171;147168;167312;167312 -183;'642;Romania;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16100;16900;10500;9000;10000;6000;8000;0;9000;8000;8700;0;0;0;0;0;0;0;0;11014;9187;9636;11408;13360;12612;12612 -183;'642;Romania;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1400;11600;13800;11500;7900;21000;31000;37000;50000;53000;41809;49118;47229;41542;63379;69896;54505;89320;94117;104572;100920;103935;99068;111245;124744;124744 -183;'642;Romania;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2876;9741;13151;12580;5282;21863;38605;42781;24914;28644;27474;33933;37161;31165;82849;95398;49330;93658;101524;113238.7;124187;124855;118905;151211;177388;177388 -183;'642;Romania;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;500;4400;6900;4200;6000;5000;5000;14000;16000;15108;9522;11974;14684;15218;16225;16900;13527;15810;17620;18526;17034;21900;26945;56600;56600 -183;'642;Romania;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;191;278;3046;3693;1370;5556;5670;5856;5410;7951;7427;4103;5450;8142;36066;37566;40383;23998;26648;29330.93;33465;29599;34266;44125;67207;67207 -183;'642;Romania;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71000;53000;52200;52000;30000;68000;56000;42000;0;0;0;45000;30000;65000;83000;86000;101414;106102;108380;100846;94462;85257;76126;89138;84150;84150 -183;'642;Romania;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3600;2900;20000;17300;15100;22000;29000;36000;31000;48000;29660;31551;41627;42056;29113;42374;32574;38516;43813;43189;45791;54884;49654;59919;62006;62006 -183;'642;Romania;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4280;3339;14725;16659;13436;22349;28051;33259;32257;47247;41069;34111;46412;57264;30961;53051;38682;41484;43660;46220.99;55265;61235;52186;69395;93584;93584 -183;'642;Romania;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11300;6500;35900;38000;24600;47000;44000;26000;10000;24000;21934;14897;15519;13260;9865;9871;8750;10656;13920;12251;14793;17486;12839;16876;20485;20485 -183;'642;Romania;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6134;4720;19516;19687;12501;28432;26709;21634;7836;23063;25611;17642;18072;14835;10195;10825;9361;9514;11750;12013.62;16687;18929;13165;17799;25480;25480 -183;'642;Romania;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;100;0;24000;6000;8000;0;181000;197000;188000;28000;25000;23000;20000;25000;26021;24346;24873;15003;14344;15544;19260;22551;21289;21289 -183;'642;Romania;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;3100;3600;6800;4000;6000;8000;23000;30000;32300;32735;35365;44250;16693;19257;22620;27841;27682;28579;32126;28822;31008;34131;33013;33013 -183;'642;Romania;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1555;1894;4401;3351;4851;5773;15141;21604;24561;18968;21937;34164;9310;10196;11605;12024;12337;13218.71;16130;13351;13282;18512;24454;24454 -183;'642;Romania;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;100;1600;23100;0;0;30;200;3000;3822;1653;1582;1641;507;503;320;257;663;1299;288;210;286;474;349;349 -183;'642;Romania;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;16;480;13065;140;65;14;57;1768;2147;1088;1145;1399;516;520;316;208;576;1156.04;232;149;189;305;338;338 -183;'642;Romania;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;32200;49000;55000;37000;24000;21000;19000;18000;21000;21000;48000;54000;58000;60000;70000;55000;55000;55000;55000;55000;55000;55000;98000;50000;34000;34000;34000;23000;87000;12000;11000;10000;3600;13600;13000;13000;4000;4000;7000;36000;101000;62000;7000;0;0;0;0;0;0;887;3280;4960;3647;3069;3070;3070;3070 -183;'642;Romania;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5400;10800;500;5000;28400;28000;7400;13200;9800;14000;15000;21000;3000;4000;600;8512;507;391;9153;8541;9440;11957;10367;11499;11931;12438;13821;16801;21604;21604 -183;'642;Romania;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4289;10909;2531;4542;44473;41439;15959;25448;26429;12768;24362;30530;3653;5299;2038;29377;1203;1202;24525;48393;51917;50069;43653;48526.37;47531;48860;53380;63777;57662;57662 -183;'642;Romania;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2600;2600;2600;1000;31300;5000;9200;6400;2200;5000;4000;100;10;50;1;74;15;11;141;287;490;423;543;585;603;712;697;2993;2759;2759 -183;'642;Romania;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;690;690;690;280;8132;2018;1919;1168;960;732;764;245;5;20;9;335;32;27;305;3077;4363;3444;4506;5269.35;5395;6980;8317;7903;7283;7283 -183;'642;Romania;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;464568.3;609405;634117;662253;838997;878098;878114 -183;'642;Romania;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1608086.65;1697060;1585218;1511454;2002869;2217534;1984024 -183;'642;Romania;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21091.66;36617;38994;38860;57575;41126;41126 -183;'642;Romania;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22380.9;23837;24494;22596;29508;33247;33247 -183;'642;Romania;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11994.08;22451;25722;29399;46125;29553;29553 -183;'642;Romania;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1950.09;2198;3451;3530;5713;5649;5649 -183;'642;Romania;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9097.58;14166;13272;9461;11450;11573;11573 -183;'642;Romania;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20430.8;21639;21043;19066;23795;27598;27598 -183;'642;Romania;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30654.03;41199;56038;48160;50429;67764;63236 -183;'642;Romania;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36782.26;50337;47070;44707;69444;95016;86683 -183;'642;Romania;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9151.03;12819;13760;15772;22699;23016;19354 -183;'642;Romania;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23660.43;29291;24295;21427;31410;25841;24077 -183;'642;Romania;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98729.35;115076;120520;124269;160601;141305;141305 -183;'642;Romania;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;201914.1;212156;200539;216459;313381;282867;179805 -183;'642;Romania;1636;Glue-laminated timber (glulam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120000;80000 -183;'642;Romania;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4401;6396 -183;'642;Romania;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4715;5599 -183;'642;Romania;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112669;74803 -183;'642;Romania;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115505;41724 -183;'642;Romania;1688;Cross-laminated timber (CLT or X-lam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -183;'642;Romania;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;794;308 -183;'642;Romania;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;793;321 -183;'642;Romania;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;641;348 -183;'642;Romania;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;632;439 -183;'642;Romania;1684;I-beams (I-joists);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33 -183;'642;Romania;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;564;299 -183;'642;Romania;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;883;364 -183;'642;Romania;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;597;141 -183;'642;Romania;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;809;141 -183;'642;Romania;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;283217;379071;374796;404875;505339;552943;564495 -183;'642;Romania;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1165216;1208941;1125208;1045430;1347543;1554623;1442782 -183;'642;Romania;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;524.6;672;759;1090;1800;2008;2389 -183;'642;Romania;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23702.41;27552;26750;23401;40531;43236;40764 -183;'642;Romania;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21200.64;23951;29250;29227;40554;49936;46209 -183;'642;Romania;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;134430.55;144946;136862;137434;171052;182704;176666 -183;'642;Romania;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400376.68;589971;589862;569268;678174;754050;749686 -183;'642;Romania;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;159596.67;238682;230229;230726;315888;382374;387606 -183;'642;Romania;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4400.35;4726;4160;3659;5007;7091;7091 -183;'642;Romania;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1796.02;97;109;60;55;65;65 -183;'642;Romania;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94457.21;109968;95303;86344;103270;120819;115984 -183;'642;Romania;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18494.83;17887;18002;14666;16894;22102;18890 -183;'642;Romania;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68271.79;86105;94164;93536;107056;120572;120572 -183;'642;Romania;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31500.31;31441;24792;26888;22214;37363;37363 -183;'642;Romania;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;208277.22;231230;238888;234418;281507;307371;307842 -183;'642;Romania;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101136.78;122183;119503;121063;170842;206667;215111 -183;'642;Romania;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24970.11;157942;157347;151311;181334;198197;198197 -183;'642;Romania;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6668.73;67074;67823;68049;105883;116177;116177 -185;'643;Russian Federation;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3680925.88;4038468;3754667;3575693;4353538;2938562;2398163 -185;'643;Russian Federation;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11506869.23;13613389;12481059;12047301;16741432;12816518;8013263 -185;'643;Russian Federation;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71881;102933;109564;113923;602062;771976;427370;346450;389208;521279;717235;968735;1135971;1429385;1700555;2250918;2660327;2094974;2447702;2903243;3047660;3265062;2931981;1901803;1833168;1923568.89;2102115;1946851;1891206;2301772;1523625;1259856 -185;'643;Russian Federation;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1714609;2966171;1914022;4059614;2977016;3007700;2922580;3181917;3804233;3875516;4316758;4981395;6404669;7688932;8739678;11231172;10618807;7696355;8597697;9757872;9393736;9900572;10529340;8722556;8846330;10545573.68;12467266;11217478;10755077;14828362;11977303;7500471 -185;'643;Russian Federation;1861;Roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;227900000;174630000;111800000;116210000;96814000;134664000;124790000;143600000;158101000;164700000;164999000;174001000;178400000;182000000;190601000;206099000;162099000;158900000;175499000;191225000;192055000;194460051;203000335;205507000;213799199;212400000;235999999;218400000;218302525;224398582;197190582;193390582 -185;'643;Russian Federation;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21932;139165;961165;951000;474000;327000;228000;153000;527000;645000;228902;852000;1004000;730000;516000;324950;286000;60000;893;996;20285;38321;12883;233;222;1906;7909;12198;1428;810;1048;27 -185;'643;Russian Federation;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1507;9910;25010;24800;9471;7014;5857;5020;13330;13274;5800;19776;26126;17450;15187;19933;16030;1865;73;284;1680;3982;1572;67;29;323.01;503;341;148;205;228;16 -185;'643;Russian Federation;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10154305;14338957;11188000;18460000;15985000;18753000;20947000;28280000;32049000;32893000;37770000;37804000;41842000;48300000;51100000;49300000;37058606;22289355;21175826;20699843;17862687;19193917;21052777;19596352;20120982;19513627;19260231;15444189;15616836;14051632;2784483;1671341 -185;'643;Russian Federation;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;687961;797673;621130;1060200;946759;1044514;959897;1220077;1356630;1411353;1667200;1806958;2342400;2858830;3259000;4142379;3512232;1857635;1858940;2000159;1543212;1648601;1782929;1344168;1353659;1470908.53;1470666;1126780;1031881;1040477;339614;196411 -185;'643;Russian Federation;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;145400000;116770000;77600000;84800000;61544000;90617000;81390000;88400000;105989000;110413000;110614000;116648000;119598000;122012000;127777000;138167000;108670000;106525000;117653000;127625000;128219000;153802757;160557118;162420000;168974157;168121513;186801680;172870708;172801342;177663630;155964630;153008630 -185;'643;Russian Federation;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;254;3419;10545;842;436;0;0 -185;'643;Russian Federation;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29.01;115;113;69;55;0;0 -185;'643;Russian Federation;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11921464;10996771;8573132;6953245;5587309;5116;25 -185;'643;Russian Federation;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;990134.82;908716;675767;526789;474735;488;2 -185;'643;Russian Federation;1863;Roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82500000;57860000;34200000;31410000;35270000;44047000;43400000;55200000;52112000;54287000;54385000;57353000;58802000;59988000;62824000;67932000;53429000;52375000;57846000;63600000;63836000;40657294;42443217;43087000;44825042;44278487;49198319;45529292;45501183;46734952;41225952;40381952 -185;'643;Russian Federation;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1652;4490;1653;586;374;1048;27 -185;'643;Russian Federation;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;294;388;228;79;150;228;16 -185;'643;Russian Federation;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7592163;8263460;6871057;8663591;8464323;2779367;1671316 -185;'643;Russian Federation;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;480773.71;561950;451013;505092;565742;339126;196409 -185;'643;Russian Federation;1864;Wood fuel;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63900000;38600000;32020000;33460000;23809000;46290000;47390000;49000000;12526000;13049000;13073000;13786000;14134000;14420000;15101000;16329000;12843000;12590000;13904000;15600000;14600000;14082130;14700492;15000000;15605307;14788307;16431453;15206057;15108582;15108582;15108582;15108582 -185;'643;Russian Federation;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;2000;20000;8902;0;0;0;0;950;0;0;28;3;36;112;51;172;0;0;2127;10254;142;117;0;22 -185;'643;Russian Federation;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;230;625;600;25;16;0;0;324;0;0;3;1;20;69;16;21;0;1.24;18;80;28;34;0;2 -185;'643;Russian Federation;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21497;138957;71000;86000;90000;908000;975000;680000;1214000;1200000;970000;286000;289000;280000;200000;200000;274606;589355;193321;270905;210637;149090;143404;159260;74730;83771;175325;192484;145573;163638;37934;377 -185;'643;Russian Federation;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;368;4417;1081;1300;2598;19000;22761;20863;18330;19622;19400;3420;4314;4356;5264;6690;14649;24935;9623;17758;13977;8176;6246;5315;3418;4334.77;8937;10736;10351;15305;4987;58 -185;'643;Russian Federation;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27400000;16600000;13800000;17130000;15405000;27775000;23690000;19600000;8768000;9134000;9151000;9650000;9894000;10094000;10571000;11430000;8990000;8813000;9733000;10920000;10074000;9857491;10290344;10500000;10923715;10523715;11693017;10820996;10751630;10751630;10751630;10751630 -185;'643;Russian Federation;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2115;10254;0;0;0;0 -185;'643;Russian Federation;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.24;14;80;0;0;0;0 -185;'643;Russian Federation;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20221;58865;51427;41018;34531;4884;0 -185;'643;Russian Federation;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;626.47;2335;2058;1598;1889;460;0 -185;'643;Russian Federation;1628;Wood fuel, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36500000;22000000;18220000;16330000;8404000;18515000;23700000;29400000;3758000;3915000;3922000;4136000;4240000;4326000;4530000;4899000;3853000;3777000;4171000;4680000;4526000;4224639;4410148;4500000;4681592;4264592;4738436;4385061;4356952;4356952;4356952;4356952 -185;'643;Russian Federation;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;12;0;142;117;0;22 -185;'643;Russian Federation;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;4;0;28;34;0;2 -185;'643;Russian Federation;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63550;116460;141057;104555;129107;33050;377 -185;'643;Russian Federation;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3708.3;6602;8678;8753;13416;4527;58 -185;'643;Russian Federation;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;2000;20000;8902;0;0;0;0;950;0;0;28;3;36;112;51;172;0;;;;;;; -185;'643;Russian Federation;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;230;625;600;25;16;0;0;324;0;0;3;1;20;69;16;21;0;;;;;;; -185;'643;Russian Federation;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21497;138957;71000;86000;90000;908000;975000;680000;1214000;1200000;970000;286000;289000;280000;200000;200000;274606;589355;193321;270905;210637;149090;143404;159260;74730;;;;;;; -185;'643;Russian Federation;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;368;4417;1081;1300;2598;19000;22761;20863;18330;19622;19400;3420;4314;4356;5264;6690;14649;24935;9623;17758;13977;8176;6246;5315;3418;;;;;;; -185;'643;Russian Federation;1865;Industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;164000000;136030000;79780000;82750000;73005000;88374000;77400000;94600000;145575000;151651000;151926000;160215000;164266000;167580000;175500000;189770000;149256000;146310000;161595000;175625000;177455000;180377921;188299843;190507000;198193892;197611693;219568546;203193943;203193943;209290000;182082000;178282000 -185;'643;Russian Federation;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21932;139165;961165;951000;474000;327000;228000;153000;525000;625000;220000;852000;1004000;730000;516000;324000;286000;60000;865;993;20249;38209;12832;61;222;1906;5782;1944;1286;693;1048;5 -185;'643;Russian Federation;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1507;9910;25010;24800;9471;7014;5857;5020;13100;12649;5200;19751;26110;17450;15187;19609;16030;1865;70;283;1660;3913;1556;46;29;321.77;485;261;120;171;228;14 -185;'643;Russian Federation;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10132808;14200000;11117000;18374000;15895000;17845000;19972000;27600000;30835000;31693000;36800000;37518000;41553000;48020000;50900000;49100000;36784000;21700000;20982505;20428938;17652050;19044827;20909373;19437092;20046252;19429856;19084906;15251705;15471263;13887994;2746549;1670964 -185;'643;Russian Federation;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;687593;793256;620049;1058900;944161;1025514;937136;1199214;1338300;1391731;1647800;1803538;2338086;2854474;3253736;4135689;3497583;1832700;1849317;1982401;1529235;1640425;1776683;1338853;1350241;1466573.75;1461729;1116044;1021530;1025172;334627;196353 -185;'643;Russian Federation;1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118000000;100170000;63800000;67670000;46139000;62842000;57700000;68800000;97221000;101279000;101463000;106998000;109704000;111918000;117206000;126737000;99680000;97712000;107920000;116705000;118145000;143945266;150266774;151920000;158050442;157597798;175108663;162049712;162049712;166912000;145213000;142257000 -185;'643;Russian Federation;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21831;139000;961000;950000;471000;313000;218000;150000;521000;600000;200000;831000;987000;730000;516000;324000;286000;60000;56;458;13931;31644;12782;0;23;254;1304;291;842;436;0;0 -185;'643;Russian Federation;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1498;9900;25000;24700;9353;6772;5175;3787;12900;12160;4800;19216;25567;17450;15187;19609;16030;1865;16;48;1125;3167;1473;0;1;27.77;101;33;69;55;0;0 -185;'643;Russian Federation;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5870432;10600000;7080000;9546000;10020000;12174000;12310000;20000000;23425000;23694000;28400000;28058000;31181000;34720000;36400000;35100000;25034000;18300000;16482427;16283996;12902144;12386361;13676128;11952920;12705443;11901243;10937906;8521705;6912227;5552778;232;25 -185;'643;Russian Federation;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;482904;620256;460083;670800;662547;758394;617609;936547;1087800;1131824;1360100;1397484;1852561;2215257;2525110;3209560;2381333;1580100;1515335;1634996;1190038;1184826;1288485;933453;953359;989508.35;906381;673709;525191;472846;28;2 -185;'643;Russian Federation;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21831;139000;961000;950000;471000;313000;218000;150000;521000;600000;200000;831000;987000;730000;516000;324000;286000;60000;56;458;13931;31644;12782;0;23;254;1304;291;842;436;0;0 -185;'643;Russian Federation;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1498;9900;25000;24700;9353;6772;5175;3787;12900;12160;4800;19216;25567;17450;15187;19609;16030;1865;16;48;1125;3167;1473;0;1;27.77;101;33;69;55;0;0 -185;'643;Russian Federation;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5870432;10600000;7080000;9546000;10020000;12174000;12310000;20000000;23425000;23694000;28400000;28058000;31181000;34720000;36400000;35100000;25034000;18300000;16482427;16283996;12902144;12386361;13676128;11952920;12705443;11901243;10937906;8521705;6912227;5552778;232;25 -185;'643;Russian Federation;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;482904;620256;460083;670800;662547;758394;617609;936547;1087800;1131824;1360100;1397484;1852561;2215257;2525110;3209560;2381333;1580100;1515335;1634996;1190038;1184826;1288485;933453;953359;989508.35;906381;673709;525191;472846;28;2 -185;'643;Russian Federation;1867;Industrial roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46000000;35860000;15980000;15080000;26866000;25532000;19700000;25800000;48354000;50372000;50463000;53217000;54562000;55662000;58294000;63033000;49576000;48598000;53675000;58920000;59310000;36432655;38033069;38587000;40143450;40013895;44459883;41144231;41144231;42378000;36869000;36025000 -185;'643;Russian Federation;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101;165;165;1000;3000;14000;10000;3000;4000;25000;20000;21000;17000;0;0;0;0;0;809;535;6318;6565;50;61;199;1652;4478;1653;444;257;1048;5 -185;'643;Russian Federation;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;10;10;100;118;242;682;1233;200;489;400;535;543;0;0;0;0;0;54;235;535;746;83;46;28;294;384;228;51;116;228;14 -185;'643;Russian Federation;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4262376;3600000;4037000;8828000;5875000;5671000;7662000;7600000;7410000;7999000;8400000;9460000;10372000;13300000;14500000;14000000;11750000;3400000;4500078;4144942;4749906;6658466;7233245;7484172;7340809;7528613;8147000;6730000;8559036;8335216;2746317;1670939 -185;'643;Russian Federation;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;204689;173000;159966;388100;281614;267120;319527;262667;250500;259907;287700;406054;485525;639217;728626;926129;1116250;252600;333982;347405;339197;455599;488198;405400;396882;477065.4;555348;442335;496339;552326;334599;196351 -185;'643;Russian Federation;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;55;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -185;'643;Russian Federation;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;11;10;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -185;'643;Russian Federation;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 -185;'643;Russian Federation;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 -185;'643;Russian Federation;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101;165;165;1000;3000;14000;10000;3000;4000;25000;20000;20945;17000;0;0;0;0;0;809;535;6318;6565;50;61;199;1652;4478;1653;444;257;1048;5 -185;'643;Russian Federation;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;10;10;100;118;242;682;1233;200;489;400;524;533;0;0;0;0;0;54;235;535;746;83;46;28;294;384;228;51;116;228;14 -185;'643;Russian Federation;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4262376;3600000;4037000;8828000;5875000;5671000;7662000;7600000;7410000;7999000;8400000;9460000;10372000;13300000;14500000;14000000;11750000;3400000;4500078;4144942;4749906;6658466;7233245;7484172;7340809;7528613;8147000;6730000;8559036;8335216;2746317;1670939 -185;'643;Russian Federation;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;204689;173000;159966;388100;281614;267120;319527;262667;250500;259907;287700;406054;485525;639217;728626;926129;1116250;252600;333982;347405;339197;455599;488198;405400;396882;477065.4;555348;442335;496339;552326;334599;196351 -185;'643;Russian Federation;1868;Sawlogs and veneer logs;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95000000;79400000;53570000;52550000;43970000;40586000;42400000;46500000;96896000;100941000;101124000;106641000;109337000;111543000;116814000;126313000;99346000;97385000;107559000;115000000;119000000;120948000;126260000;127607000;132756000;132456435;147173816;136198142;136198142;140284000;122047000;119622000 -185;'643;Russian Federation;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69800000;58300000;41870000;42370000;32447000;29720000;32600000;37300000;76581000;79778000;79923000;84283000;86414000;88158000;92323000;99831000;78518000;76968000;85009000;91000000;94000000;107644000;112371000;113570000;118153000;117886227;130984696;121216346;121216346;124853000;108622000;106504000 -185;'643;Russian Federation;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25200000;21100000;11700000;10180000;11523000;10866000;9800000;9200000;20315000;21163000;21201000;22358000;22923000;23385000;24491000;26482000;20828000;20417000;22550000;24000000;25000000;13304000;13889000;14037000;14603000;14570208;16189120;14981796;14981796;15431000;13425000;13118000 -185;'643;Russian Federation;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30400000;39200000;35812000;37306000;37374000;39413000;40409000;41225000;43173000;46684000;36718000;35993000;39752000;44600000;43000000;43722000;45642000;46250000;48116000;47916366;53240406;49269935;49269935;50748000;44151000;43139000 -185;'643;Russian Federation;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21400000;25100000;13827000;14404000;14430000;15217000;15602000;15917000;16669000;18025000;14177000;13897000;15348000;17220000;17500000;29731000;31037000;31450000;32719000;32583129;36203476;33503556;33503556;34509000;30023000;29335000 -185;'643;Russian Federation;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9000000;14100000;21985000;22902000;22944000;24196000;24807000;25308000;26504000;28659000;22541000;22096000;24404000;27380000;25500000;13991000;14605000;14800000;15397000;15333237;17036930;15766379;15766379;16239000;14128000;13804000 -185;'643;Russian Federation;1870;Pulpwood and particles (1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22700000;25300000;17420000;23000000;18761000;16240000;;;;;;;;;;;;;;;;;;;;;;;;;; -185;'643;Russian Federation;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18700000;21200000;13570000;18400000;9725000;8420000;;;;;;;;;;;;;;;;;;;;;;;;;; -185;'643;Russian Federation;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000000;4100000;3850000;4600000;9036000;7820000;;;;;;;;;;;;;;;;;;;;;;;;;; -185;'643;Russian Federation;1871;Other industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46300000;31330000;8790000;7200000;10274000;31548000;4600000;8900000;12867000;13404000;13428000;14161000;14520000;14812000;15513000;16773000;13192000;12932000;14284000;16025000;15455000;15707921;16397843;16650000;17321892;17238892;19154324;17725866;17725866;18258000;15884000;15521000 -185;'643;Russian Federation;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29500000;20670000;8360000;6900000;3967000;24702000;3700000;6400000;6813000;7097000;7110000;7498000;7688000;7843000;8214000;8881000;6985000;6847000;7563000;8485000;6645000;6570266;6858774;6900000;7178442;7128442;7920491;7329810;7329810;7550000;6568000;6418000 -185;'643;Russian Federation;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16800000;10660000;430000;300000;6307000;6846000;900000;2500000;6054000;6307000;6318000;6663000;6832000;6969000;7299000;7892000;6207000;6085000;6721000;7540000;8810000;9137655;9539069;9750000;10143450;10110450;11233833;10396056;10396056;10708000;9316000;9103000 -185;'643;Russian Federation;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104000;70000;66000;46000;28000;56000;47000;50000;60000;60000;60000;60000;60000;70000;70000;72000;76000;76000;76000;51000;53224;51200;52634;52320;70000;73000;78900;66553;54531;54531;54531;54531 -185;'643;Russian Federation;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;328;0;0;0;0;0;0;0;1000;0;100;100;100;700;2000;3000;1000;1766;3039;1786;2478;2653;4692;8027;7512;11878;13746;12978;15501;13183;9133 -185;'643;Russian Federation;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;115;0;0;0;0;0;0;16;120;72;92;263;263;562;1332;2057;1626;1918;2590;2131;2351;2491;3784;5899;5302.6;8859;9155;9098;12909;18932;14427 -185;'643;Russian Federation;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4995;6161;4300;800;400;400;0;0;1000;1000;2000;2000;2000;200;6000;4000;2000;4000;3510;5283;14947;7900;11841;23305;38806;40673;47348;56925;49227;41342;23872;19797 -185;'643;Russian Federation;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1183;2741;794;128;97;97;0;0;184;164;630;481;571;571;1697;1809;1220;12191;1507;1943;7574;3031;4262;6213;9816;11546.86;13684;16457;13251;16212;9297;5316 -185;'643;Russian Federation;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17308000;18590000;3800000;4400000;13600000;15250000;25500000;27700000;29400000;21100000;16900000;14100000;15500000;12695000;12457000;13900000;14586790;15268050;16667000;16911000;18356000;22575490;24277790;22902000;21396000;21142000 -185;'643;Russian Federation;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1000;1000;0;30800;2900;2900;5000;9000;6867;1000;6567;7078;3830;4140;5052;3377;3702;4116;4491;4656;4322;5300;3639;1802 -185;'643;Russian Federation;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;19;0;0;0;924;1077;1177;1260;2640;2580;617;2790;3135;2400;2359;2514;1384;1473;1796.31;2067;2521;2475;2660;2808;2059 -185;'643;Russian Federation;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;529000;600000;600000;600000;339000;641000;855000;1721000;1752000;1780000;3112147;3470000;3994367;4079943;1955818;2947662;2019367;1993771;2130588;2576608;2478178;3207327;4368686;3638574;1001287;295046 -185;'643;Russian Federation;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16475;18600;18600;18600;14700;24355;40421;71500;71500;100221;190088;183421;185464;218150;106914;122413;103457;75350;75084;82740.75;98300;124340;168686;157683;32449;10458 -185;'643;Russian Federation;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2018000;3300000;3800000;4400000;13600000;14900000;17000000;18700000;20400000;11900000;8800000;7400000;7600000;4795000;4557000;6900000;6786790;7568050;8467000;8611000;9756000;13575490;14277790;12902000;11396000;11142000 -185;'643;Russian Federation;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;13833;1500;1500;4000;7000;5000;1000;5356;5267;3684;3874;4375;3015;3190;3682;3713;4145;3763;4788;3510;1676 -185;'643;Russian Federation;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;415;578;578;981;2055;1938;617;2228;2144;2294;2225;2222;1226;1339;1618.31;1877;2399;2295;2495;2735;1944 -185;'643;Russian Federation;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;350423;425000;396000;386000;497000;554000;529000;600000;600000;600000;339000;482000;641000;1080000;1190000;1200000;2295000;2429000;2749204;2586336;1705987;2686005;1771903;1729993;1861315;2108201;2105279;2722636;3680446;3318006;734354;293666 -185;'643;Russian Federation;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22302;20659;14311;16648;22481;13828;16475;18600;18600;18600;14700;20929;32000;39500;41806;58600;135712;111373;109622;113275;98592;112083;93033;67603;68187;76948.75;93348;117553;157263;145847;27740;10296 -185;'643;Russian Federation;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5288000;4299000;3071000;2670000;2670000;16655000;15290000;15290000;0;0;0;350000;8500000;9000000;9000000;9200000;8100000;6700000;7900000;7900000;7900000;7000000;7800000;7700000;8200000;8300000;8600000;9000000;10000000;10000000;10000000;10000000 -185;'643;Russian Federation;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;577;1278;1000;0;0;0;0;0;1000;1000;0;16967;1400;1400;1000;2000;1867;0;1211;1811;146;266;677;362;512;434;778;511;559;512;129;126 -185;'643;Russian Federation;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;55;37;0;0;0;0;19;0;0;0;509;499;599;279;585;642;0;562;991;106;134;292;158;134;178;190;122;180;165;73;115 -185;'643;Russian Federation;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14052;293834;120000;147000;397000;0;0;0;0;0;0;159000;214000;641000;562000;580000;817147;1041000;1245163;1493607;249831;261657;247464;263778;269273;468407;372899;484691;688240;320568;266933;1380 -185;'643;Russian Federation;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;475;4405;2227;3446;6935;0;0;0;0;0;0;3426;8421;32000;29694;41621;54376;72048;75842;104875;8322;10330;10424;7747;6897;5792;4952;6787;11423;11836;4709;162 -185;'643;Russian Federation;1605;Sawdust (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;124;124 -185;'643;Russian Federation;1605;Sawdust (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;105 -185;'643;Russian Federation;1605;Sawdust (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119269;118 -185;'643;Russian Federation;1605;Sawdust (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2203;7 -185;'643;Russian Federation;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -185;'643;Russian Federation;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -185;'643;Russian Federation;1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -185;'643;Russian Federation;1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -185;'643;Russian Federation;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1147900;1150800;1463263;1574023;1945000;2257000;2460000;3250000;3570000;3570000;2280083;1636224 -185;'643;Russian Federation;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1330;1819;1793;2420;3136;5360;2529;1723;2012;3293;1279;443 -185;'643;Russian Federation;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1389;1709;1759;1689;1889;2768.71;2014;1458;1902;2423;1292;525 -185;'643;Russian Federation;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;798540;813626;959028;1019859;1252731;1601180;1709365;2189567;2496956;2671683;1866390;905665 -185;'643;Russian Federation;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118964;134399;139394;113003;114846;156905.29;209227;291087;305966;314095;271610;98992 -185;'643;Russian Federation;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;791000;683800;913263;974023;1345000;1650000;1810000;2500000;2800000;2800000;2073372;1456112 -185;'643;Russian Federation;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1108;1465;1342;2179;2795;4889;2093;1432;1856;3201;1198;416 -185;'643;Russian Federation;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1212;1483;1467;1531;1755;2634.01;1834;1295;1666;2240;1137;458 -185;'643;Russian Federation;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;728540;743626;879028;934859;1073215;1438541;1510962;1924269;2284884;2422974;1788980;902446 -185;'643;Russian Federation;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109024;124459;126659;102197;107949;142579;186166;265127;289030;289211;262493;98663 -185;'643;Russian Federation;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;356900;467000;550000;600000;600000;607000;650000;750000;770000;770000;206711;180112 -185;'643;Russian Federation;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;222;354;451;241;341;471;436;291;156;92;81;27 -185;'643;Russian Federation;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;177;226;292;158;134;134.69;180;163;236;183;155;67 -185;'643;Russian Federation;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70000;70000;80000;85000;179516;162639;198403;265298;212072;248709;77410;3219 -185;'643;Russian Federation;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9940;9940;12735;10806;6897;14326.29;23061;25960;16936;24884;9117;329 -185;'643;Russian Federation;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53370008;40890000;30720000;26500000;21913000;20600000;19580000;19100000;20000000;20915000;19239800;20155000;21355000;23913000;26170000;29420000;27163000;27293000;28869947;31215000;32230000;33500000;34600000;34500000;36794250;40584057;42701000;44766000;41797065;41797065;38000000;37530000 -185;'643;Russian Federation;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19269;16318;49600;23400;16000;64000;32000;11000;21000;15000;16000;11000;13000;24000;15000;15000;23000;16000;29964;33660;30891;45729;37835;61648;20412;38103;54751;68523;60261;30125;5731;2277 -185;'643;Russian Federation;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3482;5535;12177;10870;8686;27402;10132;3324;3790;3015;3837;4258;5630;7620;6838;9325;13704;10440;13404;19420;16495;21330;16709;9665;5144;8854.59;11667;13708;13039;12242;4066;4211 -185;'643;Russian Federation;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6021170;6500000;5402600;6076000;4600000;5026000;4881000;6428000;7764000;7700000;9020000;10544000;12621000;14778000;15900000;17277000;15258000;16200000;17689994;19701000;20286026;20900000;22292656;24440127;26932012;29940237;32204785;33546219;31970361;30469414;23989686;19784092 -185;'643;Russian Federation;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;570391;1106135;515217;735300;598486;682472;572630;626000;733100;697390;869460;1177321;1518232;1936200;2317861;3247997;2829282;2607740;3023161;3384768;3357414;3616739;3675492;3073513;3192240;3997594.54;4515792;4520833;4317634;6152926;5207085;3457265 -185;'643;Russian Federation;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43695008;32800000;24640000;22525000;17530000;16675000;15610000;16635000;17460000;18375000;16931000;17736000;18770000;21265000;23513000;26509000;25124000;25388000;26412000;29055000;30040000;31200000;32100000;32150000;34287975;37819636;39492000;41266000;38917965;38917965;35400000;34900000 -185;'643;Russian Federation;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17274;11218;43000;16100;8000;18000;6000;4000;4000;10000;10000;5000;5000;17000;6000;5000;9000;6000;16325;14750;11498;21557;23022;51258;12708;31448;48971;62731;51153;21126;3371;106 -185;'643;Russian Federation;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2773;2843;8023;6716;2224;5004;1468;992;900;830;1639;1084;1005;3079;1138;1251;2104;1600;3410;4129;3950;6469;5665;4142;1735;4371.71;6801;9321;7146;5575;843;162 -185;'643;Russian Federation;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5960019;6460000;5330000;5637000;4350000;4780000;4632000;6125000;7373000;7325000;8600000;10156000;12208000;14312000;15430000;16766000;14876000;15825000;17117636;18846000;19415508;20215000;21381000;23067759;25429137;28009450;30014347;31486820;30394582;28482431;22246195;18434572 -185;'643;Russian Federation;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;553347;1098000;506944;690000;578215;663038;555093;603900;705200;666060;834870;1133755;1462718;1840100;2250593;3154335;2751330;2519008;2883815;3219940;3190526;3413739;3504165;2843213;2950732;3738618;4211856;4226454;4091505;5850311;4880361;3208346 -185;'643;Russian Federation;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9675000;8090000;6080000;3975000;4383000;3925000;3970000;2465000;2540000;2540000;2308800;2419000;2585000;2648000;2657000;2911000;2039000;1905000;2457947;2160000;2190000;2300000;2500000;2350000;2506275;2764421;3209000;3500000;2879100;2879100;2600000;2630000 -185;'643;Russian Federation;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1995;5100;6600;7300;8000;46000;26000;7000;17000;5000;6000;6000;8000;7000;9000;10000;14000;10000;13639;18910;19393;24172;14813;10390;7704;6655;5780;5792;9108;8999;2360;2171 -185;'643;Russian Federation;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;709;2692;4154;4154;6462;22398;8664;2332;2890;2185;2198;3174;4625;4541;5700;8074;11600;8840;9994;15291;12545;14861;11044;5523;3409;4482.87;4866;4387;5893;6667;3223;4049 -185;'643;Russian Federation;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61151;40000;72600;439000;250000;246000;249000;303000;391000;375000;420000;388000;413000;466000;470000;511000;382000;375000;572358;855000;870518;685000;911656;1372368;1502875;1930787;2190438;2059399;1575779;1986983;1743491;1349520 -185;'643;Russian Federation;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17044;8135;8273;45300;20271;19434;17537;22100;27900;31330;34590;43566;55514;96100;67268;93662;77952;88732;139346;164828;166888;203000;171327;230300;241508;258976.54;303936;294379;226129;302615;326724;248919 -185;'643;Russian Federation;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92000;32000;65000;56000;33000;136000;25000;27000;41000;58000;79000;133000;195000;233000;179000;280000;299000;318000;320000;527334;557803;685570;711627;759119;888000;1327000;1759000;1700000;1570000;1928201;1536678;1339457 -185;'643;Russian Federation;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2992;1188;1000;0;0;32000;26000;7300;4000;3000;4000;4400;5400;7400;10200;15000;17000;15000;16393;20679;21089;18460;20575;17446;14880;33929;22641;18499;12630;20926;6683;6289 -185;'643;Russian Federation;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4880;1234;1148;0;0;19235;11094;5231;3120;3429;5991;6670;7481;11321;17182;32234;40193;38639;51546;63519;66840;57146;53108;37978;34478;32288.2;33073;30590;25809;30680;31388;31725 -185;'643;Russian Federation;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;763;1575;5300;0;0;6000;10000;13000;16000;15000;19000;18000;25200;33000;38000;44000;81000;113000;281827;297012;264225;315831;453784;459032;505368;596818;731746;787204;619119;719338;787034;660497 -185;'643;Russian Federation;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;429;655;773;0;0;3789;3048;2455;3100;2943;3606;6742;11428;14102;14310;20542;29296;34284;78915;101368;100871;109336;111959;89334;110705;136517.03;174007;179277;143059;185534;179059;118772 -185;'643;Russian Federation;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7355000;6142000;4283000;3893000;3033000;3182000;3296000;4111000;4709000;5092000;5605000;6264000;7042000;7782000;8783000;10208000;10366000;8295000;9828000;11573611;12194415;12051000;12496289;13537279;13932000;15024000;16242000;16239000;15725000;18429000;15987000;16922000 -185;'643;Russian Federation;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12004;10632;28500;30900;60000;260900;391400;284100;371500;564000;597000;978000;978000;1119000;1502000;1645000;1223000;838000;1121490;1417031;2084192;2297943;2123104;1325969;1207593;1242823;1269318;1115910;1310218;1128281;222071;194714 -185;'643;Russian Federation;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4464;5396;12691;11400;28250;92801;90405;68105;77883;101305;115953;175099;217291;274180;353633;493586;556095;348944;460753;612882;745561;844560;768427;383041;352001;390102.44;418830;338486;369285;463225;162158;144518 -185;'643;Russian Federation;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;295671;577314;668200;973000;965000;968000;1009000;1265000;1388000;1393000;1548200;1650000;1988000;2148000;2321000;2478000;2139000;2320000;2348826;2229677;2846816;2933883;3482932;4044166;4919448;5281894;5927090;6130378;6674585;7125003;4052890;3255967 -185;'643;Russian Federation;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89003;179615;139294;246700;267800;281610;267976;267600;263670;287659;331746;363639;524670;681975;756889;1068458;1051787;758596;869631;1079962;1234242;1353786;1551918;1303917;1339080;1657477.66;2070484;1844738;1809509;3094306;1850650;1011600 -185;'643;Russian Federation;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1268000;1042000;890000;939000;972000;943000;1102000;1324000;1484000;1590000;1821000;1978000;2246000;2556000;2614000;2777000;2592000;2107000;2689000;3040000;3150000;3303000;3540000;3606674;3759000;3729000;4013000;4061000;3999000;4550000;3241000;3264000 -185;'643;Russian Federation;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4093;4653;5000;5400;6000;29000;29000;2700;37500;25000;31000;41000;43000;54000;46000;128000;115000;53000;34859;42717;252343;243746;222313;74929;57825;118207;84435;64454;116614;62575;21085;9774 -185;'643;Russian Federation;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2223;3183;2700;2700;4000;5695;4887;752;4220;5176;8391;10550;13864;16706;19101;59188;47600;19191;16745;35422;49066;66826;64333;24988;28663;36055;42205;34887;43372;44154;14751;7611 -185;'643;Russian Federation;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;225702;464000;568000;670000;612000;631000;736000;913000;974000;1032000;1157000;1201000;1438000;1527000;1577000;1503000;1326000;1334000;1511801;1600000;1716740;1757684;1969321;2205859;2458277;2472284;2676119;2748400;2895261;3152346;1962328;1476094 -185;'643;Russian Federation;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76192;162400;120897;193200;206700;212685;229699;233800;220770;244600;282000;301080;423994;528809;560558;765220;756453;517586;689677;910246;890658;995499;1173521;990901;945270;1103199;1352094;1138382;1158247;1937739;1243680;647884 -185;'643;Russian Federation;1607;Laminated Veneer Lumber (LVL);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;150000;150000 -185;'643;Russian Federation;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;16 -185;'643;Russian Federation;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;137 -185;'643;Russian Federation;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13526;5736 -185;'643;Russian Federation;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10088;3100 -185;'643;Russian Federation;1646;Particle board and OSB (1961-1994);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4522000;3941000;2626000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -185;'643;Russian Federation;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6185;4242;16700;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -185;'643;Russian Federation;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1288;1299;5696;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -185;'643;Russian Federation;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21101;35295;18400;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -185;'643;Russian Federation;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2434;2947;1888;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -185;'643;Russian Federation;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2206000;1472000;1490000;1568000;1987000;2335000;2545000;2738000;3198000;3638000;3930000;4717000;5501000;5751000;4562000;5429000;6633611;6723415;6554900;6183415;6590605;6419000;6895000;7330000;7151000;6731000;7900000;6660000;7429000 -185;'643;Russian Federation;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25500;54000;97500;238000;171000;229100;349000;397000;588000;527000;537000;678000;579000;472000;248000;231063;229000;323968;430000;422511;252990;232565;254409;296312;323616;321886;312461;33193;30599 -185;'643;Russian Federation;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8700;24250;47683;45323;27600;35525;51348;64857;83215;93177;107606;144460;165319;138763;58187;65535;81717;114755;153872;141072;72579;52256;60661.68;62983;53964;60315;85438;21547;21770 -185;'643;Russian Federation;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;169000;180000;163000;100000;95000;135000;155000;147000;183000;216000;240000;296000;479000;411000;575000;562205;376678;764324;783537;1015573;1257078;1544165;1655234;1766801;1901335;2164280;1920669;987346;894267 -185;'643;Russian Federation;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21500;26100;33641;12403;6900;10900;14818;16560;23939;41771;49950;64944;120131;119686;115703;94930;87623;201134;194733;198806;161365;176927;249084.12;309322;304212;258589;456079;239963;153509 -185;'643;Russian Federation;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;30000;101100;359874;618000;722000;1010000;1334000;1377000;1414000;1895000;1795000;2058000 -185;'643;Russian Federation;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;900;0;0;17000;25000;35000;110000;182000;297000;197000;297937;390000;570536;710000;546702;372281;367162;393360;400303;240512;351298;168198;431;1764 -185;'643;Russian Federation;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;175;0;0;2888;5208;8277;18308;34398;78391;54065;99938;131142;171462;218847;141123;53200;76858;83651.16;91165;50159;63250;53699;553;431 -185;'643;Russian Federation;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;2000;3000;1000;0;0;0;0;20305;64465;37126;9000;14917;39530;67700;118203;277956;286576;381790;686039;249975;193470 -185;'643;Russian Federation;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;327;317;348;0;0;0;0;2371;7399;4210;2133;4552;8440;13859;25018.21;67716;61780;73587;220386;75357;38441 -185;'643;Russian Federation;1874;Fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1565000;1159000;767000;748000;589000;749000;626000;800000;890000;957000;1046000;1088000;1158000;1296000;1452000;1930000;2023000;1626000;1710000;1900000;2291000;2092000;2413000;2722000;3032000;3390000;3565000;3650000;3581000;4084000;4291000;4171000 -185;'643;Russian Federation;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1726;1737;6800;0;0;134400;124400;110400;104000;190000;169000;332000;383000;493000;668000;756000;339000;340000;557631;755314;937345;914197;931578;625769;550041;476847;488268;487328;520420;585047;167362;152577 -185;'643;Russian Federation;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;953;914;4295;0;0;39423;40195;39753;37963;44781;42705;78446;105042;141591;171764;234681;291341;217501;278535;364601;410278;405015;421899;232274;194224;209734.6;222477;199476;202348;279934;125307;114706 -185;'643;Russian Federation;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48868;78019;81800;134000;173000;174000;173000;257000;279000;206000;244200;264000;331000;380000;448000;496000;402000;411000;254515;188534;328626;383662;483121;541699;849306;1036173;1206214;1194067;1233254;1365949;853241;692136 -185;'643;Russian Federation;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10377;14268;16509;32000;35000;35284;25874;26900;32000;28241;33186;38293;58588;102868;131387;183107;175648;125307;82653;74694;138240;161421;175039;143211;203024;280176.32;341352;340364;319086;480102;291650;171766 -185;'643;Russian Federation;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;715000;570000;601000;525000;615000;656000;700000;767000;755000;804000;836000;822000;755000;816000;582000;596000;703000;975000;958000;528000;492000;437000;420000;418000;400000;370000;401000;350000;338000 -185;'643;Russian Federation;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70400;70400;70400;64000;64000;84000;63000;63000;69000;71000;80000;168000;147000;192391;183742;207533;191771;268653;82385;170822;141328;144744;130459;141362;140260;43084;39278 -185;'643;Russian Federation;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19500;19500;19500;17710;17710;29580;12170;13333;14721;16252;22178;111589;125753;94774;99754;81386;68099;94344;36130;60115;70561.7;77365;67486;73544;88770;35321;31951 -185;'643;Russian Federation;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;134000;173000;174000;173000;257000;279000;206000;242000;247000;251000;290000;308000;342000;209000;234000;154525;113501;144996;135983;130480;145070;155659;132113;135361;145859;148697;153185;81094;46523 -185;'643;Russian Federation;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32000;35000;35284;25874;26900;32000;28241;32826;36652;49617;87328;76991;91597;89226;60183;42272;40368;50421;48117;49131;33084;29459;28635.76;31218;36416;39548;63065;39453;10974 -185;'643;Russian Federation;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84000;88000;163000;215000;239000;260000;317000;338000;446000;624000;1152000;1171000;1003000;1078000;1197000;1316000;1110000;1885000;2230000;2595000;2970000;3147000;3250000;3199000;3671000;3929000;3821000 -185;'643;Russian Federation;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64000;54000;40000;40000;126000;85000;269000;320000;424000;597000;676000;171000;193000;343853;547534;701643;688698;627582;435237;291597;297275;307469;308529;329140;379091;107529;108908 -185;'643;Russian Federation;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19923;20695;20253;20253;27071;13125;66276;91709;126870;155512;212503;179752;91748;177405;258366;321094;327673;318621;182991;122276;131749.08;138558;123649;121535;179422;86094;81136 -185;'643;Russian Federation;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;2200;17000;80000;90000;140000;154000;193000;177000;99659;74819;183587;245549;255132;335991;618125;903415;1067589;1046023;1079360;1205998;770903;645453 -185;'643;Russian Federation;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;360;1641;8971;15540;54396;91510;86422;65124;40295;34294;87814;112981;115530;101877;163301;251405.38;309363;303463;278519;415060;251705;160772 -185;'643;Russian Federation;1650;Other fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;295000;71000;34000;33000;19000;64000;13000;22000;19000;18000;19000;16000;16000;14000;6000;23000;36000;41000;36000;0;0;24000;0;0;0;0;0;0;12000;12000;12000;12000 -185;'643;Russian Federation;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;349;674;1500;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;21387;24038;28169;33728;35343;108147;87622;38244;36055;48340;49918;65696;16749;4391 -185;'643;Russian Federation;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;244;326;821;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;6356;6481;7798;9243;8934;13153;11833;7423.82;6554;8341;7269;11742;3892;1619 -185;'643;Russian Federation;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8673;10811;3300;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;331;214;43;2130;97509;60638;75522;645;3264;2185;5197;6766;1244;160 -185;'643;Russian Federation;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2381;1281;695;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;86;32;5;323;10378;8250;10264;135.19;771;485;1019;1977;492;20 -185;'643;Russian Federation;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1270000;1088000;733000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -185;'643;Russian Federation;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1377;1063;5300;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -185;'643;Russian Federation;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;709;588;3474;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -185;'643;Russian Federation;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40195;67208;78500;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -185;'643;Russian Federation;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7996;12987;15814;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -185;'643;Russian Federation;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7722000;5979000;4686000;6043000;4700000;4507000;4979000;6370000;7292000;7671700;8137000;8475000;8680000;8977000;8932000;8876000;9153000;8915000;9446000;10145006;10172000;10271000;10463000;10894186;11172000;11507000;12129000;11777000;12315000;12374865;12319329;12102639 -185;'643;Russian Federation;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;342;290;277;12077;25277;23000;21000;44700;36200;45000;50000;97000;26000;30300;62000;103000;82000;61241;70716;101959;130835;155045;177211;199921;173447;185457;171300;247031;309796;359115;109619;58215 -185;'643;Russian Federation;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110;63;53;11479;15512;13199;12338;23343;26185;19171;19587;26836;15544;18416;38706;67786;66547;44743;62974;97058;114784;131201;138615;127387;118100;124697.61;136092;175053;163987;241035;133264;74867 -185;'643;Russian Federation;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;835378;1054134;892500;1270600;1025300;938000;1025000;1346000;1678736;1798000;1855516;1896000;1916000;2013000;1971000;2013000;2178000;1932442;2051695;2272247;2662709;2357603;2431581;2486838;2499430;2607827;2622918;2433678;2616919;2276064;2398358;2254249 -185;'643;Russian Federation;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;188436;248145;326782;862757;401210;340781;346286;348915;568703;501765;529003;588415;653157;701512;783530;941821;1050726;721768;1125983;1286858;1154059;1100946;1194454;1150055;1084475;1227898.16;1639869;1121947;1088205;1403838;2137336;1284035 -185;'643;Russian Federation;1878;Pulp for paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6222000;4779000;3726000;4863000;3740000;3657000;3909000;5010000;5752000;6021700;6377000;6605000;6780000;6877000;6882000;6826000;7003000;6615000;7346000;7845006;7572000;7571000;7603000;8174186;8452000;8392000;8679000;8327000;8865000;8924865;8869329;8652639 -185;'643;Russian Federation;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;162;13;0;11800;25000;23000;21000;44700;36200;33000;42000;41000;23000;28300;60000;100000;80000;57241;67272;99828;126318;147493;164854;153097;148680;151154;151344;215045;235224;280231;97793;57713 -185;'643;Russian Federation;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;10;0;11426;15459;13199;12338;23343;26185;18340;18926;21420;15226;18175;38359;67297;66070;44112;62319;96538;113647;129457;136531;120583;115044;119246.9;132449;169675;153500;220412;130286;74826 -185;'643;Russian Federation;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;804635;1014275;884700;1258300;1013000;938000;1025000;1346000;1614600;1715000;1800000;1806000;1744000;1808000;1780000;1735000;1875000;1713442;1850623;1980090;2194856;1948618;2061693;2227608;2300480;2258872;2254635;2189335;2466395;2179131;2340858;2187833 -185;'643;Russian Federation;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;179836;238990;325657;861527;399980;340781;346286;348915;562413;493320;523588;578631;634194;678148;757250;901342;1001124;696600;1089557;1225163;1084916;1026021;1122819;1109109;1053156;1166663.89;1567946;1071555;1060760;1378712;2123681;1272965 -185;'643;Russian Federation;1875;Wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6542000;5072000;3917000;5073000;3817000;3750000;3991000;5109000;5842000;6151700;6512000;6763000;6971000;7053000;7063000;7031000;7179000;6750000;7376000;7916006;7662000;7200000;7532000;8074186;8352000;8292000;8579000;8227000;8765000;8824865;8769329;8552639 -185;'643;Russian Federation;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7218;1319;1316;12800;35000;49000;31000;57200;52200;33000;47000;48000;22000;25300;56000;94000;65000;42629;60860;93721;120472;140974;156988;146996;147374;150631;146916;211058;232312;281802;96363;47888 -185;'643;Russian Federation;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4264;473;470;11896;23109;29575;18952;30923;36627;18340;22148;25368;14270;15874;35543;62439;49161;30462;54721;84300;103935;119674;124026;112045;109156;112190.2;125056;163798;148978;218973;126054;59885 -185;'643;Russian Federation;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;805740;1023290;933200;1331100;1079000;985000;1056000;1389900;1648500;1785000;1885000;1916000;1866000;1946000;1918000;1899000;2035000;1715064;1869532;2035173;2258332;1976498;2061350;2227380;2300250;2258553;2254305;2189062;2466166;2178947;2340841;2187833 -185;'643;Russian Federation;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;179972;245080;354299;939869;444085;368985;366073;370088;580542;524879;558240;633765;703096;756073;838418;1037092;1152098;697599;1113106;1299662;1146247;1049887;1122158;1108750;1052789;1166063.98;1567353;1071085;1060431;1378511;2123665;1272965 -185;'643;Russian Federation;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2280000;2420000;2351000;2399000;2537658;2599565;2503792 -185;'643;Russian Federation;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1678;1243;1869;1419;1097;382;29 -185;'643;Russian Federation;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;916.14;909;1308;1066;900;645;45 -185;'643;Russian Federation;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;145750;137270;138398;158482;136724;108076;96805 -185;'643;Russian Federation;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63764.5;76369;58374;59316;66215;255548;44555 -185;'643;Russian Federation;1654;Mechanical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1396000;1165000;919000;1245000;976000;899000;981000;1129000;1196000;1214800;1207000;1240000;1305000;1303000;1300000;1303000;1478000;1470000;1848000;2043006;1648000;1447000;1225000;2149186;2200000;;;;;;; -185;'643;Russian Federation;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98;;;;;;0;0;0;0;0;0;0;0;0;0;1000;1241;409;176;4464;2618;1769;1857;1887;;;;;;; -185;'643;Russian Federation;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;;;;;;0;0;0;0;0;47;45;53;272;115;386;422;612;197;3699;2695;1417;1247;877;;;;;;; -185;'643;Russian Federation;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1415;893;100;0;0;0;0;0;0;0;0;0;0;0;0;0;0;64;0;0;0;4;0;1;0;;;;;;; -185;'643;Russian Federation;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;734;229;23;0;0;0;0;0;0;0;0;38;6;0;0;0;7;33;0;0;0;2;0;2;0;;;;;;; -185;'643;Russian Federation;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;382000;300000;215000;266000;199000;263000;206000;298000;361000;370000;414000;450000;460000;429000;445000;453000;515000;535000;576000;609000;610000;644000;815000;600000;600000;;;;;;; -185;'643;Russian Federation;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;1000;2000;1300;11000;22000;5000;0;60;839;2455;1497;63;0;1;;;;;;; -185;'643;Russian Federation;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;606;842;336;4502;10264;1345;0;36;508;2135;1287;57;0;2;;;;;;; -185;'643;Russian Federation;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;121000;132000;164366;190874;186546;176012;182591;159166;153259;;;;;;; -185;'643;Russian Federation;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;63;0;0;0;224;60102;45048;84532;88829;79227;77439;79401;61237;55677;;;;;;; -185;'643;Russian Federation;1656;Chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4444000;3314000;2592000;3352000;2565000;2495000;2722000;3583000;4195000;4436900;4756000;4915000;5015000;5145000;5137000;5070000;5010000;4610000;4922000;5193000;5314000;5080000;5463000;5325000;5552000;6012000;6159000;5876000;6366000;6287207;6169764;6048847 -185;'643;Russian Federation;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;3;0;11800;25000;23000;21000;44700;36200;33000;42000;40000;20000;24000;45000;72000;59000;41000;60386;92681;113553;136859;155132;145084;141360;144234;145673;209181;230364;275812;94412;47859 -185;'643;Russian Federation;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;3;0;11426;15459;13199;12338;23343;26185;18340;18926;20767;13230;15485;30759;52053;47423;29779;54064;83545;98101;115692;122518;110786;106496;108906.97;124147;162474;147603;214514;124298;59840 -185;'643;Russian Federation;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;801000;1012000;879900;1251600;1013000;938000;1025000;1346000;1614600;1715000;1799000;1805000;1743000;1807000;1779000;1734000;1754000;1580000;1686257;1789215;2008274;1772440;1878759;2068213;2146991;2112803;2117035;2050664;2307676;2042223;2232765;2091028 -185;'643;Russian Federation;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;177200;238240;324603;859090;399980;340781;346286;348915;562413;493320;522972;577617;632928;676975;755764;900145;940762;651269;1005024;1136329;1005637;948338;1042757;1047511;997112;1102299.48;1490984;1012711;1001113;1312296;1868117;1228410 -185;'643;Russian Federation;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1809000;1274000;867000;1103000;774000;888000;1003000;1424000;1679000;1740500;2008000;2000000;1943000;1991000;2067000;2044000;2006000;1893000;1839000;3518000;3571000;3382000;3383000;3350000;3512000;4050000;4110000;3817000;4316000;4231825;4119114;4007166 -185;'643;Russian Federation;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;1000;1000;0;0;0;0;0;0;0;0;0;0;0;0;44;1;35;36;45;113;163;610;54;203;92;8494;1188;0 -185;'643;Russian Federation;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1868;323;288;0;0;0;0;0;2;1;1;0;0;0;0;58;1;44;47;58;137;133;393.52;55;144;82;6225;842;0 -185;'643;Russian Federation;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65928;132000;148000;192000;161000;196000;205000;281000;352700;400000;550000;492000;448000;470000;452000;465000;477000;435000;451787;477240;458039;335331;338990;342383;372583;370698;461579;426216;418717;530174;478861;415672 -185;'643;Russian Federation;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25533;51000;45413;109818;53846;61200;56657;68195;111336;92065;139378;129801;132730;149588;165684;208249;221575;149340;215054;255341;193511;150212;170204;145943;148813;161570.54;294494;190692;155279;295817;288281;198748 -185;'643;Russian Federation;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1525000;1284000;1168000;1514000;1235000;1178000;1325000;1686000;1946000;2056300;2157000;2268000;2429000;2532000;2531000;2607000;2614000;2476000;2685000;1395000;1417000;1392000;1743000;1550000;1610000;1620000;1700000;1700000;1700000;1700000;1700000;1700000 -185;'643;Russian Federation;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;;;3800;22000;21000;19000;44000;34700;33000;42000;40000;20000;24000;44000;70000;58000;41000;59350;91633;112391;135635;153037;142708;139580;141929;143776;206669;227716;264704;92436;47527 -185;'643;Russian Federation;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;;;3138;13689;12253;11117;22879;25269;18174;18688;20577;12880;15116;29929;50738;46450;29779;52164;81460;96012;113658;118976;107335;103757;105671.23;120794;157996;142602;203153;121922;58613 -185;'643;Russian Federation;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;708847;608000;621000;900000;772000;681000;759000;983000;1076000;1115000;1074000;1136000;1117000;1187000;1211000;1204000;1236000;1120000;1207305;1288734;1525373;1411490;1514038;1694750;1749328;1725030;1640810;1611719;1871068;1490389;1738390;1668793 -185;'643;Russian Federation;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140017;130000;243767;652860;310920;256535;266301;256833;389274;342605;335282;395595;436697;474034;545635;659457;701656;493746;778356;869849;802922;788338;862084;890171;840426;933510.62;1189335;817715;840567;1007535;1573410;1027587 -185;'643;Russian Federation;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;342000;349000;359000;350000;355382;350650;341681 -185;'643;Russian Federation;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1695;1843;2309;2556;2614;788;332 -185;'643;Russian Federation;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2842.22;3298;4334;4919;5136;1534;1227 -185;'643;Russian Federation;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17075;14646;12729;17891;21660;15514;6563 -185;'643;Russian Federation;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7218.31;7155;4304;5267;8944;6426;2075 -185;'643;Russian Federation;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;598000;438000;318000;429000;301000;252000;262000;321000;294000;306200;287000;322000;319000;334000;329000;277000;299000;182000;308000;260000;304000;256000;267000;385000;390000;;;;;;; -185;'643;Russian Federation;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;6;3;8;13;28;16;8;;;;;;; -185;'643;Russian Federation;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;38;55;0;132;1;38;0;0;0;17;7;16;23;30;31;18;;;;;;; -185;'643;Russian Federation;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8702;79000;20200;79400;0;0;0;0;27900;27000;25000;35000;33000;28000;21000;11000;7000;7000;10581;5913;7587;8315;7389;7408;6999;;;;;;; -185;'643;Russian Federation;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3834;34000;5996;41838;0;0;0;0;6780;6352;4348;6655;8417;8359;7285;5017;2717;1253;3998;2467;2246;2678;2601;2391;1770;;;;;;; -185;'643;Russian Federation;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;512000;318000;239000;306000;255000;177000;132000;152000;276000;333900;304000;325000;324000;288000;210000;142000;91000;59000;90000;20000;22000;50000;70000;40000;40000;;;;;;; -185;'643;Russian Federation;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;3;0;6000;2000;1000;2000;700;1500;0;0;0;0;0;1000;2000;1000;0;986;1044;1119;1175;2022;2247;1609;;;;;;; -185;'643;Russian Federation;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;3;0;6420;1447;658;1221;464;916;128;183;188;217;367;792;1315;973;0;1825;2077;2029;1964;3454;3283;2588;;;;;;; -185;'643;Russian Federation;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17523;193000;90700;80200;80000;61000;61000;82000;158000;173000;150000;142000;145000;122000;95000;54000;34000;18000;16584;17328;17275;17304;18342;23672;18081;;;;;;; -185;'643;Russian Federation;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7816;23240;29427;54574;35214;23046;23328;23887;55023;52298;43964;45566;55084;44994;37160;27422;14814;6930;7616;8672;6958;7110;7868;9006;6103;;;;;;; -185;'643;Russian Federation;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;320000;293000;191000;210000;77000;93000;82000;99000;90000;130000;135000;158000;191000;176000;181000;205000;176000;135000;30000;71000;90000;29000;29000;0;0;0;0;0;0;0;0;0 -185;'643;Russian Federation;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7063;1316;1316;1000;10000;26000;10000;12500;16000;0;5000;7000;0;0;0;0;0;388;5;25;0;0;24;55;4126;4719;0;8;529;4893;1569;0 -185;'643;Russian Federation;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4180;470;470;470;7650;16376;6614;7580;10442;0;3222;3948;153;0;10;7;7;261;9;50;0;0;34;12;1781;2367.09;0;16;309;3559;1111;0 -185;'643;Russian Federation;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3325;10397;53200;79500;66000;47000;31000;43900;33900;70000;86000;111000;123000;139000;139000;165000;160000;3000;18909;55084;63512;28042;0;0;0;0;0;0;8;0;0;0 -185;'643;Russian Federation;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2038;6611;29673;80779;44105;28204;19787;21173;18129;31559;35268;56047;70162;79098;82654;136723;151227;1249;23550;74504;61383;24108;0;0;0;0;0;0;2;0;0;0 -185;'643;Russian Federation;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;400000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000 -185;'643;Russian Federation;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;10;0;0;0;0;0;0;0;0;0;0;1000;3000;4000;6000;15000;15000;6417;6132;5846;6519;7890;6156;5432;5242;4428;3995;3441;3322;2999;9825 -185;'643;Russian Federation;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;7;0;0;0;0;0;0;0;0;0;0;1109;2301;2826;4865;16916;13911;7607;12288;9712;9783;12539;8550;7669;9423.79;7393;5893;4831;4998;5343;14941 -185;'643;Russian Federation;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2220;1382;4700;6700;0;0;0;0;0;0;1000;1000;1000;1000;1000;1000;0;1378;0;1;36;162;343;228;230;319;330;273;237;184;17;0 -185;'643;Russian Federation;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1902;521;1031;2437;0;0;0;0;0;0;616;913;1260;1173;1486;973;253;250;1;5;52;242;661;359;367;599.91;593;470;331;201;16;0 -185;'643;Russian Federation;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;13100;0;0;0;0;2000;4000;6000;4000;0;13009;20645;26926;26018;13511;8605;8210;13088;7164;3308;3598;988;369;165 -185;'643;Russian Federation;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1097;0;0;0;0;1615;3146;5416;3424;0;10062;19515;22744;22441;11063;4891;4805;7889.07;4660;2830;2926;957;626;169 -185;'643;Russian Federation;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;64100;0;0;0;0;0;0;0;0;0;0;0;647;435;518;421;1105;1337;1006;1085;2191;5409;10881;9043 -185;'643;Russian Federation;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;6290;0;255;3;0;0;17;0;0;0;0;0;82;180;256;205;241;833.45;619;578;1144;2198;3320;2205 -185;'643;Russian Federation;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1500000;1200000;960000;1180000;960000;850000;1070000;1360000;1540000;1650000;1760000;1870000;1900000;2100000;2050000;2050000;2150000;2300000;2100000;2300000;2600000;2700000;2860000;2720000;2720000;3115000;3450000;3450000;3450000;3450000;3450000;3450000 -185;'643;Russian Federation;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;180;277;277;277;277;0;0;0;0;12000;8000;56000;3000;2000;2000;3000;2000;4000;3444;2131;4517;7552;12357;46824;24767;34303;19956;31986;74572;78884;11826;502 -185;'643;Russian Federation;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;53;53;53;53;0;0;0;0;831;661;5416;318;241;347;489;477;631;655;520;1137;1744;2084;6804;3056;5450.71;3643;5378;10487;20623;2978;41 -185;'643;Russian Federation;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30743;39859;7800;12300;12300;0;0;0;64136;83000;55516;90000;172000;205000;191000;278000;303000;219000;201072;292157;467853;408985;369888;259230;198950;348955;368283;244343;150524;96933;57500;66416 -185;'643;Russian Federation;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8600;9155;1125;1230;1230;0;0;0;6290;8445;5415;9784;18963;23364;26280;40479;49602;25168;36426;61695;69143;74925;71635;40946;31319;61234.26;71923;50392;27445;25126;13655;11070 -185;'643;Russian Federation;1876;Paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5765000;4459000;3412000;4073000;3224000;3339000;3595000;4535000;5310000;5624800;5978000;6377000;6830000;7126000;7434000;7581000;7700000;7373000;5606000;7600120;7670145;7746653;8023000;8068091;8546947;8716989;9048000;9149990;9526987;9511743;9292578;9169987 -185;'643;Russian Federation;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72124;57374;41100;56400;312000;458000;300000;311000;357900;495000;638000;776000;883000;1065000;1221000;1455500;1471000;1086000;1324182;1399696;1547671;1612862;1441433;1170103;1140683;1209571;1270935;1230781;1120483;1303781;645056;507375 -185;'643;Russian Federation;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53204;80155;57978;54904;532493;595949;290930;233828;253345;380965;562773;731132;862406;1097343;1264031;1618659;1959690;1647839;1844173;2084790;2073636;2177983;1935689;1331905;1307569;1347179.26;1484350;1372693;1302228;1531877;1167752;987339 -185;'643;Russian Federation;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;289206;1252111;918600;1774000;1324000;1447000;1767000;1998000;2253300;2347000;2458000;2459000;2707000;2737000;2701000;2512000;2634000;2717222;2408708;2307269;2565820;2564671;2761499;2820859;2833312;3038748;3197052;3204787;3683801;3757933;2828779;2480379 -185;'643;Russian Federation;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;152391;599532;263821;1053656;689143;612405;736481;677097;835827;924083;864890;957434;1243628;1345144;1452220;1571222;1802949;1519471;1430546;1610160;1709021;1787033;1965219;1566798;1566184;1803151.42;2274618;1991441;1875740;2461093;1946883;1315417 -185;'643;Russian Federation;2042;Graphic papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1788000;1510000;1468000;1943000;1678000;1636000;1869000;2188000;2269000;2370800;2221000;2403000;2585000;2570000;2594000;2548000;2512000;2480000;2481000;2363120;2245145;2268257;2616000;2394091;2294467;2340118;2492000;2520088;2623919;2608675;2389510;2266919 -185;'643;Russian Federation;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24240;17578;19300;23400;45000;97000;48000;86000;194200;193000;249000;282000;399000;469000;542000;679000;669000;497000;549317;581168;674230;667248;550068;348484;337124;402765;393991;366616;304414;341328;152615;122262 -185;'643;Russian Federation;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24805;21457;21576;29523;41699;62606;26093;32488;73401;84979;153598;181462;244275;312970;393918;533556;626545;500739;572245;654107;713120;713271;554567;304765;304274;368670.24;397259;361026;297698;363750;222574;199511 -185;'643;Russian Federation;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95550;590111;637900;1226000;1019000;1008000;1266000;1364000;1361300;1424000;1514000;1527000;1768000;1745000;1686000;1524000;1652000;1781222;1603936;1478603;1558810;1444192;1628437;1520691;1510220;1624539;1685248;1768327;1502956;1309859;1003329;1078258 -185;'643;Russian Federation;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41669;220206;189262;754298;530412;435732;537804;501364;557269;629882;568867;527612;846689;897544;952807;954729;1125721;975991;867916;945670;942384;904584;988663;741482;755037;857920.88;1085720;971653;664400;702446;657384;593164 -185;'643;Russian Federation;1671;Newsprint;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;943000;845000;1038000;1457000;1245000;1195000;1395000;1622000;1694000;1731800;1714000;1814000;1978000;1984000;1993000;1979000;1987000;2006000;1963000;1929120;1820145;1585000;1636000;1489091;1469467;1438000;1527000;1516400;1314000;1298756;1079591;957000 -185;'643;Russian Federation;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;1628;400;1000;1000;1000;2000;3000;3600;3000;3000;3000;3000;3000;3000;6000;6000;2000;2448;2149;4325;6569;3530;1126;1378;3079;868;2965;11443;2582;0;0 -185;'643;Russian Federation;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;714;251;963;1250;600;1228;1577;2020;1556;1549;1544;2005;2006;2480;4742;5135;1860;1914;1776;3472;4999;2751;819;705;1494.05;515;1388;4129;1179;0;0 -185;'643;Russian Federation;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88869;578000;571300;1005000;868000;822000;1041000;1130000;1137600;1175000;1160000;1198000;1297000;1358000;1298000;1169000;1332000;1420000;1401529;1316622;1297986;1093000;1179778;1105609;1062823;1125351;1163674;1245710;1061784;922131;819082;715126 -185;'643;Russian Federation;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38287;215000;166504;598285;421411;324135;414159;397059;444475;501306;390122;423909;512861;623782;658272;631436;801467;681022;674788;770007;690839;581663;623176;443491;427916;468155.72;654227;554044;361069;405415;472684;339463 -185;'643;Russian Federation;1674;Printing and writing papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845000;665000;430000;486000;433000;441000;474000;566000;575000;639000;507000;589000;607000;586000;601000;569000;525000;474000;518000;434000;425000;683257;980000;905000;825000;902118;965000;1003688;1309919;1309919;1309919;1309919 -185;'643;Russian Federation;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24216;15950;18900;22400;44000;96000;46000;83000;190600;190000;246000;279000;396000;466000;539000;673000;663000;495000;546869;579019;669905;660679;546538;347358;335746;399686;393123;363651;292971;338746;152615;122262 -185;'643;Russian Federation;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24791;20743;21325;28560;40449;62006;24865;30911;71381;83423;152049;179918;242270;310964;391438;528814;621410;498879;570331;652331;709648;708272;551816;303946;303569;367176.19;396744;359638;293569;362571;222574;199511 -185;'643;Russian Federation;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6681;12111;66600;221000;151000;186000;225000;234000;223700;249000;354000;329000;471000;387000;388000;355000;320000;361222;202407;161981;260824;351192;448659;415082;447397;499188;521574;522617;441172;387728;184247;363132 -185;'643;Russian Federation;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3382;5206;22758;156013;109001;111597;123645;104305;112794;128576;178745;103703;333828;273762;294535;323293;324254;294969;193128;175663;251545;322921;365487;297991;327121;389765.17;431493;417609;303331;297031;184700;253701 -185;'643;Russian Federation;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;7000;3000;27000;21000;175000;181000;175000;180000;170000;157000;142000;20000;286000;284000;449894;55000;50000;45000;49207;54000;56164;73300;73300;73300;73300 -185;'643;Russian Federation;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;9000;13000;21000;28000;28000;17000;45080;39700;37943;40734;31591;20568;23669;28504;25718;26915;18618;26626;4097;5789 -185;'643;Russian Federation;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;5235;8749;15246;22487;26995;17890;37537;35425;30828;33365;25698;14088;17952;21059;19880;20374;13774;18631;4454;10772 -185;'643;Russian Federation;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;15000;15000;10000;9000;10000;8000;8044;4768;7863;9439;11560;11504;14806;28354;28791;26123;29104;25127;32954;134610 -185;'643;Russian Federation;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;8639;9309;6678;7414;9516;6200;5787;2825;5698;5959;6435;5097;7388;17942.01;19776;18644;16322;17398;30710;69785 -185;'643;Russian Federation;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;473000;557000;570000;610000;484000;412000;424000;410000;420000;398000;367000;331000;498000;148000;141000;223363;865000;770000;680000;743566;815000;847678;1106309;1106309;1106309;1106309 -185;'643;Russian Federation;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24000;17000;17200;22000;97000;108000;117000;134000;142000;191000;176000;136000;87065;107289;146124;163464;144435;78676;64640;100649;86416;105005;100289;106139;41419;20083 -185;'643;Russian Federation;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12974;6705;7732;12515;54673;62041;61561;82355;98369;142901;170348;119662;97777;124471;163138;180828;143872;73347;65158;97802.19;95734;109985;99984;117681;66419;43204 -185;'643;Russian Federation;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;225000;233000;222100;243000;351000;328000;450000;368000;377000;346000;310000;353000;194243;157094;251805;340375;428483;388305;416903;459023;476979;483180;399225;332586;147391;228266 -185;'643;Russian Federation;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;123023;103883;111697;122850;176978;102806;315977;261456;287162;315240;313804;288546;187006;172306;243042;313929;353221;284141;309662;362370.16;398906;387125;276117;264284;149279;183578 -185;'643;Russian Federation;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;2000;2000;2000;2000;2000;2000;1000;1000;1000;1000;1000;0;0;0;10000;60000;85000;100000;109345;96000;99846;130310;130310;130310;130310 -185;'643;Russian Federation;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22000;66000;173400;168000;149000;171000;270000;319000;376000;454000;459000;342000;414724;432030;485838;456481;370512;248114;247437;270533;280989;231731;174064;205981;107099;96390 -185;'643;Russian Federation;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11891;24206;63649;70908;97376;117877;175474;219860;277823;363426;424067;361327;435017;492435;515682;494079;382246;216511;220459;248315;281130;229279;179811;226259;151701;145535 -185;'643;Russian Federation;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1000;1600;6000;3000;1000;6000;4000;1000;0;0;222;120;119;1156;1378;8616;15273;15688;11811;15804;13314;12843;30015;3902;256 -185;'643;Russian Federation;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;622;422;1097;5726;1767;897;9212;2997;695;639;934;223;335;532;2805;3033;5831;8753;10071;9453;12811;11840;10892;15349;4711;338 -185;'643;Russian Federation;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3977000;2949000;1944000;2130000;1546000;1703000;1726000;2347000;3041000;3254000;3757000;3974000;4245000;4556000;4840000;5033000;5188000;4893000;3125000;5237000;5425000;5478396;5407000;5674000;6252480;6376871;6556000;6629902;6903068;6903068;6903068;6903068 -185;'643;Russian Federation;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47884;39796;21800;33000;267000;361000;252000;225000;163700;302000;389000;494000;484000;596000;679000;776500;802000;589000;774865;818528;873441;945614;891365;821619;803559;806806;876944;864165;816069;962453;492441;385113 -185;'643;Russian Federation;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28399;58698;36402;25381;490794;533343;264837;201340;179944;295986;409175;549670;618131;784373;870113;1085103;1333145;1147100;1271928;1430683;1360516;1464712;1381122;1027140;1003295;978509.02;1087091;1011667;1004530;1168127;945178;787828 -185;'643;Russian Federation;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;193656;662000;280700;548000;305000;439000;501000;634000;892000;923000;944000;932000;939000;992000;1015000;988000;982000;936000;804772;828666;1007010;1120479;1133062;1300168;1323092;1414209;1511804;1436460;2180845;2448074;1825450;1402121 -185;'643;Russian Federation;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110722;379326;74559;299358;158731;176673;198677;175733;278558;294201;296023;429822;396939;447600;499413;616493;677228;543480;562630;664490;766637;882449;976556;825316;811147;945230.54;1188898;1019788;1211340;1758647;1289499;722253 -185;'643;Russian Federation;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93000;88000;75000;82000;82000;93000;94000;106000;111000;137000;147000;155000;162000;165000;170000;182000;191000;185000;213000;310000;330000;333396;420000;445000;490975;500751;580000;586536;610703;610703;610703;610703 -185;'643;Russian Federation;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67000;96000;8000;3000;0;5000;15000;14000;31000;27000;27000;17500;20000;19000;23884;27727;28223;30132;31151;5600;4865;5599;6682;5006;5755;7701;2791;2887 -185;'643;Russian Federation;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;179744;197999;5700;2090;0;2907;6531;7756;20958;22531;22387;22249;29608;25450;32874;39771;35336;37862;40632;8628;7744;8875.4;10989;8784;10170;13744;8748;8177 -185;'643;Russian Federation;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1200;0;2000;2000;1000;2000;4000;1000;2000;1000;1000;1000;2000;2000;2000;3000;3732;1773;4400;7286;6450;14231;31895;50999;37882;46289;78074;60774;27494;9400 -185;'643;Russian Federation;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;483;0;2654;2308;770;968;1351;343;791;598;1174;1485;1749;2087;2380;2848;4844;2812;6114;9861;7750;13395;28643;36618.71;36318;46507;67077;57030;37606;10002 -185;'643;Russian Federation;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1242000;1705000;2479000;2323000;2516000;2762000;2900000;3134000;3296000;3458000;3628000;3425000;2622000;4345000;4665000;4846000;4867000;5154000;5678756;5791727;5896000;5962463;6208129;6208129;6208129;6208129 -185;'643;Russian Federation;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;154000;167000;122500;200000;194000;259000;409000;511000;599000;692000;730000;483000;704056;744971;797934;869687;813746;770984;747962;760290;830849;819291;769383;914027;446148;354716 -185;'643;Russian Federation;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;159738;133569;118560;255359;202526;285038;485102;625558;719258;901596;1095263;910000;1047856;1187553;1132529;1248043;1162526;870941;839384;847513.67;950177;872988;865231;1013470;777924;657751 -185;'643;Russian Federation;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;432000;578000;822100;804000;700000;690000;886000;939000;965000;939000;925000;916000;777327;800227;971302;1083419;1102621;1265345;1268229;1343512;1454607;1375071;2085908;2373797;1794619;1390244 -185;'643;Russian Federation;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;123329;148650;241278;228174;207686;240934;355454;413585;456932;566935;627217;513608;535650;635398;727757;839532;942571;792118;759172;885179.3;1128682;949715;1120817;1677766;1243420;706412 -185;'643;Russian Federation;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2664000;1996000;1398000;1515000;1046000;1199000;;;;;;;;;;;;;;;;;;;;;;;;;; -185;'643;Russian Federation;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;6600;52000;43000;;;;;;;;;;;;;;;;;;;;;;;;;; -185;'643;Russian Federation;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;4563;48193;32109;;;;;;;;;;;;;;;;;;;;;;;;;; -185;'643;Russian Federation;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;193656;662000;272500;252000;263000;381000;;;;;;;;;;;;;;;;;;;;;;;;;; -185;'643;Russian Federation;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110722;379326;72383;143309;126442;131682;;;;;;;;;;;;;;;;;;;;;;;;;; -185;'643;Russian Federation;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;784000;1087000;1360000;1550000;1740000;1987000;2129000;2279000;2488000;2631000;2864000;2689000;1847000;2742000;3233000;3366000;3596000;3620000;3986273;4065572;4387000;4436458;4619249;4619249;4619249;4619249 -185;'643;Russian Federation;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;5000;15800;26000;26000;28000;25000;59000;58000;59000;73000;46000;100922;135098;179421;189502;143532;158576;130725;149943;181515;155173;86688;185868;25369;25172 -185;'643;Russian Federation;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;558;2379;5426;12728;10768;11244;13620;20034;27962;41058;57997;22075;77473;116618;122449;129878;100277;92554;86934;112149;139050;111473;72895;104276;60080;57359 -185;'643;Russian Federation;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;251000;354000;539700;447000;499000;473000;593000;562000;560000;553000;568000;543000;416872;460733;546166;614856;545142;684207;672661;650740;675941;583632;1174086;1471555;1318858;1028000 -185;'643;Russian Federation;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78092;81370;149507;112460;135330;146418;213753;215520;233114;291644;320630;259813;230842;303545;315825;385479;339935;341575;325346;357610.79;462739;325646;517017;899163;805210;467024 -185;'643;Russian Federation;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;141000;193000;241000;259000;233000;229000;226000;250000;204000;205000;199000;185000;185000;1038000;957000;975000;710000;929000;1024978;1045367;842000;851492;886575;886575;886575;886575 -185;'643;Russian Federation;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;142000;123000;104700;127000;130000;195000;332000;371000;477000;560000;572000;375000;555732;554685;555837;607183;590963;543393;546683;539347;571745;589272;607005;651326;394749;316420 -185;'643;Russian Federation;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;148012;109524;111994;158457;175564;254883;441195;558946;647426;796741;953384;820256;913871;996160;937374;1028260;971370;702981;672721;648995.5;709745;670250;703432;811463;666900;568847 -185;'643;Russian Federation;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100000;113000;54500;80000;3000;3000;55000;78000;110000;102000;95000;146000;93444;86415;131749;133729;179809;186799;144507;151167;171550;192842;209004;257614;135289;64631 -185;'643;Russian Federation;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3960;31368;20881;33142;1935;4671;30705;56303;74307;94136;111414;121612;106520;94647;170400;180683;307971;188519;149985;161457.72;182405;172509;184296;282256;137771;50773 -185;'643;Russian Federation;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;177000;164000;548000;185000;528000;530000;514000;565000;549000;555000;498000;486000;460000;439000;425000;445000;515000;545000;601306;613272;577000;583501;607543;607543;607543;607543 -185;'643;Russian Federation;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11000;11000;200;42000;35000;33000;33000;60000;47000;61000;70000;48000;34525;38990;45708;53812;51631;53486;56238;56962;59405;52412;51884;48567;18589;10615 -185;'643;Russian Federation;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11168;8886;109;81232;14393;16817;20724;34814;34147;49489;72992;55352;47593;62366;60642;75804;72317;67012;71745;78081;90352;78078;76333;78609;42736;27710 -185;'643;Russian Federation;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81000;109000;181600;163000;187000;199000;225000;288000;287000;275000;256000;214000;263983;250556;288137;321765;354882;370332;413220;507180;563757;554835;641097;570446;287871;282775 -185;'643;Russian Federation;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41277;35429;59692;57014;65457;82435;106283;137684;146108;176493;191132;125863;196385;235484;237063;266740;282151;250858;267127;349478;458007;431027;396231;454324;268876;182361 -185;'643;Russian Federation;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140000;261000;330000;329000;15000;16000;31000;40000;55000;67000;67000;65000;130000;126000;50000;60000;46000;60000;66199;67516;90000;91012;94762;94762;94762;94762 -185;'643;Russian Federation;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;28000;1800;5000;3000;3000;19000;21000;17000;12000;15000;14000;12877;16198;16968;19190;27620;15529;14316;14038;18184;22434;23806;28266;7441;2509 -185;'643;Russian Federation;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;12780;1031;2942;1801;2094;9563;11764;9723;14308;10890;12317;8919;12409;12064;14101;18562;8394;7984;8288.17;11030;13187;12571;19122;8208;3835 -185;'643;Russian Federation;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2000;46300;114000;11000;15000;13000;11000;8000;9000;6000;13000;3028;2523;5250;13069;22788;24007;37841;34425;43359;43762;61721;74182;52601;14838 -185;'643;Russian Federation;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;483;11198;25558;4964;7410;4713;4078;3403;4662;4041;6320;1903;1722;4469;6630;12514;11166;16714;16632.78;25531;20533;23273;42023;31563;6254 -185;'643;Russian Federation;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1220000;865000;471000;533000;418000;411000;390000;536000;451000;794000;1094000;1057000;1183000;1257000;1374000;1393000;1369000;1283000;290000;582000;430000;299000;120000;75000;82749;84393;80000;80903;84236;84236;84236;84236 -185;'643;Russian Federation;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47884;39796;21800;26400;148000;222000;90000;55000;41200;97000;180000;221000;44000;58000;53000;67000;52000;87000;46925;45830;47284;45795;46468;45035;50732;40917;39413;39868;40931;40725;43502;27510 -185;'643;Russian Federation;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28399;58698;36402;20818;262857;303235;99399;65681;61384;37720;200118;256876;112071;136284;128468;161258;208274;211650;191198;203359;192651;178807;177964;147571;156167;122119.95;125925;129895;129129;140913;158506;121900 -185;'643;Russian Federation;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7000;296000;40000;56000;68000;54000;65900;118000;242000;241000;52000;52000;48000;47000;55000;17000;23713;26666;31308;29774;23991;20592;22968;19698;19315;15100;16863;13503;3337;2477 -185;'643;Russian Federation;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1693;156049;29635;42683;74578;26115;35929;65684;87546;188290;40311;32530;40732;47471;47631;27024;22136;26280;32766;33056;26235;19803;23332;23432.53;23898;23566;23446;23851;8473;5839 -185;'643;Russian Federation;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;699740.74;764958;723424;680259;882209;388347;348841 -185;'643;Russian Federation;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;567313.4;677450;755550;747891;1220178;639213;396725 -185;'643;Russian Federation;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14587.38;14955;12951;11704;16009;8809;5760 -185;'643;Russian Federation;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70951.07;98093;108393;129527;225249;117856;51449 -185;'643;Russian Federation;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4724.28;5607;4274;4129;5006;2072;2646 -185;'643;Russian Federation;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67115;92485;99942;119364;213646;109003;45349 -185;'643;Russian Federation;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9863.09;9348;8677;7575;11003;6737;3114 -185;'643;Russian Federation;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3836.07;5608;8451;10163;11603;8853;6100 -185;'643;Russian Federation;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6251.96;7195;5370;6538;12615;4721;3037 -185;'643;Russian Federation;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21132.29;25334;25331;24760;78415;28764;3005 -185;'643;Russian Federation;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20143.53;21935;21844;20715;29637;15313;14441 -185;'643;Russian Federation;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14870.46;20217;18653;16911;21151;14183;10653 -185;'643;Russian Federation;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113563.89;126308;112101;90879;132007;78696;58836 -185;'643;Russian Federation;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;231901.35;266467;304853;265481;463474;275923;239402 -185;'643;Russian Federation;1636;Glue-laminated timber (glulam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80000;60000 -185;'643;Russian Federation;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;190;53 -185;'643;Russian Federation;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;230;66 -185;'643;Russian Federation;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59830;36020 -185;'643;Russian Federation;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56483;37254 -185;'643;Russian Federation;1688;Cross-laminated timber (CLT or X-lam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;258 -185;'643;Russian Federation;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -185;'643;Russian Federation;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -185;'643;Russian Federation;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;258 -185;'643;Russian Federation;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;322 -185;'643;Russian Federation;1684;I-beams (I-joists);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20000;20000 -185;'643;Russian Federation;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;0 -185;'643;Russian Federation;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;223;0 -185;'643;Russian Federation;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7823;10176 -185;'643;Russian Federation;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11084;10127 -185;'643;Russian Federation;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;485603.82;524504;509577;492431;609324;241828;225585 -185;'643;Russian Federation;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;159034.31;185625;210857;214309;300489;96131;34151 -185;'643;Russian Federation;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14893.03;22940;10647;13173;25211;6271;6259 -185;'643;Russian Federation;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23813.69;30295;27658;22961;44380;31402;8604 -185;'643;Russian Federation;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44697.14;47121;50934;44819;57406;32709;34923 -185;'643;Russian Federation;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45610.24;51419;59805;73942;87020;74954;49461 -185;'643;Russian Federation;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1057616.25;1171395;1084392;1004228;1169557;1026590;789466 -185;'643;Russian Federation;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;393982.15;468673;508031;544333;692892;200002;116067 -185;'643;Russian Federation;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7539.17;8128;8097;7317;9750;5337;3954 -185;'643;Russian Federation;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2550.45;2087;1811;1659;2292;241;112 -185;'643;Russian Federation;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;331120.35;403335;379938;356764;416364;481128;297488 -185;'643;Russian Federation;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44931.12;49861;50396;50810;61964;7920;3545 -185;'643;Russian Federation;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66869.04;73855;70602;70498;77010;50863;35826 -185;'643;Russian Federation;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61308.42;71880;80661;95709;101975;31343;26333 -185;'643;Russian Federation;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;256808.69;278865;278196;248711;276667;197368;139655 -185;'643;Russian Federation;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;144586.16;174118;178099;191074;262123;63911;17790 -185;'643;Russian Federation;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;395279;407212;347559;320938;389766;291894;312543 -185;'643;Russian Federation;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140606;170727;197064;205081;264538;96587;68287 -184;'646;Rwanda;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55927;58170;82119;73999;76216.43;131489.23;69243.61 -184;'646;Rwanda;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4893;5319;7611;7076;8223.87;14444.56;1612.56 -184;'646;Rwanda;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;208;150;150;153;153;153;153;153;464;388;467;453;453;681;1131;2690;3218;2056;2789;2377;2506;3469;3713;10387;9665;10308;1369;787;817;1643;2706;1456;3597;2553;1652;1652;1652;1652;3016;3016;3016;3016;18626;10436;7485;14477;12740;13502;17878;19725;21935;17649;23026;40627;40124;44437.43;74963.23;30953.61 -184;'646;Rwanda;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;144;238;242;207;207;0;0;0;315;315;315;315;340;340;340;340;1886;2374;988;106;107;288;924;636;1638;1678;1720;2476;1842;2881.87;6090.56;1431.56 -184;'646;Rwanda;1861;Roundwood;5516;Production;m3;2822000;2913000;3003000;3094000;3184000;3322000;4007000;4115000;4227000;4344000;4465000;4590000;4721000;4858000;5001000;5149000;5305000;5467000;4615000;4796000;4973000;5157000;5266000;5634000;5842000;5842000;5842000;5842000;6608000;6388000;6388000;6428000;6428000;6479000;5377000;5798000;7415000;7526000;7836000;5400000;5495000;5495000;5495000;5495000;5495000;5495000;5495000;6211000;6211927;6211927;6211927;6211927;6211927;6211927;6211927;6211927;6211927;6211927;6211927;6211927;6211927;6211927;6211927 -184;'646;Rwanda;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;115;115;115;115;6368;1686;3496;348;1303;891;179;128;2069;192;934;6706;8996;1933;10645;2828 -184;'646;Rwanda;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;8;8;8;8;419;443;416;174;929;85;30;34;573;34;297;2205;4382;117;1719;865 -184;'646;Rwanda;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;198;145;3750;3750;3750;3750;0;0;0;143;143;143;143;143;143;143;143;112;130;102;56;20;20;2081;20;20;20;0;2;0;0;0;0 -184;'646;Rwanda;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;37;207;207;207;207;0;0;0;159;159;159;159;159;159;159;159;11;10;9;8;1;1;189;1;1;3;0;0;0;0;0;0 -184;'646;Rwanda;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23000;24000;50000;98000;98000;98000;98000;98000;98000;98000;98000;98000;98000;98000;98000;98000;98000;98000;98000;98000;98000;98000;98000;98000;98000;98000 -184;'646;Rwanda;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;14;1250;341;1850;8312;1000 -184;'646;Rwanda;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1;384;90;89;972;378 -184;'646;Rwanda;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;2;0;0;0;0 -184;'646;Rwanda;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -184;'646;Rwanda;1863;Roundwood, non-coniferous;5516;Production;m3;2822000;2913000;3003000;3094000;3184000;3322000;4007000;4115000;4227000;4344000;4465000;4590000;4721000;4858000;5001000;5149000;5305000;5467000;4615000;4796000;4973000;5157000;5266000;5634000;5842000;5842000;5842000;5842000;6608000;6388000;6388000;6428000;6428000;6479000;5377000;5798000;7415000;7503000;7812000;5350000;5397000;5397000;5397000;5397000;5397000;5397000;5397000;6113000;6113927;6113927;6113927;6113927;6113927;6113927;6113927;6113927;6113927;6113927;6113927;6113927;6113927;6113927;6113927 -184;'646;Rwanda;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;180;920;5456;8655;83;2333;1828 -184;'646;Rwanda;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;296;1821;4292;28;747;487 -184;'646;Rwanda;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;0;0;0;0;0;0 -184;'646;Rwanda;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;0;0;0;0;0 -184;'646;Rwanda;1864;Wood fuel;5516;Production;m3;2770000;2860000;2950000;3040000;3130000;3268000;3951000;4058000;4169000;4285000;4405000;4530000;4661000;4798000;4941000;5089000;5245000;5407000;4350000;4520000;4687000;4860000;5052000;5402000;5602000;5602000;5602000;5602000;6368000;6368000;6368000;6368000;6368000;6368000;5148000;5550000;7100000;7200000;7500000;5000000;5000000;5000000;5000000;5000000;5000000;5000000;5000000;5000000;5000000;5000000;5000000;5000000;5000000;5000000;5000000;5000000;5000000;5000000;5000000;5000000;5000000;5000000;5000000 -184;'646;Rwanda;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;11;13;14;;;;;;; -184;'646;Rwanda;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2;2;2;;;;;;; -184;'646;Rwanda;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;20;20;20;20;20;20;;;;;;; -184;'646;Rwanda;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;;;;;;; -184;'646;Rwanda;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -184;'646;Rwanda;1628;Wood fuel, non-coniferous;5516;Production;m3;2770000;2860000;2950000;3040000;3130000;3268000;3951000;4058000;4169000;4285000;4405000;4530000;4661000;4798000;4941000;5089000;5245000;5407000;4350000;4520000;4687000;4860000;5052000;5402000;5602000;5602000;5602000;5602000;6368000;6368000;6368000;6368000;6368000;6368000;5148000;5550000;7100000;7200000;7500000;5000000;5000000;5000000;5000000;5000000;5000000;5000000;5000000;5000000;5000000;5000000;5000000;5000000;5000000;5000000;5000000;5000000;5000000;5000000;5000000;5000000;5000000;5000000;5000000 -184;'646;Rwanda;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;11;13;14;;;;;;; -184;'646;Rwanda;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2;2;2;;;;;;; -184;'646;Rwanda;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;20;20;20;20;20;20;;;;;;; -184;'646;Rwanda;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;;;;;;; -184;'646;Rwanda;1865;Industrial roundwood;5516;Production;m3;52000;53000;53000;54000;54000;54000;56000;57000;58000;59000;60000;60000;60000;60000;60000;60000;60000;60000;265000;276000;286000;297000;214000;232000;240000;240000;240000;240000;240000;20000;20000;60000;60000;111000;229000;248000;315000;326000;336000;400000;495000;495000;495000;495000;495000;495000;495000;1211000;1211927;1211927;1211927;1211927;1211927;1211927;1211927;1211927;1211927;1211927;1211927;1211927;1211927;1211927;1211927 -184;'646;Rwanda;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;115;115;115;115;6368;1686;3496;348;1303;889;168;115;2055;192;934;6706;8996;1933;10645;2828 -184;'646;Rwanda;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;8;8;8;8;419;443;416;174;929;85;28;32;571;34;297;2205;4382;117;1719;865 -184;'646;Rwanda;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;198;145;3750;3750;3750;3750;0;0;0;143;143;143;143;143;143;143;143;92;110;82;36;0;0;2061;0;0;20;0;2;0;0;0;0 -184;'646;Rwanda;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;37;207;207;207;207;0;0;0;159;159;159;159;159;159;159;159;10;9;8;7;0;0;188;0;0;3;0;0;0;0;0;0 -184;'646;Rwanda;1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23000;24000;50000;98000;98000;98000;98000;98000;98000;98000;98000;98000;98000;98000;98000;98000;98000;98000;98000;98000;98000;98000;98000;98000;98000;98000 -184;'646;Rwanda;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6273;1182;3446;109;6;804;104;2;127;12;14;1250;341;1850;8312;1000 -184;'646;Rwanda;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;383;72;392;11;1;27;1;0;13;2;1;384;90;89;972;378 -184;'646;Rwanda;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;0;0;0;0;2061;0;0;0;0;2;0;0;0;0 -184;'646;Rwanda;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;188;0;0;0;0;0;0;0;0;0 -184;'646;Rwanda;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6273;1182;3446;109;6;804;104;2;127;12;14;1250;341;1850;8312;1000 -184;'646;Rwanda;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;383;72;392;11;1;27;1;0;13;2;1;384;90;89;972;378 -184;'646;Rwanda;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;0;0;0;0;2061;0;0;0;0;2;0;0;0;0 -184;'646;Rwanda;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;188;0;0;0;0;0;0;0;0;0 -184;'646;Rwanda;1867;Industrial roundwood, non-coniferous;5516;Production;m3;52000;53000;53000;54000;54000;54000;56000;57000;58000;59000;60000;60000;60000;60000;60000;60000;60000;60000;265000;276000;286000;297000;214000;232000;240000;240000;240000;240000;240000;20000;20000;60000;60000;111000;229000;248000;315000;303000;312000;350000;397000;397000;397000;397000;397000;397000;397000;1113000;1113927;1113927;1113927;1113927;1113927;1113927;1113927;1113927;1113927;1113927;1113927;1113927;1113927;1113927;1113927 -184;'646;Rwanda;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;115;115;115;115;95;504;50;239;1297;85;64;113;1928;180;920;5456;8655;83;2333;1828 -184;'646;Rwanda;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;8;8;8;8;36;371;24;163;928;58;27;32;558;32;296;1821;4292;28;747;487 -184;'646;Rwanda;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;198;145;3750;3750;3750;3750;0;0;0;143;143;143;143;143;143;143;143;92;82;82;36;0;0;0;0;0;20;0;0;0;0;0;0 -184;'646;Rwanda;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;37;207;207;207;207;0;0;0;159;159;159;159;159;159;159;159;10;8;8;7;0;0;0;0;0;3;0;0;0;0;0;0 -184;'646;Rwanda;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;20;32;32;32;4;43;43;113;1923;180;920;49;0;83;0;0 -184;'646;Rwanda;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;7;10;10;10;0;23;23;32;556;32;296;14;0;28;0;0 -184;'646;Rwanda;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;198;145;3750;3750;3750;3750;0;0;0;0;0;0;0;0;0;0;0;0;2;2;2;0;0;0;0;0;20;0;0;0;0;0;0 -184;'646;Rwanda;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;37;207;207;207;207;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;0;0 -184;'646;Rwanda;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115;115;115;115;75;472;18;207;1293;42;21;0;5;0;0;5407;8655;0;2333;1828 -184;'646;Rwanda;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;29;361;14;153;928;35;4;0;2;0;0;1807;4292;0;747;487 -184;'646;Rwanda;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;143;143;143;143;143;143;143;143;92;80;80;34;0;0;0;0;0;0;0;0;0;0;0;0 -184;'646;Rwanda;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;159;159;159;159;159;159;159;159;10;8;8;7;0;0;0;0;0;0;0;0;0;0;0;0 -184;'646;Rwanda;1868;Sawlogs and veneer logs;5516;Production;m3;2000;3000;3000;4000;4000;4000;6000;7000;8000;9000;10000;10000;10000;10000;10000;10000;10000;10000;15000;16000;16000;17000;29000;31000;32000;32000;32000;32000;32000;20000;20000;60000;60000;28000;57000;63000;79000;84000;86000;150000;245000;245000;245000;245000;245000;245000;245000;961000;961927;961927;961927;961927;961927;961927;961927;961927;961927;961927;961927;961927;961927;961927;961927 -184;'646;Rwanda;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23000;24000;50000;98000;98000;98000;98000;98000;98000;98000;98000;98000;98000;98000;98000;98000;98000;98000;98000;98000;98000;98000;98000;98000;98000;98000 -184;'646;Rwanda;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;2000;3000;3000;4000;4000;4000;6000;7000;8000;9000;10000;10000;10000;10000;10000;10000;10000;10000;15000;16000;16000;17000;29000;31000;32000;32000;32000;32000;32000;20000;20000;60000;60000;28000;57000;63000;79000;61000;62000;100000;147000;147000;147000;147000;147000;147000;147000;863000;863927;863927;863927;863927;863927;863927;863927;863927;863927;863927;863927;863927;863927;863927;863927 -184;'646;Rwanda;1871;Other industrial roundwood;5516;Production;m3;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;250000;260000;270000;280000;185000;201000;208000;208000;208000;208000;208000;0;0;0;0;83000;172000;185000;236000;242000;250000;250000;250000;250000;250000;250000;250000;250000;250000;250000;250000;250000;250000;250000;250000;250000;250000;250000;250000;250000;250000;250000;250000;250000;250000 -184;'646;Rwanda;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;250000;260000;270000;280000;185000;201000;208000;208000;208000;208000;208000;0;0;0;0;83000;172000;185000;236000;242000;250000;250000;250000;250000;250000;250000;250000;250000;250000;250000;250000;250000;250000;250000;250000;250000;250000;250000;250000;250000;250000;250000;250000;250000;250000 -184;'646;Rwanda;1630;Wood charcoal;5510;Production;t;85816;88253;90759;93337;95988;98714;101517;104400;107365;110415;115039;120249;124413;129574;136620;134766;140121;142365;143448;146100;149737;154783;158116;166800;172080;179086;191570;198009;203738;205489;190834;171468;158135;179512;163016;165849;179998;46000;48000;48000;48000;48000;48000;48000;48000;48000;48000;48000;48000;48000;48000;48000;48000;48000;48000;48000;48000;48000;48000;48000;48000;48000;48000 -184;'646;Rwanda;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;10;15;23;5;18;8;7;7;7;37;3;1;71;0 -184;'646;Rwanda;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;22;3;3;1;2;4;4;4;4;5;7;2;3;0 -184;'646;Rwanda;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2067;2067;7;33;33;33;168;406;406;406;406;406;1;1;0;1 -184;'646;Rwanda;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1670;1670;1;4;4;4;33;218;218;218;218;218;3;1;0;1 -184;'646;Rwanda;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;431;22;438;189;70;36;154;154;154;154;30;85;0;0;0 -184;'646;Rwanda;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;344;8;97;32;27;4;28;28;28;28;5;16;4;3;3 -184;'646;Rwanda;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;152;152;2;94;628;628;628;628;0;0;0;0 -184;'646;Rwanda;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;28;28;0;14;76;76;76;76;0;0;0;0 -184;'646;Rwanda;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;410;1;28;129;10;30;30;30;30;30;30;85;0;0;0 -184;'646;Rwanda;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;342;6;2;5;0;2;2;2;2;2;2;13;1;0;0 -184;'646;Rwanda;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;410;60;60;6;124;124;124;124;0;0;0;0;0 -184;'646;Rwanda;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;95;27;27;2;26;26;26;26;3;3;3;3;3 -184;'646;Rwanda;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;152;152;2;94;628;628;628;628;0;0;0;0 -184;'646;Rwanda;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;28;28;0;14;76;76;76;76;0;0;0;0 -184;'646;Rwanda;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;6;33.2;33 -184;'646;Rwanda;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0.18;15 -184;'646;Rwanda;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;171.5;360.5 -184;'646;Rwanda;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;31.22;82.22 -184;'646;Rwanda;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1;1.2;1 -184;'646;Rwanda;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0.18;15 -184;'646;Rwanda;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;171;360 -184;'646;Rwanda;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;82 -184;'646;Rwanda;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;32;32 -184;'646;Rwanda;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0 -184;'646;Rwanda;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0.5;0.5 -184;'646;Rwanda;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0.22;0.22 -184;'646;Rwanda;1872;Sawnwood;5516;Production;m3;;;;;;1400;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;3000;5000;8000;10000;12000;13000;13000;13000;13000;10700;36000;36000;36000;36000;26000;54000;59000;74000;76000;79000;79000;79000;79000;79000;79000;79000;79000;79000;121000;135000;135000;135000;135000;135000;135000;135000;135000;135000;135000;135000;135000;135000;135000;135000 -184;'646;Rwanda;1872;Sawnwood;5616;Import quantity;m3;;;;;;2500;1600;1400;1200;1200;1200;1200;1200;1200;1200;1200;1200;1200;1200;1200;1200;1200;1200;1200;1200;1200;0;0;1600;1100;800;800;800;0;700;800;542;600;0;27;27;27;27;44;44;44;44;8508;4048;4302;6021;5113;4106;3234;2414;2026;2476;1892;2768;443;417;41;260 -184;'646;Rwanda;1872;Sawnwood;5622;Import value;1000 USD;;;;;;208;150;150;153;153;153;153;153;153;153;153;153;153;153;153;153;153;153;153;153;153;0;0;120;107;50;50;50;0;422;319;108;111;0;20;20;20;20;14;14;14;14;3963;1614;1429;2024;2420;2233;2519;2051;1621;2047;1847;983;126;93;84;106 -184;'646;Rwanda;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;86;86;86;86;86;86;86;86;135;104;161;171;72;96;452;126;17;4;20;32;0;0;985;0 -184;'646;Rwanda;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;3;3;3;3;3;3;3;3;7;12;97;13;13;14;65;39;6;2;9;5;0;0;1907;0 -184;'646;Rwanda;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3200;6000;6000;6000;6000;7000;15000;16000;20000;21000;22000;22000;22000;22000;22000;22000;22000;22000;22000;40000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000 -184;'646;Rwanda;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;100;0;0;0;0;0;0;0;0;0;2642;3728;4261;5472;3486;2436;837;170;171;42;64;453;372;0;20;210 -184;'646;Rwanda;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;11;0;0;0;0;0;0;0;0;0;861;1335;1124;1532;1222;686;273;49;42;12;17;11;55;19;61;83 -184;'646;Rwanda;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;86;86;86;86;86;86;86;86;7;7;7;64;67;161;95;10;0;0;31;0;0;0;0 -184;'646;Rwanda;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3;3;1;0;0;12;11;38;23;2;0;0;3;0;0;0;0 -184;'646;Rwanda;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;1400;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;2300;3000;5000;8000;10000;12000;13000;13000;13000;13000;7500;30000;30000;30000;30000;19000;39000;43000;54000;55000;57000;57000;57000;57000;57000;57000;57000;57000;57000;81000;85000;85000;85000;85000;85000;85000;85000;85000;85000;85000;85000;85000;85000;85000;85000 -184;'646;Rwanda;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;2500;1600;1400;1200;1200;1200;1200;1200;1200;1200;1200;1200;1200;1200;1200;1200;1200;1200;1200;1200;1200;0;0;1600;1100;800;800;800;0;700;800;500;500;0;27;27;27;27;44;44;44;44;5866;320;41;549;1627;1670;2397;2244;1855;2434;1828;2315;71;417;21;50 -184;'646;Rwanda;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;208;150;150;153;153;153;153;153;153;153;153;153;153;153;153;153;153;153;153;153;153;0;0;120;107;50;50;50;0;422;319;100;100;0;20;20;20;20;14;14;14;14;3102;279;305;492;1198;1547;2246;2002;1579;2035;1830;972;71;74;23;23 -184;'646;Rwanda;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;49;97;154;164;8;29;291;31;7;4;20;1;0;0;985;0 -184;'646;Rwanda;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;11;97;13;1;3;27;16;4;2;9;2;0;0;1907;0 -184;'646;Rwanda;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -184;'646;Rwanda;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;0;300;4;4;0;0;0;0;0;0;0;0;0;4212;147;147;385;119;27;13;38;4;10;39;34;10;108;0;16 -184;'646;Rwanda;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;0;81;2;2;0;0;0;0;0;0;0;0;0;4227;211;14;223;69;23;15;74;7;15;19;125;11;19;25;25 -184;'646;Rwanda;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;45;45;45;45;45;45;0;0;0;0;20;0;0;0;910 -184;'646;Rwanda;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;0;0;0;0;0;2;0;0;0;6;0;0;32;523 -184;'646;Rwanda;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;1200;1291;1538;1723;1723;1723;1723;1723;1723;1723;1723;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -184;'646;Rwanda;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;700;400;600;600;600;1200;1300;1500;1700;1100;1600;1600;1600;1600;1600;1800;1100;1900;3;3;8400;9600;1000;400;1000;800;3530;3530;3530;3530;970;970;970;970;4204;3166;4132;6866;5750;8230;7860;10118;13597;12933;18011;20182;21961;28766.25;35754;28621 -184;'646;Rwanda;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;311;235;314;300;300;528;978;1166;1305;646;912;912;912;912;912;1210;759;963;2;2;199;226;1114;374;1159;1129;772;772;772;772;286;286;286;286;4282;2997;2198;3843;3297;5027;5161;5937;7282;6783;10500;10514;10162;13763.17;17450;13106 -184;'646;Rwanda;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;147;196;32;27;26;65;47;35;27;61;168;48;30;22.77;100.77 -184;'646;Rwanda;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;72;189;22;2;1;23;33;15;13;51;70;32;24;47.34;47.34 -184;'646;Rwanda;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;1200;1291;1538;1723;1723;1723;1723;1723;1723;1723;1723;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -184;'646;Rwanda;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;700;400;600;600;600;1200;1300;1500;1700;1100;1600;1600;1600;1600;1600;1800;1100;1900;3;3;8400;9600;800;200;800;800;2437;2437;2437;2437;469;469;469;469;3650;2521;4005;4990;3883;5016;5166;5922;9734;9739;10401;13756;12380;18299;21371;21371 -184;'646;Rwanda;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;311;235;314;300;300;528;978;1166;1305;646;912;912;912;912;912;1210;759;963;2;2;199;226;968;234;1019;1129;608;608;608;608;167;167;167;167;3697;2139;2051;2605;2257;2843;3109;2949;4789;4506;5237;6589;5578;8070;9233;9233 -184;'646;Rwanda;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;84;170;1;1;7;35;15;8;0;24;56;13;2;0;78 -184;'646;Rwanda;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;42;167;1;0;0;12;16;2;0;16;39;19;12;35;35 -184;'646;Rwanda;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -184;'646;Rwanda;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -184;'646;Rwanda;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;200;200;200;0;1057;1057;1057;1057;138;138;138;138;266;285;26;162;186;110;78;39;78;214;214;79;303;320;121;78 -184;'646;Rwanda;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;146;140;140;0;150;150;150;150;23;23;23;23;296;560;78;109;90;107;89;24;66;240;240;184;130;167;75;76 -184;'646;Rwanda;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;12;12;10;10;10;10;10;10;10;80;5;1;0.77;0.77 -184;'646;Rwanda;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;18;18;1;1;1;1;1;1;1;21;1;0;0.34;0.34 -184;'646;Rwanda;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;196;196;196;196;2;2;2;362;3;3;3;3;3;0;56;37;44;4;25;13 -184;'646;Rwanda;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;32;32;32;8;8;8;184;2;2;5;5;1;0;59;85;89;6;19;6 -184;'646;Rwanda;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;36;36;36;167;167;167;167;286;358;99;1352;1678;3101;2613;4154;3782;2980;7340;6310;9234;10143.25;14237;7159 -184;'646;Rwanda;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;14;64;64;64;64;281;290;61;945;948;2075;1958;2959;2426;2037;4964;3656;4365;5520.17;8123;3791 -184;'646;Rwanda;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;14;14;19;16;9;20;22;17;17;27;32;30;27;22;22 -184;'646;Rwanda;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;4;4;3;1;0;10;16;12;12;34;10;12;12;12;12 -184;'646;Rwanda;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98;98;98;98;60;45;45;39;25;10;20;24;12;12;12;23;17;13;81;27 -184;'646;Rwanda;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;46;46;46;44;35;35;16;17;7;17;83;9;7;7;36;10;27;65;17 -184;'646;Rwanda;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;12;12;5;5;5;2;2 -184;'646;Rwanda;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;8;3;3;3;0;0 -184;'646;Rwanda;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;36;36;36;36;36;36;36;166;312;53;1264;1551;3001;2442;3512;3731;2964;7324;6103;9096;10045.25;14141;7103 -184;'646;Rwanda;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;14;14;14;14;14;158;254;25;859;886;1919;1857;2440;2388;2015;4942;3575;4341;5427.17;8051;3745 -184;'646;Rwanda;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;12;9;2;1;7;2;2;12;24;22;19;17;17 -184;'646;Rwanda;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;1;0;2;5;1;1;23;4;6;6;9;9 -184;'646;Rwanda;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33;33;33;60;1;1;49;102;90;151;618;39;4;4;184;121;85;15;29 -184;'646;Rwanda;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;79;1;1;70;45;149;84;436;29;15;15;45;14;66;7;29 -184;'646;Rwanda;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;7;7;7;7;3;3;3;3;3;3;3;3;3 -184;'646;Rwanda;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;0;0;0;3;3;3;3;3;3;3;3;3 -184;'646;Rwanda;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -184;'646;Rwanda;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -184;'646;Rwanda;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;100;100;100;100;0;0;0;0;0;234;234;234;234;199;262;270;331;313;414;317;256;638;230;230;801;1288;2705.23;3894.18;1444.18 -184;'646;Rwanda;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;32;32;32;32;0;0;0;0;0;75;75;75;75;82;136;202;304;244;265;196;136;247;135;135;628;1005;3599.45;4476.61;2517.61 -184;'646;Rwanda;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;91;145;132;286;244;183;263;14;55;460;460;1670;918;1907.45;5904;544 -184;'646;Rwanda;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;3;4;12;15;8;18;2;8;52;52;74;37;92;305;16 -184;'646;Rwanda;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;100;100;100;100;0;0;0;0;0;171;171;171;171;171;244;267;294;297;389;235;174;317;174;174;490;957;2269.82;2147.18;1354.18 -184;'646;Rwanda;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;32;32;32;32;0;0;0;0;0;68;68;68;68;68;118;189;298;224;232;181;121;188;121;121;496;899;3455.45;3899.61;2492.61 -184;'646;Rwanda;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;1 -184;'646;Rwanda;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;9 -184;'646;Rwanda;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;100;100;100;100;0;0;0;0;0;171;171;171;171;171;258;258;258;258;329;175;114;348;205;205;569;370;1542.54;1419.9;626.9 -184;'646;Rwanda;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;32;32;32;32;0;0;0;0;0;68;68;68;68;68;124;124;124;124;185;134;74;240;173;173;567;449;2551.18;2995.33;1588.33 -184;'646;Rwanda;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 -184;'646;Rwanda;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;6 -184;'646;Rwanda;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;139;81;149;224;224 -184;'646;Rwanda;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;314;148;670;1167;1167 -184;'646;Rwanda;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0 -184;'646;Rwanda;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6 -184;'646;Rwanda;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;143;;;;;;; -184;'646;Rwanda;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;;;;;;; -184;'646;Rwanda;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;171;171;171;171;171;171;171;171;171;171;0;0;0;;;;;;; -184;'646;Rwanda;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;68;68;68;68;68;68;68;68;68;0;0;0;;;;;;; -184;'646;Rwanda;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;100;100;100;100;0;0;0;0;0;0;0;0;0;0;73;73;73;73;144;161;100;100;100;100;325;184;1288.54;1090.9;297.9 -184;'646;Rwanda;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;32;32;32;32;0;0;0;0;0;0;0;0;0;0;50;50;50;50;111;128;68;68;68;68;148;196;1776.18;1723.33;316.33 -184;'646;Rwanda;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 -184;'646;Rwanda;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 -184;'646;Rwanda;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3;4;3.9;3.9 -184;'646;Rwanda;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;3;3.33;3.33 -184;'646;Rwanda;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 -184;'646;Rwanda;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 -184;'646;Rwanda;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;100;100;100;100;0;0;0;0;0;0;0;0;0;0;73;73;73;73;141;158;97;97;97;97;322;181;1284.54;1087;294 -184;'646;Rwanda;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;32;32;32;32;0;0;0;0;0;0;0;0;0;0;50;50;50;50;110;127;67;67;67;67;147;195;1773.18;1720;313 -184;'646;Rwanda;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -184;'646;Rwanda;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -184;'646;Rwanda;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;14;14;14;14;105;105;105;105;105;105;105;105 -184;'646;Rwanda;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;105;105;105;105;105;105;105;105 -184;'646;Rwanda;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;50;53;74;74;74;74;74;74;26;692;832.28;832.28;832.28 -184;'646;Rwanda;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;180;106;53;53;53;53;53;53;34;555;1009.28;1009.28;1009.28 -184;'646;Rwanda;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1 -184;'646;Rwanda;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3 -184;'646;Rwanda;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;0;0;6;6.16;0 -184;'646;Rwanda;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;0;0;2;2.45;0 -184;'646;Rwanda;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;33;33;33;33;0 -184;'646;Rwanda;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;1;1;1;1;1 -184;'646;Rwanda;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;63;63;63;28;18;3;37;16;25;82;82;321;56;56;311;331;435.41;1747;90 -184;'646;Rwanda;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;14;18;13;6;20;33;15;15;59;14;14;132;106;144;577;25 -184;'646;Rwanda;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91;145;132;286;244;183;263;14;55;460;460;1670;918;1907.45;5904;543 -184;'646;Rwanda;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;4;12;15;8;18;2;8;52;52;74;37;92;305;7 -184;'646;Rwanda;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;700;1000;800;1500;1100;1173;2254;2511;4700;4200;5200;1852;831;1008;1400;1000;2000;2150;1281;995;995;995;995;3730;3730;3730;3730;4156;4245;2711;6281;4136;4520;8152;10227;11275;9696;10889;22200;26316;23964.49;42090;12306 -184;'646;Rwanda;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;1371;1760;1257;1724;1312;1441;2557;2801;9057;8799;9295;1316;734;612;963;1160;940;2293;1424;860;860;860;860;2633;2633;2633;2633;5641;4683;3189;7802;5739;5834;9944;11454;12067;8497;10090;26057;24310;26732.81;51095;14211 -184;'646;Rwanda;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;170;27;25;0;0;0;0;0;198;198;198;198;240;240;240;240;240;2550;2584;143;90;207;422;300;783;783;783;1665;1436;2055.95;2508;345 -184;'646;Rwanda;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107;31;35;0;0;0;0;0;153;153;153;153;178;178;178;178;178;605;686;45;44;232;596;327;1314;1314;1314;2026;1769;2763.87;3767;761 -184;'646;Rwanda;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;400;600;200;800;400;473;1554;1811;1000;1200;3000;1418;244;308;400;600;1600;650;581;567;567;567;567;1457;1457;1457;1457;2275;3086;2056;3967;2043;2175;4330;5557;5483;4151;5658;10174;12887;8246.38;17194;2259 -184;'646;Rwanda;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;873;1100;318;862;450;579;1695;1939;1995;2318;4495;961;275;288;394;836;606;856;677;508;508;508;508;980;980;980;980;2889;3203;2212;4678;2627;2670;4661;5584;5379;3857;5965;11610;11990;8876.29;21703;2944 -184;'646;Rwanda;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;8;0;0;0;;;123;123;123;123;125;125;125;125;125;50;117;58;59;31;86;217;700;700;700;1607;1373;1908.95;2303;140 -184;'646;Rwanda;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;19;0;0;0;;;109;109;109;109;110;110;110;110;110;11;96;9;15;22;115;202;1189;1189;1189;1964;1678;2376.87;3122;116 -184;'646;Rwanda;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;100;200;200;1200;50;80;3;3;3;3;605;605;605;605;401;420;62;890;384;308;426;777;1201;65;90;262;252;48;602;26 -184;'646;Rwanda;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;75;181;219;219;52;82;3;3;3;3;308;308;308;308;437;385;67;1008;397;298;453;497;651;67;85;248;172;43;755;20 -184;'646;Rwanda;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;6;6;6;6;6;6;6;6;6;3;3;0;3;0 -184;'646;Rwanda;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;7;7;7;7;7;7;7;7;7;0;0;0;0;0 -184;'646;Rwanda;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;400;600;200;800;400;473;1554;1811;1000;1200;3000;1418;244;208;200;400;400;600;501;564;564;564;564;852;852;852;852;1874;2666;1994;3077;1659;1867;3904;4780;4282;4086;5568;9912;12635;8198.38;16592;2233 -184;'646;Rwanda;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;873;1100;318;862;450;579;1695;1939;1995;2318;4495;961;275;213;213;617;387;804;595;505;505;505;505;672;672;672;672;2452;2818;2145;3670;2230;2372;4208;5087;4728;3790;5880;11362;11818;8833.29;20948;2924 -184;'646;Rwanda;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;8;0;0;0;;;123;123;123;123;123;123;123;123;123;48;111;52;53;25;80;211;694;694;694;1604;1370;1908.95;2300;140 -184;'646;Rwanda;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;19;0;0;0;;;109;109;109;109;109;109;109;109;109;10;89;2;8;15;108;195;1182;1182;1182;1964;1678;2376.87;3122;116 -184;'646;Rwanda;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;42;47;47;47;47;148;148;148;148;141;230;29;278;72;214;46;168;12;29;29;120;493;63;595;3 -184;'646;Rwanda;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91;67;57;57;57;57;117;117;117;117;253;399;21;379;99;232;70;191;33;35;35;132;369;65;509;5 -184;'646;Rwanda;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;25;5;11;11;11;11;11;11;23;61;21;4;0 -184;'646;Rwanda;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;0;9;9;9;9;9;9;11;57;12;3;0 -184;'646;Rwanda;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;433;361;407;407;407;407;293;293;293;293;1283;1883;1902;2216;936;864;3137;4031;3649;3541;4910;8634;10637;7130.58;13737;1952 -184;'646;Rwanda;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;533;395;335;335;335;335;231;231;231;231;1472;1914;1996;2420;1186;830;3172;4139;3993;3291;5018;9654;9828;7493.29;17168;2401 -184;'646;Rwanda;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;123;123;123;123;123;123;123;123;123;23;48;15;8;5;66;61;544;544;544;1538;1247;1839.95;2156;0 -184;'646;Rwanda;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109;109;109;109;109;109;109;109;109;9;57;1;8;1;96;62;1049;1049;1049;1942;1571;2319.87;3003;0 -184;'646;Rwanda;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117;98;110;110;110;110;411;411;411;411;450;553;63;583;651;789;721;581;621;516;629;1158;1505;1004.8;2260;278 -184;'646;Rwanda;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;180;133;113;113;113;113;324;324;324;324;727;505;128;871;945;1310;966;757;702;464;827;1576;1621;1275;3271;518 -184;'646;Rwanda;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;12;40;9;3;139;139;139;139;43;62;48;140;140 -184;'646;Rwanda;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;0;0;5;3;124;124;124;124;11;50;45;116;116 -184;'646;Rwanda;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;300;400;600;700;700;700;700;700;3700;3000;2200;434;587;700;1000;400;400;1500;700;428;428;428;428;2273;2273;2273;2273;1881;1159;655;2314;2093;2345;3822;4670;5792;5545;5231;12026;13429;15718.11;24896;10047 -184;'646;Rwanda;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;498;660;939;862;862;862;862;862;7062;6481;4800;355;459;324;569;324;334;1437;747;352;352;352;352;1653;1653;1653;1653;2752;1480;977;3124;3112;3164;5283;5870;6688;4640;4125;14447;12320;17856.52;29392;11267 -184;'646;Rwanda;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;170;17;17;0;0;0;0;0;75;75;75;75;115;115;115;115;115;2500;2467;85;31;176;336;83;83;83;83;58;63;147;205;205 -184;'646;Rwanda;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107;16;16;0;0;0;0;0;44;44;44;44;68;68;68;68;68;594;590;36;29;210;481;125;125;125;125;62;91;387;645;645 -184;'646;Rwanda;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101;101;101;101;166;166;166;166;358;235;347;710;949;1066;1268;1735;2271;931;704;2199;2456;1866.18;2206;629 -184;'646;Rwanda;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89;89;89;89;182;182;182;182;572;337;481;955;1663;1763;2391;2704;3157;1350;844;3846;3849;2954;4049;839 -184;'646;Rwanda;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;29;11;8;70;13;13;13;13;34;33;87;69;69 -184;'646;Rwanda;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;10;21;10;92;18;18;18;18;47;65;141;55;55 -184;'646;Rwanda;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;305;305;305;305;1604;1604;1604;1604;852;682;208;889;826;1029;2243;2673;3237;4603;4516;9798;10932;13812.93;22605;9296 -184;'646;Rwanda;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;217;217;217;217;992;992;992;992;1132;722;311;1018;945;1054;2483;2663;2935;3270;3261;10513;8361;14409.78;24587;8019 -184;'646;Rwanda;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;75;75;75;75;115;115;115;115;115;2500;2461;56;20;20;41;21;21;21;21;21;23;47;95;95 -184;'646;Rwanda;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;44;44;44;44;68;68;68;68;68;594;579;26;8;8;52;17;17;17;17;14;17;43;68;68 -184;'646;Rwanda;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;52;52;52;174;174;174;174;180;235;24;164;107;395;678;625;653;1577;1291;4256;4800;6984.03;13834;7286 -184;'646;Rwanda;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;34;34;34;107;107;107;107;151;151;17;128;85;406;857;504;422;1023;786;3074;2888;5948.36;12330;4012 -184;'646;Rwanda;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;75;75;75;75;75;75;75;75;75;2435;2435;14;13;13;13;13;13;13;13;0;1;0;1;1 -184;'646;Rwanda;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;44;44;44;44;44;44;44;44;44;577;577;1;8;8;8;8;8;8;8;0;0;0;1;1 -184;'646;Rwanda;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;23;23;508;508;508;508;122;145;64;156;75;51;170;403;237;41;287;2169;775;1030.9;1256;876 -184;'646;Rwanda;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;21;21;314;314;314;314;239;236;89;214;80;66;307;428;226;55;700;3918;1241;2897.39;3831;2765 -184;'646;Rwanda;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;39;4;4;4;5;5;5;5;11;19;4;8;8 -184;'646;Rwanda;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;25;0;0;8;5;5;5;5;8;14;8;8;8 -184;'646;Rwanda;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;228;228;228;228;756;756;756;756;543;287;105;566;641;580;1358;1641;2343;2981;2934;3355;5308;5786;7515;1134 -184;'646;Rwanda;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;160;160;160;160;468;468;468;468;723;304;174;667;771;573;1280;1726;2282;2187;1770;3510;4137;5551.04;8424;1242 -184;'646;Rwanda;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;40;40;40;40;57;18;3;3;3;24;3;3;3;3;10;3;43;86;86 -184;'646;Rwanda;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;24;24;24;16;1;0;0;0;36;4;4;4;4;6;3;35;57;57 -184;'646;Rwanda;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;166;166;166;166;7;15;15;3;3;3;37;4;4;4;4;18;49;12;0;0 -184;'646;Rwanda;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;103;103;103;103;19;31;31;9;9;9;39;5;5;5;5;11;95;13;2;0 -184;'646;Rwanda;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -184;'646;Rwanda;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2 -184;'646;Rwanda;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;300;400;600;700;700;700;700;700;3700;3000;2200;434;587;700;1000;400;400;1500;700;22;22;22;22;503;503;503;503;671;242;100;715;318;250;311;262;284;11;11;29;41;39;85;122 -184;'646;Rwanda;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;498;660;939;862;862;862;862;862;7062;6481;4800;355;459;324;569;324;334;1437;747;46;46;46;46;479;479;479;479;1048;421;185;1151;504;347;409;503;596;20;20;88;110;492.74;756;2409 -184;'646;Rwanda;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;148;225;49;49;49;49;3;7;13;41;41 -184;'646;Rwanda;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;192;337;90;90;90;90;1;9;203;522;522 -184;'646;Rwanda;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11924;9342;15341;11298;10010;19948;19322 -184;'646;Rwanda;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;636;964;1235;1179;1418;1903;88 -184;'646;Rwanda;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;114;534;64;37;57;27 -184;'646;Rwanda;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;2;0;4;39;26 -184;'646;Rwanda;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;107;532;64;33;18;1 -184;'646;Rwanda;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -184;'646;Rwanda;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;69;74;33;45;127;166 -184;'646;Rwanda;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;7;2;1;6;5;0 -184;'646;Rwanda;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;338;169;664;158;109;145;86 -184;'646;Rwanda;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;8;12;7;11;20;59 -184;'646;Rwanda;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1630;1485;1562;965;432;982;7457 -184;'646;Rwanda;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;7;11;0;0;3;3 -184;'646;Rwanda;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9700;7311;11384;8180;8622;17646;11064 -184;'646;Rwanda;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;594;939;1201;1154;1373;1858;19 -184;'646;Rwanda;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;129;626;626;626;626;52 -184;'646;Rwanda;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;3;3;3;3 -184;'646;Rwanda;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;199;65;497;1272;139;365;470 -184;'646;Rwanda;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;3;6;14;25;14;4 -184;'646;Rwanda;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26354;25802;26151;22577;21769;36578;18968 -184;'646;Rwanda;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2579;2635;3900;4055;3924;6451;93 -184;'646;Rwanda;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;39;16;30;19;243;2 -184;'646;Rwanda;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;0 -184;'646;Rwanda;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1078;1109;1078;1109;882;1104;324 -184;'646;Rwanda;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;9;10;12;11;16;4 -184;'646;Rwanda;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;833;745;1405;1312;1486;2211;1855 -184;'646;Rwanda;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;263;416;594;642;1048;1187;0 -184;'646;Rwanda;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12716;10184;7403;7305;5922;7780;3226 -184;'646;Rwanda;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;65;187;74;309;353;26 -184;'646;Rwanda;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11723;13725;16249;12821;13460;25240;13561 -184;'646;Rwanda;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2239;2145;3109;3327;2556;4888;63 -188;'659;Saint Kitts and Nevis;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30201;23117;17759;13228;12977;15292;11305 -188;'659;Saint Kitts and Nevis;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;31;69;54;117;136;114 -188;'659;Saint Kitts and Nevis;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;30;453;1738;1797;1797;1797;1797;1797;1797;1797;1797;1797;1797;1797;1797;1797;1797;1797;5654;4342;3756.38;3336.38;3814.38;3795.38;12650;13646;12224;10973;5947;6188;6334;6909;4941 -188;'659;Saint Kitts and Nevis;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;11;1;1;1;1;1;2;1;0;0;0;0;106;0;24 -188;'659;Saint Kitts and Nevis;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;149;295;63;179;1117;1117;1117;1117;1117;1117;1117;1117;1117;1117;1117;1117;1117;1117;1117;116;351;144;144;144;144;245;502;328;421;5402;4275;2370;1519;1215 -188;'659;Saint Kitts and Nevis;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;30;4;14;85;85;85;85;85;85;85;85;85;85;85;85;85;85;85;130;64;245.38;245.38;245.38;245.38;128;145;56;156;1644;1320;785;539;487 -188;'659;Saint Kitts and Nevis;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -188;'659;Saint Kitts and Nevis;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -188;'659;Saint Kitts and Nevis;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;0;5355;4238;2297;1034;1034 -188;'659;Saint Kitts and Nevis;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;1622;1288;775;433;429 -188;'659;Saint Kitts and Nevis;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -188;'659;Saint Kitts and Nevis;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -188;'659;Saint Kitts and Nevis;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;294;421;47;37;73;485;181 -188;'659;Saint Kitts and Nevis;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;156;22;32;10;106;58 -188;'659;Saint Kitts and Nevis;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -188;'659;Saint Kitts and Nevis;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -188;'659;Saint Kitts and Nevis;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;149;295;63;179;1117;1117;1117;1117;1117;1117;1117;1117;1117;1117;1117;1117;1117;1117;1117;116;351;144;144;144;144;245;502;328;421;5402;4275;2370;1519;1215 -188;'659;Saint Kitts and Nevis;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;30;4;14;85;85;85;85;85;85;85;85;85;85;85;85;85;85;85;130;64;245.38;245.38;245.38;245.38;128;145;56;156;1644;1320;785;539;487 -188;'659;Saint Kitts and Nevis;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -188;'659;Saint Kitts and Nevis;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -188;'659;Saint Kitts and Nevis;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;149;295;63;179;555;555;555;555;555;555;555;555;555;555;555;555;555;555;555;26;349;43;43;43;43;184;100;34;0;5355;4238;2297;1034;1034 -188;'659;Saint Kitts and Nevis;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;30;4;14;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;20;55;23;23;23;23;86;27;3;0;1622;1288;775;433;429 -188;'659;Saint Kitts and Nevis;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -188;'659;Saint Kitts and Nevis;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -188;'659;Saint Kitts and Nevis;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;149;295;63;179;555;555;555;555;555;555;555;555;555;555;555;555;555;555;555;26;349;43;43;43;43;184;100;34;0;5355;4238;2297;1034;1034 -188;'659;Saint Kitts and Nevis;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;30;4;14;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;20;55;23;23;23;23;86;27;3;0;1622;1288;775;433;429 -188;'659;Saint Kitts and Nevis;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -188;'659;Saint Kitts and Nevis;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -188;'659;Saint Kitts and Nevis;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;562;562;562;562;562;562;562;562;562;562;562;562;562;562;562;90;2;101;101;101;101;61;402;294;421;47;37;73;485;181 -188;'659;Saint Kitts and Nevis;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;49;49;49;49;49;49;49;49;49;49;49;49;49;49;110;9;222.38;222.38;222.38;222.38;42;118;53;156;22;32;10;106;58 -188;'659;Saint Kitts and Nevis;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -188;'659;Saint Kitts and Nevis;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -188;'659;Saint Kitts and Nevis;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;2;1;1;1;1;26;0;104;0;27;34;0;0;54 -188;'659;Saint Kitts and Nevis;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110;9;0.38;0.38;0.38;0.38;13;0;19;0;12;27;0;0;31 -188;'659;Saint Kitts and Nevis;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -188;'659;Saint Kitts and Nevis;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -188;'659;Saint Kitts and Nevis;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;562;562;562;562;562;562;562;562;562;562;562;562;562;562;562;0;0;100;100;100;100;35;402;190;421;20;3;73;485;127 -188;'659;Saint Kitts and Nevis;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;49;49;49;49;49;49;49;49;49;49;49;49;49;49;0;0;222;222;222;222;29;118;34;156;10;5;10;106;27 -188;'659;Saint Kitts and Nevis;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -188;'659;Saint Kitts and Nevis;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -188;'659;Saint Kitts and Nevis;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;16;1;1;1;1;11;11;11;11;90;0;0;0;5 -188;'659;Saint Kitts and Nevis;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;4;2;2;2;2;80;80;80;80;60;0;0;1;4 -188;'659;Saint Kitts and Nevis;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;167;313;79;79;79;79;79;79;79;79;462;462;462;116;116 -188;'659;Saint Kitts and Nevis;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;83;63;63;63;63;63;63;63;63;33;29;29;6;6 -188;'659;Saint Kitts and Nevis;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117;308;73;73;73;73;73;73;73;73;456;456;456;110;110 -188;'659;Saint Kitts and Nevis;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;82;61;61;61;61;61;61;61;61;31;27;27;4;4 -188;'659;Saint Kitts and Nevis;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;5;6;6;6;6;6;6;6;6;6;6;6;6;6 -188;'659;Saint Kitts and Nevis;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;1;2;2;2;2;2;2;2;2;2;2;2;2;2 -188;'659;Saint Kitts and Nevis;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;6;6;60;60 -188;'659;Saint Kitts and Nevis;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;7;6;13;13 -188;'659;Saint Kitts and Nevis;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;6;6;60;60 -188;'659;Saint Kitts and Nevis;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;7;6;13;13 -188;'659;Saint Kitts and Nevis;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -188;'659;Saint Kitts and Nevis;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1293;6211;4908;4908;4908;4908;4908;4908;4908;4908;4908;4908;4908;4908;4908;4908;4908;2946;2186;2176;2176;2176;2176;8845;5794;6032;2330;4411;6254;5774;7981;5008 -188;'659;Saint Kitts and Nevis;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;247;1016;1001;1001;1001;1001;1001;1001;1001;1001;1001;1001;1001;1001;1001;1001;1001;1687;1303;1213;1213;1213;1213;3342;2386;1810;901;1756;3056;2714;3657;2360 -188;'659;Saint Kitts and Nevis;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;76;76;76;76;76;76;76;76;76;76;76;76;76;76;76;0;0;0;0;0;0;0;1;0;0;0;0;0;0;36 -188;'659;Saint Kitts and Nevis;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;0;0;0;0;0;0;0;1;0;0;0;0;0;0;24 -188;'659;Saint Kitts and Nevis;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -188;'659;Saint Kitts and Nevis;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1203;6019;4878;4878;4878;4878;4878;4878;4878;4878;4878;4878;4878;4878;4878;4878;4878;2877;1989;1911;1911;1911;1911;8018;5020;5308;1620;4089;4910;5697;6187;4621 -188;'659;Saint Kitts and Nevis;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;215;969;974;974;974;974;974;974;974;974;974;974;974;974;974;974;974;1551;1008;971;971;971;971;2710;1794;1321;621;1478;2241;2628;2704;2049 -188;'659;Saint Kitts and Nevis;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;36 -188;'659;Saint Kitts and Nevis;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;0;0;0;0;0;0;0;0;0;0;0;0;0;0;24 -188;'659;Saint Kitts and Nevis;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -188;'659;Saint Kitts and Nevis;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;192;30;30;30;30;30;30;30;30;30;30;30;30;30;30;30;69;197;265;265;265;265;827;774;724;710;322;1344;77;1794;387 -188;'659;Saint Kitts and Nevis;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;47;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;136;295;242;242;242;242;632;592;489;280;278;815;86;953;311 -188;'659;Saint Kitts and Nevis;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;0;0;0;0;0;0;0 -188;'659;Saint Kitts and Nevis;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;0;0;0;0;0;0;0 -188;'659;Saint Kitts and Nevis;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -188;'659;Saint Kitts and Nevis;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;143;63;1;70;371;3;1;54 -188;'659;Saint Kitts and Nevis;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;247;110;2;189;102;11;3;42 -188;'659;Saint Kitts and Nevis;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -188;'659;Saint Kitts and Nevis;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -188;'659;Saint Kitts and Nevis;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -188;'659;Saint Kitts and Nevis;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;506;1749;1446;1446;1446;1446;1446;1446;1446;1446;1446;1446;1446;1446;1446;1446;1446;1807;1841;1679;1726;3226;3649;4824;6158;5146;4546;4431;2346;4085;3547;2707 -188;'659;Saint Kitts and Nevis;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;148;589;570;570;570;570;570;570;570;570;570;570;570;570;570;570;570;3496;2589;1968;1548;2026;2007;2571;3169;2549;2215;2077;1285;2445;2293;1620 -188;'659;Saint Kitts and Nevis;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;1;2;2;2;2;5;0;0;0;0;0;65;0;0 -188;'659;Saint Kitts and Nevis;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;1;1;1;1;1;2;0;0;0;0;0;106;0;0 -188;'659;Saint Kitts and Nevis;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -188;'659;Saint Kitts and Nevis;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;503;1727;1415;1415;1415;1415;1415;1415;1415;1415;1415;1415;1415;1415;1415;1415;1415;1767;1807;1655;1702;3202;3625;4800;6134;5122;4522;4408;2270;4016;3527;2605 -188;'659;Saint Kitts and Nevis;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;146;571;544;544;544;544;544;544;544;544;544;544;544;544;544;544;544;3404;2542;1950;1530;2008;1989;2553;3151;2531;2197;2066;1277;2437;2281;1588 -188;'659;Saint Kitts and Nevis;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;1;2;2;2;2;5;0;0;0;0;0;65;0;0 -188;'659;Saint Kitts and Nevis;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;1;1;1;1;1;2;0;0;0;0;0;106;0;0 -188;'659;Saint Kitts and Nevis;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;22;22;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -188;'659;Saint Kitts and Nevis;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;18;18;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -188;'659;Saint Kitts and Nevis;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22;22;22;22;22;22;22;22;22;22;22;22;22;2;9;11;11;11;11;11;11;11;11;8;10;5;5;74 -188;'659;Saint Kitts and Nevis;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;18;18;18;18;18;18;18;18;18;18;18;18;10;19;11;11;11;11;11;11;11;11;5;4;4;4;23 -188;'659;Saint Kitts and Nevis;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;38;25;13;13;13;13;13;13;13;13;15;66;64;15;28 -188;'659;Saint Kitts and Nevis;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;82;28;7;7;7;7;7;7;7;7;6;4;4;8;9 -188;'659;Saint Kitts and Nevis;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;13;4;4;4;4;4;4;4;4;6;64;64;2;2 -188;'659;Saint Kitts and Nevis;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;8;5;5;5;5;5;5;5;5;4;4;4;2;2 -188;'659;Saint Kitts and Nevis;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;26 -188;'659;Saint Kitts and Nevis;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;7 -188;'659;Saint Kitts and Nevis;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;31;12;9;9;9;9;9;9;9;9;9;2;0;0;0 -188;'659;Saint Kitts and Nevis;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;50;20;2;2;2;2;2;2;2;2;2;0;0;0;0 -188;'659;Saint Kitts and Nevis;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;88;205;205;205;205;205;205;205;205;205;205;205;205;205;205;205;83;63;964;964;964;964;5319;6618;6618;6618;66;1119;1067;1141;214 -188;'659;Saint Kitts and Nevis;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;119;141;141;141;141;141;141;141;141;141;141;141;141;141;141;141;302;299;265;265;265;265;6436;7556;7556;7556;172;389;344;397;409 -188;'659;Saint Kitts and Nevis;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -188;'659;Saint Kitts and Nevis;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -188;'659;Saint Kitts and Nevis;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;44;161;161;161;161;161;161;161;161;161;161;161;161;161;161;161;49;25;934;934;934;934;934;934;934;934;28;981;955;952;60 -188;'659;Saint Kitts and Nevis;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;48;111;111;111;111;111;111;111;111;111;111;111;111;111;111;111;161;162;120;120;120;120;120;120;120;120;67;135;141;91;150 -188;'659;Saint Kitts and Nevis;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;21;2;914;914;914;914;914;914;914;914;0;914;914;914;1 -188;'659;Saint Kitts and Nevis;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;9;12;24;24;24;24;24;24;24;24;0;24;24;24;11 -188;'659;Saint Kitts and Nevis;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;29;146;146;146;146;146;146;146;146;146;146;146;146;146;146;146;28;23;20;20;20;20;20;20;20;20;28;67;41;38;59 -188;'659;Saint Kitts and Nevis;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;36;99;99;99;99;99;99;99;99;99;99;99;99;99;99;99;152;150;96;96;96;96;96;96;96;96;67;111;117;67;139 -188;'659;Saint Kitts and Nevis;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;7;4;4;4;4;4;4;4;4;0;4;4;1;1 -188;'659;Saint Kitts and Nevis;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;85;24;24;24;24;24;24;24;24;2;24;24;2;2 -188;'659;Saint Kitts and Nevis;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;146;146;146;146;146;146;146;146;146;146;146;15;11;9;9;9;9;9;9;9;9;21;15;15;18;33 -188;'659;Saint Kitts and Nevis;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;99;99;99;99;99;99;99;99;99;99;48;46;42;42;42;42;42;42;42;42;51;18;17;31;59 -188;'659;Saint Kitts and Nevis;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;5;7;7;7;7;7;7;7;7;7;48;22;19;25 -188;'659;Saint Kitts and Nevis;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;19;30;30;30;30;30;30;30;30;14;69;76;34;78 -188;'659;Saint Kitts and Nevis;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;44;44;44;44;44;44;44;44;44;44;44;44;44;44;44;44;34;38;30;30;30;30;4385;5684;5684;5684;38;138;112;189;154 -188;'659;Saint Kitts and Nevis;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;71;30;30;30;30;30;30;30;30;30;30;30;30;30;30;30;141;137;145;145;145;145;6316;7436;7436;7436;105;254;203;306;259 -188;'659;Saint Kitts and Nevis;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -188;'659;Saint Kitts and Nevis;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -188;'659;Saint Kitts and Nevis;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;3;2;2;2;2;2358;3273;3273;3273;11;66;10;25;70 -188;'659;Saint Kitts and Nevis;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;11;6;6;6;6;3353;4609;4609;4609;43;127;49;95;139 -188;'659;Saint Kitts and Nevis;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;31;24;24;24;24;265;2333;2333;2333;24;69;40;147;76 -188;'659;Saint Kitts and Nevis;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117;100;106;106;106;106;942;2546;2546;2546;55;121;83;198;96 -188;'659;Saint Kitts and Nevis;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;45;45 -188;'659;Saint Kitts and Nevis;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;3;37;37 -188;'659;Saint Kitts and Nevis;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;1;6;6;6;6;94;1000;1000;1000;0;0;6;4;8 -188;'659;Saint Kitts and Nevis;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;20;33;33;33;33;400;1200;1200;1200;0;0;6;8;5 -188;'659;Saint Kitts and Nevis;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;30;18;18;18;18;150;1314;1314;1314;4;49;14;79;4 -188;'659;Saint Kitts and Nevis;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88;80;73;73;73;73;484;1297;1297;1297;5;71;25;104;5 -188;'659;Saint Kitts and Nevis;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;19;19;19;19;19;19;19;19 -188;'659;Saint Kitts and Nevis;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;49;49;49;49;49;49;49;49 -188;'659;Saint Kitts and Nevis;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;44;44;44;44;44;44;44;44;44;44;4;4;4;4;4;4;1762;78;78;78;3;3;62;17;8 -188;'659;Saint Kitts and Nevis;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30;30;30;30;30;30;30;30;30;30;17;26;33;33;33;33;2021;281;281;281;7;6;71;13;24 -188;'659;Saint Kitts and Nevis;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -188;'659;Saint Kitts and Nevis;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -188;'659;Saint Kitts and Nevis;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11412;8155;7990;3496;3212;4016;4227 -188;'659;Saint Kitts and Nevis;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;14;59;41;7;53;87 -188;'659;Saint Kitts and Nevis;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2184;1516;1356;188;180;179;191 -188;'659;Saint Kitts and Nevis;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;1;1;1;1;1 -188;'659;Saint Kitts and Nevis;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1933;1198;995;131;89;80;163 -188;'659;Saint Kitts and Nevis;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;1;1;1;1;1 -188;'659;Saint Kitts and Nevis;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;251;318;361;57;91;99;28 -188;'659;Saint Kitts and Nevis;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -188;'659;Saint Kitts and Nevis;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;84;51;50;72;69;51 -188;'659;Saint Kitts and Nevis;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;3;3;3;3;8 -188;'659;Saint Kitts and Nevis;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;97;347;69;38;94;69 -188;'659;Saint Kitts and Nevis;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;1;2;0;1;0 -188;'659;Saint Kitts and Nevis;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1264;1359;2701;927;726;1236;906 -188;'659;Saint Kitts and Nevis;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;6;6;0;0;4 -188;'659;Saint Kitts and Nevis;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11 -188;'659;Saint Kitts and Nevis;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24 -188;'659;Saint Kitts and Nevis;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7404;4570;3361;2135;2009;2343;2873 -188;'659;Saint Kitts and Nevis;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;9;48;29;0;45;71 -188;'659;Saint Kitts and Nevis;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -188;'659;Saint Kitts and Nevis;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;426;529;174;127;187;95;137 -188;'659;Saint Kitts and Nevis;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;3;3;3 -188;'659;Saint Kitts and Nevis;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6565;3989;3822;3544;3431;4367;2137 -188;'659;Saint Kitts and Nevis;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;17;10;13;4;83;3 -188;'659;Saint Kitts and Nevis;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;0;75;75;75 -188;'659;Saint Kitts and Nevis;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -188;'659;Saint Kitts and Nevis;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96;27;23;21;20;14;7 -188;'659;Saint Kitts and Nevis;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -188;'659;Saint Kitts and Nevis;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2894;1029;1215;1217;1229;1459;370 -188;'659;Saint Kitts and Nevis;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1;0;0;0;0;0 -188;'659;Saint Kitts and Nevis;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1549;700;379;601;642;1162;898 -188;'659;Saint Kitts and Nevis;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;11;1;0;3;58;1 -188;'659;Saint Kitts and Nevis;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2023;2230;2202;1705;1465;1657;787 -188;'659;Saint Kitts and Nevis;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;5;9;13;1;25;2 -189;'662;Saint Lucia;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32961;26103;25793;25463;30929;36252;22796 -189;'662;Saint Lucia;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6164;4467;4102;4016;3713;5128;3114 -189;'662;Saint Lucia;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;317;10489;10274;11751;11715;11715;11715;11715;11715;11715;11715;11715;11715;11715;11715;20370;19249;19249;14737;14714;15238;12847;10262;13115.1;13817.1;12541;12848;9154;9689;10089;16039;19270;12735 -189;'662;Saint Lucia;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;323;293;432;42;316;1091;914;738;787;829;682;741;614;761;141 -189;'662;Saint Lucia;1861;Roundwood;5516;Production;m3;6564;6652;6742;6833;6926;7020;7114;7211;7308;7407;7579;7754;8035;8322;8282;8316;8451;8295;8228;8472;8624;8666;8759;8916;8988;8874;8978;8874;8881;8981;9036;9065;8727;8852;8855;8968;9067;9075;9117;9422;9470;9518;9567;9616;9665;9702;9739;9776;9813;9850;9858;9866;9875;9883;9892;9757;9623;9491;9362;9234;9101;8971;8842 -189;'662;Saint Lucia;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;247;1261;467;836;6769;6769;6769;6769;6769;6769;6769;6769;6769;6769;6769;6769;6769;6769;6769;457;925;497;388;846;660;456;171;94;110;902;2025;740;3797;1640 -189;'662;Saint Lucia;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;317;78;63;1117;1117;1117;1117;1117;1117;1117;1117;1117;1117;1117;1117;1117;1117;1117;44;87;47;48;138;128;137;45;26;40;280;618;296;631;651 -189;'662;Saint Lucia;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;1;27;0 -189;'662;Saint Lucia;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;10;0 -189;'662;Saint Lucia;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -189;'662;Saint Lucia;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;104;817;2002;509;494;1469 -189;'662;Saint Lucia;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;37;247;607;174;205;610 -189;'662;Saint Lucia;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -189;'662;Saint Lucia;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -189;'662;Saint Lucia;1863;Roundwood, non-coniferous;5516;Production;m3;6564;6652;6742;6833;6926;7020;7114;7211;7308;7407;7579;7754;8035;8322;8282;8316;8451;8295;8228;8472;8624;8666;8759;8916;8988;8874;8978;8874;8881;8981;9036;9065;8727;8852;8855;8968;9067;9075;9117;9422;9470;9518;9567;9616;9665;9702;9739;9776;9813;9850;9858;9866;9875;9883;9892;9757;9623;9491;9362;9234;9101;8971;8842 -189;'662;Saint Lucia;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94;6;85;23;231;3303;171 -189;'662;Saint Lucia;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;3;33;11;122;426;41 -189;'662;Saint Lucia;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;1;27;0 -189;'662;Saint Lucia;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;10;0 -189;'662;Saint Lucia;1864;Wood fuel;5516;Production;m3;6564;6652;6742;6833;6926;7020;7114;7211;7308;7407;7579;7754;8035;8322;8282;8316;8451;8295;8228;8472;8624;8666;8759;8916;8988;8874;8978;8874;8881;8981;9036;9065;8727;8852;8855;8968;9067;9075;9117;9422;9470;9518;9567;9616;9665;9702;9739;9776;9813;9850;9858;9866;9875;9883;9892;9757;9623;9491;9362;9234;9101;8971;8842 -189;'662;Saint Lucia;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;263;263;263;263;263;263;263;263;263;263;263;263;263;263;263;263;0;0;0;0;0;0;0;0;;;;;;; -189;'662;Saint Lucia;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;0;0;0;0;0;0;0;0;;;;;;; -189;'662;Saint Lucia;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -189;'662;Saint Lucia;1628;Wood fuel, non-coniferous;5516;Production;m3;6564;6652;6742;6833;6926;7020;7114;7211;7308;7407;7579;7754;8035;8322;8282;8316;8451;8295;8228;8472;8624;8666;8759;8916;8988;8874;8978;8874;8881;8981;9036;9065;8727;8852;8855;8968;9067;9075;9117;9422;9470;9518;9567;9616;9665;9702;9739;9776;9813;9850;9858;9866;9875;9883;9892;9757;9623;9491;9362;9234;9101;8971;8842 -189;'662;Saint Lucia;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;263;263;263;263;263;263;263;263;263;263;263;263;263;263;263;263;0;0;0;0;0;0;0;0;;;;;;; -189;'662;Saint Lucia;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;0;0;0;0;0;0;0;0;;;;;;; -189;'662;Saint Lucia;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;247;1261;467;573;6506;6506;6506;6506;6506;6506;6506;6506;6506;6506;6506;6506;6506;6506;6506;457;925;497;388;846;660;456;171;94;110;902;2025;740;3797;1640 -189;'662;Saint Lucia;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;317;78;52;1106;1106;1106;1106;1106;1106;1106;1106;1106;1106;1106;1106;1106;1106;1106;44;87;47;48;138;128;137;45;26;40;280;618;296;631;651 -189;'662;Saint Lucia;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;1;27;0 -189;'662;Saint Lucia;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;10;0 -189;'662;Saint Lucia;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116;910;47;268;6101;6101;6101;6101;6101;6101;6101;6101;6101;6101;6101;6101;6101;6101;6101;52;520;92;242;309;309;96;71;0;104;817;2002;509;494;1469 -189;'662;Saint Lucia;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;215;3;21;1068;1068;1068;1068;1068;1068;1068;1068;1068;1068;1068;1068;1068;1068;1068;6;49;9;24;30;30;35;30;0;37;247;607;174;205;610 -189;'662;Saint Lucia;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -189;'662;Saint Lucia;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -189;'662;Saint Lucia;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116;910;47;268;6101;6101;6101;6101;6101;6101;6101;6101;6101;6101;6101;6101;6101;6101;6101;52;520;92;242;309;309;96;71;0;104;817;2002;509;494;1469 -189;'662;Saint Lucia;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;215;3;21;1068;1068;1068;1068;1068;1068;1068;1068;1068;1068;1068;1068;1068;1068;1068;6;49;9;24;30;30;35;30;0;37;247;607;174;205;610 -189;'662;Saint Lucia;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -189;'662;Saint Lucia;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -189;'662;Saint Lucia;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;131;351;420;305;405;405;405;405;405;405;405;405;405;405;405;405;405;405;405;405;405;405;146;537;351;360;100;94;6;85;23;231;3303;171 -189;'662;Saint Lucia;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;102;75;31;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;38;24;108;98;102;15;26;3;33;11;122;426;41 -189;'662;Saint Lucia;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;1;27;0 -189;'662;Saint Lucia;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;10;0 -189;'662;Saint Lucia;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;211;280;187;187;187;187;187;187;187;187;187;187;187;187;187;187;187;187;187;187;187;94;187;1;332;100;31;0;0;0;36;1829;0 -189;'662;Saint Lucia;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;25;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;11;24;14;94;15;15;0;0;0;8;226;0 -189;'662;Saint Lucia;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;1;27;0 -189;'662;Saint Lucia;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;10;0 -189;'662;Saint Lucia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;131;140;140;118;218;218;218;218;218;218;218;218;218;218;218;218;218;218;218;218;218;218;52;350;350;28;0;63;6;85;23;195;1474;171 -189;'662;Saint Lucia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;50;50;12;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;13;84;84;8;0;11;3;33;11;114;200;41 -189;'662;Saint Lucia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -189;'662;Saint Lucia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -189;'662;Saint Lucia;1630;Wood charcoal;5510;Production;t;273;274;276;277;278;280;281;283;284;286;291;292;312;319;312;310;309;303;295;300;307;304;306;306;307;299;302;292;291;293;298;286;296;298;300;305;309;307;307;307;310;313;316;319;322;325;328;331;334;337;340;344;348;352;356;354;368;350;349;347;346;344;343 -189;'662;Saint Lucia;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;8;8;5;5;5;4;1;49;49;49 -189;'662;Saint Lucia;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;9;9;7;7;7;7;2;33;33;33 -189;'662;Saint Lucia;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;3;2;0;0;0 -189;'662;Saint Lucia;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;2;2;2;1;2;0;0;0 -189;'662;Saint Lucia;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;370;3;0;0;28;1.1;1.1;0;0;0;20;20;19;32;32 -189;'662;Saint Lucia;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;5;0;0;12;1.1;1.1;0;0;0;7;5;4;17;17 -189;'662;Saint Lucia;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;370;0;0;0;0;1;1;0;0;0;1;1;0;13;13 -189;'662;Saint Lucia;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;0;0;0;0;1;1;0;0;0;3;1;0;13;13 -189;'662;Saint Lucia;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;0;28;0.1;0.1;0;0;0;19;19;19;19;19 -189;'662;Saint Lucia;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;0;0;12;0.1;0.1;0;0;0;4;4;4;4;4 -189;'662;Saint Lucia;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;16 -189;'662;Saint Lucia;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;5 -189;'662;Saint Lucia;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;16 -189;'662;Saint Lucia;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;5 -189;'662;Saint Lucia;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -189;'662;Saint Lucia;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11489;11593;14504;14504;14504;14504;14504;14504;14504;14504;14504;14504;14504;14504;18100;10100;10100;12999;10236;14942;12646;8563;16694;16837;22201;21660;9784;13055;11705;19207;12422;10663 -189;'662;Saint Lucia;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2083;2573;3507;3507;3507;3507;3507;3507;3507;3507;3507;3507;3507;3507;8652;8294;8294;6026;5176;6412;6041;3806;5727;6024;6108;5679;3014;4134;4920;6874;8513;4251 -189;'662;Saint Lucia;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;387;12;1;82;559;55;42;0;2157;0 -189;'662;Saint Lucia;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;97;6;1;20;39;13;18;0;691;0 -189;'662;Saint Lucia;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -189;'662;Saint Lucia;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11047;11098;14276;14276;14276;14276;14276;14276;14276;14276;14276;14276;14276;14276;17100;9500;9500;11643;7743;12575;12214;8146;15371;15669;21185;20892;9330;12417;11575;18411;11081;10120 -189;'662;Saint Lucia;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1900;2315;3382;3382;3382;3382;3382;3382;3382;3382;3382;3382;3382;3382;8113;7964;7964;4826;3316;5582;5677;3402;4580;5066;5451;5199;2593;3852;4539;6183;4154;3877 -189;'662;Saint Lucia;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;387;4;0;82;549;41;0;0;2157;0 -189;'662;Saint Lucia;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97;1;0;18;30;3;0;0;691;0 -189;'662;Saint Lucia;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -189;'662;Saint Lucia;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;442;495;228;228;228;228;228;228;228;228;228;228;228;228;1000;600;600;1356;2493;2367;432;417;1323;1168;1016;768;454;638;130;796;1341;543 -189;'662;Saint Lucia;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;183;258;125;125;125;125;125;125;125;125;125;125;125;125;539;330;330;1200;1860;830;364;404;1147;958;657;480;421;282;381;691;4359;374 -189;'662;Saint Lucia;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;0;8;1;0;10;14;42;0;0;0 -189;'662;Saint Lucia;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;0;5;1;2;9;10;18;0;0;0 -189;'662;Saint Lucia;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -189;'662;Saint Lucia;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;109;18;22;27;1.4;3;15;5;11;2;4;0;8;8;4 -189;'662;Saint Lucia;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;309;34;43;67;4;10;25;10;26;15;13;5;27;22;16 -189;'662;Saint Lucia;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -189;'662;Saint Lucia;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -189;'662;Saint Lucia;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -189;'662;Saint Lucia;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5558;9359;6641;6497;6497;6497;6497;6497;6497;6497;6497;6497;6497;6497;11071;7071;7071;4697;3991;3148;2609;3039;7216;7805;9194;9084;7489;8178;7494;10184;10431;7356 -189;'662;Saint Lucia;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1734;2589;2182;2146;2146;2146;2146;2146;2146;2146;2146;2146;2146;2146;5656;4893;4893;3798;3014;2885;2084;2593;4324;4513;4603;4615;3558;3437;3050;4462;4547;3254 -189;'662;Saint Lucia;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;134;37;38;91;608;56;35;35;35;35 -189;'662;Saint Lucia;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97;11;10;39;62;16;6;6;6;6 -189;'662;Saint Lucia;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -189;'662;Saint Lucia;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5485;9311;6472;6472;6472;6472;6472;6472;6472;6472;6472;6472;6472;6472;11000;7000;7000;4461;3840;3030;2382;2982;7024;7613;8928;8818;7223;7635;7086;9735;10057;6249 -189;'662;Saint Lucia;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1701;2574;2140;2140;2140;2140;2140;2140;2140;2140;2140;2140;2140;2140;5635;4870;4870;3703;2948;2840;1992;2574;4140;4329;4407;4419;3362;3203;2940;4338;4252;2871 -189;'662;Saint Lucia;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;2;3;56;573;21;0;0;0;0 -189;'662;Saint Lucia;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91;5;4;33;56;10;0;0;0;0 -189;'662;Saint Lucia;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;14;14;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -189;'662;Saint Lucia;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;3;3;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -189;'662;Saint Lucia;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;14;14;14;14;14;14;14;14;60;60;60;60;64;0;0;0;6;6;2;2;2;191;313;258;48;0 -189;'662;Saint Lucia;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3;3;3;3;18;20;20;20;22;0;0;0;12;12;3;3;3;8;7;25;48;1 -189;'662;Saint Lucia;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0 -189;'662;Saint Lucia;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0 -189;'662;Saint Lucia;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;678 -189;'662;Saint Lucia;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7 -189;'662;Saint Lucia;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;34;155;11;11;11;11;11;11;11;11;11;11;11;11;11;11;176;87;118;227;57;186;186;264;264;264;352;95;191;326;429 -189;'662;Saint Lucia;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;12;39;3;3;3;3;3;3;3;3;3;3;3;3;3;3;75;44;45;92;19;172;172;193;193;193;226;103;99;247;375 -189;'662;Saint Lucia;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;35;35;35;35;35;35;35;35;35 -189;'662;Saint Lucia;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;6;6;6 -189;'662;Saint Lucia;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;0;15;0;52;52;21;21;21;13;2;0;13;13 -189;'662;Saint Lucia;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;11;0;8;0;53;53;26;26;26;8;4;8;8;8 -189;'662;Saint Lucia;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;158;69;118;212;57;103;103;209;209;209;195;86;179;210;313 -189;'662;Saint Lucia;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;33;45;84;19;109;109;152;152;152;115;97;88;209;337 -189;'662;Saint Lucia;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;35;35;35;35;35;35;35;35;35 -189;'662;Saint Lucia;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;6;6;6 -189;'662;Saint Lucia;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;0;0;0;0;0;31;31;34;34;34;144;7;12;103;103 -189;'662;Saint Lucia;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;0;0;0;0;0;10;10;15;15;15;103;2;3;30;30 -189;'662;Saint Lucia;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;34;144;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -189;'662;Saint Lucia;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;12;36;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -189;'662;Saint Lucia;1879;Total fibre furnish;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;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000 -189;'662;Saint Lucia;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;410;236;236;236;236;236;236;236;236;236;236;236;236;236;236;236;236;151;151;151;151;38;38;38;38;38;38;116;38;169;189;136 -189;'662;Saint Lucia;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;45;45;45;45;45;45;45;45;45;45;45;45;45;45;45;45;22;22;22;22;9;9;9;9;9;9;61;9;70;73;64 -189;'662;Saint Lucia;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;882;595;1094;194;969;1218;1218;1094;1094;1094;675;541;114;155;451 -189;'662;Saint Lucia;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;297;216;408;42;234;173;173;125;125;125;37;34;24;28;94 -189;'662;Saint Lucia;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;85;85;85;85;85;85;85;85;85;85;85;85;85;85;85;0;0;0;0;0;0;0;0;0;0;116;0;116;116;116 -189;'662;Saint Lucia;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;0;0;0;0;0;0;0;0;0;0;61;0;61;61;61 -189;'662;Saint Lucia;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;85;85;85;85;85;85;85;85;85;85;85;85;85;85;85;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -189;'662;Saint Lucia;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -189;'662;Saint Lucia;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;85;85;85;85;85;85;85;85;85;85;85;85;85;85;85;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -189;'662;Saint Lucia;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -189;'662;Saint Lucia;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;85;85;85;85;85;85;85;85;85;85;85;85;85;85;85;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -189;'662;Saint Lucia;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -189;'662;Saint Lucia;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;116;0;116;116;116 -189;'662;Saint Lucia;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;61;0;61;61;61 -189;'662;Saint Lucia;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4 -189;'662;Saint Lucia;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5 -189;'662;Saint Lucia;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;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 -189;'662;Saint Lucia;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;410;151;151;151;151;151;151;151;151;151;151;151;151;151;151;151;151;151;151;151;151;38;38;38;38;38;38;0;38;53;73;20 -189;'662;Saint Lucia;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;9;9;9;9;9;9;0;9;9;12;3 -189;'662;Saint Lucia;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;882;595;1094;194;969;1218;1218;1094;1094;1094;675;541;114;155;451 -189;'662;Saint Lucia;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;297;216;408;42;234;173;173;125;125;125;37;34;24;28;94 -189;'662;Saint Lucia;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15505;11412;9910;9910;9910;9910;9910;9910;9910;9910;9910;9910;9910;9910;9910;9910;9910;6985;9451;8539;6332;4863;2531;2657;1140;2239;2241;808;692;4171;3870;4558 -189;'662;Saint Lucia;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6580;5001;4885;4885;4885;4885;4885;4885;4885;4885;4885;4885;4885;4885;4885;4885;4885;4529;6376;5829;4585;3700;2907;3099;1759;2486;2511;1750;1480;4273;5422;4439 -189;'662;Saint Lucia;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;53;13;0;12;732;732;606;607;607;599;662;355;27;33 -189;'662;Saint Lucia;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;77;24;0;18;724;724;600;601;601;615;681;584;26;41 -189;'662;Saint Lucia;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;305;338;1061;1061;1061;1061;1061;1061;1061;1061;1061;1061;1061;1061;1061;1061;1061;718;579;688;702;591;265;265;427;427;427;250;104;341;196;402 -189;'662;Saint Lucia;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;336;397;970;970;970;970;970;970;970;970;970;970;970;970;970;970;970;909;720;844;839;752;534;534;546;546;546;556;266;742;504;701 -189;'662;Saint Lucia;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;0;0;0;0;0;0;0 -189;'662;Saint Lucia;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;0;0;0;0;0;0;0 -189;'662;Saint Lucia;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;45;35;35;35;35;35;35;35;35;35;35;35;35;35;35;35;41;15;0;21;0;40;40;60;60;60;19;7;0;4;0 -189;'662;Saint Lucia;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;38;29;29;29;29;29;29;29;29;29;29;29;29;29;29;29;36;12;0;15;0;69;69;72;72;72;37;19;0;8;0 -189;'662;Saint Lucia;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;279;293;1026;1026;1026;1026;1026;1026;1026;1026;1026;1026;1026;1026;1026;1026;1026;677;564;688;681;591;225;225;367;367;367;231;97;341;192;402 -189;'662;Saint Lucia;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;320;359;941;941;941;941;941;941;941;941;941;941;941;941;941;941;941;873;708;844;824;752;465;465;474;474;474;519;247;742;496;701 -189;'662;Saint Lucia;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;0;0;0;0;0;0;0 -189;'662;Saint Lucia;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;0;0;0;0;0;0;0 -189;'662;Saint Lucia;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;175;175;199;311;290;71;71;35;35;35;60;40;2;1;0 -189;'662;Saint Lucia;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;180;195;222;288;260;133;133;87;87;87;153;81;10;2;1 -189;'662;Saint Lucia;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0 -189;'662;Saint Lucia;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0 -189;'662;Saint Lucia;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1026;1026;1026;1026;1026;1026;1026;1026;1026;1026;1026;301;197;292;243;118;93;93;180;180;180;56;19;292;157;369 -189;'662;Saint Lucia;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;941;941;941;941;941;941;941;941;941;941;941;451;285;379;406;208;151;151;155;155;155;100;53;454;401;638 -189;'662;Saint Lucia;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;201;192;197;127;183;61;61;152;152;152;115;38;47;34;33 -189;'662;Saint Lucia;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;242;228;243;130;284;181;181;232;232;232;266;113;278;93;62 -189;'662;Saint Lucia;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;0;0;0;0;0;0;0 -189;'662;Saint Lucia;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;0;0;0;0;0;0;0 -189;'662;Saint Lucia;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15200;11074;8849;8849;8849;8849;8849;8849;8849;8849;8849;8849;8849;8849;8849;8849;8849;6267;8872;7851;5630;4272;2266;2392;713;1812;1814;558;588;3830;3674;4156 -189;'662;Saint Lucia;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6244;4604;3915;3915;3915;3915;3915;3915;3915;3915;3915;3915;3915;3915;3915;3915;3915;3620;5656;4985;3746;2948;2373;2565;1213;1940;1965;1194;1214;3531;4918;3738 -189;'662;Saint Lucia;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;53;13;0;12;731;731;606;607;607;599;662;355;27;33 -189;'662;Saint Lucia;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;77;24;0;18;723;723;600;601;601;615;681;584;26;41 -189;'662;Saint Lucia;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;495;475;505;394;237;444;567;602;494;496;474;520;611;397;436 -189;'662;Saint Lucia;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;638;735;661;615;467;544;736;708;681;706;704;717;938;1235;743 -189;'662;Saint Lucia;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5762;8384;7325;5216;4008;1814;1817;107;1314;1314;70;58;3214;3274;3713 -189;'662;Saint Lucia;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2961;4838;4236;2995;2288;1610;1610;390;1144;1144;362;349;2545;3659;2945 -189;'662;Saint Lucia;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;53;13;0;12;731;731;606;607;607;599;662;355;27;33 -189;'662;Saint Lucia;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;77;24;0;18;723;723;600;601;601;615;681;584;26;41 -189;'662;Saint Lucia;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5690;8225;7161;5154;3023;24;27;26;1233;1233;27;27;3179;2973;3702 -189;'662;Saint Lucia;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2878;4654;3988;2754;1549;41;41;27;781;781;27;30;2418;3059;2707 -189;'662;Saint Lucia;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;17;0;0;0;0;0;0;1;1;0;0;8;8;8 -189;'662;Saint Lucia;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;14;0;0;0;0;0;0;1;1;1;0;7;7;7 -189;'662;Saint Lucia;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;145;41;47;835;1051;1051;25;25;25;2;1;4;31;0 -189;'662;Saint Lucia;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;151;48;39;500;752;752;27;27;27;15;20;6;46;0 -189;'662;Saint Lucia;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;719;719;594;594;594;594;594;0;0;0 -189;'662;Saint Lucia;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;705;705;582;582;582;582;582;0;0;0 -189;'662;Saint Lucia;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;7;104;15;150;731;731;48;48;48;33;22;30;262;3 -189;'662;Saint Lucia;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;12;173;202;239;598;598;117;117;117;101;80;120;335;19 -189;'662;Saint Lucia;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;36;13;0;12;12;12;12;12;12;5;68;347;19;25 -189;'662;Saint Lucia;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;63;24;0;18;18;18;18;18;18;32;99;577;19;34 -189;'662;Saint Lucia;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;7;19;0;0;8;8;8;8;8;8;8;1;8;8 -189;'662;Saint Lucia;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;21;27;0;0;219;219;219;219;219;219;219;1;219;219 -189;'662;Saint Lucia;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15200;11074;8849;8849;8849;8849;8849;8849;8849;8849;8849;8849;8849;8849;8849;8849;8849;10;13;21;20;27;8;8;4;4;4;14;10;5;3;7 -189;'662;Saint Lucia;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6244;4604;3915;3915;3915;3915;3915;3915;3915;3915;3915;3915;3915;3915;3915;3915;3915;21;83;88;136;193;219;219;115;115;115;128;148;48;24;50 -189;'662;Saint Lucia;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0 -189;'662;Saint Lucia;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0 -189;'662;Saint Lucia;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12207;7088;6235;5933;8261;8440;5239 -189;'662;Saint Lucia;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;516;572;300;170;27;123;146 -189;'662;Saint Lucia;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;535;520;360;366;476;185;261 -189;'662;Saint Lucia;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;27;0;0;0;1;0 -189;'662;Saint Lucia;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;220;454;247;237;23;47;96 -189;'662;Saint Lucia;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;27;0;0;0;1;0 -189;'662;Saint Lucia;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;315;66;113;129;453;138;165 -189;'662;Saint Lucia;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;0;0;0;0;0;0 -189;'662;Saint Lucia;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;152;129;84;11;72;269;100 -189;'662;Saint Lucia;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;31;6;0;0;14;0 -189;'662;Saint Lucia;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;129;164;97;73;182;212 -189;'662;Saint Lucia;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;35;51;19;0;5;5 -189;'662;Saint Lucia;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2123;1341;1631;1432;1062;1874;1578 -189;'662;Saint Lucia;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;19;0;4;1;1;0 -189;'662;Saint Lucia;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105;105 -189;'662;Saint Lucia;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;76 -189;'662;Saint Lucia;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9236;4932;3963;4006;6186;5484;2566 -189;'662;Saint Lucia;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;364;460;229;133;26;5;43 -189;'662;Saint Lucia;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;200 -189;'662;Saint Lucia;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97;97 -189;'662;Saint Lucia;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;37;33;21;392;435;322 -189;'662;Saint Lucia;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;14;14;0;0;1 -189;'662;Saint Lucia;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7906;9861;9869;9441;6629;8542;4822 -189;'662;Saint Lucia;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4861;3066;3120;3105;3072;4244;2827 -189;'662;Saint Lucia;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;1;1;0;0;1;1 -189;'662;Saint Lucia;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -189;'662;Saint Lucia;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;239;226;222;168;85;145;78 -189;'662;Saint Lucia;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1;2;0;0;0;0 -189;'662;Saint Lucia;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3028;3041;2963;2932;2426;3017;732 -189;'662;Saint Lucia;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126;67;183;179;190;50;91 -189;'662;Saint Lucia;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;896;2732;2591;2230;656;1008;1233 -189;'662;Saint Lucia;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4599;2938;2865;2884;2866;4060;2652 -189;'662;Saint Lucia;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3738;3861;4092;4111;3462;4371;2778 -189;'662;Saint Lucia;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;134;60;70;42;16;134;84 -281;'663;Saint Martin (French part);1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3941;3941;3941;3941;3941;3941;3941 -281;'663;Saint Martin (French part);1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5 -281;'663;Saint Martin (French part);1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3941;3941;3941;3941;3941;3941;3941;3941;3941;3941;3941;3941;3941 -281;'663;Saint Martin (French part);1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5;5;5;5;5;5;5 -281;'663;Saint Martin (French part);1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101;101;101;101;101;101;101;101;101;101;101;101;101 -281;'663;Saint Martin (French part);1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;34;34;34;34;34;34;34;34;34;34;34;34 -281;'663;Saint Martin (French part);1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5 -281;'663;Saint Martin (French part);1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1 -281;'663;Saint Martin (French part);1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96;96;96;96;96;96;96 -281;'663;Saint Martin (French part);1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33;33;33;33;33;33 -281;'663;Saint Martin (French part);1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101;101;101;101;101;101;101;101;101;101;101;101;101 -281;'663;Saint Martin (French part);1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;34;34;34;34;34;34;34;34;34;34;34;34 -281;'663;Saint Martin (French part);1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5;5;5;5;5;5;5 -281;'663;Saint Martin (French part);1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1 -281;'663;Saint Martin (French part);1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5;5;5;5;5;5;5 -281;'663;Saint Martin (French part);1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1 -281;'663;Saint Martin (French part);1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96;96;96;96;96;96;96;96;96;96;96;96;96 -281;'663;Saint Martin (French part);1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33;33;33;33;33;33;33;33;33;33;33;33 -281;'663;Saint Martin (French part);1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96;96;96;96;96;96;96;96;96;96;96;96;96 -281;'663;Saint Martin (French part);1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33;33;33;33;33;33;33;33;33;33;33;33 -281;'663;Saint Martin (French part);1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;18;18;18;18;18;18;18;18;18;18;18 -281;'663;Saint Martin (French part);1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22;22;22;22;22;22;22;22;22;22;22;22 -281;'663;Saint Martin (French part);1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5529;5529;5529;5529;5529;5529;5529;5529;5529;5529;5529;5529;5529 -281;'663;Saint Martin (French part);1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2202;2202;2202;2202;2202;2202;2202;2202;2202;2202;2202;2202;2202 -281;'663;Saint Martin (French part);1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4544;4544;4544;4544;4544;4544;4544;4544;4544;4544;4544;4544;4544 -281;'663;Saint Martin (French part);1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1501;1501;1501;1501;1501;1501;1501;1501;1501;1501;1501;1501;1501 -281;'663;Saint Martin (French part);1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;985;985;985;985;985;985;985;985;985;985;985;985;985 -281;'663;Saint Martin (French part);1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;701;701;701;701;701;701;701;701;701;701;701;701;701 -281;'663;Saint Martin (French part);1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1587;1587;1587;1587;1587;1587;1587;1587;1587;1587;1587;1587;1587 -281;'663;Saint Martin (French part);1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;815;815;815;815;815;815;815;815;815;815;815;815;815 -281;'663;Saint Martin (French part);1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;8;8;8;8;8;8;8;8;8 -281;'663;Saint Martin (French part);1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5;5;5;5;5;5;5 -281;'663;Saint Martin (French part);1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1582;1582;1582;1582;1582;1582;1582;1582;1582;1582;1582;1582;1582 -281;'663;Saint Martin (French part);1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;812;812;812;812;812;812;812;812;812;812;812;812;812 -281;'663;Saint Martin (French part);1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;8;8;8;8;8;8;8;8;8 -281;'663;Saint Martin (French part);1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5;5;5;5;5;5;5 -281;'663;Saint Martin (French part);1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5;5;5;5;5;5;5 -281;'663;Saint Martin (French part);1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3;3;3;3;3;3 -281;'663;Saint Martin (French part);1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5;5;5;5;5;5;5 -281;'663;Saint Martin (French part);1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3;3;3;3;3;3 -281;'663;Saint Martin (French part);1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;587;587;587;587;587;587;587;587;587;587;587;587;587 -281;'663;Saint Martin (French part);1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;868;868;868;868;868;868;868;868;868;868;868;868;868 -281;'663;Saint Martin (French part);2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;351;351;351;351;351;351;351;351;351;351;351;351;351 -281;'663;Saint Martin (French part);2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;287;287;287;287;287;287;287;287;287;287;287;287;287 -281;'663;Saint Martin (French part);1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;332;332;332;332;332;332;332;332;332;332;332;332;332 -281;'663;Saint Martin (French part);1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;241;241;241;241;241;241;241;241;241;241;241;241;241 -281;'663;Saint Martin (French part);1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;19;19;19;19;19;19;19;19;19;19 -281;'663;Saint Martin (French part);1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;46;46;46;46;46;46;46;46;46;46;46;46 -281;'663;Saint Martin (French part);1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;2;2;2;2 -281;'663;Saint Martin (French part);1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;11;11;11;11;11;11;11;11;11 -281;'663;Saint Martin (French part);1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0 -281;'663;Saint Martin (French part);1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0 -281;'663;Saint Martin (French part);1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;17;17;17;17;17;17;17;17;17;17 -281;'663;Saint Martin (French part);1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;35;35;35;35;35;35;35;35;35;35;35;35 -281;'663;Saint Martin (French part);1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;236;236;236;236;236;236;236;236;236;236;236;236;236 -281;'663;Saint Martin (French part);1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;581;581;581;581;581;581;581;581;581;581;581;581;581 -281;'663;Saint Martin (French part);1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;193;193;193;193;193;193;193;193;193;193;193;193;193 -281;'663;Saint Martin (French part);1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;441;441;441;441;441;441;441;441;441;441;441;441;441 -281;'663;Saint Martin (French part);2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22;22;22;22;22;22;22;22;22;22;22;22 -281;'663;Saint Martin (French part);2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;68;68;68;68;68;68;68;68;68;68;68;68 -281;'663;Saint Martin (French part);1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1 -281;'663;Saint Martin (French part);1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3;3;3;3;3;3 -281;'663;Saint Martin (French part);1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;2;2;2;2 -281;'663;Saint Martin (French part);1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;14;14;14;14;14;14;14;14;14;14 -281;'663;Saint Martin (French part);1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;19;19;19;19;19;19;19;19;19;19 -281;'663;Saint Martin (French part);1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;51;51;51;51;51;51;51;51;51;51;51;51 -281;'663;Saint Martin (French part);1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0 -281;'663;Saint Martin (French part);1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0 -281;'663;Saint Martin (French part);1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;21;21;21;21;21;21;21;21;21;21;21 -281;'663;Saint Martin (French part);1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;72;72;72;72;72;72;72;72;72;72;72;72 -190;'666;Saint Pierre and Miquelon;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2229;3305;2659;2958;3083;3607;3975 -190;'666;Saint Pierre and Miquelon;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;10;20;21;19;29 -190;'666;Saint Pierre and Miquelon;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1785;740;523;515;515;515;515;515;515;515;515;515;515;515;515;515;515;515;515;515;515;515;515;552;659;220;482;555;584;603;322;568 -190;'666;Saint Pierre and Miquelon;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;18;29;0;0;9;20;21;18;29 -190;'666;Saint Pierre and Miquelon;1861;Roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600 -190;'666;Saint Pierre and Miquelon;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;16;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;23;0;0;89;3;268;79;10;3 -190;'666;Saint Pierre and Miquelon;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;1;0;0;10;8;22;5;3;2 -190;'666;Saint Pierre and Miquelon;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 -190;'666;Saint Pierre and Miquelon;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 -190;'666;Saint Pierre and Miquelon;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;247;70;1;1 -190;'666;Saint Pierre and Miquelon;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;14;3;1;1 -190;'666;Saint Pierre and Miquelon;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -190;'666;Saint Pierre and Miquelon;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -190;'666;Saint Pierre and Miquelon;1863;Roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600 -190;'666;Saint Pierre and Miquelon;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;89;3;21;9;9;2 -190;'666;Saint Pierre and Miquelon;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;10;8;8;2;2;1 -190;'666;Saint Pierre and Miquelon;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -190;'666;Saint Pierre and Miquelon;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -190;'666;Saint Pierre and Miquelon;1864;Wood fuel;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600 -190;'666;Saint Pierre and Miquelon;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;18;9;10;3 -190;'666;Saint Pierre and Miquelon;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;4;2;3;2 -190;'666;Saint Pierre and Miquelon;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1 -190;'666;Saint Pierre and Miquelon;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1 -190;'666;Saint Pierre and Miquelon;1628;Wood fuel, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600;600 -190;'666;Saint Pierre and Miquelon;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;18;9;9;2 -190;'666;Saint Pierre and Miquelon;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;4;2;2;1 -190;'666;Saint Pierre and Miquelon;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;16;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;23;0;0;89;0;250;70;0;0 -190;'666;Saint Pierre and Miquelon;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;1;0;0;10;0;18;3;0;0 -190;'666;Saint Pierre and Miquelon;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 -190;'666;Saint Pierre and Miquelon;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 -190;'666;Saint Pierre and Miquelon;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;16;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;23;0;0;0;0;247;70;0;0 -190;'666;Saint Pierre and Miquelon;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;1;0;0;0;0;14;3;0;0 -190;'666;Saint Pierre and Miquelon;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 -190;'666;Saint Pierre and Miquelon;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 -190;'666;Saint Pierre and Miquelon;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;16;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;23;0;0;0;0;247;70;0;0 -190;'666;Saint Pierre and Miquelon;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;5;1;0;0;0;0;14;3;0;0 -190;'666;Saint Pierre and Miquelon;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 -190;'666;Saint Pierre and Miquelon;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 -190;'666;Saint Pierre and Miquelon;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;89;0;3;0;0;0 -190;'666;Saint Pierre and Miquelon;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;10;0;4;0;0;0 -190;'666;Saint Pierre and Miquelon;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 -190;'666;Saint Pierre and Miquelon;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 -190;'666;Saint Pierre and Miquelon;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -190;'666;Saint Pierre and Miquelon;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -190;'666;Saint Pierre and Miquelon;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -190;'666;Saint Pierre and Miquelon;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -190;'666;Saint Pierre and Miquelon;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;89;0;3;0;0;0 -190;'666;Saint Pierre and Miquelon;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;10;0;4;0;0;0 -190;'666;Saint Pierre and Miquelon;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 -190;'666;Saint Pierre and Miquelon;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 -190;'666;Saint Pierre and Miquelon;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;15;8;4;3 -190;'666;Saint Pierre and Miquelon;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;15;4;2;1 -190;'666;Saint Pierre and Miquelon;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -190;'666;Saint Pierre and Miquelon;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -190;'666;Saint Pierre and Miquelon;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;30;11;12;11;51 -190;'666;Saint Pierre and Miquelon;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;2;1;159 -190;'666;Saint Pierre and Miquelon;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;4;4;4;44 -190;'666;Saint Pierre and Miquelon;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;158 -190;'666;Saint Pierre and Miquelon;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;7;8;7;7 -190;'666;Saint Pierre and Miquelon;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;2;1;1 -190;'666;Saint Pierre and Miquelon;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;9;8;28;22 -190;'666;Saint Pierre and Miquelon;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;3;3;7;6 -190;'666;Saint Pierre and Miquelon;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;13;16 -190;'666;Saint Pierre and Miquelon;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;2;4;4 -190;'666;Saint Pierre and Miquelon;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;2;1;15;6 -190;'666;Saint Pierre and Miquelon;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;1;3;2 -190;'666;Saint Pierre and Miquelon;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -190;'666;Saint Pierre and Miquelon;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3149;3202;1803;1803;1803;1803;1803;1803;1803;1803;1803;1803;1803;1803;1803;1803;1803;1803;1803;1803;1803;1803;1803;756;1349;39;440;240;71;388;665;15 -190;'666;Saint Pierre and Miquelon;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;497;436;275;275;275;275;275;275;275;275;275;275;275;275;275;275;275;275;275;275;275;275;275;291;408;29;323;122;70;208;80;10 -190;'666;Saint Pierre and Miquelon;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;17;32;0;0;0;0;0;0;0 -190;'666;Saint Pierre and Miquelon;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;18;29;0;0;0;0;0;0;0 -190;'666;Saint Pierre and Miquelon;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -190;'666;Saint Pierre and Miquelon;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2924;3023;1747;1747;1747;1747;1747;1747;1747;1747;1747;1747;1747;1747;1747;1747;1747;1747;1747;1747;1747;1747;1747;722;1314;14;390;190;40;279;543;14 -190;'666;Saint Pierre and Miquelon;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;421;356;246;246;246;246;246;246;246;246;246;246;246;246;246;246;246;246;246;246;246;246;246;256;356;14;302;87;30;165;47;9 -190;'666;Saint Pierre and Miquelon;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -190;'666;Saint Pierre and Miquelon;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -190;'666;Saint Pierre and Miquelon;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -190;'666;Saint Pierre and Miquelon;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;225;179;56;56;56;56;56;56;56;56;56;56;56;56;56;56;56;56;56;56;56;56;56;34;35;25;50;50;31;109;122;1 -190;'666;Saint Pierre and Miquelon;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;80;29;29;29;29;29;29;29;29;29;29;29;29;29;29;29;29;29;29;29;29;29;35;52;15;21;35;40;43;33;1 -190;'666;Saint Pierre and Miquelon;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;17;32;0;0;0;0;0;0;0 -190;'666;Saint Pierre and Miquelon;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;18;29;0;0;0;0;0;0;0 -190;'666;Saint Pierre and Miquelon;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -190;'666;Saint Pierre and Miquelon;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;10;0;0;8;0;0;0;0;0 -190;'666;Saint Pierre and Miquelon;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;8;0;0;8;1;0;0;0;0 -190;'666;Saint Pierre and Miquelon;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;0;0 -190;'666;Saint Pierre and Miquelon;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;0;0 -190;'666;Saint Pierre and Miquelon;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -190;'666;Saint Pierre and Miquelon;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;779;899;525;520;520;520;520;520;520;520;520;520;520;520;520;520;520;520;520;520;520;520;520;295;334;393;195;2753;8659;2090;200;316 -190;'666;Saint Pierre and Miquelon;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;234;280;204;196;196;196;196;196;196;196;196;196;196;196;196;196;196;196;196;196;196;196;196;213;212;152;102;210;292;254;157;188 -190;'666;Saint Pierre and Miquelon;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;31;35;35;35;35;35;35;35;35;35;35;35;35;35;35;35;35;35;35;35;35;35;0;0;0;0;0;0;0;0;13 -190;'666;Saint Pierre and Miquelon;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;0;0;0;0;0;0;0;0;11 -190;'666;Saint Pierre and Miquelon;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -190;'666;Saint Pierre and Miquelon;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;680;825;458;458;458;458;458;458;458;458;458;458;458;458;458;458;458;458;458;458;458;458;458;233;272;331;133;165;19;73;8;7 -190;'666;Saint Pierre and Miquelon;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;207;249;173;173;173;173;173;173;173;173;173;173;173;173;173;173;173;173;173;173;173;173;173;190;189;129;79;67;12;62;13;4 -190;'666;Saint Pierre and Miquelon;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;31;35;35;35;35;35;35;35;35;35;35;35;35;35;35;35;35;35;35;35;35;35;0;0;0;0;0;0;0;0;5 -190;'666;Saint Pierre and Miquelon;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;22;0;0;0;0;0;0;0;0;5 -190;'666;Saint Pierre and Miquelon;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;42;53;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -190;'666;Saint Pierre and Miquelon;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;13;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -190;'666;Saint Pierre and Miquelon;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;53;53;53;53;53;53;53;53;53;53;53;53;53;53;53;53;53;53;53;53;53;53;53;3;17;50;23;2 -190;'666;Saint Pierre and Miquelon;1697;Particle board;5622;Import 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;1;16;7;6;1 -190;'666;Saint Pierre and Miquelon;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;474;45;619;26;26 -190;'666;Saint Pierre and Miquelon;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;10;40;21;21 -190;'666;Saint Pierre and Miquelon;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7 -190;'666;Saint Pierre and Miquelon;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5 -190;'666;Saint Pierre and Miquelon;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;32;14;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;2111;8578;1348;143;281 -190;'666;Saint Pierre and Miquelon;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;17;18;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;124;254;145;117;162 -190;'666;Saint Pierre and Miquelon;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1 -190;'666;Saint Pierre and Miquelon;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1 -190;'666;Saint Pierre and Miquelon;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1008;1297;10;15;26 -190;'666;Saint Pierre and Miquelon;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;67;6;28;68 -190;'666;Saint Pierre and Miquelon;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1099;5039;31;73;239 -190;'666;Saint Pierre and Miquelon;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;121;77;65;72 -190;'666;Saint Pierre and Miquelon;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1 -190;'666;Saint Pierre and Miquelon;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1 -190;'666;Saint Pierre and Miquelon;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;16;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;4;2242;1307;55;16 -190;'666;Saint Pierre and Miquelon;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;12;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;4;66;62;24;22 -190;'666;Saint Pierre and Miquelon;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;16;5;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -190;'666;Saint Pierre and Miquelon;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;8;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -190;'666;Saint Pierre and Miquelon;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;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;8;8;8;8 -190;'666;Saint Pierre and Miquelon;1879;Total fibre furnish;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;1 -190;'666;Saint Pierre and Miquelon;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;140;307;270;219;312 -190;'666;Saint Pierre and Miquelon;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;9;20;21;18;18 -190;'666;Saint Pierre and Miquelon;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 -190;'666;Saint Pierre and Miquelon;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 -190;'666;Saint Pierre and Miquelon;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 -190;'666;Saint Pierre and Miquelon;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 -190;'666;Saint Pierre and Miquelon;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 -190;'666;Saint Pierre and Miquelon;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 -190;'666;Saint Pierre and Miquelon;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 -190;'666;Saint Pierre and Miquelon;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 -190;'666;Saint Pierre and Miquelon;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;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;8;8;8;8 -190;'666;Saint Pierre and Miquelon;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;1;1;1;1;1;1 -190;'666;Saint Pierre and Miquelon;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140;307;270;219;312 -190;'666;Saint Pierre and Miquelon;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;20;21;18;18 -190;'666;Saint Pierre and Miquelon;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1118;16;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;95;97;53;34;55 -190;'666;Saint Pierre and Miquelon;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1053;18;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;206;180;126;71;201 -190;'666;Saint Pierre and Miquelon;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -190;'666;Saint Pierre and Miquelon;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -190;'666;Saint Pierre and Miquelon;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1087;10;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;80;90;47;26;31 -190;'666;Saint Pierre and Miquelon;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1016;14;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;175;165;94;55;93 -190;'666;Saint Pierre and Miquelon;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1087;10;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;80;90;47;26;31 -190;'666;Saint Pierre and Miquelon;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1016;14;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;175;165;94;55;93 -190;'666;Saint Pierre and Miquelon;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;3;2;2 -190;'666;Saint Pierre and Miquelon;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;6;8;7;7 -190;'666;Saint Pierre and Miquelon;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;57;76;44;15;22 -190;'666;Saint Pierre and Miquelon;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;123;107;85;24;58 -190;'666;Saint Pierre and Miquelon;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;13;0;9;7 -190;'666;Saint Pierre and Miquelon;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;52;1;24;28 -190;'666;Saint Pierre and Miquelon;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;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;15;7;6;8;24 -190;'666;Saint Pierre and Miquelon;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;4;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;31;15;32;16;108 -190;'666;Saint Pierre and Miquelon;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -190;'666;Saint Pierre and Miquelon;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -190;'666;Saint Pierre and Miquelon;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;1;13 -190;'666;Saint Pierre and Miquelon;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;4;0;3;40 -190;'666;Saint Pierre and Miquelon;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;7;6;7;11 -190;'666;Saint Pierre and Miquelon;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;10;10;10;49 -190;'666;Saint Pierre and Miquelon;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -190;'666;Saint Pierre and Miquelon;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -190;'666;Saint Pierre and Miquelon;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;6;6;6;1 -190;'666;Saint Pierre and Miquelon;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;8;8;8;12 -190;'666;Saint Pierre and Miquelon;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5 -190;'666;Saint Pierre and Miquelon;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17 -190;'666;Saint Pierre and Miquelon;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -190;'666;Saint Pierre and Miquelon;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -190;'666;Saint Pierre and Miquelon;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4 -190;'666;Saint Pierre and Miquelon;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18 -190;'666;Saint Pierre and Miquelon;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;1;1 -190;'666;Saint Pierre and Miquelon;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;2;2;2;2 -190;'666;Saint Pierre and Miquelon;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;0;0;0;0;0 -190;'666;Saint Pierre and Miquelon;1683;Other paper and paperboard, not elsewhere specified;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;8;1;22;3;19 -190;'666;Saint Pierre and Miquelon;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1428;1625;1299;1594;1777;2704;2866 -190;'666;Saint Pierre and Miquelon;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;1;0;0;1;0 -190;'666;Saint Pierre and Miquelon;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;384;297;130;139;162;134;234 -190;'666;Saint Pierre and Miquelon;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;197;256;34;55;108;19;23 -190;'666;Saint Pierre and Miquelon;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;187;41;96;84;54;115;211 -190;'666;Saint Pierre and Miquelon;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;25;22;62;63;48;47 -190;'666;Saint Pierre and Miquelon;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;11;37;37;50;9;23 -190;'666;Saint Pierre and Miquelon;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -190;'666;Saint Pierre and Miquelon;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;361;282;573;369;513;888;525 -190;'666;Saint Pierre and Miquelon;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115;1 -190;'666;Saint Pierre and Miquelon;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;222;0 -190;'666;Saint Pierre and Miquelon;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;559;788;380;971;821;1284;1697 -190;'666;Saint Pierre and Miquelon;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;1;0;0;1;0 -190;'666;Saint Pierre and Miquelon;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;1;1;68;268;268 -190;'666;Saint Pierre and Miquelon;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;158;156;15;100;73;72 -190;'666;Saint Pierre and Miquelon;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -190;'666;Saint Pierre and Miquelon;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;581;1198;805;780;703;581;541 -190;'666;Saint Pierre and Miquelon;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;511;65;43;41;32;90 -190;'666;Saint Pierre and Miquelon;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;162;168;204;209;151;126;107 -190;'666;Saint Pierre and Miquelon;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;133;119;129;134;191;156;151 -190;'666;Saint Pierre and Miquelon;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -190;'666;Saint Pierre and Miquelon;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;255;400;407;394;320;267;193 -191;'670;Saint Vincent and the Grenadines;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20955;24423;23058;18974;21026;24631.55;29015.84 -191;'670;Saint Vincent and the Grenadines;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1576;1549;1507;1503;1547;1257.18;1428.18 -191;'670;Saint Vincent and the Grenadines;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;300;300;300;500;260;260;2289;2984;2984;2101;1132;971;1880;1866;1854;5750;4832;4524;6578;4639;12107;18545;18545;18545;18545;18545;18545;5462;5462;5462;8345;7984;8355;7196;6821;7106;6043;5447;7378;7765;5507;6595;7630;6691;7536;8261.55;8473.84 -191;'670;Saint Vincent and the Grenadines;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;14;14;193;201;8;8;8;8;8;8;60;60;60;73;135;315;535;700;699;642;629;629;609;734;679;626;591;632;400.18;399.18 -191;'670;Saint Vincent and the Grenadines;1861;Roundwood;5516;Production;m3;12164;12090;12016;11943;11870;11798;11726;11654;11583;11512;11468;10974;11263;11535;11755;11662;11441;11111;11080;10829;10725;10495;10251;10194;10016;9821;9749;9527;9364;9232;9135;9017;8912;8532;8437;8398;8606;8442;8328;8217;8117;8020;7925;7833;7743;7681;7620;7561;7502;7444;7396;7349;7303;7257;7212;7167;7141;7106;7071;7037;7003;6968;6935 -191;'670;Saint Vincent and the Grenadines;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;748;167;167;231;2051;2174;506;283;300;300;300;300;300;300;2481;2481;2481;5093;6032;6120;5556;617;294;1108;576;1491;163;449;523;814;1685;935;665.05;1510.05 -191;'670;Saint Vincent and the Grenadines;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;14;14;21;270;301;56;56;36;36;36;36;36;36;304;304;304;383;526;593;433;197;264;158;116;181;50;85;210;264;593;280;353.69;741.69 -191;'670;Saint Vincent and the Grenadines;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;408;408;408;408;43;49;49;49;49;49;49;0;0;0;0;0;0;16;21;20 -191;'670;Saint Vincent and the Grenadines;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;25;25;24;25;25;25;25;25;25;0;0;0;0;0;0;5;6;3 -191;'670;Saint Vincent and the Grenadines;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -191;'670;Saint Vincent and the Grenadines;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;351;329;782;1452;695;529;947 -191;'670;Saint Vincent and the Grenadines;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;118;237;452;233;230;393 -191;'670;Saint Vincent and the Grenadines;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -191;'670;Saint Vincent and the Grenadines;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -191;'670;Saint Vincent and the Grenadines;1863;Roundwood, non-coniferous;5516;Production;m3;12164;12090;12016;11943;11870;11798;11726;11654;11583;11512;11468;10974;11263;11535;11755;11662;11441;11111;11080;10829;10725;10495;10251;10194;10016;9821;9749;9527;9364;9232;9135;9017;8912;8532;8437;8398;8606;8442;8328;8217;8117;8020;7925;7833;7743;7681;7620;7561;7502;7444;7396;7349;7303;7257;7212;7167;7141;7106;7071;7037;7003;6968;6935 -191;'670;Saint Vincent and the Grenadines;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98;194;32;233;240;136.05;563.05 -191;'670;Saint Vincent and the Grenadines;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;92;27;141;47;123.69;348.69 -191;'670;Saint Vincent and the Grenadines;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;16;21;20 -191;'670;Saint Vincent and the Grenadines;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;5;6;3 -191;'670;Saint Vincent and the Grenadines;1864;Wood fuel;5516;Production;m3;12164;12090;12016;11943;11870;11798;11726;11654;11583;11512;11468;10974;11263;11535;11755;11662;11441;11111;11080;10829;10725;10495;10251;10194;10016;9821;9749;9527;9364;9232;9135;9017;8912;8532;8437;8398;8606;8442;8328;8217;8117;8020;7925;7833;7743;7681;7620;7561;7502;7444;7396;7349;7303;7257;7212;7167;7141;7106;7071;7037;7003;6968;6935 -191;'670;Saint Vincent and the Grenadines;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;283;283;283;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;0;0.05;0.05 -191;'670;Saint Vincent and the Grenadines;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;1;0.69;0.69 -191;'670;Saint Vincent and the Grenadines;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -191;'670;Saint Vincent and the Grenadines;1628;Wood fuel, non-coniferous;5516;Production;m3;12164;12090;12016;11943;11870;11798;11726;11654;11583;11512;11468;10974;11263;11535;11755;11662;11441;11111;11080;10829;10725;10495;10251;10194;10016;9821;9749;9527;9364;9232;9135;9017;8912;8532;8437;8398;8606;8442;8328;8217;8117;8020;7925;7833;7743;7681;7620;7561;7502;7444;7396;7349;7303;7257;7212;7167;7141;7106;7071;7037;7003;6968;6935 -191;'670;Saint Vincent and the Grenadines;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0.05;0.05 -191;'670;Saint Vincent and the Grenadines;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0.69;0.69 -191;'670;Saint Vincent and the Grenadines;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;283;283;283;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -191;'670;Saint Vincent and the Grenadines;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -191;'670;Saint Vincent and the Grenadines;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;748;167;167;231;1768;1891;223;283;300;300;300;300;300;300;2481;2481;2481;5093;6032;6120;5556;617;294;1108;576;1491;163;449;523;814;1685;935;665;1510 -191;'670;Saint Vincent and the Grenadines;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;14;14;21;256;287;42;56;36;36;36;36;36;36;304;304;304;383;526;593;433;197;264;158;116;181;50;85;210;264;593;279;353;741 -191;'670;Saint Vincent and the Grenadines;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;408;408;408;408;43;49;49;49;49;49;49;0;0;0;0;0;0;16;21;20 -191;'670;Saint Vincent and the Grenadines;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;25;25;24;25;25;25;25;25;25;0;0;0;0;0;0;5;6;3 -191;'670;Saint Vincent and the Grenadines;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;719;133;133;133;1745;1868;200;200;300;300;300;300;300;300;563;563;563;4978;5968;5827;5519;489;97;1005;512;1375;72;351;329;782;1452;695;529;947 -191;'670;Saint Vincent and the Grenadines;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;11;11;11;254;285;40;40;36;36;36;36;36;36;34;34;34;304;364;355;337;30;6;61;31;104;5;22;118;237;452;233;230;393 -191;'670;Saint Vincent and the Grenadines;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -191;'670;Saint Vincent and the Grenadines;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -191;'670;Saint Vincent and the Grenadines;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;719;133;133;133;1745;1868;200;200;300;300;300;300;300;300;563;563;563;4978;5968;5827;5519;489;97;1005;512;1375;72;351;329;782;1452;695;529;947 -191;'670;Saint Vincent and the Grenadines;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;11;11;11;254;285;40;40;36;36;36;36;36;36;34;34;34;304;364;355;337;30;6;61;31;104;5;22;118;237;452;233;230;393 -191;'670;Saint Vincent and the Grenadines;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -191;'670;Saint Vincent and the Grenadines;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -191;'670;Saint Vincent and the Grenadines;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;34;34;98;23;23;23;83;0;0;0;0;0;0;1918;1918;1918;115;64;293;37;128;197;103;64;116;91;98;194;32;233;240;136;563 -191;'670;Saint Vincent and the Grenadines;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;3;3;10;2;2;2;16;0;0;0;0;0;0;270;270;270;79;162;238;96;167;258;97;85;77;45;63;92;27;141;46;123;348 -191;'670;Saint Vincent and the Grenadines;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;408;408;408;408;43;49;49;49;49;49;49;0;0;0;0;0;0;16;21;20 -191;'670;Saint Vincent and the Grenadines;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;25;25;24;25;25;25;25;25;25;0;0;0;0;0;0;5;6;3 -191;'670;Saint Vincent and the Grenadines;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;1455;1455;1455;19;14;2;3;74;139;59;50;2;34;49;52;19;0;196;68;0 -191;'670;Saint Vincent and the Grenadines;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;239;239;239;22;18;9;29;110;215;73;67;3;30;47;42;22;0;25;112;0 -191;'670;Saint Vincent and the Grenadines;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;2;8;8;8;8;8;8;0;0;0;0;0;0;16;0;20 -191;'670;Saint Vincent and the Grenadines;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;3;4;4;4;4;4;4;0;0;0;0;0;0;5;0;3 -191;'670;Saint Vincent and the Grenadines;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;34;34;98;23;23;23;83;0;0;0;0;0;0;463;463;463;96;50;291;34;54;58;44;14;114;57;49;142;13;233;44;68;563 -191;'670;Saint Vincent and the Grenadines;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;3;3;10;2;2;2;16;0;0;0;0;0;0;31;31;31;57;144;229;67;57;43;24;18;74;15;16;50;5;141;21;11;348 -191;'670;Saint Vincent and the Grenadines;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;401;401;401;401;41;41;41;41;41;41;41;0;0;0;0;0;0;0;21;0 -191;'670;Saint Vincent and the Grenadines;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;24;24;21;21;21;21;21;21;21;0;0;0;0;0;0;0;6;0 -191;'670;Saint Vincent and the Grenadines;1630;Wood charcoal;5510;Production;t;166;170;174;178;182;186;191;195;200;204;208;198;212;231;243;245;251;252;255;258;259;262;260;262;266;269;270;271;274;279;285;289;294;307;312;320;335;336;340;334;337;341;344;348;351;353;356;358;360;362;363;363;365;366;367;368;368;368;368;368;368;368;368 -191;'670;Saint Vincent and the Grenadines;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;4;2;4;3;4;5;3;3;3;2;2;6;12;0;4 -191;'670;Saint Vincent and the Grenadines;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;8;6;8;8;6;21;6;6;7;3;10;18;10;0;13 -191;'670;Saint Vincent and the Grenadines;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;9;9;9;9;9;3;4;17;5;4;2;20;9;6;5;5;9;10;8;10;3;8 -191;'670;Saint Vincent and the Grenadines;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;8;8;8;8;8;8;0;0;7;2;2;1;8;5;3;3;2;3;3;3;3;1;3 -191;'670;Saint Vincent and the Grenadines;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;33;33;33;33;180;180;180;180;180;180;180;180;172;172;91;58;9;25;330;30 -191;'670;Saint Vincent and the Grenadines;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;1;1;1;1;23;23;23;23;23;23;23;23;19;19;7;29;11;12;13;24 -191;'670;Saint Vincent and the Grenadines;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;33;33;33;33;33;33;33;33;33;33;33;33;4;2;1.89;1.89 -191;'670;Saint Vincent and the Grenadines;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;1;1;1;1;1;1;1;1;1;1;1;0;0;0.16;0.16 -191;'670;Saint Vincent and the Grenadines;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96;96;96;96;96;96;96;96;88;88;88;55;6;22;330;0 -191;'670;Saint Vincent and the Grenadines;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;7;7;3;3;3;25;7;8;13;0 -191;'670;Saint Vincent and the Grenadines;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3;3;3;3;3;3;3;1;0.89;0.89 -191;'670;Saint Vincent and the Grenadines;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.16;0.16 -191;'670;Saint Vincent and the Grenadines;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;33;33;33;33;84;84;84;84;84;84;84;84;84;84;3;3;3;3;0;30 -191;'670;Saint Vincent and the Grenadines;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;1;1;1;1;16;16;16;16;16;16;16;16;16;16;4;4;4;4;0;24 -191;'670;Saint Vincent and the Grenadines;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30;30;30;30;30;30;30;30;30;30;30;1;1;1;1 -191;'670;Saint Vincent and the Grenadines;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;0;0;0;0 -191;'670;Saint Vincent and the Grenadines;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -191;'670;Saint Vincent and the Grenadines;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;4800;4800;4800;5700;2400;2400;6000;6200;6200;4038;4412;144;5000;5387;5387;7360;5618;7015;7510;11900;18500;20800;20800;20800;20800;20800;20800;11591;11591;11591;8929;5978;2922;1940;3036;2496;1914;2066;8832;9623;6267;6554;9653;8801;4548;7055;12151 -191;'670;Saint Vincent and the Grenadines;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;300;300;300;500;200;200;462;722;722;622;649;70;927;1115;1115;1468;1359;1665;1977;1785;9197;11398;11398;11398;11398;11398;11398;2298;2298;2298;4001;3385;2185;1989;2155;2298;2025;1658;3658;4057;2171;2190;3818;2828;3486;4994;4591 -191;'670;Saint Vincent and the Grenadines;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;40;40;40;0;0;0;0;0;0;7;7;7;28;24;5;5;5;5;5;5;11;2;1;1;0;0;0;0;0 -191;'670;Saint Vincent and the Grenadines;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;0;0;0;0;0;0;1;1;1;6;8;5;5;5;5;5;5;8;0;3;3;0;0;1;0;0 -191;'670;Saint Vincent and the Grenadines;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -191;'670;Saint Vincent and the Grenadines;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;4800;4800;4800;5700;2400;2400;6000;6200;6200;4038;4412;144;5000;5387;5387;6234;4449;6095;6606;11300;15000;16500;16500;16500;16500;16500;16500;9448;9448;9448;8699;5044;2439;1335;2216;1635;1558;1855;7273;8507;5596;6135;9144;8188;4311;6764;11416 -191;'670;Saint Vincent and the Grenadines;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;300;300;300;500;200;200;462;722;722;622;649;70;927;1115;1115;1131;1020;1332;1533;1491;8110;10309;10309;10309;10309;10309;10309;1644;1644;1644;3400;2642;1474;1046;1356;1251;1361;1371;2600;3057;1583;1794;2993;2565;3132;4352;3973 -191;'670;Saint Vincent and the Grenadines;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;40;40;40;0;0;0;0;0;0;7;7;7;7;3;3;3;3;3;3;3;0;0;1;0;0;0;0;0;0 -191;'670;Saint Vincent and the Grenadines;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;0;0;0;0;0;0;1;1;1;1;3;3;3;3;3;3;3;0;0;1;1;0;0;1;0;0 -191;'670;Saint Vincent and the Grenadines;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -191;'670;Saint Vincent and the Grenadines;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1126;1169;920;904;600;3500;4300;4300;4300;4300;4300;4300;2143;2143;2143;230;934;483;605;820;861;356;211;1559;1116;671;419;509;613;237;291;735 -191;'670;Saint Vincent and the Grenadines;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;337;339;333;444;294;1087;1089;1089;1089;1089;1089;1089;654;654;654;601;743;711;943;799;1047;664;287;1058;1000;588;396;825;263;354;642;618 -191;'670;Saint Vincent and the Grenadines;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;2;2;2;2;2;2;11;2;0;1;0;0;0;0;0 -191;'670;Saint Vincent and the Grenadines;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;2;2;2;2;2;2;8;0;2;2;0;0;0;0;0 -191;'670;Saint Vincent and the Grenadines;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -191;'670;Saint Vincent and the Grenadines;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;27;3;3;3;3;0;0;0;0;0;0;62;62;62;8;51;46;5;15;36;4;20;94;41;10;45;16;29;9;8;18 -191;'670;Saint Vincent and the Grenadines;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;38;8;8;8;8;0;0;0;0;0;0;50;50;50;17;95;102;121;47;57;12;32;69;18;7;30;21;67;15;34;23 -191;'670;Saint Vincent and the Grenadines;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -191;'670;Saint Vincent and the Grenadines;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -191;'670;Saint Vincent and the Grenadines;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -191;'670;Saint Vincent and the Grenadines;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;2000;2500;2500;3921;1070;1880;3046;2337;2337;2238;3202;2330;3564;2870;4006;15520;15520;15520;15520;15520;15520;1680;1680;1680;1067;1962;3300;2508;2430;2221;1610;1700;3421;3675;3679;4781;3266;2536;3443;1783.21;3348 -191;'670;Saint Vincent and the Grenadines;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;236;425;425;1415;382;686;795;493;493;724;1169;884;1181;1030;1480;4956;4956;4956;4956;4956;4956;521;521;521;1850;1585;2475;2371;2427;2406;1873;1973;1839;1927;1713;2577;2316;1806;2757;1805.45;1591 -191;'670;Saint Vincent and the Grenadines;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;5;5;2;2;2;2;45;44;142;55;308;44;48;44.03;44.03 -191;'670;Saint Vincent and the Grenadines;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;30;30;2;2;2;2;34;33;117;55;52;33;37;33.02;33.02 -191;'670;Saint Vincent and the Grenadines;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -191;'670;Saint Vincent and the Grenadines;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;2000;2500;2500;3921;1070;1880;3046;2337;2337;2216;3022;2162;3416;2400;3400;15000;15000;15000;15000;15000;15000;1157;1157;1157;822;1858;3005;2447;2240;2133;1438;1611;3370;3630;3436;4610;3194;2480;3369;1530;3232 -191;'670;Saint Vincent and the Grenadines;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;236;425;425;1415;382;686;795;493;493;715;1105;832;1124;861;1272;4810;4810;4810;4810;4810;4810;410;410;410;1790;1493;2279;2319;2276;2298;1762;1928;1783;1894;1628;2406;2247;1754;2667;1657;1439 -191;'670;Saint Vincent and the Grenadines;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;2;2;2;2;1;0;98;11;264;0;4;0;0 -191;'670;Saint Vincent and the Grenadines;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30;2;2;2;2;1;0;84;22;19;0;4;0;0 -191;'670;Saint Vincent and the Grenadines;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;101;101;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -191;'670;Saint Vincent and the Grenadines;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;22;22;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -191;'670;Saint Vincent and the Grenadines;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101;400;400;400;400;400;400;400;400;91;91;91;0;4;30;6;0;3;16;0;2;2;1;1;5;0;13;25;24 -191;'670;Saint Vincent and the Grenadines;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;127;127;127;127;127;127;127;127;15;15;15;0;31;18;11;0;18;13;0;5;4;1;1;10;2;6;21;53 -191;'670;Saint Vincent and the Grenadines;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 -191;'670;Saint Vincent and the Grenadines;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 -191;'670;Saint Vincent and the Grenadines;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;9;0;13;14;4;0;5;5;1;5;5;5;0 -191;'670;Saint Vincent and the Grenadines;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;1;0;5;5;1;0;13;13;2;13;13;13;0 -191;'670;Saint Vincent and the Grenadines;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;67;47;70;206;120;120;120;120;120;120;432;432;432;243;98;263;53;181;85;143;75;45;43;237;165;66;51;56;223.21;92 -191;'670;Saint Vincent and the Grenadines;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;30;35;42;81;19;19;19;19;19;19;96;96;96;58;59;176;39;150;90;93;40;50;29;71;157;57;37;71;114.45;99 -191;'670;Saint Vincent and the Grenadines;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;44;44;44;44;44;44;44.03;44.03 -191;'670;Saint Vincent and the Grenadines;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33;33;33;33;33;33;33.02;33.02 -191;'670;Saint Vincent and the Grenadines;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;0;0;0;0;0;0;111;111;111;5;19;24;9;3;3;3;3;3;3;2;2;2;0;2;2;6 -191;'670;Saint Vincent and the Grenadines;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;0;0;0;0;0;0;51;51;51;4;12;21;7;2;2;2;2;2;2;4;4;2;1;4;4;3 -191;'670;Saint Vincent and the Grenadines;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -191;'670;Saint Vincent and the Grenadines;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -191;'670;Saint Vincent and the Grenadines;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;30;30;0;0;0;0;0;0;114;114;114;31;77;189;11;130;34;117;69;35;33;232;158;61;48;48;215;86 -191;'670;Saint Vincent and the Grenadines;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;37;37;0;0;0;0;0;0;19;19;19;28;47;123;17;82;22;60;35;41;20;50;130;54;34;51;94;96 -191;'670;Saint Vincent and the Grenadines;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;44;44;44;44;44;44;44;44 -191;'670;Saint Vincent and the Grenadines;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33;33;33;33;33;33;33;33 -191;'670;Saint Vincent and the Grenadines;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;36;28;40;120;120;120;120;120;120;120;207;207;207;207;2;50;33;48;48;23;3;7;7;3;5;3;3;6;6.21;0 -191;'670;Saint Vincent and the Grenadines;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22;3;5;19;19;19;19;19;19;19;26;26;26;26;0;32;15;66;66;31;3;7;7;17;23;1;2;16;16.45;0 -191;'670;Saint Vincent and the Grenadines;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0.03;0.03 -191;'670;Saint Vincent and the Grenadines;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0.02;0.02 -191;'670;Saint Vincent and the Grenadines;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;31;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -191;'670;Saint Vincent and the Grenadines;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;8;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -191;'670;Saint Vincent and the Grenadines;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126;126;126;126;0;0;0;0;0;0;99;99;99;99;99;2;296;296;296;296;296;296;296;296;296;1;5;6;6;6 -191;'670;Saint Vincent and the Grenadines;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;48;48;48;0;0;0;0;0;0;11;11;11;11;11;8;61;61;61;61;61;61;61;61;61;0;3;3;3;3 -191;'670;Saint Vincent and the Grenadines;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;265;265;265;265;348;348;168;262;81;156;156;116;69;358;358;87;204;169;88;88 -191;'670;Saint Vincent and the Grenadines;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;26;26;26;26;86;86;7;33;33;33;33;25;14;61;61;19;8;30;16;16 -191;'670;Saint Vincent and the Grenadines;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5 -191;'670;Saint Vincent and the Grenadines;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3 -191;'670;Saint Vincent and the Grenadines;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5 -191;'670;Saint Vincent and the Grenadines;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3 -191;'670;Saint Vincent and the Grenadines;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5 -191;'670;Saint Vincent and the Grenadines;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3 -191;'670;Saint Vincent and the Grenadines;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5 -191;'670;Saint Vincent and the Grenadines;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3 -191;'670;Saint Vincent and the Grenadines;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0.25;0.25 -191;'670;Saint Vincent and the Grenadines;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0.13;0.13 -191;'670;Saint Vincent and the Grenadines;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126;126;126;126;0;0;0;0;0;0;99;99;99;99;99;2;296;296;296;296;296;296;296;296;296;1;0;1;1;1 -191;'670;Saint Vincent and the Grenadines;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;48;48;48;0;0;0;0;0;0;11;11;11;11;11;8;61;61;61;61;61;61;61;61;61;0;0;0;0;0 -191;'670;Saint Vincent and the Grenadines;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;265;265;265;265;348;348;168;262;81;156;156;116;69;358;358;87;204;169;88;88 -191;'670;Saint Vincent and the Grenadines;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;26;26;26;26;86;86;7;33;33;33;33;25;14;61;61;19;8;30;16;16 -191;'670;Saint Vincent and the Grenadines;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;100;100;2400;3700;3700;58;79;161;105;196;196;8308;5409;3981;4578;4361;3423;4800;4800;4800;4800;4800;4800;2944;2944;2944;3865;4118;2175;2451;1755;1999;1915;1499;1488;2018;1413;1438;871;1310;856;783;1129 -191;'670;Saint Vincent and the Grenadines;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;60;60;1591;1837;1837;64;101;215;158;232;232;3542;2245;1649;3063;1712;1318;2155;2155;2155;2155;2155;2155;2277;2277;2277;2076;2353;2961;2192;1903;1989;1885;1563;1541;1627;1444;1517;1172;1365;973;1058.28;1487.02 -191;'670;Saint Vincent and the Grenadines;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;200;200;0;0;0;0;0;0;0;0;0;4;11;557;411;480;481;501;414;414;414;406;409;407;362;368;169;169 -191;'670;Saint Vincent and the Grenadines;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;189;189;0;0;0;0;0;0;0;0;0;16;16;161;465;632;632;568;558;558;558;550;556;551;547;556;344;344 -191;'670;Saint Vincent and the Grenadines;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;100;100;2400;3700;3700;58;79;161;105;196;196;72;144;87;61;61;19;0;0;0;0;0;0;157;157;157;266;464;346;346;293;229;263;230;179;221;300;317;106;178;110;103;136 -191;'670;Saint Vincent and the Grenadines;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;60;60;1591;1837;1837;64;101;215;158;232;232;88;170;83;69;69;17;0;0;0;0;0;0;126;126;126;243;395;566;477;491;395;284;307;353;309;371;378;192;252;171;173.26;293 -191;'670;Saint Vincent and the Grenadines;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91;276;276;276;205;201;201;201;201;201;201;201;201;1;1 -191;'670;Saint Vincent and the Grenadines;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;288;288;288;219;215;215;215;215;215;215;215;215;2;2 -191;'670;Saint Vincent and the Grenadines;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;36;36;36;36;15;0;0;0;0;0;0;1;1;1;113;330;264;264;204;146;178;173;123;84;204;214;55;66;44;44;54 -191;'670;Saint Vincent and the Grenadines;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;29;29;29;29;7;0;0;0;0;0;0;0;0;0;68;194;243;235;180;129;149;126;122;73;165;169;55;63;45;45.26;54 -191;'670;Saint Vincent and the Grenadines;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;76;76;76;5;1;1;1;1;1;1;1;1;1;1 -191;'670;Saint Vincent and the Grenadines;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;75;75;75;6;2;2;2;2;2;2;2;2;2;2 -191;'670;Saint Vincent and the Grenadines;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;100;100;2400;3700;3700;58;79;161;105;196;196;65;108;51;25;25;4;;;;;;;156;156;156;153;134;82;82;89;83;85;57;56;137;96;103;51;112;66;59;82 -191;'670;Saint Vincent and the Grenadines;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;60;60;1591;1837;1837;64;101;215;158;232;232;85;141;54;40;40;10;;;;;;;126;126;126;175;201;323;242;311;266;135;181;231;236;206;209;137;189;126;128;239 -191;'670;Saint Vincent and the Grenadines;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;200;200;200;200;200;200;200;200;200;200;200;200;0;0 -191;'670;Saint Vincent and the Grenadines;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;213;213;213;213;213;213;213;213;213;213;213;213;0;0 -191;'670;Saint Vincent and the Grenadines;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;38;38;17;40;75;71;64;57;9;23;25;10;37;37;45;46;30;0;29 -191;'670;Saint Vincent and the Grenadines;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;31;31;30;71;282;201;203;140;23;124;111;11;76;76;105;95;71;0;86 -191;'670;Saint Vincent and the Grenadines;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;75;75;106;50;6;4;10;18;54;33;4;100;58;41;2;4;8;56;46 -191;'670;Saint Vincent and the Grenadines;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;60;60;113;69;25;19;46;53;80;48;11;116;118;87;11;20;11;120;103 -191;'670;Saint Vincent and the Grenadines;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;200;200;200;200;200;200;200;200;200;200;200;200;0;0 -191;'670;Saint Vincent and the Grenadines;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;213;213;213;213;213;213;213;213;213;213;213;213;0;0 -191;'670;Saint Vincent and the Grenadines;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;43;43;30;44;1;7;15;8;22;1;27;27;1;25;4;62;28;3;7 -191;'670;Saint Vincent and the Grenadines;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;35;35;32;61;16;22;62;73;32;9;109;109;12;46;21;74;44;8;50 -191;'670;Saint Vincent and the Grenadines;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8236;5265;3894;4517;4300;3404;4800;4800;4800;4800;4800;4800;2787;2787;2787;3599;3654;1829;2105;1462;1770;1652;1269;1309;1797;1113;1121;765;1132;746;680;993 -191;'670;Saint Vincent and the Grenadines;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3454;2075;1566;2994;1643;1301;2155;2155;2155;2155;2155;2155;2151;2151;2151;1833;1958;2395;1715;1412;1594;1601;1256;1188;1318;1073;1139;980;1113;802;885.02;1194.02 -191;'670;Saint Vincent and the Grenadines;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;200;200;0;0;0;0;0;0;0;0;0;4;11;466;135;204;205;296;213;213;213;205;208;206;161;167;168;168 -191;'670;Saint Vincent and the Grenadines;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;189;189;0;0;0;0;0;0;0;0;0;16;16;61;177;344;344;349;343;343;343;335;341;336;332;341;342;342 -191;'670;Saint Vincent and the Grenadines;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;36;27;27;59;64;70;187;145;97;91;100;60;104;128;89;139;120 -191;'670;Saint Vincent and the Grenadines;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;78;59;59;117;141;231;324;243;155;126;177;102;153;171;89;214;214 -191;'670;Saint Vincent and the Grenadines;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1 -191;'670;Saint Vincent and the Grenadines;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1 -191;'670;Saint Vincent and the Grenadines;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1513;1513;1513;3526;3617;1781;2020;1366;1673;1460;1105;1203;1698;976;1056;658;996;649;538;862 -191;'670;Saint Vincent and the Grenadines;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;940;940;940;1690;1863;2253;1471;1126;1294;1208;976;1020;1160;826;1001;791;921;685;644.02;942.02 -191;'670;Saint Vincent and the Grenadines;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;4;11;466;135;204;205;296;213;213;213;205;208;206;161;167;167;167 -191;'670;Saint Vincent and the Grenadines;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;16;16;61;177;344;344;349;343;343;343;335;341;336;332;341;341;341 -191;'670;Saint Vincent and the Grenadines;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;400;400;3446;3598;1654;1994;1351;1626;1457;1076;1164;1659;945;1019;611;974;632;534;835 -191;'670;Saint Vincent and the Grenadines;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;248;248;248;1596;1826;2122;1399;1063;1226;1202;905;955;1095;741;927;696;834;604;627;838 -191;'670;Saint Vincent and the Grenadines;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;4;11;12;12;9;10;10;10;10;10;2;5;3;2;9;9;9 -191;'670;Saint Vincent and the Grenadines;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;16;16;16;16;12;12;12;12;12;12;4;10;5;3;12;12;12 -191;'670;Saint Vincent and the Grenadines;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1004;1004;1004;70;9;104;3;1;1;1;2;2;2;2;2;1;0;1;1;4 -191;'670;Saint Vincent and the Grenadines;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;623;623;623;63;6;74;8;3;3;3;4;4;4;4;4;2;4;17;0;8 -191;'670;Saint Vincent and the Grenadines;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92;92;92;8;8;16;16;13;45;2;27;37;37;29;35;46;22;16;3;23 -191;'670;Saint Vincent and the Grenadines;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;58;58;28;28;51;58;58;63;3;67;61;61;81;70;93;83;64;17;96 -191;'670;Saint Vincent and the Grenadines;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;454;37;37;37;128;45;45;45;45;45;45;1;0;0;0 -191;'670;Saint Vincent and the Grenadines;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;4;4;4;9;3;3;3;3;3;3;1;1;1;1 -191;'670;Saint Vincent and the Grenadines;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;2;2;7;7;1;1;0;0;0;0;0;0;0;0;0;0;0 -191;'670;Saint Vincent and the Grenadines;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;3;3;6;6;2;2;0;0;0;0;0;0;0;0;0;0.02;0.02 -191;'670;Saint Vincent and the Grenadines;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;158;158;158;158;158;158;158;158;158;158;158;158;158 -191;'670;Saint Vincent and the Grenadines;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;157;328;328;328;328;328;328;328;328;328;328;328;328;328 -191;'670;Saint Vincent and the Grenadines;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4800;4800;4800;4800;4800;4800;1266;1266;1266;37;10;21;26;32;27;5;19;9;8;37;5;3;8;8;3;11 -191;'670;Saint Vincent and the Grenadines;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2155;2155;2155;2155;2155;2155;1202;1202;1202;65;36;83;127;145;69;69;37;13;32;70;36;36;21;28;27;38 -191;'670;Saint Vincent and the Grenadines;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -191;'670;Saint Vincent and the Grenadines;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -191;'670;Saint Vincent and the Grenadines;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9193;11003;9023;6394;7417;9210;14119 -191;'670;Saint Vincent and the Grenadines;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;67;124;23;73;81;160 -191;'670;Saint Vincent and the Grenadines;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2398;2684;2807;2847;2970;4144;3877 -191;'670;Saint Vincent and the Grenadines;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;10;10;9;9;60;60 -191;'670;Saint Vincent and the Grenadines;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1946;2217;1871;2559;2695;3430;2988 -191;'670;Saint Vincent and the Grenadines;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;4;4;3;3;54;54 -191;'670;Saint Vincent and the Grenadines;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;452;467;936;288;275;714;889 -191;'670;Saint Vincent and the Grenadines;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;6;6;6;6;6;6 -191;'670;Saint Vincent and the Grenadines;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;43;39;4;3;6;5 -191;'670;Saint Vincent and the Grenadines;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -191;'670;Saint Vincent and the Grenadines;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;132;33;114;81;30;76;78 -191;'670;Saint Vincent and the Grenadines;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;2;0;1;1;0 -191;'670;Saint Vincent and the Grenadines;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2705;2628;2531;865;1286;1321;2538 -191;'670;Saint Vincent and the Grenadines;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;22;89;5;5;5;54 -191;'670;Saint Vincent and the Grenadines;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3 -191;'670;Saint Vincent and the Grenadines;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14 -191;'670;Saint Vincent and the Grenadines;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3886;5532;3490;2575;3082;3583;6883 -191;'670;Saint Vincent and the Grenadines;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;35;23;9;58;15;46 -191;'670;Saint Vincent and the Grenadines;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;375 -191;'670;Saint Vincent and the Grenadines;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;83;42;22;46;80;363 -191;'670;Saint Vincent and the Grenadines;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -191;'670;Saint Vincent and the Grenadines;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6255;6825;6405;5889;6073;7160;6423 -191;'670;Saint Vincent and the Grenadines;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;773;803;757;889;842;776;869 -191;'670;Saint Vincent and the Grenadines;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1;0;1;0;0 -191;'670;Saint Vincent and the Grenadines;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;157;157;157;157;157;157;157 -191;'670;Saint Vincent and the Grenadines;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;59;45;42;107;82;139 -191;'670;Saint Vincent and the Grenadines;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;1;1;1 -191;'670;Saint Vincent and the Grenadines;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3103;3020;3037;3051;3024;2999;2228 -191;'670;Saint Vincent and the Grenadines;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;0;1;0;1;3;0 -191;'670;Saint Vincent and the Grenadines;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;663;799;776;776;824;1301;985 -191;'670;Saint Vincent and the Grenadines;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;598;645;598;731;656;612;692 -191;'670;Saint Vincent and the Grenadines;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2448;2947;2546;2020;2117;2778;3071 -191;'670;Saint Vincent and the Grenadines;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;1;1;1;27;3;19 -244;'882;Samoa;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19477;21960;20415;20025;29935;22589.5;20538.5 -244;'882;Samoa;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;340;424;384;608;794;748.24;794.85 -244;'882;Samoa;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;268;300;323;421;330;229;297;303;523;735;395;577;443;307;368;413;367;454;626;626;1252;1961;4717;5495;3908;16665;1493;1132;1053;1476;1476;4601;1970;1785;1724;1459;668;1790;2544;4707;5346;4406;8519;9921;9240;7499;9479;7897;6012;8584;10397;12274;10460;10938;9700;11304;9948;12464;10468;11020;18979;10904.5;9886.5 -244;'882;Samoa;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;4;9;7;264;620;610;614;187;139;266;254;294;309;288;1270;540;1478;1478;1478;51;54;0;11;11;11;19;60;158;417;231;231;1121;995;995;995;972;149;125;112;96;99;86;85;101;101;187;254;195;309;300;342;285;572;588;558.24;535.85 -244;'882;Samoa;1861;Roundwood;5516;Production;m3;56000;56000;56000;56000;56000;56000;56000;57000;59000;72000;99000;116000;125000;125000;121000;86000;116000;123000;131000;131000;131000;131000;131000;131000;131000;131000;131000;131000;131000;131000;131000;131000;131000;131000;131000;131000;131000;131000;131000;87900;90700;91200;84700;83200;85700;75700;75700;75700;75700;75700;75700;75700;75700;75700;75700;75700;75700;75700;75700;75700;75700;75700;75700 -244;'882;Samoa;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1697;74;74;74;17;17;17;1714;7430;13626;1383;137;73;250;232;810;1081;365;937;524;405;780;440;1691;490;779;604;285;231 -244;'882;Samoa;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;192;34;34;34;2;2;2;51;491;838;157;26;18;58;78;124;525;279;258;448;105;297;186;595;186;321;287;202;220 -244;'882;Samoa;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103;87;107;107;107;6361;6361;6361;6361;6361;656;204;204;179;179;179;179;179;179;179;179;6;197;34;253;34;0;0;0;0 -244;'882;Samoa;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;60;72;72;72;454;454;454;454;454;92;68;68;40;40;40;40;40;40;40;40;0;39;1;25;11;0;0;0;0 -244;'882;Samoa;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -244;'882;Samoa;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;410;330;323;667;604;285;130 -244;'882;Samoa;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;171;174;158;271;287;202;99 -244;'882;Samoa;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;50;34;0;0;0;0 -244;'882;Samoa;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;20;11;0;0;0;0 -244;'882;Samoa;1863;Roundwood, non-coniferous;5516;Production;m3;56000;56000;56000;56000;56000;56000;56000;57000;59000;72000;99000;116000;125000;125000;121000;86000;116000;123000;131000;131000;131000;131000;131000;131000;131000;131000;131000;131000;131000;131000;131000;131000;131000;131000;131000;131000;131000;131000;131000;87900;90700;91200;84700;83200;85700;75700;75700;75700;75700;75700;75700;75700;75700;75700;75700;75700;75700;75700;75700;75700;75700;75700;75700 -244;'882;Samoa;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;1361;167;112;0;0;101 -244;'882;Samoa;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;421;28;50;0;0;121 -244;'882;Samoa;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;203;0;0;0;0;0 -244;'882;Samoa;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;5;0;0;0;0;0 -244;'882;Samoa;1864;Wood fuel;5516;Production;m3;55000;55000;55000;55000;55000;55000;55000;55000;55000;60000;60000;60000;60000;60000;60000;60000;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;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000 -244;'882;Samoa;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;80;0;0;37;;;;;;; -244;'882;Samoa;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;11;0;0;5;;;;;;; -244;'882;Samoa;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -244;'882;Samoa;1628;Wood fuel, non-coniferous;5516;Production;m3;55000;55000;55000;55000;55000;55000;55000;55000;55000;60000;60000;60000;60000;60000;60000;60000;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;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000 -244;'882;Samoa;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;80;0;0;37;;;;;;; -244;'882;Samoa;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;1;1;1;11;0;0;5;;;;;;; -244;'882;Samoa;1865;Industrial roundwood;5516;Production;m3;1000;1000;1000;1000;1000;1000;1000;2000;4000;12000;39000;56000;65000;65000;61000;26000;46000;53000;61000;61000;61000;61000;61000;61000;61000;61000;61000;61000;61000;61000;61000;61000;61000;61000;61000;61000;61000;61000;61000;17900;20700;21200;14700;13200;15700;5700;5700;5700;5700;5700;5700;5700;5700;5700;5700;5700;5700;5700;5700;5700;5700;5700;5700 -244;'882;Samoa;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1697;60;60;60;3;3;3;1700;7416;13612;1369;123;59;236;218;796;1067;351;857;524;405;743;440;1691;490;779;604;285;231 -244;'882;Samoa;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;192;33;33;33;1;1;1;50;490;837;156;25;17;57;77;123;524;278;247;448;105;292;186;595;186;321;287;202;220 -244;'882;Samoa;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103;87;107;107;107;6361;6361;6361;6361;6361;656;204;204;179;179;179;179;179;179;179;179;6;197;34;253;34;0;0;0;0 -244;'882;Samoa;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;60;72;72;72;454;454;454;454;454;92;68;68;40;40;40;40;40;40;40;40;0;39;1;25;11;0;0;0;0 -244;'882;Samoa;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1697;60;60;60;3;3;3;1700;7414;12463;220;65;42;161;144;725;450;220;0;0;145;603;410;330;323;667;604;285;130 -244;'882;Samoa;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;192;33;33;33;1;1;1;50;452;760;79;13;13;41;13;56;17;19;0;0;64;259;171;174;158;271;287;202;99 -244;'882;Samoa;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;16;39;39;39;6293;6293;6293;6293;6293;452;0;0;0;0;0;0;0;0;0;0;0;196;0;50;34;0;0;0;0 -244;'882;Samoa;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;6;12;12;12;394;394;394;394;394;24;0;0;0;0;0;0;0;0;0;0;0;39;0;20;11;0;0;0;0 -244;'882;Samoa;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1697;60;60;60;3;3;3;1700;7414;12463;220;65;42;161;144;725;450;220;0;0;145;603;410;330;323;667;604;285;130 -244;'882;Samoa;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;192;33;33;33;1;1;1;50;452;760;79;13;13;41;13;56;17;19;0;0;64;259;171;174;158;271;287;202;99 -244;'882;Samoa;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;16;39;39;39;6293;6293;6293;6293;6293;452;0;0;0;0;0;0;0;0;0;0;0;196;0;50;34;0;0;0;0 -244;'882;Samoa;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;6;12;12;12;394;394;394;394;394;24;0;0;0;0;0;0;0;0;0;0;0;39;0;20;11;0;0;0;0 -244;'882;Samoa;1867;Industrial roundwood, non-coniferous;5516;Production;m3;1000;1000;1000;1000;1000;1000;1000;2000;4000;12000;39000;56000;65000;65000;61000;26000;46000;53000;61000;61000;61000;61000;61000;61000;61000;61000;61000;61000;61000;61000;61000;61000;61000;61000;61000;61000;61000;61000;61000;17900;20700;21200;14700;13200;15700;5700;5700;5700;5700;5700;5700;5700;5700;5700;5700;5700;5700;5700;5700;5700;5700;5700;5700 -244;'882;Samoa;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;2;1149;1149;58;17;75;74;71;617;131;857;524;260;140;30;1361;167;112;0;0;101 -244;'882;Samoa;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;38;77;77;12;4;16;64;67;507;259;247;448;41;33;15;421;28;50;0;0;121 -244;'882;Samoa;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103;71;68;68;68;68;68;68;68;68;204;204;204;179;179;179;179;179;179;179;179;6;1;34;203;0;0;0;0;0 -244;'882;Samoa;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;54;60;60;60;60;60;60;60;60;68;68;68;40;40;40;40;40;40;40;40;0;0;1;5;0;0;0;0;0 -244;'882;Samoa;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;2;13;13;13;13;13;13;52;10;10;50;336;130;121;0;0;167;0;0;0;0 -244;'882;Samoa;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;38;2;2;2;2;2;2;38;7;7;36;220;19;32;0;0;28;0;0;0;0 -244;'882;Samoa;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103;71;68;68;68;68;68;68;68;68;68;68;68;43;43;43;43;43;43;43;43;6;1;34;203;0;0;0;0;0 -244;'882;Samoa;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;54;60;60;60;60;60;60;60;60;60;60;60;32;32;32;32;32;32;32;32;0;0;1;5;0;0;0;0;0 -244;'882;Samoa;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;1136;1136;45;4;62;61;19;607;121;807;188;130;19;30;1361;0;112;0;0;101 -244;'882;Samoa;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;75;75;10;2;14;62;29;500;252;211;228;22;1;15;421;0;50;0;0;121 -244;'882;Samoa;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;136;136;136;136;136;136;136;136;136;136;136;0;0;0;0;0;0;0;0;0 -244;'882;Samoa;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;8;8;8;8;8;8;8;0;0;0;0;0;0;0;0;0 -244;'882;Samoa;1868;Sawlogs and veneer logs;5516;Production;m3;1000;1000;1000;1000;1000;1000;1000;2000;3000;9000;36000;53000;62000;62000;58000;23000;43000;50000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;14900;17700;18200;11700;10200;12700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700 -244;'882;Samoa;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;1000;1000;1000;1000;1000;1000;1000;2000;3000;9000;36000;53000;62000;62000;58000;23000;43000;50000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;58000;14900;17700;18200;11700;10200;12700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700 -244;'882;Samoa;1871;Other industrial roundwood;5516;Production;m3;;;;;;;;;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;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000 -244;'882;Samoa;1871;Other industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -244;'882;Samoa;1871;Other industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -244;'882;Samoa;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;;;;;;;;;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;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000 -244;'882;Samoa;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -244;'882;Samoa;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -244;'882;Samoa;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;443;456;467;479;491;503;516;528;541;553;566;579;592;605;619 -244;'882;Samoa;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;26;30;2;5;24;1;5;3;7;2;7;1;0.97;0.97 -244;'882;Samoa;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;12;14;3;3;14;1;3;2;4;3;4;8;8.25;8.25 -244;'882;Samoa;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;4;4;4;4;59;59;59;59;66;66;66;22;604;658;501;661;605;30;3;215;215;215;2;2 -244;'882;Samoa;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;3;3;3;3;30;30;30;7;31;40;70;70;52;2;0;70;70;70;0;0 -244;'882;Samoa;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33;33;33;40;40;40;18;600;579;317;477;421;27;2;214;214;214;1;1 -244;'882;Samoa;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;29;29;29;6;30;26;44;44;26;2;0;70;70;70;0;0 -244;'882;Samoa;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;26;743;743;1;1;4;4;4;4;26;26;26;26;26;26;26;4;4;79;184;184;184;3;1;1;1;1;1;1 -244;'882;Samoa;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;30;30;0;0;0;0;0;0;1;1;1;1;1;1;1;1;1;14;26;26;26;0;0;0;0;0;0;0 -244;'882;Samoa;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0.23;0.23 -244;'882;Samoa;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0.57;0.57 -244;'882;Samoa;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0.23;0.23 -244;'882;Samoa;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0.57;0.57 -244;'882;Samoa;1872;Sawnwood;5516;Production;m3;100;800;800;2300;2300;2300;700;900;1600;3200;17000;30000;32000;26000;31000;14000;18000;20000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;5200;6200;6400;4100;3600;4500;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000 -244;'882;Samoa;1872;Sawnwood;5616;Import quantity;m3;3300;5000;5500;6500;5200;3700;4500;4000;6800;9000;3600;4000;1300;900;1400;1400;1500;2500;2000;2000;17700;16000;17000;17000;17000;55000;2074;855;810;2207;2207;12151;4980;4267;3954;1941;1462;2534;7347;14826;14326;14726;17517;19882;19582;22413;14326;12484;4350;9014;8930;16287;10809;10053;18094;22235;21326;24877;22447;24525;70623;21250;20511 -244;'882;Samoa;1872;Sawnwood;5622;Import value;1000 USD;205;249;267;341;287;188;257;243;445;639;262;375;160;113;174;366;253;340;226;226;1045;1424;1722;2500;3400;15910;638;304;195;632;632;3186;1138;997;928;568;235;705;1131;3635;3435;3535;4368;4822;4822;5155;6736;5532;2688;4757;5212;7910;6488;6443;4969;6386;6267;7411;7280;6966;15568;8274;6326 -244;'882;Samoa;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;100;100;100;5400;8000;9500;8000;2900;1700;3600;4300;3800;3000;2200;6200;2400;3000;3000;3000;151;154;0;32;32;32;75;39;234;677;208;208;1659;1470;1470;1470;5455;157;157;98;92;92;13;13;32;32;32;32;251;60;227;351;6;0;37;27;0 -244;'882;Samoa;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;4;9;7;264;620;610;614;187;139;266;254;294;309;288;1270;540;1478;1478;1478;51;54;0;11;11;11;19;18;98;345;159;159;667;541;541;541;510;36;36;23;24;24;12;12;20;20;20;20;12;2;25;22;18;0;6;22;0 -244;'882;Samoa;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 -244;'882;Samoa;1632;Sawnwood, coniferous;5616;Import quantity;m3;3300;5000;5500;6500;5200;3700;4500;4000;6800;9000;3600;4000;1300;900;1400;1400;1500;2500;2000;2000;17700;16000;17000;17000;17000;55000;2074;855;810;2207;2207;11608;4862;4190;3865;1922;1443;2289;5630;14800;14300;14700;17500;18500;18200;22200;14289;12275;4279;8505;8025;16107;9751;9475;17889;22110;21048;23559;22396;24482;67070;21129;20455 -244;'882;Samoa;1632;Sawnwood, coniferous;5622;Import value;1000 USD;205;249;267;341;287;188;257;243;445;639;262;375;160;113;174;366;253;340;226;226;1045;1424;1722;2500;3400;15910;638;304;195;632;632;3049;1072;974;881;546;213;628;1064;3600;3400;3500;4200;4400;4400;5016;6690;5304;2600;4162;4234;7653;5350;5798;4810;6182;6068;6964;7259;6954;15120;7589;6260 -244;'882;Samoa;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1451;1451;1451;1451;1451;84;84;84;84;84;5;5;5;5;5;5;5;60;222;350;0;0;37;25;0 -244;'882;Samoa;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;508;508;508;508;508;14;14;14;14;14;2;2;2;2;2;2;1;2;24;22;0;0;6;21;0 -244;'882;Samoa;1633;Sawnwood, non-coniferous;5516;Production;m3;100;800;800;2300;2300;2300;700;900;1600;3200;17000;30000;32000;26000;31000;14000;18000;20000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;5200;6200;6400;4100;3600;4500;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000 -244;'882;Samoa;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;543;118;77;89;19;19;245;1717;26;26;26;17;1382;1382;213;37;209;71;509;905;180;1058;578;205;125;278;1318;51;43;3553;121;56 -244;'882;Samoa;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;137;66;23;47;22;22;77;67;35;35;35;168;422;422;139;46;228;88;595;978;257;1138;645;159;204;199;447;21;12;448;685;66 -244;'882;Samoa;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;100;100;100;5400;8000;9500;8000;2900;1700;3600;4300;3800;3000;2200;6200;2400;3000;3000;3000;151;154;0;32;32;32;75;39;234;677;208;208;208;19;19;19;4004;73;73;14;8;8;8;8;27;27;27;27;246;0;5;1;6;0;0;2;0 -244;'882;Samoa;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;4;9;7;264;620;610;614;187;139;266;254;294;309;288;1270;540;1478;1478;1478;51;54;0;11;11;11;19;18;98;345;159;159;159;33;33;33;2;22;22;9;10;10;10;10;18;18;18;18;11;0;1;0;18;0;0;1;0 -244;'882;Samoa;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;100;100;100;100;100;100;100;100 -244;'882;Samoa;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;333;84;32;25;139;139;313;28;194;200;200;10;53;53;184;137;117;51;136;54;99;24;172;76;74;1;22;163;16;0;17;26 -244;'882;Samoa;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;132;46;24;12;91;91;138;19;99;92;92;40;42;42;64;154;180;140;365;153;129;65;303;208;182;3;52;200;22;0;18;18 -244;'882;Samoa;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5;0;2;3;1;0;0;0;0;0 -244;'882;Samoa;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;0;5;23;2;0;0;0;0;0 -244;'882;Samoa;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -244;'882;Samoa;1873;Wood-based panels;5616;Import quantity;m3;394;319;350;500;400;300;300;300;400;500;700;1000;1000;1000;1000;100;300;300;1000;1000;500;500;300;300;300;200;364;143;274;356;356;2663;1122;860;691;623;249;1149;25181;1813;2840;984;315;5128;5128;2239;1232;1430;897;2215;1868;1394;2961;2264;4372;3811;4023;5193;2316;4889;3392;2790;2339 -244;'882;Samoa;1873;Wood-based panels;5622;Import value;1000 USD;63;51;56;80;43;41;40;34;52;69;99;149;194;194;194;47;114;114;400;400;207;192;164;164;164;143;165;93;106;168;168;959;521;410;387;502;44;455;789;526;914;451;1746;1486;1486;1272;1392;1072;579;1647;1544;2111;2164;2059;2638;2131;1976;2572;1268;1896;1671;1504;2010 -244;'882;Samoa;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;5;5;5;5;0;12;0;110;30;0;567;0;0 -244;'882;Samoa;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;8;8;8;8;0;12;0;40;23;0;86;0;0 -244;'882;Samoa;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -244;'882;Samoa;1640;Plywood and LVL;5616;Import quantity;m3;394;319;350;500;400;300;300;300;400;500;700;1000;1000;1000;1000;100;300;300;1000;1000;500;500;300;300;300;200;364;143;274;356;356;870;638;423;556;500;57;495;729;1096;2200;344;194;1709;1709;1290;178;816;144;771;1076;999;933;1124;1893;2065;1943;1951;1905;1905;1403;1072;892 -244;'882;Samoa;1640;Plywood and LVL;5622;Import value;1000 USD;63;51;56;80;43;41;40;34;52;69;99;149;194;194;194;47;114;114;400;400;207;192;164;164;164;143;165;93;106;168;168;377;318;215;315;457;13;243;321;296;606;143;1033;607;607;895;921;815;201;805;1099;1643;1027;1331;1114;1170;877;872;1141;803;898;716;553 -244;'882;Samoa;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;5;5;5;5;0;12;0;110;30;0;567;0;0 -244;'882;Samoa;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;8;8;8;8;0;12;0;40;23;0;86;0;0 -244;'882;Samoa;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34 -244;'882;Samoa;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31 -244;'882;Samoa;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;235;34;2;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -244;'882;Samoa;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;7;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -244;'882;Samoa;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;13;117;31;16;7;7;7;2;653;653;0;27;32;125;61;55;13;79;147;86;79;670;670;33;4;17;77;155 -244;'882;Samoa;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;6;24;8;2;1;1;1;12;107;107;0;39;18;96;43;37;31;53;104;59;45;337;337;9;2;6;109;1046 -244;'882;Samoa;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -244;'882;Samoa;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -244;'882;Samoa;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;16;16;16;0;2;22;7;2;2;2;2;2;2;2;0 -244;'882;Samoa;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;0;3;13;4;1;1;1;15;1;1;1;0 -244;'882;Samoa;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1558;450;435;57;110;75;623;24436;710;633;633;119;2766;2766;933;1011;566;612;1367;721;382;1947;971;2386;1665;1408;2570;376;2978;1970;1639;1292 -244;'882;Samoa;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;510;196;194;31;39;7;204;466;229;307;307;701;772;772;370;425;232;275;792;401;437;1081;611;1461;915;761;1362;103;1090;766;678;411 -244;'882;Samoa;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;587;11968;577;500;500;60;1241;1241;876;807;364;419;202;139;181;569;70;103;95;54;319;44;2696;1348;1530;606 -244;'882;Samoa;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;182;283;207;285;285;529;576;576;360;309;132;156;153;77;156;284;69;91;74;38;108;12;975;435;606;248 -244;'882;Samoa;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;15;3;22;11054;40;40;40;3;52;52;52;190;188;179;1017;559;178;1336;784;2280;1508;1293;1501;205;257;600;84;661 -244;'882;Samoa;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;14;2;19;133;7;7;7;22;9;9;9;105;89;108;554;307;264;766;448;1367;789;678;836;66;111;316;68;159 -244;'882;Samoa;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92;52;60;44;95;72;14;1414;93;93;93;56;1473;1473;5;14;14;14;148;23;23;42;117;3;62;61;750;127;25;22;25;25 -244;'882;Samoa;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;37;30;24;25;5;3;50;15;15;15;150;187;187;1;11;11;11;85;17;17;31;94;3;52;45;418;25;4;15;4;4 -244;'882;Samoa;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1466;398;375;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -244;'882;Samoa;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;473;159;164;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -244;'882;Samoa;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;57;16;77;28;28;39;25;28;28;28;303;299;299;299;299;299;299;299;299;299;327;326;268;268;529;529;515;306;305;40;40 -244;'882;Samoa;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;6;2;19;6;6;6;3;12;12;12;71;68;68;68;68;68;68;68;68;68;91;90;137;137;185;185;165;86;83;33;33 -244;'882;Samoa;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;144;144;144;144 -244;'882;Samoa;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;10;11;11;11 -244;'882;Samoa;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;286;286;286;286;286;286;286;286;286;286;299;298;240;240;240;240;226;17;16;16;16 -244;'882;Samoa;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;67;67;67;67;67;67;67;67;67;67;86;85;132;132;132;132;112;33;30;30;30 -244;'882;Samoa;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 -244;'882;Samoa;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 -244;'882;Samoa;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;285;285;285;285;285;285;285;285;285;285;285;284;226;226;226;226;226;16;16;16;16 -244;'882;Samoa;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;66;66;66;66;66;66;66;66;66;66;66;65;112;112;112;112;112;32;29;29;29 -244;'882;Samoa;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 -244;'882;Samoa;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 -244;'882;Samoa;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;285;285;285;285;285;285;285;285;285;285;285;284;226;226;226;226;226;16;16;16;16 -244;'882;Samoa;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;66;66;66;66;66;66;66;66;66;66;66;65;112;112;112;112;112;32;29;29;29 -244;'882;Samoa;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 -244;'882;Samoa;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 -244;'882;Samoa;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;284;284;284;284;284;284;284;284;284;284;284;284;226;226;226;226;226;16;16;16;16 -244;'882;Samoa;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;65;65;65;65;65;65;65;65;65;65;65;65;112;112;112;112;112;32;29;29;29 -244;'882;Samoa;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 -244;'882;Samoa;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 -244;'882;Samoa;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;0;0;0;;;;;;; -244;'882;Samoa;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;0;0;0;;;;;;; -244;'882;Samoa;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;0;0;0;;;;;;; -244;'882;Samoa;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;0;0;0;;;;;;; -244;'882;Samoa;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -244;'882;Samoa;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -244;'882;Samoa;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;14;14;14;14;14;14;0;1;0;0;0 -244;'882;Samoa;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;20;20;20;20;20;20;0;1;1;1;1 -244;'882;Samoa;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1 -244;'882;Samoa;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3 -244;'882;Samoa;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;57;16;77;28;28;39;25;20;20;20;17;13;13;13;13;13;13;13;13;13;28;28;28;28;289;289;289;289;289;24;24 -244;'882;Samoa;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;6;2;19;6;6;6;3;3;3;3;4;1;1;1;1;1;1;1;1;1;5;5;5;5;53;53;53;53;53;3;3 -244;'882;Samoa;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;144;144;144;144 -244;'882;Samoa;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;10;11;11;11 -244;'882;Samoa;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;200;200;200;200;200;200;;;;;;;;;200;1200;1200;200;900;926;957;938;917;917;226;205;286;145;200;200;351;438;370;603;270;1460;3197;3197;725;800;943;3838;1617;2891;2085;1537;1301;1062;2370;1262;1427;764;1294;681;321.37;742.37 -244;'882;Samoa;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;26;26;27;34;53;89;;;;;;;;;345;2831;2831;344;612;690;735;752;676;676;317;258;351;185;228;228;452;600;433;891;265;1803;2662;2662;911;1108;957;2428;1581;2874;1743;1351;1511;1572;2116;1327;1645;1293;1652;1288;861.68;1267.68 -244;'882;Samoa;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;16;24;24;24;61;61;60;60;60;60;60;175;175;240;239;240;193;691;573;599.78;598.28 -244;'882;Samoa;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;8;21;21;21;32;32;31;30;30;30;116;183;183;251;251;253;233;562;485;525.24;524.85 -244;'882;Samoa;2042;Graphic papers;5610;Import quantity;t;;;;;;;;200;200;200;200;200;200;;;;;;;;;100;1100;1100;100;100;126;157;138;117;117;117;116;236;95;100;100;229;196;161;164;65;607;1334;1334;272;258;229;320;422;595;475;697;655;583;1117;700;803;497;1058;462;155;366 -244;'882;Samoa;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;26;26;27;34;53;89;;;;;;;;;273;2735;2735;248;135;213;258;275;199;199;199;120;246;87;91;91;259;238;185;563;107;1011;972;972;368;475;278;500;428;764;587;698;735;825;1121;725;882;648;1085;737;323;575 -244;'882;Samoa;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;4;4;4;41;41;41;41;41;41;41;41;41;41;41;41;3;66;2;28.51;27.01 -244;'882;Samoa;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;3;3;3;14;14;14;14;14;14;14;14;14;14;14;14;3;48;0;39.23;39.13 -244;'882;Samoa;1671;Newsprint;5610;Import quantity;t;;;;;;;;200;200;200;200;200;200;;;;;;;;;;;;;;0;;;;;;55;140;83;100;100;81;37;45;45;45;128;295;295;42;20;20;129;116;138;169;200;214;307;292;258;215;143;8;130;47;63 -244;'882;Samoa;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;26;26;27;34;53;89;;;;;;;;;;;;;;0;;;;;;30;68;56;91;91;42;25;24;24;24;133;151;151;21;12;12;153;107;161;181;225;216;320;269;201;197;158;12;146;35;73 -244;'882;Samoa;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;27;0;27;27 -244;'882;Samoa;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;35;0;39;39 -244;'882;Samoa;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;100;1100;1100;100;100;126;157;138;117;117;117;61;96;12;0;0;148;159;116;119;20;479;1039;1039;230;238;209;191;306;457;306;497;441;276;825;442;588;354;1050;332;108;303 -244;'882;Samoa;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;273;2735;2735;248;135;213;258;275;199;199;199;90;178;31;0;0;217;213;161;539;83;878;821;821;347;463;266;347;321;603;406;473;519;505;852;524;685;490;1073;591;288;502 -244;'882;Samoa;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;39;39;39;39;39;39;39;39;39;39;39;39;1;39;2;1.51;0.01 -244;'882;Samoa;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;13;13;13;13;13;13;13;13;13;13;13;13;2;13;0;0.24;0.13 -244;'882;Samoa;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;10;10;10;61;147;147;7;25;69;19;10;14;12;53;18;83;98;123;123;142;29;54;15;19 -244;'882;Samoa;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;14;14;14;88;116;116;14;41;57;39;30;34;64;91;39;224;148;107;107;167;118;109;74;118 -244;'882;Samoa;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;38;38;38;38;38;38;38;38;38;38;38;38;0;38;2;1.5;0 -244;'882;Samoa;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;12;12;12;12;12;12;12;12;12;12;12;12;1;12;0;0.1;0 -244;'882;Samoa;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;83;97;100;5;297;451;451;181;177;120;151;64;299;54;272;220;175;513;234;366;113;1010;151;73;238 -244;'882;Samoa;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121;119;127;505;33;624;356;356;264;347;174;254;122;368;118;160;247;233;518;315;387;160;942;286;132;245 -244;'882;Samoa;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;74;9;9;5;121;441;441;42;36;20;21;232;144;240;172;203;18;214;85;99;99;11;127;20;46 -244;'882;Samoa;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;85;20;20;36;166;349;349;69;75;35;54;169;201;224;222;233;48;186;102;191;163;13;196;82;139 -244;'882;Samoa;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;1;1;0;0.01;0.01 -244;'882;Samoa;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;1;1;1;0;0.13;0.13 -244;'882;Samoa;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;100;100;100;100;800;800;800;800;800;800;109;89;50;50;100;100;122;242;209;439;205;853;1863;1863;453;542;714;3518;1195;2296;1610;840;646;479;1253;562;624;267;236;219;166.37;376.37 -244;'882;Samoa;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;72;96;96;96;477;477;477;477;477;477;118;138;105;98;137;137;193;362;248;328;158;792;1690;1690;543;633;679;1928;1153;2110;1156;653;776;747;995;602;763;645;567;551;538.68;692.68 -244;'882;Samoa;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;14;20;20;20;20;20;19;19;19;19;19;134;134;199;198;199;190;625;571;571.27;571.27 -244;'882;Samoa;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;7;18;18;18;18;18;17;16;16;16;102;169;169;237;237;239;230;514;485;486;485.71 -244;'882;Samoa;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101;100;300;164;123;123;123;86;46;4;24;47;66;74;116;112;117;109;13;91;61;144;37;105;152 -244;'882;Samoa;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;114;106;200;79;196;135;135;115;35;5;49;58;106;116;177;111;298;150;23;112;100;252;58;139;266 -244;'882;Samoa;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;0;2;10;10.28;10.28 -244;'882;Samoa;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;1;1;0;0;0.71 -244;'882;Samoa;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108;39;39;26;419;301;301;57;114;310;3088;674;1758;1488;664;288;351;835;335;207;183;76;171;37.37;212.37 -244;'882;Samoa;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;134;68;68;44;297;187;187;128;229;288;1486;637;1547;994;418;425;437;546;372;336;360;237;442;88.68;339.68 -244;'882;Samoa;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;9;9;9;9;9;9;9;9;9;9;124;124;128;127;128;128;561;561;561;561 -244;'882;Samoa;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;6;6;6;6;6;6;5;5;5;91;158;158;162;162;164;164;448;484;484;484 -244;'882;Samoa;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -244;'882;Samoa;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -244;'882;Samoa;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;203;4;4;6;20;20;2200;196;214;298;279;48;52;167;87;113;87;1;112;0;4 -244;'882;Samoa;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;5;3;3;6;29;29;887;161;131;128;148;100;117;199;181;193;185;2;232;6;8 -244;'882;Samoa;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;3;4;4;145;145;145;145 -244;'882;Samoa;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;6;6;74;83;83;83 -244;'882;Samoa;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;16;16;3;22;61;61;27;27;49;720;442;1370;1136;349;145;247;559;198;10;4;17;1;2;164 -244;'882;Samoa;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;32;32;8;44;37;37;56;56;48;411;288;888;703;181;152;254;213;108;28;23;51;12;17;228 -244;'882;Samoa;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;116;116;116;116;116;116;116;116;116;116 -244;'882;Samoa;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;0;0;0;0;67;67;67;67;67;67;67;67;67;67 -244;'882;Samoa;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;17;17;17;117;86;86;20;63;131;129;30;135;26;24;83;40;106;47;81;89;58;58;35;44 -244;'882;Samoa;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;34;34;34;120;54;54;59;137;123;148;183;406;61;73;157;50;122;71;103;147;180;196;64;102 -244;'882;Samoa;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;299;299;299;299 -244;'882;Samoa;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;220;247;247;247 -244;'882;Samoa;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;2;2;2;77;150;150;4;4;110;39;6;39;28;12;12;12;3;3;3;3;0;0;0.37;0.37 -244;'882;Samoa;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;1;1;1;128;93;93;7;7;88;40;5;122;102;16;16;16;12;12;12;5;4;2;1.68;1.68 -244;'882;Samoa;1622;Other papers mainly for packaging;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 -244;'882;Samoa;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;87;87;87;87;87;87;87;87;87;87;87 -244;'882;Samoa;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;100;100;100;100;800;800;800;800;800;800;109;89;50;50;100;100;122;33;70;100;15;311;1439;1439;310;382;400;406;474;472;48;60;246;11;309;214;326;23;16;11;24;12 -244;'882;Samoa;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;72;96;96;96;477;477;477;477;477;477;118;138;105;98;137;137;193;114;74;60;35;299;1368;1368;300;369;386;393;458;457;46;58;240;12;299;207;315;185;78;51;311;87 -244;'882;Samoa;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;2;2;2;2;2;1;1;1;1;1;1;1;62;62;62;62;62;0;0;0 -244;'882;Samoa;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;2;2;2;2;2;1;1;1;1;1;1;1;65;65;65;65;65;1;2;1 -244;'882;Samoa;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4714;4168;4712;1579;4779;4724;2695 -244;'882;Samoa;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;70;81;26;114;117;192 -244;'882;Samoa;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1410;1778;1652;406;2134;1178;50 -244;'882;Samoa;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;2;1 -244;'882;Samoa;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1398;1762;1642;108;2121;1176;49 -244;'882;Samoa;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1 -244;'882;Samoa;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;16;10;298;13;2;1 -244;'882;Samoa;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;1;0 -244;'882;Samoa;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;39;19;45;47;34;33 -244;'882;Samoa;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -244;'882;Samoa;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;76;33;3;39;44;25 -244;'882;Samoa;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;26;3;3;6;5;6 -244;'882;Samoa;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;566;412;1137;496;888;768;891 -244;'882;Samoa;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;6;6;6;1;5;0 -244;'882;Samoa;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1565;1554;1401;531;1205;1210;1456 -244;'882;Samoa;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;35;71;9;101;86;181 -244;'882;Samoa;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1086;309;470;98;466;1490;240 -244;'882;Samoa;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;2;0;7;5;19;4 -244;'882;Samoa;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4815;5328;5235;7426;6177;6961;7957 -244;'882;Samoa;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;12;18;10;92;73;67 -244;'882;Samoa;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;92;61;14;23;23;0 -244;'882;Samoa;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -244;'882;Samoa;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;61;105;291;170;125;241 -244;'882;Samoa;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;3;3;3 -244;'882;Samoa;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1799;2064;2138;2194;2623;3050;2615 -244;'882;Samoa;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;10;4;4;87;62;62 -244;'882;Samoa;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1660;1778;1963;1392;1906;2277;2358 -244;'882;Samoa;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;5;1;0;0 -244;'882;Samoa;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1200;1333;968;3535;1455;1486;2743 -244;'882;Samoa;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;13;1;1;8;2 -192;'674;San Marino;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5400;9134;34563;24464;33620;23354;35863 -192;'674;San Marino;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3355;6399;5442;6866;10007;14928;10195 -192;'674;San Marino;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1096;1609;1375;2373;30833;21999;29805;19665;32105 -192;'674;San Marino;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;0;0;0;501;166;2684;2079;3719 -192;'674;San Marino;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;118;0;0;0;0;0 -192;'674;San Marino;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;57;0;0;0;0;0 -192;'674;San Marino;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -192;'674;San Marino;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -192;'674;San Marino;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;118;0;0;0;0;0 -192;'674;San Marino;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;57;0;0;0;0;0 -192;'674;San Marino;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -192;'674;San Marino;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -192;'674;San Marino;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -192;'674;San Marino;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -192;'674;San Marino;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -192;'674;San Marino;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -192;'674;San Marino;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;118;0;0;0;0;0 -192;'674;San Marino;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;57;0;0;0;0;0 -192;'674;San Marino;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -192;'674;San Marino;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -192;'674;San Marino;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;118;0;0;0;0;0 -192;'674;San Marino;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;57;0;0;0;0;0 -192;'674;San Marino;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -192;'674;San Marino;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -192;'674;San Marino;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;118;0;0;0;0;0 -192;'674;San Marino;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;57;0;0;0;0;0 -192;'674;San Marino;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -192;'674;San Marino;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -192;'674;San Marino;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -192;'674;San Marino;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -192;'674;San Marino;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -192;'674;San Marino;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -192;'674;San Marino;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -192;'674;San Marino;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -192;'674;San Marino;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -192;'674;San Marino;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -192;'674;San Marino;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -192;'674;San Marino;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -192;'674;San Marino;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -192;'674;San Marino;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -192;'674;San Marino;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;64;46;21;0 -192;'674;San Marino;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;103;80;32;1 -192;'674;San Marino;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -192;'674;San Marino;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -192;'674;San Marino;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -192;'674;San Marino;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -192;'674;San Marino;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9145;3942;4674;1348;5692 -192;'674;San Marino;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2428;986;1118;646;1947 -192;'674;San Marino;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9145;3942;4674;1348;5692 -192;'674;San Marino;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2428;986;1118;646;1947 -192;'674;San Marino;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -192;'674;San Marino;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -192;'674;San Marino;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -192;'674;San Marino;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3090;4217;3397;3963;3593;3893;3893;3642;3642 -192;'674;San Marino;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;732;988;868;1329;1290;972;972;1494;1494 -192;'674;San Marino;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;0;0;0;0;0;0;66;66 -192;'674;San Marino;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;0;0;0;0;0;0;19;19 -192;'674;San Marino;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -192;'674;San Marino;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2861;3840;3076;3525;3159;3549;3549;3409;3409 -192;'674;San Marino;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;568;716;630;842;689;659;659;1231;1231 -192;'674;San Marino;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;66;66 -192;'674;San Marino;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;19;19 -192;'674;San Marino;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -192;'674;San Marino;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;229;377;321;438;434;344;344;233;233 -192;'674;San Marino;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;164;272;238;487;601;313;313;263;263 -192;'674;San Marino;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;0;0;0;0;0;0;0;0 -192;'674;San Marino;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;0;0;0;0;0;0;0;0 -192;'674;San Marino;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -192;'674;San Marino;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -192;'674;San Marino;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -192;'674;San Marino;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -192;'674;San Marino;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -192;'674;San Marino;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -192;'674;San Marino;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;179;454;300;593;8088;7140;7786;1266;3847 -192;'674;San Marino;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;364;621;507;987;4108;3953;4849;1387;2802 -192;'674;San Marino;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;3;3;3;3 -192;'674;San Marino;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;17;17;17;18 -192;'674;San Marino;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -192;'674;San Marino;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;179;454;300;593;438;457;457;457;457 -192;'674;San Marino;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;364;621;507;987;622;939;939;939;939 -192;'674;San Marino;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;3;3;3;3 -192;'674;San Marino;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;17;17;17;17 -192;'674;San Marino;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;308;920;606;125;144 -192;'674;San Marino;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;122;349;255;64;39 -192;'674;San Marino;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -192;'674;San Marino;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -192;'674;San Marino;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7342;5763;6723;684;3246 -192;'674;San Marino;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3364;2665;3655;384;1824 -192;'674;San Marino;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0 -192;'674;San Marino;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1 -192;'674;San Marino;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1 -192;'674;San Marino;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1 -192;'674;San Marino;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0 -192;'674;San Marino;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1 -192;'674;San Marino;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7342;5763;6723;683;3245 -192;'674;San Marino;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3364;2665;3655;383;1823 -192;'674;San Marino;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -192;'674;San Marino;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -192;'674;San Marino;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11619;6634;8553;7424;9735 -192;'674;San Marino;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22921;15985;22786;16106;25861 -192;'674;San Marino;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;7;88;98;169 -192;'674;San Marino;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;501;149;2667;2043;3682 -192;'674;San Marino;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2792;1046;1787;1059;1704 -192;'674;San Marino;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2860;1118;1755;1817;3035 -192;'674;San Marino;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2792;1046;1787;1059;1704 -192;'674;San Marino;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2860;1118;1755;1817;3035 -192;'674;San Marino;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1227;400;884;34;231 -192;'674;San Marino;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1198;414;801;55;337 -192;'674;San Marino;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1472;584;864;558;680 -192;'674;San Marino;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1508;569;879;841;951 -192;'674;San Marino;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;62;39;467;793 -192;'674;San Marino;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;154;135;75;921;1747 -192;'674;San Marino;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8827;5588;6766;6365;8031 -192;'674;San Marino;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20061;14867;21031;14289;22826 -192;'674;San Marino;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;7;88;98;169 -192;'674;San Marino;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;501;149;2667;2043;3682 -192;'674;San Marino;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0 -192;'674;San Marino;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;2;2;0 -192;'674;San Marino;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -192;'674;San Marino;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -192;'674;San Marino;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8391;5188;6228;6158;7547 -192;'674;San Marino;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9581;5443;7647;9379;9893 -192;'674;San Marino;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;74 -192;'674;San Marino;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;93 -192;'674;San Marino;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;545;0;119;370;1037 -192;'674;San Marino;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;310;0;101;315;569 -192;'674;San Marino;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;12;31;18;43 -192;'674;San Marino;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;112;222;119;395 -192;'674;San Marino;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0 -192;'674;San Marino;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0 -192;'674;San Marino;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7839;5176;6078;5770;6467 -192;'674;San Marino;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9202;5331;7324;8945;8929 -192;'674;San Marino;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;74 -192;'674;San Marino;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;93 -192;'674;San Marino;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;436;400;538;207;484 -192;'674;San Marino;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10480;9421;13382;4908;12933 -192;'674;San Marino;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;7;88;55;95 -192;'674;San Marino;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;501;149;2667;1991;3589 -192;'674;San Marino;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2083;4897;2142;1181;1593;1240;1420 -192;'674;San Marino;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2587;5886;4408;5989;6149;10355;3768 -192;'674;San Marino;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;265;592;921;385;241;193;304 -192;'674;San Marino;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;33;18;26;320;92;51 -192;'674;San Marino;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;23;94;13;91;75;68 -192;'674;San Marino;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;202;569;827;372;150;118;236 -192;'674;San Marino;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;33;18;26;320;92;51 -192;'674;San Marino;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;109;90;36;88;72;72 -192;'674;San Marino;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;2;0;0;1;1 -192;'674;San Marino;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;8;7;10;40;78;22 -192;'674;San Marino;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;4;3;3;27;6;22 -192;'674;San Marino;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1621;3984;981;618;988;829;550 -192;'674;San Marino;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;1;25;191;7;78;103 -192;'674;San Marino;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11 -192;'674;San Marino;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11 -192;'674;San Marino;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19 -192;'674;San Marino;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22 -192;'674;San Marino;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91;175;124;110;110;56;435 -192;'674;San Marino;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2431;5844;4357;5766;5766;10171;3588 -192;'674;San Marino;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;29;19;22;126;12;37 -192;'674;San Marino;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;3;3;3;29;7;3 -192;'674;San Marino;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1942;1864;1588;1284;2222;2449;2338 -192;'674;San Marino;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;768;513;533;711;1174;2494;2708 -192;'674;San Marino;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -192;'674;San Marino;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;24;7;31;40;618;190 -192;'674;San Marino;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;13;9;10;11;11 -192;'674;San Marino;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;604;632;626;242;409;573;637 -192;'674;San Marino;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;25;1;5;18;10;7 -192;'674;San Marino;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;753;457;197;354;590;377;505 -192;'674;San Marino;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;257;15;15;180;580;1982;2180 -192;'674;San Marino;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;545;751;758;657;1183;881;1006 -192;'674;San Marino;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;487;464;504;517;566;491;510 -193;'678;Sao Tome and Principe;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3153;3670;2496;2035;2803;2819.55;2113 -193;'678;Sao Tome and Principe;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;423;393;423;393;426;355;232 -193;'678;Sao Tome and Principe;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;234;157;100;144;282;208;199;484;484;484;283;420;563;563;290;652;4208;2124;443;516;688;608;716;469;1343;1263;709;540;361;621;595.55;446 -193;'678;Sao Tome and Principe;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;20;20;77;280;206;206;206;516;459;478;478;514;611;707;706;727;765;908;680;652;241;264;384;384;385;384;423;350;228 -193;'678;Sao Tome and Principe;1861;Roundwood;5516;Production;m3;46011;46625;47247;47878;54517;56164;57821;58486;59159;61842;63909;61569;59420;60726;61369;61815;62453;64043;64012;67192;71990;65912;72496;76399;76288;78388;82154;85028;85784;88464;90477;92485;93615;95436;97429;98554;100701;106115;107607;109137;110365;111618;112894;114196;115522;116515;117522;118542;119577;134626;135510;128200;130200;132200;139166;139752;140344;140944;140944;142166;142788;143418;144055 -193;'678;Sao Tome and Principe;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;65;73;73;79;79;79;79;106;106;106;106;29;10;10;10;10;35;7;57;3;5;4;121;10;0;6;22;1 -193;'678;Sao Tome and Principe;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;30;30;5;5;5;5;6;6;6;6;16;15;15;15;15;17;6;36;1;1;0;37;3;0;4;2;1 -193;'678;Sao Tome and Principe;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;88;88;88;88;88;88;88;88;88;88;88;88;88;88;88;88;88;0;0;0;0;0;0;0;0;0 -193;'678;Sao Tome and Principe;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;0;0;0;0;0;0;0;0;0 -193;'678;Sao Tome and Principe;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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 -193;'678;Sao Tome and Principe;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;121;0;0;1;22;1 -193;'678;Sao Tome and Principe;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;37;0;0;1;2;1 -193;'678;Sao Tome and Principe;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -193;'678;Sao Tome and Principe;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -193;'678;Sao Tome and Principe;1863;Roundwood, non-coniferous;5516;Production;m3;46011;46625;47247;47878;54517;56164;57821;58486;59159;61842;63909;61569;59420;60726;61369;61815;62453;64043;64012;67192;71990;65912;72496;76399;76288;78388;82154;85028;85784;88464;90477;92485;93615;95436;97429;98554;100701;102915;104407;105937;107165;108418;109694;110996;112322;113315;114322;115342;116377;131426;132310;125000;127000;129000;135966;136552;137144;137744;137744;138966;139588;140218;140855 -193;'678;Sao Tome and Principe;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;10;0;5;0;0 -193;'678;Sao Tome and Principe;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;3;0;3;0;0 -193;'678;Sao Tome and Principe;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -193;'678;Sao Tome and Principe;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -193;'678;Sao Tome and Principe;1864;Wood fuel;5516;Production;m3;46011;46625;47247;47878;48517;49164;49821;50486;51159;51842;51909;53569;54420;55726;56369;56815;57453;59043;59012;59192;65990;63912;66496;70399;70288;71388;74154;76028;76784;79464;81477;83485;84615;86436;88429;89554;91701;92915;94407;95937;97165;98418;99694;100996;102322;103315;104322;105342;106377;107426;108310;101000;103000;105000;111966;112552;113144;113744;113744;114966;115588;116218;116855 -193;'678;Sao Tome and Principe;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;;;;;;; -193;'678;Sao Tome and Principe;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;1;1;1;;;;;;; -193;'678;Sao Tome and Principe;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -193;'678;Sao Tome and Principe;1628;Wood fuel, non-coniferous;5516;Production;m3;46011;46625;47247;47878;48517;49164;49821;50486;51159;51842;51909;53569;54420;55726;56369;56815;57453;59043;59012;59192;65990;63912;66496;70399;70288;71388;74154;76028;76784;79464;81477;83485;84615;86436;88429;89554;91701;92915;94407;95937;97165;98418;99694;100996;102322;103315;104322;105342;106377;107426;108310;101000;103000;105000;111966;112552;113144;113744;113744;114966;115588;116218;116855 -193;'678;Sao Tome and Principe;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;;;;;;; -193;'678;Sao Tome and Principe;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;1;1;1;;;;;;; -193;'678;Sao Tome and Principe;1865;Industrial roundwood;5516;Production;m3;;;;;6000;7000;8000;8000;8000;10000;12000;8000;5000;5000;5000;5000;5000;5000;5000;8000;6000;2000;6000;6000;6000;7000;8000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;13200;13200;13200;13200;13200;13200;13200;13200;13200;13200;13200;13200;27200;27200;27200;27200;27200;27200;27200;27200;27200;27200;27200;27200;27200;27200 -193;'678;Sao Tome and Principe;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;65;73;73;77;77;77;77;104;104;104;104;27;8;8;8;8;33;5;55;1;3;4;121;10;0;6;22;1 -193;'678;Sao Tome and Principe;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;30;30;5;5;5;5;6;6;6;6;16;15;15;15;15;17;6;35;0;0;0;37;3;0;4;2;1 -193;'678;Sao Tome and Principe;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;88;88;88;88;88;88;88;88;88;88;88;88;88;88;88;88;88;0;0;0;0;0;0;0;0;0 -193;'678;Sao Tome and Principe;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;0;0;0;0;0;0;0;0;0 -193;'678;Sao Tome and Principe;1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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 -193;'678;Sao Tome and Principe;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;40;40;40;13;13;13;13;40;40;40;40;20;1;1;1;1;26;2;2;0;1;3;121;0;0;1;22;1 -193;'678;Sao Tome and Principe;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;1;1;1;1;2;2;2;2;1;0;0;0;0;2;0;0;0;0;0;37;0;0;1;2;1 -193;'678;Sao Tome and Principe;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 -193;'678;Sao Tome and Principe;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 -193;'678;Sao Tome and Principe;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;40;40;40;13;13;13;13;40;40;40;40;20;1;1;1;1;26;2;2;0;1;3;121;0;0;1;22;1 -193;'678;Sao Tome and Principe;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;1;1;1;1;2;2;2;2;1;0;0;0;0;2;0;0;0;0;0;37;0;0;1;2;1 -193;'678;Sao Tome and Principe;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 -193;'678;Sao Tome and Principe;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 -193;'678;Sao Tome and Principe;1867;Industrial roundwood, non-coniferous;5516;Production;m3;;;;;6000;7000;8000;8000;8000;10000;12000;8000;5000;5000;5000;5000;5000;5000;5000;8000;6000;2000;6000;6000;6000;7000;8000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;24000;24000;24000;24000;24000;24000;24000;24000;24000;24000;24000;24000;24000;24000 -193;'678;Sao Tome and Principe;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;33;33;64;64;64;64;64;64;64;64;7;7;7;7;7;7;3;53;1;2;1;0;10;0;5;0;0 -193;'678;Sao Tome and Principe;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;27;27;4;4;4;4;4;4;4;4;15;15;15;15;15;15;6;35;0;0;0;0;3;0;3;0;0 -193;'678;Sao Tome and Principe;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;88;88;88;88;88;88;88;88;88;88;88;88;88;88;88;88;88;0;0;0;0;0;0;0;0;0 -193;'678;Sao Tome and Principe;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;0;0;0;0;0;0;0;0;0 -193;'678;Sao Tome and Principe;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;0;0;0;5;0;0 -193;'678;Sao Tome and Principe;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;3;0;0 -193;'678;Sao Tome and Principe;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 -193;'678;Sao Tome and Principe;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 -193;'678;Sao Tome and Principe;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;33;33;64;64;64;64;64;64;64;64;7;7;7;7;7;7;3;53;0;1;1;0;10;0;0;0;0 -193;'678;Sao Tome and Principe;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;27;27;4;4;4;4;4;4;4;4;15;15;15;15;15;15;6;35;0;0;0;0;3;0;0;0;0 -193;'678;Sao Tome and Principe;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88;88;88;88;88;88;88;88;88;88;88;88;88;88;88;88;88;0;0;0;0;0;0;0;0;0 -193;'678;Sao Tome and Principe;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;0;0;0;0;0;0;0;0;0 -193;'678;Sao Tome and Principe;1868;Sawlogs and veneer logs;5516;Production;m3;;;;;6000;7000;8000;8000;8000;10000;12000;8000;5000;5000;5000;5000;5000;5000;5000;8000;6000;2000;6000;6000;6000;7000;8000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;24000;24000;24000;24000;24000;24000;24000;24000;24000;24000;24000;24000;24000;24000 -193;'678;Sao Tome and Principe;1868;Sawlogs and veneer logs;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -193;'678;Sao Tome and Principe;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -193;'678;Sao Tome and Principe;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;;;;;6000;7000;8000;8000;8000;10000;12000;8000;5000;5000;5000;5000;5000;5000;5000;8000;6000;2000;6000;6000;6000;7000;8000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;24000;24000;24000;24000;24000;24000;24000;24000;24000;24000;24000;24000;24000;24000 -193;'678;Sao Tome and Principe;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -193;'678;Sao Tome and Principe;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -193;'678;Sao Tome and Principe;1871;Other industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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 -193;'678;Sao Tome and Principe;1871;Other industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -193;'678;Sao Tome and Principe;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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 -193;'678;Sao Tome and Principe;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -193;'678;Sao Tome and Principe;1630;Wood charcoal;5510;Production;t;2062;2114;2167;2221;2277;2334;2393;2453;2514;2577;2628;2760;2869;2975;3030;3069;3163;3251;3250;3303;3889;3716;4004;4284;4350;4517;4704;4895;5032;5295;5498;5701;5871;6138;6339;6508;6724;6893;7087;7286;7451;7621;7794;7971;8152;8285;8419;8556;8695;8836;8966;9099;9233;9370;9508;9613;9719;9827;9827;10045;10159;10275;10392 -193;'678;Sao Tome and Principe;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;4;4;4;4;1;1;1;0;0;1;1;0 -193;'678;Sao Tome and Principe;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;5;5;5;5;2;2;2;1;1;1;1;0 -193;'678;Sao Tome and Principe;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;67;67;67;67;67;144;144;144;144;144;144;91;91;91;91;91;91;91;91;91;91;24;91;24;24 -193;'678;Sao Tome and Principe;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;5;5;5;5;5;5;6;6;6;6;6;6;6;6;6;6;4;6;4;4 -193;'678;Sao Tome and Principe;1619;Wood chips and particles;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;0;67;0;0 -193;'678;Sao Tome and Principe;1619;Wood chips and particles;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;0;2;0;0 -193;'678;Sao Tome and Principe;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;77;77;77;77;77;24;24;24;24;24;24;24;24;24;24;24;24;24;24 -193;'678;Sao Tome and Principe;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;4;4;4;4;4;4;4;4;4;4;4;4;4;4 -193;'678;Sao Tome and Principe;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -193;'678;Sao Tome and Principe;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -193;'678;Sao Tome and Principe;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -193;'678;Sao Tome and Principe;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -193;'678;Sao Tome and Principe;1872;Sawnwood;5516;Production;m3;;;;;3200;3700;4100;4400;4000;5200;6300;3600;2300;2300;2300;2300;2300;2300;2300;4000;3000;1000;3000;3000;3000;3000;4000;5400;5400;5400;5400;5400;5400;5400;5400;5400;5400;5400;5400;5400;5400;5400;5400;5400;5400;5400;5400;5400;5400;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000 -193;'678;Sao Tome and Principe;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92;53;64;96;2;22;68;7;7;7;7;10;118;118;96;34;63;3;4;4;4;45;45;10;1525;1362;280;248;47;177;205;11 -193;'678;Sao Tome and Principe;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;28;30;21;1;14;21;1;1;1;1;13;28;28;24;21;58;4;5;5;5;32;32;7;918;811;140;58;42;103;145;6 -193;'678;Sao Tome and Principe;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;41;41;41;41;665;665;696;696;696;696;696;696;696;696;696;696;696;0;0;0;0;2;0;0;0;0 -193;'678;Sao Tome and Principe;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;16;16;16;16;318;318;324;324;324;324;324;324;324;324;324;324;324;0;0;0;0;1;0;40;0;0 -193;'678;Sao Tome and Principe;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -193;'678;Sao Tome and Principe;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;42;74;2;22;44;2;2;2;2;1;67;67;67;5;62;2;3;3;3;41;41;6;121;29;241;188;47;94;156;5 -193;'678;Sao Tome and Principe;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;12;1;14;10;1;1;1;1;3;12;12;12;9;57;3;4;4;4;16;16;2;38;7;111;6;24;36;103;0 -193;'678;Sao Tome and Principe;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;624;624;624;624;624;624;624;624;624;624;624;624;624;0;0;0;0;2;0;0;0;0 -193;'678;Sao Tome and Principe;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;302;302;302;302;302;302;302;302;302;302;302;302;302;0;0;0;0;1;0;40;0;0 -193;'678;Sao Tome and Principe;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;3200;3700;4100;4400;4000;5200;6300;3600;2300;2300;2300;2300;2300;2300;2300;4000;3000;1000;3000;3000;3000;3000;4000;5400;5400;5400;5400;5400;5400;5400;5400;5400;5400;5400;5400;5400;5400;5400;5400;5400;5400;5400;5400;5400;5400;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000 -193;'678;Sao Tome and Principe;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92;11;22;22;0;0;24;5;5;5;5;9;51;51;29;29;1;1;1;1;1;4;4;4;1404;1333;39;60;0;83;49;6 -193;'678;Sao Tome and Principe;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;7;9;9;0;0;11;0;0;0;0;10;16;16;12;12;1;1;1;1;1;16;16;5;880;804;29;52;18;67;42;6 -193;'678;Sao Tome and Principe;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;41;41;41;41;41;41;72;72;72;72;72;72;72;72;72;72;72;0;0;0;0;0;0;0;0;0 -193;'678;Sao Tome and Principe;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;16;16;16;16;16;16;22;22;22;22;22;22;22;22;22;22;22;0;0;0;0;0;0;0;0;0 -193;'678;Sao Tome and Principe;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -193;'678;Sao Tome and Principe;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;229;52;1;1;1;1;1;4;65;65;27;27;27;27;2;12;36;22;64;4;0;1;1;22;0;101;1;27 -193;'678;Sao Tome and Principe;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;166;38;0;0;0;0;0;2;52;52;12;12;12;12;3;15;42;34;54;4;0;0;2;26;50;73;35;26 -193;'678;Sao Tome and Principe;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;65;65;65;65;65;65;65;65;65;65;0;0;0;0;0;0;0;0;0 -193;'678;Sao Tome and Principe;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;51;51;51;51;51;51;51;51;51;51;0;0;0;0;0;0;0;0;0 -193;'678;Sao Tome and Principe;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -193;'678;Sao Tome and Principe;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;60;57;37;28;64;38;260;260;260;260;141;281;281;319;216;163;98;141;218;319;94;185;227;247;242;258;216;180;276;49;104 -193;'678;Sao Tome and Principe;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;21;24;31;21;32;29;21;21;21;21;78;79;79;88;170;166;110;136;176;291;125;175;168;136;144;166;142;76;146;71;78 -193;'678;Sao Tome and Principe;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;59;59;59;59;59;59;81;81;81;81;81;81;81;81;81;81;81;43;43;43;43;43;43;43;43;43 -193;'678;Sao Tome and Principe;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;57;57;57;57;57;57;19;19;19;19;19;19;19;19;19;19;19;7;7;7;7;7;7;7;7;7 -193;'678;Sao Tome and Principe;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -193;'678;Sao Tome and Principe;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;19;16;26;11;24;25;8;8;8;8;93;138;138;138;98;88;25;64;95;256;57;158;194;219;191;226;176;135;223;42;51 -193;'678;Sao Tome and Principe;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;12;15;23;10;16;18;5;5;5;5;60;49;49;49;97;79;30;53;72;204;66;156;124;115;106;130;112;52;106;60;35 -193;'678;Sao Tome and Principe;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;38;38;38;38;38;38;38;38;38;38;0;0;0;0;0;0;0;0;0 -193;'678;Sao Tome and Principe;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;12;12;12;12;12;12;12;12;0;0;0;0;0;0;0;0;0 -193;'678;Sao Tome and Principe;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;41;41;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -193;'678;Sao Tome and Principe;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;9;9;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -193;'678;Sao Tome and Principe;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;11;6;6;6;6;6;6;4;114;114;114;4;9;9;9;9;9;9;0;0;1;1;1;15;2;0;0;7 -193;'678;Sao Tome and Principe;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;7;2;6;6;6;6;6;4;19;19;19;2;40;40;40;40;40;40;0;0;2;3;3;14;0;0;2;6 -193;'678;Sao Tome and Principe;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;59;59;59;59;59;59;43;43;43;43;43;43;43;43;43;43;43;43;43;43;43;43;43;43;43;43 -193;'678;Sao Tome and Principe;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;57;57;57;57;57;57;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7 -193;'678;Sao Tome and Principe;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;0;0;2;2;3;37;2;11 -193;'678;Sao Tome and Principe;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;0;5;5;1;21;2;11 -193;'678;Sao Tome and Principe;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;6;34;7;246;246;246;246;44;29;29;67;114;66;64;68;114;54;28;27;28;27;50;29;23;40;16;5;35 -193;'678;Sao Tome and Principe;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;4;14;5;10;10;10;10;14;11;11;20;71;47;40;43;64;47;19;19;41;19;35;28;11;23;19;7;26 -193;'678;Sao Tome and Principe;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -193;'678;Sao Tome and Principe;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -193;'678;Sao Tome and Principe;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;1;240;240;240;240;38;13;13;51;86;45;44;44;61;23;23;23;15;22;22;1;22;10;0;0;22 -193;'678;Sao Tome and Principe;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;1;6;6;6;6;10;6;6;15;38;21;20;20;34;12;13;13;8;8;8;1;9;5;0;1;18 -193;'678;Sao Tome and Principe;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;6;6;6;6;6;6;6;6;6;6;6;11;4;3;7;36;15;2;1;10;3;14;14;1;26;12;5;0 -193;'678;Sao Tome and Principe;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;4;4;4;4;4;4;4;4;4;4;4;16;9;3;6;13;19;4;4;31;10;14;14;2;17;18;6;1 -193;'678;Sao Tome and Principe;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;10;10;10;17;17;17;17;17;16;3;3;3;2;14;14;0;4;4;0;13 -193;'678;Sao Tome and Principe;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;1;1;1;17;17;17;17;17;16;2;2;2;1;13;13;0;1;1;0;7 -193;'678;Sao Tome and Principe;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -193;'678;Sao Tome and Principe;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -193;'678;Sao Tome and Principe;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -193;'678;Sao Tome and Principe;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -193;'678;Sao Tome and Principe;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;36;36;36;36;36;36;36;459;360;360;62;38;38;39;39;39;39;39;3;3;3;3;3;3;0;3;3;3 -193;'678;Sao Tome and Principe;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;31;31;31;31;31;31;31;77;67;67;32;32;32;52;52;52;52;52;21;21;21;21;21;21;0;21;21;21 -193;'678;Sao Tome and Principe;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;135;181;181;181;97;97;97;97;97;97;97;97;97;97 -193;'678;Sao Tome and Principe;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;21;59;59;59;29;29;29;29;29;29;29;29;29;29 -193;'678;Sao Tome and Principe;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;0;0;0;0;0;0;0;0;0;0 -193;'678;Sao Tome and Principe;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;31;31;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 -193;'678;Sao Tome and Principe;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;0;0;0;0;0;0;0;0;0;0 -193;'678;Sao Tome and Principe;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;31;31;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 -193;'678;Sao Tome and Principe;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;0;0;0;0;0;0;0;0;0;0 -193;'678;Sao Tome and Principe;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;31;31;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 -193;'678;Sao Tome and Principe;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -193;'678;Sao Tome and Principe;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -193;'678;Sao Tome and Principe;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;36;0;0;0;;;;;;; -193;'678;Sao Tome and Principe;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;0;0;0;;;;;;; -193;'678;Sao Tome and Principe;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;423;324;324;26;2;2;3;3;3;3;3;3;3;3;3;3;3;0;3;3;3 -193;'678;Sao Tome and Principe;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;36;36;1;1;1;21;21;21;21;21;21;21;21;21;21;21;0;21;21;21 -193;'678;Sao Tome and Principe;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;135;181;181;181;97;97;97;97;97;97;97;97;97;97 -193;'678;Sao Tome and Principe;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;21;59;59;59;29;29;29;29;29;29;29;29;29;29 -193;'678;Sao Tome and Principe;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;132;76;45;30;17;48;48;613;613;613;247;251;408;408;133;402;7803;3729;146;153;162;223;191;153;136;155;202;149;123;164;169.07;165 -193;'678;Sao Tome and Principe;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;156;108;46;45;47;61;86;424;424;424;223;242;326;326;123;396;3919;1925;225;246;270;348;387;257;259;279;335;283;188;267;316.56;310 -193;'678;Sao Tome and Principe;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;188;156;156;156;158;49;49;49;179;271;384;384;384;384;461;309;323;323;370;584;584;584;584;582;514;381 -193;'678;Sao Tome and Principe;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;183;109;109;109;117;60;60;60;96;193;289;288;288;288;431;203;205;205;228;348;348;348;348;347;314;192 -193;'678;Sao Tome and Principe;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;69;5;20;16;38;27;15;15;15;65;210;374;374;96;75;184;64;100;86;82;140;112;88;108;109;155;142;117;159;166.07;151 -193;'678;Sao Tome and Principe;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;97;6;37;46;55;57;22;22;22;43;160;294;294;85;130;132;102;140;130;150;217;204;127;176;174;231;251;165;248;294.56;273 -193;'678;Sao Tome and Principe;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;188;150;150;150;138;29;29;29;28;28;141;141;141;141;141;141;155;155;155;369;369;369;369;369;348;215 -193;'678;Sao Tome and Principe;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;183;97;97;97;93;36;36;36;38;38;134;133;133;133;133;133;141;141;141;261;261;261;261;261;245;123 -193;'678;Sao Tome and Principe;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;2;2;2;50;50;2;2;2;7;3;5;4;3;1;2;2;2;2;2;2;0;0;0;0.07;0 -193;'678;Sao Tome and Principe;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;5;5;5;23;23;1;1;1;8;4;6;5;6;5;7;7;7;7;7;7;3;0;1;0.56;0 -193;'678;Sao Tome and Principe;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;214;214;214;214;214;214;214 -193;'678;Sao Tome and Principe;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120;120;120;120;120;120;120 -193;'678;Sao Tome and Principe;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;69;5;20;16;38;27;13;13;13;15;160;372;372;94;68;181;59;96;83;81;138;110;86;106;107;153;142;117;159;166;151 -193;'678;Sao Tome and Principe;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;97;6;37;46;55;57;17;17;17;20;137;293;293;84;122;128;96;135;124;145;210;197;120;169;167;224;248;165;247;294;273 -193;'678;Sao Tome and Principe;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;188;150;150;150;138;29;29;29;28;28;141;141;141;141;141;141;155;155;155;155;155;155;155;155;134;1 -193;'678;Sao Tome and Principe;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;183;97;97;97;93;36;36;36;38;38;134;133;133;133;133;133;141;141;141;141;141;141;141;141;125;3 -193;'678;Sao Tome and Principe;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;3;3;3;3;15;9;9;9;40;16;25;60;6;26;7;9;3;5;10;10;34;29;27;41;40 -193;'678;Sao Tome and Principe;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;2;2;2;2;12;7;7;7;63;26;44;87;14;38;20;19;12;14;24;24;51;40;56;56;76 -193;'678;Sao Tome and Principe;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;9;9;9;9;118;334;334;56;13;146;32;29;66;2;47;82;69;89;59;111;36;47;78;97;71 -193;'678;Sao Tome and Principe;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;14;14;14;14;96;263;263;54;22;54;41;31;84;10;58;116;70;115;87;146;69;61;105;173;103 -193;'678;Sao Tome and Principe;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;21;21;21;9;9;9;9;8;8;8;8;8;8;8;8;22;22;22;22;22;22;22;22;1;1 -193;'678;Sao Tome and Principe;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;14;14;14;10;10;10;10;12;12;12;11;11;11;11;11;19;19;19;19;19;19;19;19;3;3 -193;'678;Sao Tome and Principe;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1;1;1;3;27;29;29;29;15;19;2;7;11;53;84;19;14;12;38;32;72;41;54;28;40 -193;'678;Sao Tome and Principe;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;1;1;1;4;29;23;23;23;37;48;11;17;26;97;132;62;38;40;56;54;128;64;86;65;94 -193;'678;Sao Tome and Principe;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;162;129;129;129;129;20;20;20;20;20;133;133;133;133;133;133;133;133;133;133;133;133;133;133;133;0 -193;'678;Sao Tome and Principe;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;157;83;83;83;83;26;26;26;26;26;122;122;122;122;122;122;122;122;122;122;122;122;122;122;122;0 -193;'678;Sao Tome and Principe;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;129;7;40;10;1;10;21;598;598;598;182;41;34;34;37;327;7619;3665;46;67;80;83;79;65;28;46;47;7;6;5;3;14 -193;'678;Sao Tome and Principe;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;146;11;40;8;1;6;29;402;402;402;180;82;32;32;38;266;3787;1823;85;116;120;131;183;130;83;105;104;32;23;19;22;37 -193;'678;Sao Tome and Principe;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;20;20;20;20;151;243;243;243;243;243;320;168;168;168;215;215;215;215;215;213;166;166 -193;'678;Sao Tome and Principe;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;24;24;24;24;58;155;155;155;155;155;298;70;64;64;87;87;87;87;87;86;69;69 -193;'678;Sao Tome and Principe;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;10;10;10;10;4;2;1;1;7;7;2;7;2;21;14;0;0;0;1;0 -193;'678;Sao Tome and Principe;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;11;11;11;11;10;5;5;5;12;12;28;14;4;28;22;0;1;1;2;1 -193;'678;Sao Tome and Principe;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;551;551;551;135;8;18;18;21;29;3574;3586;38;60;65;57;57;29;10;9;17;6;6;5;2;10 -193;'678;Sao Tome and Principe;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;336;336;336;114;21;15;15;21;17;1747;1767;60;93;89;71;92;74;37;35;40;20;21;16;18;25 -193;'678;Sao Tome and Principe;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;20;20;20;20;151;243;243;243;243;243;320;168;166;166;213;213;213;213;213;213;166;166 -193;'678;Sao Tome and Principe;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;24;24;24;24;58;155;155;155;155;155;298;70;63;63;86;86;86;86;86;86;69;69 -193;'678;Sao Tome and Principe;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;533;533;533;117;3;3;3;6;6;1;1;1;1;1;1;1;1;1;1;1;1;0;0;0;2 -193;'678;Sao Tome and Principe;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;320;320;320;98;5;5;5;11;11;5;6;6;6;6;6;6;6;6;6;6;1;0;1;0;2 -193;'678;Sao Tome and Principe;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;12;143;143;143;143;143;143;143;143;143;143;143;143;143;143;143;143;143;143 -193;'678;Sao Tome and Principe;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;39;39;39;39;39;39;39;39;39;39;39;39;39;39;39;39;39;39 -193;'678;Sao Tome and Principe;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;3;1;1;1;1;3554;3554;18;18;23;32;32;4;4;4;1;1;3;0;1;2 -193;'678;Sao Tome and Principe;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;10;1;1;1;1;1731;1731;41;41;37;36;36;18;10;10;3;2;7;4;7;6 -193;'678;Sao Tome and Principe;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;4;4;4;4;4;4;4;4;4;4;4;4;2;2;49;49;49;49;49;49;2;2 -193;'678;Sao Tome and Principe;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;8;8;8;8;8;8;8;8;8;8;8;8;1;1;24;24;24;24;24;24;7;7 -193;'678;Sao Tome and Principe;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;1;13;13;13;21;1;13;1;23;23;23;23;23;3;2;13;2;1;4;1;6 -193;'678;Sao Tome and Principe;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;8;8;8;4;3;22;5;38;38;22;43;43;16;14;26;12;9;10;8;13 -193;'678;Sao Tome and Principe;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4;4;96;96;96;96;96;173;21;21;21;21;21;21;21;21;21;21;21 -193;'678;Sao Tome and Principe;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;11;11;11;11;108;108;108;108;108;251;23;23;23;23;23;23;23;23;23;23;23 -193;'678;Sao Tome and Principe;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;18;18;18;18;18;1;1;1;2;2;2;2;2;1;0;0 -193;'678;Sao Tome and Principe;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;8;8;8;8;8;7;7;7;5;5;5;5;5;1;3;4 -193;'678;Sao Tome and Principe;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;46;46;46;46;32;6;6;6;288;4041;77;7;6;8;19;20;29;16;16;16;1;0;0;0;4 -193;'678;Sao Tome and Principe;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;65;65;65;65;60;6;6;6;238;2030;51;20;18;19;48;63;42;42;42;42;12;1;2;2;11 -193;'678;Sao Tome and Principe;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;0;0;0 -193;'678;Sao Tome and Principe;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;0;0;0 -193;'678;Sao Tome and Principe;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1116;2016;945;952;1055;1221;692 -193;'678;Sao Tome and Principe;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;9;38;9;3;5;4 -193;'678;Sao Tome and Principe;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;15;33;10;2;2;5 -193;'678;Sao Tome and Principe;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;15;6;6;1;1;3 -193;'678;Sao Tome and Principe;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;27;4;1;1;2 -193;'678;Sao Tome and Principe;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;16;17;12;22;25;14 -193;'678;Sao Tome and Principe;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;0 -193;'678;Sao Tome and Principe;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;7;8;5;11;9;9 -193;'678;Sao Tome and Principe;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;2;2;0;1;0;0 -193;'678;Sao Tome and Principe;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;148;198;216;227;169;283;130 -193;'678;Sao Tome and Principe;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;932;1766;662;691;825;880;522 -193;'678;Sao Tome and Principe;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;6;36;9;2;5;4 -193;'678;Sao Tome and Principe;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;14;9;7;26;22;12 -193;'678;Sao Tome and Principe;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -193;'678;Sao Tome and Principe;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;774;945;1011;722;1127;1003;975 -193;'678;Sao Tome and Principe;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;0;0 -193;'678;Sao Tome and Principe;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;2;8;5;3;8;3 -193;'678;Sao Tome and Principe;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;28;15;6;32;11;24 -193;'678;Sao Tome and Principe;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;398;393;490;391;595;535;496 -193;'678;Sao Tome and Principe;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0; -193;'678;Sao Tome and Principe;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;136;69;74;114;134;85 -193;'678;Sao Tome and Principe;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;297;386;429;246;383;315;367 -193;'678;Sao Tome and Principe;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;0;0 -194;'682;Saudi Arabia;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3645034;3781497;3804679;3620348;4160035.79;5125216;4557025 -194;'682;Saudi Arabia;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;738899;844229;666553;689756;801983.94;758569;712264 -194;'682;Saudi Arabia;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;13747;18936;16301;18427;27155;45617;70017;89572;244416;339580;313272;454189;574190;637236;687485;560485;518105;440715;351576;373587;384611;293146;365992;504874;569392;634371;953925;932537;651255;609422;745147;811991;848968;858795;775608;804740;921442;991817;1035342;2265567;2131964;2095908;2127778;2438805;2584254;2541032;2594274;2595251;2080684;1975938;2176448;2027589;2001120;2236465.79;3089086;2359077 -194;'682;Saudi Arabia;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;122;838;586;1596;2853;2354;2636;4961;4961;4997;101721;2288;18980;21400;8979;6323;17792;19256;19716;16280;16280;16280;18137;18137;119096;196760;196760;196760;233819;266464;244093;256967;252428;237058;247771;248549;312682;235541;253941;361156.94;333818;265650 -194;'682;Saudi Arabia;1861;Roundwood;5516;Production;m3;15568;16556;17606;18723;19911;21174;22517;23945;25364;26679;27680;28410;29672;32253;35174;35655;39441;40416;46081;47988;54785;63650;70058;77851;86207;92232;101058;107140;114349;118957;122053;127940;133529;137956;143468;147134;154823;159210;169411;178587;184940;191519;198332;205387;212693;219226;225960;232900;240054;247428;254029;260807;267766;274910;282245;288434;294758;301220;307825;314574;321438;328450;335616 -194;'682;Saudi Arabia;1861;Roundwood;5616;Import quantity;m3;;;;;;;;13100;103500;59400;68200;79600;32100;52900;43300;93000;114400;126400;141200;153900;167000;168200;168200;147800;78600;143900;143900;143900;22300;4539;7764;18748;15529;32162;31100;16700;6000;8200;18500;29500;25200;25200;25200;28766;28766;28766;28766;28766;28766;33841;31090;33399;13186;11086;104192;53919;20925;73552;35162;12426;27674.94;46576;32483 -194;'682;Saudi Arabia;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;787;4395;4409;5091;5195;5003;8873;7267;22059;46016;37504;42180;45734;52254;44614;44022;36281;16567;29962;29962;29962;6171;760;1079;1222;1439;8929;6841;1926;2300;2140;2364;10785;9227;9227;9227;7017;7017;7017;7017;7017;7017;7174;4857;9527;5599;6336;10520;5559;4600;20300;7567;3248;5070.8;16716;10829 -194;'682;Saudi Arabia;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;160;10;895;300;300;0;0;0;0;0;0;0;0;0;0;0;0;0;8800;2258;1744;7015;594;1026;205;266;330;49;50;51;700;1200 -194;'682;Saudi Arabia;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;22;2;37;21;21;0;0;0;0;0;0;0;0;0;0;0;0;0;1335;891;767;2168;429;117;111;116;113;10;14;16;229;112 -194;'682;Saudi Arabia;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2400;2930;3011;1320;18242.58;29776;18703 -194;'682;Saudi Arabia;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;147;534;385;476;3008.8;9755;6684 -194;'682;Saudi Arabia;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;49;49;49;400;1000 -194;'682;Saudi Arabia;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;10;10;16;105;82 -194;'682;Saudi Arabia;1863;Roundwood, non-coniferous;5516;Production;m3;15568;16556;17606;18723;19911;21174;22517;23945;25364;26679;27680;28410;29672;32253;35174;35655;39441;40416;46081;47988;54785;63650;70058;77851;86207;92232;101058;107140;114349;118957;122053;127940;133529;137956;143468;147134;154823;159210;169411;178587;184940;191519;198332;205387;212693;219226;225960;232900;240054;247428;254029;260807;267766;274910;282245;288434;294758;301220;307825;314574;321438;328450;335616 -194;'682;Saudi Arabia;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18525;70622;32151;11106;9432.36;16800;13780 -194;'682;Saudi Arabia;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4453;19766;7182;2772;2062;6961;4145 -194;'682;Saudi Arabia;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;266;330;0;1;2;300;200 -194;'682;Saudi Arabia;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116;113;0;4;0;124;30 -194;'682;Saudi Arabia;1864;Wood fuel;5516;Production;m3;15568;16556;17606;18723;19911;21174;22517;23945;25364;26679;27680;28410;29672;32253;35174;35655;39441;40416;46081;47988;54785;63650;70058;77851;86207;92232;101058;107140;114349;118957;122053;127940;133529;137956;143468;147134;154823;159210;169411;178587;184940;191519;198332;205387;212693;219226;225960;232900;240054;247428;254029;260807;267766;274910;282245;288434;294758;301220;307825;314574;321438;328450;335616 -194;'682;Saudi Arabia;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;100;400;300;300;300;600;200;1400;700;3000;400;2100;200;400;400;400;200;400;400;400;1500;1500;1500;64;120;1300;600;2300;800;3400;1000;7800;4200;4200;4200;4200;4200;4200;4200;4200;4200;1614;1299;26452;5650;2790;2786;1627;13728;14331;28544;9981;26089.94;43700;28600 -194;'682;Saudi Arabia;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;11;36;25;25;25;147;31;412;260;1122;154;1115;158;249;249;249;87;93;93;93;270;270;270;3;5;54;25;143;35;157;46;315;138;138;138;138;138;138;138;138;138;499;456;6617;1972;1194;1212;496;3759;3881;5583;2341;4776.8;13812;9741 -194;'682;Saudi Arabia;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;24;3;3;3;12;36;;;49;49;49;0;0 -194;'682;Saudi Arabia;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;4;0;0;2;1;25;;;10;10;10;0;5 -194;'682;Saudi Arabia;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2568;130;17170.58;29200;18000 -194;'682;Saudi Arabia;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;223;49;2848.8;9273;6264 -194;'682;Saudi Arabia;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;49;49;0;0 -194;'682;Saudi Arabia;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;0;0 -194;'682;Saudi Arabia;1628;Wood fuel, non-coniferous;5516;Production;m3;15568;16556;17606;18723;19911;21174;22517;23945;25364;26679;27680;28410;29672;32253;35174;35655;39441;40416;46081;47988;54785;63650;70058;77851;86207;92232;101058;107140;114349;118957;122053;127940;133529;137956;143468;147134;154823;159210;169411;178587;184940;191519;198332;205387;212693;219226;225960;232900;240054;247428;254029;260807;267766;274910;282245;288434;294758;301220;307825;314574;321438;328450;335616 -194;'682;Saudi Arabia;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13728;14331;25976;9851;8919.36;14500;10600 -194;'682;Saudi Arabia;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3759;3881;5360;2292;1928;4539;3477 -194;'682;Saudi Arabia;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -194;'682;Saudi Arabia;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;5 -194;'682;Saudi Arabia;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;100;400;300;300;300;600;200;1400;700;3000;400;2100;200;400;400;400;200;400;400;400;1500;1500;1500;64;120;1300;600;2300;800;3400;1000;7800;4200;4200;4200;4200;4200;4200;4200;4200;4200;1614;1299;26452;5650;2790;2786;1627;;;;;;; -194;'682;Saudi Arabia;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;11;36;25;25;25;147;31;412;260;1122;154;1115;158;249;249;249;87;93;93;93;270;270;270;3;5;54;25;143;35;157;46;315;138;138;138;138;138;138;138;138;138;499;456;6617;1972;1194;1212;496;;;;;;; -194;'682;Saudi Arabia;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;3;24;3;3;3;12;36;;;;;;; -194;'682;Saudi Arabia;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;2;4;0;0;2;1;25;;;;;;; -194;'682;Saudi Arabia;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;13100;103400;59000;67900;79300;31800;52300;43100;91600;113700;123400;140800;151800;166800;167800;167800;147400;78400;143500;143500;143500;20800;3039;6264;18684;15409;30862;30500;14400;5200;4800;17500;21700;21000;21000;21000;24566;24566;24566;24566;24566;24566;32227;29791;6947;7536;8296;101406;52292;7197;59221;6618;2445;1585;2876;3883 -194;'682;Saudi Arabia;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;787;4384;4373;5066;5170;4978;8726;7236;21647;45756;36382;42026;44619;52096;44365;43773;36032;16480;29869;29869;29869;5901;490;809;1219;1434;8875;6816;1783;2265;1983;2318;10470;9089;9089;9089;6879;6879;6879;6879;6879;6879;6675;4401;2910;3627;5142;9308;5063;841;16419;1984;907;294;2904;1088 -194;'682;Saudi Arabia;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;160;10;895;300;300;0;0;0;0;0;0;0;0;0;0;0;0;0;8797;2234;1741;7012;591;1014;169;266;330;0;1;2;700;1200 -194;'682;Saudi Arabia;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;22;2;37;21;21;0;0;0;0;0;0;0;0;0;0;0;0;0;1333;887;767;2168;427;116;86;116;113;0;4;6;229;107 -194;'682;Saudi Arabia;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2765;3584;17547;6986;20700;18000;1400;2000;2000;11900;14000;12500;12500;12500;22195;22195;22195;22195;22195;22195;11666;17668;1752;944;6603;89170;39869;2400;2930;443;1190;1072;576;703 -194;'682;Saudi Arabia;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;429;597;1113;609;8010;5607;294;447;447;1501;6481;5149;5149;5149;5000;5000;5000;5000;5000;5000;1327;1860;684;558;3524;6727;2906;147;534;162;427;160;482;420 -194;'682;Saudi Arabia;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;601;300;300;0;0;0;0;0;0;0;0;0;0;0;0;0;6470;296;4;3852;48;750;60;0;0;0;0;0;400;1000 -194;'682;Saudi Arabia;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;21;21;0;0;0;0;0;0;0;0;0;0;0;0;0;343;16;0;204;3;57;59;0;0;0;0;6;105;82 -194;'682;Saudi Arabia;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2765;3584;17547;6986;20700;18000;1400;2000;2000;11900;14000;12500;12500;12500;22195;22195;22195;22195;22195;22195;11666;17668;1752;944;6603;89170;39869;2400;2930;443;1190;1072;576;703 -194;'682;Saudi Arabia;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;429;597;1113;609;8010;5607;294;447;447;1501;6481;5149;5149;5149;5000;5000;5000;5000;5000;5000;1327;1860;684;558;3524;6727;2906;147;534;162;427;160;482;420 -194;'682;Saudi Arabia;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;601;300;300;0;0;0;0;0;0;0;0;0;0;0;0;0;6470;296;4;3852;48;750;60;0;0;0;0;0;400;1000 -194;'682;Saudi Arabia;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;21;21;0;0;0;0;0;0;0;0;0;0;0;0;0;343;16;0;204;3;57;59;0;0;0;0;6;105;82 -194;'682;Saudi Arabia;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;274;2680;1137;8423;10162;12500;13000;3200;2800;5600;7700;8500;8500;8500;2371;2371;2371;2371;2371;2371;20561;12123;5195;6592;1693;12236;12423;4797;56291;6175;1255;513;2300;3180 -194;'682;Saudi Arabia;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;212;106;825;865;1209;1489;1818;1536;817;3989;3940;3940;3940;1879;1879;1879;1879;1879;1879;5348;2541;2226;3069;1618;2581;2157;694;15885;1822;480;134;2422;668 -194;'682;Saudi Arabia;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;160;10;294;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2327;1938;1737;3160;543;264;109;266;330;0;1;2;300;200 -194;'682;Saudi Arabia;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;22;2;15;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;990;871;767;1964;424;59;27;116;113;0;4;0;124;25 -194;'682;Saudi Arabia;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33;29;29;0;1500;800;800;0;300;2300;2700;2700;2700;1000;1000;1000;1000;1000;1000;1286;794;3501;4742;19;611;1057;1300;15755;52;2;0;500;150 -194;'682;Saudi Arabia;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;0;309;192;192;0;33;680;1376;1376;1376;1000;1000;1000;1000;1000;1000;1097;546;810;1337;10;437;256;607;4484;5;5;0;806;85 -194;'682;Saudi Arabia;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;244;712;511;511;511;0;25;1;19;0;0;0;100;0 -194;'682;Saudi Arabia;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;181;497;393;393;393;0;12;0;13;0;0;0;7;0 -194;'682;Saudi Arabia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;241;2647;1108;8394;10162;11000;12200;2400;2800;5300;5400;5800;5800;5800;1371;1371;1371;1371;1371;1371;19275;11329;1694;1850;1674;11625;11366;3497;40536;6123;1253;513;1800;3030 -194;'682;Saudi Arabia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;209;103;822;865;900;1297;1626;1536;784;3309;2564;2564;2564;879;879;879;879;879;879;4251;1995;1416;1732;1608;2144;1901;87;11401;1817;475;134;1616;583 -194;'682;Saudi Arabia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;160;10;294;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2083;1226;1226;2649;32;264;84;265;311;0;1;2;200;200 -194;'682;Saudi Arabia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;22;2;15;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;809;374;374;1571;31;59;15;116;100;0;4;0;117;25 -194;'682;Saudi Arabia;1868;Sawlogs and veneer logs;5616;Import quantity;m3;;;;;;;;;;;;;;5700;6800;7600;7800;10900;9600;13400;19400;24800;24800;17000;37200;18000;18000;18000;2400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -194;'682;Saudi Arabia;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;;;;;;;;;;;;;;1079;811;1585;1849;2488;3445;4073;4765;5593;5001;3620;8216;3967;3967;3967;721;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -194;'682;Saudi Arabia;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;4500;4300;7100;6600;10100;8300;10800;14100;22100;22100;11900;9300;4600;4600;4600;1800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -194;'682;Saudi Arabia;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;923;489;1490;1595;2294;2811;3504;3073;4642;4050;2408;2486;1137;1137;1137;587;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -194;'682;Saudi Arabia;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;1200;2500;500;1200;800;1300;2600;5300;2700;2700;5100;27900;13400;13400;13400;600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -194;'682;Saudi Arabia;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;156;322;95;254;194;634;569;1692;951;951;1212;5730;2830;2830;2830;134;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -194;'682;Saudi Arabia;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;;;;;;;;;6400;2100;4900;12800;35100;39800;13700;3400;8200;8200;3200;4600;47000;47000;47000;800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -194;'682;Saudi Arabia;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;;;;;1295;283;689;3012;8334;8092;3572;726;2125;2125;979;694;7210;7210;7210;160;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -194;'682;Saudi Arabia;1870;Pulpwood and particles (1961-1997);5616;Import quantity;m3;;;;;;;;;;;;;;6400;2100;4900;12800;35100;39800;13700;3400;8200;8200;3200;4600;47000;47000;47000;800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -194;'682;Saudi Arabia;1870;Pulpwood and particles (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;1295;283;689;3012;8334;8092;3572;726;2125;2125;979;694;7210;7210;7210;160;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -194;'682;Saudi Arabia;1871;Other industrial roundwood;5616;Import quantity;m3;;;;;;;;13100;103400;59000;67900;79300;31800;40200;34200;79100;93100;77400;91400;124700;144000;134800;134800;127200;36600;78500;78500;78500;17600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -194;'682;Saudi Arabia;1871;Other industrial roundwood;5622;Import value;1000 USD;;;;;;;;787;4384;4373;5066;5170;4978;6352;6142;19373;40895;25560;30489;36974;46605;36647;36647;31433;7570;18692;18692;18692;5020;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -194;'682;Saudi Arabia;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;;;13100;103400;59000;67900;79300;31800;40200;34200;79100;93100;77400;91400;124700;144000;134800;134800;127200;36600;78500;78500;78500;17600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -194;'682;Saudi Arabia;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;787;4384;4373;5066;5170;4978;6352;6142;19373;40895;25560;30489;36974;46605;36647;36647;31433;7570;18692;18692;18692;5020;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -194;'682;Saudi Arabia;1630;Wood charcoal;5510;Production;t;2559;2719;2890;3071;3264;3468;3686;3917;3062;3323;2862;2766;2960;4838;4547;4106;4512;3947;4040;6025;2639;2639;2639;1261;10581;2304;3765;4762;2335;3086;3586;9833;12811;4494;8483;18864;19780;19780;19780;29352;30398;31481;32602;33764;34967;36041;37149;38290;39467;40680;41765;42879;44023;45198;46403;47419;48458;49519;50603;51711;52838;53989;55166 -194;'682;Saudi Arabia;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;1100;1100;1700;1900;1900;500;1200;1900;2000;3100;3500;2100;6300;11600;11600;11500;3600;12900;12900;12900;16700;16700;16700;11585;9141;18400;15200;5700;5800;55000;43000;34957;44153;52075;74730;60247;73874;102281;50953;97071;84960;69138;109692;70945;114350;113555;115517;117705;116467;132293;129481;114989;137526;180600;190200 -194;'682;Saudi Arabia;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;94;85;109;101;101;155;228;481;570;806;1146;925;2917;3891;3891;4279;1170;3812;3812;3812;3498;3498;3498;1800;1703;5874;4005;1472;1300;7877;7482;4627;5850;5712;8101;8635;8790;12237;8036;14589;14677;10832;12675;14626;28995;27908;49309;57767;64946;72709;72409;64393;82752;140546;131337 -194;'682;Saudi Arabia;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;400;17;17;17;17;0;0;0;0;0;0;0;0;0;0;0;0;20;2;4;187;117;242;116;127;596;182;1;24;0;0 -194;'682;Saudi Arabia;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;276;276;8;8;8;8;0;0;0;0;0;0;0;0;0;0;0;0;7;1;3;143;4;140;74;170;371;147;0;3;0;8 -194;'682;Saudi Arabia;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81700;28100;22500;24700;24700;4218;2070;2070;2070;60633;60633;60633;3173;1675;1443;1716;13434;8711;5528;5307;11315;5776;11640;6007.16;34200;32900 -194;'682;Saudi Arabia;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1549;907;1201;1316;1316;457;776;776;776;1706;1706;1706;1855;463;533;906;7621;1260;2818;1946;4266;1588;2432;1810.22;12059;12642 -194;'682;Saudi Arabia;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;11441;1231;693;2302;1078;456;685;685;1601;1093;1209;397;200;100 -194;'682;Saudi Arabia;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;1866;244;196;490;267;125;202;202;772;425;432;58;304;120 -194;'682;Saudi Arabia;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1311;271;163;163;24000;36500;81000;23000;20700;20700;20700;218;437;437;437;59000;59000;59000;153;617;16;433;74;7447;418;197;10117;5396;10070;3673.08;6600;400 -194;'682;Saudi Arabia;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116;16;8;8;400;462;1504;748;912;912;912;53;67;67;67;997;997;997;50;59;15;293;39;646;144;89;3547;1375;2118;1157.17;3457;277 -194;'682;Saudi Arabia;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;55;55;55;67;67;849;849;849;37;0;0 -194;'682;Saudi Arabia;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;37;37;417;417;417;43;0;2 -194;'682;Saudi Arabia;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;530;1157;1600;1479;1600;500;700;5100;1800;4000;4000;4000;1633;1633;1633;1633;1633;1633;3020;1058;1427;1283;13360;1264;5110;5110;1198;380;1570;2334.08;27600;32500 -194;'682;Saudi Arabia;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;64;73;68;73;32;45;159;289;404;404;404;709;709;709;709;709;709;1805;404;518;613;7582;614;2674;1857;719;213;314;653.04;8602;12365 -194;'682;Saudi Arabia;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112;138;0;49;0;0;0;0;0;0;0;0;0;0;0;0;0;0;11441;1231;638;2247;1023;401;618;618;752;244;360;360;200;100 -194;'682;Saudi Arabia;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;12;0;4;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1866;244;185;479;256;114;165;165;355;8;15;15;304;118 -194;'682;Saudi Arabia;1605;Sawdust (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27600;32500 -194;'682;Saudi Arabia;1605;Sawdust (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8602;12365 -194;'682;Saudi Arabia;1605;Sawdust (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0 -194;'682;Saudi Arabia;1605;Sawdust (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;7 -194;'682;Saudi Arabia;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -194;'682;Saudi Arabia;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -194;'682;Saudi Arabia;1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -194;'682;Saudi Arabia;1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -194;'682;Saudi Arabia;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;953;1551;1207;2755;4511;17011;17061;1096;2812;10407;1900;1700 -194;'682;Saudi Arabia;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;518;1165;955;1210;2701;10122;10509;747;1087;1620;1424;1313 -194;'682;Saudi Arabia;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;22;0;5;5;88;200;200 -194;'682;Saudi Arabia;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;11;0;4;4;6;439;147 -194;'682;Saudi Arabia;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;80;608;1891;364;158;26;200;200 -194;'682;Saudi Arabia;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;27;402;988;215;78;25;191;79 -194;'682;Saudi Arabia;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;22;0;5;5;88;0;0 -194;'682;Saudi Arabia;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;11;0;4;4;6;5;3 -194;'682;Saudi Arabia;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;953;1551;1207;2693;4431;16403;15170;732;2654;10381;1700;1500 -194;'682;Saudi Arabia;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;518;1165;955;1193;2674;9720;9521;532;1009;1595;1233;1234 -194;'682;Saudi Arabia;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200 -194;'682;Saudi Arabia;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;434;144 -194;'682;Saudi Arabia;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -194;'682;Saudi Arabia;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;140300;138000;107300;123800;102800;137000;125200;211000;686800;759800;603400;838700;1120800;1078800;1214800;1746800;1448200;985200;632700;637700;606000;600000;680000;680000;1056982;1123797;965900;766300;702600;700100;572000;605300;1059000;1162000;1345300;1565000;1852116;1399000;1429000;1812000;1426700;1501300;2101664;2150300;2244000;2201000;2161171;2261066;2085369;1593202;1568025;2022794;2251727;2006522;1986803;1601371 -194;'682;Saudi Arabia;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;8503;8251;6212;6688;8041;17399;26730;40402;136976;147533;124692;185661;285635;266023;259627;275762;205499;159910;103769;104769;99000;99000;116500;116500;190717;172524;226432;166086;138806;109271;125501;120273;216865;254216;222037;241048;225891;253497;279870;488367;335050;309550;472408;532425;510438;530896;548431;463372;378923;310385;378897;415583;438184;552334;572051;347333 -194;'682;Saudi Arabia;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;72;5783;6900;7100;0;0;0;0;0;0;0;0;0;0;0;0;0;2939;77;2995;2724;555;4150;4564;2340;1767;1196;2733;7518;2029;106 -194;'682;Saudi Arabia;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;20;2297;2119;2027;0;0;0;0;0;0;0;0;0;0;0;0;0;1967;45;1058;1035;560;1687;4360;740;405;824;1085;4131;6262;7135 -194;'682;Saudi Arabia;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -194;'682;Saudi Arabia;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;140300;135750;106250;122600;101600;135800;65300;167050;581000;620400;513600;728300;919200;918000;1066500;1482400;1241800;603000;400000;405000;405000;400000;480000;480000;816529;1090065;962000;760600;510800;597100;492000;504000;894000;900000;922300;1200000;1528116;1050000;1100000;1420000;1343000;1405300;2035300;2065300;2165000;2120000;2082000;2114503;2004596;1518621;1508000;1932305;2186553;1925357;1931803;1556609 -194;'682;Saudi Arabia;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;8503;8208;6148;6624;7977;17335;13594;29452;109436;116472;101293;157685;240514;228691;229695;222881;172159;84000;56000;57000;57000;56000;72500;72500;131633;154973;222961;162081;85874;90937;98872;92374;170000;175000;123483;176988;155825;166000;188539;320948;297270;272038;440863;484169;465084;477120;493993;412298;342509;274897;345126;373649;407118;522878;537071;318399 -194;'682;Saudi Arabia;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5400;6300;6300;0;0;0;0;0;0;0;0;0;0;0;0;0;1920;39;1907;1238;92;321;518;780;237;253;43;7494;139;0 -194;'682;Saudi Arabia;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2136;1869;1869;0;0;0;0;0;0;0;0;0;0;0;0;0;1149;19;459;298;91;134;172;116;78;82;9;3828;5317;7089 -194;'682;Saudi Arabia;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -194;'682;Saudi Arabia;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;2250;1050;1200;1200;1200;59900;43950;105800;139400;89800;110400;201600;160800;148300;264400;206400;382200;232700;232700;201000;200000;200000;200000;240453;33732;3900;5700;191800;103000;80000;101300;165000;262000;423000;365000;324000;349000;329000;392000;83700;96000;66364;85000;79000;81000;79171;146563;80773;74581;60025;90489;65174;81165;55000;44762 -194;'682;Saudi Arabia;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;43;64;64;64;64;13136;10950;27540;31061;23399;27976;45121;37332;29932;52881;33340;75910;47769;47769;42000;43000;44000;44000;59084;17551;3471;4005;52932;18334;26629;27899;46865;79216;98554;64060;70066;87497;91331;167419;37780;37512;31545;48256;45354;53776;54438;51074;36414;35488;33771;41934;31066;29456;34980;28934 -194;'682;Saudi Arabia;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;72;383;600;800;0;0;0;0;0;0;0;0;0;0;0;0;0;1019;38;1088;1486;463;3829;4046;1560;1530;943;2690;24;1890;106 -194;'682;Saudi Arabia;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;20;161;250;158;0;0;0;0;0;0;0;0;0;0;0;0;0;818;26;599;737;469;1553;4188;624;327;742;1076;303;945;46 -194;'682;Saudi Arabia;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000;1000;1000 -194;'682;Saudi Arabia;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;1400;800;700;1000;1000;2600;8300;29000;29300;22300;29300;32400;51100;110600;110600;53700;33000;9700;9700;9700;9700;9700;9700;2453;1337;189600;222700;149700;2300;3500;2300;74300;25000;25000;50986;20000;20000;20000;79600;79600;79600;40133;4025;68051;22180;25839;19666;18338;14584;5348;2976;6441;4069;6800;9000 -194;'682;Saudi Arabia;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;138;96;99;91;91;1036;2385;10464;7785;5756;8496;12434;14360;30006;30006;13044;8719;4455;4455;4455;4455;4455;4455;2675;1303;75300;85980;60235;1537;1629;1266;33738;9144;9144;11447;4556;4556;4556;24919;24919;24919;13378;4778;34725;15763;17892;18384;17598;9643;5957;4648;6434;5454;10084;14346 -194;'682;Saudi Arabia;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3739;203;5236;2042;257;3521;299;239;2945;3503;0;58;0;100 -194;'682;Saudi Arabia;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2570;177;3082;1354;413;2119;403;229;1576;1847;47;171;56;92 -194;'682;Saudi Arabia;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -194;'682;Saudi Arabia;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;4300;19866;12501;14933;17901;35701;42600;55900;155500;217600;276800;387200;347900;454200;616800;327600;536400;580600;344075;344540;415018;401702;400337;400337;500839;437394;404758;370800;378200;401100;450000;353000;474100;471000;576600;700536;639100;763600;721000;1139400;1193900;835300;1034013;986297;1571396;1447227;1500629;1634570;1324925;1397755;1231283;1500817;1674833;1531643.41;1355437;1470527 -194;'682;Saudi Arabia;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;603;2375;1602;2136;2426;8093;10568;14742;43603;65269;83212;143939;145653;194688;227767;122600;167792;180800;106835;103599;128346;128957;131960;131960;185291;186939;172520;158883;160652;167487;140636;116049;146340;142420;140087;133342;134027;164828;160504;289726;343628;343628;463458;502918;679681;624150;616767;681401;465961;427241;403134;467762;521782;498560.96;639666;590405 -194;'682;Saudi Arabia;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;829;2325;1900;1832;1800;0;0;0;0;0;0;0;0;0;19500;19500;19500;24320;21162;31160;36042;26803;31615;37656;39434;49970;29777;34889;56070.18;26654;38642 -194;'682;Saudi Arabia;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;167;1119;876;842;832;0;0;0;0;0;0;0;0;0;9854;9854;9854;22198;17442;21171;23083;15585;19998;18284;19405;22230;15019;15790;28026.26;16513;25979 -194;'682;Saudi Arabia;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -194;'682;Saudi Arabia;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;4300;12600;8500;12300;15900;33700;37900;49900;135400;205100;261700;370600;327000;433300;582000;311000;526800;568000;330000;327000;407000;386000;386000;386000;418023;344702;333900;250000;307900;300600;297000;221000;278000;275000;310000;411000;316000;424000;380000;383900;485000;485000;622800;600000;752273;610797;687000;675920;508953;533867;430581;543543;653601;614788;505407;469414 -194;'682;Saudi Arabia;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;603;1818;1299;1762;1936;7603;9700;13574;39431;62014;78705;138664;137708;186743;216405;115700;162992;175000;102000;98000;123000;120000;123000;123000;154739;150579;143923;120000;136837;140209;94007;80370;112703;108328;104008;94817;79219;109902;104884;159464;209575;209575;285579;309129;402511;344651;363384;385756;253161;210351;187289;224585;262113;210556;239303;224607 -194;'682;Saudi Arabia;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;170;2100;1600;1600;1600;0;0;0;0;0;0;0;0;0;19500;19500;19500;20358;20358;24313;29537;21642;25927;36225;35834;44377;25228;25228;32705;1520;6100 -194;'682;Saudi Arabia;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;30;1068;801;801;801;0;0;0;0;0;0;0;0;0;9854;9854;9854;16929;16929;13824;15392;11460;13060;17081;15170;17441;11635;11147;17067;887;7349 -194;'682;Saudi Arabia;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;800 -194;'682;Saudi Arabia;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;199;538 -194;'682;Saudi Arabia;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -194;'682;Saudi Arabia;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -194;'682;Saudi Arabia;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21408;22967;30300;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -194;'682;Saudi Arabia;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7602;7431;11481;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -194;'682;Saudi Arabia;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;659;200;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -194;'682;Saudi Arabia;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;137;49;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -194;'682;Saudi Arabia;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75400;13800;21700;99500;44000;35200;30000;66800;84000;133000;173100;172600;107200;24900;24900;62351;25489;43211;30047;45864;50047;40413;45000;44121;53446;66987;85215.87;60200;69000 -194;'682;Saudi Arabia;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20828;4598;6474;34718;15999;9351;8023;12783;16922;33497;33305;34030;24319;10002;10002;20102;9764;25361;14146;21401;22624;16431;17290;16071;17149;21478;30146.98;41194;38692 -194;'682;Saudi Arabia;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;32;0;0;0;0;0;0;0;0;0;0;0;0;0;3226;14;4766;3719;3182;3317;85;2812;2627;2230;4838;13692.16;13800;18200 -194;'682;Saudi Arabia;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;10;0;0;0;0;0;0;0;0;0;0;0;0;0;4518;31;4946;1897;2545;3762;85;3734;3260;2516;3044;7297.6;10522;12408 -194;'682;Saudi Arabia;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;749;1511;1662;314;1765;403;775;796;958;1028;784;1369;1000;500 -194;'682;Saudi Arabia;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;420;564;585;103;613;172;400;254;404;499;380;801;1060;548 -194;'682;Saudi Arabia;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;388;12;69;43;4;0;0 -194;'682;Saudi Arabia;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;191;14;24;11;1;0;0 -194;'682;Saudi Arabia;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;7266;4001;2633;2001;2001;4700;6000;20100;12500;15100;16600;20900;20900;34800;16600;9600;12600;14075;17540;8018;15702;14337;14337;61408;69725;40558;45400;56500;78800;53500;88000;160900;166000;199800;205536;190100;166500;168400;648300;684000;325400;348113;359297;774250;806069;766000;908200;774784;818092;755623;902800;953461;830270.54;788830;931613 -194;'682;Saudi Arabia;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;557;303;374;490;490;868;1168;4172;3255;4507;5275;7945;7945;11362;6900;4800;5800;4835;5599;5346;8957;8960;8960;22950;28929;17116;18055;19217;20804;11911;19680;24286;26069;23296;21603;21311;21621;21590;105943;124051;124051;157357;183461;251224;265250;231369;272849;195969;199346;199370;225529;237811;257056.98;358109;326558 -194;'682;Saudi Arabia;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;0;200;200;0;0;0;0;0;0;0;0;0;0;0;0;736;790;2081;2786;1979;2371;1346;400;2954;2250;4780;9669.02;11334;14342 -194;'682;Saudi Arabia;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;31;31;0;0;0;0;0;0;0;0;0;0;0;0;751;482;2401;5794;1580;3176;1118;310;1515;844;1588;3660.66;5104;6222 -194;'682;Saudi Arabia;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15300;28000;28000;16300;40000;22300;21000;8100;13200;5700;7300;8800;73000;16000;16000;7573;10021;10287;13072;11000;18200;20636;24092;23093;30355;11403;8019.02;9200;5900 -194;'682;Saudi Arabia;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6881;11321;11321;3848;9561;7718;6467;3144;4867;3609;4208;5024;24319;9149;9149;4539;9591;5357;6700;9087;9578;9408;10631;10588;11536;6922;7742.04;8639;5966 -194;'682;Saudi Arabia;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;123;129;568;1960;3;771;56;13;127;34;20;78;0;100 -194;'682;Saudi Arabia;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;84;1627;4909;3;1857;124;63;29;22;12;69;58;102 -194;'682;Saudi Arabia;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20500;13300;20800;20200;36000;41100;45000;85500;85136;42300;28900;21900;529000;558600;200000;300000;300000;737612;764997;732000;862000;723148;775000;719000;859000;914000;792000;740300;876200 -194;'682;Saudi Arabia;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8661;5358;6630;6067;8741;8132;9076;12504;9320;6210;4642;4420;77536;100190;100190;144695;144695;238039;250110;215372;254062;178103;182913;184825;210441;224877;243412;340140;308807 -194;'682;Saudi Arabia;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;613;661;1315;485;1965;719;907;315;2771;2102;4705;6808.73;9600;9800 -194;'682;Saudi Arabia;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;680;398;612;518;1563;699;695;188;1445;699;1549;2637.12;4484;4272 -194;'682;Saudi Arabia;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;4200;4800;16500;10800;13500;14600;18600;18600;32000;14000;7000;10000;11475;14940;5418;7602;6237;6237;13387;13608;9448;9600;15200;30000;17000;12000;97500;100000;106200;107200;142100;130300;137700;46300;109400;109400;40540;49276;26351;28000;23000;28000;31000;19000;13530;13445;28058;30251.51;39330;49513 -194;'682;Saudi Arabia;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;616;826;2662;2333;3324;3530;5623;5623;8477;4200;2100;3100;2135;2899;2646;2548;2551;2551;5367;5926;3192;2513;2538;2853;1996;1378;8436;10526;7648;7416;11492;12771;12146;4088;14712;14712;8123;29175;7828;8440;6910;9209;8458;5802;3957;3552;6012;5902.94;9330;11785 -194;'682;Saudi Arabia;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;0;200;200;0;0;0;0;0;0;0;0;0;0;0;0;0;0;198;341;11;881;383;72;56;114;55;2782.29;1734;4442 -194;'682;Saudi Arabia;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;31;31;0;0;0;0;0;0;0;0;0;0;0;0;0;0;162;367;14;620;299;59;41;123;27;954.54;562;1848 -194;'682;Saudi Arabia;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;7266;4001;2633;2001;2001;500;1200;3600;1700;1600;2000;2300;2300;2800;2600;2600;2600;2600;2600;2600;8100;8100;8100;48021;56117;31110;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -194;'682;Saudi Arabia;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;557;303;374;490;490;252;342;1510;922;1183;1745;2322;2322;2885;2700;2700;2700;2700;2700;2700;6409;6409;6409;17583;23003;13924;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -194;'682;Saudi Arabia;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -194;'682;Saudi Arabia;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -194;'682;Saudi Arabia;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;4000;12000;19000;32000;47000;36000;41000;75000;75000;75000;75000;75000;75000;75000;75000;75000;75000;75000;75000;75000;75000;75000;75000;75000;75000;75000;75000;1000000;1000000;1000000;1000000;1000000;1000000;1000000;1000000;1000000;1000000;1000000;1000000;1000000;1000000;1000000 -194;'682;Saudi Arabia;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41222;59147;78828;98592;111911;40911;73300;72700;47394;157998;129577;160209;110278;144346;178010;224817;177061;167599;218789;297312;212892;178560;283283;225351;225279;300527;317253;222566;226593;142105.59;191328;230000 -194;'682;Saudi Arabia;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28899;32792;36836;49257;55768;24731;30884;30444;24141;70473;61779;75121;62701;70373;85816;100799;68824;59747;93318;139668;93980;98246;163782;129385;124991;172494;182334;107822;105181;102336.31;176991;154855 -194;'682;Saudi Arabia;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;2000;6000;10000;16000;23000;18000;21000;37000;37000;37000;58848;6692;53021;72538;17338;12638;39700;43500;95600;70600;70600;70600;70600;70600;107139;141667;141667;141667;151017;199459;222571;269577;251388;192965;270118;379985;265229;131976;145260;80202;193340;248945 -194;'682;Saudi Arabia;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;122;838;586;1596;2853;2354;2636;4961;4961;4961;11203;1057;6739;9027;3791;2500;3026;3171;10158;5582;5582;5582;5582;5582;22219;28175;28175;28175;24952;54697;29988;36166;36457;23361;34112;63785;47550;21635;23141;24508;46953;42148 -194;'682;Saudi Arabia;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41143;58634;76854;94392;97511;36611;52000;51400;22194;132798;104377;135009;96983;105629;128192;131917;84161;74699;89741;168264;101457;121912;237759;186058;212951;268304;247964;120376;138275;124040.59;151428;198100 -194;'682;Saudi Arabia;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28885;32776;36405;48731;53708;24173;27430;26990;18894;65226;56532;69874;60546;65018;81278;89509;57534;48457;73353;119703;71531;85995;153950;121075;121175;160857;162976;88680;80391;94646.31;153541;143673 -194;'682;Saudi Arabia;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;638;1521;1138;1138;1138;100;0;0;0;0;0;0;0;0;0;0;0;420;3030;1079;465;1308;548;1976;224;653;290;48;153;40;345 -194;'682;Saudi Arabia;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126;598;483;483;483;58;0;0;0;0;0;0;0;0;0;0;0;244;2353;912;555;1095;654;866;100;204;107;18;69;11;600 -194;'682;Saudi Arabia;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41151;58771;77888;94392;98311;37411;53100;52500;15300;93700;93700;93700;64175;64175;64175;68298;68298;68298;74488;152546;74388;101053;156516;81261;168955;205488;206463;51692;49968;39540.68;68428;81100 -194;'682;Saudi Arabia;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28890;32904;36889;48731;54603;25068;27979;27598;10128;49504;49504;49504;41537;41537;41537;45700;45700;45700;57733;104034;47136;65231;100755;54961;98087;119244;127647;41867;35365;33432.95;74156;64533 -194;'682;Saudi Arabia;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;638;1521;1138;1138;1138;100;0;0;0;0;0;0;0;0;0;0;0;244;2933;1090;581;1425;587;1949;76;157;128;122;201;40;245 -194;'682;Saudi Arabia;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;126;598;483;483;483;58;0;0;0;0;0;0;0;0;0;0;0;139;2248;981;666;1204;695;828;38;56;44;69;97;11;557 -194;'682;Saudi Arabia;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7517;12498;27273;27215;15800.34;27300;18500 -194;'682;Saudi Arabia;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5209;10851;16606;14457;10321.4;26229;11825 -194;'682;Saudi Arabia;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;104;104;25;104;0;200 -194;'682;Saudi Arabia;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;34;34;6;34;0;515 -194;'682;Saudi Arabia;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;522;1711;911;911;911;911;0;0;0;0;0;0;1108;1108;1108;6800;6800;6800;9706;160;8700;9385;414;3272;2601;;;;;;; -194;'682;Saudi Arabia;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;203;552;369;369;369;369;0;0;0;0;0;0;313;313;313;5220;5220;5220;8950;254;7233;7433;392;2627;969;;;;;;; -194;'682;Saudi Arabia;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;638;638;638;638;638;0;0;0;0;0;0;0;0;0;0;0;0;36;36;137;137;3;4;1400;;;;;;; -194;'682;Saudi Arabia;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126;126;126;126;126;0;0;0;0;0;0;0;0;0;0;0;0;17;17;86;86;8;3;201;;;;;;; -194;'682;Saudi Arabia;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102;602;81;81;400;400;0;0;0;0;0;0;2269;2269;2269;700;700;700;3639;1830;2848;1140;46;0;581;;;;;;; -194;'682;Saudi Arabia;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;212;40;40;116;116;0;0;0;0;0;0;1239;1239;1239;495;495;495;1993;933;1728;686;17;0;245;;;;;;; -194;'682;Saudi Arabia;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;145;178;;;;;;; -194;'682;Saudi Arabia;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;121;140;;;;;;; -194;'682;Saudi Arabia;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40519;56321;75862;93400;96200;35300;52000;51400;15100;93600;93600;93600;60698;60698;60698;60698;60698;60698;59704;149582;62576;90264;155842;70718;155292;175642;175644;23422;22257;22419.94;41128;62600 -194;'682;Saudi Arabia;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28642;32012;35996;48322;53223;23688;27430;26990;9997;49447;49447;49447;39928;39928;39928;39928;39928;39928;45919;102025;37984;56921;100189;48528;92231;102325;103769;24541;20650;22580.55;47917;52706 -194;'682;Saudi Arabia;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;883;500;500;500;100;0;0;0;0;0;0;0;0;0;0;0;208;2897;804;295;1272;289;293;76;53;24;23;23;40;45 -194;'682;Saudi Arabia;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;472;357;357;357;58;0;0;0;0;0;0;0;0;0;0;0;122;2231;771;456;1068;447;448;38;22;10;9;9;11;42 -194;'682;Saudi Arabia;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;911;0;0;0;0;0;0;2900;100;100;100;1096;1096;1096;1096;1096;1096;1096;51;51;40;1859;1828;1480;4240;4199;5888;7225;7045.94;11300;9600 -194;'682;Saudi Arabia;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;475;0;0;0;0;0;0;2119;92;92;92;344;344;344;344;344;344;344;32;32;20;697;1009;876;2807;4206;6287;5730;5579.55;10030;7204 -194;'682;Saudi Arabia;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;211;211;211;211;211;211;11;11;11;23;23;0;0 -194;'682;Saudi Arabia;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;406;406;406;406;406;406;6;6;6;9;9;0;0 -194;'682;Saudi Arabia;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34351;48059;72328;93400;82800;35300;52000;51400;10700;87000;87000;87000;53921;53921;53921;53921;53921;53921;48520;144513;61876;89426;153504;67886;153189;170748;170748;17008;14384;15284;29728;53000 -194;'682;Saudi Arabia;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25342;29092;34070;48322;47535;23688;27430;26990;6910;46456;46456;46456;38478;38478;38478;38478;38478;38478;38806;98179;36688;55384;98620;45993;90298;98601;98601;17602;14157;16885;37689;45455 -194;'682;Saudi Arabia;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;883;500;500;500;100;0;0;0;0;0;0;0;0;0;0;0;208;2686;593;84;1061;78;82;65;42;13;0;0;40;45 -194;'682;Saudi Arabia;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;472;357;357;357;58;0;0;0;0;0;0;0;0;0;0;0;122;1825;365;50;662;41;42;32;16;4;0;0;11;42 -194;'682;Saudi Arabia;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;654;697;526;648;90;100;0 -194;'682;Saudi Arabia;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;917;962;652;763;116;198;47 -194;'682;Saudi Arabia;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -194;'682;Saudi Arabia;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -194;'682;Saudi Arabia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;62;0;0;0;0;0;200;300;300;300;839;839;839;839;839;839;624;624;3;3;0;0;0;;;;;;; -194;'682;Saudi Arabia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;0;0;0;0;0;170;144;144;144;192;192;192;192;192;192;529;529;11;11;0;0;0;;;;;;; -194;'682;Saudi Arabia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6118;7289;3472;0;13400;0;0;0;1300;6200;6200;6200;4842;4842;4842;4842;4842;4842;9464;4394;646;795;479;1004;623;;;;;;; -194;'682;Saudi Arabia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3282;2419;1900;0;5688;0;0;0;798;2755;2755;2755;914;914;914;914;914;914;6240;3285;1253;1506;872;1526;1057;;;;;;; -194;'682;Saudi Arabia;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;137;1034;0;800;800;1100;1100;200;100;100;100;100;100;100;100;100;100;1439;974;264;264;214;7271;10481;22329;18321;997;496;1320.4;0;0 -194;'682;Saudi Arabia;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;128;484;0;895;895;549;608;131;57;57;57;57;57;57;57;57;57;871;822;191;191;157;3806;4642;11710;13027;720;258;531;10;2 -194;'682;Saudi Arabia;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;149;149;149;149;78;0;0;0;74;74;0;0 -194;'682;Saudi Arabia;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;124;124;124;124;39;0;0;0;54;54;0;0 -194;'682;Saudi Arabia;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7094;39198;10777;41409;32908;41554;64117;63719;15963;6501;16692;16692;27333;21123;81457;112068;54477;85145;59822;69681;88803;85820.31;83000;117000 -194;'682;Saudi Arabia;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8897;15779;7085;20427;19066;23538;39798;43866;11891;2814;16491;16491;24586;20955;53352;69920;27730;53323;48356;47533;45284;61744.36;79395;79142 -194;'682;Saudi Arabia;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;176;97;138;33;32;110;105;148;496;162;0;26;0;100 -194;'682;Saudi Arabia;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105;105;55;13;15;83;77;62;148;63;3;26;0;43 -194;'682;Saudi Arabia;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7882;1223;10048;10105;487;25081;12590;10113;5240;447;1212;1610.32;4100;4500 -194;'682;Saudi Arabia;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6365;731;9464;6073;433;10893;6281;7523;4469;559;1568;1336.5;4089;4157 -194;'682;Saudi Arabia;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7059;7059;9304;8549;8549;330;146;146;475;51;303;2;0;0 -194;'682;Saudi Arabia;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1623;1623;1517;1388;1388;34;17;17;105;13;51;2;24;40 -194;'682;Saudi Arabia;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;4000;12000;19000;32000;47000;36000;41000;75000;75000;75000;75000;75000;75000;75000;75000;75000;75000;75000;75000;75000;75000;75000;75000;75000;75000;75000;75000;1000000;1000000;1000000;1000000;1000000;1000000;1000000;1000000;1000000;1000000;1000000;1000000;1000000;1000000;1000000 -194;'682;Saudi Arabia;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;513;1974;4200;14400;4300;21300;21300;25200;25200;25200;25200;13295;38717;49818;92900;92900;92900;129048;129048;111435;56648;45524;39293;12328;32223;69289;102190;88318;18065;39900;31900 -194;'682;Saudi Arabia;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;16;431;526;2060;558;3454;3454;5247;5247;5247;5247;2155;5355;4538;11290;11290;11290;19965;19965;22449;12251;9832;8310;3816;11637;19358;19142;24790;7690;23450;11182 -194;'682;Saudi Arabia;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;2000;6000;10000;16000;23000;18000;21000;37000;37000;37000;58848;6054;51500;71400;16200;11500;39600;43500;95600;70600;70600;70600;70600;70600;107139;141667;141667;141667;150597;196429;221492;269112;250080;192417;268142;379761;264576;131686;145212;80049;193300;248600 -194;'682;Saudi Arabia;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;122;838;586;1596;2853;2354;2636;4961;4961;4961;11203;931;6141;8544;3308;2017;2968;3171;10158;5582;5582;5582;5582;5582;22219;28175;28175;28175;24708;52344;29076;35611;35362;22707;33246;63685;47346;21528;23123;24439;46942;41548 -194;'682;Saudi Arabia;1876;Paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50000;70000;70000;214000;279000;279000;279000;279000;279000;1150000;1186000;1186000;1186000;1186000;1186000;1186000;1186000;1186000;1186000;1186000;1186000;1186000;1186000;1186000 -194;'682;Saudi Arabia;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;12800;14900;14900;16600;29900;30400;30700;36900;46200;62700;88900;101900;104800;105900;146900;105000;142200;111900;135822;169399;142890;44194;114279;294079;253747;384078;557416;605500;311000;425300;539340;575940;500000;509900;481907;496241;769289;772541;775442;1643416;1637196;1640397;1199575;1312424;1346772;1337995;1298184;1410036;1221746;1174008;1187424;1104264;1147676;1103290.03;1354600;1234800 -194;'682;Saudi Arabia;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;3854;3683;3897;4304;11301;14930;22655;24548;30833;72407;61302;72767;83809;106994;121580;84204;91210;73549;102743;126990;119036;51065;108819;247382;158641;237463;427469;461409;231028;301407;434382;532598;411140;366092;326249;325940;477782;481923;484509;1344940;1336174;1334607;1058119;1239468;1230571;1229048;1203992;1225711;1013443;955328;1080846;948184;856553;984660;1515450;1091858 -194;'682;Saudi Arabia;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93886;952;9950;9400;2118;3600;17500;18999;14700;17300;17300;17300;25746;25746;182392;226934;226934;226934;259176;182523;279798;273814;248260;255567;335124;249863;252302;318796;369438;365588.77;279000;324800 -194;'682;Saudi Arabia;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90189;754;8780;9345;2290;2983;14766;16085;9558;10698;10698;10698;12555;12555;96877;158731;158731;158731;177301;191344;186187;191016;197201;189353;190156;163874;239560;195617;213323;304181.68;263038;189869 -194;'682;Saudi Arabia;2042;Graphic papers;5610;Import quantity;t;;;;;;;;5900;7900;7200;8200;8000;19000;13800;14500;17000;26300;42700;73600;58200;61700;87900;60800;93200;79200;103122;136699;110190;14194;84279;84279;79957;136327;105416;85200;74700;120300;175300;186800;170400;170200;157500;185560;328047;328047;328047;524300;524300;524300;561232;524726;587388;517095;482513;429190;368977;383138;383071;348037;359664;376113.9;354100;306500 -194;'682;Saudi Arabia;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;1286;2507;2337;2253;2921;8531;10565;11888;11216;18206;32167;55419;51056;54880;72516;54204;64803;47549;73743;94990;84036;14002;71756;71756;61482;88517;74969;65152;55912;97560;120916;106738;149701;131995;123271;139342;211575;211575;211575;452531;452531;452531;560320;573629;587005;520879;477693;372661;304086;318250;378034;338095;301284;368382.54;456704;324280 -194;'682;Saudi Arabia;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;146;277;1450;1200;218;400;0;0;5800;4800;4800;4800;4218;4218;38723;37319;37319;37319;66184;58777;38086;28652;31029;39550;40505;21755;22929;30918;24822;47050.73;48500;70800 -194;'682;Saudi Arabia;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;170;229;1304;801;131;140;0;0;4442;3911;3911;3911;3263;3263;17377;28509;28509;28509;37991;36896;28298;23586;22346;26552;20736;12958;15544;16491;14939;35525.58;40372;36824 -194;'682;Saudi Arabia;1671;Newsprint;5610;Import quantity;t;;;;;;;;700;700;500;1700;2000;8000;2400;2300;2500;9100;10300;15800;13000;6400;5500;5500;13900;28000;28000;28000;28000;1500;7000;7000;10943;29566;26069;25200;42200;36300;26800;39600;40600;35500;35500;35500;55596;55596;55596;92500;92500;92500;120520;103436;109537;75398;53151;69874;44834;44491;40558;12089;21390;14797.41;28700;17800 -194;'682;Saudi Arabia;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;120;121;102;395;329;2748;1752;1809;1542;5216;5867;10043;10947;5176;4500;4500;7342;15000;15000;15000;15000;1068;5000;5000;4520;11201;12816;15754;23826;16808;13689;18262;38048;28509;28509;28509;29700;29700;29700;81512;81512;81512;103075;92757;90208;60975;46065;53486;29950;31094;34036;10260;14277;10473.25;33149;14775 -194;'682;Saudi Arabia;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;;150;400;200;400;0;0;0;0;0;0;0;0;2642;1763;1763;1763;1950;690;3778;514;2010;2318;3907;316;55;1109;924;159;200;100 -194;'682;Saudi Arabia;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;;69;267;119;140;0;0;0;0;0;0;0;0;1252;687;687;687;922;505;1880;471;1349;1191;1204;109;59;636;453;95;202;33 -194;'682;Saudi Arabia;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;5200;7200;6700;6500;6000;11000;11400;12200;14500;17200;32400;57800;45200;55300;82400;55300;79300;51200;75122;108699;82190;12694;77279;77279;69014;106761;79347;60000;32500;84000;148500;147200;129800;134700;122000;150060;272451;272451;272451;431800;431800;431800;440712;421290;477851;441697;429362;359316;324143;338647;342513;335948;338274;361316.5;325400;288700 -194;'682;Saudi Arabia;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;1166;2386;2235;1858;2592;5783;8813;10079;9674;12990;26300;45376;40109;49704;68016;49704;57461;32549;58743;79990;69036;12934;66756;66756;56962;77316;62153;49398;32086;80752;107227;88476;111653;103486;94762;110833;181875;181875;181875;371019;371019;371019;457245;480872;496797;459904;431628;319175;274136;287156;343998;327835;287007;357909.29;423555;309505 -194;'682;Saudi Arabia;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;143;277;1300;800;18;0;;;5800;4800;4800;4800;4218;4218;36081;35556;35556;35556;64234;58087;34308;28138;29019;37232;36598;21439;22874;29809;23898;46891.73;48300;70700 -194;'682;Saudi Arabia;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;168;229;1235;534;12;0;;;4442;3911;3911;3911;3263;3263;16125;27822;27822;27822;37069;36391;26418;23115;20997;25361;19532;12849;15485;15855;14486;35430.58;40170;36791 -194;'682;Saudi Arabia;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20021;19846;17500;18800;6100;34160;26277;26277;26277;132700;132700;132700;132700;79983;82658;68354;78208;66513;71746;62262;59242;62095;83759;95375;91300;74400 -194;'682;Saudi Arabia;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12259;10115;12765;12468;3744;19815;14644;14644;14644;91902;91902;91902;91902;75116;74218;62507;71661;59952;62458;50690;55713;55953;72862;99447;110850;76583 -194;'682;Saudi Arabia;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2200;2500;2500;2500;2500;2500;2500;2500;2500;2500;8891;14194;14990;10215;14336;13472;14859;14802;13545;16018;18268;35663.74;33800;58500 -194;'682;Saudi Arabia;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1577;2038;2038;2038;2038;2038;2038;2038;2038;2038;5575;7488;11057;9107;11323;9943;7171;7642;7768;7695;9276;24614.61;25574;28304 -194;'682;Saudi Arabia;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83860;83126;73300;76200;76200;76200;113211;113211;113211;91700;91700;91700;93077;119383;131139;88880;79777;91116;90386;106269;90758;105959;84666;68086.52;78200;55000 -194;'682;Saudi Arabia;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62147;51279;64712;57017;57017;57017;76364;76364;76364;59604;59604;59604;93566;124271;125165;86170;74680;86718;81717;92610;93075;103256;75624;67784.81;107669;76542 -194;'682;Saudi Arabia;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3300;1800;1800;1800;1000;1000;1000;1000;1000;1000;1587;1786;1153;786;973;1539;19303;6374;8425;1720;778;3455.62;9300;9300 -194;'682;Saudi Arabia;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2514;1489;1489;1489;500;500;500;500;500;500;1013;1625;607;1058;962;2346;10702;4845;6172;2502;2019;3565.53;8092;5661 -194;'682;Saudi Arabia;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44619;44228;39000;39700;39700;39700;132963;132963;132963;207400;207400;207400;214935;221924;264054;284463;271377;201687;162011;170116;192513;167894;169849;197854.98;155900;159300 -194;'682;Saudi Arabia;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32821;27082;34176;34001;34001;34001;90867;90867;90867;219513;219513;219513;271777;281485;297414;311227;285287;172505;129961;143856;195210;168626;138521;190677.48;205036;156380 -194;'682;Saudi Arabia;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;500;500;500;718;718;32581;32056;32056;32056;53756;42107;18165;17137;13710;22221;2436;263;904;12071;4852;7772.37;5200;2900 -194;'682;Saudi Arabia;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;351;384;384;384;725;725;13587;25284;25284;25284;30481;27278;14754;12950;8712;13072;1659;362;1545;5658;3191;7250.43;6504;2826 -194;'682;Saudi Arabia;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50000;70000;70000;214000;279000;279000;279000;279000;279000;1150000;1186000;1186000;1186000;1186000;1186000;1186000;1186000;1186000;1186000;1186000;1186000;1186000;1186000;1186000 -194;'682;Saudi Arabia;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;6900;7000;7700;8400;21900;11400;16900;22400;29200;36400;46200;28300;46600;44200;59000;44200;49000;32700;32700;32700;32700;30000;30000;209800;173790;247751;452000;520300;236300;305000;364040;389140;329600;339700;324407;310681;441242;444494;447395;1119116;1112896;1116097;638343;787698;759384;820900;815671;980846;852769;790870;804353;756227;788012;727176.13;1000500;928300 -194;'682;Saudi Arabia;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;2568;1176;1560;2051;8380;6399;12090;12660;19617;54201;29135;17348;32753;52114;49064;30000;26407;26000;29000;32000;35000;37063;37063;175626;97159;148946;352500;396257;175116;203847;313466;425860;261439;234097;202978;186598;266207;270348;272934;892409;883643;882076;497799;665839;643566;708169;726299;853050;709357;637078;702812;610089;555269;616277.46;1058746;767578 -194;'682;Saudi Arabia;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93740;675;8500;8200;1900;3200;17500;18999;8900;12500;12500;12500;21528;21528;143669;189615;189615;189615;192992;123746;241712;245162;217231;216017;294619;228108;229373;287878;344616;318538.03;230500;254000 -194;'682;Saudi Arabia;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90019;525;7476;8544;2159;2843;14766;16085;5116;6787;6787;6787;9292;9292;79500;130222;130222;130222;139310;154448;157889;167430;174855;162801;169420;150916;224016;179126;198384;268656.1;222666;153045 -194;'682;Saudi Arabia;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50000;50000;50000;156000;199000;199000;199000;199000;199000;200000;192000;192000;192000;192000;192000;192000;192000;192000;192000;192000;192000;192000;192000;192000 -194;'682;Saudi Arabia;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49039;37541;23700;41000;36007;24281;22553;25805;28706;30217;23997;27198;48153;45909;56866;56864;85427;109019;104479;105380;97338;100281;56941;36097.78;134100;94400 -194;'682;Saudi Arabia;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40133;33806;22267;41379;38292;28561;27756;31897;34483;42272;33506;31939;64750;60847;77631;75092;110383;137873;127159;121147;128384;128212;60959;44307.75;208567;122607 -194;'682;Saudi Arabia;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13030;10509;13748;8604;3319;3863;14827;2381;3089;2481;1244;5397.99;4300;7300 -194;'682;Saudi Arabia;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19692;13961;21136;10172;6298;7303;11880;4456;7185;5940;2997;6932.14;8227;11302 -194;'682;Saudi Arabia;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20000;20000;58000;80000;80000;80000;80000;80000;950000;994000;994000;994000;994000;994000;994000;994000;994000;994000;994000;994000;994000;994000;994000 -194;'682;Saudi Arabia;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;315001;351599;257800;241700;231400;229400;378689;378689;378689;516699;516699;516699;552760;704880;662861;750632;721859;865451;741573;677909;701108;650889;727412;684962.88;844600;816800 -194;'682;Saudi Arabia;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;273333;392054;184767;144971;116939;110290;205417;205417;205417;271022;271022;271022;396133;566008;528442;619620;606769;707895;575210;507673;566365;473654;486918;559656.34;809733;618251 -194;'682;Saudi Arabia;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17500;18999;8900;12500;12500;12500;21528;21528;113376;152055;152055;152055;174111;94975;207497;229134;203579;206565;268404;206468;204461;262018;328480;281222.24;190200;233900 -194;'682;Saudi Arabia;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14766;16085;5116;6787;6787;6787;9292;9292;67511;110446;110446;110446;116219;129773;127072;151924;158418;152516;138759;110234;178499;139287;174730;237318.17;182947;134859 -194;'682;Saudi Arabia;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;6900;7000;7700;8400;21900;11400;16900;22400;29200;36400;46200;28300;46600;44200;59000;44200;49000;32700;32700;32700;32700;30000;30000;209800;173790;247751;452000;520300;236300;305000;;;;;;;;;;;;;;;;;;;;;;;;;; -194;'682;Saudi Arabia;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;2568;1176;1560;2051;8380;6399;12090;12660;19617;54201;29135;17348;32753;52114;49064;30000;26407;26000;29000;32000;35000;37063;37063;175626;97159;148946;352500;396257;175116;203847;;;;;;;;;;;;;;;;;;;;;;;;;; -194;'682;Saudi Arabia;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93740;675;8500;8200;1900;3200;;;;;;;;;;;;;;;;;;;;;;;;;; -194;'682;Saudi Arabia;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90019;525;7476;8544;2159;2843;;;;;;;;;;;;;;;;;;;;;;;;;; -194;'682;Saudi Arabia;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20000;20000;58000;80000;80000;80000;80000;80000;800000;844000;844000;844000;844000;844000;844000;844000;844000;844000;844000;844000;844000;844000;844000 -194;'682;Saudi Arabia;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;141127;157524;115500;117900;107600;107600;170384;170384;170384;300000;300000;300000;351052;351052;397157;465222;432601;465736;385330;351853;360234;348171;375624;373473;504600;443300 -194;'682;Saudi Arabia;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90499;129806;61175;63016;34984;34984;68974;68974;68974;121422;121422;121422;200239;200239;214513;276687;252734;246094;181215;182408;217793;175596;176020;229246;370746;216105 -194;'682;Saudi Arabia;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;983;1067;500;4800;4800;4800;15504;15504;35298;35984;35984;35984;90148;24195;143653;165603;150105;160616;214617;161530;143187;207978;263378;211530.48;138500;169500 -194;'682;Saudi Arabia;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;124;135;43;2173;2173;2173;6063;6063;24162;33081;33081;33081;53283;14915;73280;90399;90981;90620;90432;75685;83011;85521;104189;146684.63;113315;75675 -194;'682;Saudi Arabia;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000 -194;'682;Saudi Arabia;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53152;59327;43500;26000;26000;26000;81627;81627;81627;87300;87300;87300;82722;235799;136018;143651;157571;264145;256897;215938;226912;205625;224840;198361.88;218700;243600 -194;'682;Saudi Arabia;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63188;90634;42714;18153;18153;18153;67191;67191;67191;78773;78773;78773;84424;242603;174993;194899;214492;331157;302074;224128;228742;201616;210234;224179.25;279703;263156 -194;'682;Saudi Arabia;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;590;640;300;1400;1400;1400;1400;1400;6342;18571;18571;18571;7645;66153;808;3980;8446;9688;6372;2403;17945;8050;8667;9714.76;8400;4900 -194;'682;Saudi Arabia;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1085;1182;376;1300;1300;1300;1300;1300;2706;9453;9453;9453;4794;109584;1077;15519;30512;36139;18254;3264;56024;22644;22495;24130.54;24053;10337 -194;'682;Saudi Arabia;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86509;96560;70800;70800;70800;70800;100379;100379;100379;103100;103100;103100;111876;82692;95100;111286;101970;109339;78241;88498;89424;80827;110615;94399;101200;111800 -194;'682;Saudi Arabia;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84410;121073;57059;45153;45153;45153;60425;60425;60425;62000;62000;62000;106752;89581;106054;118368;112409;105630;75199;82932;99455;82748;88153;91754.09;138842;120982 -194;'682;Saudi Arabia;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7669;8326;3900;1900;1900;1900;2910;2910;71453;97453;97453;97453;74998;4622;63031;58094;45007;36047;47366;42487;43131;42437;56424;56567;39700;59200 -194;'682;Saudi Arabia;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6823;7433;2364;1254;1254;1254;1314;1314;40216;67872;67872;67872;57307;5264;52705;45276;36918;25521;30022;31266;39306;29549;48032;64020;42431;48384 -194;'682;Saudi Arabia;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34213;38188;28000;27000;27000;25000;26299;26299;26299;26299;26299;26299;7110;35337;34586;30473;29717;26231;21105;21620;24538;16266;16333;18729;20100;18100 -194;'682;Saudi Arabia;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35236;50541;23819;18649;18649;12000;8827;8827;8827;8827;8827;8827;4718;33585;32882;29666;27134;25014;16722;18205;20375;13694;12511;14477;20442;18008 -194;'682;Saudi Arabia;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8258;8966;4200;4400;4400;4400;1714;1714;283;47;47;47;1320;5;5;1457;21;214;49;48;198;3553;11;3410;3600;300 -194;'682;Saudi Arabia;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6734;7335;2333;2060;2060;2060;615;615;427;40;40;40;835;10;10;730;7;236;51;19;158;1573;14;2483;3148;463 -194;'682;Saudi Arabia;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48100;57000;57000;57000;40000;40000;40000;572200;572200;572200;37430;36909;39657;13404;8385;6376;6717;7581;5907;5057;3659;6115.48;21800;17100 -194;'682;Saudi Arabia;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54405;47747;47747;47747;33034;33034;33034;579115;579115;579115;36916;38984;37493;13457;9147;7282;6988;8258;8063;8223;7392;12313.36;40446;26720 -194;'682;Saudi Arabia;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30293;37560;37560;37560;5851;18262;20467;7424;10333;5589;11388;19259;21823;23379;14892;31917.8;36000;12800 -194;'682;Saudi Arabia;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11989;19776;19776;19776;3399;10714;9681;5334;10139;2982;18781;36226;38332;33899;20657;24405.8;31492;6884 -194;'682;Saudi Arabia;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1096833;1017439;1136740;994430;1301210;1297603;1444600 -194;'682;Saudi Arabia;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58274;63837;11850;30640;45247;47177;44238 -194;'682;Saudi Arabia;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15349;16309;14045;13843;13837;18105;10477 -194;'682;Saudi Arabia;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2895;1398;192;477;1647;2711;719 -194;'682;Saudi Arabia;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6638;10000;9873;10518;10762;14217;6075 -194;'682;Saudi Arabia;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2334;748;144;436;1414;2582;667 -194;'682;Saudi Arabia;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8711;6309;4172;3325;3075;3888;4402 -194;'682;Saudi Arabia;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;561;650;48;41;233;129;52 -194;'682;Saudi Arabia;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15652;11532;18147;17685;15514;24099;21482 -194;'682;Saudi Arabia;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6004;8190;3903;3635;5014;5613;4880 -194;'682;Saudi Arabia;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17143;14200;20270;20017;37765;45384;43790 -194;'682;Saudi Arabia;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;176;243;588;1389;2510;2143 -194;'682;Saudi Arabia;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62829;55597;37152;35396;44219;63789;80454 -194;'682;Saudi Arabia;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2061;2526;981;2128;2036;2353;2108 -194;'682;Saudi Arabia;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;100 -194;'682;Saudi Arabia;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3319;958 -194;'682;Saudi Arabia;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -194;'682;Saudi Arabia;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -194;'682;Saudi Arabia;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;411;6 -194;'682;Saudi Arabia;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;593;4 -194;'682;Saudi Arabia;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -194;'682;Saudi Arabia;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -194;'682;Saudi Arabia;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;100 -194;'682;Saudi Arabia;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1408;399 -194;'682;Saudi Arabia;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;12 -194;'682;Saudi Arabia;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;37 -194;'682;Saudi Arabia;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;970827;897517;1025289;893114;1113178;1027057;1057097 -194;'682;Saudi Arabia;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47005;50572;5662;22764;29760;25853;29207 -194;'682;Saudi Arabia;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3502;5536;4783;2740;20126;43813;163196 -194;'682;Saudi Arabia;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;433;699;655;3716;4574;2032 -194;'682;Saudi Arabia;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11531;16748;17054;11635;56571;75356;68104 -194;'682;Saudi Arabia;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;269;542;170;393;1685;3563;3149 -194;'682;Saudi Arabia;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;572263;587610;640350;624798;622360;738527;753348 -194;'682;Saudi Arabia;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;432076;467710;419162;405175;395580;377574;402376 -194;'682;Saudi Arabia;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1637;2312;5501;3492;5796;8892;8366 -194;'682;Saudi Arabia;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1283;1612;2620;1785;5533;4490;4258 -194;'682;Saudi Arabia;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112901;114618;111411;110763;133416;167556;150660 -194;'682;Saudi Arabia;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37470;26888;15312;23373;30366;12163;4752 -194;'682;Saudi Arabia;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;138647;129585;145407;209519;137868;119525;153451 -194;'682;Saudi Arabia;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109134;85148;74615;72535;67076;66796;62346 -194;'682;Saudi Arabia;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119825;139995;153454;116380;133552;199949;205187 -194;'682;Saudi Arabia;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;213348;198089;255379;252539;206392;255668;275846 -194;'682;Saudi Arabia;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;199253;201100;224577;184644;211728;242605;235684 -194;'682;Saudi Arabia;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70841;155973;71236;54943;86213;38457;55174 -195;'686;Senegal;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;166623;193337;197339;200809;250851.08;303984.67;276158 -195;'686;Senegal;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22312;24455;22258;24044;45544.27;24444.37;27284.37 -195;'686;Senegal;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;2341;2358;3015;1804;1968;2406;3173;2938;3007;3764;3899;5069;7158;9231;9576;12938;12598;13432;16971;18141;30504;35301;31926;28326;22092;19228;23412;36359;28074;33082;28124;16581;24679;30731;28892;23707;22721;23549;45294;40918;50893;52519;52519;52519;52519;52519;95906;123883;87686;72992;88370;99589;102290;93541;85727;94880;99891;113046;119024;117276;152283.08;202869.67;167670 -195;'686;Senegal;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1277;101;101;91;91;11;11;110;110;2056;2056;2056;2056;2056;2056;2056;7167;6036;4950;7380.9;9295.65;8856.76;7622;3735;5340;7712;7853;5063;3393;7602.27;4993.36;6130.36 -195;'686;Senegal;1861;Roundwood;5516;Production;m3;3174505;3234378;3295213;3357027;3420838;3485663;3551522;3619433;3688416;3758489;3837188;3896194;4016927;4089456;4142760;4181657;4276611;4401699;4441726;4546762;4650203;4651752;4732033;4856974;4932199;5033339;5103891;5165480;5264854;5325260;5395308;5472288;5562768;5624875;5628122;5700440;5780665;5828251;5877253;5907579;5939395;5971559;6004072;6036939;6070164;6099747;6129600;6159800;6190367;6215205;6256552;6282154;6308011;6370127;6372504;6386178;6400008;6413996;6428141;6442444;6459165;6476059;6493126 -195;'686;Senegal;1861;Roundwood;5616;Import quantity;m3;23800;23800;22900;8400;6000;9300;15400;24000;25800;33100;33100;9000;26000;23300;25100;24500;20600;18600;40000;36700;36700;33900;29000;33200;25300;19500;22700;22700;23200;;84;820;17369;67069;16000;24500;16800;9800;6800;9400;21000;22900;22900;22900;22900;22900;22900;12928;10784;4910;4260;2852;2605;1714;5188;992;8536;11401;4207;9882;8702;10450.09;983096 -195;'686;Senegal;1861;Roundwood;5622;Import value;1000 USD;547;547;591;59;50;325;450;848;865;1100;1100;450;1443;1400;1750;1750;1750;1700;3700;4100;4100;3700;3200;4400;3300;2017;2867;2867;2207;;7;52;2116;8012;2005;3076;2090;1190;937;1231;3297;3789;3789;3789;3789;3789;3789;3177;3088;1989;1768;643;344;241;891;236;2402;3530;1621;2167;1998;3355.39;3175 -195;'686;Senegal;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;271;271;271;271;0;0;0;0;0;0;0;0;0;0;0;115;76;1147;1147;253;5886;14008;2455;2207;374;170;7058;139;107;140;94 -195;'686;Senegal;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;80;80;80;0;0;0;0;0;0;0;0;0;0;0;14;21;322;322;572;837;2296;687;639;270;128;496;45;29;73;21 -195;'686;Senegal;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 -195;'686;Senegal;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8198;8413;2667;9476;7657;8700.09;7617 -195;'686;Senegal;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2290;2613;1051;2065;1213;2150.39;1736 -195;'686;Senegal;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;109;0;0;38;0 -195;'686;Senegal;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;17;0;0;50;0 -195;'686;Senegal;1863;Roundwood, non-coniferous;5516;Production;m3;3174505;3234378;3295213;3357027;3420838;3485663;3551522;3619433;3688416;3758489;3837188;3896194;4016927;4089456;4142760;4181657;4276611;4401699;4441726;4546762;4650203;4651752;4732033;4856974;4932199;5033339;5103891;5165480;5264854;5325260;5395308;5472288;5562768;5624875;5628122;5700440;5780665;5828251;5877253;5907579;5939395;5971559;6004072;6036939;6070164;6099747;6129600;6159800;6190367;6215205;6256552;6282154;6308011;6370127;6372504;6386178;6400008;6413996;6428141;6442444;6459165;6476059;6493126 -195;'686;Senegal;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;338;2988;1540;406;1045;1750;975479 -195;'686;Senegal;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112;917;570;102;785;1205;1439 -195;'686;Senegal;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;374;170;6949;139;107;102;94 -195;'686;Senegal;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;270;128;479;45;29;23;21 -195;'686;Senegal;1864;Wood fuel;5516;Production;m3;2907505;2960378;3014213;3069027;3124838;3181663;3239522;3298433;3358416;3419489;3488188;3537194;3646927;3708456;3750760;3777657;3861611;3974699;4002726;4094762;4185203;4173752;4240033;4350974;4408199;4458339;4512891;4559480;4642854;4687260;4741308;4802288;4876768;4921875;4908122;4962440;5024665;5053251;5083253;5113579;5145395;5177559;5210072;5242939;5276164;5305747;5335600;5365800;5396367;5427205;5452552;5478154;5504011;5530127;5556504;5570178;5584008;5597996;5612141;5626444;5643165;5660059;5677126 -195;'686;Senegal;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;72;30;30;30;30;23;3;3;;;;;1;1.09;1 -195;'686;Senegal;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;4;4;4;4;12;1;1;;;;;0;0.39;0 -195;'686;Senegal;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;28;28;16;2428;9137;25;25;;;6949;94;94;94;94 -195;'686;Senegal;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;3;417;527;10;10;;;479;21;21;21;21 -195;'686;Senegal;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 -195;'686;Senegal;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1.09;1 -195;'686;Senegal;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0.39;0 -195;'686;Senegal;1628;Wood fuel, non-coniferous;5516;Production;m3;2907505;2960378;3014213;3069027;3124838;3181663;3239522;3298433;3358416;3419489;3488188;3537194;3646927;3708456;3750760;3777657;3861611;3974699;4002726;4094762;4185203;4173752;4240033;4350974;4408199;4458339;4512891;4559480;4642854;4687260;4741308;4802288;4876768;4921875;4908122;4962440;5024665;5053251;5083253;5113579;5145395;5177559;5210072;5242939;5276164;5305747;5335600;5365800;5396367;5427205;5452552;5478154;5504011;5530127;5556504;5570178;5584008;5597996;5612141;5626444;5643165;5660059;5677126 -195;'686;Senegal;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6949;94;94;94;94 -195;'686;Senegal;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;479;21;21;21;21 -195;'686;Senegal;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;72;30;30;30;30;23;3;3;;;;;;; -195;'686;Senegal;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;4;4;4;4;12;1;1;;;;;;; -195;'686;Senegal;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;28;28;16;2428;9137;25;25;;;;;;; -195;'686;Senegal;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;3;417;527;10;10;;;;;;; -195;'686;Senegal;1865;Industrial roundwood;5516;Production;m3;267000;274000;281000;288000;296000;304000;312000;321000;330000;339000;349000;359000;370000;381000;392000;404000;415000;427000;439000;452000;465000;478000;492000;506000;524000;575000;591000;606000;622000;638000;654000;670000;686000;703000;720000;738000;756000;775000;794000;794000;794000;794000;794000;794000;794000;794000;794000;794000;794000;788000;804000;804000;804000;840000;816000;816000;816000;816000;816000;816000;816000;816000;816000 -195;'686;Senegal;1865;Industrial roundwood;5616;Import quantity;m3;23800;23800;22900;8400;6000;9300;15400;24000;25800;33100;33100;9000;26000;23300;25100;24500;20600;18600;40000;36700;36700;33900;29000;33200;25300;19500;22700;22700;23200;;84;820;17369;67069;16000;24500;16800;9800;6800;9400;21000;22900;22900;22900;22900;22900;22900;12856;10712;4880;4230;2822;2575;1691;5185;989;8536;11401;4207;9882;8701;10449;983095 -195;'686;Senegal;1865;Industrial roundwood;5622;Import value;1000 USD;547;547;591;59;50;325;450;848;865;1100;1100;450;1443;1400;1750;1750;1750;1700;3700;4100;4100;3700;3200;4400;3300;2017;2867;2867;2207;;7;52;2116;8012;2005;3076;2090;1190;937;1231;3297;3789;3789;3789;3789;3789;3789;3168;3079;1985;1764;639;340;229;890;235;2402;3530;1621;2167;1998;3355;3175 -195;'686;Senegal;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;271;271;271;271;0;0;0;0;0;0;0;0;0;0;0;87;48;1119;1119;237;3458;4871;2430;2182;374;170;109;45;13;46;0 -195;'686;Senegal;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;80;80;80;0;0;0;0;0;0;0;0;0;0;0;9;16;317;317;569;420;1769;677;629;270;128;17;24;8;52;0 -195;'686;Senegal;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;820;1069;1069;800;800;800;800;6400;6400;6900;6900;6900;6900;6900;6900;6900;6900;4441;2010;2010;2010;2138;1239;3985;329;8198;8413;2667;9476;7656;8699;7616 -195;'686;Senegal;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;52;112;112;90;90;90;90;901;901;1081;1081;1081;1081;1081;1081;1081;1081;271;123;123;123;130;76;447;44;2290;2613;1051;2065;1213;2150;1736 -195;'686;Senegal;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;41;41;41;41;134;134;0;0;0;0;109;0;0;38;0 -195;'686;Senegal;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;2;2;2;2;7;7;0;0;0;0;17;0;0;50;0 -195;'686;Senegal;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;820;1069;1069;800;800;800;800;6400;6400;6900;6900;6900;6900;6900;6900;6900;6900;4441;2010;2010;2010;2138;1239;3985;329;8198;8413;2667;9476;7656;8699;7616 -195;'686;Senegal;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;52;112;112;90;90;90;90;901;901;1081;1081;1081;1081;1081;1081;1081;1081;271;123;123;123;130;76;447;44;2290;2613;1051;2065;1213;2150;1736 -195;'686;Senegal;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;41;41;41;41;134;134;0;0;0;0;109;0;0;38;0 -195;'686;Senegal;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;2;2;2;2;7;7;0;0;0;0;17;0;0;50;0 -195;'686;Senegal;1867;Industrial roundwood, non-coniferous;5516;Production;m3;267000;274000;281000;288000;296000;304000;312000;321000;330000;339000;349000;359000;370000;381000;392000;404000;415000;427000;439000;452000;465000;478000;492000;506000;524000;575000;591000;606000;622000;638000;654000;670000;686000;703000;720000;738000;756000;775000;794000;794000;794000;794000;794000;794000;794000;794000;794000;794000;794000;788000;804000;804000;804000;840000;816000;816000;816000;816000;816000;816000;816000;816000;816000 -195;'686;Senegal;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16300;66000;15200;23700;16000;9000;400;3000;14100;16000;16000;16000;16000;16000;16000;5956;6271;2870;2220;812;437;452;1200;660;338;2988;1540;406;1045;1750;975479 -195;'686;Senegal;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2004;7900;1915;2986;2000;1100;36;330;2216;2708;2708;2708;2708;2708;2708;2087;2808;1862;1641;516;210;153;443;191;112;917;570;102;785;1205;1439 -195;'686;Senegal;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;271;271;271;271;0;0;0;0;0;0;0;0;0;0;0;19;7;1078;1078;196;3324;4737;2430;2182;374;170;0;45;13;8;0 -195;'686;Senegal;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;80;80;80;0;0;0;0;0;0;0;0;0;0;0;5;14;315;315;567;413;1762;677;629;270;128;0;24;8;2;0 -195;'686;Senegal;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16300;66000;15200;23700;16000;9000;400;3000;3000;4900;4900;4900;4900;4900;4900;4955;1552;1119;469;532;308;370;735;125;4;346;82;0;0;749;629987 -195;'686;Senegal;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2004;7900;1915;2986;2000;1100;36;330;330;822;822;822;822;822;822;1348;377;639;418;159;71;91;274;36;1;176;43;0;0;374;1209 -195;'686;Senegal;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;271;271;271;271;0;0;0;0;0;0;0;0;0;0;0;0;3;123;123;50;74;55;2430;2182;374;170;0;18;13;1;0 -195;'686;Senegal;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;80;80;80;0;0;0;0;0;0;0;0;0;0;0;0;4;62;62;23;9;5;677;629;270;128;0;10;8;0;0 -195;'686;Senegal;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11100;11100;11100;11100;11100;11100;11100;1001;4719;1751;1751;280;129;82;465;535;334;2642;1458;406;1045;1001;345492 -195;'686;Senegal;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1886;1886;1886;1886;1886;1886;1886;739;2431;1223;1223;357;139;62;169;155;111;741;527;102;785;831;230 -195;'686;Senegal;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;4;955;955;146;3250;4682;0;0;0;0;0;27;0;7;0 -195;'686;Senegal;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;10;253;253;544;404;1757;0;0;0;0;0;14;0;2;0 -195;'686;Senegal;1868;Sawlogs and veneer logs;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;4000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;34000;50000;50000;50000;86000;62000;62000;62000;62000;62000;62000;62000;62000;62000 -195;'686;Senegal;1868;Sawlogs and veneer logs;5616;Import quantity;m3;23800;23800;22900;8400;6000;9300;15400;24000;25800;33100;33100;9000;26000;23300;25100;24500;20600;18600;40000;36700;36700;33900;29000;33200;25300;19500;22700;22700;23200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -195;'686;Senegal;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;547;547;591;59;50;325;450;848;865;1100;1100;450;1443;1400;1750;1750;1750;1700;3700;4100;4100;3700;3200;4400;3300;2017;2867;2867;2207;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -195;'686;Senegal;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;4000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;34000;50000;50000;50000;86000;62000;62000;62000;62000;62000;62000;62000;62000;62000 -195;'686;Senegal;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;23800;23800;22900;8400;6000;9300;15400;24000;25800;33100;33100;9000;26000;23300;25100;24500;20600;18600;40000;36700;36700;33900;29000;33200;25300;19500;22700;22700;23200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -195;'686;Senegal;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;547;547;591;59;50;325;450;848;865;1100;1100;450;1443;1400;1750;1750;1750;1700;3700;4100;4100;3700;3200;4400;3300;2017;2867;2867;2207;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -195;'686;Senegal;1871;Other industrial roundwood;5516;Production;m3;267000;274000;281000;288000;296000;304000;312000;321000;330000;339000;349000;359000;370000;381000;392000;404000;415000;427000;439000;452000;465000;478000;492000;506000;520000;535000;551000;566000;582000;598000;614000;630000;646000;663000;680000;698000;716000;735000;754000;754000;754000;754000;754000;754000;754000;754000;754000;754000;754000;754000;754000;754000;754000;754000;754000;754000;754000;754000;754000;754000;754000;754000;754000 -195;'686;Senegal;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;267000;274000;281000;288000;296000;304000;312000;321000;330000;339000;349000;359000;370000;381000;392000;404000;415000;427000;439000;452000;465000;478000;492000;506000;520000;535000;551000;566000;582000;598000;614000;630000;646000;663000;680000;698000;716000;735000;754000;754000;754000;754000;754000;754000;754000;754000;754000;754000;754000;754000;754000;754000;754000;754000;754000;754000;754000;754000;754000;754000;754000;754000;754000 -195;'686;Senegal;1630;Wood charcoal;5510;Production;t;110208;110208;110208;110208;110208;110208;110208;110208;110208;110208;110208;110208;110208;110208;110208;110208;93000;84000;98000;110208;82000;71000;105000;106000;150000;170000;150000;120000;90000;150000;136000;114000;110236;100000;75000;90000;110236;110236;110708;110208;110208;110208;110208;110208;110208;110208;110208;110208;110208;300000;300000;300000;300000;300000;300000;300000;300000;300000;300000;300000;300000;300000;300000 -195;'686;Senegal;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;3;6;1;3;16;4;7;10;5;8;37;5;45;116246;139264 -195;'686;Senegal;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;3;9;1;5;39;9;4;9;2;11;22;6;93;42221;16798 -195;'686;Senegal;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;165;28;28;28;28;28;28;500;500;500;500;500;500;500;500;500;52;63;49;49;43;3202;2338;2338;725;40;18;0;23;3;103;3 -195;'686;Senegal;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;11;11;11;11;11;11;110;110;110;110;110;110;110;110;110;6;35;18;18;69;385;231;231;186;6;10;0;6;4;12;2 -195;'686;Senegal;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;100;100;100;100;100;100;100;6;8;39;34;33;45;33;160;53;69;92;2;37;134;23;69 -195;'686;Senegal;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;2;2;2;2;2;2;2;5;7;17;28;23;41;31;47;45;57;65;3;16;62;36;61 -195;'686;Senegal;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;19;8;8;8;27;20;1032;1971;1971;1971;1971;1971 -195;'686;Senegal;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;5;5;4;20;12;78;125;126;126;126;126 -195;'686;Senegal;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;1;2;12;1;2;5;2;2;1;1;64;13;15 -195;'686;Senegal;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;7;2;4;1;1;17;2;2;2;3;37;35;38 -195;'686;Senegal;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;12;1026;1971;1971;1971;1971;1971 -195;'686;Senegal;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;10;77;125;126;126;126;126 -195;'686;Senegal;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;100;100;100;100;100;100;100;6;8;31;33;31;33;32;158;48;67;90;1;36;70;10;54 -195;'686;Senegal;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;2;2;2;2;2;2;2;5;7;12;21;21;37;30;46;28;55;63;1;13;25;1;23 -195;'686;Senegal;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;19;8;8;8;24;8;6;0;0;0;0;0 -195;'686;Senegal;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;5;5;4;12;2;1;0;0;0;0;0 -195;'686;Senegal;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;141;41;19;22;56 -195;'686;Senegal;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;20;8;23;27 -195;'686;Senegal;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0 -195;'686;Senegal;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0 -195;'686;Senegal;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;21 -195;'686;Senegal;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;7 -195;'686;Senegal;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;141;41;19;16;35 -195;'686;Senegal;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;20;8;17;20 -195;'686;Senegal;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0 -195;'686;Senegal;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0 -195;'686;Senegal;1872;Sawnwood;5516;Production;m3;20000;15000;5000;5000;5000;5000;5000;5000;5000;3600;4200;2000;2000;4000;5000;5000;6000;8000;11000;11000;11000;11000;11000;11000;22800;19900;27000;19400;15300;21800;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;17000;25000;25000;25000;43000;31000;31000;31000;31000;31000;31000;31000;31000;31000 -195;'686;Senegal;1872;Sawnwood;5616;Import quantity;m3;13500;13500;17000;1700;6200;6900;4000;7600;9000;9000;9000;6700;8500;8800;8000;15900;23500;20100;10200;5400;5400;13400;9900;11600;19000;11000;13700;13700;15000;15000;11900;12105;21860;21100;32600;29600;29600;29600;48500;54300;85900;85900;85900;85900;85900;85900;85900;81366;60038;60891;65872;43826;38028;43653;36399;51982;57050;65837;172658;148485;155481;157032;176883 -195;'686;Senegal;1872;Sawnwood;5622;Import value;1000 USD;494;494;835;95;320;287;221;410;466;466;466;500;680;790;1100;2200;3300;3000;1600;1343;1343;3350;2500;2400;3900;2904;4247;4247;4622;4700;9646;4337;3766;3622;5600;5100;5100;5100;13972;13836;19722;20856;20856;20856;20856;20856;47987;53710;36274;34958;39636;39413;33786;33617;29601;31222;31866;37301;45734;36312;42323;37124;41959 -195;'686;Senegal;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2787;24;24;0;0;0;0;0;0;800;800;800;800;800;800;800;1710;769;849;951;2719;2130;2239;140;263;19204;8550;4102;1400;794;1091;1083 -195;'686;Senegal;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1078;10;10;0;0;0;0;0;0;273;273;273;273;273;273;273;1381;647;711;842;1590;2421;417;70;194;4541;3975;2351;44;362;459;459 -195;'686;Senegal;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -195;'686;Senegal;1632;Sawnwood, coniferous;5616;Import quantity;m3;4900;4900;5800;600;800;900;500;3500;4700;4700;4700;;;;;;;;;;;;;;;;;;;;;105;260;100;0;0;0;0;100;100;7100;7100;7100;7100;7100;7100;7100;611;390;174;2495;4236;4317;10802;8739;19052;23214;30581;34024;36406;29634;36067;55903 -195;'686;Senegal;1632;Sawnwood, coniferous;5622;Import value;1000 USD;131;131;175;40;50;55;30;210;266;266;266;;;;;;;;;;;;;;;;;;;;;17;43;22;0;0;0;0;26;26;687;687;687;687;687;687;687;232;176;69;1463;1307;1215;3219;2067;4318;5000;7589;5968;6640;6643;7298;12133 -195;'686;Senegal;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;0;0;0;0;0;0;0;0;0;0;0;0;0;41;41;41;41;65;65;18;62;60;18005;6928;0;0;793;672;664 -195;'686;Senegal;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;0;0;0;0;0;0;0;0;0;0;0;0;33;33;33;33;17;17;4;15;12;3848;1707;0;0;182;211;211 -195;'686;Senegal;1633;Sawnwood, non-coniferous;5516;Production;m3;20000;15000;5000;5000;5000;5000;5000;5000;5000;3600;4200;2000;2000;4000;5000;5000;6000;8000;11000;11000;11000;11000;11000;11000;22800;19900;27000;19400;15300;21800;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;23000;17000;25000;25000;25000;43000;31000;31000;31000;31000;31000;31000;31000;31000;31000 -195;'686;Senegal;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;8600;8600;11200;1100;5400;6000;3500;4100;4300;4300;4300;6700;8500;8800;8000;15900;23500;20100;10200;5400;5400;13400;9900;11600;19000;11000;13700;13700;15000;15000;11900;12000;21600;21000;32600;29600;29600;29600;48400;54200;78800;78800;78800;78800;78800;78800;78800;80755;59648;60717;63377;39590;33711;32851;27660;32930;33836;35256;138634;112079;125847;120965;120980 -195;'686;Senegal;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;363;363;660;55;270;232;191;200;200;200;200;500;680;790;1100;2200;3300;3000;1600;1343;1343;3350;2500;2400;3900;2904;4247;4247;4622;4700;9646;4320;3723;3600;5600;5100;5100;5100;13946;13810;19035;20169;20169;20169;20169;20169;47300;53478;36098;34889;38173;38106;32571;30398;27534;26904;26866;29712;39766;29672;35680;29826;29826 -195;'686;Senegal;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2787;19;19;0;0;0;0;0;0;800;800;800;800;800;800;800;1669;728;808;910;2654;2065;2221;78;203;1199;1622;4102;1400;1;419;419 -195;'686;Senegal;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1078;9;9;0;0;0;0;0;0;273;273;273;273;273;273;273;1348;614;678;809;1573;2404;413;55;182;693;2268;2351;44;180;248;248 -195;'686;Senegal;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;200;200;200;200;200;200;200 -195;'686;Senegal;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;14;14;14;0;0;0;200;200;100;100;100;100;100;100;100;203;102;50;165;55;31;191;603;445;1248;1106;1051;2151;4998;2;531 -195;'686;Senegal;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;164;30;30;30;0;0;0;218;218;51;51;51;51;51;51;51;77;82;33;72;46;34;147;955;178;585;389;571;576;2101;20;471 -195;'686;Senegal;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;35;35;35;0.4;173;27;22;12;153;7;1;12;0;6;0;0 -195;'686;Senegal;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;132;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;105;105;105;5.9;50;14;24;13;27;15;1;6;0;2;0;0 -195;'686;Senegal;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -195;'686;Senegal;1873;Wood-based panels;5616;Import quantity;m3;1400;1400;1800;1500;1900;2521;2021;1121;621;621;621;6421;4716;7600;7000;7200;4800;2800;9500;6000;6000;4500;4500;5300;4800;4200;6500;6500;8500;8500;1900;4226;8086;6886;10600;7900;7900;7900;10000;9600;10900;10900;10900;10900;10900;10900;11200;10153;8376;11024;11565;21653;19144;15614;15536;17707;21115;18964;41223;37767;69658.93;76302;54391 -195;'686;Senegal;1873;Wood-based panels;5622;Import value;1000 USD;270;267;389;349;414;499;385;192;78;78;78;1090;858;1400;3000;3000;2200;1300;4400;3629;3629;2800;2800;2100;2000;2263;3776;3776;4646;4646;1513;3280;5987;4843;6981;5155;5155;5155;4300;3760;4169;4169;4169;4169;4169;4169;9510;11005;6809;8488;10573;12578;11751;6222;8972;9966;10925;9906;16294;17660;30320.1;30592;23867 -195;'686;Senegal;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;294;289;958;2598;8548;4910;2449;912;1776;1677;2327;639;108;1294;2332.78;2510.78 -195;'686;Senegal;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;467;259;1016;3417;4297.4;2761.4;2053;837;1311;1144;2012;319;275;1047;1316.37;1495.37 -195;'686;Senegal;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -195;'686;Senegal;1640;Plywood and LVL;5616;Import quantity;m3;1400;1400;1800;1100;1700;2100;1600;700;200;200;200;6000;4400;7600;7000;7200;4800;2800;9500;6000;6000;4500;4500;5300;4800;4200;6500;6500;8500;8500;1900;4000;7300;6500;10200;7500;7500;7500;8400;8000;9000;9000;9000;9000;9000;9000;9300;9754;7584;9720;10372;20958;18320;13970;14224;16250;16884;16461;36051;31076;58547;63041;40300 -195;'686;Senegal;1640;Plywood and LVL;5622;Import value;1000 USD;270;267;389;287;380;456;343;150;38;38;38;1050;780;1400;3000;3000;2200;1300;4400;3629;3629;2800;2800;2100;2000;2263;3776;3776;4646;4646;1513;3200;5700;4700;6900;5074;5074;5074;4108;3568;3835;3835;3835;3835;3835;3835;9176;10567;6392;7889;9598;11951;11151;4902;7897;8893;8444;7763;13314;14321;24843;25718;18684 -195;'686;Senegal;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;291;286;953;2562;8485;4839;2381;844;1708;1613;2277;266;0;1221;2260;2135 -195;'686;Senegal;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;464;256;1013;3247;4162;2618;1835;619;1093;1050;1982;198;224;1015;1280;1280 -195;'686;Senegal;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;132;700;300;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -195;'686;Senegal;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;252;108;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -195;'686;Senegal;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;200;200;100;100;200;200;200;200;200;200;200;97;240;298;129;128;303;258;117;200;278;278;285;473;1738.1;3242;1976 -195;'686;Senegal;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;62;62;62;31;31;62;62;62;62;62;62;62;100;143;97;53;220;189;194;142;148;250;250;292;322;847.18;976;726 -195;'686;Senegal;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;10;1;9;6;6;6;11;11;1;0;0;0;0 -195;'686;Senegal;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;56;0.4;10;84;84;84;9;9;6;0;0;4;1 -195;'686;Senegal;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;11;2;23;6;2;2;22;22;41;21;8;76;26 -195;'686;Senegal;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;17;1;24;5;2;2;11;11;8;25;18;18;25 -195;'686;Senegal;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -195;'686;Senegal;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -195;'686;Senegal;1874;Fibreboard;5616;Import quantity;m3;;;;400;200;421;421;421;421;421;421;421;316;;;;;;;;;;;;;;0;;;;;94;86;86;200;200;200;200;1500;1500;1700;1700;1700;1700;1700;1700;1700;302;552;996;1053;565;498;1380;1193;1255;3931;2203;4846;6197;9365.82;9943;12089 -195;'686;Senegal;1874;Fibreboard;5622;Import value;1000 USD;;;;62;34;43;42;42;40;40;40;40;78;;;;;;;;;;;;;;0;;;;;32;35;35;19;19;19;19;161;161;272;272;272;272;272;272;272;338;274;479;905;406;387;1121;931;923;2220;1882;2680;2992;4611.91;3880;4432 -195;'686;Senegal;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;26;62;62;62;62;62;53;39;372;108;73;72.78;375.78 -195;'686;Senegal;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;2;114;135;133.4;134;134;134;85;21;115;51;32;32.37;214.37 -195;'686;Senegal;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;200;200;200;200;200;94;147;200;501;306;218;663;594;661;1369;833;1373;457;56;228;37 -195;'686;Senegal;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111;111;111;111;111;111;111;69;127;201;553;272;196;660;522;558;1144;776;1118;447;17;88;21 -195;'686;Senegal;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;36;36;36;36;36;36;36;36;1;0.78;0.78 -195;'686;Senegal;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;21;21;21;21;21;21;21;2;2.37;2.37 -195;'686;Senegal;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;163;397;596;483;255;238;644;396;391;1720;1128;3275;5716;9307.82;9007;11851 -195;'686;Senegal;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;198;146;216;266;129;178;381;273;229;721;879;1432;2540;4590.91;3578;4374 -195;'686;Senegal;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;1;1;1;1;1;1;11;2;0;0;0;0;303 -195;'686;Senegal;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;2;2;2;0.4;1;1;1;43;0;0;0;0;0;182 -195;'686;Senegal;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;50;50;200;200;200;200;1500;1500;1500;1500;1500;1500;1500;1500;1500;45;8;200;69;4;42;73;203;203;842;242;198;24;2;708;201 -195;'686;Senegal;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;32;32;19;19;19;19;161;161;161;161;161;161;161;161;161;71;1;62;86;5;13;80;136;136;355;227;130;5;4;214;37 -195;'686;Senegal;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;25;25;25;25;6;1;336;72;72;72;72 -195;'686;Senegal;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112;112;112;112;112;112;21;0;94;30;30;30;30 -195;'686;Senegal;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;400;200;421;421;421;421;421;421;421;316;;;;;;;;;;;;;;0;;;;;43;36;36;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -195;'686;Senegal;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;62;34;43;42;42;40;40;40;40;78;;;;;;;;;;;;;;0;;;;;14;3;3;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -195;'686;Senegal;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 -195;'686;Senegal;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;910;664;991;1079;1019;1000;1000;900;900;900;900;1500;1105;1100;1500;3000;1700;1900;1952;1138;1138;1400;1400;1400;1400;3400;3400;1900;1900;1900;1900;1900;1900;1900;3991;3260;1440;2238;3021;2615;2768;3753;2993;2558;2989;2624;8018;9706.93;14495;13605 -195;'686;Senegal;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;141;126;188;148;160;191;268;169;311;311;311;172;231;277;244;735;276;338;392;265;265;359;359;359;359;1209;1209;405;405;405;405;405;405;405;1394;754;461;753;1156;1054;993;999;884;935;1026;904;2198;2779.63;10948;10675 -195;'686;Senegal;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;180;180;77;77;323;36;116;552;151;479;479;155;199;360;1137;1137 -195;'686;Senegal;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;72;13;13;23;3;6;182;52;65;65;211;41;70;392;392 -195;'686;Senegal;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;87;87;100;100;100;100;1700;1700;300;300;300;300;300;300;300;512;345;272;397;697;773;499;643;741;1051;1482;1258;4855;6644.1;9132;8001 -195;'686;Senegal;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;54;54;90;90;90;90;907;907;208;208;208;208;208;208;208;601;335;300;445;796;780;422;455;493;705;796;722;1825;2384.65;10479;9950 -195;'686;Senegal;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;28;3;3;3;3;3;608;608 -195;'686;Senegal;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;16;10;10;10;10;10;272;272 -195;'686;Senegal;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;87;87;100;100;100;100;1700;1700;300;300;300;300;300;300;300;512;345;272;397;615;691;505;649;647;1028;1438;1253;4850;6639.1;9123;7992 -195;'686;Senegal;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;54;54;90;90;90;90;907;907;208;208;208;208;208;208;208;601;335;300;445;753;737;407;440;409;663;752;713;1816;2375.65;10475;9946 -195;'686;Senegal;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;28;2;2;2;2;2;607;607 -195;'686;Senegal;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;16;1;1;1;1;1;263;263 -195;'686;Senegal;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;47;;;;;;; -195;'686;Senegal;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;34;34;34;27;;;;;;; -195;'686;Senegal;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;147;147;147;147;147;;;;;;; -195;'686;Senegal;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;78;78;78;78;;;;;;; -195;'686;Senegal;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;87;87;100;100;100;100;1700;1700;300;300;300;300;300;300;300;512;345;272;397;449;525;339;483;442;1017;1427;1248;4845;6634.1;9122;7991 -195;'686;Senegal;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;54;54;90;90;90;90;907;907;208;208;208;208;208;208;208;601;335;300;445;636;620;290;323;299;658;747;712;1815;2374.65;10469;9940 -195;'686;Senegal;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;28;2;2;2;2;2;607;607 -195;'686;Senegal;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;16;1;1;1;1;1;263;263 -195;'686;Senegal;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;87;87;100;100;100;100;1700;1700;300;300;300;300;300;300;300;476;299;249;374;321;423;325;418;396;935;1371;1247;3762;6633.1;9121;7983 -195;'686;Senegal;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;54;54;90;90;90;90;907;907;208;208;208;208;208;208;208;481;218;282;427;305;348;257;273;238;496;691;709;1422;2371.65;10466;9928 -195;'686;Senegal;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;607;607 -195;'686;Senegal;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;263;263 -195;'686;Senegal;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;56;1;1083;1;1;8 -195;'686;Senegal;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;162;56;3;393;3;3;12 -195;'686;Senegal;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;;;;;;; -195;'686;Senegal;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;;;;;;; -195;'686;Senegal;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;46;23;23;128;102;14;65;46;;;;;;; -195;'686;Senegal;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120;117;18;18;331;272;33;50;61;;;;;;; -195;'686;Senegal;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;11;11;11;5;5;5;1;1 -195;'686;Senegal;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5;1;1;1;6;6 -195;'686;Senegal;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;93;5;5;105;34;55;10;10;10;10;10 -195;'686;Senegal;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;48;20;20;89;47;49;10;10;10;10;10 -195;'686;Senegal;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1 -195;'686;Senegal;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;9;9 -195;'686;Senegal;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;41;41;41;41;41;101;101;101;101;101;101;0;0.01;49 -195;'686;Senegal;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;12;12;12;12;12;83;83;83;83;83;83;0;0.29;14 -195;'686;Senegal;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;0;0;0;0;0;0 -195;'686;Senegal;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;910;664;991;1079;1019;1000;1000;900;900;900;900;1500;1105;1100;1500;3000;1700;1900;1885;1051;1051;1300;1300;1300;1300;1700;1700;1600;1600;1600;1600;1600;1600;1600;3479;2915;1168;1841;2324;1842;2269;3110;2252;1507;1507;1366;3163;3062.83;5363;5604 -195;'686;Senegal;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;141;126;188;148;160;191;268;169;311;311;311;172;231;277;244;735;276;338;338;211;211;269;269;269;269;302;302;197;197;197;197;197;197;197;793;419;161;308;360;274;571;544;391;230;230;182;373;394.97;469;725 -195;'686;Senegal;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;180;180;77;77;323;36;116;550;123;476;476;152;196;357;529;529 -195;'686;Senegal;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;72;13;13;23;3;6;181;36;55;55;201;31;60;120;120 -195;'686;Senegal;1876;Paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97;150;113;97;138;138;138;138;138;138;138;138;138;138;138;138;138;138;138;138;138;138;138 -195;'686;Senegal;1876;Paper and paperboard;5610;Import quantity;t;5300;5300;5900;6000;4800;5700;8900;6200;6700;8900;8800;10900;12700;8700;6100;9600;8500;12200;11600;10100;21500;30200;27200;24200;16600;17900;16000;30900;19000;44900;20700;12320;15119;16958;15200;9700;9700;16299;32000;27000;30800;30800;30800;30800;30800;30800;39400;46831;43956;27799;32338;53662;58323;57815;59471;61710;61726;64122;66234;82087;83452.35;76824;87415 -195;'686;Senegal;1876;Paper and paperboard;5622;Import value;1000 USD;1030;1050;1200;1301;1184;1295;2117;1488;1598;2120;2255;3029;4177;5500;3600;5800;5200;7272;7080;8801;21263;25140;23115;19115;12720;11813;12245;25225;15864;23460;16620;8356;12515;13959;13917;10017;10017;11745;24658;20664;23247;23247;23247;23247;23247;23247;34162;54501;40665;27025;35527;45708;55224;52264;44170;52252;53031;60730;53717;58237;72597.35;78544;70617 -195;'686;Senegal;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;2300;2300;2300;2300;2300;2300;2300;3228;3332;2007;1947.3;2152.07;1973.02;2490.1;2163;4467;2647;1990;2026;4290;8992.26;3152;3908 -195;'686;Senegal;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;1673;1673;1673;1673;1673;1673;1673;5122;4893;2761;2759;2690.25;2430.36;2590;1711;2911;1659;1584;1555;2856;5962.27;2615;3635 -195;'686;Senegal;2042;Graphic papers;5610;Import quantity;t;200;;;3600;2900;3600;3600;2700;2800;3800;4000;3800;4800;2900;3000;4800;4500;6200;5600;2700;14100;17800;14000;14000;8000;5200;4000;9400;5800;5000;3200;4029;5019;5158;1600;1600;1600;1600;9700;9000;10800;10800;10800;10800;10800;10800;10800;15948;14640;13306;13886;14445;19380;15076;12149;14895;14207;14530;11295;13062;14505.66;13921;16889 -195;'686;Senegal;2042;Graphic papers;5622;Import value;1000 USD;30;;;837;786;881;881;689;718;916;981;1118;1649;1660;1600;2600;2500;3272;3080;2557;15019;14640;11915;11915;6620;4054;3809;9161;6203;5454;3007;3226;3591;3659;2017;2017;2017;2018;7181;6666;8327;8327;8327;8327;8327;8327;8327;17604;14841;13192;14008;10828;17744;13567;8991;10259;10479;12380;8834;8783;11280.69;12500;10641 -195;'686;Senegal;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;;;;1400;1400;1400;1400;1400;1400;1400;670;681;528;607.3;474.07;797.02;625.1;684;377;430;209;306;178;279;368;285 -195;'686;Senegal;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;;;;987;987;987;987;987;987;987;1029;994;527;654;570.25;1004.36;793;719;301;293;276;377;212;341;408;314 -195;'686;Senegal;1671;Newsprint;5610;Import quantity;t;200;;;400;300;300;300;300;300;500;500;500;700;700;1800;3000;3000;5600;5000;900;1300;800;1000;1000;1000;1000;800;1500;800;500;1900;368;361;500;500;500;500;500;1300;1300;2400;2400;2400;2400;2400;2400;2400;2634;3794;2923;3939;3960;5470;3195;3838;4413;4021;2995;2793;5113;4130.25;2412;2754 -195;'686;Senegal;1671;Newsprint;5622;Import value;1000 USD;30;;;71;45;49;49;47;48;78;84;103;152;360;900;1600;1600;2912;2600;519;519;240;315;315;320;517;563;1000;743;295;1467;138;187;255;370;370;370;370;637;637;1601;1601;1601;1601;1601;1601;1601;2228;3187;2013;3220;2939;3742;2112;2118;2516;2331;2222;1709;2631;2340;2156;2261 -195;'686;Senegal;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;26;26;72;92;198;104;115;112;46;86;73;74;113;113;59 -195;'686;Senegal;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;28;28;102;105;214;113;104;98;51;110;70;64;110;110;88 -195;'686;Senegal;1674;Printing and writing papers;5610;Import quantity;t;;;;3200;2600;3300;3300;2400;2500;3300;3500;3300;4100;2200;1200;1800;1500;600;600;1800;12800;17000;13000;13000;7000;4200;3200;7900;5000;4500;1300;3661;4658;4658;1100;1100;1100;1100;8400;7700;8400;8400;8400;8400;8400;8400;8400;13314;10846;10383;9947;10485;13910;11881;8311;10482;10186;11535;8502;7949;10375.4;11509;14135 -195;'686;Senegal;1674;Printing and writing papers;5622;Import value;1000 USD;;;;766;741;832;832;642;670;838;897;1015;1497;1300;700;1000;900;360;480;2038;14500;14400;11600;11600;6300;3537;3246;8161;5460;5159;1540;3088;3404;3404;1647;1647;1647;1648;6544;6029;6726;6726;6726;6726;6726;6726;6726;15376;11654;11179;10788;7889;14002;11455;6873;7743;8148;10158;7125;6152;8940.69;10344;8380 -195;'686;Senegal;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;;;;1400;1400;1400;1400;1400;1400;1400;655;655;502;535.3;382.07;599.02;521.1;569;265;384;123;233;104;166;255;226 -195;'686;Senegal;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;;;;987;987;987;987;987;987;987;1022;966;499;552;465.25;790.36;680;615;203;242;166;307;148;231;298;226 -195;'686;Senegal;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105;800;800;800;800;800;800;800;800;800;1026;108;361;985;121;375;375;375;911;434;434;730;467;803;709;2477 -195;'686;Senegal;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;129;511;511;525;525;525;525;525;525;525;937;235;397;1095;134;253;431;332;293;202;202;291;246;469.33;484;524 -195;'686;Senegal;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;78;0.3;0.07;0.02;0.1;1;22;2;2;2;2;2;0;0 -195;'686;Senegal;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;116;6;0.25;0.36;2;6;8;20;20;20;20;20;0;0 -195;'686;Senegal;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;576;4400;4400;4400;4400;4400;4400;4400;4400;4400;7874;5926;7377;6395;5924;7812;7436;3343;5153;5695;6602;4948;4124;6500.5;4855;5497 -195;'686;Senegal;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;834;3312;3312;3404;3404;3404;3404;3404;3404;3404;8732;5634;7550;6571;3078;7580;7006;2808;4128;5058;6220;4278;3484;5823.51;5285;4760 -195;'686;Senegal;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1300;1300;1300;1300;1300;1300;1300;292;461;224;159;244;350;300;485;210;251;113;186;83;101;237;222 -195;'686;Senegal;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;885;885;885;885;885;885;885;530;697;197;188;288;386;354;513;160;168;121;255;100;130;260;217 -195;'686;Senegal;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;419;3200;2500;3200;3200;3200;3200;3200;3200;3200;4414;4812;2645;2567;4440;5723;4070;4593;4418;4057;4499;2824;3358;3071.91;5945;6161 -195;'686;Senegal;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;685;2721;2206;2797;2797;2797;2797;2797;2797;2797;5707;5785;3232;3122;4677;6169;4018;3733;3322;2888;3736;2556;2422;2647.86;4575;3096 -195;'686;Senegal;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;100;100;100;100;100;100;363;192;200;376;138;249;221;83;33;131;8;45;19;63;18;4 -195;'686;Senegal;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102;102;102;102;102;102;102;492;264;186;358;177;404;324;96;35;54;25;32;28;81;38;9 -195;'686;Senegal;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97;150;113;97;138;138;138;138;138;138;138;138;138;138;138;138;138;138;138;138;138;138;138 -195;'686;Senegal;1675;Other paper and paperboard;5610;Import quantity;t;5100;5300;5900;2400;1900;2100;5300;3500;3900;5100;4800;7100;7900;5800;3100;4800;4000;6000;6000;7400;7400;12400;13200;10200;8600;12700;12000;21500;13200;39900;17500;8291;10100;11800;13600;8100;8100;14699;22300;18000;20000;20000;20000;20000;20000;20000;28600;30883;29316;14493;18452;39217;38943;42739;47322;46815;47519;49592;54939;69025;68946.69;62903;70526 -195;'686;Senegal;1675;Other paper and paperboard;5622;Import value;1000 USD;1000;1050;1200;464;398;414;1236;799;880;1204;1274;1911;2528;3840;2000;3200;2700;4000;4000;6244;6244;10500;11200;7200;6100;7759;8436;16064;9661;18006;13613;5130;8924;10300;11900;8000;8000;9727;17477;13998;14920;14920;14920;14920;14920;14920;25835;36897;25824;13833;21519;34880;37480;38697;35179;41993;42552;48350;44883;49454;61316.65;66044;59976 -195;'686;Senegal;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;900;900;900;900;900;900;900;2558;2651;1479;1340;1678;1176;1865;1479;4090;2217;1781;1720;4112;8713.26;2784;3623 -195;'686;Senegal;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;686;686;686;686;686;686;686;4093;3899;2234;2105;2120;1426;1797;992;2610;1366;1308;1178;2644;5621.27;2207;3321 -195;'686;Senegal;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;430;655;278;386;701;710;795;1254;531;601;623;1179;1904;2943.53;3078;3290 -195;'686;Senegal;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;828;978;440;587;1013;1031;1018;1497;666;553;568;842;1155;2291.08;3332;4161 -195;'686;Senegal;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;26;26;26;4;15;2;2;2;5;5;0;0;0;0;0 -195;'686;Senegal;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;43;41;44;6;28;1;1;5;8;8;2;0;0;0;3 -195;'686;Senegal;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14699;22300;17100;19100;19100;19100;19100;19100;19100;27700;28856;28237;13926;17732;38093;37778;41582;45610;44619;46309;48348;53274;66625;65442.85;59280;66718 -195;'686;Senegal;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9727;17477;12311;13233;13233;13233;13233;13233;13233;24148;29647;22486;12043;18740;31740;34230;35727;33471;34019;38739;44128;42185;46102;56740.53;60947;54284 -195;'686;Senegal;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;900;900;900;900;900;900;900;2399;2481;1403;1267;1634;1144;1854;1459;4024;2148;1712;1720;4110;8693.26;2756;3623 -195;'686;Senegal;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;686;686;686;686;686;686;686;3105;3004;1871;1734;1850;1271;1719;974;2557;1310;1252;1176;2627;5468.27;1996;3312 -195;'686;Senegal;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6705;10172;7800;8400;8400;8400;8400;8400;8400;12600;14475;16391;7974;8619;22096;22222;21244;23486;19876;23882;29450;32637;41523;41801.34;41118;43089 -195;'686;Senegal;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3960;7115;5012;4625;4625;4625;4625;4625;4625;9565;11885;10797;5852;6820;15436;17481;15307;15299;12337;16305;23675;20603;23784;31452.81;37090;24879 -195;'686;Senegal;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;600;600;600;600;600;600;1538;1547;705;570;1071;776;1709;1333;3675;1873;1568;1302;3072;7724.18;2313;3044 -195;'686;Senegal;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;318;318;318;318;318;318;318;1245;1209;626;497;815;637;1517;870;2202;1044;1106;789;1784;4591.27;1423;2562 -195;'686;Senegal;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1461;2217;1700;3000;3000;3000;3000;3000;3000;3000;4211;3899;1982;3526;4169;3651;3831;8052;8710;5224;5905;5189;4561;5303.37;6351;6641 -195;'686;Senegal;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1510;2713;1911;3064;3064;3064;3064;3064;3064;3064;6230;5155;2653;5278;5125;4807;5102;6651;9265;7301;7730;7170;6302;8471.67;9705;10454 -195;'686;Senegal;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;300;300;300;300;300;300;300;604;670;446;472;413;258;65;21;77;92;47;80;187;63;129;205 -195;'686;Senegal;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;368;368;368;368;368;368;368;1511;1491;966;968;879;481;117;27;90;105;60;93;179;98;196;246 -195;'686;Senegal;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6533;9911;7600;7100;7100;7100;7100;7100;7100;11500;10048;7946;3968;5584;11816;11903;16287;13938;15898;15494;12709;15448;20411;18208.14;11697;16893 -195;'686;Senegal;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4257;7649;5388;5200;5200;5200;5200;5200;5200;11175;11420;6533;3535;6640;11164;11941;15245;11481;12376;13331;12431;14410;15653;16453.05;14065;18884 -195;'686;Senegal;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;257;264;252;225;150;110;80;105;272;183;97;338;851;906.08;314;374 -195;'686;Senegal;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;349;304;279;269;156;153;85;77;265;161;86;294;664;779;377;504 -195;'686;Senegal;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;600;600;600;600;600;600;122;1;2;3;12;2;220;134;135;1709;284;0;130;130;114;95 -195;'686;Senegal;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;344;344;344;344;344;344;344;112;1;3;2;15;1;73;40;41;1802;292;2;363;363;87;67 -195;'686;Senegal;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97;150;113;97;138;138;138;138;138;138;138;138;138;138;138;138;138;138;138;138;138;138;138 -195;'686;Senegal;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;900;900;900;900;900;900;900;900;1597;424;289;334;423;455;362;458;1665;609;621;486;496;560.31;545;518 -195;'686;Senegal;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1687;1687;1687;1687;1687;1687;1687;1687;6422;2360;1350;2192;2127;2219;1952;211;7308;3260;3654;1856;2197;2285.04;1765;1531 -195;'686;Senegal;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;150;144;50;47;40;17;9;18;64;64;64;0;2;20;28;0 -195;'686;Senegal;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;972;852;322;327;264;127;77;17;48;48;48;0;17;153;211;6 -195;'686;Senegal;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23189;35427;29989;30534;39512;37449;37707 -195;'686;Senegal;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2045;2249;2598;2924;3974;2177;3487 -195;'686;Senegal;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98;159;505;723;301;577;292 -195;'686;Senegal;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;181;181;181;181;207;181 -195;'686;Senegal;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;17;411;575;198;400;230 -195;'686;Senegal;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;30;4 -195;'686;Senegal;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;142;94;148;103;177;62 -195;'686;Senegal;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;177;177;177;177;177;177 -195;'686;Senegal;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;746;459;621;2076;1100;1704;1530 -195;'686;Senegal;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;32;111;20;221;288;102 -195;'686;Senegal;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;265;439;253;337;325;390;321 -195;'686;Senegal;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;280;203;213;160;174;180;252 -195;'686;Senegal;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3053;6874;3887;5179;7696;5134;6823 -195;'686;Senegal;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1395;1573;1811;2306;2854;1326;2490 -195;'686;Senegal;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;80 -195;'686;Senegal;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;323;323 -195;'686;Senegal;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;17 -195;'686;Senegal;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;5 -195;'686;Senegal;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18805;26819;23334;21115;29087;28681;27330 -195;'686;Senegal;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;280;242;93;244;522;120;406 -195;'686;Senegal;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;465;39;41;143;46 -195;'686;Senegal;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48 -195;'686;Senegal;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;222;677;924;1065;962;820;1365 -195;'686;Senegal;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;18;189;13;22;56;8 -195;'686;Senegal;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43543;44864;48326;52999;59056;63666;70781 -195;'686;Senegal;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12555;14353;14597;17727;33968;17274;17667 -195;'686;Senegal;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;42;39;2;17;14;1 -195;'686;Senegal;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1687;1687;1687;1687;1687;1687;1687 -195;'686;Senegal;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3454;1276;1020;1265;1489;1824;1480 -195;'686;Senegal;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;57;334;1;18;5;37 -195;'686;Senegal;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3128;4414;3829;4848;4569;4131;4921 -195;'686;Senegal;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104;22;64;128;181;197;237 -195;'686;Senegal;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27776;29481;31557;31704;36271;43488;45984 -195;'686;Senegal;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9641;11234;11405;14451;31112;14510;14198 -195;'686;Senegal;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9155;9651;11881;15180;16710;14209;18395 -195;'686;Senegal;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1036;1353;1107;1460;970;875;1508 -272;'688;Serbia;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;927863.77;1036726;996798;977291;1198507;1429504;1210538 -272;'688;Serbia;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;916801.16;1022333;1026294;1054053;1277785;1368839;1388839 -272;'688;Serbia;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;541122;754298;773630;586233;514351;621936;580034;602730;660826;491829;537992;635663;732702;674766;664518;835103;1000095;812973 -272;'688;Serbia;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;166781;235663;239644;191914;212501;288070;292824;327161;415768;371227;400856;486401;522889;502145;466427;556948;529737;568450 -272;'688;Serbia;1861;Roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2876000;2981000;3186000;3137000;7636000;7706000;7549000;7678000;7583000;7655000;7915000;7789000;7959000;8113000;8236000;7897000;8052000;7609000 -272;'688;Serbia;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88000;85000;96000;82000;105310;74000;95000;97000;124000;156000;124000;72000;53000;68000;56000;78000;67000;29000 -272;'688;Serbia;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5909;6899;6080;5636;6564;5960;4564;5782;7096;7127;7386;4825;4651;4971;6003;8167;9496;4225 -272;'688;Serbia;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50000;72000;48700;29500;42600;43900;56000;57223;53000;45000;118000;105000;108000;78000;67000;108000;53000;47000 -272;'688;Serbia;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4026;10427;9737;4884;6985;7971;5438;7396;8844;12213;8980;22194;23576;15640;17164;33227;20138;13446 -272;'688;Serbia;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;325000;313000;335000;315000;355000;352000;318000;322000;295000;338000;387000;385000;451000;527000;514000;448000;420000;399000 -272;'688;Serbia;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27000;21000;16000;16000;18000;10000;7000 -272;'688;Serbia;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1760;1930;1573;1428;1813;1333;681 -272;'688;Serbia;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13000;15000;13000;13000;16000;9000;11000 -272;'688;Serbia;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1516;1564;1323;1585;2220;1030;1287 -272;'688;Serbia;1863;Roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2551000;2668000;2851000;2822000;7281000;7354000;7231000;7356000;7288000;7317000;7528000;7404000;7508000;7586000;7722000;7449000;7632000;7210000 -272;'688;Serbia;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45000;32000;52000;40000;60000;57000;22000 -272;'688;Serbia;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3065;2721;3398;4575;6354;8163;3544 -272;'688;Serbia;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92000;93000;65000;54000;92000;44000;36000 -272;'688;Serbia;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20678;22012;14317;15579;31007;19108;12159 -272;'688;Serbia;1864;Wood fuel;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1626000;1554000;1571000;1778000;6223000;6345000;6232000;6357000;6289000;6306000;6376000;6436000;6533000;6350000;6454000;6251000;6574000;6107000 -272;'688;Serbia;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;0;0;5000;8000;12000;16000;19000;5000;7000;2000;2000;4000;11000;12000;3000 -272;'688;Serbia;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;8;184;0;0;179;207;256;396;366;238;488;129;123;273;710;1113;278 -272;'688;Serbia;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2000;3700;16500;9600;11900;43000;32223;26000;4000;57000;35000;35000;31000;22000;25000;12000;6000 -272;'688;Serbia;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;72;367;1315;590;825;2086;1813;1831;2803;2441;1977;2001;1728;1096;1209;627;646 -272;'688;Serbia;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83000;81000;68000;72000;103000;124000;104000;105000;92000;99000;113000;121000;130000;141000;142000;129000;141000;128000 -272;'688;Serbia;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -272;'688;Serbia;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -272;'688;Serbia;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7000;8000;9000;9000;11000;8000;0 -272;'688;Serbia;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;310;210;231;260;396;296;0 -272;'688;Serbia;1628;Wood fuel, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1543000;1473000;1503000;1706000;6120000;6221000;6128000;6252000;6197000;6207000;6263000;6315000;6403000;6209000;6312000;6122000;6433000;5979000 -272;'688;Serbia;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7000;2000;2000;4000;11000;12000;3000 -272;'688;Serbia;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;488;129;123;273;710;1113;278 -272;'688;Serbia;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28000;27000;22000;13000;14000;4000;6000 -272;'688;Serbia;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1667;1791;1497;836;813;331;646 -272;'688;Serbia;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;0;0;5000;8000;12000;16000;19000;5000;;;;;;; -272;'688;Serbia;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;8;184;0;0;179;207;256;396;366;238;;;;;;; -272;'688;Serbia;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2000;3700;16500;9600;11900;43000;32223;26000;4000;57000;;;;;;; -272;'688;Serbia;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;72;367;1315;590;825;2086;1813;1831;2803;2441;;;;;;; -272;'688;Serbia;1865;Industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1250000;1427000;1615000;1359000;1413000;1361000;1317000;1321000;1294000;1349000;1539000;1353000;1426000;1763000;1782000;1646000;1478000;1502000 -272;'688;Serbia;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87000;84000;95000;82000;105310;69000;87000;85000;108000;137000;119000;65000;51000;66000;52000;67000;55000;26000 -272;'688;Serbia;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5900;6891;5896;5636;6564;5781;4357;5526;6700;6761;7148;4337;4522;4848;5730;7457;8383;3947 -272;'688;Serbia;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48000;70000;45000;13000;33000;32000;13000;25000;27000;41000;61000;70000;73000;47000;45000;83000;41000;41000 -272;'688;Serbia;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3978;10355;9370;3569;6395;7146;3352;5583;7013;9410;6539;20217;21575;13912;16068;32018;19511;12800 -272;'688;Serbia;1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;242000;232000;267000;243000;252000;228000;214000;217000;203000;239000;274000;264000;321000;386000;372000;319000;279000;271000 -272;'688;Serbia;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77000;67000;83000;80000;104000;62000;73000;49000;64000;71000;57000;27000;21000;16000;16000;18000;10000;7000 -272;'688;Serbia;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4298;3804;4712;5013;6298;5030;3811;3728;3360;3601;3737;1760;1930;1573;1428;1813;1333;681 -272;'688;Serbia;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;2000;16000;1000;15000;3000;3000;16000;3000;12000;14000;6000;7000;4000;4000;5000;1000;11000 -272;'688;Serbia;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;67;2332;223;1116;193;120;1661;704;1741;2447;1206;1354;1092;1325;1824;734;1287 -272;'688;Serbia;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77000;67000;83000;80000;104000;62000;73000;49000;64000;71000;57000;27000;21000;16000;16000;18000;10000;7000 -272;'688;Serbia;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4298;3804;4712;5013;6298;5030;3811;3728;3360;3601;3737;1760;1930;1573;1428;1813;1333;681 -272;'688;Serbia;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;2000;16000;1000;15000;3000;3000;16000;3000;12000;14000;6000;7000;4000;4000;5000;1000;11000 -272;'688;Serbia;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;67;2332;223;1116;193;120;1661;704;1741;2447;1206;1354;1092;1325;1824;734;1287 -272;'688;Serbia;1867;Industrial roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1008000;1195000;1348000;1116000;1161000;1133000;1103000;1104000;1091000;1110000;1265000;1089000;1105000;1377000;1410000;1327000;1199000;1231000 -272;'688;Serbia;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;17000;12000;2000;1310;7000;14000;36000;44000;66000;62000;38000;30000;50000;36000;49000;45000;19000 -272;'688;Serbia;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1602;3087;1184;623;266;751;546;1798;3340;3160;3411;2577;2592;3275;4302;5644;7050;3266 -272;'688;Serbia;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47000;68000;29000;12000;18000;29000;10000;9000;24000;29000;47000;64000;66000;43000;41000;78000;40000;30000 -272;'688;Serbia;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3932;10288;7038;3346;5279;6953;3232;3922;6309;7669;4092;19011;20221;12820;14743;30194;18777;11513 -272;'688;Serbia;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;0;0;0;0;10;10;15;0;0;0;0;0;0;0;0 -272;'688;Serbia;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;193;224;269;0;0;0;0;109;120;123;0;0;0;0;0;3;0;37 -272;'688;Serbia;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;1000;0;0;0;0;0;100;0;0;0;0;0;0;0;0 -272;'688;Serbia;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;367;0;0;0;0;0;13;0;0;0;0;0;0;0;0 -272;'688;Serbia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9000;16000;11000;2000;1310;7000;14000;35990;43990;65985;62000;38000;30000;50000;36000;49000;45000;19000 -272;'688;Serbia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1409;2863;915;623;266;751;546;1689;3220;3037;3411;2577;2592;3275;4302;5641;7050;3229 -272;'688;Serbia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47000;68000;29000;11000;18000;29000;10000;9000;24000;28900;47000;64000;66000;43000;41000;78000;40000;30000 -272;'688;Serbia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3932;10288;7038;2979;5279;6953;3232;3922;6309;7656;4092;19011;20221;12820;14743;30194;18777;11513 -272;'688;Serbia;1868;Sawlogs and veneer logs;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1058000;1292000;1410000;1175000;1222000;1173000;1157000;1161000;1145000;1177000;1329000;1155000;1178000;1224000;1217000;1176000;1077000;1049000 -272;'688;Serbia;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;197000;208000;235000;219000;228000;196000;188000;190000;179000;199000;223000;219000;213000;238000;229000;202000;178000;162000 -272;'688;Serbia;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;861000;1084000;1175000;956000;994000;977000;969000;971000;966000;978000;1106000;936000;965000;986000;988000;974000;899000;887000 -272;'688;Serbia;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;132000;91000;99000;93000;96000;99000;89000;91000;83000;95000;114000;107000;102000;368000;388000;307000;265000;324000 -272;'688;Serbia;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31000;12000;14000;12000;14000;23000;18000;19000;17000;26000;32000;27000;68000;96000;94000;76000;66000;78000 -272;'688;Serbia;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101000;79000;85000;81000;82000;76000;71000;72000;66000;69000;82000;80000;34000;272000;294000;231000;199000;246000 -272;'688;Serbia;1871;Other industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60000;44000;106000;91000;95000;89000;71000;69000;66000;77000;96000;91000;146000;171000;177000;163000;136000;129000 -272;'688;Serbia;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14000;12000;18000;12000;10000;9000;8000;8000;7000;14000;19000;18000;40000;52000;49000;41000;35000;31000 -272;'688;Serbia;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46000;32000;88000;79000;85000;80000;63000;61000;59000;63000;77000;73000;106000;119000;128000;122000;101000;98000 -272;'688;Serbia;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;5000;8000;14000;34000;33000;29000;27000;23000;22000;27000;28000;26000;27000;26000;22000;19000;18000 -272;'688;Serbia;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;6000;8000;1000;1000;1000;2000;300;600;1000;1000;400;550;2000;1000;2000;2000;2000 -272;'688;Serbia;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1822;2108;2841;277;266;258;1257;114;368;291;595;299;465;833;482;725;655;1102 -272;'688;Serbia;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;5000;6000;9000;7000;7000;10000;10000;12000;11000;14000;15100;12000;11000;11000;9000;7000;5000 -272;'688;Serbia;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1650;1889;1931;3535;3368;3850;4569;4752;5281;3903;4928;5541;5602;5235;5447;5002;4426;3923 -272;'688;Serbia;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;394000;461000;481000;508000;667000;672000;462000;434000;517000;542000;481000;572000;561000;504000;783000;702000;755000 -272;'688;Serbia;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;3000;2000;5000;27600;60000;27759;4500;4000;26000;44000;46000;37000;12000;21000;20085;15000;8000 -272;'688;Serbia;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;130;200;117;311;581;1002;710;587;287;858;1295;1252;682;469;830;741;814;536 -272;'688;Serbia;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;4000;11000;8000;134;10000;5000;13000;8000;20000;2300;1100;4100;2200;3400;2000;1000;300 -272;'688;Serbia;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;315;906;848;9;740;377;716;719;560;194;112;206;167;204;153;45;28 -272;'688;Serbia;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;7000;19000;24000;47000;335000;347000;164000;155000;161000;144000;143000;148000;129000;98000;201000;190000;181000 -272;'688;Serbia;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;2000;1000;1000;1600;1000;759;1500;1000;3000;1000;36000;11000;7000;12000;10085;8000;4000 -272;'688;Serbia;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89;154;78;64;82;13;44;478;123;179;124;902;361;273;549;475;664;419 -272;'688;Serbia;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;4000;11000;1000;124;4000;2000;4000;5000;4000;2000;1000;4000;2000;3000;2000;1000;300 -272;'688;Serbia;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;315;906;89;6;218;123;301;514;303;133;105;204;163;194;117;44;28 -272;'688;Serbia;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;387000;442000;457000;461000;332000;325000;298000;279000;356000;398000;338000;424000;432000;406000;582000;512000;574000 -272;'688;Serbia;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;4000;26000;59000;27000;3000;3000;23000;43000;10000;26000;5000;9000;10000;7000;4000 -272;'688;Serbia;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;46;39;247;499;989;666;109;164;679;1171;350;321;196;281;266;150;117 -272;'688;Serbia;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;7000;10;6000;3000;9000;3000;16000;300;100;100;200;400;0;0;0 -272;'688;Serbia;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;759;3;522;254;415;205;257;61;7;2;4;10;36;1;0 -272;'688;Serbia;1605;Sawdust (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7000;4000 -272;'688;Serbia;1605;Sawdust (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;150;117 -272;'688;Serbia;1605;Sawdust (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -272;'688;Serbia;1605;Sawdust (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0 -272;'688;Serbia;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25000;8000;2000;2000;0;400;400 -272;'688;Serbia;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;496;178;46;49;146;112;157 -272;'688;Serbia;1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;2000;0;200;0;0;0 -272;'688;Serbia;1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;92;0;9;34;3;0 -272;'688;Serbia;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;131900;188000;231000;247000;263000;327000;342000;405000;460000;481000;429000;401000 -272;'688;Serbia;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4057;3150;3200;8000;21000;77000;30000;25000;43000;88000;87000;63000 -272;'688;Serbia;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;702;500;528;1026;2474;10512;4451;4090;6809;16302;20659;14950 -272;'688;Serbia;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51100;112000;102000;69000;92000;51000;101000;87000;83000;61000;32000;50000 -272;'688;Serbia;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9573;22918;20599;10757;13486;8794;18206;15300;14266;11398;9017;12882 -272;'688;Serbia;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107900;167000;212000;230000;244000;306000;323000;388000;445000;468000;418000;392000 -272;'688;Serbia;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3907;3000;3000;7000;18000;68000;27000;23000;40000;84000;83000;61000 -272;'688;Serbia;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;669;468;421;825;2203;9418;4078;3588;6452;15482;19585;14415 -272;'688;Serbia;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51000;101000;89000;63000;87000;44000;93000;80000;79000;55000;23000;40000 -272;'688;Serbia;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9533;21343;18953;10095;13061;7959;17110;14192;13632;10307;6085;10381 -272;'688;Serbia;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24000;21000;19000;17000;19000;21000;19000;17000;15000;13000;11000;9000 -272;'688;Serbia;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;150;150;200;1000;3000;9000;3000;2000;3000;4000;4000;2000 -272;'688;Serbia;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;32;107;201;271;1094;373;502;357;820;1074;535 -272;'688;Serbia;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;11000;13000;6000;5000;7000;8000;7000;4000;6000;9000;10000 -272;'688;Serbia;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;1575;1646;662;425;835;1096;1108;634;1091;2932;2501 -272;'688;Serbia;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;493000;602000;672000;574000;589000;512000;495000;502000;476000;506000;543000;496000;506000;517000;470000;452000;434000;421000 -272;'688;Serbia;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;419000;459000;496000;353000;357000;332000;321000;268929;263000;210000;290000;281000;298000;326000;382000;398000;345000;324000 -272;'688;Serbia;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71419;88827;122363;71387;66587;67965;59991;56265;55209;41777;45120;53106;65998;63705;60056;86594;92565;83898 -272;'688;Serbia;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;144000;206000;155000;97000;114000;124000;128000;136000;149000;168000;183400;187600;234000;257000;310000;286000;240000;205000 -272;'688;Serbia;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44108;63758;53144;32785;34070;42097;39660;44550;51072;47928;64536;73648;90452;76161;77045;103443;108057;96322 -272;'688;Serbia;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;131000;146000;167000;146000;152000;144000;136000;139000;128000;137000;145000;124000;121000;125000;112000;99000;91000;82000 -272;'688;Serbia;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;382000;393000;419000;316000;304000;287000;281000;224000;215000;172000;241000;245000;252000;259000;291000;295000;281000;260000 -272;'688;Serbia;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53504;64106;82876;54571;47549;50743;46144;39944;37715;30155;30740;38694;42836;41738;47131;64693;65972;54614 -272;'688;Serbia;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;4000;2000;1000;1000;2000;2000;3000;4000;6000;4400;2600;3000;4000;2000;15000;5000;4000 -272;'688;Serbia;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;545;757;865;315;297;551;309;559;704;1097;989;937;803;794;722;3887;2126;1501 -272;'688;Serbia;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;362000;456000;505000;428000;437000;368000;359000;363000;348000;369000;398000;372000;385000;392000;358000;353000;343000;339000 -272;'688;Serbia;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37000;66000;77000;37000;53000;45000;40000;44929;48000;38000;49000;36000;46000;67000;91000;103000;64000;64000 -272;'688;Serbia;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17915;24721;39487;16816;19038;17222;13847;16321;17494;11622;14380;14412;23162;21967;12925;21901;26593;29284 -272;'688;Serbia;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;141000;202000;153000;96000;113000;122000;126000;133000;145000;162000;179000;185000;231000;253000;308000;271000;235000;201000 -272;'688;Serbia;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43563;63001;52279;32470;33773;41546;39351;43991;50368;46831;63547;72711;89649;75367;76323;99556;105931;94821 -272;'688;Serbia;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22000;26000;31000;27000;12000;26000;25000;29000;26000;28000;34000;29000;21000;31000;28000;27000;30000;31000 -272;'688;Serbia;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6000;7000;8000;5000;7000;8000;3000;7000;6000;5000;12000;18000;16000;11000;13000;13000;8000;6000 -272;'688;Serbia;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4676;6548;9916;6017;8158;11479;7143;9842;9304;7362;10645;12604;15231;11077;11012;13222;11321;10068 -272;'688;Serbia;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;17000;21000;6301;9000;19000;19000;22000;25000;27000;26000;29000;32020;36000;20000;21000;34200;32000 -272;'688;Serbia;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3886;6951;9877;2938;2193;4444;4717;5607;8167;9017;10064;11359;13836;12480;7563;7967;20482;19000 -272;'688;Serbia;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69000;122000;148000;118000;227000;242000;284000;258000;331000;272000;253000;284000;322000;253000;252000;308000;257000;239000 -272;'688;Serbia;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;346000;412000;389000;228000;286000;231000;215000;243600;248000;289000;395900;347500;368000;374000;424000;427000;342000;367100 -272;'688;Serbia;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107882;161893;167430;137070;93702;99532;82882;90132;100455;88460;102517;108458;119955;122596;137816;176443;158745;172023 -272;'688;Serbia;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29000;44000;35000;18000;91060;95239;152200;129100;161000;129000;132700;145700;103000;115000;105000;106000;72000;70800 -272;'688;Serbia;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12143;14780;10119;8943;20910;26741;39476;37059;51590;38433;38102;41906;34993;33114;31144;38465;38256;32934 -272;'688;Serbia;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14000;19000;26000;22000;13000;12000;11000;13000;14000;16000;10000;9000;10000;12000;11000;15000;19000;22000 -272;'688;Serbia;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6000;8000;9000;5000;6000;8000;5000;6000;5000;13000;11600;12500;19000;27000;31000;30000;34000;24100 -272;'688;Serbia;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3777;5507;6702;3307;3617;5809;3861;4360;4854;8704;6172;6755;11211;12834;14356;21633;29300;19270 -272;'688;Serbia;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8000;2000;9000;8000;9000;7000;8000;10000;11000;8000;15000;13700;8000;9000;6000;3000;13000;5800 -272;'688;Serbia;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4148;1309;1794;6077;7541;5454;5691;6784;7168;4279;9503;9585;3564;3172;1875;2145;11493;3715 -272;'688;Serbia;1607;Laminated Veneer Lumber (LVL);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -272;'688;Serbia;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;193 -272;'688;Serbia;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;124;283 -272;'688;Serbia;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;360;150 -272;'688;Serbia;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;234;107 -272;'688;Serbia;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16000;62000;69000;84000;214000;202000;248000;221000;290000;228000;216000;253000;283000;214000;217000;272000;219000;195000 -272;'688;Serbia;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;214000;245000;239000;92000;159000;112000;95000;114000;107000;137000;204000;172000;151000;176000;193000;208000;196000;166000 -272;'688;Serbia;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55331;77437;86994;60106;48791;40268;35493;37613;43423;35993;46229;43418;43865;46418;51045;63777;74768;66928 -272;'688;Serbia;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;18000;18000;8000;79000;75000;115000;92000;119000;85000;86300;95000;62000;70000;61000;60000;42000;43000 -272;'688;Serbia;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1983;4686;4252;1578;12138;14866;22650;20194;28588;18601;17390;19680;16489;14688;14959;19448;17404;16258 -272;'688;Serbia;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 -272;'688;Serbia;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21000;19000;26000;14000;7000;25000;26000;27000;31000;33000;49000;53000;76000;53000;66000;46000;41000;48000 -272;'688;Serbia;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4575;7007;9507;8873;2274;10515;9416;9962;10999;7783;10027;12497;15213;14634;16350;19238;16573;17161 -272;'688;Serbia;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;1000;1000;1000;1000;1000;2700;3000;2000;3000;4000;2000;1000;2000 -272;'688;Serbia;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;296;301;288;255;292;614;798;655;1775;708;732;446;581 -272;'688;Serbia;1874;Fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39000;41000;53000;12000;0;28000;25000;24000;27000;28000;27000;22000;29000;27000;24000;21000;19000;22000 -272;'688;Serbia;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105000;140000;115000;117000;114000;86000;89000;96600;105000;106000;131300;110000;122000;118000;134000;143000;71000;129000 -272;'688;Serbia;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44199;71942;64227;64784;39020;42940;34112;38197;41179;35980;40089;45788;49666;48710;56065;71795;38104;68664 -272;'688;Serbia;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17000;24000;8000;2000;3060;12239;28200;26100;30000;35000;28700;34000;31000;33000;34000;41000;16000;20000 -272;'688;Serbia;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6012;8785;4073;1288;1231;6125;10834;9793;15579;15261;10595;11843;14285;13479;13602;16140;8913;12380 -272;'688;Serbia;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39000;41000;53000;12000;0;28000;25000;24000;27000;28000;27000;22000;29000;27000;24000;21000;19000;22000 -272;'688;Serbia;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71000;95000;73000;74000;35000;28000;31000;30000;30000;26000;29000;30000;26000;25000;30000;31000;33000;26000 -272;'688;Serbia;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35034;56137;50286;51114;16728;18705;17128;15314;15090;13221;11718;11677;11710;10372;12942;16091;17551;17361 -272;'688;Serbia;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17000;24000;8000;1000;2000;10000;26000;23000;24000;24000;22000;21000;22000;22000;19000;19000;13000;14000 -272;'688;Serbia;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6012;8785;4073;720;1042;5151;9785;8737;9654;8353;7413;6660;7458;6602;6478;6723;6672;7997 -272;'688;Serbia;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 -272;'688;Serbia;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28000;44000;41000;39000;76000;57000;56000;66000;74000;79000;100000;78000;94000;90000;100000;110000;34000;91000 -272;'688;Serbia;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7952;15584;13715;11535;20991;23937;15987;22825;26023;22706;27593;33260;37046;37571;42147;55322;19573;49415 -272;'688;Serbia;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;1000;1000;2000;2000;3000;4000;5000;6700;13000;9000;11000;15000;22000;3000;6000 -272;'688;Serbia;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;568;128;901;986;1024;2272;2419;3182;5183;6827;6877;7124;9342;2221;4230 -272;'688;Serbia;1650;Other fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -272;'688;Serbia;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6000;1000;1000;4000;3000;1000;2000;600;1000;1000;2300;2000;2000;3000;4000;2000;4000;12000 -272;'688;Serbia;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1213;221;226;2135;1301;298;997;58;66;53;778;851;910;767;976;382;980;1888 -272;'688;Serbia;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;60;239;200;100;2000;6000;0;0;0;0;0;0;0;0 -272;'688;Serbia;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;61;73;63;32;3653;4489;0;0;0;0;0;75;20;153 -272;'688;Serbia;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64000;76000;90000;60000;25000;177000;162000;148000;155000;157000;178000;183000;197000;206000;208000;178000;169000;161000 -272;'688;Serbia;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18193;26104;26934;39862;53085;63070;52070;58100;118110;134400;160000;173640;200130;221100;240000;194000;250000;237000 -272;'688;Serbia;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8082;11967;14829;18017;30318;33001;28272;36180;42013;36369;35168;60747;82018;66519;63880;76288;111398;77370 -272;'688;Serbia;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42974;57961;73231;58626;58607;107001;119000;41000;62000;69100;87000;82105;75100;80100;84110;93000;79000;80500 -272;'688;Serbia;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3963;3797;9942;4770;4770;21315;17376;6099;10095;9870;13439;14478;12461;12430;10403;20888;17946;12661 -272;'688;Serbia;1878;Pulp for paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14000;16000;20000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -272;'688;Serbia;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11000;12000;15000;29000;34085;38070;38070;40100;43110;46400;45000;62640;72130;73100;82000;74000;82000;68000 -272;'688;Serbia;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6912;8735;11556;15218;25345;26470;23430;32249;27521;27509;23340;39323;59851;44886;44006;50047;72216;51763 -272;'688;Serbia;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1;7;1;0;0;1000;100;0;105;100;100;110;1000;0;500 -272;'688;Serbia;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;191;34;108;3;3;23;0;0;74;18;0;47;78;78;46;1090;293;547 -272;'688;Serbia;1875;Wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14000;16000;20000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -272;'688;Serbia;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11000;12000;15000;29000;34085;37071;38390;48000;45100;46500;45000;64000;72700;73400;85900;76000;82000;68000 -272;'688;Serbia;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6912;8735;11556;15218;25345;26044;23930;37782;29487;27760;23340;40521;60576;45284;46440;51223;72309;51773 -272;'688;Serbia;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1;7;1;0;0;1000;100;0;105;100;100;110;1000;0;500 -272;'688;Serbia;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;191;34;108;3;3;23;0;0;74;18;0;47;78;78;33;1086;292;546 -272;'688;Serbia;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -272;'688;Serbia;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4600;5000;3000;3400;5000;8000;5000 -272;'688;Serbia;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1740;2181;1084;1529;2335;4634;2903 -272;'688;Serbia;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105;100;100;100;0;0;0 -272;'688;Serbia;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;78;78;27;43;218;133 -272;'688;Serbia;1654;Mechanical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;1000;3000;0;0;0;0;0;0;0;0;;;;;;; -272;'688;Serbia;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;2000;3000;5000;5000;6000;6000;6000;4000;;;;;;; -272;'688;Serbia;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88;176;38;784;1146;2330;2217;2562;2785;2369;1538;;;;;;; -272;'688;Serbia;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;1;0;0;1000;100;0;;;;;;; -272;'688;Serbia;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;23;0;0;74;18;0;;;;;;; -272;'688;Serbia;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -272;'688;Serbia;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;85;70;60;0;0;0;0;;;;;;; -272;'688;Serbia;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;34;149;26;0;0;0;0;;;;;;; -272;'688;Serbia;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;1;0;0;0;0;0;0;0;;;;;;; -272;'688;Serbia;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;3;0;0;0;0;0;0;0;;;;;;; -272;'688;Serbia;1656;Chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12000;15000;17000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -272;'688;Serbia;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;11000;14000;27000;31000;32000;33000;34000;37100;40100;41000;58000;67100;70000;78500;69000;74000;63000 -272;'688;Serbia;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6824;8559;11518;14434;24165;23532;21175;29392;24671;24954;21802;37468;57599;43719;42419;47619;67483;48754 -272;'688;Serbia;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;0;7;0;0;0;0;0;0;0;0;0;10;1000;0;500 -272;'688;Serbia;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;191;34;108;0;3;0;0;0;0;0;0;0;0;0;6;1043;74;413 -272;'688;Serbia;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 -272;'688;Serbia;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;2000;0 -272;'688;Serbia;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;1364;0 -272;'688;Serbia;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 -272;'688;Serbia;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;44;0 -272;'688;Serbia;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12000;15000;17000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -272;'688;Serbia;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6000;6000;7000;18000;20000;18000;24000;31000;37000;40000;41000;56000;67000;68000;76000;67000;70000;62000 -272;'688;Serbia;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4553;4627;5801;10013;15983;12929;15262;27671;24526;24747;21802;35809;57266;42190;40586;45890;63971;46867 -272;'688;Serbia;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1000;1000;0;0;0;0;0;0;0;0;0;0;0;10;1000;0;500 -272;'688;Serbia;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;34;108;0;0;0;0;0;0;0;0;0;0;0;6;1042;17;409 -272;'688;Serbia;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -272;'688;Serbia;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;100;2000;2500;2000;2000;1000 -272;'688;Serbia;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1659;333;1529;1833;1729;2148;1887 -272;'688;Serbia;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -272;'688;Serbia;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;1;13;4 -272;'688;Serbia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -272;'688;Serbia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;9000;11000;14000;0;0;0;0;0;;;;;;; -272;'688;Serbia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;4421;8182;10603;0;0;0;0;0;;;;;;; -272;'688;Serbia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;7;0;0;0;0;0;0;;;;;;; -272;'688;Serbia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;3;0;0;0;0;0;0;;;;;;; -272;'688;Serbia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -272;'688;Serbia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;5000;7000;0;0;0;9000;3000;100;100;0;;;;;;; -272;'688;Serbia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2271;3932;5717;0;0;0;5913;1721;145;207;0;;;;;;; -272;'688;Serbia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;0;0;0;0;0;0;0;0;0;0;;;;;;; -272;'688;Serbia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;191;0;0;0;0;0;0;0;0;0;0;;;;;;; -272;'688;Serbia;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 -272;'688;Serbia;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;1;330;8000;2000;400;0;1400;600;400;4000;2000;0;0 -272;'688;Serbia;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;33;512;5828;2031;437;0;1313;796;481;2492;1269;192;116 -272;'688;Serbia;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 -272;'688;Serbia;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 -272;'688;Serbia;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 -272;'688;Serbia;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;1000;10;100;10;300;0;40;30;100;100;0;0;0 -272;'688;Serbia;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;459;12;295;65;186;0;115;71;83;58;93;99;106 -272;'688;Serbia;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 -272;'688;Serbia;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;13;4;1;1 -272;'688;Serbia;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;26;0;21000;39000;20;600;500;300;10;200;200;0;0;1000 -272;'688;Serbia;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;188;194;166;237;103;0;4386;7971;155;307;278;208;258;186;246;183;415;793 -272;'688;Serbia;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 -272;'688;Serbia;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;10;3;42 -272;'688;Serbia;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50000;60000;70000;60000;25000;177000;162000;148000;155000;157000;178000;183000;197000;206000;208000;178000;169000;161000 -272;'688;Serbia;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7193;14104;11934;10862;19000;25000;14000;18000;75000;88000;115000;111000;128000;148000;158000;120000;168000;169000 -272;'688;Serbia;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1170;3232;3273;2799;4973;6531;4842;3931;14492;8860;11828;21424;22167;21633;19874;26241;39182;25607 -272;'688;Serbia;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41974;56961;72231;58625;58600;107000;119000;41000;61000;69000;87000;82000;75000;80000;84000;92000;79000;80000 -272;'688;Serbia;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3772;3763;9834;4767;4767;21292;17376;6099;10021;9852;13439;14431;12383;12352;10357;19798;17653;12114 -272;'688;Serbia;1876;Paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;231000;245000;268000;309000;385000;382000;325000;451000;487000;506000;532000;553000;557000;544000;577000;535000;483000;514000 -272;'688;Serbia;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;298000;458000;448830;354982;329178;369001;391000;363000;425000;376000;402000;439600;480800;455000;452000;462000;514000;420000 -272;'688;Serbia;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;341014;475662;449888;347281;308072;402706;389615;389529;443380;307815;332514;381843;438019;399793;374843;455023;593723;447735 -272;'688;Serbia;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53000;74000;84251;92024;108000;128302;139730;163605;183200;198490;219800;254300;266900;277400;302100;272000;207000;313000 -272;'688;Serbia;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97004;133746;143988;133211;140196;180912;171638;198064;259401;238546;247127;308363;323465;331618;303182;336361;311364;377212 -272;'688;Serbia;2042;Graphic papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59000;54000;57000;91000;144000;141000;132000;129000;133000;136000;144000;149000;150000;147000;144000;139000;126000;119000 -272;'688;Serbia;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117000;215000;225000;150000;131000;150000;156000;123000;135000;136000;132000;129000;139000;120000;112000;126000;116000;89000 -272;'688;Serbia;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90838;217259;229691;146497;115876;148441;130389;110149;116585;100913;97340;99854;122646;101360;88358;109277;141383;103571 -272;'688;Serbia;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18000;32000;39251;7024;9000;2002;14130;4015;5000;4090;4700;5000;5600;2300;2900;4000;5000;4000 -272;'688;Serbia;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9712;59122;67392;4742;4990;2169;8749;2766;3197;3372;3942;4473;6835;2749;3099;4669;7854;6146 -272;'688;Serbia;1671;Newsprint;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59000;54000;57000;91000;144000;141000;132000;129000;133000;136000;144000;149000;150000;147000;144000;139000;126000;119000 -272;'688;Serbia;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98000;65000;67000;55000;38000;59000;61000;46000;48000;42000;38000;34000;35000;29000;26000;25000;25000;13000 -272;'688;Serbia;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80541;49929;54412;43194;29852;43299;39266;29760;31002;21599;19298;17677;20672;17575;13436;13978;21503;9706 -272;'688;Serbia;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;0;108;24;1000;1;90;1000;1000;500;0;400;3000;200;400;1000;1000;0 -272;'688;Serbia;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;361;0;97;16;92;77;63;222;172;289;0;234;3455;160;275;469;820;273 -272;'688;Serbia;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 -272;'688;Serbia;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19000;150000;158000;95000;93000;91000;95000;77000;87000;94000;94000;95000;104000;91000;86000;101000;91000;76000 -272;'688;Serbia;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10297;167330;175279;103303;86024;105142;91123;80389;85583;79314;78042;82177;101974;83785;74922;95299;119880;93865 -272;'688;Serbia;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17000;32000;39143;7000;8000;2001;14040;3015;4000;3590;4700;4600;2600;2100;2500;3000;4000;4000 -272;'688;Serbia;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9351;59122;67295;4726;4898;2092;8686;2544;3025;3083;3942;4239;3380;2589;2824;4200;7034;5873 -272;'688;Serbia;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 -272;'688;Serbia;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;8000;9000;9000;25000;11000;12000;11000;11000;13000;13000;14000;14000;12000;9000;12000;10000;8000 -272;'688;Serbia;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;607;6710;7244;8471;11050;10082;9899;9186;8988;8279;8261;8616;9998;8559;6261;8104;9794;7516 -272;'688;Serbia;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17000;11000;12000;1000;1000;1;40;15;1000;100;0;100;100;100;200;0;0;0 -272;'688;Serbia;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9351;6120;7730;1507;1553;81;48;17;88;46;0;120;77;112;207;363;269;305 -272;'688;Serbia;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 -272;'688;Serbia;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6000;85000;88000;41000;32000;41000;41000;42000;43000;45000;45000;46000;50000;45000;44000;53000;48000;40000 -272;'688;Serbia;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4918;98771;103667;42768;33306;46890;42163;42907;41657;39350;38343;42536;52334;42337;38828;50481;65556;49795 -272;'688;Serbia;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1143;1000;1000;1000;12000;2000;2000;2500;3700;4000;1500;1000;1300;2000;2000;2000 -272;'688;Serbia;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1567;1159;1212;759;6399;1203;1357;1743;2671;3299;1687;1095;1250;1939;2902;2183 -272;'688;Serbia;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 -272;'688;Serbia;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12000;57000;61000;45000;36000;39000;42000;24000;33000;36000;36000;35000;40000;34000;33000;36000;33000;28000 -272;'688;Serbia;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4772;61849;64368;52064;41668;48170;39061;28296;34938;31685;31438;31025;39642;32889;29833;36714;44530;36554 -272;'688;Serbia;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;21000;26000;5000;6000;1000;2000;1000;1000;990;1000;500;1000;1000;1000;1000;2000;2000 -272;'688;Serbia;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;53002;57998;2060;2133;1252;2239;1324;1580;1294;1271;820;1616;1382;1367;1898;3863;3385 -272;'688;Serbia;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;172000;191000;211000;218000;241000;241000;193000;322000;354000;370000;388000;404000;407000;397000;433000;396000;357000;395000 -272;'688;Serbia;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;181000;243000;223830;204982;198178;219001;235000;240000;290000;240000;270000;310600;341800;335000;340000;336000;398000;331000 -272;'688;Serbia;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;250176;258403;220197;200784;192196;254265;259226;279380;326795;206902;235174;281989;315373;298433;286485;345746;452340;344164 -272;'688;Serbia;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35000;42000;45000;85000;99000;126300;125600;159590;178200;194400;215100;249300;261300;275100;299200;268000;202000;309000 -272;'688;Serbia;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87292;74624;76596;128469;135206;178743;162889;195298;256204;235174;243185;303890;316630;328869;300083;331692;303510;371066 -272;'688;Serbia;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23000;26000;32000;28000;45000;47000;33000;37000;41000;44000;48000;54000;57000;59000;66000;63000;55000;66000 -272;'688;Serbia;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15000;16000;18000;12000;10000;12000;13000;15000;16000;18000;22000;23000;24000;23000;24000;25000;25000;28000 -272;'688;Serbia;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15908;20346;24448;15674;13448;18061;16619;20683;21404;20581;22950;24372;30615;26950;25824;29191;43318;39403 -272;'688;Serbia;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;4000;6000;1000;1000;1000;1000;90;100;400;1000;2000;4000;13000;18000;11000;19000;16000 -272;'688;Serbia;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12332;16445;18775;735;887;371;201;129;165;424;987;1531;4069;14306;17924;11848;30570;21539 -272;'688;Serbia;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;114000;132000;139000;178000;193000;182000;149000;268000;294000;305000;317000;323000;325000;315000;345000;315000;287000;315000 -272;'688;Serbia;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;114000;183000;194830;117982;116178;158001;205000;206000;263000;220000;244000;283000;313800;307000;311000;306000;368000;297000 -272;'688;Serbia;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;156822;169705;181198;63685;63080;148683;197999;208634;276379;178955;195047;239879;266218;253210;241051;296640;387461;276389 -272;'688;Serbia;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13000;33000;36000;83000;97000;61300;122600;158500;177100;193900;214000;247200;257200;262000;281000;257000;183000;293000 -272;'688;Serbia;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17157;44935;50420;126127;132609;125605;160730;194664;255438;234441;241578;301908;311899;313752;281146;318384;271490;348493 -272;'688;Serbia;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53000;62000;66000;81000;88000;81000;72000;99000;108000;111000;114000;108000;110000;105000;109000;99000;86000;81000 -272;'688;Serbia;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53000;84000;89000;76000;72000;61000;64000;71000;79000;85000;93000;103000;116000;115000;127000;87000;151000;122000 -272;'688;Serbia;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111440;47246;50286;30380;28568;38033;34133;40051;44625;40205;44453;53349;70367;56234;56432;58023;119962;67602 -272;'688;Serbia;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;6000;6000;32000;38000;14000;200;20000;19000;18800;29000;32000;39000;44000;53000;50000;62000;58000 -272;'688;Serbia;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7702;9342;9447;94618;98068;7032;129;8981;8881;6894;10656;13938;20118;18247;19546;29663;42496;25473 -272;'688;Serbia;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16000;19000;23000;21000;26000;22000;15000;43000;47000;49000;52000;63000;65000;77000;102000;91000;82000;128000 -272;'688;Serbia;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23000;49000;55000;5000;4000;1;30000;33000;36000;41000;98000;123000;137000;122000;108000;126000;122000;108000 -272;'688;Serbia;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11527;76817;79775;3372;2689;5;43181;55854;57211;54395;106872;136805;136397;131306;120333;146188;149827;130238 -272;'688;Serbia;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;41000;116000;131000;150000;165000;170000;198000;199000;198000;209000;188000;106000;221000 -272;'688;Serbia;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;113251;155272;179512;240227;220166;219441;273744;276539;279604;244862;269606;211260;306331 -272;'688;Serbia;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33000;37000;41000;73000;76000;77000;61000;68000;76000;79000;82000;86000;87000;78000;81000;78000;74000;71000 -272;'688;Serbia;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27000;35000;41000;30000;31000;27000;34000;30000;35000;37000;40000;47000;51000;57000;66000;83000;85000;58000 -272;'688;Serbia;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25298;34769;42396;25956;26826;31255;36412;33917;39197;33124;35278;42939;52608;55899;57090;84719;108834;71269 -272;'688;Serbia;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;25000;29000;50000;57000;6000;6000;7000;8000;10000;15000;17000;19000;19000;18000;18000;14000;14000 -272;'688;Serbia;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7119;34034;39977;31302;34229;5126;5097;5905;6105;7284;11481;14067;15087;15368;15519;18418;17309;16497 -272;'688;Serbia;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12000;14000;9000;3000;3000;2000;1000;58000;63000;66000;69000;66000;63000;55000;53000;47000;45000;35000 -272;'688;Serbia;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11000;15000;9830;6982;9178;70000;77000;72000;113000;57000;13000;10000;9800;13000;10000;10000;10000;9000 -272;'688;Serbia;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8557;10873;8741;3977;4997;79390;84273;78812;135346;51231;8444;6786;6846;9771;7196;7710;8838;7280 -272;'688;Serbia;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;2000;1000;1000;2000;300;400;500;100;100;0;200;200;1000;1000;1000;1000;0 -272;'688;Serbia;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2336;1559;996;207;312;196;232;266;225;97;0;159;155;533;1219;697;425;192 -272;'688;Serbia;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35000;33000;40000;12000;3000;12000;11000;17000;19000;21000;23000;27000;25000;23000;22000;18000;15000;14000 -272;'688;Serbia;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52000;44000;11000;75000;72000;49000;17000;19000;11000;2000;4000;4600;4000;5000;5000;5000;5000;6000 -272;'688;Serbia;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77446;68352;14551;121425;115668;87521;44608;50063;29012;7366;17177;17738;18540;18273;19610;19915;21561;28372 -272;'688;Serbia;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19000;5000;3000;1000;1000;64000;2000;1000;1000;100;100;100;100;100;200;0;0;0 -272;'688;Serbia;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57803;13244;7401;1607;1710;52767;1958;505;601;309;620;451;662;811;1013;1460;1450;1034 -272;'688;Serbia;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98550;99446;120584;135295;162711;186074;182374 -272;'688;Serbia;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;337592;385729;396687;400693;482702;543587;551873 -272;'688;Serbia;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7197;7922;7622;8343;8994;8676;9827 -272;'688;Serbia;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9306;11005;10290;11080;14498;15281;15407 -272;'688;Serbia;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2454;3014;2959;4269;4243;4935;4927 -272;'688;Serbia;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;293;459;644;548;423;852;1310 -272;'688;Serbia;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4743;4908;4663;4074;4751;3741;4900 -272;'688;Serbia;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9013;10546;9646;10532;14075;14429;14097 -272;'688;Serbia;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16115;20046;24346;21039;26436;34185;35248 -272;'688;Serbia;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18154;22376;27214;22813;29902;38576;35017 -272;'688;Serbia;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1469;1296;1412;1616;2325;2911;1610 -272;'688;Serbia;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1346;1765;1475;1614;2406;3081;2831 -272;'688;Serbia;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13307;14227;16671;22227;29134;31824;35573 -272;'688;Serbia;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64703;78303;58743;52401;59693;73626;65613 -272;'688;Serbia;1636;Glue-laminated timber (glulam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8000;10000 -272;'688;Serbia;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2000 -272;'688;Serbia;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2262;2156 -272;'688;Serbia;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;5000 -272;'688;Serbia;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5954;5903 -272;'688;Serbia;1688;Cross-laminated timber (CLT or X-lam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1000 -272;'688;Serbia;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;1 -272;'688;Serbia;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;2 -272;'688;Serbia;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -272;'688;Serbia;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -272;'688;Serbia;1684;I-beams (I-joists);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -272;'688;Serbia;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -272;'688;Serbia;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;111 -272;'688;Serbia;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -272;'688;Serbia;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;7 -272;'688;Serbia;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54585;51275;62961;74761;88081;99240;90004 -272;'688;Serbia;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;214468;239544;265810;271898;323944;349509;369487 -272;'688;Serbia;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;197;225;310;129;315;834;762 -272;'688;Serbia;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3098;3531;3733;2984;8870;9546;9962 -272;'688;Serbia;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5680;4455;7262;7180;7426;8404;9350 -272;'688;Serbia;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26517;29205;29422;37903;43389;53968;53556 -272;'688;Serbia;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;193650.77;204578;201448;177478;200693;243335;215191 -272;'688;Serbia;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92808.16;113715;127462;186933;238135;295515;268516 -272;'688;Serbia;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1739.03;1739;1739;2975;3611;4599;3292 -272;'688;Serbia;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43.21;43;43;35;67;142;237 -272;'688;Serbia;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17954.69;17955;17955;24495;30736;41194;34032 -272;'688;Serbia;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1259.73;1260;1260;14496;16433;26133;31037 -272;'688;Serbia;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81695.03;81695;81695;38396;39832;47396;48514 -272;'688;Serbia;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28016.13;28016;28016;53132;54937;69070;84196 -272;'688;Serbia;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76006;86933;83803;82350;91974;107733;114612 -272;'688;Serbia;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57931;78838;92585;101783;142212;167494;148803 -272;'688;Serbia;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16256.02;16256;16256;29262;34540;42413;14741 -272;'688;Serbia;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5558.09;5558;5558;17487;24486;32676;4243 -186;'891;Serbia and Montenegro;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81802;24042;13888;14637;175672;201628;171239;162932;186526;149123;125159;257390;354167;583511;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79300;19713;14719;13907;67626;96335;96357;59312;83636;68460;63612;83373;142529;140102;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1861;Roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2809000;2597000;2796000;3086000;3118000;2761000;2738000;2533000;3353500;2484300;2936000;3155000;3520000;3170000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93800;24220;24316;99300;171400;79100;53400;70300;13700;22800;41200;30800;13000;28000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4688;1597;1601;1601;11766;4552;1721;3032;474;352;1885;1369;901;1989;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67422;51074;52173;19100;37700;95100;52700;39700;23100;50400;56000;41000;38000;57000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7616;3091;3543;3548;7030;10157;6261;1775;1883;2406;3650;4215;5996;7682;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;553000;411000;549000;521000;563000;412000;401000;316000;373500;336800;370000;418000;527000;424000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1863;Roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2256000;2186000;2247000;2565000;2555000;2349000;2337000;2217000;2980000;2147500;2566000;2737000;2993000;2746000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1864;Wood fuel;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1573000;1648000;1502000;1664000;1715000;1523000;1432000;1282000;1772000;1276900;1650000;1901000;2097000;1854000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;104;200;0;4400;3000;300;16300;12200;18200;18200;800;2000;3000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;4;4;4;136;92;9;500;410;218;218;20;39;44;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33078;33073;33073;0;0;0;0;0;0;1000;2000;3000;5000;1000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1555;1555;1555;1560;1560;1560;1560;0;0;12;40;45;92;28;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23000;19000;21000;17000;29000;34000;22000;19000;19000;20200;35000;135000;155000;119000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1628;Wood fuel, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1550000;1629000;1481000;1647000;1686000;1489000;1410000;1263000;1753000;1256700;1615000;1766000;1942000;1735000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;104;200;0;4400;3000;300;16300;12200;18200;18200;800;2000;3000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;4;4;4;136;92;9;500;410;218;218;20;39;44;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33078;33073;33073;0;0;0;0;0;0;1000;2000;3000;5000;1000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1555;1555;1555;1560;1560;1560;1560;0;0;12;40;45;92;28;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1865;Industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1236000;949000;1294000;1422000;1403000;1238000;1306000;1251000;1581500;1207400;1286000;1254000;1423000;1316000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93600;24116;24116;99300;167000;76100;53100;54000;1500;4600;23000;30000;11000;25000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4680;1593;1597;1597;11630;4460;1712;2532;64;134;1667;1349;862;1945;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34344;18001;19100;19100;37700;95100;52700;39700;23100;49400;54000;38000;33000;56000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6061;1536;1988;1988;5470;8597;4701;1775;1883;2394;3610;4170;5904;7654;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;530000;392000;528000;504000;534000;378000;379000;297000;354500;316600;335000;283000;372000;305000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28400;24000;24000;99300;99200;33400;600;35300;1500;3500;19000;29000;10000;20000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2270;1566;1570;1570;7130;2350;79;1853;64;90;1520;1274;776;1390;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18944;17902;18000;18000;18000;18000;800;18000;0;0;2000;3000;4000;1000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1561;1511;1510;1510;1510;1510;76;0;0;0;110;135;211;58;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28400;24000;24000;99300;99200;33400;600;35300;1500;3500;19000;29000;10000;20000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2270;1566;1570;1570;7130;2350;79;1853;64;90;1520;1274;776;1390;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18944;17902;18000;18000;18000;18000;800;18000;0;0;2000;3000;4000;1000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1561;1511;1510;1510;1510;1510;76;0;0;0;110;135;211;58;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1867;Industrial roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;706000;557000;766000;918000;869000;860000;927000;954000;1227000;890800;951000;971000;1051000;1011000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65200;116;116;0;67800;42700;52500;18700;0;1100;4000;1000;1000;5000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2410;27;27;27;4500;2110;1633;679;0;44;147;75;86;555;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15400;99;1100;1100;19700;77100;51900;21700;23100;49400;52000;35000;29000;55000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4500;25;478;478;3960;7087;4625;1775;1883;2394;3500;4035;5693;7596;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65200;116;116;0;67800;42700;52500;18700;0;1100;4000;1000;1000;5000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2410;27;27;27;4500;2110;1633;679;0;44;147;75;86;555;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15400;99;1100;1100;19700;77100;51900;21700;23100;49400;52000;35000;29000;55000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4500;25;478;478;3960;7087;4625;1775;1883;2394;3500;4035;5693;7596;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1868;Sawlogs and veneer logs;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1007000;760000;852000;938000;969000;911000;830000;972000;1266000;1006000;1040000;1082000;1138000;1096000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;386000;283000;387000;382000;350000;237000;196000;236000;298400;281900;300000;264000;296000;272000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;621000;477000;465000;556000;619000;674000;634000;736000;967600;724100;740000;818000;842000;824000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119000;103000;189200;139800;164000;106000;196000;168000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13000;13000;15000;11200;14000;14000;53000;21000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106000;90000;174200;128600;150000;92000;143000;147000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1870;Pulpwood and particles (1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;180000;180000;180000;180000;;;;;;;;;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;180000;180000;180000;180000;;;;;;;;;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1871;Other industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;229000;189000;262000;304000;254000;147000;357000;176000;126300;61600;82000;66000;89000;52000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;144000;109000;141000;122000;184000;141000;170000;48000;41100;23500;21000;5000;23000;12000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85000;80000;121000;182000;70000;6000;187000;128000;85200;38100;61000;61000;66000;40000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1800;800;600;500;1100;1200;1400;1300;1400;1100;1500;3000;2000;3000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1100;5;5;100;1800;600;100;200;0;0;0;0;0;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;410;4;4;18;690;166;75;86;0;0;0;0;0;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;;;;500;800;700;500;600;500;1000;0;0;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;166;;;;147;229;227;102;115;105;180;0;0;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8000;6500;6500;6500;6500;6500;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;1000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;3;0;0;0;0;0;47;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2000;800;0;0;0;0;1000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;11;9;0;0;0;0;1;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;2000;2000;2000;2000;2000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;13;13;0;0;0;0;0;0;0;0;0;0;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;1;2;2;1;3;0;0;0;0;0;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2224;700;700;1000;1000;1000;1000;1000;0;0;0;0;0;1000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;26;26;26;26;26;0;0;0;0;0;0;0;1;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;4500;4500;4500;4500;4500;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2774;26;26;0;0;0;0;0;0;0;0;0;0;1000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;261;0;0;1;1;1;1;0;0;0;0;0;0;47;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;922;743;743;1000;1000;1000;1000;1000;800;0;0;0;0;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;29;29;29;29;29;29;11;9;0;0;0;0;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;461000;315000;280000;304000;378000;391000;438000;364000;504000;391300;432000;514000;575000;497000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33800;3727;1662;1500;322500;753800;623900;257400;370500;313800;362000;353000;396000;356000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3973;854;696;696;48932;80054;62240;42777;49716;28014;33840;40899;57102;48699;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116500;1682;19900;51500;144900;229900;256700;189600;243100;185600;188000;156000;175000;171000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36878;785;203;203;38430;56620;61291;44453;49337;31881;35160;34903;48598;43517;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;167000;146000;144000;159000;120000;82000;73000;94000;106000;94800;122000;158000;207000;154000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33300;3289;500;500;271500;721800;622700;239800;350300;295700;340000;328000;350000;311000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3903;651;157;157;38861;73905;61604;39845;46566;25938;31270;36635;43666;37845;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;263;300;4700;13900;23900;26700;7600;2800;21100;36000;18000;13000;44000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;148;95;95;95;2280;3340;3889;906;326;2363;3780;2152;1457;4902;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;294000;169000;136000;145000;258000;309000;365000;270000;398000;296500;310000;356000;368000;343000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;438;1162;1000;51000;32000;1200;17600;20200;18100;22000;25000;46000;45000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;203;539;539;10071;6149;636;2932;3150;2076;2570;4264;13436;10854;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116000;1419;19600;46800;131000;206000;230000;182000;240300;164500;152000;138000;162000;127000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36730;690;108;108;36150;53280;57402;43547;49011;29518;31380;32751;47141;38615;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40000;26000;23000;29000;28000;25000;29000;22000;33000;23100;13400;30000;13000;19000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;900;245;200;400;4000;3300;2900;4350;1300;600;1400;2000;4000;3000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2231;193;193;193;2231;1621;1231;845;1350;962;1020;1884;4035;2293;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9900;0;0;0;8000;9600;9400;7400;12100;13600;10400;13000;17000;9000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4475;177;177;177;4440;4547;3766;2747;4680;3410;2780;3728;6481;4105;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98000;72000;64000;80000;84000;86000;99000;69000;85000;80000;47000;30000;46000;51000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40632;4018;3639;3804;41200;49900;52500;53748;62100;102500;160000;212000;325000;258000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6728;2052;1693;1751;12593;12719;13536;10554;12409;20655;35290;55547;92439;82846;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7900;4595;3641;3653;11632;14700;16100;13510;12600;10100;9600;10000;23000;23000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3308;1743;333;333;3772;4274;4762;4170;3079;3012;2720;2889;7939;7873;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19000;16000;9000;15000;13000;13000;14000;14000;19000;15300;12000;7000;12000;11000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;3228;2200;2200;6200;4600;3100;3100;900;500;2000;2000;3000;3000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;1777;1250;1250;3473;2569;1655;577;505;221;750;1150;2003;1742;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3400;489;489;489;5600;6900;7500;9710;6800;5100;2100;1000;5000;5000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1724;255;255;255;2128;2373;3029;3600;2119;1960;990;223;2251;2823;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1646;Particle board and OSB (1961-1994);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79000;56000;55000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37700;351;1000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5297;61;229;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;86;3100;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;164;53;53;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57000;57000;56000;59000;45000;50000;41300;11000;5000;7000;9000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;26500;34100;38200;39100;50900;78000;120000;157000;215000;168000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;229;5780;7603;9245;7756;9160;13520;22000;30233;40588;38129;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3100;4700;1900;100;1400;1300;1100;2000;1000;4000;5000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;1068;391;27;61;127;186;520;581;2435;1794;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12000;13000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2409;3652;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1874;Fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8000;14000;17000;26000;10000;16000;23400;24000;18000;27000;31000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2832;439;439;604;8500;11200;11200;11548;10300;24000;38000;53000;95000;74000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1358;214;214;272;3340;2547;2636;2221;2744;6914;12540;24164;47439;39323;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;4020;52;64;1332;5900;8500;2400;4500;3900;5500;8000;14000;13000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1420;1435;25;25;576;1510;1706;509;833;866;1210;2085;3253;3256;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8000;14000;17000;26000;10000;16000;23400;24000;18000;27000;31000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;1000;800;200;1000;2100;5100;12000;21000;47000;48000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;629;357;218;393;660;2516;4900;13692;29877;31183;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;1300;5200;5700;2000;4300;3900;5500;8000;14000;13000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;566;1336;1356;464;820;866;1210;2085;3253;3256;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;5200;8100;8700;7300;8200;18400;25000;29000;44000;24000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;2405;1884;2112;1828;2084;4308;7500;9120;15882;7731;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;2600;400;200;0;0;0;0;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;292;45;13;0;0;0;0;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1650;Other fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;454;404;404;404;2300;2300;2300;3248;0;500;1000;3000;4000;2000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;203;189;189;189;306;306;306;0;0;90;140;1352;1680;409;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;4000;32;32;32;500;200;0;0;0;0;0;0;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1420;1420;10;10;10;131;58;0;0;0;0;0;0;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2378;35;35;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1155;25;25;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;20;20;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;15;15;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;123000;64000;70000;94000;71000;97000;100000;74000;147000;175400;179000;68000;62000;65000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61044;44968;26300;26300;26400;22300;28181;45630;83129;37481;35672;33672;20501;22501;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21298;12252;2929;2929;15985;14978;12094;25699;37439;11004;10304;9340;6066;8039;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49172;24915;13000;13000;13400;27100;30976;18473;35068;30258;38760;13560;44204;37204;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19790;10516;4710;4710;5257;9703;10604;1275;13686;10859;12840;7095;7592;3626;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1878;Pulp for paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98000;39000;45000;69000;46000;72000;75000;49000;122000;150400;154000;43000;22000;25000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25044;20059;1300;1300;11400;15900;11500;28400;47100;15700;15000;13000;9000;11000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17298;9654;331;331;11987;11957;7938;22351;33156;9333;8500;7536;4782;6755;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47732;24726;13000;13000;13100;25100;27900;15500;32400;26300;28200;3000;8000;1000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19550;10485;4710;4710;5226;9503;10354;1031;13497;10609;12000;6255;4202;236;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1875;Wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98000;39000;45000;69000;46000;71000;74000;47500;122000;146000;152000;42000;21000;24000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27639;22912;4300;4300;14200;18700;14300;31100;47100;15700;15000;13000;8000;11000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18946;11671;2608;2608;13918;13888;7938;22351;33156;9333;8500;7536;4781;6755;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47400;24941;13000;13000;13100;25100;27900;15500;32400;26300;28200;3000;8000;1000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19858;10652;4905;4905;5421;9698;10549;1031;13497;10609;12000;6255;4202;236;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1654;Mechanical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18000;16000;21000;26000;16000;13000;14000;4000;12000;23600;21000;2000;2000;1000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2597;570;1000;1000;1000;1000;1000;1000;0;100;0;0;0;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1039;154;154;154;154;154;154;0;0;108;0;0;0;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13000;13000;13000;13000;13000;13000;13000;13000;0;0;0;0;0;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4550;4550;4550;4550;4550;4550;4550;0;0;0;0;0;0;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11000;7000;10000;12000;11000;9000;13000;6000;18000;7200;6000;3000;0;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;283;300;300;0;0;0;0;0;0;0;0;0;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;261;96;177;177;177;177;177;0;0;0;0;0;0;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;1000;0;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;160;160;160;160;160;160;160;0;0;0;0;11;0;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1656;Chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69000;16000;14000;31000;19000;49000;47000;37500;92000;115200;125000;37000;19000;23000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21500;18661;0;0;10200;14700;10300;27100;47100;15600;15000;13000;8000;11000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15284;9144;0;0;11310;11280;7607;22351;33156;9225;8500;7536;4781;6755;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34400;11700;0;0;100;12100;14900;2500;32400;26300;28200;2000;8000;1000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14694;5747;0;0;516;4793;5644;1031;13497;10609;12000;6244;4202;236;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21000;21000;31500;72000;69000;76000;0;0;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1100;1434;0;0;2400;300;300;100;100;0;0;0;0;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;486;780;0;0;1627;227;267;109;121;0;0;0;0;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;32400;26200;28200;0;0;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;13497;10555;12000;0;0;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69000;16000;14000;31000;19000;28000;26000;6000;20000;46200;49000;37000;19000;23000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12100;17027;0;0;3000;7700;3900;7900;17000;9800;9000;8000;4000;8000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8710;8307;0;0;6944;4953;2351;4486;9352;5086;3700;3751;2427;4865;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16800;11700;0;0;0;0;0;0;0;0;0;2000;8000;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8248;5747;0;0;0;0;0;0;0;0;0;6244;4202;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17600;;;;100;12100;1500;0;0;0;0;0;0;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6446;;;;516;4793;745;0;0;0;0;0;0;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8300;200;0;0;4800;6700;6100;19100;30000;5800;6000;5000;4000;3000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6088;57;0;0;2739;6100;4989;17756;23683;4139;4800;3785;2354;1890;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;13400;2500;0;100;0;0;0;1000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;4899;1031;0;54;0;0;0;236;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3542;3398;3000;3000;3000;3000;3000;3000;0;0;0;0;0;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2362;2277;2277;2277;2277;2277;0;0;0;0;0;0;0;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;241;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;454;195;195;195;195;195;195;0;0;0;0;0;0;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1668;Pulp from fibres other than wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1500;0;4400;2000;1000;1000;1000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;947;545;0;0;200;200;200;300;0;0;0;0;1000;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;714;260;0;0;346;346;0;0;0;0;0;0;1;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;332;26;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;146;28;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;1000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;261;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;40000;40000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36000;24909;25000;25000;15000;6400;16681;17230;36029;21781;20672;20672;11501;11501;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;2598;2598;2598;3998;3021;4156;3348;4283;1671;1804;1804;1284;1284;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1440;189;0;0;300;2000;3076;2973;2668;3958;10560;10560;36204;36204;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;240;31;0;0;31;200;250;244;189;250;840;840;3390;3390;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1876;Paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;402000;222000;238000;245000;249000;117000;326000;229600;179600;241400;254000;148000;159000;229000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30700;4768;7700;6000;83200;101400;96800;96500;105600;137900;69000;177000;221000;426000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39850;4813;4495;5170;81195;85258;80340;79936;85138;88136;42820;148351;193624;439337;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8100;4672;10300;6800;7700;17400;17300;17400;31900;33600;11800;46200;71300;66000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6516;3151;5503;4686;8300;10555;9222;4779;10847;16787;6282;30543;65923;73298;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;2042;Graphic papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57000;32000;38000;47000;29000;25000;23000;22000;30000;41100;52000;54000;49000;54000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17500;2868;1700;1500;34100;70700;43100;49300;39000;21100;37000;102000;117000;274000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17439;2960;1508;1508;29318;59320;25509;20485;19640;15471;22520;87222;98824;230137;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6600;4472;4300;4100;5100;15300;14900;10300;20700;1500;1000;200;32000;38000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2662;2941;2941;2941;5526;8777;8299;3043;8186;735;404;91;16158;19060;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1671;Newsprint;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57000;32000;38000;47000;29000;25000;23000;22000;30000;41100;52000;54000;49000;54000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2400;690;400;600;18100;27300;13300;5000;800;9200;25000;47000;53000;49000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1404;379;308;308;13020;14725;8220;338;52;5029;12920;26847;32044;31063;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;4000;4000;4000;4000;4000;4000;4000;20700;1500;1000;200;1000;1000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2010;2530;2530;2530;2530;2530;2530;0;8186;735;404;91;939;61;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1674;Printing and writing papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15100;2178;1300;900;16000;43400;29800;44300;38200;11900;12000;55000;64000;225000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16035;2581;1200;1200;16298;44595;17289;20147;19588;10442;9600;60375;66780;199074;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2600;472;300;100;1100;11300;10900;6300;0;0;0;0;31000;37000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;652;411;411;411;2996;6247;5769;3043;0;0;0;0;15219;18999;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29800;44300;38200;11900;12000;55000;64000;190000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17289;20147;19588;10442;9600;60375;66780;186375;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10900;6300;0;0;0;0;31000;37000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5769;3043;0;0;0;0;15219;18999;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;12000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;3625;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;23000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;9074;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;345000;190000;200000;198000;220000;92000;303000;207600;149600;200300;202000;94000;110000;175000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13200;1900;6000;4500;49100;30700;53700;47200;66600;116800;32000;75000;104000;152000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22411;1853;2987;3662;51877;25938;54831;59451;65498;72665;20300;61129;94800;209200;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1500;200;6000;2700;2600;2100;2400;7100;11200;32100;10800;46000;39300;28000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3854;210;2562;1745;2774;1778;923;1736;2661;16052;5878;30452;49765;54238;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47000;47000;70500;1000;2500;6000;3000;6000;19000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3700;;;;11200;11500;10000;9000;8300;10300;11000;15000;18000;76000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1847;;;;7645;6655;5143;3529;3155;5073;6318;7568;9413;104600;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;400;1000;300;4000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;42;59;32;7124;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;253000;132600;148600;197800;196000;91000;99000;102000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19300;21000;24500;34200;5500;35000;49000;34000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17650;19217;21087;19564;3920;27742;37871;41041;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;700;300;8000;20000;15000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;551;32;2196;40406;15586;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42000;;;;;;;;;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;190000;79600;84600;108100;100000;44000;46000;52000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;19000;20000;10000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;14453;16831;21906;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;15000;8000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;37157;11143;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;12000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19000;16000;21000;53100;61000;45000;42000;30000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19300;21000;24500;29700;4400;13000;17000;18000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17650;19217;21087;17108;3100;10524;12669;14768;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;400;0;2000;4000;6000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;237;0;1542;2013;3122;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44000;37000;43000;36600;35000;2000;11000;8000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;4500;1100;3000;12000;6000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;2456;820;2765;8371;4367;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;300;300;6000;1000;1000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;314;32;654;1236;1321;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;345000;190000;200000;198000;220000;3000;3000;4500;0;0;0;0;5000;54000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9500;1900;6000;4500;37900;19200;24400;17200;33800;72300;15500;25000;37000;42000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20564;1853;2987;3662;44232;19283;32038;36705;41256;48028;10062;25819;47516;63559;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1500;200;6000;2700;2600;2100;2400;7100;11200;31400;10100;37000;19000;9000;;;;;;;;;;;;;;;;;; -186;'891;Serbia and Montenegro;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3854;210;2562;1745;2774;1778;923;1736;2661;15501;5804;28197;9327;31528;;;;;;;;;;;;;;;;;; -196;'690;Seychelles;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52147;55763;55856;30355;31313;75893;103596 -196;'690;Seychelles;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;761;710;319;685;349;1532;729 -196;'690;Seychelles;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;743;;6884;325;1416;1416;1416;1416;1416;1416;1416;1416;1416;1416;1416;1416;1416;1416;4184;11385;9676;10238;8612;12233;14434;17080;18683;15904;15852;20826;12171;11893;19286;29369 -196;'690;Seychelles;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88;99;99;99;99;99;99;99;99;99;99;99;99;99;99;99;233.2;1575;1978;583;777;748;699;931;652;591;234;522;268;1403;645 -196;'690;Seychelles;1861;Roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10140;10140;10500;10500;10500;10500;10500;10500;10500;10500;11940;11940;11580;11580;11580;12840;12840;12840;12840;12840;12840;12840;12840;12840;12840;12840;12840;12840;12840;12840;12840;12840;12840;12840 -196;'690;Seychelles;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2151;;;;108;108;108;108;108;108;108;108;108;108;108;108;108;108;108;26;26;4195;341;1571;2086;1240;2766;1393;2040;2722;1202;333;6165;4674 -196;'690;Seychelles;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;743;;;;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;5;5;430;75;588;1171;579;1108;504;697;1134;267;110;1640;1416 -196;'690;Seychelles;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;434;434;434;434;434;434;434;434;434;434;434;434;434;434;434;434;1006;329;42;42;205;0;0;0;0;4;0;0;0;0;0 -196;'690;Seychelles;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;87;87;87;87;87;87;87;87;87;87;87;87;87;87;87;166;54;65;65;34;13;0;0;0;9;0;0;0;0;0 -196;'690;Seychelles;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -196;'690;Seychelles;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;429;487;1823;840;2;2959;4674 -196;'690;Seychelles;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;171;135;809;162;15;1602;1416 -196;'690;Seychelles;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -196;'690;Seychelles;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -196;'690;Seychelles;1863;Roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10140;10140;10500;10500;10500;10500;10500;10500;10500;10500;11940;11940;11580;11580;11580;12840;12840;12840;12840;12840;12840;12840;12840;12840;12840;12840;12840;12840;12840;12840;12840;12840;12840;12840 -196;'690;Seychelles;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;964;1553;899;362;331;3206;0 -196;'690;Seychelles;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;333;562;325;105;95;38;0 -196;'690;Seychelles;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;4;0;0;0;0;0 -196;'690;Seychelles;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;9;0;0;0;0;0 -196;'690;Seychelles;1864;Wood fuel;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5860;5860;5500;5500;5500;5500;5500;5500;5500;5500;4060;4060;3700;3700;3700;3160;3160;3160;3160;3160;3160;3160;3160;3160;3160;3160;3160;3160;3160;3160;3160;3160;3160;3160 -196;'690;Seychelles;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -196;'690;Seychelles;1628;Wood fuel, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5860;5860;5500;5500;5500;5500;5500;5500;5500;5500;4060;4060;3700;3700;3700;3160;3160;3160;3160;3160;3160;3160;3160;3160;3160;3160;3160;3160;3160;3160;3160;3160;3160;3160 -196;'690;Seychelles;1865;Industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4280;4280;5000;5000;5000;5000;5000;5000;5000;5000;7880;7880;7880;7880;7880;9680;9680;9680;9680;9680;9680;9680;9680;9680;9680;9680;9680;9680;9680;9680;9680;9680;9680;9680 -196;'690;Seychelles;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2151;;;;108;108;108;108;108;108;108;108;108;108;108;108;108;108;108;26;26;4195;341;1571;2086;1240;2766;1393;2040;2722;1202;333;6165;4674 -196;'690;Seychelles;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;743;;;;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;5;5;430;75;588;1171;579;1108;504;697;1134;267;110;1640;1416 -196;'690;Seychelles;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;434;434;434;434;434;434;434;434;434;434;434;434;434;434;434;434;1006;329;42;42;205;0;0;0;0;4;0;0;0;0;0 -196;'690;Seychelles;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;87;87;87;87;87;87;87;87;87;87;87;87;87;87;87;166;54;65;65;34;13;0;0;0;9;0;0;0;0;0 -196;'690;Seychelles;1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -196;'690;Seychelles;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108;108;108;108;108;108;108;108;108;108;108;108;108;108;108;26;26;4137;243;0;0;180;550;429;487;1823;840;2;2959;4674 -196;'690;Seychelles;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;5;5;417;24;0;0;79;136;171;135;809;162;15;1602;1416 -196;'690;Seychelles;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;572;326;2;2;205;0;0;0;0;0;0;0;0;0;0 -196;'690;Seychelles;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;79;51;3;3;21;0;0;0;0;0;0;0;0;0;0 -196;'690;Seychelles;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108;108;108;108;108;108;108;108;108;108;108;108;108;108;108;26;26;4137;243;0;0;180;550;429;487;1823;840;2;2959;4674 -196;'690;Seychelles;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;5;5;417;24;0;0;79;136;171;135;809;162;15;1602;1416 -196;'690;Seychelles;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;572;326;2;2;205;0;0;0;0;0;0;0;0;0;0 -196;'690;Seychelles;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;79;51;3;3;21;0;0;0;0;0;0;0;0;0;0 -196;'690;Seychelles;1867;Industrial roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4280;4280;5000;5000;5000;5000;5000;5000;5000;5000;7880;7880;7880;7880;7880;9680;9680;9680;9680;9680;9680;9680;9680;9680;9680;9680;9680;9680;9680;9680;9680;9680;9680;9680 -196;'690;Seychelles;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2151;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;58;98;1571;2086;1060;2216;964;1553;899;362;331;3206;0 -196;'690;Seychelles;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;743;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;13;51;588;1171;500;972;333;562;325;105;95;38;0 -196;'690;Seychelles;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;434;434;434;434;434;434;434;434;434;434;434;434;434;434;434;434;434;3;40;40;0;0;0;0;0;4;0;0;0;0;0 -196;'690;Seychelles;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;87;87;87;87;87;87;87;87;87;87;87;87;87;87;87;87;3;62;62;13;13;0;0;0;9;0;0;0;0;0 -196;'690;Seychelles;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;23;63;870;1385;842;2113;546;969;555;3;28;0;0 -196;'690;Seychelles;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;7;45;522;1105;439;942;258;441;274;6;8;0;0 -196;'690;Seychelles;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;434;434;434;434;434;434;434;434;434;434;434;434;434;434;434;434;434;3;40;40;0;0;0;0;0;4;0;0;0;0;0 -196;'690;Seychelles;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;87;87;87;87;87;87;87;87;87;87;87;87;87;87;87;87;3;62;62;13;13;0;0;0;9;0;0;0;0;0 -196;'690;Seychelles;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2151;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;35;35;701;701;218;103;418;584;344;359;303;3206;0 -196;'690;Seychelles;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;743;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;6;6;66;66;61;30;75;121;51;99;87;38;0 -196;'690;Seychelles;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -196;'690;Seychelles;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -196;'690;Seychelles;1868;Sawlogs and veneer logs;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4280;4280;5000;5000;5000;5000;5000;5000;5000;5000;7880;7880;7880;7880;7880;9680;9680;9680;9680;9680;9680;9680;9680;9680;9680;9680;9680;9680;9680;9680;9680;9680;9680;9680 -196;'690;Seychelles;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 -196;'690;Seychelles;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4280;4280;5000;5000;5000;5000;5000;5000;5000;5000;7880;7880;7880;7880;7880;9680;9680;9680;9680;9680;9680;9680;9680;9680;9680;9680;9680;9680;9680;9680;9680;9680;9680;9680 -196;'690;Seychelles;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 -196;'690;Seychelles;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 -196;'690;Seychelles;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 -196;'690;Seychelles;1871;Other industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -196;'690;Seychelles;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 -196;'690;Seychelles;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 -196;'690;Seychelles;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -196;'690;Seychelles;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;1;1;3;6;8;8;8;67;36;29;4;24 -196;'690;Seychelles;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;1;2;3;12;6;6;6;64;54;49;21;26 -196;'690;Seychelles;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5;5;5;187;187 -196;'690;Seychelles;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;6;6;26;26 -196;'690;Seychelles;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 -196;'690;Seychelles;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;1;0;34;34;34;2;37;37;1;1 -196;'690;Seychelles;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;1;0;15;15;15;3;17;17;5;1 -196;'690;Seychelles;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1426;1426;1426;575;575;575;575;575;575;575;575;575;575;575 -196;'690;Seychelles;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;143;143;143;63;63;63;63;63;63;63;63;63;63;63 -196;'690;Seychelles;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -196;'690;Seychelles;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;1;1 -196;'690;Seychelles;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;1;1;5;1 -196;'690;Seychelles;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1426;1426;1426;575;575;575;575;575;575;575;575;575;575;575 -196;'690;Seychelles;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;143;143;143;63;63;63;63;63;63;63;63;63;63;63 -196;'690;Seychelles;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -196;'690;Seychelles;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;1;0;34;34;34;0;37;37;0;0 -196;'690;Seychelles;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;1;0;15;15;15;0;16;16;0;0 -196;'690;Seychelles;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;2;12;0;0 -196;'690;Seychelles;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;5;11;0;0 -196;'690;Seychelles;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -196;'690;Seychelles;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -196;'690;Seychelles;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;2;12;0;0 -196;'690;Seychelles;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;5;11;0;0 -196;'690;Seychelles;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;0;0;0;0 -196;'690;Seychelles;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9520;157;234;234;234;234;234;234;234;234;234;234;234;234;234;234;234;8594;10521;7867;8117;24357;9717;22011;33576;29390;21645;15940;21853;41706;17303;11459 -196;'690;Seychelles;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2957;26;181;181;181;181;181;181;181;181;181;181;181;181;181;181;181;5768;5916;4358;4384;4071;6602;8728;10326;8697;8480;10882;6060;6141;8268;3628 -196;'690;Seychelles;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;53;53;53;53;53;53;53;53;53;53;53;53;53;53;53;34;1871;1622;76;76;76;59;977;72;0;0;1118;42;2470;329 -196;'690;Seychelles;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;52;1253;863;75;75;75;39;342;61;0;0;290;20;805;128 -196;'690;Seychelles;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;0;0;0;0 -196;'690;Seychelles;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7429;18;56;56;56;56;56;56;56;56;56;56;56;56;56;56;56;5213;7995;7445;7683;22940;7681;19746;28660;25449;18061;13000;19430;39376;13443;8620 -196;'690;Seychelles;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2562;3;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;2531;3550;4004;4021;3124;4021;6385;7374;6334;5624;8346;4041;4175;4532;3065 -196;'690;Seychelles;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;53;53;53;53;53;53;53;53;53;53;53;53;53;53;53;2;1;45;76;76;76;9;785;0;0;0;0;42;2470;329 -196;'690;Seychelles;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;1;3;25;75;75;75;3;193;0;0;0;0;20;805;128 -196;'690;Seychelles;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -196;'690;Seychelles;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2091;139;178;178;178;178;178;178;178;178;178;178;178;178;178;178;178;3381;2526;422;434;1417;2036;2265;4916;3941;3584;2940;2423;2330;3860;2839 -196;'690;Seychelles;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;395;23;161;161;161;161;161;161;161;161;161;161;161;161;161;161;161;3237;2366;354;363;947;2581;2343;2952;2363;2856;2536;2019;1966;3736;563 -196;'690;Seychelles;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;32;1870;1577;0;0;0;50;192;72;0;0;1118;0;0;0 -196;'690;Seychelles;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;51;1250;838;0;0;0;36;149;61;0;0;290;0;0;0 -196;'690;Seychelles;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -196;'690;Seychelles;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;47;5;294;412;237;148;105;31;120;0;8;1;109 -196;'690;Seychelles;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;63;34;27;287;346;193;174;71;73;105;213;94;274;274 -196;'690;Seychelles;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -196;'690;Seychelles;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -196;'690;Seychelles;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -196;'690;Seychelles;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3015;307;1276;1276;1276;1276;1276;1276;1276;1276;1276;1276;1276;1276;1276;1276;3047;3476;2132;3659;1841;3589;1887;3544;4626;4072;5145;5559;5265;5026;7925;7921 -196;'690;Seychelles;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1940;107;755;755;755;755;755;755;755;755;755;755;755;755;755;755;3523;3728;2063;3633;2178;2385;2053;2547;3153;2710;2680;2896;2712;2554;4581;4734 -196;'690;Seychelles;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;745;169;139;139;139;159;182;153;139;139;139;6;39 -196;'690;Seychelles;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;565;122;85;85;85;102;104;95;85;85;85;53;43 -196;'690;Seychelles;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -196;'690;Seychelles;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2388;129;1229;1229;1229;1229;1229;1229;1229;1229;1229;1229;1229;1229;1229;1229;3000;3000;1841;3255;1554;3188;1432;3169;4287;3733;4806;4701;4626;4420;7189;7227 -196;'690;Seychelles;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1667;67;732;732;732;732;732;732;732;732;732;732;732;732;732;732;3500;3500;1930;3436;2018;2083;1686;2323;2950;2507;2477;2581;2384;2224;4111;4109 -196;'690;Seychelles;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;745;34;0;0;0;20;43;14;0;0;0;0;33 -196;'690;Seychelles;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;565;74;0;0;0;17;19;10;0;0;0;50;40 -196;'690;Seychelles;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;455;170;2;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -196;'690;Seychelles;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;178;37;2;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -196;'690;Seychelles;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -196;'690;Seychelles;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;2;2;2;2;2;77;14;148;173;323;281;90;39;39;39;265;148;36;125;65 -196;'690;Seychelles;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;2;2;2;2;2;35;11;72;98;232;109;83;65;65;65;126;67;31;108;79 -196;'690;Seychelles;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;135;139;139;139;139;139;139;139;139;139;6;6 -196;'690;Seychelles;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;85;85;85;85;85;85;85;85;85;3;3 -196;'690;Seychelles;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -196;'690;Seychelles;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;1;7;0;0;0;1;21;21;81;0 -196;'690;Seychelles;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;10;16;0;0;0;1;9;10;43;0 -196;'690;Seychelles;1874;Fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -196;'690;Seychelles;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;172;8;45;45;45;45;45;45;45;45;45;45;45;45;45;45;45;399;277;256;114;71;173;278;300;300;300;592;470;549;530;629 -196;'690;Seychelles;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;3;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;193;122;125;62;66;248;125;138;138;138;188;252;289;319;546 -196;'690;Seychelles;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -196;'690;Seychelles;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;63;63;33;54;38;15;8;8;8;5;8;146;27;47 -196;'690;Seychelles;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;39;39;24;56;1;19;30;30;30;6;54;134;25;58 -196;'690;Seychelles;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 -196;'690;Seychelles;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;364;211;191;78;15;113;11;26;26;26;66;278;120;422;383 -196;'690;Seychelles;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;167;77;82;36;3;211;17;33;33;33;61;171;104;275;397 -196;'690;Seychelles;1650;Other fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -196;'690;Seychelles;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;172;8;45;45;45;45;45;45;45;45;45;45;45;45;45;45;45;4;3;2;3;2;22;252;266;266;266;521;184;283;81;199 -196;'690;Seychelles;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;3;21;21;21;21;21;21;21;21;21;21;21;21;21;21;21;4;6;4;2;7;36;89;75;75;75;121;27;51;19;91 -196;'690;Seychelles;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -196;'690;Seychelles;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -196;'690;Seychelles;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -196;'690;Seychelles;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;77;18;21;21;2;2;64;45;45;45;0;0;0;0;29 -196;'690;Seychelles;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;53;27;38;27;3;10;51;63;63;63;1;0;0;1;24 -196;'690;Seychelles;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;200;3;27;191;191;191;191;191;191;191;191;191;635;635 -196;'690;Seychelles;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.2;75;4;5;33;33;33;33;33;33;33;33;33;342;342 -196;'690;Seychelles;1878;Pulp for paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -196;'690;Seychelles;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;62;43;43;43;0;0;0;0;29 -196;'690;Seychelles;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;6;47;56;56;56;0;0;0;0;19 -196;'690;Seychelles;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;444;444 -196;'690;Seychelles;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;309;309 -196;'690;Seychelles;1875;Wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -196;'690;Seychelles;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;42;42;42;0;0;0;0;28 -196;'690;Seychelles;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;30;30;30;0;0;0;0;19 -196;'690;Seychelles;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;444;444 -196;'690;Seychelles;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;309;309 -196;'690;Seychelles;1654;Mechanical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;;;;;;; -196;'690;Seychelles;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;;;;;;; -196;'690;Seychelles;1656;Chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -196;'690;Seychelles;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;42;42;42;0;0;0;0;28 -196;'690;Seychelles;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;30;30;30;0;0;0;0;19 -196;'690;Seychelles;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;444;444 -196;'690;Seychelles;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;309;309 -196;'690;Seychelles;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 -196;'690;Seychelles;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -196;'690;Seychelles;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -196;'690;Seychelles;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 -196;'690;Seychelles;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;42;42;42;0;0;0;0;28 -196;'690;Seychelles;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;30;30;30;0;0;0;0;19 -196;'690;Seychelles;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;444;444 -196;'690;Seychelles;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;309;309 -196;'690;Seychelles;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;;;;;;; -196;'690;Seychelles;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;;;;;;; -196;'690;Seychelles;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -196;'690;Seychelles;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 -196;'690;Seychelles;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;5;1;1;1;0;0;0;0;1 -196;'690;Seychelles;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;6;7;26;26;26;0;0;0;0;0 -196;'690;Seychelles;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0 -196;'690;Seychelles;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0 -196;'690;Seychelles;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -196;'690;Seychelles;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;77;18;21;21;1;1;2;2;2;2;0;0;0;0;0 -196;'690;Seychelles;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;53;27;38;27;2;4;4;7;7;7;1;0;0;1;5 -196;'690;Seychelles;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;200;3;27;191;191;191;191;191;191;191;191;191;191;191 -196;'690;Seychelles;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.2;75;4;5;33;33;33;33;33;33;33;33;33;33;33 -196;'690;Seychelles;1876;Paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -196;'690;Seychelles;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1794;141;389;389;389;389;389;389;389;389;389;389;389;389;389;389;389;1290;1072;1045;1345;2700;1235;1652;2035;2032;2032;3061;2844;2136;2286;11283 -196;'690;Seychelles;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1986;191;472;472;472;472;472;472;472;472;472;472;472;472;472;472;472;1819;1602;1733;1920;4874;4248;4970;3838;3838;3838;5727;2843;2917;4496;19266 -196;'690;Seychelles;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;12;6;263;137;693;692;692;614;614;614;67;67;69;143;52 -196;'690;Seychelles;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;15;13;338;173;481;473;473;385;385;385;47;45;61;114;43 -196;'690;Seychelles;2042;Graphic papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -196;'690;Seychelles;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;855;33;255;255;255;255;255;255;255;255;255;255;255;255;255;255;255;503;388;453;618;875;490;527;784;784;784;761;725;454;660;601 -196;'690;Seychelles;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1193;101;190;190;190;190;190;190;190;190;190;190;190;190;190;190;190;617;492;646;801;1208;1915;1511;1191;1191;1191;1101;969;694;1270;991 -196;'690;Seychelles;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;2;261;3;180;180;180;180;180;180;3;3;6;6;6 -196;'690;Seychelles;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;2;332;5;176;176;176;176;176;176;6;4;21;21;21 -196;'690;Seychelles;1671;Newsprint;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -196;'690;Seychelles;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;266;;192;192;192;192;192;192;192;192;192;192;192;192;192;192;192;117;19;50;105;65;65;201;199;199;199;16;216;4;119;0 -196;'690;Seychelles;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;155;;111;111;111;111;111;111;111;111;111;111;111;111;111;111;111;93;18;50;98;97;69;233;233;233;233;28;221;5;175;0 -196;'690;Seychelles;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;2;5;3;3;3;3;3;3;3;3;3;3;3;3 -196;'690;Seychelles;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;2;7;4;4;4;4;4;4;4;4;4;4;4;4 -196;'690;Seychelles;1674;Printing and writing papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -196;'690;Seychelles;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;589;33;63;63;63;63;63;63;63;63;63;63;63;63;63;63;63;386;369;403;513;810;425;326;585;585;585;745;509;450;541;601 -196;'690;Seychelles;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1038;101;79;79;79;79;79;79;79;79;79;79;79;79;79;79;79;524;474;596;703;1111;1846;1278;958;958;958;1073;748;689;1095;991 -196;'690;Seychelles;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;256;0;177;177;177;177;177;177;0;0;3;3;3 -196;'690;Seychelles;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;325;1;172;172;172;172;172;172;2;0;17;17;17 -196;'690;Seychelles;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 -196;'690;Seychelles;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;104;73;48;70;65;4;82;82;82;8;5;28;7;6 -196;'690;Seychelles;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;120;116;64;88;88;17;113;113;113;44;18;59;34;18 -196;'690;Seychelles;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0 -196;'690;Seychelles;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0 -196;'690;Seychelles;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 -196;'690;Seychelles;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;253;185;264;404;143;44;71;389;389;389;450;462;374;433;516 -196;'690;Seychelles;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;251;225;339;500;154;92;126;521;521;521;606;558;476;687;734 -196;'690;Seychelles;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -196;'690;Seychelles;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -196;'690;Seychelles;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 -196;'690;Seychelles;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;63;63;63;63;63;63;63;63;63;63;101;80;66;61;597;316;251;114;114;114;287;42;48;101;79 -196;'690;Seychelles;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;79;79;79;79;79;79;79;79;79;79;229;129;141;139;869;1666;1135;324;324;324;423;172;154;374;239 -196;'690;Seychelles;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;256;0;177;177;177;177;177;177;0;0;3;3;3 -196;'690;Seychelles;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;325;1;172;172;172;172;172;172;2;0;17;17;17 -196;'690;Seychelles;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -196;'690;Seychelles;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;939;108;134;134;134;134;134;134;134;134;134;134;134;134;134;134;134;787;684;592;727;1825;745;1125;1251;1248;1248;2300;2119;1682;1626;10682 -196;'690;Seychelles;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;793;90;282;282;282;282;282;282;282;282;282;282;282;282;282;282;282;1202;1110;1087;1119;3666;2333;3459;2647;2647;2647;4626;1874;2223;3226;18275 -196;'690;Seychelles;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;4;2;134;513;512;512;434;434;434;64;64;63;137;46 -196;'690;Seychelles;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;11;6;168;305;297;297;209;209;209;41;41;40;93;22 -196;'690;Seychelles;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -196;'690;Seychelles;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;518;451;482;542;452;402;579;718;718;718;960;1112;819;961;10267 -196;'690;Seychelles;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;714;656;698;724;711;665;990;1136;1136;1136;1274;1252;1425;1568;17449 -196;'690;Seychelles;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;1;0;0;0;0;0;0;0;0;0;0 -196;'690;Seychelles;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;8;0;0;0;0;0;0;0;0;0;0 -196;'690;Seychelles;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -196;'690;Seychelles;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;262;216;104;165;789;190;213;348;348;348;928;1002;823;499;404 -196;'690;Seychelles;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;412;419;341;237;438;486;522;418;418;418;1112;531;389;777;697 -196;'690;Seychelles;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;1;100;511;511;511;433;433;433;63;63;63;137;46 -196;'690;Seychelles;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;5;92;296;296;296;208;208;208;40;40;40;93;22 -196;'690;Seychelles;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -196;'690;Seychelles;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108;77;38;4;54;14;59;33;33;33;61;72;57;77;12 -196;'690;Seychelles;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101;94;144;2;72;25;105;68;68;68;108;111;98;151;30 -196;'690;Seychelles;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;394;394;394;394;394;394;46;46;46;46;46 -196;'690;Seychelles;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;186;186;186;186;186;186;20;20;20;20;20 -196;'690;Seychelles;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -196;'690;Seychelles;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;51;46;49;42;18;28;14;14;14;4;28;23;9;32 -196;'690;Seychelles;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106;110;156;118;45;52;82;75;75;75;33;137;25;64;84 -196;'690;Seychelles;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;17;17;17;17;17;17;91;0 -196;'690;Seychelles;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;18;18;18;18;18;18;18;71;0 -196;'690;Seychelles;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -196;'690;Seychelles;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;88;20;112;692;149;126;59;59;59;271;87;44;138;95 -196;'690;Seychelles;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;176;215;41;117;314;406;330;238;238;238;871;275;192;460;403 -196;'690;Seychelles;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;1;100;100;100;100;22;22;22;0;0;0;0;0 -196;'690;Seychelles;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;5;92;92;92;92;4;4;4;0;0;0;0;0 -196;'690;Seychelles;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 -196;'690;Seychelles;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;0;0;0;1;9;0;242;242;242;592;815;699;275;265 -196;'690;Seychelles;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;0;0;0;7;3;5;37;37;37;100;8;74;102;180 -196;'690;Seychelles;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -196;'690;Seychelles;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2 -196;'690;Seychelles;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 -196;'690;Seychelles;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;134;134;134;134;134;134;134;134;134;134;134;7;17;6;20;584;153;333;185;182;182;412;5;40;166;11 -196;'690;Seychelles;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;282;282;282;282;282;282;282;282;282;282;282;76;35;48;158;2517;1182;1947;1093;1093;1093;2240;91;409;881;129 -196;'690;Seychelles;1683;Other paper and paperboard, not elsewhere specified;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;0;0;0 -196;'690;Seychelles;1683;Other paper and paperboard, not elsewhere specified;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;0;0;0 -196;'690;Seychelles;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13280;12971;13113;8161;8862;10139;26036 -196;'690;Seychelles;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;108;76;145;73;122;71 -196;'690;Seychelles;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;392;382;381;223;235;272;471 -196;'690;Seychelles;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;57;57;57;57;57;57 -196;'690;Seychelles;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;298;133;204;139;170;91;245 -196;'690;Seychelles;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;26;26;26;26;26 -196;'690;Seychelles;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94;249;177;84;65;181;226 -196;'690;Seychelles;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;31;31;31;31;31;31 -196;'690;Seychelles;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;551;617;482;361;526;835;568 -196;'690;Seychelles;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;0;0;1;1 -196;'690;Seychelles;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;207;384;445;278;224;339;491 -196;'690;Seychelles;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;1;12;0;12;52;12 -196;'690;Seychelles;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1133;1618;1902;1511;1316;1425;4188 -196;'690;Seychelles;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;7;0;0;3;0;0 -196;'690;Seychelles;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4 -196;'690;Seychelles;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6 -196;'690;Seychelles;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10726;9250;9385;4757;5832;6705;19315 -196;'690;Seychelles;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;37;1;88;1;9;1 -196;'690;Seychelles;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;351;220;614;296;152;220 -196;'690;Seychelles;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;271;369;298;417;433;411;783 -196;'690;Seychelles;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;3;0 -196;'690;Seychelles;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22963;26940;21917;10023;10558;46468;48191 -196;'690;Seychelles;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;11;9;18;8;7;13 -196;'690;Seychelles;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;8;22;2;12;12;19 -196;'690;Seychelles;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;192;279;209;151;253;263;296 -196;'690;Seychelles;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;0;7 -196;'690;Seychelles;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5048;2349;1869;1396;1401;2038;2351 -196;'690;Seychelles;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1;1;0;1;0 -196;'690;Seychelles;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11806;17779;14803;3109;4220;37841;40883 -196;'690;Seychelles;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;0;0;3;5 -196;'690;Seychelles;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5903;6525;5014;5365;4672;6314;4642 -196;'690;Seychelles;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;3;1;10;1;3;1 -197;'694;Sierra Leone;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19398;20303;33355;28149;32136;27691;35833 -197;'694;Sierra Leone;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44997;111761;132439;125031;161045;93809;5860 -197;'694;Sierra Leone;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;435;367;1403;873;1190;811;562;672;839;947;914;922;1588;2043;1810;1945;1622;2589;2606;2606;2135;1940;1700;1593;1208;970;1563;1591;1141;1762;2284;1164;1286;1409;942;1884;3260;1504;2053;4426;4426;2838;5588;4550;4550;2860;7314;6290;5439;8049;8116;5667;5998;9908;11316;8589;7568;8185;16760;14474;13841;6887;13596 -197;'694;Sierra Leone;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;252;78;177;146;216;317;74;52;52;57;98;40;106;370;750;646;1644;1573;1573;1235;1699;1536;1536;1941;3978;4621;9870;7642;8540;4249;29607;17047;2483;41629;44773;111428;131279;124335;159895;92093;3248 -197;'694;Sierra Leone;1861;Roundwood;5516;Production;m3;5703073;5700151;5663472;5627035;5590837;5577878;5521156;5487670;5455417;5421397;5348954;5343429;5289753;5202566;5153914;5214407;5207348;5290912;5175299;5100634;4964938;4868100;4928993;4856756;4942063;4982731;4937663;4935401;4907666;4826850;4713001;4681416;4606474;4525714;4734473;4724274;5076192;5203858;5338830;5481363;5487542;5497220;5510306;5526720;5546391;5571932;5600600;5632400;5667310;5705219;5742850;5783352;5826699;5872870;5921850;5962088;6004880;6246606;6304448;6354793;6407597;6462850;6520547 -197;'694;Sierra Leone;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;200;81;81;174;89;89;41;322;349;349;205;147;159;189;140;117;41;36;1168;306;137;22;117;2979;758;78;1778;1771 -197;'694;Sierra Leone;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;41;4;4;14;12;12;4;54;20;20;24;27;21;23;19;16;16;15;271;42;65;8;33;357;154;25;541;480 -197;'694;Sierra Leone;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;47;29;88;88;88;106;106;178;443;1392;1392;572;1286;1725;13033;15057;16057;7057;53457;28999;237;131268;45514;143849;167860;158123;239227;125685;7212 -197;'694;Sierra Leone;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;13;4;11;11;11;16;16;29;110;202;202;134;894;1142;5405;5653;6814;3227;27070;14535;55;37949;33638;105706;129275;121828;147281;77610;1759 -197;'694;Sierra Leone;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 -197;'694;Sierra Leone;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;111;2858;563;45;0;0 -197;'694;Sierra Leone;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;31;350;98;23;0;0 -197;'694;Sierra Leone;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;156;45;123;123;123;123;123 -197;'694;Sierra Leone;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;4;9;10;10;10;10 -197;'694;Sierra Leone;1863;Roundwood, non-coniferous;5516;Production;m3;5703073;5700151;5663472;5627035;5590837;5577878;5521156;5487670;5455417;5421397;5348954;5343429;5289753;5202566;5153914;5214407;5207348;5290912;5175299;5100634;4964938;4868100;4928993;4856756;4942063;4982731;4937663;4935401;4907666;4826850;4713001;4681416;4606474;4525714;4734473;4724274;5076192;5203858;5338830;5481363;5487542;5497220;5510306;5526720;5546391;5571932;5600600;5632400;5667310;5705219;5742850;5783352;5826699;5872870;5921850;5962088;6004880;6246606;6304448;6354793;6407597;6462850;6520547 -197;'694;Sierra Leone;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;6;121;195;33;1778;1771 -197;'694;Sierra Leone;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;2;7;56;2;541;480 -197;'694;Sierra Leone;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45358;143804;167737;158000;239104;125562;7089 -197;'694;Sierra Leone;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33626;105702;129266;121818;147271;77600;1749 -197;'694;Sierra Leone;1864;Wood fuel;5516;Production;m3;5604073;5567151;5530472;5494035;5457837;5421878;5386156;5350670;5315417;5280397;5216954;5217429;5158753;5068566;5015914;5075407;5064348;5108912;4990299;4942634;4803938;4728100;4788993;4716756;4799063;4842731;4797663;4795401;4767666;4688850;4591401;4559816;4482874;4402114;4610873;4600674;4952592;5080258;5215230;5357763;5363942;5373620;5386706;5403120;5422791;5448332;5477000;5508800;5543710;5581619;5619250;5659752;5703099;5749270;5798250;5838488;5881280;5926606;5974448;6024793;6077597;6132850;6190547 -197;'694;Sierra Leone;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;187;187;187;132;74;74;74;25;25;25;25;84;72;84;;;;;;; -197;'694;Sierra Leone;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;3;6;6;6;2;2;2;2;38;3;54;;;;;;; -197;'694;Sierra Leone;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33;33;33;33;33;33;33;57;57;57;57;57;57;57;;;123;123;123;123;212 -197;'694;Sierra Leone;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;9;9;9;9;9;9;9;;;9;10;10;10;24 -197;'694;Sierra Leone;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 -197;'694;Sierra Leone;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;123;123;123;123;123 -197;'694;Sierra Leone;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;10;10;10;10 -197;'694;Sierra Leone;1628;Wood fuel, non-coniferous;5516;Production;m3;5604073;5567151;5530472;5494035;5457837;5421878;5386156;5350670;5315417;5280397;5216954;5217429;5158753;5068566;5015914;5075407;5064348;5108912;4990299;4942634;4803938;4728100;4788993;4716756;4799063;4842731;4797663;4795401;4767666;4688850;4591401;4559816;4482874;4402114;4610873;4600674;4952592;5080258;5215230;5357763;5363942;5373620;5386706;5403120;5422791;5448332;5477000;5508800;5543710;5581619;5619250;5659752;5703099;5749270;5798250;5838488;5881280;5926606;5974448;6024793;6077597;6132850;6190547 -197;'694;Sierra Leone;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89 -197;'694;Sierra Leone;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14 -197;'694;Sierra Leone;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;187;187;187;132;74;74;74;25;25;25;25;84;72;84;;;;;;; -197;'694;Sierra Leone;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;3;6;6;6;2;2;2;2;38;3;54;;;;;;; -197;'694;Sierra Leone;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33;33;33;33;33;33;33;57;57;57;57;57;57;57;;;;;;; -197;'694;Sierra Leone;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;9;9;9;9;9;9;9;;;;;;; -197;'694;Sierra Leone;1865;Industrial roundwood;5516;Production;m3;99000;133000;133000;133000;133000;156000;135000;137000;140000;141000;132000;126000;131000;134000;138000;139000;143000;182000;185000;158000;161000;140000;140000;140000;143000;140000;140000;140000;140000;138000;121600;121600;123600;123600;123600;123600;123600;123600;123600;123600;123600;123600;123600;123600;123600;123600;123600;123600;123600;123600;123600;123600;123600;123600;123600;123600;123600;320000;330000;330000;330000;330000;330000 -197;'694;Sierra Leone;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;200;81;81;174;89;89;41;135;162;162;73;73;85;115;115;92;16;11;1084;234;53;22;117;2979;758;78;1778;1771 -197;'694;Sierra Leone;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;41;4;4;14;12;12;4;44;10;10;21;21;15;17;17;14;14;13;233;39;11;8;33;357;154;25;541;480 -197;'694;Sierra Leone;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;47;29;88;88;88;106;106;145;410;1359;1359;539;1253;1692;13000;15000;16000;7000;53400;28942;180;131211;45514;143849;167737;158000;239104;125562;7000 -197;'694;Sierra Leone;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;13;4;11;11;11;16;16;27;108;200;200;132;892;1140;5403;5644;6805;3218;27061;14526;46;37940;33638;105706;129266;121818;147271;77600;1735 -197;'694;Sierra Leone;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;200;40;40;40;40;40;40;52;52;52;52;52;52;82;82;82;9;4;1072;199;36;5;111;2858;563;45;0;0 -197;'694;Sierra Leone;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;41;3;3;3;3;3;3;3;3;3;3;3;3;5;5;5;1;0;65;21;3;0;31;350;98;23;0;0 -197;'694;Sierra Leone;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;29;29;29;29;29;29;29;34;34;34;34;34;34;300;0;0;0;0;0;0;0;0;156;45;0;0;0;0;0 -197;'694;Sierra Leone;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4;4;9;9;9;9;9;9;16;0;0;0;0;0;0;0;0;12;4;0;0;0;0;0 -197;'694;Sierra Leone;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;200;40;40;40;40;40;40;52;52;52;52;52;52;82;82;82;9;4;1072;199;36;5;111;2858;563;45;0;0 -197;'694;Sierra Leone;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;41;3;3;3;3;3;3;3;3;3;3;3;3;5;5;5;1;0;65;21;3;0;31;350;98;23;0;0 -197;'694;Sierra Leone;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;29;29;29;29;29;29;29;34;34;34;34;34;34;300;0;0;0;0;0;0;0;0;156;45;0;0;0;0;0 -197;'694;Sierra Leone;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4;4;9;9;9;9;9;9;16;0;0;0;0;0;0;0;0;12;4;0;0;0;0;0 -197;'694;Sierra Leone;1867;Industrial roundwood, non-coniferous;5516;Production;m3;99000;133000;133000;133000;133000;156000;135000;137000;140000;141000;132000;126000;131000;134000;138000;139000;143000;182000;185000;158000;161000;140000;140000;140000;143000;140000;140000;140000;140000;138000;121600;121600;123600;123600;123600;123600;123600;123600;123600;123600;123600;123600;123600;123600;123600;123600;123600;123600;123600;123600;123600;123600;123600;123600;123600;123600;123600;320000;330000;330000;330000;330000;330000 -197;'694;Sierra Leone;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;41;41;134;49;49;1;83;110;110;21;21;33;33;33;10;7;7;12;35;17;17;6;121;195;33;1778;1771 -197;'694;Sierra Leone;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;1;1;11;9;9;1;41;7;7;18;18;12;12;12;9;13;13;168;18;8;8;2;7;56;2;541;480 -197;'694;Sierra Leone;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;18;0;59;59;59;77;77;111;376;1325;1325;505;1219;1392;13000;15000;16000;7000;53400;28942;180;131211;45358;143804;167737;158000;239104;125562;7000 -197;'694;Sierra Leone;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;9;0;7;7;7;12;12;18;99;191;191;123;883;1124;5403;5644;6805;3218;27061;14526;46;37940;33626;105702;129266;121818;147271;77600;1735 -197;'694;Sierra Leone;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;35;17;17;6;0;0;0;10;2 -197;'694;Sierra Leone;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;155;18;8;8;2;0;0;0;3;0 -197;'694;Sierra Leone;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;18;0;3;3;3;21;21;21;286;1235;1235;444;1158;1331;13000;15000;16000;7000;53400;28942;180;131211;45358;143804;167737;158000;239104;125187;7000 -197;'694;Sierra Leone;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;9;0;2;2;2;7;7;7;88;180;180;107;867;1108;5403;5644;6805;3218;27061;14526;46;37940;33626;105702;129266;121818;147271;77598;1735 -197;'694;Sierra Leone;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;41;41;134;49;49;1;83;110;110;21;21;33;33;33;10;7;7;7;0;0;0;0;121;195;33;1768;1769 -197;'694;Sierra Leone;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;1;1;11;9;9;1;41;7;7;18;18;12;12;12;9;13;13;13;0;0;0;0;7;56;2;538;480 -197;'694;Sierra Leone;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;56;56;56;56;90;90;90;90;61;61;61;0;0;0;0;0;0;0;0;0;0;0;0;0;375;0 -197;'694;Sierra Leone;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;11;11;11;11;16;16;16;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0 -197;'694;Sierra Leone;1868;Sawlogs and veneer logs;5516;Production;m3;14000;25000;25000;25000;25000;26000;27000;29000;32000;32000;24000;16000;21000;34000;33000;34000;38000;67000;70000;38000;41000;20000;20000;20000;23000;20000;20000;20000;20000;18000;1600;1600;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;200000;210000;210000;210000;210000;210000 -197;'694;Sierra Leone;1868;Sawlogs and veneer logs;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -197;'694;Sierra Leone;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -197;'694;Sierra Leone;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -197;'694;Sierra Leone;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -197;'694;Sierra Leone;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;14000;25000;25000;25000;25000;26000;27000;29000;32000;32000;24000;16000;21000;34000;33000;34000;38000;67000;70000;38000;41000;20000;20000;20000;23000;20000;20000;20000;20000;18000;1600;1600;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;200000;210000;210000;210000;210000;210000 -197;'694;Sierra Leone;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -197;'694;Sierra Leone;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -197;'694;Sierra Leone;1871;Other industrial roundwood;5516;Production;m3;85000;108000;108000;108000;108000;130000;108000;108000;108000;109000;108000;110000;110000;100000;105000;105000;105000;115000;115000;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;120000;120000;120000;120000;120000;120000;120000;120000;120000;120000;120000;120000;120000;120000;120000;120000;120000;120000 -197;'694;Sierra Leone;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;85000;108000;108000;108000;108000;130000;108000;108000;108000;109000;108000;110000;110000;100000;105000;105000;105000;115000;115000;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;120000;120000;120000;120000;120000;120000;120000;120000;120000;120000;120000;120000;120000;120000;120000;120000;120000;120000 -197;'694;Sierra Leone;1630;Wood charcoal;5510;Production;t;80678;83102;85600;88172;90822;93551;96363;99259;102241;105314;107958;112277;115445;117808;121288;127192;131260;137168;138285;141604;142836;145878;153895;157101;166208;173993;178079;184141;189162;191856;193870;198988;201808;204093;221550;227057;252873;266772;281154;296908;304433;312148;320059;328170;336487;345175;354100;363200;372608;382228;391707;401421;411375;421577;432032;441754;451694;461859;472252;482879;493633;504627;515867 -197;'694;Sierra Leone;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;283;283;283;283;283;283;283;283;283;283;283;283;3;3;3;3;3;75;2;1;1;6;4;18;1 -197;'694;Sierra Leone;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;47;47;47;47;47;47;47;47;47;47;47;2;2;2;2;2;595;1;1;2;14;15;46;1 -197;'694;Sierra Leone;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;88;88;88;88;88;88;88;88;88;18;18;25;59;59;59;72;72 -197;'694;Sierra Leone;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;31;31;31;31;31;31;31;31;31;9;9;12;27;30;30;64;64 -197;'694;Sierra Leone;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;24;24;24;24;24;49;595;290;25;3;4;4;4;4;23;23;3 -197;'694;Sierra Leone;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;2;2;2;2;2;10;128;66;35;4;0;0;0;0;3;3;0 -197;'694;Sierra Leone;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;31;31;31;31;31;31;31;31;31;122;122;122;48;7;7;7;7;7;7;7;39;39;9 -197;'694;Sierra Leone;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;25;25;25;5;2;2;2;2;2;2;2;33;33;3 -197;'694;Sierra Leone;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;20;20;0 -197;'694;Sierra Leone;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;3;3;0 -197;'694;Sierra Leone;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;31;31;31;31;31;31;31;31;31;31;31;31;31;0;0;0;0;0;0;0;32;32;2 -197;'694;Sierra Leone;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;0;0;0;0;0;0;0;31;31;1 -197;'694;Sierra Leone;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;24;24;24;24;24;49;595;290;25;2;3;3;3;3;3;3;3 -197;'694;Sierra Leone;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;2;2;2;2;2;10;128;66;35;4;0;0;0;0;0;0;0 -197;'694;Sierra Leone;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91;91;91;17;7;7;7;7;7;7;7;7;7;7 -197;'694;Sierra Leone;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;24;4;2;2;2;2;2;2;2;2;2;2 -197;'694;Sierra Leone;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -197;'694;Sierra Leone;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -197;'694;Sierra Leone;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;47 -197;'694;Sierra Leone;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13 -197;'694;Sierra Leone;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;47 -197;'694;Sierra Leone;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13 -197;'694;Sierra Leone;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -197;'694;Sierra Leone;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -197;'694;Sierra Leone;1872;Sawnwood;5516;Production;m3;10000;10000;10000;9900;10000;10300;10400;11400;12500;12600;9500;12000;16000;14000;16000;41000;11000;23000;23000;24000;22000;20000;19000;19000;14000;12000;12000;12000;12000;11000;9000;9000;5300;5300;5300;5300;5300;5300;5300;5300;5300;5300;5300;5300;5300;5300;5300;5300;5300;5300;5300;5300;5300;5300;20000;20000;30000;30000;30000;32000;32000;32000;32000 -197;'694;Sierra Leone;1872;Sawnwood;5616;Import quantity;m3;;;6800;2800;2700;100;100;400;500;900;700;700;3000;600;2000;1000;1500;1500;1500;1500;800;800;800;800;800;800;800;800;800;800;800;513;263;300;300;100;74;39;235;2008;2008;1539;428;1770;1770;1231;425;75;37;24;50;27;20;58;54;59;28;184;29;129;150;363;81 -197;'694;Sierra Leone;1872;Sawnwood;5622;Import value;1000 USD;;;834;268;282;13;4;16;20;31;22;54;152;34;430;279;412;412;412;412;223;223;223;223;223;223;223;223;223;223;223;143;59;120;120;32;23;6;93;317;317;364;254;401;401;218;189;46;15;33;10;20;11;49;25;12;4;71;16;31;77;215;29 -197;'694;Sierra Leone;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;600;300;1200;3000;600;700;300;100;100;56;188;154;167;100;44;207;808;250;250;250;256;939;939;400;1058;1411;1664;570;476;149;710;564;1062;2820;19457;8557;407;3583;11887;19096;109 -197;'694;Sierra Leone;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;252;78;177;146;216;317;74;52;52;12;53;36;85;47;34;45;193;171;171;171;85;245;245;124;996;1274;1474;341;203;101;655;334;768;1885;9645;4286;224;1513;11665;13280;49 -197;'694;Sierra Leone;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;2000;2000;2000;2000 -197;'694;Sierra Leone;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;6800;2800;2700;100;100;400;500;400;200;200;2400;500;1600;800;1200;1200;1200;1200;700;700;700;700;700;700;700;700;700;700;700;472;222;131;131;44;44;9;93;1866;1866;1292;271;1054;1054;1054;377;15;15;7;19;5;5;24;29;53;6;125;0;0;141;178;80 -197;'694;Sierra Leone;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;834;268;282;13;4;16;20;17;8;8;109;22;395;256;379;379;379;379;200;200;200;200;200;200;200;200;200;200;200;132;48;45;45;19;19;2;12;236;236;270;115;183;183;183;158;8;8;6;8;3;3;20;7;11;1;45;0;0;71;51;26 -197;'694;Sierra Leone;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;35;35;508;15;15;15;7;297;297;44;216;216;216;216;216;100;100;100;0;0;0;0;0;1309;262;0;109 -197;'694;Sierra Leone;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;22;22;105;4;4;4;2;50;50;6;61;61;61;61;61;72;72;72;0;0;0;0;0;402;173;0;49 -197;'694;Sierra Leone;1633;Sawnwood, non-coniferous;5516;Production;m3;10000;10000;10000;9900;10000;10300;10400;11400;12500;12600;9500;12000;16000;14000;16000;41000;11000;23000;23000;24000;22000;20000;19000;19000;14000;12000;12000;12000;12000;11000;9000;9000;5300;5300;5300;5300;5300;5300;5300;5300;5300;5300;5300;5300;5300;5300;5300;5300;5300;5300;5300;5300;5300;5300;20000;20000;30000;30000;30000;30000;30000;30000;30000 -197;'694;Sierra Leone;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;500;500;500;600;100;400;200;300;300;300;300;100;100;100;100;100;100;100;100;100;100;100;41;41;169;169;56;30;30;142;142;142;247;157;716;716;177;48;60;22;17;31;22;15;34;25;6;22;59;29;129;9;185;1 -197;'694;Sierra Leone;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;14;14;46;43;12;35;23;33;33;33;33;23;23;23;23;23;23;23;23;23;23;23;11;11;75;75;13;4;4;81;81;81;94;139;218;218;35;31;38;7;27;2;17;8;29;18;1;3;26;16;31;6;164;3 -197;'694;Sierra Leone;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;600;300;1200;3000;600;700;300;100;100;56;188;154;167;100;9;172;300;235;235;235;249;642;642;356;842;1195;1448;354;260;49;610;464;1062;2820;19457;8557;407;2274;11625;19096;0 -197;'694;Sierra Leone;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;252;78;177;146;216;317;74;52;52;12;53;36;85;47;12;23;88;167;167;167;83;195;195;118;935;1213;1413;280;142;29;583;262;768;1885;9645;4286;224;1111;11492;13280;0 -197;'694;Sierra Leone;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000;1000;1000 -197;'694;Sierra Leone;1634;Veneer sheets;5616;Import quantity;m3;1200;800;2000;2200;2100;300;200;200;600;900;500;100;300;;;;;;;;;;;;;;;;;;;7;16;16;16;0;0;3;3;27;27;21;47;200;200;200;200;16;2;5;5;17;17;26;70;118;9;3;0;0;0;20;0 -197;'694;Sierra Leone;1634;Veneer sheets;5622;Import value;1000 USD;183;124;293;333;328;45;40;40;24;57;22;9;36;;;;;;;;;;;;;;;;;;;5;15;15;15;0;0;7;7;19;19;50;131;156;156;156;156;8;7;11;17;12;12;171;87;47;6;5;0;0;1;43;0 -197;'694;Sierra Leone;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;0;0;0;27;15;19;19;19;32;1;16;16;16;16;58;24;24;19;19;19;19;6;20;27;10;23;5;39;0;599 -197;'694;Sierra Leone;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;45;0;0;0;11;42;49;49;49;10;9;13;13;13;13;242;56;56;58;58;58;58;46;57;35;25;87;120;123;0;136 -197;'694;Sierra Leone;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -197;'694;Sierra Leone;1873;Wood-based panels;5616;Import quantity;m3;800;700;800;600;1200;1600;1300;2300;2500;3200;3100;3000;3500;3900;2300;2400;1400;1500;1400;1400;1400;1400;1000;400;400;1000;1200;800;400;800;500;1042;132;192;727;752;329;495;9550;8716;8716;8451;5847;2311;2311;3141;5360;4505;2781;7658;5970;3738;4013;5909;11359;10024;9116;5040;12718;18218;13866;3727;10393 -197;'694;Sierra Leone;1873;Wood-based panels;5622;Import value;1000 USD;87;79;121;79;341;380;246;357;399;513;530;548;782;1392;754;968;434;623;562;562;562;562;322;215;215;270;353;207;145;688;238;333;42;71;122;114;66;162;611;1626;1626;1642;1869;769;769;917;3035;2954;2765;5293;4453;2673;2535;5260;6432;4268;4020;2394;5928;7604;5696;2505;4942 -197;'694;Sierra Leone;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;48;148;119;90;90;140;140;107;446;274;274;383;283;283;263;264;264;148;131;134;107;111;202;165;168;183;191;191;191 -197;'694;Sierra Leone;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;8;65;54;36;36;62;62;47;79;72;72;195;118;118;107;109;109;72;90;92;43;56;105;68;94;105;92;197;80 -197;'694;Sierra Leone;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -197;'694;Sierra Leone;1640;Plywood and LVL;5616;Import quantity;m3;;;;;800;800;900;1500;1800;2000;2000;2300;2600;2300;700;1200;200;500;1400;1400;1400;1400;1000;400;400;1000;1200;800;400;800;500;160;119;106;25;100;2;3;48;66;66;181;851;150;150;220;191;1016;1211;1442;2094;1176;1193;2063;2446;3287;2703;1992;5962;4864;4704;2110;3564 -197;'694;Sierra Leone;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;286;286;196;256;293;364;344;401;561;938;300;599;65;304;562;562;562;562;322;215;215;270;353;207;145;688;238;63;35;50;23;42;1;1;18;38;38;153;323;53;53;145;151;1029;1984;2088;2371;1155;1008;2870;1485;1349;1096;1131;2634;2069;1610;862;1589 -197;'694;Sierra Leone;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;100;71;39;39;39;39;6;6;34;34;143;25;25;44;44;44;44;27;27;0;4;95;39;66;5;0;0;0 -197;'694;Sierra Leone;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;57;46;23;23;23;23;8;8;11;11;134;35;35;31;31;31;31;49;49;0;9;58;19;57;40;12;117;0 -197;'694;Sierra Leone;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;100;100;100;100;300;300;100;200;400;400;;;;;;;;;;;;;;;;;56;6;3;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -197;'694;Sierra Leone;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;11;11;10;27;34;34;14;61;85;85;;;;;;;;;;;;;;;;;23;3;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -197;'694;Sierra Leone;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -197;'694;Sierra Leone;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -197;'694;Sierra Leone;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;128;128;128;35;2365;8011;8011;8011;1814;666;666;0;16;28;16;64;12;5;2;294;557;1419;450;450;83;172;354;810;1009 -197;'694;Sierra Leone;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;23;36;422;1424;1424;1424;461;109;109;0;12;24;13;48;9;11;7;458;309;661;268;268;67;57;132;1178;561 -197;'694;Sierra Leone;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;101;101;101;119;119;119;119;119;3;3;3;3;3;3;3;3;0;13;13;13 -197;'694;Sierra Leone;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;17;17;17;39;39;39;39;39;2;2;2;2;2;2;2;2;0;12;12;12 -197;'694;Sierra Leone;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;130;183;183;69;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;67 -197;'694;Sierra Leone;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;30;30;21;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;36 -197;'694;Sierra Leone;1874;Fibreboard;5616;Import quantity;m3;800;700;800;600;400;700;300;700;600;900;800;600;700;1200;1200;1200;1200;1000;;;;;;;;;;;;;;826;7;83;574;524;199;457;7137;639;639;259;3052;1312;1312;2852;5153;3461;1554;6152;3864;2557;2818;3552;8356;5318;5963;2598;6673;13182;8808;806;5753 -197;'694;Sierra Leone;1874;Fibreboard;5622;Import value;1000 USD;87;79;121;79;55;83;39;91;79;115;152;133;160;369;369;369;369;319;;;;;;;;;;;;;;247;4;20;76;49;42;125;171;164;164;65;1053;577;577;751;2872;1901;768;3157;2073;1507;1520;1932;4638;2258;2656;995;3227;5478;3954;465;2756 -197;'694;Sierra Leone;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;48;48;51;51;101;101;101;440;139;139;139;139;139;100;101;101;101;101;104;104;104;104;123;99;178;178;178;178 -197;'694;Sierra Leone;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;13;13;39;39;39;71;44;44;44;44;44;37;39;39;39;39;41;41;45;45;47;35;65;68;68;68 -197;'694;Sierra Leone;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;150;100;175;426;7106;608;608;228;1792;1205;1205;1947;1720;3045;1003;2046;2668;2268;2676;2439;5552;2806;2136;2556;6207;12323;8128;82;4791 -197;'694;Sierra Leone;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;20;37;117;163;156;156;57;960;559;559;638;653;1723;445;933;1433;1325;1438;1253;2598;1012;846;964;2981;5056;3555;41;2269 -197;'694;Sierra Leone;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -197;'694;Sierra Leone;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -197;'694;Sierra Leone;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;45;98;98;522;3050;254;195;3887;1159;269;122;1093;2784;2510;3825;39;405;848;679;719;959 -197;'694;Sierra Leone;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;8;17;17;86;2192;116;99;2126;622;172;72;669;2030;1242;1806;28;200;401;398;421;485 -197;'694;Sierra Leone;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;342;41;41;41;41;41;2;3;3;3;3;6;6;6;6;25;1;80;80;80;80 -197;'694;Sierra Leone;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;37;10;10;10;10;10;3;5;5;5;5;7;7;11;11;13;1;31;34;34;34 -197;'694;Sierra Leone;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;4;4;424;424;24;24;24;24;24;24;1215;9;9;383;383;162;356;219;37;20;20;20;20;2;2;3;61;11;1;5;3 -197;'694;Sierra Leone;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;29;29;5;5;5;5;5;5;85;1;1;27;27;62;224;98;18;10;10;10;10;4;4;3;46;21;1;3;2 -197;'694;Sierra Leone;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;48;48;48;48;98;98;98;98;98;98;98;98;98;98;98;98;98;98;98;98;98;98;98;98;98;98;98;98 -197;'694;Sierra Leone;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;8;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34;34 -197;'694;Sierra Leone;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;800;700;800;600;400;700;300;700;600;900;800;600;700;1200;1200;1200;1200;1000;;;;;;;;;;;;;;820;3;79;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -197;'694;Sierra Leone;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;87;79;121;79;55;83;39;91;79;115;152;133;160;369;369;369;369;319;;;;;;;;;;;;;;244;1;17;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -197;'694;Sierra Leone;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;425;90;595;580;818;969;1011;1083;1009;1009;404;2413;2604;2604;1415;2272;2185;1938;1906;1906;1906;1906;1837;1840;1817;1513;1513;1512;1575;1548;1484;1485 -197;'694;Sierra Leone;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96;16;149;164;277;388;406;407;411;411;74;616;600;600;538;1435;1070;1009;993;993;992;992;980;988;979;881;881;879;893;882;868;868 -197;'694;Sierra Leone;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;400;400;400;1200;1339;1339;1132;2670;1943;1943;733;733;733;733;707;707;707;707;530;533;533;533;525;525;525;525;508;549 -197;'694;Sierra Leone;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;254;254;254;754;814;814;524;896;531;531;378;378;378;378;379;379;379;379;305;305;305;305;301;301;301;301;300;305 -197;'694;Sierra Leone;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;18;18;418;729;869;869;869;869;69;897;1090;1090;1045;1809;1809;1809;1806;1806;1806;1806;1805;1805;1805;1512;1512;1511;1511;1484;1484;1484 -197;'694;Sierra Leone;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;7;7;206;354;373;373;373;373;24;341;432;432;411;975;975;975;977;977;976;976;973;973;973;880;880;878;878;868;868;868 -197;'694;Sierra Leone;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;400;400;400;1200;1339;1339;1132;1412;685;685;685;685;685;685;685;685;685;685;508;508;508;508;508;508;508;508;508;508 -197;'694;Sierra Leone;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;254;254;254;754;814;814;524;739;374;374;374;374;374;374;374;374;374;374;300;300;300;300;300;300;300;300;300;300 -197;'694;Sierra Leone;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;18;18;418;729;869;869;869;869;69;897;1090;1090;1045;1809;1809;1809;1806;1806;1806;1806;1805;1805;1805;1511;1511;1511;1511;1484;1484;1484 -197;'694;Sierra Leone;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;7;7;206;354;373;373;373;373;24;341;432;432;411;975;975;975;977;977;976;976;973;973;973;878;878;878;878;868;868;868 -197;'694;Sierra Leone;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;400;400;400;1200;1339;1339;1132;1412;685;685;685;685;685;685;685;685;685;685;508;508;508;508;508;508;508;508;508;508 -197;'694;Sierra Leone;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;254;254;254;754;814;814;524;739;374;374;374;374;374;374;374;374;374;374;300;300;300;300;300;300;300;300;300;300 -197;'694;Sierra Leone;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;23;276;276;276;276;276;276;276;276;276;276;276;276;276;276;;;;;;; -197;'694;Sierra Leone;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;6;88;88;88;88;88;88;88;88;88;88;88;88;88;88;;;;;;; -197;'694;Sierra Leone;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;18;18;18;18;18;18;18;18;18;18;18;18;18;18;18;18;18;18;18;18;18;18;18;;;;;;; -197;'694;Sierra Leone;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;7;;;;;;; -197;'694;Sierra Leone;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;400;711;851;851;851;851;28;603;796;796;751;1515;1515;1515;1512;1512;1512;1512;1511;1511;1511;1511;1511;1511;1511;1484;1484;1484 -197;'694;Sierra Leone;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;199;347;366;366;366;366;11;246;337;337;316;880;880;880;882;882;881;881;878;878;878;878;878;878;878;868;868;868 -197;'694;Sierra Leone;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;400;400;400;1200;1339;1339;1132;1412;685;685;685;685;685;685;685;685;685;685;508;508;508;508;508;508;508;508;508;508 -197;'694;Sierra Leone;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;254;254;254;754;814;814;524;739;374;374;374;374;374;374;374;374;374;374;300;300;300;300;300;300;300;300;300;300 -197;'694;Sierra Leone;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;27;0;0;0 -197;'694;Sierra Leone;1662;Chemical wood pulp, sulphate, unbleached;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;0;0;0 -197;'694;Sierra Leone;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;400;711;824;824;824;824;1;284;720;720;720;1484;1484;1484;1484;1484;1484;1484;1484;1484;1484;1484;1484;1484;1484;1484;1484;1484 -197;'694;Sierra Leone;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;199;347;356;356;356;356;1;127;304;304;304;868;868;868;868;868;868;868;868;868;868;868;868;868;868;868;868;868 -197;'694;Sierra Leone;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;400;400;400;400;508;508;508;508;508;508;508;508;508;508;508;508;508;508;508;508;508;508;508;508;508;508;508;508 -197;'694;Sierra Leone;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;254;254;254;254;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300 -197;'694;Sierra Leone;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;292;49;49;4;4;4;4;1;1;1;1;0;0;0;;;;;;; -197;'694;Sierra Leone;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;109;23;23;2;2;2;2;4;4;3;3;0;0;0;;;;;;; -197;'694;Sierra Leone;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;800;831;831;624;904;177;177;177;177;177;177;177;177;177;177;0;0;0;;;;;;; -197;'694;Sierra Leone;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;514;514;224;439;74;74;74;74;74;74;74;74;74;74;0;0;0;;;;;;; -197;'694;Sierra Leone;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 -197;'694;Sierra Leone;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 -197;'694;Sierra Leone;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;0;0;0;0 -197;'694;Sierra Leone;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;0;0;0;0;0 -197;'694;Sierra Leone;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;425;68;577;562;400;240;142;214;140;140;335;1516;1514;1514;370;463;376;129;100;100;100;100;32;35;12;1;1;1;64;64;0;1 -197;'694;Sierra Leone;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96;7;142;157;71;34;33;34;38;38;50;275;168;168;127;460;95;34;16;16;16;16;7;15;6;1;1;1;15;14;0;0 -197;'694;Sierra Leone;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1258;1258;1258;48;48;48;48;22;22;22;22;22;25;25;25;17;17;17;17;0;41 -197;'694;Sierra Leone;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;157;157;157;4;4;4;4;5;5;5;5;5;5;5;5;1;1;1;1;0;5 -197;'694;Sierra Leone;1876;Paper and paperboard;5610;Import quantity;t;500;2000;1900;530;600;900;700;600;1100;800;800;500;800;800;800;800;850;800;900;900;700;500;500;500;800;700;1200;1300;900;600;1300;544;1349;1138;480;1900;4088;591;742;1618;1618;671;2224;3381;3381;926;3673;2128;1612;1406;2543;1565;2126;1212;1851;2868;2736;4323;7704;5056;5562;948;4002 -197;'694;Sierra Leone;1876;Paper and paperboard;5622;Import value;1000 USD;165;164;155;193;239;373;272;259;396;346;340;311;618;617;626;698;776;1554;1632;1632;1350;1155;1155;1155;770;477;987;1161;773;851;1823;587;1154;1054;521;1420;2779;919;874;1994;1994;657;2614;2554;2554;957;2423;2142;1571;1651;2623;1942;2303;3109;3705;2619;2648;4800;9578;5778;7142;2666;7276 -197;'694;Sierra Leone;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;656;354;1108;937;937;908;901;805;805;1396;1343;1193;2088;948;774;346;1232;1553;1361;1518;1090;1002;1311;516;355;556;785 -197;'694;Sierra Leone;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;386;258;601;460;460;444;510;463;463;1087;1547;1435;2418;1048;921;356;1319;1690;1233;1366;1034;1028;1269;436;370;596;839 -197;'694;Sierra Leone;2042;Graphic papers;5610;Import quantity;t;400;1900;1800;500;500;600;500;400;500;400;500;300;400;400;400;400;450;600;700;700;500;400;400;400;400;100;400;400;200;300;600;328;862;802;256;1700;3913;458;303;411;411;350;1104;1357;1357;449;421;600;901;718;2050;1471;2037;948;1637;1780;1731;3212;6501;4518;4868;549;3292 -197;'694;Sierra Leone;2042;Graphic papers;5622;Import value;1000 USD;115;134;120;180;195;206;165;139;190;177;174;166;201;200;209;281;359;1246;1324;1324;1050;955;955;955;314;119;471;516;278;417;874;355;712;751;222;1218;2401;466;384;707;707;359;903;1067;1067;437;669;730;947;899;2021;1771;2179;2262;3213;1711;1654;3161;6324;3805;4612;1025;3557 -197;'694;Sierra Leone;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;195;111;843;894;894;861;722;612;612;1086;901;528;1343;698;681;256;477;325;114;378;463;478;560;315;233;278;628 -197;'694;Sierra Leone;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;190;132;460;425;425;406;429;343;343;793;1109;755;1724;773;811;260;511;358;112;348;438;507;585;275;247;261;561 -197;'694;Sierra Leone;1671;Newsprint;5610;Import quantity;t;200;1800;1700;200;200;300;200;200;200;200;200;100;100;100;100;100;150;100;200;200;100;100;100;100;200;;;;;;;39;325;70;213;1500;3749;250;51;31;31;31;74;15;15;15;20;50;67;67;128;66;76;220;253;256;212;139;163;174;100;67;49 -197;'694;Sierra Leone;1671;Newsprint;5622;Import value;1000 USD;36;81;67;42;41;52;44;37;40;40;47;29;32;31;40;112;190;78;156;156;50;55;55;55;100;;;;;;;18;137;55;157;983;2078;95;25;22;22;22;26;8;8;8;22;35;45;45;145;75;67;192;193;181;142;99;133;143;109;60;44 -197;'694;Sierra Leone;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;794;845;845;845;587;426;426;426;53;10;10;95;95;24;24;24;25;25;25;25;25;25;25;25;402 -197;'694;Sierra Leone;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;427;392;392;392;323;201;201;201;44;9;9;66;66;21;21;21;14;14;14;14;14;14;14;14;305 -197;'694;Sierra Leone;1674;Printing and writing papers;5610;Import quantity;t;200;100;100;300;300;300;300;200;300;200;300;200;300;300;300;300;300;500;500;500;400;300;300;300;200;100;400;400;200;300;600;289;537;732;43;200;164;208;252;380;380;319;1030;1342;1342;434;401;550;834;651;1922;1405;1961;728;1384;1524;1519;3073;6338;4344;4768;482;3243 -197;'694;Sierra Leone;1674;Printing and writing papers;5622;Import value;1000 USD;79;53;53;138;154;154;121;102;150;137;127;137;169;169;169;169;169;1168;1168;1168;1000;900;900;900;214;119;471;516;278;417;874;337;575;696;65;235;323;371;359;685;685;337;877;1059;1059;429;647;695;902;854;1876;1696;2112;2070;3020;1530;1512;3062;6191;3662;4503;965;3513 -197;'694;Sierra Leone;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;195;111;49;49;49;16;135;186;186;660;848;518;1333;603;586;232;453;301;89;353;438;453;535;290;208;253;226 -197;'694;Sierra Leone;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;190;132;33;33;33;14;106;142;142;592;1065;746;1715;707;745;239;490;337;98;334;424;493;571;261;233;247;256 -197;'694;Sierra Leone;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;57;28;28;38;172;268;268;12;29;17;47;154;141;150;162;69;149;102;235;235;192;0;3;6;28 -197;'694;Sierra Leone;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;71;65;65;54;164;211;211;18;28;18;68;134;130;150;168;501;497;91;268;268;192;1;14;31;69 -197;'694;Sierra Leone;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;102;102;102;102;23;23;23;20;120;120;120;120;120;120;120 -197;'694;Sierra Leone;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;92;92;92;92;32;32;32;23;134;134;134;134;134;134;134 -197;'694;Sierra Leone;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110;133;193;193;212;697;747;747;382;349;381;596;359;1695;1060;1612;548;945;1171;830;2636;5853;3888;4214;270;2979 -197;'694;Sierra Leone;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;251;243;362;362;184;543;591;591;372;567;445;594;430;1609;1288;1656;1330;2055;1130;669;2582;5691;3185;3940;508;3172 -197;'694;Sierra Leone;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;44;44;44;11;24;141;141;141;3;32;185;230;230;20;57;21;21;222;250;22;69;33;4;20;20 -197;'694;Sierra Leone;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116;29;29;29;10;24;108;108;108;4;49;274;272;272;17;103;19;19;184;210;22;78;31;6;19;19 -197;'694;Sierra Leone;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;62;159;159;69;161;327;327;40;23;152;191;138;86;195;187;111;290;251;454;202;293;456;551;206;236 -197;'694;Sierra Leone;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;45;258;258;99;170;257;257;39;52;232;240;290;137;258;288;239;468;309;575;212;308;476;549;426;272 -197;'694;Sierra Leone;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;5;5;5;5;111;41;41;515;841;482;1046;271;254;110;373;257;45;111;68;311;346;137;84;113;86 -197;'694;Sierra Leone;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;4;4;4;4;82;31;31;481;1058;694;1349;343;381;130;355;286;47;127;80;337;359;96;93;94;103 -197;'694;Sierra Leone;1675;Other paper and paperboard;5610;Import quantity;t;100;100;100;30;100;300;200;200;600;400;300;200;400;400;400;400;400;200;200;200;200;100;100;100;400;600;800;900;700;300;700;216;487;336;224;200;175;133;439;1207;1207;321;1120;2024;2024;477;3252;1528;711;688;493;94;89;264;214;1088;1005;1111;1203;538;694;399;710 -197;'694;Sierra Leone;1675;Other paper and paperboard;5622;Import value;1000 USD;50;30;35;13;44;167;107;120;206;169;166;145;417;417;417;417;417;308;308;308;300;200;200;200;456;358;516;645;495;434;949;232;442;303;299;202;378;453;490;1287;1287;298;1711;1487;1487;520;1754;1412;624;752;602;171;124;847;492;908;994;1639;3254;1973;2530;1641;3719 -197;'694;Sierra Leone;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;461;243;265;43;43;47;179;193;193;310;442;665;745;250;93;90;755;1228;1247;1140;627;524;751;201;122;278;157 -197;'694;Sierra Leone;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;196;126;141;35;35;38;81;120;120;294;438;680;694;275;110;96;808;1332;1121;1018;596;521;684;161;123;335;278 -197;'694;Sierra Leone;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;45;45;2;42;103;103;5;20;10;4;4;11;2;26;35;40;44;54;62;106;154;137;88;105 -197;'694;Sierra Leone;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;143;143;3;44;114;114;3;21;21;7;7;23;4;48;66;69;93;69;96;170;367;263;235;211 -197;'694;Sierra Leone;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0 -197;'694;Sierra Leone;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;1;1;0;0 -197;'694;Sierra Leone;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;339;819;819;299;917;1366;1366;346;3110;1426;665;637;479;89;29;144;153;932;874;980;945;262;415;230;373 -197;'694;Sierra Leone;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;182;631;631;174;996;846;846;287;1370;1203;494;465;563;151;73;257;331;627;549;713;765;218;569;399;485 -197;'694;Sierra Leone;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;42;42;42;159;184;184;301;298;521;601;248;91;88;749;1227;1246;1139;626;523;750;201;122;278;147 -197;'694;Sierra Leone;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;31;31;31;72;110;110;284;304;546;560;262;97;83;801;1329;1118;1015;593;518;671;157;122;326;129 -197;'694;Sierra Leone;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;187;187;187;187;627;577;577;253;128;134;192;109;75;2;2;40;5;490;514;278;522;12;32;83;65 -197;'694;Sierra Leone;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;47;47;47;446;358;358;160;99;110;174;94;70;3;3;36;21;187;252;193;434;17;42;134;49 -197;'694;Sierra Leone;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22;22;22;67;16;16;69;24;24;50;50;50;50;50;50;50;50;50;50;50;50;50;50;99 -197;'694;Sierra Leone;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;15;23;9;9;63;27;27;50;50;50;50;50;50;50;50;50;50;50;50;50;50;77 -197;'694;Sierra Leone;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;467;467;15;111;101;101;34;40;87;136;306;147;23;23;90;117;52;15;374;183;39;12;48;64 -197;'694;Sierra Leone;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;484;484;11;306;62;62;59;87;133;118;185;258;62;62;62;139;45;19;259;157;47;39;150;188 -197;'694;Sierra Leone;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;92;118;118;57;99;322;529;176;19;36;697;1175;1194;1069;551;467;659;111;32;228;44 -197;'694;Sierra Leone;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;49;71;71;50;106;348;481;183;18;31;749;1277;1066;938;514;451;582;65;30;275;48 -197;'694;Sierra Leone;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;135;135;67;130;646;646;17;2900;1010;142;27;62;62;2;12;12;371;332;315;232;211;371;99;241 -197;'694;Sierra Leone;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;72;72;88;199;400;400;42;1158;808;50;34;83;83;5;156;156;384;272;255;169;154;488;115;246 -197;'694;Sierra Leone;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;50;175;175;175;22;22;22;2;2;2;2;20;25;6;41;40;40;0;4 -197;'694;Sierra Leone;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30;171;171;171;29;29;29;2;2;2;2;27;29;17;39;42;42;1;4 -197;'694;Sierra Leone;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30;30;30;49;42;42;42;42;195;195;195;195;2;2;2;19;19;13;13;8;0;0;0;3 -197;'694;Sierra Leone;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;28;28;28;45;26;26;26;26;152;152;152;152;3;3;3;15;11;6;6;5;0;0;0;2 -197;'694;Sierra Leone;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;133;95;343;343;20;161;555;555;126;122;92;42;47;3;3;34;85;21;112;77;69;152;122;142;81;232 -197;'694;Sierra Leone;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;453;301;513;513;121;671;527;527;230;363;188;123;280;16;16;3;524;92;188;376;830;2319;1388;1698;1007;3023 -197;'694;Sierra Leone;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;243;243;1;1;5;20;9;9;9;144;144;144;2;2;2;6;1;1;1;1;1;0;0;0;0;10 -197;'694;Sierra Leone;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126;126;4;4;7;9;10;10;10;134;134;134;13;13;13;7;3;3;3;3;3;3;3;0;9;149 -197;'694;Sierra Leone;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4291;5365;4945;5165;3983;9956;11386 -197;'694;Sierra Leone;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;215;313;763;576;873;1492;2327 -197;'694;Sierra Leone;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;1;16;37;23;8;59 -197;'694;Sierra Leone;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126;126;126;126;126;126;126 -197;'694;Sierra Leone;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;0 -197;'694;Sierra Leone;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -197;'694;Sierra Leone;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;15;36;22;7;59 -197;'694;Sierra Leone;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126;126;126;126;126;126;126 -197;'694;Sierra Leone;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;71;11;89;92;122;242 -197;'694;Sierra Leone;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;0;0;17 -197;'694;Sierra Leone;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;48;23;23;28;24;40 -197;'694;Sierra Leone;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;32;10;17;11;26 -197;'694;Sierra Leone;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;576;465;260;174;465;729;980 -197;'694;Sierra Leone;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;61;32;274;603;318;135 -197;'694;Sierra Leone;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111;75 -197;'694;Sierra Leone;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;193;135 -197;'694;Sierra Leone;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20 -197;'694;Sierra Leone;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24 -197;'694;Sierra Leone;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3592;4769;4588;4599;3281;8977;9934 -197;'694;Sierra Leone;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;120;539;146;92;740;1340 -197;'694;Sierra Leone;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;3;10;10 -197;'694;Sierra Leone;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;11;47;185;91;86;121 -197;'694;Sierra Leone;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;28;14;35;297;683 -197;'694;Sierra Leone;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7539;6753;11650;8510;14312;10848;10851 -197;'694;Sierra Leone;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;20;397;120;277;224;285 -197;'694;Sierra Leone;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;2;16;0;0;1;1 -197;'694;Sierra Leone;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4 -197;'694;Sierra Leone;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;27;43;96;339;151;533 -197;'694;Sierra Leone;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;5;3;0;37;2 -197;'694;Sierra Leone;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1863;986;946;1027;754;878;1561 -197;'694;Sierra Leone;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;11;49;32;53;83;175 -197;'694;Sierra Leone;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2027;1114;2747;1924;1905;2898;2896 -197;'694;Sierra Leone;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;130;66;190;75;27 -197;'694;Sierra Leone;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3598;4624;7898;5463;11314;6920;5860 -197;'694;Sierra Leone;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;209;15;30;25;77 -200;'702;Singapore;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2550190;2919947;2673578;2349714;2473688.25;2433784;2185016 -200;'702;Singapore;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2241030;2648670;2326407;1965338;1924200.66;1809662;1923829 -200;'702;Singapore;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;27442;30235;37368;43326;55389;62929;77538;85161;94753;186539;218892;169629;255840;290268;376619;522140;545351;552353;464784;526077;460875;364251;439841;550686;751051;714351;897366;992271;1026834;800853;1146581;1574565;1298060;1094378;937423;889038;928252;723909;532970;655034;721235;772607.1;914577.3;967938;1125608;875223;1045448;1590750;1670023;1634142;1684047;1421383;1439969;1499700;1740270;1535872;1327211;1291787.25;1076602;851772 -200;'702;Singapore;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;28;784;400;16881;21439;27623;29698;39570;51891;56519;61001;90275;210279;188291;150332;236953;252302;322597;507688;522653;447269;407101;479845;445025;430110;410280;552306;763467;773498;754098;668805;773689;468720;710198;729483;602753;635089;585811;532044;590613;471894;451213;252507;298811;330500.4;329533;407841;655859;759009;977243;1078041.3;1392038;1598458;1710291;1586967;1666432;1808909;2201303;1903748;1586627;1497521.66;1387907;1491108 -200;'702;Singapore;1861;Roundwood;5516;Production;m3;156232;146624;137607;92545;95903;84949;17954;41289;52527;37045;35304;40084;45930;52086;40292;30253;10123;19343;13855;25078;21357;20873;21109;40393;45458;46668;45494;44198;43321;42649;37808;44528;42161;42161;39102;36560;38218;39090;38240;37815;37297;36801;36325;35867;35425;34867;34326;33803;33294;32799;32245;31705;31179;30665;30164;29675;29197;28729;28271;27822;27381;26950;26526 -200;'702;Singapore;1861;Roundwood;5616;Import quantity;m3;;;;931800;1079000;1427400;1425700;1527100;1714800;1898600;1830800;1436400;1351800;1212900;1027100;1490800;1386100;1577200;1517600;1154000;830000;551300;560900;318200;122300;120600;66900;77800;74600;80891;77184;70253;28945;87142;71900;55900;27600;35000;42800;27300;35807;33550;19999;15420;21167.2;18723;16813;21701;16429;16365;15258;23637;16327;21306;37590;53625;78308;44585;43449;49149;135535;182199;110354 -200;'702;Singapore;1861;Roundwood;5622;Import value;1000 USD;;;;8932;10290;13887;17597;21747;24957;28668;31898;33745;51931;49171;43202;59733;66765;121789;130556;113579;92395;60580;75612;44759;24297;24029;12929;17912;22768;9196;15809;15520;3624;36303;50679;31637;17394;12424;14489;11321;17258;17148;8311;5475;8299.1;3339.3;2382;3529;1847;1544;1545;1763;2165;14690;2966;4007;28129;8017;6464;6688;25994;35012;28073 -200;'702;Singapore;1861;Roundwood;5916;Export quantity;m3;;;;40500;29800;65000;20300;18300;35400;22300;4900;2400;5100;14900;7700;3500;42200;37900;22000;21500;22800;47800;55400;26900;20500;25400;16500;40800;37800;84810;95438;174882;54062;52840;20100;8100;8400;19600;10017;6900;16658;39150;30859;19436;28860.2;3249;3236;1953;2172;2903;620;5410;9187;10299;5533;4950;40790;21368;16610;35092;127981;54165;21749 -200;'702;Singapore;1861;Roundwood;5922;Export value;1000 USD;;;;485;378;834;236;377;562;407;204;103;278;556;307;337;3277;7039;6637;5462;7504;11125;9819;6829;6586;8604;4231;8724;11576;9384;11741;17128;5030;12786;16194;6378;6469;7298;3770;5211;10560;14622;5615;3820;4816.4;3645;4600;1861;1706;1276;527.3;1706;6805;4000;2031;1857;28262;6044;4010;5993;31096;29829;18456 -200;'702;Singapore;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 -200;'702;Singapore;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23825;23872;13310;25040;60082;80030;9604 -200;'702;Singapore;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2915;2995;2939;3645;5701;7582;963 -200;'702;Singapore;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;1084;1493;19999;56405;23296;5991 -200;'702;Singapore;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;416;618;2608;7848;4356;2566 -200;'702;Singapore;1863;Roundwood, non-coniferous;5516;Production;m3;156232;146624;137607;92545;95903;84949;17954;41289;52527;37045;35304;40084;45930;52086;40292;30253;10123;19343;13855;25078;21357;20873;21109;40393;45458;46668;45494;44198;43321;42649;37808;44528;42161;42161;39102;36560;38218;39090;38240;37815;37297;36801;36325;35867;35425;34867;34326;33803;33294;32799;32245;31705;31179;30665;30164;29675;29197;28729;28271;27822;27381;26950;26526 -200;'702;Singapore;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54483;20713;30139;24109;75453;102169;100750 -200;'702;Singapore;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25214;5022;3525;3043;20293;27430;27110 -200;'702;Singapore;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40786;20284;15117;15093;71576;30869;15758 -200;'702;Singapore;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28261;5628;3392;3385;23248;25473;15890 -200;'702;Singapore;1864;Wood fuel;5516;Production;m3;156232;146624;137607;92545;95903;84949;17954;41289;52527;37045;35304;40084;45930;52086;40292;30253;10123;19343;13855;25078;21357;20873;21109;40393;45458;46668;45494;44198;43321;42649;37808;44528;42161;42161;39102;36560;38218;39090;38240;37815;37297;36801;36325;35867;35425;34867;34326;33803;33294;32799;32245;31705;31179;30665;30164;29675;29197;28729;28271;27822;27381;26950;26526 -200;'702;Singapore;1864;Wood fuel;5616;Import quantity;m3;;;;36700;25400;29000;88900;59100;41700;51300;43300;30100;18200;13200;20500;27900;46000;35700;35600;22100;23700;23700;22800;2900;200;200;200;200;200;200;4700;265;265;42000;1200;3400;1600;200;600;1400;7;50;53;28;30;32;49;128;84;91;448;320;307;230;139;542;462;609;591;327;535;1303;826 -200;'702;Singapore;1864;Wood fuel;5622;Import value;1000 USD;;;;134;94;106;207;142;98;115;93;75;56;40;91;147;343;347;493;473;507;507;647;83;7;7;7;7;7;7;431;12;12;2753;193;240;70;32;116;175;2;6;38;2;44;6;23;58;18;38;128;68;65;77;69;183;181;274;194;108;175;437;275 -200;'702;Singapore;1864;Wood fuel;5916;Export quantity;m3;;;;100;100;200;100;200;200;100;100;100;200;3800;3800;200;1200;3200;400;400;400;400;400;400;400;400;400;400;400;400;400;2368;580;580;100;100;400;600;17;200;58;150;372;58;0.2;334;264;98;250;277;108;3723;5122;4406;2866;1769;2727;1774;1640;1196;435;99;99 -200;'702;Singapore;1864;Wood fuel;5922;Export value;1000 USD;;;;1;1;5;1;4;7;4;4;4;8;18;18;9;105;338;41;41;41;41;41;41;41;41;41;41;41;41;41;96;20;20;11;62;153;165;7;47;3;9;90;88;0.4;16;65;30;68;70;30;370;772;1625;1125;622;1015;656;551;411;153;59;59 -200;'702;Singapore;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 -200;'702;Singapore;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;74;40;82;30;76 -200;'702;Singapore;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;21;20;24;13;20 -200;'702;Singapore;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;210;473;53;20;1;1 -200;'702;Singapore;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;149;16;5;2;2 -200;'702;Singapore;1628;Wood fuel, non-coniferous;5516;Production;m3;156232;146624;137607;92545;95903;84949;17954;41289;52527;37045;35304;40084;45930;52086;40292;30253;10123;19343;13855;25078;21357;20873;21109;40393;45458;46668;45494;44198;43321;42649;37808;44528;42161;42161;39102;36560;38218;39090;38240;37815;37297;36801;36325;35867;35425;34867;34326;33803;33294;32799;32245;31705;31179;30665;30164;29675;29197;28729;28271;27822;27381;26950;26526 -200;'702;Singapore;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;462;562;517;287;453;1273;750 -200;'702;Singapore;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;181;194;173;88;151;424;255 -200;'702;Singapore;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2727;1564;1167;1143;415;98;98 -200;'702;Singapore;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1015;574;402;395;148;57;57 -200;'702;Singapore;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;36700;25400;29000;88900;59100;41700;51300;43300;30100;18200;13200;20500;27900;46000;35700;35600;22100;23700;23700;22800;2900;200;200;200;200;200;200;4700;265;265;42000;1200;3400;1600;200;600;1400;7;50;53;28;30;32;49;128;84;91;448;320;307;230;139;542;;;;;;; -200;'702;Singapore;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;134;94;106;207;142;98;115;93;75;56;40;91;147;343;347;493;473;507;507;647;83;7;7;7;7;7;7;431;12;12;2753;193;240;70;32;116;175;2;6;38;2;44;6;23;58;18;38;128;68;65;77;69;183;;;;;;; -200;'702;Singapore;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;100;100;200;100;200;200;100;100;100;200;3800;3800;200;1200;3200;400;400;400;400;400;400;400;400;400;400;400;400;400;2368;580;580;100;100;400;600;17;200;58;150;372;58;0.2;334;264;98;250;277;108;3723;5122;4406;2866;1769;;;;;;; -200;'702;Singapore;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;1;1;5;1;4;7;4;4;4;8;18;18;9;105;338;41;41;41;41;41;41;41;41;41;41;41;41;41;96;20;20;11;62;153;165;7;47;3;9;90;88;0.4;16;65;30;68;70;30;370;772;1625;1125;622;;;;;;; -200;'702;Singapore;1865;Industrial roundwood;5616;Import quantity;m3;;;;895100;1053600;1398400;1336800;1468000;1673100;1847300;1787500;1406300;1333600;1199700;1006600;1462900;1340100;1541500;1482000;1131900;806300;527600;538100;315300;122100;120400;66700;77600;74400;80691;72484;69988;28680;45142;70700;52500;26000;34800;42200;25900;35800;33500;19946;15392;21137.2;18691;16764;21573;16345;16274;14810;23317;16020;21076;37451;53083;77846;43976;42858;48822;135000;180896;109528 -200;'702;Singapore;1865;Industrial roundwood;5622;Import value;1000 USD;;;;8798;10196;13781;17390;21605;24859;28553;31805;33670;51875;49131;43111;59586;66422;121442;130063;113106;91888;60073;74965;44676;24290;24022;12922;17905;22761;9189;15378;15508;3612;33550;50486;31397;17324;12392;14373;11146;17256;17142;8273;5473;8255.1;3333.3;2359;3471;1829;1506;1417;1695;2100;14613;2897;3824;27948;7743;6270;6580;25819;34575;27798 -200;'702;Singapore;1865;Industrial roundwood;5916;Export quantity;m3;;;;40400;29700;64800;20200;18100;35200;22200;4800;2300;4900;11100;3900;3300;41000;34700;21600;21100;22400;47400;55000;26500;20100;25000;16100;40400;37400;84410;95038;172514;53482;52260;20000;8000;8000;19000;10000;6700;16600;39000;30487;19378;28860;2915;2972;1855;1922;2626;512;1687;4065;5893;2667;3181;38063;19594;14970;33896;127546;54066;21650 -200;'702;Singapore;1865;Industrial roundwood;5922;Export value;1000 USD;;;;484;377;829;235;373;555;403;200;99;270;538;289;328;3172;6701;6596;5421;7463;11084;9778;6788;6545;8563;4190;8683;11535;9343;11700;17032;5010;12766;16183;6316;6316;7133;3763;5164;10557;14613;5525;3732;4816;3629;4535;1831;1638;1206;497.3;1336;6033;2375;906;1235;27247;5388;3459;5582;30943;29770;18397 -200;'702;Singapore;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5611;7215;182;2384;672;300;1600;5100;1800;1300;1000;2700;400;467;2419;643;341;529;533;276;391;0;0;0;45;17707;35704;23825;23825;13236;25000;60000;80000;9528 -200;'702;Singapore;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1230;912;22;561;135;107;632;1031;153;96;88;258;144;78;404;107;85;152;150;69;71;0;0;0;18;1620;2446;2915;2915;2918;3625;5677;7569;943 -200;'702;Singapore;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27831;28131;39492;10198;15060;0;0;0;0;0;0;0;0;996;793;255;900;65;382;725;1267;3;0;0;1268;632;81;4;874;1020;19946;56385;23295;5990 -200;'702;Singapore;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1509;1261;1909;495;633;0;0;0;0;0;0;0;0;140;112;36;102;6;41;85;119;0.3;0;0;264;58;7;1;334;469;2592;7843;4354;2564 -200;'702;Singapore;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5611;7215;182;2384;672;300;1600;5100;1800;1300;1000;2700;400;467;2419;643;341;529;533;276;391;0;0;0;45;17707;35704;23825;23825;13236;25000;60000;80000;9528 -200;'702;Singapore;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1230;912;22;561;135;107;632;1031;153;96;88;258;144;78;404;107;85;152;150;69;71;0;0;0;18;1620;2446;2915;2915;2918;3625;5677;7569;943 -200;'702;Singapore;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27831;28131;39492;10198;15060;0;0;0;0;0;0;0;0;996;793;255;900;65;382;725;1267;3;0;0;1268;632;81;4;874;1020;19946;56385;23295;5990 -200;'702;Singapore;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1509;1261;1909;495;633;0;0;0;0;0;0;0;0;140;112;36;102;6;41;85;119;0.3;0;0;264;58;7;1;334;469;2592;7843;4354;2564 -200;'702;Singapore;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75080;65269;69806;26296;44470;70400;50900;20900;33000;40900;24900;33100;33100;19479;12973;20494.2;18350;16235;21040;16069;15883;14810;23317;16020;21031;19744;17379;54021;20151;29622;23822;75000;100896;100000 -200;'702;Singapore;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7959;14466;15486;3051;33415;50379;30765;16293;12239;14277;11058;16998;16998;8195;5069;8148.1;3248.3;2207;3321;1760;1435;1417;1695;2100;14595;1277;1378;25033;4828;3352;2955;20142;27006;26855 -200;'702;Singapore;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56579;66907;133022;43284;37200;20000;8000;8000;19000;10000;6700;16600;39000;29491;18585;28605;2015;2907;1473;1197;1359;509;1687;4065;4625;2035;3100;38059;18720;13950;13950;71161;30771;15660 -200;'702;Singapore;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7834;10439;15123;4515;12133;16183;6316;6316;7133;3763;5164;10557;14613;5385;3620;4780;3527;4529;1790;1553;1087;497;1336;6033;2111;848;1228;27246;5054;2990;2990;23100;25416;15833 -200;'702;Singapore;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58906;54499;62305;15737;39500;60000;43000;13000;10200;13200;7300;14100;14100;19120;12839;20494;18348;15859;16832;13957;15602;14156;23192;16000;17310;19691;17325;54021;19817;27936;21136;75000;100000;100000 -200;'702;Singapore;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3958;10018;12794;1738;31436;45714;26052;11580;5612;5900;6044;10735;10735;8073;5020;8148;3248;2170;2901;1449;1262;1203;1655;2093;2273;1248;1256;25033;4778;2949;2633;20142;26855;26855 -200;'702;Singapore;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56579;66907;133022;43284;37200;20000;8000;8000;19000;10000;6700;16600;16600;29293;18430;28584;1800;1684;750;700;500;258;1210;2330;4427;2035;3100;38059;18720;13950;13950;71161;30346;15660 -200;'702;Singapore;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7834;10439;15123;4515;12133;16183;6316;6316;7133;3763;5164;10557;10557;5331;3578;4776;3484;4314;1594;1461;929;462;345;3261;2059;848;1228;27246;5054;2990;2990;23100;24806;15833 -200;'702;Singapore;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16174;10770;7501;10559;4970;10400;7900;7900;22800;27700;17600;19000;19000;359;134;0.2;2;376;4208;2112;281;654;125;20;3721;53;54;0;334;1686;2686;0;896;0 -200;'702;Singapore;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4001;4448;2692;1313;1979;4665;4713;4713;6627;8377;5014;6263;6263;122;49;0.1;0.3;37;420;311;173;214;40;7;12322;29;122;0;50;403;322;0;151;0 -200;'702;Singapore;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22400;198;155;21;215;1223;723;497;859;251;477;1735;198;0;0;0;0;0;0;0;425;0 -200;'702;Singapore;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4056;54;42;4;43;215;196;92;158;35;991;2772;52;0;0;0;0;0;0;0;610;0 -200;'702;Singapore;1868;Sawlogs and veneer logs;5616;Import quantity;m3;;;;880500;1035700;1371200;1317600;1465500;1669900;1844200;1777900;1398900;1327900;1194800;1000200;1449500;1323800;1529100;1477300;1117500;780800;501300;529300;311300;115400;113700;60000;77600;74400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -200;'702;Singapore;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;;;;8703;10096;13548;17284;21541;24765;28473;31708;33600;51788;49000;43008;59429;66216;121214;129983;112726;91255;59158;74660;44555;24089;23821;12721;17905;22761;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -200;'702;Singapore;1868;Sawlogs and veneer logs;5916;Export quantity;m3;;;;37200;26800;57900;17400;16100;31600;19300;1800;800;2700;9600;2400;2500;40300;34200;21100;21000;22000;47000;55000;26500;20100;25000;16100;40400;37400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -200;'702;Singapore;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;;;;460;355;675;221;363;505;387;182;85;245;520;246;318;3161;6687;6582;5415;7251;10872;9778;6788;6545;8563;4190;8683;11535;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -200;'702;Singapore;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;100;800;1300;1000;5000;1300;5000;1300;1300;1300;1300;3500;4500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -200;'702;Singapore;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;31;478;583;426;1260;658;1260;555;521;521;521;1373;1735;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -200;'702;Singapore;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -200;'702;Singapore;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -200;'702;Singapore;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;;;;880500;1035700;1371200;1317600;1465500;1669900;1844200;1777900;1398900;1327900;1194800;1000200;1449500;1323700;1528300;1476000;1116500;775800;500000;524300;310000;114100;112400;58700;74100;69900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -200;'702;Singapore;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;;;;8703;10096;13548;17284;21541;24765;28473;31708;33600;51788;49000;43008;59429;66185;120736;129400;112300;89995;58500;73400;44000;23568;23300;12200;16532;21026;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -200;'702;Singapore;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;;;;37200;26800;57900;17400;16100;31600;19300;1800;800;2700;9600;2400;2500;40300;34200;21100;21000;22000;47000;55000;26500;20100;25000;16100;40400;37400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -200;'702;Singapore;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;;;;460;355;675;221;363;505;387;182;85;245;520;246;318;3161;6687;6582;5415;7251;10872;9778;6788;6545;8563;4190;8683;11535;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -200;'702;Singapore;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -200;'702;Singapore;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -200;'702;Singapore;1870;Pulpwood and particles (1961-1997);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -200;'702;Singapore;1870;Pulpwood and particles (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -200;'702;Singapore;1871;Other industrial roundwood;5616;Import quantity;m3;;;;14600;17900;27200;19200;2500;3200;3100;9600;7400;5700;4900;6400;13400;16300;12400;4700;14400;25500;26300;8800;4000;6700;6700;6700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -200;'702;Singapore;1871;Other industrial roundwood;5622;Import value;1000 USD;;;;95;100;233;106;64;94;80;97;70;87;131;103;157;206;228;80;380;633;915;305;121;201;201;201;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -200;'702;Singapore;1871;Other industrial roundwood;5916;Export quantity;m3;;;;3200;2900;6900;2800;2000;3600;2900;3000;1500;2200;1500;1500;800;700;500;500;100;400;400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -200;'702;Singapore;1871;Other industrial roundwood;5922;Export value;1000 USD;;;;24;22;154;14;10;50;16;18;14;25;18;43;10;11;14;14;6;212;212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -200;'702;Singapore;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;14600;17900;27200;19200;2500;3200;3100;9600;7400;5700;4900;6400;13400;16300;12400;4700;14400;25500;26300;8800;4000;6700;6700;6700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -200;'702;Singapore;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;95;100;233;106;64;94;80;97;70;87;131;103;157;206;228;80;380;633;915;305;121;201;201;201;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -200;'702;Singapore;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;;;;3200;2900;6900;2800;2000;3600;2900;3000;1500;2200;1500;1500;800;700;500;500;100;400;400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -200;'702;Singapore;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;;;;24;22;154;14;10;50;16;18;14;25;18;43;10;11;14;14;6;212;212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -200;'702;Singapore;1630;Wood charcoal;5510;Production;t;6754;6699;6644;6644;6644;6644;6644;6644;6644;6644;2089;2395;121;225;3069;3133;3133;2800;130;130;5757;5757;5339;5675;1802;1952;1946;35903;35894;32993;40934;24141;21892;21424;31471;27462;9937;14761;7321;5982;5925;5868;5811;5755;5700;5625;5551;5477;5405;5334;5252;5171;5091;5013;4936;4860;4786;4712;4640;4569;4499;4430;4362 -200;'702;Singapore;1630;Wood charcoal;5610;Import quantity;t;;;;12700;17500;16000;11200;12900;10100;8500;8000;6400;8500;13000;7900;9300;19100;9700;15500;21600;19000;25100;21500;22200;31100;31100;31100;16100;16100;18400;14700;19427;12889;10636;11600;12500;26300;20300;26000;28000;21500;14200;40791;39023;33238;31546;1578;15252;19155;15262;15428;14570;16870;21599;21991;19151;6334;13284;17349;13133;9097;9407;9472 -200;'702;Singapore;1630;Wood charcoal;5622;Import value;1000 USD;;;;273;304;256;202;197;169;130;152;134;196;351;273;282;906;494;903;1612;1306;1215;1630;1528;1783;1783;1783;1072;1072;1233;1065;2608;1673;1500;1177;1352;2810;2004;2286;2917;1919;1022;5460;5370;4618;4841;257;2359;3459;2607;3865;4053;4023;6369;6961;6369;3344;4192;6065;5097;3707;3247;4151 -200;'702;Singapore;1630;Wood charcoal;5910;Export quantity;t;;;;1100;4600;1700;700;700;1500;1000;3900;2700;2600;7200;4900;6400;12100;6600;9800;10700;19000;4400;21000;22000;26800;26800;26800;45800;45800;45200;49400;37293;28541;25861;36900;33800;30100;29000;27300;27300;24700;29600;34616;30285;25634;23154;770;7016;11503;8869;7026;4610;5380;7017;14022;11937;4966;5536;6534;5362;1105;1049;767 -200;'702;Singapore;1630;Wood charcoal;5922;Export value;1000 USD;;;;28;149;56;19;19;38;32;168;97;107;541;354;405;1050;554;796;710;2855;418;4055;4528;5239;5239;5239;7277;7277;7976;9778;10037;6825;6208;9755;9114;8451;7287;6760;5986;5300;6230;6893;6240;5874;5988;277;2485;3766;2689;2836;2297;2093;3598;6619;5120;2287;3313;3327;3387;817;1244;562 -200;'702;Singapore;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2200;4600;26000;9500;6800;6865;5618;4901;5736;5758;5142;6063;7950;8317;7250;8760;8262;9388;6987;27074;7768;4634;4309;3482;3270;3662 -200;'702;Singapore;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;182;235;2144;909;850;1845;1278;812;1034;1289;1466;1742;2696;2626;1965;2667;3047;3235;2609;2552;3491;1706;1488;1286;1127;1436 -200;'702;Singapore;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1700;2000;1200;800;300;1359;549;311;329;2902;35662;37954;2980;10581;3853;10150;194787;189432;151063;99151;59669;50137;29695;66514.9;58068;41977 -200;'702;Singapore;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;146;148;164;107;49;679;299;46;439;205;840;875;49;211;197;727;5436;4772;5204;1826;1744;721;453;1009.11;1784;859 -200;'702;Singapore;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6655;46;8600;1300;1800;700;1100;2000;10000;1300;800;1812;748;110;86;68;430;680;782;2015;3680;4270;3551;3094;3517;16599;2999;4611;4088;3112;3010;3348 -200;'702;Singapore;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;298;3;792;141;170;76;73;51;712;169;156;1109;444;26;41;158;187;411;620;682;949;1353;1489;1284;1326;1129;1539;1699;1459;1161;1032;1202 -200;'702;Singapore;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;10700;16600;40200;44700;45000;33414;27882;6964;3800;4700;600;700;0;0;0;0;1020;361;253;188;53;53;53;53;53;3;420;188948;160037;115046;98984;58952;49774;29624;66510.9;58053;41967 -200;'702;Singapore;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;826;1327;1921;2204;1167;1015;2028;308;212;194;32;42;0;0;0;0;663;228;29;415;15;15;15;15;15;9;394;4416;2914;2535;1826;1540;715;445;1008.11;1780;852 -200;'702;Singapore;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6209;3194;2785;800;700;900;1100;2600;16000;8200;6000;5053;4870;4791;5650;5690;4712;5383;7168;6302;3570;4490;4711;6294;3470;10475;4769;23;221;370;260;314 -200;'702;Singapore;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;285;125;127;107;96;76;109;184;1432;740;694;736;834;786;993;1131;1279;1331;2076;1944;1016;1314;1558;1951;1283;1423;1952;7;29;125;95;234 -200;'702;Singapore;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4210;3347;3943;12300;2800;2000;1000;2000;1200;800;300;339;188;58;141;2849;35609;37901;2927;10528;3850;9730;5839;29395;36017;167;717;363;71;4;15;10 -200;'702;Singapore;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;147;136;138;149;118;185;104;148;164;107;49;16;71;17;24;190;825;860;34;196;188;333;1020;1858;2669;0;204;6;8;1;4;7 -200;'702;Singapore;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;440000;304000;310000;310000;310000 -200;'702;Singapore;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2920;4250;5345;6582;4330;4330;4330;4336;4156;5879.02;5657;4490 -200;'702;Singapore;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1277;1836;1876;1959;1643;1643;1643;2088;1954;2828.08;2544;2180 -200;'702;Singapore;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;270;330;266;126;84;84;84;304;357;1212;650;217 -200;'702;Singapore;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;291;278;754;283;506;506;506;551;206;522;156;83 -200;'702;Singapore;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;540;1260;2355;3592;1340;1340;1340;1257;1137;2381.02;2610;2115 -200;'702;Singapore;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;261;522;562;645;329;329;329;497;469;748;733;638 -200;'702;Singapore;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;270;330;266;126;84;84;84;304;357;1212;458;69 -200;'702;Singapore;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;291;278;754;283;506;506;506;551;206;522;100;41 -200;'702;Singapore;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2380;2990;2990;2990;2990;2990;2990;3079;3019;3498;3047;2375 -200;'702;Singapore;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1016;1314;1314;1314;1314;1314;1314;1591;1485;2080.08;1811;1542 -200;'702;Singapore;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;192;148 -200;'702;Singapore;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;42 -200;'702;Singapore;1872;Sawnwood;5516;Production;m3;1500;21200;11100;414400;465800;568000;600000;689000;662000;812000;743000;828000;830000;860000;407000;461000;339000;397000;398000;336000;242000;229000;232000;211000;191000;175000;152000;120000;90000;55000;30000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;1000;1000;1000;1000;1000;1000;1000;1000;1000 -200;'702;Singapore;1872;Sawnwood;5616;Import quantity;m3;;;;147900;140700;148700;162300;218800;256800;302400;278700;355900;819200;658750;664200;1101700;1220600;1252700;1200200;1130100;1097400;1135100;1116600;865100;705300;747300;992400;1038000;1381900;1189350;986300;939978;934115;624143;740800;757600;588300;403000;323500;353600;258600;224200;126896;131577;157565;462655;560991;322995;255724;231007;235841;354660;357870;282072;146282;143675;123836;194471;179620;136115;204357;140580;106580 -200;'702;Singapore;1872;Sawnwood;5622;Import value;1000 USD;;;;5477;5340;5080;5293;7271;8889;10829;9636;12717;43191;45669;43778;83253;98817;116810;161900;156867;148531;133811;128779;105672;85712;91018;136755;134950;145618;160548;168170;217706;217075;210734;222481;184706;219258;117713;94335;69941;70448;62549;92959;95608;115076;130042;141224;152035;100048;114098;122736;109561;97206;90169;52898;48159;39042;46968;42037;30369;62049;49676;34135 -200;'702;Singapore;1872;Sawnwood;5916;Export quantity;m3;750;21200;11100;339350;403000;503900;506400;603400;753700;763800;706700;812400;1140700;830100;684500;1142000;1194000;1236200;1464700;1191500;957800;884300;892700;778200;678700;755700;1016000;1065800;1121300;1015900;704500;887174;734473;405268;335200;268400;233700;178800;125700;172400;160200;195100;90745;84463;104522;65120;61296;87446;37711;45901;49512;92020;31420;23824;44602;19891;20264;50075;31535;17649;112215;80423;25304 -200;'702;Singapore;1872;Sawnwood;5922;Export value;1000 USD;28;784;400;13513;15968;17917;18843;24235;32195;34832;31052;44956;119571;85203;62554;120523;128234;160383;287678;261870;184559;158900;191338;156926;134408;156662;226779;263192;292118;248402;169046;263279;223628;188513;136874;123259;144100;95107;66352;71753;66677;76019;73254;68617;84754;78245;77126;79434;41344;49000;51636;44591;24898;22530;19780;11161;9117;26771;18055;7863;11845;21839;17315 -200;'702;Singapore;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;5000;12000;10000;10000;5000;10000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;0;0;0;0;0;0;0;0;0 -200;'702;Singapore;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;650;0;200;4350;450;800;1200;600;250;1150;1150;16100;3850;3000;6450;10950;16150;20200;16500;9750;5550;4900;3600;2700;4650;2900;4800;14600;10759;11415;9643;22000;52600;39000;15000;6500;8800;9600;4000;1777;1234;1185;4824;5676;4776;7474;15980;19848;15160;15570;11072;12340;18053;16485;21949;30930;53463;85357;65639;34905 -200;'702;Singapore;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;55;0;6;56;13;24;35;21;10;93;93;1265;261;253;641;1419;2346;3623;2446;1702;1409;964;749;486;1018;768;888;2157;2099;2356;2271;3986;8562;7411;3313;1109;1297;1825;639;784;544;522;1015;1451;1151;1448;3564;4919;3771;3904;2895;2875;3769;3769;5721;7923;10421;30157;16223;8438 -200;'702;Singapore;1632;Sawnwood, coniferous;5916;Export quantity;m3;0;10600;5550;650;0;15750;36200;23650;17000;21600;28450;13950;15100;29800;29650;13000;18500;16750;13700;30500;22800;19300;12700;5500;4550;8200;12800;8850;10750;8050;7100;12373;9873;7478;6900;12400;19000;8200;2700;3800;5100;15600;1431;1423;1109;120;716;4;4;106;436;1640;150;1739;6382;6051;2044;9814;4730;4476;3468;16528;6304 -200;'702;Singapore;1632;Sawnwood, coniferous;5922;Export value;1000 USD;0;392;200;25;0;566;1326;803;583;783;1013;590;983;2728;3525;1322;2141;2171;2556;6803;4643;3373;2960;1061;764;1780;2771;1913;2299;1338;479;2612;1776;1607;1487;2686;5527;3787;703;1643;1982;2352;558;555;432;55;300;2;2;44;190;336;107;224;2161;1238;572;2666;1214;746;735;4301;1868 -200;'702;Singapore;1633;Sawnwood, non-coniferous;5516;Production;m3;1500;21200;11100;414400;465800;568000;600000;689000;662000;812000;743000;828000;830000;860000;407000;461000;339000;397000;398000;336000;242000;229000;232000;211000;191000;170000;140000;110000;80000;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;1000;1000;1000;1000;1000;1000;1000;1000;1000 -200;'702;Singapore;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;147250;140700;148500;157950;218350;256000;301200;278100;355650;818050;657600;648100;1097850;1217600;1246250;1189250;1113950;1077200;1118600;1106850;859550;700400;743700;989700;1033350;1379000;1184550;971700;929219;922700;614500;718800;705000;549300;388000;317000;344800;249000;220200;125119;130343;156380;457831;555315;318219;248250;215027;215993;339500;342300;271000;133942;125622;107351;172522;148690;82652;119000;74941;71675 -200;'702;Singapore;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;5422;5340;5074;5237;7258;8865;10794;9615;12707;43098;45576;42513;82992;98564;116169;160481;154521;144908;131365;127077;104263;84748;90269;136269;133932;144850;159660;166013;215607;214719;208463;218495;176144;211847;114400;93226;68644;68623;61910;92175;95064;114554;129027;139773;150884;98600;110534;117817;105790;93302;87274;50023;44390;35273;41247;34114;19948;31892;33453;25697 -200;'702;Singapore;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;750;10600;5550;338700;403000;488150;470200;579750;736700;742200;678250;798450;1125600;800300;654850;1129000;1175500;1219450;1451000;1161000;935000;865000;880000;772700;674150;747500;1003200;1056950;1110550;1007850;697400;874801;724600;397790;328300;256000;214700;170600;123000;168600;155100;179500;89314;83040;103413;65000;60580;87442;37707;45795;49076;90380;31270;22085;38220;13840;18220;40261;26805;13173;108747;63895;19000 -200;'702;Singapore;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;28;392;200;13488;15968;17351;17517;23432;31612;34049;30039;44366;118588;82475;59029;119201;126093;158212;285122;255067;179916;155527;188378;155865;133644;154882;224008;261279;289819;247064;168567;260667;221852;186906;135387;120573;138573;91320;65649;70110;64695;73667;72696;68062;84322;78190;76826;79432;41342;48956;51446;44255;24791;22306;17619;9923;8545;24105;16841;7117;11110;17538;15447 -200;'702;Singapore;1634;Veneer sheets;5516;Production;m3;;;;5000;25000;30000;40000;60000;45000;50000;73000;109000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;80000;75000;64000;65000;65000;65000;65000;65000;65000;65000;65000;65000;65000;65000;65000;65000;65000;65000;65000;65000;65000;65000;65000;65000;65000;65000;1000;2000;2000;2000;2000;2000;2000;2000;2000 -200;'702;Singapore;1634;Veneer sheets;5616;Import quantity;m3;;;;100;1200;3900;2400;500;2800;5600;11800;12400;36100;61700;66600;63000;76300;85300;73600;66700;97200;96300;79800;50700;27700;26500;23300;35700;23100;51700;20300;33834;13956;28992;27500;30000;22100;13000;9000;12200;12800;13400;6274;7627;6446;4160;3301;2977;2832;3346;3458;5531;5400;4923;3002;1641;2821;2467;3628;8446;7318;1618;2137 -200;'702;Singapore;1634;Veneer sheets;5622;Import value;1000 USD;;;;20;143;481;296;81;254;506;1048;1039;2958;5503;4429;4396;6208;8607;13660;14107;17897;16553;17064;13079;11805;11300;10000;14868;13209;19418;12890;19484;7772;16863;14169;15319;14880;9222;7706;8191;6337;8661;9589;11688;9926;8811;7512;7798;7029;7729;7402;7246;7079;6504;4677;3160;5078;4780;7627;32514;4993;4868;5283 -200;'702;Singapore;1634;Veneer sheets;5916;Export quantity;m3;;;;3100;23200;32400;38500;59800;45100;31400;73100;108700;33400;41300;24000;29000;31000;26400;11300;20000;12100;14000;14000;14800;23300;37700;24700;19300;14700;22500;27700;16895;13796;11329;10000;10700;25800;18000;9300;8000;5200;8000;4157;5529;5684;3629;3823;2764;2100;1596;1685;2000;1700;1101;780;1759;1838;1531;776;535;1330;1106;1675 -200;'702;Singapore;1634;Veneer sheets;5922;Export value;1000 USD;;;;162;1369;2634;2657;3776;3044;2493;4843;7949;6897;8913;5685;6153;8040;7515;8997;12063;9626;9186;10669;11434;13618;15797;14260;15236;12401;14152;16892;16538;10868;15751;12953;10582;17660;10721;8771;7841;6417;7307;7790;10527;10736;8347;7830;6375;4917;3780;3809;4593;3980;4960;2097;2356;3335;2755;1775;1568;1100;1284;705 -200;'702;Singapore;1873;Wood-based panels;5516;Production;m3;;;;13500;31800;45300;75900;110000;193000;215000;250000;327000;350000;350000;334000;558000;515000;675000;778000;579000;527000;460000;482000;411000;437000;399000;399000;399000;360000;343000;310000;290000;290000;290000;290000;290000;290000;290000;290000;290000;290000;290000;290000;290000;290000;290000;290000;290000;290000;290000;290000;290000;290000;290000;16000;16000;16000;12000;2000;2000;2000;2000;2000 -200;'702;Singapore;1873;Wood-based panels;5616;Import quantity;m3;;;;17800;16000;26165;32970;51881;66534;71445;84225;121218;157192;137094;152891;220443;236200;259300;255500;294900;361600;316300;446300;672300;670800;624900;816200;792000;875000;814000;809200;599656;613461;604109;614000;630400;664900;466600;432800;421500;352400;300600;59415;89202;90293;302192;374539;398833;262100;319748;406168;486058;486184;483124;314365;302606;274266;280555;219981;162136;259820;202972;173801 -200;'702;Singapore;1873;Wood-based panels;5622;Import value;1000 USD;;;;2168;2000;2488;3471;5441;6969;7789;8536;12688;24029;20672;21493;35618;37792;48308;80865;77969;94841;78179;101548;69326;52961;83044;110989;157344;147360;162143;226475;219099;163054;226525;166532;176122;201165;129056;138604;122122;94549;67237;21176;29564;31051;98303;117027;155365;108995;136897;164680;182555;189716;177322;154573;127692;116762;119471;108942;79299;129051;122172;105270 -200;'702;Singapore;1873;Wood-based panels;5916;Export quantity;m3;;;;9400;12400;32617;42985;72274;112874;135585;182485;281880;442858;295011;385827;466264;449700;564000;578600;631700;612200;627000;714500;604800;651700;598700;730100;769000;791700;837900;743800;503808;174611;423382;367600;318700;241200;174000;154200;161800;138900;139300;33504;35230;32044;38316;123905;96231;70656;66919;89084;71135;63223;88098;41548;35985;33135;36486;35085;11826;26905;15684;17419 -200;'702;Singapore;1873;Wood-based panels;5922;Export value;1000 USD;;;;1239;1704;3425;4819;8068;12281;15206;19278;30721;73357;63583;68701;94309;94726;129393;182950;208437;200120;184723;206789;166123;171383;159317;220693;260696;238882;192115;186570;218761;87545;148922;123710;95618;83647;66964;66663;67559;51650;51181;11784;12835;11744;15019;51888;41420;30689;29649;36626;32646;28058;34325;25110;19309;19779;24616;13500;6592;13960;9136;14286 -200;'702;Singapore;1640;Plywood and LVL;5516;Production;m3;;;;13500;31800;45300;75900;110000;193000;215000;250000;327000;350000;350000;334000;558000;515000;675000;778000;579000;527000;460000;482000;411000;437000;399000;399000;399000;350000;328000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;6000;6000;6000;2000;2000;2000;2000;2000;2000 -200;'702;Singapore;1640;Plywood and LVL;5616;Import quantity;m3;;;;11900;9700;12400;23400;38500;53600;56000;62900;102400;131400;98000;139500;204000;219000;233300;229000;248100;319300;282700;417000;639000;637000;574000;751000;700000;748000;735000;734800;504841;546700;503100;534400;554300;591000;422000;381800;343900;300000;250000;8854;10905;12803;250000;329221;348173;231310;277397;356006;439728;439728;468973;291805;286404;257401;267524;206926;150764;246899;190221;160000 -200;'702;Singapore;1640;Plywood and LVL;5622;Import value;1000 USD;;;;1420;1154;1582;2798;4548;5999;6712;7055;11400;21965;18187;20217;34098;35647;44942;77264;70236;86368;71596;94112;60990;43811;75000;100000;136336;131732;144539;198961;196880;147546;197852;139661;154359;174667;111244;117954;99377;79057;52730;5510;6756;7955;80000;102382;137792;97745;123493;150992;170134;177682;166486;137091;117498;106943;109947;101992;74341;122391;115506;97492 -200;'702;Singapore;1640;Plywood and LVL;5916;Export quantity;m3;;;;6800;9800;28300;40100;69200;109800;131900;178400;278300;435700;289300;379800;459300;441400;552800;567600;616000;586800;611000;693000;591400;628600;574900;690700;710800;713800;754600;660100;450401;154464;371000;326500;276400;191200;144000;128200;133000;100000;100000;2742;3182;2678;5100;91459;64339;47323;47751;58000;53000;46000;72361;36520;30627;25772;33695;33356;10109;25411;14947;16208 -200;'702;Singapore;1640;Plywood and LVL;5922;Export value;1000 USD;;;;924;1331;3051;4588;7825;12080;14930;18976;30476;72745;62997;68194;93678;93765;128260;181542;206345;197468;181940;202774;163827;167405;154497;212124;246583;226949;176737;170334;206269;82722;133367;112491;82357;63064;54249;54369;56274;41570;39861;1842;2127;1790;3473;39209;32412;24451;24029;29200;26788;23009;23735;20518;16610;16746;22205;12140;5654;12979;8609;13439 -200;'702;Singapore;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;7057 -200;'702;Singapore;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109;1465 -200;'702;Singapore;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118;110 -200;'702;Singapore;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;144;55 -200;'702;Singapore;1646;Particle board and OSB (1961-1994);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;15000;30000;10000;10000;10000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -200;'702;Singapore;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;100;100;200;200;300;600;500;500;800;500;400;2000;4500;7600;7600;25400;25300;20000;14900;20300;22400;29700;47400;71100;118000;69000;50000;34470;22015;48475;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -200;'702;Singapore;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;42;39;59;40;55;97;74;118;263;221;103;269;972;1382;1382;5095;5591;3768;4113;5090;6401;5896;9113;12644;10864;10882;9430;9414;4849;10722;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -200;'702;Singapore;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;400;300;300;100;1400;600;600;5700;6700;8100;14800;7000;17800;18800;32800;48100;74500;79000;77700;40883;11659;24651;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -200;'702;Singapore;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;77;43;43;12;296;104;104;774;1265;1521;2712;1217;3132;3896;7203;11233;9209;9173;9877;7691;2378;5659;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -200;'702;Singapore;1697;Particle board;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;0;0;0;0;0 -200;'702;Singapore;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64900;58900;49000;32000;31000;49600;30000;15100;11531;15059;18332;19858;4318;21426;8766;13177;25000;23725;24770;5071;5432;7735;9929;7028;5702;5652;7563;7964;5263 -200;'702;Singapore;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10900;9210;7933;8085;6599;8349;4592;3731;3822;5829;7131;7477;1831;8518;4275;5039;6326;5722;6485;3640;3745;4381;5261;5261;3823;2655;4181;3705;3326 -200;'702;Singapore;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28300;29200;24100;11200;10000;9400;8000;8900;2833;4810;2749;3616;2446;8590;2464;2678;5646;4940;2490;804;326;344;3490;431;387;651;348;240;124 -200;'702;Singapore;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4567;5004;5070;3169;2803;2331;1768;2359;1104;1825;1018;1588;2654;3283;1081;1081;1725;1663;875;660;257;255;1263;1263;865;598;540;230;245 -200;'702;Singapore;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1275;230;379;748;873;592;381;1093;1293;440;151;209 -200;'702;Singapore;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;759;85;276;269;353;268;188;291;318;203;36;175 -200;'702;Singapore;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;10;289;76;306;0;236;46;274;30;4;4 -200;'702;Singapore;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;1;190;51;107;0;104;12;61;8;5;14 -200;'702;Singapore;1874;Fibreboard;5616;Import quantity;m3;;;;5900;6200;13665;9370;13181;12634;14845;20825;18318;24992;38594;12991;14443;12700;18400;18900;21400;17000;13600;14400;13000;11400;21200;17800;20900;9000;10000;24400;60345;44746;52534;14700;17200;24900;12600;20000;28000;22400;35500;39030;63238;59158;32334;41000;29234;22024;29174;25162;21330;21456;8701;16380;7594;6344;5622;6260;4427;4918;4636;8329 -200;'702;Singapore;1874;Fibreboard;5622;Import value;1000 USD;;;;748;804;867;614;853;915;980;1407;1170;1801;2264;1173;1251;1173;1984;2219;2638;2882;2815;3323;3246;2749;2148;1876;8364;4764;6722;18084;12805;10659;17951;15971;12553;18565;9727;14051;14396;10900;10776;11844;16979;15965;10826;12814;9055;6975;8365;7362;5940;5464;6920;13468;5460;4290;4075;2836;1985;2276;2925;4277 -200;'702;Singapore;1874;Fibreboard;5916;Export quantity;m3;;;;2600;2600;4317;2885;3074;3074;3685;4085;3580;6758;5411;5727;6864;6900;10600;10400;10000;18700;7900;6700;6400;5300;5000;6600;10100;3400;4300;6000;12524;8488;27731;12800;13100;25900;18800;16000;19400;30900;30400;27929;27238;26617;29600;30000;23302;20869;16490;25438;13135;14723;14644;4626;4708;3873;2124;1296;792;1116;493;1083 -200;'702;Singapore;1874;Fibreboard;5922;Export value;1000 USD;;;;315;373;374;231;243;201;276;302;245;535;543;464;619;665;1029;1304;1318;1387;1262;1303;1079;846;924;1366;2880;2724;6205;6359;4801;2445;9896;6652;8257;15513;9546;9491;8954;8312;8961;8838;8883;8936;9958;10025;5725;5157;4539;5701;4168;4173;9740;4284;2337;1770;1044;483;279;433;292;588 -200;'702;Singapore;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3900;5500;6600;5000;7000;7600;10000;13000;13000;13000;13000;9500;3000;514;201;287;589;1330;6440;315;452;621;341;203;190;160;209;262;651 -200;'702;Singapore;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5337;4105;5711;4202;5597;5762;7344;6243;6243;6243;6243;5000;1608;389;160;206;414;664;726;332;661;508;240;148;124;101;148;208;557 -200;'702;Singapore;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5100;4700;13400;11000;7000;6200;18200;8600;8600;8600;8600;8600;4000;234;188;155;496;983;983;1474;410;300;651;141;189;55;113;79;49 -200;'702;Singapore;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1716;1426;5606;3688;2911;2667;3701;4504;4500;4500;4500;4500;2744;151;130;101;289;869;869;1763;1403;185;432;105;114;33;75;68;45 -200;'702;Singapore;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3800;4200;6300;2600;3000;9400;6400;13500;17030;41238;37158;13834;29000;19720;12823;19887;19557;10000;10000;6810;14655;5213;4751;4215;4945;3495;2842;2971;3522 -200;'702;Singapore;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5577;4400;6880;2795;2957;2940;1428;2377;3445;8580;7566;3670;9050;6510;4659;6003;5962;3533;3353;5307;11554;3638;3038;2950;2363;1637;1595;2081;2472 -200;'702;Singapore;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3800;4200;5500;3600;4000;5000;4000;12800;10329;9638;9017;12000;17000;14068;11681;16115;14942;11720;12360;11971;3611;3525;2056;757;591;401;475;294;661 -200;'702;Singapore;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4251;4518;5978;3589;3809;4795;3381;3231;3112;3157;3210;4232;6055;4348;3801;4404;4051;3110;2835;7556;2683;1865;989;549;272;180;248;193;433 -200;'702;Singapore;1650;Other fibreboard;5616;Import quantity;m3;;;;1800;1800;8400;4000;7600;6000;8000;10400;12000;17200;26800;9200;11600;8400;11000;11500;14800;10900;8900;9000;6500;5400;10600;8900;10400;3000;7000;20400;8179;2770;11156;7000;7500;12000;5000;10000;11000;6000;9000;9000;9000;9000;9000;9000;9000;9000;9000;5016;10000;5016;1576;1273;1760;1252;1204;1125;772;1867;1403;4156 -200;'702;Singapore;1650;Other fibreboard;5622;Import value;1000 USD;;;;362;405;418;178;362;365;330;533;627;1096;723;746;932;663;885;1120;1302;1803;1812;1574;1020;949;1074;938;2627;1614;5122;15649;2729;1176;3342;5057;4048;5974;2730;5497;5694;2128;2156;2156;2156;2156;2156;2156;2156;2156;2156;986;1743;1385;1281;1253;1314;1012;977;349;247;533;636;1248 -200;'702;Singapore;1650;Other fibreboard;5916;Export quantity;m3;;;;600;700;2000;1200;1600;1600;2000;2400;2000;5600;3200;5200;5600;4800;6800;7200;7100;17700;6000;5100;3800;2600;3600;4200;6000;2000;2800;4300;5295;2611;7625;3900;4200;7000;4200;5000;8200;8700;9000;9000;9000;9000;9000;9000;9000;9000;220;10000;432;1380;1199;605;883;1166;1226;516;336;528;120;373 -200;'702;Singapore;1650;Other fibreboard;5922;Export value;1000 USD;;;;143;167;144;86;91;72;110;155;119;388;214;384;443;425;629;738;788;1065;910;922;620;396;490;585;1656;760;1470;2037;2117;679;2949;685;2313;3929;2269;2771;1492;1230;1226;1226;1226;1226;1226;1226;1226;1226;34;1361;189;469;421;198;287;349;390;97;66;110;31;110 -200;'702;Singapore;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;4100;4400;5265;5370;5581;6634;6845;10425;6318;7792;11794;3791;2843;4300;7400;7400;6600;6100;4700;5400;6500;6000;10600;8900;10500;6000;3000;4000;52166;41976;41378;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -200;'702;Singapore;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;386;399;449;436;491;550;650;874;543;705;1541;427;319;510;1099;1099;1336;1079;1003;1749;2226;1800;1074;938;5737;3150;1600;2435;10076;9483;14609;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -200;'702;Singapore;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;2000;1900;2317;1685;1474;1474;1685;1685;1580;1158;2211;527;1264;2100;3800;3200;2900;1000;1900;1600;2600;2700;1400;2400;4100;1400;1500;1700;7229;5877;20106;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -200;'702;Singapore;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;172;206;230;145;152;129;166;147;126;147;329;80;176;240;400;566;530;322;352;381;459;450;434;781;1224;1964;4735;4322;2684;1766;6947;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -200;'702;Singapore;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;15000;21000;23000;33000;36000;22000;26000;30000;32000;54000;102000;126000;130000;243000;235000;199000;198000;220000;253000;253000;250000;260000;300000;300000;250000;275000;275000;275000;275000;275000;275000;275000;275000;275000;275000;275000;275000;275000;700000;700000;700000;700000;1252000;1261000;1237000;1192000;1183000;1145000;1054000;1011000;1144000;1136000;1136000;1136000 -200;'702;Singapore;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;1100;1300;9800;8800;4600;7200;5800;5300;3700;4500;7300;2300;7300;4400;5800;8200;18800;14300;46000;39700;71100;52500;63900;82100;106953;32000;127460;117300;94500;109500;517400;146100;168000;152900;85300;54348;55055;51630;43093;61687;80016;79433;113319;212000;585182;635517;645670;631546;822407;451098;1018683;802651;420402;263291.35;282305;276695 -200;'702;Singapore;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;189;253;876;738;569;1521;1343;1016;946;983;2036;800;3031;2085;1775;1904;6427;3307;9715;10974;20655;14266;14366;18203;23754;6864;25930;38186;30574;31007;160958;43579;46875;30855;24627;9880;9393;8793;19806;18244;25951;24440;47437;104126;263482;279090;309284;304047;347243;203546;543028;385684;142410;117938.39;94561;166594 -200;'702;Singapore;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;100;200;7100;11600;11300;17500;19600;11700;13700;15600;15900;27300;51100;63200;65100;123800;126600;104900;154400;123700;152000;144300;259800;278100;296566;209922;287211;239700;232400;401300;764000;386700;660500;618000;307600;519344;567537;586354;639999;668980;678009;647646;775187;818674;798531;1077827;1170745;1066510;1377490;1042230;1490015;1227667;784221;639354.97;656315;631493 -200;'702;Singapore;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;12;38;289;450;514;942;2500;1049;1050;1069;931;2010;5055;6031;6344;13066;21623;16152;25549;25195;38471;29542;50019;52993;53762;34762;74908;65533;46666;63721;175876;118414;172216;91679;56905;75429;81486;84601;103564;126189;159444;108503;198186;246313;219884;392039;449644;404620;543976;461055;918812;631269;243003;264030.7;351479;534626 -200;'702;Singapore;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;1100;1300;1800;1800;2600;4200;1600;900;1700;900;5100;1500;4800;3300;2400;3200;10200;5700;17000;13700;25100;12500;24000;24600;30417;15707;28056;29500;31200;31200;365200;73000;73000;57900;58100;4795;7378;5878;23093;14500;13200;27283;35692;118767;518512;568847;590119;580326;771467;399395;911160;769591;366512;195897.23;260409;244292 -200;'702;Singapore;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;189;253;350;287;427;1153;648;411;661;406;1674;651;2503;1806;1454;1508;5452;2353;7167;8123;15625;9780;9914;12515;14750;5160;13931;24926;23395;23395;152663;34548;34548;21367;21657;3560;4404;3806;15001;10361;11823;16387;29203;82068;250526;267814;296492;292806;336556;191965;520053;377431;133898;102659.31;88875;158751 -200;'702;Singapore;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;100;200;100;600;300;500;1300;200;600;200;100;200;500;300;100;2100;9200;5600;14400;13700;25000;10100;12900;23300;15460;10156;25211;19400;16300;16300;351000;143500;143500;86300;86300;3569;42;119;10198;2251;2589;21270;35958;49585;100621;396696;523309;461945;767129;469388;902390;775919;351193;201991.97;261647;243637 -200;'702;Singapore;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;12;38;24;104;81;119;921;117;208;90;59;127;264;203;70;792;5421;3303;7115;9267;18752;8487;10632;13733;9646;4112;14480;14637;13166;13166;131932;88131;88131;30095;30095;1566;167;157;8796;1691;3861;11898;28740;42902;63888;245634;306080;282978;416127;329053;782437;553658;170884;145588.7;249192;466788 -200;'702;Singapore;1875;Wood pulp;5610;Import quantity;t;;;;;;;;1100;1300;1800;1800;2600;4200;1600;900;1700;900;5100;1500;4800;3300;2400;3200;10200;5700;17000;16700;25300;12600;24200;24800;30208;15479;28103;33900;31000;31000;365000;72700;72700;57900;57900;4784;7490;5805;22889;20437;12073;32884;39708;118703;518337;568509;589991;580206;771918;399376;914425;827997;748093;223229.23;291258;299207 -200;'702;Singapore;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;189;253;350;287;427;1153;648;411;661;406;1674;651;2503;1806;1454;1508;5452;2353;7167;8761;15759;9871;10041;12632;14704;5090;14031;27997;23169;23169;152437;34341;34341;21367;21367;3538;4425;3643;14229;14782;8939;20303;30963;81417;250214;267244;296155;291788;336743;191796;523003;406993;307293;120613.31;113754;199363 -200;'702;Singapore;1875;Wood pulp;5910;Export quantity;t;;;;;;;;100;200;100;600;300;500;1300;200;600;200;100;200;500;300;100;2100;9200;5600;14400;13700;25000;10100;12900;23300;15460;10156;25211;19400;16300;16300;351000;143500;143500;86300;86300;4106;141;106;10141;9733;997;27016;35918;49401;100404;396328;523135;461116;767476;469386;905218;839431;735952;231148.22;314658;315288 -200;'702;Singapore;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;12;38;24;104;81;119;921;117;208;90;59;127;264;203;70;792;5421;3303;7115;9267;18752;8487;10632;13733;9646;4112;14480;14637;13166;13166;131932;88131;88131;30095;30095;1786;116;88;8292;12496;696;15919;28441;41771;62340;244420;305350;282430;415997;329048;785283;597682;419407;169404.09;300990;537081 -200;'702;Singapore;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;240;8;9;27;5582 -200;'702;Singapore;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;0;123;3;31;57;3830 -200;'702;Singapore;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;0;0;1;5560 -200;'702;Singapore;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2171;0;0;0;3810 -200;'702;Singapore;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;1000;1000;400;100;200;200;200;300;300;200;200;200;900;100;100;100;100;100;100;100;100;119;530;272;100;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;58;140;9;63;63;244;;;;;;; -200;'702;Singapore;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;98;98;69;21;58;58;94;109;103;125;147;210;415;89;87;87;87;87;87;87;87;47;164;100;102;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;90;25;10;36;36;92;;;;;;; -200;'702;Singapore;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;393;529;360;23;2;18;;;;;;; -200;'702;Singapore;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;95;359;1136;575;41;7;;;;;;; -200;'702;Singapore;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;453;1405;434;0;0;0;0;0;0;0;0;0;0;0;0;0;0;56;64;47;26;2;504;504;1147;;;;;;; -200;'702;Singapore;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;132;415;259;0;0;0;0;0;0;0;0;0;0;0;0;0;0;60;110;43;29;6;271;271;441;;;;;;; -200;'702;Singapore;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1318;1318;510;726;0;;;;;;; -200;'702;Singapore;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;825;825;619;416;0;;;;;;; -200;'702;Singapore;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;1100;1300;1800;800;1600;3800;1500;700;1500;700;4800;1200;4600;3100;2200;2300;10100;5600;16900;13600;25000;12400;23900;24500;29578;13505;27330;29300;31000;31000;365000;72700;72700;57900;57900;4784;7349;5805;22889;12413;11973;26883;35424;118458;518146;568496;589424;579638;769939;399367;911061;769311;366462;195817.23;260117;238496 -200;'702;Singapore;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;189;253;350;189;329;1084;627;353;603;312;1565;548;2378;1659;1244;1093;5363;2266;7080;8036;15538;9693;9827;12428;14483;4493;13552;24682;23169;23169;152437;34341;34341;21367;21367;3538;4323;3643;14229;8367;8859;15638;27964;81184;250058;267224;295848;291479;335707;191773;519604;377109;133820;101864.31;88034;154425 -200;'702;Singapore;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;100;200;100;600;300;500;1300;200;600;200;100;200;500;300;100;2100;9200;5600;14400;13700;25000;10100;12900;23300;15460;10156;25211;19400;16300;16300;351000;143500;143500;86300;86300;3520;12;102;10128;1208;992;21069;35917;49000;98544;394648;522602;460388;766766;469386;902388;772914;351175;201983.97;260759;238000 -200;'702;Singapore;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;12;38;24;104;81;119;921;117;208;90;59;127;264;203;70;792;5421;3303;7115;9267;18752;8487;10632;13733;9646;4112;14480;14637;13166;13166;131932;88131;88131;30095;30095;1531;12;80;8273;1133;682;11300;28433;41636;61106;242444;304156;281973;415444;329048;782432;551483;170461;145149.7;248007;462406 -200;'702;Singapore;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;400;100;200;100;100;700;4000;1100;168;3725;2723;100;1400;1400;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5;1;1;0;1;0;1;1;44;44 -200;'702;Singapore;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;172;49;45;46;46;317;1737;504;62;1112;1191;93;1029;1029;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;9;7;1;0;1;1;1;1;40;40 -200;'702;Singapore;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;915;0;700;700;0;0;0;0;0;0;0;0;0;0;0;0;0;0;247;247;7;0;0;0;0;0;0;0;0;0 -200;'702;Singapore;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;446;0;319;319;0;0;0;0;0;0;0;0;0;0;0;0;0;0;171;171;10;0;0;0;0;1;0;0;0;0 -200;'702;Singapore;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;600;400;700;100;500;1100;200;100;100;100;3900;100;1700;2400;1400;1300;4800;1700;6400;5700;13800;9700;19500;22900;28317;9421;23575;28900;29500;29500;365000;72700;72700;57900;57900;4755;5313;5802;22889;12403;11859;26784;35130;109792;517710;567960;589266;579399;769734;399221;910922;769234;366396;195751.23;260000;238403 -200;'702;Singapore;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;100;65;122;18;76;333;68;52;34;18;1195;62;597;1183;676;529;2506;679;2439;3178;8011;7638;7826;11576;13808;3174;11665;24221;22070;22070;152437;34341;34341;21367;21367;3491;3261;3636;14229;8348;8639;15427;27534;72992;249711;266747;295590;291197;335461;191440;519356;376953;133677;101681.31;87803;154249 -200;'702;Singapore;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;1100;8900;5000;13600;13400;24900;9600;12400;22800;14960;9965;23500;19100;15600;15600;351000;143500;143500;86300;86300;3520;12;102;10128;1204;864;21059;35892;48920;98200;394330;522542;460327;766749;469362;902385;772910;351171;201979.97;260755;238000 -200;'702;Singapore;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;391;5097;3041;6759;9040;18688;8252;10397;13498;9411;3999;13634;14251;12847;12847;131932;88131;88131;30095;30095;1531;12;80;8273;1119;623;11231;28318;41421;60701;241990;303946;281801;415366;328970;782419;551464;170443;145131.7;247989;462406 -200;'702;Singapore;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;146;138;77;65;65;73;49 -200;'702;Singapore;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;333;247;155;142;182;191;136 -200;'702;Singapore;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;3;4;4;4;4;0 -200;'702;Singapore;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;13;18;18;18;18;0 -200;'702;Singapore;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;580;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;1;73;306;306;0;0;0;;;;;;; -200;'702;Singapore;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;467;0;0;0;0;0;0;0;0;0;0;0;0;0;0;9;3;150;111;111;0;0;0;;;;;;; -200;'702;Singapore;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;550;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -200;'702;Singapore;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;359;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -200;'702;Singapore;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;500;900;1100;700;1100;2700;1300;600;1400;600;900;1100;2900;700;800;1000;4900;3800;10300;7800;11100;2000;400;500;1093;359;452;300;100;100;0;0;0;0;0;29;2036;3;0;10;114;97;293;8593;130;230;153;238;204;;;;;;; -200;'702;Singapore;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;89;188;228;171;253;751;559;301;569;294;370;486;1781;476;568;564;2685;1538;4596;4812;7481;1738;264;348;613;207;229;368;70;70;0;0;0;0;0;47;1062;7;0;19;220;202;427;8042;236;366;249;275;245;;;;;;; -200;'702;Singapore;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;100;200;100;600;300;500;1300;200;600;200;100;200;500;300;100;1000;300;600;800;300;100;500;500;500;500;191;246;300;0;0;0;0;0;0;0;0;0;0;0;4;128;10;25;80;97;71;53;61;17;;;;;;; -200;'702;Singapore;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;12;38;24;104;81;119;921;117;208;90;59;127;264;203;70;401;324;262;356;227;64;235;235;235;235;113;41;386;0;0;0;0;0;0;0;0;0;0;0;14;59;69;115;215;234;283;200;172;78;;;;;;; -200;'702;Singapore;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;200;100;200;200;58;39;67;4500;0;0;0;0;0;0;0;0;141;0;0;8024;100;5945;4220;140;25;2;0;1;588;6;3364;58446;381623;27403;31114;55129 -200;'702;Singapore;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;638;134;91;127;117;42;18;120;3213;0;0;0;0;0;0;0;0;102;0;0;6415;80;4605;2889;100;102;4;0;2;503;10;3399;29761;173470;18718;25663;41108 -200;'702;Singapore;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;586;129;4;13;8525;5;5947;1;8;13;2;0;0;692;0;2830;63517;384777;29164.25;53898;71728 -200;'702;Singapore;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;255;104;8;19;11363;14;4619;8;40;50;15;0;0;546;0;2851;44028;248946;24254.4;52983;70865 -200;'702;Singapore;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;267;267;20;100;200;200;200;300;300;0;200;11;29;73;204;2087;1227;344;204;204;200;340;128;121;137;25;99;40;42;71;265;214 -200;'702;Singapore;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88;88;20;142;226;226;226;207;207;0;290;22;81;163;772;1994;2964;689;1129;751;414;574;337;1020;316;179;449;199;75;764;784;496 -200;'702;Singapore;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;49;30;17;70;1043;1597;201;41;192;230;370;174;829;345;2;2;5;18;8;887;77 -200;'702;Singapore;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;35;155;77;523;558;3179;598;307;1171;1598;1229;730;548;676;5;5;4;423;439;1185;572 -200;'702;Singapore;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;6035;0;662;11;52;57;292;77;110;380;6131;734;1381;1463;731;656;650;17397.74;16817;827 -200;'702;Singapore;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;1383;0;159;22;46;81;80;86;126;642;2605;789;1881;781;669;527;644;2353.17;2461;1619 -200;'702;Singapore;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;54;20;4;1;18;24;181;16;18;60;31;8;0;130;15942;284 -200;'702;Singapore;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;24;40;13;1;94;77;893;23;19;40;85;21;3;758;1007;68 -200;'702;Singapore;1669;Recovered paper;5510;Production;t;;;;;;;;;;15000;21000;23000;33000;36000;22000;26000;30000;32000;54000;102000;126000;130000;243000;235000;199000;198000;220000;253000;253000;250000;260000;300000;300000;250000;275000;275000;275000;275000;275000;275000;275000;275000;275000;275000;275000;275000;275000;700000;700000;700000;700000;1252000;1261000;1237000;1192000;1183000;1145000;1054000;1011000;1144000;1136000;1136000;1136000 -200;'702;Singapore;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;8000;7000;2000;3000;4200;4400;2000;3600;2200;800;2500;1100;3400;5000;8600;8600;29000;26000;46000;40000;39900;57500;76536;16293;99404;87800;63300;78300;152200;73100;95000;95000;27200;49553;47677;45752;20000;47187;66816;52150;77627;93233;66670;66670;55551;51220;50940;51703;107523;33060;53890;67394.13;21896;32403 -200;'702;Singapore;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;526;451;142;368;695;605;285;577;362;149;528;279;321;396;975;954;2548;2851;5030;4486;4452;5688;9004;1704;11999;13260;7179;7612;8295;9031;12327;9488;2970;6320;4989;4987;4805;7883;14128;8053;18234;22058;12956;11276;12792;11241;10687;11581;22975;8253;8512;15279.07;5686;7843 -200;'702;Singapore;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;7000;11000;11000;17000;18300;11500;13100;15400;15800;27100;50600;62900;65000;121700;117400;99300;140000;110000;127000;134200;246900;254800;281106;199766;262000;220300;216100;385000;413000;243200;517000;531700;221300;515775;567495;586235;629801;666729;675420;626376;739229;769089;697910;681131;647436;604565;610361;572842;587625;451748;433028;437363;394668;387856 -200;'702;Singapore;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;265;346;433;823;1579;932;842;979;872;1883;4791;5828;6274;12274;16202;12849;18434;15928;19719;21055;39387;39260;44116;30650;60428;50896;33500;50555;43944;30283;84085;61584;26810;73863;81319;84444;94768;124498;155583;96605;169446;203411;155996;146405;143564;121642;127849;132002;136375;77611;72119;118442;102287;67838 -200;'702;Singapore;1876;Paper and paperboard;5510;Production;t;;;;;;;;;1700;1800;5000;5000;5500;5500;5500;5500;5500;5500;5500;43000;50000;50000;10000;10000;10000;10000;10000;10000;10000;80000;85000;85000;96000;97000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000 -200;'702;Singapore;1876;Paper and paperboard;5610;Import quantity;t;;;;48500;57400;74800;76700;109600;98500;122000;138200;129900;191900;177300;114300;164900;173800;188000;259700;273300;297100;282100;354200;368000;296800;356000;423300;521700;526000;664500;707300;710833;573733;910002;1008100;891200;749900;716300;895000;893300;708000;698900;757260;971502;794350;867532;879036;906806;780762;913903;1390354;1295642;1313889;1270220;1214403;1224010;1666967;1278105;1387323;1346945;1211601.72;906749;429541 -200;'702;Singapore;1876;Paper and paperboard;5622;Import value;1000 USD;;;;10572;12158;15176;16467;20463;21438;28740;33153;33861;62713;96183;55438;71612;78797;78575;133456;178186;195298;172671;199540;220084;184386;218952;266618;404116;369967;530335;549542;528038;400645;627687;1077880;858084;607712;505864;587804;664741;501634;350876;505809;561374;594032;648242;673566;776979;622977;729471;1183584;1097893;1049714;1072181;889276;896703;1098813;1004612;944971;853278;922869.61;735271;461923 -200;'702;Singapore;1876;Paper and paperboard;5910;Export quantity;t;;;;5800;8200;12200;14400;16100;19300;15500;24800;27700;52500;41500;30200;38500;45900;47600;40800;48700;51800;48700;58600;82700;82800;64100;89700;158000;179800;220500;232500;203679;154595;322036;259800;210400;210400;220500;226301;212600;202700;162500;69754;90149;84520;81696;89745;179928;220717;225586;229193;652398;699449;842210;751165;813105;1185000;940687;1007102;1054779;968378.35;601923;533738 -200;'702;Singapore;1876;Paper and paperboard;5922;Export value;1000 USD;;;;1454;1871;2757;3124;3083;3733;3260;5006;5935;9127;26995;11682;14176;15906;16782;18620;29056;36574;36405;44109;77562;82724;39112;55083;168544;179781;229846;220618;193022;97898;262664;364103;310824;310824;222412;261166;259883;239504;238900;70808;114883;127921;114267;128336;363962;562550;692593;736042;1085689;1139488;1184151;1121632;1076378;1282702;1213806;1186491;1068613;1148129.45;917166;833283 -200;'702;Singapore;2042;Graphic papers;5610;Import quantity;t;;;;26000;30000;34000;34600;41000;39200;48100;65300;53600;79300;79700;59200;78800;80600;104500;117700;131100;170600;159600;198100;231500;191000;187400;219100;232800;193800;299900;321000;338570;340077;475047;285200;272600;421900;466300;577200;563500;449500;242500;494414;499127;479320;516734;533954;583638;471830;599884;1082044;1104602;1053247;989254;955695;947128;1351011;959898;1064082;1068075;871447;476696;179347 -200;'702;Singapore;2042;Graphic papers;5622;Import value;1000 USD;;;;5660;6125;7093;7428;8585;8727;10923;15593;14008;26053;41669;28212;35356;37607;51618;68729;92728;119797;107930;123143;144358;127516;117993;160253;205261;150498;256410;276729;261176;233706;351685;295740;252815;358766;332282;392346;447510;338334;161266;351464;378775;391784;422090;429728;522510;390822;473239;925543;916193;831637;782359;691589;674168;834026;704613;664740;615889;586085;383951;184116 -200;'702;Singapore;2042;Graphic papers;5910;Export quantity;t;;;;2600;3200;3600;4800;4400;5400;4200;7500;7800;36200;13700;11700;12300;15000;16000;9200;22200;22200;21100;30500;36200;37200;28300;27600;35300;47400;38900;35800;51928;11219;89803;51100;42900;42900;37400;95101;79200;96200;13500;32843;35289;28648;35055;43235;71669;59960;54563;55025;483095;539627;624773;549902;607425;995190;745419;790010;872691;779350;438860;378845 -200;'702;Singapore;2042;Graphic papers;5922;Export value;1000 USD;;;;690;779;847;1093;996;1321;1081;1873;2227;4840;7784;5387;5273;6232;7496;9334;16932;20204;16606;23575;29987;29442;20525;22515;31337;37930;36282;37262;46141;8487;69086;60816;43260;43260;28740;64028;63790;66840;14449;31983;33402;33421;40156;56239;93643;72185;70030;74455;458892;476717;513319;454431;474335;769065;685649;672842;624949;659076;455239;350679 -200;'702;Singapore;1671;Newsprint;5610;Import quantity;t;;;;11000;12500;14800;14400;16400;14900;24500;32800;24900;32800;35800;30300;31000;32500;42400;53200;60000;82900;54900;78300;99600;69500;78800;91000;96500;85100;106600;122000;114881;120950;157825;156600;168200;170000;147200;171300;198000;144400;135100;138151;146481;136383;157244;138019;168735;128850;144090;146199;118240;130210;88954;116858;74027;75223;76126;55399;41074;18637;28283;22107 -200;'702;Singapore;1671;Newsprint;5622;Import value;1000 USD;;;;1989;1933;2239;2170;2344;2183;3773;5780;4452;6874;13566;11486;12055;12071;15798;21149;29606;45121;28584;35256;43800;31180;36000;47647;66337;55771;64364;78501;59739;53104;78371;133415;135055;84043;79355;81782;112684;91395;85437;58173;74658;78709;95142;81597;122479;72386;85975;101200;75338;78486;44165;56127;37687;38743;48114;32192;18262;9224;21657;16003 -200;'702;Singapore;1671;Newsprint;5910;Export quantity;t;;;;700;800;900;800;800;1200;900;2300;2100;4900;2100;2100;2100;3000;3600;3900;4300;4200;5300;9800;13100;12600;12100;10300;10900;6500;8900;6800;10824;205;9975;12300;10500;10500;6400;7000;7800;18600;3100;2376;9452;3000;3466;11881;9698;7884;3771;5430;13030;13250;18816;10227;5570;14907;37575;10414;9694;2166;2653;2754 -200;'702;Singapore;1671;Newsprint;5922;Export value;1000 USD;;;;147;129;141;135;130;202;144;346;410;1176;996;859;671;946;1267;1757;2187;2599;2363;4488;6313;6038;5467;5825;7231;4349;5695;4787;6330;146;4345;9788;6590;6590;2869;3095;4430;10301;1047;1175;4833;1785;2296;6409;7295;5468;1929;3700;8847;8036;11948;6440;3081;9589;26484;8095;4733;1360;2775;2316 -200;'702;Singapore;1674;Printing and writing papers;5610;Import quantity;t;;;;15000;17500;19200;20200;24600;24300;23600;32500;28700;46500;43900;28900;47800;48100;62100;64500;71100;87700;104700;119800;131900;121500;108600;128100;136300;108700;193300;199000;223689;219127;317222;128600;104400;251900;319100;405900;365500;305100;107400;356263;352646;342937;359490;395935;414903;342980;455794;935845;986362;923037;900300;838837;873101;1275788;883772;1008683;1027001;852810;448413;157240 -200;'702;Singapore;1674;Printing and writing papers;5622;Import value;1000 USD;;;;3671;4192;4854;5258;6241;6544;7150;9813;9556;19179;28103;16726;23301;25536;35820;47580;63122;74676;79346;87887;100558;96336;81993;112606;138924;94727;192046;198228;201437;180602;273314;162325;117760;274723;252927;310564;334826;246939;75829;293291;304117;313075;326948;348131;400031;318436;387264;824343;840855;753151;738194;635462;636481;795283;656499;632548;597627;576861;362294;168113 -200;'702;Singapore;1674;Printing and writing papers;5910;Export quantity;t;;;;1900;2400;2700;4000;3600;4200;3300;5200;5700;31300;11600;9600;10200;12000;12400;5300;17900;18000;15800;20700;23100;24600;16200;17300;24400;40900;30000;29000;41104;11014;79828;38800;32400;32400;31000;88101;71400;77600;10400;30467;25837;25648;31589;31354;61971;52076;50792;49595;470065;526377;605957;539675;601855;980283;707844;779596;862997;777184;436207;376091 -200;'702;Singapore;1674;Printing and writing papers;5922;Export value;1000 USD;;;;543;650;706;958;866;1119;937;1527;1817;3664;6788;4528;4602;5286;6229;7577;14745;17605;14243;19087;23674;23404;15058;16690;24106;33581;30587;32475;39811;8341;64741;51028;36670;36670;25871;60933;59360;56539;13402;30808;28569;31636;37860;49830;86348;66717;68101;70755;450045;468681;501371;447991;471254;759476;659165;664747;620216;657716;452464;348363 -200;'702;Singapore;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4016;5108;4600;8000;25000;13912;19339;21436;16800;20540;16344;20044;13800;10432;5500;5210;4214;4039;1695;3676;12;1252;1556;5494;7461;2526 -200;'702;Singapore;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2935;3603;3885;5902;17884;13137;16644;20051;14955;17036;16650;15243;13524;13524;5360;4395;4298;3549;1912;4347;12;1782;1743;5105;7065;2992 -200;'702;Singapore;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;304;864;700;800;1400;993;1304;1204;1634;1400;2314;4311;7518;6865;160;230;2241;4820;2818;1949;1949;1851;5468;2908;1227;2537 -200;'702;Singapore;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;294;692;674;646;2433;1230;1999;1631;2276;2671;4693;5296;8489;9646;175;308;3187;4341;3051;2687;2687;1999;4285;2682;1767;2601 -200;'702;Singapore;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;124148;157918;142200;96500;12400;104091;86333;90814;109538;129765;144005;89322;184694;654830;719500;644100;630465;583858;653354;1110340;776901;917050;926968;763102;388073;87903 -200;'702;Singapore;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104436;128235;138253;81925;9917;77150;70095;80188;94845;96366;115533;80448;108815;520945;553094;469831;460317;405432;441352;649549;549137;537603;497931;484879;296963;89889 -200;'702;Singapore;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18930;53798;43600;55800;6500;11168;8189;11772;14064;15471;43578;33615;29124;29124;462650;516530;586208;525982;580416;971204;696829;768220;850238;764721;428655;367938 -200;'702;Singapore;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14818;34901;34000;38787;5522;9898;7848;12343;14887;21410;47956;33574;35302;35302;427032;447776;482585;430677;450227;744266;642342;649215;606010;642776;441012;338270 -200;'702;Singapore;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;190936;242874;218700;200600;70000;238260;246974;230687;233152;245630;254554;233614;257300;270583;261362;273727;265621;250940;218052;161772;106859;90381;98477;84214;52879;66811 -200;'702;Singapore;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;145556;178726;192688;159112;48028;203004;217378;212836;217148;234729;267848;222745;264925;289874;282401;278925;273579;226481;193217;141387;107350;93163;97953;86877;58266;75232 -200;'702;Singapore;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11766;33439;27100;21000;2500;18306;16344;12672;15891;14483;16079;14150;14150;13606;7255;9617;17508;8873;18621;7130;9066;9525;7291;9555;6325;5616 -200;'702;Singapore;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10759;25340;24686;17106;5447;19680;18722;17662;20697;25749;33699;27847;24310;25807;22838;20597;15599;12973;17976;12523;14136;13533;9921;12258;9685;7492 -200;'702;Singapore;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;1700;1800;5000;5000;5500;5500;5500;5500;5500;5500;5500;43000;50000;50000;10000;10000;10000;10000;10000;10000;10000;80000;85000;85000;96000;97000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000 -200;'702;Singapore;1675;Other paper and paperboard;5610;Import quantity;t;;;;22500;27400;40800;42100;68600;59300;73900;72900;76300;112600;97600;55100;86100;93200;83500;142000;142200;126500;122500;156100;136500;105800;168600;204200;288900;332200;364600;386300;372263;233656;434955;722900;618600;328000;250000;317800;329800;258500;456400;262846;472375;315030;350798;345082;323168;308932;314019;308310;191040;260642;280966;258708;276882;315956;318207;323241;278870;340154.72;430053;250194 -200;'702;Singapore;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;4912;6033;8083;9039;11878;12711;17817;17560;19853;36660;54514;27226;36256;41190;26957;64727;85458;75501;64741;76397;75726;56870;100959;106365;198855;219469;273925;272813;266862;166939;276002;782140;605269;248946;173582;195458;217231;163300;189610;154345;182599;202248;226152;243838;254469;232155;256232;258041;181700;218077;289822;197687;222535;264787;299999;280231;237389;336784.61;351320;277807 -200;'702;Singapore;1675;Other paper and paperboard;5910;Export quantity;t;;;;3200;5000;8600;9600;11700;13900;11300;17300;19900;16300;27800;18500;26200;30900;31600;31600;26500;29600;27600;28100;46500;45600;35800;62100;122700;132400;181600;196700;151751;143376;232233;208700;167500;167500;183100;131200;133400;106500;149000;36911;54860;55872;46641;46510;108259;160757;171023;174168;169303;159822;217437;201263;205680;189810;195268;217092;182088;189028.35;163063;154893 -200;'702;Singapore;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;764;1092;1910;2031;2087;2412;2179;3133;3708;4287;19211;6295;8903;9674;9286;9286;12124;16370;19799;20534;47575;53282;18587;32568;137207;141851;193564;183356;146881;89411;193578;303287;267564;267564;193672;197138;196093;172664;224451;38825;81481;94500;74111;72097;270319;490365;622563;661587;626797;662771;670832;667201;602043;513637;528157;513649;443664;489053.45;461927;482604 -200;'702;Singapore;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;10800;800;1300;700;700;2300;2500;400;500;1000;1200;1800;3600;3400;3000;3300;3900;3700;8000;9000;9100;3000;9000;10000;2000;2000;2000;2500;3500;10000;10000;6300;6100;7300;3800;7320;5611;4584;16289;7330;5589;4774;4986;5942;7600;8060;8504;8174;7367;10799;6972;7171;6489;2466;3562;3871 -200;'702;Singapore;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;756;626;1045;582;610;1603;3003;432;486;880;987;1627;3916;3797;3470;3586;3727;3310;8000;9100;10955;4468;10000;10000;3418;3418;3418;5181;8282;12000;12000;8316;7821;7752;4288;8159;7251;6560;10461;11301;10089;8770;9126;11624;14573;15047;15889;15541;13453;13491;12369;12141;11438;5295;8271;7509 -200;'702;Singapore;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;100;200;200;100;200;200;200;100;100;100;100;1000;800;700;1200;1400;600;1000;1500;1600;400;1000;1000;0;0;0;700;900;900;1000;2900;1700;900;1200;1405;1418;796;1011;1451;825;876;796;602;660;920;1587;3809;2054;2074;4005;749;1841;551;1181;352 -200;'702;Singapore;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;45;60;63;61;103;175;175;38;72;96;96;980;915;840;1370;1433;546;900;1400;1400;610;1200;1200;0;0;0;932;2275;2275;1300;4109;2449;1239;1576;2066;2580;1827;2425;3755;2011;2418;2866;1630;1760;2626;3171;6008;2440;2766;5130;1880;2492;763;1286;1012 -200;'702;Singapore;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;180000;280000;285300;217900;430300;251393;463263;305898;326649;332751;313667;299734;304215;296781;176860;243952;238645;241422;245890;293689;299377;303545;262245;326070.72;416680;240189 -200;'702;Singapore;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120582;144184;160576;113170;145850;136534;165096;185433;201499;218995;232475;210009;232387;228469;143895;182031;175443;172257;167006;228323;262947;244777;204576;307958.61;324594;254485 -200;'702;Singapore;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102100;43700;55700;27200;22300;32268;49505;51716;42770;43114;98416;156630;166713;168183;163013;154482;200362;194036;200018;183345;187244;213625;177451;185731.35;159595;151816 -200;'702;Singapore;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42372;53353;63638;27455;22177;28269;68437;83767;62677;59876;253994;473822;604650;643181;600575;639307;633344;644498;582301;491193;503171;498526;427102;473867.83;445287;463473 -200;'702;Singapore;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;26200;30500;50000;46700;46900;67100;62500;20700;37300;43100;52300;100000;103300;101200;96000;119200;97700;75100;150000;180000;185900;246200;250000;260000;251863;121656;200000;480200;401000;208000;;;;;;;;;;;;;;;;;;;;;;;;;; -200;'702;Singapore;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;5276;5934;10325;9458;9868;18012;30358;8177;11974;13687;13552;35000;48930;51972;42551;42610;41880;28136;80000;90000;99000;135564;169000;169000;170008;73521;170000;441523;312049;160000;;;;;;;;;;;;;;;;;;;;;;;;;; -200;'702;Singapore;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;6200;8700;7000;9800;8900;7000;15400;7300;9400;13100;12900;12900;20500;20400;16800;16500;21000;18500;30000;40000;49800;79300;100000;110000;78851;73376;100000;131000;93100;93100;;;;;;;;;;;;;;;;;;;;;;;;;; -200;'702;Singapore;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;1085;1441;1263;1836;1743;1686;14912;2369;2938;3490;2853;2853;9144;10275;14332;7103;9100;7761;15000;20000;21000;40720;80000;80000;58191;19411;80000;101953;67175;67175;;;;;;;;;;;;;;;;;;;;;;;;;; -200;'702;Singapore;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;114511;178128;181500;137500;336400;144304;157626;154179;169812;160837;148961;130735;134275;141582;44350;113309;117714;115823;132019;125392;114373;95819;107852;154183.72;134185;120782 -200;'702;Singapore;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56913;68053;75790;47015;81413;51835;61050;62373;61690;73142;80396;53428;70182;79181;29461;61116;60310;56108;59034;61150;64246;51015;47134;92631.61;79595;55271 -200;'702;Singapore;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38677;16554;21100;8300;9800;8139;7947;8372;7029;8377;9564;11578;12383;13881;4650;5020;5658;6747;12247;4270;3495;3779;3350;10605.35;9924;10751 -200;'702;Singapore;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6189;7793;9295;3576;3601;4991;4358;5203;4841;5671;7315;7044;7804;9676;3056;3407;4748;4826;6837;2670;2812;2949;2119;7600.83;6971;5852 -200;'702;Singapore;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20189;31406;32000;29200;33200;39172;42878;62765;59922;65981;57549;54526;54994;55871;27310;33044;39113;42901;46614;99734;117728;123721;91349;107250;98305;76915 -200;'702;Singapore;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23829;28494;31733;30936;25590;39947;47659;65164;76616;73826;74190;85112;78273;68025;42194;53968;50225;50730;55650;110470;135230;127637;105714;146201;169718;138084 -200;'702;Singapore;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32811;14044;17900;9300;5200;6524;17056;19161;11610;12234;62235;121663;139782;135493;140443;136142;175681;174569;169230;164757;171411;179300;158621;154614;136312;134936 -200;'702;Singapore;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29187;36751;43836;15964;11204;9384;45695;57089;34962;31577;217696;441308;565243;600443;568529;602795;591983;601454;540844;459328;472565;469592;403330;444320;419686;439302 -200;'702;Singapore;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36341;56530;57600;42000;52000;61713;255584;82675;90712;96396;93824;102481;102933;90393;93390;86600;77632;77632;58990;61263;60003;77893;58805;59289;178872;38087 -200;'702;Singapore;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34774;41580;46307;30553;33335;41914;52517;55151;60297;67149;69270;63607;75748;74058;66233;60240;60951;60951;45507;50659;59437;62861;48850;64965;71554;57912 -200;'702;Singapore;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17964;7689;9800;7300;6600;14753;22337;22172;21235;19394;23398;21177;12025;16767;15350;10770;15546;11325;15243;10196;10255;29014;14305;20016;13000;5342 -200;'702;Singapore;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5059;6370;7598;6650;6621;11791;16662;19545;19837;19454;24107;22599;28614;30277;25912;27984;30092;31431;29692;25358;25470;24663;20525;21223;18050;17052 -200;'702;Singapore;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8959;13936;14200;9200;8700;6204;7175;6279;6203;9537;13333;11992;12013;8935;11810;10999;4186;5066;8267;7300;7273;6112;4239;5348;5318;4405 -200;'702;Singapore;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5066;6057;6746;4666;5512;2838;3870;2745;2896;4878;8619;7862;8184;7205;6007;6707;3957;4468;6815;6044;4034;3264;2878;4161;3727;3218 -200;'702;Singapore;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12648;5413;6900;2300;700;2852;2165;2011;2896;3109;3219;2212;2523;2042;2570;2550;3477;1395;3298;4122;2083;1532;1175;496;359;787 -200;'702;Singapore;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1937;2439;2909;1265;751;2103;1722;1930;3037;3174;4876;2871;2989;2785;3078;5121;6521;6787;4928;3837;2324;1322;1128;724;580;1267 -200;'702;Singapore;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;80000;85000;85000;96000;97000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000 -200;'702;Singapore;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;31600;28000;22600;25500;28700;43200;32600;34000;48300;49100;30000;40200;35300;21900;23500;33600;34900;27000;10600;15200;93900;83000;105600;116300;118400;110000;232955;240200;214100;110000;60000;31500;38400;33300;22300;4133;3501;4548;7860;5001;3912;4424;4818;5587;6580;8630;33817;9112;23625;11468;11858;12525;10136;11618;9811;6134 -200;'702;Singapore;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;5846;6151;6447;7520;9375;17045;21153;18617;23796;26623;12418;28100;32612;19732;18720;30201;30119;25424;12959;7265;88900;79437;94925;93813;93436;90000;102584;335436;284938;76946;41000;42958;48834;42378;39472;9652;10252;10255;14192;13542;11905;13376;14719;17948;23232;20999;98490;9889;42076;22973;24683;23313;21375;23531;18455;15813 -200;'702;Singapore;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;5500;5100;4100;7300;10900;9100;12200;11000;16700;17700;18600;18600;5000;8400;10100;10400;24100;26500;4800;20600;71300;52700;80600;85700;72900;70000;132233;77000;73500;73500;80000;84600;76000;78400;125500;3238;3937;3360;2860;1945;9018;3251;3514;5383;5630;4420;15488;3418;3608;4391;4019;2718;2796;2746;2287;2725 -200;'702;Singapore;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;1002;926;856;1234;1904;2498;4124;3751;5927;6112;6337;6337;2000;5180;4627;12061;37042;44975;2687;11168;114807;100521;112364;102156;88690;70000;113578;200402;198114;198114;150000;139676;130006;143970;200698;8490;10464;8906;9009;8466;14314;14125;15047;16776;24462;20838;34317;16695;17302;19678;19856;13243;14070;14422.62;15354;18119 -200;'702;Singapore;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;446260;511135;478768;383944;515194;632150;673350 -200;'702;Singapore;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70385;92529;101427;67080;78626;79325;111242 -200;'702;Singapore;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20955;20979;18655;13294;15677;20184;21614 -200;'702;Singapore;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1954;2292;3008;3487;3172;3502;5972 -200;'702;Singapore;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1223;1284;961;1760;902;1668;865 -200;'702;Singapore;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;116;53;1048;24;44;16 -200;'702;Singapore;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19732;19695;17694;11534;14775;18516;20749 -200;'702;Singapore;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1937;2176;2955;2439;3148;3458;5956 -200;'702;Singapore;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80100;90243;89479;85972;105563;119639;95832 -200;'702;Singapore;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8618;12796;20914;11819;12022;10978;11373 -200;'702;Singapore;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22407;27842;28071;18680;27005;36300;39807 -200;'702;Singapore;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6944;5749;5463;3152;3008;4642;7999 -200;'702;Singapore;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37033;51496;48917;32870;50007;79104;93452 -200;'702;Singapore;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1572;3745;9356;3766;3342;3897;5614 -200;'702;Singapore;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;607;1211 -200;'702;Singapore;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1154;2410 -200;'702;Singapore;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104;23 -200;'702;Singapore;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;129;45 -200;'702;Singapore;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;315 -200;'702;Singapore;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;257;344 -200;'702;Singapore;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;162;45 -200;'702;Singapore;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;222;55 -200;'702;Singapore;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;56 -200;'702;Singapore;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;83 -200;'702;Singapore;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;276491;296864;276584;220466;296241;343986;397320 -200;'702;Singapore;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48581;57894;55308;40187;50578;47293;72021 -200;'702;Singapore;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;674;1539;387;621;1153;2095 -200;'702;Singapore;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;420;56;7;47;47;847 -200;'702;Singapore;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9274;23037;15523;12275;20080;31784;23230 -200;'702;Singapore;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2716;9633;7322;4662;6457;8966;7416 -200;'702;Singapore;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;604230;668542;658938;638559;666707;725032;659894 -200;'702;Singapore;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;361736;354838;321232;311631;348053;342430;321479 -200;'702;Singapore;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1177;1181;1248;1440;1898;1513;1528 -200;'702;Singapore;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2266;2646;1487;1755;2055;2577;1322 -200;'702;Singapore;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52873;60257;54515;43389;52495;52218;43181 -200;'702;Singapore;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65613;64120;50748;40430;48749;50408;42187 -200;'702;Singapore;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119193;129540;127884;177946;123638;139643;150156 -200;'702;Singapore;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21975;13545;8378;33187;11875;9609;17851 -200;'702;Singapore;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;186941;209708;209232;201077;234401;259538;229931 -200;'702;Singapore;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101286;126972;112522;103293;121534;129351;131699 -200;'702;Singapore;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;244046;267856;266059;214707;254275;272120;235098 -200;'702;Singapore;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;170596;147555;148097;132966;163840;150485;128420 -199;'703;Slovakia;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1660854.22;1862300;1779252;1779914;2365006;2573972;2105776 -199;'703;Slovakia;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2640459.9;2956323;2716880;2567296;3348106;3662143;3141483 -199;'703;Slovakia;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32681;93184;141491;151373;236781;238204;237553;293560;295876;331988;486699;540549;570250;697363;1045279;1062662;816219;1172540;1071270;1125260;949861;990498;821498;819054;866056.96;985102;912014;849029;1225767;1371848;969468 -199;'703;Slovakia;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110833;318580;374888;320250;379137;446659;434206;511018;501824;646723;750490;897256;1084429;1231943;1674929;1664238;1328480;2029215;1445872;1512825;1300708;1419234;1260019;1305907;1356618.51;1572406;1449243;1372935;1960331;2164490;1706828 -199;'703;Slovakia;1861;Roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5249000;5318000;5323000;5460000;4945000;5519000;5795000;6163000;5787900;5782000;6355000;7240000;9302000;7868509;8131486;9268556;9086991;9599068;9212907;8201674;8062587;9167980;8994604;9266868;9361492;9602854;8956874;7447859;7664756;7435403;7101058 -199;'703;Slovakia;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5054;48900;86700;66400;287200;138400;127000;129000;161200;134000;162000;246000;104531;404518;413000;807703;565387;650237;672765;800050;738774;899400;544228;576249;926679;1394638;1620937;1999922;2453744;2840711;1335661 -199;'703;Slovakia;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;332;5142;9234;3876;6645;3722;3329;3244;3983;3160;5017;7782;3901;23839;33290;45090;30039;28514;54764;112564;111580;63969;24923;29924;48017.28;77881;88565;82079;210469;258753;120271 -199;'703;Slovakia;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;322051;1110000;919000;756000;1079000;735000;1232000;1612000;1828000;1286000;1189000;1210000;1815000;1233000;1533000;2289330;2685692;2563703;2683596;2395624;3121855;3391500;2642817;2448955;2015623;2099580;1750092;2289871;2063248;1887469;1838838 -199;'703;Slovakia;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22151;36262;34838;36370;52832;32186;53373;56842;59812;49863;59890;59815;96011;87143;115985;154533;155856;248500;221051;261115;208423;217477;160735;145270;144017.74;169180;159415;178897;211977;187476;181799 -199;'703;Slovakia;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2990000;3045000;3237000;3431000;3687000;3213000;3142000;3211000;2755500;2884000;3375000;4036000;6225000;4785427;5025139;6224543;6275665;6382675;5448844;4426555;4053040;5149190;4662259;5193637;5518300;5789391;5356353;4034920;3900635;3583984;3717642 -199;'703;Slovakia;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;214685;457508;672555;1481936;1700356;1835967;628503 -199;'703;Slovakia;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18191.53;27746;36971;57364;169119;175727;49971 -199;'703;Slovakia;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1355337;1504363;1391799;1803898;1455771;1281760;1197700 -199;'703;Slovakia;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89662.72;106765;113180;128187;137190;110430;96068 -199;'703;Slovakia;1863;Roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2259000;2273000;2086000;2029000;1258000;2306000;2653000;2952000;3032400;2898000;2980000;3204000;3077000;3083082;3106347;3044013;2811326;3216393;3764063;3775119;4009547;4018790;4332345;4073231;3843192;3813463;3600521;3412939;3764121;3851419;3383416 -199;'703;Slovakia;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;711994;937130;948382;517986;753388;1004744;707158 -199;'703;Slovakia;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29825.75;50135;51594;24715;41350;83026;70300 -199;'703;Slovakia;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;660286;595217;358293;485973;607477;605709;641138 -199;'703;Slovakia;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54355.01;62415;46235;50710;74787;77046;85731 -199;'703;Slovakia;1864;Wood fuel;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;490000;628000;436000;505000;339000;249000;261000;277000;268000;259000;304000;304000;297000;307074;416622;554515;586098;509893;642995;587073;689790;560060;559794;515173;591109;523620;599630;523730;495054;608535;529727 -199;'703;Slovakia;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;0;0;0;4300;0;0;0;200;0;2000;0;5000;10000;12000;58080;59127;68021;138467;116330;125845;128540;37319;37494;107126;182984;86634;75755;107184;82766;74231 -199;'703;Slovakia;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;368;1;3;0;3;0;50;0;126;997;854;3261;2582;2354;10336;7159;6781;5210;3368;3737;5561.14;11764;6657;3264;6977;9002;7325 -199;'703;Slovakia;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38331;200000;160000;83000;230000;21200;39000;62000;278000;99000;155000;68000;124000;15000;76000;97238;147405;129790;150712;310460;459650;459140;284609;291722;60340;58074;38893;71284;47754;24245;88152 -199;'703;Slovakia;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1120;4057;3030;1504;3158;811;1552;2160;2852;4138;7927;4109;164;1498;5692;6993;6579;5878;8430;32098;18903;18354;12486;12478;4796.73;5404;4110;5585;3670;2516;8917 -199;'703;Slovakia;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200000;338000;240000;268000;263000;149000;146000;149000;123000;134000;161000;155000;148000;142461;230586;320847;351537;293049;324798;292329;356844;259040;237744;251094;317812;262126;328698;258993;222634;258997;241465 -199;'703;Slovakia;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;305;69;2636;8198;6533;761;228 -199;'703;Slovakia;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88;33;317;264;691;197;41 -199;'703;Slovakia;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10150;12385;4302;5139;10040;4119;5601 -199;'703;Slovakia;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1070.17;1340;305;218;1060;330;273 -199;'703;Slovakia;1628;Wood fuel, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;290000;290000;196000;237000;76000;100000;115000;128000;145000;125000;143000;149000;149000;164613;186036;233668;234561;216844;318197;294744;332946;301020;322050;264079;273297;261494;270932;264737;272420;349538;288262 -199;'703;Slovakia;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106821;182915;83998;67557;100651;82005;74003 -199;'703;Slovakia;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5473.14;11731;6340;3000;6286;8805;7284 -199;'703;Slovakia;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50190;45689;34591;66145;37714;20126;82551 -199;'703;Slovakia;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3726.56;4064;3805;5367;2610;2186;8644 -199;'703;Slovakia;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;0;0;0;4300;0;0;0;200;0;2000;0;5000;10000;12000;58080;59127;68021;138467;116330;125845;128540;37319;37494;;;;;;; -199;'703;Slovakia;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;368;1;3;0;3;0;50;0;126;997;854;3261;2582;2354;10336;7159;6781;5210;3368;3737;;;;;;; -199;'703;Slovakia;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38331;200000;160000;83000;230000;21200;39000;62000;278000;99000;155000;68000;124000;15000;76000;97238;147405;129790;150712;310460;459650;459140;284609;291722;;;;;;; -199;'703;Slovakia;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1120;4057;3030;1504;3158;811;1552;2160;2852;4138;7927;4109;164;1498;5692;6993;6579;5878;8430;32098;18903;18354;12486;12478;;;;;;; -199;'703;Slovakia;1865;Industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4759000;4690000;4887000;4955000;4606000;5270000;5534000;5886000;5519900;5523000;6051000;6936000;9005000;7561435;7714864;8714041;8500893;9089175;8569912;7614601;7372797;8607920;8434810;8751695;8770383;9079234;8357244;6924129;7169702;6826868;6571331 -199;'703;Slovakia;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5030;48900;86700;66400;282900;138400;127000;129000;161000;134000;160000;246000;99531;394518;401000;749623;506260;582216;534298;683720;612929;770860;506909;538755;819553;1211654;1534303;1924167;2346560;2757945;1261430 -199;'703;Slovakia;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;331;5142;9234;3876;6277;3721;3326;3244;3980;3160;4967;7782;3775;22842;32436;41829;27457;26160;44428;105405;104799;58759;21555;26187;42456.14;66117;81908;78815;203492;249751;112946 -199;'703;Slovakia;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;283720;910000;759000;673000;849000;713800;1193000;1550000;1550000;1187000;1034000;1142000;1691000;1218000;1457000;2192092;2538287;2433913;2532884;2085164;2662205;2932360;2358208;2157233;1955283;2041506;1711199;2218587;2015494;1863224;1750686 -199;'703;Slovakia;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21031;32205;31808;34866;49674;31375;51821;54682;56960;45725;51963;55706;95847;85645;110293;147540;149277;242622;212621;229017;189520;199123;148249;132792;139221;163776;155305;173312;208307;184960;172882 -199;'703;Slovakia;1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2790000;2707000;2997000;3163000;3424000;3064000;2996000;3062000;2632500;2750000;3214000;3881000;6077000;4642966;4794553;5903696;5924128;6089626;5124046;4134226;3696196;4890150;4424515;4942543;5200488;5527265;5027655;3775927;3678001;3324987;3476177 -199;'703;Slovakia;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;18900;6700;3400;2900;12900;9000;4000;3000;8000;14000;22000;44531;57518;61000;227037;204043;102664;71298;207720;141929;180860;44667;113716;214380;457439;669919;1473738;1693823;1835206;628275 -199;'703;Slovakia;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;1177;461;104;170;922;311;156;78;255;679;547;1609;2175;3570;9647;8699;7202;6516;49205;10599;9459;3948;7764;18103.53;27713;36654;57100;168428;175530;49930 -199;'703;Slovakia;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;234845;496000;403000;430000;512000;280800;530000;590000;570000;387000;437000;628000;1372000;676000;923000;1755881;2116295;2074531;1987719;1569877;1968599;2223390;1675273;1401535;1345187;1491978;1387497;1798759;1445731;1277641;1192099 -199;'703;Slovakia;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11277;16976;16979;22134;35622;13084;26112;24821;22875;15348;19218;21396;73693;42655;60855;107785;122140;211488;173783;177184;137390;148228;105046;83087;88592.55;105425;112875;127969;136130;110100;95795 -199;'703;Slovakia;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;18900;6700;3400;2900;12900;9000;4000;3000;8000;14000;22000;44531;57518;61000;227037;204043;102664;71298;207720;141929;180860;44667;113716;214380;457439;669919;1473738;1693823;1835206;628275 -199;'703;Slovakia;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;1177;461;104;170;922;311;156;78;255;679;547;1609;2175;3570;9647;8699;7202;6516;49205;10599;9459;3948;7764;18103.53;27713;36654;57100;168428;175530;49930 -199;'703;Slovakia;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;234845;496000;403000;430000;512000;280800;530000;590000;570000;387000;437000;628000;1372000;676000;923000;1755881;2116295;2074531;1987719;1569877;1968599;2223390;1675273;1401535;1345187;1491978;1387497;1798759;1445731;1277641;1192099 -199;'703;Slovakia;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11277;16976;16979;22134;35622;13084;26112;24821;22875;15348;19218;21396;73693;42655;60855;107785;122140;211488;173783;177184;137390;148228;105046;83087;88592.55;105425;112875;127969;136130;110100;95795 -199;'703;Slovakia;1867;Industrial roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969000;1983000;1890000;1792000;1182000;2206000;2538000;2824000;2887400;2773000;2837000;3055000;2928000;2918469;2920311;2810345;2576765;2999549;3445866;3480375;3676601;3717770;4010295;3809152;3569895;3551969;3329589;3148202;3491701;3501881;3095154 -199;'703;Slovakia;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;30000;80000;63000;280000;125500;118000;125000;158000;126000;146000;224000;55000;337000;340000;522586;302217;479552;463000;476000;471000;590000;462242;425039;605173;754215;864384;450429;652737;922739;633155 -199;'703;Slovakia;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;328;3965;8773;3772;6107;2799;3015;3088;3902;2905;4288;7235;2166;20667;28866;32182;18758;18958;37912;56200;94200;49300;17607;18423;24352.61;38404;45254;21715;35064;74221;63016 -199;'703;Slovakia;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48875;414000;356000;243000;337000;433000;663000;960000;980000;800000;597000;514000;319000;542000;534000;436211;421992;359382;545165;515287;693606;708970;682935;755698;610096;549528;323702;419828;569763;585583;558587 -199;'703;Slovakia;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9754;15229;14829;12732;14052;18291;25709;29861;34085;30377;32745;34310;22154;42990;49438;39755;27137;31134;38838;51833;52130;50895;43203;49705;50628.45;58351;42430;45343;72177;74860;77087 -199;'703;Slovakia;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38700;7000;0;0;0;0;0;0;0;0;0;16;58;1000;4298;17853;5830;5830;5830;7768;7395;9600;65;97;346;445 -199;'703;Slovakia;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;197;111;40;3;0;0;0;0;0;0;0;9;31;3248;24270;63922;20720;8000;8000;2330.47;3100;4024;14;28;134;27 -199;'703;Slovakia;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;8;352;1713;1954;4270;4270;4270;326;122;32;177;2;1;1 -199;'703;Slovakia;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;7;1;3;0;0;0;0;0;0;0;0;8;84;11046;9665;17007;17007;17007;130.51;74;8;20;9;3;4 -199;'703;Slovakia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;30000;80000;63000;280000;86800;111000;125000;158000;126000;146000;224000;55000;337000;340000;522586;302201;479494;462000;471702;453147;584170;456412;419209;597405;746820;854784;450364;652640;922393;632710 -199;'703;Slovakia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;328;3965;8773;3772;6107;2602;2904;3048;3899;2905;4288;7235;2166;20667;28866;32182;18749;18927;34664;31930;30278;28580;9607;10423;22022.14;35304;41230;21701;35036;74087;62989 -199;'703;Slovakia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48875;414000;356000;243000;337000;433000;663000;960000;980000;800000;597000;514000;319000;542000;534000;436211;421992;359374;544813;513574;691652;704700;678665;751428;609770;549406;323670;419651;569761;585582;558586 -199;'703;Slovakia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9754;15229;14829;12732;14052;18291;25702;29860;34082;30377;32745;34310;22154;42990;49438;39755;27137;31126;38754;40787;42465;33888;26196;32698;50497.94;58277;42422;45323;72168;74857;77083 -199;'703;Slovakia;1868;Sawlogs and veneer logs;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1659000;2128000;2109000;2268000;2602000;2395000;2448000;2566000;2295500;2365000;2533000;3119000;4845000;4101762;4861532;5409729;4744890;5589529;5278487;4478645;4386138;5255640;4761973;5002753;5079449;5370309;4966688;3913294;4243581;4129652;3387659 -199;'703;Slovakia;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;944000;1353000;1425000;1657000;1888000;1788000;1750000;1788000;1450300;1606000;1786000;2217000;3820000;2932012;3497886;4212678;3813041;4315622;3872997;3031583;2784708;3656780;3202977;3488487;3570603;3855675;3535099;2597674;2724149;2559431;2647419 -199;'703;Slovakia;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;715000;775000;684000;611000;714000;607000;698000;778000;845200;759000;747000;902000;1025000;1169750;1363646;1197051;931849;1273907;1405490;1447062;1601430;1598860;1558996;1514266;1508846;1514634;1431589;1315620;1519432;1570221;740240 -199;'703;Slovakia;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2690000;2895000;3118000;2782000;2956000;3217000;3397000;3629000;2676285;2813370;3248613;3720501;3468979;3253714;3114856;2969610;3323040;3650129;3717125;3634200;3676629;3351122;2984489;2892872;2672004;3158268 -199;'703;Slovakia;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1159000;1132000;1158000;926000;1040000;1259000;1337000;1765000;1086757;1260077;1635741;2081917;1743908;1214235;1083647;897373;1207340;1202511;1428408;1593811;1647349;1461506;1156969;928155;747849;810632 -199;'703;Slovakia;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1531000;1763000;1960000;1856000;1916000;1958000;2060000;1864000;1589528;1553293;1612872;1638584;1725071;2039479;2031209;2072237;2115700;2447618;2288717;2040389;2029280;1889616;1827520;1964717;1924155;2347636 -199;'703;Slovakia;1870;Pulpwood and particles (1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2249000;2417000;2691000;2611000;1928000;;;;;;;;;;;;;;;;;;;;;;;;;; -199;'703;Slovakia;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1025000;1257000;1508000;1458000;1471000;;;;;;;;;;;;;;;;;;;;;;;;;; -199;'703;Slovakia;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1224000;1160000;1183000;1153000;457000;;;;;;;;;;;;;;;;;;;;;;;;;; -199;'703;Slovakia;1871;Other industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;851000;145000;87000;76000;76000;185000;191000;202000;442400;202000;301000;420000;531000;783388;39962;55699;35502;30667;37711;21100;17049;29240;22708;31817;56734;32296;39434;26346;33249;25212;25404 -199;'703;Slovakia;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;821000;97000;64000;48000;65000;117000;114000;116000;256200;104000;169000;327000;492000;624197;36590;55277;29170;30096;36814;18996;14115;26030;19027;25648;36074;24241;31050;21284;25697;17707;18126 -199;'703;Slovakia;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30000;48000;23000;28000;11000;68000;77000;86000;186200;98000;132000;93000;39000;159191;3372;422;6332;571;897;2104;2934;3210;3681;6169;20660;8055;8384;5062;7552;7505;7278 -199;'703;Slovakia;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;3000;3000;0;0;0;4000;5000;6000;41000;45000;46000;48000;83000;84000;85000;80000;3020;4230;4300;4000;4200;4000;3500;4000;4100;4000;3800;4000;4100;4000 -199;'703;Slovakia;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;400;0;21000;0;0;1000;1000;3000;1000;1121;2934;2048;2141;2433;1491;4500;4009;2204;2100;1957;8984;10719;14077;10886;6697 -199;'703;Slovakia;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;28;14;1584;0;0;291;358;1574;696;1039;1544;1040;1139;1386;1019;2654;2049;1170;1165.37;1254;5036;6157;7316;7555;5419 -199;'703;Slovakia;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;1000;1500;1500;17700;11100;22000;14000;21000;16000;23000;6000;4000;65000;0;1577;640;918;1182;1345;1055;1030;741;1447;1540;1512;1287;3364;7330;6694;6541 -199;'703;Slovakia;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2255;468;673;673;1364;1323;1329;1325;1584;1284;2101;2046;1759;19198;0;1238;1020;732;746;753;604;359;447;2088;2431.05;2476;928;2745;4879;4605;6687 -199;'703;Slovakia;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;287000;352000;611000;828000;887000;971000;1198000;956000;1863000;2139651;1429309;3079000;2765000;1400000;1340000;1380000;1270000;1200000;1361000;1305000;1270000;1135000;1150000;1149157;1138925 -199;'703;Slovakia;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10400;45000;35000;133000;18000;14000;6000;79000;50000;90000;24848;17206;133759;84379;52114;138177;237030;97061;143999;317764;425412;316000;361155;306564;322697;142896 -199;'703;Slovakia;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;520;1257;998;2744;709;546;443;2201;2382;6002;3960;2666;13173;12575;9259;9174;8165;6009;5884;9001.38;16478;9759;5972;8937;9216;5006 -199;'703;Slovakia;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;180900;151000;143000;133000;149000;194000;163000;168000;306000;166000;184534;242620;251723;258207;96711;353826;472480;343151;425589;785655;678709;473982;513842;360316;310188;249622 -199;'703;Slovakia;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2241;2022;2109;2741;3763;6899;5955;16642;24424;31143;26538;25507;23139;36254;23479;28346;26639;24020;25170;28081.94;22010;20359;15426;11438;17660;12202 -199;'703;Slovakia;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;180000;251000;507000;374000;395000;421000;483000;476000;623000;700000;620000;1309000;1250000;800000;760000;780000;800000;750000;861000;830000;810000;740000;750000;759157;758925 -199;'703;Slovakia;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;0;0;0;2600;7200;43000;27000;55000;0;1000;1000;3000;13000;32000;2918;1584;108000;45135;24114;62140;54780;54010;68659;96461;159494;156859;53592;29755;42697;16896 -199;'703;Slovakia;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;230;407;1040;669;577;0;51;103;484;808;2475;525;572;6872;6556;2461;2443;2828;2300;2467;4464.97;8654;6342;2197;1773;2696;1433 -199;'703;Slovakia;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6076;5700;10000;16000;49600;72400;66000;50000;55000;59000;27000;47000;31000;151000;23000;21537;89746;189000;77088;37711;267163;309730;223236;290201;701367;603043;421411;399130;325332;277188;224622 -199;'703;Slovakia;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;522;522;337;160;333;530;484;422;577;996;1734;983;6070;5226;8023;8695;7568;12027;10017;18473;22013;17754;18360;17906;26254.41;19528;16246;12355;10191;16551;11499 -199;'703;Slovakia;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;750000;800000;800000;800000;800000;0;107000;101000;104000;454000;492000;550000;715000;480000;1240000;1439651;809309;1770000;1515000;600000;580000;600000;470000;450000;500000;475000;460000;395000;400000;390000;380000 -199;'703;Slovakia;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;709;900;0;0;2000;3200;2000;8000;78000;18000;13000;5000;76000;37000;58000;21930;15622;25759;39244;28000;76037;182250;43051;75340;221303;265918;159141;307563;276809;280000;126000 -199;'703;Slovakia;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;28;0;0;142;113;217;329;2167;709;495;340;1717;1574;3527;3435;2094;6301;6019;6798;6731;5337;3709;3417;4536.41;7824;3417;3775;7164;6520;3573 -199;'703;Slovakia;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16698;26300;0;0;135000;108500;85000;93000;78000;90000;167000;116000;137000;155000;143000;162997;152874;62723;181119;59000;86663;162750;119915;135388;84288;75666;52571;114712;34984;33000;25000 -199;'703;Slovakia;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;163;657;0;0;1495;1711;1538;1687;2164;2767;5165;4972;10572;19198;23120;17843;17939;11112;26237;5006;6333;8885;5660;7264;1827.54;2482;4113;3071;1247;1109;703 -199;'703;Slovakia;1605;Sawdust (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;250000;120000 -199;'703;Slovakia;1605;Sawdust (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6257;3352 -199;'703;Slovakia;1605;Sawdust (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28500;20000 -199;'703;Slovakia;1605;Sawdust (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1041;541 -199;'703;Slovakia;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70000;70000;72000;73000;80000;82000;85000 -199;'703;Slovakia;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9779;11750;7032;13590;12231;12500;59228 -199;'703;Slovakia;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;226.82;391;171;189;358;321;5028 -199;'703;Slovakia;1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3724;3343;2323;5069;1546;1500;2000 -199;'703;Slovakia;1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91.38;124;206;154;62;56;170 -199;'703;Slovakia;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116000;117000;120000;100000;122000;169000;175000;181000;250500;355000;433000;332327 -199;'703;Slovakia;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9552;16812;24065;34618;34858;68637;86550;77564;84664;102835;126836;53624 -199;'703;Slovakia;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2200;3309;3245;5067;4594;5883.82;8555;7090;7672;10696;13968;7485 -199;'703;Slovakia;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34000;110117;134450;100408;103863;177704;197307;194689;255001;245216;292070;174727 -199;'703;Slovakia;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13731;18099;21242;16985;17641;22809.7;30338;33720;37955;52782;82892;45544 -199;'703;Slovakia;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90000;92000;100000;80000;82000;126000;131000;135000;206000;310000;390000;290327 -199;'703;Slovakia;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4352;11211;12095;20651;16350;35677;47722;45084;41457;46030;46786;34656 -199;'703;Slovakia;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1372;2422;1671;3006;3363;2867.89;4436;4303;4475;6136;7542;4564 -199;'703;Slovakia;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20000;52085;97930;82468;84064;147449;162591;160840;229358;219927;266179;164593 -199;'703;Slovakia;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7903;10769;16188;15035;15109;19527.26;25531;28353;33757;49681;79717;43787 -199;'703;Slovakia;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26000;25000;20000;20000;40000;43000;44000;46000;44500;45000;43000;42000 -199;'703;Slovakia;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5200;5601;11970;13967;18508;32960;38828;32480;43207;56805;80050;18968 -199;'703;Slovakia;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;828;887;1574;2061;1231;3015.93;4119;2787;3197;4560;6426;2921 -199;'703;Slovakia;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14000;58032;36520;17940;19799;30255;34716;33849;25643;25289;25891;10134 -199;'703;Slovakia;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5828;7330;5054;1950;2532;3282.45;4807;5367;4198;3101;3175;1757 -199;'703;Slovakia;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;550000;700000;646000;629000;767000;1265000;1265000;1265000;1265000;1265000;1651000;1837000;2621000;2440000;2781000;2841520;2253965;2575740;2204000;1560000;1430000;1750000;1600000;1580000;1737500;1730000;1653000;1522000;1652000;1815000;1368012 -199;'703;Slovakia;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3134;10600;16400;14200;170500;29150;27950;55000;59000;48000;51000;41000;38000;72000;257000;143484;75158;294999;181444;220947;253926;314870;383309;332540;264905;330099;342262;416060;376264;535372;318289 -199;'703;Slovakia;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;679;3018;4784;2419;24558;4506;5421;7984;116;11166;13666;14606;22932;34129;74377;54523;50734;104534;80755;129053;111040;100639;82305;76519;85390.6;99311;84396;76701;131509;156119;93298 -199;'703;Slovakia;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;152712;400000;471300;653400;1056000;1024800;1062000;920000;1033000;865000;855000;417000;762000;1192000;1235000;441914;405422;611005;1109129;633617;579563;814630;784469;989248;808266;943364;973564;1074791;1240161;1268367;866158 -199;'703;Slovakia;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25529;104821;127105;91621;125639;122343;119105;117823;114890;125824;151428;127862;185458;220376;263656;279692;177533;252070;245114;274519;233763;230314;187947;215632;211026.24;265516;235085;227906;400349;377126;248814 -199;'703;Slovakia;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;345000;400000;427000;426000;501000;845000;845000;845000;845000;845000;1150000;1251000;1984000;1760000;1872000;2062861;1605395;1778780;1460000;1110000;990000;1190000;1150000;1200000;1305500;1300000;1263000;1182000;1302000;1430000;1115236 -199;'703;Slovakia;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2573;9600;11000;10400;56000;22600;18000;32000;40000;34000;36000;24000;23000;56000;218000;131709;54886;235998;143066;149605;204926;295870;358000;302101;234517;302690;292392;371490;324372;480377;286420 -199;'703;Slovakia;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;479;2400;2973;1195;5824;2200;2448;3738;68;5619;7938;8199;13074;23938;59636;39906;24607;86525;58934;57068;68300;75639;71927;64612;73488.22;85990;60159;55041;101666;126915;70624 -199;'703;Slovakia;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73226;300000;356300;543000;700000;734800;681000;683000;751000;649000;645000;283000;681000;1092000;1014000;391535;354320;537005;1012797;486441;501936;695680;629164;810377;667182;794408;847443;958898;1063476;1063000;687569 -199;'703;Slovakia;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10256;78795;95960;62976;78078;78428;72554;71071;67351;75108;90173;71500;121812;151142;184091;192258;119371;170488;196295;151149;162483;178113;128384;144870;153340.26;196480;179327;176505;319472;288762;170845 -199;'703;Slovakia;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;205000;300000;219000;203000;266000;420000;420000;420000;420000;420000;501000;586000;637000;680000;909000;778659;648570;796960;744000;450000;440000;560000;450000;380000;432000;430000;390000;340000;350000;385000;252776 -199;'703;Slovakia;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;561;1000;5400;3800;114500;6550;9950;23000;19000;14000;15000;17000;15000;16000;39000;11775;20272;59001;38378;71342;49000;19000;25309;30439;30388;27409;49870;44570;51892;54995;31869 -199;'703;Slovakia;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;618;1811;1224;18734;2306;2973;4246;48;5547;5728;6407;9858;10191;14741;14617;26127;18009;21821;71985;42740;25000;10378;11907;11902.38;13321;24237;21660;29843;29204;22674 -199;'703;Slovakia;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79486;100000;115000;110400;356000;290000;381000;237000;282000;216000;210000;134000;81000;100000;221000;50379;51102;74000;96332;147176;77627;118950;155305;178871;141084;148956;126121;115893;176685;205367;178589 -199;'703;Slovakia;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15273;26026;31145;28645;47561;43915;46551;46752;47539;50716;61255;56362;63646;69234;79565;87434;58162;81582;48819;123370;71280;52201;59563;70762;57685.98;69036;55758;51401;80877;88364;77969 -199;'703;Slovakia;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21000;17000;19000;22000;20000;13000;19000;28400;17000;16000;18000;4000;3000;5000;3300;3000;19000;16000;19000;19000;21000;9468;17300;18111;18000;17500;20500;29400;20840;21200 -199;'703;Slovakia;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2168;4000;4000;2800;2400;88400;17000;48000;14000;12380;24000;9000;8000;12000;18000;18933;15128;20000;28073;23216;13810;22530;17156;16647;19382;22104;18608;18679;21257;26666;19408 -199;'703;Slovakia;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4528;9362;10101;10115;8035;10285;12538;11827;8810;15299;18423;20751;23799;30259;48896;46279;35938;18714;42817;36855;22799;33328;27154;28448;34569.34;40799;33147;36818;46424;54305;51411 -199;'703;Slovakia;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1238;2000;1700;1600;6300;3800;18000;10000;14000;7000;8000;5000;3000;4000;5000;7851;4438;8000;14049;12233;6172;9060;7321;9993;11243;12898;9790;16960;34185;30897;30328 -199;'703;Slovakia;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;785;4681;4293;2008;6563;4146;6556;7224;8730;9232;11313;9521;24399;23193;42211;53829;26663;22876;24475;24213;18803;18811;13197;15177;14954.12;17292;17151;17833;35387;42248;39647 -199;'703;Slovakia;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;253000;307000;324000;293000;317000;319000;308000;327000;364000;432000;422000;490000;602000;824000;841000;948720;863400;669500;667000;656000;644500;686000;945179;1014800;1115427;1101596;1104295;1015256;1024928;829522;841765 -199;'703;Slovakia;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5030;9980;26300;145400;199400;409100;327000;286000;310000;228000;245000;366000;310000;495000;629000;661505;419621;466000;411501;434612;435394;488730;539751;601435;544936;554062;528580;527572;576985;504378;390568 -199;'703;Slovakia;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2292;4593;10053;26512;35224;30823;30166;39137;45579;67099;96590;101086;142415;188757;260391;233384;169102;227476;189433;203797;160546;196272;168170;180755;176793.87;188016;167758;167257;226999;191737;152020 -199;'703;Slovakia;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27523;44028;55500;74000;121800;206200;157600;230000;357000;356000;375000;436000;376000;359000;451000;644211;472140;447000;346196;404062;304717;438678;589933;663021;772477;780276;789295;649936;738598;645185;675757 -199;'703;Slovakia;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9661;18924;23536;31609;25315;37653;27748;74055;84502;96641;105837;136670;166706;154740;208997;246183;114209;161477;125179;122632;110624;152985;169891;190627;222616.62;252225;235384;203062;287640;306066;272718 -199;'703;Slovakia;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20000;26000;27000;25000;32000;33000;33000;41000;44000;40000;33000;38000;18000;19000;21000;13720;15400;20000;22000;26000;24500;26000;397898;420300;482536;471789;452604;416825;416825;153038;100274 -199;'703;Slovakia;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;997;500;600;5400;71000;87600;90000;82000;19000;29000;34000;35000;25000;44000;21000;57060;47377;29000;41083;42203;38609;65720;65619;64768;69545;75128;71466;66684;65009;59373;42016 -199;'703;Slovakia;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;783;487;555;5208;15428;6858;6258;9211;9224;13045;16157;18508;24508;32328;27855;18678;35359;20810;29927;30791;22524;37646;32151;29607;32769.49;37053;35190;36176;48666;44309;35037 -199;'703;Slovakia;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12957;10000;9500;38300;16700;44100;27600;25000;19000;20000;26000;34000;21000;30000;25000;29616;13832;16000;27214;34255;35506;84890;106576;115546;129515;131967;129179;119772;140244;132414;122647 -199;'703;Slovakia;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6839;7177;6970;19446;9154;17775;13846;12074;9207;11748;16358;20640;25466;24569;30861;58443;22378;23292;30081;30445;33871;75293;80535;90508;102956.08;116032;115806;108992;150421;156562;129491 -199;'703;Slovakia;1607;Laminated Veneer Lumber (LVL);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -199;'703;Slovakia;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -199;'703;Slovakia;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -199;'703;Slovakia;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -199;'703;Slovakia;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -199;'703;Slovakia;1646;Particle board and OSB (1961-1994);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200000;233000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -199;'703;Slovakia;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3553;9000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -199;'703;Slovakia;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1304;3901;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -199;'703;Slovakia;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10538;30000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -199;'703;Slovakia;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1529;10454;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -199;'703;Slovakia;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;243000;216000;221000;220000;220000;220000;250000;250000;245000;300000;312000;665000;675000;785000;705000;561500;550000;530000;520000;540000;547281;594500;632891;629807;651691;598431;608103;676484;741491 -199;'703;Slovakia;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20000;133000;93300;135300;155000;148000;185000;122000;115000;225000;174000;229000;31000;295344;195452;276000;215881;193290;199646;228625;235280;242896;147418;163855;156790;146079;142734;148074;155217 -199;'703;Slovakia;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7239;17966;13318;14221;13021;14219;26905;21993;35280;45951;62076;81913;15727;110020;69870;89878;86259;81593;62911;82177;67670;71551;53746.96;58021;53577;50399;49194;61116;62646 -199;'703;Slovakia;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28000;24000;57000;93200;72000;49000;185000;163000;197000;275000;250000;243000;329000;470706;322049;345000;281189;336228;238848;352866;470363;516965;604898;609174;637074;506074;568447;473039;535530 -199;'703;Slovakia;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10539;8257;8245;13200;7566;14498;25963;24816;35217;68046;72233;70365;90736;117134;67156;77615;74008;75680;56860;77312;84191;87739;104489.41;121588;114570;88094;124717;135700;138489 -199;'703;Slovakia;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 -199;'703;Slovakia;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41000;298000;30479;35304;35000;33000;35000;62000;61125;64021;75323;80304;82392;80055;91136;93981;48450;48549 -199;'703;Slovakia;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8983;106286;13280;11811;16096;16081;15697;21410;18300;13781;15352;19406.9;25291;22780;22779;37619;19025;15848 -199;'703;Slovakia;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83000;83000;83000;50000;50000;50000;27000;11000;3627;2429;0;1800;4500;15000;702;791;956;1168;1295;568;611;2645;876;2196 -199;'703;Slovakia;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40000;40000;40000;25000;25000;25000;13090;5988;2606;924;0;894;1704;5545;195;169;333;825.23;688;265;226;1561;435;918 -199;'703;Slovakia;1874;Fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33000;48000;54000;52000;64000;66000;55000;66000;70000;142000;144000;152000;272000;140000;145000;150000;143000;88000;95000;100000;100000;120000;0;0;0;0;0;0;0;0;0 -199;'703;Slovakia;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;480;480;5700;7000;35100;186200;82000;56000;106000;77000;96000;106000;111000;181000;279000;278622;141488;126000;121537;164119;135139;133260;174831;218448;247669;232687;220269;223673;275261;248481;144786 -199;'703;Slovakia;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;205;205;2259;3338;6478;9744;10887;15707;9450;32061;45153;36627;55831;65533;110523;91406;52062;100692;57166;75716;53701;58149;54568;64245;70870.51;67651;56211;57903;91520;67287;38489 -199;'703;Slovakia;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4028;4028;18000;11700;48100;68900;58000;73000;70000;90000;102000;77000;55000;59000;86000;140262;133830;86000;35993;29079;15363;220;12203;29554;36896;37840;22474;23479;27262;38856;15384 -199;'703;Slovakia;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1293;1293;6027;3906;7916;6678;6336;7483;9332;20077;29262;22984;44007;46716;81412;68000;23751;60570;20196;14803;14348;185;4996;12047;14345.89;13917;4743;5750;10941;13369;3820 -199;'703;Slovakia;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23000;22000;23000;25000;35000;40000;47000;45000;46000;48000;161000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -199;'703;Slovakia;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;700;2300;10800;136700;68000;22000;56000;51000;60000;58000;84000;129000;119000;46405;16889;94000;30836;30161;31729;30140;20083;19835;25196;20976;17595;23421;21639;21482;9752 -199;'703;Slovakia;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;239;1370;2079;7225;7497;10958;5349;23418;35462;27655;44496;45860;67990;39734;15975;84508;19111;19144;15757;19725;15605;14740;15997.11;14299;11202;14718;15649;15135;8878 -199;'703;Slovakia;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18000;10900;11800;13700;12000;16000;20000;36000;48000;23000;42000;41000;61000;42915;397;0;1133;1700;12545;190;307;1313;2430;640;239;1215;4991;942;611 -199;'703;Slovakia;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6027;3622;3322;2124;1986;3055;5237;15111;22922;14055;34982;34320;61381;38904;557;0;541;1453;11934;127;196;1031;1578.7;464;200;640;3317;956;973 -199;'703;Slovakia;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;15000;20000;18000;22000;22000;24000;26000;0;0;0;3000;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -199;'703;Slovakia;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;4500;15600;44700;10000;30000;1000;22000;17000;30000;20000;43000;0;176885;65601;26000;39377;87014;92160;92160;117111;139315;127902;125492;115938;140009;183382;169738;60810 -199;'703;Slovakia;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2020;1860;2732;1631;2012;3499;343;7080;7929;6621;7871;15179;0;40972;24427;13554;9195;29274;32032;32045;32064;38429;39673.61;39560;31848;34579;63987;42159;18173 -199;'703;Slovakia;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;800;3600;2900;0;1000;1000;2000;1000;1000;1000;2000;0;17939;68453;0;2920;0;0;0;11595;27615;34466;37200;22235;21282;21807;35000;10657 -199;'703;Slovakia;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;284;1124;29;170;217;338;685;749;1778;453;681;0;10931;9110;0;2489;0;0;0;4723;10882;12767.19;13453;4543;4924;7520;11909;2282 -199;'703;Slovakia;1650;Other fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;28000;31000;30000;41000;41000;5000;6000;5000;75000;76000;80000;85000;140000;145000;150000;140000;88000;95000;100000;100000;120000;0;0;0;0;0;0;0;0;0 -199;'703;Slovakia;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;213;213;0;200;8700;4800;4000;4000;49000;4000;19000;18000;7000;9000;160000;55332;58998;6000;51324;46944;11250;10960;37637;59298;94571;86219;86736;60243;70240;57261;74224 -199;'703;Slovakia;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;114;114;0;108;1667;888;1378;1250;3758;1563;1762;2351;3464;4494;42533;10700;11660;2630;28860;27298;5912;6379;6899;11076;15199.79;13792;13161;8606;11884;9993;11438 -199;'703;Slovakia;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2006;2006;0;0;32700;52300;46000;56000;49000;52000;53000;53000;12000;16000;25000;79408;64980;86000;31940;27379;2818;30;301;626;0;0;0;982;464;2914;4116 -199;'703;Slovakia;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;616;616;0;0;3470;4525;4180;4211;3757;4281;5591;7151;8572;11715;20031;18165;14084;60570;17166;13350;2414;58;77;134;0;0;0;186;104;504;565 -199;'703;Slovakia;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30000;20000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -199;'703;Slovakia;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;267;267;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -199;'703;Slovakia;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91;91;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -199;'703;Slovakia;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2022;2022;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -199;'703;Slovakia;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;677;677;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -199;'703;Slovakia;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;291500;415000;346000;361000;252000;424000;656000;755000;818000;642000;680000;724000;820000;823000;921000;900949;857163;841360;951250;940000;970000;998000;1007343;1018500;1078132;1082861;1034004;1038592;1101185;1010078;905160 -199;'703;Slovakia;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3939;51000;63000;88000;3000;170800;190977;231000;111000;219000;213000;161000;157000;131000;182598;190373;185835;228047;238471;196062;176796;202690;220823;235864;227853;218303;235610;315875;340403;342931;311688 -199;'703;Slovakia;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;675;13420;19919;25828;707;34795;40210;64875;33475;49781;66893;68264;73887;68126;124549;154278;109898;177364;187767;140938;102680;131756;123261;114411;115571.32;136105;124144;118058;158272;187214;146604 -199;'703;Slovakia;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11610;70000;65000;57800;800;81500;131949;103000;120000;133000;172000;167000;155000;148000;154000;237470;221822;285562;334050;374986;477229;519705;545779;495855;539476;566424;571661;699109;634643;518688;420810 -199;'703;Slovakia;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2679;31413;14746;9737;310;26789;30671;41752;32686;37127;50920;49469;57480;58681;111481;119351;83405;163679;160707;152434;158662;173785;180545;146177;179312.41;200005;165648;168680;226031;198444;117404 -199;'703;Slovakia;1878;Pulp for paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;211500;340000;246000;252000;136000;324000;556000;608000;671000;453000;479000;520000;609000;626000;664000;693247;688718;637360;715250;710000;700000;718000;707343;698500;728132;687861;654004;688592;771185;695078;595160 -199;'703;Slovakia;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1042;16000;17000;18500;1200;56700;64018;72000;85000;82000;106000;106000;96000;90000;146598;157335;156427;199029;209884;185165;139905;160750;164259;157385;153003;150462;159372;161623;157016;172041;153318 -199;'703;Slovakia;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;434;11234;16828;19012;600;26777;29884;43832;31617;34627;52069;60076;64052;59341;108511;137260;99309;160608;173930;136004;94129;120340;111191;97526;100280.03;122305;110297;92925;116946;151689;122887 -199;'703;Slovakia;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5100;66000;56000;51000;600;70200;117012;75000;94000;101000;119000;109000;105000;92000;123000;130110;136787;161636;172416;195831;182635;231515;265325;220275;248019;221614;231574;313238;250245;167659;118030 -199;'703;Slovakia;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1810;30988;13469;8973;300;25772;29398;38929;30828;34536;47179;45848;49742;50024;82967;89029;68046;120670;114763;115354;111116;128164;143416;104486;133550.03;152879;127256;132168;143486;130288;79301 -199;'703;Slovakia;1875;Wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;211500;353000;261000;252000;187000;344000;556000;608000;671000;453000;479000;520000;609000;626000;664000;693247;688718;637360;716250;711000;701000;719000;707743;698500;728132;685861;653004;686692;768685;692478;594160 -199;'703;Slovakia;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1142;24000;33000;29900;1300;61200;67441;76000;85000;85000;107000;104000;96000;89000;145598;157083;156267;199029;210717;185638;139821;160680;164920;157509;152956;150391;159348;162223;159514;173493;154802 -199;'703;Slovakia;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;488;14230;27636;30690;671;30212;32299;46503;31598;36740;52997;58464;64052;58885;107540;136635;98931;160608;174489;140959;93977;120177;111540;97551;100182.74;122158;110231;93145;118260;152658;123688 -199;'703;Slovakia;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5100;66000;76000;67000;800;86800;127417;75000;94000;101000;119000;109000;105000;91000;122000;130096;137081;161636;174048;196614;182636;231500;265145;220259;247962;219919;230227;311606;247906;165631;117745 -199;'703;Slovakia;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1810;30988;30136;19515;437;37602;36414;39012;30809;34536;47179;45848;49742;49996;82899;88991;68180;120670;115919;128731;111410;128162;143389;104466;133485.41;151442;126169;130697;141332;128005;78978 -199;'703;Slovakia;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35265;15000;14000;0;0;0;0 -199;'703;Slovakia;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6040;6340;4594;5321;7635;10322;6894 -199;'703;Slovakia;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2792.88;3668;2366;2193;3970;5094;3172 -199;'703;Slovakia;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1239;506;4816;4323;25;40;335 -199;'703;Slovakia;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;495.77;202;377;521;310;305;231 -199;'703;Slovakia;1654;Mechanical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28000;30000;7000;6000;5000;5000;5000;5000;3000;2000;0;0;0;0;0;0;0;0;0;0;0;0;3000;4600;;;;;;; -199;'703;Slovakia;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;0;0;0;0;0;641;1000;0;1000;2000;1000;2000;7000;5000;1646;2805;1680;1285;1286;431;90;166;190;;;;;;; -199;'703;Slovakia;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;0;0;0;0;5;890;823;4;924;1329;1029;3652;6313;7653;2885;1861;2509;1900;1006;346;116;101;318;;;;;;; -199;'703;Slovakia;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;2000;2000;0;0;0;0;1099;2174;1070;2930;217;;;;;;; -199;'703;Slovakia;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;0;0;4;0;0;0;0;30;99;0;0;0;0;240;255;255;294;363;;;;;;; -199;'703;Slovakia;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4500;5000;5000;5000;76000;76000;76000;90000;100000;95000;114000;118000;97000;101000;113000;111850;112355;20510;23820;20000;20000;18000;15000;13000;;;;;;; -199;'703;Slovakia;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;547;0;0;200;300;1300;480;1000;0;2000;1000;1000;1000;0;1000;2612;802;34;25;20;1660;1980;4434;3679;;;;;;; -199;'703;Slovakia;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;205;0;0;87;137;552;197;375;28;630;659;350;324;0;945;2135;1177;187;6;15;1037;945;2510;1730;;;;;;; -199;'703;Slovakia;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;17;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;10;;;;;;; -199;'703;Slovakia;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;7;1;28;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4;;;;;;; -199;'703;Slovakia;1656;Chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;179000;305000;234000;224000;39000;243000;475000;513000;568000;356000;365000;402000;512000;525000;551000;581397;576363;616850;691430;690000;680000;700000;689243;680900;692867;670861;639004;686692;768685;692478;594160 -199;'703;Slovakia;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;424;16000;17000;18300;900;55000;62800;70000;85000;79000;102000;101000;93000;82000;139598;152825;152660;197315;208348;183635;137730;158590;159548;153439;146916;144050;154754;156259;149339;161693;146375 -199;'703;Slovakia;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;211;11234;16828;18925;463;25831;28662;42583;31565;33073;49757;56509;60076;52572;98942;131615;95893;157912;171533;134597;92594;119097;108395;95345;97389.86;118490;107865;90645;112884;146543;119597 -199;'703;Slovakia;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5100;66000;56000;51000;600;69000;116957;75000;94000;101000;119000;109000;105000;89000;120000;130096;136775;161636;172415;194713;180460;230430;262215;220032;246723;219413;225411;307283;247880;165591;117410 -199;'703;Slovakia;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1810;30988;13469;8973;300;25582;29389;38918;30776;34536;47179;45848;49742;49966;82800;88991;68014;120670;114763;115094;110861;127907;143095;104099;132989.64;151240;125792;130176;141021;127700;78747 -199;'703;Slovakia;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15000;15000;34000;34000;16000;16000;228000;237000;255000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -199;'703;Slovakia;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3200;2077;7000;0;7000;0;0;0;0;0;13590;98;14700;48;47;0;0;1;0;0;0;0;0;0;0;0 -199;'703;Slovakia;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1384;765;3043;7;2990;0;0;0;0;0;13487;83;11684;48;42;0;0;1;0;0;0;0;0;0;0;0 -199;'703;Slovakia;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;41;0;0;0;0;0;0;0;0;64;0;0;0;0;1;0;0;5030;0;0;0;0;0;0;0 -199;'703;Slovakia;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;2;7;0;0;0;0;0;0;3;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0 -199;'703;Slovakia;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;164000;200000;200000;190000;23000;227000;247000;276000;313000;356000;365000;402000;512000;525000;551000;581397;576363;616850;691430;690000;680000;700000;689243;680900;692867;670861;639004;686692;768685;692478;594160 -199;'703;Slovakia;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;424;0;0;0;500;19800;27965;43000;85000;44000;73000;70000;60000;81000;101598;108777;123376;153136;178134;167288;127587;153490;148627;139212;132595;128575;140225;141649;131501;146272;120735 -199;'703;Slovakia;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;211;0;0;0;282;10094;13876;28213;31537;18766;35588;40487;38764;52267;71524;91889;76801;122626;145391;119460;85124;115083;100992;86618;87753.89;105706;96741;81455;99263;128734;97565 -199;'703;Slovakia;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;600;69000;74916;75000;94000;101000;119000;109000;105000;88000;120000;130032;136772;161636;172415;194713;180459;230430;262214;215000;246722;219412;225411;307283;247876;165591;117394 -199;'703;Slovakia;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;300;25582;29370;38916;30748;34536;47179;45848;49742;49750;82800;88988;68001;120670;114763;115094;110860;127907;143095;104098;132988.58;151239;125790;130175;141014;127700;78746 -199;'703;Slovakia;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -199;'703;Slovakia;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14321;15475;14529;14610;17838;15421;25640 -199;'703;Slovakia;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9635.97;12784;11124;9190;13621;17809;22032 -199;'703;Slovakia;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;0;4;0;16 -199;'703;Slovakia;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.06;1;2;1;7;0;1 -199;'703;Slovakia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -199;'703;Slovakia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;100;107;0;0;0;0;0;0;0;0;0;0;0;343;543;913;1270;3553;5199;;;;;;; -199;'703;Slovakia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;33;39;105;21;0;0;0;0;0;0;0;0;0;406;744;1174;1583;2834;3687;;;;;;; -199;'703;Slovakia;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;;;;;;; -199;'703;Slovakia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;21;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -199;'703;Slovakia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;60000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -199;'703;Slovakia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;16000;17000;18300;400;31900;32651;20000;0;28000;29000;31000;33000;1000;38000;30458;29186;29479;29823;15757;9230;3830;7367;9028;;;;;;; -199;'703;Slovakia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;11234;16828;18925;181;14320;13982;11222;0;11317;14169;16022;21312;305;27418;26239;19009;23602;25688;14351;6296;2431;4568;5040;;;;;;; -199;'703;Slovakia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5100;66000;56000;51000;0;0;42000;0;0;0;0;0;0;1000;0;0;3;0;0;0;0;0;1;2;;;;;;; -199;'703;Slovakia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1810;30988;13469;8973;0;0;16;0;0;0;0;0;0;216;0;0;13;0;0;0;0;0;0;1;;;;;;; -199;'703;Slovakia;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13000;15000;17000;67000;20000;0;0;0;0;0;0;0;0;0;0;0;0;1000;1000;1000;1000;500;0;0;0;0;0;0;0;0 -199;'703;Slovakia;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;8000;16000;11400;100;4900;3520;4000;0;3000;2000;1000;0;0;0;0;0;0;1059;697;0;20;772;201;0;1;0;643;2540;1478;1533 -199;'703;Slovakia;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;2996;10808;11678;71;3824;2550;2722;1;2113;1252;576;0;0;0;0;0;0;1050;5341;0;19;534;158;0;0;0;307;1406;1021;919 -199;'703;Slovakia;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20000;16000;200;17800;10443;0;0;0;0;0;0;0;0;0;306;0;1633;802;2;0;0;0;0;0;0;0;1;0;0 -199;'703;Slovakia;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16667;10542;137;12015;7018;93;1;0;0;0;0;0;0;0;166;0;1156;13397;294;0;0;0;0;0;0;0;1;0;0 -199;'703;Slovakia;1668;Pulp from fibres other than wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17000;16000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;100;0;0;2000;1000;1900;2500;2600;1000 -199;'703;Slovakia;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;97;0;0;0;1000;3000;0;1000;1000;252;160;0;226;224;84;90;111;77;47;72;24;43;42;26;49 -199;'703;Slovakia;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;389;135;51;20;0;324;2188;0;456;971;625;378;0;491;386;152;182;185;133;97.28;147;66;87;92;52;118 -199;'703;Slovakia;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1200;38;0;0;0;0;0;0;1000;1000;14;12;0;1;19;1;15;180;16;57;1695;1347;1632;2340;2028;285 -199;'703;Slovakia;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;185;2;10;20;0;0;0;0;28;68;38;32;0;0;20;0;2;27;20;64.63;1437;1087;1471;2155;2283;323 -199;'703;Slovakia;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;288;0;0;0;1000;1000;1000;1000;1000;97;76;0;783;603;352;260;563;149;148;291;705;403;435;370;391 -199;'703;Slovakia;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121;116;111;0;0;308;172;784;305;366;528;593;0;441;339;226;168;294;71;82.88;285;391;407;442;240;259 -199;'703;Slovakia;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;1000;0;0;0;0;0;707;692;4;1250;271;636;2;5;0;1;0;0 -199;'703;Slovakia;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;0;0;0;0;0;0;4;0;0;0;0;0;25;26;1;272;16;103.55;14;2;0;1;0;1 -199;'703;Slovakia;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80000;75000;100000;109000;116000;100000;100000;147000;147000;189000;201000;204000;211000;197000;257000;207702;168445;204000;236000;230000;270000;280000;300000;320000;350000;395000;380000;350000;330000;315000;310000 -199;'703;Slovakia;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2897;35000;46000;69500;1800;114100;126959;159000;26000;137000;107000;55000;61000;41000;36000;33038;29408;29018;28587;10897;36891;41940;56564;78479;74850;67841;76238;154252;183387;170890;158370 -199;'703;Slovakia;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;241;2186;3091;6816;107;8018;10326;21043;1858;15154;14824;8188;9835;8785;16038;17018;10589;16756;13837;4934;8551;11416;12070;16885;15291.29;13800;13847;25133;41326;35525;23717 -199;'703;Slovakia;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6510;4000;9000;6800;200;11300;14937;28000;26000;32000;53000;58000;50000;56000;31000;107360;85035;123926;161634;179155;294594;288190;280454;275580;291457;344810;340087;385871;384398;351029;302780 -199;'703;Slovakia;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;869;425;1277;764;10;1017;1273;2823;1858;2591;3741;3621;7738;8657;28514;30322;15359;43009;45944;37080;47546;45621;37129;41691;45762.38;47126;38392;36512;82545;68156;38103 -199;'703;Slovakia;1876;Paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;303000;299000;327000;467000;525500;597400;803000;925000;988000;710000;674000;798000;858000;888000;915000;921445;920977;780356;748361;736000;723000;793000;812214;858900;832392;839264;805849;932737;1018508;966549;883670 -199;'703;Slovakia;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33992;70000;80000;81300;155600;203600;213768;247000;256400;264000;318000;381000;362000;403000;421000;444084;372372;435313;488376;512543;470719;485000;458544;452984;451154;443385;433859;426990;474408;457328;386002 -199;'703;Slovakia;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24098;54625;76592;70945;161169;149599;141938;162648;199584;182661;284004;326578;299973;347992;496712;523581;415705;601725;500529;483528;427488;450283;381732;377120;389354.3;416027;391557;347412;422939;491399;381748 -199;'703;Slovakia;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87970;180000;200000;218400;212200;312400;313892;349000;344000;487000;487000;649000;709000;771000;785000;598143;780001;740187;590905;636351;540382;637970;650325;708208;658103;650635;648698;634727;939255;859202;790646 -199;'703;Slovakia;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47088;120832;152693;137530;165149;207963;186383;209795;196878;322989;362102;505918;535974;644184;901456;782874;744121;1156742;631190;626527;523064;577621;505980;548109;531173.75;613226;581345;520277;729784;947917;781842 -199;'703;Slovakia;2042;Graphic papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110000;105000;120000;205000;215500;221200;511000;568000;608000;321000;280000;371000;477000;514000;511000;522486;539379;550487;558890;554000;550000;620000;562809;580700;554227;555241;534472;514062;561055;523008;488075 -199;'703;Slovakia;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22647;47000;52000;56700;117800;111100;109432;131000;95400;183000;205000;218000;212000;239000;245000;250562;199367;293846;214524;205607;209820;220610;230069;217484;206246;194211;194691;174850;183247;169858;118864 -199;'703;Slovakia;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14725;35887;50505;45459;109703;84239;77667;87635;97319;136866;175699;185643;203215;227520;278010;288746;229647;288236;218056;203741;191862;204902;175355;163911;157227.03;163869;168735;135634;150113;183129;133442 -199;'703;Slovakia;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59338;41000;51000;97800;113700;91900;69470;107000;130000;286000;271000;409000;456000;498000;494000;516403;523720;530742;499086;533186;440874;541730;552608;603680;553606;560149;559277;514684;570019;535209;499561 -199;'703;Slovakia;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35386;38071;59764;70513;93062;64183;41577;74574;95360;227910;241964;353666;390052;454379;631859;664401;540823;600092;504196;489371;413833;475981;417918;456041;437696.06;508999;480195;394723;463933;632817;536793 -199;'703;Slovakia;1671;Newsprint;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20000;20000;20000;5000;1500;0;270000;280000;292000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -199;'703;Slovakia;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7523;22000;22000;20500;23800;26800;25516;27000;0;27000;28000;38000;35000;37000;33000;32081;27479;19934;28688;27537;32278;11860;19246;14143;13310;15161;11581;10613;11816;13704;9866 -199;'703;Slovakia;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2879;12482;15152;14618;19395;13986;12952;12205;19;13621;15981;21418;22264;25507;33067;28586;23842;14668;24787;21658;21871;7936;10837;9075;7781.51;9390;6969;5722;7891;13108;7252 -199;'703;Slovakia;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;2500;700;0;49;0;0;0;0;0;0;1000;1000;0;20;2100;467;0;0;0;12;1;1;1;39;73;268;18;0 -199;'703;Slovakia;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;624;841;1534;426;21;10;54;19;0;0;0;0;218;509;0;18;1161;336;0;0;0;2;0;7.27;6;24;76;167;16;0 -199;'703;Slovakia;1674;Printing and writing papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90000;85000;100000;200000;214000;221200;241000;288000;316000;321000;280000;371000;477000;514000;511000;522486;539379;550487;558890;554000;550000;620000;562809;580700;554227;555241;534472;514062;561055;523008;488075 -199;'703;Slovakia;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15124;25000;30000;36200;94000;84300;83916;104000;95400;156000;177000;180000;177000;202000;212000;218481;171888;273912;185836;178070;177542;208750;210823;203341;192936;179050;183110;164237;171431;156154;108998 -199;'703;Slovakia;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11846;23405;35353;30841;90308;70253;64715;75430;97300;123245;159718;164225;180951;202013;244943;260160;205805;273568;193269;182083;169991;196966;164518;154836;149445.51;154479;161766;129912;142222;170021;126190 -199;'703;Slovakia;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59338;40000;50000;95300;113000;91900;69421;107000;130000;286000;271000;409000;456000;497000;493000;516403;523700;528642;498619;533186;440874;541730;552596;603679;553605;560148;559238;514611;569751;535191;499561 -199;'703;Slovakia;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35386;37447;58923;68979;92636;64162;41567;74520;95341;227910;241964;353666;390052;454161;631350;664401;540805;598931;503860;489371;413833;475981;417916;456041;437688.8;508993;480171;394647;463766;632801;536793 -199;'703;Slovakia;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;65000;78000;78000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -199;'703;Slovakia;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32500;27434;41000;0;56000;59000;46000;37000;48000;54000;48273;47399;202135;60347;58910;69243;79560;84019;78979;74351;64485;75774;66557;65309;54331;38413 -199;'703;Slovakia;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22986;19088;25414;58;36728;44073;34563;29682;39978;49486;45648;47865;200018;51858;44689;51454;61381;51674;47640;45275.29;43698;50223;41049;40130;46452;36169 -199;'703;Slovakia;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;168;0;0;1000;2000;1000;0;0;0;299;186;0;70;279;166;190;171;158;244;557;568;173;220;1133;243 -199;'703;Slovakia;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104;101;253;58;460;1407;964;0;0;0;402;238;0;248;471;274;311;251;260;354.54;965;885;332;371;1352;555 -199;'703;Slovakia;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;209900;46000;50000;51000;318000;277000;366000;473000;508000;511000;522486;539379;550487;558890;554000;550000;620000;562809;580700;554227;555241;534472;514062;561055;523008;488075 -199;'703;Slovakia;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9400;9226;8000;94000;29000;39000;54000;62000;65000;70000;69901;53003;320;37686;42926;45621;56150;53901;54659;51535;45668;51312;39818;43502;40214;29830 -199;'703;Slovakia;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7434;6572;5815;96110;27599;40103;52057;66656;68190;87710;97528;67102;1138;53718;58597;58108;65944;48986;51593;49709.87;49591;54233;36750;44815;51306;39269 -199;'703;Slovakia;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87400;67498;105000;128000;283000;268000;406000;456000;496000;492000;515717;523252;523726;497791;532279;440064;540500;548346;600597;550508;556890;556228;511415;565929;531480;497768 -199;'703;Slovakia;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60305;40235;73140;94169;226387;239534;349731;390052;453104;629529;660868;539038;590158;500786;484681;409803;472099;410904;450919;432817.73;502555;471629;384506;454101;624510;531454 -199;'703;Slovakia;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11300;130000;160000;187000;3000;3000;5000;4000;6000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -199;'703;Slovakia;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42400;47256;55000;1400;71000;79000;80000;78000;89000;88000;100307;71486;71457;87803;76234;62678;73040;72903;69703;67050;68897;56024;57862;62620;61609;40755 -199;'703;Slovakia;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39833;39055;44201;1132;58918;75542;77605;84613;93845;107747;116984;90838;72412;87693;78797;60429;69641;63858;55603;54460.36;61190;57310;52113;57277;72263;50752 -199;'703;Slovakia;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4400;1755;2000;2000;2000;1000;2000;0;1000;1000;387;262;4916;758;628;644;1040;4079;2924;2853;2701;2442;3023;3602;2578;1550 -199;'703;Slovakia;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3753;1231;1127;1114;1063;1023;2971;0;1057;1821;3131;1529;8773;2826;4219;3756;3571;6761;4862;4516.53;5473;7657;9809;9294;6939;4784 -199;'703;Slovakia;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;193000;194000;207000;262000;310000;376200;292000;357000;380000;389000;394000;427000;381000;374000;404000;398959;381598;229869;189471;182000;173000;173000;249405;278200;278165;284023;271377;418675;457453;443541;395595 -199;'703;Slovakia;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11345;23000;28000;24600;37800;92500;104336;116000;161000;81000;113000;163000;150000;164000;176000;193522;173005;141467;273852;306936;260899;264390;228475;235500;244908;249174;239168;252140;291161;287470;267138 -199;'703;Slovakia;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9373;18738;26087;25486;51466;65360;64271;75013;102265;45795;108305;140935;96758;120472;218702;234835;186058;313489;282473;279787;235626;245381;206377;213209;232127.27;252158;222822;211778;272826;308270;248306 -199;'703;Slovakia;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28632;139000;149000;120600;98500;220500;244422;242000;214000;201000;216000;240000;253000;273000;291000;81740;256281;209445;91819;103165;99508;96240;97717;104528;104497;90486;89421;120043;369236;323993;291085 -199;'703;Slovakia;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11702;82761;92929;67017;72087;143780;144806;135221;101518;95079;120138;152252;145922;189805;269597;118473;203298;556650;126994;137156;109231;101640;88062;92068;93477.69;104227;101150;125554;265851;315100;245049 -199;'703;Slovakia;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72000;77000;97000;133000;114100;84000;105000;118000;129000;132000;145000;139000;136000;143000;144916;139234;142709;135431;130000;125000;130000;120000;133700;137760;138094;130139;135382;127656;119505;103032 -199;'703;Slovakia;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;4000;1400;17800;4200;4199;4000;21000;5000;7000;7000;7000;8000;8000;8521;8781;30618;21817;21196;15278;24780;25769;30259;31702;26658;22826;21289;17288;17939;18367 -199;'703;Slovakia;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3117;4936;1860;36297;3785;3480;3017;20907;3925;6265;7320;8732;10291;14840;20358;15868;89643;33521;28943;20304;31540;32417;40545;46832.36;45429;35849;31300;28795;29474;26327 -199;'703;Slovakia;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20000;18000;24000;95100;45800;41404;36000;28000;29000;30000;32000;24000;19000;14000;10995;12993;117906;22865;21824;26622;23610;17684;19213;19021;19662;18486;19215;12985;9702;3039 -199;'703;Slovakia;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12492;12121;15662;70169;40280;32092;27422;20895;21941;25816;29824;24128;19885;18898;16395;16991;325069;31148;39067;34703;29387;19181;20034;20334.08;25087;20523;20806;16218;17435;5238 -199;'703;Slovakia;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;205200;73000;117000;143000;249000;252000;267000;238000;234000;261000;254043;242364;87160;54040;52000;48000;43000;129405;144500;140405;145929;141238;283293;329797;324036;292563 -199;'703;Slovakia;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74000;86307;98000;124000;75000;105000;148000;142000;155000;167000;158011;147655;98216;251425;284954;245190;239200;202215;204658;212536;221812;215616;229858;273022;268990;248164 -199;'703;Slovakia;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46119;47474;56139;76975;40899;100894;124361;84297;106716;201250;191663;148674;172697;245301;245244;211512;209660;169555;167772;180116.07;202123;182176;175962;239404;274066;214766 -199;'703;Slovakia;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;152000;171505;180000;170000;169000;185000;206000;228000;253000;277000;70527;243151;91539;68821;81255;72778;72400;79898;85126;85295;70632;70787;100730;356191;314227;288023 -199;'703;Slovakia;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97345;104865;100587;76301;72090;93710;120264;121155;154751;250699;100711;185836;231581;94919;96438;72997;69976;67665;70797;71464.29;78055;79501;104182;249292;297277;239418 -199;'703;Slovakia;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20000;76000;81000;103000;119000;;;;;;;;;;;;;;;;;;;;;;;;;; -199;'703;Slovakia;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11345;5000;5000;5000;20000;;;;;;;;;;;;;;;;;;;;;;;;;; -199;'703;Slovakia;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9373;2498;3367;3367;15169;;;;;;;;;;;;;;;;;;;;;;;;;; -199;'703;Slovakia;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28632;15000;15000;19000;3400;;;;;;;;;;;;;;;;;;;;;;;;;; -199;'703;Slovakia;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11702;9369;10101;12399;1918;;;;;;;;;;;;;;;;;;;;;;;;;; -199;'703;Slovakia;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;161100;18000;16000;16000;176000;180000;182000;165000;160000;206000;225486;218438;28932;17938;17000;16000;15000;62110;63700;60088;61000;58000;130000;185000;180000;160000 -199;'703;Slovakia;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16700;21523;23000;107000;24000;27000;79000;83000;89000;95000;84012;70340;20934;108628;101343;104187;76190;93263;102542;101023;108242;108638;112362;136607;133922;123609 -199;'703;Slovakia;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6151;7302;8343;58342;9179;12027;34517;36115;46747;75011;66939;36938;23198;76834;64210;64646;46099;49023;52230;56343.25;70524;56833;52472;84664;101561;69959 -199;'703;Slovakia;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111200;122214;133000;146000;150000;168000;185000;219000;241000;259000;59772;229887;30162;53526;59926;52364;58200;59841;62881;60151;60228;60773;56404;246781;236427;218615 -199;'703;Slovakia;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40666;42181;51331;57898;62748;84760;99675;112759;142267;214844;75682;161704;72208;66374;71349;56062;61699;52044;54411;54187.01;61164;58704;52015;172150;198501;141799 -199;'703;Slovakia;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;10000;13000;18000;13000;27000;30000;41000;42000;0;0;0;45250;28055;28000;25000;23000;4880;5700;5723;5300;4000;75000;60000;60000;50000 -199;'703;Slovakia;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28800;30456;34000;5000;1000;32000;37000;21000;31000;36000;30389;41344;63049;88464;123627;82738;81700;42247;39627;40532;41707;39860;43486;45797;46761;42177 -199;'703;Slovakia;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23656;24370;28783;8573;442;52609;65000;17551;28453;76196;64240;75215;100892;102923;117952;89084;89244;59884;57288;57469.91;60896;54664;58881;63057;72372;65609 -199;'703;Slovakia;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15800;17076;15000;7000;0;0;8000;2000;4000;13000;7470;11682;47477;5670;8491;3243;1090;3671;3921;3426;4432;6488;41276;81948;12144;9205 -199;'703;Slovakia;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45100;48840;34624;8454;0;0;12895;2728;5438;28746;19217;21096;105631;18476;18198;9483;2372;8454;8285;7758.76;10996;16413;48126;47202;21243;26777 -199;'703;Slovakia;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44100;45000;54000;73000;27000;17000;24000;19000;18000;55000;28557;23926;12978;8047;7000;7000;5000;62415;75100;74594;79629;79238;78293;84797;84036;82563 -199;'703;Slovakia;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19900;23430;29000;12000;50000;46000;28000;31000;28000;30000;35748;30207;14175;46208;52307;49963;69140;57938;53588;61556;60994;58267;64480;81289;81031;76565 -199;'703;Slovakia;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13398;12402;14985;10031;31278;36258;22829;27011;26901;43480;54538;32755;47674;59997;57942;51447;68077;55772;52678;60265.27;63946;65255;59410;85443;94025;74394 -199;'703;Slovakia;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17000;22707;20000;17000;11000;8000;8000;7000;8000;5000;3265;1542;13900;9295;12814;17031;12560;16127;17790;21459;5789;3403;2970;27359;65397;59719 -199;'703;Slovakia;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9092;11050;10770;9920;7160;6164;6233;5668;7046;7109;5708;2888;53742;9726;6815;7272;5363;6886;7596;9318.29;5767;4309;4000;29873;77323;70557 -199;'703;Slovakia;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;34000;36000;33000;28000;31000;13000;14000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -199;'703;Slovakia;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8600;10898;12000;0;0;0;4000;7000;7000;6000;7862;5764;58;8125;7677;8302;12170;8767;8901;9425;10869;8851;9530;9329;7276;5813 -199;'703;Slovakia;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2914;3400;4028;29;0;0;2015;3620;4615;6563;5946;3766;933;5547;5140;6335;6240;4876;5576;6037.64;6757;5424;5199;6240;6108;4804 -199;'703;Slovakia;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8000;9508;12000;0;8000;9000;5000;0;0;0;20;40;0;330;24;140;550;259;534;259;183;123;80;103;259;484 -199;'703;Slovakia;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2487;2794;3862;29;2182;2786;1461;0;0;0;104;148;0;343;76;180;542;281;505;200.22;128;75;41;67;210;285 -199;'703;Slovakia;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;173000;46000;49000;62000;58000;56900;135000;135000;119000;11000;10000;15000;4000;4000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -199;'703;Slovakia;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15000;19000;18200;0;14300;13830;14000;16000;1000;1000;8000;1000;1000;1000;26990;16569;12633;610;786;431;410;491;583;670;704;726;993;851;541;607 -199;'703;Slovakia;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13123;17784;20259;0;15456;13317;15857;4383;971;1146;9254;3729;3465;2612;22814;21516;51149;3651;5600;3810;4181;4405;4892;5178.85;4606;4797;4516;4627;4730;7213 -199;'703;Slovakia;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104000;116000;77600;0;22700;31513;26000;16000;3000;1000;2000;1000;1000;0;218;137;0;133;86;108;230;135;189;181;192;148;98;60;64;23 -199;'703;Slovakia;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60900;70707;38956;0;6155;7849;7212;4322;1048;612;2164;639;15169;0;1367;471;0;927;1651;1531;2277;1216;1237;1679.32;1085;1126;566;341;388;393 -199;'703;Slovakia;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;398819.28;446066;449399;511572;649289;677935;574442 -199;'703;Slovakia;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;899906.08;971853;874021;813854;965788;1002083;905507 -199;'703;Slovakia;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25324.54;32109;35153;38775;53779;33586;28106 -199;'703;Slovakia;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18129.66;15509;27061;20192;26845;22538;11898 -199;'703;Slovakia;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10362.63;11921;11216;14407;22511;12307;11401 -199;'703;Slovakia;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8109.72;6851;6672;6993;8252;6846;6465 -199;'703;Slovakia;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14961.91;20188;23937;24368;31268;21279;16705 -199;'703;Slovakia;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10019.94;8658;20389;13199;18593;15692;5433 -199;'703;Slovakia;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44564.47;51928;48065;52299;95835;103937;80780 -199;'703;Slovakia;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50665.92;59814;52485;46298;74831;91897;87620 -199;'703;Slovakia;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9117.38;11049;11871;11181;14377;15421;16135 -199;'703;Slovakia;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11379.81;15496;14969;21973;25239;18912;20480 -199;'703;Slovakia;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74513.08;74224;73181;72539;88230;85572;83708 -199;'703;Slovakia;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;136732.65;162036;163783;165693;181406;170350;155607 -199;'703;Slovakia;1636;Glue-laminated timber (glulam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31154;29695 -199;'703;Slovakia;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20500;18000 -199;'703;Slovakia;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26817;23792 -199;'703;Slovakia;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24941;26339 -199;'703;Slovakia;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40558;24258 -199;'703;Slovakia;1688;Cross-laminated timber (CLT or X-lam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21020;25000 -199;'703;Slovakia;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26401;25000 -199;'703;Slovakia;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25992;25954 -199;'703;Slovakia;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18227;24300 -199;'703;Slovakia;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18278;19033 -199;'703;Slovakia;1684;I-beams (I-joists);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11200;6323 -199;'703;Slovakia;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2600;2000 -199;'703;Slovakia;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;2163 -199;'703;Slovakia;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10900;5000 -199;'703;Slovakia;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13000;6489 -199;'703;Slovakia;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;219938;238331;241649;303433;354563;404118;335554 -199;'703;Slovakia;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;606670;643553;559453;517946;604587;655481;584074 -199;'703;Slovakia;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3538.7;3986;4981;5540;7503;2938;2328 -199;'703;Slovakia;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8975.19;9514;6509;6388;8829;6392;6107 -199;'703;Slovakia;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21823.13;34439;34499;27805;35002;32363;27831 -199;'703;Slovakia;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67352.87;65931;49761;35364;44051;36513;39721 -199;'703;Slovakia;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;395977.97;431132;417839;419313;489950;524189;561866 -199;'703;Slovakia;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;383935.31;412064;393616;380507;421987;495570;529148 -199;'703;Slovakia;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5468.88;7164;6669;5844;7609;7586;5178 -199;'703;Slovakia;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;276.79;243;176;140;234;137;84 -199;'703;Slovakia;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33566.41;41255;36518;36488;42868;39973;50011 -199;'703;Slovakia;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6401.03;4738;5406;4422;4817;6336;7796 -199;'703;Slovakia;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56525.89;61156;61895;65053;72148;87980;121308 -199;'703;Slovakia;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;218272.31;231513;215322;201113;210693;264817;281910 -199;'703;Slovakia;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;203564;231389;224261;220052;261982;290990;281934 -199;'703;Slovakia;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89800.28;110183;108396;114237;135791;156192;166503 -199;'703;Slovakia;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96852.8;90168;88496;91876;105343;97660;103435 -199;'703;Slovakia;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69184.91;65387;64316;60595;70452;68088;72855 -198;'705;Slovenia;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1479440.33;1727302;1593952;1540329;1685280;1836686;1633331 -198;'705;Slovenia;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1814505.33;2037626;1884557;1763046;2152186;2451195;2112261 -198;'705;Slovenia;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;276830;254761;322176;347821;287560;481535;331894;346379;392151;352766;378995;471700;556946;594841;618714;904924;913246;727731;833695;896716;877422;918912;965306;882331;966057;1035106.98;1244161;1111209;1048764;1053015;1136625;995366 -198;'705;Slovenia;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;322422;358395;423710;374379;330268;726128;400339;380236;423961;406151;459546;518348;637935;698929;750769;1060443;1133985;962436;1012618;1144573;1080535;1103107;1232202;1061078;1106115;1122135.85;1309160;1189437;1094872;1341140;1595922;1315357 -198;'705;Slovenia;1861;Roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1671000;1065000;1944000;1866000;1991000;2208000;2133000;2068000;2253000;2257000;2283000;2591000;2551000;2732822;3179126;2881650;2990062;2930216;2945449;3387867;3341089;3415177;5099340;5054443;5381391;4509048;5039291;4618159;3890783;3716458;4156986;4383318 -198;'705;Slovenia;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;210194;134598;291000;294900;258000;333000;293900;490832;495910;439720;423780;376368;402824;409084;415985;253922;241103;261323;306861;448207;460403;573891;455449;448539;458500;508164;535121;627944;866710;905518;801056;642854 -198;'705;Slovenia;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13909;7071;17848;22283;9201;13234;16916;23830;22435;21906;27464;34300;42468;41552;43082;43207;36890;29976;33652;50318;47654;59502;51950;46541;49311;50096.01;57637;58962;74516;102474;106952;92375 -198;'705;Slovenia;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;355163;206000;224000;159800;182000;301000;324900;325475;303980;321200;361510;280455;244132;422584;545678;705730;724368;766944;844016;1142434;1323545;1549739;2384832;2682657;3083548;2703746;2695003;1945883;1587081;1376217;1414381;1398565 -198;'705;Slovenia;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21330;11810;15056;11686;11109;13298;15365;14169;12183;12372;15250;18275;19420;32976;43923;63617;67353;61270;75720;113860;116979;144582;198921;183992;223643;220956.56;249802;171304;143085;162734;197798;182295 -198;'705;Slovenia;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;752000;709000;1202000;1043000;1278000;1172000;1187000;1147000;1209000;1241000;1272000;1549000;1556000;1712563;1885220;1788620;1746781;1582169;1555726;1758914;1835592;1895966;2764190;3062520;3493018;2905015;3443747;2781989;2105567;1896247;2236854;2279991 -198;'705;Slovenia;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;206027;240297;355263;606826;581087;522552;393388 -198;'705;Slovenia;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15055.97;19195;24630;37776;48698;45551;35796 -198;'705;Slovenia;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1857704;2045827;1241216;872371;576228;622391;700195 -198;'705;Slovenia;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;144052.45;176431;95051;67708;58909;66753;70080 -198;'705;Slovenia;1863;Roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;919000;356000;742000;823000;713000;1036000;946000;921000;1044000;1016000;1011000;1042000;995000;1020259;1293906;1093030;1243281;1348047;1389723;1628953;1505497;1519211;2335150;1991923;1888373;1604033;1595544;1836170;1785216;1820211;1920132;2103327 -198;'705;Slovenia;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;302137;294824;272681;259884;324431;278504;249466 -198;'705;Slovenia;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35040.04;38442;34332;36740;53776;61401;56579 -198;'705;Slovenia;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;846042;649176;704667;714710;799989;791990;698370 -198;'705;Slovenia;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76904.1;73371;76253;75377;103825;131045;112215 -198;'705;Slovenia;1864;Wood fuel;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;520000;107000;235000;227000;362000;546000;539000;505000;532000;295000;280000;359000;725000;943341;983560;788277;928292;982600;1104045;1336169;1120990;1127017;1588660;1242229;1271712;1038843;1118134;1116909;1073650;1043297;1149801;1449069 -198;'705;Slovenia;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2452;1224;9000;14000;10000;4000;9700;17763;1500;900;640;856;8542;19936;53962;59195;80822;97871;113347;202578;255911;246592;167678;151626;184371;188471;183347;167722;147113;190071;169223;160993 -198;'705;Slovenia;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;23;371;708;401;166;177;285;38;24;27;60;578;1432;4258;4864;7309;8394;9879;17126;19890;20739;14706;11702;13798;15963.35;17601;13962;12044;16157;20189;19254 -198;'705;Slovenia;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74546;71000;102000;75400;110000;111000;89100;75358;61800;54620;60430;60590;61425;125747;162930;199985;248844;260080;278399;334147;295251;351444;419989;379503;366014;502595;388276;213208;215140;216253;226772;215300 -198;'705;Slovenia;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2804;2566;3140;2887;4033;3620;2834;2386;1803;1538;1833;2852;3515;7617;12069;17540;21895;21306;24680;31588;25699;32208;33089;25287;26130;34587.21;33314;19354;18233;21890;29056;26433 -198;'705;Slovenia;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;1000;1000;1000;1000;0;0;0;0;0;0;0;125000;171227;109590;126296;130540;113763;136382;176673;172499;174514;201820;202520;180018;153015;198020;146826;121294;105964;192270;257860 -198;'705;Slovenia;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10027;2186;9576;8527;26555;9210;10635 -198;'705;Slovenia;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;503.71;126;337;393;990;488;964 -198;'705;Slovenia;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;148036;100979;59583;38779;36761;55020;46203 -198;'705;Slovenia;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7594.91;5850;3908;1886;2081;3692;2608 -198;'705;Slovenia;1628;Wood fuel, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;518000;106000;234000;226000;361000;546000;539000;505000;532000;295000;280000;359000;600000;772114;873970;661981;797752;868837;967663;1159496;948491;952503;1386840;1039709;1091694;885828;920114;970083;952356;937333;957531;1191209 -198;'705;Slovenia;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;178444;181161;158146;138586;163516;160013;150358 -198;'705;Slovenia;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15459.65;17475;13625;11651;15167;19701;18290 -198;'705;Slovenia;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;354559;287297;153625;176361;179492;171752;169097 -198;'705;Slovenia;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26992.31;27464;15446;16347;19809;25364;23825 -198;'705;Slovenia;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2452;1224;9000;14000;10000;4000;9700;17763;1500;900;640;856;8542;19936;53962;59195;80822;97871;113347;202578;255911;246592;167678;151626;184371;;;;;;; -198;'705;Slovenia;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;23;371;708;401;166;177;285;38;24;27;60;578;1432;4258;4864;7309;8394;9879;17126;19890;20739;14706;11702;13798;;;;;;; -198;'705;Slovenia;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74546;71000;102000;75400;110000;111000;89100;75358;61800;54620;60430;60590;61425;125747;162930;199985;248844;260080;278399;334147;295251;351444;419989;379503;366014;;;;;;; -198;'705;Slovenia;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2804;2566;3140;2887;4033;3620;2834;2386;1803;1538;1833;2852;3515;7617;12069;17540;21895;21306;24680;31588;25699;32208;33089;25287;26130;;;;;;; -198;'705;Slovenia;1865;Industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1151000;958000;1709000;1639000;1629000;1662000;1594000;1563000;1721000;1962000;2003000;2232000;1826000;1789481;2195566;2093373;2061770;1947616;1841404;2051698;2220099;2288160;3510680;3812214;4109679;3470205;3921157;3501250;2817133;2673161;3007185;2934249 -198;'705;Slovenia;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;207742;133374;282000;280900;248000;329000;284200;473069;494410;438820;423140;375512;394282;389148;362023;194727;160281;163452;193514;245629;204492;327299;287771;296913;274129;319693;351774;460222;719597;715447;631833;481861 -198;'705;Slovenia;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13841;7048;17477;21575;8800;13068;16739;23545;22397;21882;27437;34240;41890;40120;38824;38343;29581;21582;23773;33192;27764;38763;37244;34839;35513;34132.66;40036;45000;62472;86317;86763;73121 -198;'705;Slovenia;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;280617;135000;122000;84400;72000;190000;235800;250117;242180;266580;301080;219865;182707;296837;382748;505745;475524;506864;565617;808287;1028294;1198295;1964843;2303154;2717534;2201151;2306727;1732675;1371941;1159964;1187609;1183265 -198;'705;Slovenia;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18526;9244;11916;8799;7076;9678;12531;11783;10380;10834;13417;15423;15905;25359;31854;46077;45458;39964;51040;82272;91280;112374;165832;158705;197513;186369.34;216488;151950;124852;140844;168742;155862 -198;'705;Slovenia;1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;750000;708000;1201000;1042000;1277000;1172000;1187000;1147000;1209000;1241000;1272000;1549000;1431000;1541336;1775630;1662324;1616241;1468406;1419344;1582241;1663093;1721452;2562370;2860000;3313000;2752000;3245727;2635163;1984273;1790283;2044584;2022131 -198;'705;Slovenia;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56775;36458;142000;175000;172000;176000;148700;155240;161880;183350;175170;199477;218082;183078;189006;73554;48359;58679;59244;103776;119279;193705;153655;184825;143724;196000;238111;345687;598299;554532;513342;382753 -198;'705;Slovenia;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3515;2158;8689;12775;4890;5254;8441;7697;6631;6700;6872;10269;12155;10113;9716;5792;4434;4324;4807;9483;10079;17368;15242;15035;11490;14552.26;19069;24293;37383;47708;45063;34832 -198;'705;Slovenia;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;128412;88000;61000;38700;30000;35000;45400;31853;29790;52830;87540;67606;90480;206893;275978;308565;274149;306085;337480;512887;669902;791843;1363468;1664676;2228330;1709668;1944848;1181633;833592;539467;567371;653992 -198;'705;Slovenia;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8167;4622;5958;3149;1959;2462;2731;1896;1553;2431;4242;4173;5686;14930;20533;26516;26351;24658;31863;57297;65613;80951;120619;116179;160808;136457.55;170581;91143;65822;56828;63061;67472 -198;'705;Slovenia;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56775;36458;142000;175000;172000;176000;148700;155240;161880;183350;175170;199477;218082;183078;189006;73554;48359;58679;59244;103776;119279;193705;153655;184825;143724;196000;238111;345687;598299;554532;513342;382753 -198;'705;Slovenia;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3515;2158;8689;12775;4890;5254;8441;7697;6631;6700;6872;10269;12155;10113;9716;5792;4434;4324;4807;9483;10079;17368;15242;15035;11490;14552.26;19069;24293;37383;47708;45063;34832 -198;'705;Slovenia;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;128412;88000;61000;38700;30000;35000;45400;31853;29790;52830;87540;67606;90480;206893;275978;308565;274149;306085;337480;512887;669902;791843;1363468;1664676;2228330;1709668;1944848;1181633;833592;539467;567371;653992 -198;'705;Slovenia;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8167;4622;5958;3149;1959;2462;2731;1896;1553;2431;4242;4173;5686;14930;20533;26516;26351;24658;31863;57297;65613;80951;120619;116179;160808;136457.55;170581;91143;65822;56828;63061;67472 -198;'705;Slovenia;1867;Industrial roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;401000;250000;508000;597000;352000;490000;407000;416000;512000;721000;731000;683000;395000;248145;419936;431049;445529;479210;422060;469457;557006;566708;948310;952214;796679;718205;675430;866087;832860;882878;962601;912118 -198;'705;Slovenia;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;150967;96916;140000;105900;76000;153000;135500;317829;332530;255470;247970;176035;176200;206070;173017;121173;111922;104773;134270;141853;85213;133594;134116;112088;130405;123693;113663;114535;121298;160915;118491;99108 -198;'705;Slovenia;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10326;4890;8788;8800;3910;7814;8298;15848;15766;15182;20565;23971;29735;30007;29108;32551;25147;17258;18966;23709;17685;21395;22002;19804;24023;19580.39;20967;20707;25089;38609;41700;38289 -198;'705;Slovenia;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;152205;47000;61000;45700;42000;155000;190400;218264;212390;213750;213540;152259;92227;89944;106770;197180;201375;200779;228137;295400;358392;406452;601375;638478;489204;491483;361879;551042;538349;620497;620238;529273 -198;'705;Slovenia;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10359;4622;5958;5650;5117;7216;9800;9887;8827;8403;9175;11250;10219;10429;11321;19561;19107;15306;19177;24975;25667;31423;45213;42526;36705;49911.8;45907;60807;59030;84016;105681;88390 -198;'705;Slovenia;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5697;861;0;0;0;4000;0;31;0;970;6290;1791;5362;3419;5258;5910;3084;2723;1556;1301;1206;1114;1206;1490;1329;1101;942;932;649;925;1040;1196 -198;'705;Slovenia;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;916;86;0;0;0;210;21;33;0;223;2927;1307;4169;2227;3251;4326;2188;1800;1044;1045;910;860;1000;1401;1459;993.38;836;893;673;833;991;1215 -198;'705;Slovenia;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;0;60;0;54;49;24;0;1183;0;0;0;0;0;0;0;120;0;645;9;144;37;21;72;56 -198;'705;Slovenia;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;24;0;1;44;13;0;1115;0;0;0;0;0;0;0;179;0;48.34;1;49;13;2;85;117 -198;'705;Slovenia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;145270;96055;140000;105900;76000;149000;135500;317798;332530;254500;241680;174244;170838;202651;167759;115263;108838;102050;132714;140552;84007;132480;132910;110598;129076;122592;112721;113603;120649;159990;117451;97912 -198;'705;Slovenia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9410;4804;8788;8800;3910;7604;8277;15815;15766;14959;17638;22664;25566;27780;25857;28225;22959;15458;17922;22664;16775;20535;21002;18403;22564;18587.01;20131;19814;24416;37776;40709;37074 -198;'705;Slovenia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;152205;47000;61000;45700;42000;155000;190400;218263;212390;213690;213540;152205;92178;89920;106770;195997;201375;200779;228137;295400;358392;406452;601375;638358;489204;490838;361870;550898;538312;620476;620166;529217 -198;'705;Slovenia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10359;4622;5958;5650;5117;7216;9800;9887;8827;8379;9175;11249;10175;10416;11321;18446;19107;15306;19177;24975;25667;31423;45213;42347;36705;49863.45;45906;60758;59017;84014;105596;88273 -198;'705;Slovenia;1868;Sawlogs and veneer logs;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;730000;645000;1045000;918000;1028000;1027000;1001000;992000;1120000;1144000;1164000;1291000;1372000;1402630;1712060;1698699;1685662;1514330;1452089;1581548;1641288;1694721;2117790;2530823;2988774;2495273;2832896;2475584;1971230;1977171;2265491;2160737 -198;'705;Slovenia;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;499000;487000;720000;677000;790000;718000;736000;727000;786000;819000;844000;939000;1107000;1210328;1422090;1412932;1385903;1213078;1179884;1297112;1389607;1428923;1814660;2210000;2660000;2200000;2553360;2123245;1623576;1509954;1766192;1673702 -198;'705;Slovenia;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;231000;158000;325000;241000;238000;309000;265000;265000;334000;325000;320000;352000;265000;192302;289970;285767;299759;301252;272205;284436;251681;265798;303130;320823;328774;295273;279536;352339;347654;467217;499299;487035 -198;'705;Slovenia;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;451000;434000;396000;410000;414000;572000;283000;287795;444890;353255;315970;369995;315853;380244;515600;477136;1179780;1109211;989654;907940;1003237;961493;796129;647915;696341;703001 -198;'705;Slovenia;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;356000;329000;302000;310000;323000;452000;210000;245855;331350;222563;204136;211150;186968;222069;232192;250559;634080;550000;578000;532000;659035;491918;345697;262329;274392;332429 -198;'705;Slovenia;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95000;105000;94000;100000;91000;120000;73000;41940;113540;130692;111834;158845;128885;158175;283408;226577;545700;559211;411654;375940;344202;469575;450432;385586;421949;370572 -198;'705;Slovenia;1870;Pulpwood and particles (1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;195000;155000;396000;397000;499000;545000;;;;;;;;;;;;;;;;;;;;;;;;;; -198;'705;Slovenia;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;142000;130000;264000;219000;392000;375000;;;;;;;;;;;;;;;;;;;;;;;;;; -198;'705;Slovenia;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53000;25000;132000;178000;107000;170000;;;;;;;;;;;;;;;;;;;;;;;;;; -198;'705;Slovenia;1871;Other industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;226000;158000;268000;324000;102000;90000;142000;137000;205000;408000;425000;369000;171000;99056;38616;41419;60138;63291;73462;89906;63211;116303;213110;172180;131251;66992;85024;64173;49774;48075;45353;70511 -198;'705;Slovenia;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109000;91000;217000;146000;95000;79000;95000;91000;121000;112000;105000;158000;114000;85153;22190;26829;26202;44178;52492;63060;41294;41970;113630;100000;75000;20000;33332;20000;15000;18000;4000;16000 -198;'705;Slovenia;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117000;67000;51000;178000;7000;11000;47000;46000;84000;296000;320000;211000;57000;13903;16426;14590;33936;19113;20970;26846;21917;74333;99480;72180;56251;46992;51692;44173;34774;30075;41353;54511 -198;'705;Slovenia;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;500;500;500;1000;1000;1000;1000;1000;700 -198;'705;Slovenia;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;473;339;200;600;300;300;0;772;0;0;870;872;1115;1689;2653;1830;2141;1510;1548;3966;2464;2698;2255;2447;2569;2664;3337;4227;3664;3556;3176;4442 -198;'705;Slovenia;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;283;177;131;249;162;162;233;268;232;213;329;370;511;716;1109;916;1138;915;798;2022;1331;1299;1185;1143;1308;1439.41;1958;2436;2303;2412;2057;3227 -198;'705;Slovenia;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;296;17;40;40;0;0;0;50;0;0;10;7;54;505;1207;583;774;411;264;1753;475;859;237;217;303;670;958;1647;897;700;889;2202 -198;'705;Slovenia;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115;6;13;13;0;0;14;17;12;12;12;14;40;256;568;281;455;270;175;1245;305;352;107;124;187;386.07;632;996;665;666;682;1926 -198;'705;Slovenia;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;171000;191436;222320;229000;195000;189000;178000;220000;344000;442000;400336;698344;436000;396000;445000;510000;950000;1100000;1100000;1300000;1350000;1330000;1174000;1360000;1360000;1410000 -198;'705;Slovenia;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83900;119165;154360;154260;175830;219934;212349;247827;242078;267265;427308;443032;506055;244094;371792;422410;366691;367466;331814;297138;248320;185858;176153;272115;259860;239408 -198;'705;Slovenia;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2816;3563;3331;3101;3977;6009;5834;7351;8106;10550;21301;24690;29408;11126;15253;16622;16657;12829;11323;9249.71;9166;6847;6760;10100;10674;10282 -198;'705;Slovenia;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35600;19684;16860;29400;51780;85432;103642;222728;355300;452769;511858;513609;515859;277637;534238;591842;646564;733624;737051;744623;836056;963152;846674;698350;997880;841631 -198;'705;Slovenia;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;674;361;344;609;1062;1929;2712;9406;19711;23420;29204;40223;43275;14433;32209;35198;35869;33604;36235;29453.29;38184;40509;32396;38261;58603;51878 -198;'705;Slovenia;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55000;63539;80410;74000;57000;63000;64000;65000;86000;122000;150000;118437;82000;82000;105000;170000;250000;300000;300000;500000;550000;550000;594000;840000;840000;890000 -198;'705;Slovenia;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23389;12000;25000;26400;16000;35000;54700;75097;101850;93960;95920;116584;78236;101088;56331;32710;46132;124644;170454;194269;198792;258397;216374;215335;196245;222154;179209;129812;125876;190910;143710;128809 -198;'705;Slovenia;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;735;207;986;1339;631;1092;2126;2585;2498;2201;2587;3926;2880;3697;1700;1228;1723;5302;7038;9241;9039;11131;11297;7507;7103;7475.42;7085;5216;5107;6911;5430;5215 -198;'705;Slovenia;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1708;9009;3000;4900;8000;14000;18700;8729;4560;10430;11280;22491;49007;102075;142204;154677;196144;177533;153229;200955;281238;335750;341624;379497;391179;572597;684199;772989;719600;578400;885900;745330 -198;'705;Slovenia;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;193;45;82;202;337;426;185;125;251;248;632;1499;3056;4760;6111;7313;7346;6553;10714;13490;16511;15411;14065;15311;22440.42;31175;32486;27211;33035;52701;46388 -198;'705;Slovenia;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101000;103000;137000;137000;137000;122000;116000;127897;141910;155000;138000;126000;114000;155000;258000;320000;250336;579907;354000;314000;340000;340000;700000;800000;800000;800000;800000;780000;580000;520000;520000;520000 -198;'705;Slovenia;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20000;17000;37000;31100;33000;34000;29200;44068;52510;60300;79910;103350;134113;146739;185747;234555;381176;318388;335601;49825;173000;164013;150317;152131;135569;74984;69111;56046;50277;81205;116150;110599 -198;'705;Slovenia;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;774;541;869;775;794;816;690;978;833;900;1390;2083;2954;3654;6406;9322;19578;19388;22370;1885;6214;5491;5360;5322;4220;1774.29;2081;1631;1653;3189;5244;5067 -198;'705;Slovenia;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11000;11000;16000;26900;26000;14000;16900;10955;12300;18970;40500;62941;54635;120653;213096;298092;315714;336076;362630;76682;253000;256092;304940;354127;345872;172026;151857;190163;127074;119950;111980;96301 -198;'705;Slovenia;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;275;219;217;459;503;272;248;176;219;358;814;1297;1213;6350;14951;17309;21891;32877;36722;3719;18719;18687;20458;19539;20924;7012.86;7009;8023;5185;5226;5902;5490 -198;'705;Slovenia;1605;Sawdust (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95104;90854 -198;'705;Slovenia;1605;Sawdust (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4355;4343 -198;'705;Slovenia;1605;Sawdust (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32426;27790 -198;'705;Slovenia;1605;Sawdust (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2240;2398 -198;'705;Slovenia;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40000;40000;40000;40000;40000;40000;40000 -198;'705;Slovenia;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0 -198;'705;Slovenia;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0 -198;'705;Slovenia;1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0 -198;'705;Slovenia;1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0 -198;'705;Slovenia;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88000;95000;105000;115000;120000;120000;123000;139000;153000;154000;169000;169000 -198;'705;Slovenia;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;127166;167399;205735;180699;231590;215407;278957;272411;294879;196135;154447;167743 -198;'705;Slovenia;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23986;33840;45479;31585;41873;39465.88;57654;52307;47531;38771;49661;44719 -198;'705;Slovenia;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111929;115855;152068;147538;169641;225771;241916;254910;243558;226981;192866;184291 -198;'705;Slovenia;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23573;26034;38502;30053;34056;46200.95;55899;56262;51307;50160;69908;61622 -198;'705;Slovenia;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83000;90000;100000;110000;115000;115000;118000;134000;148000;149000;164000;164000 -198;'705;Slovenia;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60166;118947;157911;150378;204587;175509;227585;229473;257043;165594;125424;132088 -198;'705;Slovenia;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12186;26163;37257;28495;38634;34153.74;49207;46148;43170;34907;43422;37827 -198;'705;Slovenia;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51529;69581;110396;122258;139851;177824;188445;208542;197636;203591;165474;139258 -198;'705;Slovenia;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10690;16697;30623;26082;29995;37912.03;45753;46348;42030;46684;62546;52563 -198;'705;Slovenia;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000 -198;'705;Slovenia;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67000;48452;47824;30321;27003;39898;51372;42938;37836;30541;29023;35655 -198;'705;Slovenia;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11800;7677;8222;3090;3239;5312.14;8447;6159;4361;3864;6239;6892 -198;'705;Slovenia;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60400;46274;41672;25280;29790;47947;53471;46368;45922;23390;27392;45033 -198;'705;Slovenia;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12883;9337;7879;3971;4061;8288.92;10146;9914;9277;3476;7362;9059 -198;'705;Slovenia;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;402600;513000;513000;511000;496000;510000;664000;455000;439000;459900;506000;511000;461000;527000;580000;610000;475000;525000;760000;703000;660000;660000;700000;725000;730000;745000;810000;944000;1002000;1044000;1175000;1093000 -198;'705;Slovenia;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;123289;113078;114000;106800;107000;128000;128500;170762;197500;165430;186750;204254;224165;214715;223000;982180;938896;1013167;959090;821018;1007562;1087026;887917;926460;744416;785736;841753;851663;754804;661743;608662;716490 -198;'705;Slovenia;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33622;29765;29456;46056;38322;37094;35164;43062;45241;37490;47036;60182;72253;72824;75172;242479;212739;197587;196072;186273;212037;233520;206564;178625;139709;168321.46;186471;167414;143914;181856;173262;171787 -198;'705;Slovenia;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;414404;359609;383000;381900;241000;384000;353200;324637;343880;342010;368480;373293;411356;428825;432145;930656;1037732;1069373;1091432;983053;1146281;1126347;1050184;993601;888933;728305;1010454;1076893;932241;957810;968332;948556 -198;'705;Slovenia;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69076;54519;56134;70877;57514;64497;62146;57184;57072;52893;61769;68136;82105;81650;87076;233985;260622;236591;243341;238665;265323;280449;279217;222101;190486;167697.19;241478;229812;204006;307039;315635;262287 -198;'705;Slovenia;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;386000;381000;386000;344000;335000;367000;535000;338000;300000;302800;337000;340000;304000;387000;446000;464000;367000;449000;625000;610000;580000;580000;610000;625000;625000;625000;690000;819000;877000;904000;1030000;934000 -198;'705;Slovenia;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30477;21078;19000;18000;29000;44000;38400;51213;54100;43600;56160;63752;59861;59717;55866;808525;810823;940648;873639;726957;922066;987398;796079;819973;638038;683000;708565;745389;656812;562777;525357;628643 -198;'705;Slovenia;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6376;6593;5164;9032;12121;11361;7943;9234;8743;8015;11404;16358;17355;17903;17253;171289;152140;166890;164541;147716;178879;200228;165432;139175;101689;128611;134636;125590;107798;139109;131255;127564 -198;'705;Slovenia;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;265636;257000;269000;257900;141000;281000;246800;215648;225950;247340;281690;289732;321447;344974;334611;833429;944170;1002819;1021413;910967;1079148;1050266;967390;896015;775599;612497;880156;962377;830058;839771;847775;856079 -198;'705;Slovenia;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42795;34654;34137;41280;36259;36640;29237;24223;22224;23307;30715;34269;38346;41643;42673;180970;207805;201964;209139;201855;232900;243596;234706;179087;141710;119847.32;184393;176916;155372;247589;253527;210546 -198;'705;Slovenia;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16600;132000;127000;167000;161000;143000;129000;117000;139000;157100;169000;171000;157000;140000;134000;146000;108000;76000;135000;93000;80000;80000;90000;100000;105000;120000;120000;125000;125000;140000;145000;159000 -198;'705;Slovenia;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92812;92000;95000;88800;78000;84000;90100;119549;143400;121830;130590;140502;164304;154998;167134;173655;128073;72519;85451;94061;85496;99628;91838;106487;106378;102736;133188;106274;97992;98966;83305;87847 -198;'705;Slovenia;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27246;23172;24292;37024;26201;25733;27221;33828;36498;29475;35632;43824;54898;54921;57919;71190;60599;30697;31531;38557;33158;33292;41132;39450;38020;39710.46;51835;41824;36116;42747;42007;44223 -198;'705;Slovenia;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;148768;102609;114000;124000;100000;103000;106400;108989;117930;94670;86790;83561;89909;83851;97534;97227;93562;66554;70019;72086;67133;76081;82794;97586;113334;115808;130298;114516;102183;118039;120557;92477 -198;'705;Slovenia;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26281;19865;21997;29597;21255;27857;32909;32961;34848;29586;31054;33867;43759;40007;44403;53015;52817;34627;34202;36810;32423;36853;44511;43014;48776;47849.88;57085;52896;48634;59450;62108;51741 -198;'705;Slovenia;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23000;21000;21000;27000;21000;18000;22000;21090;23000;28000;130000;52000;48000;64000;68000;45000;65000;37000;20000;30000;25000;25000;21000;20000;24000;22000;18000;18000;19000;23000;28000;26000 -198;'705;Slovenia;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8975;9874;5000;9000;9000;11000;9500;9110;9680;7780;6590;6436;12546;15073;14493;6435;13969;9550;9657;9100;8514;10107;11614;12853;11838;11333;12204;13550;12272;14120;13479;13409 -198;'705;Slovenia;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17459;18166;11236;25564;20686;20895;20242;17078;15882;14405;16710;19570;25154;27699;25897;24991;30482;21774;20186;19766;15313;15341;17639;20024;19827;23065.98;30243;26318;23390;28482;25792;24306 -198;'705;Slovenia;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11715;10048;2000;8700;11000;12000;15000;16569;20050;20680;23270;24288;22368;25406;27442;24205;29317;19974;18312;21326;17904;19643;18166;17637;23183;20909;22150;22722;21642;29077;32109;29209 -198;'705;Slovenia;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9765;7804;2656;11592;10551;13226;20590;21477;25163;26557;33390;40267;42581;49796;47473;57434;52622;32546;28539;36284;31001;32790;32819;27702;35661;33629.85;35984;37400;39080;54533;62727;61447 -198;'705;Slovenia;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;297000;312000;340000;363000;297000;438000;400000;394000;514000;452000;537000;420000;426000;378000;455000;571000;409275;372390;340000;331000;287000;231000;275000;273000;216000;206000;215000;233000;213000;238000;226000;211000 -198;'705;Slovenia;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48012;39000;79000;75500;73000;84000;101100;120297;122200;147290;183680;241809;239425;280265;335481;312035;265255;219982;240349;227538;215482;223970;222170;244501;281780;283284;295599;286369;275813;302096;283356;196510 -198;'705;Slovenia;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17660;17069;24743;32053;34130;34898;41224;42546;38491;42597;51080;74011;85848;95624;110736;133799;133112;94273;99805;110895;100885;101874;110692;103981;116006;123362.85;136067;125483;123559;162746;149572;109513 -198;'705;Slovenia;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112563;97652;162000;131300;121100;116100;164400;143280;166180;170020;190720;158056;199908;226606;264283;384265;340991;273179;296521;282974;234533;212620;253986;259337;223302;224907;224255;237914;227748;253498;223253;198298 -198;'705;Slovenia;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33649;37421;38758;50553;42096;32058;39686;33540;32483;36253;43064;49557;66505;84936;119444;164931;167403;119262;122252;134312;106584;101380;118092;103960;103980;108566.54;119881;116979;114130;153754;162373;131970 -198;'705;Slovenia;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65000;63000;64000;75000;17000;24000;32000;53000;35000;37000;15000;24000;25000;27000;81000;171000;70000;103222;100000;81000;67000;66000;70000;78000;86000;86000;89000;103000;95000;102000;94000;95000 -198;'705;Slovenia;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6360;6000;13000;9000;13000;11000;12800;12254;15790;17800;18350;22870;25063;23244;30632;35239;22796;18036;22898;22250;21228;22478;30278;34269;40798;45027;46692;47377;44846;56687;80265;21255 -198;'705;Slovenia;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4834;5751;7782;10147;12662;8916;9989;9908;10651;12309;13638;19415;24313;24141;26798;33671;28231;17790;23613;26694;23871;25327;30658;29127;35738;40049.29;46875;44233;45000;66532;63053;38067 -198;'705;Slovenia;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14952;12000;21000;20000;16000;15000;15100;14482;16180;16770;17090;16610;22349;41701;87345;90330;93029;78081;73293;67712;52193;47512;53993;59413;67794;65939;73193;72546;78424;82577;79655;70755 -198;'705;Slovenia;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11285;10053;15650;22168;16635;12721;10796;9960;9724;10312;11011;13671;19839;33949;66092;80021;78020;54831;52852;55753;41484;38314;43405;40174;46529;48752.67;60394;57872;59356;81228;84345;68424 -198;'705;Slovenia;1607;Laminated Veneer Lumber (LVL);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -198;'705;Slovenia;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;496;504 -198;'705;Slovenia;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;827;865 -198;'705;Slovenia;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110;165 -198;'705;Slovenia;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;151;243 -198;'705;Slovenia;1646;Particle board and OSB (1961-1994);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;205000;216000;222000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -198;'705;Slovenia;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31672;20000;41000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -198;'705;Slovenia;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8715;6567;9806;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -198;'705;Slovenia;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74932;51000;77000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -198;'705;Slovenia;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13638;17913;9634;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -198;'705;Slovenia;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;249000;246000;351000;268000;251000;389000;364000;458160;240000;214000;130000;136000;211000;147218;117489;130000;130000;90000;40000;75000;65000;0;0;0;0;0;0;0;0 -198;'705;Slovenia;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41000;37000;44000;50700;66924;64510;76490;89520;143736;145566;176584;207806;174800;171760;142973;152466;141445;130846;131847;134518;141723;149261;154713;162741;154972;146992;161688;142523;122347 -198;'705;Slovenia;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13062;12844;13252;15453;17294;14607;15580;17821;29967;35716;41749;49382;56775;59258;43497;42204;47198;43336;40893;49405;45031;43515;46383.88;51165;47259;44591;55467;58044;49990 -198;'705;Slovenia;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71600;73000;81000;104900;89186;105270;96170;96120;69691;85797;87246;96448;128844;124809;91287;103848;96219;71462;39100;62662;58015;6290;4079;5232;4601;4111;6246;5865;3921 -198;'705;Slovenia;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12665;14627;12633;16224;13298;13005;12349;13416;12746;17093;17960;21206;34478;34938;20755;21522;24971;17449;9762;15133;11564;1757;1285.88;1684;1589;1455;2447;2589;1875 -198;'705;Slovenia;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 -198;'705;Slovenia;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5600;9931;6120;9120;9550;7422;3610;3698;7293;3986;7796;9739;11144;10732;12686;14081;14156;17557;33710;23858;27261;30756;35316;35587;32919;31674 -198;'705;Slovenia;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1054;1256;728;963;1392;1792;1257;1282;2109;1644;3321;3436;4188;4551;4496;5074;5171;4754;7194;6424.9;8392;8590;9210;14918;13395;10113 -198;'705;Slovenia;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1760;367;271;261;619;226;468;880;259;266;345;387;401;692;1055;1445;1605;1460;1273;2331;1932;2792 -198;'705;Slovenia;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;205;141;135;95;200;117;195;238;103;135;132;157;147;255;320;436.73;546;448;365;1159;1174;982 -198;'705;Slovenia;1874;Fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27000;33000;54000;39000;34000;63000;100000;90000;90000;51000;63840;156000;187000;221000;238000;189000;192057;151679;110000;120000;130000;125000;130000;130000;130000;120000;126000;130000;118000;136000;132000;116000 -198;'705;Slovenia;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9980;13000;25000;25500;23000;29000;32000;31188;35780;43880;66260;67781;65186;76739;89750;98010;62903;49234;53841;53111;50722;55564;43218;50952;58011;59686;58905;53264;48659;48134;27649;21234 -198;'705;Slovenia;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4111;4751;7155;8844;8624;12730;14728;14088;12505;13745;18229;22837;24562;28452;32447;41709;42302;29550;29800;32452;29182;30580;25458;25069;29559;30504.77;29635;25401;24758;25829;15080;11343 -198;'705;Slovenia;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22679;34652;64000;39700;32100;20100;44400;39612;44730;57080;75750;71388;91491;97398;79871;164865;122685;102931;119121;118777;110533;125621;136930;141217;148163;153444;144225;159307;143940;162344;135801;120830 -198;'705;Slovenia;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8726;9455;13474;15720;10834;6704;12666;10282;9754;13592;18432;22999;29438;32932;31946;50315;54250;43438;47775;53453;47519;53147;59407;51967;55374;58091.26;57257;57070;52954;68920;74265;60689 -198;'705;Slovenia;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39000;34000;63000;100000;90000;90000;51000;63840;156000;187000;142000;110000;110000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -198;'705;Slovenia;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6600;8000;10000;13100;12334;13420;15910;16740;17024;16941;20364;25429;21834;19758;15066;13423;11216;9575;10036;8794;8810;12622;12741;10238;8532;9005;7653;3613;2303 -198;'705;Slovenia;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3215;4082;6471;9276;8081;7017;7412;7840;10144;11729;13333;17194;17724;17902;12350;10320;9605;8114;8072;7017;5713;8523;8919.07;7473;5971;6479;5677;3473;2438 -198;'705;Slovenia;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35900;31000;19000;43600;29015;23730;40990;43890;45891;48021;47874;46511;12110;9252;7725;4916;3679;6087;7601;9067;9639;12126;11536;10576;8971;8249;6966;4330;2440 -198;'705;Slovenia;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14863;10669;6539;12439;8676;6909;10866;12576;16712;20665;22688;25123;10794;9834;6815;4067;3118;5429;6749;7407;6902;9257;8695.06;8958;6857;6514;5865;4142;2559 -198;'705;Slovenia;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;79000;128000;79000;177000;150000;110000;120000;130000;125000;130000;130000;130000;120000;126000;130000;118000;136000;132000;116000 -198;'705;Slovenia;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4400;3000;9000;11700;15690;18920;24580;43970;45270;43624;51196;57103;65526;39081;30457;36666;37093;37006;40090;32098;41981;44877;46920;38800;36331;31570;39330;23690;18803 -198;'705;Slovenia;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2381;1733;2708;3525;5280;4910;5838;9503;11423;11632;14055;13946;21460;22984;16241;18362;21341;19784;20677;17259;19202;20709;21577.64;15663;13795;12867;19819;11479;8857 -198;'705;Slovenia;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;0;0;400;9997;20800;15490;29990;23326;41905;47864;31495;144015;94012;94202;114048;114880;104079;117541;127699;131487;135811;141862;131182;148175;132308;155327;131402;118290 -198;'705;Slovenia;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;353;0;0;114;1454;2801;2596;5478;5777;8273;9861;6380;38282;41636;36445;43643;50227;41951;46178;51910;45033;46048;49382.31;46923;49037;44890;63029;70091;58083 -198;'705;Slovenia;1650;Other fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;15057;1679;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -198;'705;Slovenia;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2913;7000;14000;14500;12000;10000;7200;3164;3440;3390;5550;5487;4621;5179;7218;10650;4064;3711;3752;4802;4141;5438;2326;161;512;25;9867;8401;8084;1151;346;128 -198;'705;Slovenia;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1084;2941;4512;3248;2809;3551;1927;727;578;495;886;1270;1201;1064;1307;2525;1416;959;1118;1506;1284;1831;1182;154;327;8.06;6499;5635;5412;333;128;48 -198;'705;Slovenia;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1546;1652;1000;3300;1100;1100;400;600;200;600;1870;2171;1565;1660;1865;8740;19421;1004;157;218;367;479;164;91;226;46;2467;2161;3383;51;69;100 -198;'705;Slovenia;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;546;504;133;504;165;165;113;152;44;130;378;510;500;383;443;1239;2780;178;65;108;139;220;90;32;69;13.89;1376;1176;1550;26;32;47 -198;'705;Slovenia;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27000;33000;54000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -198;'705;Slovenia;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7067;6000;11000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -198;'705;Slovenia;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3027;1810;2643;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -198;'705;Slovenia;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21133;33000;63000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -198;'705;Slovenia;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8180;8951;13341;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -198;'705;Slovenia;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;178000;134000;178000;175000;166000;195000;207000;218000;218000;218000;218000;180210;192299;311179;330000;230000;357537;370300;254674;217057;232935;243481;252530;260000;255000;341000;446000;449000;418000;288968;184921;116427 -198;'705;Slovenia;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;223353;232754;255017;264500;229300;276000;273000;310000;348003;331030;369260;366070;448710;442209;500747;555458;526158;534691;560025;504055;502722;479110;523171;501763;560088;518634;511613;497684;528421;389922;386715;399801 -198;'705;Slovenia;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83817;61998;94858;129251;89632;90310;82723;85773;129510;95250;102606;122436;150987;146037;160146;220091;230585;162813;234677;228277;192083;188135;216214;193958;198330;210187.76;255504;203052;190170;207744;248574;223948 -198;'705;Slovenia;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56082;30848;45200;59000;39000;66000;55000;67000;61850;68270;60970;90695;92674;116753;110276;105496;111828;72241;128150;128552;128030;123823;148628;133347;155044;153353;152271;156927;161485;167861;166993;189767 -198;'705;Slovenia;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12122;8682;19079;39527;15548;23150;18926;22570;22970;16729;12965;20608;20730;26887;19985;12258;15660;7481;20595;25177;19151;19418;23590;20610;25042;26908.93;22947;19531;19441;36516;36013;19589 -198;'705;Slovenia;1878;Pulp for paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103000;69000;116000;113000;104000;133000;142000;153000;153000;153000;153000;180210;192299;161179;170000;50000;174537;172300;43000;43000;58000;75372;80000;90000;85000;95000;92000;92000;91000;86000;73000;45000 -198;'705;Slovenia;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120958;123771;140017;139200;126300;161000;159000;150000;164303;158810;168240;186291;202756;194601;198493;233186;223056;222400;211334;198477;201596;200107;236718;227783;247130;241220;249287;237590;289108;250731;249752;271302 -198;'705;Slovenia;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67510;48631;76282;88263;71978;76080;68596;69157;100180;71585;72049;90606;110242;106824;113310;153397;161367;114163;154105;142714;128256;127495;151835;140143;136234;147361.35;192831;151160;145717;166550;205538;192331 -198;'705;Slovenia;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43200;19808;32200;48600;36000;59000;47000;54000;35380;39200;26570;37955;31015;44806;24685;66;58;180;26;349;2129;4065;30243;8320;8874;6172;5029;8469;13376;2355;1197;4061 -198;'705;Slovenia;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10558;7674;17802;37747;15305;22734;18509;21935;20443;15242;10705;16693;16188;21641;13407;77;54;526;31;422;1370;1480;5124;3014;2843;1873.06;2687;2874;5229;1382;1066;952 -198;'705;Slovenia;1875;Wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103000;69000;116000;113000;104000;133000;142000;153000;153000;153000;153000;180203;192203;161179;170000;50000;174537;172300;43000;43000;58000;75372;80000;90000;85000;95000;92000;92000;91000;86000;73000;45000 -198;'705;Slovenia;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120563;125629;140000;138800;125300;159000;159000;150000;164283;158770;168200;186284;202660;194596;198456;233048;222663;222201;211096;198344;201522;199990;236531;227665;246975;240708;249076;237325;288947;250275;249330;270485 -198;'705;Slovenia;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67084;49178;76266;88003;71560;75343;68541;69129;100164;71589;72018;90595;110132;106838;113304;153222;160304;113817;153647;142605;128243;127358;151559;140016;135945;145996.65;192392;150582;145466;165738;204684;190256 -198;'705;Slovenia;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43200;19808;32200;48600;36000;59000;47000;54000;35380;39200;26570;37955;31015;44804;24682;66;58;52;26;4;1982;3895;30244;8319;8859;6093;4866;8467;13374;2353;1174;4045 -198;'705;Slovenia;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10558;7674;17802;37747;15305;22734;18509;21935;20442;15241;10704;16691;16185;21639;13403;71;49;26;26;6;1193;1275;5110;2999;2776;1785.78;2523;2852;5203;1354;1027;893 -198;'705;Slovenia;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95000;92000;92000;91000;86000;73000;45000 -198;'705;Slovenia;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9797;11729;11461;10496;11194;15631;10529 -198;'705;Slovenia;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4455.26;6488;5317;4424;5181;9304;6298 -198;'705;Slovenia;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3162;2571;4843;4820;520;395;3146 -198;'705;Slovenia;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;252.58;318;350;323;241;235;261 -198;'705;Slovenia;1654;Mechanical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31000;28000;23000;32000;30000;28000;30000;33000;32000;32000;32000;10602;3838;50000;50000;50000;174537;164408;43000;43000;58000;70000;80000;90000;85000;;;;;;; -198;'705;Slovenia;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8238;4772;4000;5000;3000;3000;2000;2000;3980;2260;6490;10627;3895;7736;12145;16226;13557;16352;19252;10108;1593;5512;5054;1939;3038;;;;;;; -198;'705;Slovenia;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3569;1606;1528;2459;1040;1040;540;517;1181;610;1932;3794;1379;2443;4035;6862;6317;7069;7873;4533;705;2473;2409;740;1078;;;;;;; -198;'705;Slovenia;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;0;1100;0;0;0;0;0;0;0;25;0;0;0;4;0;49;0;3;371;2296;30222;7934;4458;;;;;;; -198;'705;Slovenia;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;0;784;0;0;1;0;0;0;1;3;0;0;0;6;0;23;0;3;72;193;5093;2742;323;;;;;;; -198;'705;Slovenia;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;7748;4616;0;0;0;0;7892;0;0;0;0;0;0;0;;;;;;; -198;'705;Slovenia;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4902;7172;9000;8700;9000;13000;17000;15000;15640;13860;11300;7752;4616;4298;4370;4508;2547;1494;1373;1889;7576;9788;2270;4164;4788;;;;;;; -198;'705;Slovenia;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2508;2394;3433;4793;3542;4646;5962;5467;6791;5560;4164;3302;2379;2153;2298;2812;1705;812;885;1150;3366;4509;1291;2056;2254;;;;;;; -198;'705;Slovenia;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;;;;;;0;0;0;0;0;4;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -198;'705;Slovenia;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;;;;;;0;0;0;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -198;'705;Slovenia;1656;Chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72000;41000;93000;81000;74000;105000;112000;120000;121000;121000;121000;161853;183739;111179;120000;0;0;0;0;0;0;5372;0;0;0;0;0;0;0;0;0;0 -198;'705;Slovenia;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107403;111810;127000;125100;113300;143000;140000;133000;144663;142640;150410;167905;194139;182548;181926;212314;206543;204355;190457;186331;192334;184684;229190;221533;239143;230896;237345;225841;278439;239070;233677;259945 -198;'705;Slovenia;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60981;44615;71305;80751;66978;69657;62039;63145;92192;65394;65922;83499;106336;102204;106931;143548;152215;105936;144831;136823;124070;120360;147822;137115;132596;141475.41;185897;145237;140981;160491;195248;183887 -198;'705;Slovenia;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43195;19767;32200;47500;36000;59000;47000;54000;35380;39200;26570;37926;31015;44804;24682;62;58;3;26;1;1611;1599;20;385;4401;2931;2295;3624;8554;1833;779;899 -198;'705;Slovenia;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10556;7660;17802;36963;15305;22734;18508;21935;20442;15241;10703;16686;16185;21639;13403;65;49;3;25;2;1120;1081;15;254;2448;1532.6;2201;2498;4877;1110;790;630 -198;'705;Slovenia;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;425;445;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -198;'705;Slovenia;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2725;2835;2000;1900;1200;1000;1000;1000;870;810;430;425;445;425;276;551;17099;620;464;1804;1766;9993;21295;11645;21531;6256;6515;12565;24740;5959;3250;230 -198;'705;Slovenia;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1491;1148;1011;1469;962;557;511;536;496;422;229;238;284;264;160;421;12511;387;320;1038;902;4999;10545;5107;9607;3558.58;4966;7178;10359;4667;2349;166 -198;'705;Slovenia;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;40;0;0;0;1850;2381;40;0;25 -198;'705;Slovenia;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;;;;;;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;20;0;0;0;1082;1350;7;0;19 -198;'705;Slovenia;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;145491;172484;0;0;0;0;0;0;0;0;5372;0;0;0;0;0;0;0;0;0;0 -198;'705;Slovenia;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66658;68177;81000;88900;86000;102000;99000;89000;109740;118640;124380;146248;173760;156195;154883;175903;154134;168068;156668;151755;161663;158376;190736;198497;207835;214732;224166;210974;246984;218595;219736;250121 -198;'705;Slovenia;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38804;27311;46925;51502;52713;51492;46114;43904;71573;54951;55569;73183;94761;87724;91312;118114;114421;86591;120476;111840;104809;104270;124046;123961;116606;131579.92;175839;136588;126955;144771;183652;176488 -198;'705;Slovenia;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;184;286;0;800;0;0;0;0;700;2480;1100;757;271;196;109;59;58;2;24;0;1610;1599;20;345;4394;2931;2295;1757;6030;1793;774;871 -198;'705;Slovenia;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96;83;0;722;0;0;47;161;362;1177;544;428;185;155;98;59;49;2;22;0;1119;1081;15;234;2445;1532.6;2201;1411;3447;1103;787;603 -198;'705;Slovenia;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -198;'705;Slovenia;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9908;6664;2302;6715;14516;10691;9594 -198;'705;Slovenia;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6336.91;5092;1471;3667;11053;9247;7233 -198;'705;Slovenia;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;17;143;0;5;3 -198;'705;Slovenia;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;5;80;0;3;8 -198;'705;Slovenia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13000;5000;6000;6000;5000;7000;12000;15000;16000;16000;16000;0;1071;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -198;'705;Slovenia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;731;141;1000;3200;100;0;5000;0;3;0;0;0;0;178;379;250;87;114;207;133;298;0;2;3;0;;;;;;; -198;'705;Slovenia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;252;47;939;2326;109;0;18;85;8;0;0;0;0;82;179;133;51;63;136;96;207;0;3;5;1;;;;;;; -198;'705;Slovenia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;370;200;200;0;0;0;0;0;0;0;0;1071;116;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -198;'705;Slovenia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;35;22;22;0;0;12;0;0;0;0;0;68;8;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -198;'705;Slovenia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59000;36000;87000;75000;69000;98000;100000;105000;105000;105000;105000;15937;9739;111179;120000;0;0;0;0;0;0;0;0;0;0;;;;;;; -198;'705;Slovenia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37289;40657;43000;31100;26000;40000;35000;43000;34050;23190;25600;21232;19934;25750;26388;35610;35223;35553;33118;32639;28607;16315;17157;11388;9777;;;;;;; -198;'705;Slovenia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20434;16109;22430;25454;13194;17608;15396;18620;20115;10021;10124;10078;11291;14134;15280;24880;25232;18895;23899;23849;18152;11091;13228;8042;6382;;;;;;; -198;'705;Slovenia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42996;19111;32000;46500;36000;59000;47000;54000;34680;36720;25470;37169;29673;44492;24573;3;0;1;2;1;1;0;0;0;7;;;;;;; -198;'705;Slovenia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10457;7542;17780;36219;15305;22734;18447;21774;20080;14064;10159;16258;15932;21476;13305;6;0;1;3;2;1;0;0;0;3;;;;;;; -198;'705;Slovenia;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;10;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -198;'705;Slovenia;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;1875;0;0;0;0;0;0;0;10;0;0;10;14;15;0;16;0;14;16;19;6;17;29;6;15;2;23;12;11;22;11 -198;'705;Slovenia;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;563;0;0;0;0;0;0;0;25;0;0;38;38;40;0;67;0;58;99;102;16;37;105;17;65.98;7;28;61;66;132;71 -198;'705;Slovenia;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;2;0;0;0;0;0;0;0;0;0 -198;'705;Slovenia;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;1;1;1;1;2;3;5;0.59;4;4;3;3;2;2 -198;'705;Slovenia;1668;Pulp from fibres other than wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;7;106;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -198;'705;Slovenia;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;415;17;17;400;1000;2000;0;0;20;50;40;7;106;19;52;138;409;199;252;149;93;123;204;147;161;527;213;288;173;467;444;828 -198;'705;Slovenia;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;452;16;16;260;418;737;55;28;16;21;31;11;148;24;46;175;1130;346;516;208;115;153;313;232;306;1430.69;446;606;312;878;986;2146 -198;'705;Slovenia;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;2;3;0;0;128;0;345;147;170;1;1;15;79;163;2;2;2;23;16 -198;'705;Slovenia;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;1;1;2;3;2;4;6;5;500;6;417;178;206;16;18;72;87.88;168;26;29;31;41;61 -198;'705;Slovenia;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1000;680;390;6223;8;4;695;198;96;293;346;290;271;269;236;295;330;314;423;364;410;343;297;4937 -198;'705;Slovenia;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;150;216;141;2407;63;3;331;171;87;283;310;229;222;225;226;208;256;257.58;356;305;354;301;247;3897 -198;'705;Slovenia;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;3;1;59;2;0;0;40;3;0;8;4;3;3;5;11;8;4;0;4370 -198;'705;Slovenia;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;3;1;78;4;0;0;41;2;0;10;5;4;3.5;6;17;10;7;0;3431 -198;'705;Slovenia;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75000;65000;62000;62000;62000;62000;65000;65000;65000;65000;65000;0;0;150000;160000;180000;183000;198000;211674;174057;174935;168109;172530;170000;170000;246000;354000;357000;327000;202968;111921;71427 -198;'705;Slovenia;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102395;108983;115000;125300;103000;115000;114000;160000;183700;172220;201020;179779;245954;247608;302254;322272;303102;312291;348691;305578;301126;279003;286453;273980;312958;277414;262326;260094;239313;139191;136963;128499 -198;'705;Slovenia;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16307;13367;18576;40988;17654;14230;14127;16616;29330;23665;30557;31830;40745;39213;46836;66694;69218;48650;80572;85563;63827;60640;64379;53815;62096;62826.41;62673;51892;44453;41194;43036;31617 -198;'705;Slovenia;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12882;11040;13000;10400;3000;7000;8000;13000;26470;29070;34400;52740;61659;71947;85591;105430;111770;72061;128124;128203;125901;119758;118385;125027;146170;147181;147242;148458;148109;165506;165796;185706 -198;'705;Slovenia;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1564;1008;1277;1780;243;416;417;635;2527;1487;2260;3915;4542;5246;6578;12181;15606;6955;20564;24755;17781;17938;18466;17596;22199;25035.86;20260;16657;14212;35134;34947;18637 -198;'705;Slovenia;1876;Paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;413000;401000;460000;449000;456000;430000;491000;417000;411000;633000;703990;416828;497140;763000;760000;794000;762999;732000;750000;690585;703506;694065;716190;721351;729999;747010;731020;719010;706000;824880;762535;496822 -198;'705;Slovenia;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79124;119587;139000;82100;102000;280000;158000;165000;181780;185580;200300;206954;222384;250858;266146;264280;252986;225423;261842;312359;337748;352561;398032;479872;638047;630928;687194;712894;756558;435078;377655;424926 -198;'705;Slovenia;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108545;119204;142049;90251;94002;283034;132576;130258;136879;137563;129652;152415;173790;202997;194095;228720;246845;195420;218729;287711;268556;268538;298663;293332;388097;409594.37;509098;468057;436206;318063;369702;311241 -198;'705;Slovenia;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;174993;284355;326000;193700;207300;723000;340000;370000;422310;417100;475420;456757;557358;566990;561096;596758;582360;544331;573028;613428;581799;560207;586149;607582;641079;647696;648769;642155;630069;579402;545616;455128 -198;'705;Slovenia;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;176035;237741;291752;189590;192745;579290;242938;230918;273734;260726;292034;319562;403842;413019;412588;504439;540662;464793;478720;580555;485407;462903;505073;438924;456816;488332.39;544343;516623;490749;537467;692181;538910 -198;'705;Slovenia;2042;Graphic papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;141000;111000;120000;125000;119000;232000;308000;267000;261000;176000;213990;257432;294551;405000;391000;410000;396000;393000;386000;374714;350126;335337;357340;359915;364230;372722;269007;261010;241000;236921;234537;159996 -198;'705;Slovenia;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9124;39587;38000;25700;27000;213000;50000;58000;62130;57330;68200;76125;88876;105569;127203;136950;136555;123602;147277;173279;188561;181257;195526;213010;241552;218693;230760;249825;211603;160800;121474;95470 -198;'705;Slovenia;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9442;34755;35557;31173;32319;231787;44954;48441;50046;47530;57356;70689;86280;101376;113099;140170;154062;126143;133468;165168;156748;152831;165268;144672;161655;150562.29;180268;181973;145817;122619;141621;105121 -198;'705;Slovenia;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29993;148355;172000;117600;115000;618000;233000;236000;257580;262010;294800;292863;347445;366963;357156;383760;371888;359463;378228;370541;346825;330088;358146;385218;397023;398390;405415;397301;380017;323877;296605;283121 -198;'705;Slovenia;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24902;111940;152474;134367;130622;524404;183585;168055;194428;186691;210166;236302;296482;309672;302199;370958;394520;354937;346835;390576;316852;291037;324301;288190;299836;315181.83;354159;334843;305243;306963;385955;341963 -198;'705;Slovenia;1671;Newsprint;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81000;66000;76000;93000;39000;49000;68000;67000;61000;29500;28190;47386;68504;111000;116000;120000;137303;119147;134115;136011;128323;129398;133040;133999;135605;138768;130153;155874;74958;43654;51507;66231 -198;'705;Slovenia;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2013;5988;6000;9700;11000;177000;6000;9000;4560;4280;6410;10819;14450;16221;18222;20558;17159;9405;23116;16088;11786;14107;16426;19467;12723;18177;19342;17516;19300;26468;20770;11180 -198;'705;Slovenia;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;943;2986;3125;7570;8716;194192;3359;4881;2194;2427;3614;6490;9121;10575;11840;15916;13802;7213;14489;12035;7987;9325;11425;10920;6841;9819.52;11899;10652;9950;14240;18579;8490 -198;'705;Slovenia;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2569;17519;19000;32600;30000;443000;62000;60000;52940;68050;65030;58204;83593;102403;111613;108116;108392;117770;136009;138959;140242;144496;151178;163056;154397;138436;139315;136607;114088;39473;48116;59438 -198;'705;Slovenia;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1180;7585;8758;25635;21890;364150;29856;28432;23059;36269;31406;30021;44057;58218;66978;73303;76373;78121;75014;94344;85732;85483;93780;77044;73651;66828.39;80037;75840;53000;20501;45077;43418 -198;'705;Slovenia;1674;Printing and writing papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60000;45000;44000;32000;80000;183000;240000;200000;200000;146500;185800;210046;226047;294000;275000;290000;258697;273853;251885;238703;221803;205939;224300;225916;228625;233954;138854;105136;166042;193267;183030;93765 -198;'705;Slovenia;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7111;33599;32000;16000;16000;36000;44000;49000;57570;53050;61790;65306;74426;89348;108981;116392;119396;114197;124161;157191;176775;167150;179100;193543;228829;200516;211418;232309;192303;134332;100704;84290 -198;'705;Slovenia;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8499;31769;32432;23603;23603;37595;41595;43560;47852;45103;53742;64199;77159;90801;101259;124254;140260;118930;118979;153133;148761;143506;153843;133752;154814;140742.77;168369;171321;135867;108379;123042;96631 -198;'705;Slovenia;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27424;130836;153000;85000;85000;175000;171000;176000;204640;193960;229770;234659;263852;264560;245543;275644;263496;241693;242219;231582;206583;185592;206968;222162;242626;259954;266100;260694;265929;284404;248489;223683 -198;'705;Slovenia;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23722;104355;143716;108732;108732;160254;153729;139623;171369;150422;178760;206281;252425;251454;235221;297655;318147;276816;271821;296232;231120;205554;230521;211146;226185;248353.44;274122;259003;252243;286462;340878;298545 -198;'705;Slovenia;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;135000;95000;95000;29500;28190;713;150;5000;5000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -198;'705;Slovenia;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13000;9000;13340;11170;8290;10720;9449;10957;11042;12715;19548;30213;31671;42605;47936;45448;53457;52072;55156;48103;51239;49026;42787;50208;34214;29338 -198;'705;Slovenia;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8862;6267;7492;6995;5266;7536;8277;9192;8284;11261;18355;26970;23800;36596;36485;34410;41234;30328;30495;27500.96;32972;31079;24873;27314;32036;24806 -198;'705;Slovenia;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21000;13000;15630;14560;15290;10007;9599;7945;3190;2834;1556;4288;9606;3197;4167;3814;3237;3514;5562;17501;17242;20143;13210;7671;2672;3734 -198;'705;Slovenia;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14223;7508;9057;8967;9374;7068;6980;5746;2247;2327;1685;3367;7208;2903;3231;2859;2674;2139;3486;12221.67;12871;14590;9616;5712;3236;4085 -198;'705;Slovenia;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82000;57610;99000;97000;99000;84000;79000;59697;79853;89885;77262;62794;67139;75630;76175;77088;78885;41937;11100;66258;83122;72584;74197 -198;'705;Slovenia;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6000;8000;13500;10360;19110;21582;21512;24449;28002;37481;30649;32294;36443;39670;52945;46020;42080;49016;88670;67051;89148;114497;90363;28861;27205;25611 -198;'705;Slovenia;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7014;7742;11873;9721;17138;22312;22305;24489;26503;41442;38630;34285;36973;42338;50700;47742;44124;42075;68547;56899.35;81079;88382;65313;30186;39084;35254 -198;'705;Slovenia;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56000;57000;51760;52050;79450;81315;81082;86972;72315;66808;69597;56273;70138;60280;36386;32535;52267;63609;82738;93474;103528;94243;100846;112476;96076;95425 -198;'705;Slovenia;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46424;40586;40851;37012;59460;68810;72411;73858;67429;76845;89638;69322;83628;87778;42514;33699;53584;56016;72617;87804.87;104152;90572;88967;105257;138851;123877 -198;'705;Slovenia;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105000;105000;105000;35000;100000;110333;128897;190000;186000;211000;199000;194000;162000;161441;159009;138800;148670;149741;151537;155069;96917;94036;99784;110145;110446;19568 -198;'705;Slovenia;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25000;32000;30730;31520;34390;33004;43465;53942;69937;66196;69199;51690;56047;74916;75894;75682;83563;92455;85003;85362;71031;68786;59153;55263;39285;29341 -198;'705;Slovenia;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25719;29551;28487;28387;31338;34351;46577;57120;66472;71551;83275;57675;58206;74199;61576;61354;68485;61349;55772;56342.46;54318;51860;45681;50879;51922;36571 -198;'705;Slovenia;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94000;106000;137250;127350;135030;143337;173171;169643;170038;206002;192343;181132;162475;168105;166030;149243;151464;155039;154326;148979;145330;146308;151873;164257;149741;124524 -198;'705;Slovenia;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93082;91529;121461;104443;109926;130403;173034;171850;165545;218483;226824;204127;180985;205551;185375;168996;174263;152991;150082;148326.9;157099;153841;153660;175493;198791;170583 -198;'705;Slovenia;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;272000;290000;340000;324000;337000;198000;183000;150000;150000;457000;490000;159396;202589;358000;369000;384000;366999;339000;364000;315871;353380;358728;358850;361436;365769;374288;462013;458000;465000;587959;527998;336826 -198;'705;Slovenia;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70000;80000;101000;56400;75000;67000;108000;107000;119650;128250;132100;130829;133508;145289;138943;127330;116431;101821;114565;139080;149187;171304;202506;266862;396495;412235;456434;463069;544955;274278;256181;329456 -198;'705;Slovenia;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99103;84449;106492;59078;61683;51247;87622;81817;86833;90033;72296;81726;87510;101621;80996;88550;92783;69277;85261;122543;111808;115707;133395;148660;226442;259032.08;328830;286084;290389;195444;228081;206120 -198;'705;Slovenia;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;145000;136000;154000;76100;92300;105000;107000;134000;164730;155090;180620;163894;209913;200027;203940;212998;210472;184868;194800;242887;234974;230119;228003;222364;244056;249306;243354;244854;250052;255525;249011;172007 -198;'705;Slovenia;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;151133;125801;139278;55223;62123;54886;59353;62863;79306;74035;81868;83260;107360;103347;110389;133481;146142;109856;131885;189979;168555;171866;180772;150734;156980;173150.55;190184;181780;185506;230504;306226;196947 -198;'705;Slovenia;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61000;65000;64000;61000;63000;56000;52000;57000;61000;228500;245000;1110;182;63000;58000;61000;60022;40662;37459;48084;42107;44812;47130;47470;48039;49159;63000;58000;51000;67472;59149;61091 -198;'705;Slovenia;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;550;610;650;499;1716;10538;15162;4640;2583;2094;2753;6566;4082;2985;3220;3225;6478;6335;8866;8631;9882;7629;7953;7565 -198;'705;Slovenia;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;895;1042;1189;1025;1068;1155;1274;2132;7578;11374;5527;4166;3272;4224;10281;6139;5067;5301;4790;8341;8694.11;12038;11121;11273;10100;14920;13643 -198;'705;Slovenia;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;3000;2000;2700;3160;3810;1608;1483;942;756;870;936;1046;1843;5854;3672;2105;3387;4603;3930;4982;3399;4612;5647;22602;19858;20319 -198;'705;Slovenia;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1627;2077;1277;1615;1807;2015;1181;1203;882;774;820;1146;1095;1593;7529;3688;2227;2830;3817;4043;4715.65;3652;4865;5946;24259;34029;27043 -198;'705;Slovenia;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120000;78000;78000;228500;245000;158286;202407;293000;308000;320000;304025;295557;323979;264913;308473;311116;308950;311176;314907;322243;394013;396000;412000;517690;465863;273460 -198;'705;Slovenia;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95000;93000;104700;111480;123840;121478;125693;127947;122158;121580;112975;98600;111202;132022;144800;167875;198870;263245;389551;405378;447009;453669;534432;266068;247665;321421 -198;'705;Slovenia;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62765;48724;54980;55455;62645;70412;77532;86859;67099;81024;86323;63812;79129;110172;103441;107666;123720;139344;210175;246366.8;311011;269486;275144;181392;209067;188202 -198;'705;Slovenia;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93000;120000;149320;137350;176270;161614;206248;196701;201251;211736;209190;183622;192804;236871;231028;227695;224433;217650;239985;244100;239729;240031;244244;232733;228941;151399 -198;'705;Slovenia;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45326;49711;67268;61018;78890;81049;103935;100253;107690;131530;143885;107858;129694;181633;163968;167605;175942;145479;150135;166422.13;180846;171206;175712;200958;266553;163215 -198;'705;Slovenia;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;209000;224000;254000;242000;252000;133000;;;;;;;;;;;;;;;;;;;;;;;;;; -198;'705;Slovenia;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70000;80000;101000;56400;75000;57000;;;;;;;;;;;;;;;;;;;;;;;;;; -198;'705;Slovenia;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99103;84449;106492;59078;61683;43932;;;;;;;;;;;;;;;;;;;;;;;;;; -198;'705;Slovenia;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;145000;136000;154000;76100;92300;96000;;;;;;;;;;;;;;;;;;;;;;;;;; -198;'705;Slovenia;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;151133;125801;139278;55223;62123;48801;;;;;;;;;;;;;;;;;;;;;;;;;; -198;'705;Slovenia;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100000;65000;65000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -198;'705;Slovenia;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51000;48000;53720;61240;81890;85977;89629;89391;90048;84776;74003;61144;63024;61303;56154;61427;95746;142185;147775;129059;170857;219726;263808;133866;139372;224451 -198;'705;Slovenia;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20353;16814;20647;21783;30432;37041;41053;40225;41001;44692;43994;27656;34698;44185;39612;36551;52583;65486;61094;59512.28;91253;82912;87181;65110;84976;83816 -198;'705;Slovenia;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1870;3170;5240;4505;224;946;395;41;30;154;1426;14555;3325;3082;4397;3854;3083;2815;2476;1836;856;4770;6338;976 -198;'705;Slovenia;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;250;577;1237;1836;1789;1557;289;639;251;57;33;128;662;9404;4020;3057;4557;3416;1959;1693.92;1730;960;444;3473;5401;610 -198;'705;Slovenia;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8000;5000;5000;227500;194500;135286;179407;176000;182000;188000;185691;189200;226000;176135;205912;221624;221560;223156;225832;231089;282552;283980;295454;266577;254567;169238 -198;'705;Slovenia;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13000;12000;14330;15770;11580;8097;11621;17371;8525;12632;11801;12073;19016;41088;60078;73032;66851;69156;82600;80604;75314;73239;82161;42414;28141;24538 -198;'705;Slovenia;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22306;13048;13850;14281;13217;12373;16403;29307;7673;12201;12552;11505;16610;32867;37433;42785;38965;36811;42513;46064.72;45517;41491;46677;32980;34433;25200 -198;'705;Slovenia;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;3000;5660;8440;153700;143383;191361;182874;190122;199631;197289;177489;187008;214728;221640;218898;214918;209506;232203;236732;232655;234590;238670;224263;218942;145982 -198;'705;Slovenia;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1381;2212;4002;5845;68608;71734;95269;91711;100669;122365;134584;103149;123977;165737;155242;160602;167762;139087;143704;160147.53;174180;165790;169082;191135;254404;155131 -198;'705;Slovenia;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12000;8000;8000;1000;3740;2000;2000;84000;84000;87000;85890;76727;70683;64470;76090;63274;62600;63051;63807;65296;79842;80240;83482;85709;85709;0 -198;'705;Slovenia;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20000;22000;25360;24980;26190;23841;20542;18599;20521;21261;24523;24152;26083;26528;24786;28552;29563;46649;154141;190573;196643;156625;183883;83837;74597;68594 -198;'705;Slovenia;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15474;14674;16529;16204;17412;19377;18186;16038;17035;22194;27451;23210;25557;30655;23831;25532;28597;34536;104228;138219.93;171817;142956;138810;79292;84736;76212 -198;'705;Slovenia;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90000;116000;141790;125740;8560;5458;6237;4843;4037;5129;3604;1633;2158;5164;3115;1440;616;826;2140;2285;2825;2290;4443;3368;3316;4192 -198;'705;Slovenia;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43676;46876;62029;53337;5264;4269;4239;4155;3526;5197;4367;2082;3662;4750;2767;1385;818;981;2866;3084.88;3591;3589;5969;6031;6348;7194 -198;'705;Slovenia;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;46760;21000;21000;33000;42000;45000;32444;29630;27296;24308;26471;26218;24790;24969;25268;25858;31619;31780;33064;165404;125587;104222 -198;'705;Slovenia;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11000;11000;11290;9490;4180;3563;3901;2586;3064;2911;2648;1231;3079;3103;3782;4864;6710;5255;5035;5142;4195;4079;4580;5951;5555;3838 -198;'705;Slovenia;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4632;4188;3954;3187;1584;1621;1890;1289;1390;1937;2326;1441;2264;2465;2565;2798;3575;2511;2340;2569.87;2424;2127;2476;4010;4922;2974 -198;'705;Slovenia;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;8770;8268;8426;8038;6697;6935;8267;4346;2212;2424;2948;4275;4502;3464;2559;2268;1773;1315;275;332;345;249 -198;'705;Slovenia;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;46;0;0;3229;3489;4138;3748;3244;3911;4901;2499;1393;1742;1939;2561;2805;1995;1606;1495.8;1345;867;217;319;400;280 -198;'705;Slovenia;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;1000;22000;21000;22000;9000;11000;15000;11000;0;0;0;0;2000;3000;3000;2952;2781;2562;2874;2800;2800;2770;2790;2823;2886;5000;4000;2000;2797;2986;2275 -198;'705;Slovenia;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9000;12000;13000;14400;16160;7610;8852;6099;6804;1623;1110;873;1127;610;492;305;444;416;392;466;522;559;769;641;581;563;470 -198;'705;Slovenia;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6420;23815;31904;30828;33510;8496;10040;7846;7184;2523;1999;2294;2193;1908;2090;2228;2974;4374;4526;7926;3971.17;5781;5477;3972;3952;4094;4275 -198;'705;Slovenia;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7000;11000;12000;12710;14580;540;672;2182;2384;1933;392;346;200;153;162;274;319;183;111;141;224;226;211;161;190;212;289 -198;'705;Slovenia;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4458;11950;11875;10423;11210;963;1030;2222;2212;1925;1131;1111;903;598;817;899;2034;2000;1438;2802;2012.77;5686;5709;3848;5287;5644;6689 -198;'705;Slovenia;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;268703.15;288792;290739;298702;406077;431241;378355 -198;'705;Slovenia;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;485741.85;499122;477100;459430;565148;594004;522604 -198;'705;Slovenia;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16349.31;17962;17983;16162;18989;16546;16169 -198;'705;Slovenia;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7549.02;8101;6554;5471;7441;8807;7221 -198;'705;Slovenia;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8586.79;9738;9514;9983;12030;8889;6635 -198;'705;Slovenia;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2625.76;2788;2089;2079;2926;4774;2899 -198;'705;Slovenia;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7762.52;8224;8469;6179;6959;7657;9534 -198;'705;Slovenia;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4923.26;5313;4465;3392;4515;4033;4322 -198;'705;Slovenia;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17138.53;22570;22194;21667;34980;45254;29461 -198;'705;Slovenia;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20319.43;24296;24126;24031;37353;50266;43251 -198;'705;Slovenia;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2528.05;2997;3046;2910;4588;1130;901 -198;'705;Slovenia;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12368.12;10891;11704;11826;15642;3849;2926 -198;'705;Slovenia;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35250.15;38003;38551;45753;63633;64229;47652 -198;'705;Slovenia;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94304.9;93460;91903;95874;118458;118781;105281 -198;'705;Slovenia;1636;Glue-laminated timber (glulam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12000;10000 -198;'705;Slovenia;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6292;6371 -198;'705;Slovenia;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6054;5251 -198;'705;Slovenia;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;885;1066 -198;'705;Slovenia;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1173;1424 -198;'705;Slovenia;1688;Cross-laminated timber (CLT or X-lam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -198;'705;Slovenia;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1779;7541 -198;'705;Slovenia;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1810;5252 -198;'705;Slovenia;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;474;24 -198;'705;Slovenia;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;277;18 -198;'705;Slovenia;1684;I-beams (I-joists);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -198;'705;Slovenia;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10 -198;'705;Slovenia;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;23 -198;'705;Slovenia;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -198;'705;Slovenia;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -198;'705;Slovenia;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;165292;168728;170586;173789;232595;256787;244426 -198;'705;Slovenia;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;268131;276438;258102;228578;263792;285396;259296 -198;'705;Slovenia;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2789.04;2897;3468;3757;5355;4506;4804 -198;'705;Slovenia;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31628.78;31923;33882;37867;44937;49904;41126 -198;'705;Slovenia;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29356.07;35635;34911;34664;45937;42789;34942 -198;'705;Slovenia;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51440.59;54013;50829;55783;77525;77001;63503 -198;'705;Slovenia;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;175630.21;194349;192004;192863;226188;268820;259610 -198;'705;Slovenia;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;206627.63;229344;218020;208744;245898;261269;274300 -198;'705;Slovenia;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3354.91;3650;3841;3997;5020;6412;2653 -198;'705;Slovenia;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;245.5;181;209;185;143;335;233 -198;'705;Slovenia;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19987.51;23766;19546;21384;26032;27610;24754 -198;'705;Slovenia;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13791.51;20413;18897;18529;28682;30942;26020 -198;'705;Slovenia;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51576.31;56707;55233;57861;57200;76597;80961 -198;'705;Slovenia;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94134.88;100175;94794;86790;85837;89836;108415 -198;'705;Slovenia;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60091.23;63654;65909;66938;84684;101005;91261 -198;'705;Slovenia;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71355.97;77396;76116;75608;98581;105808;97012 -198;'705;Slovenia;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40620.26;46572;47475;42683;53252;57196;59981 -198;'705;Slovenia;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27099.77;31179;28004;27632;32655;34348;42620 -25;'090;Solomon Islands;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12051;11691;10840;12284;13486;15534;15040 -25;'090;Solomon Islands;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;602051;669745;488783;364043;386171;374798;300450 -25;'090;Solomon Islands;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;46;24;32;88;109;53;49;128;101;94;131;181;134;151;175;163;177;196;592;992;2292;2292;2292;2292;2292;2292;457;690;680;723;723;487;379;797;833;298;353;309;420;264;264;324;324;444;444;444;444;1164;1646;2441;2146;2257;1674;2182;2739;6377;5037;4519;3622;4329;3396;2996;3166 -25;'090;Solomon Islands;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;6;1;64;296;233;445;1269;1596;2696;3122;3627;3404;4838;5712;3670;6275;7906;7231;16039;16208;16200;22899;19823;21131;21300;20530;18548;19139;17240;34953;36047;61906;82935;114947;116408;130678;126564;71532;82143;62552;64206;60783;82192;119221;157642;191447;234565;265495;209809;319177;398283;434209;449145;513569;557620;471850;576279;659998;478787;363818;385512;374148;300081 -25;'090;Solomon Islands;1861;Roundwood;5516;Production;m3;63400;64800;71600;90400;87200;103000;152800;195600;289900;309100;340800;322100;347300;311000;296700;331400;366100;318800;371500;368700;458000;535000;548000;542000;542000;557000;451000;444000;449000;580000;474000;778000;685000;766000;872000;1001000;818000;772000;790000;704000;692000;718000;882000;1211000;1286000;1241000;1600400;1678700;1434081;1752451;2121432;2260422;2316423;2622434;2862456;2795884;3340316;3334753;3335193;3335639;3336028;3336422;3336820 -25;'090;Solomon Islands;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;53;89;369;289;0;63;0 -25;'090;Solomon Islands;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;70;107;333;174;0;71;0 -25;'090;Solomon Islands;1861;Roundwood;5916;Export quantity;m3;400;100;4100;24900;19500;32400;79800;125700;205600;226800;255300;238300;254200;211200;208000;241000;238000;246000;258000;258000;315000;333000;337000;283000;370000;349300;280300;286800;261000;321901;294898;514932;350325;592542;749000;833000;650000;604000;622000;536000;534000;550000;714000;1043000;1118000;1073000;1446000;1523000;1277745;1594000;1962000;2100000;2155000;2449000;1931076;1645616;3044142;3164184;2640000;2182283;1876162;1627902;1624615 -25;'090;Solomon Islands;1861;Roundwood;5922;Export value;1000 USD;6;1;56;280;217;440;1263;1583;2692;3118;3623;3400;4834;5708;3550;6062;7725;6837;14721;14904;14673;21385;18792;20100;20700;20000;17498;18089;16181;33703;34797;59832;80999;112005;113522;127449;123364;69954;80565;60800;62454;60035;81444;115941;154362;188167;229043;258031;203704;311810;389035;423629;437082;501835;542791;458458;563074;641003;463083;347395;358935;350588;279965 -25;'090;Solomon Islands;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 -25;'090;Solomon Islands;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;0;0;5;0;0;0 -25;'090;Solomon Islands;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;0;0;5;0;0;0 -25;'090;Solomon Islands;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4142;24184;0;2283;19368;4196;3615 -25;'090;Solomon Islands;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1291;4400;0;298;4286;1286;754 -25;'090;Solomon Islands;1863;Roundwood, non-coniferous;5516;Production;m3;63400;64800;71600;90400;87200;103000;152800;195600;289900;309100;340800;322100;347300;311000;296700;331400;366100;318800;371500;368700;458000;535000;548000;542000;542000;557000;451000;444000;449000;580000;474000;778000;685000;766000;872000;1001000;818000;772000;790000;704000;692000;718000;882000;1211000;1286000;1241000;1600400;1678700;1434081;1752451;2121432;2260422;2316423;2622434;2862456;2795884;3340316;3334753;3335193;3335639;3336028;3336422;3336820 -25;'090;Solomon Islands;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;89;369;284;0;63;0 -25;'090;Solomon Islands;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;107;333;169;0;71;0 -25;'090;Solomon Islands;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3040000;3140000;2640000;2180000;1856794;1623706;1621000 -25;'090;Solomon Islands;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;561783;636603;463083;347097;354649;349302;279211 -25;'090;Solomon Islands;1864;Wood fuel;5516;Production;m3;57400;58800;60600;62400;64200;66000;67800;69600;71900;74100;76800;79100;82300;85000;87700;90400;93100;95800;98500;101700;106000;110000;113000;117000;122000;125000;129000;134000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;124400;125700;127081;128451;129432;130422;131423;132434;133456;133884;134316;134753;135193;135639;136028;136422;136820 -25;'090;Solomon Islands;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;166;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -25;'090;Solomon Islands;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -25;'090;Solomon Islands;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -25;'090;Solomon Islands;1628;Wood fuel, non-coniferous;5516;Production;m3;57400;58800;60600;62400;64200;66000;67800;69600;71900;74100;76800;79100;82300;85000;87700;90400;93100;95800;98500;101700;106000;110000;113000;117000;122000;125000;129000;134000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;138000;124400;125700;127081;128451;129432;130422;131423;132434;133456;133884;134316;134753;135193;135639;136028;136422;136820 -25;'090;Solomon Islands;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;166;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -25;'090;Solomon Islands;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -25;'090;Solomon Islands;1865;Industrial roundwood;5516;Production;m3;6000;6000;11000;28000;23000;37000;85000;126000;218000;235000;264000;243000;265000;226000;209000;241000;273000;223000;273000;267000;352000;425000;435000;425000;420000;432000;322000;310000;311000;442000;336000;640000;547000;628000;734000;863000;680000;634000;652000;566000;554000;580000;744000;1073000;1148000;1103000;1476000;1553000;1307000;1624000;1992000;2130000;2185000;2490000;2729000;2662000;3206000;3200000;3200000;3200000;3200000;3200000;3200000 -25;'090;Solomon Islands;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;53;89;369;289;0;63;0 -25;'090;Solomon Islands;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;70;107;333;174;0;71;0 -25;'090;Solomon Islands;1865;Industrial roundwood;5916;Export quantity;m3;400;100;4100;24900;19500;32400;79800;125700;205600;226800;255300;238300;254200;211200;208000;241000;238000;246000;258000;258000;315000;333000;337000;283000;370000;349300;280300;286800;261000;321901;294898;514932;350325;592376;749000;833000;650000;604000;622000;536000;534000;550000;714000;1043000;1118000;1073000;1446000;1523000;1277745;1594000;1962000;2100000;2155000;2449000;1931076;1645616;3044142;3164184;2640000;2182283;1876162;1627902;1624615 -25;'090;Solomon Islands;1865;Industrial roundwood;5922;Export value;1000 USD;6;1;56;280;217;440;1263;1583;2692;3118;3623;3400;4834;5708;3550;6062;7725;6837;14721;14904;14673;21385;18792;20100;20700;20000;17498;18089;16181;33703;34797;59832;80999;111982;113522;127449;123364;69954;80565;60800;62454;60035;81444;115941;154362;188167;229043;258031;203704;311810;389035;423629;437082;501835;542791;458458;563074;641003;463083;347395;358935;350588;279965 -25;'090;Solomon Islands;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 -25;'090;Solomon Islands;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;30;0;0;5;0;0;0 -25;'090;Solomon Islands;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;42;0;0;5;0;0;0 -25;'090;Solomon Islands;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16076;5616;4142;24184;0;2283;19368;4196;3615 -25;'090;Solomon Islands;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4676;1248;1291;4400;0;298;4286;1286;754 -25;'090;Solomon Islands;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;30;0;0;5;0;0;0 -25;'090;Solomon Islands;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;42;0;0;5;0;0;0 -25;'090;Solomon Islands;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16076;5616;4142;24184;0;2283;19368;4196;3615 -25;'090;Solomon Islands;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4676;1248;1291;4400;0;298;4286;1286;754 -25;'090;Solomon Islands;1867;Industrial roundwood, non-coniferous;5516;Production;m3;6000;6000;11000;28000;23000;37000;85000;126000;218000;235000;264000;243000;265000;226000;209000;241000;273000;223000;273000;267000;352000;425000;435000;425000;420000;432000;322000;310000;311000;442000;336000;640000;547000;628000;734000;863000;680000;634000;652000;566000;554000;580000;744000;1073000;1148000;1103000;1476000;1553000;1307000;1624000;1992000;2130000;2185000;2490000;2729000;2662000;3206000;3200000;3200000;3200000;3200000;3200000;3200000 -25;'090;Solomon Islands;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;23;89;369;284;0;63;0 -25;'090;Solomon Islands;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;28;107;333;169;0;71;0 -25;'090;Solomon Islands;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;321901;294898;514932;350325;592376;749000;833000;650000;604000;622000;536000;534000;550000;714000;1043000;1118000;1073000;1446000;1523000;1277745;1594000;1962000;2100000;2155000;2449000;1915000;1640000;3040000;3140000;2640000;2180000;1856794;1623706;1621000 -25;'090;Solomon Islands;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33703;34797;59832;80999;111982;113522;127449;123364;69954;80565;60800;62454;60035;81444;115941;154362;188167;229043;258031;203704;311810;389035;423629;437082;501835;538115;457210;561783;636603;463083;347097;354649;349302;279211 -25;'090;Solomon Islands;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -25;'090;Solomon Islands;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -25;'090;Solomon Islands;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;321901;294898;514932;350325;592376;749000;833000;650000;604000;622000;536000;534000;550000;714000;1043000;1118000;1073000;1446000;1523000;1277745;1594000;1962000;2100000;2155000;2449000;1915000;1640000;3040000;3140000;2640000;2180000;1856794;1623706;1621000 -25;'090;Solomon Islands;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33703;34797;59832;80999;111982;113522;127449;123364;69954;80565;60800;62454;60035;81444;115941;154362;188167;229043;258031;203704;311810;389035;423629;437082;501835;538115;457210;561783;636603;463083;347097;354649;349302;279211 -25;'090;Solomon Islands;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;23;89;369;284;0;63;0 -25;'090;Solomon Islands;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;28;107;333;169;0;71;0 -25;'090;Solomon Islands;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -25;'090;Solomon Islands;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -25;'090;Solomon Islands;1868;Sawlogs and veneer logs;5516;Production;m3;6000;6000;11000;28000;23000;37000;85000;126000;218000;235000;264000;243000;265000;226000;209000;241000;273000;223000;273000;267000;352000;425000;435000;425000;420000;432000;322000;310000;311000;442000;336000;640000;547000;628000;734000;863000;680000;634000;652000;566000;554000;580000;744000;1073000;1148000;1103000;1476000;1553000;1307000;1624000;1992000;2130000;2185000;2490000;2729000;2662000;3206000;3200000;3200000;3200000;3200000;3200000;3200000 -25;'090;Solomon Islands;1868;Sawlogs and veneer logs;5916;Export quantity;m3;400;100;4100;24900;19500;32400;79800;125700;205600;226800;255300;238300;254200;211200;208000;241000;238000;246000;258000;258000;315000;333000;337000;283000;370000;349300;280300;286800;261000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -25;'090;Solomon Islands;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;6;1;56;280;217;440;1263;1583;2692;3118;3623;3400;4834;5708;3550;6062;7725;6837;14721;14904;14673;21385;18792;20100;20700;20000;17498;18089;16181;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -25;'090;Solomon Islands;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 -25;'090;Solomon Islands;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -25;'090;Solomon Islands;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -25;'090;Solomon Islands;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;6000;6000;11000;28000;23000;37000;85000;126000;218000;235000;264000;243000;265000;226000;209000;241000;273000;223000;273000;267000;352000;425000;435000;425000;420000;432000;322000;310000;311000;442000;336000;640000;547000;628000;734000;863000;680000;634000;652000;566000;554000;580000;744000;1073000;1148000;1103000;1476000;1553000;1307000;1624000;1992000;2130000;2185000;2490000;2729000;2662000;3206000;3200000;3200000;3200000;3200000;3200000;3200000 -25;'090;Solomon Islands;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;400;100;4100;24900;19500;32400;79800;125700;205600;226800;255300;238300;254200;211200;208000;241000;238000;246000;258000;258000;315000;333000;337000;283000;370000;349300;280300;286800;261000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -25;'090;Solomon Islands;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;6;1;56;280;217;440;1263;1583;2692;3118;3623;3400;4834;5708;3550;6062;7725;6837;14721;14904;14673;21385;18792;20100;20700;20000;17498;18089;16181;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -25;'090;Solomon Islands;1630;Wood charcoal;5510;Production;t;268;277;287;297;307;318;329;341;353;365;379;442;448;432;471;475;480;489;478;516;521;543;549;576;603;596;624;648;666;696;724;743;778;802;821;848;880;902;928;954;982;1010;1040;1070;1100;1130;1160;1192;1224;1256;1286;1316;1347;1379;1411;1438;1464;1492;1519;1548;1577;1607;1638 -25;'090;Solomon Islands;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;26;26;26;2;2;9;30;30;30;30 -25;'090;Solomon Islands;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;1;1;37;16;16;16;16 -25;'090;Solomon Islands;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;4;4;4 -25;'090;Solomon Islands;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;4;4;1;1;1 -25;'090;Solomon Islands;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300 -25;'090;Solomon Islands;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95 -25;'090;Solomon Islands;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5950;4760;12768;5754;5754;5754;5754;5754;5754;4835;4835;4835;4835;4835;4835 -25;'090;Solomon Islands;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;434;371;1205;458;458;458;458;458;458;458;458;458;458;458;458 -25;'090;Solomon Islands;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300;300 -25;'090;Solomon Islands;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95;95 -25;'090;Solomon Islands;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5950;4760;12768;5754;5754;5754;5754;5754;5754;4835;4835;4835;4835;4835;4835 -25;'090;Solomon Islands;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;434;371;1205;458;458;458;458;458;458;458;458;458;458;458;458 -25;'090;Solomon Islands;1872;Sawnwood;5516;Production;m3;2500;3200;3400;3700;3800;5100;4600;5800;6300;4300;4400;4700;4400;5900;8100;9000;8000;11000;18000;19000;20000;15000;15000;17000;17000;15000;13000;12000;16000;16000;16000;16000;16000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;20000;27000;27000;27000;27000;27000;27000;27000;28000;28000;28000;31000;31000;31000;54000;54000;54000 -25;'090;Solomon Islands;1872;Sawnwood;5616;Import quantity;m3;700;100;300;900;900;100;100;200;200;200;200;200;200;200;300;100;;;;;;;;;;;;;;;;236;236;55;0;0;0;0;0;0;0;0;0;23;23;23;23;52;145;1542;140;637;337;289;185;103;553;333;367;18;168;0;129 -25;'090;Solomon Islands;1872;Sawnwood;5622;Import value;1000 USD;33;11;19;75;53;5;6;17;8;8;20;22;20;32;50;17;;;;;;;;;;;;;;;;55;55;26;0;0;0;0;0;0;0;0;0;4;4;4;4;13;219;653;71;345;163;100;131;79;215;97;104;15;58;0;54 -25;'090;Solomon Islands;1872;Sawnwood;5916;Export quantity;m3;;;100;200;200;100;100;200;100;100;100;100;100;100;900;1600;1600;3600;8800;6800;7200;7100;5700;5700;3300;2900;5400;4600;4300;3726;3726;7830;9657;12000;10400;10500;10000;5000;5000;4200;4200;2400;2400;10866;10866;10866;18198;24513;18276;22083;25655;12925;14354;12344;13149;13896;14386;14763;10812;11987;15607;10140;9756 -25;'090;Solomon Islands;1872;Sawnwood;5922;Export value;1000 USD;;;8;16;16;5;6;13;4;4;4;4;4;4;120;213;181;394;1318;1304;1527;1514;1031;1031;600;530;1050;1050;1059;1250;1250;2073;1935;2942;2886;3229;3200;1578;1578;1752;1752;748;748;3276;3276;3276;5518;7459;5629;6885;8011;9236;9931;10079;10040;10156;10483;12389;9023;9034;14068;10880;9980 -25;'090;Solomon Islands;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;4000;4000;4000;4000;4000;4000 -25;'090;Solomon Islands;1632;Sawnwood, coniferous;5616;Import quantity;m3;700;100;300;900;900;100;100;200;200;200;200;200;200;200;300;100;;;;;;;;;;;;;;;;236;236;27;0;0;0;0;0;0;0;0;0;23;23;23;23;23;116;1513;52;404;104;56;144;88;253;313;359;18;168;0;129 -25;'090;Solomon Islands;1632;Sawnwood, coniferous;5622;Import value;1000 USD;33;11;19;75;53;5;6;17;8;8;20;22;20;32;50;17;;;;;;;;;;;;;;;;55;55;5;0;0;0;0;0;0;0;0;0;4;4;4;4;4;210;644;44;274;92;29;82;47;147;91;94;15;58;0;54 -25;'090;Solomon Islands;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;198;198;198;198;23;518;1031;682;0;44;0;39;0;5;2631;0;26;116;104;0 -25;'090;Solomon Islands;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33;33;33;14;230;485;420;0;15;0;29;0;6;1990;0;15;154;52;0 -25;'090;Solomon Islands;1633;Sawnwood, non-coniferous;5516;Production;m3;2500;3200;3400;3700;3800;5100;4600;5800;6300;4300;4400;4700;4400;5900;8100;9000;8000;11000;18000;19000;20000;15000;15000;17000;17000;15000;13000;12000;16000;16000;16000;16000;16000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;20000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;50000;50000;50000 -25;'090;Solomon Islands;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;0;0;0;0;0;0;0;0;0;0;0;0;0;29;29;29;88;233;233;233;41;15;300;20;8;0;0;0;0 -25;'090;Solomon Islands;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;0;0;0;0;0;0;0;0;0;0;0;0;0;9;9;9;27;71;71;71;49;32;68;6;10;0;0;0;0 -25;'090;Solomon Islands;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;100;200;200;100;100;200;100;100;100;100;100;100;900;1600;1600;3600;8800;6800;7200;7100;5700;5700;3300;2900;5400;4600;4300;3726;3726;7830;9657;12000;10400;10500;10000;5000;5000;4200;4200;2400;2400;10668;10668;10668;18000;24490;17758;21052;24973;12925;14310;12344;13110;13896;14381;12132;10812;11961;15491;10036;9756 -25;'090;Solomon Islands;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;8;16;16;5;6;13;4;4;4;4;4;4;120;213;181;394;1318;1304;1527;1514;1031;1031;600;530;1050;1050;1059;1250;1250;2073;1935;2942;2886;3229;3200;1578;1578;1752;1752;748;748;3243;3243;3243;5485;7445;5399;6400;7591;9236;9916;10079;10011;10156;10477;10399;9023;9019;13914;10828;9980 -25;'090;Solomon Islands;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2000;2000;12000;12000;12000;12000;22000;32000;32000;52000;52000;52000 -25;'090;Solomon Islands;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;25;25;0;0;0;0;0;0;0;0;0;4;4;4;4;7;7;10;10;18;9;0;15;55;3;2;2;0;0;0;5 -25;'090;Solomon Islands;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;10;10;0;0;0;0;0;0;0;0;0;3;3;3;3;13;13;24;24;12;11;0;38;104;8;6;4;0;0;0;4 -25;'090;Solomon Islands;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;146;33;140;1949;3836;2570;6409;5617;5553;14883;23584;21756;37980;35873;31688 -25;'090;Solomon Islands;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;38;107;28;882;1668;1191;4325;2772;2258;6135;6208;6916;12039;12210;9655 -25;'090;Solomon Islands;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0 -25;'090;Solomon Islands;1873;Wood-based panels;5616;Import quantity;m3;100;100;100;100;500;600;500;2300;1400;1200;2300;2600;800;900;800;900;800;700;1900;2600;4400;4400;4400;4400;4400;4400;2000;2200;1961;2083;2083;745;565;863;1700;400;500;300;300;0;0;0;0;367;367;367;367;870;1025;1463;1540;1801;1696;1936;2292;6157;5415;4509;3416;4260;5403;2473;3548 -25;'090;Solomon Islands;1873;Wood-based panels;5622;Import value;1000 USD;13;13;13;13;56;48;43;111;93;86;111;159;114;119;125;146;177;196;592;992;2292;2292;2292;2292;2292;2292;457;690;680;723;723;312;211;499;805;270;200;156;156;0;0;0;0;123;123;123;123;529;670;797;904;1207;1028;1237;1526;3690;3171;3036;1384;1655;1805;1862;1680 -25;'090;Solomon Islands;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0 -25;'090;Solomon Islands;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0 -25;'090;Solomon Islands;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0 -25;'090;Solomon Islands;1640;Plywood and LVL;5616;Import quantity;m3;100;100;100;100;500;600;500;1100;1000;800;1100;600;400;300;400;300;200;300;600;1300;3100;3100;3100;3100;3100;3100;700;800;1000;1000;1000;340;312;615;1700;400;500;300;300;0;0;0;0;311;311;311;311;356;346;600;656;791;710;786;1087;2969;2671;2278;1477;1231;2414;1527;1851 -25;'090;Solomon Islands;1640;Plywood and LVL;5622;Import value;1000 USD;13;13;13;13;56;48;43;84;84;73;80;89;80;67;89;75;99;150;400;800;2100;2100;2100;2100;2100;2100;211;358;474;474;474;185;123;398;805;270;200;156;156;0;0;0;0;110;110;110;110;315;394;421;421;704;531;627;835;1939;1666;1874;577;523;463;825;753 -25;'090;Solomon Islands;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0 -25;'090;Solomon Islands;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0 -25;'090;Solomon Islands;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10 -25;'090;Solomon Islands;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11 -25;'090;Solomon Islands;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;100;100;200;400;400;400;400;400;400;400;400;400;400;400;400;400;136;4;4;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -25;'090;Solomon Islands;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;11;9;20;44;44;44;44;44;44;44;44;44;44;44;44;44;33;1;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -25;'090;Solomon Islands;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;91;239;14;3;1;1;1;148;164;180;180;9;26;51;118;26 -25;'090;Solomon Islands;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;45;117;11;2;7;2;2;102;100;109;109;6;14;243;587;36 -25;'090;Solomon Islands;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;108;88;88;88;88;88;88 -25;'090;Solomon Islands;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;43;43;43;43;43;43;43 -25;'090;Solomon Islands;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;1200;400;400;1200;2000;400;600;400;500;500;200;900;900;900;900;900;900;900;900;900;1000;561;683;683;269;249;244;0;0;0;0;0;0;0;0;0;56;56;56;56;423;440;849;881;1009;985;1149;1057;2969;2456;1963;1842;2915;2850;740;1583 -25;'090;Solomon Islands;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;27;9;13;31;70;34;52;36;60;69;26;148;148;148;148;148;148;148;148;202;288;162;205;205;94;87;100;0;0;0;0;0;0;0;0;0;13;13;13;13;169;159;365;481;496;495;608;589;1629;1353;1010;758;1075;1056;407;848 -25;'090;Solomon Islands;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -25;'090;Solomon Islands;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -25;'090;Solomon Islands;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;17;415;429;717;775;980;949;1114;747;55;73;832;1294;2194;2396;24;994 -25;'090;Solomon Islands;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;162;152;291;367;479;475;587;385;42;51;340;541;841;916;11;401 -25;'090;Solomon Islands;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -25;'090;Solomon Islands;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -25;'090;Solomon Islands;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;5;126;100;23;30;29;305;2912;2377;1130;547;720;453;715;588 -25;'090;Solomon Islands;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;69;109;12;15;16;200;1585;1297;669;216;233;139;395;446 -25;'090;Solomon Islands;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;1200;400;400;1200;2000;400;600;400;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;82;96;72;0;0;0;0;0;0;0;0;0;39;39;39;39;6;6;6;6;6;6;6;5;2;6;1;1;1;1;1;1 -25;'090;Solomon Islands;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;27;9;13;31;70;34;52;36;11;10;11;13;13;13;13;13;13;13;13;13;13;13;13;13;18;23;20;0;0;0;0;0;0;0;0;0;5;5;5;5;5;5;5;5;5;5;5;4;2;5;1;1;1;1;1;1 -25;'090;Solomon Islands;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;400;400;100;800;800;800;800;800;800;800;800;800;900;461;583;583;187;153;172;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -25;'090;Solomon Islands;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;49;59;15;135;135;135;135;135;135;135;135;189;275;149;192;192;76;64;80;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -25;'090;Solomon Islands;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;212;0;0;0;0;0;0;0;0;0;60;60;60;60;10;4;3;3;2;3;3;2;58;4;13;59;37;37;37;35 -25;'090;Solomon Islands;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;40;0;0;0;0;0;0;0;0;0;7;7;7;7;3;1;1;1;4;1;1;0;69;8;13;63;15;15;15;17 -25;'090;Solomon Islands;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;0;0;0;0;0;0;0;0;0;0;0;0;0;0;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17 -25;'090;Solomon Islands;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;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;1 -25;'090;Solomon Islands;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;2;11;11;11;11;11;9 -25;'090;Solomon Islands;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;8;13;13;13;13;13;15 -25;'090;Solomon Islands;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;7;16;16;16;16;16;16 -25;'090;Solomon Islands;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;8;13;13;13;13;13;13 -25;'090;Solomon Islands;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;9;9;9;9;9;9 -25;'090;Solomon Islands;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;5;5;5;5;5;5 -25;'090;Solomon Islands;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;;;;;;; -25;'090;Solomon Islands;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;;;;;;; -25;'090;Solomon Islands;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;7 -25;'090;Solomon Islands;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;8;8;8 -25;'090;Solomon Islands;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;2;2;2;2;2;2;0 -25;'090;Solomon Islands;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;8;8;8;8;8;8;10 -25;'090;Solomon Islands;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4 -25;'090;Solomon Islands;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3 -25;'090;Solomon Islands;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;212;0;0;0;0;0;0;0;0;0;60;60;60;60;10;4;3;3;2;3;3;2;2;2;2;48;26;26;26;26 -25;'090;Solomon Islands;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;40;0;0;0;0;0;0;0;0;0;7;7;7;7;3;1;1;1;4;1;1;0;0;0;0;50;2;2;2;2 -25;'090;Solomon Islands;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;0;0;0;0;0;0;0;0;0;0;0;0;0;0;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17 -25;'090;Solomon Islands;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;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;1 -25;'090;Solomon Islands;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106;138;261;16;16;116;116;200;200;200;200;200;398;398;398;398;217;363;414;1341;351;227;470;563;1161;1229;1001;1145;1600;886;359;658 -25;'090;Solomon Islands;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113;100;222;28;28;153;153;264;264;264;324;324;307;307;307;307;511;648;871;1051;588;370;743;943;2334;1458;1153;1591;2348;1396;926;1289 -25;'090;Solomon Islands;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;3;3;3;3;3;3;3;3;3;3;3;3;3;3;5;5;5;5;5;6 -25;'090;Solomon Islands;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;3;3;3;3;3;3;3;3;3;3;3;3;3;3;10;10;10;10;10;21 -25;'090;Solomon Islands;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;130;208;16;16;16;16;100;100;100;100;100;280;280;280;280;146;234;264;1206;329;179;410;434;784;933;627;1036;1450;789;233;435 -25;'090;Solomon Islands;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;94;183;28;28;28;28;140;140;140;140;140;212;212;212;212;213;263;313;465;472;238;547;737;1159;818;661;1267;1665;948;419;705 -25;'090;Solomon Islands;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;3;3 -25;'090;Solomon Islands;2042;Graphic papers;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 -25;'090;Solomon Islands;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;94;134;0;0;0;0;0;0;0;0;0;37;37;37;37;11;5;25;3;3;19;20;236;558;507;211;211;211;55;45;10 -25;'090;Solomon Islands;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;47;64;0;0;0;0;0;0;0;0;0;19;19;19;19;22;9;35;10;7;20;44;156;303;262;129;129;129;83;49;10 -25;'090;Solomon Islands;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;36;74;16;16;16;16;100;100;100;100;100;243;243;243;243;135;229;239;1203;326;160;390;198;226;426;416;825;1239;734;188;425 -25;'090;Solomon Islands;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;47;119;28;28;28;28;140;140;140;140;140;193;193;193;193;191;254;278;455;465;218;503;581;856;556;532;1138;1536;865;370;695 -25;'090;Solomon Islands;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;3;3 -25;'090;Solomon Islands;1674;Printing and writing papers;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 -25;'090;Solomon Islands;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;41;41;41;28;11;19;4;1;2;35;113;8;168;168;41;73;16;44;22 -25;'090;Solomon Islands;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33;33;33;38;22;33;14;29;8;42;315;396;220;220;130;177;56;176;78 -25;'090;Solomon Islands;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3 -25;'090;Solomon Islands;1612;Printing and writing papers, uncoated, mechanical;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 -25;'090;Solomon Islands;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;100;100;100;100;100;132;132;132;132;97;186;127;260;242;157;327;75;150;200;161;760;1128;709;140;359 -25;'090;Solomon Islands;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;140;140;140;140;140;104;104;104;104;118;188;189;317;310;205;396;232;387;278;221;958;1279;763;181;435 -25;'090;Solomon Islands;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;70;70;70;10;32;93;939;83;1;28;10;68;58;87;24;38;9;4;44 -25;'090;Solomon Islands;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;56;56;56;35;44;56;124;126;5;65;34;73;58;91;50;80;46;13;182 -25;'090;Solomon Islands;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;8;53;0;0;100;100;100;100;100;100;100;118;118;118;118;71;129;150;135;22;48;60;129;377;296;374;109;150;97;126;223 -25;'090;Solomon Islands;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;6;39;0;0;125;125;124;124;124;184;184;95;95;95;95;298;385;558;586;116;132;196;206;1175;640;492;324;683;448;507;584 -25;'090;Solomon 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;2;2;2;2;2;3 -25;'090;Solomon 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;7;7;7;7;7;18 -25;'090;Solomon Islands;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;14;3;31;11;2;3;15;21;72;139;164;126;40;51;24;35;31 -25;'090;Solomon Islands;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;16;4;24;9;21;83;16;32;113;194;204;174;94;259;69;188;126 -25;'090;Solomon Islands;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;55;55;55;15;12;19;25;7;7;14;31;60;70;227;43;34;40;40;175 -25;'090;Solomon Islands;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33;33;33;31;13;27;41;11;11;28;33;70;87;211;118;107;132;112;265 -25;'090;Solomon 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;2;2;2;2;2;3 -25;'090;Solomon 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;7;7;7;7;7;17 -25;'090;Solomon Islands;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;16;21;29;182;3;3;3;28;142 -25;'090;Solomon Islands;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;12;16;23;124;3;3;4;30;199 -25;'090;Solomon Islands;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;10;13;1;1;2;2;11;9;7;1;8;14;1;18 -25;'090;Solomon Islands;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;5;8;2;2;6;2;10;24;16;2;38;73;10;37 -25;'090;Solomon 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;2;2;2;2;2;3 -25;'090;Solomon 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;7;7;7;7;7;17 -25;'090;Solomon Islands;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22;22;22;9;6;8;11;3;3;8;6;25;29;35;36;20;20;8;12 -25;'090;Solomon Islands;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;26;8;14;25;7;7;19;11;41;37;68;110;63;52;69;26 -25;'090;Solomon Islands;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;28;28;1;1;1;1;3;3;3;7;3;3;3;3;3;3;3;3 -25;'090;Solomon Islands;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;17;2;2;8;8;2;2;2;8;3;3;3;3;3;3;3;3 -25;'090;Solomon Islands;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;100;100;100;100;100;49;49;49;49;53;86;120;108;12;26;25;26;178;62;21;26;65;33;51;17 -25;'090;Solomon Islands;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125;124;124;124;184;184;46;46;46;46;263;348;522;524;22;105;136;60;911;349;107;112;317;247;207;193 -25;'090;Solomon Islands;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0 -25;'090;Solomon Islands;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1 -25;'090;Solomon Islands;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1987;1422;1551;1100;1732;2598;4494 -25;'090;Solomon Islands;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24147;8134;8304;143;651;647;322 -25;'090;Solomon Islands;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;2;2;2;2;18;107 -25;'090;Solomon Islands;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;177;128;532;516;269 -25;'090;Solomon Islands;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;1;1;1;1;17;17 -25;'090;Solomon Islands;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -25;'090;Solomon Islands;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;1;1;1;1;1;90 -25;'090;Solomon Islands;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;177;128;532;516;269 -25;'090;Solomon Islands;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;133;113;192;277;147;1 -25;'090;Solomon Islands;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;2 -25;'090;Solomon Islands;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;10;2;0;21;24;3 -25;'090;Solomon Islands;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;2;18;4;22;18;4 -25;'090;Solomon Islands;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;401;249;456;229;512;586;714 -25;'090;Solomon Islands;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;35;35 -25;'090;Solomon Islands;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24 -25;'090;Solomon Islands;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39 -25;'090;Solomon Islands;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1342;984;714;480;633;1457;3314 -25;'090;Solomon Islands;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;95;63;2 -25;'090;Solomon Islands;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30 -25;'090;Solomon Islands;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;44;264;197;287;366;325 -25;'090;Solomon Islands;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24111;8109;8109;11;2;15;10 -25;'090;Solomon Islands;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5027;5750;5667;6855;8358;9940;7380 -25;'090;Solomon Islands;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1625;1613;1692;82;8;3;47 -25;'090;Solomon Islands;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;10;13;5;1;1;1 -25;'090;Solomon Islands;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;21;155;109;133;91;49 -25;'090;Solomon Islands;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3 -25;'090;Solomon Islands;1673;Household and sanitary paper, ready for use (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -25;'090;Solomon Islands;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1861;1987;1394;2257;2096;3513;2617 -25;'090;Solomon Islands;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1610;1610;1610;0;2;0;0 -25;'090;Solomon Islands;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1561;2205;2252;2591;3144;3099;1780 -25;'090;Solomon Islands;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;0;79;79;2;0;37 -25;'090;Solomon Islands;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1576;1527;1853;1893;2984;3236;2933 -25;'090;Solomon Islands;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;0;0;1;0;7 -201;'706;Somalia;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93862;145555;139481;129715;187749;192338;141169 -201;'706;Somalia;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;806;273;188;440;488;465;413 -201;'706;Somalia;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;140;140;945;897;815;996;991;1499;821;489;558;1263;3069;8587;8172;5000;9141;4133;3214;5674;5941;3124;3124;3124;3070;6547;2459;5600;2766;1773;1773;194;131;185;171;172;77;257;576;1719;1101;1103;352;456;456;620;328;6672;4122;3413;4252;24999;32401;38536;66752;50876;38155;78563;73261;64759;100058;83956;70324 -201;'706;Somalia;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;841;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;8;19;19;129;163;44;590;12054;15137;14939;21209;14883;15330;25535;20844;27828;33521;34782;42031;36340;1396;511;506;853;675;199;120;373;210;266;280 -201;'706;Somalia;1861;Roundwood;5516;Production;m3;2675451;2762416;2852190;2942964;3048633;3146394;3248349;3353601;3462260;3574435;3653507;3671606;3807931;4145239;4030498;4222875;4211900;4385364;4652895;4931851;5066119;5242150;5576717;5728887;5798817;5907402;5974299;6107706;6226105;6365327;6578632;7061111;7201103;7387645;7636311;7957141;8345437;8640677;8984382;9338017;9778271;10092520;10682123;10970450;11308897;11862679;11871100;12690600;13203423;13611108;14066738;14066738;14066738;14148437;14556385;14930680;15316282;15713568;16122928;16544764;16979496;17427553;17889384 -201;'706;Somalia;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;14100;400;2000;3900;1200;1400;8300;700;300;300;300;300;2690;10;1053;0;;;;;0;0;20;20;193;947;947;947;947;947;947;947;947;240;1322;1322;1543;1543;1564;1564;1564;3177;223;2595;91;94;840;132;441;2727 -201;'706;Somalia;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;2338;62;481;1213;387;425;2086;230;99;99;99;99;495;2;87;0;;;;;0;0;1;1;16;87;87;87;87;87;87;87;87;23;142;142;244;244;265;265;265;300;73;632;65;43;162;203;260;207 -201;'706;Somalia;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;4459;4459;4459;4459;3678;4823;4823;4933;4894;221;221;601;625;1241;1241;1272;939;1101;0;0;0;0;0;0;0 -201;'706;Somalia;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;516;516;516;516;501;317;317;322;321;46;46;90;92;291;291;255;219;285;0;0;0;0;0;0;0 -201;'706;Somalia;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 -201;'706;Somalia;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;39;0;808;21;207;1737 -201;'706;Somalia;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;51;0;152;93;156;168 -201;'706;Somalia;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -201;'706;Somalia;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -201;'706;Somalia;1863;Roundwood, non-coniferous;5516;Production;m3;2675451;2762416;2852190;2942964;3048633;3146394;3248349;3353601;3462260;3574435;3653507;3671606;3807931;4145239;4030498;4222875;4211900;4385364;4652895;4931851;5066119;5242150;5576717;5728887;5798817;5907402;5974299;6107706;6226105;6365327;6578632;7061111;7201103;7387645;7636311;7957141;8345437;8640677;8984382;9338017;9778271;10092520;10682123;10970450;11308897;11862679;11871100;12690600;13203423;13611108;14066738;14066738;14066738;14148437;14556385;14930680;15316282;15713568;16122928;16544764;16979496;17427553;17889384 -201;'706;Somalia;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2594;52;94;32;111;234;990 -201;'706;Somalia;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;625;14;43;10;110;104;39 -201;'706;Somalia;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -201;'706;Somalia;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -201;'706;Somalia;1864;Wood fuel;5516;Production;m3;2633451;2719416;2808190;2897964;2992633;3090394;3191349;3295601;3403260;3514435;3592507;3609606;3734931;4081239;3956498;4146875;4133900;4305364;4570895;4846851;4979119;5153150;5485717;5635887;5704817;5811402;5877299;6008706;6126105;6264327;6484632;6966111;7106103;7291645;7539311;7858141;8243437;8534677;8874382;9228017;9668271;9982520;10572123;10860450;11198897;11752679;11761100;12580600;13093423;13501108;13956738;13956738;13956738;14038437;14446385;14820680;15206282;15603568;16012928;16434764;16869496;17317553;17779384 -201;'706;Somalia;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;23;23;23;23;23;;;;;;; -201;'706;Somalia;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;24;24;24;24;24;;;;;;; -201;'706;Somalia;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;39;12;12;12;247;247;813;813;813;813;813;;;;;;; -201;'706;Somalia;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;2;1;1;1;38;38;184;184;184;184;184;;;;;;; -201;'706;Somalia;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 -201;'706;Somalia;1628;Wood fuel, non-coniferous;5516;Production;m3;2633451;2719416;2808190;2897964;2992633;3090394;3191349;3295601;3403260;3514435;3592507;3609606;3734931;4081239;3956498;4146875;4133900;4305364;4570895;4846851;4979119;5153150;5485717;5635887;5704817;5811402;5877299;6008706;6126105;6264327;6484632;6966111;7106103;7291645;7539311;7858141;8243437;8534677;8874382;9228017;9668271;9982520;10572123;10860450;11198897;11752679;11761100;12580600;13093423;13501108;13956738;13956738;13956738;14038437;14446385;14820680;15206282;15603568;16012928;16434764;16869496;17317553;17779384 -201;'706;Somalia;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;23;23;23;23;23;;;;;;; -201;'706;Somalia;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;24;24;24;24;24;;;;;;; -201;'706;Somalia;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;39;12;12;12;247;247;813;813;813;813;813;;;;;;; -201;'706;Somalia;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;2;1;1;1;38;38;184;184;184;184;184;;;;;;; -201;'706;Somalia;1865;Industrial roundwood;5516;Production;m3;42000;43000;44000;45000;56000;56000;57000;58000;59000;60000;61000;62000;73000;64000;74000;76000;78000;80000;82000;85000;87000;89000;91000;93000;94000;96000;97000;99000;100000;101000;94000;95000;95000;96000;97000;99000;102000;106000;110000;110000;110000;110000;110000;110000;110000;110000;110000;110000;110000;110000;110000;110000;110000;110000;110000;110000;110000;110000;110000;110000;110000;110000;110000 -201;'706;Somalia;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;14100;400;2000;3900;1200;1400;8300;700;300;300;300;300;2690;10;1053;0;;;;;0;0;20;20;193;947;947;947;947;947;947;947;947;240;1320;1320;1541;1541;1541;1541;1541;3154;200;2595;91;94;840;132;441;2727 -201;'706;Somalia;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;2338;62;481;1213;387;425;2086;230;99;99;99;99;495;2;87;0;;;;;0;0;1;1;16;87;87;87;87;87;87;87;87;23;139;139;241;241;241;241;241;276;49;632;65;43;162;203;260;207 -201;'706;Somalia;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4459;4459;4459;4459;3678;4823;4823;4894;4882;209;209;354;378;428;428;459;126;288;0;0;0;0;0;0;0 -201;'706;Somalia;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;516;516;516;516;501;317;317;320;320;45;45;52;54;107;107;71;35;101;0;0;0;0;0;0;0 -201;'706;Somalia;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;713;713;713;713;713;713;713;713;6;1114;1114;1114;1114;1114;1114;1114;3154;0;1;39;0;808;21;207;1737 -201;'706;Somalia;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;64;64;64;64;64;64;64;64;0;68;68;68;68;68;68;68;276;0;7;51;0;152;93;156;168 -201;'706;Somalia;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;195;31;31;102;90;124;124;269;269;269;269;269;0;0;0;0;0;0;0;0;0 -201;'706;Somalia;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;2;2;5;5;7;7;14;14;14;14;14;0;0;0;0;0;0;0;0;0 -201;'706;Somalia;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;713;713;713;713;713;713;713;713;6;1114;1114;1114;1114;1114;1114;1114;3154;0;1;39;0;808;21;207;1737 -201;'706;Somalia;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;64;64;64;64;64;64;64;64;0;68;68;68;68;68;68;68;276;0;7;51;0;152;93;156;168 -201;'706;Somalia;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;195;31;31;102;90;124;124;269;269;269;269;269;0;0;0;0;0;0;0;0;0 -201;'706;Somalia;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;2;2;5;5;7;7;14;14;14;14;14;0;0;0;0;0;0;0;0;0 -201;'706;Somalia;1867;Industrial roundwood, non-coniferous;5516;Production;m3;42000;43000;44000;45000;56000;56000;57000;58000;59000;60000;61000;62000;73000;64000;74000;76000;78000;80000;82000;85000;87000;89000;91000;93000;94000;96000;97000;99000;100000;101000;94000;95000;95000;96000;97000;99000;102000;106000;110000;110000;110000;110000;110000;110000;110000;110000;110000;110000;110000;110000;110000;110000;110000;110000;110000;110000;110000;110000;110000;110000;110000;110000;110000 -201;'706;Somalia;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;193;234;234;234;234;234;234;234;234;234;206;206;427;427;427;427;427;0;200;2594;52;94;32;111;234;990 -201;'706;Somalia;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;16;23;23;23;23;23;23;23;23;23;71;71;173;173;173;173;173;0;49;625;14;43;10;110;104;39 -201;'706;Somalia;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4459;4459;4459;4459;3483;4792;4792;4792;4792;85;85;85;109;159;159;190;126;288;0;0;0;0;0;0;0 -201;'706;Somalia;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;516;516;516;516;491;315;315;315;315;38;38;38;40;93;93;57;35;101;0;0;0;0;0;0;0 -201;'706;Somalia;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;173;173;173;173;173;173;173;173;173;173;173;173;173;173;173;173;173;0;34;2594;26;18;0;99;222;990 -201;'706;Somalia;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;0;31;625;3;19;0;78;94;39 -201;'706;Somalia;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;68;68;68;68;68;68;68;68;68;68;68;126;288;0;0;0;0;0;0;0 -201;'706;Somalia;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;36;36;36;36;36;36;36;36;36;36;36;35;101;0;0;0;0;0;0;0 -201;'706;Somalia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;61;61;61;61;61;61;61;61;61;33;33;254;254;254;254;254;0;166;0;26;76;32;12;12;0 -201;'706;Somalia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;8;8;8;8;8;8;8;8;8;56;56;158;158;158;158;158;0;18;0;11;24;10;32;10;0 -201;'706;Somalia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4459;4459;4459;4459;3415;4724;4724;4724;4724;17;17;17;41;91;91;122;0;0;0;0;0;0;0;0;0 -201;'706;Somalia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;516;516;516;516;455;279;279;279;279;2;2;2;4;57;57;21;0;0;0;0;0;0;0;0;0 -201;'706;Somalia;1868;Sawlogs and veneer logs;5516;Production;m3;10000;10000;10000;10000;20000;20000;20000;20000;20000;20000;20000;20000;30000;20000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000 -201;'706;Somalia;1868;Sawlogs and veneer logs;5616;Import quantity;m3;;;;;;;;;;;;;;14100;400;2000;3900;1200;1400;8300;700;300;300;300;300;2690;10;1053;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -201;'706;Somalia;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;;;;;;;;;;;;;;2338;62;481;1213;387;425;2086;230;99;99;99;99;495;2;87;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -201;'706;Somalia;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;7600;100;1400;3300;800;800;1000;300;100;100;100;100;2686;10;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -201;'706;Somalia;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;1619;42;336;1029;256;256;334;100;39;39;39;39;494;2;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -201;'706;Somalia;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;10000;10000;10000;10000;20000;20000;20000;20000;20000;20000;20000;20000;30000;20000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000 -201;'706;Somalia;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;6500;300;600;600;400;600;7300;400;200;200;200;200;4;0;1053;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -201;'706;Somalia;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;719;20;145;184;131;169;1752;130;60;60;60;60;1;0;87;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -201;'706;Somalia;1871;Other industrial roundwood;5516;Production;m3;32000;33000;34000;35000;36000;36000;37000;38000;39000;40000;41000;42000;43000;44000;46000;48000;50000;52000;54000;57000;59000;61000;63000;65000;66000;68000;69000;71000;72000;73000;66000;67000;67000;68000;69000;71000;74000;78000;82000;82000;82000;82000;82000;82000;82000;82000;82000;82000;82000;82000;82000;82000;82000;82000;82000;82000;82000;82000;82000;82000;82000;82000;82000 -201;'706;Somalia;1871;Other industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -201;'706;Somalia;1871;Other industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -201;'706;Somalia;1871;Other industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -201;'706;Somalia;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;32000;33000;34000;35000;36000;36000;37000;38000;39000;40000;41000;42000;43000;44000;46000;48000;50000;52000;54000;57000;59000;61000;63000;65000;66000;68000;69000;71000;72000;73000;66000;67000;67000;68000;69000;71000;74000;78000;82000;82000;82000;82000;82000;82000;82000;82000;82000;82000;82000;82000;82000;82000;82000;82000;82000;82000;82000;82000;82000;82000;82000;82000;82000 -201;'706;Somalia;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -201;'706;Somalia;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -201;'706;Somalia;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -201;'706;Somalia;1630;Wood charcoal;5510;Production;t;179390;184841;190488;194738;216999;200178;228482;212821;248603;208235;213521;213800;222872;250306;237592;250880;246704;257666;276507;296536;304586;316356;341982;352508;356367;363901;368400;378869;388266;399628;418946;461909;474191;489901;510258;536663;568375;592894;621297;651062;701951;731951;807108;831468;863083;933240;912700;1026500;1088704;1132372;1187164;1187164;1187164;1187164;1181457;1224642;1269404;1315803;1363898;1413750;1465421;1518979;1574495 -201;'706;Somalia;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;32;873;2;875;4;56 -201;'706;Somalia;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;397;7;275;36;53 -201;'706;Somalia;1630;Wood charcoal;5910;Export quantity;t;27900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;59841;84148;85867;131767;125649;125916;164207;109933;188960;214960;221405;287000;210738;4009;150;277;500;500;36;7;9;7;4;2 -201;'706;Somalia;1630;Wood charcoal;5922;Export value;1000 USD;841;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;11452;14543;14336;20549;14435;14882;25082;20392;27588;33282;34499;41691;35800;856;51;103;384;384;15;3;6;4;2;2 -201;'706;Somalia;1872;Sawnwood;5516;Production;m3;5000;5000;5000;5000;5000;10000;10000;10000;10000;10000;10000;10000;15000;10000;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;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000 -201;'706;Somalia;1872;Sawnwood;5616;Import quantity;m3;;;7500;11800;21300;21300;21300;21300;21300;1000;1300;2200;5200;5760;15700;8600;7500;800;6600;2400;9800;5100;5100;5100;5100;4572;4373;4016;4506;3970;3970;188;114;44;44;44;4;808;33;53;53;53;51;475;475;1223;134;11451;6464;2604;958;88265;113124;132124;152997;149828;71638;216096;175853;143758;183582;144481;123677 -201;'706;Somalia;1872;Sawnwood;5622;Import value;1000 USD;;;805;757;675;675;675;675;675;74;154;224;817;1061;1206;1709;2005;199;1441;531;2100;1174;1174;1174;1174;1100;1033;933;1046;930;930;49;43;13;13;13;1;110;6;3;3;3;13;78;78;193;34;4590;2434;1686;695;21377;27505;32949;46329;33665;19571;56015;43726;37315;67561;53133;35704 -201;'706;Somalia;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;180;180;180;214;214;214;214;37;37;37;37;37;5;5;23;23;23;23;0;0;0;0;0;0;0;0;0 -201;'706;Somalia;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;31;31;31;35;35;35;35;5;5;5;5;5;4;4;21;21;21;21;0;0;0;0;0;0;0;0;0 -201;'706;Somalia;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -201;'706;Somalia;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;700;900;1100;4400;4960;15100;8000;6200;500;1000;1000;3900;3900;3900;3900;3900;3900;3900;3900;3900;3900;3900;118;44;44;44;44;4;808;33;13;13;13;11;435;435;1196;107;5107;120;2435;789;88000;113000;132000;137911;143486;52638;188816;151506;133422;170000;135312;123556 -201;'706;Somalia;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;55;115;100;687;931;1150;1653;1686;139;304;304;900;900;900;900;900;900;900;900;900;900;900;19;13;13;13;13;1;110;6;1;1;1;11;76;76;182;23;2232;76;1581;590;21236;27456;32900;39232;28364;11078;43057;31744;29403;57630;45893;35648 -201;'706;Somalia;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;180;180;180;180;180;180;180;3;3;3;3;3;3;3;3;3;3;3;0;0;0;0;0;0;0;0;0 -201;'706;Somalia;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;31;31;31;31;31;31;31;1;1;1;1;1;1;1;1;1;1;1;0;0;0;0;0;0;0;0;0 -201;'706;Somalia;1633;Sawnwood, non-coniferous;5516;Production;m3;5000;5000;5000;5000;5000;10000;10000;10000;10000;10000;10000;10000;15000;10000;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;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000 -201;'706;Somalia;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;7500;11800;21300;21300;21300;21300;21300;300;400;1100;800;800;600;600;1300;300;5600;1400;5900;1200;1200;1200;1200;672;473;116;606;70;70;70;70;0;0;0;0;0;0;40;40;40;40;40;40;27;27;6344;6344;169;169;265;124;124;15086;6342;19000;27280;24347;10336;13582;9169;121 -201;'706;Somalia;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;805;757;675;675;675;675;675;19;39;124;130;130;56;56;319;60;1137;227;1200;274;274;274;274;200;133;33;146;30;30;30;30;0;0;0;0;0;0;2;2;2;2;2;2;11;11;2358;2358;105;105;141;49;49;7097;5301;8493;12958;11982;7912;9931;7240;56 -201;'706;Somalia;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;34;34;34;34;34;34;34;34;34;2;2;20;20;20;20;0;0;0;0;0;0;0;0;0 -201;'706;Somalia;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;4;4;4;4;4;4;4;4;4;3;3;20;20;20;20;0;0;0;0;0;0;0;0;0 -201;'706;Somalia;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -201;'706;Somalia;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;900;300;300;300;300;600;700;1800;2000;500;900;200;100;700;1400;1400;1400;1400;136;1;30;9;50;50;50;50;0;0;0;0;112;112;159;159;159;159;52;52;52;2;21;21;21;21;21;21;21;1429;7;306;994;1;0;93;0;14 -201;'706;Somalia;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;68;59;43;43;43;135;364;751;557;137;547;98;46;600;1407;1407;1407;1407;59;2;11;24;21;21;21;21;0;0;0;0;46;46;46;46;46;46;41;41;41;2;11;11;11;11;11;11;11;483;4;170;466;393;5;45;15;15 -201;'706;Somalia;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -201;'706;Somalia;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -201;'706;Somalia;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;0;0;0 -201;'706;Somalia;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;0;0;118;118;141;645;645;645;613;308;308;305;419;3176;3088;2614;4635;5095;7402;6171;31919;29746;39358;44502;47810;50408;60129;45508;58892 -201;'706;Somalia;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;0;0;26;26;31;133;133;133;118;71;71;71;112;1580;1229;1177;2327;2691;3507;3260;18145;15447;15426;17654;19855;20712;26634;22966;26118 -201;'706;Somalia;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;168;0;0;0;0;0;4 -201;'706;Somalia;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;107;0;0;0;0;0;14 -201;'706;Somalia;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -201;'706;Somalia;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;523;523;523;523;133;133;133;6;1186;101;258;417;599;519;675;22344;19599;27486;41625;28008;33201;45118;33931;48503 -201;'706;Somalia;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107;107;107;107;47;47;47;2;681;57;223;294;484;393;695;13736;10785;10871;16332;12931;14875;18870;18183;22514 -201;'706;Somalia;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;168;0;0;0;0;0;0 -201;'706;Somalia;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;107;0;0;0;0;0;0 -201;'706;Somalia;1646;Particle board and OSB (1961-1994);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -201;'706;Somalia;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -201;'706;Somalia;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -201;'706;Somalia;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 -201;'706;Somalia;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;23;3;3;3;5;5;5;5;5;5;57;2;2;2;2;2;807;52;509;509;1277;1436;1486;1728;1289 -201;'706;Somalia;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;5;0;0;0;2;2;2;2;2;2;23;4;4;4;4;4;494;21;213;213;864;918;2960;955;413 -201;'706;Somalia;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3 -201;'706;Somalia;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1 -201;'706;Somalia;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;0;5;5;6;1;3;0;0 -201;'706;Somalia;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;0;5;5;4;0;1;0;0 -201;'706;Somalia;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;;;118;118;118;119;119;119;85;170;170;167;408;1985;2930;2354;4216;4494;6881;5494;8675;10095;11358;2363;18519;15770;13522;9849;9100 -201;'706;Somalia;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;;;26;26;26;26;26;26;9;22;22;22;108;897;1149;950;2029;2203;3110;2561;3878;4641;4337;1104;6056;4919;4803;3828;3191 -201;'706;Somalia;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1 -201;'706;Somalia;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13 -201;'706;Somalia;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;38;38;38;38;38;4;4;4;1;208;737;1735;741;2274;1444;2591;1487;1347;866;832;1098;1682;2718;2509;916;1017 -201;'706;Somalia;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;18;18;18;18;1;1;1;1;71;340;644;326;1213;779;1116;903;677;535;503;532;870;1201;1180;435;498 -201;'706;Somalia;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;35;651;598;1016;1345;2932;4159;3876;7282;9178;10027;1124;16741;12531;10637;8681;7877 -201;'706;Somalia;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;16;295;243;362;554;1346;1945;1609;3155;4069;3536;485;5128;3536;3479;3287;2593 -201;'706;Somalia;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1 -201;'706;Somalia;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13 -201;'706;Somalia;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;80;80;80;80;80;80;165;165;165;165;597;597;597;597;118;131;131;46;51;499;141;96;521;376;252;206 -201;'706;Somalia;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;8;8;8;21;21;21;21;262;262;262;262;78;49;49;46;37;298;87;58;182;144;106;100 -201;'706;Somalia;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -201;'706;Somalia;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -201;'706;Somalia;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;105;24;24;24;24;25;14;14;14;60;130;130;130;130;79;131;86;86;16;22;22;391;180;210;70;222 -201;'706;Somalia;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;11;5;5;5;5;7;2;2;2;5;25;25;25;25;11;22;16;16;4;4;4;137;52;40;60;38 -201;'706;Somalia;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;23;23;23;43;181;181;181;181;181;181;181;181;181;181;181;108;108;108;108;108;108;66;43;43;43 -201;'706;Somalia;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;16;68;68;68;68;68;68;68;68;68;68;68;24;24;24;24;24;24;9;8;8;8 -201;'706;Somalia;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;45;45;45;45;45;45;0;0;0;0;0;0;0;0;0;0 -201;'706;Somalia;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;6;6;6;6;6;6;0;0;0;0;0;0;0;0;0;0 -201;'706;Somalia;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;23;23;23;43;93;93;93;93;93;93;93;93;93;93;93;20;20;20;20;20;20;20;20;20;20 -201;'706;Somalia;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;16;51;51;51;51;51;51;51;51;51;51;51;7;7;7;7;7;7;7;7;7;7 -201;'706;Somalia;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;45;45;45;45;45;45;0;0;0;0;0;0;0;0;0;0 -201;'706;Somalia;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;6;6;6;6;6;6;0;0;0;0;0;0;0;0;0;0 -201;'706;Somalia;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;23;23;23;43;93;93;93;93;93;93;93;93;93;93;93;20;20;20;20;20;20;20;20;20;20 -201;'706;Somalia;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;16;51;51;51;51;51;51;51;51;51;51;51;7;7;7;7;7;7;7;7;7;7 -201;'706;Somalia;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;45;45;45;45;45;45;0;0;0;0;0;0;0;0;0;0 -201;'706;Somalia;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;6;6;6;6;6;6;0;0;0;0;0;0;0;0;0;0 -201;'706;Somalia;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;23;23;23;43;93;93;93;93;93;93;93;93;93;93;93;20;20;20;20;20;20;20;20;20;20 -201;'706;Somalia;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;16;51;51;51;51;51;51;51;51;51;51;51;7;7;7;7;7;7;7;7;7;7 -201;'706;Somalia;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -201;'706;Somalia;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -201;'706;Somalia;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;0;0;0;0;0;0;0 -201;'706;Somalia;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;0;0;0;0;0;0;0 -201;'706;Somalia;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20;20 -201;'706;Somalia;1663;Chemical wood pulp, sulphate, bleached;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 -201;'706;Somalia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;45;45;45;45;45;0;0;0;;;;;;; -201;'706;Somalia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;0;0;0;;;;;;; -201;'706;Somalia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;23;23;23;23;73;73;73;73;73;73;73;73;73;73;73;0;0;0;;;;;;; -201;'706;Somalia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;9;44;44;44;44;44;44;44;44;44;44;44;0;0;0;;;;;;; -201;'706;Somalia;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -201;'706;Somalia;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -201;'706;Somalia;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105;24;24;24;24;25;14;14;14;60;85;85;85;85;34;86;86;86;16;22;22;391;180;210;70;222 -201;'706;Somalia;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;5;5;5;5;7;2;2;2;5;19;19;19;19;5;16;16;16;4;4;4;137;52;40;60;38 -201;'706;Somalia;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88;88;88;88;88;88;88;88;88;88;88;88;88;88;88;88;88;46;23;23;23 -201;'706;Somalia;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;17;2;1;1;1 -201;'706;Somalia;1876;Paper and paperboard;5610;Import quantity;t;400;400;400;400;400;900;900;3500;400;1300;1200;2300;4700;6000;7300;4000;6900;3600;1300;1800;1800;400;400;400;300;10484;2489;7912;3487;1774;1774;153;76;170;195;195;221;218;697;2515;1501;1502;286;408;408;374;101;252;327;284;880;665;1065;2008;1491;1863;2545;4532;7626;6225;4464;4868;6297 -201;'706;Somalia;1876;Paper and paperboard;5622;Import value;1000 USD;140;140;140;140;140;321;316;756;87;372;361;996;2117;4824;6153;2253;5786;3000;1250;3011;3011;444;444;444;390;4893;1422;4569;1696;822;822;124;67;140;158;158;49;48;401;1445;827;829;81;177;177;226;152;324;281;270;950;644;1091;2035;1479;1683;2333;4340;8710;6506;5300;7486;8189 -201;'706;Somalia;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;13;13;74;160;7;81;87;81;87;119;123;123;123;123;129;129;129;151;151;151;151;151;151;151;151;138;345;219;232;232 -201;'706;Somalia;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;19;19;129;123;4;34;42;34;36;56;58;58;58;58;121;121;121;159;160;160;160;160;160;160;160;93;358;198;256;256 -201;'706;Somalia;2042;Graphic papers;5610;Import quantity;t;100;100;100;100;100;200;200;1700;100;600;300;500;800;1100;400;3700;800;600;1100;1500;1500;300;300;300;200;472;67;120;90;152;152;152;27;144;169;169;216;216;695;2512;1498;1498;257;297;297;297;39;216;291;127;723;490;869;1816;1264;1726;2418;3944;6703;5420;3357;3708;4550 -201;'706;Somalia;2042;Graphic papers;5622;Import value;1000 USD;15;15;15;15;15;35;30;402;29;193;117;280;462;708;426;2003;706;500;1082;2510;2510;284;284;284;230;470;90;216;152;122;122;122;36;128;146;146;47;47;400;1444;826;826;71;114;114;114;48;302;259;142;822;495;864;1783;1173;1502;2071;3704;7190;5245;3560;5547;5886 -201;'706;Somalia;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;136;;74;74;74;74;87;87;87;87;87;87;87;87;110;110;110;110;110;110;110;110;110;304;195;195;195 -201;'706;Somalia;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94;88;;30;30;30;30;40;40;40;40;40;40;40;40;71;71;71;71;71;71;71;71;71;269;169;169;169 -201;'706;Somalia;1671;Newsprint;5610;Import quantity;t;100;100;100;100;100;100;100;1600;;500;200;100;600;600;300;2600;200;300;200;200;200;200;200;200;100;0;0;1;14;0;0;;;0;25;25;198;198;198;198;198;198;198;198;198;198;1;2;2;2;72;72;72;72;72;10;10;4;34;32;12;12;22 -201;'706;Somalia;1671;Newsprint;5622;Import value;1000 USD;15;15;15;15;15;20;15;378;;177;80;50;257;392;297;1109;156;230;140;130;130;109;109;109;60;0;0;4;29;0;0;;;0;18;18;36;36;36;36;36;36;36;36;36;36;9;5;5;5;74;74;74;74;74;7;7;4;24;51;25;27;18 -201;'706;Somalia;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;74;74;74;74;74;74;74;74;74;74;74;74;74;74;74;74;74;74;74;74;74;74;74;74 -201;'706;Somalia;1671;Newsprint;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;30 -201;'706;Somalia;1674;Printing and writing papers;5610;Import quantity;t;;;;;;100;100;100;100;100;100;400;200;500;100;1100;600;300;900;1300;1300;100;100;100;100;472;67;119;76;152;152;152;27;144;144;144;18;18;497;2314;1300;1300;59;99;99;99;38;214;289;125;651;418;797;1744;1192;1716;2408;3940;6669;5388;3345;3696;4528 -201;'706;Somalia;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;15;15;24;29;16;37;230;205;316;129;894;550;270;942;2380;2380;175;175;175;170;470;90;212;123;122;122;122;36;128;128;128;11;11;364;1408;790;790;35;78;78;78;39;297;254;137;748;421;790;1709;1099;1495;2064;3700;7166;5194;3535;5520;5868 -201;'706;Somalia;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;136;;;;;;13;13;13;13;13;13;13;13;36;36;36;36;36;36;36;36;36;230;121;121;121 -201;'706;Somalia;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94;88;;;;;;10;10;10;10;10;10;10;10;41;41;41;41;41;41;41;41;41;239;139;139;139 -201;'706;Somalia;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;21;7;16;19;19;112;490;16;211;354;354;318;259;192;142;261 -201;'706;Somalia;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;115;10;16;18;18;114;456;55;236;348;348;722;443;241;431;407 -201;'706;Somalia;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13 -201;'706;Somalia;1612;Printing and writing papers, uncoated, mechanical;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 -201;'706;Somalia;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;28;28;28;28;93;265;85;608;367;650;1137;1084;1277;1915;3165;5559;4419;2495;2784;3581 -201;'706;Somalia;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;22;22;22;22;101;221;65;674;358;626;1082;909;1003;1548;2806;5306;3710;2291;3560;3997 -201;'706;Somalia;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;497;2314;1300;1300;3;71;71;71;1;100;17;24;24;32;35;117;92;228;139;421;792;710;658;770;686 -201;'706;Somalia;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;364;1408;790;790;2;56;56;56;11;81;23;56;56;45;50;171;135;256;168;546;1138;1041;1003;1529;1464 -201;'706;Somalia;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;23;23;23;23;23;23;23;217;108;108;108 -201;'706;Somalia;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;31;31;31;31;31;31;31;31;229;129;129;129 -201;'706;Somalia;1675;Other paper and paperboard;5610;Import quantity;t;300;300;300;300;300;700;700;1800;300;700;900;1800;3900;4900;6900;300;6100;3000;200;300;300;100;100;100;100;10012;2422;7792;3397;1622;1622;1;49;26;26;26;5;2;2;3;3;4;29;111;111;77;62;36;36;157;157;175;196;192;227;137;127;588;923;805;1107;1160;1747 -201;'706;Somalia;1675;Other paper and paperboard;5622;Import value;1000 USD;125;125;125;125;125;286;286;354;58;179;244;716;1655;4116;5727;250;5080;2500;168;501;501;160;160;160;160;4423;1332;4353;1544;700;700;2;31;12;12;12;2;1;1;1;1;3;10;63;63;112;104;22;22;128;128;149;227;252;306;181;262;636;1520;1261;1740;1939;2303 -201;'706;Somalia;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;13;13;24;24;7;7;13;7;13;32;36;36;36;36;42;42;42;41;41;41;41;41;41;41;41;28;41;24;37;37 -201;'706;Somalia;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;19;19;35;35;4;4;12;4;6;16;18;18;18;18;81;81;81;88;89;89;89;89;89;89;89;22;89;29;87;87 -201;'706;Somalia;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;3;3;1;4;4;8;35;40;168;519;403;651;659;889 -201;'706;Somalia;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;10;10;4;12;8;6;30;86;207;865;686;998;1235;1508 -201;'706;Somalia;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;26;103;103;55;61;28;28;152;152;152;178;174;205;60;45;360;386;351;452;497;854 -201;'706;Somalia;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;7;55;55;48;88;12;12;101;101;101;199;228;284;119;144;370;630;520;729;692;773 -201;'706;Somalia;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;0;6;25;29;29;29;29;29;29;29;28;28;28;28;28;28;28;28;28;28;24;24;24 -201;'706;Somalia;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;0;2;12;14;14;14;14;14;14;14;21;22;22;22;22;22;22;22;22;22;20;20;20 -201;'706;Somalia;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;25;25;25;25;25;99;99;99;125;125;125;7;3;3;179;251;54;278;614 -201;'706;Somalia;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;7;28;28;28;126;126;126;9;1;1;203;258;59;179;354 -201;'706;Somalia;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;25;25;25;25;25;25;25;25;24;24;24;24;24;24;24;24;24;24;24;24;24 -201;'706;Somalia;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;12;12;12;12;12;12;12;12;19;19;19;19;19;19;19;19;19;19;19;19;19 -201;'706;Somalia;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;75;9;15;1;1;1;1;1;1;2;33;6;33;269;76;86;81;68;49 -201;'706;Somalia;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;46;27;67;2;2;2;2;2;2;3;59;11;114;264;227;224;304;256;162 -201;'706;Somalia;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;0;0;0;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;0;0;0 -201;'706;Somalia;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;0;0;0;2;2;2;2;2;2;2;2;3;3;3;3;3;3;3;3;3;1;1;1 -201;'706;Somalia;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;3;3;21;21;2;2;52;52;52;52;47;47;47;9;85;131;11;316;151;115 -201;'706;Somalia;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;2;2;14;14;3;3;71;71;71;71;99;99;99;29;99;198;35;364;256;184 -201;'706;Somalia;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -201;'706;Somalia;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -201;'706;Somalia;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;3;1;0;76 -201;'706;Somalia;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;2;3;2;1;73 -201;'706;Somalia;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;3;3;8;8;22;1;2;2;2;2;22;14;14;14;42;42;60;18;51;4;4;4 -201;'706;Somalia;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;3;3;8;8;64;16;2;2;17;17;44;16;16;16;32;32;59;25;55;13;12;22 -201;'706;Somalia;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;7;7;7;7;13;13;13;13;13;13;13;13;13;13;13;0;13;0;13;13 -201;'706;Somalia;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4;4;4;4;67;67;67;67;67;67;67;67;67;67;67;0;67;9;67;67 -201;'706;Somalia;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44418;53126;48787;48924;71503;88829;51026 -201;'706;Somalia;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;67;40;15;220;150;127 -201;'706;Somalia;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16180;2530;2155;436;674;776;397 -201;'706;Somalia;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;60;58;57 -201;'706;Somalia;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;45;8;59;52;113;131 -201;'706;Somalia;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;0 -201;'706;Somalia;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16144;2485;2147;377;622;663;266 -201;'706;Somalia;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;57;57 -201;'706;Somalia;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;135;276;114;365;379;96;294 -201;'706;Somalia;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;0;0;1;8;8 -201;'706;Somalia;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;143;255;32;66;129;132 -201;'706;Somalia;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;1;2;6;6 -201;'706;Somalia;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8849;12055;9647;7900;10517;13464;5962 -201;'706;Somalia;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;12;12;54;54 -201;'706;Somalia;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4 -201;'706;Somalia;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2 -201;'706;Somalia;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15 -201;'706;Somalia;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8 -201;'706;Somalia;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7 -201;'706;Somalia;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10 -201;'706;Somalia;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18536;36513;33268;30009;41856;62477;34347 -201;'706;Somalia;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1;2;1;145;23;1 -201;'706;Somalia;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;23;29;82;11;225;36 -201;'706;Somalia;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;621;1586;3319;10100;18000;11662;9858 -201;'706;Somalia;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;8;0;0;1;1 -201;'706;Somalia;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11289;13866;17433;16032;16188;19553;19819 -201;'706;Somalia;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;7;28;52;58;49;6 -201;'706;Somalia;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;3;9;19;11;102 -201;'706;Somalia;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;221;272;307;212;315;173 -201;'706;Somalia;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -201;'706;Somalia;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1069;836;1603;2059;2366;3208;3418 -201;'706;Somalia;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;7;28;0;16;4;4 -201;'706;Somalia;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3599;5145;5550;6203;7601;7434;6475 -201;'706;Somalia;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;41;45;0 -201;'706;Somalia;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6539;7661;10005;7454;5990;8585;9651 -201;'706;Somalia;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;0;0;52;1;0;2 -202;'710;South Africa;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1623504;1846375;1682273;1322654;1640546.46;1976195;1655147 -202;'710;South Africa;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2206433;2321517;1708033;1796930;2152729.94;2565949;2420928 -202;'710;South Africa;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;62184;56821;70850;81859;87281;66335;77687;83499;107261;128793;112969;69275;148954;272699;194075;156237;128189;155092;165252;326820;308412;225230;247827;240137;225449;212605;211467;309895;215205;238350;238710;458340;338758;488398;566926;532648;492291;511119;486414;486414;351856;442573;561387;633781;715657;887099;1031829;955604;785790;956702;1081494;1043767;1135479;1198130;1123918;1060019;1120491;1273225;1132773;888827;1112585.46;1447412;1162537 -202;'710;South Africa;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;20237;20616;21745;24937;25139;29375;31985;43805;44922;41537;52553;58233;86830;102734;105086;108838;134163;173778;197989;235072;233828;268534;230268;238187;304539;424732;471877;630511;374577;381076;385693;588933;583997;803664;991506;1259638;837358;781676;797619;816038;887573;870680;1189938;1280226;1331095;1311012;1473094;1570736;1271552.1;1560587;1791921.1;1441796;1401887;1582716;1567523;1604242;1767496;1844982;1286214;1445863;1711656.94;2089830;1958919 -202;'710;South Africa;1861;Roundwood;5516;Production;m3;5366000;6078000;6532000;6707000;8384000;14670000;14751000;14767000;15522000;15775000;16299000;16257000;16383000;17237000;17107000;17094000;16161000;16927000;17908000;19582000;20682000;20973000;22524000;21344000;23554000;24459000;26888000;27749000;28727000;28182000;28492000;27873000;28154000;30518000;31023900;32129900;32966900;30616000;29515300;30959200;30553500;30566500;33159400;33776913;34564059;34764082;31511802;31867289;30887580;28988569;27906387;29906359;27617638;26757472;27313018;26446098;24962566;27782481;28322702;28457111;28807111;28857111;28857111 -202;'710;South Africa;1861;Roundwood;5616;Import quantity;m3;;;;17600;125600;121400;83300;82000;78100;84600;52600;44600;50300;63300;56800;41500;33000;40300;47200;51200;48100;36600;32400;29800;27200;3876;1989;4414;3270;5655;9080;102404;58583;74335;130900;114500;11900;15600;13000;13000;11819;16000;21683;37994;37493;50713;50713;60491;35416;340107;415745;276542;217045;328969;507670;645408;796947;756336;946175;661271;969595.51;1134622;1022290 -202;'710;South Africa;1861;Roundwood;5622;Import value;1000 USD;;;;620;5316;3739;3698;3836;4512;4337;2719;2440;3964;7346;5411;4567;3956;5212;7902;12537;9811;5434;4766;4658;4169;315;270;423;380;440;800;12199;8007;9288;11096;8825;2185;3696;2787;2787;2993;4629;5538;7101;6839;5355;5355;5345;2544;15867;14901;11371;17335;14646;21732;34435;34960;35060;38066;25908;46092.28;45592;47166 -202;'710;South Africa;1861;Roundwood;5916;Export quantity;m3;14000;13000;8000;6500;11000;8700;17600;16000;11200;16000;16000;10900;9200;8900;9800;33400;50500;95300;78600;42100;46500;29400;55100;42200;23100;35905;46605;43465;25793;16104;70586;57306;371523;409454;210500;384800;246400;207400;301000;301000;138269;385813;303788;370881;252980;191337;191337;229223;219941;242024;249802;292756;201905;306966;451202;460245;834156;803018;722312;565403;1072342.97;1452848;1480376 -202;'710;South Africa;1861;Roundwood;5922;Export value;1000 USD;187;179;106;193;398;288;508;489;210;402;340;214;206;254;201;1052;2004;7413;6777;3844;4228;2596;4036;3774;2722;4155;3726;4846;3514;3049;7666;9227;47794;43322;37121;53460;28571;25030;24472;24472;13255;25790;22773;24369;16222;11320;11320;13718;13504;14863;12960;12827;16699;26990;29199;20881;60199;85137;59597;65082;146448.46;108930;101362 -202;'710;South Africa;1862;Roundwood, coniferous;5516;Production;m3;2040000;2042000;2545000;2552000;3221000;4276000;4078000;4113000;4600000;4694000;5011000;4852000;5044000;5617000;5373000;5195000;4809000;5420000;5733000;6408000;6718000;6684000;6697000;6339000;7122000;7165000;7955000;8545000;8865000;8615000;8705000;8232000;9132000;9020000;9750100;10315200;10737400;9374000;8326900;8853300;8866700;8727900;8479300;7605700;7557638;7602407;7451761;8841647;7700256;6985932;7555935;7819234;7543436;6694759;6780194;6646443;5660349;6777677;5590840;7004113;7354113;7404113;7404113 -202;'710;South Africa;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;262516;207229;272664;42158;42562.12;21378;64993 -202;'710;South Africa;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9062;10618;9009;1941;2102.93;1437;2884 -202;'710;South Africa;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;596378;569539;540671;428453;858807.97;1197635;1211478 -202;'710;South Africa;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46076;63968;47048;53960;124986.37;83061;79211 -202;'710;South Africa;1863;Roundwood, non-coniferous;5516;Production;m3;3326000;4036000;3987000;4155000;5163000;10394000;10673000;10654000;10922000;11081000;11288000;11405000;11339000;11620000;11734000;11899000;11352000;11507000;12175000;13174000;13964000;14289000;15827000;15005000;16432000;17294000;18933000;19204000;19862000;19567000;19787000;19641000;19022000;21498000;21273800;21814700;22229500;21242000;21188400;22105900;21686800;21838600;24680100;26171213;27006421;27161675;24060041;23025642;23187324;22002637;20350452;22087125;20074202;20062713;20532824;19799655;19302217;21004804;22731862;21452998;21452998;21452998;21452998 -202;'710;South Africa;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;534431;549107;673511;619113;927033.4;1113244;957297 -202;'710;South Africa;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25898;24442;29057;23967;43989.35;44155;44282 -202;'710;South Africa;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;237778;233479;181641;136950;213535;255213;268898 -202;'710;South Africa;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14123;21169;12549;11122;21462.09;25869;22151 -202;'710;South Africa;1864;Wood fuel;5516;Production;m3;773000;530000;557000;667000;850000;6760000;6780000;6800000;6820000;6840000;6860000;6880000;6900000;6920000;6940000;6960000;6980000;7000000;7400000;7800000;8200000;8600000;9000000;9400000;9800000;10200000;10600000;11000000;11400000;11800000;12200000;12600000;13000000;13400000;13800000;14200000;14600000;12000000;12000000;12000000;12000000;12000000;12000000;12000000;12000000;12000000;12000000;12000000;12000000;12000000;12000000;12000000;12000000;12023629;12029064;12027359;12025764;12025764;12025294;12250000;12600000;12650000;12650000 -202;'710;South Africa;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;100;300;300;300;300;300;300;300;9248;48;1700;39900;39900;2200;0;0;0;0;0;0;0;0;0;0;32;52;332000;413000;275000;204131;322558;469000;616899;757697;739548;902058;639447;919668.51;1045411;974638 -202;'710;South Africa;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;3;13;13;13;13;13;13;13;375;2;87;2233;2233;84;0;0;0;0;0;0;0;0;0;0;42;44;14642;14393;10504;9755;10792;14345;27557;26701;28932;31385;23208;38729.28;42835;41199 -202;'710;South Africa;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;276;5800;800;1000;0;0;0;0;0;0;0;0;0;0;14474;10188;64000;91000;162000;4617;4298;184202;221584;198391;178018;266849;264277;620205.97;683884;634376 -202;'710;South Africa;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;309;43;55;0;0;0;0;0;0;0;0;0;0;568;467;4083;3533;4716;993;633;5818;7430;7614;7483;7441;7122;18417.46;24292;18206 -202;'710;South Africa;1627;Wood fuel, coniferous;5516;Production;m3;62000;41000;43000;52000;70000;676000;678000;680000;682000;684000;686000;688000;690000;692000;694000;696000;698000;700000;740000;780000;820000;860000;900000;940000;980000;1020000;1060000;1100000;1140000;1180000;1220000;1260000;1300000;1340000;1380000;1420000;1460000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;23629;29064;27359;25764;25764;25294;250000;600000;650000;650000 -202;'710;South Africa;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;262306;199220;246487;39334;41479.12;20869;58341 -202;'710;South Africa;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9001;8116;6857;1692;2021.93;975;1837 -202;'710;South Africa;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;184109;168539;258671;258739;610271.97;666635;619478 -202;'710;South Africa;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7060;6250;6440;6395;17053.37;21996;15867 -202;'710;South Africa;1628;Wood fuel, non-coniferous;5516;Production;m3;711000;489000;514000;615000;780000;6084000;6102000;6120000;6138000;6156000;6174000;6192000;6210000;6228000;6246000;6264000;6282000;6300000;6660000;7020000;7380000;7740000;8100000;8460000;8820000;9180000;9540000;9900000;10260000;10620000;10980000;11340000;11700000;12060000;12420000;12780000;13140000;12000000;12000000;12000000;12000000;12000000;12000000;12000000;12000000;12000000;12000000;12000000;12000000;12000000;12000000;12000000;12000000;12000000;12000000;12000000;12000000;12000000;12000000;12000000;12000000;12000000;12000000 -202;'710;South Africa;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;495391;540328;655571;600113;878189.4;1024542;916297 -202;'710;South Africa;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17700;20816;24528;21516;36707.35;41860;39362 -202;'710;South Africa;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14282;9479;8178;5538;9934;17249;14898 -202;'710;South Africa;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;554;1233;1001;727;1364.09;2296;2339 -202;'710;South Africa;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;100;300;300;300;300;300;300;300;9248;48;1700;39900;39900;2200;0;0;0;0;0;0;0;0;0;0;32;52;332000;413000;275000;204131;322558;469000;616899;;;;;;; -202;'710;South Africa;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;3;13;13;13;13;13;13;13;375;2;87;2233;2233;84;0;0;0;0;0;0;0;0;0;0;42;44;14642;14393;10504;9755;10792;14345;27557;;;;;;; -202;'710;South Africa;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;276;5800;800;1000;0;0;0;0;0;0;0;0;0;0;14474;10188;64000;91000;162000;4617;4298;184202;221584;;;;;;; -202;'710;South Africa;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;309;43;55;0;0;0;0;0;0;0;0;0;0;568;467;4083;3533;4716;993;633;5818;7430;;;;;;; -202;'710;South Africa;1865;Industrial roundwood;5516;Production;m3;4593000;5548000;5975000;6040000;7534000;7910000;7971000;7967000;8702000;8935000;9439000;9377000;9483000;10317000;10167000;10134000;9181000;9927000;10508000;11782000;12482000;12373000;13524000;11944000;13754000;14259000;16288000;16749000;17327000;16382000;16292000;15273000;15154000;17118000;17223900;17929900;18366900;18616000;17515300;18959200;18553500;18566500;21159400;21776913;22564059;22764082;19511802;19867289;18887580;16988569;15906387;17906359;15617638;14733843;15283954;14418739;12936802;15756717;16297408;16207111;16207111;16207111;16207111 -202;'710;South Africa;1865;Industrial roundwood;5616;Import quantity;m3;;;;17600;125600;121400;83300;82000;78100;84600;52600;44600;50300;63300;56800;41500;33000;40300;47200;51200;48100;36600;32400;29700;26900;3576;1689;4114;2970;5355;8780;93156;58535;72635;91000;74600;9700;15600;13000;13000;11819;16000;21683;37994;37493;50713;50713;60459;35364;8107;2745;1542;12914;6411;38670;28509;39250;16788;44117;21824;49927;89211;47652 -202;'710;South Africa;1865;Industrial roundwood;5622;Import value;1000 USD;;;;620;5316;3739;3698;3836;4512;4337;2719;2440;3964;7346;5411;4567;3956;5212;7902;12537;9811;5434;4766;4655;4156;302;257;410;367;427;787;11824;8005;9201;8863;6592;2101;3696;2787;2787;2993;4629;5538;7101;6839;5355;5355;5303;2500;1225;508;867;7580;3854;7387;6878;8259;6128;6681;2700;7363;2757;5967 -202;'710;South Africa;1865;Industrial roundwood;5916;Export quantity;m3;14000;13000;8000;6500;11000;8700;17600;16000;11200;16000;16000;10900;9200;8900;9800;33400;50500;95300;78600;42100;46500;29400;55100;42200;23100;35905;46605;43465;25793;16104;70586;57306;371523;409178;204700;384000;245400;207400;301000;301000;138269;385813;303788;370881;252980;191337;191337;214749;209753;178024;158802;130756;197288;302668;267000;238661;635765;625000;455463;301126;452137;768964;846000 -202;'710;South Africa;1865;Industrial roundwood;5922;Export value;1000 USD;187;179;106;193;398;288;508;489;210;402;340;214;206;254;201;1052;2004;7413;6777;3844;4228;2596;4036;3774;2722;4155;3726;4846;3514;3049;7666;9227;47794;43310;36812;53417;28516;25030;24472;24472;13255;25790;22773;24369;16222;11320;11320;13150;13037;10780;9427;8111;15706;26357;23381;13451;52585;77654;52156;57960;128031;84638;83156 -202;'710;South Africa;1866;Industrial roundwood, coniferous;5516;Production;m3;1978000;2001000;2502000;2500000;3151000;3600000;3400000;3433000;3918000;4010000;4325000;4164000;4354000;4925000;4679000;4499000;4111000;4720000;4993000;5628000;5898000;5824000;5797000;5399000;6142000;6145000;6895000;7445000;7725000;7435000;7485000;6972000;7832000;7680000;8370100;8895200;9277400;9374000;8326900;8853300;8866700;8727900;8479300;7605700;7557638;7602407;7451761;8841647;7700256;6985932;7555935;7819234;7543436;6671130;6751130;6619084;5634585;6751913;5565546;6754113;6754113;6754113;6754113 -202;'710;South Africa;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;996;7627;34065;211;755;8800;100;100;1400;2700;2700;500;900;900;747;2382;3305;3305;4300;200;476;63;63;44;220;190;569;210;8009;26177;2824;1083;509;6652 -202;'710;South Africa;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;633;3688;17;49;1084;15;15;141;162;162;52;129;129;100;300;202;202;262;63;169;52;69;95;89;115;117;61;2502;2152;249;81;462;1047 -202;'710;South Africa;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1993;15112;5764;112525;201092;119300;278600;150000;92900;182000;182000;63000;87100;125712;188017;115379;45653;45653;6683;1687;2468;9322;10000;61135;130000;102000;128840;412269;401000;282000;169714;248536;531000;592000 -202;'710;South Africa;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;630;3754;1325;7082;17175;12033;26424;13000;7603;11290;11290;2482;3500;8545;10000;6115;2420;2420;312;199;232;429;533;6270;14774;10534;6625;39016;57718;40608;47565;107933;61065;63344 -202;'710;South Africa;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;996;7627;34065;211;755;8800;100;100;1400;2700;2700;500;900;900;747;2382;3305;3305;4300;200;476;63;63;44;220;190;569;210;8009;26177;2824;1083;509;6652 -202;'710;South Africa;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;633;3688;17;49;1084;15;15;141;162;162;52;129;129;100;300;202;202;262;63;169;52;69;95;89;115;117;61;2502;2152;249;81;462;1047 -202;'710;South Africa;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1993;15112;5764;112525;201092;119300;278600;150000;92900;182000;182000;63000;87100;125712;188017;115379;45653;45653;6683;1687;2468;9322;10000;61135;130000;102000;128840;412269;401000;282000;169714;248536;531000;592000 -202;'710;South Africa;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;630;3754;1325;7082;17175;12033;26424;13000;7603;11290;11290;2482;3500;8545;10000;6115;2420;2420;312;199;232;429;533;6270;14774;10534;6625;39016;57718;40608;47565;107933;61065;63344 -202;'710;South Africa;1867;Industrial roundwood, non-coniferous;5516;Production;m3;2615000;3547000;3473000;3540000;4383000;4310000;4571000;4534000;4784000;4925000;5114000;5213000;5129000;5392000;5488000;5635000;5070000;5207000;5515000;6154000;6584000;6549000;7727000;6545000;7612000;8114000;9393000;9304000;9602000;8947000;8807000;8301000;7322000;9438000;8853800;9034700;9089500;9242000;9188400;10105900;9686800;9838600;12680100;14171213;15006421;15161675;12060041;11025642;11187324;10002637;8350452;10087125;8074202;8062713;8532824;7799655;7302217;9004804;10731862;9452998;9452998;9452998;9452998 -202;'710;South Africa;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4359;1153;59091;58324;71880;82200;74500;9600;14200;10300;10300;11319;15100;20783;37247;35111;47408;47408;56159;35164;7631;2682;1479;12870;6191;38480;27940;39040;8779;17940;19000;48844;88702;41000 -202;'710;South Africa;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;358;154;8136;7988;9152;7779;6577;2086;3555;2625;2625;2941;4500;5409;7001;6539;5153;5153;5041;2437;1056;456;798;7485;3765;7272;6761;8198;3626;4529;2451;7282;2295;4920 -202;'710;South Africa;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14111;55474;51542;258998;208086;85400;105400;95400;114500;119000;119000;75269;298713;178076;182864;137601;145684;145684;208066;208066;175556;149480;120756;136153;172668;165000;109821;223496;224000;173463;131412;203601;237964;254000 -202;'710;South Africa;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2419;3912;7902;40712;26135;24779;26993;15516;17427;13182;13182;10773;22290;14228;14369;10107;8900;8900;12838;12838;10548;8998;7578;9436;11583;12847;6826;13569;19936;11548;10395;20098;23573;19812 -202;'710;South Africa;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3718;583;57220;57220;57220;14300;6600;6600;7500;7200;7200;8219;12000;14650;24393;18532;20653;20653;13619;13619;2331;846;379;5713;580;7420;15650;13490;6990;3305;19000;19000;702;910 -202;'710;South Africa;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;243;52;7874;7874;7874;2932;1730;1730;2872;2178;2178;2441;4000;3863;4001;3039;3387;3387;2233;1523;741;346;137;3140;157;3435;2441;4357;2734;1218;2451;2451;38;150 -202;'710;South Africa;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25400;25400;25400;7500;4000;4000;369;10000;18076;22864;22864;5000;5000;6457;6457;2184;780;756;16126;16032;4200;7060;5450;2690;2690;2611;2058;2877;2000 -202;'710;South Africa;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9269;9269;9269;2493;1008;1008;30;1950;3197;3338;3338;600;600;943;943;319;114;588;2354;2341;1672;946;1057;1098;1098;795;304;623;556 -202;'710;South Africa;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;641;570;1871;1104;14660;67900;67900;3000;6700;3100;3100;3100;3100;6133;12854;16579;26755;26755;42540;21545;5300;1836;1100;7157;5611;31060;12290;25550;1789;14635;0;29844;88000;40090 -202;'710;South Africa;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115;102;262;114;1278;4847;4847;356;683;447;447;500;500;1546;3000;3500;1766;1766;2808;914;315;110;661;4345;3608;3837;4320;3841;892;3311;0;4831;2257;4770 -202;'710;South Africa;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14111;55474;51542;258998;208086;60000;80000;70000;107000;115000;115000;74900;288713;160000;160000;114737;140684;140684;201609;201609;173372;148700;120000;120027;156636;160800;102761;218046;221310;170773;128801;201543;235087;252000 -202;'710;South Africa;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2419;3912;7902;40712;26135;15510;17724;6247;14934;12174;12174;10743;20340;11031;11031;6769;8300;8300;11895;11895;10229;8884;6990;7082;9242;11175;5880;12512;18838;10450;9600;19794;22950;19256 -202;'710;South Africa;1868;Sawlogs and veneer logs;5516;Production;m3;1648000;2035000;2145000;2260000;2464000;2432000;2493000;2416000;2877000;2915000;3131000;3233000;3258000;3506000;3444000;3281000;3113000;3631000;3999000;4341000;4444000;4322000;3968000;4129000;4136000;3662000;3696000;4021000;4407000;4341000;4228000;4020000;4155000;4374000;5432000;6060300;6452300;6002000;4931600;4733600;4818800;4684000;5235900;4562999;4732167;4710276;4367396;5093387;4374800;3963897;4179100;4485599;4374783;4676652;4676652;4450343;3434896;4702445;2786494;5309730;5309730;5309730;5309730 -202;'710;South Africa;1868;Sawlogs and veneer logs;5616;Import quantity;m3;;;;17600;104500;113200;72500;69100;66200;67000;43800;41700;48000;59500;52400;40000;31200;36900;44600;50200;46600;28600;27800;28300;25500;2176;289;2714;1570;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -202;'710;South Africa;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;;;;620;4185;3297;3056;3084;3520;2982;2144;2324;3796;7111;5143;4477;3863;5051;7704;12428;9703;4488;4355;4529;4030;176;131;284;241;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -202;'710;South Africa;1868;Sawlogs and veneer logs;5916;Export quantity;m3;;;;700;2800;3400;6100;8200;2400;2400;6600;6900;8200;7900;8800;32300;44500;66900;56900;25400;28000;24100;24100;21700;2600;15405;26105;22965;5293;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -202;'710;South Africa;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;;;;38;97;115;223;306;50;70;151;116;151;199;146;978;1553;4718;4605;2152;2363;2056;850;1312;260;1693;1264;2384;1052;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -202;'710;South Africa;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;1478000;1721000;1793000;1898000;2090000;2125000;2178000;2093000;2474000;2515000;2678000;2801000;2843000;3070000;3063000;2936000;2678000;3136000;3435000;3769000;3825000;3698000;3413000;3551000;3557000;3150000;3180000;3460000;3790000;3730000;3635000;3355000;3786000;3967000;5000000;5578300;5939200;5633000;4539400;4357100;4435600;4311500;4857400;4158022;4241040;4261407;4159073;4894655;4145537;3744396;3916832;4411143;4231590;4348795;4348795;4227049;3402063;4657951;2742000;5195396;5195396;5195396;5195396 -202;'710;South Africa;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;;;;300;19500;8700;5800;5400;6200;4600;3800;2200;400;1800;500;1000;600;900;200;300;900;2500;3500;2800;2800;913;0;1646;174;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -202;'710;South Africa;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;;;;17;876;363;296;275;373;325;300;279;38;164;89;103;66;164;32;49;245;325;361;449;449;102;0;163;16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -202;'710;South Africa;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;;;;;200;400;300;500;1300;1300;4400;4700;3200;3200;5000;22000;36000;62000;54000;24000;27000;23500;23500;21200;2500;10069;5190;14425;1081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -202;'710;South Africa;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;;;;;7;22;15;23;28;39;89;46;46;101;66;669;1267;4324;4356;2024;2271;2000;796;1274;250;843;707;1307;127;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -202;'710;South Africa;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;170000;314000;352000;362000;374000;307000;315000;323000;403000;400000;453000;432000;415000;436000;381000;345000;435000;495000;564000;572000;619000;624000;555000;578000;579000;512000;516000;561000;617000;611000;593000;665000;369000;407000;432000;482000;513100;369000;392200;376500;383200;372500;378500;404977;491127;448869;208323;198732;229263;219501;262268;74456;143193;327857;327857;223294;32833;44494;44494;114334;114334;114334;114334 -202;'710;South Africa;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;;;;17300;85000;104500;66700;63700;60000;62400;40000;39500;47600;57700;51900;39000;30600;36000;44400;49900;45700;26100;24300;25500;22700;1263;289;1068;1396;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -202;'710;South Africa;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;;;;603;3309;2934;2760;2809;3147;2657;1844;2045;3758;6947;5054;4374;3797;4887;7672;12379;9458;4163;3994;4080;3581;74;131;121;225;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -202;'710;South Africa;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;;;;700;2600;3000;5800;7700;1100;1100;2200;2200;5000;4700;3800;10300;8500;4900;2900;1400;1000;600;600;500;100;5336;20915;8540;4212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -202;'710;South Africa;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;;;;38;90;93;208;283;22;31;62;70;105;98;80;309;286;394;249;128;92;56;54;38;10;850;557;1077;925;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -202;'710;South Africa;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9223000;9526400;12027900;12140600;11905500;14833300;16052157;16316854;17009804;13875639;13661709;12940699;11664196;10337799;12112517;9934612;8748948;9299059;8660153;8083944;9786310;12220410;9986844;9986844;9986844;9986844 -202;'710;South Africa;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3158000;3261900;4118400;4157000;4076500;3498700;3244559;3174386;3260628;3202925;3873832;3421600;3143080;3534944;3308541;3212296;2222785;2302785;2292485;2023253;2034693;2741735;1402168;1402168;1402168;1402168 -202;'710;South Africa;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6065000;6264500;7909500;7983600;7829000;11334600;12807598;13142468;13749176;10672714;9787877;9519099;8521116;6802855;8803976;6722316;6526163;6996274;6367668;6060691;7751617;9478675;8584676;8584676;8584676;8584676 -202;'710;South Africa;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -202;'710;South Africa;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -202;'710;South Africa;1870;Pulpwood and particles (1961-1997);5516;Production;m3;991000;1320000;1568000;1416000;2321000;2735000;2895000;2868000;3045000;3225000;3245000;3123000;3488000;3898000;3772000;4004000;3777000;3998000;4213000;5016000;5591000;5561000;6337000;4841000;6025000;7048000;8816000;9565000;9399000;8866000;9271000;8777000;8806000;10166000;8969100;8525100;8615900;;;;;;;;;;;;;;;;;;;;;;;;;; -202;'710;South Africa;1870;Pulpwood and particles (1961-1997);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -202;'710;South Africa;1870;Pulpwood and particles (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -202;'710;South Africa;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;491000;270000;698000;587000;961000;1211000;1165000;1281000;1379000;1435000;1583000;1298000;1441000;1779000;1518000;1461000;1352000;1495000;1494000;1784000;1988000;2037000;2268000;1733000;2410000;2820000;3525000;3825000;3760000;3545000;3710000;3473000;3571000;3270000;2885000;2742200;2771400;;;;;;;;;;;;;;;;;;;;;;;;;; -202;'710;South Africa;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;500000;1050000;870000;829000;1360000;1524000;1730000;1587000;1666000;1790000;1662000;1825000;2047000;2119000;2254000;2543000;2425000;2503000;2719000;3232000;3603000;3524000;4069000;3108000;3615000;4228000;5291000;5740000;5639000;5321000;5561000;5304000;5235000;6896000;6084100;5782900;5844500;;;;;;;;;;;;;;;;;;;;;;;;;; -202;'710;South Africa;1871;Other industrial roundwood;5516;Production;m3;1954000;2193000;2262000;2364000;2749000;2743000;2583000;2683000;2780000;2795000;3063000;3021000;2737000;2913000;2951000;2849000;2291000;2298000;2296000;2425000;2447000;2490000;3219000;2974000;3593000;3549000;3776000;3163000;3521000;3175000;2793000;2476000;2193000;2578000;2822800;3344500;3298700;3391000;3057300;2197700;1594100;1977000;1090200;1161757;1515038;1044002;1268767;1112193;1572081;1360476;1389488;1308243;1308243;1308243;1308243;1308243;1417962;1267962;1290504;910537;910537;910537;910537 -202;'710;South Africa;1871;Other industrial roundwood;5616;Import quantity;m3;;;;;21100;8200;10800;12900;11900;17600;8800;2900;2300;3800;4400;1500;1800;3400;2600;1000;1500;8000;4600;1400;1400;1400;1400;1400;1400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -202;'710;South Africa;1871;Other industrial roundwood;5622;Import value;1000 USD;;;;;1131;442;642;752;992;1355;575;116;168;235;268;90;93;161;198;109;108;946;411;126;126;126;126;126;126;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -202;'710;South Africa;1871;Other industrial roundwood;5916;Export quantity;m3;14000;13000;8000;5800;8200;5300;11500;7800;8800;13600;9400;4000;1000;1000;1000;1100;6000;28400;21700;16700;18500;5300;31000;20500;20500;20500;20500;20500;20500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -202;'710;South Africa;1871;Other industrial roundwood;5922;Export value;1000 USD;187;179;106;155;301;173;285;183;160;332;189;98;55;55;55;74;451;2695;2172;1692;1865;540;3186;2462;2462;2462;2462;2462;2462;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -202;'710;South Africa;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;9000;10000;11000;15000;100000;264000;57000;59000;65000;60000;64000;65000;70000;76000;98000;102000;81000;89000;64000;75000;85000;89000;116000;115000;175000;175000;190000;160000;175000;160000;140000;144000;475000;443000;485100;574700;566800;583000;525600;377800;274100;339900;123200;203119;142212;80372;89763;73160;133119;98456;104159;99550;99550;99550;99550;99550;209269;59269;81811;156549;156549;156549;156549 -202;'710;South Africa;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;1945000;2183000;2251000;2349000;2649000;2479000;2526000;2624000;2715000;2735000;2999000;2956000;2667000;2837000;2853000;2747000;2210000;2209000;2232000;2350000;2362000;2401000;3103000;2859000;3418000;3374000;3586000;3003000;3346000;3015000;2653000;2332000;1718000;2135000;2337700;2769800;2731900;2808000;2531700;1819900;1320000;1637100;967000;958638;1372826;963630;1179004;1039033;1438962;1262020;1285329;1208693;1208693;1208693;1208693;1208693;1208693;1208693;1208693;753988;753988;753988;753988 -202;'710;South Africa;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;21100;8200;10800;12900;11900;17600;8800;2900;2300;3800;4400;1500;1800;3400;2600;1000;1500;8000;4600;1400;1400;1400;1400;1400;1400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -202;'710;South Africa;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;1131;442;642;752;992;1355;575;116;168;235;268;90;93;161;198;109;108;946;411;126;126;126;126;126;126;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -202;'710;South Africa;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;14000;13000;8000;5800;8200;5300;11500;7800;8800;13600;9400;4000;1000;1000;1000;1100;6000;28400;21700;16700;18500;5300;31000;20500;20500;20500;20500;20500;20500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -202;'710;South Africa;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;187;179;106;155;301;173;285;183;160;332;189;98;55;55;55;74;451;2695;2172;1692;1865;540;3186;2462;2462;2462;2462;2462;2462;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -202;'710;South Africa;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;1000;5000;8000;13000;20000;31000;7000;17000;10000;13000;13000;13000;13000;13000;13000;13000;13000;25000;35000;20000;26000;26000;26000;41000;41000;41000;41000;41000;200600;127300;188900;188900;188900;188900;188900;188900;188900;188900;188900;188900;188900;188900;209783;295500;223195;62255;62255;62255;62255 -202;'710;South Africa;1630;Wood charcoal;5610;Import quantity;t;500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2607;359;7800;9500;9500;9500;9400;7500;7500;10500;1100;7055;8219;14534;12239;11800;11800;2841;66370;68973;64278;81518;90111;88799;82282;80156;96030;114223;101130;116630.06;134439;146343 -202;'710;South Africa;1630;Wood charcoal;5622;Import value;1000 USD;143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;881;85;866;1258;1258;1258;1208;780;780;815;112;1080;1510;1891;1571;1411;1411;1303;11386;12559;10867;11631;12197;11549;9604;11046;14576;17014;13527;19419.53;20585;19408 -202;'710;South Africa;1630;Wood charcoal;5910;Export quantity;t;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1100;4700;8000;12600;20000;30900;7000;16900;9600;12800;12800;12800;12800;12800;12800;12800;12800;25815;31442;26263;33700;32900;29200;30300;44500;44500;39800;31900;25143;35355;49725;35700;12700;20503;24867;34352;19724;19724;27002;28663;26159;24886;35198;35422;41356;47092;50292.94;54094;50396 -202;'710;South Africa;1630;Wood charcoal;5922;Export value;1000 USD;0;0;0;0;0;0;0;0;0;0;0;0;0;0;92;473;840;1394;2332;3555;822;1964;1110;1536;1536;1536;1536;1536;1536;1536;1536;12375;13686;12052;11479;15399;13732;9267;12644;12644;9074;13885;12994;18625;22586;10833;7780;9248;13203;18875;12204;12204;14667;17441;13055;9604;15765;19901;21063;24994;28455.85;25871;30957 -202;'710;South Africa;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1567000;1567000;1567000;1567000;1567000;4396400;4396400;7780800;13445700;13445700;13607144;4986213;4115966;2517703;3030000;2577026;2251944;2376582;2303592;2464700;2464700;2409992;2530636;2530636;2530636;2530636 -202;'710;South Africa;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1400;1200;1200;1200;1200;1200;1267;1461;1780;1500;822;1313;829;654;642;8513;2945;7816;9660;24961;147885;148118;60430;46440.53;50882;137188 -202;'710;South Africa;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;265;182;182;123;123;123;710;488;532;579;1163;556;598;663;555;1143;1226;1102;1033;1455;3087;3848;1905;2163.72;1724;2232 -202;'710;South Africa;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2778700;2923600;3981100;3978100;5016226;6368258;6194368;7160313;5906448;5139000;4732000;3080000;3063000;3147000;2108000;1727176;1998225;2323223;2518537;2350914;2392464;1665502;1354758;2003032.31;2321319;1676915 -202;'710;South Africa;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;139653;136219;151156;171951;186434;247137;266878;334952;297208;272598;317012;187073;216805;233889;160088;164567;176570;203449;198634;217970;226864;181100;128915;188098.15;222985;164695 -202;'710;South Africa;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1207000;1207000;1207000;1207000;1207000;3900700;3900700;7285100;12950000;12950000;12950000;4600000;3700000;2100000;2600000;2166335;1829591;1926410;1850222;1938466;1938466;1883758;1875920;1875920;1875920;1875920 -202;'710;South Africa;1619;Wood chips and particles;5616;Import quantity;m3;;;;1994;1994;1994;1994;1994;1994;1994;1994;1994;1994;1994;1994;1994;1994;1994;1994;1994;1994;1994;1994;1994;1994;1994;1994;1994;1994;1994;1994;1994;1994;400;400;2000;2000;400;200;200;200;200;200;267;461;780;500;621;469;553;441;441;7956;2415;7286;9254;24594;147524;113704;40999;37631.75;50244;136707 -202;'710;South Africa;1619;Wood chips and particles;5622;Import value;1000 USD;;;;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;21;40;40;125;125;227;150;150;91;91;91;678;456;500;547;986;334;377;460;460;1048;917;793;721;1403;3019;3346;1612;2033.72;1683;2211 -202;'710;South Africa;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;527313;564790;1678440;491745;465267;465267;855207;1085002;1678158;2136500;2086000;2154400;2778700;2923500;3981000;3978000;5011000;6341000;6181000;7144000;5899000;5138000;4674000;3034000;3034000;3090000;2107000;1725176;1993465;2318463;2514961;2349327;2391352;1663924;1353782;2002103.07;2318842;1676088 -202;'710;South Africa;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;41511;44113;89680;41954;42748;42748;73443;100477;124135;108963;157300;172259;139653;136194;151128;171923;185656;241385;264778;332512;296602;272312;314425;180015;212149;225111;160022;164356;175390;202269;198071;217538;226486;180949;128821;188011.15;222615;164547 -202;'710;South Africa;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1580000;1700000;1700000;1700000;360000;360000;360000;360000;360000;495700;495700;495700;495700;495700;657144;386213;415966;417703;430000;410691;422353;450172;453370;526234;526234;526234;654716;654716;654716;654716 -202;'710;South Africa;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;755;2542;369;1100;500;500;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;201;844;276;213;201;557;530;530;406;367;361;34414;19431;8808.78;638;481 -202;'710;South Africa;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;97;13;49;33;33;38;32;32;32;32;32;32;32;32;32;177;222;221;203;95;95;309;309;312;52;68;502;293;130;41;21 -202;'710;South Africa;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4839;3375;4243;10000;3000;3000;0;100;100;100;5226;27258;13368;16313;7448;1000;58000;46000;29000;57000;1000;2000;4760;4760;3576;1587;1112;1578;976;929.25;2477;827 -202;'710;South Africa;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;169;111;140;470;238;238;0;25;28;28;778;5752;2100;2440;606;286;2587;7058;4656;8778;66;211;1180;1180;563;432;378;151;94;87;370;148 -202;'710;South Africa;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85000;25000;20000;15000;15000;15000;15000;15000;15000;15000;15000;15000 -202;'710;South Africa;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37076;28822;18405;22180;18619;20146;15590;5129;8710;13150.32;14538;11752 -202;'710;South Africa;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;688;586;505;484;559;697;638;504;939;1115.86;1070;844 -202;'710;South Africa;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76045;12108;9912;12809;7424;6847;4888;7366;10859;9865.93;8962;10515 -202;'710;South Africa;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9697;1842;1631;1618;897;1346;948;1720;7549;2653.81;1553;1923 -202;'710;South Africa;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75000;15000;10000;5000;5000;5000;5000;5000;5000;5000;5000;5000 -202;'710;South Africa;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37076;27627;18106;21081;16990;17068;13506;2720;1301;1400;1726;1693 -202;'710;South Africa;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;688;429;384;376;408;476;462;274;289;49;56;61 -202;'710;South Africa;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70211;6274;5207;4623;1878;269;252;147;198;172;849;1612 -202;'710;South Africa;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8848;993;812;560;160;87;70;35;90;42;198;313 -202;'710;South Africa;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000 -202;'710;South Africa;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1195;299;1099;1629;3078;2084;2409;7409;11750.32;12812;10059 -202;'710;South Africa;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;157;121;108;151;221;176;230;650;1066.86;1014;783 -202;'710;South Africa;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5834;5834;4705;8186;5546;6578;4636;7219;10661;9693.93;8113;8903 -202;'710;South Africa;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;849;849;819;1058;737;1259;878;1685;7459;2611.81;1355;1610 -202;'710;South Africa;1872;Sawnwood;5516;Production;m3;768000;633000;757000;837000;960000;930000;946000;1030000;1179000;1297000;1447000;1482000;1570000;1738000;1798000;1709000;1549000;1560000;1548000;1593000;1772000;1563000;1620000;1635000;1510000;1734000;1734000;1873000;1873000;1936000;1792000;1818000;1383000;1499000;1574000;1574000;1574000;1498000;1498000;1498000;1498000;1498000;2171300;2211400;2216500;2091100;1994975;2055769;1875588;1880498;1566795;1443105;1552675;1865958;1965739;2135758;2161991;2259317;2259317;2105000;2105000;2105000;2105000 -202;'710;South Africa;1872;Sawnwood;5616;Import quantity;m3;470200;391100;496200;567400;506800;333900;386700;395200;436800;496200;427200;360800;485300;488500;485300;327300;161600;185800;128900;302100;289100;247100;334900;262800;221000;48012;46249;133403;38980;80202;80202;530869;60943;542100;413000;466200;438000;384300;510200;510200;427000;380000;480000;360349;464350;487200;535300;487690;297000;350904;302030;153000;341343;318509;258620;186440;267905;216134;318225;328000;250000;234000;158000 -202;'710;South Africa;1872;Sawnwood;5622;Import value;1000 USD;20069;17179;20475;27547;25486;17008;19337;21269;25611;31078;25623;20944;48854;54448;47250;38315;20294;29561;23442;78982;67734;54770;71471;58531;58824;11917;18085;44551;16495;20909;20909;163298;30316;111234;120877;100359;97819;126981;122478;122478;103558;89068;94745;99216;129028;133900;149495;130703;80007;94697;109969;46403;96095;95096;81566;91209;101628;104162;99081;87431;118202;106350;92929 -202;'710;South Africa;1872;Sawnwood;5916;Export quantity;m3;23200;20900;5100;12700;9700;10900;16400;20500;13100;13900;14800;18100;21400;21100;11100;7700;58300;66000;102200;73800;38000;42800;28200;24900;24900;42653;48148;132748;95904;106946;106946;94863;63801;66778;57000;47500;73600;91000;134100;134100;107800;110000;123306;84279;63971;62782;78500;55323;14726;22976;18338;119500;123353;165796;150720;214740;264510;287440;219000;205755;301430;288991;177470 -202;'710;South Africa;1872;Sawnwood;5922;Export value;1000 USD;591;602;166;282;286;432;645;873;622;698;712;843;1426;1472;780;608;4372;6087;10993;8784;4429;5571;3648;3001;3001;9546;12928;28674;22544;28576;28576;22378;14384;17285;11443;15503;16158;13042;20140;20140;15286;14528;25062;17849;14302;14708;17349;11964;8403;11927;9095;29251;29237;42527;42740;43500;52726;54257;25182;25766;62911;57458;42406 -202;'710;South Africa;1632;Sawnwood, coniferous;5516;Production;m3;717500;566000;690500;776000;901500;850500;870000;947000;1034500;1143500;1255500;1324000;1414500;1569500;1589500;1498500;1402000;1407500;1390000;1417000;1587500;1325500;1371500;1371500;1284500;1493500;1493500;1622500;1622500;1734000;1619000;1639000;1251000;1365000;1439000;1439000;1439000;1396000;1396000;1396000;1396000;1396000;2076600;2076600;2014700;2011300;1845345;1878270;1753271;1583733;1451758;1338714;1419498;1730393;1818673;1980000;2000000;2000000;2000000;1978000;1978000;1978000;1978000 -202;'710;South Africa;1632;Sawnwood, coniferous;5616;Import quantity;m3;245700;174900;224200;231350;255850;154450;163900;137300;165200;170450;122050;94900;85600;109750;132500;65250;25500;25850;22950;29150;32350;32950;18850;10850;7600;5623;3747;12551;3652;21736;21736;181158;4466;45400;62800;62800;138000;204300;201000;201000;180000;180000;180000;81602;96181;111700;101300;137724;82000;82728;22030;66000;67042;57239;134620;50000;80190;91580;238000;249000;168000;176000;109000 -202;'710;South Africa;1632;Sawnwood, coniferous;5622;Import value;1000 USD;10255;7527;8458;9254;10458;6762;7043;6790;8681;9347;6727;4667;6373;11840;15195;7466;2891;3075;4726;7319;7278;6914;4283;2447;1589;1022;1023;2764;1039;4297;4297;31535;1238;8385;11960;11960;27819;66997;58721;58721;46358;46358;30000;14199;16735;19400;17223;23964;14317;13888;24625;19715;12434;15409;26386;18350;43383;53025;55454;55278;77448;74624;67253 -202;'710;South Africa;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;3850;3900;7500;13800;18400;8400;11500;12400;17400;20600;20300;10000;6600;43100;58000;94500;65500;36500;41400;27700;24800;24800;34478;40546;117700;93609;101997;101997;87139;58293;50000;44600;31400;57500;75000;108000;108000;67800;65000;73306;56722;37553;31182;49000;35435;11005;17489;14619;116000;110000;137000;130000;172000;214000;245000;186000;150000;291000;281000;158000 -202;'710;South Africa;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;74;118;306;538;779;407;576;599;797;1372;1418;704;462;3234;5476;10393;7531;4194;5344;3570;2975;2975;7814;10770;24312;21709;26997;26997;19317;12028;9349;7915;11418;12073;11031;16284;16284;8800;7264;11249;9472;6271;5208;8391;5918;5338;7326;6389;26601;25176;33772;31696;34824;43180;44835;17856;13500;59073;52828;35708 -202;'710;South Africa;1633;Sawnwood, non-coniferous;5516;Production;m3;50500;67000;66500;61000;58500;79500;76000;83000;144500;153500;191500;158000;155500;168500;208500;210500;147000;152500;158000;176000;184500;237500;248500;263500;225500;240500;240500;250500;250500;202000;173000;179000;132000;134000;135000;135000;135000;102000;102000;102000;102000;102000;94700;134800;201800;79800;149630;177499;122317;296765;115037;104391;133177;135565;147066;155758;161991;259317;259317;127000;127000;127000;127000 -202;'710;South Africa;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;224500;216200;272000;336050;250950;179450;222800;257900;271600;325750;305150;265900;399700;378750;352800;262050;136100;159950;105950;272950;256750;214150;316050;251950;213400;42389;42502;120852;35328;58466;58466;349711;56477;496700;350200;403400;300000;180000;309200;309200;247000;200000;300000;278747;368169;375500;434000;349966;215000;268176;280000;87000;274301;261270;124000;136440;187715;124554;80225;79000;82000;58000;49000 -202;'710;South Africa;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;9814;9652;12017;18293;15028;10246;12294;14479;16930;21731;18896;16277;42481;42608;32055;30849;17403;26486;18716;71663;60456;47856;67188;56084;57235;10895;17062;41787;15456;16612;16612;131763;29078;102849;108917;88399;70000;59984;63757;63757;57200;42710;64745;85017;112293;114500;132272;106739;65690;80809;85344;26688;83661;79687;55180;72859;58245;51137;43627;32153;40754;31726;25676 -202;'710;South Africa;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;23200;20900;5100;8850;5800;3400;2600;2100;4700;2400;2400;700;800;800;1100;1100;15200;8000;7700;8300;1500;1400;500;100;100;8175;7602;15048;2295;4949;4949;7724;5508;16778;12400;16100;16100;16000;26100;26100;40000;45000;50000;27557;26418;31600;29500;19888;3721;5487;3719;3500;13353;28796;20720;42740;50510;42440;33000;55755;10430;7991;19470 -202;'710;South Africa;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;591;602;166;208;168;126;107;94;215;122;113;46;54;54;76;146;1138;611;600;1253;235;227;78;26;26;1732;2158;4362;835;1579;1579;3061;2356;7936;3528;4085;4085;2011;3856;3856;6486;7264;13813;8377;8031;9500;8958;6046;3065;4601;2706;2650;4061;8755;11044;8676;9546;9422;7326;12266;3838;4630;6698 -202;'710;South Africa;1634;Veneer sheets;5516;Production;m3;500;600;700;400;7000;12000;13000;13000;14000;15000;16000;17000;17600;22000;22000;22000;41000;53000;75000;72000;73000;70000;70000;70000;70000;70000;70000;70000;70000;28600;34000;8000;25000;28000;35000;35000;35000;75000;75000;75000;157000;123600;87000;87000;16200;67400;19536;22113;9511;6307;6307;4720;14802;13674;12000;12000;20000;20000;20000;27000;27000;27000;27000 -202;'710;South Africa;1634;Veneer sheets;5616;Import quantity;m3;12700;12300;15000;25100;44000;29100;27700;27900;39300;30100;25600;30000;47000;52000;24000;19000;14500;12200;15000;14800;10200;6100;7100;7900;7900;9948;10645;15020;3930;3655;3655;10108;10133;18500;20700;12100;14500;14700;15000;15000;15900;24000;30000;27966;35000;25000;25000;14769;12976;22700;29964;10521;14957;6990;8896;8838;8683;4674;3474;3349;2303;4819;2998 -202;'710;South Africa;1634;Veneer sheets;5622;Import value;1000 USD;1855;2028;2495;3591;4172;2745;2810;3071;5060;4286;3395;6969;7713;9178;3466;5449;3498;3144;5111;8359;9032;5279;6088;6382;6382;9225;11428;13885;5140;5113;5113;7351;6423;10384;12190;10586;12246;11409;13285;13285;14385;20969;23262;21630;28129;24000;23981;25379;17054;23276;40744;16777;28477;14509;14627;15525;12218;11350;9070;7650;8811;7404;10660 -202;'710;South Africa;1634;Veneer sheets;5916;Export quantity;m3;0;0;0;200;600;1000;2800;1200;4100;2300;4000;4000;6000;7800;4800;5200;5700;6000;7500;11500;6600;7000;6200;4500;4500;5337;6846;6863;2770;3207;3207;3570;2727;2631;4000;5900;5900;13200;39000;29000;12300;12300;21971;21079;40000;24000;37600;4552;1787;1317;3090;854;2389;2368;3145;2365;2590;2416;1336;991;1050;1179;642 -202;'710;South Africa;1634;Veneer sheets;5922;Export value;1000 USD;0;0;0;67;92;156;524;225;543;587;888;1105;2376;3088;1904;2075;2271;2420;3056;4675;2693;2896;2582;1919;1919;5565;7479;7577;3826;5717;5717;6434;4825;4079;8221;8698;8698;15050;45913;45913;17783;17783;29764;28290;34232;20200;31572;22199;5695;5004;4128;4623;10899;6796;5129;4629;4153;4433;3391;3470;3919;3511;3570 -202;'710;South Africa;1873;Wood-based panels;5516;Production;m3;94400;98000;106500;123700;137000;171816;189763;189763;228293;272505;361936;439314;399177;341777;341777;341777;322000;292000;300000;308000;309000;328000;328000;328000;328000;328000;328000;328000;328000;283700;274000;392000;189000;545000;618000;618000;618000;401000;401000;401000;839000;934600;934600;994600;556600;718700;824339;950435;665937;576789;603127;1019700;962936;1139195;1217195;1513031;1513031;1513031;1513431;1546431;1546431;1546431;1546431 -202;'710;South Africa;1873;Wood-based panels;5616;Import quantity;m3;3100;1900;2700;4900;13200;8500;8300;8500;19000;26800;19300;12600;32100;27400;29200;10600;7600;6500;3700;8400;12800;10400;10200;12700;12700;6249;9729;10422;1867;5407;5407;65056;9456;22970;93400;99000;49100;52800;52700;52700;49584;75100;119547;166969;231514;330280;319800;156109;148192;179428;277954;130644;167659;275241;208252;245994;241688;197335;254044;229987;280313.78;279335;241494 -202;'710;South Africa;1873;Wood-based panels;5622;Import value;1000 USD;348;369;431;1113;1308;966;957;1073;2353;3516;2770;1873;5408;6694;4454;1866;1375;1373;1885;4464;6542;5183;4899;5389;5389;2353;3558;4589;744;2074;2074;23446;3015;13414;24197;22935;16034;14826;11931;11931;12807;18453;27717;40508;61069;91900;112036;76517;55049;69211;101898;101527;97900;136596;93886;106235;97021;93924;96925;80935;112589.62;117590;87989 -202;'710;South Africa;1873;Wood-based panels;5916;Export quantity;m3;51500;62200;70200;53800;44100;57900;67800;69400;72600;70800;105600;120761;115900;63300;60000;71000;63400;31600;36000;49000;32100;20400;18200;15900;18800;124253;157152;149468;79630;74725;74725;60557;33192;61019;42900;17100;16100;21200;24000;24000;79500;82600;67664;76670;82249;50770;35300;37316;77678;69647;99396;101958;88912;133885;169400;179836;220796;242494;276587;250374;223163.11;224273;323909 -202;'710;South Africa;1873;Wood-based panels;5922;Export value;1000 USD;3562;3844;4285;4463;3978;4336;4819;5969;6194;4581;5986;7010;9558;6166;5590;9054;9116;4014;6040;9623;6142;5248;4745;3798;4632;24110;32327;33899;16507;15311;15311;15193;11075;18475;10091;4039;3584;4050;4537;4537;13219;15999;16428;21318;37391;22400;15073;25249;23562;29035;46002;45955;41166;54565;60969;58557;72559;108328;67148;65041;80157.26;82603;88198 -202;'710;South Africa;1640;Plywood and LVL;5516;Production;m3;12000;10000;10000;10000;39000;40000;45000;45000;48000;48000;50000;50000;32400;23000;23000;23000;18000;21000;29000;28000;29000;27000;27000;27000;27000;27000;27000;27000;27000;23700;15000;39000;20000;21000;25000;25000;25000;27000;27000;27000;48500;68800;68800;68800;37900;38300;140993;79466;72350;67144;85832;153587;104660;82091;87000;87000;87000;87000;87000;120000;120000;120000;120000 -202;'710;South Africa;1640;Plywood and LVL;5616;Import quantity;m3;1300;600;1100;2700;6500;4100;4200;4500;12500;17400;14300;10000;30000;23900;18900;6300;5600;6200;3300;5300;9700;6900;7800;8800;8800;3708;7969;7009;938;2427;2427;33478;1330;4749;42500;42500;17000;10200;7600;7600;7900;18200;20000;20551;37903;62680;75800;76987;44410;55897;74236;36569;32691;101530;97159;93994;102209;82827;102778;62108;78335;124878;71889 -202;'710;South Africa;1640;Plywood and LVL;5622;Import value;1000 USD;242;113;200;550;774;666;711;806;2058;2990;2409;1634;5111;6170;3520;1427;1130;1178;1640;3429;5507;3945;4059;3839;3839;1729;3162;3696;371;1166;1166;15237;986;9237;10678;10678;8504;5617;4508;4508;4719;9135;10843;14085;21034;33900;43706;41096;24961;30258;40706;48550;21282;52715;45558;41091;42124;44142;42853;27677;40911;58128;37305 -202;'710;South Africa;1640;Plywood and LVL;5916;Export quantity;m3;300;200;100;200;100;300;800;1600;300;200;100;1600;5000;2700;1800;15500;20000;6600;11000;15600;9500;2600;2700;2800;2800;6397;3039;4669;3038;2406;2406;2981;1533;7172;4600;4600;4600;300;400;400;3000;4400;6525;5792;5534;5270;3400;5851;5904;5723;6167;2694;3978;2951;33023;30392;64793;74480;83235;100350;46134;41478;41478 -202;'710;South Africa;1640;Plywood and LVL;5922;Export value;1000 USD;59;36;23;42;28;51;104;199;57;34;16;285;1185;633;421;3733;4903;1621;2915;6227;3778;1034;1090;1103;1103;2109;1151;2196;1586;1126;1126;1262;719;3872;1953;1953;1953;126;171;171;1403;1883;4612;4798;4329;3900;2502;6411;4025;3410;4128;3223;3807;3144;11005;9772;19245;28867;19319;22005;13804;14578;14578 -202;'710;South Africa;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;226;823 -202;'710;South Africa;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;217;656 -202;'710;South Africa;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;210 -202;'710;South Africa;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;148 -202;'710;South Africa;1646;Particle board and OSB (1961-1994);5516;Production;m3;14400;18000;16500;19700;21000;24000;34000;34000;55000;95000;154000;204000;212000;164000;164000;164000;213000;202000;202000;202000;202000;202000;202000;202000;202000;202000;202000;202000;202000;202000;202000;296000;112000;489000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -202;'710;South Africa;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;400;5800;1500;300;300;500;2600;1100;700;500;2800;8800;3700;1500;300;400;3100;3100;3500;2400;3900;3900;2541;1760;3413;929;2980;2980;25431;6553;9185;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -202;'710;South Africa;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;56;330;121;37;62;29;187;86;76;98;365;510;302;162;195;245;1035;1035;1238;840;1550;1550;624;396;893;373;908;908;6133;1515;1631;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -202;'710;South Africa;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;12200;15900;7200;2500;1700;1200;1500;900;300;200;100;1100;2900;3300;900;900;1700;800;7300;1500;1500;1400;1900;2200;2200;73400;114795;112970;62247;57098;57098;43994;15389;31688;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -202;'710;South Africa;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;1022;1149;606;299;151;120;137;81;29;12;9;164;294;500;136;144;260;123;1452;306;306;305;413;330;350;10403;20397;22106;10884;9706;9706;8504;3616;6603;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -202;'710;South Africa;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;551000;551000;551000;224000;224000;224000;640500;715800;715800;715800;357900;522000;527805;718854;462072;392803;400453;649271;565276;646104;691195;1015031;1015031;1015031;1015031;1015031;1015031;1015031;1015031 -202;'710;South Africa;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42200;46000;21600;16500;12300;12300;5384;14000;19195;33540;22599;69941;49341;23611;17192;14784;12344;6337;14944;37019;45255;42646;28899;28899;36329;45504;65913.15;36454;42237 -202;'710;South Africa;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9981;8677;3950;2417;1904;1904;620;1638;3202;6378;3190;14622;20159;5729;3949;4344;4290;2652;4296;7841;7935;6078;6902;6902;6417;6491;14367.86;7980;8521 -202;'710;South Africa;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30300;6000;5000;15100;12800;12800;12500;20000;15000;15000;5936;10700;6200;8869;48435;24824;50811;58610;55717;105000;105068;117185;126235;109581;155171;112104;135739;137596;235910 -202;'710;South Africa;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6969;1619;1164;3259;3152;3152;2687;3718;2471;3040;2603;4000;3833;5254;9464;9541;16818;17518;16672;31418;30912;33163;41809;51159;35444;31082;48171;48869;53775 -202;'710;South Africa;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;860;1059;1059;1833;834;1295;1334;1218;2803;3357;5361;3097;3654;3281;3647;3991;9208.62;5183;4303 -202;'710;South Africa;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;378;378;858;267;391;283;407;955;1137;1391;829;1466;1568;1702;1056;3512.59;2241;1414 -202;'710;South Africa;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;455;477;394;131;14;54;402;955;1135;836;26;892;966;1115;1156;1084 -202;'710;South Africa;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;252;130;232;80;18;55;219;422;625;549;28;385;378;575;371;352 -202;'710;South Africa;1874;Fibreboard;5516;Production;m3;68000;70000;80000;94000;77000;107816;110763;110763;125293;129505;157936;185314;154777;154777;154777;154777;91000;69000;69000;78000;78000;99000;99000;99000;99000;99000;99000;99000;99000;58000;57000;57000;57000;35000;42000;42000;42000;150000;150000;150000;150000;150000;150000;210000;160800;158400;155541;152115;131515;116842;116842;216842;293000;411000;439000;411000;411000;411000;411400;411400;411400;411400;411400 -202;'710;South Africa;1874;Fibreboard;5616;Import quantity;m3;1800;1300;1600;1800;900;2900;3800;3700;6000;6800;3900;1900;1600;700;1500;600;500;;;;;;;;;;;;;;;6147;1573;9036;8700;10500;10500;26100;32800;32800;36300;42900;80352;112878;170152;196600;193600;53678;85756;107452;190040;86520;117221;133335;60477;106257;106926;82328;111290;118384;126857.01;112820;123065 -202;'710;South Africa;1874;Fibreboard;5622;Import value;1000 USD;106;256;231;507;204;179;209;205;266;339;275;163;199;159;424;137;83;;;;;;;;;;;;;;;2076;514;2546;3538;3580;3580;6792;5519;5519;7468;7680;13672;20045;36645;43000;47793;28834;25872;34218;56619;49918;71367;74903;39002;58237;46529;41312;45953;45711;53798.16;49241;40749 -202;'710;South Africa;1874;Fibreboard;5916;Export quantity;m3;39000;46100;62900;51100;42300;56400;65500;66900;72000;70400;105400;118061;108000;57300;57300;54600;41700;24200;17700;31900;21100;16400;13600;10900;13800;44456;39318;31829;14345;15221;15221;13582;16270;22159;8000;6500;6500;5800;10800;10800;64000;58200;46139;55878;70779;34800;25700;22141;22862;38706;42287;40640;29163;25532;30354;31124;28932;58407;37289;36954;40175.11;44043;45437 -202;'710;South Africa;1874;Fibreboard;5922;Export value;1000 USD;2481;2659;3656;4122;3799;4165;4578;5689;6108;4535;5961;6561;8079;5033;5033;5177;3953;2270;1673;3090;2058;3909;3242;2365;3179;11598;10779;9597;4037;4479;4479;5427;6740;8000;1169;467;467;665;1214;1214;9129;10398;9345;13480;30459;14500;8738;13332;9943;15852;24976;25196;20632;19784;18630;14997;10956;28274;12000;11576;17607.26;18785;19493 -202;'710;South Africa;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32000;32000;32000;120000;120000;120000;120000;120000;120000;120000;85400;83500;80641;77215;71515;56842;56842;56842;88000;131000;141000;131000;131000;131000;131000;131000;131000;131000;131000 -202;'710;South Africa;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6000;2700;2700;14000;8500;8500;12800;17400;29815;20045;30733;37000;30300;14800;20288;16933;26181;26200;26933;42049;33987;36709;36595;27933;35000;51759;38266.48;36447;37633 -202;'710;South Africa;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2641;1128;1128;3527;2336;2336;3097;3477;7027;8029;14731;18000;18000;9938;11617;12561;17605;17600;19022;24631;20363;20727;19493;18019;22539;25060;21289.75;20641;20063 -202;'710;South Africa;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42000;40000;33000;22589;40777;25600;11000;10981;10827;21140;27127;27067;19525;14814;12016;11113;9180;32419;3833;787;714;839;631 -202;'710;South Africa;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6661;8812;8029;7316;23421;13000;5716;7148;6829;11878;20875;19098;15339;13799;11180;7933;6094;18007;2100;395;522;730;488 -202;'710;South Africa;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60000;60000;60000;60000;60000;60000;60000;60000;160000;205000;280000;298000;280000;280000;280000;280400;280400;280400;280400;280400 -202;'710;South Africa;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1100;5900;5900;10500;14500;14500;12800;6400;15000;57296;62055;58600;121500;35015;62000;88920;161433;59314;62671;47868;11674;31740;45931;37286;54407;54937;80098.53;64983;75813 -202;'710;South Africa;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;531;2093;2093;2760;2067;2067;1473;1310;2468;7839;9857;10000;23516;15741;13432;21092;38244;31423;32319;24331;5937;16140;21390;18714;18613;18621;30447.41;26388;18926 -202;'710;South Africa;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12400;5951;10626;15703;14160;9573;7627;9421;11674;12325;12211;16633;22581;29896;35058.11;35873;41294 -202;'710;South Africa;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2586;3021;2879;3627;3717;3894;4136;5123;5937;5213;3279;8609;8280;10050;16231.31;16935;18427 -202;'710;South Africa;1650;Other fibreboard;5516;Production;m3;13000;14000;8000;10000;8000;32000;36000;36000;40000;40000;40000;40000;40000;40000;40000;40000;23000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;6000;6000;6000;6000;4000;10000;10000;10000;30000;30000;30000;30000;30000;30000;30000;15400;14900;14900;14900;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -202;'710;South Africa;1650;Other fibreboard;5616;Import quantity;m3;;;;1700;800;2800;3600;3600;5600;6000;3200;1600;1200;400;400;600;500;;;;;;;;;;;;;;;957;232;7993;1600;1900;1900;1600;9800;9800;10700;19100;35537;35537;77364;101000;41800;3863;3468;1599;2426;1006;27617;43418;14816;37808;24400;17109;21883;11688;8492;11390;9619 -202;'710;South Africa;1650;Other fibreboard;5622;Import value;1000 USD;;;;466;151;128;132;147;188;218;155;92;83;66;95;137;83;;;;;;;;;;;;;;;297;53;2118;366;359;359;505;1116;1116;2898;2893;4177;4177;12057;15000;6277;3155;823;565;770;895;20026;25941;12702;21370;5646;4579;4801;2030;2061;2212;1760 -202;'710;South Africa;1650;Other fibreboard;5916;Export quantity;m3;;;;2500;2400;10400;23600;23200;16000;14800;18800;3600;400;400;400;800;700;3000;1700;3600;2100;1900;600;1800;1800;3279;6544;4049;1104;855;855;1528;1001;1057;8000;6500;6500;5800;10800;10800;22000;18200;13139;33289;30002;9200;2300;5209;1409;1863;1000;4000;2011;1297;6664;7686;7541;9355;10875;6271;4403;7331;3512 -202;'710;South Africa;1650;Other fibreboard;5922;Export value;1000 USD;;;;369;496;529;802;742;682;658;843;221;33;33;33;69;61;275;162;347;199;191;59;179;179;314;724;720;245;259;259;731;310;358;1169;467;467;665;1214;1214;2468;1586;1316;6164;7038;1500;436;3163;235;347;384;2204;1157;862;1513;1851;1583;1658;1620;1131;853.94;1120;578 -202;'710;South Africa;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;55000;56000;72000;84000;69000;75816;74763;74763;85293;89505;117936;145314;114777;114777;114777;114777;68000;44000;44000;53000;53000;74000;74000;74000;74000;74000;74000;74000;74000;52000;51000;51000;51000;31000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -202;'710;South Africa;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;1800;1300;1600;100;100;100;200;100;400;800;700;300;400;300;1100;;;;;;;;;;;;;;;;;5190;1341;1043;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -202;'710;South Africa;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;106;256;231;41;53;51;77;58;78;121;120;71;116;93;329;;;;;;;;;;;;;;;;;1779;461;428;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -202;'710;South Africa;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;39000;46100;62900;48600;39900;46000;41900;43700;56000;55600;86600;114461;107600;56900;56900;53800;41000;21200;16000;28300;19000;14500;13000;9100;12000;41177;32774;27780;13241;14366;14366;12054;15269;21102;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -202;'710;South Africa;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;2481;2659;3656;3753;3303;3636;3776;4947;5426;3877;5118;6340;8046;5000;5000;5108;3892;1995;1511;2743;1859;3718;3183;2186;3000;11284;10055;8877;3792;4220;4220;4696;6430;7642;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -202;'710;South Africa;1879;Total fibre furnish;5510;Production;t;212000;284000;362000;422000;442000;444000;486000;482000;444000;632000;655000;725000;797000;831000;774000;800000;902000;924000;972100;1056000;1140000;1254000;1194000;1046000;1163000;1202000;1202000;1282000;2049000;2074000;2084000;2116000;2109000;1739000;2137000;2137000;2435000;2453000;2347000;2509000;2512000;2636000;2705000;2632000;2632000;2716000;2785000;2968764;2566000;2759198;2714509;2766315;2781565;2547919;2606284;2760554;2636519;2624343;2430572;2197810;2278724;2393605;2322120 -202;'710;South Africa;1879;Total fibre furnish;5610;Import quantity;t;7800;3300;4000;4000;2000;3000;1100;34500;61500;65700;63500;78100;104400;106700;92400;116600;120100;125700;129000;210000;181800;121800;288800;199400;56100;56819;74583;78851;116996;115488;115488;58137;95355;79016;82336;101454;101454;82500;71300;71300;53900;68100;71098;71256;81786;54510;124856;116319;98061.2;97275;104881;117637;170945;219161;211657;223076;224274;259278;227365;190937;203962.19;273474;168312 -202;'710;South Africa;1879;Total fibre furnish;5622;Import value;1000 USD;661;299;970;32;40;92;97;3883;7322;9921;9947;11216;18005;39935;35161;33700;32559;34662;49717;73532;85239;50170;74906;75762;18074;18224;21752;23382;40342;40342;40342;22374;22647;33708;50981;43214;43214;33806;30014;30014;25792;30409;32226;37367;40819;27934;72469;70066;45590;60572;71109;64452;89912;116118;104677;104495;106259;159339;121056;87301;125043.58;215236;121062 -202;'710;South Africa;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;76200;94600;74000;104100;116000;134900;135039;139559;144362;185400;223700;238400;180500;62500;120700;119300;103300;101400;119508;124473;133837;169286;166396;166396;224862;257082;346202;408846;466042;222942;281042;297400;297400;208500;236200;314415;203298;277105;249214;226706;229285;327654;268315;372614.5;260194;223793;243221;212706;285543;346165;334071;281476;295604;193534.7;333040;309357 -202;'710;South Africa;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;6671;5844;5334;12866;13621;15612;15622;15963;17238;22672;28574;42243;36867;15510;35355;35055;30909;30329;41002;42849;45483;61073;62156;62156;110285;102705;160132;293746;346889;101297;102591;113264;113264;89556;87230;103024;90386;99250;95404;98032;124825;135669.1;160567;194038.1;107036;85020;85517;107872;106139;162980;150892;106668;85715;59360.13;181873;96377 -202;'710;South Africa;1878;Pulp for paper;5510;Production;t;212000;284000;362000;422000;442000;444000;486000;482000;444000;457000;471000;515000;564000;581000;534000;524000;611000;640000;668100;716000;766000;880000;819000;676000;788000;802000;802000;802000;1549000;1564000;1559000;1518000;1519000;1149000;1547000;1547000;1845000;1863000;1757000;1819000;1742000;1866000;1782000;1709000;1709000;1793000;1862000;1938764;1551000;1669000;1650000;1615000;1612269;1484790;1410188;1350704;1354399;1230000;1182076;1037916;1037916;1037916;1037916 -202;'710;South Africa;1878;Pulp for paper;5610;Import quantity;t;7800;3300;4000;4000;2000;3000;1100;34500;61500;65700;63500;78100;104400;106700;92400;116600;120100;125700;129000;208700;180200;120700;288500;198000;55300;55200;56904;57181;107500;107504;107504;38198;55753;60752;61336;95054;95054;72500;68600;68600;50700;63300;59377;68453;73286;33991;104337;84519;66997.2;66523;72005;82481;125693;147101;142413;165431;166379;205350;178053;150025;150348.55;221568;128174 -202;'710;South Africa;1878;Pulp for paper;5622;Import value;1000 USD;661;299;970;32;40;92;97;3883;7322;9921;9947;11216;18005;39935;35161;33700;32559;34662;49717;73114;84951;49721;74835;75542;17945;17988;19464;20247;39188;39192;39192;19759;20757;32470;46995;42298;42298;30869;29678;29678;25545;29875;30613;36936;39219;23570;68105;63913;41145;54984;66659;60276;84163;104596;94323;96910;99439;153386;115352;84164;119707.58;209566;116479 -202;'710;South Africa;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;76200;94600;74000;104100;116000;134900;134900;134900;141800;181600;219700;233400;174500;58000;117700;116000;101900;100000;110000;120000;120000;165000;160000;160000;217944;255080;340232;393846;465042;221942;259042;284200;284200;195300;223300;293795;184743;228657;209914;187406;205392;312791;217743;301073.5;157102;125094;187823;163637;179923;225245;178985;186004;196212;48698.93;176802;141674 -202;'710;South Africa;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;6671;5844;5334;12866;13621;15612;15612;15612;17045;22248;28134;41708;35627;14576;34715;34344;30580;30000;40000;42000;43000;60000;61000;61000;108802;102145;158774;291020;346622;101030;100689;111958;111958;88250;85225;99291;87861;93656;92104;94732;121642;134376.1;154163;182101.1;92359;72311;76895;100876;91936;140923;124967;94763;76387;29102.79;150547;74921 -202;'710;South Africa;1875;Wood pulp;5510;Production;t;272000;369000;464000;537000;561000;575000;632000;648000;630000;647000;680000;730000;783000;902000;921000;820000;910000;977000;1004100;1052000;1102000;1182000;1104000;996000;1270000;1284000;1284000;1284000;1840000;1865000;1860000;1917000;1871000;1501000;1868000;1868000;2250000;2234000;2118000;2261000;2036000;2183000;2211000;2076000;2084000;2245800;2310000;2359501;2075000;2298000;2305975;2276000;2287969;2338462;2320192;2221547;2250857;2139000;2220549;1994386;1994386;1994386;1994386 -202;'710;South Africa;1875;Wood pulp;5610;Import quantity;t;7800;3300;4000;4300;2100;3100;1200;34600;62800;65900;63700;78200;104900;107200;92900;117100;120600;125800;129300;208800;180600;121100;288900;198400;55900;55216;57324;57957;107971;109105;109105;39963;57072;60767;61351;95100;95100;76600;70000;70000;50700;63500;59927;68088;70482;33024;103411;81666;62212.2;59812;65829;76305;126048;147774;143253;165501;165433;205300;176553;147701;148245.29;219598;127936 -202;'710;South Africa;1875;Wood pulp;5622;Import value;1000 USD;661;299;970;59;55;107;112;3898;7484;9953;9979;11247;18115;40045;35271;33810;32669;34686;49838;73151;85216;49958;75036;75742;18192;17996;19636;20754;39524;40496;40496;20625;21395;32443;46968;42354;42354;32657;30417;30417;25545;30361;31559;36712;37409;22530;67196;60884;37290;49376;60860;54477;84026;104580;94424;97742;98412;153025;114009;82555;118304.92;207779;115630 -202;'710;South Africa;1875;Wood pulp;5910;Export quantity;t;84100;106300;125000;110500;135900;154700;162300;261500;288400;278000;330900;356500;385900;494600;553400;469800;529300;557800;447500;411500;294000;350700;368000;307300;305400;335336;304391;426208;325474;338805;338805;417763;385412;471743;553200;796500;553400;587700;774700;774700;592300;638900;825206;906998;754503;759748;732508;715628;939608;941276;993089.5;875794;858088;1095687;1067433;1034413;1138388;1127109;1140521;1057178;980669.41;1123215;1199557 -202;'710;South Africa;1875;Wood pulp;5922;Export value;1000 USD;13369;13648;15260;15244;16823;18387;19354;28180;30941;30337;40491;43547;55524;73158;83421;70236;79280;95759;116665;135914;126333;144990;153953;141499;141000;144860;141387;245348;189863;202995;202995;247419;210770;250725;389371;621853;376261;341960;353564;353564;312487;282077;383898;395257;428520;433303;495124;521892;508861.1;747119;961124.1;696069;688699;789700;794794;822808;920453;880183;550091;758675;814376.35;1190007;1118229 -202;'710;South Africa;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;379911;315000;386176;252416;252416;252416;252416 -202;'710;South Africa;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3529;5185;5129;3887;7409.9;8452;4687 -202;'710;South Africa;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1451;2420;2541;1811;3929.54;6058;3189 -202;'710;South Africa;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;23;1;14;698;1498;4771 -202;'710;South Africa;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;16;0;0;206;385;2482 -202;'710;South Africa;1654;Mechanical wood pulp (1961-2016);5510;Production;t;87000;119000;129000;136000;151000;118000;118000;138000;136000;142000;150000;165000;172000;169000;166000;194000;185000;170000;152000;200000;250000;313000;273000;148000;255000;255000;255000;255000;366000;370000;370000;288000;290000;258000;370000;370000;370000;270000;270000;285000;275000;285000;277000;275000;275000;254000;238000;314764;209000;199000;281000;198000;249937;198919;211029;214107;;;;;;; -202;'710;South Africa;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;7800;3300;4000;4000;2000;3000;1100;1600;1500;2600;1500;3300;2400;5200;3500;800;400;300;300;600;300;300;300;200;100;0;1704;1981;0;4;4;5;49;132;200;200;200;1400;1200;1200;1300;300;300;300;304;304;304;340;34;39;197;52;23;2377;1721;65;;;;;;; -202;'710;South Africa;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;661;299;970;32;40;92;97;170;139;302;161;337;314;1570;1332;258;203;159;160;335;160;160;160;62;26;0;476;759;0;4;4;2;14;104;104;104;104;484;473;473;647;193;193;193;135;135;135;468;40;17;141;36;20;1680;1128;43;;;;;;; -202;'710;South Africa;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3113;3352;1586;200;600;600;0;0;0;0;0;0;0;0;0;0;1068;0;5;130;137;117;37;0;1;;;;;;; -202;'710;South Africa;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1208;1169;812;139;712;712;0;0;0;0;0;0;0;0;0;0;420;0.1;39;73;61;89;14;0;1;;;;;;; -202;'710;South Africa;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;13000;7000;22000;48000;73000;103000;104000;71000;122000;108000;82000;82000;82000;105000;84000;117000;126000;140000;140000;140000;140000;140000;140000;99000;87000;120000;164000;164000;0;0;0;0;171000;155000;155000;144000;144000;130000;135000;135000;105000;122000;100000;185000;338525;157097;166633;162109;;;;;;; -202;'710;South Africa;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3800;3900;10;3300;800;800;3200;3100;3100;4200;5100;4541;2717;3935;5400;5400;4481;2089;2142;1679;1700;3863;224;77;847;;;;;;; -202;'710;South Africa;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1821;1911;6;2014;204;204;1778;1683;1683;2440;4884;4566;2040;2752;3600;3600;3609;1784;1776;1221;1200;2255;143;34;369;;;;;;; -202;'710;South Africa;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1124;;0;0;0;0;0;0;0;0;0;700;700;35;700;700;6500;3000;54;0.5;0;41;1;0;3;;;;;;; -202;'710;South Africa;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;448;;0;0;0;0;0;0;0;0;0;299;299;20;500;500;4811;2300;45;0.1;0;41;3;0;2;;;;;;; -202;'710;South Africa;1656;Chemical wood pulp;5510;Production;t;100000;140000;208000;261000;266000;301000;343000;317000;268000;281000;269000;272000;280000;270000;232000;227000;255000;294000;350100;350000;350000;378000;378000;325000;308000;308000;308000;308000;944000;955000;950000;1032000;1043000;672000;914000;914000;1360000;1478000;1372000;1419000;1193000;1323000;1244000;1118000;1118000;1306000;1394000;1394000;1172000;1269000;1190000;1156000;952819;1057786;961538;903500;903500;874000;754900;744500;744500;744500;744500 -202;'710;South Africa;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;32900;60000;63100;62000;74800;102000;101500;88900;115800;119700;125400;128700;208100;179900;120400;288200;197800;55200;55200;55200;55200;107500;107500;107500;34358;51723;60474;57700;94000;94000;67900;64300;64300;45200;57800;54436;64727;64483;26907;97253;76250;59526.2;56948;63164;73764;121171;144100;140104;163776;161902;199408;170882;143643;140652.39;211132;122862 -202;'710;South Africa;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;3713;7183;9619;9786;10879;17691;38365;33829;33442;32356;34503;49557;72779;84791;49561;74675;75480;17919;17988;18988;19488;39188;39188;39188;17909;18753;32250;44767;41929;41929;28607;27522;27522;22458;24727;25783;33708;33030;18242;62777;55844;34566;46485;58270;52013;80909;101959;92482;95665;96958;149970;111335;80692;114271.38;201681;112131 -202;'710;South Africa;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;76200;94600;74000;104100;116000;134900;134900;134900;141800;181600;219700;233400;174500;58000;117700;116000;101900;100000;110000;120000;120000;165000;160000;160000;201400;231600;338300;393300;464100;221000;258700;283700;283700;194800;223100;287595;173835;218414;199614;172374;185052;302935;209756;286241;156965;124930;187238;163637;179914;224884;178745;185795;196198;47989.93;175256;136903 -202;'710;South Africa;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;6671;5844;5334;12866;13621;15612;15612;15612;17045;22248;28134;41708;35627;14576;34715;34344;30580;30000;40000;42000;43000;60000;61000;61000;101273;92669;157766;290685;345592;100000;100371;111457;111457;87730;85100;95974;82804;88878;89404;91613;112457;130300;151024;175543;92298;72180;76761;100876;91925;140707;124610;94457;76383;28879.79;150101;72438 -202;'710;South Africa;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;64000;101000;169000;220000;227000;235000;309000;235000;183000;194000;179000;190000;200000;176000;155000;142000;181000;215000;255000;255000;255000;270000;273000;232000;200000;200000;200000;200000;613000;620000;617000;585000;634000;230000;407000;407000;420000;456000;548000;568000;510000;529000;467000;444000;444000;472000;501000;501000;353000;447000;285000;376000;306172;352595;320513;300500;300500;300000;250900;244500;244500;244500;244500 -202;'710;South Africa;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;700;5500;8800;500;700;1500;1300;19000;200;300;200;200;200;200;200;200;1100;13500;13500;13500;13500;13500;13500;13500;481;481;7996;3200;2900;2900;6200;4500;4500;1700;1600;851;399;1071;175;0;16;624;1879;789;27;133;6630;7938;6544;5878;5878;8873;2872;1961.18;3160;7124 -202;'710;South Africa;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;65;447;1208;60;92;214;318;6641;46;62;23;34;34;34;34;62;329;2762;2762;2762;2762;2762;2762;2762;143;143;2995;2453;1212;1212;2050;1583;1583;596;586;333;292;483;77;0;17;361;1100;1228;148;76;4166;4534;3527;3376;3376;5278;1575;1570.53;2945;4915 -202;'710;South Africa;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;75800;94200;73400;103500;115300;134200;134200;134200;141500;181000;215000;230000;169200;58000;117700;116000;101900;100000;110000;120000;120000;165000;160000;160000;59000;68200;130600;129800;61300;61300;23800;25900;25900;25900;27000;49776;28163;11590;61897;44166;53275;137879;6876;114;50;203;30;98;2117;2117;30;5080;0;2;148;148 -202;'710;South Africa;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;6619;5781;5227;12759;13463;15454;15454;15454;16977;22091;26881;40694;33502;14576;34715;34344;30580;30000;40000;42000;43000;60000;61000;61000;27441;27826;49918;91725;33645;33645;6278;7934;7934;7934;9862;17006;12393;5140;14867;24189;23920;53194;3848;64;12;99;27;8;1241;1241;27;3655;0;0;31;31 -202;'710;South Africa;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;36000;39000;39000;41000;39000;66000;34000;82000;85000;87000;90000;82000;80000;94000;77000;85000;74000;74000;95000;95000;95000;108000;105000;93000;108000;108000;108000;108000;331000;335000;333000;447000;409000;442000;507000;507000;780000;848000;824000;851000;683000;794000;777000;674000;674000;834000;893000;893000;819000;822000;743000;754000;646647;705191;641025;603000;603000;574000;504000;500000;500000;500000;500000 -202;'710;South Africa;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;23000;43700;37700;47400;65900;75800;64300;53600;100200;108000;113000;112600;186200;167600;115400;286800;191600;35500;35500;35500;35500;87800;87800;87800;30452;49718;45663;50300;90000;90000;59300;57400;57400;41800;43400;36895;45181;57073;20874;46087;26243;55303;49890;51293;60224;91909;107154;92323;106010;111470;190037;159893;139171;137030.54;205924;113692 -202;'710;South Africa;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;2591;5309;5770;7419;9532;12642;26205;20680;28417;28907;30803;42640;62460;79924;48110;74200;72657;12931;13000;14000;14500;34200;34200;34200;15958;17620;25063;39117;39793;39793;25065;24676;24676;20648;18396;17578;24043;28767;14385;25644;18843;31272;40564;45222;42603;62081;76736;62321;63209;68194;143464;104207;77733;110927.71;196106;104728 -202;'710;South Africa;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;400;400;600;600;700;700;700;700;300;600;4700;3400;5300;;;;;;;;;;;;142400;163400;207700;263500;400400;157300;228000;249600;249600;161600;185700;211978;116653;177051;120298;126470;128035;164965;202830;271424;156891;124694;186989;162983;177691;222765;178686;180715;196183;47984.93;175073;136754 -202;'710;South Africa;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;52;63;107;107;158;158;158;158;68;157;1253;1014;2125;;;;;;;;;;;;73832;64843;107848;198960;310576;64984;91853;100969;100969;76982;71114;68514;55083;64086;63268;66375;85331;77049;147124;168993;92257;71995;76450;100500;90615;139464;124557;90799;76380;28871.79;150028;72404 -202;'710;South Africa;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -202;'710;South Africa;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44554;3493;2116;1600;1660.67;2048;2046 -202;'710;South Africa;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25388;3130;1850;1384;1773.14;2630;2488 -202;'710;South Africa;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;29;0;15;3;35;1 -202;'710;South Africa;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;26;3;3;8;42;3 -202;'710;South Africa;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;5000;100;;;;;;;;;;;;;;;0;0;0;160000;174000;0;0;0;0;0;0;0;0;0;0;0;0;0;26000;0;0;0;0;;;;;;; -202;'710;South Africa;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;3300;2900;2500;3100;1800;6700;14300;2000;1000;200;200;300;300;;;;;;;;;;;;457;457;847;100;100;100;900;0;0;0;0;5;5;5;10;0;72;0.2;975;6965;115;1;5;0;1;;;;;;; -202;'710;South Africa;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;334;338;350;482;261;1095;4862;628;369;55;44;116;121;;;;;;;;;;;;102;102;190;51;51;51;392;0;0;0;0;8;8;8;8;0;294;1;615;7027;106;12;8;0;2;;;;;;; -202;'710;South Africa;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8000;20989;15828;4127;5346;0;0;0;0;14702;0;23;47;556;70;;;;;;; -202;'710;South Africa;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2964;7737;6462;1789;2659;0;0;0;0;6485;0;70;130;368;51;;;;;;; -202;'710;South Africa;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;162000;0;0;0;0;0;;;;;;; -202;'710;South Africa;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;5900;7900;14100;11000;6400;18000;21600;14300;14400;11200;12000;15600;21400;12100;4800;1200;5100;6200;6200;6200;6200;6200;6200;6200;2968;1067;5968;4100;1000;1000;1500;2400;2400;1700;12800;16685;19142;6334;5848;51166;49919;3599;4204;4117;13398;29128;30311;39843;51221;;;;;;; -202;'710;South Africa;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;723;1089;2291;1825;994;3740;6980;5880;4610;3332;3633;6767;10164;4833;1417;413;2494;2226;2226;2226;2226;2226;2226;2226;1706;888;4002;3146;873;873;1100;1263;1263;1214;5745;7864;9365;3772;3772;37133;36690;2932;4206;4793;9156;18740;21049;25627;28927;;;;;;; -202;'710;South Africa;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2400;2400;6900;8200;8200;7300;2400;4852;13191;25646;12073;1738;3742;91;50;1;24;10;172;0;36;;;;;;; -202;'710;South Africa;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1371;1371;2240;2554;2554;2814;1160;2717;8866;17863;8610;1049;3206;57;52;1;29;16;154;0;18;;;;;;; -202;'710;South Africa;1667;Dissolving wood pulp;5510;Production;t;85000;110000;127000;140000;144000;156000;171000;193000;213000;217000;239000;245000;258000;360000;419000;328000;348000;405000;420000;420000;420000;386000;369000;406000;581000;581000;581000;581000;390000;400000;400000;498000;451000;451000;420000;420000;520000;486000;476000;557000;397000;420000;535000;539000;547000;555800;543000;515737;589000;708000;734975;737000;746688;924660;980992;941831;967446;950000;1079473;997470;997470;997470;997470 -202;'710;South Africa;1667;Dissolving wood pulp;5610;Import quantity;t;;;;300;100;100;100;100;1300;200;200;100;500;500;500;500;500;100;300;100;400;400;400;400;600;16;420;776;471;1601;1601;1800;1400;151;151;100;100;4100;1400;1400;0;300;650;344;1760;413;454;595;563;683;789;789;991;1073;1351;813;2;707;542;171;183;14;387 -202;'710;South Africa;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;27;15;15;15;15;162;32;32;31;110;110;110;110;110;24;121;37;265;237;201;200;247;8;172;507;336;1304;1304;893;717;83;83;117;117;1788;739;739;0;557;1017;771;1492;553;684;963;900;1098;1228;1228;842;798;780;1665;3;635;133;52;104;40;310 -202;'710;South Africa;1667;Dissolving wood pulp;5910;Export quantity;t;84100;106300;125000;110500;135900;154700;162300;185300;193800;204000;226800;240500;251000;359700;418500;328000;347700;338100;214100;237000;236000;233000;252000;205400;205400;225336;184391;306208;160474;178805;178805;212126;150460;131857;159700;331800;331800;329000;491000;491000;397500;415800;536911;732463;536054;559434;559434;523008;633673;731461;706718;718692;733000;908411;903796;854495;913492;948341;954725;860966;931981.48;946461;1057883 -202;'710;South Africa;1667;Dissolving wood pulp;5922;Export value;1000 USD;13369;13648;15260;15244;16823;18387;19354;21509;25097;25003;27625;29926;39912;57546;67809;53191;57032;67625;74957;100287;111757;110275;119609;110919;111000;104860;99387;202348;129863;141995;141995;144490;116932;92147;98547;275549;275549;241589;242107;242107;224757;196977;287625;312154;339622;343399;403011;404204;376261;596011;785508;603710;616389;712922;693918;730880;779729;755557;455634;682292;785290.56;1039521;1043309 -202;'710;South Africa;1668;Pulp from fibres other than wood;5510;Production;t;25000;25000;25000;25000;25000;25000;25000;27000;27000;27000;30000;30000;39000;39000;32000;32000;49000;68000;84000;84000;84000;84000;84000;86000;99000;99000;99000;99000;99000;99000;99000;99000;99000;99000;99000;99000;115000;115000;115000;115000;103000;103000;106000;172000;172000;103000;95000;95000;65000;79000;79000;76000;70988;70988;70988;70988;70988;41000;41000;41000;41000;41000;41000 -202;'710;South Africa;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;81;136;136;54;54;0;0;0;0;100;100;709;4564;1380;1380;3448;5348;7394;6965;6965;636;400;511;743;948;757;2042;2495;2286.26;1984;625 -202;'710;South Africa;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;79;110;110;61;61;0;0;0;0;71;71;995;3302;1593;1593;3992;4755;6706;7027;7027;979;814;679;833;1030;996;1476;1661;1506.66;1827;1159 -202;'710;South Africa;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12307;20128;346;346;342;342;342;500;500;500;200;5500;10208;10208;9600;14332;12772;6856;7928;14702;0;6;547;0;5;349;217;208;0;11;48;0 -202;'710;South Africa;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5873;8307;196;196;318;318;318;501;501;520;125;3018;4758;4758;2200;2619;3954;1776;3055;6485;0;1;117;0;8;199;341;306;4;17;61;1 -202;'710;South Africa;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;277;173;264;292;54;210;2334;226;178;170;202;173;77;153;175;1079 -202;'710;South Africa;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;148;81;217;142;130;160;1973;164;217;204;231;150;76;111;193;973 -202;'710;South Africa;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14452;12700;6847;7926;13841;14532;12426;10522;6783;4631;8396;13410;11685;25590;8367.48;18647;6367 -202;'710;South Africa;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2584;3826;1732;3053;6321;5026;2619;1552;1189;660;1522;2519;2242;6034;2040.1;4103;1080 -202;'710;South Africa;1669;Recovered paper;5510;Production;t;;;;;;;;;;175000;184000;210000;233000;250000;240000;276000;291000;284000;304000;340000;374000;374000;375000;370000;375000;400000;400000;480000;500000;510000;525000;598000;590000;590000;590000;590000;590000;590000;590000;690000;770000;770000;923000;923000;923000;923000;923000;1030000;1015000;1090198;1064509;1151315;1169296;1063129;1196096;1409850;1282120;1394343;1248496;1159894;1240808;1355689;1284204 -202;'710;South Africa;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;1300;1600;1100;300;1400;800;1619;17679;21670;9496;7984;7984;19939;39602;18264;21000;6400;6400;10000;2700;2700;3200;4800;11721;2803;8500;20519;20519;31800;31064;30752;32876;35156;45252;72060;69244;57645;57895;53928;49312;40912;53613.64;51906;40138 -202;'710;South Africa;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;418;288;449;71;220;129;236;2288;3135;1154;1150;1150;2615;1890;1238;3986;916;916;2937;336;336;247;534;1613;431;1600;4364;4364;6153;4445;5588;4450;4176;5749;11522;10354;7585;6820;5953;5704;3137;5336;5670;4583 -202;'710;South Africa;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;139;4659;2562;3800;4000;5000;6000;4500;3000;3300;1400;1400;9508;4473;13837;4286;6396;6396;6918;2002;5970;15000;1000;1000;22000;13200;13200;13200;12900;20620;18555;48448;39300;39300;23893;14863;50572;71541;103092;98699;55398;49069;105620;120920;155086;95472;99392;144835.77;156238;167683 -202;'710;South Africa;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;10;351;193;424;440;535;1240;934;640;711;329;329;1002;849;2483;1073;1156;1156;1483;560;1358;2726;267;267;1902;1306;1306;1306;2005;3733;2525;5594;3300;3300;3183;1293;6404;11937;14677;12709;8622;6996;14203;22057;25925;11905;9328;30257.34;31326;21456 -202;'710;South Africa;1876;Paper and paperboard;5510;Production;t;199000;226000;284000;296000;384000;445000;475000;553000;580000;610000;625000;744000;801000;811000;776000;806000;979000;1023000;1120000;1197000;1290000;1350000;1520000;1422000;1489000;1611000;1600000;1800000;1899000;1904000;1904000;1800000;1710000;1684000;1871000;1871000;2047000;2105000;2041000;2426000;2577000;2623000;2646000;2881000;2444000;2611000;2726000;2726000;2245000;2516000;2176000;2422486;2318183;2257489;2248182;2352990;2080060;2223214;2158133;1891240;1995561;1962973;1958761 -202;'710;South Africa;1876;Paper and paperboard;5610;Import quantity;t;182200;170400;182800;215400;220000;155400;187500;193500;239600;293100;243600;108600;182300;269900;147700;110200;90900;98900;88800;172300;162600;150300;118700;115800;165100;167359;153493;207834;142202;160285;160285;263580;253907;279728;316000;320300;280100;272301;283899;283899;215000;252100;377597;403873;402326;579482;598197;542729;623704;614881;628679;690661;696464;672890;689960;671422;732436;750714;709697;609611;663488.79;870066;640048 -202;'710;South Africa;1876;Paper and paperboard;5622;Import value;1000 USD;39108;36946;46479;48843;50858;41684;50687;50266;62155;75537;68397;25716;64814;154902;98137;72144;66311;81030;76988;148823;129703;104071;85410;89129;132278;170477;156116;222472;151682;168082;168082;227785;267430;309368;346155;345196;319260;317140;304218;304218;191383;278253;375679;424968;445902;601354;665819;643909;582706;679780;728281;789769;791398;804466;793351;695042;755000;850223;746926;583103;678932.88;931628;778964 -202;'710;South Africa;1876;Paper and paperboard;5910;Export quantity;t;9400;5900;6700;29300;18700;31300;29700;40300;34200;22100;16300;30200;92000;78100;65900;123100;171600;176400;154400;137500;152800;183400;156100;181400;283000;362438;379091;326679;142581;119158;119158;338291;327797;566228;521200;466900;315100;552000;568900;573889;757155;636600;891272;941484;893637;747693;904309;956233;686917;631657;494463;503640;447560;490910;514465;555598;516656;554723;429737;491939;419178.62;335934;377656 -202;'710;South Africa;1876;Paper and paperboard;5922;Export value;1000 USD;2528;2343;1928;4688;3562;5776;6135;8069;6412;4932;4136;5514;17740;18586;12747;25147;35856;56251;51591;67437;88247;104629;59483;82331;149400;192447;227532;216468;93760;79988;79988;194939;172008;331897;411425;382563;217272;231404;198323;201805;332692;312054;445131;500357;432538;495540;613775;638491;506450;504447;487776;451379;418782;456205;408385;429861;398547;436146;362469;351005;352322.63;361422;385042 -202;'710;South Africa;2042;Graphic papers;5510;Production;t;53000;69000;77000;80000;100000;134000;140000;197000;225000;230000;235000;255000;312000;322000;287000;317000;372000;379000;402000;401000;484000;544000;645000;553000;581000;640000;600000;700000;745000;750000;745000;665000;750000;747000;741000;741000;755000;826000;834000;943000;964000;995000;1014000;1120000;885000;1051000;1131000;1066000;923000;957000;791000;795854;740293;718132;639643;585548;423184;475150;447821;322275;387172;339148;380384 -202;'710;South Africa;2042;Graphic papers;5610;Import quantity;t;101000;84100;93500;105200;121000;88400;81800;86400;131200;183000;145100;57600;113900;159100;74300;79900;65900;60000;49300;92600;104300;96600;64800;73000;84100;86359;72493;126834;61202;69285;69285;116633;107437;128230;137800;142100;125100;130800;143699;143699;113900;113800;184801;177269;170574;313122;326097;321113;397489;349631;332094;368555;349389;313475;330545;310790;391368;403109;344328;220621;291171.77;322582;209389 -202;'710;South Africa;2042;Graphic papers;5622;Import value;1000 USD;20559;17752;20377;19920;25583;22587;20326;20680;28365;41274;35678;11707;41209;84447;45050;42600;38078;40178;30172;73137;78195;58279;42417;49371;57078;95077;80516;146672;75582;88182;88182;110469;108800;134118;180027;179068;136082;146659;142444;142444;96787;104370;163127;180625;173823;293754;339971;352467;316606;367544;344339;383024;352324;308795;297680;277619;360317;415441;317890;193924;252289.41;370101;235995 -202;'710;South Africa;2042;Graphic papers;5910;Export quantity;t;3700;3500;3300;3500;3100;4200;5300;4000;3800;3600;3600;15800;63100;40500;21300;69700;109000;123500;105000;84400;116800;163400;142100;163800;261000;340438;357091;304679;120581;97158;97158;151172;123946;252828;191600;137300;145100;197500;148100;153089;202555;223800;263380;335689;305688;355393;479409;555492;308864;265051;163676;149920;139991;157268;123396;131011;126928;186963;120205;86412;118726.17;87830;105033 -202;'710;South Africa;2042;Graphic papers;5922;Export value;1000 USD;1292;1185;1128;1171;1088;1441;1840;1434;1475;1328;1350;3282;11846;9477;5366;13343;22293;44233;35082;37697;67725;91985;51013;72264;136400;179447;214532;203468;80760;66988;66988;84527;72408;111003;148626;119764;129481;64301;50025;53507;111703;123040;157232;233154;208814;241040;337010;380450;247559;232830;172453;157912;135430;151500;110898;105893;110565;149241;122160;79945;117358.48;112220;114862 -202;'710;South Africa;1671;Newsprint;5510;Production;t;19000;33000;40000;40000;54000;82000;84000;136000;158000;160000;165000;164000;217000;200000;210000;212000;254000;218000;224000;224000;302000;362000;385000;293000;325000;335000;285000;350000;350000;355000;350000;330000;350000;367000;440000;440000;332000;347000;328000;333000;328000;338000;336000;336000;344000;343000;349000;347000;323000;331000;317000;299854;241722;223409;217860;208402;180727;113912;106786;57011;80467;75197;67588 -202;'710;South Africa;1671;Newsprint;5610;Import quantity;t;59100;42800;42800;65400;50200;18800;7200;12800;41500;52500;33500;10700;9000;8600;300;;;;;;500;300;100;400;100;0;13;628;476;51;51;1700;1400;5503;4100;4100;3100;2400;1000;1000;600;1300;7196;10478;10570;21381;21381;2139;9511;14904;13900;2934;16141;12810;24003;5739;46691;53479;43678;26359;37815.77;42317;16251 -202;'710;South Africa;1671;Newsprint;5622;Import value;1000 USD;8959;6352;6276;9505;7354;2734;1010;1614;5294;6976;4267;1386;1317;2429;124;;;;;;210;169;49;141;78;0;10;402;417;119;119;621;586;2564;3068;3068;1858;1724;498;498;294;728;3610;5902;6300;13600;13600;1470;4608;9453;10289;4322;10748;8578;13020;4179;26588;37193;25404;11059;16879.96;33499;11788 -202;'710;South Africa;1671;Newsprint;5910;Export quantity;t;;;;100;0;;;;;;;11700;57400;29900;14500;63400;99000;96000;86000;70000;106000;153000;135000;147000;205000;223892;234599;186447;93408;75562;75562;118195;77450;228400;182300;128000;103000;193500;145600;145600;104900;129500;94499;72455;62393;62393;62393;48837;49287;59657;55512;44608;41743;37016;38236;49153;37064;83465;20612;14202;14969.38;15634;15177 -202;'710;South Africa;1671;Newsprint;5922;Export value;1000 USD;;;;17;0;;;;;;;1813;9371;4872;2393;10584;17890;30481;25267;29623;55454;80200;43231;54156;76000;99786;121952;107575;55758;45014;45014;57946;36955;91006;138862;110000;100000;61149;47813;47813;51022;51464;43444;37713;34340;34340;34340;28278;29721;38897;42258;31983;28822;26762;24596;27206;20652;32245;13729;9299;10389;16607;19180 -202;'710;South Africa;1674;Printing and writing papers;5510;Production;t;34000;36000;37000;40000;46000;52000;56000;61000;67000;70000;70000;91000;95000;122000;77000;105000;118000;161000;178000;177000;182000;182000;260000;260000;256000;305000;315000;350000;395000;395000;395000;335000;400000;380000;301000;301000;423000;479000;506000;610000;636000;657000;678000;784000;541000;708000;782000;719000;600000;626000;474000;496000;498571;494723;421783;377146;242457;361238;341035;265264;306705;263951;312796 -202;'710;South Africa;1674;Printing and writing papers;5610;Import quantity;t;41900;41300;50700;39800;70800;69600;74600;73600;89700;130500;111600;46900;104900;150500;74000;79900;65900;60000;49300;92600;103800;96300;64700;72600;84000;86359;72480;126206;60726;69234;69234;114933;106037;122727;133700;138000;122000;128400;142699;142699;113300;112500;177605;166791;160004;291741;304716;318974;387978;334727;318194;365621;333248;300665;306542;305051;344677;349630;300650;194262;253356.01;280265;193138 -202;'710;South Africa;1674;Printing and writing papers;5622;Import value;1000 USD;11600;11400;14101;10415;18229;19853;19316;19066;23071;34298;31411;10321;39892;82018;44926;42600;38078;40178;30172;73137;77985;58110;42368;49230;57000;95077;80506;146270;75165;88063;88063;109848;108214;131554;176959;176000;134224;144935;141946;141946;96493;103642;159517;174723;167523;280154;326371;350997;311998;358091;334050;378702;341576;300217;284660;273440;333729;378248;292486;182865;235409.46;336602;224207 -202;'710;South Africa;1674;Printing and writing papers;5910;Export quantity;t;3700;3500;3300;3400;3100;4200;5300;4000;3800;3600;3600;4100;5700;10600;6800;6300;10000;27500;19000;14400;10800;10400;7100;16800;56000;116546;122492;118232;27173;21596;21596;32977;46496;24428;9300;9300;42100;4000;2500;7489;97655;94300;168881;263234;243295;293000;417016;506655;259577;205394;108164;105312;98248;120252;85160;81858;89864;103498;99593;72210;103756.8;72196;89856 -202;'710;South Africa;1674;Printing and writing papers;5922;Export value;1000 USD;1292;1185;1128;1154;1088;1441;1840;1434;1475;1328;1350;1469;2475;4605;2973;2759;4403;13752;9815;8074;12271;11785;7782;18108;60400;79661;92580;95893;25002;21974;21974;26581;35453;19997;9764;9764;29481;3152;2212;5694;60681;71576;113788;195441;174474;206700;302670;352172;217838;193933;130195;125929;106608;124738;86302;78687;89913;116996;108431;70646;106969.48;95613;95682 -202;'710;South Africa;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;92000;91000;91000;98000;105000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -202;'710;South Africa;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1756;1951;1951;1500;1500;4988;13272;13272;71886;78716;80799;62445;72503;70951;98043;80221;79091;79091;58841;62273;127006;60325;34802;57054;69202;35163 -202;'710;South Africa;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1526;1495;1495;969;1142;3270;8637;8637;49454;64045;68566;52842;54116;58515;79338;63544;65304;65304;49552;57739;137290;47935;24631;38440;70043;32216 -202;'710;South Africa;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3751;2345;2345;84500;59300;76487;106015;106015;63000;59516;45322;32201;36743;11182;7087;5046;11230;12578;12927;14182;16628;13799;10262;10396.69;10852;9003 -202;'710;South Africa;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2792;1959;1959;49679;37076;51610;83774;83774;63400;66887;45538;28266;33974;13063;8209;6523;12947;13311;13156;15673;21569;21144;10730;13118.05;14930;12282 -202;'710;South Africa;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;314000;339000;361000;392000;398000;405000;497000;468000;635000;709000;654000;552000;570000;428000;451000;457645;453797;380857;377146;242457;361238;341035;265264;306705;263951;312796 -202;'710;South Africa;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;468;520;520;4000;11000;35331;31239;22875;21855;26000;20058;132866;45065;44974;57937;67290;48487;48487;80616;127731;70272;80220;48453;64476.92;66000;76846 -202;'710;South Africa;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;849;831;831;5000;12500;35120;47401;37793;42700;53008;45409;56384;67656;46894;71311;81270;58309;58309;71020;130278;84698;86397;54061;66984.67;90925;90433 -202;'710;South Africa;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;11;5000;7955;20000;55498;120323;131543;223300;348700;451600;220817;149851;90068;93373;83835;95602;62155;60373;63534;64793;66180;49355;80847.53;49430;72130 -202;'710;South Africa;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;18;3500;5047;21500;39209;88698;84400;136000;227943;295263;183117;148961;108120;110901;90143;93976;60476;53840;59148;76808;68571;45626;77628.85;62301;70130 -202;'710;South Africa;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;165000;167000;157000;153000;168000;175000;182000;73000;73000;73000;65000;48000;56000;46000;45000;40926;40926;40926;0;0;0;0;0;0;0;0 -202;'710;South Africa;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126176;140228;140228;107800;100000;137286;122280;123857;198000;200000;218117;192667;217159;202269;209641;185737;173087;178964;165594;154673;152352;160105;111007;131825.09;145063;81129 -202;'710;South Africa;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;142560;139620;139620;90524;90000;121127;118685;121093;188000;209318;237022;202772;236319;228641;228053;196762;176604;161047;152868;145712;156260;158154;104173;129984.79;175634;101558 -202;'710;South Africa;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;231;144;144;5200;15000;36896;36896;5737;6700;8800;9733;6559;18800;6914;4852;9367;13420;10427;8558;12148;22077;19614;12593;12512.58;11914;8723 -202;'710;South Africa;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;335;235;235;5955;13000;22969;22969;6300;7300;7840;11371;6455;10998;9012;6819;9942;17815;12515;11691;15092;18619;18716;14290;16222.58;18382;13270 -202;'710;South Africa;1675;Other paper and paperboard;5510;Production;t;146000;157000;207000;216000;284000;311000;335000;356000;355000;380000;390000;489000;489000;489000;489000;489000;607000;644000;718000;796000;806000;806000;875000;869000;908000;971000;1000000;1100000;1154000;1154000;1159000;1135000;960000;937000;1130000;1130000;1292000;1279000;1207000;1483000;1613000;1628000;1632000;1761000;1559000;1560000;1595000;1660000;1322000;1559000;1385000;1626632;1577890;1539357;1608539;1767442;1656876;1748064;1710312;1568965;1608389;1623825;1578377 -202;'710;South Africa;1675;Other paper and paperboard;5610;Import quantity;t;81200;86300;89300;110200;99000;67000;105700;107100;108400;110100;98500;51000;68400;110800;73400;30300;25000;38900;39500;79700;58300;53700;53900;42800;81000;81000;81000;81000;81000;91000;91000;146947;146470;151498;178200;178200;155000;141501;140200;140200;101100;138300;192796;226604;231752;266360;272100;221616;226215;265250;296585;322106;347075;359415;359415;360632;341068;347605;365369;388990;372317.01;547484;430659 -202;'710;South Africa;1675;Other paper and paperboard;5622;Import value;1000 USD;18549;19194;26102;28923;25275;19097;30361;29586;33790;34263;32719;14009;23605;70455;53087;29544;28233;40852;46816;75686;51508;45792;42993;39758;75200;75400;75600;75800;76100;79900;79900;117316;158630;175250;166128;166128;183178;170481;161774;161774;94596;173883;212552;244343;272079;307600;325848;291442;266100;312236;383942;406745;439074;495671;495671;417423;394683;434782;429036;389179;426643.47;561527;542969 -202;'710;South Africa;1675;Other paper and paperboard;5910;Export quantity;t;5700;2400;3400;25800;15600;27100;24400;36300;30400;18500;12700;14400;28900;37600;44600;53400;62600;52900;49400;53100;36000;20000;14000;17600;22000;22000;22000;22000;22000;22000;22000;187119;203851;313400;329600;329600;170000;354500;420800;420800;554600;412800;627892;605795;587949;392300;424900;400741;378053;366606;330787;353720;307569;333642;391069;424587;389728;367760;309532;405527;300452.45;248104;272623 -202;'710;South Africa;1675;Other paper and paperboard;5922;Export value;1000 USD;1236;1158;800;3517;2474;4335;4295;6635;4937;3604;2786;2232;5894;9109;7381;11804;13563;12018;16509;29740;20522;12644;8470;10067;13000;13000;13000;13000;13000;13000;13000;110412;99600;220894;262799;262799;87791;167103;148298;148298;220989;189014;287899;267203;223724;254500;276765;258041;258891;271617;315323;293467;283352;304705;297487;323968;287982;286905;240309;271060;234964.15;249202;270180 -202;'710;South Africa;1676;Household and sanitary papers;5510;Production;t;;;;;11000;12000;13000;14000;15000;30000;35000;38000;38000;38000;38000;38000;51000;61000;72000;81000;81000;81000;86000;83000;91000;97000;100000;110000;115000;115000;120000;117000;99000;97000;107000;107000;145000;122000;145000;134000;150000;154000;152000;197000;193000;191000;195000;220000;224000;217000;219000;215777;221656;240406;213704;232972;228991;239209;248153;226747;266284;270677;281286 -202;'710;South Africa;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;5800;6200;3600;6000;12900;14200;9300;4500;2600;3300;3800;3700;4900;5100;6200;7000;8000;8000;8000;8000;8000;8000;8000;9000;9000;10000;11000;11000;2000;2000;2200;2200;3800;1000;2097;4731;3123;4300;4300;3716;6335;9058;12695;13801;10148;8832;8832;18147;38726;17883;20377;12642;10591.76;14777;24604 -202;'710;South Africa;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;2995;2341;1494;2225;5165;8834;7594;3343;2544;3547;5018;6639;7313;6893;7699;7787;6900;6900;6900;6900;6900;6900;6900;10000;11000;11000;11000;11000;1900;1322;1590;1590;1961;1084;2037;3442;4259;4500;4500;5049;7677;12420;16450;18090;15483;14170;14170;21414;41279;23188;22346;13888;12474;17446;31945 -202;'710;South Africa;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;1500;800;1100;1200;900;1800;1800;2100;1300;1800;5800;16000;7700;4600;1600;2500;3000;3000;3000;3000;3000;3000;3000;30000;40000;8200;14000;14000;14000;16100;13200;13200;12000;12000;13931;12257;9557;6800;6800;1858;2544;3589;3318;3636;5898;9482;10811;10768;12930;15246;11385;16169;16001.52;14965;16317 -202;'710;South Africa;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;594;304;394;400;440;909;901;1076;651;992;3249;12819;6530;3889;1336;2059;2100;2100;2100;2100;2100;2100;2100;20000;26000;8280;14089;14089;13000;12723;11630;11630;9205;8520;11193;10128;8170;3700;3700;2331;3348;4789;4624;5051;7030;11183;12256;11329;12256;14077;11454;14300;18391.2;18183;20688 -202;'710;South Africa;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1157000;1062000;1349000;1452000;1463000;1433000;1522000;1325000;1331000;1365000;1408000;1058000;1314000;1075000;1313008;1244239;1191899;1292447;1394083;1289699;1373693;1393093;1205261;1164046;1272746;1297091 -202;'710;South Africa;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126501;106000;106000;84300;103800;158717;199369;203290;234860;240600;201051;206973;245961;270716;296877;319256;300140;300140;293217;288267;317868;335060;364154;347355.64;518720;393884 -202;'710;South Africa;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;138367;106115;106115;80335;105425;155398;186387;210073;243100;261348;256361;229782;274179;331591;345287;376756;368517;368517;309348;320082;376972;370885;345856;381703.41;508193;477977 -202;'710;South Africa;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;327000;391000;391000;541800;394700;600985;586538;573392;381700;414300;397916;374144;360579;325544;347743;298797;321344;376944;411958;374805;350281;295886;386957;281358.7;230776;254164 -202;'710;South Africa;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;138899;108999;108999;211305;174260;266340;250907;211203;243100;265365;252169;248349;260994;304061;281680;268005;286366;278971;306003;268754;263780;220365;248515;208831.79;222909;235227 -202;'710;South Africa;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;204000;228000;317000;336000;335000;345000;350000;450000;450000;450000;450000;450000;537000;553000;607000;687000;697000;697000;772000;774000;810000;866000;892000;981000;1029000;1035000;1035000;988000;811000;710000;923000;923000;1147000;;;;;;;;;;;;;;;;;;;;;;;;;; -202;'710;South Africa;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;;50300;60400;47800;10500;18300;11400;5700;5600;4400;17200;19500;54100;42600;41600;37900;25900;49000;49000;49000;49000;49000;63000;63000;114547;114070;117498;137200;137200;119000;;;;;;;;;;;;;;;;;;;;;;;;;; -202;'710;South Africa;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;;12501;13346;11729;2003;4273;8208;5385;4767;4091;13599;14235;33852;27635;21805;20194;17333;32800;32900;33000;33100;33200;43000;43000;72316;111630;128250;115128;115128;146278;;;;;;;;;;;;;;;;;;;;;;;;;; -202;'710;South Africa;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;;20400;10800;9700;12400;26200;32000;37000;42300;51400;41100;42800;32000;21700;12000;8900;11000;15000;15000;15000;15000;15000;15000;15000;117119;113851;167200;193600;193600;100000;;;;;;;;;;;;;;;;;;;;;;;;;; -202;'710;South Africa;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;;2423;2263;1808;1559;4980;7200;4980;8325;10237;8225;12816;12794;8661;5991;4431;4940;7800;7800;7800;7800;7800;7800;7800;57412;32600;100715;141008;141008;34791;;;;;;;;;;;;;;;;;;;;;;;;;; -202;'710;South Africa;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;913000;859000;927000;1034000;1034000;1065000;1149000;1132000;1149000;1182000;1211000;876000;1113000;971000;1194000;1197699;1154191;1252986;1314812;1208571;1325518;1295692;1198631;1150646;1256725;1198540 -202;'710;South Africa;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10204;8550;8550;6800;2000;10122;30982;10035;21700;8600;8517;34042;45742;60175;41920;44634;20086;20086;19238;26699;41192;54425;69029;72379.46;86156;117304 -202;'710;South Africa;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5174;3968;3968;3004;471;6047;13949;6584;11100;5507;5319;16869;19293;48788;38218;36592;14026;14026;13941;22094;38492;40802;41643;52438.8;78721;81244 -202;'710;South Africa;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;141652;169376;169376;234700;223300;422000;400000;500000;340000;376400;368889;329495;309137;285335;311712;269873;291589;347467;386194;339643;324416;274582;364233;251430.1;200000;221571 -202;'710;South Africa;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52283;41029;41029;79538;85266;174144;154876;161499;197000;220000;211707;200513;204194;247123;236116;223414;236046;233142;253741;221310;217958;178825;208637;158402.81;166749;176189 -202;'710;South Africa;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;113000;119000;119000;102000;96000;105000;102000;96000;110000;93000;104000;28000;29087;31129;31984;32856;31242;34178;37024;86632;0;0;0;0 -202;'710;South Africa;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90186;75571;75571;60100;61400;83145;101923;111269;126260;145100;124186;111337;130762;145887;174515;178746;170564;170564;168588;150694;164636;175615;176307;166074.36;305403;168210 -202;'710;South Africa;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110952;85090;85090;64418;63534;90767;106452;126091;147000;170841;169640;150694;175234;202580;218897;240679;241807;241807;201109;197400;220577;219777;207296;235088.52;285472;282640 -202;'710;South Africa;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;173700;207696;207696;287800;152000;152000;152000;35500;20000;15700;11095;13011;23526;15670;11925;15000;14600;13458;14893;15458;14371;11939;11870;16148.63;18305;16053 -202;'710;South Africa;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79604;62468;62468;121100;77556;77556;77556;17976;22000;24456;17242;21757;26287;25312;17074;22435;27297;25228;28459;32309;31387;29768;28732;35791.45;41207;42296 -202;'710;South Africa;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;98000;88000;88000;66000;75000;88000;80000;87000;87000;89000;97000;76000;89921;15411;5724;6605;48029;46950;11151;10769;6630;13400;16021;98551 -202;'710;South Africa;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19208;16095;16095;12800;36200;60188;59553;75290;79300;79300;62037;57444;65534;61489;76442;92111;104126;104126;101215;102646;101805;98075;109470;102642.24;117161;98958 -202;'710;South Africa;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18264;14007;14007;10604;37150;53717;57889;70145;76700;76700;74069;58023;75777;77859;84704;96388;107650;107650;90376;94981;110694;105933;91561;90390.43;136258;108213 -202;'710;South Africa;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11648;13928;13928;19300;19400;26985;34538;37892;21700;22200;17839;31561;27833;24393;23884;13873;14796;15957;10760;19636;11447;9317;10828;13754.98;12352;16504 -202;'710;South Africa;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7012;5502;5502;10667;11438;14640;18475;31728;24100;20909;23036;25949;30439;31367;28256;22096;22698;20543;23701;14952;14388;11710;11132;14600.53;14834;16698 -202;'710;South Africa;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;244000;203000;211000;211000;222000;200000;202000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -202;'710;South Africa;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6903;5784;5784;4600;4200;5262;6911;6696;7600;7600;6311;4150;3923;3165;4000;3765;5364;5364;4176;8228;10235;6945;9348;6259.59;10000;9412 -202;'710;South Africa;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3977;3050;3050;2309;4270;4867;8097;7253;8300;8300;7333;4196;3875;2364;3468;3097;5034;5034;3922;5607;7209;4373;5356;3785.66;7742;5880 -202;'710;South Africa;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;77;83;146;222;51;359;62;111;68;47;48;26;25;119;36 -202;'710;South Africa;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;184;130;74;259;234;60;325;58;102;183;47;62;14;37;119;44 -202;'710;South Africa;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;69000;71000;5000;6000;5000;5000;5000;1000;1000;1000;1000;1000;19000;30000;39000;28000;28000;28000;17000;12000;7000;8000;8000;9000;10000;4000;4000;30000;50000;130000;100000;100000;0;0;0;0;11000;11000;47000;42000;41000;38000;35000;32000;40000;28000;91000;97847;111995;107052;102388;140387;138186;135162;69066;136957;178059;80402;0 -202;'710;South Africa;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;52300;43500;47100;34500;37200;85200;58400;20200;18000;18400;16200;21900;10800;7000;9800;9900;24000;24000;24000;24000;24000;20000;20000;23400;23400;24000;30000;30000;34000;13000;32000;32000;13000;33500;31982;22504;25339;27200;27200;16849;12907;10231;13174;11428;17671;50443;50443;49268;14075;11854;9932;12194;14369.62;13987;12171 -202;'710;South Africa;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;18294;18576;19496;9781;14167;53413;40108;21434;21598;23706;27563;35195;16560;17094;15100;14638;35500;35600;35700;35800;36000;30000;30000;35000;36000;36000;40000;40000;35000;30792;54069;54069;12300;67374;55117;54514;57747;60000;60000;30032;28641;25637;35901;43368;46835;112984;112984;86661;33322;34622;35805;29435;32466.06;35888;33047 -202;'710;South Africa;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;8500;6900;1900;800;1800;3800;5800;9000;9900;10000;800;5100;6600;3400;3500;4100;4000;4000;4000;4000;4000;4000;4000;40000;50000;138000;122000;122000;56000;11400;16600;16600;800;6100;12976;7000;5000;3800;3800;967;1365;2438;1925;2341;2874;2816;3314;1861;1993;2233;2261;2401;3092.23;2363;2142 -202;'710;South Africa;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;1920;1037;584;273;474;1000;1500;2403;2675;2801;444;4127;5331;2764;2703;3068;3100;3100;3100;3100;3100;3100;3100;33000;41000;111899;107702;107702;40000;15481;27669;27669;479;6234;10366;6168;4351;7700;7700;3541;7194;5834;6638;6736;8317;7156;6260;6636;6972;9048;8490;8245;7741.16;8110;14265 -202;'710;South Africa;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;239924;267846;262981;190918;248780;210905;188438 -202;'710;South Africa;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;212080;217912;193124;154137;204243;199137;178911 -202;'710;South Africa;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18361;16853;12892;9391;12312;14669;12488 -202;'710;South Africa;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4570;4171;4223;3225;4129;3807;3658 -202;'710;South Africa;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3826;3614;3474;3231;4241;4182;4162 -202;'710;South Africa;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1469;1351;1181;1231;1242;1425;1354 -202;'710;South Africa;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14535;13239;9418;6160;8071;10487;8326 -202;'710;South Africa;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3101;2820;3042;1994;2887;2382;2304 -202;'710;South Africa;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22349;24947;23639;22147;25539;22655;26100 -202;'710;South Africa;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21897;24720;18298;16014;21666;22259;22185 -202;'710;South Africa;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7569;7316;6594;4612;6150;6180;5807 -202;'710;South Africa;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7587;8078;8354;6692;11969;7568;7480 -202;'710;South Africa;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25182;26911;21682;16091;22359;24340;20410 -202;'710;South Africa;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57098;62393;59421;46141;62702;52009;44793 -202;'710;South Africa;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;145 -202;'710;South Africa;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;90 -202;'710;South Africa;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;87 -202;'710;South Africa;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;110 -202;'710;South Africa;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0 -202;'710;South Africa;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0 -202;'710;South Africa;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116;80 -202;'710;South Africa;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;151;90 -202;'710;South Africa;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;16 -202;'710;South Africa;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;17 -202;'710;South Africa;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;57 -202;'710;South Africa;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97;113 -202;'710;South Africa;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;152131;175827;181297;127794;168771;130354;112597 -202;'710;South Africa;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107882;105599;90364;70786;87203;96297;83817 -202;'710;South Africa;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;222;1232;130;26;79;3;84 -202;'710;South Africa;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1398;2254;1478;398;769;834;590 -202;'710;South Africa;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14110;14760;16747;10857;13570;12704;10952 -202;'710;South Africa;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11648;10697;10986;10881;15805;16363;16388 -202;'710;South Africa;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;263089;305304;286519;242909;279181;317878;304172 -202;'710;South Africa;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;226857;258623;228695;196930;236830;276982;283098 -202;'710;South Africa;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3512;4339;3291;2440;2863;4265;3403 -202;'710;South Africa;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;177;343;214;369;1042;1241;535 -202;'710;South Africa;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112052;125900;117791;100254;117737;130775;108582 -202;'710;South Africa;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10520;10332;7933;7323;8307;12062;10856 -202;'710;South Africa;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22014;22225;19693;17972;15050;15451;13217 -202;'710;South Africa;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46340;46419;47889;47971;53770;59694;71346 -202;'710;South Africa;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48166;69007;66315;61930;69990;85470;102368 -202;'710;South Africa;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88229;99570;93943;80896;102449;119620;117254 -202;'710;South Africa;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77345;83833;79429;60313;73541;81917;76602 -202;'710;South Africa;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81591;101959;78716;60371;71262;84365;83107 -277;'728;South Sudan;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4366;6202;6793;10250;13259;10148;13722 -277;'728;South Sudan;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7405;12362;9769;2552;1268;1503;1625 -277;'728;South Sudan;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;159;156;156;20538;282;317;928;3272;5377;7543;3130;3789 -277;'728;South Sudan;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;59;59;103;142;7396;12360;9758;2506;1222;1476;1559 -277;'728;South Sudan;1861;Roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4428000;4474000;4522000;4621000;4652000;4683000;4716000;4750000;4750000;4750000;4750000;4750000 -277;'728;South Sudan;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;620;20;0;80;0;0;0;0;0 -277;'728;South Sudan;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;3;0;15;0;0;0;1;0 -277;'728;South Sudan;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;40;40;190;150;12068;15251;5719;570;2271;3115;5025 -277;'728;South Sudan;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;27;27;47;68;6114;8242;3009;276;737;1070;1217 -277;'728;South Sudan;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -277;'728;South Sudan;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;30;0;0;0;0;0 -277;'728;South Sudan;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;11;0;0;0;1;0 -277;'728;South Sudan;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -277;'728;South Sudan;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -277;'728;South Sudan;1863;Roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4428000;4474000;4522000;4621000;4652000;4683000;4716000;4750000;4750000;4750000;4750000;4750000 -277;'728;South Sudan;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;50;0;0;0;0;0 -277;'728;South Sudan;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;4;0;0;0;0;0 -277;'728;South Sudan;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12068;15251;5719;570;2271;3115;5025 -277;'728;South Sudan;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6114;8242;3009;276;737;1070;1217 -277;'728;South Sudan;1864;Wood fuel;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4428000;4474000;4522000;4621000;4652000;4683000;4716000;4750000;4750000;4750000;4750000;4750000 -277;'728;South Sudan;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -277;'728;South Sudan;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -277;'728;South Sudan;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -277;'728;South Sudan;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -277;'728;South Sudan;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -277;'728;South Sudan;1628;Wood fuel, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4428000;4474000;4522000;4621000;4652000;4683000;4716000;4750000;4750000;4750000;4750000;4750000 -277;'728;South Sudan;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -277;'728;South Sudan;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -277;'728;South Sudan;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;620;20;0;80;0;0;0;0;0 -277;'728;South Sudan;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;3;0;15;0;0;0;1;0 -277;'728;South Sudan;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;40;40;190;150;12068;15251;5719;570;2271;3115;5025 -277;'728;South Sudan;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;27;27;47;68;6114;8242;3009;276;737;1070;1217 -277;'728;South Sudan;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;620;0;0;30;0;0;0;0;0 -277;'728;South Sudan;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;0;0;11;0;0;0;1;0 -277;'728;South Sudan;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -277;'728;South Sudan;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -277;'728;South Sudan;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;620;0;0;30;0;0;0;0;0 -277;'728;South Sudan;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;0;0;11;0;0;0;1;0 -277;'728;South Sudan;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -277;'728;South Sudan;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -277;'728;South Sudan;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;20;0;50;0;0;0;0;0 -277;'728;South Sudan;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;0;4;0;0;0;0;0 -277;'728;South Sudan;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;40;40;190;150;12068;15251;5719;570;2271;3115;5025 -277;'728;South Sudan;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;27;27;47;68;6114;8242;3009;276;737;1070;1217 -277;'728;South Sudan;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;20;0;50;0;0;0;0;0 -277;'728;South Sudan;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;0;4;0;0;0;0;0 -277;'728;South Sudan;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;40;40;190;150;12068;15251;5719;570;2271;3115;5025 -277;'728;South Sudan;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;27;27;47;68;6114;8242;3009;276;737;1070;1217 -277;'728;South Sudan;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -277;'728;South Sudan;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -277;'728;South Sudan;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -277;'728;South Sudan;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -277;'728;South Sudan;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;251000;258000;265000;272000;278000;283000;289000;289000;289000;289000;289000;289000 -277;'728;South Sudan;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;58;33;374;147 -277;'728;South Sudan;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;31;7;166;102 -277;'728;South Sudan;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;2 -277;'728;South Sudan;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2 -277;'728;South Sudan;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;2 -277;'728;South Sudan;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2 -277;'728;South Sudan;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;10000;20000;20000;20000;20000;20000;20000 -277;'728;South Sudan;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;76263;130;95;31;2;10979;273;103;582 -277;'728;South Sudan;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;20047;28;6;5;6;1635;64;12;158 -277;'728;South Sudan;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;210;180;2366;12673;12040;4060;1813;2332;2332 -277;'728;South Sudan;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;32;56;74;1282;4118;6698;2199;478;240;240 -277;'728;South Sudan;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -277;'728;South Sudan;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;75763;130;25;10;0;10979;42;51;580 -277;'728;South Sudan;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;20011;28;2;1;5;1627;6;4;158 -277;'728;South Sudan;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -277;'728;South Sudan;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -277;'728;South Sudan;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;10000;20000;20000;20000;20000;20000;20000 -277;'728;South Sudan;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;0;70;21;2;0;231;52;2 -277;'728;South Sudan;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;0;4;4;1;8;58;8;0 -277;'728;South Sudan;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;210;180;2366;12673;12040;4060;1813;2332;2332 -277;'728;South Sudan;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;32;56;74;1282;4118;6698;2199;478;240;240 -277;'728;South Sudan;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -277;'728;South Sudan;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;0;1;3;0;0;2;2;44 -277;'728;South Sudan;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;1;4;3;0;19;18;18 -277;'728;South Sudan;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -277;'728;South Sudan;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -277;'728;South Sudan;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -277;'728;South Sudan;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;277;205;205;711;411;918;2858;1093;3755;13278;133;99 -277;'728;South Sudan;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;153;99;99;403;200;259;853;484;1648;3976;306;100 -277;'728;South Sudan;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;12;0;0;0;0 -277;'728;South Sudan;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;17;0;0;0;0 -277;'728;South Sudan;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -277;'728;South Sudan;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;215;185;185;691;391;898;2838;1002;3303;12080;52;72 -277;'728;South Sudan;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;136;88;88;392;189;248;842;418;1412;3228;201;74 -277;'728;South Sudan;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;12;0;0;0;0 -277;'728;South Sudan;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;17;0;0;0;0 -277;'728;South Sudan;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;1 -277;'728;South Sudan;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;0 -277;'728;South Sudan;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13 -277;'728;South Sudan;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7 -277;'728;South Sudan;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;20;20;20;20;20;20;91;452;1198;40;13 -277;'728;South Sudan;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;11;11;11;11;11;11;66;236;748;66;19 -277;'728;South Sudan;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;20;20;20;20;20;20;91;452;1198;40;13 -277;'728;South Sudan;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;11;11;11;11;11;11;66;236;748;66;19 -277;'728;South Sudan;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1236;906;1695;5062;31 -277;'728;South Sudan;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;39;74;186;6 -277;'728;South Sudan;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1236;906;1695;5062;31 -277;'728;South Sudan;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;39;74;186;6 -277;'728;South Sudan;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;23;23;23;23;23;23;2265;1457;3347;2717;2784 -277;'728;South Sudan;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;51;51;51;51;51;51;2738;2055;3410;2605;3505 -277;'728;South Sudan;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -277;'728;South Sudan;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -277;'728;South Sudan;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;18;18;18;18;18;18;1583;1206;1629;722;2092 -277;'728;South Sudan;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;32;32;32;32;32;32;2383;1764;2124;1098;2781 -277;'728;South Sudan;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -277;'728;South Sudan;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -277;'728;South Sudan;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;18;18;18;18;18;18;1583;1206;1629;722;2092 -277;'728;South Sudan;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;32;32;32;32;32;32;2383;1764;2124;1098;2781 -277;'728;South Sudan;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -277;'728;South Sudan;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -277;'728;South Sudan;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;37;9;1;5;2 -277;'728;South Sudan;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;85;15;3;7;3 -277;'728;South Sudan;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -277;'728;South Sudan;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -277;'728;South Sudan;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;0;0;1358;901;1328;668;2061 -277;'728;South Sudan;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;0;0;1876;1189;1641;960;2733 -277;'728;South Sudan;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;17;17;17;17;17;17;188;296;300;49;29 -277;'728;South Sudan;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;31;31;31;31;31;31;422;560;480;131;45 -277;'728;South Sudan;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;5;5;5;5;5;5;682;251;1718;1995;692 -277;'728;South Sudan;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;19;19;19;19;19;19;355;291;1286;1507;724 -277;'728;South Sudan;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -277;'728;South Sudan;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -277;'728;South Sudan;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;4;4;4;4;4;4;5;202;129;100;44 -277;'728;South Sudan;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;15;15;15;15;15;15;19;263;162;141;86 -277;'728;South Sudan;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;676;48;1589;1895;619 -277;'728;South Sudan;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;334;26;1121;1363;563 -277;'728;South Sudan;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;676;48;1589;1876;551 -277;'728;South Sudan;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;334;26;1121;1262;393 -277;'728;South Sudan;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;63 -277;'728;South Sudan;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;153 -277;'728;South Sudan;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;5 -277;'728;South Sudan;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;17 -277;'728;South Sudan;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;1;1;1;1;1;1;1;0;0;29 -277;'728;South Sudan;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;4;4;4;4;4;4;2;2;3;3;75 -277;'728;South Sudan;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -277;'728;South Sudan;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -277;'728;South Sudan;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1327;1603;1372;635;2966;4039;7723 -277;'728;South Sudan;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;0;0;13;24;18 -277;'728;South Sudan;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -277;'728;South Sudan;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -277;'728;South Sudan;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -277;'728;South Sudan;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;68;31;18;6;72;5 -277;'728;South Sudan;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -277;'728;South Sudan;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;1;3;6;7;47;14 -277;'728;South Sudan;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;179;522;149;149;282;429;503 -277;'728;South Sudan;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -277;'728;South Sudan;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1060;937;1173;407;2572;3456;6220 -277;'728;South Sudan;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;0;0;2;24;18 -277;'728;South Sudan;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;4;2;24;8;921 -277;'728;South Sudan;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;18;12;53;75;27;60 -277;'728;South Sudan;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;0;0 -277;'728;South Sudan;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2722;3671;2149;4238;2750;2979;2210 -277;'728;South Sudan;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;2;11;46;33;3;48 -277;'728;South Sudan;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;5 -277;'728;South Sudan;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;159;103;84;138;84;25;33 -277;'728;South Sudan;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -277;'728;South Sudan;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;414;165;641;231;206;216;365 -277;'728;South Sudan;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -277;'728;South Sudan;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;530;2008;551;2841;1095;540;309 -277;'728;South Sudan;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;2;11;46;33;3;48 -277;'728;South Sudan;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1619;1395;873;1028;1361;2194;1498 -277;'728;South Sudan;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -203;'724;Spain;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7112924.46;7967874;7496154;5945270;8717602;10239517;9023909 -203;'724;Spain;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7281552.04;7898284;7413227;6388935;9177093;9999323;9253866 -203;'724;Spain;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;23386;37210;45876;56136;78203;91981;90278;130128;169300;196754;195864;269273;431702;618279;500511;554177;575548;553396;737824;969314;722649;708277;601801;632641;759337;983656;1346047;1476943;2036066;2574012;2745861;2971403;2226371;2601942;3833527;3259232;3698261;4272852;3993550;4338744;4326894;4198937;5086954;5173854;5825027;6326796;7170672;6794578;4963056;4878808;5409815;4511910;4765613;4786124;4345681;4317944;4513750.57;5073931;4528713;3448673;5166932;6261431;5100029 -203;'724;Spain;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;2391;2229;2321;4206;4440;7356;5756;16183;17580;25409;33322;48304;71947;123808;118872;137570;178514;232022;280285;414271;414850;392925;398615;409221;471905;514391;739387;748722;815845;956148;1085778;1115289;895933;1261628;1885942;1393920;1698686;1745635;1627478;2153305;2358952;2138761;2560094;2621955;3436034;4011594;4600914;5200643;3949656;4245522;5132692;4552859;4903130;4727089;3871810;3911596;4272633.25;4640595;4138246;3387640;5189428;5541979;4844516 -203;'724;Spain;1861;Roundwood;5516;Production;m3;14273000;15032000;15364000;15342000;14837000;14103000;13261000;12797000;13891000;13653000;12471000;13828000;12107000;12428000;11481000;12044000;12030000;12495000;11602000;12484000;13041000;14098000;14450000;14184000;13604000;14637000;15090000;14762000;17891000;15590000;15188000;13924000;13767000;15305000;16075000;15631000;15631000;14874000;14810000;14321000;15131000;15839000;16105000;16290000;15531000;15716000;14528000;17027374;13980035;16089399;15427772;14656795;15559298;16395343;17427490;16248295;16910937;18963461;17020157;15880996;17778278;17921062;19702129 -203;'724;Spain;1861;Roundwood;5616;Import quantity;m3;181400;176400;226600;219700;312800;421200;450200;471500;901600;929500;981200;1136500;1714600;1698100;859900;1125700;1137438;1197300;1566200;1625800;638200;639000;733000;893000;1277800;1181100;1136100;1841100;1937400;2488024;2202974;2321025;1432000;1519300;2265400;1973800;2136500;4150000;3243000;3789318;4201000;3380000;3215000;2991000;3684000;3883000;4001893;2878360;1870634;1841174;2139591;1735387;2052936;1756900;753770;613434;599254;695971;783232;786590;934791;1065055;941978 -203;'724;Spain;1861;Roundwood;5622;Import value;1000 USD;3000;4340;4301;5867;10846;13763;15418;16913;36630;35554;42243;56535;122361;130149;78513;112184;115930;110506;134917;199389;78671;64730;77742;78049;95726;105714;109464;164714;209806;297809;229879;196803;135585;167342;245401;206140;207920;234744;218807;271137;270636;222999;255653;247503;247780;253116;318491;280460;137911;121342;155612;126180;151779;142205;75360;71631;72301.01;78013;74927;55570;88118;104859;121435 -203;'724;Spain;1861;Roundwood;5916;Export quantity;m3;4800;2900;4600;6900;12700;6400;20400;63400;39600;124100;103900;29600;31300;39600;90400;45800;24800;22800;51900;132400;150600;166000;151000;66700;46800;58500;198800;183800;195800;114177;49520;80418;69000;330700;536700;250900;532300;584000;387000;369001;508000;256000;281000;269000;322000;412000;535586;1167434;867679;1391238;2043763;1749086;2586193;2765480;2054323;2113497;1436996;1603166;2216759;2355719;2231887;2418677;3665027 -203;'724;Spain;1861;Roundwood;5922;Export value;1000 USD;54;54;149;245;257;168;243;887;729;1887;1613;1067;992;2165;4587;3143;2249;2141;4758;9570;8939;7998;6854;3332;3735;5332;15815;13730;15730;8878;3144;6300;4835;15926;32300;14461;21639;28693;18093;13622;24367;14239;17906;17813;19565;25303;36893;107251;74521;89004;148471;145193;223270;231252;133663;141043;106405.88;125664;144946;139639;157668;186760;230165 -203;'724;Spain;1862;Roundwood, coniferous;5516;Production;m3;4946000;5282000;5282000;7547000;5671000;5580000;4588000;4699000;5211000;5575000;6243000;6252000;6605000;6893000;7083000;7532000;7348000;9076000;7771000;7342000;7799000;9270000;8719000;8316000;7891000;9016000;9283000;8991000;10627000;10246000;9099000;7603000;7293000;8509000;8654000;8154000;8154000;7850000;7800000;8114000;8551000;8901000;8975000;9070000;8714000;8025000;6871000;7870932;5928579;5905223;5324880;5465450;6060003;7074331;9079360;7540847;8828656;9929264;8578812;7524476;9692849;9678257;10784993 -203;'724;Spain;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;412678;470578;363538;326172;440555;541093;406408 -203;'724;Spain;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36604.13;35654;27464;20973;36252;43963;37771 -203;'724;Spain;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;730975;698069;992948;1301682;1422203;1417648;2380781 -203;'724;Spain;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39791.78;43622;58761;65717;82068;88406;106756 -203;'724;Spain;1863;Roundwood, non-coniferous;5516;Production;m3;9327000;9750000;10082000;7795000;9166000;8523000;8673000;8098000;8680000;8078000;6228000;7576000;5502000;5535000;4398000;4512000;4682000;3419000;3831000;5142000;5242000;4828000;5731000;5868000;5713000;5621000;5807000;5771000;7264000;5344000;6089000;6321000;6474000;6796000;7421000;7477000;7477000;7024000;7010000;6207000;6580000;6938000;7130000;7220000;6817000;7691000;7657000;9156442;8051456;10184176;10102892;9191345;9499295;9321012;8348130;8707448;8082281;9034197;8441345;8356520;8085429;8242805;8917136 -203;'724;Spain;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;186576;225393;419694;460418;494236;523962;535570 -203;'724;Spain;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35696.88;42359;47463;34597;51866;60896;83664 -203;'724;Spain;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;706021;905097;1223811;1054037;809684;1001029;1284246 -203;'724;Spain;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66614.1;82042;86185;73922;75600;98354;123409 -203;'724;Spain;1864;Wood fuel;5516;Production;m3;10020000;10244000;10384000;10742000;9730000;8876000;8482000;8014000;7371000;6578000;5011000;6067000;3797000;3076000;2078000;2413000;1434000;1422000;1109000;1269000;1223000;1409000;1965000;1863000;1966000;1930000;1930000;1659000;2200000;1800000;2200000;2300000;2338000;2317000;3078000;3198000;3198000;1710000;1650000;1600000;1855000;1989000;2030000;2055000;2180000;1607000;1982000;2600000;2080000;5120000;3900000;3030000;3435000;3709000;4522871;2923306;2268594;3506321;1615429;2000371;3678327;3554841;3426050 -203;'724;Spain;1864;Wood fuel;5616;Import quantity;m3;1800;600;1500;3600;700;3700;3200;2900;3500;5200;36700;86600;138600;88300;36200;35100;87338;78400;140600;204000;5000;5000;9000;2000;6400;6400;6400;6400;6400;4800;2000;145000;151000;93300;73400;71800;20500;14000;15000;18318;73000;6000;24000;18000;44000;42000;36816;18240;2885;1919;4777;8538;5612;7380;2818;14287;15280;58363;116691;22253;42447;38701;66104 -203;'724;Spain;1864;Wood fuel;5622;Import value;1000 USD;12;3;22;15;5;23;19;23;16;68;169;478;968;1186;399;434;1326;1353;3052;4698;106;106;100;29;106;106;106;106;106;149;149;1312;4369;2587;2593;3396;635;417;454;536;7009;563;972;685;1850;2928;2051;968;212;268;394;880;270;343;658;1379;4217.95;4590;5981;2705;6116;7473;7279 -203;'724;Spain;1864;Wood fuel;5916;Export quantity;m3;700;600;600;1000;800;900;1100;1500;1300;9200;1700;1200;1800;1700;15600;24900;3600;1600;1400;1000;1000;1000;1000;700;8500;8500;8500;8500;8500;8500;8500;12094;17000;42700;66700;83900;83300;76000;65000;84001;125000;71000;87000;101000;119000;188000;171025;153166;60936;59229;77244;111270;98032;161110;158707;135600;33420;24443;269495;425965;370415;153344;141419 -203;'724;Spain;1864;Wood fuel;5922;Export value;1000 USD;5;4;5;11;13;13;15;18;28;118;27;24;70;63;521;943;158;72;109;112;112;112;112;17;156;156;156;156;156;156;156;534;609;1495;2705;3594;2554;2356;1813;2109;8733;2120;3517;4110;5417;9408;9137;8739;16504;2902;4460;6243;16501;21449;15746;9832;4314.06;3693;17507;21987;24563;15630;18255 -203;'724;Spain;1627;Wood fuel, coniferous;5516;Production;m3;2236000;2242000;2435000;4732000;2482000;2128000;1373000;1297000;1142000;1086000;1119000;1355000;848000;871000;657000;560000;352000;358000;207000;268000;280000;268000;668000;540000;343000;294000;294000;294000;500000;1000000;400000;400000;232000;464000;811000;564000;564000;347000;340000;320000;275000;310000;330000;345000;523000;315000;259000;600000;580000;620000;700000;530000;1195000;1288000;2895890;1418927;1036385;1897556;482948;688584;2366540;2243054;755708 -203;'724;Spain;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14818;57994;11249;8535;28161;27066;37796 -203;'724;Spain;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3568.3;3940;2754;2180;4096;5828;5835 -203;'724;Spain;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22307;9404;231234;397288;336409;132736;127881 -203;'724;Spain;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1873.43;796;14609;19908;20689;11590;14954 -203;'724;Spain;1628;Wood fuel, non-coniferous;5516;Production;m3;7784000;8002000;7949000;6010000;7248000;6748000;7109000;6717000;6229000;5492000;3892000;4712000;2949000;2205000;1421000;1853000;1082000;1064000;902000;1001000;943000;1141000;1297000;1323000;1623000;1636000;1636000;1365000;1700000;800000;1800000;1900000;2106000;1853000;2267000;2634000;2634000;1363000;1310000;1280000;1580000;1679000;1700000;1710000;1657000;1292000;1723000;2000000;1500000;4500000;3200000;2500000;2240000;2421000;1626981;1504379;1232209;1608765;1132481;1311787;1311787;1311787;2670342 -203;'724;Spain;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;462;369;105442;13718;14286;11635;28308 -203;'724;Spain;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;649.66;650;3227;525;2020;1645;1444 -203;'724;Spain;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11113;15039;38261;28677;34006;20608;13538 -203;'724;Spain;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2440.63;2897;2898;2079;3874;4040;3301 -203;'724;Spain;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;1800;600;1500;3600;700;3700;3200;2900;3500;5200;36700;86600;138600;88300;36200;35100;87338;78400;140600;204000;5000;5000;9000;2000;6400;6400;6400;6400;6400;4800;2000;145000;151000;93300;73400;71800;20500;14000;15000;18318;73000;6000;24000;18000;44000;42000;36816;18240;2885;1919;4777;8538;5612;7380;2818;14287;;;;;;; -203;'724;Spain;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;12;3;22;15;5;23;19;23;16;68;169;478;968;1186;399;434;1326;1353;3052;4698;106;106;100;29;106;106;106;106;106;149;149;1312;4369;2587;2593;3396;635;417;454;536;7009;563;972;685;1850;2928;2051;968;212;268;394;880;270;343;658;1379;;;;;;; -203;'724;Spain;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;700;600;600;1000;800;900;1100;1500;1300;9200;1700;1200;1800;1700;15600;24900;3600;1600;1400;1000;1000;1000;1000;700;8500;8500;8500;8500;8500;8500;8500;12094;17000;42700;66700;83900;83300;76000;65000;84001;125000;71000;87000;101000;119000;188000;171025;153166;60936;59229;77244;111270;98032;161110;158707;135600;;;;;;; -203;'724;Spain;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;5;4;5;11;13;13;15;18;28;118;27;24;70;63;521;943;158;72;109;112;112;112;112;17;156;156;156;156;156;156;156;534;609;1495;2705;3594;2554;2356;1813;2109;8733;2120;3517;4110;5417;9408;9137;8739;16504;2902;4460;6243;16501;21449;15746;9832;;;;;;; -203;'724;Spain;1865;Industrial roundwood;5516;Production;m3;4253000;4788000;4980000;4600000;5107000;5227000;4779000;4783000;6520000;7075000;7460000;7761000;8310000;9352000;9403000;9631000;10596000;11073000;10493000;11215000;11818000;12689000;12485000;12321000;11638000;12707000;13160000;13103000;15691000;13790000;12988000;11624000;11429000;12988000;12997000;12433000;12433000;13164000;13160000;12721000;13276000;13850000;14075000;14235000;13351000;14109000;12546000;14427374;11900035;10969399;11527772;11626795;12124298;12686343;12904619;13324989;14642343;15457140;15404728;13880625;14099951;14366221;16276079 -203;'724;Spain;1865;Industrial roundwood;5616;Import quantity;m3;179600;175800;225100;216100;312100;417500;447000;468600;898100;924300;944500;1049900;1576000;1609800;823700;1090600;1050100;1118900;1425600;1421800;633200;634000;724000;891000;1271400;1174700;1129700;1834700;1931000;2483224;2200974;2176025;1281000;1426000;2192000;1902000;2116000;4136000;3228000;3771000;4128000;3374000;3191000;2973000;3640000;3841000;3965077;2860120;1867749;1839255;2134814;1726849;2047324;1749520;750952;599147;583974;637608;666541;764337;892344;1026354;875874 -203;'724;Spain;1865;Industrial roundwood;5622;Import value;1000 USD;2988;4337;4279;5852;10841;13740;15399;16890;36614;35486;42074;56057;121393;128963;78114;111750;114604;109153;131865;194691;78565;64624;77642;78020;95620;105608;109358;164608;209700;297660;229730;195491;131216;164755;242808;202744;207285;234327;218353;270601;263627;222436;254681;246818;245930;250188;316440;279492;137699;121074;155218;125300;151509;141862;74702;70252;68083.05;73423;68946;52865;82002;97386;114156 -203;'724;Spain;1865;Industrial roundwood;5916;Export quantity;m3;4100;2300;4000;5900;11900;5500;19300;61900;38300;114900;102200;28400;29500;37900;74800;20900;21200;21200;50500;131400;149600;165000;150000;66000;38300;50000;190300;175300;187300;105677;41020;68324;52000;288000;470000;167000;449000;508000;322000;285000;383000;185000;194000;168000;203000;224000;364561;1014268;806743;1332009;1966519;1637816;2488161;2604370;1895616;1977897;1403576;1578723;1947264;1929754;1861472;2265333;3523608 -203;'724;Spain;1865;Industrial roundwood;5922;Export value;1000 USD;49;50;144;234;244;155;228;869;701;1769;1586;1043;922;2102;4066;2200;2091;2069;4649;9458;8827;7886;6742;3315;3579;5176;15659;13574;15574;8722;2988;5766;4226;14431;29595;10867;19085;26337;16280;11513;15634;12119;14389;13703;14148;15895;27756;98512;58017;86102;144011;138950;206769;209803;117917;131211;102091.82;121971;127439;117652;133105;171130;211910 -203;'724;Spain;1866;Industrial roundwood, coniferous;5516;Production;m3;2710000;3040000;2847000;2815000;3189000;3452000;3215000;3402000;4069000;4489000;5124000;4897000;5757000;6022000;6426000;6972000;6996000;8718000;7564000;7074000;7519000;9002000;8051000;7776000;7548000;8722000;8989000;8697000;10127000;9246000;8699000;7203000;7061000;8045000;7843000;7590000;7590000;7503000;7460000;7794000;8276000;8591000;8645000;8725000;8191000;7710000;6612000;7270932;5348579;5285223;4624880;4935450;4865003;5786331;6183470;6121920;7792271;8031708;8095864;6835892;7326309;7435203;10029285 -203;'724;Spain;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;559679;717290;666302;358000;297000;338000;170000;236000;906000;807000;1401000;1554000;1392000;1226000;1367000;1440000;1643000;1812077;944300;864550;977000;946000;560114;497733;456910;392907;379804;397860;412584;352289;317637;412394;514027;368612 -203;'724;Spain;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30446;35023;30335;13434;11791;19730;10533;12794;21935;30547;53015;51875;46529;64077;67426;67847;78334;99263;63053;36510;41295;43304;27841;25795;29852;27376;29570;33035.83;31714;24710;18793;32156;38135;31936 -203;'724;Spain;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15931;10817;9100;6000;153000;177000;74000;285000;209000;206000;202000;222000;102000;103000;90000;74000;67000;161561;135740;208071;383385;448003;466372;641593;973650;779477;732386;708668;688665;761714;904394;1085794;1284912;2252900 -203;'724;Spain;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;863;831;1027;629;7350;8083;2905;8518;8715;7863;5673;5330;3181;4128;3765;3408;2846;9356;17000;10373;15843;21439;18343;28249;50034;32753;34404;37918.35;42826;44152;45809;61379;76816;91802 -203;'724;Spain;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;559679;717290;666302;358000;297000;338000;170000;236000;906000;807000;1401000;1554000;1392000;1226000;1367000;1440000;1643000;1812077;944300;864550;977000;946000;560114;497733;456910;392907;379804;397860;412584;352289;317637;412394;514027;368612 -203;'724;Spain;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30446;35023;30335;13434;11791;19730;10533;12794;21935;30547;53015;51875;46529;64077;67426;67847;78334;99263;63053;36510;41295;43304;27841;25795;29852;27376;29570;33035.83;31714;24710;18793;32156;38135;31936 -203;'724;Spain;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15931;10817;9100;6000;153000;177000;74000;285000;209000;206000;202000;222000;102000;103000;90000;74000;67000;161561;135740;208071;383385;448003;466372;641593;973650;779477;732386;708668;688665;761714;904394;1085794;1284912;2252900 -203;'724;Spain;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;863;831;1027;629;7350;8083;2905;8518;8715;7863;5673;5330;3181;4128;3765;3408;2846;9356;17000;10373;15843;21439;18343;28249;50034;32753;34404;37918.35;42826;44152;45809;61379;76816;91802 -203;'724;Spain;1867;Industrial roundwood, non-coniferous;5516;Production;m3;1543000;1748000;2133000;1785000;1918000;1775000;1564000;1381000;2451000;2586000;2336000;2864000;2553000;3330000;2977000;2659000;3600000;2355000;2929000;4141000;4299000;3687000;4434000;4545000;4090000;3985000;4171000;4406000;5564000;4544000;4289000;4421000;4368000;4943000;5154000;4843000;4843000;5661000;5700000;4927000;5000000;5259000;5430000;5510000;5160000;6399000;5934000;7156442;6551456;5684176;6902892;6691345;7259295;6900012;6721149;7203069;6850072;7425432;7308864;7044733;6773642;6931018;6246794 -203;'724;Spain;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1923545;1483684;1509723;923000;1129000;1854000;1732000;1880000;3230000;2421000;2370000;2574000;1982000;1965000;1606000;2200000;2198000;2153000;1915820;1003199;862255;1188814;1166735;1549591;1292610;358045;219343;186114;225024;314252;446700;479950;512327;507262 -203;'724;Spain;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;267214;194707;165156;117782;152964;223078;192211;194491;212392;187806;217586;211752;175907;190604;179392;178083;171854;217177;216439;101189;79779;111914;97459;125714;112010;47326;40682;35047.23;41709;44236;34072;49846;59251;82220 -203;'724;Spain;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89746;30203;59224;46000;135000;293000;93000;164000;299000;116000;83000;161000;83000;91000;78000;129000;157000;203000;878528;598672;948624;1518516;1171444;1846568;1630720;1116139;1245511;694908;890058;1185550;1025360;775678;980421;1270708 -203;'724;Spain;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7859;2157;4739;3597;7081;21512;7962;10567;17622;8417;5840;10304;8938;10261;9938;10740;13049;18400;81512;47644;70259;122572;120607;178520;159769;85164;96807;64173.47;79145;83287;71843;71726;94314;120108 -203;'724;Spain;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;509329;314648;308723;265000;360000;310000;218000;257000;265000;456000;178000;172000;123646;103000;105000;107000;170000;170000;61140;31021;26144;26731;20182;9727;5330;7395;4056;6359;4214;3737;7294;7337;6016;5882 -203;'724;Spain;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;135659;81662;71577;53858;78987;74932;54853;57305;66601;67968;40056;42630;38410;40996;46206;43575;37427;41837;34261;16682;14432;16202;9564;6126;4243;6313;2588;2748.74;3191;1863;2124;3903;3337;3669 -203;'724;Spain;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;3000;1000;1000;1000;1000;570;3855;633;714;373;768;400;82;280;1372;340;80;234;36;106;435;409;123 -203;'724;Spain;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;127;127;499;790;1133;131;136;934;126;754;933;188;459;403;161;136;313;502;139;119.42;933;158;155;673;512;173 -203;'724;Spain;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1414216;1169036;1201000;658000;769000;1544000;1514000;1623000;2965000;1965000;2192000;2402000;1858354;1862000;1501000;2093000;2028000;1983000;1854680;972178;836111;1162083;1146553;1539864;1287280;350650;215287;179755;220810;310515;439406;472613;506311;501380 -203;'724;Spain;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;131555;113045;93579;63924;73977;148146;137358;137186;145791;119838;177530;169122;137497;149608;133186;134508;134427;175340;182178;84507;65347;95712;87895;119588;107767;41013;38094;32298.49;38518;42373;31948;45943;55914;78551 -203;'724;Spain;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89746;30203;59224;46000;135000;293000;93000;164000;298000;115000;82000;158000;82000;90000;77000;128000;156430;199145;877895;597958;948251;1517748;1171044;1846486;1630440;1114767;1245171;694828;889824;1185514;1025254;775243;980012;1270585 -203;'724;Spain;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7859;2157;4739;3597;7081;21512;7962;10567;17495;8290;5341;9514;7805;10130;9802;9806;12923;17646;80579;47456;69800;122169;120446;178384;159456;84662;96668;64054.05;78212;83129;71688;71053;93802;119935 -203;'724;Spain;1868;Sawlogs and veneer logs;5516;Production;m3;2655000;2948000;3184000;2788000;3125000;2710000;2804000;2805000;3750000;3932000;4147000;4058000;3668000;4319000;4007000;3517000;3245000;4043000;3401000;3354000;3902000;4769000;4952000;4111000;3906000;4272000;3471000;3341000;5615000;6027000;6310000;5829000;5978000;6144000;6030000;5729000;5729000;5732000;5690000;6678000;7120000;7603000;7700000;7795000;7343000;5860000;4532000;5272538;3332386;3454522;2614977;3412627;2868993;3691897;3809766;3874078;5555253;5466418;5406414;4114035;4140926;4150309;6792052 -203;'724;Spain;1868;Sawlogs and veneer logs;5616;Import quantity;m3;13200;63600;53000;78400;190400;224000;301300;310800;721100;763800;850900;993700;1336900;1138600;776700;1022200;976300;615300;668700;816300;468200;450000;595000;603000;643600;758000;802000;1167000;1225000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -203;'724;Spain;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;692;2466;1937;3277;8150;9601;12468;13700;33558;32042;40156;54858;115544;111905;75959;110089;112746;79878;104847;167158;73877;60050;75102;71245;80825;94950;100700;146950;155100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -203;'724;Spain;1868;Sawlogs and veneer logs;5916;Export quantity;m3;100;600;1100;1000;3100;3300;4700;4900;5800;8600;19200;13800;3700;10900;2500;7200;3700;6900;11000;10000;20800;12000;15000;14000;4300;16000;40000;24000;19000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -203;'724;Spain;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;6;27;48;29;92;68;48;90;122;248;469;518;205;903;157;1332;610;378;918;2083;1809;1084;1000;1028;623;2220;6465;3880;3880;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -203;'724;Spain;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;1725000;1900000;1951000;1851000;2130000;1841000;2111000;2315000;2675000;2834000;3373000;3075000;2878000;2904000;3197000;2678000;2374000;3238000;3159000;2415000;2833000;4096000;3892000;3265000;3571000;4001000;3200000;3070000;4500000;5035000;4784000;4334000;4543000;4675000;4375000;4183000;4183000;4096000;4010000;5276000;5554000;5774000;5800000;5875000;5507000;4395000;3258000;3775763;2406250;2460209;1881684;2440039;2059495;2635528;2849380;2897480;4639979;4437905;4461755;3150428;3354858;3420285;6275040 -203;'724;Spain;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;12700;40800;24000;28800;55300;27700;27100;19100;102400;13800;11400;17200;32300;76100;39100;26900;12900;24400;31100;23000;1200;3000;4000;7000;10000;16000;14000;22000;23000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -203;'724;Spain;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;273;1349;503;408;884;442;724;497;2860;458;224;472;1131;3641;2137;2440;1070;3029;4288;4846;297;1111;932;630;387;650;600;950;1100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -203;'724;Spain;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;;;500;400;2500;2700;4400;4700;5700;7500;18700;11800;3100;2900;2000;600;1800;1000;8100;6000;16600;10000;12000;9000;1000;5000;6000;4000;4000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -203;'724;Spain;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;;;21;2;65;40;40;84;113;164;444;332;117;145;122;30;65;77;601;481;986;497;580;336;44;220;265;180;180;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -203;'724;Spain;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;930000;1048000;1233000;937000;995000;869000;693000;490000;1075000;1098000;774000;983000;790000;1415000;810000;839000;871000;805000;242000;939000;1069000;673000;1060000;846000;335000;271000;271000;271000;1115000;992000;1526000;1495000;1435000;1469000;1655000;1546000;1546000;1636000;1680000;1402000;1566000;1829000;1900000;1920000;1836000;1465000;1274000;1496775;926136;994313;733293;972588;809498;1056369;960386;976598;915274;1028513;944659;963607;786068;730024;517012 -203;'724;Spain;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;500;22800;29000;49600;135100;196300;274200;291700;618700;750000;839500;976500;1304600;1062500;737600;995300;963400;590900;637600;793300;467000;447000;591000;596000;633600;742000;788000;1145000;1202000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -203;'724;Spain;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;419;1117;1434;2869;7266;9159;11744;13203;30698;31584;39932;54386;114413;108264;73822;107649;111676;76849;100559;162312;73580;58939;74170;70615;80438;94300;100100;146000;154000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -203;'724;Spain;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;100;600;600;600;600;600;300;200;100;1100;500;2000;600;8000;500;6600;1900;5900;2900;4000;4200;2000;3000;5000;3300;11000;34000;20000;15000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -203;'724;Spain;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;6;27;27;27;27;28;8;6;9;84;25;186;88;758;35;1302;545;301;317;1602;823;587;420;692;579;2000;6200;3700;3700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -203;'724;Spain;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6702000;6790000;5393000;5481000;5373000;5470000;5520000;5207000;7544000;7531000;8565951;8118239;7098256;8579148;7942954;9043000;8773002;8832136;9166972;8815770;9618307;9781945;9430683;9640756;9813262;9119226 -203;'724;Spain;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3017000;3070000;2158000;2317000;2163000;2170000;2170000;2083000;3209000;3156000;3265265;2763673;2659173;2617106;2391006;2726000;3064818;3226659;3106665;3039549;3417723;3541878;3488619;3795194;3754280;3509945 -203;'724;Spain;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3685000;3720000;3235000;3164000;3210000;3300000;3350000;3124000;4335000;4375000;5300686;5354566;4439083;5962042;5551948;6317000;5708184;5605477;6060307;5776221;6200584;6240067;5942064;5845562;6058982;5609281 -203;'724;Spain;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5616;Import quantity;m3;126200;95700;160200;123100;118200;179000;137900;151500;166100;153600;83900;51100;237100;433800;36600;57300;73700;498600;755400;605000;161000;178000;124000;280000;611100;400000;311000;651000;669000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -203;'724;Spain;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5622;Import value;1000 USD;1674;1460;2041;2018;2513;3592;2588;2921;2776;3206;1349;881;5764;15456;1338;973;1316;28846;26863;27474;4406;4310;2324;6463;14137;10000;8000;17000;53000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -203;'724;Spain;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5916;Export quantity;m3;4000;1600;1600;1600;5900;1100;14400;53000;26700;100100;79200;9000;19700;23800;64600;8400;8400;2200;22700;113600;101000;98000;84000;35000;23700;23700;140000;141000;158000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -203;'724;Spain;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5922;Export value;1000 USD;43;18;18;24;68;16;164;494;258;1161;887;103;220;904;2780;314;314;89;1477;5765;3342;2750;2155;884;1262;1262;7500;8000;10000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -203;'724;Spain;1870;Pulpwood and particles (1961-1997);5516;Production;m3;769000;834000;839000;831000;956000;1448000;1032000;1043000;1943000;2245000;2556000;2922000;3927000;4031000;4350000;5181000;6214000;5975000;6075000;6694000;6707000;6638000;6438000;7151000;6698000;7557000;8800000;9056000;9149000;6863000;5749000;5014000;4789000;5732000;6341000;5966000;5966000;;;;;;;;;;;;;;;;;;;;;;;;;; -203;'724;Spain;1870;Pulpwood and particles (1961-1997);5616;Import quantity;m3;126200;95700;160200;123100;118200;179000;137900;151500;166100;153600;83900;51100;237100;433800;36600;57300;73700;498600;755400;605000;161000;178000;124000;280000;611100;400000;311000;651000;669000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -203;'724;Spain;1870;Pulpwood and particles (1961-1997);5622;Import value;1000 USD;1674;1460;2041;2018;2513;3592;2588;2921;2776;3206;1349;881;5764;15456;1338;973;1316;28846;26863;27474;4406;4310;2324;6463;14137;10000;8000;17000;53000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -203;'724;Spain;1870;Pulpwood and particles (1961-1997);5916;Export quantity;m3;4000;1600;1600;1600;5900;1100;14400;53000;26700;100100;79200;9000;19700;23800;64600;8400;8400;2200;22700;113600;101000;98000;84000;35000;23700;23700;140000;141000;158000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -203;'724;Spain;1870;Pulpwood and particles (1961-1997);5922;Export value;1000 USD;43;18;18;24;68;16;164;494;258;1161;887;103;220;904;2780;314;314;89;1477;5765;3342;2750;2155;884;1262;1262;7500;8000;10000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -203;'724;Spain;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;662000;745000;588000;617000;674000;1211000;726000;733000;985000;1177000;1371000;1538000;2590000;2614000;2623000;3730000;3920000;4786000;3772000;3949000;3984000;4115000;3477000;3862000;3416000;4232000;5300000;5300000;5300000;3911000;3276000;2359000;2121000;2544000;3139000;3057000;3057000;;;;;;;;;;;;;;;;;;;;;;;;;; -203;'724;Spain;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;107000;89000;251000;214000;282000;237000;306000;310000;958000;1068000;1185000;1384000;1337000;1417000;1727000;1451000;2294000;1189000;2303000;2745000;2723000;2523000;2961000;3289000;3282000;3325000;3500000;3756000;3849000;2952000;2473000;2655000;2668000;3188000;3202000;2909000;2909000;;;;;;;;;;;;;;;;;;;;;;;;;; -203;'724;Spain;1871;Other industrial roundwood;5516;Production;m3;829000;1006000;957000;981000;1026000;1069000;943000;935000;827000;898000;757000;781000;715000;1002000;1046000;933000;1137000;1055000;1017000;1167000;1209000;1282000;1095000;1059000;1034000;878000;889000;706000;927000;900000;929000;781000;662000;1112000;626000;738000;738000;730000;680000;650000;675000;874000;905000;920000;801000;705000;483000;588885;449410;416621;333647;271214;212305;221444;262717;283939;271320;372415;216369;335907;318269;402650;364801 -203;'724;Spain;1871;Other industrial roundwood;5616;Import quantity;m3;40200;16500;11900;14600;3500;14500;7800;6300;10900;6900;9700;5100;2000;37400;10400;11100;100;5000;1500;500;4000;6000;5000;8000;16700;16700;16700;16700;37000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -203;'724;Spain;1871;Other industrial roundwood;5622;Import value;1000 USD;622;411;301;557;178;547;343;269;280;238;569;318;85;1602;817;688;542;429;155;59;282;264;216;312;658;658;658;658;1600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -203;'724;Spain;1871;Other industrial roundwood;5916;Export quantity;m3;;100;1300;3300;2900;1100;200;4000;5800;6200;3800;5600;6100;3200;7700;5300;9100;12100;16800;7800;27800;55000;51000;17000;10300;10300;10300;10300;10300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -203;'724;Spain;1871;Other industrial roundwood;5922;Export value;1000 USD;;5;78;181;84;71;16;285;321;360;230;422;497;295;1129;554;1167;1602;2254;1610;3676;4052;3587;1403;1694;1694;1694;1694;1694;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -203;'724;Spain;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;323000;395000;308000;347000;385000;400000;378000;354000;409000;478000;380000;284000;289000;504000;606000;564000;702000;694000;633000;710000;702000;791000;682000;649000;561000;489000;489000;327000;327000;300000;639000;510000;397000;826000;329000;350000;350000;390000;380000;360000;405000;654000;675000;680000;601000;106000;198000;229904;178656;165841;126090;104405;79508;85985;107431;117775;112743;176080;92231;196845;176257;260638;244300 -203;'724;Spain;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;506000;611000;649000;634000;641000;669000;565000;581000;418000;420000;377000;497000;426000;498000;440000;369000;435000;361000;384000;457000;507000;491000;413000;410000;473000;389000;400000;379000;600000;600000;290000;271000;265000;286000;297000;388000;388000;340000;300000;290000;270000;220000;230000;240000;200000;599000;285000;358981;270754;250780;207557;166809;132797;135459;155286;166164;158577;196335;124138;139062;142012;142012;120501 -203;'724;Spain;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;40200;16500;11900;14600;3500;14500;7800;6300;10900;6900;9700;5100;2000;37400;10400;11100;100;5000;1500;500;4000;6000;5000;8000;16700;16700;16700;16700;37000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -203;'724;Spain;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;622;411;301;557;178;547;343;269;280;238;569;318;85;1602;817;688;542;429;155;59;282;264;216;312;658;658;658;658;1600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -203;'724;Spain;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;;100;1300;3300;2900;1100;200;4000;5800;6200;3800;5600;6100;3200;7700;5300;9100;12100;16800;7800;27800;55000;51000;17000;10300;10300;10300;10300;10300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -203;'724;Spain;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;;5;78;181;84;71;16;285;321;360;230;422;497;295;1129;554;1167;1602;2254;1610;3676;4052;3587;1403;1694;1694;1694;1694;1694;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -203;'724;Spain;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;15000;15000;20000;19000;20000;41000;44000;67000;90000;69000;65000;65000;65000;65000;65000;65000;65000;65000;65000;65000;65000;65000;65000;65000;65000;0;0;0;0;0;0;0;0;0;0;40000;40000;30000;40000;42330;35847;35960;42210;49718;60252;81065;60297;97291;97291 -203;'724;Spain;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4225;5075;4300;4900;7300;7300;12000;18000;16085;23876;28000;33000;42000;45000;37000;55146;38900;54712;47932;37722;24434;23431;30840;26302;30237;34159;33235;49536;39190;39495;55605;68878 -203;'724;Spain;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1469;1820;1390;1798;2401;1967;3241;4439;4015;5135;6140;7334;11196;13512;11150;15938;15475;21244;18076;17446;11934;11487;15762;15452;15664;16155.72;18345;21734;16693;19995;33398;37802 -203;'724;Spain;1630;Wood charcoal;5910;Export quantity;t;0;;;;2700;3900;3500;8400;15800;33200;16600;9800;5700;8300;15000;14700;20000;18600;20000;40500;44000;67000;90000;69000;64900;64900;64900;64900;64900;34000;34000;20755;14921;8800;13300;12300;18300;20000;23000;24387;22618;21000;36000;36000;28000;34000;28409;33722;54940;30687;26799;20971;27785;22600;33895;30604;25290;50978;41801;49860;32707;43560;50418 -203;'724;Spain;1630;Wood charcoal;5922;Export value;1000 USD;0;;;;159;183;173;405;689;1626;900;558;498;1045;2432;2241;3101;3480;4711;9790;9365;13345;15607;14460;13628;13628;13628;13628;13628;14085;14085;7422;5265;3117;4607;4202;5075;5990;6159;6160;5905;6229;12397;14253;11853;17016;13440;17271;21529;13214;12991;11506;16214;14817;13938;12181;13804.03;16909;14908;18982;17112;23452;26305 -203;'724;Spain;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;979000;979000;3755000;3993000;4667000;4750000;4750000;4800000;5338000;4600000;4406601;3977881;4590744;4193155;3428272;3290000;3875250;3701692;3219975;3692926;3583994;3419327;3232558;3969855;4569678;4564286 -203;'724;Spain;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;278000;169000;280532;195184;74000;365000;699000;773000;848000;733079;831240;579427;1354627;975111;470696;537929;400230;112690;103082;165444;211417;288758;279714;615670;986969;283186 -203;'724;Spain;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10396;7493;9270;6561;3620;21671;45394;52976;59515;54362;83491;58928;118247;98933;53350;53329;36247;8531;11121;8673.7;10970;13707;11055;27994;39158;31246 -203;'724;Spain;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79000;33000;57061;56996;57000;78000;91000;119000;119000;147437;218099;195255;303204;408839;419228;423602;533300;552504;466852;478810;435371;401566;508308;392314;388094;413085 -203;'724;Spain;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2703;1717;2408;2327;4767;7394;8741;10754;12983;17661;19886;25626;24719;33542;29025;34494;38708;34646;32061;25705.99;27934;26357;26815;22607;24004;27407 -203;'724;Spain;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2270000;2605000;3360000;3420000;3420000;3456000;3919000;3100000;3100000;1746838;2011179;2079686;1541425;1502000;1867870;1855855;1485813;2078291;1809099;1698989;1835771;1962391;2760684;2755292 -203;'724;Spain;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;83000;10200;10200;10000;10000;51000;48000;48000;80070;77100;60500;52800;28600;216900;219000;106000;165348;80000;8000;303000;583000;544000;635000;656303;737660;541779;899641;923969;453196;506989;345780;24072;23150;120549;127072;142655;123343;518181;915344;249678 -203;'724;Spain;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;1305;368;368;360;360;3000;2900;2900;3126;2196;1391;2874;1271;8313;7326;4590;5582;2985;562;18452;38186;39820;50353;47758;72603;53508;82458;93986;51444;49969;32965;5431;6791;6719.98;6870;7712;6668;24406;37332;29810 -203;'724;Spain;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;9600;13500;26000;69000;67000;63000;130400;130400;160000;63000;51000;13300;13300;355;1625;0;0;2600;18000;50000;3000;65;0;0;4000;1000;1000;1000;2000;44779;18063;20267;30262;128208;109314;171150;201243;142609;179338;133383;168851;238712;210465;236632;285342 -203;'724;Spain;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;411;632;892;1423;1409;1542;2793;2793;3400;3500;3500;916;916;26;146;0;0;94;669;1222;1;8;0;0;1250;1618;2511;2094;3574;5865;11313;5180;5662;9882;9167;9123;8445;6963;10178.48;10307;11694;11970;12088;14414;18398 -203;'724;Spain;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1329000;1776000;1795000;1795000;979000;979000;979000;979000;1485000;1388000;1307000;1330000;1330000;1344000;1419000;1500000;1306601;2231043;2579565;2113469;1886847;1788000;2007380;1845837;1734162;1614635;1774895;1720338;1396787;2007464;1808994;1808994 -203;'724;Spain;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;143000;220000;170000;172000;85700;85700;90000;90000;37000;54900;54900;116521;116694;85100;0;0;0;59000;63000;115184;115184;66000;62000;116000;229000;213000;76776;93580;37648;454986;51142;17500;30940;54450;88618;79932;44895;84345;146103;156371;97489;71625;33508 -203;'724;Spain;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;2935;3668;2377;2539;1218;1218;1300;1300;1200;1891;1891;3653;3613;2176;0;0;0;3070;2903;3688;3576;3058;3219;7208;13156;9162;6604;10888;5420;35789;4947;1906;3360;3282;3100;4330;1953.71;4100;5995;4387;3588;1826;1436 -203;'724;Spain;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3825;6663;4200;0;0;0;29000;30000;56996;56996;57000;74000;90000;118000;118000;145437;173320;177192;282937;378577;291020;314288;362150;351261;324243;299472;301988;232715;269596;181849;151462;127743 -203;'724;Spain;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;154;236;198;0;0;0;1481;1716;2400;2327;4767;6144;7123;8243;10889;14087;14021;14313;19539;27880;19143;25327;29585;26201;25098;15527.51;17627;14663;14845;10519;9590;9009 -203;'724;Spain;1605;Sawdust (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1515;2325 -203;'724;Spain;1605;Sawdust (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;442;191 -203;'724;Spain;1605;Sawdust (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48939;47321 -203;'724;Spain;1605;Sawdust (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2618;3176 -203;'724;Spain;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300000;320000;320000;320000;320000;320000;320000 -203;'724;Spain;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;96483;70110;23271 -203;'724;Spain;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;3401;1384;1245 -203;'724;Spain;1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;110896;102523;60016 -203;'724;Spain;1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;6763;6972;5834 -203;'724;Spain;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;270000;370000;370000;545000;480875;549000;592718;741181;601722;650080;1046819;1046819 -203;'724;Spain;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17816;37646;38690;28262;29899;68912;98349;211998;212556;152833;193276;190481 -203;'724;Spain;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3929;8296;10624;7949;9514;20574.7;25507;38827;27018;30004;48084;42226 -203;'724;Spain;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57531;60936;53975;40426;98693;214803;260104;279693;253501;226072;377083;295534 -203;'724;Spain;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11389;22271;21857;12973;21395;39610.01;50268;47607;37762;47766;114784;81954 -203;'724;Spain;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;250000;350000;350000;525000;460875;529000;572718;616971;530868;573530;923551;923551 -203;'724;Spain;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16316;34909;37460;26445;26141;41908;43586;131582;106283;60442;65216;68489 -203;'724;Spain;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3269;7122;9767;7118;8043;11251.5;10652;32157;19540;21801;35394;31489 -203;'724;Spain;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48531;46671;39710;28568;84304;117386;110379;87559;89170;104380;205904;160754 -203;'724;Spain;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7788;16603;16189;9426;16439;18720.37;22007;17356;15035;21567;81980;53671 -203;'724;Spain;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20000;20000;20000;20000;20000;20000;20000;124210;70854;76550;123268;123268 -203;'724;Spain;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1500;2737;1230;1817;3758;27004;54763;80416;106273;92391;128060;121992 -203;'724;Spain;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;660;1174;857;831;1471;9323.2;14855;6670;7478;8203;12690;10737 -203;'724;Spain;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9000;14265;14265;11858;14389;97417;149725;192134;164331;121692;171179;134780 -203;'724;Spain;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3601;5668;5668;3547;4956;20889.65;28261;30251;22727;26199;32804;28283 -203;'724;Spain;1872;Sawnwood;5516;Production;m3;1609000;1831000;2124000;2042000;2067000;2000000;2126000;2150000;2244000;2365000;2885000;2601000;2578000;2592000;2275000;2618000;2245000;2483000;2838000;2136000;2387000;2798000;2218000;2150000;2383000;2613000;2643000;2427000;2993000;3267000;3162000;2468000;2717000;2755000;3262000;3080000;3080000;3178000;3178000;3760000;4275000;3524000;3630000;3730000;3660000;3806000;3331830;3141503;2071862;2038294;2161923;1971342;1872285;1852670;1690548;2138046;2763241;2991414;2975832;2300221;2213627;3308368;3308368 -203;'724;Spain;1872;Sawnwood;5616;Import quantity;m3;283300;404200;573300;598400;770300;759200;787800;872300;1030800;942500;949300;1181600;1453500;1420600;964500;1347400;1239900;1207200;1339400;1217600;955700;961000;978000;936000;1102900;1224100;1389100;1610100;1778000;1932600;1763000;1991086;1553000;1565000;1839000;1649100;2174600;2725050;2992410;3164651;3214000;3174000;3496000;3326000;3391000;3373000;4015384;2445970;1508790;1324400;1103441;789610;828020;1016690;1017767;1106904;1121408;1309505;1129751;983712;1182018;1341193;1120367 -203;'724;Spain;1872;Sawnwood;5622;Import value;1000 USD;12360;19877;25809;29960;41044;42722;42554;45926;52693;57046;58599;76968;134489;192758;131434;184197;191813;190993;256537;308633;206432;181976;178115;166429;195780;218610;248058;288058;521200;563352;570000;571843;392787;466004;617597;437960;693653;691103;696149;754200;709084;728019;928451;989468;1017343;990981;1269019;779589;445857;403075;372598;251871;241747;281996;289054;304273;301962.97;339491;322140;240351;440563;495278;409082 -203;'724;Spain;1872;Sawnwood;5916;Export quantity;m3;21300;19900;21500;44400;13700;18100;19800;42500;33000;61300;69200;81700;68500;78700;75800;99300;170136;109200;127400;221000;209300;295000;235000;282000;226400;193100;230100;211100;146000;130500;120000;81140;65900;69500;53000;76300;123300;127000;80000;128290;128000;131000;141000;80000;96000;117000;138000;240274;111385;150843;195275;140398;153337;213310;200181;220483;279857;283241;244921;261570;258985;195717;183296 -203;'724;Spain;1872;Sawnwood;5922;Export value;1000 USD;746;870;749;2107;511;836;856;1446;1233;2225;2518;3347;3963;7305;6098;7275;12616;9815;14578;26149;21994;24773;17516;20528;17300;17040;22040;25340;28110;43043;39000;23800;17704;16719;20765;38121;52488;29837;30959;48082;48654;60114;53125;45687;49589;65925;80951;79962;63683;66708;64221;55430;56426;73530;65813;76996;96579.94;103443;83279;68814;111179;109703;91083 -203;'724;Spain;1632;Sawnwood, coniferous;5516;Production;m3;963000;1089000;1379500;1319000;1340500;1300500;1431500;1450000;1539000;1617500;1988500;1796000;1840000;1810000;1627500;1872000;1569000;1732000;1942500;1623000;1813000;2131000;1717500;1662500;1826500;1986500;2006500;1865500;2352000;2697000;2559000;1686000;2159000;1995000;2507000;2378000;2378000;2437000;2437000;2800000;3220000;2681000;2710000;2730000;2750000;2860000;2179860;2295007;1756827;1477260;1705632;1486918;1487000;1487000;1421723;1821000;2379000;2498255;2540152;1812737;1817730;3005888;3005888 -203;'724;Spain;1632;Sawnwood, coniferous;5616;Import quantity;m3;226250;339300;499000;537550;686850;607200;617550;715250;846950;758150;748050;871050;938850;1020600;626050;805250;716100;701450;817650;693800;509450;518500;498500;508000;593750;642550;754550;877550;1039000;1088600;1028000;1254086;970000;1040000;1120000;1135100;1275000;1466050;1791410;2040680;2103000;2134000;2450000;2259000;2392000;2543000;3079487;1909430;1201863;1094236;879013;655000;710473;851980;863374;928607;936289;1137602;947967;829206;1012997;1166126;915875 -203;'724;Spain;1632;Sawnwood, coniferous;5622;Import value;1000 USD;10303;17471;22320;25726;34513;32119;31484;35828;43235;41839;42950;51743;79161;134942;80954;104221;104293;96424;132356;167561;104829;93701;88858;92907;98311;107029;126029;147029;270600;302187;288000;279988;180261;241305;291131;246291;263888;282958;321413;350230;308693;342764;480315;481367;507659;542226;716704;394724;266602;254119;223379;153900;150329;176977;167507;175151;171350.17;211258;198310;149812;313264;354017;242848 -203;'724;Spain;1632;Sawnwood, coniferous;5916;Export quantity;m3;21300;19500;21100;39000;13600;17800;18800;42100;32700;60500;67750;81000;67700;77900;69750;94100;163414;100600;124550;213500;199650;286500;225500;275500;222850;188550;224550;201550;138500;114500;100000;70640;57900;60500;36000;37000;76900;95000;40000;68300;83000;90000;109000;45000;58000;68000;87000;81530;75915;116312;112738;110378;131714;183760;168432;185460;235093;241764;208636;206134;214546;142935;141789 -203;'724;Spain;1632;Sawnwood, coniferous;5922;Export value;1000 USD;746;820;699;1650;498;792;737;1370;1179;2079;2383;3188;3718;7031;5273;6557;11616;8669;13364;24889;20000;23005;15457;19422;16080;14020;17020;15320;20055;26988;24000;15988;12227;11956;12048;9451;23013;15695;12130;14992;20119;26152;23257;19059;20651;24396;34023;32372;24302;32206;30585;28900;33280;40464;34543;43595;49808.87;58801;47658;42850;75170;66511;51910 -203;'724;Spain;1633;Sawnwood, non-coniferous;5516;Production;m3;646000;742000;744500;723000;726500;699500;694500;700000;705000;747500;896500;805000;738000;782000;647500;746000;676000;751000;895500;513000;574000;667000;500500;487500;556500;626500;636500;561500;641000;570000;603000;782000;558000;760000;755000;702000;702000;741000;741000;960000;1055000;843000;920000;1000000;910000;946000;1151970;846496;315035;561034;456291;484424;385285;365670;268825;317046;384241;493159;435680;487484;395897;302480;302480 -203;'724;Spain;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;57050;64900;74300;60850;83450;152000;170250;157050;183850;184350;201250;310550;514650;400000;338450;542150;523800;505750;521750;523800;446250;442500;479500;428000;509150;581550;634550;732550;739000;844000;735000;737000;583000;525000;719000;514000;899600;1259000;1201000;1123971;1111000;1040000;1046000;1067000;999000;830000;935897;536540;306927;230164;224428;134610;117547;164710;154393;178297;185119;171903;181784;154506;169021;175067;204492 -203;'724;Spain;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;2057;2406;3489;4234;6531;10603;11070;10098;9458;15207;15649;25225;55328;57816;50480;79976;87520;94569;124181;141072;101603;88275;89257;73522;97469;111581;122029;141029;250600;261165;282000;291855;212526;224699;326466;191669;429765;408145;374736;403970;400391;385255;448136;508101;509684;448755;552315;384865;179255;148956;149219;97971;91418;105019;121547;129122;130612.8;128233;123830;90539;127299;141261;166234 -203;'724;Spain;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;400;400;5400;100;300;1000;400;300;800;1450;700;800;800;6050;5200;6722;8600;2850;7500;9650;8500;9500;6500;3550;4550;5550;9550;7500;16000;20000;10500;8000;9000;17000;39300;46400;32000;40000;59990;45000;41000;32000;35000;38000;49000;51000;158744;35470;34531;82537;30020;21623;29550;31749;35023;44764;41477;36285;55436;44439;52782;41507 -203;'724;Spain;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;50;50;457;13;44;119;76;54;146;135;159;245;274;825;718;1000;1146;1214;1260;1994;1768;2059;1106;1220;3020;5020;10020;8055;16055;15000;7812;5477;4763;8717;28670;29475;14142;18829;33090;28535;33962;29868;26628;28938;41529;46928;47590;39381;34502;33636;26530;23146;33066;31270;33401;46771.07;44642;35621;25964;36009;43192;39173 -203;'724;Spain;1634;Veneer sheets;5516;Production;m3;10000;21000;21000;21000;10000;40000;56500;60000;74600;84300;107000;121000;121000;121000;168000;146000;120000;68000;36000;26000;25000;140000;125000;137000;137000;137000;100000;80000;80000;80000;80000;50000;119000;60000;119000;300000;300000;95000;185500;75000;70000;60000;55000;56000;58000;60000;79000;73403;91459;111199;111135;95503;110747;116560;118065;187096;115644;96869;91034;68747;62192;40049;40049 -203;'724;Spain;1634;Veneer sheets;5616;Import quantity;m3;100;100;400;500;1200;5000;6400;4400;2400;2700;2100;2000;2000;2200;3500;4100;4200;4200;5100;4300;3500;4000;4000;4000;4500;4500;4500;4500;3000;4000;4000;23210;26274;36000;42000;76900;66000;85000;88000;107094;122000;121000;137000;139000;156000;161000;114672;107850;62506;75762;83412;72007;79453;92650;107998;138159;143763;156979;143059;127884;139796;126511;73524 -203;'724;Spain;1634;Veneer sheets;5622;Import value;1000 USD;50;54;170;294;716;2071;1525;1116;1170;1318;1464;1704;2264;2667;3562;5165;5852;6333;9702;11786;7384;8223;7842;6262;6536;6536;6536;6536;4400;4400;4600;44394;44396;52795;63582;75426;97205;119773;124024;148956;149644;161590;206662;231400;260179;479843;304187;222625;124412;128072;127887;98136;102004;114144;113888;131985;147457.76;164555;146324;110925;171307;198837;141358 -203;'724;Spain;1634;Veneer sheets;5916;Export quantity;m3;300;300;600;3600;5800;7400;9500;8500;8400;8800;14500;13400;8700;9300;16300;14900;16500;19900;20000;30000;22000;19000;16000;19000;12800;12800;12800;12800;19000;23500;23500;18527;23724;27000;40000;30500;25000;26000;30000;36458;46000;47000;44000;41000;46000;37000;39000;48272;39299;37413;39157;43755;42165;37270;34285;38991;40934;38791;40125;38402;46016;45011;37854 -203;'724;Spain;1634;Veneer sheets;5922;Export value;1000 USD;231;161;163;309;446;567;756;676;657;1010;1519;1711;2433;3183;4152;3772;4602;6536;7600;14805;9535;6903;5964;8245;8240;8240;8240;8240;19000;24618;24618;26060;30805;31383;39244;36410;44640;41930;46256;57370;63535;67192;79163;85957;94753;112836;129557;125999;95925;89355;100391;89160;84259;78328;65698;73865;84810.94;87489;90391;70464;113692;126669;119061 -203;'724;Spain;1873;Wood-based panels;5516;Production;m3;124600;177400;203600;219500;273100;458000;529300;599000;622800;728500;793000;1042000;1267000;1199000;1171000;1302000;1600000;1653000;1860000;1868000;1815000;1770000;1680000;1759000;1787000;1900000;1910000;1900000;2250000;2361000;2375000;2280000;2420000;2399000;2673000;2670000;2670000;3341060;3665060;4598000;4763000;4950000;4730000;4866000;4978000;5082000;5330000;3780000;3035600;3072787;2882168;2559233;2972828;3597640;3860433;3762916;4059643;4145708;4094929;3828027;4926373;4461709;4711601 -203;'724;Spain;1873;Wood-based panels;5616;Import quantity;m3;300;900;2900;1500;2400;3505;6850;4750;9116;22837;7411;14411;38258;56727;17774;7232;3200;2700;3600;5900;8000;6600;6300;5500;21100;82200;194000;308000;420000;354800;434200;577301;473000;497100;507700;588200;800200;1424369;1639500;1072396;1049440;1363000;1326000;1501000;1450000;1605000;1510660;1225320;811547;942242;874308;824100;839429;931270;1081608;974171;1004130;1084518;1057016;1001865;1212392;1255225;1197006 -203;'724;Spain;1873;Wood-based panels;5622;Import value;1000 USD;46;137;384;285;446;548;857;658;998;1929;844;1687;4048;7046;2831;1438;903;800;1173;2625;3726;3129;2227;2185;4057;16862;40250;62850;98000;84975;103407;143210;100833;119850;159737;179200;215744;367837;407742;243784;251957;300860;378434;467601;467497;530427;602178;463842;390355;331621;329626;277301;300192;342131;330043;339450;370380.83;419556;408455;322929;528193;631726;584481 -203;'724;Spain;1873;Wood-based panels;5916;Export quantity;m3;5500;4800;6200;9100;10400;8922;12876;33421;22928;25938;50513;82512;73645;52019;58522;85734;163700;225700;281100;434900;454600;368500;375900;276500;313400;283000;230000;203800;192000;268600;356400;404851;665227;542500;533000;615600;604500;906764;792066;1011951;923360;1471000;1250000;1531000;1433000;1237000;1697000;2185956;2042545;1981499;2085546;1857324;1798913;1890770;2025509;1847037;1992959;1970293;1942381;1786668;2172327;2147597;1770914 -203;'724;Spain;1873;Wood-based panels;5922;Export value;1000 USD;1010;731;726;1151;1191;1210;1706;4239;3819;5127;9590;15074;19794;18955;14455;19102;29077;36380;57578;87592;83837;72588;72364;61066;63827;63200;52000;49450;57000;117738;148342;135723;162769;184033;212186;234698;196867;231552;200268;234866;237604;304282;384165;523462;569336;655048;887815;759581;626745;595184;708028;633403;669272;717095;677446;692162;792765.81;880469;809711;664235;1081574;1211821;1007306 -203;'724;Spain;1640;Plywood and LVL;5516;Production;m3;92300;130000;114600;107500;131100;172000;210300;230000;221400;224500;264000;270000;272000;285000;266000;290000;236000;178000;134000;162000;110000;150000;120000;129000;140000;170000;160000;140000;150000;141000;140000;120000;200000;119000;210000;110000;110000;382060;382060;380000;380000;360000;370000;375000;557000;468000;450000;250000;233000;266975;298700;254846;275100;283600;370814;378525;509000;540695;565042;507757;578417;462194;481453 -203;'724;Spain;1640;Plywood and LVL;5616;Import quantity;m3;100;200;500;400;800;600;1000;1100;1400;1300;1000;1800;3200;4700;2100;1700;1200;600;1000;2000;5400;2000;2000;2000;1400;9000;9000;17000;20000;20000;30000;37705;26000;35100;37000;35800;112300;301169;305000;76000;103000;121000;117000;120000;126000;157000;258074;101380;64012;63734;65107;51814;67672;103510;134251;153894;145516;156337;184106;149712;191196;131825;121619 -203;'724;Spain;1640;Plywood and LVL;5622;Import value;1000 USD;13;56;97;127;218;169;227;217;256;318;221;569;1092;1812;851;689;620;412;668;1664;2911;1923;1189;1183;784;5100;5200;9800;12000;12000;15000;30918;19637;25833;27476;27509;75421;36721;39031;47505;68827;66707;81129;88775;90931;114521;205337;93052;50674;48353;52162;35046;43450;62165;65746;72734;77428.61;93643;93440;66206;118676;122542;117448 -203;'724;Spain;1640;Plywood and LVL;5916;Export quantity;m3;4600;3700;2800;6500;5300;5500;7300;18900;18200;22900;41900;53000;48400;34300;27900;33400;38200;29300;42100;36200;41000;46000;55000;62000;56300;59000;42000;43000;43000;39700;40000;33121;59500;66800;78000;76900;69000;331383;220066;104000;88000;82000;88000;114000;117000;124000;162000;213405;122318;141325;164700;152160;166152;188620;223868;251693;273702;290836;325835;249340;332941;363294;199334 -203;'724;Spain;1640;Plywood and LVL;5922;Export value;1000 USD;958;684;515;1019;925;1035;1396;3437;3549;4876;8960;13023;17913;17128;11380;14072;16937;15616;25814;24558;23352;25603;28584;28216;25507;27000;20000;20500;20500;37137;38000;29156;43085;53311;60893;60349;54313;76391;62045;66723;59367;59375;77541;112369;111668;129800;177755;169453;131602;141884;187803;168882;193615;212951;217257;235397;287885.61;328351;305471;242962;379606;416710;318909 -203;'724;Spain;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;925;1112 -203;'724;Spain;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1009;1139 -203;'724;Spain;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;77 -203;'724;Spain;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;107 -203;'724;Spain;1646;Particle board and OSB (1961-1994);5516;Production;m3;8100;19000;59000;63000;102000;240000;277000;320000;342400;444000;460000;696000;908000;828000;825000;896000;1199000;1210000;1380000;1330000;1300000;1300000;1200000;1300000;1300000;1370000;1390000;1400000;1700000;1790000;1795000;1680000;1660000;1730000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -203;'724;Spain;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;600;2200;1000;1400;2800;5800;3600;7400;20800;6200;12400;33900;51500;14200;4900;1700;1100;1200;2600;1500;2000;2000;2000;18500;72000;147000;253000;339000;250700;326000;387467;322000;328000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -203;'724;Spain;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;64;202;138;190;351;617;430;718;1542;577;1085;2824;5104;1737;584;218;237;364;717;526;657;657;657;2931;11420;24000;42000;70000;55064;72000;77354;51564;58447;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -203;'724;Spain;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;800;1000;1000;1000;1000;1000;100;200;200;300;400;9400;16400;9400;14300;29800;95300;154200;170200;281000;325000;252000;233000;102000;156300;122000;96000;71000;42000;56600;136000;155037;301700;202900;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -203;'724;Spain;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;40;35;35;35;35;35;25;34;20;32;41;549;1017;717;1390;2799;8565;16766;23168;44224;41275;29662;23751;9899;15651;13000;10500;7750;12000;18760;45000;37218;42150;38522;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -203;'724;Spain;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1863000;1970000;1970000;1880000;2203000;3033000;3268000;3450000;3180000;3244000;3174000;3316000;3295000;2350000;1778000;1778000;1584000;1320000;1469000;1795910;1849782;1753201;1858079;1918647;1898712;1783054;2797567;2566383;2797016 -203;'724;Spain;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;339000;346000;346000;723000;941500;431025;602000;609000;628000;758000;667000;684000;635104;416180;305263;404329;370761;319013;382083;468690;545221;447383;489360;460567;445806;446331;561770;625898;624824 -203;'724;Spain;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78978;82506;50243;224508;278088;102708;101011;99795;123853;161594;149882;155160;158260;136949;86976;98180;87702;82773;106048;124585;118120;106740;117735.64;126026;122667;106537;177328;231897;234058 -203;'724;Spain;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;204500;248700;247000;242381;181000;251558;318000;421000;336000;435000;376000;452000;467000;669858;755769;764111;871293;741316;609552;600040;597019;594242;726001;780588;723417;643124;829448;799838;802758 -203;'724;Spain;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54006;82892;53452;61593;45268;52973;61010;76268;70175;89463;91440;110998;123107;189883;173107;176885;214111;187652;173692;179156;153731;148946;182170.86;210604;185190;145952;270947;302836;279322 -203;'724;Spain;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;1510;1420;1799;1921;1353;1288;1946;2433;2984;2984 -203;'724;Spain;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28647;7910;2544;4783;5997;5502;10438;10140;23645;26012;31293;35051;31766;34448;28632;35140;41594 -203;'724;Spain;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6085;3359;920;1917;2512;2000;4848;4495;6734;7057;10553.73;14438;10587;9548;14972;16807;16302 -203;'724;Spain;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;6940;4292;2057;3077;1583;1817;3240;4893;2448;5040;6568;7985;25152;15571;12115;20187 -203;'724;Spain;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3009;2132;1926;1416;1756;1057;1361;1542;1730;1073;2349.7;3198;3304;6936;7897;6367;8287 -203;'724;Spain;1874;Fibreboard;5516;Production;m3;24200;28400;30000;49000;40000;46000;42000;49000;59000;60000;69000;76000;87000;86000;80000;116000;165000;265000;346000;376000;405000;320000;360000;330000;347000;360000;360000;360000;400000;430000;440000;480000;560000;550000;600000;590000;590000;1079000;1080000;1185000;1115000;1140000;1180000;1247000;1247000;1298000;1585000;1180000;1024600;1027812;999468;984387;1228728;1516620;1638417;1629391;1690643;1685013;1629887;1535270;1547956;1430148;1430148 -203;'724;Spain;1874;Fibreboard;5616;Import quantity;m3;200;100;200;100;200;105;50;50;316;737;211;211;1158;527;1474;632;300;1000;1400;1300;1100;2600;2300;1500;1200;1200;38000;38000;61000;84100;78200;152129;125000;134000;131700;206400;341900;400200;393000;565371;344440;633000;581000;623000;657000;764000;588835;699850;439728;469396;432443;447771;379236;348930;378491;346882;337961;432563;395338;371374;430794;462362;408969 -203;'724;Spain;1874;Fibreboard;5622;Import value;1000 USD;33;17;85;20;38;28;13;11;24;69;46;33;132;130;243;165;65;151;141;244;289;549;381;345;342;342;11050;11050;16000;17911;16407;34938;29632;35570;53283;69185;90080;106608;90623;93571;82119;134358;173452;217232;226684;260746;232496;230482;251785;183171;187250;157482;145846;150886;139443;152919;164662.86;185449;181761;140638;217217;260480;216673 -203;'724;Spain;1874;Fibreboard;5916;Export quantity;m3;100;100;2400;1600;4100;2422;5476;14321;4528;2738;8213;20112;8845;8319;16322;22534;30200;42200;68800;117700;88600;70500;87900;112500;100800;102000;92000;89800;107000;172300;180400;216693;304027;272800;250500;290000;288500;333000;391000;656393;517360;968000;826000;982000;940000;661000;1065000;1295753;1160166;1074006;1046476;962265;1021392;1098870;1199729;998654;988216;892301;885144;869052;994367;972350;748635 -203;'724;Spain;1874;Fibreboard;5922;Export value;1000 USD;12;12;176;97;231;140;285;768;250;219;589;1502;864;1110;1685;2231;3575;3998;8596;18810;19210;17323;20029;22951;22669;23200;21500;21200;24500;61841;65342;69349;77534;92200;97287;91457;89102;93568;92955;115170;117227;168639;236449;321630;366228;414250;583944;398113;320110;274999;304358;275812;300604;323446;304728;306746;320359.65;338316;315746;268385;423124;485908;400788 -203;'724;Spain;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95000;100000;100000;110000;110000;115000;115000;60000;60000;62350;62000;62000;60000;50000;50000;50000;24886;28257;28582;28440;28848;24505;29805;28646;33069;32119;32230;31743;31743 -203;'724;Spain;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17700;24800;37200;65000;43000;33251;40000;105000;206000;245000;83000;85000;130307;48560;53506;49148;42458;41239;36634;40280;43099;45900;46134;106060;44218;34292;35636;45596;42158 -203;'724;Spain;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9416;10591;15718;28237;20307;17845;21219;54254;89558;124569;55559;43050;72035;51248;109842;43041;41558;32531;31878;37169;34030;38039;39566.07;44825;35086;23441;33384;49550;52060 -203;'724;Spain;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69800;84100;107000;112000;116000;146552;143000;178000;275000;280000;136000;143000;45000;54469;44627;61092;55847;52609;59765;51090;57769;46859;67724;54429;66725;70446;67680;60664;60021 -203;'724;Spain;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24651;28654;34742;36749;36293;42900;40191;62272;121909;166072;141600;168179;58328;68294;43224;45438;47797;36727;43588;36116;36176;30957;35836.32;36676;41513;37346;48163;43959;45894 -203;'724;Spain;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;505000;490000;490000;969000;970000;1070000;1000000;1080000;1120000;1184650;1185000;1185000;1160000;785000;800000;800000;807000;840000;1092711;1370600;1520000;1520000;1580000;1580000;1540000;1448000;1448000;1334153;1334153 -203;'724;Spain;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106000;172100;297200;297200;309000;475267;259000;488000;360000;356000;537000;651000;436365;621180;363701;401428;362764;371226;322880;294550;324989;295206;288068;321377;343723;326455;382191;397190;356923 -203;'724;Spain;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41154;55318;72422;72422;65787;70372;56058;75070;77910;83259;157497;208730;152715;173127;136718;136003;140769;121122;111023;111245;103804;113283;123801.4;138992;144243;114125;179553;203162;160599 -203;'724;Spain;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;168700;194900;175000;205000;253000;481163;354000;748000;547000;690000;726000;439000;825000;1095426;972515;855313;843152;852426;904770;1000830;1095378;913144;905796;814884;801518;780440;909707;896838;681040 -203;'724;Spain;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63453;53920;48711;51875;51923;66904;72671;101387;111177;151208;197415;213265;437334;298765;244088;207709;235571;231018;247069;278306;261133;268114;279919.61;291748;266523;224780;365380;432811;347497 -203;'724;Spain;1650;Other fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;19000;36000;66000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;0;0;0;0;0;0;0;0;0;0;0;0;51000;365000;345000;174600;177812;167582;116130;107435;117580;89569;84886;80838;76367;56818;55151;67726;64252;64252 -203;'724;Spain;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;700;1200;800;800;2400;2200;1200;800;800;25000;25000;25000;28200;28200;28000;17000;20000;8000;9500;7500;38000;41000;56853;45440;40000;15000;22000;37000;28000;22163;30110;22521;18820;27221;35306;19722;14100;10403;5776;3759;5126;7397;10627;12967;19576;9888 -203;'724;Spain;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;73;89;120;120;483;348;229;187;187;6000;6000;6000;3407;3407;3652;2334;2911;2713;3276;1940;5949;4529;5354;4842;5034;5984;9404;13628;8966;7746;6107;5225;4127;4923;3829;2945;2472;1609;1597;1295.39;1632;2432;3072;4280;7768;4014 -203;'724;Spain;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;18700;36100;66200;37300;30500;46900;59500;51400;52000;47000;47000;47000;30400;30400;18801;9427;16800;12000;11000;6500;16000;22000;28678;20360;42000;4000;12000;78000;79000;195000;145858;143024;157601;147477;57230;56857;46950;46582;38651;14696;22988;16901;18166;16980;14848;7574 -203;'724;Spain;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;790;2611;6130;7462;8981;12222;13733;14086;14500;13500;13500;13500;8342;8342;11534;7001;10414;9183;8883;5649;4944;4739;5366;4365;4980;3363;4350;27213;32806;88282;31054;32798;21852;20990;8067;9947;9024;7419;7675;4603.73;9892;7710;6259;9581;9138;7397 -203;'724;Spain;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;24200;28400;30000;49000;40000;46000;42000;49000;59000;60000;69000;76000;87000;86000;80000;116000;165000;246000;310000;310000;325000;240000;280000;250000;267000;280000;280000;280000;320000;350000;360000;400000;480000;550000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -203;'724;Spain;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;200;100;200;100;200;105;50;50;316;737;211;211;1158;527;1474;632;300;300;200;500;300;200;100;300;400;400;13000;13000;36000;55900;50000;124129;108000;114000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -203;'724;Spain;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;33;17;85;20;38;28;13;11;24;69;46;33;132;130;243;165;65;78;52;124;169;66;33;116;155;155;5050;5050;10000;14504;13000;31286;27298;32659;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -203;'724;Spain;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;100;100;2400;1600;4100;2422;5476;14321;4528;2738;8213;20112;8845;8319;16322;22534;30200;23500;32700;51500;51300;40000;41000;53000;49400;50000;45000;42800;60000;141900;150000;197892;294600;256000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -203;'724;Spain;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;12;12;176;97;231;140;285;768;250;219;589;1502;864;1110;1685;2231;3575;3208;5985;12680;11748;8342;7807;9218;8583;8700;8000;7700;11000;53499;57000;57815;70533;81786;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -203;'724;Spain;1879;Total fibre furnish;5510;Production;t;296400;326600;432900;475900;548800;777700;815400;955900;957500;1155800;1338000;1456000;1649000;1804000;1686000;1934000;2160000;2109000;2263000;2303000;2340000;2491000;2626000;2678000;2724000;3026000;3147000;3399000;3428000;3344000;3419000;3395000;3159000;3255000;3693900;3578600;3687000;4255400;4655050;5032000;5229000;5350000;5549000;5933600;7046000;8234200;7872500;7877200;7239600;7383210;7569630;7410200;7286859;7087090;7011700;6800957;6455776;6272800;5873701;6114703;6133536;5466889;5368989 -203;'724;Spain;1879;Total fibre furnish;5610;Import quantity;t;10700;9500;21300;20600;13900;9600;4900;246200;287200;356700;297000;382500;423700;436593;390596;342168;379893;435797;448969;511440;475615;562400;506000;663000;724400;865300;879100;946300;851000;962600;900100;1011958;915271;1035700;639927;1188600;1292000;1536000;1210000;1339458;1506900;1662000;1702000;1673000;1690619;2041114;2071470;2154400;1882601;2460416;2125306;2372697;2654976;2499390;2735354;2753598;2604141;2427693;2498532;2503320;3114183;2652733;2489178 -203;'724;Spain;1879;Total fibre furnish;5622;Import value;1000 USD;463;486;1458;1318;1020;591;368;33831;41955;55323;50920;68746;85861;125892;132114;101340;103276;110643;141757;188377;155684;149188;121991;181618;180459;227897;308941;320724;277460;382110;353184;329645;155158;277873;552338;336412;335392;346296;300619;495766;400680;437566;482556;528832;556495;654540;738776;908208;694498;890381;1083582;899770;1026122;896939;945223;899700;922290.78;1026849;864348;643312;1092897;1324337;942911 -203;'724;Spain;1879;Total fibre furnish;5910;Export quantity;t;3000;2400;3400;2400;2900;1200;1200;29600;19600;23300;20300;22800;61800;61817;72234;92405;120456;134218;143102;204578;201070;203600;353000;318000;352500;450900;524900;559400;574400;539000;628300;620753;632647;754000;675400;704500;786900;759000;694000;912664;867800;827000;959000;1238000;1442297;1373654;1762122;1623671;2010929;1546435;1912311;1866915;1845390;1944820;1695013;2074223;2014859;1824905;1607637;1666973;1760045;1570559;1879854 -203;'724;Spain;1879;Total fibre furnish;5922;Export value;1000 USD;103;92;170;113;100;99;99;4227;3111;3850;2967;3417;12048;23845;23351;27471;30069;34086;48065;80597;76205;66726;108904;125972;112292;143937;281983;301083;310277;346462;399173;311589;152090;317265;532850;313350;309734;301832;287251;489866;413788;337441;431775;567726;609819;644616;819483;880454;661081;924653;1179243;1022317;1075398;947201;573434;642214;758423.66;787886;593024;509468;838023;710804;703656 -203;'724;Spain;1878;Pulp for paper;5510;Production;t;183400;233600;268900;300900;336800;516700;509400;579900;631500;701800;768000;854000;927000;1093000;1022000;1230000;1260000;1235000;1171000;1329000;1365000;1360000;1412000;1453000;1434000;1579000;1700000;1794000;1824000;1653000;1685000;1618000;1423000;1432000;1576900;1461600;1570000;1620400;1692050;1713000;1733000;1733000;1906000;2006600;2723000;2863200;2951000;2877900;2614400;2746110;2847130;2858500;3020559;2647790;2444200;2090657;1895676;1821000;1456201;1730003;1748836;1119989;1119989 -203;'724;Spain;1878;Pulp for paper;5610;Import quantity;t;10700;9500;21300;20600;13900;9600;4900;246200;287200;301700;258000;340500;380700;342000;285800;219600;231700;260100;267000;282100;240000;304400;261000;293000;329500;444300;427000;415300;317000;432100;393800;489117;413696;405700;511500;494600;561500;712000;556000;664300;734900;798000;788000;851000;881619;926114;956470;981450;920744;1183284;971137;1001332;1110777;994350;1107807;1115275;1082535;1088439;1044438;1035571;1080213;1162336;1004598 -203;'724;Spain;1878;Pulp for paper;5622;Import value;1000 USD;463;486;1458;1318;1020;591;368;33831;41955;50929;47802;65218;81814;109131;120637;87355;87886;92538;113150;147066;127152;121184;98980;135251;133316;179071;248772;241054;189884;311510;287184;262105;106217;197779;419933;262522;276277;280997;250105;408362;337062;354455;384081;442174;471359;522875;595063;724987;515629;670185;760735;674100;739212;660970;717560;655209;667354.73;841568;685422;501694;756639;1041339;756390 -203;'724;Spain;1878;Pulp for paper;5910;Export quantity;t;3000;2400;3400;2400;2900;1200;1200;29600;19600;21300;15300;16800;46800;51600;63300;77200;95200;121700;128700;186300;183300;170000;335000;302000;336500;435900;512100;544400;556400;526600;609700;589660;596727;722000;637400;655500;748400;705000;635000;799567;796800;720000;846000;963000;930297;990654;1123122;894267;853969;881639;1129494;1157014;1179530;1053240;681188;921455;953151;927435;924027;944961;1056050;792946;973872 -203;'724;Spain;1878;Pulp for paper;5922;Export value;1000 USD;103;92;170;113;100;99;99;4227;3111;3739;2775;3119;10850;21890;22212;26078;27699;32813;44838;77145;73768;63150;107230;124332;110691;142186;280343;297737;307973;344862;396673;307482;148034;312443;522076;305450;303231;293301;275998;462982;397219;316641;409643;524563;548873;593968;727183;725498;531557;787102;997712;892628;958002;801339;412365;458951;555056.35;629473;501433;423230;654057;537335;567338 -203;'724;Spain;1875;Wood pulp;5510;Production;t;171200;200700;236300;255500;295800;416900;382400;436900;542300;601800;642000;729000;816000;940000;919000;1025000;1148000;1168000;1101000;1262000;1291000;1282000;1349000;1420000;1393000;1543000;1638000;1708000;1758000;1594000;1623000;1544000;1351000;1457000;1602000;1487000;1535000;1656800;1717000;1750000;1721000;1721000;1894000;1994600;2039000;2079200;2080300;2009100;1745500;1873900;1976230;1980500;1929059;1863200;1640900;1700100;1759500;1759000;1516201;1790003;1748836;1119989;1119989 -203;'724;Spain;1875;Wood pulp;5610;Import quantity;t;19500;32000;26300;23400;14700;9800;5000;246200;287200;301700;258000;340500;380600;340900;317700;249400;269100;273500;292200;298700;266000;322000;281000;307000;351000;465800;432800;421100;315700;430800;392500;498554;428728;419000;521100;502300;575600;723000;565000;669227;733976;789000;777000;845000;880619;928114;958470;979310;922761;1184796;969470;1005585;1119215;1006150;1125716;1127550;1088303;1095874;1053864;1046749;1090709;1175557;1012786 -203;'724;Spain;1875;Wood pulp;5622;Import value;1000 USD;1489;4070;2287;1685;1130;620;385;33831;41955;50929;47802;65218;81800;108802;137628;102543;106390;98211;126118;156788;144971;133651;110427;142799;143096;188851;251801;244083;188130;309756;285430;268337;116164;206834;428827;267709;284762;287594;256027;408895;331585;344655;374574;439444;472160;526249;598745;722455;517868;672471;761149;680171;747736;671601;730048;665311;671072.43;844990;689489;510408;765160;1055303;764521 -203;'724;Spain;1875;Wood pulp;5910;Export quantity;t;3000;2400;3400;2700;2900;1200;1200;29600;19600;21300;15300;16800;46800;51600;54000;65900;83300;122100;122300;190900;189300;177000;343000;313000;341200;440600;522500;554800;554400;524600;607700;592125;592124;717000;643100;659500;745600;714000;646000;809494;805119;724000;854000;971000;939297;994654;1126122;899714;873592;896554;1139881;1172855;1183599;1037800;665814;907408;967441;934530;932991;929314;1030050;775324;973813 -203;'724;Spain;1875;Wood pulp;5922;Export value;1000 USD;103;92;170;146;100;99;99;4227;3111;3739;2775;3119;10850;21890;17166;20599;22337;30193;41078;79699;76159;65605;108983;125669;108941;140436;285191;302585;305781;342670;394481;298044;135078;295401;514812;294149;284166;278207;264960;451127;380208;293543;380395;493848;528278;565872;696936;702538;516843;790554;988636;879781;933525;756396;376323;420445;529211.96;598553;474370;374886;586978;500883;567323 -203;'724;Spain;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;438850;449000;252923;498619;511906;102844;102844 -203;'724;Spain;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35625;35857;30138;17769;23240;29875;16163 -203;'724;Spain;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19294.93;22761;17212;8514;14722;19860;11087 -203;'724;Spain;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33330;22674;28681;29122;34285;29159;10593 -203;'724;Spain;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13889.75;10522;12573;12064;16997;16996;6210 -203;'724;Spain;1654;Mechanical wood pulp (1961-2016);5510;Production;t;63100;76700;79000;75500;89500;187000;145700;168000;158500;158700;167000;177000;197000;188000;181000;184000;215000;240000;186000;208000;217000;205000;229000;237000;204000;190000;205000;209000;201000;161000;146000;108000;81000;83000;121000;106000;103000;112100;100000;114000;132000;122000;91000;96100;96000;91200;96000;95000;90000;89996;90000;90000;90000;90000;90000;355579;;;;;;; -203;'724;Spain;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;10700;9200;14600;20100;13800;9500;4700;6100;10000;18900;10300;11500;6100;7200;10900;10900;11400;11300;6800;8800;2000;1000;2000;6000;12200;8300;7800;10000;11500;17200;5800;3123;8130;3000;17000;13000;7100;8000;7000;19757;25000;28000;37000;30000;23200;27000;27000;48940;22864;15656;23137;14120;5422;3080;3266;310;;;;;;; -203;'724;Spain;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;463;436;697;1268;1014;584;359;523;915;1841;1112;930;760;1423;3248;2859;2855;2675;2152;2808;841;232;460;2688;4403;3000;5132;5300;6100;7879;2700;1627;2907;2587;8830;4828;2201;2938;3309;9967;9247;11933;18042;15811;10276;12280;13403;33095;13599;11615;19196;12097;5216;1775;1619;307;;;;;;; -203;'724;Spain;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;3000;2400;3400;2400;2900;1200;1200;200;200;200;1000;1700;400;400;1200;3500;10200;6800;8100;8300;6300;17000;23000;19000;1000;2200;2700;5000;9500;8700;22700;8958;5300;12000;15000;18500;18400;28000;30000;41474;39000;37000;42000;33000;15000;161;17000;0;0;6789;0;120;26897;27540;28285;18381;;;;;;; -203;'724;Spain;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;103;92;170;113;100;99;99;17;17;17;78;155;45;45;226;614;1188;638;972;1172;1573;4659;5707;4942;301;600;1047;2000;3800;3896;10200;3944;2082;4210;6783;5610;3877;5798;7087;8791;9046;9739;13247;10979;5005;73;8404;0;0;2379;0;42;11337;11268;9883;6468;;;;;;; -203;'724;Spain;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;3000;8500;9100;10700;9700;12000;8200;13300;18000;20000;36000;33000;45000;64000;50000;30000;33000;36000;35000;31000;27000;22000;24000;100000;101000;128000;115000;110000;97000;86000;88000;105000;78000;50000;0;1400;0;12000;18000;24000;27000;25800;27000;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -203;'724;Spain;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;300;6700;500;100;100;200;200;400;400;400;400;400;400;700;2600;1200;600;600;;;;;;;;;;;;;14239;13223;21000;23000;13600;15000;15000;7000;13067;12000;11000;20000;32000;34000;47000;48240;47500;30804;36018;44037;52552;42150;41190;39232;37626;;;;;;; -203;'724;Spain;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;50;761;50;6;7;9;9;72;72;72;72;72;72;208;808;270;180;182;;;;;;;;;;;;;5254;7323;8284;12923;6951;6298;6720;2740;6616;5517;4478;9403;13679;15452;22468;26828;30094;14438;23249;26565;28693;26754;21973;19183;18864;;;;;;; -203;'724;Spain;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12570;2033;11000;200;200;0;0;0;5;3000;0;0;0;4;0;0;0;0;2;3549;1160;0;0;0;0;;;;;;; -203;'724;Spain;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6729;936;2049;161;161;0;0;3;11;1164;0;31;0;2;0;0;0;0;1;1803;569;0;0;0;0;;;;;;; -203;'724;Spain;1656;Chemical wood pulp;5510;Production;t;55400;64600;92600;111800;131300;163300;196200;224900;329700;383800;412000;481000;530000;666000;648000;738000;842000;845000;829000;965000;991000;1010000;1056000;1108000;1120000;1203000;1279000;1318000;1378000;1260000;1334000;1325000;1157000;1233000;1367000;1295000;1432000;1494900;1568000;1575000;1571000;1575000;1776000;1872700;1850000;1922000;1955000;1882900;1624400;1756114;1857130;1868500;1817559;1748000;1526200;1320921;1260650;1250000;1203278;1231384;1236930;1017145;1017145 -203;'724;Spain;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;239900;276800;282400;247300;328600;374100;333300;273800;205700;218700;247600;259200;272400;237000;303000;258000;286000;315600;434300;417900;404000;304200;413600;386700;469958;391200;381000;468800;464000;534500;686000;541000;625427;686000;749000;718000;779000;816419;846114;875230;879250;864103;1129060;900174;930324;1060699;946910;1058640;1072236;1039125;1044249;1006125;1011676;1050631;1125521;982867 -203;'724;Spain;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;33299;40968;49016;46618;64216;80968;107307;116920;83427;84500;89470;110682;143756;125778;120750;98173;132121;128342;175500;241886;234000;182030;301877;282730;253090;94531;186288;395788;244992;261795;268011;242775;383878;308642;327552;344724;404870;438612;482835;549055;654577;483486;632486;711048;627882;703418;631583;686861;628591;636951.46;805445;654367;485546;732670;1007761;733111 -203;'724;Spain;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;29400;19400;21100;14300;15100;46400;51200;52400;61800;73000;106000;113800;176000;174000;150000;308000;279000;331200;429400;507400;537400;544900;515900;585000;559661;581000;688000;611200;625000;716200;662000;591000;738896;734000;664000;783000;909000;897293;970493;1087122;873915;837953;857773;1105368;1140102;1137691;1008450;636397;886211;900122;887850;877682;893828;995681;745117;963189 -203;'724;Spain;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;4210;3094;3722;2697;2964;10805;21845;16766;19701;21130;27737;39914;74773;70395;55756;98192;114309;105219;136415;277104;293545;301981;338774;384281;280686;129839;285688;491268;276048;273595;259505;244791;422958;351218;272357;351827;462814;504022;549133;671581;669054;490070;739615;926302;846173;905274;744033;365704;411313;485628.98;565973;441607;359396;569923;482255;561043 -203;'724;Spain;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;107500;83900;89000;91200;105000;143600;171600;169000;214000;210000;283000;220000;245000;279000;270000;276000;319000;282000;299000;299000;303000;283000;311000;294000;281000;287000;259000;265000;274000;233000;206000;200000;194000;208000;207600;213000;216000;212000;212000;239000;252013;249000;249000;206627;200000;171685;185607;198034;190196;187538;0;0;21;-50;0;0;0;0;0;0 -203;'724;Spain;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;15500;18900;11800;17800;16500;18000;14000;15800;14200;9700;5000;11500;6300;12000;26000;10000;9000;9800;10900;14000;14000;9800;9300;7000;6930;12600;11000;8000;8000;12100;13000;9000;9742;11000;14000;17000;19000;15000;8000;8000;18000;9015;3840;2916;1861;1358;5340;2639;4169;5986;5043;2433;3547;6598;13625;5736 -203;'724;Spain;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;1915;2152;1714;2808;2636;3324;3657;6490;5015;3341;1417;3905;2703;4940;7985;2730;3088;3322;3700;6585;6585;4600;5265;4000;3243;4450;5218;6446;5000;5218;5193;3839;5472;4021;5525;7820;9360;7307;4120;4497;15957;6918;2949;2449;1260;1413;3918;1472;2443;3930.19;3292;1656;1781;4235;8755;3839 -203;'724;Spain;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;3000;400;400;400;200;4800;11000;11400;11000;21500;26800;22900;37000;27000;12000;13000;9000;6000;6000;10700;10700;10700;10700;10700;2697;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;0;280;0;0;0;24;1531;3195;12201 -203;'724;Spain;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;376;51;51;51;33;786;3308;2971;2530;4416;5495;6444;12209;7620;3490;3252;3051;1658;1670;5481;5481;5481;5481;5481;1395;0;0;0;0;0;4;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;162;0;0;0;14;905;2689;6929 -203;'724;Spain;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;42900;34400;79600;93900;171000;195500;224000;234000;287000;337000;408000;471000;537000;565000;540000;621000;686000;694000;738000;786000;822000;888000;973000;1035000;1089000;999000;1067000;1049000;922000;1027000;1167000;1101000;1224000;1287300;1355000;1359000;1359000;1363000;1537000;1620687;1601000;1673000;1748373;1682900;1452715;1570507;1659096;1678304;1630021;1748000;1526200;1320900;1260700;1250000;1203278;1231384;1236930;1017145;1017145 -203;'724;Spain;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;114500;139900;161100;135300;213200;241600;211000;193700;154700;163100;193300;202400;229600;193000;252000;218000;239000;264100;386000;366500;352600;271200;372000;355000;422398;345800;337000;412000;407500;474000;614000;484000;553689;608000;678000;634000;702000;749000;778000;778000;771620;769490;1038139;839283;873677;957595;937350;1052664;1067056;1031940;1037954;1000776;1002661;1042405;1109051;973308 -203;'724;Spain;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;15953;21126;28039;25480;41359;52171;68328;82718;63607;63562;69333;86024;120606;102992;100090;83176;111062;106029;154800;212817;204931;163500;266713;256000;224497;81949;163918;349175;203992;231331;232044;215354;336516;268821;291742;297409;358682;394691;435421;475266;561207;421355;568250;665425;593555;643277;621841;680955;624813;632032.75;800767;649929;480427;726275;995384;725331 -203;'724;Spain;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;17200;15100;16100;13200;14200;41100;39800;40900;50700;51400;79100;90600;131500;133000;133000;293000;268000;323800;422000;495300;525300;534000;504300;565800;538426;581000;685000;611200;625000;716200;661000;591000;738050;731000;663000;780000;909000;897000;970000;1087000;873742;837563;857651;1105331;1140029;1137651;1008410;636238;885818;900028;887705;877598;893726;994089;741570;950663 -203;'724;Spain;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;2665;2455;2892;2504;2789;9824;18312;13743;17141;16684;22222;33367;59127;57567;50512;94426;110744;103016;134200;271078;287519;296400;332760;373800;270125;129839;284118;491268;276048;273595;259329;244653;422215;349830;271886;350407;462436;503649;548778;671305;668605;489212;739364;926210;845980;905182;743941;365335;410902;485391.77;565537;441353;359169;568817;478979;553524 -203;'724;Spain;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -203;'724;Spain;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1199;1252;2916;5468;1628;2845;3823 -203;'724;Spain;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;988.52;1386;2782;3338;2160;3622;3941 -203;'724;Spain;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94;145;84;78;61;352;325 -203;'724;Spain;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;237.21;436;254;213;201;587;590 -203;'724;Spain;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;;;;;;; -203;'724;Spain;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;35600;31500;27200;25600;19000;23000;22600;19000;7900;10400;4100;5900;4900;4000;2000;1000;1000;1600;1400;700;700;700;700;700;889;0;1400;1600;1500;400;0;0;17;1000;1000;1000;1000;419;114;29230;20840;489;434;5;7;138;140;0;30;;;;;;; -203;'724;Spain;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;4282;4014;4262;4428;3341;4415;6363;7506;2889;3915;1218;2309;2304;2222;737;536;609;709;600;430;430;430;430;430;367;0;695;1108;1000;253;60;55;14;823;396;248;729;218;79;22122;18142;464;653;9;10;110;110;0;51;;;;;;; -203;'724;Spain;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;;;;;;; -203;'724;Spain;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;358;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -203;'724;Spain;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;4300;4500;39900;25400;26000;15100;16700;19000;33000;33000;46000;20000;22000;26000;10000;13000;25000;23000;17000;19000;19000;15000;4000;12000;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;;;;;;; -203;'724;Spain;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;74300;86500;82300;68600;79900;91500;85700;45300;28900;35500;45200;39400;31600;28000;23000;29000;37000;40100;36000;36700;36700;22500;31600;24000;39741;32800;31600;47200;47000;48000;59000;48000;61979;66000;56000;66000;57000;52000;60000;60000;68790;85109;86647;57970;54779;101608;4080;3337;981;;;;;;; -203;'724;Spain;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;11149;13676;15001;13902;16880;21058;28959;20206;11916;13682;17502;18444;18143;15624;11938;11731;17362;18282;16400;22054;22054;13500;29469;22300;24983;8132;16457;39059;35000;24993;30714;23527;41876;34977;29889;39247;36099;36396;43215;47170;59271;54749;60634;43165;33057;58618;5714;4434;1284;;;;;;; -203;'724;Spain;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;9200;3900;4600;700;700;500;400;100;100;100;100;300;7500;14000;5000;2000;2000;1400;1400;1400;1400;200;900;8500;18538;0;3000;0;0;0;1000;0;846;2000;1000;3000;0;293;493;120;173;390;122;37;73;40;40;159;113;;;;;;; -203;'724;Spain;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;1169;588;779;142;142;195;225;52;30;30;20;103;3437;5208;1754;514;514;545;545;545;545;100;533;5000;9166;0;1570;0;0;0;172;138;743;1030;471;1420;378;373;355;275;449;858;251;92;193;92;92;369;249;;;;;;; -203;'724;Spain;1667;Dissolving wood pulp;5510;Production;t;52700;59400;61700;59700;65900;55900;30800;32000;45900;46000;45000;51000;53000;53000;45000;39000;41000;53000;53000;53000;48000;36000;37000;53000;45000;50000;53000;53000;64000;63000;46000;25000;25000;36000;36000;36000;0;48400;49000;49000;0;0;0;0;66000;66000;29300;31200;31100;27790;29100;22000;21500;25200;24700;23600;60000;60000;60000;60000;0;0;0 -203;'724;Spain;1667;Dissolving wood pulp;5610;Import quantity;t;8800;22500;5000;2800;800;200;100;0;0;0;0;0;0;0;32300;30200;37800;14000;25600;17500;27000;18000;21000;15000;23200;23200;7100;7100;0;0;0;11234;16175;14000;12300;11700;19000;14000;10000;10976;10976;1000;2000;4000;7000;8000;8000;3620;4990;4062;2122;8589;10944;14970;24578;17378;13553;15768;17601;17304;16838;20161;13756 -203;'724;Spain;1667;Dissolving wood pulp;5622;Import value;1000 USD;1026;3584;829;367;110;29;17;0;0;0;0;0;0;0;17252;15449;18765;5886;13102;10224;18352;12669;11794;7990;10351;10351;4783;4783;0;0;0;8366;11403;9675;11286;10938;14468;9925;7203;8434;8179;692;2405;5084;7820;8666;9459;4689;6345;5121;4340;11499;12348;16270;22385;17549;14826.04;16784;17910;16348;17768;27682;20323 -203;'724;Spain;1667;Dissolving wood pulp;5910;Export quantity;t;;;;300;0;0;0;0;0;0;0;0;0;0;400;600;100;9300;400;6600;9000;10000;12000;15000;9000;9000;12400;12400;0;0;0;10936;3791;6000;16700;15800;11000;24000;25000;29119;29119;23000;29000;29000;27000;24000;22000;25799;35639;31990;30964;31473;19011;1810;1132;2816;33989;24006;26628;6364;84;1048;31 -203;'724;Spain;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;33;0;0;0;0;0;0;0;0;0;0;174;284;19;1818;192;3754;4191;5190;5084;6418;3421;3421;7040;7040;0;0;0;6685;2221;3454;16600;12330;6694;12904;13079;19367;18780;11447;15290;20055;19249;16666;16951;33484;26773;48559;60531;32997;16914;1095;736;2664;29693.24;22058;20190;3426;58;1632;70 -203;'724;Spain;1668;Pulp from fibres other than wood;5510;Production;t;64900;92300;94300;105100;106900;155700;157800;175000;135100;146000;171000;176000;164000;206000;148000;244000;153000;120000;123000;120000;122000;114000;100000;86000;86000;86000;115000;139000;130000;122000;108000;99000;97000;11000;10900;10600;35000;12000;24050;12000;12000;12000;12000;12000;750000;850000;900000;900000;900000;900000;900000;900000;1113000;809790;828000;414157;196176;122000;0;0;0;0;0 -203;'724;Spain;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;100;1100;400;400;400;600;400;900;1000;400;1000;1000;1700;1700;1300;1300;1300;1300;1300;1797;1143;700;2700;4000;4900;3000;1000;6049;11900;10000;13000;10000;8000;6000;6000;5760;2973;2550;3789;4336;2506;3170;6669;5103;7785;8333;8175;6126;6342;6940;5568 -203;'724;Spain;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;14;329;261;261;261;213;134;502;533;202;347;442;571;571;1754;1754;1754;1754;1754;2134;1456;620;2392;5751;5983;3328;1281;7901;13656;10492;11912;7814;7019;5292;5777;7221;4106;2835;3926;5428;3824;5639;9897;7447;11108.34;13362;13843;7634;9247;13718;12192 -203;'724;Spain;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;9700;11900;12000;8900;6800;2000;3000;3000;4000;4000;4300;4300;2000;2000;2000;2000;2000;8471;8394;11000;11000;11800;13800;15000;14000;19192;20800;19000;21000;21000;18000;20000;19000;20352;16016;17075;20577;15632;14942;17250;16506;16863;19699;16911;17664;22011;26084;18670;90 -203;'724;Spain;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;5220;5763;5381;4438;3952;1200;1800;2735;3331;5081;5171;5171;2192;2192;2192;2192;2192;16123;15177;20496;23864;23631;25759;27998;24117;31222;35791;34545;44538;50770;39844;44762;47198;56444;41487;45107;69607;45844;41391;46038;36778;41170;55537.63;52978;47253;51770;67137;38084;85 -203;'724;Spain;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;971;13000;8000;7000;1000;2000;364;1159;470;129;1928;11324;2437;2995;3690;2633;321;276;1003;951;855;726;2146;771 -203;'724;Spain;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;27;512;14431;3009;3397;648;613;756;825;359;134;784;4015;1950;2311;2778;1908;186;166.16;432;623;368;567;820;676 -203;'724;Spain;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;6000;16006;36000;0;0;9000;15671;1000;2000;1;1;0;263;1553;741;500;385;145;145;134;72;91;56;36;134 -203;'724;Spain;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;1914;6393;40660;0;10;4022;6320;2079;3940;5;4;0;128;648;537;574;644;386;380.84;325;173;205;112;60;203 -203;'724;Spain;1669;Recovered paper;5510;Production;t;113000;93000;164000;175000;212000;261000;306000;376000;326000;454000;570000;602000;722000;711000;664000;704000;900000;874000;1092000;974000;975000;1131000;1214000;1225000;1290000;1447000;1447000;1605000;1604000;1691000;1734000;1777000;1736000;1823000;2117000;2117000;2117000;2635000;2963000;3319000;3496000;3617000;3643000;3927000;4323000;5371000;4921500;4999300;4625200;4637100;4722500;4551700;4266300;4439300;4567500;4710300;4560100;4451800;4417500;4384700;4384700;4346900;4249000 -203;'724;Spain;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;55000;39000;42000;43000;94593;104796;122568;148193;175697;181969;229340;235615;258000;245000;370000;394900;421000;452100;531000;534000;530500;506300;522841;501575;630000;128427;694000;730500;824000;654000;675158;772000;864000;914000;822000;809000;1115000;1115000;1172950;961857;1277132;1154169;1371365;1544199;1505040;1627547;1638323;1521606;1339254;1454094;1467749;2033970;1490397;1484580 -203;'724;Spain;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;4394;3118;3528;4047;16761;11477;13985;15390;18105;28607;41311;28532;28004;23011;46367;47143;48826;60169;79670;87576;70600;66000;67540;48941;80094;132405;73890;59115;65299;50514;87404;63618;83111;98475;86658;85136;131665;143713;183221;178869;220196;322847;225670;286910;235969;227663;244491;254936.04;185281;178926;141618;336258;282998;186521 -203;'724;Spain;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;2000;5000;6000;15000;10217;8934;15205;25256;12518;14402;18278;17770;33600;18000;16000;16000;15000;12800;15000;18000;12400;18600;31093;35920;32000;38000;49000;38500;54000;59000;113097;71000;107000;113000;275000;512000;383000;639000;729404;1156960;664796;782817;709901;665860;891580;1013825;1152768;1061708;897470;683610;722012;703995;777613;905982 -203;'724;Spain;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;111;192;298;1198;1955;1139;1393;2370;1273;3227;3452;2437;3576;1674;1640;1601;1751;1640;3346;2304;1600;2500;4107;4056;4822;10774;7900;6503;8531;11253;26884;16569;20800;22132;43163;60946;50648;92300;154956;129524;137551;181531;129689;117396;145862;161069;183263;203367.31;158413;91591;86238;183966;173469;136318 -203;'724;Spain;1876;Paper and paperboard;5510;Production;t;210700;371000;513300;554700;657900;745400;916000;1133000;1123700;1280900;1505000;1679000;1854000;2049000;1853000;2063000;2160000;2175000;2534000;2566000;2589000;2685000;2754000;2952000;2913000;3152000;3251000;3408000;3446000;3446000;3576000;3448000;3348000;3503000;3684000;3768000;3968000;3544600;4435300;4765000;5131000;5365000;5437000;5526000;5697000;6898200;6713300;6414300;5700099;6193200;6202700;6176801;6685400;6035800;6195200;6218500;6217800;6157000;6436589;6267900;6772900;6468600;6044600 -203;'724;Spain;1876;Paper and paperboard;5610;Import quantity;t;27000;38500;57300;86200;112900;147700;133100;131600;159700;200100;175000;245700;261500;365000;251800;273800;289800;247900;292000;293500;390300;459000;402000;375000;451000;656000;816100;798100;1135800;1421100;1722300;2043494;2075900;2167800;2183600;2214000;2770600;3191000;3087931;3475509;3418190;3418000;3610000;3418921;3746000;4812000;5878113;3996950;3877992;3180828;3042121;2777747;2822384;3000150;3074213;3129704;3138628;3261666;2933450;2733713;2897470;2996886;2557317 -203;'724;Spain;1876;Paper and paperboard;5622;Import value;1000 USD;6441;8732;12925;18045;24021;32257;29539;31684;35854;45584;41794;63633;82679;159767;134805;134404;139009;128235;180636;248280;249465;284694;199713;186264;264842;396100;626355;627618;921000;1236575;1480000;1668894;1378580;1503446;2178914;2009484;2123599;2489521;2227047;2402670;2510587;2334442;2800391;2646728;3200812;3337802;3857437;4035840;3083372;2862089;3215776;2775990;2855998;2927028;2535888;2516871;2638960.9;2973429;2619718;2004104;2746125;3355868;2767244 -203;'724;Spain;1876;Paper and paperboard;5910;Export quantity;t;500;500;600;600;5200;14200;5000;13400;26000;28900;48000;66800;74200;112800;101200;129200;153700;226600;198600;159600;304000;328000;364000;348000;428000;437300;440300;426100;471100;516900;566100;612622;733800;579700;683800;600000;1040700;1274000;1279000;1478965;2058816;1799000;1858000;1605000;2211000;2719000;2737164;2860458;2835786;2952012;2701167;2822101;2907712;2767650;2750836;2688337;2609712;2493956;2610237;2519613;2765116;2291346;2321956 -203;'724;Spain;1876;Paper and paperboard;5922;Export value;1000 USD;247;321;364;248;1776;4293;1923;4303;7342;9684;14215;23130;32219;67310;63623;74282;96781;137766;142392;181382;199892;193979;164913;167658;246669;256800;335241;326711;368600;400408;456500;597530;519862;689533;1027390;740254;1060880;1090144;1021782;1275171;1503332;1333050;1558869;1334239;2044796;2459122;2594223;3176750;2353769;2394126;2825146;2521791;2704075;2602632;2292819;2216629;2324452.91;2538150;2307660;1847830;2792874;3025318;2551472 -203;'724;Spain;2042;Graphic papers;5510;Production;t;210700;198000;203600;204800;240300;328300;321900;398500;424200;437800;532000;571000;613000;728000;624000;698000;708000;695000;839000;825000;824000;796000;807000;861000;846000;919000;961000;991000;1010000;1005000;1002000;970000;906000;973000;1006000;981000;1044000;1076300;1180300;1307000;1412000;1474000;1490000;1582000;1719000;1973200;2021000;1974000;1677500;1632200;1582000;1545100;1498000;1409700;1386700;1377100;1229500;1030000;956189;638800;740200;746600;746600 -203;'724;Spain;2042;Graphic papers;5610;Import quantity;t;20500;25400;36700;47500;61100;67700;46100;44600;62700;90100;62000;89700;105500;156000;154800;137900;128700;107800;130500;139600;195300;251000;202000;188000;245500;357000;494000;527000;700000;903800;1044000;1181797;1242000;1299800;1290800;1282000;1527300;1740000;1710000;1878676;1921815;1667000;1791000;1619000;2132000;2316000;2256591;1906040;1625877;1559448;1450696;1292589;1234014;1301930;1279867;1218661;1182795;1199134;1033019;847722;877703;880338;684798 -203;'724;Spain;2042;Graphic papers;5622;Import value;1000 USD;3325;4253;6200;7845;9834;10622;7474;7203;10038;14963;11558;18646;26049;61973;76533;64745;65341;58205;75906;99657;134774;155381;97731;86926;143942;224100;410514;438000;567500;805575;930000;993453;875916;978799;1393279;1232692;1202447;1399044;1254956;1299881;1545039;1210319;1460206;1336530;1784651;1800784;2135627;1989510;1569547;1405850;1510323;1249275;1259171;1244920;1021980;982356;963108.95;1039138;930497;647851;826823;1058601;889904 -203;'724;Spain;2042;Graphic papers;5910;Export quantity;t;300;400;400;200;3600;4200;2000;6400;13000;15900;36000;41800;39200;71800;65200;76800;90200;125500;41400;46100;97000;79000;86000;86000;118200;127300;156000;156000;172300;194200;237200;238042;300700;341000;398200;225000;387800;517000;551000;734605;986778;829000;820000;558000;1031000;1243000;1279143;1282576;1289282;1172348;1125263;1199232;1258597;1197110;1200683;1259209;1148144;1023643;928057;780659;900991;824565;693162 -203;'724;Spain;2042;Graphic papers;5922;Export value;1000 USD;64;253;253;51;1036;1086;528;1970;3867;5475;10760;15739;19098;44097;39195;40838;52740;74163;41447;52323;90575;76908;58701;58701;97469;105400;160711;160711;176600;193367;238500;298867;297879;344226;502747;356627;514189;481567;453280;638458;831038;640343;697320;473330;890039;1062369;1242874;1304784;1127240;1048560;1140955;1039561;1150286;1063230;922944;944811;923780.91;959886;799822;560274;859624;1057613;788761 -203;'724;Spain;1671;Newsprint;5510;Production;t;80300;69300;66300;59700;72500;94600;109900;135000;140600;115000;109000;126000;134000;115000;103000;107000;106000;110000;109000;108000;108000;93000;115000;124000;134000;138000;135000;175000;165000;173000;149000;120000;94000;99000;148000;137000;143000;191700;241700;288000;316000;303000;306000;325000;353000;380000;389000;379953;322883;314528;280200;264949;242000;227307;223951;222400;198563;166341;154420;103163;119540;120574;120574 -203;'724;Spain;1671;Newsprint;5610;Import quantity;t;16800;20000;31000;37800;53800;59100;36900;37100;53100;78800;53900;67500;76900;108600;101800;80600;65900;47700;58000;57600;101300;140000;117000;132000;134600;145000;118000;127000;216000;261000;312200;353706;363000;380000;360300;364000;397000;432000;412000;457142;371000;302000;324000;388000;496000;421000;470515;386290;280714;270482;183804;159051;157995;162460;139342;128722;161365;152403;134617;93835;81176;79575;70174 -203;'724;Spain;1671;Newsprint;5622;Import value;1000 USD;2549;2996;4390;5382;7595;8292;5075;5085;7392;11860;8677;11603;15416;36790;44165;33697;28465;20036;26461;32279;61562;72900;48180;54400;61213;66000;70400;76000;129500;220575;264000;213485;174509;183284;269266;292655;222834;254384;227071;222702;217899;159551;187976;234966;306162;274966;347137;292160;203226;162550;140345;115639;123524;125800;87152;84815;107414.92;106233;92422;56350;59670;77085;68147 -203;'724;Spain;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;100;;100;900;;;100;1800;3200;1000;;;;5500;6200;3200;3200;5900;24000;24300;20191;16700;14000;12200;27000;48800;51000;39000;61479;55000;64000;68000;92000;164000;315000;325786;298695;353263;288468;272987;317103;357318;325340;343937;317403;294370;191729;174857;166107;142056;117332;142497 -203;'724;Spain;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;26;;75;573;;;50;1320;2665;260;;;;2161;2400;1868;1868;3500;14367;14500;11128;11135;6759;9705;18609;22658;29478;23155;35729;33943;35127;39194;54271;95358;201575;232177;218004;227272;155694;182588;180090;219041;210453;182174;153930;142254.29;109839;88664;63650;83273;94019;94098 -203;'724;Spain;1674;Printing and writing papers;5510;Production;t;130400;128700;137300;145100;167800;233700;212000;263500;283600;322800;423000;445000;479000;613000;521000;591000;602000;585000;730000;717000;716000;703000;692000;737000;712000;781000;826000;816000;845000;832000;853000;850000;812000;874000;858000;844000;901000;884600;938600;1019000;1096000;1171000;1184000;1257000;1366000;1593200;1632000;1594047;1354617;1317672;1301800;1280151;1256000;1182393;1162749;1154700;1030937;863659;801769;535637;620660;626026;626026 -203;'724;Spain;1674;Printing and writing papers;5610;Import quantity;t;3700;5400;5700;9700;7300;8600;9200;7500;9600;11300;8100;22200;28600;47400;53000;57300;62800;60100;72500;82000;94000;111000;85000;56000;110900;212000;376000;400000;484000;642800;731800;828091;879000;919800;930500;918000;1130300;1308000;1298000;1421534;1550815;1365000;1467000;1231000;1636000;1895000;1786076;1519750;1345163;1288966;1266892;1133538;1076019;1139470;1140525;1089939;1021430;1046731;898402;753887;796527;800763;614624 -203;'724;Spain;1674;Printing and writing papers;5622;Import value;1000 USD;776;1257;1810;2463;2239;2330;2399;2118;2646;3103;2881;7043;10633;25183;32368;31048;36876;38169;49445;67378;73212;82481;49551;32526;82729;158100;340114;362000;438000;585000;666000;779968;701407;795515;1124013;940037;979613;1144660;1027885;1077179;1327140;1050768;1272230;1101564;1478489;1525818;1788490;1697350;1366321;1243300;1369978;1133636;1135647;1119120;934828;897541;855694.03;932905;838075;591501;767153;981516;821757 -203;'724;Spain;1674;Printing and writing papers;5910;Export quantity;t;300;400;400;200;3600;4200;2000;6400;13000;15900;36000;41700;39200;71700;64300;76800;90200;125400;39600;42900;96000;79000;86000;86000;112700;121100;152800;152800;166400;170200;212900;217851;284000;327000;386000;198000;339000;466000;512000;673126;931778;765000;752000;466000;867000;928000;953357;983881;936019;883880;852276;882129;901279;871770;856746;941806;853774;831914;753200;614552;758935;707233;550665 -203;'724;Spain;1674;Printing and writing papers;5922;Export value;1000 USD;64;253;253;51;1036;1086;528;1970;3867;5475;10760;15713;19098;44022;38622;40838;52740;74113;40127;49658;90315;76908;58701;58701;95308;103000;158843;158843;173100;179000;224000;287739;286744;337467;493042;338018;491531;452089;430125;602729;797095;605216;658126;419059;794681;860794;1010697;1086780;899968;892866;958367;859471;931245;852777;740770;790881;781526.62;850047;711158;496624;776351;963594;694663 -203;'724;Spain;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;617000;627000;666000;723000;898200;920000;898605;763632;768809;759335;766279;788000;745239;732844;727770;649766;544338;505334;337595;391180;394562;394562 -203;'724;Spain;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;171000;206000;239372;583000;245000;273000;283000;294000;276000;267547;235370;245668;218359;235665;214049;204517;229130;185292;194444;202888;187256;162818;139858;135651;134646;98820 -203;'724;Spain;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117114;130730;132662;473683;150385;184463;202237;213713;211138;215181;206472;203544;150350;197226;171255;164377;178354;121452;130140;132991.41;144643;125058;88370;102759;137492;114550 -203;'724;Spain;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8000;6000;9826;273000;35000;36000;54000;21000;36000;24992;44197;47739;31400;34626;35734;42640;44170;48698;49050;41539;35461;34430;21972;22522;22344;16547 -203;'724;Spain;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7211;5229;7714;237244;25717;28494;42411;18990;28631;25129;44358;40832;28534;33649;28104;31578;41671;28766;28689;24476.42;25505;24206;13873;17554;16852;15120 -203;'724;Spain;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;427500;427400;495000;586000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -203;'724;Spain;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;262000;288000;306815;306815;380000;417000;266000;406000;428000;476058;385940;377971;389877;399965;348632;334938;322870;339192;285298;259006;273532;253008;228470;255248;260322;202078 -203;'724;Spain;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;247203;242434;271211;262988;325014;404277;285546;412286;429567;545882;493065;434715;425784;481910;391062;382012;360566;301460;276253;253571.45;298064;274835;210395;284044;355124;313114 -203;'724;Spain;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;133000;134000;188778;188778;241000;235000;110000;259000;259000;262473;248985;269750;238057;249953;253998;273422;283430;281769;244154;264368;223210;205652;162826;256784;231519;188333 -203;'724;Spain;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;152589;124681;188334;182624;203111;224334;104202;246318;252981;301305;303445;286426;283659;336469;289188;312045;309768;273585;260649;290350.68;281123;244511;169824;309396;362288;286186 -203;'724;Spain;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;457100;511200;524000;510000;554000;557000;591000;643000;695000;712000;695442;590985;548863;542465;513872;468000;437154;429905;426930;381171;319321;296435;198042;229480;231464;231464 -203;'724;Spain;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;875000;804000;875347;661000;740000;777000;682000;936000;1191000;1042471;898440;721524;680730;631262;570857;536564;587470;616041;610197;559536;585943;482576;385559;405628;405795;313726 -203;'724;Spain;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;780343;654721;673306;590469;575369;683490;613781;852490;885113;1027427;997813;728062;667166;690842;571319;589258;580200;511916;491148;469131.17;490198;438182;292736;380350;488900;394093 -203;'724;Spain;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;325000;372000;474522;470000;489000;481000;302000;587000;633000;665892;690699;618530;614423;567697;592397;585217;544170;526279;648602;547867;573243;513118;429754;479629;453370;345785 -203;'724;Spain;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;292289;300215;406681;377227;376388;405298;272446;529373;579182;684263;738977;572710;580673;588249;542179;587622;501338;438419;501543;466699.52;543419;442441;312927;449401;584454;393357 -203;'724;Spain;1675;Other paper and paperboard;5510;Production;t;0;173000;309700;349900;417600;417100;594100;734500;699500;843100;973000;1108000;1241000;1321000;1229000;1365000;1452000;1480000;1695000;1741000;1765000;1889000;1947000;2091000;2067000;2233000;2290000;2417000;2436000;2441000;2574000;2478000;2442000;2530000;2678000;2787000;2924000;2468300;3255000;3458000;3719000;3891000;3947000;3944000;3978000;4925000;4692300;4440300;4022599;4561000;4620700;4631701;5187400;4626100;4808500;4841400;4988300;5127000;5480400;5629100;6032700;5722000;5298000 -203;'724;Spain;1675;Other paper and paperboard;5610;Import quantity;t;6500;13100;20600;38700;51800;80000;87000;87000;97000;110000;113000;156000;156000;209000;97000;135900;161100;140100;161500;153900;195000;208000;200000;187000;205500;299000;322100;271100;435800;517300;678300;861697;833900;868000;892800;932000;1243300;1451000;1377931;1596833;1496375;1751000;1819000;1799921;1614000;2496000;3621522;2090910;2252115;1621380;1591425;1485158;1588370;1698220;1794346;1911043;1955833;2062532;1900431;1885991;2019767;2116548;1872519 -203;'724;Spain;1675;Other paper and paperboard;5622;Import value;1000 USD;3116;4479;6725;10200;14187;21635;22065;24481;25816;30621;30236;44987;56630;97794;58272;69659;73668;70030;104730;148623;114691;129313;101982;99338;120900;172000;215841;189618;353500;431000;550000;675441;502664;524647;785635;776792;921152;1090477;972091;1102789;965548;1124123;1340185;1310198;1416161;1537018;1721810;2046330;1513825;1456239;1705453;1526715;1596827;1682108;1513908;1534515;1675851.96;1934291;1689221;1356253;1919302;2297267;1877340 -203;'724;Spain;1675;Other paper and paperboard;5910;Export quantity;t;200;100;200;400;1600;10000;3000;7000;13000;13000;12000;25000;35000;41000;36000;52400;63500;101100;157200;113500;207000;249000;278000;262000;309800;310000;284300;270100;298800;322700;328900;374580;433100;238700;285600;375000;652900;757000;728000;744360;1072038;970000;1038000;1047000;1180000;1476000;1458021;1577882;1546504;1779664;1575904;1622869;1649115;1570540;1550153;1429128;1461568;1470313;1682180;1738954;1864125;1466781;1628794 -203;'724;Spain;1675;Other paper and paperboard;5922;Export value;1000 USD;183;68;111;197;740;3207;1395;2333;3475;4209;3455;7391;13121;23213;24428;33444;44041;63603;100945;129059;109317;117071;106212;108957;149200;151400;174530;166000;192000;207041;218000;298663;221983;345307;524643;383627;546691;608577;568502;636713;672294;692707;861549;860909;1154757;1396753;1351349;1871966;1226529;1345566;1684191;1482230;1553789;1539402;1369875;1271818;1400672;1578264;1507838;1287556;1933250;1967705;1762711 -203;'724;Spain;1676;Household and sanitary papers;5510;Production;t;;;;;8000;16000;9000;13000;19000;28000;27000;25000;31000;36000;56000;60000;64000;80000;118000;124000;137000;137000;153000;182000;193000;201000;196000;219000;232000;232000;245000;260000;264000;293000;239000;284000;329000;393300;416000;433000;469000;486000;494000;511000;540000;607000;702800;727800;695700;713200;733800;731800;706600;679000;741300;723300;704100;719000;777400;802500;813200;848800;810000 -203;'724;Spain;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;3000;;;;;;;1000;2000;2000;5800;9600;8400;8400;18800;34800;49400;60000;75800;29000;41600;42000;56000;51000;50000;81907;136000;108000;101000;186000;105000;79000;80506;93330;66573;66573;48390;53994;51861;53600;43943;68991;72129;67646;50461;52533;54906;51854;53228 -203;'724;Spain;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;2000;;;;;;;1142;1411;1411;7900;13100;12951;12951;29000;54000;76000;90000;99470;33303;66448;70000;62066;56065;53469;89802;165955;109386;125037;136514;136388;115347;132103;91666;105741;100153;95229;76784;87690;98938;78932;103925;103026.14;101502;69462;60870;75365;100992;95118 -203;'724;Spain;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;7000;12000;12000;32000;31900;5900;5900;15200;11700;15200;16000;18200;2800;5700;6000;28600;28000;31000;40209;91000;40000;43000;44000;45000;66000;69488;94646;73493;45433;92647;80785;77082;73520;101406;74631;79968;70146;79332;95012;99020;102094;89194 -203;'724;Spain;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;6457;8417;8417;25600;25600;5172;5172;13500;14800;19000;20000;26406;3235;8388;10000;30828;33836;34533;47121;120190;55416;71047;63255;70730;102289;108140;148963;101720;64590;135069;110873;98551;100496;119550;85593;95814.08;94351;95691;105802;139506;187759;158449 -203;'724;Spain;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1709000;2416000;2586000;2781000;2920000;2958000;2927000;2922000;3613000;3213000;3029000;2658199;3056400;3044300;3013601;3628000;3575200;3638500;3639800;3759500;3873000;4194100;4364600;4684000;4395200;4081000 -203;'724;Spain;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1271000;1202931;1360465;1074375;1451000;1524000;1570921;1389000;2285000;3447016;1878590;2107962;1511259;1488314;1390661;1481436;1589960;1703348;1691150;1746264;1897184;1758816;1679427;1807891;1936436;1635066 -203;'724;Spain;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;840849;729722;816154;584968;852847;1032816;1119097;970512;1074629;1511763;1573299;1335228;1290175;1510285;1359315;1415777;1499777;1346982;1291999;1437511.13;1682703;1490414;1183527;1676905;2042701;1612394 -203;'724;Spain;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;632000;589000;594563;766038;847000;919000;941000;980000;1242000;1325563;1317002;1408387;1687880;1440156;1503225;1532281;1454690;1404260;1301195;1328256;1352735;1556497;1595481;1685029;1314312;1495832 -203;'724;Spain;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;391847;350456;381121;404599;505246;630003;637896;661027;815317;1065568;1123999;918823;1075878;1319322;1165422;1240847;1207434;1029310;951016;1059684.79;1211180;1154782;942664;1477626;1506621;1320427 -203;'724;Spain;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;94300;109800;122600;612500;590500;697500;729000;932000;919000;1024000;974000;1089000;1338000;1360000;1347000;1377000;1370000;1450000;1464000;1565000;1533000;1670000;1712000;1803000;1808000;1812000;1911000;1905000;1918000;1985000;2052000;2201000;2293000;;;;;;;;;;;;;;;;;;;;;;;;;; -203;'724;Spain;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;5700;11500;18100;34100;45600;70000;77000;72000;85000;96000;101000;143000;141000;196000;86000;128300;153200;133100;153500;146200;155000;112000;117000;103000;115400;181800;204700;204700;246000;288500;407900;541697;552800;776200;781600;618000;826300;;;;;;;;;;;;;;;;;;;;;;;;;; -203;'724;Spain;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;2150;3091;4640;7038;9789;15000;16000;15000;18000;21000;22000;35000;42000;78000;42000;56071;59697;56700;89430;126800;93955;50450;45382;42355;54000;83600;112600;112600;135500;162000;229000;295441;249150;463290;674629;400000;417544;;;;;;;;;;;;;;;;;;;;;;;;;; -203;'724;Spain;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;100;100;100;300;1100;7000;2000;5000;11000;7000;8000;19000;24000;25000;28000;34400;33800;54100;81000;58500;43000;72000;63000;83000;235800;222700;200800;186600;133000;126700;144400;144480;312900;189900;196000;200000;284000;;;;;;;;;;;;;;;;;;;;;;;;;; -203;'724;Spain;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;75;68;46;81;303;1300;400;900;2000;1300;1500;4000;6000;8000;11000;12172;12900;18000;30945;39059;20246;31152;22179;28958;101600;96000;117569;109039;78000;68241;85000;80088;131801;301735;361848;200000;158677;;;;;;;;;;;;;;;;;;;;;;;;;; -203;'724;Spain;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1265000;1788000;1919000;2123000;2252000;2333000;2360000;2357000;3044000;2711000;2518072;2144409;2592481;2556378;2525805;3041000;2833900;2897300;2879700;2963700;3026000;3346800;3516600;3694600;3411200;3097000 -203;'724;Spain;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;826000;770000;881213;714000;870000;888000;970000;963000;1036000;956950;1222240;1391601;790231;764865;783831;820790;884900;961754;957896;954459;986127;937307;917906;1012903;1037578;881662 -203;'724;Spain;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;370464;328357;402153;294384;382788;446790;480313;489910;578898;641129;700133;514956;513079;599692;536417;587420;610273;560337;544666;604597.97;726184;594089;462616;734322;849472;619262 -203;'724;Spain;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;165000;194000;190239;332000;415000;480000;509000;500000;734000;825159;824339;865180;943720;903191;896349;902798;842630;812178;667223;612309;610017;862674;903422;879329;639383;898016 -203;'724;Spain;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51858;55021;65091;149028;129438;170508;185778;178648;287100;421046;453507;314972;451469;528980;439857;469638;439633;375408;294990;299836.01;342196;391615;322973;543280;494397;462928 -203;'724;Spain;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;342000;484000;498000;502000;508000;455000;406000;407000;400000;356000;330665;281597;271890;293965;281377;339000;279000;274400;266800;299300;321000;321600;320000;322800;320800;320800 -203;'724;Spain;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;261000;248000;284419;139000;331000;376000;350000;136000;952000;2156000;414860;472365;416717;495791;388439;431153;444290;485555;454545;493452;560140;474989;431962;434134;490196;421265 -203;'724;Spain;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;314399;255709;265932;128429;280481;356176;405224;209893;215358;532357;577922;572360;512842;610179;558593;545185;570454;526233;463908;515521.48;566123;532319;433575;538120;631498;568235 -203;'724;Spain;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;224000;166000;188790;138000;160000;177000;122000;132000;146000;144362;125845;104697;341031;159498;182464;187200;197820;227661;261492;290169;286648;225140;208655;261045;213102;169230 -203;'724;Spain;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;162991;143501;169033;69051;186217;242560;224427;215843;247058;299511;298018;266794;261151;333908;325558;344656;376928;343525;347265;388135.04;416413;332079;271378;416175;446932;399696 -203;'724;Spain;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102000;144000;169000;0;0;0;0;100000;111000;99000;91955;78309;81258;81473;84151;101000;0;0;0;0;0;0;73000;114000;114000;114000 -203;'724;Spain;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;144000;143931;175375;175375;196000;202000;190000;221000;225000;240066;181050;198231;257695;193382;176293;173623;200080;202963;208511;221675;254197;263653;248817;262977;304673;234571 -203;'724;Spain;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;134733;124622;139054;134839;167242;203546;204495;235233;242397;284045;241198;217108;231687;270122;235638;245976;279987;231260;249478;278943.65;346345;324550;254811;345048;476228;363088 -203;'724;Spain;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;191000;169000;198038;198038;226000;219000;190000;224000;232000;228626;218263;239123;246165;231108;260185;282062;262790;253103;269324;296645;326677;308617;321221;376516;330605;301670 -203;'724;Spain;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;154464;125129;140629;136366;175364;201708;181570;218481;232518;282485;297401;274165;293557;373996;289642;337394;301965;252701;256857;304546.86;375165;344245;275078;412091;459560;374974 -203;'724;Spain;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;156000;160000;170000;161000;58000;58000;47000;88308;153884;110771;112484;122268;147000;462300;466800;493300;496500;526000;525700;455000;552600;549200;549200 -203;'724;Spain;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40000;41000;19458;46000;54000;58000;60921;69000;72000;94000;60440;45765;46616;34276;42098;55870;60690;53076;70198;76678;96720;82867;80742;97877;103989;97568 -203;'724;Spain;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21253;21034;9015;27316;22336;26304;29065;35476;37976;54232;54046;30804;32567;30292;28667;37196;39063;29152;33947;38448.03;44051;39456;32525;59415;85503;61809 -203;'724;Spain;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52000;60000;17496;98000;46000;43000;120000;124000;130000;127416;148555;199387;156964;146359;164227;160221;151450;111318;103156;129133;129393;160066;162183;168139;131222;126916 -203;'724;Spain;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22534;26805;6368;50154;14227;15227;46121;48055;48641;62526;75073;62892;69701;82438;110365;89159;88908;57676;51904;67166.88;77406;86843;73235;106080;105732;82829 -203;'724;Spain;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;315300;291300;462500;109000;90000;117600;217000;151000;291000;261000;199000;216000;50000;40000;230000;240000;258000;302000;330000;344000;341000;362000;382000;395000;396000;397000;418000;313000;260000;252000;387000;302000;302000;366000;423000;439000;469000;485000;495000;506000;516000;705000;776500;683500;668700;791400;842600;886300;852800;371900;428700;478300;524700;535000;508900;462000;535500;478000;407000 -203;'724;Spain;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;800;1600;2500;4600;6200;10000;10000;15000;12000;14000;12000;13000;15000;13000;8000;7600;7900;7000;8000;7700;40000;95000;81000;82000;84300;107600;109000;58000;171000;194000;221000;260000;205300;62800;69600;272000;361000;129000;125000;154461;286000;192000;194000;43000;120000;132000;94000;118990;77580;43548;54721;40503;55073;54660;47055;150902;137440;97702;91154;154031;156970;128258;184225 -203;'724;Spain;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;966;1388;2085;3162;4398;6635;6065;9481;7816;9621;8236;9987;14630;19794;14272;13588;13971;13330;15300;21823;20736;77721;55189;55572;59000;75300;90290;64067;189000;215000;245000;290000;154044;28054;44558;306792;441542;193563;188900;196833;214625;161890;182332;54587;309261;347042;77944;381365;72856;65911;99939;90616;93360;83393;87994;138591;135314.69;150086;129345;111856;167032;153574;169828 -203;'724;Spain;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;100;0;100;100;500;3000;1000;2000;2000;6000;4000;6000;11000;16000;8000;18000;29700;47000;76200;55000;164000;170000;203000;167000;42000;55400;77600;77600;150600;184300;169300;214100;102000;46000;83900;169000;340300;97000;108000;109588;215000;83000;76000;62000;155000;168000;62970;166234;64624;46351;43101;38859;39752;42330;44487;53302;53344;47432;46351;48461;80076;50375;43768 -203;'724;Spain;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;108;0;65;116;437;1907;995;1433;1475;2909;1955;3391;7121;15213;13428;21272;31141;45603;70000;90000;89071;79462;75616;71582;22000;29800;51789;51789;100500;124000;114000;198575;63776;40337;154407;173627;357186;182894;183513;208471;147505;132045;160499;159758;423000;479147;177641;599004;205986;205098;229800;205935;214391;231472;221015;235209;245173.13;272733;257365;239090;316118;273325;283835 -203;'724;Spain;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1381345.16;1549939;1598045;1303276;1915826;2090367;2065144 -203;'724;Spain;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1523775.86;1576353;1481730;1257763;1788027;1904305;2076597 -203;'724;Spain;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35110.51;41599;38431;35746;54302;61061;51847 -203;'724;Spain;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47903.07;53872;49031;38187;56008;58004;57620 -203;'724;Spain;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11830.4;14805;13949;15701;25234;28903;23616 -203;'724;Spain;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26568.96;24345;21763;17994;25437;27830;28322 -203;'724;Spain;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23280.11;26794;24482;20045;29068;32158;28231 -203;'724;Spain;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21334.11;29527;27268;20193;30571;30174;29298 -203;'724;Spain;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125728.68;140213;138008;107949;144503;175681;212387 -203;'724;Spain;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;186291.7;194373;194968;156303;238827;262887;289255 -203;'724;Spain;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75887.68;79314;91673;59049;103627;121707;87402 -203;'724;Spain;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32157.23;30951;28998;25626;38353;54890;40958 -203;'724;Spain;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;129518.31;153409;148980;124659;155579;160795;196766 -203;'724;Spain;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;142348.63;143053;137648;120811;158309;166700;202485 -203;'724;Spain;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41755;45592 -203;'724;Spain;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36836;35065 -203;'724;Spain;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1995;2831 -203;'724;Spain;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2968;5036 -203;'724;Spain;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1500;2695 -203;'724;Spain;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1379;2437 -203;'724;Spain;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1414;1652 -203;'724;Spain;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1893;1883 -203;'724;Spain;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;662;358 -203;'724;Spain;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;744;508 -203;'724;Spain;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;93 -203;'724;Spain;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;182 -203;'724;Spain;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;891074.67;998051;1042722;858095;1311772;1392984;1342515 -203;'724;Spain;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1006319.43;1057153;976833;843814;1191021;1257242;1360421 -203;'724;Spain;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6082.18;5926;4879;5836;7354;12552;17072 -203;'724;Spain;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17515.62;10389;11574;11843;10195;6162;7023 -203;'724;Spain;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117943.13;131427;133352;111942;138689;165587;157155 -203;'724;Spain;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91240.19;86562;82678;61179;95314;98420;118835 -203;'724;Spain;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1217828.74;1344004;1369396;1193321;1634844;1887719;1858736 -203;'724;Spain;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1485142.93;1681336;1793251;1743532;2199638;2553039;2332753 -203;'724;Spain;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28258.32;27547;25015;14829;21488;31071;28918 -203;'724;Spain;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14253.27;20689;20665;16101;26024;32563;16971 -203;'724;Spain;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;263660.33;293798;284803;218340;339672;375609;332649 -203;'724;Spain;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;437945.96;482958;561192;459650;649289;737465;601387 -203;'724;Spain;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;181470.21;226043;237116;223160;260756;309939;343440 -203;'724;Spain;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;203162.33;230868;246889;256470;292015;334746;359707 -203;'724;Spain;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;363411.87;386879;392993;343411;536298;604522;610609 -203;'724;Spain;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;538639.37;607125;627483;663953;808125;942153;875300 -203;'724;Spain;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;381028;409737;429469;393581;476630;566578;543120 -203;'724;Spain;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;291142;339696;337022;347358;424185;506112;479388 -38;'144;Sri Lanka;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;606384;624022;549389;453498;592276.38;540142;478216 -38;'144;Sri Lanka;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;158690;162538;159305;126076;168504.29;174760.04;146769 -38;'144;Sri Lanka;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;9956;10910;8973;10998;9319;14227;11736;7608;9569;11008;13464;9863;9863;12739;11719;6608;8907;12368;20423;37307;35729;36589;30336;25236;32149;26408;50304;81006;61209;74252;71448;88241;33353;91781;82298;85179;76472;81529;82561;80815;157101;107371;154084;201204;200629;130615;216931;318421;259682;378677;471493;378199;405547;502757;462444;493365;482463;466719;436073;358037;478807.38;423323;379555 -38;'144;Sri Lanka;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;560;639;417;559;640;753;1104;917;633;613;606;594;594;594;806;875;838;838;838;6464;6437;3852;4109;4109;1506;1270;1270;1270;1270;1516;1526;3817;2424;6447;6182;1785;6040;5387;5500;6546;9446;8753;14731;33702;34345;19789;36567;54603;31354;50048;66835;66157;63614;96507;59047;58596;74577;69209;57540;45265;62585.29;65938.04;46086 -38;'144;Sri Lanka;1861;Roundwood;5516;Production;m3;6026403;6083574;6126971;6180596;6235451;6154538;6165857;6210410;6188200;6252226;6319936;6447804;6421396;6465208;6484289;6513632;6549748;6655453;6720493;6835286;6835602;6870851;6959566;6946750;6974770;6966538;7021835;7055056;7090828;7007049;9862700;9657700;9895700;10248700;10412700;10401700;6759662;6635545;6591165;6595561;6537928;6472369;6407862;6344385;6281917;6281917;6129000;6054600;5981453;5909585;5833686;5759151;5685952;5614061;5543448;5461063;5405310;5295851;5218249;5142170;5067114;4993528;4921379 -38;'144;Sri Lanka;1861;Roundwood;5616;Import quantity;m3;5000;3300;3600;4100;2700;3200;2400;400;300;700;;;;;;;;;;;;;;;;;;;;3877;15362;7027;5879;11474;925;925;269;269;269;269;370;413;488;1182;877;1030;795;178;165;2667;425;1221;423;7386;448;874;2880;710;982;718;1035;396;763 -38;'144;Sri Lanka;1861;Roundwood;5622;Import value;1000 USD;835;755;449;510;344;426;322;54;131;108;;;;;;;;;;;;;;;;;;;;488;3545;1586;1458;1827;128;128;72;72;72;72;97;167;124;138;249;211;180;238;2966;877;302;296;203;816;594;245;663;171;312;104;325;42;206 -38;'144;Sri Lanka;1861;Roundwood;5916;Export quantity;m3;300;400;200;200;200;600;800;300;300;300;200;100;100;100;600;800;200;200;200;200;;;;;;;;;;3840;4046;1372;1211;323;378;378;2486;2486;2486;2486;2486;386;3226;15394;15394;2909;4163;3084;627;2230;2808;1926;722;474;301;578;67;254;59;1;56;830;2079 -38;'144;Sri Lanka;1861;Roundwood;5922;Export value;1000 USD;43;60;33;34;28;75;89;32;34;29;22;10;10;10;196;121;27;27;27;27;;;;;;;;;;246;256;120;152;24;39;39;364;364;364;364;364;70;1103;1106;1106;618;1569;1472;994;638;794;841;367;182;100;118;16;90;8;1;4;40;433 -38;'144;Sri Lanka;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26000;29000;29000;29000;29000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -38;'144;Sri Lanka;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;547;434;563;718;175;70;48 -38;'144;Sri Lanka;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;72;118;104;33;15;14 -38;'144;Sri Lanka;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;42;0;50;791;294 -38;'144;Sri Lanka;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;4;0;2;12;38 -38;'144;Sri Lanka;1863;Roundwood, non-coniferous;5516;Production;m3;6026403;6083574;6126971;6180596;6235451;6154538;6165857;6210410;6188200;6252226;6319936;6447804;6421396;6465208;6484289;6513632;6549748;6655453;6720493;6835286;6835602;6870851;6959566;6946750;6974770;6966538;7021835;7055056;7090828;7007049;9862700;9657700;9895700;10248700;10386700;10372700;6730662;6606545;6562165;6595561;6537928;6472369;6407862;6344385;6281917;6281917;6129000;6054600;5981453;5909585;5833686;5759151;5685952;5614061;5543448;5461063;5405310;5295851;5218249;5142170;5067114;4993528;4921379 -38;'144;Sri Lanka;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2333;276;419;0;860;326;715 -38;'144;Sri Lanka;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;463;99;194;0;292;27;192 -38;'144;Sri Lanka;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;254;17;1;6;39;1785 -38;'144;Sri Lanka;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;90;4;1;2;28;395 -38;'144;Sri Lanka;1864;Wood fuel;5516;Production;m3;5452403;5487574;5522971;5558596;5594451;5630538;5666857;5703410;5740200;5777226;5843936;5950804;5926396;5959208;5966289;6020632;6060748;6099453;6127493;6160886;6192202;6202451;6238166;6270350;6291370;6303138;6342835;6360056;6379928;6349349;9226000;9002000;9235000;9580000;9726000;9708000;6059962;6004545;5955165;5906561;5839928;5774369;5709862;5646385;5583917;5583917;5431000;5356600;5283453;5211585;5135686;5061151;4987952;4916061;4845448;4763063;4682310;4603151;4525549;4449470;4374414;4300828;4228679 -38;'144;Sri Lanka;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;135;135;135;135;135;135;135;135;135;135;135;135;135;135;40;40;24;24;24;135;135;135;4;;;;;;; -38;'144;Sri Lanka;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;17;17;17;17;17;17;17;17;17;17;17;17;17;17;9;9;5;5;5;19;19;19;9;;;;;;; -38;'144;Sri Lanka;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;145;145;100;100;100;100;100;100;100;100;100;100;100;100;934;13;13;181;181;1232;115;172;236;536;;;;;;;1384 -38;'144;Sri Lanka;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;4;4;4;4;4;4;4;4;4;4;4;4;133;528;528;50;50;53;11;15;83;106;;;;;;;151 -38;'144;Sri Lanka;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -38;'144;Sri Lanka;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;255 -38;'144;Sri Lanka;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21 -38;'144;Sri Lanka;1628;Wood fuel, non-coniferous;5516;Production;m3;5452403;5487574;5522971;5558596;5594451;5630538;5666857;5703410;5740200;5777226;5843936;5950804;5926396;5959208;5966289;6020632;6060748;6099453;6127493;6160886;6192202;6202451;6238166;6270350;6291370;6303138;6342835;6360056;6379928;6349349;9226000;9002000;9235000;9580000;9726000;9708000;6059962;6004545;5955165;5906561;5839928;5774369;5709862;5646385;5583917;5583917;5431000;5356600;5283453;5211585;5135686;5061151;4987952;4916061;4845448;4763063;4682310;4603151;4525549;4449470;4374414;4300828;4228679 -38;'144;Sri Lanka;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1129 -38;'144;Sri Lanka;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;130 -38;'144;Sri Lanka;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;135;135;135;135;135;135;135;135;135;135;135;135;135;135;40;40;24;24;24;135;135;135;4;;;;;;; -38;'144;Sri Lanka;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;17;17;17;17;17;17;17;17;17;17;17;17;17;17;9;9;5;5;5;19;19;19;9;;;;;;; -38;'144;Sri Lanka;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;145;145;100;100;100;100;100;100;100;100;100;100;100;100;934;13;13;181;181;1232;115;172;236;536;;;;;;; -38;'144;Sri Lanka;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;4;4;4;4;4;4;4;4;4;4;4;4;133;528;528;50;50;53;11;15;83;106;;;;;;; -38;'144;Sri Lanka;1865;Industrial roundwood;5516;Production;m3;574000;596000;604000;622000;641000;524000;499000;507000;448000;475000;476000;497000;495000;506000;518000;493000;489000;556000;593000;674400;643400;668400;721400;676400;683400;663400;679000;695000;710900;657700;636700;655700;660700;668700;686700;693700;699700;631000;636000;689000;698000;698000;698000;698000;698000;698000;698000;698000;698000;698000;698000;698000;698000;698000;698000;698000;723000;692700;692700;692700;692700;692700;692700 -38;'144;Sri Lanka;1865;Industrial roundwood;5616;Import quantity;m3;5000;3300;3600;4100;2700;3200;2400;400;300;700;;;;;;;;;;;;;;;;;;;;3877;15362;7002;5854;11339;790;790;134;134;134;134;235;278;353;1047;742;895;660;138;125;2643;401;1197;288;7251;313;870;2880;710;982;718;1035;396;763 -38;'144;Sri Lanka;1865;Industrial roundwood;5622;Import value;1000 USD;835;755;449;510;344;426;322;54;131;108;;;;;;;;;;;;;;;;;;;;488;3545;1585;1457;1810;111;111;55;55;55;55;80;150;107;121;232;194;163;229;2957;872;297;291;184;797;575;236;663;171;312;104;325;42;206 -38;'144;Sri Lanka;1865;Industrial roundwood;5916;Export quantity;m3;300;400;200;200;200;600;800;300;300;300;200;100;100;100;600;800;200;200;200;200;;;;;;;;;;3840;4046;1372;1066;178;278;278;2386;2386;2386;2386;2386;286;3126;15294;15294;2809;3229;3071;614;2049;2627;694;607;302;65;42;67;254;59;1;56;830;695 -38;'144;Sri Lanka;1865;Industrial roundwood;5922;Export value;1000 USD;43;60;33;34;28;75;89;32;34;29;22;10;10;10;196;121;27;27;27;27;;;;;;;;;;246;256;120;147;19;35;35;360;360;360;360;360;66;1099;1102;1102;614;1436;944;466;588;744;788;356;167;17;12;16;90;8;1;4;40;282 -38;'144;Sri Lanka;1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26000;29000;29000;29000;29000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -38;'144;Sri Lanka;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3062;14156;5033;5033;90;90;90;99;99;99;99;200;200;200;20;20;34;81;84;0;2299;2;920;190;6883;100;527;547;434;563;718;175;70;48 -38;'144;Sri Lanka;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;379;3382;1320;1320;14;14;14;8;8;8;8;33;33;33;1;1;4;5;4;0;337;0;56;12;420;20;80;200;72;118;104;33;15;14 -38;'144;Sri Lanka;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3402;3402;568;568;0;100;100;100;100;100;100;100;100;730;3781;3781;12;1924;2390;499;1612;176;176;176;108;2;0;0;0;42;0;50;791;39 -38;'144;Sri Lanka;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;194;194;36;36;0;16;16;16;16;16;16;16;16;39;200;200;1;102;127;26;85;9;9;9;6;0;0;0;0;4;0;2;12;17 -38;'144;Sri Lanka;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3062;14156;5033;5033;90;90;90;99;99;99;99;200;200;200;20;20;34;81;84;0;2299;2;920;190;6883;100;527;547;434;563;718;175;70;48 -38;'144;Sri Lanka;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;379;3382;1320;1320;14;14;14;8;8;8;8;33;33;33;1;1;4;5;4;0;337;0;56;12;420;20;80;200;72;118;104;33;15;14 -38;'144;Sri Lanka;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3402;3402;568;568;0;100;100;100;100;100;100;100;100;730;3781;3781;12;1924;2390;499;1612;176;176;176;108;2;0;0;0;42;0;50;791;39 -38;'144;Sri Lanka;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;194;194;36;36;0;16;16;16;16;16;16;16;16;39;200;200;1;102;127;26;85;9;9;9;6;0;0;0;0;4;0;2;12;17 -38;'144;Sri Lanka;1867;Industrial roundwood, non-coniferous;5516;Production;m3;574000;596000;604000;622000;641000;524000;499000;507000;448000;475000;476000;497000;495000;506000;518000;493000;489000;556000;593000;674400;643400;668400;721400;676400;683400;663400;679000;695000;710900;657700;636700;655700;660700;668700;660700;664700;670700;602000;607000;689000;698000;698000;698000;698000;698000;698000;698000;698000;698000;698000;698000;698000;698000;698000;698000;698000;723000;692700;692700;692700;692700;692700;692700 -38;'144;Sri Lanka;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;815;1206;1969;821;11249;700;700;35;35;35;35;35;78;153;1027;722;861;579;54;125;344;399;277;98;368;213;343;2333;276;419;0;860;326;715 -38;'144;Sri Lanka;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109;163;265;137;1796;97;97;47;47;47;47;47;117;74;120;231;190;158;225;2957;535;297;235;172;377;555;156;463;99;194;0;292;27;192 -38;'144;Sri Lanka;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;438;644;804;498;178;178;178;2286;2286;2286;2286;2286;186;2396;11513;11513;2797;1305;681;115;437;2451;518;431;194;63;42;67;254;17;1;6;39;656 -38;'144;Sri Lanka;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;62;84;111;19;19;19;344;344;344;344;344;50;1060;902;902;613;1334;817;440;503;735;779;347;161;17;12;16;90;4;1;2;28;265 -38;'144;Sri Lanka;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;800;999;1170;600;11214;0;0;0;0;0;0;0;43;51;531;422;531;249;52;70;255;359;150;83;309;80;65;829;67;325;0;827;1;406 -38;'144;Sri Lanka;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107;135;161;115;1791;0;0;0;0;0;0;0;70;24;87;208;87;55;49;61;187;248;97;121;329;147;42;351;44;137;0;272;1;166 -38;'144;Sri Lanka;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;438;644;804;498;178;178;178;178;178;178;178;178;178;1870;2564;2564;2564;1273;421;39;272;598;178;4;10;63;42;67;254;17;1;6;32;656 -38;'144;Sri Lanka;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;62;84;111;19;19;19;19;19;19;19;19;19;552;374;374;374;950;353;43;191;73;65;3;7;17;12;16;90;4;1;2;24;265 -38;'144;Sri Lanka;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;207;799;221;35;700;700;35;35;35;35;35;35;102;496;300;330;330;2;55;89;40;127;15;59;133;278;1504;209;94;0;33;325;309 -38;'144;Sri Lanka;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;28;104;22;5;97;97;47;47;47;47;47;47;50;33;23;103;103;176;2896;348;49;138;51;48;408;114;112;55;57;0;20;26;26 -38;'144;Sri Lanka;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2108;2108;2108;2108;2108;8;526;8949;8949;233;32;260;76;165;1853;340;427;184;0;0;0;0;0;0;0;7;0 -38;'144;Sri Lanka;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;325;325;325;325;325;31;508;528;528;239;384;464;397;312;662;714;344;154;0;0;0;0;0;0;0;4;0 -38;'144;Sri Lanka;1868;Sawlogs and veneer logs;5516;Production;m3;260000;275000;275000;285000;295000;170000;136000;136000;68000;88000;81000;96000;87000;92000;97000;65000;53000;113000;142000;184000;145000;162000;207000;155000;155000;128000;128000;128000;128000;55000;28000;42000;42000;44000;57000;59000;59000;59000;59000;112000;121000;121000;121000;121000;121000;121000;121000;121000;121000;121000;121000;121000;121000;121000;121000;121000;146000;115700;115700;115700;115700;115700;115700 -38;'144;Sri Lanka;1868;Sawlogs and veneer logs;5616;Import quantity;m3;5000;3300;3600;4100;2700;3200;2400;400;300;700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -38;'144;Sri Lanka;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;835;755;449;510;344;426;322;54;131;108;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -38;'144;Sri Lanka;1868;Sawlogs and veneer logs;5916;Export quantity;m3;300;400;200;200;200;600;800;300;300;300;200;100;100;100;600;800;200;200;200;200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -38;'144;Sri Lanka;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;43;60;33;34;28;75;89;32;34;29;22;10;10;10;196;121;27;27;27;27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -38;'144;Sri Lanka;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26000;29000;29000;29000;29000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -38;'144;Sri Lanka;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;260000;275000;275000;285000;295000;170000;136000;136000;68000;88000;81000;96000;87000;92000;97000;65000;53000;113000;142000;184000;145000;162000;207000;155000;155000;128000;128000;128000;128000;55000;28000;42000;42000;44000;31000;30000;30000;30000;30000;112000;121000;121000;121000;121000;121000;121000;121000;121000;121000;121000;121000;121000;121000;121000;121000;121000;146000;115700;115700;115700;115700;115700;115700 -38;'144;Sri Lanka;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;5000;3300;3600;4100;2700;3200;2400;400;300;700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -38;'144;Sri Lanka;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;835;755;449;510;344;426;322;54;131;108;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -38;'144;Sri Lanka;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;300;400;200;200;200;600;800;300;300;300;200;100;100;100;600;800;200;200;200;200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -38;'144;Sri Lanka;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;43;60;33;34;28;75;89;32;34;29;22;10;10;10;196;121;27;27;27;27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -38;'144;Sri Lanka;1870;Pulpwood and particles (1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;31400;31400;31400;31400;31400;31400;31400;40000;50000;59900;74700;74700;74700;74700;74700;74700;74700;74700;;;;;;;;;;;;;;;;;;;;;;;;;; -38;'144;Sri Lanka;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;31400;31400;31400;31400;31400;31400;31400;40000;50000;59900;74700;74700;74700;74700;74700;74700;74700;74700;;;;;;;;;;;;;;;;;;;;;;;;;; -38;'144;Sri Lanka;1871;Other industrial roundwood;5516;Production;m3;314000;321000;329000;337000;346000;354000;363000;371000;380000;387000;395000;401000;408000;414000;421000;428000;436000;443000;451000;459000;467000;475000;483000;490000;497000;504000;511000;517000;523000;528000;534000;539000;544000;550000;555000;560000;566000;572000;577000;577000;577000;577000;577000;577000;577000;577000;577000;577000;577000;577000;577000;577000;577000;577000;577000;577000;577000;577000;577000;577000;577000;577000;577000 -38;'144;Sri Lanka;1871;Other industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -38;'144;Sri Lanka;1871;Other industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -38;'144;Sri Lanka;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;314000;321000;329000;337000;346000;354000;363000;371000;380000;387000;395000;401000;408000;414000;421000;428000;436000;443000;451000;459000;467000;475000;483000;490000;497000;504000;511000;517000;523000;528000;534000;539000;544000;550000;555000;560000;566000;572000;577000;577000;577000;577000;577000;577000;577000;577000;577000;577000;577000;577000;577000;577000;577000;577000;577000;577000;577000;577000;577000;577000;577000;577000;577000 -38;'144;Sri Lanka;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -38;'144;Sri Lanka;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -38;'144;Sri Lanka;1630;Wood charcoal;5510;Production;t;12173;14186;9999;13812;16026;14240;14754;17068;20482;897;914;930;946;961;977;993;1009;1025;1042;31059;31076;29993;32810;32826;8742;6658;1173;1187;1201;1215;13000;15000;18000;21000;22000;12000;8942;8957;8974;1370;1391;1411;1432;1453;1475;1500;1500;1200;1577;1604;1630;1657;1685;1713;1741;1767;1793;1819;1846;1873;1900;1928;1957 -38;'144;Sri Lanka;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1149;25;5785;600;600;48;48;100;48;300;300;1557;2000;2000;1600;4552;12105;13352;15143;16222;15988;11767;31128;30225;22404;10898;30725;23007;10404;18173.14;16614;14589 -38;'144;Sri Lanka;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;338;3;1031;92;92;13;13;11;13;87;87;855;873;873;400;1208;3832;4644;6046;8103;8510;6689;15305;14426;11780;5572;15546;10032;4882;13361.18;12459;7552 -38;'144;Sri Lanka;1630;Wood charcoal;5910;Export quantity;t;11400;13400;9200;13000;15200;13400;13900;16200;19600;19600;19600;19600;19600;19600;19600;19600;19600;19600;19600;30000;30000;28900;31700;31700;7600;5500;5500;5500;5500;5500;5500;8415;3898;6836;4000;100;7668;7668;6300;7668;6400;3549;1780;3000;3000;3616;2102;3077;3915;3048;5532;7231;6732;8721;9400;5208;10215;4092;11639;12050;8396.74;14113;11160 -38;'144;Sri Lanka;1630;Wood charcoal;5922;Export value;1000 USD;517;579;384;525;612;678;1010;880;576;576;576;576;576;576;576;576;576;576;576;5767;5767;3182;3439;3439;836;600;600;600;600;600;600;2022;1355;1595;1181;30;2170;2170;2142;2170;1511;1002;805;1354;1354;1322;453;1015;1297;1258;2713;3885;3362;4736;4985;2748;4858;2957;5426;5873;5449.01;7983;5683 -38;'144;Sri Lanka;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;10000;10000;10000;10000 -38;'144;Sri Lanka;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121;121;121;121;125;288;1892;504;327;400;25;68;226;164;9;521;221;154;54;94;152;6;11;11;7;7 -38;'144;Sri Lanka;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;6;75;76;52;53;75;20;31;99;75;7;87;97;46;35;59;95;8;6;5;3;3 -38;'144;Sri Lanka;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;959;959;959;900;1420;2872;16055;16055;284;1061;1981;2883;3365;3623;3488;3101;2800;2189;3508;3558;499;4282;7609;8671.6;9344;426 -38;'144;Sri Lanka;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;81;81;11;169;167;766;766;304;473;621;930;620;482;930;1127;1090;441;583;710;164;487;819;1113.38;1213;70 -38;'144;Sri Lanka;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;18;18;2;2;4;4;4;1;1;5;98;5;0;0;0;0 -38;'144;Sri Lanka;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;20;20;4;4;3;3;3;7;7;6;87;5;1;0;0;0 -38;'144;Sri Lanka;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1400;2750;15435;15435;244;46;256;137;1047;35;462;61;99;33;22;3;3;0;16;47;40;40 -38;'144;Sri Lanka;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;163;125;741;741;288;16;26;31;132;46;422;304;439;13;43;69;69;60;4;12;7;7 -38;'144;Sri Lanka;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;10000;10000;10000;10000 -38;'144;Sri Lanka;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;714;714;121;121;121;121;121;121;121;121;121;284;1888;500;323;396;7;50;224;162;5;517;217;153;53;89;54;1;11;11;7;7 -38;'144;Sri Lanka;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;27;4;4;4;4;4;4;4;4;4;73;74;50;51;73;0;11;95;71;4;84;94;39;28;53;8;3;5;5;3;3 -38;'144;Sri Lanka;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;186;152;152;300;300;959;959;959;959;900;20;122;620;620;40;1015;1725;2746;2318;3588;3026;3040;2701;2156;3486;3555;496;4282;7593;8624.6;9304;386 -38;'144;Sri Lanka;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;7;7;16;16;81;81;81;81;11;6;42;25;25;16;457;595;899;488;436;508;823;651;428;540;641;95;427;815;1101.38;1206;63 -38;'144;Sri Lanka;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;21;54;23;66 -38;'144;Sri Lanka;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;6;12;14;14 -38;'144;Sri Lanka;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;139;0;0;0;0;704;662;699;265;6469 -38;'144;Sri Lanka;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;0;0;0;0;99;100;72;37;1477 -38;'144;Sri Lanka;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;39 -38;'144;Sri Lanka;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9 -38;'144;Sri Lanka;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;139;0;0;0;0;0;0;0;9;3 -38;'144;Sri Lanka;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;0;0;0;0;0;0;0;12;11 -38;'144;Sri Lanka;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;21;54;1;27 -38;'144;Sri Lanka;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;6;12;5;5 -38;'144;Sri Lanka;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;704;662;699;256;6466 -38;'144;Sri Lanka;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;100;72;25;1466 -38;'144;Sri Lanka;1872;Sawnwood;5516;Production;m3;115300;125600;127400;132900;139000;30000;33000;32000;28000;37000;34000;37000;23000;33000;38000;37000;25000;61000;17000;26000;31000;21000;29000;23000;23000;20000;20000;20000;20000;10000;5400;5000;5000;5000;5700;5200;5200;5200;5200;29000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;61000;61000;61000;61000;61000;61000;61000;61000;61000 -38;'144;Sri Lanka;1872;Sawnwood;5616;Import quantity;m3;4800;6200;3100;5200;10500;7750;16800;1600;1050;1150;1150;1150;1150;1150;1150;3200;3200;3200;3900;10500;13600;11900;12500;18400;13600;8000;9700;15800;6200;4300;5700;15785;280;18291;15800;15800;15127;21300;28000;21300;39200;15629;28157;43927;51000;24978;21273;24762;12165;19357;29360;22696;25014;26450;81226;123563;124271;101905;92957;75330;79978;27428;27209 -38;'144;Sri Lanka;1872;Sawnwood;5622;Import value;1000 USD;424;526;284;462;520;453;1345;104;65;65;65;65;65;65;65;346;346;346;471;2101;2785;2298;2509;3600;1915;1888;2205;1995;1749;1186;1355;5728;117;4632;5086;5086;5085;5846;7524;5846;7852;4870;10121;12834;16692;17209;22910;24718;16541;20737;36446;30959;33118;35050;33193;52320;53361;44458;39043;31801;34165;11872;11309 -38;'144;Sri Lanka;1872;Sawnwood;5916;Export quantity;m3;;;;;;;200;200;300;100;100;100;100;100;300;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;2671;1303;908;900;900;692;576;400;576;400;89;174;1012;1012;223;371;2172;2109;880;1499;778;254;1453;2682;3242;12917;17553;23094;18258;7619;163;4570 -38;'144;Sri Lanka;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;5;5;23;8;8;8;8;8;34;178;235;235;235;670;670;670;670;670;670;670;670;670;670;670;670;989;827;679;219;219;298;238;179;238;179;66;97;304;304;148;268;1678;2441;903;1107;1907;273;1069;2008;1516;4282;5925;6271;4144;2054;113;2107 -38;'144;Sri Lanka;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30000;30000;30000;30000;30000;30000;30000;30000;30000 -38;'144;Sri Lanka;1632;Sawnwood, coniferous;5616;Import quantity;m3;2700;3000;1400;3500;4850;2100;8850;850;850;850;850;850;850;850;850;1600;1600;1600;2300;3100;6400;4950;4950;4950;700;700;1400;1000;1200;2000;700;1951;235;1196;2800;2800;20;0;0;0;11200;7;256;4301;11000;10500;4690;4040;981;3790;373;209;673;1072;6885;13542;16570;22101;16007;12428;18822;8483;9177 -38;'144;Sri Lanka;1632;Sawnwood, coniferous;5622;Import value;1000 USD;194;181;102;280;217;150;707;61;61;61;61;61;61;61;61;173;173;173;298;452;1250;950;950;950;115;169;465;250;249;486;281;507;82;407;878;878;7;0;0;0;328;1;97;748;2114;2102;1414;1023;271;809;170;413;382;603;1659;2602;3170;4977;3300;2487;5396;2916;2208 -38;'144;Sri Lanka;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;149;51;400;400;116;0;0;0;0;0;74;24;24;24;34;957;957;145;3;7;7;35;110;403;282;656;0;0;0;28;1970 -38;'144;Sri Lanka;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;10;81;81;60;0;0;0;0;0;11;4;4;4;15;400;400;69;1;3;3;16;27;100;68;177;123;0;0;10;859 -38;'144;Sri Lanka;1633;Sawnwood, non-coniferous;5516;Production;m3;115300;125600;127400;132900;139000;30000;33000;32000;28000;37000;34000;37000;23000;33000;38000;37000;25000;61000;17000;26000;31000;21000;29000;23000;23000;20000;20000;20000;20000;10000;5400;5000;5000;5000;5700;5200;5200;5200;5200;29000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000 -38;'144;Sri Lanka;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;2100;3200;1700;1700;5650;5650;7950;750;200;300;300;300;300;300;300;1600;1600;1600;1600;7400;7200;6950;7550;13450;12900;7300;8300;14800;5000;2300;5000;13834;45;17095;13000;13000;15107;21300;28000;21300;28000;15622;27901;39626;40000;14478;16583;20722;11184;15567;28987;22487;24341;25378;74341;110021;107701;79804;76950;62902;61156;18945;18032 -38;'144;Sri Lanka;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;230;345;182;182;303;303;638;43;4;4;4;4;4;4;4;173;173;173;173;1649;1535;1348;1559;2650;1800;1719;1740;1745;1500;700;1074;5221;35;4225;4208;4208;5078;5846;7524;5846;7524;4869;10024;12086;14578;15107;21496;23695;16270;19928;36276;30546;32736;34447;31534;49718;50191;39481;35743;29314;28769;8956;9101 -38;'144;Sri Lanka;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;200;200;300;100;100;100;100;100;300;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;2671;1154;857;500;500;576;576;400;576;400;89;100;988;988;199;337;1215;1152;735;1496;771;247;1418;2572;2839;12635;16897;23094;18258;7619;135;2600 -38;'144;Sri Lanka;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;5;5;23;8;8;8;8;8;34;178;235;235;235;670;670;670;670;670;670;670;670;670;670;670;670;989;801;669;138;138;238;238;179;238;179;66;86;300;300;144;253;1278;2041;834;1106;1904;270;1053;1981;1416;4214;5748;6148;4144;2054;103;1248 -38;'144;Sri Lanka;1634;Veneer sheets;5516;Production;m3;;;;100;100;100;100;100;100;100;100;100;100;100;100;106;104;104;104;104;104;104;104;104;104;104;104;104;104;104;104;104;104;104;4750;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;15000;15000;15000 -38;'144;Sri Lanka;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;427;49;864;500;150;92;0;0;0;100;53;145;623;1357;33;3036;4012;465;1144;1802;1760;754;1520;2570;1718;2670;1819;1457;1374;1631;1034;220 -38;'144;Sri Lanka;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;641;62;767;346;253;42;0;0;0;24;43;118;485;511;84;1868;1962;418;1622;1304;1882;1822;2390;3161;3202;2971;1741;2272;1535;1834;1116;449 -38;'144;Sri Lanka;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;3;46;46;46;4;0;0;0;100;100;100;100;100;25;161;120;4;28;101;101;101;423;96;27;6;4;0;438;11197;10108;10227 -38;'144;Sri Lanka;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;6;29;29;29;2;0;0;0;26;26;26;26;26;48;44;47;13;41;314;314;314;105;110;67;18;7;3;56;1226;874;1442 -38;'144;Sri Lanka;1873;Wood-based panels;5516;Production;m3;9700;8200;6200;5500;5400;8000;8000;11000;8000;10900;10000;13200;24100;24600;25600;23000;19500;17500;5100;14500;14500;12500;15500;16500;15500;9500;9500;9500;9500;9500;9500;9500;9500;9500;9500;9500;9500;9500;9500;7500;7500;16500;16500;16500;16500;16500;36500;156000;156000;156000;156000;156000;156000;156000;156000;156000;156000;156000;156000;156000;156000;156000;156000 -38;'144;Sri Lanka;1873;Wood-based panels;5616;Import quantity;m3;18600;31900;37100;39500;35100;47600;28700;17100;17000;14000;27300;12100;12100;12100;12100;12100;12100;12100;12100;20900;1800;6000;8200;8500;9000;8300;12000;32600;18300;21000;8700;13803;3522;11828;12200;12200;21734;25181;25181;25181;84500;9673;31413;54047;35486;59505;18053;48645;30803;40331;42813;38204;32521;45570;64503;82768;98356;89907;67994;63222;84207.48;35420;42894 -38;'144;Sri Lanka;1873;Wood-based panels;5622;Import value;1000 USD;2867;3420;3142;3123;2525;3764;1786;1652;2203;1560;3386;1246;1246;1246;1246;1246;1246;1246;1246;9380;850;2764;1982;3153;7180;4213;7083;12247;7435;8540;3895;11091;1113;3620;4658;4658;7899;6677;6677;6677;20336;3756;11810;11200;6900;14299;20179;22030;15507;20385;23554;22122;26321;21816;27245;31047;34775;30808;22259;17258;25268.13;15141;15001 -38;'144;Sri Lanka;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;79;225;704;704;706;6;6;6;6;2794;55255;96889;96889;25348;45932;149953;34477;62417;76981;78314;80314;137824;77851;72988;72565;58732;42335;29501;23790.5;11911;5763 -38;'144;Sri Lanka;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;18;146;282;282;285;4;4;4;4;189;7060;18995;18995;4087;17310;28947;11104;22038;29329;31741;30899;50104;16850;16348;17289;14143;9993;7040;5944.76;3738;2199 -38;'144;Sri Lanka;1640;Plywood and LVL;5516;Production;m3;9700;8200;6200;5500;5400;8000;8000;11000;8000;10900;10000;13200;22000;22000;23000;21000;17000;15000;2600;12000;12000;10000;13000;14000;13000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;5000;5000;14000;14000;14000;14000;14000;14000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000 -38;'144;Sri Lanka;1640;Plywood and LVL;5616;Import quantity;m3;18600;31900;37100;39500;35100;47600;28700;17100;17000;14000;27300;12100;12100;12100;12100;12100;12100;12100;12100;20900;1800;6000;8200;8500;9000;8300;12000;32600;18300;21000;8700;12101;1866;2000;1500;1500;15553;19000;19000;19000;55900;49;1807;8008;2102;10962;1493;11205;6113;8654;9318;7420;8361;7601;19130;30041;35757;30593;16357;21265;36759;8875;8869 -38;'144;Sri Lanka;1640;Plywood and LVL;5622;Import value;1000 USD;2867;3420;3142;3123;2525;3764;1786;1652;2203;1560;3386;1246;1246;1246;1246;1246;1246;1246;1246;9380;850;2764;1982;3153;7180;4213;7083;12247;7435;8540;3895;10332;682;690;634;634;6236;5014;5014;5014;14500;1543;5176;2842;971;6463;9486;11391;7138;7875;9152;7954;9281;9014;12505;14397;13071;10672;8066;5643;7334;4035;3678 -38;'144;Sri Lanka;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;221;700;700;700;0;0;0;0;0;10546;302;302;928;108;47;11;62;1;56;303;61;489;562;522;1425;1306;1714;1050;4034;608 -38;'144;Sri Lanka;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;145;281;281;281;0;0;0;0;0;1615;99;99;197;105;53;12;23;5;33;153;116;305;350;428;806;721;879;217;917;776 -38;'144;Sri Lanka;1646;Particle board and OSB (1961-1994);5516;Production;m3;;;;;;;;;;;;;2100;2600;2600;2000;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -38;'144;Sri Lanka;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;649;223;3200;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -38;'144;Sri Lanka;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;202;54;734;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -38;'144;Sri Lanka;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;76;4;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -38;'144;Sri Lanka;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;17;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -38;'144;Sri Lanka;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -38;'144;Sri Lanka;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3500;3500;2127;2127;2127;2127;7900;1879;8502;12529;6099;243;970;2711;962;1501;2059;2436;605;273;46;1905;6490;6490;10572;7013;9223.27;7922;4267 -38;'144;Sri Lanka;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;848;848;416;416;416;416;1104;218;1071;2055;1403;34;1074;1322;524;842;1188;1355;491;271;52;1058;2951;2951;2882;2146;3654.7;3392;1574 -38;'144;Sri Lanka;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4;142;493;227;227;606;2273;5;1171;1187;1307;5698;14;88;104;6;6;6;451;424;398;566;422 -38;'144;Sri Lanka;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;31;91;38;38;133;1044;7;261;277;355;1756;19;35;36;2;4;4;737;937;959.74;1062;500 -38;'144;Sri Lanka;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;241;2033;2000;1894;1951;298;196;196;196;112;536;26;35;32;108;108;15;0;27;13;2 -38;'144;Sri Lanka;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;24;333;300;233;259;98;103;103;103;45;266;145;21;1;23;23;4;0;6;6;1 -38;'144;Sri Lanka;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;23;23;23;23 -38;'144;Sri Lanka;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;14;14;14 -38;'144;Sri Lanka;1874;Fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000 -38;'144;Sri Lanka;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1053;1433;6628;7200;7200;4054;4054;4054;4054;20700;7710;20863;31477;25285;46406;13639;34431;23532;29980;31240;28236;23019;37670;45292;50790;56001;52716;41050;34944;38198.21;18610;29756 -38;'144;Sri Lanka;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;557;377;2196;3176;3176;1247;1247;1247;1247;4732;1991;5539;5970;4226;7569;9360;9219;7742;11565;13111;12768;16283;12386;14667;15591;18730;17162;11307;9469;14273.43;7708;9748 -38;'144;Sri Lanka;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2652;44216;96360;96360;23814;43551;149901;33295;61168;75673;72560;79997;137675;77258;72420;72037;57278;40555;27340;22319.5;7288;4710 -38;'144;Sri Lanka;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;158;5354;18858;18858;3757;16161;28887;10831;21738;28969;29952;30727;49953;16509;15996;16857;13319;8521;5210;4754.02;1745;909 -38;'144;Sri Lanka;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3300;3300;2721;2721;2721;2721;10300;507;5144;2511;3000;5393;1661;3185;3086;4811;4888;3255;2259;3073;3900;2015;3692;3868;3438;3017;3190;2828;2605 -38;'144;Sri Lanka;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2055;2055;713;713;713;713;2332;171;1335;1165;1100;1550;658;1245;1039;2210;2435;1863;1830;1687;1903;1555;1700;1439;1599;1416;2025;1679;1394 -38;'144;Sri Lanka;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;6126;8628;8628;3372;16425;7035;39;39;733;2;77;475;500;595;1112;578;4318;2376;2203.71;1232;739 -38;'144;Sri Lanka;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;1408;3486;3486;1074;6377;2310;18;18;299;11;47;189;180;165;296;231;1301;570;666;366;158 -38;'144;Sri Lanka;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000;150000 -38;'144;Sri Lanka;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1200;1200;1273;1273;1273;1273;9300;7000;15149;25583;19185;38049;10489;21000;18439;24196;24697;23959;13596;33436;40429;48066;47382;43857;36846;31816;34509.21;15385;27115 -38;'144;Sri Lanka;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;662;662;507;507;507;507;2129;1800;4073;4375;2776;5712;8155;4156;5987;8766;9775;10374;9344;10035;12216;13491;12814;12599;9595;8031;12095.43;5909;8349 -38;'144;Sri Lanka;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20221;17989;17989;14939;20563;140000;30390;58263;72074;72441;79614;136434;75579;71766;70891;55928;36218;24963;20114.79;6056;3956 -38;'144;Sri Lanka;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2698;4353;4353;2183;7071;25308;9544;20451;27401;29884;30540;49427;15797;15797;16522;12735;7205;4639;4088.02;1379;747 -38;'144;Sri Lanka;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;207;172;1425;2700;2700;60;60;60;60;1100;203;570;3383;3100;2964;1489;10246;2007;973;1655;1022;7164;1161;963;709;4927;4991;766;111;499;397;36 -38;'144;Sri Lanka;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;51;424;459;459;27;27;27;27;271;20;131;430;350;307;547;3818;716;589;901;531;5109;664;548;545;4216;3124;113;22;153;120;5 -38;'144;Sri Lanka;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2650;17869;69743;69743;5503;6563;2866;2866;2866;2866;117;306;766;1179;59;34;772;19;1;1;0;15 -38;'144;Sri Lanka;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;155;1248;11019;11019;500;2713;1269;1269;1269;1269;57;140;337;532;34;39;353;15;1;0;0;4 -38;'144;Sri Lanka;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;846;1261;5203;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -38;'144;Sri Lanka;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;488;326;1772;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -38;'144;Sri Lanka;1879;Total fibre furnish;5510;Production;t;1600;1700;1800;2600;1900;4000;4500;4300;4200;5800;5600;9100;12200;20000;15000;12000;14000;17000;15300;15400;19300;19300;18000;22000;14000;20000;21000;23000;13000;17600;21300;23100;23700;23700;29700;27500;27500;27500;41500;37200;60100;66100;84100;100100;101100;110100;111100;114100;106100;127100;147100;147100;176100;176100;181100;191100;191100;191100;191100;191100;191100;191100;191100 -38;'144;Sri Lanka;1879;Total fibre furnish;5610;Import quantity;t;;2300;1300;3100;5100;2600;3200;3000;3200;2700;13900;6400;6400;6400;6400;6400;6400;6500;12000;3000;4500;3700;4900;4900;2400;6300;12100;16500;6800;3900;6400;16014;8391;11039;12906;11900;17317;16160;13444;12853;15921;13098;12272;3747;1476;2675;3151;1991;2606;2571;2956;6855;3443;4537;4163;4842;3989;5119;4455;6358;10265.97;8807;11792 -38;'144;Sri Lanka;1879;Total fibre furnish;5622;Import value;1000 USD;;319;175;425;792;414;531;472;490;417;1058;897;897;897;897;897;897;1344;5120;2546;2970;2264;2005;2005;2073;4518;5346;8702;1883;2056;3080;4323;2374;3964;6886;7865;6987;6982;6338;6268;7919;5769;5645;1388;754;1346;1728;1468;1386;1502;2143;2745;2299;3002;2649;3417;2738;3290;3218;3983;8228.3;8660;8234 -38;'144;Sri Lanka;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2071;141;3237;5209;8011;21736;20335;31720;34050;39244;46233;63270;78702;79529;87807;89514;92546;84925;106615;125364;121084;152801;153825;161474;168591;167149;147106;126767;108247;125285.91;130807.4;107316 -38;'144;Sri Lanka;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;451;21;496;945;1170;2840;2530;2730;3689;4298;4298;4898;10125;10768;12733;15423;19125;13218;22158;29529;25191;26660;33175;31737;32103;38298;32045;25537;20032;38453.05;41782.04;22850 -38;'144;Sri Lanka;1878;Pulp for paper;5510;Production;t;1600;1700;1800;2600;1900;4000;4500;4300;4200;4800;4600;5100;6200;10000;6000;5000;6000;10000;9300;10400;10300;10300;10000;14000;6000;6000;6000;6000;3200;5800;6000;3700;4000;4000;8700;9500;9500;9500;9500;2200;21100;21100;21100;21100;21100;21100;21100;21100;21100;21100;21100;21100;21100;21100;21100;21100;21100;21100;21100;21100;21100;21100;21100 -38;'144;Sri Lanka;1878;Pulp for paper;5610;Import quantity;t;;2300;1300;3100;5100;2600;3200;3000;3200;2700;13900;6400;6400;6400;6400;6400;6400;6500;12000;3000;4500;3700;4900;4900;2400;5300;8100;12500;1800;1200;2200;4050;6278;5408;6806;11200;12435;12435;12435;12435;14300;10462;10407;2675;882;2278;2633;1376;1460;1386;1918;2300;2255;4125;3061;4444;3726;4570;4452;5788;8130.86;6466;6621 -38;'144;Sri Lanka;1878;Pulp for paper;5622;Import value;1000 USD;;319;175;425;792;414;531;472;490;417;1058;897;897;897;897;897;897;1344;5120;2546;2970;2264;2005;2005;2073;4396;4674;7974;1078;1072;1569;2053;1936;2251;4762;7327;6200;6200;6200;6200;7698;5439;5431;1292;689;1309;1656;1344;1297;1402;2044;1917;1803;2956;2437;3376;2713;3220;3217;3845;7593.3;7887;6941 -38;'144;Sri Lanka;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;9;9;9;9;9;9;9;300;300;300;74;74;74;110;172;172;679;208;258;258;241;74;96;100;100;23;23;32;32.4;41 -38;'144;Sri Lanka;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;3;3;3;3;3;3;3;209;209;209;38;38;38;94;96;96;365;154;272;272;265;85;98;114;114;71;73;71;67.04;87 -38;'144;Sri Lanka;1875;Wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6200;11000;6200;4400;2000;2000;2400;2400;2400;2400;2400;1200;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600 -38;'144;Sri Lanka;1875;Wood pulp;5610;Import quantity;t;;2300;1300;3100;5100;2600;3200;3000;3200;2700;13900;6400;6400;6400;6400;6400;6400;6500;12000;3000;4500;3700;4900;4900;2400;5300;8100;12500;1800;1200;2200;4036;6264;5400;6706;11100;12602;12602;12602;12602;13185;9347;9292;1560;1061;1163;1341;1366;1448;1374;1877;2260;2237;4076;3005;4408;3683;4087;3969;5225;8008.86;6165;6384 -38;'144;Sri Lanka;1875;Wood pulp;5622;Import value;1000 USD;;319;175;425;792;414;531;472;490;417;1058;897;897;897;897;897;897;1344;5120;2546;2970;2264;2005;2005;2073;4396;4674;7974;1078;1072;1569;2047;1930;2241;4670;7235;6290;6290;6290;6290;7115;4856;4848;709;788;726;989;1343;1284;1389;2022;1903;1820;2957;2436;3340;2716;3046;3021;3613;7553.3;7737;6821 -38;'144;Sri Lanka;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;0;0;0;0;0;0;40;40;40;40;121;121;628;157;239;239;222;55;19;23;23;23;23;32;32.4;41 -38;'144;Sri Lanka;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;0;0;0;0;0;0;13;13;13;13;74;74;343;132;255;255;248;68;55;71;71;71;71;67;67.04;87 -38;'144;Sri Lanka;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;464;566;1054;1319;3557.65;2977;2782 -38;'144;Sri Lanka;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;252;296;614;720;3326.41;2669;2299 -38;'144;Sri Lanka;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;2300;1300;3100;5100;2600;3200;500;500;;;;;;;;;;;;;;;;;;;;;;;5;1524;526;2100;7500;7500;7500;7500;7500;7500;7500;7500;23;15;8;8;8;8;8;8;8;3;3;3;3;;;;;;; -38;'144;Sri Lanka;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;319;175;425;792;414;531;70;73;;;;;;;;;;;;;;;;;;;;;;;2;352;183;1141;3967;3967;3967;3967;3967;3967;3967;3967;8;7;4;4;4;4;4;4;4;2;2;2;2;;;;;;; -38;'144;Sri Lanka;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;23;23;23;23;23;23;23;23;23;23;0;;;;;;; -38;'144;Sri Lanka;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;6;6;6;6;6;0;;;;;;; -38;'144;Sri Lanka;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;732;1006;1006;1006;0;0;0;0;0;0;0;0;0;0;0;0;17;17;17;17;17;17;101;192;790;;;;;;; -38;'144;Sri Lanka;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;197;261;261;261;0;0;0;0;0;0;0;0;0;0;0;0;39;39;39;39;39;39;79;119;544;;;;;;; -38;'144;Sri Lanka;1656;Chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1200;2300;3000;1200;2000;2000;2400;2400;2400;2400;2400;1200;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600 -38;'144;Sri Lanka;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;2500;2700;2700;13900;6400;6400;6400;6400;6400;6400;6500;12000;3000;4500;3700;4900;4900;2400;5300;8100;12500;1800;1200;2200;3299;3734;3868;3600;3600;4917;4917;4917;4917;5500;1662;1607;1352;861;970;1325;1333;1415;1341;1850;2232;2214;3969;2807;3614;3142;3444;2838;3829;4374.22;3187;3601 -38;'144;Sri Lanka;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;402;417;417;1058;897;897;897;897;897;897;1344;5120;2546;2970;2264;2005;2005;2073;4396;4674;7974;1078;1072;1569;1848;1317;1797;3268;3268;2218;2218;2218;2218;3043;784;776;596;676;617;964;1279;1220;1325;1963;1836;1755;2852;2291;2791;2399;2685;2342;2828;4161.89;5067;4521 -38;'144;Sri Lanka;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;0;0;0;0;0;0;17;17;17;17;98;98;605;134;216;216;199;32;19;23;23;23;23;32;32.4;41 -38;'144;Sri Lanka;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;0;0;0;0;0;0;7;7;7;7;68;68;337;126;249;249;242;62;55;71;71;71;71;67;67.04;87 -38;'144;Sri Lanka;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;175;504;28;200;200;200;200;200;200;1000;1000;1000;116;116;116;86;86;86;86;86;51;185;199;377;1104;583;583;195;843;843;241;218 -38;'144;Sri Lanka;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91;156;9;193;193;193;193;193;193;387;387;387;41;41;41;80;80;80;80;80;33;126;135;242;685;361;361;132;519;519;300;207 -38;'144;Sri Lanka;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;507;17;17;17;17;17;17;17;17;17;17;17;17;17 -38;'144;Sri Lanka;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;269;54;54;54;54;54;54;54;54;54;54;54;54;54 -38;'144;Sri Lanka;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1200;2300;3000;1200;2000;2000;2400;2400;2400;2400;2400;1200;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600 -38;'144;Sri Lanka;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;6500;12000;3000;4500;3700;4900;4900;2400;5300;8100;12500;1800;1200;2200;2565;2628;529;2200;2200;4042;4042;4042;4042;4000;235;141;567;278;348;745;1067;943;1229;1501;1960;1854;3572;1987;2504;2164;2861;2642;2985;3530.22;2945;3382 -38;'144;Sri Lanka;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;1344;5120;2546;2970;2264;2005;2005;2073;4396;4674;7974;1078;1072;1569;1388;899;341;2180;2180;1728;1728;1728;1728;2272;123;106;239;287;240;483;997;784;1207;1591;1596;1326;2543;1678;1749;1739;2324;2208;2308;3641.89;4766;4310 -38;'144;Sri Lanka;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;81;81;100;182;182;182;15;2;6;6;6;6;15;15.4;24 -38;'144;Sri Lanka;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;61;61;65;188;188;188;8;1;17;17;17;17;13;13.04;33 -38;'144;Sri Lanka;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;395;0;1;1;1;1;1 -38;'144;Sri Lanka;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;299;0;2;1;1;1;4 -38;'144;Sri Lanka;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;;;;;;; -38;'144;Sri Lanka;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;;;;;;; -38;'144;Sri Lanka;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;559;602;3311;1200;1200;675;675;675;675;500;427;466;669;467;506;494;180;386;26;263;221;175;198;443;6;;;;;;; -38;'144;Sri Lanka;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;369;262;1447;895;895;297;297;297;297;384;274;283;316;348;336;401;202;356;38;292;207;303;174;371;357;;;;;;; -38;'144;Sri Lanka;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;17;17;17;17;17;17;17;0;0;0;;;;;;; -38;'144;Sri Lanka;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;7;7;7;7;0;0;0;;;;;;; -38;'144;Sri Lanka;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;8700;3200;3200;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -38;'144;Sri Lanka;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;185;185;185;185;185;185;185;185;185;185;8;8;8;8;2;3;3;3;3;1;77;77;77;77;77;1;1 -38;'144;Sri Lanka;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;105;105;105;105;105;105;105;105;105;105;21;21;21;21;16;24;24;24;24;3;65;65;65;65;65;1;1 -38;'144;Sri Lanka;1668;Pulp from fibres other than wood;5510;Production;t;1600;1700;1800;2600;1900;4000;4500;4300;4200;4800;4600;5100;6200;10000;6000;5000;6000;10000;9300;10400;10300;10300;10000;14000;6000;6000;6000;6000;2000;3500;3000;2500;2000;2000;6300;7100;7100;7100;7100;1000;18500;18500;18500;18500;18500;18500;18500;18500;18500;18500;18500;18500;18500;18500;18500;18500;18500;18500;18500;18500;18500;18500;18500 -38;'144;Sri Lanka;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;8;100;100;18;18;18;18;1300;1300;1300;1300;6;1300;1300;18;20;20;43;43;21;52;59;37;120;560;560;640;199;302;238 -38;'144;Sri Lanka;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;10;92;92;15;15;15;15;688;688;688;688;6;688;688;22;34;34;38;38;7;23;25;39;62;239;261;297;105;151;121 -38;'144;Sri Lanka;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;9;9;9;300;300;300;34;34;34;70;51;51;51;51;19;19;19;19;77;77;77;0;0;0;0;0 -38;'144;Sri Lanka;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3;209;209;209;25;25;25;81;22;22;22;22;17;17;17;17;43;43;43;0;2;4;0;0 -38;'144;Sri Lanka;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;8;206;3;227;2;2;2;28;170;18;79;120;120;120;120;120;0;0 -38;'144;Sri Lanka;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;18;154;2;103;18;18;18;30;52;7;31;53;53;53;53;53;0;0 -38;'144;Sri Lanka;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;563;563;563;563;0;0 -38;'144;Sri Lanka;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5;5;5;5;195;195;195;195;0;0 -38;'144;Sri Lanka;1669;Recovered paper;5510;Production;t;;;;;;;;;;1000;1000;4000;6000;10000;9000;7000;8000;7000;6000;5000;9000;9000;8000;8000;8000;14000;15000;17000;9800;11800;15300;19400;19700;19700;21000;18000;18000;18000;32000;35000;39000;45000;63000;79000;80000;89000;90000;93000;85000;106000;126000;126000;155000;155000;160000;170000;170000;170000;170000;170000;170000;170000;170000 -38;'144;Sri Lanka;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;1000;4000;4000;5000;2700;4200;11964;2113;5631;6100;700;4882;3725;1009;418;1621;2636;1865;1072;594;397;518;615;1146;1185;1038;4555;1188;412;1102;398;263;549;3;570;2135.11;2341;5171 -38;'144;Sri Lanka;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;122;672;728;805;984;1511;2270;438;1713;2124;538;787;782;138;68;221;330;214;96;65;37;72;124;89;100;99;828;496;46;212;41;25;70;1;138;635;773;1293 -38;'144;Sri Lanka;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2071;130;3228;5200;8002;21727;20326;31711;34041;38944;45933;62970;78628;79455;87733;89404;92374;84753;105936;125156;120826;152543;153584;161400;168495;167049;147006;126744;108224;125253.91;130775;107275 -38;'144;Sri Lanka;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;451;17;493;942;1167;2837;2527;2727;3686;4089;4089;4689;10087;10730;12695;15329;19029;13122;21793;29375;24919;26388;32910;31652;32005;38184;31931;25466;19959;38382.05;41715;22763 -38;'144;Sri Lanka;1876;Paper and paperboard;5510;Production;t;4400;5200;5400;6600;6800;9500;9500;8600;8600;9300;9900;15800;21300;22500;19000;18000;20000;24000;20800;17600;20100;19000;22200;22900;22500;24600;24600;28000;16500;15900;23000;26000;29000;31000;28000;24500;24500;24500;24500;23500;24500;24500;24500;24500;24500;24500;24500;24500;24500;24500;24500;24500;24500;24500;24500;24500;24500;24500;24500;24500;24500;24500;24500 -38;'144;Sri Lanka;1876;Paper and paperboard;5610;Import quantity;t;24200;25900;22100;28300;23100;41300;32800;26100;29300;36300;61600;29500;29500;22800;19000;9700;16900;24700;25700;39300;50300;43100;41300;26800;37500;35500;76100;100100;54100;82300;80000;93774;45984;127833;75500;78000;88959;103500;103500;103500;228300;159136;239931;257342;301377;145941;240281;307881;365571;435686;462250;439468;394901;556937;523741;535074;526805;494801;476283;420012;436198.02;337376;363134 -38;'144;Sri Lanka;1876;Paper and paperboard;5622;Import value;1000 USD;5830;5890;4923;6478;5138;9170;7752;5326;6680;8858;8955;7655;7655;10531;9511;4119;6418;9432;13586;23280;29124;29263;23840;16478;20981;15789;35670;58062;50142;61982;59573;64507;28199;75936;65098;67093;56265;61830;61830;61830;120677;92568;125225;174099;174487;96890;168608;264130;218065;327370;399532;311636;334954;424205;381099;391285;382206;370492;358775;298344;395490.77;374015;336786 -38;'144;Sri Lanka;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;157;35;4553;4553;0;0;0;0;0;4800;4611;735;1473;1473;670;1051;1628;814;1650;2047;925;435;736;1011;6967;16821;24141;18294;14774;8459.44;11160;15330 -38;'144;Sri Lanka;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;213;38;3471;3471;0;0;0;0;0;3053;2933;575;1026;1026;529;1027;1693;1352;2387;2562;1343;607;6018;2811;5108;9101;13683;9521;7005;8074.1;10158;9825 -38;'144;Sri Lanka;2042;Graphic papers;5510;Production;t;4400;4400;4400;5600;4500;7900;7900;7800;7700;8900;9300;9500;12200;10500;9000;8000;10000;15000;13800;12500;12500;13000;15500;16000;14000;17000;17000;19000;10000;11700;12300;10700;15000;15000;13000;11000;11000;11000;11000;10000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000 -38;'144;Sri Lanka;2042;Graphic papers;5610;Import quantity;t;16800;17400;14800;17200;17500;29500;21200;15300;22900;22600;54200;22500;22500;16100;12700;3700;9800;14200;16200;23600;34600;28200;27300;17500;23200;20800;46100;53900;27100;51100;39900;57938;26006;73427;43500;46000;39959;53000;53000;53000;119900;62899;124569;133536;163508;72268;109413;155709;163547;160943;183761;191581;177857;221844;229680;229089;237019;211911;229890;183938;167857.05;123808;160413 -38;'144;Sri Lanka;2042;Graphic papers;5622;Import value;1000 USD;3798;3516;2987;3396;3381;6067;4375;2696;4032;4417;6658;5377;5377;8087;7173;1489;2140;3124;8238;13205;19049;18314;13751;8946;11174;10006;23870;27875;29272;38188;36326;41198;14879;45037;36536;38531;23345;28086;28086;28086;70623;44395;72810;93804;103419;51864;90759;153561;126840;151134;186570;171461;176616;201624;191796;193718;200923;176720;202281;153568;173265.03;158783;193286 -38;'144;Sri Lanka;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;26;48;48;0;0;0;0;0;4800;4610;177;555;555;548;427;841;555;727;1462;599;202;255;295;402;659;241;1002;1056;1025.82;1757;1772 -38;'144;Sri Lanka;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;24;50;50;0;0;0;0;0;3053;2913;116;323;323;293;210;464;734;1635;1695;620;276;432;590;614;1038;351;1545;1435;1909.72;3287;2942 -38;'144;Sri Lanka;1671;Newsprint;5610;Import quantity;t;8800;10700;11800;12000;12400;20200;15800;13300;22700;18300;13900;10100;10100;7700;6500;3500;9600;14000;16000;8000;19000;14500;13500;14100;17200;14600;21100;34200;17800;22700;11500;19124;8300;25548;26200;28700;22517;30000;30000;30000;31300;11217;40219;41409;48755;48758;50190;44791;47756;54828;60460;69075;65280;71775;67831;69258;58077;55542;37823;22976;24807.35;10254;13702 -38;'144;Sri Lanka;1671;Newsprint;5622;Import value;1000 USD;1530;1660;1978;1923;1914;3569;2603;2070;3945;3407;2620;1948;1948;4094;3084;1317;1942;2926;8040;4256;10100;9314;6455;6270;7044;5777;6870;10265;19925;9876;8014;10004;3014;12188;18075;20070;9221;12077;12077;12077;17450;3890;15890;21120;27585;24507;29381;33246;27280;34586;41832;42761;44149;44773;37299;37578;30727;34828;23419;10994;14576.09;9282;10508 -38;'144;Sri Lanka;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;;0;0;0;0;0;0;0;0;0;0;344;344;344;344;279;279;93;999;489;26;37;13;20;9;9;8;29;20;16;8 -38;'144;Sri Lanka;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;;0;0;0;0;0;0;0;0;0;0;162;162;162;162;128;128;38;745;360;17;32;11;17;7;7;7;22;11;18;17 -38;'144;Sri Lanka;1674;Printing and writing papers;5510;Production;t;4400;4400;4400;5600;4500;7900;7900;7800;7700;8900;9300;9500;12200;10500;9000;8000;10000;15000;13800;12500;12500;13000;15500;16000;14000;17000;17000;19000;10000;11700;12300;10700;15000;15000;13000;11000;11000;11000;11000;10000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000 -38;'144;Sri Lanka;1674;Printing and writing papers;5610;Import quantity;t;8000;6700;3000;5200;5100;9300;5400;2000;200;4300;40300;12400;12400;8400;6200;200;200;200;200;15600;15600;13700;13800;3400;6000;6200;25000;19700;9300;28400;28400;38814;17706;47879;17300;17300;17442;23000;23000;23000;88600;51682;84350;92127;114753;23510;59223;110918;115791;106115;123301;122506;112577;150069;161849;159831;178942;156369;192067;160962;143049.7;113554;146711 -38;'144;Sri Lanka;1674;Printing and writing papers;5622;Import value;1000 USD;2268;1856;1009;1473;1467;2498;1772;626;87;1010;4038;3429;3429;3993;4089;172;198;198;198;8949;8949;9000;7296;2676;4130;4229;17000;17610;9347;28312;28312;31194;11865;32849;18461;18461;14124;16009;16009;16009;53173;40505;56920;72684;75834;27357;61378;120315;99560;116548;144738;128700;132467;156851;154497;156140;170196;141892;178862;142574;158688.94;149501;182778 -38;'144;Sri Lanka;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;48;48;0;0;;;;4800;4610;177;211;211;204;83;562;276;634;463;110;176;218;282;382;650;232;994;1027;1005.82;1741;1764 -38;'144;Sri Lanka;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;50;50;0;0;;;;3053;2913;116;161;161;131;48;336;606;1597;950;260;259;400;579;597;1031;344;1538;1413;1898.72;3269;2925 -38;'144;Sri Lanka;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2002;21120;5519;2957;2428;15578;1364;1954;1095;1450;1082;1940;1646;2775;2105;3828;3828;884;163;241;681;588 -38;'144;Sri Lanka;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1505;12927;4354;1604;1745;13272;1529;1585;1422;1354;1127;1866;1380;1727;1402;2657;2657;1020;312;400;1018;758 -38;'144;Sri Lanka;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;127;127;127;3;3;102;102;11;1;17;35;15;15;49;49;18;2;3;4;3 -38;'144;Sri Lanka;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;97;97;97;18;14;362;362;233;55;46;32;16;16;25;25;37;3;10;19;15 -38;'144;Sri Lanka;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11000;11000;10000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000 -38;'144;Sri Lanka;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9527;9527;9527;36700;23580;25270;48433;63078;7325;27325;66131;90255;76136;88952;83057;83057;107423;116529;112213;117635;92589;122242;100293;91965.35;67736;106891 -38;'144;Sri Lanka;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7541;7541;7541;25047;20000;21932;38213;41563;15638;33326;79429;75565;83815;104586;101107;101107;118305;114880;113050;119385;98080;124447;96111;105069.54;92867;145900 -38;'144;Sri Lanka;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;10;79;23;23;8;11;86;9;160;68;38;56;56;130;81;262;82;333;477;464;234;175 -38;'144;Sri Lanka;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;142;2;58;18;18;14;10;57;39;799;202;111;95;135;329;168;578;167;644;646;789;473;377 -38;'144;Sri Lanka;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13473;13473;13473;51900;26100;37960;38175;48718;13757;16320;43423;23582;28884;32899;38367;27580;41000;42545;45513;57479;59952;68941;60506;50843.35;45137;39232 -38;'144;Sri Lanka;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8468;8468;8468;28126;19000;22061;30117;32667;9974;14780;39357;22410;31311;38798;26466;29494;37166;37890;41688;48154;41155;53395;46151;53219.4;55616;36120 -38;'144;Sri Lanka;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4600;4600;88;61;61;69;69;473;165;372;384;71;103;127;137;286;339;101;643;548;538.82;1503;1586 -38;'144;Sri Lanka;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2911;2911;42;46;46;20;20;265;205;436;515;94;118;233;234;413;428;152;857;764;1099.72;2777;2533 -38;'144;Sri Lanka;1675;Other paper and paperboard;5510;Production;t;;800;1000;1000;2300;1600;1600;800;900;400;600;6300;9100;12000;10000;10000;10000;9000;7000;5100;7600;6000;6700;6900;8500;7600;7600;9000;6500;4200;10700;15300;14000;16000;15000;13500;13500;13500;13500;13500;13500;13500;13500;13500;13500;13500;13500;13500;13500;13500;13500;13500;13500;13500;13500;13500;13500;13500;13500;13500;13500;13500;13500 -38;'144;Sri Lanka;1675;Other paper and paperboard;5610;Import quantity;t;7400;8500;7300;11100;5600;11800;11600;10800;6400;13700;7400;7000;7000;6700;6300;6000;7100;10500;9500;15700;15700;14900;14000;9300;14300;14700;30000;46200;27000;31200;40100;35836;19978;54406;32000;32000;49000;50500;50500;50500;108400;96237;115362;123806;137869;73673;130868;152172;202024;274743;278489;247887;217044;335093;294061;305985;289786;282890;246393;236074;268340.97;213568;202721 -38;'144;Sri Lanka;1675;Other paper and paperboard;5622;Import value;1000 USD;2032;2374;1936;3082;1757;3103;3377;2630;2648;4441;2297;2278;2278;2444;2338;2630;4278;6308;5348;10075;10075;10949;10089;7532;9807;5783;11800;30187;20870;23794;23247;23309;13320;30899;28562;28562;32920;33744;33744;33744;50054;48173;52415;80295;71068;45026;77849;110569;91225;176236;212962;140175;158338;222581;189303;197567;181283;193772;156494;144776;222225.74;215232;143500 -38;'144;Sri Lanka;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;129;9;4505;4505;0;0;0;0;0;0;1;558;918;918;122;624;787;259;923;585;326;233;481;716;6565;16162;23900;17292;13718;7433.63;9403;13558 -38;'144;Sri Lanka;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;188;14;3421;3421;0;0;0;0;0;0;20;459;703;703;236;817;1229;618;752;867;723;331;5586;2221;4494;8063;13332;7976;5570;6164.38;6871;6883 -38;'144;Sri Lanka;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;700;34;889;2080;1660;164;268;2134;1161;1563;1506;1784;1697;2657;2909;2621;4028;4205;3926;2980;3369.14;2246;4360 -38;'144;Sri Lanka;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;950;89;758;2288;2390;285;254;3157;1467;1689;1970;2175;2524;3106;3463;3631;4387;4590;4399;2893;4078.79;3245;5925 -38;'144;Sri Lanka;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;35;35;4;4;16;2;16;4;3;3;2;119;2;1;1;4;5;3;1;1 -38;'144;Sri Lanka;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;40;40;15;4;25;4;52;11;7;7;17;208;32;1;1;11;12;18;8;9 -38;'144;Sri Lanka;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8500;8500;8500;8500;8500;8500;8500;8500;8500;8500;8500;8500;8500;8500;8500;8500;8500;8500;8500;8500;8500;8500;8500;8500;8500;8500 -38;'144;Sri Lanka;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100100;94759;106819;114038;135322;69168;121134;144076;194304;265533;267119;242504;211625;324935;285341;292794;283585;277865;241676;232031;263999.84;210257;197442 -38;'144;Sri Lanka;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41775;44279;42206;70705;67228;30161;60922;91579;72994;153764;182615;128904;149403;197021;173744;167259;170051;185867;148411;136255;212330.95;205173;131484 -38;'144;Sri Lanka;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;152;620;620;93;566;665;212;210;453;200;212;260;532;6082;16136;23881;17086;13568;7405.63;8376;10340 -38;'144;Sri Lanka;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;157;375;375;173;698;866;506;471;421;184;204;481;1575;3017;7910;13203;7688;5204;5745.38;6051;5382 -38;'144;Sri Lanka;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;1000;2300;1600;1600;800;900;400;600;6300;9100;12000;10000;10000;10000;9000;7000;5100;7600;6000;6700;6900;8500;7600;7600;9000;6500;4200;10700;15300;14000;16000;11000;8500;8500;;;;;;;;;;;;;;;;;;;;;;;;;; -38;'144;Sri Lanka;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;11800;11600;10800;5100;5100;5100;5100;5100;5100;5100;4800;5900;5900;5900;12400;12400;7300;7000;2100;6100;6000;10000;16200;10000;10000;18900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -38;'144;Sri Lanka;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;3103;3377;2630;1488;1488;1488;1488;1488;1488;1488;1780;3428;3428;3428;7165;7165;4200;3906;1196;2607;2467;3700;10187;10000;10000;9453;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -38;'144;Sri Lanka;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8500;8500;8500;8500;8500;8500;8500;8500;8500;8500;8500;8500;8500;8500;8500;8500;8500;8500;8500;8500;8500;8500;8500;8500;8500;8500 -38;'144;Sri Lanka;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76500;61554;55532;46403;81252;30416;35361;45204;37833;113481;121566;122033;107079;150926;159276;169682;166439;141513;137765;125392;146590.42;114276;106021 -38;'144;Sri Lanka;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23385;19969;17974;28771;30237;10962;14310;24063;15541;61334;72661;49243;62383;75682;74578;72836;78034;76876;58547;51113;92289.02;84199;47941 -38;'144;Sri Lanka;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30;30;1;213;3;37;282;25;17;25;1;585;14854;22476;16725;12966;6419.63;6444;8743 -38;'144;Sri Lanka;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;18;3;108;17;67;229;21;12;52;1;268;6393;12133;7022;4712;4438.87;4222;3807 -38;'144;Sri Lanka;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2900;5480;11944;19017;21358;22505;32687;68016;136951;119861;116551;96127;84106;144450;95159;94902;77249;87308;65192;65207;81358.23;68084;67313 -38;'144;Sri Lanka;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2682;3317;6197;11790;11341;9736;15487;40755;43863;66330;79708;56977;65888;95428;73540;69164;58036;67697;53989;53806;81949.83;84276;58276 -38;'144;Sri Lanka;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;80;80;12;86;159;136;76;115;28;5;67;225;4939;880;880;160;288;488;1635;812 -38;'144;Sri Lanka;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;49;49;43;138;511;360;190;99;19;2;93;260;2066;636;636;151;183;788.5;1529;798 -38;'144;Sri Lanka;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20300;27710;25817;44961;31481;15545;50830;27419;17136;29953;26680;23632;19393;27475;29512;26472;37348;45726;36226;39117;33002.76;25611;22217 -38;'144;Sri Lanka;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15441;20965;14446;27877;25046;9091;30147;25313;12640;25081;28657;22056;19832;24568;24572;23708;32471;39501;34506;30054;35563.1;34636;23887 -38;'144;Sri Lanka;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;144;506;506;12;440;254;71;96;52;106;149;163;90;417;261;519;201;310;496;296;779 -38;'144;Sri Lanka;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;133;305;305;6;451;141;104;190;63;110;156;306;119;469;667;428;513;298;515.01;298;763 -38;'144;Sri Lanka;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;15;13526;3657;1231;702;2256;3437;2384;2238;2322;712;1047;2084;1394;1738;2549;3318;2493;2315;3048.42;2286;1891 -38;'144;Sri Lanka;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;267;28;3589;2267;604;372;978;1448;950;1019;1589;628;1300;1343;1054;1551;1510;1793;1369;1282;2529;2062;1380 -38;'144;Sri Lanka;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;39;39;39;2;1;4;41;41;5;216;141;141;6;0;4;2;1;6 -38;'144;Sri Lanka;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;106;106;106;25;24;30;34;34;30;1195;214;214;6;2;11;3;2;14 -38;'144;Sri Lanka;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;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 -38;'144;Sri Lanka;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;1300;8600;2300;1900;1900;1600;1200;1200;1200;4600;3600;3300;3300;7600;7000;7200;8200;8700;20000;30000;17000;21200;21200;35836;19978;54406;32000;32000;49000;50500;50500;50500;7600;1444;7654;7688;887;4341;9466;5962;6559;7647;9864;3599;3722;7501;5811;10570;2173;820;791;1063;972;1065;919 -38;'144;Sri Lanka;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;1160;2953;809;790;790;956;850;850;850;2880;1920;2910;2910;6749;6183;6336;7200;3316;8100;20000;10870;13794;13794;23309;13320;30899;28562;28562;32920;33744;33744;33744;7329;3805;9451;7302;1450;14580;16673;15833;16764;20783;28377;9096;6411;22454;12096;26677;6845;3315;3684;5628;5816;6814;6091 -38;'144;Sri Lanka;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;129;9;4505;4505;0;0;0;0;0;0;1;388;263;263;25;54;106;45;697;128;123;18;219;65;481;25;18;202;145;25;1026;3217 -38;'144;Sri Lanka;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;188;14;3421;3421;0;0;0;0;0;0;20;278;288;288;48;115;338;108;229;435;532;120;5088;438;1445;152;128;277;354;401;812;1492 -38;'144;Sri Lanka;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29430;44746;24678;19563;18462;22986;25226 -38;'144;Sri Lanka;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31009;40398;41024;29391;41875;47841;45756 -38;'144;Sri Lanka;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1335;4659;3725;1865;1634;657;502 -38;'144;Sri Lanka;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;436;86;0;0;1;2 -38;'144;Sri Lanka;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;242;3038;1245;1084;253;20;58 -38;'144;Sri Lanka;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;86;0;0;0;0 -38;'144;Sri Lanka;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1093;1621;2480;781;1381;637;444 -38;'144;Sri Lanka;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;436;0;0;0;1;2 -38;'144;Sri Lanka;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3009;2211;1550;2675;2842;2007;1891 -38;'144;Sri Lanka;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;167;97;62;77;86;105 -38;'144;Sri Lanka;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;627;3173;789;463;311;267;810 -38;'144;Sri Lanka;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2308;2186;5989;3805;5744;4850;7146 -38;'144;Sri Lanka;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4934;10146;3957;4610;4197;6775;6080 -38;'144;Sri Lanka;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;183;738;466;143;162;949;314 -38;'144;Sri Lanka;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17470;19399;11354;7173;5907;9774;13465 -38;'144;Sri Lanka;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23063;26049;27293;19744;28975;35437;31471 -38;'144;Sri Lanka;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;147;754;64;15;0;3;6 -38;'144;Sri Lanka;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -38;'144;Sri Lanka;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1908;4404;3239;2762;3571;3503;2472 -38;'144;Sri Lanka;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5379;10822;7093;5637;6917;6518;6718 -38;'144;Sri Lanka;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94491;112557;88638;75898;95007;93833;73435 -38;'144;Sri Lanka;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53104;52931;60741;51420;64044;60981;54927 -38;'144;Sri Lanka;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1454;458;1312;795;1862;2202;2633 -38;'144;Sri Lanka;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;620;4;142;2;19;23;13 -38;'144;Sri Lanka;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22048;19411;20784;17232;19433;18601;16318 -38;'144;Sri Lanka;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1840;897;1094;876;1913;891;1190 -38;'144;Sri Lanka;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3518;5552;4787;3727;4361;4051;5831 -38;'144;Sri Lanka;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;576;1127;486;606;753;743;654 -38;'144;Sri Lanka;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14793;17739;12425;10861;14097;15003;9559 -38;'144;Sri Lanka;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29829;29030;30565;25057;33251;30479;29091 -38;'144;Sri Lanka;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52678;69397;49330;43283;55254;53976;39094 -38;'144;Sri Lanka;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20239;21873;28454;24879;28108;28845;23979 -276;'729;Sudan;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;223490;202653;292202;237043;197691;238757;155867 -276;'729;Sudan;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26437;11785;4343;5683;3347;1618;2888 -276;'729;Sudan;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105116.14;180006.14;200841.14;118251;123892;126241;115432;194027;160515;120466;112778;59224 -276;'729;Sudan;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2978;1167;2344;20232;13474;25693;10491;3929;5051;3294;1539;2628 -276;'729;Sudan;1861;Roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15686000;15841000;16205000;16368000;16470000;16574000;16683000;16740393;16740393;16740393;16740393;16740393 -276;'729;Sudan;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;795;795;795;22166;22351;772;924;60;3;137;35;90 -276;'729;Sudan;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110;110;110;3365;3352;315;231;13;4;250;15;9 -276;'729;Sudan;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6099;6099;6099;35314;20718;34750;10715;371;119;765;315;712 -276;'729;Sudan;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;903;903;903;18002;10639;19006;5635;215;66;285;101;308 -276;'729;Sudan;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -276;'729;Sudan;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;499;142;60;0;7;35;90 -276;'729;Sudan;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117;31;13;0;7;15;9 -276;'729;Sudan;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;163;41 -276;'729;Sudan;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;31;31 -276;'729;Sudan;1863;Roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15686000;15841000;16205000;16368000;16470000;16574000;16683000;16740393;16740393;16740393;16740393;16740393 -276;'729;Sudan;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;273;782;0;3;130;0;0 -276;'729;Sudan;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;198;200;0;4;243;0;0 -276;'729;Sudan;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34750;10715;371;119;765;152;671 -276;'729;Sudan;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19006;5635;215;66;285;70;277 -276;'729;Sudan;1864;Wood fuel;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14734000;14889000;15048000;15211000;15313000;15417000;15526000;15583393;15583393;15583393;15583393;15583393 -276;'729;Sudan;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;676;676;676;20819;20819;;;;;;; -276;'729;Sudan;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;62;62;3107;3107;;;;;;; -276;'729;Sudan;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5899;5899;5899;852;852;;;;;;;63 -276;'729;Sudan;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;878;878;878;136;136;;;;;;;14 -276;'729;Sudan;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -276;'729;Sudan;1628;Wood fuel, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14734000;14889000;15048000;15211000;15313000;15417000;15526000;15583393;15583393;15583393;15583393;15583393 -276;'729;Sudan;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63 -276;'729;Sudan;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14 -276;'729;Sudan;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;676;676;676;20819;20819;;;;;;; -276;'729;Sudan;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;62;62;3107;3107;;;;;;; -276;'729;Sudan;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5899;5899;5899;852;852;;;;;;; -276;'729;Sudan;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;878;878;878;136;136;;;;;;; -276;'729;Sudan;1865;Industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;952000;952000;1157000;1157000;1157000;1157000;1157000;1157000;1157000;1157000;1157000;1157000 -276;'729;Sudan;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119;119;119;1347;1532;772;924;60;3;137;35;90 -276;'729;Sudan;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;48;48;258;245;315;231;13;4;250;15;9 -276;'729;Sudan;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;200;34462;19866;34750;10715;371;119;765;315;649 -276;'729;Sudan;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;25;17866;10503;19006;5635;215;66;285;101;294 -276;'729;Sudan;1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -276;'729;Sudan;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;44;44;1016;820;499;142;60;0;7;35;90 -276;'729;Sudan;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;145;118;117;31;13;0;7;15;9 -276;'729;Sudan;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;168;168;168;0;0;0;0;0;0;0;163;41 -276;'729;Sudan;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;0;0;0;0;0;0;0;31;31 -276;'729;Sudan;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;44;44;1016;820;499;142;60;0;7;35;90 -276;'729;Sudan;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;145;118;117;31;13;0;7;15;9 -276;'729;Sudan;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;168;168;168;0;0;0;0;0;0;0;163;41 -276;'729;Sudan;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;0;0;0;0;0;0;0;31;31 -276;'729;Sudan;1867;Industrial roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;952000;952000;1157000;1157000;1157000;1157000;1157000;1157000;1157000;1157000;1157000;1157000 -276;'729;Sudan;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;75;75;331;712;273;782;0;3;130;0;0 -276;'729;Sudan;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33;33;113;127;198;200;0;4;243;0;0 -276;'729;Sudan;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;32;32;34462;19866;34750;10715;371;119;765;152;608 -276;'729;Sudan;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;17866;10503;19006;5635;215;66;285;70;263 -276;'729;Sudan;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;75;75;133;169;219;308;0;0;0;0;0 -276;'729;Sudan;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33;33;21;30;167;157;0;0;0;0;0 -276;'729;Sudan;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;32;32;34462;19866;34750;10715;371;119;765;46;608 -276;'729;Sudan;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;17866;10503;19006;5635;215;66;285;33;263 -276;'729;Sudan;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;198;543;54;474;0;3;130;0;0 -276;'729;Sudan;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92;97;31;43;0;4;243;0;0 -276;'729;Sudan;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;106;0 -276;'729;Sudan;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;37;0 -276;'729;Sudan;1868;Sawlogs and veneer logs;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;155000;155000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000 -276;'729;Sudan;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -276;'729;Sudan;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;155000;155000;360000;360000;360000;360000;360000;360000;360000;360000;360000;360000 -276;'729;Sudan;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;301000;301000;301000;301000;301000;301000;301000;301000;301000;301000;301000;301000 -276;'729;Sudan;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;301000;301000;301000;301000;301000;301000;301000;301000;301000;301000;301000;301000 -276;'729;Sudan;1871;Other industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;496000;496000;496000;496000;496000;496000;496000;496000;496000;496000;496000;496000 -276;'729;Sudan;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;496000;496000;496000;496000;496000;496000;496000;496000;496000;496000;496000;496000 -276;'729;Sudan;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;588000;588000;588000;588000;588000;588000;588000;588000;588000;588000;588000;588000 -276;'729;Sudan;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;7;7;7;7;17;27;86;2;7 -276;'729;Sudan;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.14;0.14;0.14;7;7;7;7;49;126;78;8;6 -276;'729;Sudan;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6556;132;2000;200;200;200;200;4704;2776;1727;1330;1710 -276;'729;Sudan;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1866;55;800;42;42;42;42;1576;879;581;521;1192 -276;'729;Sudan;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;307000;489000;489000;489000;489000;489000;489000;489000;489000;489000;489000 -276;'729;Sudan;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;18;18;0.03;0.03;0.03;0.03;1386;442;8;40;2623 -276;'729;Sudan;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;7;7;2;2;2;2;134;64;11;36;267 -276;'729;Sudan;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45 -276;'729;Sudan;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4 -276;'729;Sudan;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;201000;383000;383000;383000;383000;383000;383000;383000;383000;383000;383000 -276;'729;Sudan;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;18;18;0.03;0.03;0.03;0.03;1380;436;2;34;2620 -276;'729;Sudan;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;7;7;2;2;2;2;134;64;11;36;267 -276;'729;Sudan;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000;106000 -276;'729;Sudan;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;3 -276;'729;Sudan;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -276;'729;Sudan;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45 -276;'729;Sudan;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4 -276;'729;Sudan;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;0;43;0;0;0;0;0;0;0;210;309 -276;'729;Sudan;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;0;25;0;0;0;0;0;0;0;69;117 -276;'729;Sudan;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;0;43;0;0;0;0;0;0;0;0;0 -276;'729;Sudan;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;0;25;0;0;0;0;0;0;0;0;0 -276;'729;Sudan;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;210;309 -276;'729;Sudan;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;117 -276;'729;Sudan;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32000;28000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000 -276;'729;Sudan;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41918;63165;92165;64282;75514;108468;76336;84710;89482;17450;30819;20056 -276;'729;Sudan;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22318;34097;49097;15242;17809;26345;20068;21791;23583;6389;11846;5395 -276;'729;Sudan;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;2896;4207;8828;6243;1015;330;229;99;39 -276;'729;Sudan;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;1363;1826;5291;3517;604;206;132;57;213 -276;'729;Sudan;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -276;'729;Sudan;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;165;165;165;62912;71346;106271;74336;79970;82173;16680;30238;19774 -276;'729;Sudan;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97;97;97;14619;16914;25342;18992;18833;19625;5962;11037;5219 -276;'729;Sudan;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;55;0;0;0;0;0;0 -276;'729;Sudan;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;23;0;0;0;0;0;0 -276;'729;Sudan;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32000;28000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000 -276;'729;Sudan;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41753;63000;92000;1370;4168;2197;2000;4740;7309;770;581;282 -276;'729;Sudan;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22221;34000;49000;623;895;1003;1076;2958;3958;427;809;176 -276;'729;Sudan;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;2896;4207;8773;6243;1015;330;229;99;39 -276;'729;Sudan;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;1363;1826;5268;3517;604;206;132;57;213 -276;'729;Sudan;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -276;'729;Sudan;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1823;100000;88000;1000;814;1000;2091;36;26;13;13;26 -276;'729;Sudan;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;553;33000;30000;455;525;1422;854;27;50;8;17;17 -276;'729;Sudan;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -276;'729;Sudan;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -276;'729;Sudan;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -276;'729;Sudan;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15077;29778;77488;41021;42595;49945;42543;100327;105014;93946;41193;35300 -276;'729;Sudan;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4803;9995;25426;14263;13890;13906;12508;29448;30746;27324;15303;10477 -276;'729;Sudan;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;0;1;0;0;0;0;315 -276;'729;Sudan;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;1;0;0;0;0;105 -276;'729;Sudan;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -276;'729;Sudan;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2976;17076;22070;11859;11747;19413;12011;9395;16397;14871;9090;5402 -276;'729;Sudan;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;971;6000;8000;6221;5392;5619;4221;3535;6494;5869;4223;2251 -276;'729;Sudan;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;0;1;0;0;0;0;0 -276;'729;Sudan;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;1;0;0;0;0;0 -276;'729;Sudan;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -276;'729;Sudan;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;174;174;39926;38;38;38;38;11437;679;166;690;199 -276;'729;Sudan;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;37;12997;21;21;21;21;2413;871;355;440;310 -276;'729;Sudan;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4;285;233;9;1;197 -276;'729;Sudan;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;103;56;5;0;96 -276;'729;Sudan;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11923;12524;15488;29120;30806;30490;30490;79210;87705;78900;31412;29502 -276;'729;Sudan;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3792;3955;4426;8018;8474;8263;8263;23397;23325;21095;10640;7820 -276;'729;Sudan;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;315 -276;'729;Sudan;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105 -276;'729;Sudan;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;224;224;10000;10000;10000;10000;10000;15827;12753;11137;1279;6776 -276;'729;Sudan;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;60;2600;2600;2600;2600;2600;6259;4344;3509;616;1352 -276;'729;Sudan;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2 -276;'729;Sudan;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1 -276;'729;Sudan;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11160;11160;5000;17555;17555;17555;17555;57124;67099;66701;29034;22486 -276;'729;Sudan;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3520;3520;1600;4846;4846;4846;4846;14964;16430;17254;9662;6367 -276;'729;Sudan;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;248 -276;'729;Sudan;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74 -276;'729;Sudan;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;539;1140;488;1565;3251;2935;2935;6259;7853;1062;1099;240 -276;'729;Sudan;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;212;375;226;572;1028;817;817;2174;2551;332;362;101 -276;'729;Sudan;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65 -276;'729;Sudan;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30 -276;'729;Sudan;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000 -276;'729;Sudan;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;20516;15044;48;48;48;48;104;46;59;118;245 -276;'729;Sudan;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;30017;22333;33;33;33;33;94;22;96;316;380 -276;'729;Sudan;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1393;1393;4018;6436;4306;11510;6570;4856;1639;748;2240;2858 -276;'729;Sudan;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94;94;526;606;749;1136;1078;628;168;157;499;426 -276;'729;Sudan;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;20506;15006;7;7;7;7;7;7;58;115;81 -276;'729;Sudan;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;30011;22311;13;13;13;13;13;13;96;316;348 -276;'729;Sudan;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;6;6;6;114;80 -276;'729;Sudan;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;11;11;11;11;11;11;231;263 -276;'729;Sudan;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;6;6;6;114;80 -276;'729;Sudan;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;11;11;11;11;11;11;231;263 -276;'729;Sudan;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;6;6;6;6;6 -276;'729;Sudan;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;11;11;11;11;11;11;11;11 -276;'729;Sudan;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;26 -276;'729;Sudan;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;181;39 -276;'729;Sudan;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;48 -276;'729;Sudan;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;213 -276;'729;Sudan;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;20500;15000;1;1;1;1;1;1;52;1;1 -276;'729;Sudan;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;30000;22300;2;2;2;2;2;2;85;85;85 -276;'729;Sudan;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000 -276;'729;Sudan;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;10;38;41;41;41;41;97;39;1;3;164 -276;'729;Sudan;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;6;22;20;20;20;20;81;9;0;0;32 -276;'729;Sudan;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1393;1393;4018;6436;4306;11510;6570;4856;1639;748;2240;2858 -276;'729;Sudan;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94;94;526;606;749;1136;1078;628;168;157;499;426 -276;'729;Sudan;1876;Paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000 -276;'729;Sudan;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84329;75117;80316;112409;120584;119632;106593;103914;114843;64203;65341;41165 -276;'729;Sudan;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77202;72780;73843;84884;88274;84211;81729;142471;105920;86310;85168;42556 -276;'729;Sudan;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1201;1201;1201;554;554;554;554;409;2459;2251;319;491 -276;'729;Sudan;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107;107;107;218;218;218;218;906;3732;2139;361;380 -276;'729;Sudan;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43590;34800;44399;47170;55345;54393;41354;40366;26121;23972;21520;22774 -276;'729;Sudan;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44279;35600;41363;38810;42200;38137;35655;59582;21133;19395;25606;24039 -276;'729;Sudan;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;209;209;209;81;81;81;81;83;0;28;4;4 -276;'729;Sudan;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;26;116;116;116;116;655;0;25;7;7 -276;'729;Sudan;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12875;20000;12500;8383;9731;9758;4232;5049;1034;1716;126;365 -276;'729;Sudan;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13019;20200;11816;8490;9689;5032;3379;2700;381;878;140;292 -276;'729;Sudan;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -276;'729;Sudan;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -276;'729;Sudan;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30715;14800;31899;38787;45614;44635;37122;35317;25087;22256;21394;22409 -276;'729;Sudan;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31260;15400;29547;30320;32511;33105;32276;56882;20752;18517;25466;23747 -276;'729;Sudan;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;209;209;209;81;81;81;81;83;0;28;4;4 -276;'729;Sudan;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;26;116;116;116;116;655;0;25;7;7 -276;'729;Sudan;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;558;5000;10400;10402;9985;8115;7906;11105;6806;4376;67;257 -276;'729;Sudan;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;612;5300;10800;7898;6714;6011;6864;11793;5873;3290;305;332 -276;'729;Sudan;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4 -276;'729;Sudan;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7 -276;'729;Sudan;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20778;7800;17161;22261;29105;28653;23600;12315;13179;11851;17479;14769 -276;'729;Sudan;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21108;8000;14002;17119;21031;21110;20345;33047;10837;9491;20091;18437 -276;'729;Sudan;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;209;209;209;81;81;81;81;83;0;28;0;0 -276;'729;Sudan;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;26;116;116;116;116;655;0;25;0;0 -276;'729;Sudan;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9379;2000;4338;6124;6524;7867;5616;11897;5102;6029;3848;7383 -276;'729;Sudan;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9540;2100;4745;5303;4766;5984;5067;12042;4042;5736;5070;4978 -276;'729;Sudan;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000 -276;'729;Sudan;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40739;40317;35917;65239;65239;65239;65239;63548;88722;40231;43821;18391 -276;'729;Sudan;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32923;37180;32480;46074;46074;46074;46074;82889;84787;66915;59562;18517 -276;'729;Sudan;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;992;992;992;473;473;473;473;326;2459;2223;315;487 -276;'729;Sudan;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;81;81;102;102;102;102;251;3732;2114;354;373 -276;'729;Sudan;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;917;917;375;375;375;375;874;1306;1036;1221;796 -276;'729;Sudan;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;980;980;432;432;432;432;1154;1842;1597;2760;1667 -276;'729;Sudan;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;93;93;93 -276;'729;Sudan;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;35;35;35 -276;'729;Sudan;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39587;33000;30000;62996;62996;62996;62996;61047;86119;37051;41696;16916 -276;'729;Sudan;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30498;22700;20900;41679;41679;41679;41679;74959;78241;57341;53429;14601 -276;'729;Sudan;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;989;989;989;470;470;470;470;323;2456;2118;210;391 -276;'729;Sudan;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;80;80;101;101;101;101;250;3731;2014;254;337 -276;'729;Sudan;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15112;19000;10000;5823;5823;5823;5823;44627;69881;27551;27464;12151 -276;'729;Sudan;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9467;12000;6300;4284;4284;4284;4284;23325;36781;20881;23846;6883 -276;'729;Sudan;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;141;141;141;310;310;310;310;30;1740;93;82;48 -276;'729;Sudan;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;31;31;31;31;17;908;62;88;34 -276;'729;Sudan;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1506;5000;5500;14140;14140;14140;14140;14533;14233;8254;13108;4000 -276;'729;Sudan;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1163;3800;4200;11707;11707;11707;11707;49878;39376;27480;27644;6481 -276;'729;Sudan;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109;109;109;100;100;100;100;0;255;1637;0;0 -276;'729;Sudan;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;10;10;0;2481;1586;0;0 -276;'729;Sudan;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22968;5000;4500;42596;42596;42596;42596;1762;1983;1219;1115;758 -276;'729;Sudan;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19857;4200;3800;25311;25311;25311;25311;1662;2024;8954;1895;1230 -276;'729;Sudan;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;739;739;739;0;0;0;0;233;401;328;68;283 -276;'729;Sudan;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;50;50;0;0;0;0;173;282;306;106;243 -276;'729;Sudan;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;4000;10000;437;437;437;437;125;22;27;9;7 -276;'729;Sudan;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;2700;6600;377;377;377;377;94;60;26;44;7 -276;'729;Sudan;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;60;60;60;60;60;60;60;60 -276;'729;Sudan;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;60;60;60;60;60;60;60;60 -276;'729;Sudan;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000 -276;'729;Sudan;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1112;6400;5000;1868;1868;1868;1868;1627;1297;2144;904;679 -276;'729;Sudan;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2377;13500;10600;3963;3963;3963;3963;6776;4704;7977;3373;2249 -276;'729;Sudan;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3;3;12;12;3 -276;'729;Sudan;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;65;65;1 -276;'729;Sudan;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53074;47484;33248;17370;18983;55643;51377 -276;'729;Sudan;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;15;127;18;19;33;142 -276;'729;Sudan;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;10;109;85;16;55;32 -276;'729;Sudan;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;5;1;1;1;1;6 -276;'729;Sudan;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;0;24;45;9;7;26 -276;'729;Sudan;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;10;85;40;7;48;6 -276;'729;Sudan;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;5;1;1;1;1;6 -276;'729;Sudan;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;549;552;712;191;979;673;1163 -276;'729;Sudan;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;1;0;0 -276;'729;Sudan;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1428;1634;317;227;345;444;101 -276;'729;Sudan;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;11;0;1;6;0 -276;'729;Sudan;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2278;1473;1877;1602;1905;3383;1428 -276;'729;Sudan;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1 -276;'729;Sudan;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2 -276;'729;Sudan;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2 -276;'729;Sudan;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35 -276;'729;Sudan;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33 -276;'729;Sudan;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31104;34448;24912;14284;14284;40607;40389 -276;'729;Sudan;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;1;113;11;15;25;135 -276;'729;Sudan;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8450;5000;5000;43;257;1511;478 -276;'729;Sudan;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9240;4367;321;938;1197;8970;7786 -276;'729;Sudan;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;5;0;0;0 -276;'729;Sudan;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44175;39737;64927;59158;58242;70336;45266 -276;'729;Sudan;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;730;1279;287;614;34;46;118 -276;'729;Sudan;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;37;770;436;234;254;172 -276;'729;Sudan;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -276;'729;Sudan;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7109;3463;4577;4123;3440;3563;2650 -276;'729;Sudan;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;; -276;'729;Sudan;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2480;1895;3001;2706;2951;2881;2572 -276;'729;Sudan;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;1;16;1;0;0 -276;'729;Sudan;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22105;23766;43661;39976;36503;40680;22075 -276;'729;Sudan;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;17;3;64;10;40;73 -276;'729;Sudan;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12461;10576;12918;11917;15114;22958;17797 -276;'729;Sudan;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;713;1257;283;534;23;6;45 -206;'736;Sudan (former);1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;4740;5440;7095;7098;4393;7804;8131;8798;6968;9152;12409;7793;8575;21419;23814;21148;17645;18257;15997;13399;49365;26160;22525;23063;28767;24135;26034;50433;15920;15041;10356;11636;11238;13113;21283;31370;34148;37562;16920;17780;16489;10797;34429;45527;42634;54896;91004;106892;130496;138854;109339;;;;;;;;;;;; -206;'736;Sudan (former);1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;935;69;119;51;51;112;56;188;430;407;612;1105;1762;1762;1046;1272;2915;6189;7966;545;;;;;;;;;;;; -206;'736;Sudan (former);1861;Roundwood;5516;Production;m3;10473839;10672601;10867738;11089314;11279394;11477042;11691326;11911314;12153077;12397684;12519670;12931738;13588495;13593519;13588431;13353942;13290740;13789238;14645247;15066785;15399136;15322175;15633137;16234866;16896852;17055857;17271799;17778540;17738830;18095247;18270308;18045849;17983566;18125825;18262334;18360297;18381113;18552949;18721511;18853060;19044138;19241332;19444816;19654780;19871406;20074275;20283300;20498600;20720350;20948768;19792000;;;;;;;;;;;; -206;'736;Sudan (former);1861;Roundwood;5616;Import quantity;m3;400;1300;1800;200;200;1000;1000;500;;;;;;;;;;;;;;;;;;;;;;;;;718;718;10618;10618;13918;13200;2871;110;110;110;113;126;126;60;3302;1766;1025;599;637;;;;;;;;;;;; -206;'736;Sudan (former);1861;Roundwood;5622;Import value;1000 USD;6;60;68;24;24;68;50;12;;;;;;;;;;;;;;;;;;;;;;;;;30;30;6830;5030;4738;4708;501;40;40;40;44;12;12;9;378;4693;165;129;121;;;;;;;;;;;; -206;'736;Sudan (former);1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;290;290;290;0;0;0;85;85;189;7778;2282;2282;376;679;2391;5661;9798;200;;;;;;;;;;;; -206;'736;Sudan (former);1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;41;41;0;0;0;19;19;57;50;322;322;97;449;1918;4546;5897;25;;;;;;;;;;;; -206;'736;Sudan (former);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;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;0;;;;;;;;;;;; -206;'736;Sudan (former);1863;Roundwood, non-coniferous;5516;Production;m3;10473839;10672601;10867738;11089314;11279394;11477042;11691326;11911314;12153077;12397684;12519670;12931738;13588495;13593519;13588431;13353942;13290740;13789238;14645247;15066785;15399136;15322175;15633137;16234866;16896852;17055857;17271799;17778540;17738830;18095247;18270308;18045849;17983566;18115825;18252334;18350297;18371113;18542949;18711511;18843060;19034138;19231332;19434816;19644780;19861406;20064275;20273300;20488600;20710350;20938768;19792000;;;;;;;;;;;; -206;'736;Sudan (former);1864;Wood fuel;5516;Production;m3;9573839;9753601;9936738;10123314;10313394;10507042;10704326;10905314;11110077;11318684;11372670;11745738;12368495;12369519;12295431;12085942;11978740;12430238;13250247;13632785;13927136;13811175;14083137;14646866;15270852;15392857;15572799;16043540;15965830;16286247;16521308;16261849;16163566;16163825;16263334;16322297;16304113;16421949;16548511;16680060;16871138;17068332;17271816;17481780;17698406;17901275;18110300;18325600;18547350;18775768;18966000;;;;;;;;;;;; -206;'736;Sudan (former);1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;718;718;718;718;718;0;0;0;0;0;0;0;0;1;166;288;288;288;518;;;;;;;;;;;; -206;'736;Sudan (former);1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30;30;30;30;0;0;0;0;0;0;0;0;0;33;40;40;40;73;;;;;;;;;;;; -206;'736;Sudan (former);1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;38;38;38;103;103;103;127;127;127;127;17;;;;;;;;;;;;; -206;'736;Sudan (former);1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;5;5;5;7;7;7;27;27;27;27;9;;;;;;;;;;;;; -206;'736;Sudan (former);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;;;;;;;;;;;; -206;'736;Sudan (former);1628;Wood fuel, non-coniferous;5516;Production;m3;9573839;9753601;9936738;10123314;10313394;10507042;10704326;10905314;11110077;11318684;11372670;11745738;12368495;12369519;12295431;12085942;11978740;12430238;13250247;13632785;13927136;13811175;14083137;14646866;15270852;15392857;15572799;16043540;15965830;16286247;16521308;16261849;16163566;16163825;16263334;16322297;16304113;16421949;16548511;16680060;16871138;17068332;17271816;17481780;17698406;17901275;18110300;18325600;18547350;18775768;18966000;;;;;;;;;;;; -206;'736;Sudan (former);1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;718;718;718;718;718;0;0;0;0;0;0;0;0;1;166;288;288;288;518;;;;;;;;;;;; -206;'736;Sudan (former);1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30;30;30;30;0;0;0;0;0;0;0;0;0;33;40;40;40;73;;;;;;;;;;;; -206;'736;Sudan (former);1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;38;38;38;103;103;103;127;127;127;127;17;;;;;;;;;;;;; -206;'736;Sudan (former);1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;5;5;5;7;7;7;27;27;27;27;9;;;;;;;;;;;;; -206;'736;Sudan (former);1865;Industrial roundwood;5516;Production;m3;900000;919000;931000;966000;966000;970000;987000;1006000;1043000;1079000;1147000;1186000;1220000;1224000;1293000;1268000;1312000;1359000;1395000;1434000;1472000;1511000;1550000;1588000;1626000;1663000;1699000;1735000;1773000;1809000;1749000;1784000;1820000;1962000;1999000;2038000;2077000;2131000;2173000;2173000;2173000;2173000;2173000;2173000;2173000;2173000;2173000;2173000;2173000;2173000;826000;;;;;;;;;;;; -206;'736;Sudan (former);1865;Industrial roundwood;5616;Import quantity;m3;400;1300;1800;200;200;1000;1000;500;;;;;;;;;;;;;;;;;;;;;;;;;;0;9900;9900;13200;13200;2871;110;110;110;113;126;126;59;3136;1478;737;311;119;;;;;;;;;;;; -206;'736;Sudan (former);1865;Industrial roundwood;5622;Import value;1000 USD;6;60;68;24;24;68;50;12;;;;;;;;;;;;;;;;;;;;;;;;;;0;6800;5000;4708;4708;501;40;40;40;44;12;12;9;345;4653;125;89;48;;;;;;;;;;;; -206;'736;Sudan (former);1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;290;290;290;0;0;0;47;47;151;7675;2179;2179;249;552;2264;5534;9781;200;;;;;;;;;;;; -206;'736;Sudan (former);1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;41;41;0;0;0;14;14;52;43;315;315;70;422;1891;4519;5888;25;;;;;;;;;;;; -206;'736;Sudan (former);1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;0;;;;;;;;;;;; -206;'736;Sudan (former);1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;3200;3200;2846;17;17;17;17;110;110;17;3044;1388;676;209;44;;;;;;;;;;;; -206;'736;Sudan (former);1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;808;808;491;2;2;2;2;7;7;1;186;85;41;13;15;;;;;;;;;;;; -206;'736;Sudan (former);1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;38;38;38;38;38;362;139;168;;;;;;;;;;;; -206;'736;Sudan (former);1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;2;2;2;2;2;19;7;11;;;;;;;;;;;; -206;'736;Sudan (former);1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;3200;3200;2846;17;17;17;17;110;110;17;3044;1388;676;209;44;;;;;;;;;;;; -206;'736;Sudan (former);1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;808;808;491;2;2;2;2;7;7;1;186;85;41;13;15;;;;;;;;;;;; -206;'736;Sudan (former);1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;38;38;38;38;38;362;139;168;;;;;;;;;;;; -206;'736;Sudan (former);1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;2;2;2;2;2;19;7;11;;;;;;;;;;;; -206;'736;Sudan (former);1867;Industrial roundwood, non-coniferous;5516;Production;m3;900000;919000;931000;966000;966000;970000;987000;1006000;1043000;1079000;1147000;1186000;1220000;1224000;1293000;1268000;1312000;1359000;1395000;1434000;1472000;1511000;1550000;1588000;1626000;1663000;1699000;1735000;1773000;1809000;1749000;1784000;1820000;1952000;1989000;2028000;2067000;2121000;2163000;2163000;2163000;2163000;2163000;2163000;2163000;2163000;2163000;2163000;2163000;2163000;826000;;;;;;;;;;;; -206;'736;Sudan (former);1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9900;9900;10000;10000;25;93;93;93;96;16;16;42;92;90;61;102;75;;;;;;;;;;;; -206;'736;Sudan (former);1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6800;5000;3900;3900;10;38;38;38;42;5;5;8;159;4568;84;76;33;;;;;;;;;;;; -206;'736;Sudan (former);1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;290;290;290;0;0;0;47;47;151;7675;2141;2141;211;514;2226;5172;9642;32;;;;;;;;;;;; -206;'736;Sudan (former);1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;41;41;0;0;0;14;14;52;43;313;313;68;420;1889;4500;5881;14;;;;;;;;;;;; -206;'736;Sudan (former);1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;4;3;25;64;75;;;;;;;;;;;; -206;'736;Sudan (former);1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;1;65;16;55;33;;;;;;;;;;;; -206;'736;Sudan (former);1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;290;290;290;0;0;0;47;47;151;7675;2141;2141;191;354;2066;5162;9615;32;;;;;;;;;;;; -206;'736;Sudan (former);1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;41;41;0;0;0;14;14;52;43;313;313;62;264;1733;4496;5847;14;;;;;;;;;;;; -206;'736;Sudan (former);1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9900;9900;10000;10000;25;93;93;93;93;13;13;39;88;87;36;38;;;;;;;;;;;;; -206;'736;Sudan (former);1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6800;5000;3900;3900;10;38;38;38;38;1;1;4;158;4503;68;21;;;;;;;;;;;;; -206;'736;Sudan (former);1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;160;160;10;27;;;;;;;;;;;;; -206;'736;Sudan (former);1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;156;156;4;34;;;;;;;;;;;;; -206;'736;Sudan (former);1868;Sawlogs and veneer logs;5516;Production;m3;47000;48000;42000;59000;40000;24000;20000;17000;30000;40000;80000;88000;90000;60000;93000;30000;35000;41000;36000;33000;29000;26000;23000;20000;17000;14000;11000;8000;7000;5000;5000;5000;5000;110000;110000;110000;110000;123000;123000;123000;123000;123000;123000;123000;123000;123000;123000;123000;123000;123000;150000;;;;;;;;;;;; -206;'736;Sudan (former);1868;Sawlogs and veneer logs;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -206;'736;Sudan (former);1868;Sawlogs and veneer logs;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -206;'736;Sudan (former);1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;0;;;;;;;;;;;; -206;'736;Sudan (former);1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -206;'736;Sudan (former);1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -206;'736;Sudan (former);1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;47000;48000;42000;59000;40000;24000;20000;17000;30000;40000;80000;88000;90000;60000;93000;30000;35000;41000;36000;33000;29000;26000;23000;20000;17000;14000;11000;8000;7000;5000;5000;5000;5000;100000;100000;100000;100000;113000;113000;113000;113000;113000;113000;113000;113000;113000;113000;113000;113000;113000;150000;;;;;;;;;;;; -206;'736;Sudan (former);2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;216000;;;;;;;;;;;; -206;'736;Sudan (former);1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;216000;;;;;;;;;;;; -206;'736;Sudan (former);1871;Other industrial roundwood;5516;Production;m3;853000;871000;889000;907000;926000;946000;967000;989000;1013000;1039000;1067000;1098000;1130000;1164000;1200000;1238000;1277000;1318000;1359000;1401000;1443000;1485000;1527000;1568000;1609000;1649000;1688000;1727000;1766000;1804000;1744000;1779000;1815000;1852000;1889000;1928000;1967000;2008000;2050000;2050000;2050000;2050000;2050000;2050000;2050000;2050000;2050000;2050000;2050000;2050000;460000;;;;;;;;;;;; -206;'736;Sudan (former);1871;Other industrial roundwood;5616;Import quantity;m3;400;1300;1800;200;200;1000;1000;500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -206;'736;Sudan (former);1871;Other industrial roundwood;5622;Import value;1000 USD;6;60;68;24;24;68;50;12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -206;'736;Sudan (former);1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;853000;871000;889000;907000;926000;946000;967000;989000;1013000;1039000;1067000;1098000;1130000;1164000;1200000;1238000;1277000;1318000;1359000;1401000;1443000;1485000;1527000;1568000;1609000;1649000;1688000;1727000;1766000;1804000;1744000;1779000;1815000;1852000;1889000;1928000;1967000;2008000;2050000;2050000;2050000;2050000;2050000;2050000;2050000;2050000;2050000;2050000;2050000;2050000;460000;;;;;;;;;;;; -206;'736;Sudan (former);1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;400;1300;1800;200;200;1000;1000;500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -206;'736;Sudan (former);1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;6;60;68;24;24;68;50;12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -206;'736;Sudan (former);1630;Wood charcoal;5510;Production;t;213018;219992;227195;234633;242315;250248;258441;266902;275641;284665;290362;305639;328947;333928;336692;332591;331654;348461;377523;392864;408310;410371;425812;451916;481050;495955;513695;543361;552946;578945;601241;603776;613406;627697;646964;663760;677513;698647;720632;743342;768654;794827;821892;849878;878817;906495;935000;964500;994871;1026204;832000;;;;;;;;;;;; -206;'736;Sudan (former);1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;16;16;16;16;16;16;16;16;2;29;113;24;26;;;;;;;;;;;; -206;'736;Sudan (former);1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;2;2;2;2;2;2;2;2;0;21;36;5;8;;;;;;;;;;;; -206;'736;Sudan (former);1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;432;432;432;709;709;709;698;292;496;960;570;343;;;;;;;;;;;; -206;'736;Sudan (former);1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98;98;98;299;299;299;224;108;113;307;203;145;;;;;;;;;;;; -206;'736;Sudan (former);1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;144;144;144;48;48;32;32;40;35;489;102;67;;;;;;;;;;;;; -206;'736;Sudan (former);1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;6;6;6;5;5;5;5;14;19;233;90;32;;;;;;;;;;;;; -206;'736;Sudan (former);1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;36;36;36;36;5;5;5;;;;;;;;;;;;; -206;'736;Sudan (former);1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;12;12;1;1;1;;;;;;;;;;;;; -206;'736;Sudan (former);1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3500;3500;0;0;144;144;144;35;35;19;19;27;30;201;29;31;;;;;;;;;;;;; -206;'736;Sudan (former);1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1359;1359;0;0;6;6;6;1;1;1;1;10;18;178;66;6;;;;;;;;;;;;; -206;'736;Sudan (former);1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;36;36;36;36;5;5;5;;;;;;;;;;;;; -206;'736;Sudan (former);1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;12;12;1;1;1;;;;;;;;;;;;; -206;'736;Sudan (former);1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;138;138;138;138;0;0;0;0;0;13;13;13;13;13;5;288;73;36;;;;;;;;;;;;; -206;'736;Sudan (former);1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;0;0;0;0;0;4;4;4;4;4;1;55;24;26;;;;;;;;;;;;; -206;'736;Sudan (former);1872;Sawnwood;5516;Production;m3;20300;23500;25900;34000;22500;9500;9300;9400;21100;25200;17500;20500;22000;20100;15000;10000;15700;15800;9800;6400;6400;6400;12500;12500;12500;12500;12500;12500;5300;4400;4400;4700;4700;44700;44700;44700;44700;50700;50700;50700;50700;50700;50700;50700;50700;50700;50700;50700;44700;80700;73700;;;;;;;;;;;; -206;'736;Sudan (former);1872;Sawnwood;5616;Import quantity;m3;57300;77550;94000;87300;44700;59500;64900;77200;46500;72800;86300;47000;47000;42000;42000;35000;23000;42500;30900;15100;80300;49600;21250;21250;58150;79650;54350;113150;44350;16050;10350;35462;31783;34862;27100;37100;39007;38000;42596;43700;43500;53352;42699;73826;55826;87614;67333;104329;56601;94026;45213;;;;;;;;;;;; -206;'736;Sudan (former);1872;Sawnwood;5622;Import value;1000 USD;2864;4079;4995;4899;2694;3390;3968;4885;3323;5660;7254;2780;2780;10608;10608;10131;6733;9043;7144;4482;24220;9130;6326;6326;7714;12134;9900;22853;8628;5316;1330;6028;5083;6456;8968;13763;14137;16372;6761;6179;5087;6802;7791;13472;10579;18438;19655;28953;15798;22379;26026;;;;;;;;;;;; -206;'736;Sudan (former);1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;176;0;0;0;0;0;0;0;1530;1414;1397;1397;175;37;304;1402;2250;17;;;;;;;;;;;; -206;'736;Sudan (former);1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;68;0;0;0;0;0;0;0;167;380;377;377;137;23;220;593;678;8;;;;;;;;;;;; -206;'736;Sudan (former);1632;Sawnwood, coniferous;5516;Production;m3;5650;6050;6150;11800;7550;3000;2850;2850;5600;7500;3550;5000;5000;5000;5000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;700;;;;;;;;;;;; -206;'736;Sudan (former);1632;Sawnwood, coniferous;5616;Import quantity;m3;57050;77300;92500;86800;43700;55550;51200;75100;40100;69800;85500;46200;46200;41200;41200;29100;17100;36600;25000;9200;79900;49350;21000;21000;57900;79400;54100;112900;44100;15800;10100;35462;31221;34827;20000;30000;39000;38000;42061;43600;43200;53143;42100;72800;54800;87000;59300;99900;51700;85200;869;;;;;;;;;;;; -206;'736;Sudan (former);1632;Sawnwood, coniferous;5622;Import value;1000 USD;2857;4072;4865;4856;2606;3191;3362;4725;2777;5376;7186;2712;2712;10540;10540;8696;5298;7608;5709;3047;24119;9065;6261;6261;7649;12069;9835;22788;8563;5251;1265;6028;4847;6448;7049;11844;14132;16372;6681;6159;5014;6679;7316;13159;10266;17746;16973;25594;11383;19815;520;;;;;;;;;;;; -206;'736;Sudan (former);1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1516;1317;350;350;1;1;1;1361;1361;;;;;;;;;;;;; -206;'736;Sudan (former);1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;160;314;59;59;1;1;1;567;567;;;;;;;;;;;;; -206;'736;Sudan (former);1633;Sawnwood, non-coniferous;5516;Production;m3;14650;17450;19750;22200;14950;6500;6450;6550;15500;17700;13950;15500;17000;15100;10000;8000;13700;13800;7800;4400;4400;4400;10500;10500;10500;10500;10500;10500;3300;2400;2400;2700;2700;44000;44000;44000;44000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;44000;80000;73000;;;;;;;;;;;; -206;'736;Sudan (former);1633;Sawnwood, non-coniferous;5616;Import quantity;m3;250;250;1500;500;1000;3950;13700;2100;6400;3000;800;800;800;800;800;5900;5900;5900;5900;5900;400;250;250;250;250;250;250;250;250;250;250;0;562;35;7100;7100;7;0;535;100;300;209;599;1026;1026;614;8033;4429;4901;8826;44344;;;;;;;;;;;; -206;'736;Sudan (former);1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;7;7;130;43;88;199;606;160;546;284;68;68;68;68;68;1435;1435;1435;1435;1435;101;65;65;65;65;65;65;65;65;65;65;0;236;8;1919;1919;5;0;80;20;73;123;475;313;313;692;2682;3359;4415;2564;25506;;;;;;;;;;;; -206;'736;Sudan (former);1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;176;0;0;0;0;0;0;0;14;97;1047;1047;174;36;303;41;889;17;;;;;;;;;;;; -206;'736;Sudan (former);1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;68;0;0;0;0;0;0;0;7;66;318;318;136;22;219;26;111;8;;;;;;;;;;;; -206;'736;Sudan (former);1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;222;222;222;30;90;90;5;279;267;153;184;113;;;;;;;;;;;; -206;'736;Sudan (former);1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;71;71;12;70;70;4;237;204;158;101;81;;;;;;;;;;;; -206;'736;Sudan (former);1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;0;0;0;0;0;8;8;8;9;9;9;9;9;;;;;;;;;;;;; -206;'736;Sudan (former);1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;0;0;0;0;0;15;15;15;12;12;12;12;12;;;;;;;;;;;;; -206;'736;Sudan (former);1873;Wood-based panels;5516;Production;m3;;;;;;300;5000;5000;5000;4000;7000;7000;3500;3200;3500;4800;3500;4000;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;0;;;;;;;;;;;; -206;'736;Sudan (former);1873;Wood-based panels;5616;Import quantity;m3;600;500;5000;3600;4600;6276;1227;3469;4954;927;5022;3342;3342;7492;7597;4200;3500;3500;4100;4300;12000;12000;6500;6500;21200;12500;8600;8400;5100;4300;4200;8115;4624;3425;3800;3800;976;919;18975;7245;7245;5140;25250;25709;25709;46908;83141;57796;70429;107352;8470;;;;;;;;;;;; -206;'736;Sudan (former);1873;Wood-based panels;5622;Import value;1000 USD;96;77;570;476;505;761;218;568;684;161;873;590;590;1967;2068;2940;2439;2439;2191;2277;5666;5666;2743;2743;5933;3558;2680;2989;1351;1254;1120;2103;1240;1019;1047;1047;364;349;697;1471;1471;996;5420;7763;7763;11323;18989;16311;23276;21949;2168;;;;;;;;;;;; -206;'736;Sudan (former);1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;25;25;25;39;0;0;0;0;0;0;0;0;0;0;19;19;19;;;;;;;;;;;;; -206;'736;Sudan (former);1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;10;10;10;28;0;0;0;0;0;0;0;0;0;0;16;16;16;;;;;;;;;;;;; -206;'736;Sudan (former);1640;Plywood and LVL;5616;Import quantity;m3;600;500;1200;500;700;800;700;2100;1900;400;2600;2500;2500;1700;1700;1000;500;500;1100;1300;3800;3800;3900;3900;7400;3500;600;3400;1000;200;100;1272;383;477;200;200;400;400;560;1213;1213;20;32;1737;1737;7282;9272;12724;12348;22479;3167;;;;;;;;;;;; -206;'736;Sudan (former);1640;Plywood and LVL;5622;Import value;1000 USD;96;77;169;84;90;134;107;410;394;73;493;460;460;867;968;1148;574;574;326;412;2061;2061;1481;1481;2681;1157;292;1441;291;194;60;509;185;292;76;76;103;103;137;338;338;82;231;617;617;2634;3181;4872;4054;6996;472;;;;;;;;;;;; -206;'736;Sudan (former);1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;25;25;25;39;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;;;;;;; -206;'736;Sudan (former);1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;10;10;10;28;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;;;;;;; -206;'736;Sudan (former);1646;Particle board and OSB (1961-1994);5516;Production;m3;;;;;;300;5000;5000;5000;4000;7000;7000;3500;3200;3500;4800;3500;4000;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -206;'736;Sudan (former);1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2744;59;567;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -206;'736;Sudan (former);1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;591;17;166;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -206;'736;Sudan (former);1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;0;;;;;;;;;;;; -206;'736;Sudan (former);1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3600;3600;57;0;172;301;301;264;186;1916;1916;334;371;562;493;488;466;;;;;;;;;;;; -206;'736;Sudan (former);1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;971;971;15;0;79;69;69;127;66;314;314;144;357;293;6997;224;173;;;;;;;;;;;; -206;'736;Sudan (former);1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;35;35;35;35;35;44;7;45;61;15;;;;;;;;;;;;; -206;'736;Sudan (former);1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;11;5;11;28;1;;;;;;;;;;;;; -206;'736;Sudan (former);1874;Fibreboard;5616;Import quantity;m3;;;3800;3100;3900;5476;527;1369;3054;527;2422;842;842;5792;5897;3200;3000;3000;3000;3000;8200;8200;2600;2600;13800;9000;8000;5000;4100;4100;4100;4099;4182;2381;0;0;519;519;18243;5696;5696;4821;24997;22021;22021;39248;73491;44465;57527;84370;4837;;;;;;;;;;;; -206;'736;Sudan (former);1874;Fibreboard;5622;Import value;1000 USD;;;401;392;415;627;111;158;290;88;380;130;130;1100;1100;1792;1865;1865;1865;1865;3605;3605;1262;1262;3252;2401;2388;1548;1060;1060;1060;1003;1038;561;0;0;246;246;481;1058;1058;781;5117;6826;6826;8534;15446;11135;12197;14728;1523;;;;;;;;;;;; -206;'736;Sudan (former);1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;;;;;;;;;;;;; -206;'736;Sudan (former);1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;;;;;;;;;;;;; -206;'736;Sudan (former);1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;13609;5250;5250;4247;22857;10615;10615;17128;14948;8094;3527;3335;1347;;;;;;;;;;;; -206;'736;Sudan (former);1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;313;981;981;696;4278;4926;4926;5018;5295;2896;1520;1100;442;;;;;;;;;;;; -206;'736;Sudan (former);1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;;;;;;;;;;;;; -206;'736;Sudan (former);1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;;;;;;;;;;;;; -206;'736;Sudan (former);1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;300;4430;166;166;547;1983;10262;10262;21557;50771;35048;52568;79116;3440;;;;;;;;;;;; -206;'736;Sudan (former);1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;175;175;104;65;65;83;825;1755;1755;3380;8772;7971;10270;13080;1065;;;;;;;;;;;; -206;'736;Sudan (former);1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;171;0;0;204;204;204;280;280;27;157;1144;1144;563;7772;1323;1432;1919;50;;;;;;;;;;;; -206;'736;Sudan (former);1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;121;0;0;64;64;64;12;12;2;14;145;145;136;1379;268;407;548;16;;;;;;;;;;;; -206;'736;Sudan (former);1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;3800;3100;3900;5476;527;1369;3054;527;2422;842;842;5792;5897;3200;3000;3000;3000;3000;8200;8200;2600;2600;13800;9000;8000;5000;4100;4100;4100;4099;4099;2210;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -206;'736;Sudan (former);1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;401;392;415;627;111;158;290;88;380;130;130;1100;1100;1792;1865;1865;1865;1865;3605;3605;1262;1262;3252;2401;2388;1548;1060;1060;1060;1003;1003;440;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -206;'736;Sudan (former);1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;1000;9000;1000;1000;1000;1000;1000;1000;1000;1000;1000;10000;5000;5000;5000;6000;5000;5000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;;;;;;;;;;;; -206;'736;Sudan (former);1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;1899;2248;1490;2747;535;264;1000;5200;5200;1200;1200;3600;4200;;6500;2000;1200;1200;345;345;546;200;200;304;304;85;210;210;396;837;507;507;579;2464;956;1257;857;288;;;;;;;;;;;; -206;'736;Sudan (former);1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;414;516;294;623;180;37;102;1164;1164;242;242;409;487;;894;336;138;138;39;39;67;39;39;37;37;14;20;20;51;140;140;140;159;1439;917;1600;1361;267;;;;;;;;;;;; -206;'736;Sudan (former);1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;505;505;505;505;505;505;530;877;877;877;752;901;1562;2565;2763;;;;;;;;;;;; -206;'736;Sudan (former);1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;56;56;56;56;56;71;264;264;264;281;268;311;691;145;;;;;;;;;;;; -206;'736;Sudan (former);1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;4;4;2;2;2;2;17;239;239;119;478;645;1088;803;100;;;;;;;;;;;; -206;'736;Sudan (former);1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;3;3;4;4;4;4;23;110;110;103;503;807;1577;1354;160;;;;;;;;;;;; -206;'736;Sudan (former);1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;586;586;586;586;586;586;525;;;;;;;;;;;;; -206;'736;Sudan (former);1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;235;235;235;235;235;235;370;;;;;;;;;;;;; -206;'736;Sudan (former);1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;4;4;2;2;2;2;17;239;239;91;295;579;768;703;22;;;;;;;;;;;; -206;'736;Sudan (former);1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;3;3;4;4;4;4;23;110;110;79;286;706;1231;1192;30;;;;;;;;;;;; -206;'736;Sudan (former);1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;25;586;586;586;586;586;586;525;;;;;;;;;;;;; -206;'736;Sudan (former);1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;15;235;235;235;235;235;235;370;;;;;;;;;;;;; -206;'736;Sudan (former);1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;1;1;4;;;;;;;;;;;; -206;'736;Sudan (former);1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;8;5;5;7;;;;;;;;;;;; -206;'736;Sudan (former);1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;125;67;;;;;;;;;;;;; -206;'736;Sudan (former);1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;79;44;;;;;;;;;;;;; -206;'736;Sudan (former);1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;4;4;2;2;2;2;17;239;239;91;290;558;630;623;6;;;;;;;;;;;; -206;'736;Sudan (former);1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;3;3;4;4;4;4;23;110;110;79;271;670;1140;1136;11;;;;;;;;;;;; -206;'736;Sudan (former);1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;586;586;586;586;586;586;525;;;;;;;;;;;;; -206;'736;Sudan (former);1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;235;235;235;235;235;235;370;;;;;;;;;;;;; -206;'736;Sudan (former);1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;6;;;;;;;;;;;; -206;'736;Sudan (former);1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;11;;;;;;;;;;;; -206;'736;Sudan (former);1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;68;68;68;158;517;22;15;;;;;;;;;;;;; -206;'736;Sudan (former);1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;29;29;29;141;595;19;15;;;;;;;;;;;;; -206;'736;Sudan (former);1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;586;586;586;586;586;586;525;;;;;;;;;;;;; -206;'736;Sudan (former);1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;235;235;235;235;235;235;370;;;;;;;;;;;;; -206;'736;Sudan (former);1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;570;570;;;;;;;;;;;;; -206;'736;Sudan (former);1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;1048;1048;;;;;;;;;;;;; -206;'736;Sudan (former);1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;2;2;2;2;17;171;171;23;132;26;37;37;;;;;;;;;;;;; -206;'736;Sudan (former);1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;4;4;4;4;23;81;81;50;130;69;47;47;;;;;;;;;;;;; -206;'736;Sudan (former);1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;12;;;;;;;;;;;; -206;'736;Sudan (former);1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;12;;;;;;;;;;;; -206;'736;Sudan (former);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;;;;;;;;;;;;; -206;'736;Sudan (former);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;;;;;;;;;;;;; -206;'736;Sudan (former);1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;183;78;332;112;90;;;;;;;;;;;; -206;'736;Sudan (former);1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;217;108;353;169;142;;;;;;;;;;;; -206;'736;Sudan (former);1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;30;30;30;;;;;;;;;;;;; -206;'736;Sudan (former);1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;11;11;11;;;;;;;;;;;;; -206;'736;Sudan (former);1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;;;;;;;;;;;;; -206;'736;Sudan (former);1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;;;;;;;;;;;;; -206;'736;Sudan (former);1669;Recovered paper;5510;Production;t;;;;;;;;;;;;1000;9000;1000;1000;1000;1000;1000;1000;1000;1000;1000;10000;5000;5000;5000;6000;5000;5000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;;;;;;;;;;;; -206;'736;Sudan (former);1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;1899;2248;1490;2747;535;264;1000;5200;5200;1200;1200;3600;4200;;6500;2000;1200;1200;345;345;546;200;200;300;300;83;208;208;394;820;268;268;460;1986;311;169;54;188;;;;;;;;;;;; -206;'736;Sudan (former);1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;414;516;294;623;180;37;102;1164;1164;242;242;409;487;;894;336;138;138;39;39;67;39;39;34;34;10;16;16;47;117;30;30;56;936;110;23;7;107;;;;;;;;;;;; -206;'736;Sudan (former);1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;505;505;505;505;505;505;505;291;291;291;166;315;976;2040;2763;;;;;;;;;;;; -206;'736;Sudan (former);1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;56;56;56;56;56;56;29;29;29;46;33;76;321;145;;;;;;;;;;;; -206;'736;Sudan (former);1876;Paper and paperboard;5510;Production;t;;900;4500;3500;3500;3500;3500;3500;1500;1500;1700;1700;1000;900;4900;6000;6600;6600;6600;9000;9000;9000;9000;9000;9000;9000;10000;10000;10000;4000;3000;3000;3000;3000;3000;3000;3000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;0;0;0;;;;;;;;;;;;; -206;'736;Sudan (former);1876;Paper and paperboard;5610;Import quantity;t;8000;5700;5800;7300;4300;7700;10200;15300;14400;14400;15700;16900;19100;19200;17700;13700;13400;11600;11600;11400;20200;12300;17800;18800;26400;15000;20200;31900;7300;11000;8700;4515;6403;8613;5600;15500;22000;22501;14794;14248;18461;5626;29171;34324;34324;38698;41704;34100;62836;68294;74862;;;;;;;;;;;; -206;'736;Sudan (former);1876;Paper and paperboard;5622;Import value;1000 USD;1774;1224;1462;1699;1170;3585;3895;3333;2961;3331;4282;4423;5205;8430;10622;7783;7850;6595;6625;6538;18315;10200;13214;13752;14711;7956;13454;23697;5605;8333;7768;3466;4841;5536;3035;10127;14872;16096;8939;9991;9792;2830;21015;24063;24063;24947;50282;55542;89355;92880;80656;;;;;;;;;;;; -206;'736;Sudan (former);1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;347;54;0;0;0;0;0;139;267;251;251;278;560;560;340;414;884;1299;1360;1888;;;;;;;;;;;; -206;'736;Sudan (former);1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;935;40;0;0;0;0;0;132;257;234;234;278;473;473;300;387;363;399;464;222;;;;;;;;;;;; -206;'736;Sudan (former);2042;Graphic papers;5610;Import quantity;t;4100;1800;4400;5100;3500;3400;5500;6300;5600;6400;6500;7700;9900;9900;8400;9900;9800;8700;8700;8700;8700;5300;9700;10700;15400;4300;5400;16900;2500;4100;4100;1562;3815;6104;2600;11500;21000;21500;10197;8542;9601;1211;19627;19315;19315;18428;17022;18688;36448;36448;40938;;;;;;;;;;;; -206;'736;Sudan (former);2042;Graphic papers;5622;Import value;1000 USD;1067;449;1087;1225;854;1501;1359;1479;1490;1418;1762;1903;2685;4246;6438;5314;5338;4908;4938;4938;8338;4100;6167;6705;9371;2627;4150;13961;1568;3965;3965;1094;2614;3166;1396;8089;14094;15318;4427;5270;4830;934;12758;14055;14055;12097;14180;29636;48204;48204;45185;;;;;;;;;;;; -206;'736;Sudan (former);2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;;85;51;51;51;69;333;333;69;137;192;204;204;1359;;;;;;;;;;;; -206;'736;Sudan (former);2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;;69;59;59;59;72;265;265;63;138;91;104;104;155;;;;;;;;;;;; -206;'736;Sudan (former);1671;Newsprint;5610;Import quantity;t;1200;600;1000;1700;1300;1600;2300;2000;1700;2700;2100;2800;3500;3000;3400;600;500;1500;1500;1500;2200;1300;2600;3600;8500;2600;2700;4400;1200;900;900;0;676;957;2600;3500;3000;3500;4747;2846;6000;91;4697;4238;4238;5945;3951;2157;8577;8577;6885;;;;;;;;;;;; -206;'736;Sudan (former);1671;Newsprint;5622;Import value;1000 USD;222;103;170;317;242;295;450;394;365;541;458;602;934;1328;2265;321;344;670;700;700;1898;700;1262;1800;3814;1200;1382;1911;541;563;563;0;250;338;1396;2146;2194;3418;1629;1167;2264;112;2036;2161;2161;2935;2459;2583;9313;9313;7637;;;;;;;;;;;; -206;'736;Sudan (former);1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;36;36;36;;;;;;;;;;;;; -206;'736;Sudan (former);1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;26;26;;;;;;;;;;;;; -206;'736;Sudan (former);1674;Printing and writing papers;5610;Import quantity;t;2900;1200;3400;3400;2200;1800;3200;4300;3900;3700;4400;4900;6400;6900;5000;9300;9300;7200;7200;7200;6500;4000;7100;7100;6900;1700;2700;12500;1300;3200;3200;1562;3139;5147;0;8000;18000;18000;5450;5696;3601;1120;14930;15077;15077;12483;13071;16531;27871;27871;34053;;;;;;;;;;;; -206;'736;Sudan (former);1674;Printing and writing papers;5622;Import value;1000 USD;845;346;917;908;612;1206;909;1085;1125;877;1304;1301;1751;2918;4173;4993;4994;4238;4238;4238;6440;3400;4905;4905;5557;1427;2768;12050;1027;3402;3402;1094;2364;2828;0;5943;11900;11900;2798;4103;2566;822;10722;11894;11894;9162;11721;27053;38891;38891;37548;;;;;;;;;;;; -206;'736;Sudan (former);1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;;85;51;51;51;69;333;333;69;101;156;168;168;1359;;;;;;;;;;;; -206;'736;Sudan (former);1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;;69;59;59;59;72;265;265;63;112;65;78;78;155;;;;;;;;;;;; -206;'736;Sudan (former);1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1853;561;1;1;14;4906;3763;3763;1154;3514;8291;3040;3040;354;;;;;;;;;;;; -206;'736;Sudan (former);1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1204;283;1;1;12;2899;2970;2970;774;2834;7724;2511;2511;488;;;;;;;;;;;; -206;'736;Sudan (former);1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30;30;30;30;30;30;30;30;30;30;;;;;;;;;;;;; -206;'736;Sudan (former);1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33;33;33;33;33;33;33;33;33;33;;;;;;;;;;;;; -206;'736;Sudan (former);1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13535;4098;4193;2300;973;7371;9560;9560;8770;6644;5818;18491;18491;25293;;;;;;;;;;;; -206;'736;Sudan (former);1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9046;2127;3171;1687;703;6028;7542;7542;6459;6228;16575;22788;22788;26734;;;;;;;;;;;; -206;'736;Sudan (former);1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;19;38;38;38;70;125;125;125;1359;;;;;;;;;;;; -206;'736;Sudan (former);1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;14;29;29;29;78;31;31;31;155;;;;;;;;;;;; -206;'736;Sudan (former);1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2612;791;1502;1300;133;2653;1754;1754;2559;2913;2422;6340;6340;8406;;;;;;;;;;;; -206;'736;Sudan (former);1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1650;388;931;878;107;1795;1382;1382;1929;2659;2754;13592;13592;10326;;;;;;;;;;;; -206;'736;Sudan (former);1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;20;20;20;20;265;265;1;1;1;13;13;;;;;;;;;;;;; -206;'736;Sudan (former);1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;25;25;25;25;203;203;1;1;1;14;14;;;;;;;;;;;;; -206;'736;Sudan (former);1675;Other paper and paperboard;5510;Production;t;;900;4500;3500;3500;3500;3500;3500;1500;1500;1700;1700;1000;900;4900;6000;6600;6600;6600;9000;9000;9000;9000;9000;9000;9000;10000;10000;10000;4000;3000;3000;3000;3000;3000;3000;3000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;0;0;0;;;;;;;;;;;;; -206;'736;Sudan (former);1675;Other paper and paperboard;5610;Import quantity;t;3900;3900;1400;2200;800;4300;4700;9000;8800;8000;9200;9200;9200;9300;9300;3800;3600;2900;2900;2700;11500;7000;8100;8100;11000;10700;14800;15000;4800;6900;4600;2953;2588;2509;3000;4000;1000;1001;4597;5706;8860;4415;9544;15009;15009;20270;24682;15412;26388;31846;33924;;;;;;;;;;;; -206;'736;Sudan (former);1675;Other paper and paperboard;5622;Import value;1000 USD;707;775;375;474;316;2084;2536;1854;1471;1913;2520;2520;2520;4184;4184;2469;2512;1687;1687;1600;9977;6100;7047;7047;5340;5329;9304;9736;4037;4368;3803;2372;2227;2370;1639;2038;778;778;4512;4721;4962;1896;8257;10008;10008;12850;36102;25906;41151;44676;35471;;;;;;;;;;;; -206;'736;Sudan (former);1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;347;54;0;0;0;0;0;54;216;200;200;209;227;227;271;277;692;1095;1156;529;;;;;;;;;;;; -206;'736;Sudan (former);1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;935;40;0;0;0;0;0;63;198;175;175;206;208;208;237;249;272;295;360;67;;;;;;;;;;;; -206;'736;Sudan (former);1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;60;60;40;5;5;18;25;575;136;21;31;;;;;;;;;;;; -206;'736;Sudan (former);1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;108;108;66;5;5;22;147;747;308;59;33;;;;;;;;;;;; -206;'736;Sudan (former);1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;108;108;108;108;108;108;108;108;108;108;108;;;;;;;;;;;;; -206;'736;Sudan (former);1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;126;126;126;126;126;126;126;126;126;126;126;;;;;;;;;;;;; -206;'736;Sudan (former);2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;;;;;;; -206;'736;Sudan (former);2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1001;3697;5030;8100;3940;8488;12875;12875;18642;20810;13002;24477;30047;32215;;;;;;;;;;;; -206;'736;Sudan (former);2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;778;2585;3237;3894;1263;6592;7983;7983;9989;31782;22171;36934;41588;30170;;;;;;;;;;;; -206;'736;Sudan (former);2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;92;92;92;88;92;92;136;142;561;986;1040;529;;;;;;;;;;;; -206;'736;Sudan (former);2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;49;49;49;49;52;52;81;93;79;161;197;67;;;;;;;;;;;; -206;'736;Sudan (former);1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;;;;;;;;;4000;5100;5100;5100;5100;5100;5100;5100;5100;5100;5100;5100;5700;5700;5700;3000;1000;1000;1000;1000;1000;1000;1000;;;;;;;;;;;;;;;;;;;;;;;;;; -206;'736;Sudan (former);1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;;;;;;;1200;1200;3700;3500;2800;2800;2600;7700;4700;7300;7300;10200;9900;14000;14200;4000;6100;3800;2153;1788;1788;3000;4000;1000;;;;;;;;;;;;;;;;;;;;;;;;;; -206;'736;Sudan (former);1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;1128;1128;2112;2153;1328;1328;1241;6681;4100;6351;6351;4644;4633;8608;9040;3341;3672;3107;1676;1531;1531;1639;2038;778;;;;;;;;;;;;;;;;;;;;;;;;;; -206;'736;Sudan (former);1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;;;;;;; -206;'736;Sudan (former);1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;661;2442;3028;5900;3746;6136;5611;5611;8209;6039;2542;5904;6575;19347;;;;;;;;;;;; -206;'736;Sudan (former);1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;187;622;1318;2018;963;2378;3479;3479;3611;3541;14230;9506;9506;14629;;;;;;;;;;;; -206;'736;Sudan (former);1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;36;36;36;36;36;36;36;36;36;36;90;529;;;;;;;;;;;; -206;'736;Sudan (former);1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;10;10;10;10;10;10;46;67;;;;;;;;;;;; -206;'736;Sudan (former);1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;;;;;;;;;;;;; -206;'736;Sudan (former);1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;227;839;1277;1400;116;581;4569;4569;7457;3261;6347;10780;15462;1314;;;;;;;;;;;; -206;'736;Sudan (former);1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;514;1708;1441;1393;229;2962;2833;2833;4853;20288;3747;5740;10283;6395;;;;;;;;;;;; -206;'736;Sudan (former);1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;56;56;52;52;52;52;52;520;945;945;;;;;;;;;;;;; -206;'736;Sudan (former);1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;39;39;39;39;39;39;39;57;139;139;;;;;;;;;;;;; -206;'736;Sudan (former);1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;;;;;;;;;;;;; -206;'736;Sudan (former);1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;266;344;500;25;1364;1105;1105;1667;10715;4094;7636;7636;11528;;;;;;;;;;;; -206;'736;Sudan (former);1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;162;229;379;50;1040;685;685;1227;6688;4066;21599;21599;9129;;;;;;;;;;;; -206;'736;Sudan (former);1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;48;54;5;5;5;;;;;;;;;;;;; -206;'736;Sudan (former);1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;32;44;12;12;12;;;;;;;;;;;;; -206;'736;Sudan (former);1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;;;;;;;;;;;;; -206;'736;Sudan (former);1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;150;381;300;53;407;1590;1590;1309;795;19;157;374;26;;;;;;;;;;;; -206;'736;Sudan (former);1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;93;249;104;21;212;986;986;298;1265;128;89;200;17;;;;;;;;;;;; -206;'736;Sudan (former);1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;3500;3500;3500;3500;3500;1500;1500;1700;1700;1000;900;900;900;1500;1500;1500;3900;3900;3900;3900;3900;3900;3900;4300;4300;4300;1000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;0;0;0;;;;;;;;;;;;; -206;'736;Sudan (former);1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;9000;8800;8000;9200;9200;9200;8100;8100;100;100;100;100;100;3800;2300;800;800;800;800;800;800;800;800;800;800;800;721;0;0;0;0;900;675;700;415;1016;2129;2129;1610;3847;1835;1775;1778;1678;;;;;;;;;;;; -206;'736;Sudan (former);1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;1854;1471;1913;2520;2520;2520;3056;3056;357;359;359;359;359;3296;2000;696;696;696;696;696;696;696;696;696;696;696;839;0;0;0;0;1927;1484;960;525;1599;2020;2020;2839;4173;2988;3909;3029;5268;;;;;;;;;;;; -206;'736;Sudan (former);1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;347;54;0;0;0;0;0;15;16;0;0;13;27;27;27;27;23;1;8;;;;;;;;;;;;; -206;'736;Sudan (former);1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;935;40;0;0;0;0;0;51;23;0;0;31;30;30;30;30;67;8;37;;;;;;;;;;;;; -207;'740;Suriname;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35440;38437;37506;31171;32746.69;41986.36;36105.36 -207;'740;Suriname;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68674;75623;65691;55188;104309;106121.9;69607.9 -207;'740;Suriname;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;773;764;748;743;564;956;1769;2771;1904;1431;1967;2274;4594;5658;6943;7728;8756;10218;10870;10820;11410;13020;13020;9420;8310;3974;4404;3596;3684;2640;2640;2347;2341;1114;2503;1433;1583;1164;1568;2463;2601;4041;4982;5167;5839;9134;11843;18669;14112;12361.4;14872;15809;14629;12915;12433;10821;11441;11377;11732;9473;9052.69;13131.36;10943.36 -207;'740;Suriname;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;3307;3541;4153;4064;4086;4172;4217;3978;4710;4208;4006;4744;6881;6775;6511;6532;6135;7605;11762;11733;11413;12438;7396;5579;4277;2666;2250;4724;2341;820;598;1258;1507;3064;2892;6131;6585;4100;3249;3242;3457;5339;2447;2268;2805;4432;3889;5557;5218;8349;14118;18376;19037;27967;32821;40961;63630;72092;62035;51702;100469;103103.9;66417.9 -207;'740;Suriname;1861;Roundwood;5516;Production;m3;321135;298440;305753;329075;335405;335744;296091;313446;257809;262179;305742;228322;216731;261396;344204;304444;337683;337275;409301;401300;320589;286297;243602;234592;255290;223553;166563;249010;152542;144367;135979;149801;130801;145819;144794;254803;223335;187284;140491;223700;212120;204545;271500;274100;291800;301200;272600;293000;306600;343400;460033;527589;484500;582500;658258;665533;950907;1170981;1162710;607721;705000;605000;543000 -207;'740;Suriname;1861;Roundwood;5616;Import quantity;m3;19200;16100;10800;8500;12200;6400;21500;14500;9000;9200;15000;29900;13700;8100;5900;5400;4800;4000;1500;1500;;;;;;;;;;;;;;232;232;232;0;0;0;0;0;0;0;0;0;0;0;0;0;274;34;712;1059;3201;170;78;50;9;59;75;20;56.03;4.03 -207;'740;Suriname;1861;Roundwood;5622;Import value;1000 USD;351;268;164;147;165;125;687;454;173;165;191;550;383;226;165;150;168;160;70;70;;;;;;;;;;;;;;14;14;14;0;0;0;0;0;0;0;0;0;0;0;0;0;76;10;100;178;260;61;29;9;2;16;7;6;20.36;3.36 -207;'740;Suriname;1861;Roundwood;5916;Export quantity;m3;18900;21500;20400;17000;24400;28500;21100;20000;21900;24700;16900;16500;17300;22600;21200;12400;13700;18100;24400;25600;33500;24300;22000;17000;14400;6500;3700;10700;5000;824;499;1143;3519;8000;8500;27000;30700;21000;17000;10000;8000;25900;3200;6200;9470;18601;12602;28920;29960;49140;92207;109612;96593;148648;208027;269573;482919;544202;437356;332400;434755;316274;256878 -207;'740;Suriname;1861;Roundwood;5922;Export value;1000 USD;478;579;576;399;604;779;607;524;560;617;438;490;610;1034;998;649;937;1472;1959;2107;2523;2232;2064;1501;1678;628;338;1420;889;136;116;490;896;1646;653;3515;2953;1600;1718;1242;1091;3155;495;810;1382;2441;1793;3639;3833;6420;11996;14703;12845;21144;26193;32733;58331;66557;57196;43721;92046;93958;56524 -207;'740;Suriname;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;1000;1000;0;0;1000;1000;1000;1000;1000;100;300;233;89;0;0;0;103;61;61;71;31;0;0;0 -207;'740;Suriname;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;72;0;0;0 -207;'740;Suriname;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;6;0;0;0 -207;'740;Suriname;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;315;10271;280;1400;4755;242;576 -207;'740;Suriname;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;2147;128;360;743;101;136 -207;'740;Suriname;1863;Roundwood, non-coniferous;5516;Production;m3;321135;298440;305753;329075;335405;335744;296091;313446;257809;262179;305742;228322;216731;261396;344204;304444;337683;337275;409301;401300;320589;286297;243602;234592;255290;223553;166563;249010;152542;144367;135979;149801;130801;145819;144794;254803;223335;187284;140491;222700;211120;204545;271500;273100;290800;300200;271600;292000;306500;343100;459800;527500;484500;582500;658258;665430;950846;1170920;1162639;607690;705000;605000;543000 -207;'740;Suriname;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;9;59;3;20;56.03;4.03 -207;'740;Suriname;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;2;16;1;6;20.36;3.36 -207;'740;Suriname;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;482604;533931;437076;331000;430000;316032;256302 -207;'740;Suriname;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58278;64410;57068;43361;91303;93857;56388 -207;'740;Suriname;1864;Wood fuel;5516;Production;m3;87135;87440;79753;79075;74405;71744;67091;60446;57809;55179;54742;52322;53731;50396;54204;66444;61683;61275;64301;64300;45589;46297;48602;48592;39290;37553;32563;34010;37842;38367;38679;37801;40801;41819;41794;41803;42335;42284;42491;42700;43120;43545;116500;113100;109800;107200;104600;102000;99500;97100;94700;92400;90200;90200;90200;88000;88000;88000;88000;88000;88000;88000;88000 -207;'740;Suriname;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;232;232;232;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;64;;;58;3;3;3.03;3.03 -207;'740;Suriname;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;15;;;14;1;1;1.36;1.36 -207;'740;Suriname;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;396;396;396;396;396;57;79;;;;;;32;32 -207;'740;Suriname;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;34;34;34;34;34;11;15;;;;;;5;5 -207;'740;Suriname;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 -207;'740;Suriname;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -207;'740;Suriname;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -207;'740;Suriname;1628;Wood fuel, non-coniferous;5516;Production;m3;87135;87440;79753;79075;74405;71744;67091;60446;57809;55179;54742;52322;53731;50396;54204;66444;61683;61275;64301;64300;45589;46297;48602;48592;39290;37553;32563;34010;37842;38367;38679;37801;40801;41819;41794;41803;42335;42284;42491;42700;43120;43545;116500;113100;109800;107200;104600;102000;99500;97100;94700;92400;90200;90200;90200;88000;88000;88000;88000;88000;88000;88000;88000 -207;'740;Suriname;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;3;3;3.03;3.03 -207;'740;Suriname;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;1;1;1.36;1.36 -207;'740;Suriname;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;32 -207;'740;Suriname;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5 -207;'740;Suriname;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;232;232;232;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;64;;;;;;; -207;'740;Suriname;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;15;;;;;;; -207;'740;Suriname;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;396;396;396;396;396;57;79;;;;;;; -207;'740;Suriname;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;34;34;34;34;34;11;15;;;;;;; -207;'740;Suriname;1865;Industrial roundwood;5516;Production;m3;234000;211000;226000;250000;261000;264000;229000;253000;200000;207000;251000;176000;163000;211000;290000;238000;276000;276000;345000;337000;275000;240000;195000;186000;216000;186000;134000;215000;114700;106000;97300;112000;90000;104000;103000;213000;181000;145000;98000;181000;169000;161000;155000;161000;182000;194000;168000;191000;207100;246300;365333;435189;394300;492300;568058;577533;862907;1082981;1074710;519721;617000;517000;455000 -207;'740;Suriname;1865;Industrial roundwood;5616;Import quantity;m3;19200;16100;10800;8500;12200;6400;21500;14500;9000;9200;15000;29900;13700;8100;5900;5400;4800;4000;1500;1500;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;274;34;712;1059;3201;170;14;50;9;1;72;17;53;1 -207;'740;Suriname;1865;Industrial roundwood;5622;Import value;1000 USD;351;268;164;147;165;125;687;454;173;165;191;550;383;226;165;150;168;160;70;70;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;76;10;100;178;260;61;14;9;2;2;6;5;19;2 -207;'740;Suriname;1865;Industrial roundwood;5916;Export quantity;m3;18900;21500;20400;17000;24400;28500;21100;20000;21900;24700;16900;16500;17300;22600;21200;12400;13700;18100;24400;25600;33500;24300;22000;17000;14400;6500;3700;10700;5000;824;499;1143;3519;8000;8500;27000;30700;21000;17000;10000;8000;25900;3200;6200;9470;18600;12601;28919;29959;48744;91811;109216;96197;148252;207970;269494;482919;544202;437356;332400;434755;316242;256846 -207;'740;Suriname;1865;Industrial roundwood;5922;Export value;1000 USD;478;579;576;399;604;779;607;524;560;617;438;490;610;1034;998;649;937;1472;1959;2107;2523;2232;2064;1501;1678;628;338;1420;889;136;116;490;896;1646;653;3515;2953;1600;1718;1242;1091;3155;495;810;1382;2437;1789;3635;3829;6386;11962;14669;12811;21110;26182;32718;58331;66557;57196;43721;92046;93953;56519 -207;'740;Suriname;1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;0;0;1000;1000;1000;1000;1000;100;300;233;89;0;0;0;103;61;61;71;31;0;0;0 -207;'740;Suriname;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;72;0;3200;0;0;0;0;0;72;0;0;0 -207;'740;Suriname;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;9;0;257;0;0;0;0;0;6;0;0;0 -207;'740;Suriname;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;822;1615;2631;315;10271;280;1400;4755;242;576 -207;'740;Suriname;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;82;524;264;53;2147;128;360;743;101;136 -207;'740;Suriname;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;72;0;3200;0;0;0;0;0;72;0;0;0 -207;'740;Suriname;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;9;0;257;0;0;0;0;0;6;0;0;0 -207;'740;Suriname;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;822;1615;2631;315;10271;280;1400;4755;242;576 -207;'740;Suriname;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;82;524;264;53;2147;128;360;743;101;136 -207;'740;Suriname;1867;Industrial roundwood, non-coniferous;5516;Production;m3;234000;211000;226000;250000;261000;264000;229000;253000;200000;207000;251000;176000;163000;211000;290000;238000;276000;276000;345000;337000;275000;240000;195000;186000;216000;186000;134000;215000;114700;106000;97300;112000;90000;104000;103000;213000;181000;145000;98000;180000;168000;161000;155000;160000;181000;193000;167000;190000;207000;246000;365100;435100;394300;492300;568058;577430;862846;1082920;1074639;519690;617000;517000;455000 -207;'740;Suriname;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;274;34;640;1059;1;170;14;50;9;1;0;17;53;1 -207;'740;Suriname;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;10;91;178;3;61;14;9;2;2;0;5;19;2 -207;'740;Suriname;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;824;499;1143;3519;8000;8500;27000;30700;21000;17000;10000;8000;25900;3200;6200;9470;18600;12601;28919;29959;48744;91811;109216;96197;147430;206355;266863;482604;533931;437076;331000;430000;316000;256270 -207;'740;Suriname;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;136;116;490;896;1646;653;3515;2953;1600;1718;1242;1091;3155;495;810;1382;2437;1789;3635;3829;6386;11962;14669;12811;21028;25658;32454;58278;64410;57068;43361;91303;93852;56383 -207;'740;Suriname;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;274;0;0;0;0;0;0;21;0;0;0;0;6;0 -207;'740;Suriname;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;0;0;0;0;0;0;6;0;0;0;0;4;0 -207;'740;Suriname;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;824;499;1143;3519;8000;8500;27000;30700;21000;17000;10000;8000;25900;3200;6200;9470;18600;12601;28919;29959;48744;91811;109216;96197;147430;206355;266863;482604;533931;437076;331000;430000;316000;256270 -207;'740;Suriname;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;136;116;490;896;1646;653;3515;2953;1600;1718;1242;1091;3155;495;810;1382;2437;1789;3635;3829;6386;11962;14669;12811;21028;25658;32454;58278;64410;57068;43361;91303;93852;56383 -207;'740;Suriname;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;640;1059;1;170;14;29;9;1;0;17;47;1 -207;'740;Suriname;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;91;178;3;61;14;3;2;2;0;5;15;2 -207;'740;Suriname;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 -207;'740;Suriname;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 -207;'740;Suriname;1868;Sawlogs and veneer logs;5516;Production;m3;219000;189000;201000;228000;236000;243000;215000;243000;183000;189000;220000;140000;145000;172000;264000;213000;245000;250000;316000;313000;253000;222000;175000;161000;190000;160000;108000;189000;107000;105000;96000;109000;85000;100000;99000;212000;180000;143000;94000;177000;163000;154000;148000;157000;179000;191000;165000;188000;199100;241300;360233;432089;391000;490000;565000;574103;860091;1079601;1072350;517721;615000;514000;452000 -207;'740;Suriname;1868;Sawlogs and veneer logs;5616;Import quantity;m3;19200;16100;10800;8500;12200;6400;21500;14500;9000;9200;15000;29900;13700;8100;5900;5400;4800;4000;1500;1500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -207;'740;Suriname;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;351;268;164;147;165;125;687;454;173;165;191;550;383;226;165;150;168;160;70;70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -207;'740;Suriname;1868;Sawlogs and veneer logs;5916;Export quantity;m3;10900;11400;9800;10700;15100;15700;11200;10700;11900;12800;8100;7000;7600;8000;8000;4700;2700;9100;14600;16900;24900;15400;13100;8900;7500;200;100;600;600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -207;'740;Suriname;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;170;173;163;165;260;269;211;162;165;175;109;96;138;133;132;79;53;741;1036;1229;1681;1344;1176;784;1064;34;4;86;86;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -207;'740;Suriname;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;0;0;1000;1000;1000;1000;1000;100;300;233;89;0;0;0;103;61;61;71;31;0;0;0 -207;'740;Suriname;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;219000;189000;201000;228000;236000;243000;215000;243000;183000;189000;220000;140000;145000;172000;264000;213000;245000;250000;316000;313000;253000;222000;175000;161000;190000;160000;108000;189000;107000;105000;96000;109000;85000;100000;99000;212000;180000;143000;94000;176000;162000;154000;148000;156000;178000;190000;164000;187000;199000;241000;360000;432000;391000;490000;565000;574000;860030;1079540;1072279;517690;615000;514000;452000 -207;'740;Suriname;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;19200;16100;10800;8500;12200;6400;21500;14500;9000;9200;15000;29900;13700;8100;5900;5400;4800;4000;1500;1500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -207;'740;Suriname;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;351;268;164;147;165;125;687;454;173;165;191;550;383;226;165;150;168;160;70;70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -207;'740;Suriname;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;10900;11400;9800;10700;15100;15700;11200;10700;11900;12800;8100;7000;7600;8000;8000;4700;2700;9100;14600;16900;24900;15400;13100;8900;7500;200;100;600;600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -207;'740;Suriname;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;170;173;163;165;260;269;211;162;165;175;109;96;138;133;132;79;53;741;1036;1229;1681;1344;1176;784;1064;34;4;86;86;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -207;'740;Suriname;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -207;'740;Suriname;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -207;'740;Suriname;1871;Other industrial roundwood;5516;Production;m3;15000;22000;25000;22000;25000;21000;14000;10000;17000;18000;31000;36000;18000;39000;26000;25000;31000;26000;29000;24000;22000;18000;20000;25000;26000;26000;26000;26000;7700;1000;1300;3000;5000;4000;4000;1000;1000;2000;4000;4000;6000;7000;7000;4000;3000;3000;3000;3000;8000;5000;5100;3100;3300;2300;3058;3430;2816;3380;2360;2000;2000;3000;3000 -207;'740;Suriname;1871;Other industrial roundwood;5916;Export quantity;m3;8000;10100;10600;6300;9300;12800;9900;9300;10000;11900;8800;9500;9700;14600;13200;7700;11000;9000;9800;8700;8600;8900;8900;8100;6900;6300;3600;10100;4400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -207;'740;Suriname;1871;Other industrial roundwood;5922;Export value;1000 USD;308;406;413;234;344;510;396;362;395;442;329;394;472;901;866;570;884;731;923;878;842;888;888;717;614;594;334;1334;803;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -207;'740;Suriname;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -207;'740;Suriname;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;15000;22000;25000;22000;25000;21000;14000;10000;17000;18000;31000;36000;18000;39000;26000;25000;31000;26000;29000;24000;22000;18000;20000;25000;26000;26000;26000;26000;7700;1000;1300;3000;5000;4000;4000;1000;1000;2000;4000;4000;6000;7000;7000;4000;3000;3000;3000;3000;8000;5000;5100;3100;3300;2300;3058;3430;2816;3380;2360;2000;2000;3000;3000 -207;'740;Suriname;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;8000;10100;10600;6300;9300;12800;9900;9300;10000;11900;8800;9500;9700;14600;13200;7700;11000;9000;9800;8700;8600;8900;8900;8100;6900;6300;3600;10100;4400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -207;'740;Suriname;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;308;406;413;234;344;510;396;362;395;442;329;394;472;901;866;570;884;731;923;878;842;888;888;717;614;594;334;1334;803;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -207;'740;Suriname;1630;Wood charcoal;5510;Production;t;9262;9147;9034;8922;8811;8702;8595;8488;8383;8279;8207;8138;8040;7820;7623;7498;7207;6975;7144;7309;7208;7474;7738;7852;6218;5932;5296;5526;6144;6264;6265;6154;6567;6735;6807;6816;6869;6865;6902;6000;31000;7082;2000;7226;7299;7385;7500;7600;7649;7739;7826;7914;8002;8092;8183;8262;8342;8423;8504;8586;8664;8742;8821 -207;'740;Suriname;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;3;1;1;1;1;9;1;13;14;2;14;24;32;19 -207;'740;Suriname;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;5;1;1;1;1;8;2;46;14;1;8;19;21;7 -207;'740;Suriname;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;23;23;4;17;7;6.66;6.66 -207;'740;Suriname;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;5;5;3;11;1;1.19;1.19 -207;'740;Suriname;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40400;40400;40400;40400;40400;40400;40400;40400;40400;0;0 -207;'740;Suriname;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;32.7;5;5;5;5;43;37;36;27;31;15;16;20;13 -207;'740;Suriname;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;11.4;3;3;3;3;16;17;18;18;10;7;5;7;5 -207;'740;Suriname;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;417;975;974;965;981;978;978;941;941 -207;'740;Suriname;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;163;164;160;164;163;163;150;150 -207;'740;Suriname;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;0.7;2;2;2;2;21;21;21;2;2;8;9;9;2 -207;'740;Suriname;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0.4;1;1;1;1;9;9;9;1;1;6;4;4;2 -207;'740;Suriname;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;39;38;29;45;42;42;5;5 -207;'740;Suriname;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;15;16;12;16;15;15;2;2 -207;'740;Suriname;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40400;40400;40400;40400;40400;40400;40400;40400;40400;0;0 -207;'740;Suriname;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;3;3;3;3;22;16;15;25;29;7;7;11;11 -207;'740;Suriname;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;2;2;2;2;7;8;9;17;9;1;1;3;3 -207;'740;Suriname;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;401;936;936;936;936;936;936;936;936 -207;'740;Suriname;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;148;148;148;148;148;148;148;148 -207;'740;Suriname;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3 -207;'740;Suriname;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1 -207;'740;Suriname;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;69 -207;'740;Suriname;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14 -207;'740;Suriname;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1 -207;'740;Suriname;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -207;'740;Suriname;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;69 -207;'740;Suriname;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14 -207;'740;Suriname;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2 -207;'740;Suriname;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1 -207;'740;Suriname;1872;Sawnwood;5516;Production;m3;55000;36400;42400;46700;42000;55800;53100;57300;63500;53400;63000;45400;58300;48000;79000;59000;64000;68000;90000;79000;64000;59600;59000;57000;73200;61000;42000;73000;44000;44000;40000;43000;33000;29000;29000;40000;41000;41000;28000;60000;56000;47000;56000;58000;65000;69000;57000;60000;74000;76000;113000;138000;116000;135000;149232;123000;150000;218500;319500;75500;123000;90000;88500 -207;'740;Suriname;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113;155;400;300;0;0;0;0;0;0;0;0;349;670;348;1091;628;195;60;92;67;92;34;46;1194;1;107;0;32;199;99 -207;'740;Suriname;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;29;69;38;0;0;0;0;0;0;0;0;156;134;199;513;185;62;35;32;21;39;14;23;250;1;23;12;24;192;56 -207;'740;Suriname;1872;Sawnwood;5916;Export quantity;m3;2400;3200;3300;4700;5300;6700;7300;4900;6100;5800;4700;6100;10800;8000;9800;6300;4700;7400;19300;15700;10300;16600;7700;5800;5300;3000;1100;800;1000;200;300;415;716;506;2300;3000;6800;5000;4000;7000;8000;8300;7700;5000;4700;6200;8439;6912;4272;5413;6240;11251;18453;21100;19894;25596;16211;16647;21412;32969;37037;40513;44247 -207;'740;Suriname;1872;Sawnwood;5922;Export value;1000 USD;186;241;239;322;502;639;845;650;662;740;618;748;1488;1317;1356;950;1018;1664;4422;3680;2445;4772;1803;1454;1182;784;616;228;356;49;103;154;230;160;669;790;1700;1300;822;1812;2286;2137;1895;1404;1411;1936;2086;1908;1352;1914;2102;3648;6156;6802;6425;7960;4996;5242;4589;7686;8131;8757;9614 -207;'740;Suriname;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;490;0;0;500;500;500;0;0;500 -207;'740;Suriname;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113;155;400;300;0;0;0;0;0;0;0;0;39;9;152;38;38;163;0;42;52;69;0;20;1193;0;85;0;2;1;0 -207;'740;Suriname;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;29;69;38;0;0;0;0;0;0;0;0;12;9;49;17;20;40;0;13;15;17;0;4;249;0;13;0;1;2;0 -207;'740;Suriname;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;24;15;28;153;141;0;0;29;93 -207;'740;Suriname;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;23;6;24;39;35;18;0;8;26 -207;'740;Suriname;1633;Sawnwood, non-coniferous;5516;Production;m3;55000;36400;42400;46700;42000;55800;53100;57300;63500;53400;63000;45400;58300;48000;79000;59000;64000;68000;90000;79000;64000;59600;59000;57000;73200;61000;42000;73000;44000;44000;40000;43000;33000;29000;29000;40000;41000;41000;28000;60000;56000;47000;56000;58000;65000;69000;57000;60000;74000;76000;113000;138000;116000;135000;148742;123000;150000;218000;319000;75000;123000;90000;88000 -207;'740;Suriname;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;310;661;196;1053;590;32;60;50;15;23;34;26;1;1;22;0;30;198;99 -207;'740;Suriname;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;144;125;150;496;165;22;35;19;6;22;14;19;1;1;10;12;23;190;56 -207;'740;Suriname;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;2400;3200;3300;4700;5300;6700;7300;4900;6100;5800;4700;6100;10800;8000;9800;6300;4700;7400;19300;15700;10300;16600;7700;5800;5300;3000;1100;800;1000;200;300;415;716;506;2300;3000;6800;5000;4000;7000;8000;8300;7700;5000;4700;6200;8439;6912;4272;5413;6240;11251;18453;21100;19870;25581;16183;16494;21271;32969;37037;40484;44154 -207;'740;Suriname;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;186;241;239;322;502;639;845;650;662;740;618;748;1488;1317;1356;950;1018;1664;4422;3680;2445;4772;1803;1454;1182;784;616;228;356;49;103;154;230;160;669;790;1700;1300;822;1812;2286;2137;1895;1404;1411;1936;2086;1908;1352;1914;2102;3648;6156;6802;6402;7954;4972;5203;4554;7668;8131;8749;9588 -207;'740;Suriname;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;0;0;0;0;0 -207;'740;Suriname;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;0;0;0;0;0;0;0;0;0;0;0;25;40;18;26;106;9;11;9;3;3;5;24;77;2;10;32;37;329 -207;'740;Suriname;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;0;0;0;0;0;0;0;0;0;0;0;17;23;37;13;79;22;32;18;2;7;12;12;38;2;13;15;24;15 -207;'740;Suriname;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0 -207;'740;Suriname;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;6;0;0;1 -207;'740;Suriname;1873;Wood-based panels;5516;Production;m3;33200;36700;39400;41200;36700;36600;35400;28500;38800;34800;29100;30600;33800;26200;25400;31000;23000;24000;24000;22500;25000;26000;21000;17500;17200;10200;7600;10100;9400;6500;5800;7700;6100;6900;7400;8600;8100;7100;4100;4100;3100;2100;2100;1000;1000;1000;0;1000;1000;2000;3000;2000;3000;4000;2200;2000;2000;2000;2000;2000;2000;2000;2000 -207;'740;Suriname;1873;Wood-based panels;5616;Import quantity;m3;500;400;600;400;300;527;527;527;632;632;842;421;421;421;421;421;421;421;;;;;;;;;;;;;;179;52;66;600;600;600;0;0;1000;3000;2700;6500;8200;7910;8440;9641;17307;10235;7599;11644;8629;10259;7699;7435;6339;9694;8651;11319;9580;11716.98;12632;10964 -207;'740;Suriname;1873;Wood-based panels;5622;Import value;1000 USD;57;51;68;49;45;70;64;73;78;105;117;58;58;58;58;58;58;58;;;;;;;;;;;;;;54;9;19;216;247;247;0;0;908;1377;1655;2424;2609;2517;2937;3646;6769;4142;3466;5342;4420;4492;3435;3752;2981;3935;4230;3951;2966;4460;5994;4663 -207;'740;Suriname;1873;Wood-based panels;5916;Export quantity;m3;29000;30100;36300;37500;31600;31100;28200;24100;31400;23300;21500;23800;28200;22500;21400;23600;16200;16900;17300;17900;18200;15600;11900;8500;5000;4100;3600;4700;3400;1900;1100;1139;829;2729;3100;5700;4900;3000;2000;1000;400;109;133;116;4;127;0;0;30;17;11;24;29;27;36;2;7;3;14;13;15;44;91 -207;'740;Suriname;1873;Wood-based panels;5922;Export value;1000 USD;2643;2721;3338;3343;2980;2754;2765;2804;3488;2851;2950;3506;4783;4424;4157;4933;4180;4469;5381;5946;6445;5434;3529;2624;1417;1254;1296;3076;1096;635;379;614;377;1231;1570;1826;1932;1200;709;188;80;47;57;54;2;45;0;0;23;5;10;15;21;7;38;1;5;2;45;25;30;160;50 -207;'740;Suriname;1640;Plywood and LVL;5516;Production;m3;15100;17500;18600;17700;16100;13100;15700;18100;18600;18000;18900;19800;19500;12900;12700;18000;15000;17000;18000;17000;19000;20000;18000;14000;14000;8000;6600;8800;8300;6000;5600;7600;6000;6800;7300;8500;8000;7000;4000;4000;3000;2000;2000;1000;1000;1000;0;1000;1000;2000;3000;2000;3000;4000;2200;2000;2000;2000;2000;2000;2000;2000;2000 -207;'740;Suriname;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;32;58;300;600;600;0;0;1000;2000;1700;3500;6200;4006;4500;4905;10083;5885;3938;6172;4161;4478;2920;3368;2336;5842;5601;5175;4317;6542;3355;5109 -207;'740;Suriname;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;7;18;119;247;247;0;0;908;1119;1154;1624;2045;1612;2047;2328;4541;2370;1747;2821;2063;1999;1288;2089;1148;1983;2307;1881;1258;2048;1451;1822 -207;'740;Suriname;1640;Plywood and LVL;5916;Export quantity;m3;13700;13700;16300;15100;13300;11600;12400;13700;14400;11900;12400;14000;15500;10100;10100;13500;10500;12200;12900;13800;14700;12500;9900;7500;4300;3600;3300;4300;3100;1600;1000;1039;729;2700;3100;5700;4900;3000;2000;1000;400;109;133;116;4;127;0;0;30;17;11;24;29;27;15;0;5;1;1;0;2;1;48 -207;'740;Suriname;1640;Plywood and LVL;5922;Export value;1000 USD;1828;1868;2237;2174;1998;1765;1913;2235;2467;2135;2286;2743;3575;2662;2836;3730;3462;3759;4590;5124;5714;4818;3137;2409;1291;1176;1226;2974;1023;562;362;597;360;1217;1570;1826;1932;1200;709;188;80;47;57;54;2;45;0;0;23;5;10;15;21;7;31;0;4;1;20;0;5;124;14 -207;'740;Suriname;1646;Particle board and OSB (1961-1994);5516;Production;m3;18100;19200;20800;23500;20600;23500;19700;10400;20200;16800;10200;10800;14300;13300;12700;13000;8000;7000;6000;5500;6000;6000;3000;3500;3200;2200;1000;1300;1100;500;200;100;100;100;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -207;'740;Suriname;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111;20;8;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -207;'740;Suriname;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;2;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -207;'740;Suriname;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;15300;16400;20000;22400;18300;19500;15800;10400;17000;11400;9100;9800;12700;12400;11300;10100;5700;4700;4400;4100;3500;3100;2000;1000;700;500;300;400;300;300;100;100;100;29;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -207;'740;Suriname;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;815;853;1101;1169;982;989;852;569;1021;716;664;763;1208;1762;1321;1203;718;710;791;822;731;616;392;215;126;78;70;102;73;73;17;17;17;14;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -207;'740;Suriname;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;100;100;100;100;100;100;100;100;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -207;'740;Suriname;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;1000;1000;3000;2000;242;512;512;3000;1900;1483;1732;602;1733;1269;1191;1558;1164;434;960;686;684;3258;579 -207;'740;Suriname;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;258;501;800;564;80;173;173;877;701;606;649;391;595;496;427;622;455;258;366;265;296;734;278 -207;'740;Suriname;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;21;2;2;2;13;13;13;13;13 -207;'740;Suriname;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;7;1;1;1;25;25;25;25;25 -207;'740;Suriname;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;127;127;127;47;102;102;1 -207;'740;Suriname;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;224;224;224;7;165;165;2 -207;'740;Suriname;1874;Fibreboard;5616;Import quantity;m3;500;400;600;400;300;527;527;527;632;632;842;421;421;421;421;421;421;421;;;;;;;;;;;;;;;;;300;0;0;0;0;0;0;0;0;0;3662;3428;4224;4224;2450;2178;3740;3866;4048;3510;2876;2441;2561;2489;5057;4530;4388.98;5917;5275 -207;'740;Suriname;1874;Fibreboard;5622;Import value;1000 USD;57;51;68;49;45;70;64;73;78;105;117;58;58;58;58;58;58;58;;;;;;;;;;;;;;;;;97;0;0;0;0;0;0;0;0;0;825;717;1145;1351;1071;1113;1872;1966;1898;1651;1236;1206;1273;1441;1480;1436;1951;3644;2561 -207;'740;Suriname;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;30;30 -207;'740;Suriname;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;11;11 -207;'740;Suriname;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;0;0;0;0;0;0;0;0;0;1699;1204;2000;2000;1300;923;1769;1936;2118;1580;731;534;326;257;214;74;59;354;48 -207;'740;Suriname;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97;0;0;0;0;0;0;0;0;0;531;343;771;977;656;557;981;1151;1083;836;373;218;145;93;71;28;37;247;47 -207;'740;Suriname;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -207;'740;Suriname;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -207;'740;Suriname;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1111;1070;1070;1070;1100;1212;1840;1800;1800;1800;2140;1723;2051;2136;3061;3713;4003.97;4899;4979 -207;'740;Suriname;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;185;213;213;213;400;542;876;800;800;800;862;952;1092;1301;1277;1356;1882;3271;2470 -207;'740;Suriname;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2 -207;'740;Suriname;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4 -207;'740;Suriname;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;852;1154;1154;1154;50;43;131;130;130;130;5;184;184;96;1782;743;326.02;664;248 -207;'740;Suriname;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109;161;161;161;15;14;15;15;15;15;1;36;36;47;132;52;32;126;44 -207;'740;Suriname;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;28;28 -207;'740;Suriname;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;7;7 -207;'740;Suriname;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;500;400;600;400;300;527;527;527;632;632;842;421;421;421;421;421;421;421;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -207;'740;Suriname;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;57;51;68;49;45;70;64;73;78;105;117;58;58;58;58;58;58;58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -207;'740;Suriname;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;700;700;700;700;700;700;700 -207;'740;Suriname;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;100;200;200;0;0;0;0;0;0;0;152;177;177;177;177;54;102;102;141;0;46;754;27;27;974;95;95;479;0 -207;'740;Suriname;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;53;59;59;0;0;0;0;0;0;0;36;18;18;18;18;30;54;54;79;0;10;153;179;179;146;14;14;83;2 -207;'740;Suriname;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;26;488;641;686;686;51;392;567.49;264;264 -207;'740;Suriname;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;4;74;68;90;90;8;65;74;41;41 -207;'740;Suriname;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -207;'740;Suriname;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -207;'740;Suriname;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -207;'740;Suriname;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -207;'740;Suriname;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -207;'740;Suriname;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -207;'740;Suriname;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -207;'740;Suriname;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -207;'740;Suriname;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -207;'740;Suriname;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -207;'740;Suriname;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;700;700;700;700;700;700;700 -207;'740;Suriname;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;100;200;200;0;0;0;0;0;0;0;152;177;177;177;177;54;102;102;141;0;46;754;27;27;974;95;95;479;0 -207;'740;Suriname;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;53;59;59;0;0;0;0;0;0;0;36;18;18;18;18;30;54;54;79;0;10;153;179;179;146;14;14;83;2 -207;'740;Suriname;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;26;488;641;686;686;51;392;567.49;264;264 -207;'740;Suriname;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;4;74;68;90;90;8;65;74;41;41 -207;'740;Suriname;1876;Paper and paperboard;5610;Import quantity;t;1300;1500;1600;1700;1100;2500;4100;6700;7700;3600;7900;8000;8400;8900;9000;10000;11000;12000;12900;12600;13400;14300;14300;10100;9000;4700;5600;4800;4800;4200;4200;2641;3275;1535;2100;1200;1200;1200;1650;1600;2400;2130;2930;2930;3534;4079;6222;8616;6872;8244;8505;9914;9059;8768;7994;7247;6715;6574;6607;5848;3237.85;4398;4422 -207;'740;Suriname;1876;Paper and paperboard;5622;Import value;1000 USD;365;445;516;547;354;761;1018;2244;1653;1161;1659;1666;4153;5374;6720;7520;8530;10000;10800;10750;11410;13020;13020;9420;8310;3974;4404;3596;3684;2640;2640;2292;2310;1051;2151;1075;1277;1164;1568;1555;1224;2386;2558;2558;3130;6026;7955;11330;9752;8632;9405;11167;9837;9175;8565;7604;6992;6895;7583;6446;4509.69;6789;6191 -207;'740;Suriname;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;32;0;0;0;0;0;0;0;0;0;0;4;4;4;4;4;4;4;4;4;4;4;7;27;27;25;9;10;56.81;56.81 -207;'740;Suriname;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;4;27;0;0;0;0;0;0;0;0;0;0;10;10;10;10;10;10;10;10;10;10;10;21;39;36;30;25;24;22.71;22.71 -207;'740;Suriname;2042;Graphic papers;5610;Import quantity;t;300;300;300;400;400;400;400;400;500;500;400;500;1100;1600;2400;2400;2400;2600;2900;2600;2900;3000;3000;3100;2000;3700;3100;3000;3300;2200;2200;1237;2091;689;400;900;900;900;1300;1500;2300;1500;1500;1500;2097;2943;2807;4207;3916;5742;5913;7124;6258;6056;5390;3420;3726;3822;3481;3041;1287.85;1376;1555 -207;'740;Suriname;2042;Graphic papers;5622;Import value;1000 USD;55;47;65;69;68;77;72;75;110;104;105;112;783;1374;2520;2520;2530;2600;2800;2750;2910;3020;3020;3260;1870;3135;2535;2224;2407;1824;1824;1021;1535;428;463;663;795;795;1139;1374;1069;1672;1633;1633;1855;4578;4781;6020;6051;5680;6220;7080;6373;5878;4460;3290;3363;3821;3606;2990;1582.69;1845;2247 -207;'740;Suriname;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;29;0;0;0;0;0;0;0;0;0;0;4;4;4;4;4;4;4;4;4;4;4;4;24;24;24;8;8;8;8 -207;'740;Suriname;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;4;25;0;0;0;0;0;0;0;0;0;0;10;10;10;10;10;10;10;10;10;10;10;10;28;25;25;20;20;20;20 -207;'740;Suriname;1671;Newsprint;5610;Import quantity;t;300;300;300;400;400;400;400;400;500;500;400;500;600;600;400;400;400;600;900;600;900;900;900;1000;1000;1000;500;900;900;1000;1000;406;536;334;300;700;600;600;800;1000;2000;1000;1000;1000;936;1610;1000;2000;2000;2554;2871;4096;3215;2951;2453;1541;1668;1231;1139;737;276.85;275;208 -207;'740;Suriname;1671;Newsprint;5622;Import value;1000 USD;55;47;65;69;68;77;72;75;110;104;105;112;174;174;120;120;130;200;300;200;310;320;320;560;570;570;160;360;400;728;728;214;257;134;233;410;266;266;672;871;771;1004;978;978;770;1134;989;1841;1841;2271;2655;3721;2907;2425;1445;1138;1233;993;845;399;179;268;213 -207;'740;Suriname;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 -207;'740;Suriname;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 -207;'740;Suriname;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;500;1000;2000;2000;2000;2000;2000;2000;2000;2100;2100;2100;1000;2700;2600;2100;2400;1200;1200;831;1555;355;100;200;300;300;500;500;300;500;500;500;1161;1333;1807;2207;1916;3188;3042;3028;3043;3105;2937;1879;2058;2591;2342;2304;1011;1101;1347 -207;'740;Suriname;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;609;1200;2400;2400;2400;2400;2500;2550;2600;2700;2700;2700;1300;2565;2375;1864;2007;1096;1096;807;1278;294;230;253;529;529;467;503;298;668;655;655;1085;3444;3792;4179;4210;3409;3565;3359;3466;3453;3015;2152;2130;2828;2761;2591;1403.69;1577;2034 -207;'740;Suriname;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;29;0;0;0;;;;;;;;4;4;4;4;4;4;4;4;4;4;4;4;24;24;24;8;8;8;8 -207;'740;Suriname;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;25;0;0;0;;;;;;;;10;10;10;10;10;10;10;10;10;10;10;10;28;25;25;20;20;20;20 -207;'740;Suriname;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;500;500;300;300;300;300;40;126;600;1000;709;1425;1343;1329;1344;1406;1486;832;933;1235;1059;942;109;82;278 -207;'740;Suriname;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;529;467;503;298;311;298;298;52;98;446;833;864;1482;1522;1316;1423;1410;1595;898;931;1282;1186;974;134;65;399 -207;'740;Suriname;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4 -207;'740;Suriname;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;13;13;13 -207;'740;Suriname;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;200;843;909;909;909;909;1288;1305;1305;1305;1305;1181;843;878;875;930;900;494;581;630 -207;'740;Suriname;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;357;357;357;753;3044;3044;3044;3044;1329;1464;1464;1464;1464;1148;914;869;908;1031;946;558;666;892 -207;'740;Suriname;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4 -207;'740;Suriname;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;10;10;10;10;10;10;10;10;7;7;7;7;7;7 -207;'740;Suriname;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;278;298;298;298;298;475;394;394;394;394;270;204;247;481;353;462;408;438;439 -207;'740;Suriname;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;280;302;302;302;302;598;579;579;579;579;272;340;330;638;544;671;711.7;846;743 -207;'740;Suriname;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;0;0;0;0 -207;'740;Suriname;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;0;0;0;0 -207;'740;Suriname;1675;Other paper and paperboard;5610;Import quantity;t;1000;1200;1300;1300;700;2100;3700;6300;7200;3100;7500;7500;7300;7300;6600;7600;8600;9400;10000;10000;10500;11300;11300;7000;7000;1000;2500;1800;1500;2000;2000;1404;1184;846;1700;300;300;300;350;100;100;630;1430;1430;1437;1136;3415;4409;2956;2502;2592;2790;2801;2712;2604;3827;2989;2752;3126;2807;1950;3022;2867 -207;'740;Suriname;1675;Other paper and paperboard;5622;Import value;1000 USD;310;398;451;478;286;684;946;2169;1543;1057;1554;1554;3370;4000;4200;5000;6000;7400;8000;8000;8500;10000;10000;6160;6440;839;1869;1372;1277;816;816;1271;775;623;1688;412;482;369;429;181;155;714;925;925;1275;1448;3174;5310;3701;2952;3185;4087;3464;3297;4105;4314;3629;3074;3977;3456;2927;4944;3944 -207;'740;Suriname;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;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;1;2;48.81;48.81 -207;'740;Suriname;1675;Other paper and paperboard;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;0;0;11;11;11;5;5;4;2.71;2.71 -207;'740;Suriname;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;150;50;50;400;300;300;830;774;2200;2200;1600;2195;2214;2412;2431;2363;2387;2233;2272;2555;2825;2518;1807;2339;2427 -207;'740;Suriname;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;182;242;97;71;513;319;319;521;569;1624;2313;1645;2325;2436;3338;2978;2816;3905;2367;2468;2747;3274;2778;2477;3871;3024 -207;'740;Suriname;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;0;0;1;0.81;0.81 -207;'740;Suriname;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;3;3;2;1.72;1.72 -207;'740;Suriname;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;50;50;100;1000;1000;467;303;1156;2150;1297;294;369;369;369;348;84;1345;661;191;279;256;117;661;432 -207;'740;Suriname;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;187;187;84;84;26;431;431;519;559;1230;2677;1736;424;485;485;485;475;93;1360;910;282;382;394;256;916;744 -207;'740;Suriname;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;1;1;1;1;1;1;48;48 -207;'740;Suriname;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;2;2;2;2;2;2;1;1 -207;'740;Suriname;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;150;16;16;16;16;74;28;28;28;7;22;765;2;4;13;11;7;2;6 -207;'740;Suriname;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120;11;11;11;11;82;33;33;33;23;34;497;3;2;7;5;18;9;9 -207;'740;Suriname;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -207;'740;Suriname;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -207;'740;Suriname;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98;134;134;134;134;4;23;23;23;23;53;269;403;39;19;57;28;434;193 -207;'740;Suriname;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;182;348;348;348;348;14;54;54;54;54;44;541;532;69;81;92;43;573;204 -207;'740;Suriname;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -207;'740;Suriname;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -207;'740;Suriname;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;50;50;100;1000;1000;218;147;1000;1000;1000;216;313;313;313;313;4;96;99;46;96;67;51;222;230 -207;'740;Suriname;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;187;187;84;84;26;431;431;216;187;858;1159;1159;328;389;389;389;389;6;206;189;144;174;168;153;326;523 -207;'740;Suriname;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;1;1;1;1;1;48;48 -207;'740;Suriname;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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 -207;'740;Suriname;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;6;6;1000;147;0;5;5;5;5;5;215;157;102;151;121;31;3;3 -207;'740;Suriname;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;13;13;1159;218;0;9;9;9;9;9;116;186;67;120;129;42;8;8 -207;'740;Suriname;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;130;130;130;140;59;59;59;59;13;9;9;1;1;133;249;56;6;22;33;26;22;8 -207;'740;Suriname;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;175;175;175;235;320;320;320;320;203;264;264;1;6;107;587;251;45;321;284;194;157;176 -207;'740;Suriname;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2489;4086;4158;2932;2953;5498;4110 -207;'740;Suriname;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3363;2824;2814;2799;2947;2846;2852 -207;'740;Suriname;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;9;16;4;14;8;23 -207;'740;Suriname;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2741;2741;2741;2741;2741;2741;2741 -207;'740;Suriname;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;2;5;5;5 -207;'740;Suriname;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -207;'740;Suriname;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;3;10;2;9;3;18 -207;'740;Suriname;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2741;2741;2741;2741;2741;2741;2741 -207;'740;Suriname;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;16;25;438;113;38;80 -207;'740;Suriname;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;3;3;3;23;31;31 -207;'740;Suriname;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;16;21;20;16;13;4 -207;'740;Suriname;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;48;30;30;26;5;5 -207;'740;Suriname;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;289;362;483;237;367;450;311 -207;'740;Suriname;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121;10;3;3;87;65;65 -207;'740;Suriname;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1986;3614;3551;2138;2391;4881;3629 -207;'740;Suriname;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;445;6;21;6;69;3;7 -207;'740;Suriname;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;34;34;34;34;34;34 -207;'740;Suriname;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;35;28;61;18;74;29 -207;'740;Suriname;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;16;16;16;1;1;3 -207;'740;Suriname;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21510;22974;21616;18766;20741;23357;21052 -207;'740;Suriname;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1681;707;842;687;893;172;338 -207;'740;Suriname;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;148;180;190;165;240;435;252 -207;'740;Suriname;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1 -207;'740;Suriname;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;275;282;418;269;101;333;109 -207;'740;Suriname;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;10;10 -207;'740;Suriname;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6908;8603;8794;8326;11924;12609;10392 -207;'740;Suriname;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1613;639;742;674;692;121;316 -207;'740;Suriname;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10753;10032;7856;6169;5766;6832;7040 -207;'740;Suriname;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;39;1;55;9;9 -207;'740;Suriname;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3426;3877;4358;3837;2710;3148;3259 -207;'740;Suriname;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;50;50;1;135;31;2 -210;'752;Sweden;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5069290.75;5666443;5342889;4971505;5830735;6716922;5939117 -210;'752;Sweden;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15935366.4;17172634;16433275;16228127;20140899;20259647;18113524 -210;'752;Sweden;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;52594;47816;49315;54646;65541;64275;67235;78859;93052;107952;108465;121768;170558;259318;331595;375298;403305;326181;485917;688654;721181;499891;447242;515452;579222;831063;1101051;1218913;1215601;1136016;1085224;1113579;820130;1214220;1647499;1341981;1398358;1547438;1645465;1744456;1553330;1513737;1855873;2166374;2425144;2522010;3164599;3315698;2219995;2759672;3037590;2754067;2760147;2690308;2147735;2211860;2439513.34;2941396;2645885;2289054;2662508;3134095;2816229 -210;'752;Sweden;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;584440;573248;623726;736776;754812;756152;780147;1197325;1331569;1554209;1598845;1840760;2642490;3827045;3436750;3685854;3612710;4154808;5197401;5644244;5196264;4636943;4728906;5172871;4950331;5821183;7317359;8523165;8884496;9729603;9026827;9239224;7520814;8972791;11598373;11011964;10295373;9995720;9700192;10129866;8719424;9230417;11007480;12903858;13219230;14552528;16591843;17179603;14121682;15288910;17233525;15277583;15926502;15038058;13264200;12483248;13297018.94;14443086;13737453;13592500;17087648;17279183;15113259 -210;'752;Sweden;1861;Roundwood;5516;Production;m3;45000000;45590000;43900000;48000000;50200000;49600000;53800000;50100000;52550000;59967000;64646016;55197016;57372016;63025016;57310000;54655008;47060000;48520000;53400000;49195000;49860016;50916008;52980000;52945008;51470000;52415000;53075008;53900008;55830016;52871000;51400000;53520000;54000000;56300000;63600000;56300000;60200000;60600000;58700000;63300000;63200000;66600000;67100000;67300000;98200000;64600000;78200000;70800000;65100000;72200000;71900000;69499000;69600000;73300000;74300000;74800000;74180000;73178000;74400000;74107000;77316311;77218405;72200000 -210;'752;Sweden;1861;Roundwood;5616;Import quantity;m3;1519900;1091300;608100;350500;394900;379900;419700;344700;398900;577900;822800;374600;644600;1259500;3021600;3001600;2867800;1347800;2484900;3116600;4830100;2881900;2581800;3496500;4208000;5584000;7290500;7411700;6563200;1956915;4707174;4896191;4309933;6677000;7667000;5017000;7744000;9300700;10428000;11897535;9660840;10170749;9697445;9670742;8849968;6893697;7469196;6922875;5213376;6791223;7519014;7334000;8029418;8504930;7212597;6995280;6831306;9564636;8883323;7328144;6410099;6657071;7546676 -210;'752;Sweden;1861;Roundwood;5622;Import value;1000 USD;20301;15689;10874;8097;9737;9284;8637;8439;8509;11157;14154;8589;20074;44786;112746;120032;123860;53826;107827;172193;252401;134463;89863;114618;150317;258122;386322;407169;360501;104610;215058;267934;168870;316485;454003;268633;361660;436516;476480;484197;365850;408016;465363;547590;523521;412854;686019;653046;321624;467670;606346;486208;589745;601567;415736;375208;385278.95;741415;629828;459721;432817;563885;678173 -210;'752;Sweden;1861;Roundwood;5916;Export quantity;m3;961200;1122200;1415300;1716600;2178500;2114400;2651300;2792900;3188900;4276400;3709800;2664900;2978500;2171100;1977800;1527400;924100;858700;841600;891000;809000;613400;627100;957000;916100;772300;842400;872500;857500;803814;812130;653920;843000;1068000;1738000;1628000;1404000;1454500;1335000;1461813;1340450;1785189;1533438;1558155;3126887;3045170;3886000;2453082;1208654;1256041;892225;819813;775374;644470;632833;599909;981217;791058;896091;1122537;1382597;2297471;1437184 -210;'752;Sweden;1861;Roundwood;5922;Export value;1000 USD;15707;17912;20155;27128;33470;34764;39524;36933;39550;58400;53145;38666;50248;52785;63137;54871;37456;37279;36612;42721;38489;27291;24293;33174;34375;30057;47072;58733;59067;67771;53807;55098;44518;54824;150399;137823;112752;83436;69441;61146;53097;81276;84409;97100;176911;171918;316323;227866;97438;112665;92665;101650;76118;68525;49579;47942;128484.22;114330;108950;120600;179711;241373;167282 -210;'752;Sweden;1862;Roundwood, coniferous;5516;Production;m3;40400000;39400000;38000000;41600000;43300000;43000000;46490000;44125000;45735000;53270000;57199016;49127016;51470016;56459016;50060000;47345008;41494000;42412000;46882000;41672000;41947016;43343008;44387000;44327008;43812000;44207000;44707008;45543008;47388016;45738000;44420000;46670000;47500000;51200000;58100000;50560000;54360000;54386000;52570000;57010000;56840000;60150000;60550000;60750000;92000000;58400000;71240000;64500000;59100000;65340000;64925000;62595000;62760000;66630000;67260000;67750000;65430000;63900000;65150000;66400000;69100000;69050000;64450000 -210;'752;Sweden;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4679103;6676198;5991366;4729955;4046424;4126061;5225767 -210;'752;Sweden;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;268558.04;513928;415477;288081;259741;289744;413197 -210;'752;Sweden;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;949323;728600;847138;1085957;1312459;2182188;1348691 -210;'752;Sweden;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;123738.37;106164;102658;116235;171099;229414;153361 -210;'752;Sweden;1863;Roundwood, non-coniferous;5516;Production;m3;4600000;6190000;5900000;6400000;6900000;6600000;7310000;5975000;6815000;6697000;7447000;6070000;5902000;6566000;7250000;7310000;5566000;6108000;6518000;7523000;7913000;7573000;8593000;8618000;7658000;8208000;8368000;8357000;8442000;7133000;6980000;6850000;6500000;5100000;5500000;5740000;5840000;6214000;6130000;6290000;6360000;6450000;6550000;6550000;6200000;6200000;6960000;6300000;6000000;6860000;6975000;6904000;6840000;6670000;7040000;7050000;8750000;9278000;9250000;7707000;8216311;8168405;7750000 -210;'752;Sweden;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2152203;2888438;2891957;2598189;2363675;2531010;2320909 -210;'752;Sweden;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116720.91;227487;214351;171640;173076;274141;264976 -210;'752;Sweden;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31894;62458;48953;36580;70138;115283;88493 -210;'752;Sweden;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4745.85;8166;6292;4365;8612;11959;13921 -210;'752;Sweden;1864;Wood fuel;5516;Production;m3;4800000;4400000;4200000;4000000;3900000;3700000;3600000;3600000;3400000;3300000;3100000;2794000;2500000;2500000;2500000;2500000;2800000;3400000;3900000;4400000;4400000;4400000;4400000;4400000;4400000;4400000;4400000;4400000;4400000;3800000;3800000;3800000;3800000;3800000;3800000;3800000;3800000;5900000;5900000;5900000;5900000;5900000;5900000;5900000;5900000;5900000;5900000;5900000;5900000;5900000;5900000;5900000;5900000;5900000;7000000;6900000;6600000;5466000;5400000;5100000;5900000;6000000;6000000 -210;'752;Sweden;1864;Wood fuel;5616;Import quantity;m3;26500;25600;21800;2100;5600;5600;5400;4700;700;1800;300;1300;800;300;300;600;700;700;700;700;1100;700;4000;5100;5100;5600;7200;9400;10000;200;3000;2429;37000;11000;14000;41000;90000;128700;148000;177000;155840;465749;676232;272293;164000;230000;104779;142000;537376;515188;794746;479000;497310;377470;271830;188183;157836;85280;78858;88496;66434;150604;244000 -210;'752;Sweden;1864;Wood fuel;5622;Import value;1000 USD;117;191;142;21;56;59;55;40;6;18;4;20;10;10;10;23;22;22;22;24;20;13;39;36;47;126;158;173;200;23;167;137;1028;1166;421;1492;2753;2975;2654;3302;2915;10106;17372;7820;4959;8617;5349;7395;21867;17731;34936;18858;20293;11478;7275;8695;5709.69;6034;6038;6288;7355;15933;19202 -210;'752;Sweden;1864;Wood fuel;5916;Export quantity;m3;70000;92200;111400;20100;9000;11300;5200;6200;4800;3700;2700;1900;4600;8100;2200;500;800;1200;5800;10300;7200;11400;16500;14300;19800;15600;29900;16100;12400;7700;5000;13920;10000;14000;13000;8000;11000;34100;20000;30750;37580;30207;13673;36562;32000;41630;78000;103909;31654;39471;45940;26213;18906;14850;62918;26544;17864;35584;25913;51578;67306;101515;30003 -210;'752;Sweden;1864;Wood fuel;5922;Export value;1000 USD;256;338;528;244;110;126;72;80;63;40;25;25;66;135;72;23;66;66;280;378;238;289;339;206;269;590;773;473;424;296;333;526;642;1166;1826;895;524;592;767;1080;1332;1919;1187;1398;2681;3255;6371;9267;4302;6397;6574;3500;2928;1658;3284;2490;2333.85;4253;2927;4774;7750;9042;7168 -210;'752;Sweden;1627;Wood fuel, coniferous;5516;Production;m3;1800000;1100000;1100000;1500000;1700000;1600000;1500000;1500000;1400000;1300000;1180000;1064000;950000;950000;950000;950000;1064000;1292000;1482000;1672000;1672000;1672000;1672000;1672000;1672000;1672000;1672000;1672000;1672000;1900000;1900000;1900000;1900000;1900000;1900000;1900000;1900000;2950000;2950000;2950000;2950000;2950000;2950000;2950000;3900000;3900000;2950000;2950000;2950000;2950000;2950000;2950000;2950000;2950000;3500000;3450000;3300000;2733000;2700000;2550000;2950000;3000000;3000000 -210;'752;Sweden;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;132546;63701;51886;72057;41983;36048;219000 -210;'752;Sweden;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3022.31;3264;2385;3281;1955;3215;16226 -210;'752;Sweden;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9032;13538;14315;39453;37383;45528;7005 -210;'752;Sweden;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1053.92;1249;1084;2434;3026;3157;1733 -210;'752;Sweden;1628;Wood fuel, non-coniferous;5516;Production;m3;3000000;3300000;3100000;2500000;2200000;2100000;2100000;2100000;2000000;2000000;1920000;1730000;1550000;1550000;1550000;1550000;1736000;2108000;2418000;2728000;2728000;2728000;2728000;2728000;2728000;2728000;2728000;2728000;2728000;1900000;1900000;1900000;1900000;1900000;1900000;1900000;1900000;2950000;2950000;2950000;2950000;2950000;2950000;2950000;2000000;2000000;2950000;2950000;2950000;2950000;2950000;2950000;2950000;2950000;3500000;3450000;3300000;2733000;2700000;2550000;2950000;3000000;3000000 -210;'752;Sweden;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25290;21579;26972;16439;24451;114556;25000 -210;'752;Sweden;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2687.38;2770;3653;3007;5400;12718;2976 -210;'752;Sweden;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8832;22046;11598;12125;29923;55987;22998 -210;'752;Sweden;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1279.93;3004;1843;2340;4724;5885;5435 -210;'752;Sweden;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;26500;25600;21800;2100;5600;5600;5400;4700;700;1800;300;1300;800;300;300;600;700;700;700;700;1100;700;4000;5100;5100;5600;7200;9400;10000;200;3000;2429;37000;11000;14000;41000;90000;128700;148000;177000;155840;465749;676232;272293;164000;230000;104779;142000;537376;515188;794746;479000;497310;377470;271830;188183;;;;;;; -210;'752;Sweden;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;117;191;142;21;56;59;55;40;6;18;4;20;10;10;10;23;22;22;22;24;20;13;39;36;47;126;158;173;200;23;167;137;1028;1166;421;1492;2753;2975;2654;3302;2915;10106;17372;7820;4959;8617;5349;7395;21867;17731;34936;18858;20293;11478;7275;8695;;;;;;; -210;'752;Sweden;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;70000;92200;111400;20100;9000;11300;5200;6200;4800;3700;2700;1900;4600;8100;2200;500;800;1200;5800;10300;7200;11400;16500;14300;19800;15600;29900;16100;12400;7700;5000;13920;10000;14000;13000;8000;11000;34100;20000;30750;37580;30207;13673;36562;32000;41630;78000;103909;31654;39471;45940;26213;18906;14850;62918;26544;;;;;;; -210;'752;Sweden;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;256;338;528;244;110;126;72;80;63;40;25;25;66;135;72;23;66;66;280;378;238;289;339;206;269;590;773;473;424;296;333;526;642;1166;1826;895;524;592;767;1080;1332;1919;1187;1398;2681;3255;6371;9267;4302;6397;6574;3500;2928;1658;3284;2490;;;;;;; -210;'752;Sweden;1865;Industrial roundwood;5516;Production;m3;40200000;41190000;39700000;44000000;46300000;45900000;50200000;46500000;49150000;56667000;61546016;52403016;54872016;60525016;54810000;52155008;44260000;45120000;49500000;44795000;45460016;46516008;48580000;48545008;47070000;48015000;48675008;49500008;51430016;49071000;47600000;49720000;50200000;52500000;59800000;52500000;56400000;54700000;52800000;57400000;57300000;60700000;61200000;61400000;92300000;58700000;72300000;64900000;59200000;66300000;66000000;63599000;63700000;67400000;67300000;67900000;67580000;67712000;69000000;69007000;71416311;71218405;66200000 -210;'752;Sweden;1865;Industrial roundwood;5616;Import quantity;m3;1493400;1065700;586300;348400;389300;374300;414300;340000;398200;576100;822500;373300;643800;1259200;3021300;3001000;2867100;1347100;2484200;3115900;4829000;2881200;2577800;3491400;4202900;5578400;7283300;7402300;6553200;1956715;4704174;4893762;4272933;6666000;7653000;4976000;7654000;9172000;10280000;11720535;9505000;9705000;9021213;9398449;8685968;6663697;7364417;6780875;4676000;6276035;6724268;6855000;7532108;8127460;6940767;6807097;6673470;9479356;8804465;7239648;6343665;6506467;7302676 -210;'752;Sweden;1865;Industrial roundwood;5622;Import value;1000 USD;20184;15498;10732;8076;9681;9225;8582;8399;8503;11139;14150;8569;20064;44776;112736;120009;123838;53804;107805;172169;252381;134450;89824;114582;150270;257996;386164;406996;360301;104587;214891;267797;167842;315319;453582;267141;358907;433541;473826;480895;362935;397910;447991;539770;518562;404237;680670;645651;299757;449939;571410;467350;569452;590089;408461;366513;379569.26;735381;623790;453433;425462;547952;658971 -210;'752;Sweden;1865;Industrial roundwood;5916;Export quantity;m3;891200;1030000;1303900;1696500;2169500;2103100;2646100;2786700;3184100;4272700;3707100;2663000;2973900;2163000;1975600;1526900;923300;857500;835800;880700;801800;602000;610600;942700;896300;756700;812500;856400;845100;796114;807130;640000;833000;1054000;1725000;1620000;1393000;1420400;1315000;1431063;1302870;1754982;1519765;1521593;3094887;3003540;3808000;2349173;1177000;1216570;846285;793600;756468;629620;569915;573365;963353;755474;870178;1070959;1315291;2195956;1407181 -210;'752;Sweden;1865;Industrial roundwood;5922;Export value;1000 USD;15451;17574;19627;26884;33360;34638;39452;36853;39487;58360;53120;38641;50182;52650;63065;54848;37390;37213;36332;42343;38251;27002;23954;32968;34106;29467;46299;58260;58643;67475;53474;54572;43876;53658;148573;136928;112228;82844;68674;60066;51765;79357;83222;95702;174230;168663;309952;218599;93136;106268;86091;98150;73190;66867;46295;45452;126150.37;110077;106023;115826;171961;232331;160114 -210;'752;Sweden;1866;Industrial roundwood, coniferous;5516;Production;m3;38600000;38300000;36900000;40100000;41600000;41400000;44990000;42625000;44335000;51970000;56019016;48063016;50520016;55509016;49110000;46395008;40430000;41120000;45400000;40000000;40275016;41671008;42715000;42655008;42140000;42535000;43035008;43871008;45716016;43838000;42520000;44770000;45600000;49300000;56200000;48660000;52460000;51436000;49620000;54060000;53890000;57200000;57600000;57800000;88100000;54500000;68290000;61550000;56150000;62390000;61975000;59645000;59810000;63680000;63760000;64300000;62130000;61167000;62450000;63850000;66150000;66050000;61450000 -210;'752;Sweden;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1838150;3586491;2925000;2420000;3632000;3757000;2539000;4081000;5039500;6083000;7149297;5647000;5336000;5001000;5207449;4018714;3158012;3569041;3376569;2521000;3136832;3675459;3865000;4876204;4920160;4260901;4344228;4546557;6612497;5939480;4657898;4004441;4090013;5006767 -210;'752;Sweden;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96103;164183;168927;98849;173147;221455;134243;195810;244154;296743;311614;225760;227185;258197;313124;230686;182738;310649;295532;162941;224050;313603;289618;375623;370314;257660;239924;265535.73;510664;413092;284800;257786;286529;396971 -210;'752;Sweden;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;656696;696670;563000;752000;1011000;1659000;1583000;1363000;1394000;1295000;1397000;1273320;1720635;1491856;1496593;3089187;2998390;3794000;2334088;1165000;1205946;826205;698600;742800;607370;542286;553825;940291;715062;832823;1046504;1275076;2136660;1341686 -210;'752;Sweden;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56647;46983;48297;39957;51063;143237;134392;110917;81146;66890;57315;50480;77862;81754;93781;173651;167584;306544;215641;91074;105347;83048;68415;70446;60307;40054;41284;122684.46;104915;101574;113801;168073;226257;151628 -210;'752;Sweden;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1838150;3586491;2925000;2420000;3632000;3757000;2539000;4081000;5039500;6083000;7149297;5647000;5336000;5001000;5207449;4018714;3158012;3569041;3376569;2521000;3136832;3675459;3865000;4876204;4920160;4260901;4344228;4546557;6612497;5939480;4657898;4004441;4090013;5006767 -210;'752;Sweden;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96103;164183;168927;98849;173147;221455;134243;195810;244154;296743;311614;225760;227185;258197;313124;230686;182738;310649;295532;162941;224050;313603;289618;375623;370314;257660;239924;265535.73;510664;413092;284800;257786;286529;396971 -210;'752;Sweden;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;656696;696670;563000;752000;1011000;1659000;1583000;1363000;1394000;1295000;1397000;1273320;1720635;1491856;1496593;3089187;2998390;3794000;2334088;1165000;1205946;826205;698600;742800;607370;542286;553825;940291;715062;832823;1046504;1275076;2136660;1341686 -210;'752;Sweden;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56647;46983;48297;39957;51063;143237;134392;110917;81146;66890;57315;50480;77862;81754;93781;173651;167584;306544;215641;91074;105347;83048;68415;70446;60307;40054;41284;122684.46;104915;101574;113801;168073;226257;151628 -210;'752;Sweden;1867;Industrial roundwood, non-coniferous;5516;Production;m3;1600000;2890000;2800000;3900000;4700000;4500000;5210000;3875000;4815000;4697000;5527000;4340000;4352000;5016000;5700000;5760000;3830000;4000000;4100000;4795000;5185000;4845000;5865000;5890000;4930000;5480000;5640000;5629000;5714000;5233000;5080000;4950000;4600000;3200000;3600000;3840000;3940000;3264000;3180000;3340000;3410000;3500000;3600000;3600000;4200000;4200000;4010000;3350000;3050000;3910000;4025000;3954000;3890000;3720000;3540000;3600000;5450000;6545000;6550000;5157000;5266311;5168405;4750000 -210;'752;Sweden;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118565;1117683;1968762;1852933;3034000;3896000;2437000;3573000;4132500;4197000;4571238;3858000;4369000;4020213;4191000;4667254;3505685;3795376;3404306;2155000;3139203;3048809;2990000;2655904;3207300;2679866;2462869;2126913;2866859;2864985;2581750;2339224;2416454;2295909 -210;'752;Sweden;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8484;50708;98870;68993;142172;232127;132898;163097;189387;177083;169281;137175;170725;189794;226646;287876;221499;370021;350119;136816;225889;257807;177732;193829;219775;150801;126589;114033.53;224717;210698;168633;167676;261423;262000 -210;'752;Sweden;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;139418;110460;77000;81000;43000;66000;37000;30000;26400;20000;34063;29550;34347;27909;25000;5700;5150;14000;15085;12000;10624;20080;95000;13668;22250;27629;19540;23062;40412;37355;24455;40215;59296;65495 -210;'752;Sweden;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10828;6491;6275;3919;2595;5336;2536;1311;1698;1784;2751;1285;1495;1468;1921;579;1079;3408;2958;2062;921;3043;29735;2744;6560;6241;4168;3465.92;5162;4449;2025;3888;6074;8486 -210;'752;Sweden;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2106;1000;933;2000;2000;1000;1000;1700;1000;2200;2150;3000;1990;2920;3000;1974;4156;2516;1067;2351;1662;541;117;210;424;481;583;454;114;77;95;300;41 -210;'752;Sweden;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;782;518;385;1037;1685;1340;1048;1450;1112;1344;1410;2168;1651;2746;3083;1796;6642;2953;747;1297;1174;774;218;298;563;644;716.53;617;161;72;145;548;9 -210;'752;Sweden;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;0;63;170;175;191;146;146;198;467;248;80;141;100;20;24;15;0;0;34;17;11;8;5;19;852 -210;'752;Sweden;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;189;210;88;193;242;306;234;255;407;889;731;184;291;143;44;45;27;27;0;55.69;21;21;20;11;28;476 -210;'752;Sweden;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118565;1115577;1967762;1852000;3032000;3894000;2436000;3572000;4130800;4196000;4569038;3855850;4366000;4018223;4188080;4664254;3503711;3791220;3401790;2153933;3136852;3047147;2989459;2655787;3207090;2679442;2462388;2126330;2866405;2864871;2581673;2339129;2416154;2295868 -210;'752;Sweden;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8484;49926;98352;68608;141135;230442;131558;162049;187937;175971;167937;135765;168557;188143;223900;284793;219703;363379;347166;136069;224592;256633;176958;193611;219477;150238;125945;113317;224100;210537;168561;167531;260875;261991 -210;'752;Sweden;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;139418;110460;77000;81000;43000;66000;37000;30000;26200;20000;34000;29380;34172;27718;24854;5554;4952;13533;14837;11920;10483;19980;94980;13644;22235;27629;19540;23028;40395;37344;24447;40210;59277;64643 -210;'752;Sweden;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10828;6491;6275;3919;2595;5336;2536;1311;1509;1574;2663;1092;1253;1162;1687;324;672;2519;2227;1878;630;2900;29691;2699;6533;6214;4168;3410.23;5141;4428;2005;3877;6046;8010 -210;'752;Sweden;1868;Sawlogs and veneer logs;5516;Production;m3;16300000;15800000;16600000;19500000;20500000;19000000;18380000;21270000;21010000;23190000;23591008;23697008;26207008;27883008;21600000;22805008;22260000;22120000;22700000;22600000;20875008;22385008;24400000;24215008;23110000;22900000;22365008;22731008;22973008;24808000;22900000;24700000;25800000;29300000;34700000;30600000;34100000;32000000;30800000;33140000;33200000;33800000;35500000;35400000;56500000;31700000;39800000;32000000;30100000;35100000;33800000;32700000;31900000;37100000;35900000;35900000;36700000;36600000;37400000;37200000;39300000;38300000;34400000 -210;'752;Sweden;1868;Sawlogs and veneer logs;5616;Import quantity;m3;266900;168800;128100;88300;84000;75300;51400;76000;62900;86800;61800;42900;314600;272900;95100;866500;911500;307600;574100;567300;437300;437400;354300;369600;520800;602600;854500;932400;763200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -210;'752;Sweden;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;6694;5348;5280;4702;5633;5110;3715;5381;4359;4991;4215;4004;14630;17010;6907;45431;52404;18872;37569;42084;28614;23354;17140;18818;25804;34149;58723;67929;57500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -210;'752;Sweden;1868;Sawlogs and veneer logs;5916;Export quantity;m3;224600;213600;153700;234200;308000;545000;507800;207300;234700;650100;379200;415300;366300;351200;216400;197400;236500;222000;215400;202700;225100;159700;215400;246100;236100;236600;240500;365600;378900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -210;'752;Sweden;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;6081;4723;3178;5159;6789;11022;9628;4436;4598;11478;7031;8651;8712;11070;8293;8613;11308;11252;10920;10621;11843;7249;7833;9227;9644;12014;14223;28344;31900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -210;'752;Sweden;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;16000000;15500000;16300000;19000000;20100000;18600000;18020000;20850000;20600000;22780000;23191008;23267008;25777008;27483008;21100000;22195008;21820000;21720000;22300000;22220000;20475008;21985008;24000000;23765008;22660000;22450000;21925008;22331008;22473008;24308000;22400000;24300000;25400000;28900000;34300000;30200000;33700000;31500000;30300000;32730000;32700000;33500000;35000000;34900000;56400000;31500000;39600000;31800000;29900000;34900000;33600000;32500000;31700000;36900000;35700000;35700000;36500000;36400000;37200000;37000000;39100000;38100000;34300000 -210;'752;Sweden;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;234400;126800;90400;45900;35800;28900;23300;33400;27000;44700;25900;11400;273300;231500;76600;837900;886000;284000;553500;549300;421500;422600;343700;356600;509800;587900;836400;916700;743200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -210;'752;Sweden;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;4055;1995;1432;910;711;573;446;587;428;833;590;317;9372;8595;3824;41251;47322;14641;32552;37424;25435;20718;14699;16021;23854;33851;55234;64929;54000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -210;'752;Sweden;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;212400;202900;143100;223200;294700;527500;480400;182200;207600;625100;354900;392000;337800;307800;194900;184000;229300;209000;200500;171700;197300;124100;158400;155300;158800;155700;157100;175700;224300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -210;'752;Sweden;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;5895;4492;2901;4883;6388;10545;9015;3752;4024;10895;6505;7928;8008;9788;7074;7878;10868;10721;10407;9391;10830;5802;6188;6200;7122;8656;10482;19344;24700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -210;'752;Sweden;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;300000;300000;300000;500000;400000;400000;360000;420000;410000;410000;400000;430000;430000;400000;500000;610000;440000;400000;400000;380000;400000;400000;400000;450000;450000;450000;440000;400000;500000;500000;500000;400000;400000;400000;400000;400000;400000;500000;500000;410000;500000;300000;500000;500000;100000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;200000;100000 -210;'752;Sweden;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;32500;42000;37700;42400;48200;46400;28100;42600;35900;42100;35900;31500;41300;41400;18500;28600;25500;23600;20600;18000;15800;14800;10600;13000;11000;14700;18100;15700;20000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -210;'752;Sweden;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;2639;3353;3848;3792;4922;4537;3269;4794;3931;4158;3625;3687;5258;8415;3083;4180;5082;4231;5017;4660;3179;2636;2441;2797;1950;298;3489;3000;3500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -210;'752;Sweden;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;12200;10700;10600;11000;13300;17500;27400;25100;27100;25000;24300;23300;28500;43400;21500;13400;7200;13000;14900;31000;27800;35600;57000;90800;77300;80900;83400;189900;154600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -210;'752;Sweden;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;186;231;277;276;401;477;613;684;574;583;526;723;704;1282;1219;735;440;531;513;1230;1013;1447;1645;3027;2522;3358;3741;9000;7200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -210;'752;Sweden;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22200000;21500000;23760000;23600000;26400000;25200000;25500000;35300000;26500000;32000000;32400000;28600000;30700000;31700000;30399000;31300000;29800000;30900000;31500000;30380000;30812000;31300000;31507000;31816311;32618405;31500000 -210;'752;Sweden;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19536000;18920000;20930000;20790000;23300000;22200000;22500000;31300000;22600000;28440000;29500000;26000000;27240000;28125000;26895000;27860000;26530000;27810000;28350000;25380000;24617000;25100000;26700000;26900000;27800000;27000000 -210;'752;Sweden;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2664000;2580000;2830000;2810000;3100000;3000000;3000000;4000000;3900000;3560000;2900000;2600000;3460000;3575000;3504000;3440000;3270000;3090000;3150000;5000000;6195000;6200000;4807000;4916311;4818405;4500000 -210;'752;Sweden;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5616;Import quantity;m3;1224000;894100;456400;258800;305000;297600;361800;263500;334800;488800;760100;328900;326300;984800;2923700;2113200;1933600;1027700;1908300;2543500;4390000;2442000;2219500;3116000;3679100;4971900;6424900;6466000;5785000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -210;'752;Sweden;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5622;Import value;1000 USD;13458;10084;5381;3322;4023;4025;4777;2964;4107;6116;9890;4417;5214;27563;105518;72258;68816;33603;69886;129659;223529;110823;72162;95025;124104;223271;326746;338372;301901;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -210;'752;Sweden;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5916;Export quantity;m3;527900;653100;1010800;1309500;1695200;1432300;2025500;2472600;2833000;3516300;3241000;2161400;2533200;1729500;1695700;1272900;649000;590300;561900;622100;531400;392500;340200;638000;614800;473900;531000;473500;447500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -210;'752;Sweden;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5922;Export value;1000 USD;6389;8929;13184;18084;22413;19982;26649;29313;31364;43836;42767;26627;38126;36135;48558;40883;22100;19072;17851;21432;18281;12649;8276;15985;17421;8909;24578;25325;21743;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -210;'752;Sweden;1870;Pulpwood and particles (1961-1997);5516;Production;m3;22970000;24165000;21970000;23960000;25265000;26275000;31350000;24700000;27640000;32984000;37495008;28254008;28230008;32212008;32800000;28950000;21500000;22500000;26300000;22025000;24400008;23961000;24000000;24150000;23780000;25010000;26210000;26669000;28307008;24113000;24550000;24500000;23900000;22700000;24600000;21400000;21800000;;;;;;;;;;;;;;;;;;;;;;;;;; -210;'752;Sweden;1870;Pulpwood and particles (1961-1997);5616;Import quantity;m3;1224000;894100;456400;258800;305000;297600;361800;263500;334800;488800;760100;328900;326300;984800;2923700;2113200;1933600;1027700;1908300;2543500;4390000;2442000;2219500;3116000;3679100;4971900;6424900;6466000;5785000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -210;'752;Sweden;1870;Pulpwood and particles (1961-1997);5622;Import value;1000 USD;13458;10084;5381;3322;4023;4025;4777;2964;4107;6116;9890;4417;5214;27563;105518;72258;68816;33603;69886;129659;223529;110823;72162;95025;124104;223271;326746;338372;301901;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -210;'752;Sweden;1870;Pulpwood and particles (1961-1997);5916;Export quantity;m3;527900;653100;1010800;1309500;1695200;1432300;2025500;2472600;2833000;3516300;3241000;2161400;2533200;1729500;1695700;1272900;649000;590300;561900;622100;531400;392500;340200;638000;614800;473900;531000;473500;447500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -210;'752;Sweden;1870;Pulpwood and particles (1961-1997);5922;Export value;1000 USD;6389;8929;13184;18084;22413;19982;26649;29313;31364;43836;42767;26627;38126;36135;48558;40883;22100;19072;17851;21432;18281;12649;8276;15985;17421;8909;24578;25325;21743;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -210;'752;Sweden;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;21700000;21600000;19500000;20600000;21000000;22300000;26600000;21350000;23320000;28782000;32453008;24429008;24393008;27681008;27700000;23900000;18210000;19000000;22700000;17670000;19675008;19576000;18600000;18780000;19370000;20030000;21060000;21490000;23193008;19480000;20070000;20300000;20000000;20200000;21700000;18000000;18300000;;;;;;;;;;;;;;;;;;;;;;;;;; -210;'752;Sweden;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;1270000;2565000;2470000;3360000;4265000;3975000;4750000;3350000;4320000;4202000;5042000;3825000;3837000;4531000;5100000;5050000;3290000;3500000;3600000;4355000;4725000;4385000;5400000;5370000;4410000;4980000;5150000;5179000;5114000;4633000;4480000;4200000;3900000;2500000;2900000;3400000;3500000;;;;;;;;;;;;;;;;;;;;;;;;;; -210;'752;Sweden;1871;Other industrial roundwood;5516;Production;m3;930000;1225000;1130000;540000;535000;625000;470000;530000;500000;493000;460000;452000;435000;430000;410000;400000;500000;500000;500000;170000;185000;170000;180000;180000;180000;105000;100000;100000;150000;150000;150000;520000;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;300000;300000;300000;300000;300000;300000 -210;'752;Sweden;1871;Other industrial roundwood;5616;Import quantity;m3;2500;2800;1800;1300;300;1400;1100;500;500;500;600;1500;2900;1500;2500;21300;22000;11800;1800;5100;1700;1800;4000;5800;3000;3900;3900;3900;5000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -210;'752;Sweden;1871;Other industrial roundwood;5622;Import value;1000 USD;32;66;71;52;25;90;90;54;37;32;45;148;220;203;311;2320;2618;1329;350;426;238;273;522;739;362;576;695;695;900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -210;'752;Sweden;1871;Other industrial roundwood;5916;Export quantity;m3;138700;163300;139400;152800;166300;125800;112800;106800;116400;106300;86900;86300;74400;82300;63500;56600;37800;45200;58500;55900;45300;49800;55000;58600;45400;46200;41000;17300;18700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -210;'752;Sweden;1871;Other industrial roundwood;5922;Export value;1000 USD;2981;3922;3265;3641;4158;3634;3175;3104;3525;3046;3322;3363;3344;5445;6214;5352;3982;6889;7561;10290;8127;7104;7845;7756;7041;8544;7498;4591;5000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -210;'752;Sweden;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;900000;1200000;1100000;500000;500000;500000;370000;425000;415000;408000;375000;367000;350000;345000;310000;300000;400000;400000;400000;110000;125000;110000;115000;110000;110000;55000;50000;50000;50000;50000;50000;170000;200000;200000;200000;460000;460000;400000;400000;400000;400000;400000;400000;400000;400000;400000;250000;250000;250000;250000;250000;250000;250000;250000;250000;250000;250000;150000;150000;150000;150000;150000;150000 -210;'752;Sweden;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;30000;25000;30000;40000;35000;125000;100000;105000;85000;85000;85000;85000;85000;85000;100000;100000;100000;100000;100000;60000;60000;60000;65000;70000;70000;50000;50000;50000;100000;100000;100000;350000;300000;300000;300000;40000;40000;100000;100000;100000;100000;100000;100000;100000;100000;100000;250000;250000;250000;250000;250000;250000;250000;250000;250000;250000;250000;150000;150000;150000;150000;150000;150000 -210;'752;Sweden;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;2500;2800;1800;1300;300;1400;1100;500;500;500;600;1500;2900;1500;2500;21300;22000;11800;1800;5100;1700;1800;4000;5800;3000;3900;3900;3900;5000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -210;'752;Sweden;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;32;66;71;52;25;90;90;54;37;32;45;148;220;203;311;2320;2618;1329;350;426;238;273;522;739;362;576;695;695;900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -210;'752;Sweden;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;138700;163300;139400;152800;166300;125800;112800;106800;116400;106300;86900;86300;74400;82300;63500;56600;37800;45200;58500;55900;45300;49800;55000;58600;45400;46200;41000;17300;18700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -210;'752;Sweden;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;2981;3922;3265;3641;4158;3634;3175;3104;3525;3046;3322;3363;3344;5445;6214;5352;3982;6889;7561;10290;8127;7104;7845;7756;7041;8544;7498;4591;5000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -210;'752;Sweden;1630;Wood charcoal;5510;Production;t;28491;25343;30606;26980;32167;32065;34877;33001;33940;27892;18843;16558;16057;17531;17237;16478;12855;18549;18846;14991;13901;6995;9542;2331;0;0;0;8681;2442;18073;13377;21254;17407;19874;25276;23459;24440;3000;3000;3000;1000;1000;1000;1000;1000;1000;1000;0;0;693;700;700;700;500;500;500;1000;1000;1000;2000;2000;2000;2000 -210;'752;Sweden;1630;Wood charcoal;5610;Import quantity;t;400;300;400;600;800;600;600;300;800;5800;2000;1400;1700;2500;2700;4900;7300;6000;5200;5700;6600;20600;16400;20500;29300;29800;31300;16300;23700;9000;15000;8618;14000;13000;9000;12000;12000;68800;10000;10864;13950;15880;17515;18255;19409;19483;21716;23285;22418;21172;22520;22228;31604;39150;24761;35893;31363;28316;36000;28974;36207;25483;21940 -210;'752;Sweden;1630;Wood charcoal;5622;Import value;1000 USD;17;15;18;21;28;32;37;22;62;251;119;138;176;294;360;574;814;842;1843;2484;2961;1495;940;1150;1681;2262;3094;3071;3244;3991;4670;4187;3737;3982;4072;5966;5375;4866;4069;4527;5332;6535;8056;8756;9651;10022;12913;15608;14309;14066;17020;16422;23721;26942;14645;19996;19036.04;17318;20741;18538;25627;19596;19007 -210;'752;Sweden;1630;Wood charcoal;5910;Export quantity;t;17900;14300;19300;15500;20500;19800;22200;19600;20600;19100;5500;2000;1300;3100;2500;3400;1600;5400;4400;700;300;7300;5600;2300;900;500;900;1200;1000;500;300;183;93;0;0;0;0;500;1000;462;40;95;333;506;664;1250;1000;800;800;1181;1420;1556;1242;1820;1975;1478;1756;1520;1300;1340;1207;643;1600 -210;'752;Sweden;1630;Wood charcoal;5922;Export value;1000 USD;464;387;517;446;514;465;524;499;503;494;176;98;88;135;215;321;176;642;467;213;99;466;313;145;47;42;95;163;150;335;167;118;48;0;0;0;0;57;242;298;33;28;227;136;547;929;1037;498;682;1234;1585;1729;1329;2011;1663;1333;1592.52;1349;1179;1200;1121;564;1764 -210;'752;Sweden;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14940000;14750000;16569000;16091000;15428000;16100000;16900000;17100000;18100000;22600000;21500000;20500000;20800000;20000000;19000002;18360000;18900000;20140000;20143000;20519000;20610000;20807000;22000000;17557939;17406798;16482000 -210;'752;Sweden;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;938600;994000;1319180;1692020;2043573;2278387;2607000;2860065;2572678;2520477;4409067;3087000;3578562;3616393;3093963;1883009;1808530;1750321;2487478;2769521;2108893;2319107;1685971;1606887;1609230;2044737 -210;'752;Sweden;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44166;71787;64625;182566;83332;122389;136317;157742;169724;215098;398503;231038;269811;171771;143613;111671;92767;71018;93946;106303.62;127072;123980;97575;66168;104811;155865 -210;'752;Sweden;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;288200;292000;283000;373020;394074;364240;586628;774069;827935;965000;852798;539380;553424;600503;277079;193413;232990;328423;363337;318862;272711;206781;228640;381165;437000;326929 -210;'752;Sweden;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12848;13499;11649;14707;16272;19495;31744;44317;51471;57635;82139;47095;47431;32936;25511;18612;20560;23315;25838;24460.64;21343;19637;23107;28769;37842;39741 -210;'752;Sweden;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10600000;10400000;12100000;11403000;11363000;11800000;12500000;12100000;13100000;17600000;16500000;15500000;15800000;16000000;14845610;9995000;10300000;9965000;11344000;11368000;11130000;11400000;12400000;11800000;11700000;11100000 -210;'752;Sweden;1619;Wood chips and particles;5616;Import quantity;m3;;;;180300;179600;138100;201900;206400;229600;208600;177500;132100;137000;142500;404200;263400;957600;163400;268700;1160900;1748000;679900;410700;495200;742700;1046500;1116600;1051600;1245500;1142000;643000;736120;456000;710000;622000;687000;789000;739500;719000;988180;1215000;1666510;1711092;1871000;2054944;1554893;1649247;1700785;1500000;1572375;2134818;1157963;1096637;1132260;1082911;1530204;1988728;2050631;2247233;1657374;1580787;1580759;2016283 -210;'752;Sweden;1619;Wood chips and particles;5622;Import value;1000 USD;;;;1672;1697;1765;2195;2105;2495;2459;2444;2029;2332;3375;15480;9256;40018;6069;12298;63209;100746;33030;14203;17414;28127;54549;63490;59440;69372;57388;37362;33773;18655;35381;33984;37141;36579;33559;31726;47499;161383;62286;77336;82070;102610;82255;126110;132720;97305;100645;118392;81631;77391;72387;55713;76024;94966.48;124440;120863;96290;65074;103620;153889 -210;'752;Sweden;1619;Wood chips and particles;5916;Export quantity;m3;;;;3300;9900;6800;48600;74000;132300;230000;241500;309800;407400;426500;331500;228300;221000;258500;110800;319300;298000;259100;395600;484800;399000;389200;445100;480900;306100;284300;279000;301967;238000;196000;254000;271000;214000;246200;240000;230000;256200;256606;283718;396000;462629;547767;731000;640498;325380;307790;522555;205803;157000;161540;206751;266115;259372;226994;168883;157151;237165;294000;234872 -210;'752;Sweden;1619;Wood chips and particles;5922;Export value;1000 USD;;;;49;167;114;738;1058;1568;3276;3963;4944;6754;10373;10397;8360;7964;9560;3454;11071;10989;9001;11905;14193;14618;18773;25494;27661;15830;13407;13677;13239;8865;7785;13762;15065;10095;10990;11135;9433;9121;9761;13538;19329;18877;23974;34966;52510;19250;17538;22707;14971;10636;10104;12801;17288;18175.38;16305;15060;16430;17642;25160;26333 -210;'752;Sweden;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10700000;9100000;9900000;10700000;10100000;12500000;4340000;4350000;4469000;4688000;4065000;4300000;4400000;5000000;5000000;5000000;5000000;5000000;5000000;4000000;4154392;8365000;8600000;10175000;8799000;9151000;9480000;9407000;9600000;5757939;5706798;5382000 -210;'752;Sweden;1620;Wood residues;5616;Import quantity;m3;;12600;13100;8200;10600;23900;23900;40600;23000;14800;8300;6000;25200;25300;26600;113700;163400;101300;115900;233900;235200;185100;184500;256700;211000;297900;278000;195400;193300;87400;56000;48004;52000;65000;64000;90000;134000;199100;275000;331000;477020;377063;567295;736000;805121;1017785;871230;2708282;1587000;2006187;1481575;1936000;786372;676270;667410;957274;780793;58262;71874;28597;26100;28471;28454 -210;'752;Sweden;1620;Wood residues;5622;Import value;1000 USD;;90;95;41;87;111;174;231;136;95;83;77;176;225;263;850;1738;664;817;1963;1649;1029;914;1598;1062;1700;2178;2189;2052;2293;2669;2629;1542;1817;1685;4027;4719;10607;40061;17126;21183;21046;45053;54247;55132;87469;88988;265783;133733;169166;53379;61982;34280;20380;15305;17922;11337.14;2632;3117;1285;1094;1191;1976 -210;'752;Sweden;1620;Wood residues;5916;Export quantity;m3;;83300;96200;115000;125900;113900;114600;123800;122000;101800;104200;108700;122800;82700;28500;34100;33700;38200;53600;95400;78900;107500;154300;189700;183900;205100;222000;78400;86600;42300;29000;31744;57000;39000;17000;40000;37000;42000;52000;53000;116820;137468;80522;190628;311440;280168;234000;212300;214000;245634;77948;71276;36413;71450;121672;97222;59490;45717;37898;71489;144000;143000;92057 -210;'752;Sweden;1620;Wood residues;5922;Export value;1000 USD;;390;450;508;613;549;617;621;610;538;629;590;792;675;410;620;660;775;700;1112;914;964;1044;1405;1611;2684;3031;735;650;878;878;1339;1028;1166;702;2088;1704;1858;2364;2216;5586;6511;5957;12415;25440;27497;22669;29629;27845;29893;10229;10540;7976;10456;10514;8550;6285.26;5038;4577;6677;11127;12682;13408 -210;'752;Sweden;1605;Sawdust (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28471;28454 -210;'752;Sweden;1605;Sawdust (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1191;1976 -210;'752;Sweden;1605;Sawdust (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;143000;92057 -210;'752;Sweden;1605;Sawdust (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12682;13408 -210;'752;Sweden;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;983000;983000;2400000;2400000;1122070;943630;2450000 -210;'752;Sweden;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;675366;985821;606000;653184;557224;733683 -210;'752;Sweden;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13700;18846;13150;16467;15525;43195 -210;'752;Sweden;1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21154;112269;243569;231000;271000;184673 -210;'752;Sweden;1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2491;8878;14728;13645;17345;13992 -210;'752;Sweden;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1495787;1812000;1877000;1960000;2038000;1741000;1642000;1703000;1660000;1755000;1809000;1738000 -210;'752;Sweden;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;516049;735658;537500;381303;281389;326824;443138;483850;182580;230300;330135;507711 -210;'752;Sweden;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90427;120373;85556;48416;39580;45189.93;70486;77268;26607;36402;64832;100383 -210;'752;Sweden;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;216986;196524;273210;283037;262312;256839;197773;167674;182467;356000;334000;257153 -210;'752;Sweden;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42461;39418;54540;47241;42529;40761.22;34488;32300;34785;58268;69901;71025 -210;'752;Sweden;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1195787;1512000;1577000;1660000;1738000;1741000;1642000;1703000;1660000;1755000;1809000;1738000 -210;'752;Sweden;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;493039;712648;521630;354942;267977;272260;379955;435570;119249;153554;198715;286892 -210;'752;Sweden;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86682;116640;83334;46108;38055;38984.1;63299;71777;19404;27673;49885;83240 -210;'752;Sweden;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;195125;162478;252790;245000;228316;199650;154276;115449;137503;282000;232000;191826 -210;'752;Sweden;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38338;33399;49656;41492;37002;32125.85;27109;23113;26309;46831;52781;52561 -210;'752;Sweden;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300000;300000;300000;300000;300000;0;0;0;0;0;0;0 -210;'752;Sweden;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23010;23010;15870;26361;13412;54564;63183;48280;63331;76746;131420;220819 -210;'752;Sweden;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3745;3733;2222;2308;1525;6205.82;7187;5491;7203;8729;14947;17143 -210;'752;Sweden;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21861;34046;20420;38037;33996;57189;43497;52225;44964;74000;102000;65327 -210;'752;Sweden;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4123;6019;4884;5749;5527;8635.37;7379;9187;8476;11437;17120;18464 -210;'752;Sweden;1872;Sawnwood;5516;Production;m3;8339000;8159000;8460000;9665000;10320000;10013000;10246000;10853000;11444000;12269000;12766000;12868000;13744000;13624000;10933000;11325000;11180000;10906000;11223000;11299000;10502000;11213000;11762000;12382000;11531000;11641000;11524000;11267000;11487000;12018000;11463000;12128000;12738000;13816000;14944000;14370000;15669000;15124000;14858000;16176000;15988000;16172000;16800000;16900000;17600000;18300000;18738000;17601000;16221000;16757000;16492000;16286000;16214000;17500000;18174000;18357000;18406000;18373000;18700000;18500000;19100000;19000000;17900000 -210;'752;Sweden;1872;Sawnwood;5616;Import quantity;m3;252800;201100;234200;222600;244900;183800;156600;185500;193000;184700;148800;143000;200900;189000;140800;254500;241200;241400;336400;333900;197600;118200;133300;172000;168900;186600;186100;264800;285000;259100;184000;158000;174000;248000;294000;214000;211000;257400;278000;348091;299000;375702;381000;336251;348000;383781;409000;380602;356522;422255;400957;402912;424219;436700;438084;471966;542958;509530;535732;647494;564609;670777;638316 -210;'752;Sweden;1872;Sawnwood;5622;Import value;1000 USD;15481;13096;15804;16894;19170;16699;14511;16762;18363;18293;15308;16212;24442;35933;31045;45569;48774;50218;70099;89185;47115;28965;30978;36343;38894;48190;60397;84861;81971;99282;77060;75011;69654;90437;116274;93224;94790;113436;109439;113848;95630;112915;141087;166410;182550;206082;257355;192627;134734;168893;175585;152689;159718;169748;140694;147529;167065.78;179036;155493;187885;257650;253194;194627 -210;'752;Sweden;1872;Sawnwood;5916;Export quantity;m3;4610400;4655600;4878100;5622000;5297400;5011900;5557800;6395800;6816500;6904500;7486700;8450400;9407900;7416600;5313400;6679300;6141500;6870200;7000900;5914500;5638500;7498600;8487600;8049600;7897900;7766700;7499100;6819200;7037000;6251900;6945000;8258000;10067000;10466000;10339000;11649000;10922000;10996100;11082000;11048000;10993110;11286699;11011475;11258842;11898000;13217000;11347000;12005967;12271000;11371082;11679625;11861850;11511042;12140740;12832332;13015301;13008295;12323169;12632485;14037250;12638824;13741121;14016052 -210;'752;Sweden;1872;Sawnwood;5922;Export value;1000 USD;200550;192345;203295;250542;259853;242827;253113;284270;318129;345063;393301;475108;733216;938544;631392;832804;845086;972674;1196484;1287649;1035557;1092877;1210514;1188458;1064781;1275492;1170914;1526792;1623703;1869557;1731040;1933918;1843340;2372107;2574748;2522726;2515737;2198944;2150629;2113348;1864624;2114284;2506303;2762237;2847084;3411366;3963740;3419537;3044048;3312668;3480707;3272317;3285826;3446535;2991447;2909739;3072295.83;3263573;3023226;3370351;5347042;4831146;3617487 -210;'752;Sweden;1632;Sawnwood, coniferous;5516;Production;m3;8105000;7969000;8250000;9395000;10079000;9787500;10003500;10576000;11177500;12017500;12532500;12636500;13450000;13298000;10625500;11018500;10865000;10591500;11000000;11090000;10279000;10990000;11559000;12133000;11288000;11408000;11291000;11044000;11264000;11798000;11250000;11928000;12538000;13616000;14737000;14170000;15419000;14874000;14608000;15970000;15830000;16012000;16640000;16740000;17440000;18190000;18637000;17500000;16115000;16642000;16398000;16143000;15964000;17400000;18074000;18260000;18309000;18273000;18600000;18400000;19000000;18900000;17800000 -210;'752;Sweden;1632;Sawnwood, coniferous;5616;Import quantity;m3;173450;129050;146000;136150;144600;86150;71600;89400;95450;93200;66950;61050;117450;88500;57750;164550;150250;151400;222800;251200;141700;64450;67450;97300;88800;103100;98600;168300;193500;155100;114000;89000;98000;134000;155000;99000;105000;134500;138000;188091;145000;263828;236000;203830;193000;210798;265000;270602;303522;355255;336989;354000;389575;408980;409648;429257;485766;463370;468858;598900;514054;587373;611186 -210;'752;Sweden;1632;Sawnwood, coniferous;5622;Import value;1000 USD;6142;4475;5073;5410;6579;4096;3157;3593;4234;4664;3678;3845;9790;11498;8484;22934;24299;25109;37570;48602;23786;9741;8753;11566;10813;14121;17294;33191;31684;38969;28689;22265;17106;22966;36090;21926;21370;22390;24597;27232;23062;39322;53930;52315;51602;68656;110380;96494;82389;114005;115013;110558;129038;141320;114750;118742;129406.54;142004;121142;149495;209048;207471;162481 -210;'752;Sweden;1632;Sawnwood, coniferous;5916;Export quantity;m3;4591450;4637450;4860550;5606300;5283800;4998350;5542300;6377550;6790750;6877650;7459900;8426100;9379950;7395050;5291550;6610350;6085750;6789850;6923700;5893750;5625050;7474900;8456650;8015650;7868050;7741800;7476850;6799600;7016800;6235050;6931000;8240000;10040000;10423000;10301000;11632000;10902000;10975300;11060000;11022000;10967000;11272802;10995839;11247000;11887000;13203000;11332000;11984404;12252000;11358840;11656400;11842000;11504599;12131470;12827600;12996000;12965580;12296604;12600000;14000000;12600000;13700000;14000000 -210;'752;Sweden;1632;Sawnwood, coniferous;5922;Export value;1000 USD;199426;191468;202405;249590;258994;241835;252044;282908;316347;342994;391171;472864;729718;935157;627639;828739;840543;967889;1191665;1283261;1032278;1088899;1205195;1182306;1059124;1269379;1164047;1519734;1616922;1860528;1723868;1925113;1833447;2361857;2567586;2513031;2506920;2188816;2141024;2102084;1853186;2104301;2493495;2754545;2839769;3398921;3953072;3405399;3034616;3302666;3459585;3251944;3281212;3442609;2989921;2902506;3059153.73;3254401;3013489;3360137;5328551;4812760;3607903 -210;'752;Sweden;1633;Sawnwood, non-coniferous;5516;Production;m3;234000;190000;210000;270000;241000;225500;242500;277000;266500;251500;233500;231500;294000;326000;307500;306500;315000;314500;223000;209000;223000;223000;203000;249000;243000;233000;233000;223000;223000;220000;213000;200000;200000;200000;207000;200000;250000;250000;250000;206000;158000;160000;160000;160000;160000;110000;101000;101000;106000;115000;94000;143000;250000;100000;100000;97000;97000;100000;100000;100000;100000;100000;100000 -210;'752;Sweden;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;79350;72050;88200;86450;100300;97650;85000;96100;97550;91500;81850;81950;83450;100500;83050;89950;90950;90000;113600;82700;55900;53750;65850;74700;80100;83500;87500;96500;91500;104000;70000;69000;76000;114000;139000;115000;106000;122900;140000;160000;154000;111874;145000;132421;155000;172983;144000;110000;53000;67000;63968;48912;34644;27720;28436;42709;57192;46160;66874;48594;50555;83404;27130 -210;'752;Sweden;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;9339;8621;10731;11484;12591;12603;11354;13169;14129;13629;11630;12367;14652;24435;22561;22635;24475;25109;32529;40583;23329;19224;22225;24777;28081;34069;43103;51670;50287;60313;48371;52746;52548;67471;80184;71298;73420;91046;84842;86616;72568;73593;87157;114095;130948;137426;146975;96133;52345;54888;60572;42131;30680;28428;25944;28787;37659.25;37032;34351;38390;48602;45723;32146 -210;'752;Sweden;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;18950;18150;17550;15700;13600;13550;15500;18250;25750;26850;26800;24300;27950;21550;21850;68950;55750;80350;77200;20750;13450;23700;30950;33950;29850;24900;22250;19600;20200;16850;14000;18000;27000;43000;38000;17000;20000;20800;22000;26000;26110;13897;15636;11842;11000;14000;15000;21563;19000;12242;23225;19850;6443;9270;4732;19301;42715;26565;32485;37250;38824;41121;16052 -210;'752;Sweden;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;1124;877;890;952;859;992;1069;1362;1782;2069;2130;2244;3498;3387;3753;4065;4543;4785;4819;4388;3279;3978;5319;6152;5657;6113;6867;7058;6781;9029;7172;8805;9893;10250;7162;9695;8817;10128;9605;11264;11438;9983;12808;7692;7315;12445;10668;14138;9432;10002;21122;20373;4614;3926;1526;7233;13142.1;9172;9737;10214;18491;18386;9584 -210;'752;Sweden;1634;Veneer sheets;5516;Production;m3;18500;19300;19300;19300;19300;20000;19000;19000;19000;19000;19000;16000;16000;16000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;0;50000;17000;17000;17000;15000;15000;15000;55000;55000;43130;35562;38089;32583;29118;27774;37000;38000;35000;35000;35000;35000;60000;60000;60000;60000;60000 -210;'752;Sweden;1634;Veneer sheets;5616;Import quantity;m3;4900;5900;6400;7500;8300;7200;8200;10900;12600;14900;14200;14300;16200;20700;16700;19300;18900;20900;23200;16500;12500;13700;15700;17400;18300;23800;24300;29100;30100;25700;12000;20703;23726;31000;34000;29900;30000;30900;34000;33354;29220;28413;28932;28469;25178;25000;21000;12746;15676;21460;14185;13349;11377;12010;9927;9979;11048;14949;12838;12549;17135;18855;10641 -210;'752;Sweden;1634;Veneer sheets;5622;Import value;1000 USD;3807;4494;5101;5726;7221;6345;6867;8714;10357;11309;9497;11431;16346;22410;17471;20373;19866;23901;28725;29878;18480;19593;20717;22694;22663;29087;34271;42349;42296;47033;34527;33793;31540;46656;53503;53697;50607;55192;55066;50198;44001;42339;47955;55486;63205;60290;60153;49805;35219;42419;37672;28973;29069;29392;23297;24104;27125.33;32435;24534;25612;32183;39463;34781 -210;'752;Sweden;1634;Veneer sheets;5916;Export quantity;m3;4000;3400;3000;2400;2000;1900;2600;2000;2400;3400;2900;3300;4300;3700;3600;4000;3700;3700;5100;4200;3700;3900;4700;5300;5300;6600;7300;8600;7400;6500;4000;7189;8534;10600;12000;12000;12000;14200;15000;15084;13580;17953;21590;44799;52000;49000;30000;22243;18255;20590;20564;19401;19615;20540;17922;18016;17974;42579;44080;51339;46739;46739;33604 -210;'752;Sweden;1634;Veneer sheets;5922;Export value;1000 USD;1809;1630;1513;1258;1052;1125;1255;1258;1597;2277;2036;2877;4114;4657;4087;4708;4334;4607;6324;7877;6577;5931;5940;6854;7519;7799;10655;12809;12026;13667;13677;14951;13152;16719;21345;21181;18879;19174;19680;16667;15659;19378;25583;42558;42943;43688;38710;34361;20750;21552;25278;22588;22969;23240;16811;17260;17346.31;21889;20846;23777;26570;22537;18219 -210;'752;Sweden;1873;Wood-based panels;5516;Production;m3;758000;800000;850000;929000;974900;1236700;1258000;1361000;1418000;1455000;1517000;1747000;1952000;2055000;1816000;2002000;2011000;2046000;2018000;1890000;1659000;1456000;1488000;1453000;1367000;1283000;1333000;1305000;1293000;1237000;1095000;799000;804000;820000;966000;918000;917000;972000;944000;995000;864000;840000;695000;662000;732500;781500;821870;809438;761912;669418;690525;626500;658000;576000;660000;610000;635000;635000;663000;651400;726000;726000;708000 -210;'752;Sweden;1873;Wood-based panels;5616;Import quantity;m3;28300;32500;38800;53000;76500;81500;85000;105200;122200;121700;104200;132700;156100;133800;121500;145400;123900;126200;162600;150300;104200;126600;133000;180600;206100;299500;411800;354800;398800;538000;395000;323000;346000;413000;532100;490800;543000;561200;587000;634000;661750;647510;708420;924048;935934;1067575;1201000;1086551;851434;1083078;1199221;1069886;937154;1043280;1031609;1075125;1148002;1198174;1152795;1203784;1255925;1233244;936765 -210;'752;Sweden;1873;Wood-based panels;5622;Import value;1000 USD;3887;4211;5336;7503;10180;10335;11394;13324;15607;16884;17038;20675;28204;35798;34943;43043;41778;51413;71996;81636;63030;60306;58208;69559;70850;90030;130358;151196;155938;211092;173469;145038;106693;143002;174833;184361;184243;197108;196142;193639;172245;175520;236612;338630;367586;403538;511006;483810;348649;438945;534052;473803;466727;514091;429369;429483;465065.57;516148;476356;490654;618071;658586;482631 -210;'752;Sweden;1873;Wood-based panels;5916;Export quantity;m3;451500;459700;459500;481500;442600;565700;635600;648900;655400;667600;685300;767400;893200;825600;712800;860800;910200;964300;931000;585700;602600;589400;617600;609900;563600;476200;453200;394400;370700;310800;266000;212852;241947;294000;353100;411000;403000;564000;473000;250000;213000;224000;142000;138000;139000;241616;292920;308772;240267;202014;194388;190753;177890;191530;142468;163373;182278;179753;153931;195680;261414;231262;286308 -210;'752;Sweden;1873;Wood-based panels;5922;Export value;1000 USD;36901;37339;38018;41042;39041;36811;40330;40388;41713;45434;51094;65202;90090;99315;92637;109076;114476;127235;196433;148134;143647;111321;110618;97375;93583;110167;126790;117076;110458;91852;65926;63262;55589;74261;104619;114852;139018;287013;230385;96450;54280;47584;39302;38582;37929;214954;247913;247677;180807;180858;180307;165314;160648;136268;101851;99900;111493.9;113789;110622;131234;168221;155825;145687 -210;'752;Sweden;1640;Plywood and LVL;5516;Production;m3;60000;60000;65000;77000;61900;64700;65000;65000;74000;75000;105000;120000;135000;115000;113000;111000;95000;87000;92000;87000;72000;65000;71000;66000;68000;72000;73000;69000;68000;68000;67000;55000;73000;85000;108000;119000;113000;114000;105000;110000;106000;87000;75000;71000;91500;91500;71753;56164;64912;60130;83500;53500;87000;82000;60000;60000;85000;85000;85000;90000;90000;90000;90000 -210;'752;Sweden;1640;Plywood and LVL;5616;Import quantity;m3;20400;23200;29100;37600;46300;44400;47300;53600;62000;67500;60600;59100;67800;75800;73400;85300;79200;86600;101000;108900;58100;60800;59500;70200;66800;100900;115200;130600;143400;242600;131000;106000;98000;126000;112000;135000;143000;147100;152000;178000;157000;152000;161000;164000;189000;196608;240000;192062;144081;152477;184959;172571;155154;162910;149650;174720;206485;222176;247788;234753;203066;236245;125604 -210;'752;Sweden;1640;Plywood and LVL;5622;Import value;1000 USD;3129;3385;4406;6054;7754;7717;8709;9637;11297;12812;13732;14835;20504;28980;28561;34958;34540;39739;53631;68059;49439;45856;43562;48887;45478;55097;71998;82951;80815;110435;81064;64067;46252;63893;69793;76519;73740;79437;76394;80707;66111;66131;81825;106881;121968;119083;153050;136485;81071;110519;130989;118246;111961;123811;98697;108280;126569.3;145046;139760;133920;159005;198395;107464 -210;'752;Sweden;1640;Plywood and LVL;5916;Export quantity;m3;8500;6700;6800;7200;7200;8500;5700;4300;5800;8200;24300;39200;40900;27300;31200;35200;22600;28900;25200;10500;13800;13000;16500;15900;18000;31600;30300;18500;16500;12200;17000;24000;38000;49000;63000;112000;93000;91300;65000;63000;55000;48000;39000;28000;28000;52000;63120;45769;36795;34306;41619;38890;42077;31160;24447;22470;21415;22081;24558;30437;45766;48036;173243 -210;'752;Sweden;1640;Plywood and LVL;5922;Export value;1000 USD;1234;956;963;1054;1079;1347;1007;790;1106;1643;3627;6646;8888;7515;8293;10979;8888;12515;19951;10811;11366;10592;13419;12425;13614;20122;23536;12085;9157;10666;9340;11395;16060;22032;33281;42510;42216;40936;30735;27389;21348;22502;21944;19904;19568;30177;35830;30180;23053;23253;24599;21711;24361;18786;13730;14433;13614.25;13902;15632;19927;39025;51803;46349 -210;'752;Sweden;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8551;5371 -210;'752;Sweden;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6543;4173 -210;'752;Sweden;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;206;163 -210;'752;Sweden;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;223;292 -210;'752;Sweden;1646;Particle board and OSB (1961-1994);5516;Production;m3;89000;108000;127000;148000;172000;211000;231000;295000;333000;389000;478000;649000;842000;992000;928000;1090000;1180000;1255000;1235000;1193000;1094000;952000;980000;978000;902000;809000;844000;862000;864000;843000;762000;581000;597000;609000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -210;'752;Sweden;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;7300;8700;9000;14400;28600;33800;32900;47600;56200;50900;40000;69900;79400;51800;42700;53000;38000;35400;55700;31100;28300;29400;38200;66200;74500;103500;132700;145200;175700;190300;168000;137000;158000;186000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -210;'752;Sweden;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;607;704;778;1220;2122;2357;2317;3336;3945;3731;2960;5487;7018;6030;5593;7097;6336;10943;17105;11331;10273;9387;9751;14762;17339;22019;34050;41516;47474;60117;55377;49825;34175;45543;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -210;'752;Sweden;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;27300;32400;32400;35400;41100;46500;69200;72700;69500;92100;141300;208500;331500;346900;377300;430500;486800;548700;547200;294900;347800;374000;398000;389000;339600;217000;221800;207300;229800;201300;166000;120000;128000;140000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -210;'752;Sweden;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;2183;2513;2412;2608;2955;3360;4745;5053;4967;6526;9734;15756;29304;36202;41825;45500;52690;62466;115485;74540;76523;55339;53038;45460;40819;35636;45605;49163;58684;49770;30732;30983;22869;28123;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -210;'752;Sweden;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;632000;577000;612000;650000;618000;640000;584000;564000;466000;437000;487000;541000;627000;628000;587000;494693;510000;573000;571000;494000;600000;550000;550000;550000;578000;561400;636000;636000;618000 -210;'752;Sweden;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;293000;263000;291000;292300;306000;318811;390450;325000;345000;397000;392000;474704;538000;439201;364354;529550;617090;486846;364355;427640;427489;413952;456558;464338;455315;468543;506278;475369;365152 -210;'752;Sweden;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65861;73983;74469;75542;77815;72516;79353;64623;88452;108856;118330;140905;173200;155628;117332;158234;192907;155304;141802;153206;131371;123111;133664.79;140302;129786;140739;176168;181389;144774 -210;'752;Sweden;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;133000;147000;179000;348800;308000;93100;97850;109000;66000;75000;75000;61616;102680;91886;68764;61183;48929;51742;47426;88700;60031;80719;97283;88843;58719;80000;96539;56598;69311 -210;'752;Sweden;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39601;38036;67977;221991;175292;47929;18237;14807;10600;12434;12224;33785;43470;44788;32136;30680;24946;25027;26195;31446;24022;24250;30274.1;28794;22581;29362;37057;29278;34511 -210;'752;Sweden;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 -210;'752;Sweden;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10700;15000;19189;20550;17000;18000;126000;124000;129825;107000;134802;74875;82450;84597;89900;116033;122370;123289;158064;158032;171366;124595;146143;121158;96864;111464 -210;'752;Sweden;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;3511;4742;3772;3401;4655;32516;35346;38246;38966;23348;20646;22913;33426;31044;39890;39833;32389;38453;42691.71;56192;40912;40504;62876;40405;35585 -210;'752;Sweden;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5200;16000;4900;5150;6000;4000;4000;4000;6700;320;355;996;817;1071;2245;1593;1230;1645;3959;5277;5676;5614;6270;5162;2800;1779 -210;'752;Sweden;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;990;3035;851;960;779;558;654;643;3139;229;256;350;320;579;798;777;600;782;1163;1426.52;1702;1730;1887;2385;1226;892 -210;'752;Sweden;1874;Fibreboard;5516;Production;m3;609000;632000;658000;704000;741000;961000;962000;1001000;1011000;991000;934000;978000;975000;948000;775000;801000;736000;704000;691000;610000;493000;439000;437000;409000;397000;402000;416000;374000;361000;326000;266000;163000;134000;126000;226000;222000;192000;208000;221000;245000;174000;189000;154000;154000;154000;149000;123117;125274;110000;114595;97025;0;0;0;0;0;0;0;0;0;0;0;0 -210;'752;Sweden;1874;Fibreboard;5616;Import quantity;m3;600;600;700;1000;1600;3300;4800;4000;4000;3300;3600;3700;8900;6200;5400;7100;6700;4200;5900;10300;17800;36400;35300;44200;64800;95100;163900;79000;79700;105100;96000;80000;90000;101000;127100;92800;109000;111100;114000;118000;93750;153510;184420;237048;230934;266438;316000;320486;268124;318601;312575;320569;301612;330360;331181;328389;326927;340294;325097;354345;425423;424766;334545 -210;'752;Sweden;1874;Fibreboard;5622;Import value;1000 USD;151;122;152;229;304;261;368;351;365;341;346;353;682;788;789;988;902;731;1260;2246;3318;5063;4895;5910;8033;12914;24310;26729;27649;40540;37028;31146;26266;33566;39179;33859;36034;39129;38422;35674;23009;41365;61680;90377;91942;105304;145790;168349;129600;147279;176730;169209;173074;197241;166912;159639;162139.77;174608;165898;175491;220022;238397;194808 -210;'752;Sweden;1874;Fibreboard;5916;Export quantity;m3;415700;420600;420300;438900;394300;510700;560700;571900;580100;567300;519700;519700;520800;451400;304300;395100;400800;386700;358600;280300;241000;202400;203100;205000;206000;227600;201100;168600;124400;97300;83000;68852;75947;105000;157100;152000;131000;118700;84000;89000;55000;61000;33000;31000;32000;121300;126800;170762;133712;105708;102769;97876;86794;70440;56345;56225;58303;63153;65040;78973;113947;123828;41975 -210;'752;Sweden;1874;Fibreboard;5922;Export value;1000 USD;33484;33870;34643;37380;35007;32104;34578;34545;35640;37265;37733;42800;51898;55598;42519;52597;52898;52254;60997;62783;55758;45390;44161;39490;39150;54409;57649;55828;42617;31416;25854;20884;16660;24106;31737;34306;28825;23096;21323;20281;13735;9496;6200;5590;5494;147853;168384;172453;125268;126605;130183;117778;109315;85436;63317;60054;66179.03;69391;70679;80058;89754;73518;63935 -210;'752;Sweden;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107000;106000;125000;60000;88500;97500;69600;75600;36000;48000;38000;38000;29799;26213;23017;25836;20958;0;0;0;0;0;0;0;0;0;0;0;0 -210;'752;Sweden;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41100;34800;40000;47200;49000;50740;38480;67777;102272;114795;100475;97361;92000;122976;101224;104353;103210;103807;75701;74110;75912;75724;75767;84754;75396;81037;89015;116087;92637 -210;'752;Sweden;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17834;15214;16912;21255;20555;19069;13359;25219;42535;57802;54115;60448;57931;76607;56829;59570;73376;70244;53491;53289;48422;44501;44196.14;44881;40058;37462;49857;81591;75020 -210;'752;Sweden;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41100;38000;27000;27500;32000;33820;20900;23180;12540;11780;12000;74000;10000;13542;13494;14278;7077;3701;4132;3160;5154;4506;4088;9402;9676;10560;13563;69534;25925 -210;'752;Sweden;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16009;15363;11275;9074;10063;9607;8779;3609;2356;2124;2088;127717;9693;16676;14677;18716;8305;4511;4915;4346;5152;4690;4867.63;5352;5385;4983;5778;32808;48249 -210;'752;Sweden;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;0;0;89000;88500;97500;69600;75600;87000;75000;85000;80000;69008;76597;67258;70894;61430;0;0;0;0;0;0;0;0;0;0;0;0 -210;'752;Sweden;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74000;48000;44000;38200;37000;37760;25270;40121;45572;57553;71978;93881;152000;134202;130288;182248;182441;194348;199273;222990;225296;218831;210684;227577;225813;248307;306687;284029;130639 -210;'752;Sweden;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18536;16109;15717;14838;14621;13474;6776;11473;13349;18915;27659;33185;75562;77906;64961;79977;96973;92855;112080;134912;111674;106217;109889.33;122257;119301;131186;162030;150059;74173 -210;'752;Sweden;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;10000;18000;24800;18000;18690;11550;12810;6930;6510;7000;22100;98800;145652;115964;83665;88024;86553;73330;58330;47099;42182;39227;43585;45903;56878;64620;30133;6244 -210;'752;Sweden;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1123;3132;4453;5540;5855;5492;2340;1994;1302;1174;1154;13204;152755;149697;107088;105215;119594;110914;101102;78086;56407;52408;57033.73;59972;61132;70085;79625;37130;5267 -210;'752;Sweden;1650;Other fibreboard;5516;Production;m3;69000;77000;76000;85000;98000;368000;352000;356000;364000;364000;340000;368000;360000;347000;312000;308000;312000;293000;279000;236000;176000;148000;147000;136000;128000;136000;157000;145000;145000;135000;120000;83000;67000;55000;116000;116000;67000;59000;44000;50000;34800;37800;31000;31000;31000;31000;24310;22464;19725;17865;14637;0;0;0;0;0;0;0;0;0;0;0;0 -210;'752;Sweden;1650;Other fibreboard;5616;Import quantity;m3;;;;500;1000;2800;4400;3600;3600;2800;2800;2800;6800;5200;2800;1600;1600;800;1600;4800;10000;28000;22800;30800;47600;78400;136400;14000;12400;18000;16000;12000;12000;12000;12000;10000;25000;25700;28000;29500;30000;45612;36576;64700;58481;75196;72000;63308;36612;32000;26924;22414;26638;33260;29973;33834;40476;27963;23888;25001;29721;24650;111269 -210;'752;Sweden;1650;Other fibreboard;5622;Import value;1000 USD;;;;156;214;151;284;277;279;222;210;202;374;428;311;184;132;133;300;709;1172;2604;1997;2870;4378;8979;16859;2000;2000;2324;2001;1381;1413;1555;2809;2536;3405;3036;3246;3131;2874;4673;5796;13660;10168;11671;12297;13836;7810;7732;6381;6110;7503;9040;6816;8921;8054.3;7470;6539;6843;8135;6747;45615 -210;'752;Sweden;1650;Other fibreboard;5916;Export quantity;m3;43900;41100;39800;44800;50000;175200;191200;198400;210400;214800;179200;173200;169600;167200;107600;131600;174800;175600;154800;126400;90000;62400;52800;64400;71600;68400;62400;57600;44800;43600;36000;36000;48000;56000;112000;104000;86000;66400;34000;36490;22550;25010;13530;12710;13000;25200;18000;11568;4254;7765;7668;7622;9332;8950;4092;9537;14988;10166;9461;11535;35764;24161;9806 -210;'752;Sweden;1650;Other fibreboard;5922;Export value;1000 USD;4942;4448;4363;4941;5566;5113;5378;5590;6019;6170;5685;6300;7216;8618;6310;7832;12598;12471;14997;12514;8942;5593;4595;4711;5383;6647;7088;14828;10000;6239;5504;5572;5139;5962;14605;15811;13097;8482;5405;5182;2616;3893;2542;2292;2252;6932;5936;6080;3503;2674;2284;2353;3298;3004;1758;2956;4277.68;4067;4162;4990;4351;3580;10419 -210;'752;Sweden;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;540000;555000;582000;619000;643000;593000;610000;645000;647000;627000;594000;610000;615000;601000;463000;493000;424000;411000;412000;374000;317000;291000;290000;273000;269000;266000;259000;229000;216000;191000;146000;80000;67000;71000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -210;'752;Sweden;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;600;600;700;500;600;500;400;400;400;500;800;900;2100;1000;2600;5500;5100;3400;4300;5500;7800;8400;12500;13400;17200;16700;27500;65000;67300;87100;80000;68000;78000;89000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -210;'752;Sweden;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;151;122;152;73;90;110;84;74;86;119;136;151;308;360;478;804;770;598;960;1537;2146;2459;2898;3040;3655;3935;7451;24729;25649;38216;35027;29765;24853;32011;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -210;'752;Sweden;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;371800;379500;380500;394100;344300;335500;369500;373500;369700;352500;340500;346500;351200;284200;196700;263500;226000;211100;203800;153900;151000;140000;150300;140600;134400;159200;138700;111000;79600;53700;47000;32852;27947;49000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -210;'752;Sweden;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;28542;29422;30280;32439;29441;26991;29200;28955;29621;31095;32048;36500;44682;46980;36209;44765;40300;39783;46000;50269;46816;39797;39566;34779;33767;47762;50561;41000;32617;25177;20350;15312;11521;18144;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -210;'752;Sweden;1879;Total fibre furnish;5510;Production;t;5100000;5024000;5459000;6187000;6509000;6457600;6678200;7043000;7632000;8158000;7794000;8313000;9506000;9815000;8589000;8584000;7912000;8833000;9396000;9153000;9023000;8224000;9204000;9912000;9842000;10177000;10772000;11172000;11228000;10828000;10646000;10490000;10873000;11576000;11266000;10926000;11576000;11928000;12077000;13371000;12830000;13180000;13227200;13606000;13527000;13769000;13972000;13937479;13144076;13537402;13151000;12985000;12463000;12152025;12296999;12448011;12809000;12662000;12726143;12491926;12225640;12263926;11794000 -210;'752;Sweden;1879;Total fibre furnish;5610;Import quantity;t;;;;800;1300;3500;1600;4400;13100;46900;44500;57100;83500;58100;83400;81500;94405;107000;206800;254800;250200;190800;228300;239900;297900;271500;235300;276300;334700;442500;452000;640658;685696;805000;846000;762000;802500;819100;1009000;1021722;1019690;1130593;1144318;1231600;1280230;1238858;1187000;1285738;1244217;1497557;1423595;1375728;1024683;1088570;999592;1170850;1138268;1306154;961575;887004;845079;898299;740853 -210;'752;Sweden;1879;Total fibre furnish;5622;Import value;1000 USD;;;;200;309;466;351;635;1949;5436;5432;7030;9948;8971;14701;12974;11595;13609;35034;50176;50674;41750;44200;55899;58870;69528;74493;90498;109823;134322;103898;132808;87170;150406;272429;157960;161784;182925;207532;249249;225298;230682;260456;298844;327930;339484;369957;457948;292441;484160;541408;475253;377380;334702;308730;359909;424327.63;432865;366391;319240;372571;476072;345359 -210;'752;Sweden;1879;Total fibre furnish;5910;Export quantity;t;415100;361400;401900;449500;453100;461900;389900;3268400;3364100;3578600;3168800;3536300;4566100;4515521;3161547;3203616;3124800;3772248;3426000;3053700;2896427;2526500;3135300;3376100;3135000;3082400;3202300;3274200;3060000;2907800;2921000;2954469;3006268;3003000;2705000;2787000;2926100;2933800;3051000;3153770;3048590;3486739;3485205;3591689;3582224;3358497;3595000;3751970;3444031;3449728;3401080;3358067;3394622;3374676;3422940;3479644;3487004;3763434;4367694;4355608;4292705;3982743;4334840 -210;'752;Sweden;1879;Total fibre furnish;5922;Export value;1000 USD;27168;23110;25532;29571;31641;31273;26658;376660;415516;520132;497842;544130;810044;1210768;1237783;1173456;999902;1074832;1261916;1385916;1304809;999817;1069938;1347882;1107631;1229190;1648569;1881977;2072883;1958043;1593417;1478913;1137945;1339843;2007420;1400305;1367620;1250185;1312905;1851838;1443850;1439360;1618296;1914071;1807303;1830627;2225372;2568772;1823659;2445195;2472762;2088020;2131021;2200845;2000610;1864143;1974118.11;2569857;2452443;2238706;2811957;2814450;2770382 -210;'752;Sweden;1878;Pulp for paper;5510;Production;t;4840000;4804000;5239000;5920000;6229000;6157600;6408200;6713000;7302000;7828000;7444000;7963000;9121000;9400000;8099000;8134000;7422000;8326000;8887000;8577000;8433000;7609000;8568000;9193000;9079000;9380000;9972000;10307000;10338000;9919000;9769000;9590000;9953000;10168000;10187000;9847000;10497000;10549000;10693000;11903000;11386000;11712000;11737200;12106000;11959000;12240000;12402000;11915479;11280076;11702402;11654000;11658000;11222000;10991025;11086999;11289011;11654000;11514000;11595143;11566926;11233640;11323926;10897000 -210;'752;Sweden;1878;Pulp for paper;5610;Import quantity;t;;;;800;1300;3500;1600;4400;13100;26900;25500;37100;40500;14300;27100;19100;13700;18700;43400;48500;74700;80700;92100;114300;117800;137900;118100;110600;117100;167300;144000;169041;144013;222000;232000;239000;249500;269900;289000;323722;309510;379614;383193;422630;461230;444990;410000;444363;349559;424663;447435;487443;416742;388070;395338;535931;558748;603986;551575;613426;591524;636275;476247 -210;'752;Sweden;1878;Pulp for paper;5622;Import value;1000 USD;;;;200;309;466;351;635;1949;4530;4690;6236;7462;4315;9832;6786;4524;6919;17673;23208;33128;31641;31929;44153;40959;56713;62022;68114;82097;100029;72554;86392;53301;102788;161491;102771;118519;142749;162658;195989;152642;170132;189589;221307;250902;258351;269504;330094;192089;320739;351573;325479;277615;254237;250351;292201;329820.54;371280;308852;287177;323148;420522;307425 -210;'752;Sweden;1878;Pulp for paper;5910;Export quantity;t;415100;361400;401900;449500;453100;461900;389900;3268400;3364100;3487600;3090800;3446300;4445100;4376000;3083300;3110400;3022300;3676400;3345600;2970500;2813600;2426400;3029600;3227100;3005000;2946000;3063900;3111400;2913400;2767700;2777000;2815482;2863800;2837000;2522000;2609000;2733100;2764600;2869000;2974770;2909190;3281165;3295681;3387628;3377224;3163000;3302000;3412170;3124031;3054662;2923678;2934736;2944566;2921646;2956268;2978210;3034941;3332413;3905715;3943302;3770247;3464170;3851586 -210;'752;Sweden;1878;Pulp for paper;5922;Export value;1000 USD;27168;23110;25532;29571;31641;31273;26658;376660;415516;514665;493700;538274;800734;1194480;1230086;1163454;989340;1063513;1250598;1371060;1291099;985127;1054247;1324583;1087338;1204866;1618829;1848581;2039832;1921401;1565408;1452382;1114434;1313245;1961921;1366446;1334319;1223837;1287288;1821361;1422753;1408503;1587907;1879022;1772094;1797793;2177812;2496921;1778113;2372581;2369162;2011974;2054150;2121428;1932568;1780711;1895155.65;2503191;2394680;2185623;2703368;2709178;2706586 -210;'752;Sweden;1875;Wood pulp;5510;Production;t;5254000;5190000;5676000;6366000;6678000;6541800;6791700;7081000;7627000;8142000;7734000;8314000;9462000;9745000;8415000;8378000;7656000;8557000;9083000;8699000;8530000;7706000;8668000;9293000;9123000;9593000;10197000;10555000;10638000;10215000;10088000;9909000;10272000;10487000;10506000;10166000;10816000;10549000;10693000;11545000;11028000;11354000;11737200;12106000;12108000;12414000;12588000;12071479;11474076;11864000;11856849;12033000;11725000;11531025;11621999;11824011;12157000;11995000;12078000;12034000;11697000;11778000;11351074 -210;'752;Sweden;1875;Wood pulp;5610;Import quantity;t;1000;0;200;300;700;3100;1200;4800;13300;26500;26000;38100;48600;18200;27300;18800;13400;17900;40400;47800;77500;91700;110600;127700;134200;155100;140300;132200;139600;192000;165000;186775;159269;230000;224000;225000;239500;249400;276000;307350;308610;387391;399999;435252;466691;454990;421000;450539;354032;440118;460538;501991;421782;391250;394769;536555;568145;612167;558785;620859;602138;641147;501442 -210;'752;Sweden;1875;Wood pulp;5622;Import value;1000 USD;209;0;37;38;61;262;95;565;1903;4342;4695;6359;9046;5913;9950;6602;4326;6099;15900;22688;36009;37362;40257;51673;47778;65552;77066;84485;102424;124862;87734;101543;62014;106543;160649;98744;113274;135638;153545;184237;151622;173578;198964;228460;252370;260929;276468;331790;191768;330346;365721;345509;285873;257373;244606;286239;333129.7;377322;311757;292116;333281;411434;341977 -210;'752;Sweden;1875;Wood pulp;5910;Export quantity;t;786200;701900;749300;841600;814100;793800;748300;3602000;3685700;3761500;3328400;3702200;4765000;4632200;3238700;3287400;3219500;3872300;3518700;3051700;2886400;2485000;3087400;3271200;3038300;2958700;3065400;3111400;2913400;2767700;2777000;2816833;2865471;2837000;2560000;2678000;2871000;2878400;2969000;3072797;3041040;3378299;3426207;3546315;3535000;3354000;3504000;3583612;3332000;3242725;3151351;3333272;3434792;3454006;3483542;3250986;3322313;3641313;4242065;4323345;4158010;3834157;4203382 -210;'752;Sweden;1875;Wood pulp;5922;Export value;1000 USD;88714;75167;78949;94966;93174;85952;84872;428970;469407;567679;543632;590576;871574;1295482;1312971;1248230;1076768;1144054;1335864;1422015;1337061;1020680;1086125;1348391;1103743;1211400;1619492;1848581;2039832;1921401;1565408;1453416;1115568;1313245;1998151;1409255;1423079;1292034;1342946;1883997;1502407;1457670;1662716;1990959;1890017;1934147;2373088;2689537;1953363;2629439;2763536;2489241;2587917;2646289;2372609;2030516;2182020.92;2799993;2676569;2455442;3058539;3086124;3046830 -210;'752;Sweden;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3406000;3405000;3193000;2977000;2693000;2520000;2364000 -210;'752;Sweden;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;204660;248649;211030;247617;221146;260178;147496 -210;'752;Sweden;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95499.94;117720;92676;99852;94815;135195;86625 -210;'752;Sweden;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;384176;420030;415941;323036;346510;310889;364963 -210;'752;Sweden;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;202417.96;257688;208516;139228;181964;195916;181167 -210;'752;Sweden;1654;Mechanical wood pulp (1961-2016);5510;Production;t;1130000;1150000;1140000;1220000;1273000;1277900;1188100;1303000;1435000;1540000;1471000;1550000;1800000;1919000;1636000;1532000;1527000;1748000;1981000;1960000;1901000;1762000;1965000;2197000;2298000;2498000;2747000;2904000;3000000;2953000;2709000;2525000;2722000;2858000;2861000;2753000;2959000;3026000;3029000;3304000;3089000;3021000;3222600;3397000;3455000;3489000;3672000;3570000;3322000;3539000;3558000;3556000;3257278;3010346;3050118;3033473;;;;;;; -210;'752;Sweden;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;200;200;200;100;100;100;100;100;100;100;100;100;100;100;600;300;1100;200;500;600;1200;1400;4200;3700;1800;4000;12000;4000;3000;8000;11000;7000;4400;7000;13566;44220;47948;43336;59387;55600;65550;53000;54440;40000;46908;36263;20995;12034;10260;10513;18910;;;;;;; -210;'752;Sweden;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;9;16;19;6;8;8;8;8;8;8;8;8;8;8;166;99;321;40;194;187;815;679;2009;2010;1078;1835;5021;1156;908;2809;3281;2228;1274;2863;6141;16180;15563;18211;25617;25522;30762;31410;30063;17717;26169;22414;10794;5482;4322;3703;3813;;;;;;; -210;'752;Sweden;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;413100;358900;396500;439400;443600;450400;375600;379600;377400;360600;289800;372600;440100;533500;268200;275700;284500;410900;434700;372800;296600;294200;342400;348200;367600;347600;367700;451800;373800;394600;287000;188484;178000;208000;176000;133000;159000;156800;163000;175340;126000;161839;153897;139791;168000;169000;166000;136877;77000;74230;77096;74690;51690;31240;55716;60230;;;;;;; -210;'752;Sweden;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;26995;22938;25104;28544;30597;30140;25351;26890;27815;29209;24142;31556;45804;91845;68306;66723;60764;80253;109582;113833;85545;75880;80843;90181;93641;109324;134667;196341;169252;166754;111922;67958;50202;71280;88611;53996;57949;53676;57505;77840;49418;55721;59565;62582;74671;79862;85785;80070;43193;43841;42435;51607;28082;16877;24818;26676;;;;;;; -210;'752;Sweden;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;76000;90000;94000;131000;152000;149200;163600;258000;338000;345000;313000;360000;398000;407000;292000;331000;307000;351000;348000;328000;265000;233000;234000;248000;263000;268000;277000;292000;285000;289000;292000;276000;264000;250000;251000;242000;266000;236000;257000;262000;257000;281000;278600;292000;288000;285000;266000;263000;279000;277000;287000;289000;264722;244654;247882;246527;;;;;;; -210;'752;Sweden;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;200;600;2500;900;900;300;400;500;400;200;100;100;100;100;100;100;100;100;100;100;4600;6400;9000;7500;9500;15600;14100;14000;22469;24839;27000;9000;6000;10000;7600;7000;15990;14770;57335;62106;68825;61800;68360;61000;32186;18000;38000;19576;15933;18712;26690;18311;137483;;;;;;; -210;'752;Sweden;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;13;48;186;62;66;30;36;63;55;22;23;24;24;24;24;24;24;24;24;24;1090;1892;3330;3047;4787;10086;7317;5671;9347;7362;9731;5055;2834;4326;4679;4258;8640;6581;21697;27003;30960;27072;31158;35855;21410;8632;28085;14329;10393;13224;19355;12564;70520;;;;;;; -210;'752;Sweden;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;2000;2500;5400;10100;9500;11500;14300;13600;16300;19800;10700;17100;30300;19500;10000;17700;20100;25200;20400;21500;15900;20300;19300;25800;30400;26000;35800;12800;42400;66900;68000;72000;56000;61000;116000;83000;80000;70300;76000;100504;96780;95000;121282;131857;166000;242000;261000;230000;186000;206423;185641;217635;216395;215290;207276;279029;;;;;;; -210;'752;Sweden;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;173;172;428;1027;1044;1133;1307;1269;1667;2566;1493;2261;4312;5040;3418;5168;5060;5870;6044;7381;5465;7104;6057;8683;9131;8726;14649;7859;28167;39879;34027;36853;21806;25791;77938;34456;24910;22071;25414;46515;33526;32303;46627;53557;62107;99451;127270;129345;82182;112292;103643;112450;116219;114407;89875;139741;;;;;;; -210;'752;Sweden;1656;Chemical wood pulp;5510;Production;t;3634000;3564000;4005000;4569000;4804000;4730500;5056500;5152000;5529000;5943000;5660000;6053000;6923000;7074000;6171000;6271000;5588000;6227000;6558000;6289000;6267000;5614000;6369000;6748000;6518000;6614000;6948000;7111000;7053000;6677000;6768000;6789000;6967000;7060000;7075000;6852000;7272000;7287000;7407000;7979000;7682000;8052000;8236000;8417000;8216000;8466000;8464000;8082479;7679076;7886402;7809000;7813000;7700000;7736025;7788999;8009011;8248000;8109000;8402143;8589926;8540640;8803926;8533000 -210;'752;Sweden;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;2900;12400;25800;24400;36100;40000;14000;26700;18600;13200;16800;39900;44600;67400;73800;85200;98000;105400;125000;105100;93600;94500;148100;123000;126189;110678;189000;193000;197000;215500;229400;251000;267061;238960;272385;275516;292270;339830;304080;291000;348129;281559;327755;379666;440475;372413;338130;352514;365943;340739;340820;327219;354221;362730;362837;322629 -210;'752;Sweden;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;373;1798;4253;4418;5978;7344;4217;9679;6570;4294;5602;15658;21031;30223;28756;29476;39163;36090;50826;56007;58900;67583;89216;61714;67246;42206;89035;139163;83679;100952;123361;138063;161632;121020;128699;139337;158223;190789;185306;191127;259309;147257;243207;278997;278060;232986;207355;210893;195194;206988.92;227597;191724;167184;213395;248782;204546 -210;'752;Sweden;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;2875200;2970400;3107200;2790300;3056600;3974700;3823000;2805100;2817000;2717700;3240300;2890500;2576200;2501100;2111900;2667900;2853100;2607000;2572400;2660400;2646800;2497200;2306200;2422000;2547355;2626322;2568000;2229000;2392000;2494000;2537500;2630000;2698467;2685810;3023903;3020204;3115667;3043000;2752000;2875000;3045261;2861000;2773303;2660941;2640372;2676361;2675026;2693248;2638951;2650737;2911648;3489712;3620261;3421147;3152017;3475135 -210;'752;Sweden;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;348501;386034;482890;468065;504457;750618;1097595;1158362;1091563;923516;977390;1134972;1249846;1200089;902143;967347;1225719;984566;1086816;1469513;1644381;1842413;1714768;1419459;1343323;1041093;1216174;1793827;1276801;1251329;1148075;1204083;1696331;1338923;1319760;1481001;1762813;1635292;1618480;1964757;2287473;1652709;2215960;2223084;1846957;1909606;1990047;1817845;1614294;1692714.75;2245337;2186065;2046358;2519082;2511799;2508820 -210;'752;Sweden;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;2873000;1693000;1675300;1785400;1798000;1936000;2138000;1934000;2274000;2489000;2526000;2078000;2149000;1992000;2273000;2372000;2279000;2183000;1953000;2216000;2348000;2156000;2188000;2306000;2332000;2313000;2190000;2220000;1970000;2063000;2118000;2146000;1978000;1982000;2016000;2020000;2155000;2094000;2194000;2207600;2293000;2316000;2316000;2281903;2248219;1968000;2028000;2037000;2319000;2380000;2401180;2417621;2485912;2515000;2171000;2453000;2498000;2504000;2574000;2321000 -210;'752;Sweden;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;200;200;5800;100;100;100;100;100;100;100;100;700;1100;800;1100;2600;6500;500;300;600;400;200;14500;2000;377;370;1000;1000;1000;500;300;1000;1671;15530;11224;334;242;300;0;0;0;89;93;132;25;61;140;0;237;187;141;70;1660;1071;44;448 -210;'752;Sweden;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;19;19;865;10;10;10;10;48;48;48;354;210;426;258;258;627;1938;187;141;300;245;101;7173;1000;200;138;389;421;597;262;204;765;1217;8655;5961;168;136;174;0;0;0;75;79;112;22;51;82;0;146;130.91;50;45;979;697;45;277 -210;'752;Sweden;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;508300;507100;517300;488400;538600;818800;723600;446000;379100;447200;536800;469800;375600;278000;272000;253600;194700;160300;135400;141400;153000;115600;139800;128000;112727;100326;101000;97000;125000;107000;56500;44000;37513;35660;40307;41079;50326;40000;48000;66000;94260;79000;63843;59456;92693;114824;132200;128158;150693;148072;174395;171111;196151;185212;189055;206125 -210;'752;Sweden;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;52394;53752;67368;68943;72876;128392;184140;165173;129403;120230;132928;167849;166823;115908;89960;73154;70454;53511;45556;66315;87183;70605;85531;69889;51026;32935;40093;70214;53846;41954;22800;16674;19035;15136;14715;16371;24284;16470;24015;41337;69741;42580;52979;49755;60795;76895;92512;78761;88095;85338.5;113032;102044;104332;119159;128676;140636 -210;'752;Sweden;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;1400000;1371600;1620500;1838000;2132000;2317000;2292000;2421000;2875000;2947000;2822000;2883000;2688000;2945000;3168000;3089000;3252000;2914000;3306000;3503000;3674000;3763000;3920000;4009000;3976000;3764000;3815000;4094000;4189000;4220000;4202000;4231000;4570000;4583000;4731000;5122000;4899000;5165000;5337600;5502000;5304000;5659000;5559000;5433260;5319000;5414000;5384000;5286000;5264000;5310845;5347214;5487928;5696000;5901000;5912000;6056000;6001000;6195000;5773000 -210;'752;Sweden;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;1400;3700;6000;7100;22100;27300;10000;18900;14400;12100;15400;35300;31500;32500;36800;43200;49000;47800;56700;44700;48100;50300;97600;81000;91672;84912;148000;157000;147000;172000;192400;218000;238600;205840;239643;260691;277470;319200;285000;270000;341276;280000;325675;377839;435000;369574;336230;351121;361762;336820;325791;314710;330162;341923;340575;297459 -210;'752;Sweden;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;197;517;1018;1270;3644;5126;3262;6883;5007;3894;4806;14328;15637;16652;15639;15913;21906;16778;24408;25383;32448;37838;65388;41699;48079;30729;71391;119083;67122;83909;107124;122281;148626;106205;114090;132616;150997;180574;174072;180015;254144;146007;241222;276808;273552;230085;205040;209677;194041;206258;226000;189994;164458;211286;240564;191982 -210;'752;Sweden;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;1460500;1664300;1804600;1637100;1811200;2172100;2176800;1893300;1984800;1821300;2183200;2001900;1858200;1919100;1615000;2080700;2284300;2100300;2087900;2172700;2153800;2097600;1873000;2018000;2143213;2267234;2216000;1959000;2099000;2246000;2364700;2428000;2528200;2502420;2844355;2844804;2965000;2925000;2653000;2780000;2900000;2768000;2687460;2578631;2521709;2543017;2532230;2542666;2459650;2482286;2710639;3292789;3393884;3225459;2953992;3263144 -210;'752;Sweden;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;185954;228611;292390;286878;313439;433994;639000;801678;790175;653620;691222;804548;920411;944985;722734;779997;1003519;815031;902638;1219911;1342885;1569728;1437637;1160587;1144354;910109;1057749;1586696;1142707;1144477;1075771;1121527;1606954;1261314;1252066;1405970;1689822;1580841;1563666;1903863;2181221;1602634;2148180;2155087;1766400;1817920;1888817;1724802;1509997;1594018.44;2122376;2075118;1929562;2395066;2375336;2364223 -210;'752;Sweden;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37000;37000;37143;35926;35640;34926;439000 -210;'752;Sweden;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3732;14888;12439;22399;19736;22218;24722 -210;'752;Sweden;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600.02;1547;1685;1747;1412;8173;12287 -210;'752;Sweden;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20379;26614;25812;30226;10476;8970;5866 -210;'752;Sweden;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13357.82;9929;8903;12464;4857;7787;3961 -210;'752;Sweden;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;774000;728000;663200;633000;612000;617000;578000;597000;666000;720000;602000;543000;379000;374000;405000;390000;352000;314000;356000;377000;150000;136000;155000;184000;183000;173000;176000;80000;97000;83000;86000;83000;75000;53000;28000;28000;28000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -210;'752;Sweden;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;400;200;1100;1100;1100;1100;200;1100;1200;100;100;1800;2000;3400;4300;5200;5200;7100;6700;5400;5100;4000;13100;8000;2861;2127;8000;13000;20000;8000;6000;7000;7727;8650;8225;6092;6643;6476;4080;7000;646;880;887;844;650;1578;710;403;956;;;;;;; -210;'752;Sweden;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;16;24;206;206;206;206;68;406;459;22;22;187;757;278;354;339;424;747;520;521;441;400;993;667;1441;781;518;1123;895;524;457;609;573;459;418;417;585;546;380;296;396;541;544;518;400;1153;910;342;197;;;;;;; -210;'752;Sweden;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;284900;253300;222600;177500;195200;306400;308500;165100;140400;103100;115300;115900;106300;94600;57200;46300;52200;48200;52900;53200;70900;60000;50300;50000;45153;44571;58000;54000;42000;38000;34900;38000;42335;38810;33902;34914;24477;11000;2000;0;1;0;0;26;4031;8;16;0;0;;;;;;; -210;'752;Sweden;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;29910;28014;29524;25929;28398;50402;79200;63359;49519;33594;30236;40206;47028;39225;20384;13994;17801;14408;18942;24594;38968;33000;30261;29857;23564;16532;24912;40022;20435;17306;13870;14966;22715;15743;12456;14041;10646;4353;950;0;9;0;0;43;2981;6;7;0;0;;;;;;; -210;'752;Sweden;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;1696000;937000;955600;987400;883000;849000;871000;856000;761000;893000;881000;669000;696000;529000;635000;613000;531000;480000;433000;491000;520000;538000;527000;567000;586000;581000;550000;557000;645000;618000;639000;641000;560000;645000;635000;628000;674000;661000;693000;690800;622000;596000;491000;623097;401000;392076;444402;388000;208000;56000;24000;24164;35171;;;;;;; -210;'752;Sweden;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;900;8300;12900;16100;12800;11500;3700;6600;2900;900;1200;2100;10000;30700;31600;34200;37300;50000;61300;54400;40000;40000;22900;32000;31279;23269;32000;22000;29000;35000;30700;25000;19063;8940;13293;8399;7915;13854;15000;14000;6207;590;1100;851;4800;1200;1050;990;2988;;;;;;; -210;'752;Sweden;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;141;1238;2164;2932;2118;2002;877;2342;1056;330;420;933;4211;13035;12505;12597;14895;18378;25757;29803;25766;29244;15662;18348;17526;10558;16737;18536;15065;16257;15576;14408;11216;5701;8230;6136;6505;9495;10854;10816;4769;634;1362;1559;4086;1697;1323;874;810;;;;;;; -210;'752;Sweden;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;621500;545700;562700;487300;511600;677400;614100;300700;312700;346100;405000;302900;236100;209400;167700;287300;321900;298200;296200;293100;269100;224000;243100;226000;246262;214191;193000;119000;126000;103000;81400;120000;90419;108920;105339;99407;75864;67000;49000;29000;51000;14000;22000;22828;21939;18512;10580;22424;28608;;;;;;; -210;'752;Sweden;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;80243;75657;93608;86315;89744;137830;195255;128152;122466;116072;123004;122369;115584;99971;69065;100202;133945;101616;119680;158693;175345;169080;161339;159126;124379;81517;93420;96895;59813;47592;35634;50916;47627;46730;40523;44619;38061;33628;29849;19557;36502;7495;14801;18199;16781;14785;8711;14282;16202;;;;;;; -210;'752;Sweden;1667;Dissolving wood pulp;5510;Production;t;414000;386000;437000;446000;449000;384200;383500;368000;325000;314000;290000;351000;341000;345000;316000;244000;234000;231000;196000;122000;97000;97000;100000;100000;44000;213000;225000;248000;300000;296000;319000;319000;319000;319000;319000;319000;319000;0;0;0;0;0;0;0;149000;174000;186000;156000;194000;161598;202849;375000;503000;540000;535000;535000;503000;481000;482857;467074;463360;454074;454074 -210;'752;Sweden;1667;Dissolving wood pulp;5610;Import quantity;t;1000;0;200;100;100;400;100;800;500;200;1000;1500;8300;4000;400;0;0;900;300;2500;9700;16700;25100;24600;21800;19900;26300;24900;25800;28000;24000;26117;19752;11000;14000;11000;7000;8000;11000;10733;10660;9723;19041;14770;9461;17000;16000;15784;14473;27455;25033;24588;18623;16170;13431;14219;22746;22698;20536;19021;18262;18132;31317 -210;'752;Sweden;1667;Dissolving wood pulp;5622;Import value;1000 USD;209;0;37;25;13;67;17;107;69;45;206;318;1672;1665;239;0;0;465;210;1467;5663;8261;10717;11226;9609;10581;17333;18789;22745;27251;18514;19929;11290;6869;13622;8950;5768;6324;8361;7824;7841;7619;14413;13660;8987;13703;18076;21008;18162;32885;49981;46262;34181;26341;17446;16712;30640.84;32005;27357;25080;25071;27457;50806 -210;'752;Sweden;1667;Dissolving wood pulp;5910;Export quantity;t;371100;340500;347400;392100;361000;331900;358400;333600;321600;273900;237600;255900;319900;256200;155400;177000;197200;195900;173100;81200;72800;58600;57800;44100;33300;12700;1500;0;0;0;0;8994;5149;0;39000;70000;138000;113800;100000;98486;132450;97557;130824;159000;158000;191000;202000;171474;208000;188769;227673;400575;490346;532450;527302;272776;287400;309635;336412;380048;390353;371251;363284 -210;'752;Sweden;1667;Dissolving wood pulp;5922;Export value;1000 USD;61546;52057;53417;65395;61533;54679;58214;52310;53891;53014;49932;52302;70840;101002;82885;84776;87428;80541;85266;50955;45962;35553;31878;23808;16405;6534;663;0;0;0;0;5282;2467;0;37775;44002;88891;68212;55944;63311;80540;49886;75523;112007;117947;136354;195276;192649;175279;257346;394374;478227;534010;524958;440071;249805;286888.2;296968;281988;269856;357493;378409;356843 -210;'752;Sweden;1668;Pulp from fibres other than wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;358000;358000;358000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -210;'752;Sweden;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;600;700;800;500;400;300;600;500;500;200;100;200;300;300;1700;3300;3200;6900;5700;6600;11200;5400;2700;4100;3300;3300;3300;3000;8383;4496;3000;22000;25000;17000;28500;24000;27105;11560;1946;2235;2148;4000;7000;5000;9608;10000;12000;11930;10040;13583;12990;14000;13595;13349;14517;13326;11588;7648;13260;6122 -210;'752;Sweden;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;187;261;271;273;177;115;233;201;195;88;67;121;184;198;1285;1983;1987;2782;2540;2389;3706;2790;1742;2289;2418;2418;2418;3334;4778;2577;3114;14464;12977;11013;13435;17474;19576;8861;4173;5038;6507;7519;11125;11112;19312;18483;23278;35833;26232;25923;23205;23191;22674;27331.69;25963;24452;20141;14938;36545;16254 -210;'752;Sweden;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7643;3478;0;1000;1000;100;0;0;459;600;423;298;313;224;0;0;32;31;706;0;2039;120;90;28;0;28;735;62;5;2590;1264;11488 -210;'752;Sweden;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4248;1333;0;1545;1193;131;15;286;675;886;719;714;70;24;0;0;33;29;488;0;960;243;97;30;0;22.93;166;99;37;2322;1463;16599 -210;'752;Sweden;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;0;3000;1170;1229;3330;5034;4000;4000;3000;1783;139;0;549;53;3600;4450;3215;3592;3762;5190;3231;2099;5875;7426;6813 -210;'752;Sweden;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;0;1422;338;341;1237;2026;1565;1085;1482;1101;6;0;22;19;2212;2724;1622;1721;1602.69;2521;1494;1308;2130;2212;2208 -210;'752;Sweden;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;2700;201;22;0;401;0;0;0;0;150;0;896;0;90;163;561;975;180;150;101;18;1;12 -210;'752;Sweden;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;1029;189;8;0;38;0;0;0;0;93;0;1075;0;62;112;340;200.63;151;54;46;12;3;20 -210;'752;Sweden;1669;Recovered paper;5510;Production;t;260000;220000;220000;267000;280000;300000;270000;330000;330000;330000;350000;350000;385000;415000;490000;450000;490000;507000;509000;576000;590000;615000;636000;719000;763000;797000;800000;865000;890000;909000;877000;900000;920000;1408000;1079000;1079000;1079000;1379000;1384000;1468000;1444000;1468000;1490000;1500000;1568000;1529000;1570000;2022000;1864000;1835000;1497000;1327000;1241000;1161000;1210000;1159000;1155000;1148000;1131000;925000;992000;940000;897000 -210;'752;Sweden;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;20000;19000;20000;43000;43800;56300;62400;80705;88300;163400;206300;175500;110100;136200;125600;180100;133600;117200;165700;217600;275200;308000;471617;541683;583000;614000;523000;553000;549200;720000;698000;710180;750979;761125;808970;819000;793868;777000;841375;894658;1072894;976160;888285;607941;700500;604254;634919;579520;702168;410000;273578;253555;262024;264606 -210;'752;Sweden;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;906;742;794;2486;4656;4869;6188;7071;6690;17361;26968;17546;10109;12271;11746;17911;12815;12471;22384;27726;34293;31344;46416;33869;47618;110938;55189;43265;40176;44874;53260;72656;60550;70867;77537;77028;81133;100453;127854;100352;163421;189835;149774;99765;80465;58379;67708;94507.08;61585;57539;32063;49423;55550;37934 -210;'752;Sweden;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;91000;78000;90000;121000;139521;78247;93216;102500;95848;80400;83200;82827;100100;105700;149000;130000;136400;138400;162800;146600;140100;144000;138987;142468;166000;183000;178000;193000;169200;182000;179000;139400;205574;189524;204061;205000;195497;293000;339800;320000;395066;477402;423331;450056;453030;466672;501434;452063;431021;461979;412306;522458;518573;483254 -210;'752;Sweden;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;5467;4142;5856;9310;16288;7697;10002;10562;11319;11318;14856;13710;14690;15691;23299;20293;24324;29740;33396;33051;36642;28009;26531;23511;26598;45499;33859;33301;26348;25617;30477;21097;30857;30389;35049;35209;32834;47560;71851;45546;72614;103600;76046;76871;79417;68042;83432;78962.46;66666;57763;53083;108589;105272;63796 -210;'752;Sweden;1876;Paper and paperboard;5510;Production;t;2292000;2405000;2712000;2916000;3121000;3182000;3296000;3635000;4113000;4359000;4306000;4563000;5204000;5505000;4473000;5005000;5060000;5702000;6541000;6182000;6131000;5919000;6349000;6870000;7001000;7364000;7812000;8161000;8363000;8419000;8349000;8378000;8781000;9284000;9159000;9018000;9756000;9879000;10071000;10786000;10534000;10724000;11061600;11589000;11775000;12066000;11511100;11663000;10932000;11410000;11298000;11417000;10792000;10419000;10255000;10101999;10261010;10140999;9616000;9280000;8924000;8531000;7492000 -210;'752;Sweden;1876;Paper and paperboard;5610;Import quantity;t;24200;26400;32700;38100;45700;51000;65200;85800;105300;119500;122600;126600;146600;166800;133300;167400;147000;147300;166500;181400;181800;187200;216500;223300;226100;244100;260000;269600;273300;338000;301000;375399;333251;441000;412700;444000;487000;522800;605000;754000;593000;596350;638298;627959;852997;1007959;1056000;985066;866358;912267;852947;872821;878424;831170;801617;851536;918340;846593;861267;772604;895800;893960;674888 -210;'752;Sweden;1876;Paper and paperboard;5622;Import value;1000 USD;8892;10221;12050;14467;17099;19171;23052;28520;35505;42023;44184;55269;67188;105861;104347;122627;114862;125174;157068;196463;178462;170999;176502;184951;197149;267014;329115;359351;367659;448754;417997;398477;320979;419185;523094;528022;492833;506871;516589;574927;454229;446438;558305;598655;782407;905228;1032540;1042242;823813;840823;903733;840398;845350;806478;676762;703672;767876.95;776395;723597;623684;777351;908462;709194 -210;'752;Sweden;1876;Paper and paperboard;5910;Export quantity;t;1388500;1460100;1665100;1887700;1898700;2035800;2031800;2379900;2729900;2939500;2947100;3228000;3730900;3989000;2904200;3397100;3758200;4369600;4792600;4625600;4721000;4490600;4415800;5159800;5302300;5325100;6103600;6381800;6502900;6613000;6431000;6645755;7026393;7793300;7528400;7485000;8210000;8513400;8809000;9031446;8419860;8479489;9080480;10211125;10535969;10848884;10649000;10579858;9866770;9765766;10451368;9961805;10132365;9584130;9809064;9560217;9321482;9560779;9218665;9054055;9115824;8591389;7686317 -210;'752;Sweden;1876;Paper and paperboard;5922;Export value;1000 USD;240295;248078;280829;320837;326928;353545;359174;403328;458492;525581;546727;656843;876304;1408791;1313807;1416862;1515228;1846663;2409745;2708596;2609221;2353722;2262463;2459577;2609761;3140445;4284076;4897219;4989729;5714093;5554238;5673104;4413862;5106086;6687603;6753922;6040677;6075851;5847467;5915159;5191605;5462160;6638334;7905423;8144211;8691221;9545837;10406104;8731924;8909868;10552911;9078691;9656551;8560514;7591500;7224419;7639377.36;8002858;7677330;7364110;8094839;8709788;7910817 -210;'752;Sweden;2042;Graphic papers;5510;Production;t;905000;931000;959000;1002000;1049000;1100000;1139000;1313000;1456000;1567000;1537000;1583000;1864000;1802000;1661000;1670000;1877000;2165000;2483000;2532000;2601000;2315000;2470000;2841000;2958000;3214000;3482000;3724000;3855000;3928000;3856000;3929000;4209000;4476000;4393000;4453000;4870000;5023000;5125000;5379000;5254000;5230000;5365000;5682000;5691000;5954000;5532100;5824000;5210000;5513000;5467000;5447000;4836000;4325000;4063000;3609999;3588010;3486999;3254000;2787000;2364000;1991000;1726000 -210;'752;Sweden;2042;Graphic papers;5610;Import quantity;t;3500;5000;7500;8900;10900;12900;13400;12200;14100;16100;17900;20900;19400;17900;18400;26500;25100;26900;27500;32700;33300;38800;55700;63200;64900;68600;72700;100000;104600;114200;111000;130888;130251;170000;138000;149000;168000;192000;261000;387000;250000;300282;321081;338188;512693;516721;526000;464800;380028;350366;310967;342789;329641;313980;279823;323232;383228;327151;319353;303869;385648;391561;264667 -210;'752;Sweden;2042;Graphic papers;5622;Import value;1000 USD;1450;1824;2706;3307;3948;4401;4520;4549;5270;6387;5489;8114;8844;11587;13217;17295;16522;19050;22635;30989;27621;28175;34332;40979;43867;57809;71051;126232;127371;149257;140444;141150;107705;145801;182838;169146;160738;174805;212012;276910;187536;234136;280802;315318;455841;478843;534277;505224;391562;333598;355826;355378;343823;314617;232588;245190;292013.66;270402;258286;220263;278401;354592;257665 -210;'752;Sweden;2042;Graphic papers;5910;Export quantity;t;535100;533100;581700;624400;601100;611600;637200;786700;890000;970400;971600;1064400;1244100;1389300;1198300;1174900;1248700;1499500;1759700;1748500;1842200;1555100;1668900;1933000;2031400;1928900;2518000;2942700;3071700;3061900;2975000;3098446;3409393;3828000;3521000;3806000;4236000;4521000;4596000;4625369;4486260;4084119;4514833;5446152;5496836;5549137;5328000;5321760;4679209;4637337;5026292;4928272;4560121;4030720;3863160;3452044;3287000;3400935;3199886;2748158;2556489;2152491;1764859 -210;'752;Sweden;2042;Graphic papers;5922;Export value;1000 USD;80634;79050;84071;91391;88859;91641;98048;116696;128215;146951;152610;183075;256762;441922;472670;450521;505670;646544;871309;974276;970520;789356;754724;864475;924156;1000987;1637283;2221495;2268106;2368575;2492977;2480665;1977395;2354588;2869085;3370845;2954920;3064377;2956472;2898632;2837479;2531189;3009965;3941556;3950084;3953088;4156644;4715661;3851870;3652848;4418224;4017361;3714407;3163211;2477896;2180298;2253667.95;2403544;2334442;1892999;1838936;2148635;1834210 -210;'752;Sweden;1671;Newsprint;5510;Production;t;619000;629000;607000;652000;679000;689000;704000;809000;934000;1030000;1011000;963000;1076000;1223000;1213000;1164000;1111000;1258000;1484000;1534000;1605000;1323000;1349000;1507000;1594000;1789000;1975000;2064000;2165000;2273000;2063000;2124000;2325000;2415000;2346000;2283000;2411000;2478000;2508000;2542000;2463000;2423000;2548000;2649000;2572000;2541000;2547000;2560000;2198000;2258000;2120000;2013000;1558000;1258000;1197000;1016000;1011000;977000;889000;670000;345870;239709;207805 -210;'752;Sweden;1671;Newsprint;5610;Import quantity;t;;;;;;2400;2500;;;;;;;;;;;;300;;;300;5200;300;300;200;;;;2900;3000;12751;15766;39000;15000;38000;38000;43900;55000;89000;49000;68344;73116;90553;74000;68819;67000;29737;34239;73772;42809;42121;42001;32230;25658;54035;58042;51702;37142;45603;79292;90321;77651 -210;'752;Sweden;1671;Newsprint;5622;Import value;1000 USD;;;;;;291;329;;;;;;;;;;;;93;;;96;1854;97;105;98;;;;2357;2335;7591;7608;17107;10392;28191;22157;26474;31850;43855;23708;33332;41523;55399;46241;46718;50078;23797;29027;50716;36346;31279;29537;22972;14299;28234;32406.27;32100;24262;25199;43922;62662;58840 -210;'752;Sweden;1671;Newsprint;5910;Export quantity;t;423400;408200;429500;455600;429800;427100;422900;521600;621500;686600;710300;767900;850300;944300;920800;861200;847100;1031000;1240100;1238400;1300600;1031100;1087500;1217100;1352000;1487700;1728100;1754300;1840800;1772100;1557000;1617733;1885000;2030000;1983000;1958000;2109000;2269800;2038000;1929000;1869020;1895343;1994231;2029000;1853000;1827234;1802000;1806000;1641000;1734337;1721000;1644000;1192946;909670;889877;768735;846000;781637;702650;545074;374032;259152;237113 -210;'752;Sweden;1671;Newsprint;5922;Export value;1000 USD;56424;54064;56512;60085;56400;56197;55414;66034;76429;89203;96712;113622;147378;253462;334074;302261;316492;404522;539601;597411;599270;455088;424604;443481;512927;710534;972993;1120272;1113845;1169075;1020643;980992;834079;927683;1200800;1364805;1122420;1206748;1024856;906526;935120;875051;957864;1045951;939605;996704;1105278;1234631;1055764;976665;1228087;1076963;767721;557725;427268;366940;372041.16;444381;406252;277156;192497;200146;168087 -210;'752;Sweden;1674;Printing and writing papers;5510;Production;t;286000;302000;352000;350000;370000;411000;435000;504000;522000;537000;526000;620000;788000;579000;448000;506000;766000;907000;999000;998000;996000;992000;1121000;1334000;1364000;1425000;1507000;1660000;1690000;1655000;1793000;1805000;1884000;2061000;2047000;2170000;2459000;2545000;2617000;2837000;2791000;2807000;2817000;3033000;3119000;3413000;2985100;3264000;3012000;3255000;3347000;3434000;3278000;3067000;2866000;2593999;2577010;2509999;2365000;2117000;2018130;1751291;1518195 -210;'752;Sweden;1674;Printing and writing papers;5610;Import quantity;t;3500;5000;7500;8900;10900;10500;10900;12200;14100;16100;17900;20900;19400;17900;18400;26500;25100;26900;27200;32700;33300;38500;50500;62900;64600;68400;72700;100000;104600;111300;108000;118137;114485;131000;123000;111000;130000;148100;206000;298000;201000;231938;247965;247635;438693;447902;459000;435063;345789;276594;268158;300668;287640;281750;254165;269197;325186;275449;282211;258266;306356;301240;187016 -210;'752;Sweden;1674;Printing and writing papers;5622;Import value;1000 USD;1450;1824;2706;3307;3948;4110;4191;4549;5270;6387;5489;8114;8844;11587;13217;17295;16522;19050;22542;30989;27621;28079;32478;40882;43762;57711;71051;126232;127371;146900;138109;133559;100097;128694;172446;140955;138581;148331;180162;233055;163828;200804;239279;259919;409600;432125;484199;481427;362535;282882;319480;324099;314286;291645;218289;216956;259607.4;238302;234024;195064;234479;291930;198825 -210;'752;Sweden;1674;Printing and writing papers;5910;Export quantity;t;111700;124900;152200;168800;171300;184500;214300;265100;268500;283800;261300;296500;393800;445000;277500;313700;401600;468500;519600;510100;541600;524000;581400;715900;679400;441200;789900;1188400;1230900;1289800;1418000;1480713;1524393;1798000;1538000;1848000;2127000;2251200;2558000;2696369;2617240;2188776;2520602;3417152;3643836;3721903;3526000;3515760;3038209;2903000;3305292;3284272;3367175;3121050;2973283;2683309;2441000;2619298;2497236;2203084;2182457;1893339;1527746 -210;'752;Sweden;1674;Printing and writing papers;5922;Export value;1000 USD;24210;24986;27559;31306;32459;35444;42634;50662;51786;57748;55898;69453;109384;188460;138596;148260;189178;242022;331708;376865;371250;334268;330120;420994;411229;290453;664290;1101223;1154261;1199500;1472334;1499673;1143316;1426905;1668285;2006040;1832500;1857629;1931616;1992106;1902359;1656138;2052101;2895605;3010479;2956384;3051366;3481030;2796106;2676183;3190137;2940398;2946686;2605486;2050628;1813358;1881626.79;1959163;1928190;1615843;1646439;1948489;1666123 -210;'752;Sweden;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;789500;609000;1154000;633000;646000;742800;699000;1150000;1070100;1287000;1187432;1371998;1411000;1470000;1373400;1246800;1289600;1367209;1408250;1371631;1292392;1156867;1303282;1078466;934927 -210;'752;Sweden;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16300;71000;109000;26000;37521;52190;112348;217455;195641;188000;192740;173794;169795;104094;152946;146642;139230;126860;151590;201942;174791;172735;173039;200459;196707;104574 -210;'752;Sweden;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11546;49390;65837;15870;23603;35777;82176;167029;154495;171060;184714;162305;137402;96014;126160;121754;110257;80316;92682;119628.34;115555;113714;104524;121340;168576;95899 -210;'752;Sweden;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;528400;812000;870163;738650;522000;566000;807112;1051873;1345245;1340000;1479569;1361598;1394000;1537000;1525272;1513687;1366790;1383979;1448180;1388000;1490863;1375397;1231803;1409402;1165941;956767 -210;'752;Sweden;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;352750;504806;500281;438019;336184;367099;517518;694129;928062;1017122;1304181;1151170;1099980;1322072;1222304;1177629;1011070;826121;841974;933941.23;974093;946430;799969;913537;1026181;915299 -210;'752;Sweden;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1535000;789500;1086000;1105000;1172000;1205000;1176000;1197000;1197000;850000;732000;920568;858002;882000;910000;915600;831200;776400;602715;498770;485800;457736;409740;429952;453004;392706 -210;'752;Sweden;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41400;31000;46000;41000;43955;41211;39439;66900;79264;122000;93899;31318;33591;33906;28929;43490;41480;31396;33321;34674;29509;36302;28582;30562;37068;29545 -210;'752;Sweden;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44300;32739;43527;36191;45442;47279;53632;71626;86964;126825;108114;46494;48284;57045;46572;61227;55874;41264;39201;40302.17;39691;43245;32342;35740;41998;35343 -210;'752;Sweden;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;646600;667000;649757;717520;777776;1015602;1132080;1148467;1137966;972000;825886;824048;739000;877700;908017;929130;848290;764170;530936;428000;465277;464803;420922;464961;489747;388177 -210;'752;Sweden;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;519743;504616;525865;547113;600517;861416;1001308;985647;989395;959043;947248;826199;819458;960481;921228;934960;816411;630950;465578;440001.87;468271;463595;397824;454213;613098;499206 -210;'752;Sweden;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1010000;1038000;1142000;532000;1002000;966000;1114200;1223000;1066000;1065000;1245000;904000;1025000;1054000;1054000;989000;989000;800000;624075;669990;652568;614872;550393;284896;219821;190562 -210;'752;Sweden;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90400;104000;143000;134000;150462;154564;95848;154338;172997;149000;148424;140677;73208;130158;118793;97508;101040;95909;84286;88570;71149;73174;56645;75335;67465;52897 -210;'752;Sweden;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92485;98033;123691;111767;131759;156223;124111;170945;190666;186314;188599;153736;97196;166421;151367;131305;125514;96709;85073;99676.89;83056;77065;58198;77399;81356;67583 -210;'752;Sweden;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1076200;1079000;1176449;1161070;889000;939000;1477960;1443496;1238692;1214000;1210305;852563;770000;890592;850983;924358;905970;825134;704193;625000;663158;657036;550359;308094;237651;182802 -210;'752;Sweden;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;985136;922194;965960;917227;719437;823586;1376779;1330703;1038927;1075201;1229601;818737;756745;907584;796866;834097;778005;593557;505806;507683.7;516799;518165;418050;278689;309210;251618 -210;'752;Sweden;1675;Other paper and paperboard;5510;Production;t;1387000;1474000;1753000;1914000;2072000;2082000;2157000;2322000;2657000;2792000;2769000;2980000;3340000;3703000;2812000;3335000;3183000;3537000;4058000;3650000;3530000;3604000;3879000;4029000;4043000;4150000;4330000;4437000;4508000;4491000;4493000;4449000;4572000;4808000;4766000;4565000;4886000;4856000;4946000;5407000;5280000;5494000;5696600;5907000;6084000;6112000;5979000;5839000;5722000;5897000;5831000;5970000;5956000;6094000;6192000;6492000;6673000;6654000;6362000;6493000;6560000;6540000;5766000 -210;'752;Sweden;1675;Other paper and paperboard;5610;Import quantity;t;20700;21400;25200;29200;34800;38100;51800;73600;91200;103400;104700;105700;127200;148900;114900;140900;121900;120400;139000;148700;148500;148400;160800;160100;161200;175500;187300;169600;168700;223800;190000;244511;203000;271000;274700;295000;319000;330800;344000;367000;343000;296068;317217;289771;340304;491238;530000;520266;486330;561901;541980;530032;548783;517190;521794;528304;535112;519442;541914;468735;510152;502399;410221 -210;'752;Sweden;1675;Other paper and paperboard;5622;Import value;1000 USD;7442;8397;9344;11160;13151;14770;18532;23971;30235;35636;38695;47155;58344;94274;91130;105332;98340;106124;134433;165474;150841;142824;142170;143972;153282;209205;258064;233119;240288;299497;277553;257327;213274;273384;340256;358876;332095;332066;304577;298017;266693;212302;277503;283337;326566;426385;498263;537018;432251;507225;547907;485020;501527;491861;444174;458482;475863.29;505993;465311;403421;498950;553870;451529 -210;'752;Sweden;1675;Other paper and paperboard;5910;Export quantity;t;853400;927000;1083400;1263300;1297600;1424200;1394600;1593200;1839900;1969100;1975500;2163600;2486800;2599700;1705900;2222200;2509500;2870100;3032900;2877100;2878800;2935500;2746900;3226800;3270900;3396200;3585600;3439100;3431200;3551100;3456000;3547309;3617000;3965300;4007400;3679000;3974000;3992400;4213000;4406077;3933600;4395370;4565647;4764973;5039133;5299747;5321000;5258098;5187561;5128429;5425076;5033533;5572244;5553410;5945904;6108173;6034482;6159844;6018779;6305897;6559335;6438898;5921458 -210;'752;Sweden;1675;Other paper and paperboard;5922;Export value;1000 USD;159661;169028;196758;229446;238069;261904;261126;286632;330277;378630;394117;473768;619542;966869;841137;966341;1009558;1200119;1538436;1734320;1638701;1564366;1507739;1595102;1685605;2139458;2646793;2675724;2721623;3345518;3061261;3192439;2436467;2751498;3818518;3383077;3085757;3011474;2890995;3016527;2354126;2930971;3628369;3963867;4194127;4738133;5389193;5690443;4880054;5257020;6134687;5061330;5942144;5397303;5113604;5044121;5385709.41;5599314;5342888;5471111;6255903;6561153;6076607 -210;'752;Sweden;1676;Household and sanitary papers;5510;Production;t;;;;;34000;37000;136000;149000;163000;171000;182000;190000;207000;224000;224000;205000;198000;266000;264000;230000;235000;240000;260000;270000;264000;277000;277000;289000;285000;283000;291000;296000;298000;295000;293000;297000;292000;299000;294000;312000;305000;297000;296000;311000;317000;317000;319000;330000;338000;350000;352000;361000;353000;350000;356000;361000;363000;367000;356000;356000;344000;353000;343000 -210;'752;Sweden;1676;Household and sanitary papers;5610;Import quantity;t;1000;1100;1300;1500;1700;1900;2600;3700;4800;10700;10700;10800;17300;19000;6400;2000;900;2700;4100;3600;5600;5600;3000;3800;3500;5000;5300;3100;3100;3100;2000;2000;2000;4000;1000;3000;7000;5900;5000;7000;4000;10752;11929;12235;11836;13875;12000;5700;4400;6757;8469;8431;9222;11960;12046;18774;18551;17388;17563;23336;22496;21196;14684 -210;'752;Sweden;1676;Household and sanitary papers;5622;Import value;1000 USD;521;588;654;781;921;1034;1297;1727;2023;4109;4280;6312;7436;12015;5951;2710;1650;2835;4060;3099;4570;4290;2480;3306;3328;5775;6804;5179;5179;5260;3836;4488;3348;4930;3089;4624;7997;7043;5862;8858;5322;12937;16732;17880;19092;17227;16594;13076;9106;11805;15087;13500;16529;21000;19415;25751;27576.07;27031;26849;30476;32329;36441;31949 -210;'752;Sweden;1676;Household and sanitary papers;5910;Export quantity;t;17100;18500;21700;25300;25900;28500;27900;39000;34200;34600;35400;42800;52900;74700;55100;66900;73300;86300;102600;49500;50400;53000;67700;58500;64600;60900;72300;67700;67700;89500;81000;80000;78000;82000;62000;66000;66000;68800;91000;95330;97870;85106;83475;89701;109690;107294;107000;111446;128000;130032;130856;138890;132608;128830;113696;105099;108868;103797;101707;96904;89028;92146;87523 -210;'752;Sweden;1676;Household and sanitary papers;5922;Export value;1000 USD;4790;5071;5903;6883;7142;7857;7834;9907;9028;9792;11465;15398;21472;40320;37308;44352;47938;60251;86153;52351;50333;53000;49696;45290;52355;59777;86158;106789;106789;158321;138609;136740;109463;129621;131160;134840;113801;109385;116456;152715;136107;125931;136596;157830;189177;208536;242243;282390;254557;285784;297570;281525;295391;293156;208208;181272;185668;197356;182866;157413;156651;203766;205984 -210;'752;Sweden;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4429000;4527000;4968000;4857000;5083000;5277600;5465000;5608000;5660000;5540000;5388000;5267000;5448000;5415000;5550000;5541000;5684000;5775000;6068000;6239000;6224000;5945000;6083000;6156000;6138000;5381000 -210;'752;Sweden;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;233700;255000;300000;293000;267779;287398;260590;314142;461763;509000;503197;472855;544608;525378;513181;519828;499200;502270;505230;514325;500506;522482;444493;486757;478710;392149 -210;'752;Sweden;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;205545;193177;200574;188504;179305;237340;236597;280952;380722;463001;491995;396317;460474;509132;438178;451129;454220;408808;418676;438237.62;468998;426936;366245;459946;508642;407828 -210;'752;Sweden;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3832600;4030000;4211677;3737730;4215625;4384063;4652589;4903359;5167012;5208000;5127304;5040826;4979121;5273528;4872928;5421340;5409540;5813995;5984841;5923000;6053690;5914806;6207068;6467417;6343860;5827073 -210;'752;Sweden;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2791445;2663433;2765272;2124246;2728084;3402899;3763187;3959608;4481004;5125911;5351315;4577636;4913713;5775601;4720036;5591523;5067421;4858942;4815092;5180682.02;5382848;5139885;5302281;6074424;6324608;5819765 -210;'752;Sweden;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;1320000;1320000;1719000;1879000;2149000;2276000;2257000;2436000;2752000;2778000;1980000;2716000;2652000;2903000;3382000;3042000;2971000;3033000;3348000;3477000;3519000;3614000;3792000;3907000;3981000;3974000;3986000;3949000;4067000;4495000;4456000;4246000;4447000;;;;;;;;;;;;;;;;;;;;;;;;;; -210;'752;Sweden;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;5200;5400;6300;7300;8700;9500;13000;18100;18800;22000;28100;23200;28700;38000;25500;37100;22800;18000;22900;26000;28800;28000;42100;42200;34900;36600;41200;84100;84500;127400;187000;241511;200000;265000;273000;290000;309000;;;;;;;;;;;;;;;;;;;;;;;;;; -210;'752;Sweden;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;1042;1176;1308;1563;1841;2068;2595;3308;3747;4572;6295;5658;6336;15277;12571;16767;11044;9281;12484;17032;17427;16600;20847;19993;16988;22343;29614;65387;73075;113101;270715;250595;207608;266508;336465;351269;321083;;;;;;;;;;;;;;;;;;;;;;;;;; -210;'752;Sweden;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;733900;797200;931700;1086400;1115900;1224800;1199400;1365700;1566900;1673400;1665500;1820300;2063200;2096200;1316900;1755700;2019600;2317800;2930300;2827600;2828400;2882500;2679200;3168300;3206300;3335300;3513300;3371400;3363500;3461600;3369000;3466709;3538300;3883000;3945000;3612000;3907000;;;;;;;;;;;;;;;;;;;;;;;;;; -210;'752;Sweden;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;124536;131842;153471;178968;185694;204285;203678;223820;253336;288730;297612;356052;446710;696352;570684;665871;696124;817394;1452283;1681969;1588368;1511366;1458043;1549812;1633250;2079681;2560635;2568935;2614834;3187197;2913645;3055009;2326361;2621618;3686937;3247790;2971170;;;;;;;;;;;;;;;;;;;;;;;;;; -210;'752;Sweden;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1910000;2040000;2103000;2040000;2055000;2084600;2186000;2197000;2154000;2058000;2008000;1892000;1902000;1833000;1914000;1933000;2065000;2095000;2168000;2247000;2238000;2111000;2125000;2125000;2095000;1999000 -210;'752;Sweden;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105600;115000;118000;143000;120981;123356;107440;109279;215158;259000;294436;282683;354888;355259;274121;259929;227990;230176;251095;269216;281530;291412;247913;275869;252384;220702 -210;'752;Sweden;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49729;47938;49870;55642;47827;58682;59415;57059;115229;168014;202643;143496;215610;262529;160037;155758;139164;120813;127485;146609.66;184090;158257;123407;178741;193173;130708 -210;'752;Sweden;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1612300;1739000;1665753;1594610;1734615;1745364;1883337;2018926;2021478;1932000;1925610;1876851;1642532;1850064;1897869;1860507;1952370;1960890;2019444;1823000;2000404;2008685;2134606;2121250;1968893;1985068 -210;'752;Sweden;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;800697;765235;800049;732354;803838;951105;1093537;1125081;1217968;1368559;1422829;1118165;1094038;1396779;1173693;1230608;1314340;1131173;1122443;1229077.46;1291601;1192991;1225046;1442777;1414717;1339493 -210;'752;Sweden;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1565000;1484000;1801000;1831000;2061000;2260000;2299000;2455000;2498000;2464000;2469000;2376000;2499000;2569000;2630000;2636000;2609000;2620000;2867000;2954000;2972000;2904000;3034000;3045000;3042000;2575000 -210;'752;Sweden;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83600;86000;99000;77000;85853;100173;99231;90993;129283;100000;88405;93057;100336;99451;120014;96683;124790;137008;142630;119540;106390;107481;93963;105832;113500;88319 -210;'752;Sweden;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102335;91184;78961;74124;80953;113399;121007;108039;145927;146086;142438;144320;136818;148224;161647;143388;168902;167154;178468;162166.56;158659;142858;131155;155000;163376;151520 -210;'752;Sweden;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1286300;1278000;1429397;1451240;1616482;1759204;1776900;1885438;2144762;2210000;2267061;2229940;2335815;2449022;1995887;2605457;2480000;2690027;2884209;3117000;2950211;2898676;3081681;3295694;3364764;2960496 -210;'752;Sweden;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1235711;1163604;1196044;1146459;1336189;1732692;1859599;2011896;2403290;2681854;2839080;2549801;2738135;3126435;2432625;3247967;2683142;2614120;2708958;2759085.76;2904005;2837094;3067135;3456081;3565411;3309494 -210;'752;Sweden;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;954000;1003000;1064000;986000;967000;933000;980000;956000;1008000;1018000;911000;999000;1047000;1013000;1006000;972000;1010000;1060000;1033000;1038000;1014000;930000;924000;986000;1001000;807000 -210;'752;Sweden;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31500;37000;78000;67000;34384;37495;18851;56273;58830;65000;63119;42601;39229;36380;86601;127551;103450;79367;55723;50667;50578;55477;48601;54702;64269;45998 -210;'752;Sweden;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38900;41009;69446;56609;38726;50519;37320;77462;81726;96304;99625;71514;71379;76153;97313;130767;115700;81520;72977;86092.58;91582;89433;83069;96464;116513;97204 -210;'752;Sweden;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;910000;988000;1116527;691880;856056;869497;977183;939529;941975;986000;890493;898515;973285;968408;973249;946787;962000;1139281;1059000;940000;1056896;958233;930413;1004256;969151;847220 -210;'752;Sweden;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;729059;708797;769179;245433;585482;715409;802811;775159;813660;1015937;1038834;870386;1044642;1248363;1109717;1106726;1061175;1077209;949199;1164382.73;1150654;1070589;958701;1132581;1305210;1134776 -210;'752;Sweden;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 -210;'752;Sweden;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13000;17000;5000;6000;26561;26374;35068;57597;58492;85000;57237;54514;50155;34288;32445;35665;42970;55719;55782;74902;62008;68112;54016;50354;48557;37130 -210;'752;Sweden;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14581;13046;2297;2129;11799;14740;18855;38392;37840;52597;47289;36987;36667;22226;19181;21216;30454;39321;39746;43368.82;34667;36388;28614;29741;35580;28396 -210;'752;Sweden;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24000;25000;0;0;8472;9998;15169;59466;58797;80000;44140;35520;27489;6034;5923;8589;15170;23797;22188;43000;46179;49212;60368;46217;41052;34289 -210;'752;Sweden;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25978;25797;0;0;2575;3693;7240;47472;46086;59561;50572;39284;36898;4024;4001;6222;8764;36440;34492;28136.08;36588;39211;51399;42985;39270;36002 -210;'752;Sweden;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;718000;725000;302000;294000;345000;345000;330000;354000;381000;701000;608000;414000;333000;368000;412000;378000;324000;331000;271000;282000;260000;259000;261000;241000;242000;234000;216000;204000;207000;18000;17000;22000;147000;128000;125000;127000;118000;114000;123000;131000;159000;135000;120000;121000;117000;99000;64000;59000;62000;60000;61000;63000;71000;63000;61000;54000;60000;49000;42000 -210;'752;Sweden;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;14500;14900;17600;20400;24400;26700;36200;51800;67600;70700;65900;71700;81200;91900;83000;101800;98200;99700;112000;119100;114100;114800;115700;114100;122800;133900;140800;82400;81100;93300;1000;1000;1000;2000;700;2000;3000;91200;84000;60000;46000;17537;17890;16946;14326;15600;9000;11369;9075;10536;8133;8420;19733;6030;7478;4300;2236;1548;1869;906;899;2493;3388 -210;'752;Sweden;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;5879;6633;7382;8816;10389;11668;14640;18936;24465;26955;28120;35185;44572;66982;72608;85855;85646;94008;117889;145343;128844;121934;118843;120673;132966;181087;221646;162553;162034;181136;3002;2244;2318;1946;702;2983;3015;119478;105538;88585;72867;20060;23431;28860;26522;28436;18668;31947;26828;34946;23688;33342;33869;16641;15951;14055;10049.6;9964;11526;6700;6675;8787;11752 -210;'752;Sweden;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;102400;111300;130000;151600;155800;170900;167300;188500;238800;261100;274600;300500;370700;428800;333900;399600;416600;466000;0;0;0;0;0;0;0;0;0;0;0;0;6000;600;700;300;400;1000;1000;91000;92000;99070;98000;94639;98109;22683;26084;25441;6000;19348;18735;19276;20692;21715;18296;15040;18213;18233;2614;2357;2266;1925;2890;2892;6862 -210;'752;Sweden;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;30335;32115;37384;43595;45233;49762;49614;52905;67913;80108;85040;102318;151360;230197;233145;256118;265496;322474;0;0;0;0;0;0;0;0;0;0;0;0;9007;690;643;259;421;447;786;110644;111106;98540;93773;76956;88874;42850;45342;48593;21039;56738;47861;57523;61516;59769;55230;36726;46454;47757;19359.39;19110;20137;11417;24828;32779;50858 -210;'752;Sweden;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1796528.97;1855002;1750409;1791794;2188130;2499235;2056396 -210;'752;Sweden;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1710731.21;1781038;1754535;1728966;1959438;1835350;1824583 -210;'752;Sweden;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43700.35;43010;62048;70994;90887;86596;76397 -210;'752;Sweden;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79813.41;78102;78203;73300;92879;72287;50715 -210;'752;Sweden;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32646.32;32244;38429;45255;60325;59737;49073 -210;'752;Sweden;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71128.79;69502;66806;65902;81255;58707;39505 -210;'752;Sweden;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11054.03;10766;23619;25739;30562;26859;27324 -210;'752;Sweden;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8684.62;8600;11397;7398;11624;13580;11210 -210;'752;Sweden;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89626.58;93181;97477;83970;120948;171054;158855 -210;'752;Sweden;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57502.72;64525;76228;69356;46635;39357;115733 -210;'752;Sweden;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45543.1;43011;42975;40775;55773;67906;65230 -210;'752;Sweden;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25550;27706;27399;28995;46635;40282;44090 -210;'752;Sweden;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;390762.86;408059;363435;395051;481929;556890;417809 -210;'752;Sweden;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;377328.06;411876;333075;391226;462097;375883;346201 -210;'752;Sweden;1636;Glue-laminated timber (glulam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;150000;150000 -210;'752;Sweden;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27894;9105 -210;'752;Sweden;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18814;10071 -210;'752;Sweden;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18296;13199 -210;'752;Sweden;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15585;11061 -210;'752;Sweden;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7140;1520 -210;'752;Sweden;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6293;1393 -210;'752;Sweden;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11978;31460 -210;'752;Sweden;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8704;16627 -210;'752;Sweden;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2345;1159 -210;'752;Sweden;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3458;1995 -210;'752;Sweden;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10446;4908 -210;'752;Sweden;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14980;6638 -210;'752;Sweden;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1063987;1109926;1042926;1070272;1261280;1366797;1152128 -210;'752;Sweden;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1025250;1047485;1051529;1023701;1157889;1158806;1117355 -210;'752;Sweden;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100938.57;89756;75521;66289;95584;160566;104696 -210;'752;Sweden;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80764.03;88687;123889;84355;85335;79064;71810 -210;'752;Sweden;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61970.5;68059;66027;64443;81729;89426;81281 -210;'752;Sweden;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64522.99;62657;64212;58033;67968;69671;78679 -210;'752;Sweden;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;833248.44;870045;946595;890657;980097;1083592;1066492 -210;'752;Sweden;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;927616.25;948510;941287;906661;1093813;1145114;1175682 -210;'752;Sweden;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20293.4;23295;27621;20899;18882;24484;16765 -210;'752;Sweden;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27596.07;27839;24069;23894;28809;35046;40801 -210;'752;Sweden;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93051.55;102487;118520;100548;114195;117377;105954 -210;'752;Sweden;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98138.42;94474;97836;104292;137537;143719;127414 -210;'752;Sweden;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;197784.77;197596;198980;201135;192680;219531;231804 -210;'752;Sweden;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;378602.26;396497;386305;399402;416710;454396;477795 -210;'752;Sweden;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;237381.99;260240;294788;331981;373134;397660;385688 -210;'752;Sweden;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;202209.5;221125;222054;209858;237310;240427;239866 -210;'752;Sweden;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;284736.72;286427;306686;236094;281206;324540;326281 -210;'752;Sweden;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;221070;208575;211023;169215;273447;271526;289806 -211;'756;Switzerland;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6295995.13;6661179;6281864;6443696;7008301;7162539;7037634 -211;'756;Switzerland;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2161842.64;2149486;1940103;1965282;2163562;1985974;1964987 -211;'756;Switzerland;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;80610;82068;88968;92189;89359;93027;95685;124172;151477;192205;185868;222115;296083;428830;327010;381209;423383;562729;698138;876875;791701;673457;681269;741332;757598;1062445;1341781;1472936;2005412;2490773;2161973;2015013;1947835;2270207;2871505;2518240;2211771;2157322;1621090;1642668;1594616;1637752;2043351;2209418;2242576;2028618;2264339;2459445;1972706;2196438;2249606;1915090;1927431;1971297;1635090;1581086;1619619.66;1711966;1536736;1626593;1773921;1698113;1698113 -211;'756;Switzerland;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;11842;11726;13449;16861;19233;19939;24843;33485;31365;42977;42343;52590;88497;174454;148840;192603;233211;289740;369099;437280;360901;328154;345606;377029;394644;544215;885731;775227;1014804;1326559;1306997;1449762;1255855;1452247;1912101;1798792;1893527;2382950;1504045;1520313;1394296;1391066;1883472;2046652;2019967;2031474;1612031;1788395;1370123;1704298;1794905;1477560;1468972;1481502;1273731;1230870;1253971.94;1213033;1063454;1125643;1197377;1146203;1146203 -211;'756;Switzerland;1861;Roundwood;5516;Production;m3;3690000;4555000;3830000;4000000;3650000;3920000;4665000;3635000;3690000;4190000;4135000;4000000;3900000;4450000;3845000;3510000;4250000;4230000;4000000;4600000;4580000;4240000;4040000;4965000;4186000;4698000;4640000;4565000;4612000;6332000;4607000;4553000;4407000;4679000;4749000;4064000;4486000;4276000;4736000;9238000;5662000;4557000;5120000;5132000;5284639;5701527;5520012;4950358;4701775;4938036;4861007;4658595;4733800;4913390;4551980;4458680;4483970;4975120;4397440;4577330;4769550;4945050;4945050 -211;'756;Switzerland;1861;Roundwood;5616;Import quantity;m3;962000;651500;492700;539700;448800;544000;498000;369800;615000;937800;558400;338200;429400;657400;389700;344600;411903;436200;446800;661800;600000;334000;324000;306000;514000;474000;347000;405000;405000;293762;328872;434569;400711;422000;264000;263000;273700;303000;377000;304130;252230;381143;380000;246357;212696;381143;864173;348745;312735;299029;261027;170590;261055;187950;206405;204301;205948;169028;146456;146456;96918;96918;96918 -211;'756;Switzerland;1861;Roundwood;5622;Import value;1000 USD;23224;16926;15567;17979;16392;17408;16077;15036;19992;26254;18896;16424;24699;35245;20887;23269;27782;37455;39709;62886;46523;25354;23739;21891;29815;35959;32628;33970;38462;29590;30976;36234;32754;34502;43900;33877;36247;33039;37280;29565;19508;21286;21378;22639;19610;26361;73085;36505;32237;33712;34444;22279;30744;27125;24416;22527;24979.69;22495;21031;22262;17397;16655;16655 -211;'756;Switzerland;1861;Roundwood;5916;Export quantity;m3;89700;108600;158300;201600;200700;228900;305100;436200;297600;318800;368300;481700;554200;592000;648000;701700;818226;673200;746300;873700;762000;614000;622000;799000;681000;665000;797000;735000;803000;1128143;1194523;1143003;1074148;1074000;1022000;993000;1160000;1021000;1239000;3754410;3192930;2005013;1784000;1784914;1454807;1703783;2027498;1178902;850622;820302;943768;815839;749997;772535;649341;568053;578108;760797;649317;649317;459650;459650;459650 -211;'756;Switzerland;1861;Roundwood;5922;Export value;1000 USD;1552;1746;2588;3327;3191;3712;5007;6852;4721;5765;7216;10162;16975;27468;30570;33616;43963;63814;56711;77936;61187;43548;37758;42139;35057;45909;60721;47500;62780;105068;99334;105620;93823;96291;111091;96355;94324;116159;98369;161727;130035;99783;106771;125758;117982;157183;162271;136943;96005;88361;118692;91033;84034;87280;65974;55708;56559.71;74131;58966;62415;49021;46925;46925 -211;'756;Switzerland;1862;Roundwood, coniferous;5516;Production;m3;2575000;3415000;2700000;2840000;2550000;2655000;3460000;2635000;2580000;2950000;2900000;2935000;2800000;3140000;2570000;2350000;3000000;2920000;2685000;3115000;3080000;2895000;2815000;3670000;3087000;3511000;3472000;3393000;3435000;5125000;3521000;3363000;3233000;3509000;3516000;2855000;3085000;2844000;3414000;7611000;4475000;3500000;4047000;4046000;4025234;4245213;4117402;3647142;3282452;3428743;3317920;3080184;3068320;3177670;2886230;2811550;2924520;3493520;3014650;3241610;3325630;3345530;3345530 -211;'756;Switzerland;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;134734;101928;83231;83231;65801;65801;65801 -211;'756;Switzerland;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13606.82;11452;9760;10332;10723;10265;10265 -211;'756;Switzerland;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;384193;532527;433417;433417;381759;381759;381759 -211;'756;Switzerland;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37063.36;50511;37533;39728;40814;39070;39070 -211;'756;Switzerland;1863;Roundwood, non-coniferous;5516;Production;m3;1115000;1140000;1130000;1160000;1100000;1265000;1205000;1000000;1110000;1240000;1235000;1065000;1100000;1310000;1275000;1160000;1250000;1310000;1315000;1485000;1500000;1345000;1225000;1295000;1099000;1187000;1168000;1172000;1177000;1207000;1086000;1190000;1174000;1170000;1233000;1209000;1401000;1432000;1322000;1627000;1187000;1057000;1073000;1086000;1259405;1456314;1402610;1303216;1419323;1509293;1543087;1578411;1665480;1735720;1665750;1647130;1559450;1481600;1382790;1335720;1443920;1599520;1599520 -211;'756;Switzerland;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71214;67100;63225;63225;31117;31117;31117 -211;'756;Switzerland;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11372.87;11043;11271;11930;6674;6390;6390 -211;'756;Switzerland;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;193915;228270;215900;215900;77891;77891;77891 -211;'756;Switzerland;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19496.35;23620;21433;22687;8207;7855;7855 -211;'756;Switzerland;1864;Wood fuel;5516;Production;m3;1280000;1350000;1305000;1310000;1150000;1290000;1250000;1040000;800000;820000;850000;735000;690000;850000;770000;690000;680000;700000;780000;930000;950000;950000;870000;870000;840000;894000;884000;893000;813000;879000;786000;845000;836000;858000;833000;853000;940000;800000;980000;1626000;1122000;991000;1107000;1148000;1250818;1417025;1221977;1194891;1414663;1498647;1538915;1673000;1810000;1799000;1734000;1741000;1644750;1735930;1743850;1770350;1805130;1938750;1938750 -211;'756;Switzerland;1864;Wood fuel;5616;Import quantity;m3;91400;75700;51200;69600;69300;79300;71900;38400;67800;75500;69400;33100;48400;72900;74700;71600;98303;108500;17200;29000;30000;15000;12000;14000;23000;26000;10000;9000;8000;5000;5000;10050;7711;4000;4000;5000;5700;5000;5000;5700;6950;6951;8000;6490;6886;6951;6567;8182;12236;11046;14029;13342;14029;15489;16549;14916;17378;15264;13146;13146;16533;16533;16533 -211;'756;Switzerland;1864;Wood fuel;5622;Import value;1000 USD;801;740;495;665;770;1025;1005;427;900;1165;1184;608;1110;2257;2175;1957;2856;4443;504;1154;1157;559;272;508;680;1089;637;540;427;370;306;502;397;278;341;385;383;379;386;347;420;477;566;871;964;590;1085;1575;2217;2305;3162;2665;3128;3500;3325;2943;4163.28;3886;3220;3409;4158;3981;3981 -211;'756;Switzerland;1864;Wood fuel;5916;Export quantity;m3;26500;33600;44200;54000;55500;43600;44600;36500;31700;21600;17900;41000;24300;19700;29100;15200;6226;3900;2600;2600;4000;4000;5000;6000;5000;5000;5000;3000;4000;4000;28000;27838;19148;21000;14000;19000;13000;15000;19000;0;43630;34553;36000;43942;39058;36660;22110;23731;25193;24671;18145;15026;10000;8400;8583;8898;7733;8105;7227;7227;6608;6608;6608 -211;'756;Switzerland;1864;Wood fuel;5922;Export value;1000 USD;244;296;414;516;531;413;446;390;300;214;187;508;360;340;656;371;206;139;111;132;97;120;126;120;101;102;162;105;154;368;1133;975;587;614;457;761;501;577;837;1042;1057;838;1131;1741;1607;1677;1085;1390;1478;1441;1242;959;647;547;519;406;507.72;511;403;427;328;314;314 -211;'756;Switzerland;1627;Wood fuel, coniferous;5516;Production;m3;410000;480000;445000;440000;380000;345000;390000;310000;90000;140000;125000;160000;160000;200000;110000;110000;120000;120000;115000;145000;140000;165000;155000;155000;235000;256000;259000;268000;245000;341000;266000;273000;264000;295000;286000;272000;311000;130000;334000;818000;517000;408000;493000;483000;495837;508625;430147;424263;434079;461259;477521;544000;569000;568000;548000;553000;549570;679490;742810;810100;750380;769330;769330 -211;'756;Switzerland;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2845;2194;2270;2270;4071;4071;4071 -211;'756;Switzerland;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;913.89;716;704;746;985;943;943 -211;'756;Switzerland;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1659;1556;1711;1711;1878;1878;1878 -211;'756;Switzerland;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101.54;102;101;107;109;105;105 -211;'756;Switzerland;1628;Wood fuel, non-coniferous;5516;Production;m3;870000;870000;860000;870000;770000;945000;860000;730000;710000;680000;725000;575000;530000;650000;660000;580000;560000;580000;665000;785000;810000;785000;715000;715000;605000;638000;625000;625000;568000;538000;520000;572000;572000;563000;547000;581000;629000;670000;646000;808000;605000;583000;614000;665000;754981;908400;791830;770628;980584;1037388;1061394;1129000;1241000;1231000;1186000;1188000;1095180;1056440;1001040;960250;1054750;1169420;1169420 -211;'756;Switzerland;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14533;13070;10876;10876;12462;12462;12462 -211;'756;Switzerland;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3249.39;3170;2516;2663;3173;3038;3038 -211;'756;Switzerland;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6074;6549;5516;5516;4730;4730;4730 -211;'756;Switzerland;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;406.17;409;302;320;219;209;209 -211;'756;Switzerland;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;91400;75700;51200;69600;69300;79300;71900;38400;67800;75500;69400;33100;48400;72900;74700;71600;98303;108500;17200;29000;30000;15000;12000;14000;23000;26000;10000;9000;8000;5000;5000;10050;7711;4000;4000;5000;5700;5000;5000;5700;6950;6951;8000;6490;6886;6951;6567;8182;12236;11046;14029;13342;14029;15489;16549;14916;;;;;;; -211;'756;Switzerland;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;801;740;495;665;770;1025;1005;427;900;1165;1184;608;1110;2257;2175;1957;2856;4443;504;1154;1157;559;272;508;680;1089;637;540;427;370;306;502;397;278;341;385;383;379;386;347;420;477;566;871;964;590;1085;1575;2217;2305;3162;2665;3128;3500;3325;2943;;;;;;; -211;'756;Switzerland;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;26500;33600;44200;54000;55500;43600;44600;36500;31700;21600;17900;41000;24300;19700;29100;15200;6226;3900;2600;2600;4000;4000;5000;6000;5000;5000;5000;3000;4000;4000;28000;27838;19148;21000;14000;19000;13000;15000;19000;0;43630;34553;36000;43942;39058;36660;22110;23731;25193;24671;18145;15026;10000;8400;8583;8898;;;;;;; -211;'756;Switzerland;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;244;296;414;516;531;413;446;390;300;214;187;508;360;340;656;371;206;139;111;132;97;120;126;120;101;102;162;105;154;368;1133;975;587;614;457;761;501;577;837;1042;1057;838;1131;1741;1607;1677;1085;1390;1478;1441;1242;959;647;547;519;406;;;;;;; -211;'756;Switzerland;1865;Industrial roundwood;5516;Production;m3;2410000;3205000;2525000;2690000;2500000;2630000;3415000;2595000;2890000;3370000;3285000;3265000;3210000;3600000;3075000;2820000;3570000;3530000;3220000;3670000;3630000;3290000;3170000;4095000;3346000;3804000;3756000;3672000;3799000;5453000;3821000;3708000;3571000;3821000;3916000;3211000;3546000;3476000;3756000;7612000;4540000;3566000;4013000;3984000;4033821;4284502;4298035;3755467;3287112;3439389;3322092;2985595;2923800;3114390;2817980;2717680;2839220;3239190;2653590;2806980;2964420;3006300;3006300 -211;'756;Switzerland;1865;Industrial roundwood;5616;Import quantity;m3;870600;575800;441500;470100;379500;464700;426100;331400;547200;862300;489000;305100;381000;584500;315000;273000;313600;327700;429600;632800;570000;319000;312000;292000;491000;448000;337000;396000;397000;288762;323872;424519;393000;418000;260000;258000;268000;298000;372000;298430;245280;374192;372000;239867;205810;374192;857606;340563;300499;287983;246998;157248;247026;172461;189856;189385;188570;153764;133310;133310;80385;80385;80385 -211;'756;Switzerland;1865;Industrial roundwood;5622;Import value;1000 USD;22423;16186;15072;17314;15622;16383;15072;14609;19092;25089;17712;15816;23589;32988;18712;21312;24926;33012;39205;61732;45366;24795;23467;21383;29135;34870;31991;33430;38035;29220;30670;35732;32357;34224;43559;33492;35864;32660;36894;29218;19088;20809;20812;21768;18646;25771;72000;34930;30020;31407;31282;19614;27616;23625;21091;19584;20816.41;18609;17811;18853;13239;12674;12674 -211;'756;Switzerland;1865;Industrial roundwood;5916;Export quantity;m3;63200;75000;114100;147600;145200;185300;260500;399700;265900;297200;350400;440700;529900;572300;618900;686500;812000;669300;743700;871100;758000;610000;617000;793000;676000;660000;792000;732000;799000;1124143;1166523;1115165;1055000;1053000;1008000;974000;1147000;1006000;1220000;3754410;3149300;1970460;1748000;1740972;1415749;1667123;2005388;1155171;825429;795631;925623;800813;739997;764135;640758;559155;570375;752692;642090;642090;453042;453042;453042 -211;'756;Switzerland;1865;Industrial roundwood;5922;Export value;1000 USD;1308;1450;2174;2811;2660;3299;4561;6462;4421;5551;7029;9654;16615;27128;29914;33245;43757;63675;56600;77804;61090;43428;37632;42019;34956;45807;60559;47395;62626;104700;98201;104645;93236;95677;110634;95594;93823;115582;97532;160685;128978;98945;105640;124017;116375;155506;161186;135553;94527;86920;117450;90074;83387;86733;65455;55302;56051.99;73620;58563;61988;48693;46611;46611 -211;'756;Switzerland;1866;Industrial roundwood, coniferous;5516;Production;m3;2165000;2935000;2255000;2400000;2170000;2310000;3070000;2325000;2490000;2810000;2775000;2775000;2640000;2940000;2460000;2240000;2880000;2800000;2570000;2970000;2940000;2730000;2660000;3515000;2852000;3255000;3213000;3125000;3190000;4784000;3255000;3090000;2969000;3214000;3230000;2583000;2774000;2714000;3080000;6793000;3958000;3092000;3554000;3563000;3529397;3736588;3687255;3222879;2848373;2967484;2840399;2536184;2499320;2609670;2338230;2258550;2374950;2814030;2271840;2431510;2575250;2576200;2576200 -211;'756;Switzerland;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;170738;186359;263313;286000;282000;141000;156000;170000;130000;160000;115780;135670;254100;272000;162068;136925;254100;185741;292297;266181;259304;197013;125619;193425;129490;141886;138328;131889;99734;80961;80961;61730;61730;61730 -211;'756;Switzerland;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12566;10053;12181;10879;11129;9545;7565;8957;6110;6644;3752;4265;7020;8144;6593;6992;8694;14684;24831;23000;25164;20892;12898;19849;15531;14234;12582;12692.93;10736;9056;9586;9738;9322;9322 -211;'756;Switzerland;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;782736;851150;785217;754000;744000;713000;683000;867000;720000;916000;3406740;2905530;1768878;1466000;1521672;1169560;1373013;1026622;776211;575029;527045;674926;615058;565206;561785;440339;379174;382534;530971;431706;431706;379881;379881;379881 -211;'756;Switzerland;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75353;72731;75013;64084;64009;73297;61573;64283;64100;63039;130596;109220;81185;86186;103617;94273;115046;107040;93303;64752;61180;90120;71313;64833;62562;44156;36834;36961.82;50409;37432;39621;40705;38965;38965 -211;'756;Switzerland;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;170738;186359;263313;286000;282000;141000;156000;170000;130000;160000;115780;135670;254100;272000;162068;136925;254100;185741;292297;266181;259304;197013;125619;193425;129490;141886;138328;131889;99734;80961;80961;61730;61730;61730 -211;'756;Switzerland;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12566;10053;12181;10879;11129;9545;7565;8957;6110;6644;3752;4265;7020;8144;6593;6992;8694;14684;24831;23000;25164;20892;12898;19849;15531;14234;12582;12692.93;10736;9056;9586;9738;9322;9322 -211;'756;Switzerland;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;782736;851150;785217;754000;744000;713000;683000;867000;720000;916000;3406740;2905530;1768878;1466000;1521672;1169560;1373013;1026622;776211;575029;527045;674926;615058;565206;561785;440339;379174;382534;530971;431706;431706;379881;379881;379881 -211;'756;Switzerland;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75353;72731;75013;64084;64009;73297;61573;64283;64100;63039;130596;109220;81185;86186;103617;94273;115046;107040;93303;64752;61180;90120;71313;64833;62562;44156;36834;36961.82;50409;37432;39621;40705;38965;38965 -211;'756;Switzerland;1867;Industrial roundwood, non-coniferous;5516;Production;m3;245000;270000;270000;290000;330000;320000;345000;270000;400000;560000;510000;490000;570000;660000;615000;580000;690000;730000;650000;700000;690000;560000;510000;580000;494000;549000;543000;547000;609000;669000;566000;618000;602000;607000;686000;628000;772000;762000;676000;819000;582000;474000;459000;421000;504424;547914;610780;532588;438739;471905;481693;449411;424480;504720;479750;459130;464270;425160;381750;375470;389170;430100;430100 -211;'756;Switzerland;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118024;137513;161206;107000;136000;119000;102000;98000;168000;212000;182650;109610;120092;100000;77799;68885;120092;671865;48266;34318;28679;49985;31629;53601;42971;47970;51057;56681;54030;52349;52349;18655;18655;18655 -211;'756;Switzerland;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16654;20617;23551;21478;23095;34014;25927;26907;26550;30250;25466;14823;13789;12668;15175;11654;17077;57316;10099;7020;6243;10390;6716;7767;8094;6857;7002;8123.48;7873;8755;9267;3501;3352;3352 -211;'756;Switzerland;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;341407;315373;329948;301000;309000;295000;291000;280000;286000;304000;347670;243770;201582;282000;219300;246189;294110;978766;378960;250400;268586;250697;185755;174791;202350;200419;179981;187841;221721;210384;210384;73161;73161;73161 -211;'756;Switzerland;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29347;25470;29632;29152;31668;37337;34021;29540;51482;34493;30089;19758;17760;19454;20400;22102;40460;54146;42250;29775;25740;27330;18761;18554;24171;21299;18468;19090.17;23211;21131;22367;7988;7646;7646 -211;'756;Switzerland;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;973;8055;8344;6000;12000;8000;10000;7000;8000;10000;9740;4370;4221;1000;2030;2460;4221;3072;2312;1289;795;2244;768;399;1905;215;114;210;65;101;101;90;90;90 -211;'756;Switzerland;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88;2991;3201;1821;4443;5220;3836;2700;2350;3384;2984;1446;1535;566;995;1206;1901;1752;1575;924;480;1581;533;216;547;208;101;101.54;102;101;107;109;105;105 -211;'756;Switzerland;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;220;33;0;0;9120;4110;0;263;0;552;2;125;171;75;224;74;23;0;0;0;209;209;209 -211;'756;Switzerland;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;6;12;2;0;0;402;160;0;113;0;96;0;15;0;0;0;0;0;0;0;0;11;10;10 -211;'756;Switzerland;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117051;129458;152862;101000;124000;111000;92000;91000;160000;202000;172910;105240;115871;99000;75769;66425;115871;668793;45954;33029;27884;47741;30861;53202;41066;47755;50943;56471;53965;52248;52248;18565;18565;18565 -211;'756;Switzerland;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16566;17626;20350;19657;18652;28794;22091;24207;24200;26866;22482;13377;12254;12102;14180;10448;15176;55564;8524;6096;5763;8809;6183;7551;7547;6649;6901;8021.93;7771;8654;9160;3392;3247;3247 -211;'756;Switzerland;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;341407;315373;329948;301000;309000;295000;291000;280000;286000;304000;347670;243550;201549;282000;219300;237069;290000;978766;378697;250400;268034;250695;185630;174620;202275;200195;179907;187818;221721;210384;210384;72952;72952;72952 -211;'756;Switzerland;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29347;25470;29632;29152;31668;37337;34021;29540;51482;34489;30083;19746;17758;19454;20400;21700;40300;54146;42137;29775;25644;27330;18746;18554;24171;21299;18468;19090.17;23211;21131;22367;7977;7636;7636 -211;'756;Switzerland;1868;Sawlogs and veneer logs;5516;Production;m3;1660000;2120000;1875000;1850000;1750000;1950000;2485000;1835000;2020000;2360000;2335000;2355000;2350000;2640000;2160000;1950000;2630000;2610000;2350000;2740000;2750000;2470000;2370000;3045000;2610000;2976000;2923000;2793000;2887000;4488000;2987000;2917000;2907000;3234000;3304000;2663000;2992000;2992000;3294000;6801000;3921000;3046000;3500000;3424000;3421168;3629925;3648283;3203345;2846189;2944272;2822254;2467987;2471440;2577390;2312980;2214930;2366320;2695780;2194580;2307860;2449910;2554980;2554980 -211;'756;Switzerland;1868;Sawlogs and veneer logs;5616;Import quantity;m3;459800;356300;325600;343300;303900;311500;280200;286100;338100;321000;227300;233500;252800;258900;174700;180500;201300;207400;206800;238100;229000;164000;164000;158000;193000;187000;154000;172000;199000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -211;'756;Switzerland;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;14641;12687;13251;15245;14346;14016;12728;13852;16090;15746;12542;14263;20863;24104;14643;18677;21338;28857;32150;39118;29129;18444;18463;17378;20101;24481;23798;18480;29111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -211;'756;Switzerland;1868;Sawlogs and veneer logs;5916;Export quantity;m3;60500;69100;109100;137600;136500;177400;248300;314400;230800;267400;339200;418100;508100;560900;587800;650300;792400;660800;722500;852700;753000;606000;611000;782000;671000;655000;781000;721000;794000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -211;'756;Switzerland;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;1276;1385;2124;2687;2543;3206;4422;5520;4008;5213;6886;9333;16324;26898;29382;32498;43286;63517;55985;76475;60893;43248;37422;41656;34796;45637;59909;46745;62307;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -211;'756;Switzerland;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;1500000;1970000;1665000;1620000;1500000;1740000;2255000;1665000;1790000;2085000;2060000;2100000;2015000;2225000;1810000;1625000;2225000;2155000;1945000;2310000;2280000;2090000;2040000;2680000;2268000;2593000;2564000;2449000;2501000;4031000;2634000;2520000;2495000;2802000;2820000;2215000;2392000;2392000;2806000;6225000;3532000;2746000;3206000;3158000;3117006;3289291;3289815;2886116;2573903;2678008;2562932;2241184;2261510;2326670;2077230;1987550;2120520;2463860;1978120;2100980;2223910;2289640;2289640 -211;'756;Switzerland;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;166600;144800;90600;85600;72100;82700;64000;62600;95100;86700;44400;37900;40100;55200;43600;41000;39100;54200;53400;61600;64000;43000;49000;37000;63000;61000;43000;67000;82000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -211;'756;Switzerland;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;3830;3494;2288;2240;1881;2019;1472;1380;2350;2235;1265;1232;1557;2698;2310;2224;2378;3543;3844;4901;4625;3468;3604;2634;3530;4877;4217;6769;6980;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -211;'756;Switzerland;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;12100;22000;66900;94800;89300;115200;174900;252500;160400;167400;212400;257500;311500;317400;343900;399200;474700;344000;414000;499300;373000;288000;346000;500000;426000;408000;536000;528000;538000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -211;'756;Switzerland;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;193;382;1205;1778;1534;1936;2956;4283;2623;3031;4112;5721;10489;16120;18217;20780;26578;41157;32409;45280;30360;20369;19898;25387;21059;26602;37197;29217;40341;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -211;'756;Switzerland;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;160000;150000;210000;230000;250000;210000;230000;170000;230000;275000;275000;255000;335000;415000;350000;325000;405000;455000;405000;430000;470000;380000;330000;365000;342000;383000;359000;344000;386000;457000;353000;397000;412000;432000;484000;448000;600000;600000;488000;576000;389000;300000;294000;266000;304162;340634;358468;317229;272286;266264;259322;226803;209930;250720;235750;227380;245800;231920;216460;206880;226000;265340;265340 -211;'756;Switzerland;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;293200;211500;235000;257700;231800;228800;216200;223500;243000;234300;182900;195600;212700;203700;131100;139500;162200;153200;153400;176500;165000;121000;115000;121000;130000;126000;111000;105000;117000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -211;'756;Switzerland;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;10811;9193;10963;13005;12465;11997;11256;12472;13740;13511;11277;13031;19306;21406;12333;16453;18960;25314;28306;34217;24504;14976;14859;14744;16571;19604;19581;11711;22131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -211;'756;Switzerland;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;48400;47100;42200;42800;47200;62200;73400;61900;70400;100000;126800;160600;196600;243500;243900;251100;317700;316800;308500;353400;380000;318000;265000;282000;245000;247000;245000;193000;256000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -211;'756;Switzerland;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;1083;1003;919;909;1009;1270;1466;1237;1385;2182;2774;3612;5835;10778;11165;11718;16708;22360;23576;31195;30533;22879;17524;16269;13737;19035;22712;17528;21966;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -211;'756;Switzerland;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;484000;462000;811000;619000;520000;513000;560000;583926;634362;628462;534505;425220;478052;484199;503000;443040;524000;488000;487000;460300;534150;455830;496490;498550;440220;440220 -211;'756;Switzerland;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;322000;274000;568000;426000;346000;348000;405000;390082;431808;382350;323294;263285;276846;265980;284000;231300;274000;250000;260000;247120;344870;291430;328950;338350;278600;278600 -211;'756;Switzerland;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;162000;188000;243000;193000;174000;165000;155000;193844;202554;246112;211211;161935;201206;218219;219000;211740;250000;238000;227000;213180;189280;164400;167540;160200;161620;161620 -211;'756;Switzerland;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5616;Import quantity;m3;410800;219500;115900;126800;75600;153200;145900;45300;209100;541300;261700;71600;128200;325600;140300;92500;112300;120300;222800;394700;341000;155000;148000;134000;298000;261000;183000;224000;198000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -211;'756;Switzerland;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5622;Import value;1000 USD;7782;3499;1821;2069;1276;2367;2344;757;3002;9343;5170;1553;2726;8884;4069;2635;3588;4155;7055;22614;16237;6351;5004;4005;9034;10389;8193;14950;8924;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -211;'756;Switzerland;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5916;Export quantity;m3;2700;5900;5000;10000;8700;7900;12200;85300;35100;29800;11200;22600;21800;11400;31100;36200;19600;8500;21200;18400;5000;4000;6000;11000;5000;5000;11000;11000;5000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -211;'756;Switzerland;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5922;Export value;1000 USD;32;65;50;124;117;93;139;942;413;338;143;321;291;230;532;747;471;158;615;1329;197;180;210;363;160;170;650;650;319;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -211;'756;Switzerland;1870;Pulpwood and particles (1961-1997);5516;Production;m3;465000;710000;590000;745000;670000;600000;830000;670000;790000;930000;870000;830000;780000;880000;840000;800000;870000;850000;800000;850000;800000;750000;730000;980000;666000;758000;763000;809000;842000;895000;764000;721000;594000;517000;542000;478000;484000;;;;;;;;;;;;;;;;;;;;;;;;;; -211;'756;Switzerland;1870;Pulpwood and particles (1961-1997);5616;Import quantity;m3;410800;219500;115900;126800;75600;153200;145900;45300;209100;541300;261700;71600;128200;325600;140300;92500;112300;120300;222800;394700;341000;155000;148000;134000;298000;261000;183000;224000;198000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -211;'756;Switzerland;1870;Pulpwood and particles (1961-1997);5622;Import value;1000 USD;7782;3499;1821;2069;1276;2367;2344;757;3002;9343;5170;1553;2726;8884;4069;2635;3588;4155;7055;22614;16237;6351;5004;4005;9034;10389;8193;14950;8924;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -211;'756;Switzerland;1870;Pulpwood and particles (1961-1997);5916;Export quantity;m3;2700;5900;5000;10000;8700;7900;12200;85300;35100;29800;11200;22600;21800;11400;31100;36200;19600;8500;21200;18400;5000;4000;6000;11000;5000;5000;11000;11000;5000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -211;'756;Switzerland;1870;Pulpwood and particles (1961-1997);5922;Export value;1000 USD;32;65;50;124;117;93;139;942;413;338;143;321;291;230;532;747;471;158;615;1329;197;180;210;363;160;170;650;650;319;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -211;'756;Switzerland;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;430000;615000;540000;690000;600000;500000;720000;575000;625000;650000;640000;600000;550000;640000;580000;550000;590000;580000;560000;590000;590000;580000;560000;775000;524000;602000;589000;616000;629000;693000;561000;510000;414000;352000;350000;308000;322000;;;;;;;;;;;;;;;;;;;;;;;;;; -211;'756;Switzerland;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;35000;95000;50000;55000;70000;100000;110000;95000;165000;280000;230000;230000;230000;240000;260000;250000;280000;270000;240000;260000;210000;170000;170000;205000;142000;156000;174000;193000;213000;202000;203000;211000;180000;165000;192000;170000;162000;;;;;;;;;;;;;;;;;;;;;;;;;; -211;'756;Switzerland;1871;Other industrial roundwood;5516;Production;m3;285000;375000;60000;95000;80000;80000;100000;90000;80000;80000;80000;80000;80000;80000;75000;70000;70000;70000;70000;80000;80000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;0;0;0;0;0;0;0;28727;20215;21290;17617;15703;17065;15639;14608;9320;13000;17000;15750;12600;9260;3180;2630;15960;11100;11100 -211;'756;Switzerland;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;235000;350000;50000;90000;70000;70000;95000;85000;75000;75000;75000;75000;75000;75000;70000;65000;65000;65000;65000;70000;70000;60000;60000;60000;60000;60000;60000;60000;60000;60000;60000;60000;60000;60000;60000;60000;60000;0;0;0;0;0;0;0;22309;15489;15090;13469;11185;12630;11487;11000;6510;9000;11000;11000;7310;5300;2290;1580;12990;7960;7960 -211;'756;Switzerland;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;50000;25000;10000;5000;10000;10000;5000;5000;5000;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;0;0;0;0;0;0;0;6418;4726;6200;4148;4518;4435;4152;3608;2810;4000;6000;4750;5290;3960;890;1050;2970;3140;3140 -211;'756;Switzerland;1630;Wood charcoal;5510;Production;t;58;57;57;56;55;49;43;37;31;25;24;23;23;22;21;21;22;22;23;23;23;23;23;23;23;27;31;35;39;42;56;42;52;56;48;58;82;60;64;74;62;60;74;80;102;100;105;107;106;96;99;110;83;130;112;128;133;144;172;172;124;124;124 -211;'756;Switzerland;1630;Wood charcoal;5610;Import quantity;t;8900;6200;5200;5900;4100;3200;3100;4300;4800;4400;6600;4800;6200;8500;6200;7700;7942;5100;7700;6900;7000;7000;7000;8000;8000;9000;9000;10000;12000;10823;10886;11200;11183;10426;10314;10377;9619;10660;9990;10351;10463;11636;10461;9956;10826;10514;11785;12966;12141;12225;11946;12149;12021;12312;12331;11738;12978;12408;11348;11348;12724;12724;12724 -211;'756;Switzerland;1630;Wood charcoal;5622;Import value;1000 USD;541;395;349;431;318;257;259;346;394;459;1011;769;1029;1798;1918;2170;2221;1942;2989;3163;3076;2894;2805;2607;2573;4237;5002;5570;5811;6538;6509;7134;6151;5843;6333;5668;4527;5086;4427;4121;4092;4747;5701;5819;6543;6249;7828;9285;9291;9220;9841;8773;9061;9187;8000;8016;9545.08;9918;9056;9586;11708;11208;11208 -211;'756;Switzerland;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;302;52;5000;10000;15000;15000;18333;0;10;100;327;0;48;57;60;534;44;115;69;39;115;61;19;47;58;38;90;41;41;45;45;45 -211;'756;Switzerland;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;135;24;2199;5278;14579;14579;46;32;6;21;27;0;0;0;18;167;9;92;96;64;107;108;0;0;101;203.09;204;101;107;109;105;105 -211;'756;Switzerland;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;855000;913000;1000000;1000000;826000;800000;890000;940000;940000;1007362;972341;947000;946000;846467;728000;708418;729379;701000;730554;711135;746700;742349;772043;772043;772043;772043 -211;'756;Switzerland;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;543000;557000;500300;535100;625063;647000;744522;735558;625063;831691;668976;586676;646437;556880;482422;615141;634754;671241;585294;672850;605507;516790;516790;772107;772107;772107 -211;'756;Switzerland;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14211;15383;11160;10964;13709;16966;19529;18565;16978;37210;34189;31591;35536;19285;15648;22017;23402;20671;17402;31418.05;32885;28154;29800;33891;32443;32443 -211;'756;Switzerland;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;301000;176000;423530;484510;485503;502000;654200;717642;803206;878571;817370;1122460;1184799;1126897;43163;60924;70532;52545;54996;53712;54369;56745;45081;58030;57645;57645 -211;'756;Switzerland;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5008;7615;6347;5784;6851;9614;13931;15350;16367;18354;13064;22353;31119;18278;1969;2646;3176;1905;1588;1379.52;1831;1585;1678;2063;1975;1975 -211;'756;Switzerland;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;708418;729379;701000;730554;711135;746700;742349;772043;772043;772043;772043 -211;'756;Switzerland;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;10500;12200;11400;19600;71500;84000;74000;76000;85000;95000;155000;140000;123000;121000;132000;148000;162168;181863;210000;255000;265000;227000;257000;293000;221010;251520;342359;412000;492777;466614;342359;600238;469412;392026;426770;446806;391430;517789;548908;573188;492000;480942;398945;372694;372694;540122;540122;540122 -211;'756;Switzerland;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;234;298;224;563;2944;2949;2508;1747;1637;2091;4964;5037;4300;3600;4515;4666;4929;5280;6376;9402;8100;6241;6240;7861;4605;4654;5906;7804;9827;8519;7314;19022;14454;7667;9604;14455;12472;17799;19468;16623;13597;13200.65;12474;11974;12674;13349;12779;12779 -211;'756;Switzerland;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;7100;1700;3300;4900;800;3000;1000;2000;2000;8000;6000;10000;7000;7000;6000;8000;9457;16960;30000;57000;100000;124000;28000;12000;3790;4880;6029;28000;145532;124620;87511;125733;131585;402325;343904;179748;21800;26400;44600;23300;28117;24620;46045;31371;19707;9000;8615;8615 -211;'756;Switzerland;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;180;62;110;120;26;105;24;24;24;102;98;183;196;254;207;225;285;530;998;2103;2853;3208;668;270;78;63;119;566;3980;3295;2076;2920;2872;6558;6051;2710;1066;1294;2187;1143;812;710.8;1329;906;959;438;419;419 -211;'756;Switzerland;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;879000;821000;782000;855000;913000;1000000;1000000;826000;800000;890000;940000;940000;1007362;972341;947000;946000;846467;728000;0;0;0;0;0;0;0;0;0;0;0 -211;'756;Switzerland;1620;Wood residues;5616;Import quantity;m3;;;;35100;36300;50000;55500;53800;67500;120200;141400;190500;230800;239000;285500;357900;238500;307300;345000;391600;402000;362000;381000;382000;354000;386000;393000;372000;364000;341000;345000;427086;429484;452000;353000;338000;302000;286000;264000;279290;283580;282704;235000;251745;268944;282704;231453;199564;194650;219667;110074;90992;97352;85846;98053;93294;191908;206562;144096;144096;231985;231985;231985 -211;'756;Switzerland;1620;Wood residues;5622;Import value;1000 USD;;;;206;209;318;329;280;414;818;1080;1531;2339;3242;4525;5334;5191;5918;7545;9560;8543;7502;6945;6058;5686;8534;10628;10154;9041;10317;10059;11935;10921;11547;10551;9486;7971;7971;7522;6555;6310;7803;9162;9702;10046;9664;18188;19735;23924;25932;4830;3176;4218;3934;4048;3805;18217.4;20411;16180;17126;20542;19664;19664 -211;'756;Switzerland;1620;Wood residues;5916;Export quantity;m3;;;;79300;64500;64900;85900;103600;112600;101600;145900;226800;233500;212000;186000;153800;91900;40700;50900;46600;27000;14000;9000;11000;15000;22000;14000;22000;22000;26000;62000;71492;74417;104000;114000;82000;102000;273000;164000;419740;479630;479474;474000;508668;593022;715695;752838;685785;720135;840895;947149;21363;34524;25932;29245;26879;29092;8324;25374;25374;49030;49030;49030 -211;'756;Switzerland;1620;Wood residues;5922;Export value;1000 USD;;;;774;601;623;907;1025;1157;1204;1869;2636;2982;4743;5324;4451;2490;928;1770;2010;939;318;166;276;401;848;650;738;682;1030;2252;3448;3844;5441;6047;4942;4335;4340;7345;6269;5721;6732;9048;9951;12055;14291;15434;10192;15795;25068;15568;903;1352;989;762;776;668.71;502;679;719;1625;1556;1556 -211;'756;Switzerland;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;538200;447800;501400;501400;625800;625800;625800 -211;'756;Switzerland;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1339;879;1231;1231;2423;2423;2423 -211;'756;Switzerland;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24.98;66;88;93;284;272;272 -211;'756;Switzerland;1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;338711;382929;332987;332987;267741;267741;267741 -211;'756;Switzerland;1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3095.07;3913;3581;3790;2540;2431;2431 -211;'756;Switzerland;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;150000;123000;160000;160000;183000;210000;227000;257000;270000;324000;324000;324000 -211;'756;Switzerland;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40769;89585;62843;89554;70367;95446;93297;79047;79047;83268;83268;83268 -211;'756;Switzerland;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11418;26439;18697;20498;16288;21996.43;22965;19260;20386;20524;19647;19647 -211;'756;Switzerland;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7574;3684;3477;1606;794;835;1180;2345;2345;1323;1323;1323 -211;'756;Switzerland;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1683;794;917;471;63;225.42;302;482;510;302;289;289 -211;'756;Switzerland;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;150000;123000;160000;160000;183000;210000;227000;257000;270000;324000;324000;324000 -211;'756;Switzerland;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36087;84367;58511;85211;67012;91010;88179;75606;75606;79441;79441;79441 -211;'756;Switzerland;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10092;24921;17455;19485;15348;20630.8;21486;18363;19437;19172;18353;18353 -211;'756;Switzerland;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6555;2690;2586;866;164;131;285;363;363;33;33;33 -211;'756;Switzerland;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1377;476;674;264;45;29.37;91;101;107;14;13;13 -211;'756;Switzerland;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -211;'756;Switzerland;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4682;5218;4332;4343;3355;4436;5118;3441;3441;3827;3827;3827 -211;'756;Switzerland;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1326;1518;1242;1013;940;1365.64;1479;897;949;1352;1294;1294 -211;'756;Switzerland;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1019;994;891;740;630;704;895;1982;1982;1290;1290;1290 -211;'756;Switzerland;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;306;318;243;207;18;196.05;211;381;403;288;276;276 -211;'756;Switzerland;1872;Sawnwood;5516;Production;m3;1181000;1250000;1380000;1355000;1055000;1130000;1180000;1320000;1350000;1450000;1650000;1685000;1660000;1640000;1305000;1345000;1670000;1540000;1600000;1745000;1785000;1850000;1760000;1515000;1689000;1719000;1650000;1693000;1700000;1985000;1727000;1525000;1410000;1320000;1479000;1355000;1280000;1400000;1525000;1625000;1400000;1392000;1345000;1505000;1591000;1668000;1541451;1540140;1481278;1456513;1313450;1135279;1044000;1140474;1164000;1153122;1085235;1123944;1125811;1168196;1248288;1248288;1248288 -211;'756;Switzerland;1872;Sawnwood;5616;Import quantity;m3;457600;588700;493400;477900;383300;385600;354200;362000;399200;439200;415400;436500;423300;387500;215700;230600;285500;440300;476900;544200;569000;549000;537000;613000;642000;698000;719000;688000;793000;701000;493000;443000;459000;551000;583000;496000;437000;529000;448000;453380;465230;409324;371000;382737;399515;409324;425349;450380;436169;481926;474083;447533;427494;414468;394518;403875;388226;388125;363988;352004;349515;349515;349515 -211;'756;Switzerland;1872;Sawnwood;5622;Import value;1000 USD;22571;29165;25692;25668;21829;21799;19698;20771;23943;28523;28842;34495;47973;57747;32723;36836;51715;96690;122047;159612;140542;119384;112358;118502;121270;173916;216358;202338;241703;290739;200952;186765;186700;230718;271440;220905;186828;187300;144344;135299;153453;142906;143191;163822;175365;176979;223341;251280;230650;259800;279168;239734;236786;236793;189610;197869;195268.08;202045;183840;194589;240398;230124;230124 -211;'756;Switzerland;1872;Sawnwood;5916;Export quantity;m3;7500;5200;7700;10600;14800;22000;54400;138800;48100;44600;47100;61200;131200;145700;86300;171100;168100;92800;125100;150000;90000;91000;93000;113000;104300;95000;98200;104100;111100;120000;145000;173634;159000;150000;131000;127000;192000;175000;172000;192770;162480;196645;199000;197738;220012;252081;346917;446142;468522;465996;219511;205890;194238;199259;191612;207778;223224;218469;223125;223125;238420;238420;238420 -211;'756;Switzerland;1872;Sawnwood;5922;Export value;1000 USD;324;285;311;420;620;876;1915;4636;1662;1541;1924;2839;10256;14520;8726;18164;20372;11481;21755;27105;14602;13334;12672;13339;11943;15384;18317;19569;20789;26465;33504;41581;36416;38210;39348;34612;42846;42119;37119;34918;28354;31834;37551;41421;45248;56046;85516;109425;94033;104785;58950;50207;49083;50640;41662;42212;48537.77;52249;53230;56343;71671;68608;68608 -211;'756;Switzerland;1632;Sawnwood, coniferous;5516;Production;m3;1055500;1127500;1253000;1228000;938000;1013000;1063000;1165500;1193000;1283000;1457500;1492500;1467500;1455000;1157500;1192500;1480000;1370000;1420000;1552500;1585000;1640000;1557500;1317500;1495500;1487500;1455000;1482500;1492500;1782500;1554500;1412500;1300000;1200000;1342000;1240000;1100000;1200000;1300000;1425000;1250000;1276000;1240000;1410000;1500000;1580000;1463085;1447545;1413174;1397316;1250759;1079421;986000;1067861;1089000;1074324;1037286;1078044;1077319;1113548;1195911;1195911;1195911 -211;'756;Switzerland;1632;Sawnwood, coniferous;5616;Import quantity;m3;373200;498300;397850;389450;303350;291950;271800;276650;319950;349950;337450;353050;331050;299150;157550;174950;214850;352300;384400;441150;472500;468500;456000;507000;531500;583000;601500;559500;664000;571000;398000;363000;371000;458000;484000;424000;368000;420000;363000;367730;398120;352451;301000;314881;334400;352451;351009;377793;380692;418284;409202;385110;370401;361597;344813;348321;341038;332625;306488;306488;299939;299939;299939 -211;'756;Switzerland;1632;Sawnwood, coniferous;5622;Import value;1000 USD;17180;23658;19588;19560;15927;15425;14124;14540;17732;21288;22203;25525;33661;42775;22132;25805;35138;70257;90732;121669;109893;95569;88752;91622;92329;133016;164959;150832;198122;223899;148243;137212;132825;171528;196786;163287;134505;135000;98781;90597;111607;105339;96592;106229;115892;130455;148505;167983;164697;187190;195711;171086;170227;169966;132987;133841;136474.41;142740;123566;130791;167633;160469;160469 -211;'756;Switzerland;1632;Sawnwood, coniferous;5916;Export quantity;m3;1700;750;800;2200;3000;3600;38600;122900;22950;19350;18450;24800;78850;90400;40350;94800;73500;24300;53750;67100;34000;32500;39000;55500;44150;38000;37100;47050;50050;62000;84000;113634;94000;77000;70000;74000;134000;119000;112000;133650;121020;162606;168000;166858;188764;220717;315690;421797;447850;444584;203027;190819;176523;179628;176419;190422;197998;197854;200703;200703;214639;214639;214639 -211;'756;Switzerland;1632;Sawnwood, coniferous;5922;Export value;1000 USD;59;29;34;78;150;167;1362;4057;757;694;807;1187;6489;9362;4056;9565;8279;3711;8163;11424;5091;4630;4876;5728;4417;5321;6014;7636;9610;15265;17745;24666;19887;17912;17396;15989;23182;23160;19928;20843;17975;22961;28050;31719;35041;45747;73502;98492;85720;97005;51158;44024;42503;43968;35948;36530;39500.41;44376;42765;45266;63136;60438;60438 -211;'756;Switzerland;1633;Sawnwood, non-coniferous;5516;Production;m3;125500;122500;127000;127000;117000;117000;117000;154500;157000;167000;192500;192500;192500;185000;147500;152500;190000;170000;180000;192500;200000;210000;202500;197500;193500;231500;195000;210500;207500;202500;172500;112500;110000;120000;137000;115000;180000;200000;225000;200000;150000;116000;105000;95000;91000;88000;78366;92595;68104;59197;62691;55858;58000;72613;75000;78798;47949;45900;48492;54648;52377;52377;52377 -211;'756;Switzerland;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;84400;90400;95550;88450;79950;93650;82400;85350;79250;89250;77950;83450;92250;88350;58150;55650;70650;88000;92500;103050;96500;80500;81000;106000;110500;115000;117500;128500;129000;130000;95000;80000;88000;93000;99000;72000;69000;109000;85000;85650;67110;56873;70000;67856;65115;56873;74340;72587;55477;63642;64881;62423;57093;52871;49705;55554;47188;55500;57500;45516;49576;49576;49576 -211;'756;Switzerland;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;5391;5507;6104;6108;5902;6374;5574;6231;6211;7235;6639;8970;14312;14972;10591;11031;16577;26433;31315;37943;30649;23815;23606;26880;28941;40900;51399;51506;43581;66840;52709;49553;53875;59190;74654;57618;52323;52300;45563;44702;41846;37567;46599;57593;59473;46524;74836;83297;65953;72610;83457;68648;66559;66827;56623;64028;58793.66;59305;60274;63798;72765;69655;69655 -211;'756;Switzerland;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;5800;4450;6900;8400;11800;18400;15800;15900;25150;25250;28650;36400;52350;55300;45950;76300;94600;68500;71350;82900;56000;58500;54000;57500;60150;57000;61100;57050;61050;58000;61000;60000;65000;73000;61000;53000;58000;56000;60000;59120;41460;34039;31000;30880;31248;31364;31227;24345;20672;21412;16484;15071;17715;19631;15193;17356;25226;20615;22422;22422;23781;23781;23781 -211;'756;Switzerland;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;265;256;277;342;470;709;553;579;905;847;1117;1652;3767;5158;4670;8599;12093;7770;13592;15681;9511;8704;7796;7611;7526;10063;12303;11933;11179;11200;15759;16915;16529;20298;21952;18623;19664;18959;17191;14075;10379;8873;9501;9702;10207;10299;12014;10933;8313;7780;7792;6183;6580;6672;5714;5682;9037.37;7873;10465;11077;8535;8170;8170 -211;'756;Switzerland;1634;Veneer sheets;5516;Production;m3;19000;19000;21000;21000;25000;24000;22000;19000;20500;21500;19300;16500;18300;19600;16900;17000;20000;20000;20000;20000;20000;20000;20000;20000;24000;26000;24000;24000;24000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;15000;10000;10000;10000;4500;6000;5000;5000;5000;5000;5000;1000;370;550;680;500;320;200;240;362;371;371 -211;'756;Switzerland;1634;Veneer sheets;5616;Import quantity;m3;4500;4400;4600;4800;5000;4500;4700;4500;4200;4600;4100;5300;6100;6300;3900;6300;8200;9600;8200;9500;10000;12000;11000;15000;15000;15000;13000;14000;17000;15000;11000;7609;6167;5000;6000;4000;4000;5000;4000;4460;5250;4543;5000;5622;5243;4543;4954;5122;4763;4277;4729;4578;4216;4831;5184;5073;4826;4637;5105;5105;4339;4339;4339 -211;'756;Switzerland;1634;Veneer sheets;5622;Import value;1000 USD;4637;5051;5231;5873;5902;5305;5194;5114;5783;5443;5156;6917;8817;8472;5369;7034;10461;14384;16746;18505;16586;15202;13518;16788;16948;21240;24359;26961;28613;31677;25361;20239;18760;18386;25472;19292;16970;17000;18167;15816;16004;13692;16513;19405;20173;16957;24111;26963;21061;18152;19989;17695;18339;20125;17455;17047;19597.89;20450;20225;21408;21884;20949;20949 -211;'756;Switzerland;1634;Veneer sheets;5916;Export quantity;m3;4200;3400;3300;4700;5600;6200;6700;6800;7800;6400;5900;5700;5900;4300;4600;5900;7100;6000;6300;6100;6000;5000;6000;6000;6000;5000;6000;7000;8000;9000;8000;9350;10708;8000;8000;7000;10000;13000;12000;12990;10080;8527;8000;6741;5840;5811;4845;3426;2395;3239;3310;3123;2726;2920;2267;1937;2119;2074;858;858;1011;1011;1011 -211;'756;Switzerland;1634;Veneer sheets;5922;Export value;1000 USD;4770;3993;3859;4856;6224;6821;7550;7822;8151;6850;7350;7374;9175;8540;8728;10811;13604;15468;18228;18574;14802;11549;13190;13329;13451;16632;16794;19541;21152;26916;23851;28394;28224;27153;41379;35360;39620;39600;43312;39392;25919;22030;21151;23137;20735;20359;18772;14176;9607;12774;13778;10873;8738;9953;8312;6291;6904.96;6646;4226;4473;4815;4609;4609 -211;'756;Switzerland;1873;Wood-based panels;5516;Production;m3;146900;155400;188300;221300;232600;276900;301000;321200;367600;438300;445400;474100;501000;521200;480000;590000;656000;642000;730000;736000;683000;584000;597000;620000;614000;640000;643000;685000;894000;827000;780500;849000;847400;767200;673700;673000;648000;671000;681000;870000;902000;881000;850000;887000;955000;959400;1080400;972456;1044676;1089624;1082582;956066;915619;834501;819373;769298;778427;783076;580836;565158;567088;505781;505781 -211;'756;Switzerland;1873;Wood-based panels;5616;Import quantity;m3;40600;53300;47900;47300;46700;54635;70625;80530;104898;124183;137957;180947;213526;147378;79046;91600;110900;133100;165800;190900;202000;210000;230000;262000;276000;274500;308000;342000;369000;368000;369000;324270;359663;468000;502000;475000;511000;540000;538000;512450;481900;486093;566000;580682;563314;486496;623379;582748;468611;557975;520797;545539;559183;655037;662090;683667;678433;645792;620627;620627;747652;747652;747652 -211;'756;Switzerland;1873;Wood-based panels;5622;Import value;1000 USD;7024;8178;8159;8695;8701;9622;10709;11440;14921;20324;25026;34275;46002;39679;22005;29434;36548;53750;73958;97060;82389;74173;72739;76647;77937;116535;156053;178817;190642;337797;201175;187899;182858;236320;287957;247948;240449;252449;234826;240481;227252;230050;283216;326523;343298;284901;394828;414351;280420;306958;348056;336275;359440;453491;376776;379664;400634.65;424047;389414;412185;543932;520687;520687 -211;'756;Switzerland;1873;Wood-based panels;5916;Export quantity;m3;1700;1900;1800;4900;6800;4148;9190;15422;25233;32548;35943;26744;19288;43013;94823;159000;215100;211600;311100;271000;224000;204000;231000;269000;304000;326000;359000;435000;412000;436000;439000;512796;521809;485000;429000;460000;474000;500000;383000;661140;666500;656559;793000;871011;827161;791447;774023;563476;725804;715239;674126;684324;644223;613899;597095;599571;567351;544286;502688;502688;452851;452851;452851 -211;'756;Switzerland;1873;Wood-based panels;5922;Export value;1000 USD;278;347;330;447;709;431;780;1198;1836;2562;2973;2670;3111;6216;11990;22519;34641;43004;51867;56353;42403;39338;40966;42606;45557;66861;83678;99730;99983;115001;112545;138331;135526;121069;138339;134665;138272;156620;99796;177651;163401;190841;235423;290815;286193;291418;352948;313512;203727;290906;318400;315204;332842;329520;288704;311817;315376.72;304946;271834;287730;275413;263642;263642 -211;'756;Switzerland;1640;Plywood and LVL;5516;Production;m3;29900;30400;29300;28300;25600;24900;22000;21500;24500;24600;22200;19300;22200;18400;12300;20000;21000;23000;24000;24000;20000;21000;22000;24000;24000;26000;26000;25000;23000;22000;6500;5000;2400;3200;3300;3000;3000;3000;3000;3000;19000;16000;15000;15000;15000;4700;6000;10000;7576;7824;7582;7066;6619;8812;7373;7298;8427;8518;8390;7242;6972;7004;7004 -211;'756;Switzerland;1640;Plywood and LVL;5616;Import quantity;m3;27600;28800;29300;31900;29500;32100;35300;37000;44500;55600;64000;81000;80600;54700;28000;40300;45900;57200;69900;78400;75000;75000;82000;87000;96000;104000;116000;132000;149000;137000;121000;109593;118416;144000;136000;129000;138000;143000;150000;152870;142580;128473;130000;139730;145060;128473;125621;130923;53150;68264;73831;85756;99204;183710;181924;192067;202547;200491;197090;197090;202705;202705;202705 -211;'756;Switzerland;1640;Plywood and LVL;5622;Import value;1000 USD;5209;5470;5843;6532;6262;6588;6956;7246;9082;12723;16392;22338;28194;23185;11518;19572;23806;35190;48642;63413;50966;42503;42526;43458;44874;66708;89665;105474;116837;146840;113856;104719;103207;132769;149109;125756;127138;127000;103601;127950;116134;108659;124076;145785;157362;134567;140913;154270;58286;69824;87522;91886;106257;198075;164779;175140;193643.38;208487;196619;208116;271583;259977;259977 -211;'756;Switzerland;1640;Plywood and LVL;5916;Export quantity;m3;200;100;300;100;300;100;200;400;600;500;800;900;1300;1400;1900;5100;8300;8400;7600;6000;6000;7000;8000;10000;9000;10000;10000;12000;13000;13000;8000;12863;2996;3000;3000;4000;4000;6000;7000;4460;4230;3759;3000;2666;2013;3052;4477;4290;1782;2351;2886;2684;2583;4180;4095;4559;4507;4324;3676;3676;4344;4344;4344 -211;'756;Switzerland;1640;Plywood and LVL;5922;Export value;1000 USD;55;33;92;64;143;75;90;148;186;248;368;441;765;917;1083;2927;5406;6270;5442;5121;4359;4925;5301;5298;4839;6908;8777;11284;11573;13491;10593;6979;4727;6159;5617;5606;5080;5080;11263;7023;6359;5475;5090;5971;3777;4870;6758;8802;2494;3554;4630;3837;3668;7656;6961;7103;7108.04;6953;6339;6710;7550;7227;7227 -211;'756;Switzerland;1646;Particle board and OSB (1961-1994);5516;Production;m3;94000;102000;135000;164000;179000;200000;227000;246000;290000;356000;365000;393000;412000;445000;427000;527000;586000;570000;652000;645000;600000;495000;500000;521000;518000;539000;541000;585000;792000;722000;699000;762000;742000;656000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -211;'756;Switzerland;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;4000;12200;6500;3500;7700;11900;24900;33000;50500;57000;60900;87100;118500;81200;40200;36900;49000;56600;74000;83900;86000;98000;100000;114000;114000;120000;130000;147000;159000;165000;176000;137000;166000;214000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -211;'756;Switzerland;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;555;1174;766;524;965;1458;2283;2630;4321;5778;6451;9528;14637;13237;7751;6878;9267;13968;19398;25169;23108;24226;22613;24539;24338;36949;48949;56443;56105;171157;67454;61596;59029;71771;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -211;'756;Switzerland;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;200;200;200;3700;5400;3100;7200;12600;22000;29100;32300;21000;8300;33400;88500;145900;192300;186200;287000;247000;196000;169000;190000;226000;267000;286000;322000;396000;360000;380000;386000;465439;480343;427000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -211;'756;Switzerland;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;21;22;9;211;405;214;475;786;1369;1987;2237;1560;832;3636;9814;18072;26685;33191;43005;46472;32700;27613;29365;31733;35858;53065;68125;81670;75171;86893;86567;103440;96513;93107;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -211;'756;Switzerland;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;564000;530000;501000;524000;525000;529000;515000;500000;435000;450000;470000;470000;540000;461600;522000;529000;522000;405000;370000;382689;391000;361000;380000;364958;387000;365898;424934;401987;401987 -211;'756;Switzerland;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;253000;238000;241000;250000;237000;199030;175590;180558;229000;222087;236670;180557;262895;208985;184880;219857;185882;175200;166896;162733;151985;153906;150996;141184;128272;128272;141155;141155;141155 -211;'756;Switzerland;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97134;84012;73158;73200;73928;54954;47308;45603;62660;67668;72975;56476;98865;96083;81933;90378;95540;85667;89428;88293;70802;68717;69095.25;70069;63192;66887;82941;79397;79397 -211;'756;Switzerland;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;376000;400000;395000;378000;376000;350950;353870;354294;356494;366136;361132;384407;386209;299560;286740;268150;252127;252527;217161;238322;228000;240542;244974;246888;242961;242961;280260;280260;280260 -211;'756;Switzerland;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108543;104691;103832;104000;88533;72750;63099;70561;82793;95034;97488;109777;132987;114583;82118;78991;87419;85016;75098;82793;69123;73300;77884.85;81214;74711;79079;98151;93956;93956 -211;'756;Switzerland;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 -211;'756;Switzerland;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32550;32730;45062;55000;57847;39564;45062;55753;56064;65120;71599;71649;79393;86031;79604;86502;92602;89423;94310;80905;80905;95908;95908;95908 -211;'756;Switzerland;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7306;5890;9649;12668;18907;14225;11950;24361;25295;23370;28141;32186;30380;35707;34234;27221;28108;27924.45;34969;27973;29609;52194;49963;49963 -211;'756;Switzerland;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1730;1400;2506;2506;1209;565;673;337;440;260;599;473;473;2839;1678;1000;739;935;909;379;379;999;999;999 -211;'756;Switzerland;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;502;359;905;905;622;321;399;167;185;92;288;184;184;1002;591;487;203;304.63;409;201;213;766;733;733 -211;'756;Switzerland;1874;Fibreboard;5516;Production;m3;23000;23000;24000;29000;28000;52000;52000;53700;53100;57700;58200;61800;66800;57800;40700;43000;49000;49000;54000;67000;63000;68000;75000;75000;72000;75000;76000;75000;79000;83000;75000;82000;103000;108000;106400;140000;144000;144000;153000;338000;368000;365000;400000;422000;470000;484700;534400;500856;515100;552800;553000;544000;539000;443000;421000;401000;390000;409600;185446;192018;135182;96790;96790 -211;'756;Switzerland;1874;Fibreboard;5616;Import quantity;m3;9000;12300;12100;11900;9500;10635;10425;10530;9898;11583;13057;12847;14426;11478;10846;14400;16000;19300;21900;28600;41000;37000;48000;61000;66000;50500;62000;63000;61000;66000;72000;77677;75247;110000;113000;108000;132000;147000;151000;128000;131000;132000;152000;161018;142020;132404;179110;186776;165461;198255;189435;205190;207052;228990;241679;245092;235467;209807;214360;214360;307884;307884;307884 -211;'756;Switzerland;1874;Fibreboard;5622;Import value;1000 USD;1260;1534;1550;1639;1474;1576;1470;1564;1518;1823;2183;2409;3171;3257;2736;2984;3475;4592;5918;8478;8315;7444;7600;8650;8725;12878;17439;16900;17700;19800;19865;21584;20622;31780;41714;38180;40153;52249;57297;50271;57920;66139;83812;94163;98736;81908;130689;138703;116831;118615;132808;128342;128048;132889;113974;107699;109971.57;110522;101630;107573;137214;131350;131350 -211;'756;Switzerland;1874;Fibreboard;5916;Export quantity;m3;1300;1600;1300;1100;1100;948;1790;2422;2633;2948;2843;4844;9688;8213;4423;8000;14500;17000;16500;18000;22000;28000;33000;33000;28000;30000;27000;27000;39000;43000;45000;34494;38470;55000;50000;56000;75000;116000;0;304000;307000;296000;431000;501000;463451;403315;383000;259186;437022;444139;418640;428640;421640;369719;364000;353731;316935;292165;255672;255672;167248;167248;167248 -211;'756;Switzerland;1874;Fibreboard;5922;Export value;1000 USD;202;292;229;172;161;142;215;264;281;327;368;669;1514;1663;1093;1520;2550;3543;3420;4760;5344;6800;6300;5575;4860;6888;6776;6776;13239;14617;15385;27912;34286;21803;24179;24368;29360;47540;0;97376;93584;113900;146635;189188;184607;176372;213036;189942;119023;208073;226167;226167;253074;238480;212133;231211;230079.2;216370;190583;201728;168946;161726;161726 -211;'756;Switzerland;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31800;30000;29000;34000;33000;33000;16000;15000;5000;5000;10000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -211;'756;Switzerland;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22000;22000;28000;46000;48000;52000;62000;57000;79000;66704;67134;48404;43281;34938;39317;40314;36817;32141;31868;29276;27166;26572;32406;32083;21343;21343;23686;23686;23686 -211;'756;Switzerland;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14785;17949;16137;30233;33818;31458;38381;43672;60851;68290;69760;54084;49187;43918;42725;40147;42350;36349;37001;34453;27221;27458;28939.89;30358;21131;22367;23963;22939;22939 -211;'756;Switzerland;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;8000;6000;5000;12000;3427;4635;5089;0;60;2122;640;640;640;640;561;5000;4860;5896;5859;5912;5912;5452;5452;5452 -211;'756;Switzerland;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;4430;3455;4249;9561;2959;1846;2226;0;93;1620;567;567;567;384;362;3000;7068;8428.11;8487;8251;8734;8535;8170;8170 -211;'756;Switzerland;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;190000;190000;195000;280000;322000;357000;281700;334000;269400;221400;252800;220000;200000;200000;220000;231000;235000;220000;240042;108679;192018;135182;96790;96790 -211;'756;Switzerland;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71000;78000;90000;88000;90000;47000;50000;60000;60000;82146;60986;75426;104789;93150;78312;84953;79858;82009;69376;64268;63685;70964;81321;76684;72493;72493;88434;88434;88434 -211;'756;Switzerland;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19043;16824;20000;18217;19516;13009;16138;19513;19907;22639;24995;24166;71332;73660;59234;57146;65839;64704;56419;56437;48623;49217;54427.29;57168;54941;58153;71890;68817;68817 -211;'756;Switzerland;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;214000;214000;214000;304000;371466;342953;271000;250000;257950;236879;253467;203000;197000;193000;169234;215000;240919;243775;218890;210154;210154;161196;161196;161196 -211;'756;Switzerland;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75459;73054;89413;111493;155168;136609;118499;165436;189571;59503;158959;163900;163900;115841;109161;159475;197051;207813.77;196513;175503;185765;160083;153242;153242 -211;'756;Switzerland;1650;Other fibreboard;5516;Production;m3;8000;8000;8000;8000;8000;28000;28400;28400;26400;26400;26800;24800;21200;18800;16000;15000;16000;13000;16000;21000;23000;27000;31000;30000;29000;29000;30000;29000;33000;39000;35000;33000;67000;70000;74600;110000;115000;110000;120000;115000;162000;155000;115000;95000;103000;203000;200400;231456;293700;300000;333000;344000;339000;223000;190000;166000;170000;169558;76767;0;0;0;0 -211;'756;Switzerland;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;2500;3700;4600;6500;10800;27000;23000;35000;45000;51000;11000;13000;17000;15000;5000;5000;3677;3247;9000;20000;8000;14000;13000;13000;29000;19000;15000;13000;12168;13900;8574;31040;58688;47832;72988;72760;91040;105808;135446;150828;147556;121740;101040;120524;120524;195764;195764;195764 -211;'756;Switzerland;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;251;327;508;752;1313;2625;2296;3500;4050;4085;878;1439;1900;1700;600;2121;2253;1874;3722;7886;3407;4016;3799;3963;5804;3401;2954;3054;3234;3981;3658;10170;21125;14872;21322;24619;27289;34628;41999;38130;31024;26604.39;22996;25558;27053;41361;39594;39594 -211;'756;Switzerland;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;2000;4500;3000;2500;3000;10000;18000;19000;16000;15000;16000;14000;14000;14000;14000;14000;23275;29159;55000;50000;56000;75000;116000;0;82000;87000;77000;115000;126107;115863;127226;133000;1176;198021;190032;215000;231000;228000;199924;144000;107952;67264;67416;39606;39606;600;600;600 -211;'756;Switzerland;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;380;1150;744;620;760;2144;4100;4000;3575;3300;4500;4500;4500;4500;4500;4500;14014;17375;21803;24179;24368;29360;47540;0;17487;17075;20238;25581;31061;46152;55647;47600;278;57900;48547;61700;61700;136849;128957;49658;27092;13837.33;11370;6829;7229;328;314;314 -211;'756;Switzerland;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;15000;15000;16000;21000;20000;24000;23600;25300;26700;31300;31400;37000;45600;39000;24700;28000;33000;36000;38000;46000;40000;41000;44000;45000;43000;46000;46000;46000;46000;44000;40000;49000;36000;38000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -211;'756;Switzerland;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;9000;12300;12100;11900;9500;10635;10425;10530;9898;11583;13057;12847;14426;11478;10846;11900;12300;14700;15400;17800;14000;14000;13000;16000;15000;39500;49000;46000;46000;61000;67000;74000;72000;101000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -211;'756;Switzerland;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;1260;1534;1550;1639;1474;1576;1470;1564;1518;1823;2183;2409;3171;3257;2736;2733;3148;4084;5166;7165;5690;5148;4100;4600;4640;12000;16000;15000;16000;19200;17744;19331;18748;28058;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -211;'756;Switzerland;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;1300;1600;1300;1100;1100;948;1790;2422;2633;2948;2843;4844;9688;8213;4423;6000;10000;14000;14000;15000;12000;10000;14000;17000;13000;14000;13000;13000;25000;29000;31000;11219;9311;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -211;'756;Switzerland;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;202;292;229;172;161;142;215;264;281;327;368;669;1514;1663;1093;1140;1400;2799;2800;4000;3200;2700;2300;2000;1560;2388;2276;2276;8739;10117;10885;13898;16911;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -211;'756;Switzerland;1879;Total fibre furnish;5510;Production;t;407000;433000;465000;470000;475000;518000;514000;530000;553000;565000;550000;557000;611000;660000;549000;567000;586000;628000;677000;661000;707000;724000;844000;796000;818000;808000;877000;948000;1003000;1056000;1060000;1039000;1014000;1138000;1180000;1243000;1268000;1287000;1339000;1381000;1466670;1438695;1393000;1400000;1462000;1443667;1568235;1494959;1448583;1421752;1457074;1466712;1432990;1460336;1428582;1391736;1372349;1359601;1300553;1281194;1269503;1262247;1262247 -211;'756;Switzerland;1879;Total fibre furnish;5610;Import quantity;t;1700;900;4500;8800;3400;3900;6400;157500;176300;262400;200900;233800;288100;314500;243600;274600;302600;321000;334600;373500;352200;302100;375000;392000;417000;445000;433000;479000;486000;477000;503200;561377;543443;600000;613000;599000;674000;679867;728000;758480;667590;699455;713000;698114;646263;699455;667391;639654;543845;614153;558994;532226;521566;480258;483633;505866;496126;327197;339760;339760;329208;329208;329208 -211;'756;Switzerland;1879;Total fibre furnish;5622;Import value;1000 USD;187;93;371;611;331;410;630;21016;25306;40324;34354;39870;56069;88491;91990;88622;97621;96192;119543;163554;156348;121429;130573;150426;137779;170033;211429;266137;291839;296280;243130;256252;190408;246251;392035;251916;163851;213439;247334;322154;240696;228368;253469;291966;296400;282819;383194;412036;267228;401370;293522;207115;188142;175333;157819;140436;143176.28;122801;107668;113963;133931;128207;128207 -211;'756;Switzerland;1879;Total fibre furnish;5910;Export quantity;t;6600;5700;5100;3300;2200;2800;1800;10800;14600;157500;136400;138500;151500;166400;156100;164500;156852;163700;205100;169500;182000;195800;186000;216000;216000;203000;233000;236000;250000;294000;351000;351125;299885;353900;336000;323400;338800;315458;364000;417190;414930;429987;412580;463360;508335;481601;533907;564310;560236;600476;600969;567072;534381;509877;506683;494969;484046;490221;454016;454219;465325;465325;465325 -211;'756;Switzerland;1879;Total fibre furnish;5922;Export value;1000 USD;500;473;431;278;190;232;138;1515;2164;11404;6128;6681;11439;23731;12950;14762;16083;14765;31864;32848;25447;26065;27751;38084;34921;37587;50608;60768;58091;58910;55108;81486;48779;72516;115745;70033;71033;68888;71335;107511;78843;79386;78642;86824;91862;65227;88768;97658;61518;114389;145542;103501;89648;86951;79065;81989;89764.42;75970;59066;62520;97166;93013;93013 -211;'756;Switzerland;1878;Pulp for paper;5510;Production;t;237000;243000;245000;250000;250000;266000;260000;253000;257000;268000;233000;234000;250000;255000;223000;222000;230000;241000;272000;285000;296000;284000;284000;302000;315000;310000;324000;335000;329000;341000;328000;294000;260000;263000;254000;244000;265000;225000;245000;244000;279510;279736;264000;237000;219000;165000;243962;141779;131695;123904;141604;133881;113227;136332;121526;113136;111097;101336;91498;72139;93933;86677;86677 -211;'756;Switzerland;1878;Pulp for paper;5610;Import quantity;t;1700;900;4500;8800;3400;3900;6400;157500;176300;226400;175900;202800;243100;244200;198700;189800;235300;273500;253300;288000;274000;230000;294000;290000;310000;333000;328000;355000;354000;338000;372200;409242;377936;415000;408000;424000;431000;434200;479000;467630;445190;463748;464000;509681;509959;463748;536266;519834;448463;474797;301336;207191;169935;160793;154162;125872;112989;108887;98677;98677;104399;104399;104399 -211;'756;Switzerland;1878;Pulp for paper;5622;Import value;1000 USD;187;93;371;611;331;410;630;21016;25306;37614;32409;37000;50889;76357;85949;77171;89590;90271;107995;150417;147011;113880;121967;138483;125485;155165;195329;243729;267182;265241;217638;231551;168842;218056;340608;230462;144960;194239;227754;291140;221883;205772;226550;267586;281050;254835;360835;390262;251710;374574;238072;149447;126761;120428;109403;83916;80625.51;90388;74865;79242;83378;79815;79815 -211;'756;Switzerland;1878;Pulp for paper;5910;Export quantity;t;6600;5700;5100;3300;2200;2800;1800;10800;14600;17500;9400;9500;15500;16300;10200;9900;18352;14200;34100;27600;25200;29000;42000;50000;50000;58000;61000;64000;55000;57000;70000;113266;82096;91900;80000;96400;122800;125125;132000;134830;133310;124529;94580;79799;69380;31331;15049;21906;9743;10727;28806;27872;13820;10256;21284;17357;16521;6814;3574;3777;2213;2213;2213 -211;'756;Switzerland;1878;Pulp for paper;5922;Export value;1000 USD;500;473;431;278;190;232;138;1515;2164;3009;1881;2078;3524;5555;4938;4575;7036;5476;14719;14893;13776;13494;16945;22464;19301;27734;38458;45408;41486;41120;38736;65316;37416;47614;65591;50296;56070;55677;56817;75927;57304;52098;46633;48387;47338;18283;10845;9636;3971;5283;14541;13108;6153;5468;9247;8625;8021.93;8179;4327;4580;1532;1466;1466 -211;'756;Switzerland;1875;Wood pulp;5510;Production;t;237000;243000;245000;250000;250000;266000;260000;253000;257000;268000;233000;234000;250000;255000;223000;222000;230000;241000;272000;285000;296000;284000;284000;302000;315000;310000;324000;335000;329000;341000;328000;294000;260000;263000;254000;244000;265000;225000;245000;244000;281510;290299;275000;271000;264000;239000;336962;212839;146695;123904;141604;133881;113227;136332;121526;113136;111097;101336;91498;72139;93933;86677;86677 -211;'756;Switzerland;1875;Wood pulp;5610;Import quantity;t;26200;22900;33000;36700;28000;25400;28200;186200;193700;242000;189900;214100;253800;253400;203200;196500;241100;278900;256200;290900;276900;232900;296900;292900;312900;335900;330900;356000;355000;339000;373200;404476;381713;413000;405000;419000;423000;433200;477500;465230;444050;462162;463360;505091;507241;462162;533846;513951;444840;471795;295288;201942;164321;156764;148715;121316;107974;106448;96058;96058;100972;100972;100972 -211;'756;Switzerland;1875;Wood pulp;5622;Import value;1000 USD;4736;3928;5367;5821;5087;4356;4465;26245;28766;41128;35898;39859;53717;79943;88435;80681;92716;93000;109666;152077;148671;115540;123627;140143;127145;156825;196989;244323;267650;265740;218050;229013;169902;217414;339436;227942;141453;193227;226182;288931;220323;204220;225018;264248;278237;252913;357164;380533;246075;370540;227231;141985;118457;113901;101507;76509;71588.14;86195;70438;74556;77032;73740;73740 -211;'756;Switzerland;1875;Wood pulp;5910;Export quantity;t;6600;5700;5100;3300;2200;2800;1800;10800;14600;17500;9400;9500;15500;16300;10200;9900;18352;14200;34100;27600;25200;29000;42000;50000;50000;58000;61000;64000;55000;57000;70000;111266;80496;89400;78000;94400;120000;123139;121220;135360;134810;134227;112580;111849;111687;102627;107779;90298;23802;10558;8216;595;714;256;4478;69;76;147;41;41;220;220;220 -211;'756;Switzerland;1875;Wood pulp;5922;Export value;1000 USD;500;473;431;278;190;232;138;1515;2164;3009;1881;2078;3524;5555;4938;4575;7036;5476;14719;14893;13776;13494;16945;22464;19301;27734;38458;45408;41486;41120;38736;64315;36855;46710;64849;49332;55587;55455;55727;76480;58309;58329;60658;75877;85834;80077;109876;103032;15610;4995;3373;647;652;127;935;0;101.54;204;101;107;547;523;523 -211;'756;Switzerland;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111097;101336;91498;72139;93933;86677;86677 -211;'756;Switzerland;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1890;2441;6013;6013;3350;3350;3350 -211;'756;Switzerland;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;710.8;920;2214;2343;1422;1362;1362 -211;'756;Switzerland;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;0;2;2;7;7;7 -211;'756;Switzerland;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -211;'756;Switzerland;1654;Mechanical wood pulp (1961-2016);5510;Production;t;132000;135000;140000;137000;137000;155000;150000;145000;145000;150000;135000;150000;155000;160000;135000;145000;155000;166000;174000;182000;196000;180000;175000;185000;193000;186000;198000;208000;209000;219000;201000;165000;133000;116000;134000;105000;106000;94000;102000;118000;148810;157090;140000;148000;148000;129000;134962;140779;131695;123904;141604;133881;113227;136332;121526;113136;;;;;;; -211;'756;Switzerland;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;1700;900;4500;8800;3400;3900;6400;7600;9000;12500;10000;13200;20400;22100;11200;9600;14300;16700;9000;9800;12000;7000;10000;10000;14000;14000;9000;9000;11000;7000;11000;8442;4933;5000;7000;5000;3000;5000;18000;5160;8320;9877;6000;7160;3619;9877;3743;5000;3822;2021;1620;1642;1761;407;886;927;;;;;;; -211;'756;Switzerland;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;187;93;371;611;331;410;630;792;935;1532;1223;1470;2844;4688;3383;2770;3744;4004;2768;3685;4680;2638;3199;3066;4234;5644;3860;3971;4295;3583;4774;2979;1541;1840;3589;1924;1000;1000;8173;1630;2757;3033;2149;2363;1527;3756;2086;2965;1847;1153;1016;959;1079;219;416;304;;;;;;; -211;'756;Switzerland;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;6600;5700;5100;3300;2200;2800;1800;600;200;200;200;200;200;200;400;200;300;;;;;;;;;;;;;;;1595;977;1000;3000;5000;5000;25000;0;29240;27880;25970;60;782;12;20;1938;13134;5776;6617;4240;318;9;76;4442;0;;;;;;; -211;'756;Switzerland;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;500;473;431;278;190;232;138;33;32;32;32;32;13;2;3;2;11;;;;;;;;;;;;;;;531;293;210;875;1900;1924;8627;68;11864;10274;8433;23;124;0;0;417;3243;1293;1537;1016;107;4;0;935;0;;;;;;; -211;'756;Switzerland;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;0;0;0;0;;;;;;; -211;'756;Switzerland;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4866;5786;5000;5000;5000;19000;30000;30000;33650;33750;34494;44000;44000;52872;34494;93398;71850;52914;40258;17948;396;1673;2345;473;279;;;;;;; -211;'756;Switzerland;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2232;1922;1970;2868;1996;3320;3320;13731;19924;14003;13823;20246;21937;27808;17119;56565;48366;26880;28909;14045;320;1402;1422;312;101;;;;;;; -211;'756;Switzerland;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;226;438;0;0;0;0;25;0;300;30;79;9;96;0;0;0;0;1;1;412;1;0;7;0;1;;;;;;; -211;'756;Switzerland;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;127;0;0;0;0;12;0;142;13;9;1;124;0;0;0;0;0;1;226;210;0;0;0;0;;;;;;; -211;'756;Switzerland;1656;Chemical wood pulp;5510;Production;t;105000;108000;105000;113000;113000;111000;110000;108000;112000;118000;98000;84000;95000;95000;88000;77000;75000;75000;98000;103000;100000;104000;109000;117000;122000;124000;126000;127000;120000;122000;127000;129000;127000;147000;120000;139000;159000;131000;143000;126000;130700;122646;124000;89000;71000;36000;109000;1000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -211;'756;Switzerland;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;149900;167300;213900;165900;189600;222700;222100;187500;180200;221000;256800;244300;278200;262000;223000;284000;280000;296000;319000;319000;346000;343000;331000;361200;390934;363217;401000;392000;408000;400000;397200;429000;426400;401900;417760;413000;453721;450595;417760;436534;436725;388099;429516;275693;199902;160885;153984;147278;120021;105870;103906;89986;89986;97152;97152;97152 -211;'756;Switzerland;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;20224;24371;36082;31186;35530;48045;71669;82566;74401;85846;86267;105227;146732;142331;111242;118768;135417;121251;149521;191469;239758;262887;261658;212864;223598;163325;212463;332239;223703;136814;188677;204150;267361;203501;187337;202572;239824;248822;232004;298346;329017;217348;340478;212170;140706;115974;112225;100675;75901;70674.25;85071;68123;72106;74844;71645;71645 -211;'756;Switzerland;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;10200;14400;17300;9200;9300;15300;16100;9800;9700;18052;14200;34100;27600;25200;29000;42000;50000;50000;58000;61000;64000;55000;57000;70000;109445;79081;88400;75000;89400;115000;98100;121000;104510;104940;97584;92511;77000;66809;28224;12661;4925;3419;3708;3539;274;647;158;36;47;50;147;39;39;85;85;85 -211;'756;Switzerland;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;1482;2132;2977;1849;2046;3511;5553;4935;4573;7025;5476;14719;14893;13776;13494;16945;22464;19301;27734;38458;45408;41486;41120;38736;63694;36435;46500;63974;47432;53663;46807;55516;63605;46753;43212;46043;47641;46534;17405;9927;4818;2124;3361;2119;319;540;109;0;0;101.54;204;101;107;328;314;314 -211;'756;Switzerland;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 -211;'756;Switzerland;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;30700;33600;41900;34000;26700;36800;44000;24700;16300;20600;27000;27700;28200;22000;15000;15000;11000;12000;15000;12000;23000;16000;17000;23000;23608;22940;25000;25000;20000;26000;21000;18000;18880;18710;18694;20000;14086;12441;18694;21053;20585;25939;20136;23196;21319;23322;22955;24506;26375;22170;22490;17809;17809;23737;23737;23737 -211;'756;Switzerland;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;3185;3732;5538;5435;4127;6787;12777;10142;6384;6925;7826;10471;13343;10332;6182;5418;4529;4264;7006;6785;15322;11244;11619;14188;13060;10531;11851;19374;10929;12663;10009;8173;10333;9071;8184;9840;7463;6671;10136;14600;15937;15795;15079;18521;15456;17152;17281;16104;15931;13809.91;15542;13484;14272;18273;17492;17492 -211;'756;Switzerland;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2707;955;200;0;200;1700;1000;0;0;70;48;2;58;65;66;73;0;70;102;160;98;160;0;20;8;31;114;18;18;6;6;6 -211;'756;Switzerland;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1304;415;79;0;96;690;267;68;0;127;68;3;0;80;80;83;0;92;96;113;107;108;0;0;0;0;102;0;0;0;0;0 -211;'756;Switzerland;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 -211;'756;Switzerland;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;21800;16800;17900;19000;7000;6000;6000;7000;10000;10000;10000;11000;10000;23000;336449;304134;326000;323000;338000;349600;347000;387000;387930;372530;386886;379000;414989;418813;386886;392597;401868;347133;394192;246120;175263;137041;130433;122379;93210;83290;80957;71821;71821;72975;72975;72975 -211;'756;Switzerland;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;7658;8154;10406;10888;4587;3549;3996;4039;5526;6513;7065;8515;7817;13614;192194;135735;174560;276893;188744;113729;166650;185075;245581;189065;173623;185719;218678;231060;215020;268644;301869;192778;313105;188228;122692;97843;93842;83844;59158;56051.99;68609;53834;56982;55586;53210;53210 -211;'756;Switzerland;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;400;200;200;200;2000;1000;2000;2000;3000;2000;2000;2000;2000;2000;28595;6187;200;1000;200;200;100;3000;1100;530;225;115;1341;1183;80;39;39;112;3467;3301;158;460;18;5;18;0;8;14;14;41;41;41 -211;'756;Switzerland;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;169;125;125;125;742;483;692;751;1118;1373;1373;1373;1373;1373;16549;2463;79;485;201;205;90;1481;721;221;127;75;746;563;80;83;93;185;3073;1893;107;324;0;0;0;0;0;0;0;109;105;105 -211;'756;Switzerland;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -211;'756;Switzerland;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;410;459;356;356;440;440;440 -211;'756;Switzerland;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;812.35;920;805;852;985;943;943 -211;'756;Switzerland;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;25;7;7;38;38;38 -211;'756;Switzerland;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101.54;102;101;107;219;209;209 -211;'756;Switzerland;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;113000;113000;60000;60000;58000;62000;65000;54000;46000;46000;46000;46000;36000;35000;35000;8000;10000;10000;14000;9000;10000;12000;12000;16000;17000;16000;16000;17000;17000;17000;20000;16000;19000;19000;16000;0;0;38500;36794;37200;3000;2000;1000;1000;1000;0;0;0;0;0;0;0;0;;;;;;; -211;'756;Switzerland;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;11900;8600;14400;13100;21000;21600;21500;16400;15700;14300;17000;17400;15700;15000;8000;8000;6000;5000;3000;3000;1000;1000;1000;200;911;370;3000;3000;2000;3400;3200;0;120;110;2;2000;14300;7772;2;1;0;0;0;29;17;16;16;41;20;;;;;;; -211;'756;Switzerland;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;1518;1136;2237;2326;3563;4097;6268;6694;5923;4742;4472;6660;7275;7397;3713;3196;2214;1721;1258;1509;566;784;492;94;398;159;1320;1616;788;1342;9;185;230;188;2;792;6966;3938;2;1;0;0;0;0;0;8;8;104;0;;;;;;; -211;'756;Switzerland;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;1200;2600;4900;2000;1200;5200;4000;1000;1500;2352;700;5000;3700;1000;2000;1000;2000;3000;4000;2000;3000;3000;4000;4000;8221;3735;2000;1000;1000;1100;1000;1000;800;1740;2038;394;620;633;1644;1067;520;81;0;24;0;0;0;0;0;;;;;;; -211;'756;Switzerland;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;76;268;711;307;181;1048;1195;397;495;813;205;1920;1716;642;682;417;599;1082;1527;1344;1813;1829;1738;1479;3547;1595;938;1062;690;456;622;587;459;828;1014;226;373;402;958;751;463;0;0;0;0;0;0;0;0;;;;;;; -211;'756;Switzerland;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;;51000;50000;50000;50000;53000;44000;38000;49000;49000;42000;41000;40000;40000;90000;93000;90000;90000;100000;107000;110000;112000;110000;110000;104000;106000;110000;112000;110000;127000;104000;120000;140000;115000;143000;126000;92200;85852;86800;86000;69000;35000;108000;0;0;0;0;0;0;0;0;0;;;;;;; -211;'756;Switzerland;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;107300;125100;157600;118800;141900;164300;156600;146400;148200;186100;191000;182400;216400;206000;193000;255000;257000;272000;291000;294000;312000;315000;303000;315000;29966;35773;47000;41000;48000;21000;26000;24000;19470;10550;12178;12000;10346;11569;12178;22883;14272;15027;15188;6348;3303;506;580;352;416;;;;;;; -211;'756;Switzerland;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;15521;19503;28307;23425;27840;37161;52624;65730;62094;74179;66311;79942;115708;113714;96760;106605;124678;111227;135731;176662;216805;242344;241730;184968;17946;16900;24732;34356;23242;9080;12009;10717;11217;5177;5528;6221;6717;7153;6846;15101;11211;8775;12294;5421;2558;971;1094;623;812;;;;;;; -211;'756;Switzerland;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;9000;11800;12400;7200;8100;10100;12100;8800;8200;15700;13100;28900;23700;24000;25000;40000;46000;45000;51000;57000;59000;50000;51000;64000;69922;68204;86000;73000;88000;112000;96000;117000;102610;102600;95273;92000;74981;64928;26434;11482;4366;3156;139;54;18;27;140;11;21;;;;;;; -211;'756;Switzerland;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;1406;1864;2266;1542;1865;2463;4358;4538;4078;6212;5102;12674;13052;13009;12070;16045;21173;17468;25089;35741;42222;38284;38009;35884;42294;31962;45404;62427;46445;52312;45828;53380;62425;45577;42003;45739;46522;45489;16287;9010;4262;1847;192;113;105;108;109;0;0;;;;;;; -211;'756;Switzerland;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;2000;10563;11000;34000;45000;74000;93000;71060;15000;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -211;'756;Switzerland;1667;Dissolving wood pulp;5610;Import quantity;t;24500;22000;28500;27900;24600;21500;21800;28700;17400;15600;14000;11300;10700;9200;4500;6700;5800;5400;2900;2900;2900;2900;2900;2900;2900;2900;2900;1000;1000;1000;1000;234;7777;2000;1000;1000;1000;1000;500;20;80;31;360;210;155;31;171;376;5;0;27;2;2;28;78;89;214;101;59;59;470;470;470 -211;'756;Switzerland;1667;Dissolving wood pulp;5622;Import value;1000 USD;4549;3835;4996;5210;4756;3946;3835;5229;3460;3514;3489;2859;2828;3586;2486;3510;3126;2729;1671;1660;1660;1660;1660;1660;1660;1660;1660;594;468;499;412;204;3114;1141;740;319;319;230;128;16;62;27;51;124;80;34;167;185;0;0;0;0;2;35;104;203;203.09;204;101;107;766;733;733 -211;'756;Switzerland;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;220;1310;1960;10594;20000;33971;44866;74383;93180;72239;14606;232;25;2;58;15;0;21;20;0;0;0;128;128;128 -211;'756;Switzerland;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;143;869;1269;6675;14591;27988;39300;62672;99532;94971;12193;96;12;11;108;18;0;0;0;0;0;0;219;209;209 -211;'756;Switzerland;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 -211;'756;Switzerland;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;4000;4000;4000;6000;9000;2000;2000;2420;1220;1617;1000;4800;2873;1617;2591;6259;3628;3002;6075;5251;5616;4057;5525;4645;5229;2540;2678;2678;3897;3897;3897 -211;'756;Switzerland;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2742;2054;1783;1912;2839;3826;1242;1700;2225;1622;1579;1583;3462;2893;1956;3838;9914;5635;4034;10841;7462;8306;6562;8000;7610;9240.45;4397;4528;4793;7112;6808;6808 -211;'756;Switzerland;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;1600;2500;2000;2000;2800;2000;11000;780;460;896;2000;1921;2559;3087;450;3847;547;401;20615;27279;13164;10015;16806;17309;16465;6667;3533;3736;2121;2121;2121 -211;'756;Switzerland;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1001;561;904;742;964;483;231;1233;316;264;444;566;498;804;878;501;1575;554;384;11180;12472;5609;5359;8312;8625;7920.39;7975;4226;4473;1204;1152;1152 -211;'756;Switzerland;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;3000;2880;2520;2896;3000;3080;4811;2896;2363;2514;5549;4986;6295;10767;8250;12024;5189;6811;6512;4369;6206;6206;5950;5950;5950 -211;'756;Switzerland;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1690;1315;1057;668;520;1018;1244;1848;644;1335;1575;3418;3266;4856;6396;5394;7328;2494;3856;3858.65;2863;4025;4260;3939;3771;3771 -211;'756;Switzerland;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;4000;51070;42000;27822;10000;7484;5395;17643;13835;23010;36025;43708;76715;98863;11392;10843;8509;7190;5139;7587;6756;7155;7937;7597;7597 -211;'756;Switzerland;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103;421;4418;4022;2656;566;498;80;80;250;4355;6281;6339;3275;4690;5286;5031;3948;3653;3046.3;4294;3824;4047;4486;4295;4295 -211;'756;Switzerland;1669;Recovered paper;5510;Production;t;170000;190000;220000;220000;225000;252000;254000;277000;296000;297000;317000;323000;361000;405000;326000;345000;356000;387000;405000;376000;411000;440000;560000;494000;503000;498000;553000;613000;674000;715000;732000;745000;754000;875000;926000;999000;1003000;1062000;1094000;1137000;1187160;1158959;1129000;1163000;1243000;1278667;1324273;1353180;1316888;1297848;1315470;1332831;1319763;1324004;1307056;1278600;1261252;1258265;1209055;1209055;1175570;1175570;1175570 -211;'756;Switzerland;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;36000;25000;31000;45000;70300;44900;84800;67300;47500;81300;85500;78200;72100;81000;102000;107000;112000;105000;124000;132000;139000;131000;152135;165507;185000;205000;175000;243000;245667;249000;290850;222400;235707;249000;188433;136304;235707;131125;119820;95382;139356;257658;325035;351631;319465;329471;379994;383137;218310;241083;241083;224809;224809;224809 -211;'756;Switzerland;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;2710;1945;2870;5180;12134;6041;11451;8031;5921;11548;13137;9337;7549;8606;11943;12294;14868;16100;22408;24657;31039;25492;24701;21566;28195;51427;21454;18891;19200;19580;31014;18813;22596;26919;24380;15350;27984;22359;21774;15518;26796;55450;57668;61381;54905;48416;56520;62550.77;32413;32803;34721;50553;48392;48392 -211;'756;Switzerland;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;140000;127000;129000;136000;150100;145900;154600;138500;149500;171000;141900;156800;166800;144000;166000;166000;145000;172000;172000;195000;237000;281000;237859;217789;262000;256000;227000;216000;190333;232000;282360;281620;305458;318000;383561;438955;450270;518858;542404;550493;589749;572163;539200;520561;499621;485399;477612;467525;483407;450442;450442;463112;463112;463112 -211;'756;Switzerland;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;8395;4247;4603;7915;18176;8012;10187;9047;9289;17145;17955;11671;12571;10806;15620;15620;9853;12150;15360;16605;17790;16372;16170;11363;24902;50154;19737;14963;13211;14518;31584;21539;27288;32009;38437;44524;46944;77923;88022;57547;109106;131001;90393;83495;81483;69818;73364;81742.49;67791;54739;57940;95634;91547;91547 -211;'756;Switzerland;1876;Paper and paperboard;5510;Production;t;510000;540000;555000;570000;610000;630000;645000;650000;690000;731000;700000;700000;781000;825000;600000;703000;777000;815000;887000;914000;920000;887000;918000;991000;1019000;1092000;1152000;1221000;1264000;1295000;1259000;1305000;1332000;1450000;1435000;1461000;1583000;1592000;1748000;1616000;1749530;1804629;1818000;1777000;1751000;1525933;1704733;1698291;1524469;1558729;1375568;1248634;1214582;1258204;1279327;1233441;1242786;1093587;1168144;1168144;1168144;1168144;1168144 -211;'756;Switzerland;1876;Paper and paperboard;5610;Import quantity;t;61000;59700;96900;95300;98900;107000;128700;156200;201000;226900;217800;229600;234800;290400;179400;254300;259100;285700;327100;361200;366000;347000;393000;453000;479000;521600;577700;591400;869000;915000;946000;925758;940680;1067000;1066000;1064000;1182000;1198382;963000;979340;1065200;1056579;1143000;1128002;1146850;1056579;957537;972934;863964;919346;865877;809972;782615;762378;745359;727941;698750;729122;688607;688607;643700;643700;643700 -211;'756;Switzerland;1876;Paper and paperboard;5622;Import value;1000 USD;17877;18425;28603;27516;30921;33962;38954;44940;57264;66546;68014;84975;106327;190570;145107;184766;188420;253445;313367;357931;333085;303351;315185;345116;361839;525367;678627;744095;1195233;1482821;1438733;1303422;1310889;1479123;1823675;1720729;1548368;1432878;917886;882999;921917;982447;1301848;1358347;1360694;1216696;1119240;1273076;1096810;1128424;1240445;1049757;1031067;999781;817247;777778;768916.79;851227;753874;797954;745267;713417;713417 -211;'756;Switzerland;1876;Paper and paperboard;5910;Export quantity;t;8100;8000;9700;11900;14000;14100;18100;22100;22500;27000;27200;37100;63500;132000;87900;140900;149700;172300;224800;239300;249000;259000;293000;346200;370100;404000;442000;490300;629000;697000;703000;813159;817310;923000;948000;1044000;1237000;1356910;1244000;1182900;1164520;1209278;1414000;1386307;1363340;1304326;761246;823346;687133;1006546;894456;837012;899603;914605;953209;942773;941411;810978;798312;798312;785718;785718;785718 -211;'756;Switzerland;1876;Paper and paperboard;5922;Export value;1000 USD;4418;4882;5930;6759;7698;7244;8546;10437;11674;13651;14883;20228;34559;89236;70552;88100;101996;140170;186784;222428;201416;193978;213079;227232;253212;360896;654780;527185;751073;992962;980178;1050482;908689;1088370;1452771;1405393;1485310;1954398;1145903;987474;956648;950983;1379163;1436280;1403217;1362104;785453;1004282;864314;1055433;1117914;898282;895685;908016;783690;727448;728878.96;688547;606559;642030;689572;660102;660102 -211;'756;Switzerland;2042;Graphic papers;5510;Production;t;245000;258000;266000;280000;317000;330000;344000;343000;377000;392000;373000;370000;405000;430000;323000;365000;422000;453000;480000;494000;492000;467000;488000;518000;532000;501000;576000;611000;632000;650000;632000;655000;669000;647000;707000;700000;769000;786000;889000;841000;900620;965771;995000;981000;977000;831107;1025812;1046921;935048;1030397;905862;760326;771484;792389;783329;722140;739947;651115;695505;695505;695505;695505;695505 -211;'756;Switzerland;2042;Graphic papers;5610;Import quantity;t;13700;1700;28400;22300;24500;28000;47700;60200;83000;101900;92800;100600;93800;145400;88400;116400;126400;143700;165700;181200;192000;177000;200000;235000;250000;291000;330000;245000;184000;423000;436000;430758;430680;513000;492000;478000;547000;582000;612000;620850;668470;603861;653000;622485;595924;603861;588641;595720;541554;555908;505444;484487;453030;443674;428141;389013;372691;396967;375442;375442;352480;352480;352480 -211;'756;Switzerland;2042;Graphic papers;5622;Import value;1000 USD;2242;271;7074;7227;8478;9981;15286;18348;23752;30296;29764;36600;43441;93332;66367;87055;96490;130411;158367;180155;174395;158485;163371;177002;187188;283709;380667;291489;194266;549688;518836;492565;418963;489617;607498;537448;479266;478900;531618;508076;528618;536725;627960;624190;591033;664699;640573;721316;652322;631780;668331;572846;545199;525539;421922;392694;381122.31;432924;396559;419746;378050;361893;361893 -211;'756;Switzerland;2042;Graphic papers;5910;Export quantity;t;300;0;500;600;500;1100;5100;7100;5500;9000;5200;10100;20500;56000;36900;56400;72800;86100;103100;103600;110000;100000;118000;136000;149000;158000;170000;97000;103000;167000;164000;241159;258310;324000;363000;383000;448000;437000;574000;517780;580260;707996;762000;740620;744788;599242;404822;419746;405237;635743;651985;569048;574736;613833;625894;574630;590290;449503;429441;429441;417070;417070;417070 -211;'756;Switzerland;2042;Graphic papers;5922;Export value;1000 USD;46;0;278;429;530;809;1890;3402;2970;2757;2717;5810;11237;42800;32274;41863;52771;73076;94104;106562;98935;89004;97076;102397;118328;164038;202454;100273;92220;191792;183537;232190;214091;315142;473989;413242;517405;517000;459461;413560;442415;548707;654879;676806;687556;560537;421153;478283;420472;585199;644616;518162;562675;605709;498182;443024;429427.29;360940;313946;332304;289091;276736;276736 -211;'756;Switzerland;1671;Newsprint;5510;Production;t;95000;98000;103000;100000;120000;120000;130000;135000;135000;143000;138000;147000;155000;160000;143000;154000;173000;190000;196000;210000;218000;210000;213000;231000;232000;240000;248000;263000;272000;280000;272000;282000;288000;234000;263000;259000;308000;307000;332000;326000;358820;364872;364000;361000;343000;345800;341061;354575;243706;282568;403174;404636;425154;389090;394908;402377;433265;381254;407245;407245;407245;407245;407245 -211;'756;Switzerland;1671;Newsprint;5610;Import quantity;t;13700;1700;15200;4200;1400;1300;6500;11100;18900;24600;20200;21500;14800;11300;6000;1900;2200;3300;5800;24600;29000;26000;33000;35000;45000;58000;64000;55000;76000;88000;92000;94810;105000;116000;113000;99000;96000;117000;117000;121930;121970;121967;113000;119870;125482;121967;121158;143008;119454;136680;103485;87649;73020;69755;74029;51965;38502;81772;84650;84650;65393;65393;65393 -211;'756;Switzerland;1671;Newsprint;5622;Import value;1000 USD;2242;271;2296;624;198;217;1025;1720;2990;4123;3739;4347;3441;3524;2477;826;997;1902;3367;15925;18274;16726;19919;17602;21910;37387;49154;41407;55413;75491;74949;74388;66280;70195;85981;84843;59914;59900;70318;65038;72514;70419;67863;72893;75627;87209;87434;112853;95142;83943;76116;58308;47573;47249;36779;25063;19293.26;46012;49406;52295;31623;30271;30271 -211;'756;Switzerland;1671;Newsprint;5910;Export quantity;t;300;0;0;0;0;;;;;100;200;1600;3300;3200;8200;20600;22700;21700;31000;27600;36000;24000;29000;35000;30000;27000;26000;57000;50000;58000;51000;67660;69400;68000;79000;89000;119000;116000;130000;120410;163210;180081;203000;191343;177748;162618;150054;178939;185130;249140;345691;368719;404119;388709;398646;396828;407929;262313;262584;262584;260282;260282;260282 -211;'756;Switzerland;1671;Newsprint;5922;Export value;1000 USD;46;0;0;0;0;;;;;13;319;1248;867;1200;3553;8783;10561;11693;18274;16763;19352;12406;13174;13684;12497;15401;16135;37958;30807;42286;37171;43450;35376;36087;61039;71447;64048;64000;71648;58897;92295;98955;117516;116305;113240;107541;112547;143059;141050;146564;255678;248795;270442;263808;203013;202740;210702.68;158589;154961;164022;133056;127370;127370 -211;'756;Switzerland;1674;Printing and writing papers;5510;Production;t;150000;160000;163000;180000;197000;210000;214000;208000;242000;249000;235000;223000;250000;270000;180000;211000;249000;263000;284000;284000;274000;257000;275000;287000;300000;261000;328000;348000;360000;370000;360000;373000;381000;413000;444000;441000;461000;479000;557000;515000;541800;600899;631000;620000;634000;485307;684751;692346;691342;747829;502688;355690;346330;403299;388421;319763;306682;269861;288260;288260;288260;288260;288260 -211;'756;Switzerland;1674;Printing and writing papers;5610;Import quantity;t;;;13200;18100;23100;26700;41200;49100;64100;77300;72600;79100;79000;134100;82400;114500;124200;140400;159900;156600;163000;151000;167000;200000;205000;233000;266000;190000;108000;335000;344000;335948;325680;397000;379000;379000;451000;465000;495000;498920;546500;481894;540000;502615;470442;481894;467483;452712;422100;419228;401959;396838;380010;373919;354112;337048;334189;315195;290792;290792;287087;287087;287087 -211;'756;Switzerland;1674;Printing and writing papers;5622;Import value;1000 USD;;;4778;6603;8280;9764;14261;16628;20762;26173;26025;32253;40000;89808;63890;86229;95493;128509;155000;164230;156121;141759;143452;159400;165278;246322;331513;250082;138853;474197;443887;418177;352683;419422;521517;452605;419352;419000;461300;443038;456104;466306;560097;551297;515406;577490;553139;608463;557180;547837;592215;514538;497626;478290;385143;367631;361829.05;386912;347153;367451;346427;331622;331622 -211;'756;Switzerland;1674;Printing and writing papers;5910;Export quantity;t;;;500;600;500;1100;5100;7100;5500;8900;5000;8500;17200;52800;28700;35800;50100;64400;72100;76000;74000;76000;89000;101000;119000;131000;144000;40000;53000;109000;113000;173499;188910;256000;284000;294000;329000;321000;444000;397370;417050;527915;559000;549277;567040;436624;254768;240807;220107;386603;306294;200329;170617;225124;227248;177802;182361;187190;166857;166857;156788;156788;156788 -211;'756;Switzerland;1674;Printing and writing papers;5922;Export value;1000 USD;;;278;429;530;809;1890;3402;2970;2744;2398;4562;10370;41600;28721;33080;42210;61383;75830;89799;79583;76598;83902;88713;105831;148637;186319;62315;61413;149506;146366;188740;178715;279055;412950;341795;453357;453000;387813;354663;350120;449752;537363;560501;574316;452996;308606;335224;279422;438635;388938;269367;292233;341901;295169;240284;218724.61;202351;158985;168282;156035;149366;149366 -211;'756;Switzerland;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24000;27900;27000;43690;32487;28000;11000;5000;2864;3186;4029;94468;98483;112305;135287;147847;157062;148873;148274;133261;117261;125255;125255;125255;125255;125255 -211;'756;Switzerland;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56000;53630;50490;10183;50000;51222;46569;10183;39917;35817;35100;28663;19846;13276;11828;10954;12751;11340;10966;12657;10497;10497;8723;8723;8723 -211;'756;Switzerland;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40689;35671;35072;7213;40718;43039;39381;8933;38211;39564;39627;31599;27217;17908;15965;15422;14338;12380;10052.8;11554;10163;10757;8097;7751;7751 -211;'756;Switzerland;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27000;24170;25360;23141;17000;9627;6918;9573;8224;4670;3417;1472;597;300;503;681;209;411;372;216;188;188;206;206;206 -211;'756;Switzerland;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22623;16248;17014;16391;13460;7090;4099;5748;5840;4262;2679;1345;791;426;647;766;623;609;1320.07;613;402;426;438;419;419 -211;'756;Switzerland;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;124500;144800;133000;122620;132682;122000;113000;111000;125481;131549;136334;123032;139890;79777;54076;57097;59696;50830;14990;0;0;0;0;0;0;0 -211;'756;Switzerland;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109000;116740;201910;160871;188000;207523;196481;160871;194292;189883;187387;190840;199029;205158;211771;211320;198635;200877;201405;194163;187563;187563;174121;174121;174121 -211;'756;Switzerland;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110990;117687;210516;177091;214787;239700;228891;219316;248537;280280;259654;268732;318129;279388;287702;283386;228571;227296;227893.23;249898;235762;249547;223547;213994;213994 -211;'756;Switzerland;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64000;52970;61800;107568;62000;59705;57215;65873;69386;74673;65471;77839;53091;38592;45914;49179;49400;23380;12858;7919;7571;7571;5562;5562;5562 -211;'756;Switzerland;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71278;62471;79752;146558;83132;87446;84709;97481;114549;134071;108998;123033;102429;94657;150054;163841;151169;113749;79203.9;40491;34816;36852;41252;39489;39489 -211;'756;Switzerland;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;330500;384300;355000;375490;435730;481000;496000;518000;356962;550016;551983;473842;509456;310606;166327;141386;186541;188718;156499;173421;152600;163005;163005;163005;163005;163005 -211;'756;Switzerland;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;465000;330000;328550;294100;310840;302000;243870;227392;310840;233274;227012;199613;199725;183084;178404;156411;151645;142726;124831;121818;108375;92732;92732;104243;104243;104243 -211;'756;Switzerland;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;419000;309621;289680;210516;282002;304592;268558;247134;349241;266391;288619;257899;247506;246869;217242;193959;179482;142234;127955;123883.02;125460;101228;107147;114783;109877;109877 -211;'756;Switzerland;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;321000;353000;320230;329890;397206;480000;479945;502907;361178;177158;161464;151219;307292;252606;161437;124200;175264;177639;154011;169131;179055;159098;159098;151020;151020;151020 -211;'756;Switzerland;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;453000;293912;275944;253354;286803;440771;465965;485508;349767;188217;196891;167745;314257;285718;174284;141532;177294;143377;125926;138200.65;161247;123767;131004;114345;109458;109458 -211;'756;Switzerland;1675;Other paper and paperboard;5510;Production;t;265000;282000;289000;290000;293000;300000;301000;307000;313000;339000;327000;330000;376000;395000;277000;338000;355000;362000;407000;420000;428000;420000;430000;473000;487000;591000;576000;610000;632000;645000;627000;650000;663000;803000;728000;761000;814000;806000;859000;775000;848910;838858;823000;796000;774000;694826;678921;651370;589421;528332;469706;488308;443098;465815;495998;511301;502839;442472;472639;472639;472639;472639;472639 -211;'756;Switzerland;1675;Other paper and paperboard;5610;Import quantity;t;47300;58000;68500;73000;74400;79000;81000;96000;118000;125000;125000;129000;141000;145000;91000;137900;132700;142000;161400;180000;174000;170000;193000;218000;229000;230600;247700;346400;685000;492000;510000;495000;510000;554000;574000;586000;635000;616382;351000;358490;396730;452718;490000;505517;550926;452718;368896;377214;322410;363438;360433;325485;329585;318704;317218;338928;326059;332155;313165;313165;291220;291220;291220 -211;'756;Switzerland;1675;Other paper and paperboard;5622;Import value;1000 USD;15635;18154;21529;20289;22443;23981;23668;26592;33512;36250;38250;48375;62886;97238;78740;97711;91930;123034;155000;177776;158690;144866;151814;168114;174651;241658;297960;452606;1000967;933133;919897;810857;891926;989506;1216177;1183281;1069102;953978;386268;374923;393299;445722;673888;734157;769661;551997;478667;551760;444488;496644;572114;476911;485868;474242;395325;385084;387794.48;418303;357315;378208;367217;351524;351524 -211;'756;Switzerland;1675;Other paper and paperboard;5910;Export quantity;t;7800;8000;9200;11300;13500;13000;13000;15000;17000;18000;22000;27000;43000;76000;51000;84500;76900;86200;121700;135700;139000;159000;175000;210200;221100;246000;272000;393300;526000;530000;539000;572000;559000;599000;585000;661000;789000;919910;670000;665120;584260;501282;652000;645687;618552;705084;356424;403600;281896;370803;242471;267964;324867;300772;327315;368143;351121;361475;368871;368871;368648;368648;368648 -211;'756;Switzerland;1675;Other paper and paperboard;5922;Export value;1000 USD;4372;4882;5652;6330;7168;6435;6656;7035;8704;10894;12166;14418;23322;46436;38278;46237;49225;67094;92680;115866;102481;104974;116003;124835;134884;196858;452326;426912;658853;801170;796641;818292;694598;773228;978782;992151;967905;1437398;686442;573914;514233;402276;724284;759474;715661;801567;364300;525999;443842;470234;473298;380120;333010;302307;285508;284424;299451.66;327607;292613;309726;400481;383366;383366 -211;'756;Switzerland;1676;Household and sanitary papers;5510;Production;t;;;;;16000;18000;17000;19000;18000;24000;22000;40000;44000;45000;40000;48000;55000;54000;61000;66000;76000;80000;86000;86000;86000;114000;133000;141000;146000;150000;146000;151000;154000;197000;83000;88000;215000;88000;88000;94000;105900;105147;103000;99000;107000;86395;77237;78726;65741;77797;76666;68920;68222;68188;65964;65652;63242;55648;59444;59444;59444;59444;59444 -211;'756;Switzerland;1676;Household and sanitary papers;5610;Import quantity;t;500;600;700;700;700;1000;1000;1000;1000;2000;3000;3000;2000;3000;3000;3400;1400;1100;1200;1300;1300;1200;1300;1500;1600;1600;1700;2400;71000;75000;73000;76000;77000;86000;85000;101000;110000;106000;27000;28780;90550;96587;133000;130893;140790;96587;6936;10656;7446;12015;5313;9423;8930;7075;6292;8872;4946;4564;11853;11853;6166;6166;6166 -211;'756;Switzerland;1676;Household and sanitary papers;5622;Import value;1000 USD;156;181;215;203;224;200;200;300;300;500;1000;1000;1000;2000;2500;2247;1185;1181;1300;1410;1300;1200;1300;1500;1558;2200;2350;3500;141413;175692;172288;188179;178859;200513;234868;251918;250000;100700;25676;26773;130362;147861;301991;318438;324288;183116;13432;20755;14317;20265;13552;19827;19633;15640;11948;15221;10560.52;10941;20427;21621;13787;13198;13198 -211;'756;Switzerland;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;100;200;900;1200;1100;1100;1300;1400;1700;1800;2000;3000;4300;45000;41000;43000;44000;44000;46000;53000;67000;70000;86000;33000;31290;83160;75952;94000;97207;95138;89590;12550;20847;23818;23486;18518;9311;19146;20697;18094;19105;17872;15105;14794;14794;19738;19738;19738 -211;'756;Switzerland;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;57;209;644;860;790;720;735;800;874;944;1400;3000;4100;53438;60203;59870;63656;57706;63892;86470;103515;100000;74390;28571;25854;77351;78110;156085;164692;148522;155204;18355;32614;37041;39186;32976;13857;27508;29968;21299;22019;21019.5;20143;19420;20556;27136;25977;25977 -211;'756;Switzerland;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;608000;661000;681000;643960;623681;618000;584000;556000;500263;493956;458529;400095;338018;286425;323473;323718;353336;377202;388900;384046;337943;360982;360982;360982;360982;360982 -211;'756;Switzerland;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;275382;282000;282210;294320;292131;295000;300874;320709;292131;355341;359149;308497;344680;348588;311177;315781;306436;305676;325033;315852;322205;295970;295970;280011;280011;280011 -211;'756;Switzerland;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;274238;257078;246958;239376;231408;294646;320685;335830;286583;431780;490700;395255;443148;521633;427450;433441;421415;354494;341248;348700.24;376585;307506;325487;323120;309312;309312 -211;'756;Switzerland;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;523910;590000;579280;420080;409330;543000;528549;503652;456062;337147;378941;252650;326416;207605;247162;292765;267696;296800;335393;320117;333775;342524;342524;335373;335373;335373 -211;'756;Switzerland;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;515468;529341;503676;249486;295685;535738;554480;531375;481020;326589;477356;388327;386291;406781;341426;278749;247949;243741;240893;257108.04;285071;251458;266164;349710;334764;334764 -211;'756;Switzerland;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;92000;95000;96000;103000;105000;105000;95000;87000;91000;265000;185000;227000;243000;245000;335000;349000;347000;335000;339000;382000;396000;472000;438000;464000;481000;445000;431000;449000;479000;586000;540000;563000;599000;;;;;;;;;;;;;;;;;;;;;;;;;; -211;'756;Switzerland;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;42100;51600;61000;65000;66200;71000;72000;85000;107000;112000;112000;116000;130000;133000;82000;128000;126000;135600;154000;171800;166000;162000;184000;208000;218500;219000;235000;328000;473000;258000;268000;259000;264000;286000;292000;286000;310000;;;;;;;;;;;;;;;;;;;;;;;;;; -211;'756;Switzerland;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;12977;15068;17881;16840;18628;19000;19000;22000;29000;31000;32500;40000;53000;84000;65500;87116;83503;111528;141700;162966;146000;133300;139000;154000;159989;221400;275610;420000;517859;344694;344079;361895;331077;365250;448534;424279;430000;;;;;;;;;;;;;;;;;;;;;;;;;; -211;'756;Switzerland;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;5200;5300;6200;7600;9000;9000;9000;10000;12000;13000;16000;21000;35000;66000;43000;73000;68900;81400;115000;129000;132200;151000;166000;200000;210400;234000;258000;373000;399000;311000;314000;351000;356000;370000;342000;342000;419000;;;;;;;;;;;;;;;;;;;;;;;;;; -211;'756;Switzerland;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;2317;2587;2996;3355;3799;3300;3300;3700;4800;6000;6800;9000;16000;35000;26000;33728;42688;62257;85920;109066;96500;99000;108000;115161;124431;181700;433326;409000;390816;390560;407480;460557;405265;424715;504943;451224;417905;;;;;;;;;;;;;;;;;;;;;;;;;; -211;'756;Switzerland;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;384000;427000;437000;433490;425926;428000;389000;359000;305627;304573;290459;268638;281688;280418;323473;323718;353336;377202;388900;384046;337943;360982;360982;360982;360982;360982 -211;'756;Switzerland;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108645;105000;102150;101480;104852;111000;113335;125832;104852;167522;161536;145241;157756;154711;131663;144100;142591;137805;169806;164685;176538;166289;166289;165692;165692;165692 -211;'756;Switzerland;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68835;58717;56701;58842;55154;66393;68912;69117;68305;114132;114336;82395;104784;123661;94124;105286;101061;80831;92643;102863.53;126483;95995;101608;117737;112706;112706 -211;'756;Switzerland;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;138334;163000;155760;276230;267100;294000;279937;253073;222669;217150;187986;162823;172470;173730;210298;231539;243698;267675;305649;293313;310637;319061;319061;316886;316886;316886 -211;'756;Switzerland;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51532;65894;63933;64859;103849;99306;104861;91862;91254;112630;97843;56069;81830;102994;97322;112298;123264;113039;120446;137083.67;171472;126987;134413;186016;178066;178066 -211;'756;Switzerland;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120000;120000;0;117290;110403;107000;103000;103000;105743;108477;106967;87042;30488;0;0;0;0;0;0;0;0;0;0;0;0;0 -211;'756;Switzerland;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117822;115000;125420;124810;108830;110000;110759;114467;108830;125799;122784;106731;124074;130711;119384;116440;112078;113452;105219;100120;95531;84938;84938;64247;64247;64247 -211;'756;Switzerland;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;153178;139505;138100;133234;122662;156085;175141;183321;151908;252542;265919;221505;240591;284927;232486;235922;235590;198234;177372;167242.08;163701;140672;148898;115220;110296;110296 -211;'756;Switzerland;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;145926;144000;135090;77410;72357;123000;120302;120339;99689;90914;60429;60570;37490;27407;28077;26095;20511;25400;26066;23345;20009;20487;20487;12702;12702;12702 -211;'756;Switzerland;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;273075;258029;237114;139517;137691;262743;260348;248099;195761;184129;166871;164513;116406;113610;95190;97195;70546;77299;72755;75649.88;69939;82813;87656;79440;76045;76045 -211;'756;Switzerland;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29000;32000;32000;30150;37431;33000;34000;34000;29735;20926;16369;13177;16831;6007;0;0;0;0;0;0;0;0;0;0;0;0 -211;'756;Switzerland;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44735;48000;49660;33880;35648;35300;38000;41700;35648;39701;51813;34607;38155;38988;37604;33058;30433;32323;29539;32901;33480;26400;26400;30415;30415;30415 -211;'756;Switzerland;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50833;49677;50297;36004;38643;46747;52541;61072;47857;50256;92099;76483;80965;92717;82292;73355;66936;61195;57230;64581.64;72495;57154;60496;72437;69341;69341 -211;'756;Switzerland;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107643;114000;116590;26360;34589;30100;32500;32900;133194;20300;106870;12789;110892;5892;8165;34022;2344;2673;2541;2430;2230;2161;2161;5322;5322;5322 -211;'756;Switzerland;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;143021;141452;137792;31079;41104;41492;47941;48353;192807;23156;195316;157030;183925;188709;147315;67206;51952;51429;45561;42546.71;41513;39746;42071;82613;79082;79082 -211;'756;Switzerland;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75000;82000;212000;63030;49921;50000;58000;60000;59158;59980;44734;31238;9011;0;0;0;0;0;0;0;0;0;0;0;0;0 -211;'756;Switzerland;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4180;14000;4980;34150;42801;38700;38780;38710;42801;22319;23016;21918;24695;24178;22526;22183;21334;22096;20469;18146;16656;18343;18343;19657;19657;19657 -211;'756;Switzerland;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1392;9179;1860;11296;14949;25421;24091;22320;18513;14850;18346;14872;16808;20328;18548;18878;17828;14234;14003;14013;13906;13685;14485;17726;16969;16969 -211;'756;Switzerland;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;132007;169000;171840;40080;35284;95900;95810;97340;510;8783;23656;16468;5564;576;622;1109;1143;1052;1137;1029;899;815;815;463;463;463 -211;'756;Switzerland;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47840;63966;64837;14031;13041;132197;141330;143061;1198;6674;17326;10715;4130;1468;1599;2050;2187;1974;2131;1827.78;2147;1912;2024;1641;1571;1571 -211;'756;Switzerland;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;185000;187000;188000;185000;190000;210000;210000;203000;241000;85000;52000;63000;57000;63000;11000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;50000;50000;50000;30000;20000;105000;110000;0;110000;110000;0;99050;110030;102000;113000;111000;108168;107728;114115;123585;112517;106615;95915;51158;44291;52832;56749;55551;48881;52213;52213;52213;52213;52213 -211;'756;Switzerland;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;4700;5800;6800;7300;7500;7000;8000;10000;10000;11000;10000;10000;9000;9000;6000;6500;5300;5300;6200;6900;6700;6800;7700;8500;8900;10000;11000;16000;141000;159000;169000;160000;169000;182000;197000;199000;215000;235000;42000;47500;11860;64000;62000;73750;89427;64000;6619;7409;6467;6743;6532;4885;4874;5193;5250;5023;5261;5386;5342;5342;5043;5043;5043 -211;'756;Switzerland;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;2502;2905;3433;3246;3591;4781;4468;4292;4212;4750;4750;7375;8886;11238;10740;8348;7242;10325;12000;13400;11390;10366;11514;12614;13104;18058;20000;29106;341695;412747;403530;260783;381990;423743;532775;507084;389102;579040;103514;101192;23561;66453;77251;95034;109543;82298;33455;40305;34916;33231;36929;29634;32794;37187;28883;28615;28533.71;30777;29382;31100;30310;29014;29014 -211;'756;Switzerland;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;2600;2700;3000;3700;4500;4000;4000;5000;5000;5000;6000;6000;8000;10000;8000;11400;7800;3900;5500;5600;5700;6700;7600;8500;8900;10000;11000;16000;82000;178000;182000;177000;159000;183000;190000;252000;300000;310000;47000;54550;81020;16000;15000;19931;19762;159432;6727;3812;5428;20901;16348;11491;12956;12379;12421;13645;13132;12595;11553;11553;13537;13537;13537 -211;'756;Switzerland;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;2055;2295;2656;2975;3369;3135;3356;3335;3904;4894;5366;5418;7322;11436;12278;12452;6328;4193;5900;6010;5261;5239;7203;8800;9509;13758;16000;13812;214599;350407;329291;294079;231627;284621;387369;437412;450000;847540;128530;44384;187396;28481;32461;40302;35764;165343;19356;16029;18474;44757;33541;24837;26753;24390;20468;21512;21324.13;22393;21735;23006;23635;22625;22625 -211;'756;Switzerland;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3431401.83;3602818;3422397;3467128;3664665;3746122;3632122 -211;'756;Switzerland;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;483550.17;485352;466051;466640;591225;460464;449161 -211;'756;Switzerland;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120227.46;141820;141075;141761;172328;164974;132659 -211;'756;Switzerland;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2944.76;2965;2616;2663;2341;2241;4050 -211;'756;Switzerland;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44679.12;55010;54538;60922;80660;65458;52261 -211;'756;Switzerland;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1116.98;1636;1207;1065;1341;1284;1413 -211;'756;Switzerland;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75548.34;86810;86537;80839;91668;99516;80398 -211;'756;Switzerland;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1827.78;1329;1409;1598;1000;957;2637 -211;'756;Switzerland;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104139;117011;107814;104121;151536;166409;134508 -211;'756;Switzerland;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21222.58;23824;23445;24816;30523;34321;36202 -211;'756;Switzerland;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95044.68;107464;106863;87549;98249;115990;113474 -211;'756;Switzerland;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34524.78;38344;41558;30248;39862;38158;34773 -211;'756;Switzerland;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;763302.19;760532;749145;777506;915909;904467;857769 -211;'756;Switzerland;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59707.56;56339;59771;94898;123841;118549;118549 -211;'756;Switzerland;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2118501.22;2228016;2104045;2133028;2058725;2126047;2137489 -211;'756;Switzerland;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;339460;322597;300463;291511;352034;210269;228767 -211;'756;Switzerland;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110479.28;107873;75870;77644;94634;96103;86831 -211;'756;Switzerland;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5077.17;21472;18817;7775;24014;35902;9217 -211;'756;Switzerland;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119708;140102;137585;145519;173284;172132;169392 -211;'756;Switzerland;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20613.32;19811;19381;14729;18610;21024;17603 -211;'756;Switzerland;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1244973.64;1346395;1322731;1349975;1569715;1718304;1707399 -211;'756;Switzerland;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;424320.53;451101;410598;372999;374960;379307;369623 -211;'756;Switzerland;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5991.06;7055;7446;7988;22309;21355;21355 -211;'756;Switzerland;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25385.87;19223;18716;21728;29988;28707;28707 -211;'756;Switzerland;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106925.26;112883;101429;100756;117236;126889;120968 -211;'756;Switzerland;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30463.04;37014;35218;34934;35841;34309;39150 -211;'756;Switzerland;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;248781.48;266360;253472;260411;265821;330971;339622 -211;'756;Switzerland;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58489.03;73211;73657;69549;52365;50127;37447 -211;'756;Switzerland;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;577883.83;644070;654659;682607;813196;856103;832287 -211;'756;Switzerland;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;224512.59;232311;204468;179359;185129;185634;187494 -211;'756;Switzerland;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;305392;316027;305725;298213;351153;382986;393167 -211;'756;Switzerland;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85470;89342;78539;67429;71637;80530;76825 -212;'760;Syrian Arab Republic;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;158412;201540;288891;194174;167559;126422;203960 -212;'760;Syrian Arab Republic;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5329;5106;5942;6276;15201;10177;8615 -212;'760;Syrian Arab Republic;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;13849;19451;8204;8296;10193;10060;11802;13476;13053;17414;13740;17111;31064;61261;47694;35411;79291;95200;100102;159203;156182;135407;117620;112207;116356;116281;67476;46873;57290;49955;50224;113076;72313;96729;68836;77032;134228;139742;141791;145047;158311;130190;318398;395046;391316;282611;412026;390404;367664;449526.78;431576;214667;112503;144877;85508;90695;126729;165488;254155;167697;140083;96272;171866 -212;'760;Syrian Arab Republic;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;145;177;157;119;234;281;350;581;82;402;741;347;860;281;1724;1070;2115;2183;3947;2554;2897;964;1085;947;947;947;947;947;947;947;947;2488;261;278;182;52;403;405;1040;1106;5617;8556;12393;8406;8406;3742;6873;12570;8483;11622;7928;5174;1739;1836;1285;1277;606;436;325;1120;7470;4909;3369 -212;'760;Syrian Arab Republic;1861;Roundwood;5516;Production;m3;80000;80000;80000;80000;80000;33300;34800;45600;62700;72000;70000;43300;51200;40900;53300;36100;31200;19800;36100;37000;37000;32400;44100;44100;44100;44100;74600;74200;51850;49600;80800;77660;50400;50400;50400;50400;50400;50400;50400;50400;50400;50400;58100;61419;62105;64347;65200;66100;66962;67893;68047;69608;70505;71428;72380;73099;73834;74585;75353;76138;76941;77760;78599 -212;'760;Syrian Arab Republic;1861;Roundwood;5616;Import quantity;m3;22000;19500;19200;22400;24900;14700;18300;34900;42200;24400;40900;50000;48700;17700;29600;39900;40000;65700;43300;60300;94300;64900;82000;22400;22400;22400;22400;22400;22400;136;1190;2523;2852;17168;11100;5000;5279;5279;1900;1100;1400;1144;27792;17552;17552;7563;13899;4303;4151;11887;145;283;135;1543;6380;3817;9954;6355;10411;1888;5248;1308;2022 -212;'760;Syrian Arab Republic;1861;Roundwood;5622;Import value;1000 USD;1409;1316;891;991;1151;745;930;1796;2242;1183;2721;3427;4551;2138;4235;7092;7773;15467;10760;17765;31638;20908;25866;4400;4400;4400;4400;4400;4400;32;301;352;262;1348;1268;945;1010;1010;322;303;338;467;11774;1135;1135;575;2548;1102;616;4253;126;132;39;320;383;217;775;588;724;195;532;241;125 -212;'760;Syrian Arab Republic;1861;Roundwood;5916;Export quantity;m3;1500;1600;2300;2000;1800;1800;1100;1200;100;100;100;100;100;100;1200;;;;;;;;;;;;;;;;;;;0;0;0;25;25;0;0;800;853;4013;16281;16281;18483;7919;11932;11932;4524;2217;15212;189;287;125;125;2;0;0;0;0;0;0 -212;'760;Syrian Arab Republic;1861;Roundwood;5922;Export value;1000 USD;80;124;107;59;134;189;162;201;20;20;20;20;20;42;493;;;;;;;;;;;;;;;;;;;0;0;0;5;5;0;0;460;505;229;794;794;766;367;570;570;343;248;1376;52;88;10;10;2;0;0;0;0;0;0 -212;'760;Syrian Arab Republic;1862;Roundwood, coniferous;5516;Production;m3;2000;2000;2000;2000;2000;3800;2800;7600;3000;4000;3300;4100;13800;5200;11000;7200;10100;7700;4400;7600;7600;4900;10600;12600;12600;14600;45400;45000;27850;24700;32600;30200;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;27400;30719;31405;32070;32800;33500;34208;34969;34969;36372;37105;37860;38638;39226;39827;40441;41069;41711;42367;43037;43723 -212;'760;Syrian Arab Republic;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;466;264;572;863;2828;188;0 -212;'760;Syrian Arab Republic;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;52;89;171;194;11;0 -212;'760;Syrian Arab Republic;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -212;'760;Syrian Arab Republic;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -212;'760;Syrian Arab Republic;1863;Roundwood, non-coniferous;5516;Production;m3;78000;78000;78000;78000;78000;29500;32000;38000;59700;68000;66700;39200;37400;35700;42300;28900;21100;12100;31700;29400;29400;27500;33500;31500;31500;29500;29200;29200;24000;24900;48200;47460;25400;25400;25400;25400;25400;25400;25400;25400;25400;25400;30700;30700;30700;32277;32400;32600;32754;32924;33078;33236;33400;33568;33742;33873;34007;34144;34284;34427;34574;34723;34876 -212;'760;Syrian Arab Republic;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9488;6091;9839;1025;2420;1120;2022 -212;'760;Syrian Arab Republic;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;680;536;635;24;338;230;125 -212;'760;Syrian Arab Republic;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;0;0 -212;'760;Syrian Arab Republic;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;0;0 -212;'760;Syrian Arab Republic;1864;Wood fuel;5516;Production;m3;50000;50000;50000;50000;50000;3300;1800;6600;10700;10000;3000;5300;14200;3900;8300;2100;7800;3900;12300;12300;12300;10000;10600;10600;10600;10600;10400;10000;11300;8900;18300;21160;15900;15900;15900;15900;15900;15900;15900;15900;15900;15900;18300;21619;22305;24547;25400;26300;27162;28093;28247;29808;30705;31628;32580;33299;34034;34785;35553;36338;37141;37960;38799 -212;'760;Syrian Arab Republic;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;355;355;355;355;355;355;355;355;120;120;132;132;132;132;;;;;;; -212;'760;Syrian Arab Republic;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;79;79;79;79;79;79;79;79;66;66;34;34;34;34;;;;;;; -212;'760;Syrian Arab Republic;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;3260;10000;10000;18060;7839;8652;8652;4456;2149;15151;125;125;125;125;;;;;;; -212;'760;Syrian Arab Republic;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;167;418;418;570;353;394;394;188;93;1336;10;10;10;10;;;;;;; -212;'760;Syrian Arab Republic;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;1800;800;5600;1000;2000;1300;2100;11800;3200;7000;200;5100;2700;3100;3100;3100;1600;2600;2600;2600;2600;7400;7000;6400;4000;9600;11200;13000;13000;13000;13000;13000;13000;13000;13000;13000;13000;15400;18719;19405;20070;20800;21500;22208;22969;22969;24372;25105;25860;26638;27226;27827;28441;29069;29711;30367;31037;31723 -212;'760;Syrian Arab Republic;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -212;'760;Syrian Arab Republic;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -212;'760;Syrian Arab Republic;1628;Wood fuel, non-coniferous;5516;Production;m3;50000;50000;50000;50000;50000;1500;1000;1000;9700;8000;1700;3200;2400;700;1300;1900;2700;1200;9200;9200;9200;8400;8000;8000;8000;8000;3000;3000;4900;4900;8700;9960;2900;2900;2900;2900;2900;2900;2900;2900;2900;2900;2900;2900;2900;4477;4600;4800;4954;5124;5278;5436;5600;5768;5942;6073;6207;6344;6484;6627;6774;6923;7076 -212;'760;Syrian Arab Republic;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;355;355;355;355;355;355;355;355;120;120;132;132;132;132;;;;;;; -212;'760;Syrian Arab Republic;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;79;79;79;79;79;79;79;79;66;66;34;34;34;34;;;;;;; -212;'760;Syrian Arab Republic;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;3260;10000;10000;18060;7839;8652;8652;4456;2149;15151;125;125;125;125;;;;;;; -212;'760;Syrian Arab Republic;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;167;418;418;570;353;394;394;188;93;1336;10;10;10;10;;;;;;; -212;'760;Syrian Arab Republic;1865;Industrial roundwood;5516;Production;m3;30000;30000;30000;30000;30000;30000;33000;39000;52000;62000;67000;38000;37000;37000;45000;34000;23400;15900;23800;24700;24700;22400;33500;33500;33500;33500;64200;64200;40550;40700;62500;56500;34500;34500;34500;34500;34500;34500;34500;34500;34500;34500;39800;39800;39800;39800;39800;39800;39800;39800;39800;39800;39800;39800;39800;39800;39800;39800;39800;39800;39800;39800;39800 -212;'760;Syrian Arab Republic;1865;Industrial roundwood;5616;Import quantity;m3;22000;19500;19200;22400;24900;14700;18300;34900;42200;24400;40900;50000;48700;17700;29600;39900;40000;65700;43300;60300;94300;64900;82000;22400;22400;22400;22400;22400;22400;136;1190;2523;2852;17168;11100;5000;5279;5279;1900;1100;1400;1144;27437;17197;17197;7208;13544;3948;3796;11532;25;163;3;1411;6248;3685;9954;6355;10411;1888;5248;1308;2022 -212;'760;Syrian Arab Republic;1865;Industrial roundwood;5622;Import value;1000 USD;1409;1316;891;991;1151;745;930;1796;2242;1183;2721;3427;4551;2138;4235;7092;7773;15467;10760;17765;31638;20908;25866;4400;4400;4400;4400;4400;4400;32;301;352;262;1348;1268;945;1010;1010;322;303;338;467;11695;1056;1056;496;2469;1023;537;4174;60;66;5;286;349;183;775;588;724;195;532;241;125 -212;'760;Syrian Arab Republic;1865;Industrial roundwood;5916;Export quantity;m3;1500;1600;2300;2000;1800;1800;1100;1200;100;100;100;100;100;100;1200;;;;;;;;;;;;;;;;;;;0;0;0;25;25;0;0;800;853;753;6281;6281;423;80;3280;3280;68;68;61;64;162;0;0;2;0;0;0;0;0;0 -212;'760;Syrian Arab Republic;1865;Industrial roundwood;5922;Export value;1000 USD;80;124;107;59;134;189;162;201;20;20;20;20;20;42;493;;;;;;;;;;;;;;;;;;;0;0;0;5;5;0;0;460;505;62;376;376;196;14;176;176;155;155;40;42;78;0;0;2;0;0;0;0;0;0 -212;'760;Syrian Arab Republic;1866;Industrial roundwood, coniferous;5516;Production;m3;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;4000;7000;5000;5000;1300;4500;4500;3300;8000;10000;10000;12000;38000;38000;21450;20700;23000;19000;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;12000;12000 -212;'760;Syrian Arab Republic;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;872;1522;1851;10251;10400;5000;5000;5000;1000;200;500;835;4527;15863;15863;2692;5158;3356;1598;10570;0;2;2;2;0;0;466;264;572;863;2828;188;0 -212;'760;Syrian Arab Republic;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;216;235;145;714;1171;945;945;945;132;113;148;365;276;968;968;164;1189;886;186;3966;0;0;0;0;0;0;95;52;89;171;194;11;0 -212;'760;Syrian Arab Republic;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;302;302;302;92;64;3275;3275;61;61;7;7;70;0;0;0;0;0;0;0;0;0 -212;'760;Syrian Arab Republic;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;5;3;174;174;3;3;0;0;4;0;0;0;0;0;0;0;0;0 -212;'760;Syrian Arab Republic;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;872;1522;1851;10251;10400;5000;5000;5000;1000;200;500;835;4527;15863;15863;2692;5158;3356;1598;10570;0;2;2;2;0;0;466;264;572;863;2828;188;0 -212;'760;Syrian Arab Republic;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;216;235;145;714;1171;945;945;945;132;113;148;365;276;968;968;164;1189;886;186;3966;0;0;0;0;0;0;95;52;89;171;194;11;0 -212;'760;Syrian Arab Republic;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;302;302;302;92;64;3275;3275;61;61;7;7;70;0;0;0;0;0;0;0;0;0 -212;'760;Syrian Arab Republic;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;5;3;174;174;3;3;0;0;4;0;0;0;0;0;0;0;0;0 -212;'760;Syrian Arab Republic;1867;Industrial roundwood, non-coniferous;5516;Production;m3;28000;28000;28000;28000;28000;28000;31000;37000;50000;60000;65000;36000;35000;35000;41000;27000;18400;10900;22500;20200;20200;19100;25500;23500;23500;21500;26200;26200;19100;20000;39500;37500;22500;22500;22500;22500;22500;22500;22500;22500;22500;22500;27800;27800;27800;27800;27800;27800;27800;27800;27800;27800;27800;27800;27800;27800;27800;27800;27800;27800;27800;27800;27800 -212;'760;Syrian Arab Republic;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;136;318;1001;1001;6917;700;0;279;279;900;900;900;309;22910;1334;1334;4516;8386;592;2198;962;25;161;1;1409;6248;3685;9488;6091;9839;1025;2420;1120;2022 -212;'760;Syrian Arab Republic;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;85;117;117;634;97;0;65;65;190;190;190;102;11419;88;88;332;1280;137;351;208;60;66;5;286;349;183;680;536;635;24;338;230;125 -212;'760;Syrian Arab Republic;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;25;25;0;0;800;853;451;5979;5979;331;16;5;5;7;7;54;57;92;0;0;2;0;0;0;0;0;0 -212;'760;Syrian Arab Republic;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;5;5;0;0;460;505;46;360;360;191;11;2;2;152;152;40;42;74;0;0;2;0;0;0;0;0;0 -212;'760;Syrian Arab Republic;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;17;236;0;0;22;0;0 -212;'760;Syrian Arab Republic;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;7;119;0;0;14;0;0 -212;'760;Syrian Arab Republic;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;38;38;38;3;3;3;3;3;52;52;3;0;0;1;0;0;0;0;0;0 -212;'760;Syrian Arab Republic;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;0;0;0;0;0;40;40;1;0;0;1;0;0;0;0;0;0 -212;'760;Syrian Arab Republic;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;136;318;1001;1001;6917;700;0;279;279;900;900;900;309;22910;1334;1334;4516;8386;592;2198;962;25;161;1;1409;6248;3685;9471;5855;9839;1025;2398;1120;2022 -212;'760;Syrian Arab Republic;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;85;117;117;634;97;0;65;65;190;190;190;102;11419;88;88;332;1280;137;351;208;60;66;5;286;349;183;673;417;635;24;324;230;125 -212;'760;Syrian Arab Republic;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;25;25;0;0;800;853;413;5941;5941;293;13;2;2;4;4;2;5;89;0;0;1;0;0;0;0;0;0 -212;'760;Syrian Arab Republic;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;5;5;0;0;460;505;36;350;350;181;11;2;2;152;152;0;2;73;0;0;1;0;0;0;0;0;0 -212;'760;Syrian Arab Republic;1868;Sawlogs and veneer logs;5516;Production;m3;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;8000;7000;11000;8000;9000;6400;6200;5300;6200;6200;3900;15000;15000;15000;15000;45700;45700;22050;22200;44000;38000;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;16000;16000;16000;16000;16000;16000 -212;'760;Syrian Arab Republic;1868;Sawlogs and veneer logs;5616;Import quantity;m3;19700;18000;14400;19400;24000;13400;14000;33500;39000;23700;37100;46100;44800;13800;28000;39600;38500;50800;42200;39700;42200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -212;'760;Syrian Arab Republic;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;1219;1132;485;859;1087;657;680;1643;1969;1130;2436;3090;4214;1801;3962;7027;7357;11628;10416;12782;11307;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -212;'760;Syrian Arab Republic;1868;Sawlogs and veneer logs;5916;Export quantity;m3;1500;1600;2300;2000;1800;1800;1100;1200;100;100;100;100;100;100;1200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -212;'760;Syrian Arab Republic;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;80;124;107;59;134;189;162;201;20;20;20;20;20;42;493;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -212;'760;Syrian Arab Republic;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;4000;7000;5000;5000;1300;4500;4500;3300;8000;10000;10000;12000;38000;38000;21450;20700;23000;19000;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;12000;12000 -212;'760;Syrian Arab Republic;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;4200;8700;5000;7300;100;4900;5000;11000;37200;22900;36900;41800;37400;3400;25000;16700;37000;33500;2400;300;6100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -212;'760;Syrian Arab Republic;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;183;441;174;302;5;225;230;631;1906;1101;2384;2697;2682;508;3203;2244;7118;8210;455;84;782;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -212;'760;Syrian Arab Republic;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -212;'760;Syrian Arab Republic;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -212;'760;Syrian Arab Republic;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;6000;5000;9000;4000;2000;1400;1200;4000;1700;1700;600;7000;5000;5000;3000;7700;7700;600;1500;21000;19000;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 -212;'760;Syrian Arab Republic;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;15500;9300;9400;12100;23900;8500;9000;22500;1800;800;200;4300;7400;10400;3000;22900;1500;17300;39800;39400;36100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -212;'760;Syrian Arab Republic;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;1036;691;311;557;1082;432;450;1012;63;29;52;393;1532;1293;759;4783;239;3418;9961;12698;10525;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -212;'760;Syrian Arab Republic;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;1500;1600;2300;2000;1800;1800;1100;1200;100;100;100;100;100;100;1200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -212;'760;Syrian Arab Republic;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;80;124;107;59;134;189;162;201;20;20;20;20;20;42;493;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -212;'760;Syrian Arab Republic;1871;Other industrial roundwood;5516;Production;m3;20000;20000;20000;20000;20000;20000;23000;29000;42000;52000;57000;30000;30000;26000;37000;25000;17000;9700;18500;18500;18500;18500;18500;18500;18500;18500;18500;18500;18500;18500;18500;18500;18500;18500;18500;18500;18500;18500;18500;18500;18500;18500;23800;23800;23800;23800;23800;23800;23800;23800;23800;23800;23800;23800;23800;23800;23800;23800;23800;23800;23800;23800;23800 -212;'760;Syrian Arab Republic;1871;Other industrial roundwood;5616;Import quantity;m3;2300;1500;4800;3000;900;1300;4300;1400;3200;700;3800;3900;3900;3900;1600;300;1500;14900;1100;20600;52100;64900;82000;22400;22400;22400;22400;22400;22400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -212;'760;Syrian Arab Republic;1871;Other industrial roundwood;5622;Import value;1000 USD;190;184;406;132;64;88;250;153;273;53;285;337;337;337;273;65;416;3839;344;4983;20331;20908;25866;4400;4400;4400;4400;4400;4400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -212;'760;Syrian Arab Republic;1871;Other industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -212;'760;Syrian Arab Republic;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;20000;20000;20000;20000;20000;20000;23000;29000;42000;52000;57000;30000;30000;26000;37000;25000;17000;9700;18500;18500;18500;18500;18500;18500;18500;18500;18500;18500;18500;18500;18500;18500;18500;18500;18500;18500;18500;18500;18500;18500;18500;18500;23800;23800;23800;23800;23800;23800;23800;23800;23800;23800;23800;23800;23800;23800;23800;23800;23800;23800;23800;23800;23800 -212;'760;Syrian Arab Republic;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;2300;1500;4800;3000;900;1300;4300;1400;3200;700;3800;3900;3900;3900;1600;300;1500;14900;1100;20600;52100;64900;82000;22400;22400;22400;22400;22400;22400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -212;'760;Syrian Arab Republic;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;190;184;406;132;64;88;250;153;273;53;285;337;337;337;273;65;416;3839;344;4983;20331;20908;25866;4400;4400;4400;4400;4400;4400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -212;'760;Syrian Arab Republic;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -212;'760;Syrian Arab Republic;1630;Wood charcoal;5510;Production;t;6372;7430;9291;9555;9722;9892;9964;10240;10318;10600;10800;10615;11437;11241;11198;500;1800;600;1200;2400;1300;600;1900;700;700;700;700;700;700;700;700;700;700;700;700;700;700;4000;4000;4000;4000;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700;2700 -212;'760;Syrian Arab Republic;1630;Wood charcoal;5610;Import quantity;t;2700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;18;18;18;18;225;879;337;1192;626;420;2103;327;221;116;366;318;797;761;1628;2678;2429 -212;'760;Syrian Arab Republic;1630;Wood charcoal;5622;Import value;1000 USD;278;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;5;5;5;5;67;211;213;292;345;173;496;142;42;174;267;142;280;503;853;1351;1988 -212;'760;Syrian Arab Republic;1630;Wood charcoal;5910;Export quantity;t;;100;100;200;400;300;300;500;0;0;0;0;0;0;100;500;1800;600;1200;2400;1300;600;1900;700;700;700;700;700;700;700;700;700;102;138;100;100;55;55;2000;2000;5500;608;2604;2604;2604;2311;2289;3544;2897;2638;3256;3174;1257;781;12;2;36;31;207;11;2;30;0 -212;'760;Syrian Arab Republic;1630;Wood charcoal;5922;Export value;1000 USD;;2;3;10;12;7;7;19;0;0;0;0;0;0;4;70;188;94;187;202;147;130;251;113;113;113;113;113;113;113;113;113;22;27;19;25;40;40;147;147;924;172;415;415;415;710;865;1348;1656;1619;1701;1509;342;140;6;2;23;17;46;7;1;5;0 -212;'760;Syrian Arab Republic;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1500;200;200;200;17;1084;2612;2612;1543;1548;203;207;198;186;199;199;199;199;185;851;1921;3499;1450;5542;6972;11074 -212;'760;Syrian Arab Republic;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;130;15;15;15;9;183;264;264;118;127;115;85;74;70;76;76;76;76;69;109;198;175;69;117;104;489 -212;'760;Syrian Arab Republic;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;145;132;132;85;54;40;70;35;35;94;94;94;94;94;94;94;94;94;94;94;94 -212;'760;Syrian Arab Republic;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;34;6;6;9;18;16;16;8;8;8;8;8;8;8;8;8;8;8;8;8;8 -212;'760;Syrian Arab Republic;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1528;1528;1528;1528;183;183;183;183;183;183;183;183;183;183;183;15;15;20;329;0 -212;'760;Syrian Arab Republic;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;81;81;81;69;69;69;69;69;69;69;69;69;69;69;0;0;1;1;1 -212;'760;Syrian Arab Republic;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;57;1;23;25;59;24;24;60;60;60;60;60;60;60;60;60;60;60;60 -212;'760;Syrian Arab Republic;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;0;11;13;13;5;5;4;4;4;4;4;4;4;4;4;4;4;4 -212;'760;Syrian Arab Republic;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;56;71;0;0;3054;1500;200;200;200;17;1084;1084;1084;15;20;20;24;15;3;16;16;16;16;2;668;1738;3484;1435;5522;6643;11074 -212;'760;Syrian Arab Republic;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;3;0;0;247;130;15;15;15;9;183;183;183;37;46;46;16;5;1;7;7;7;7;0;40;129;175;69;116;103;488 -212;'760;Syrian Arab Republic;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;0;0;0;0;0;0;0;0;145;75;75;84;31;15;11;11;11;34;34;34;34;34;34;34;34;34;34;34;34 -212;'760;Syrian Arab Republic;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;0;0;0;0;34;3;3;9;7;3;3;3;3;4;4;4;4;4;4;4;4;4;4;4;4 -212;'760;Syrian Arab Republic;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1560;54 -212;'760;Syrian Arab Republic;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;168;17 -212;'760;Syrian Arab Republic;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1 -212;'760;Syrian Arab Republic;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -212;'760;Syrian Arab Republic;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;773;20 -212;'760;Syrian Arab Republic;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97;8 -212;'760;Syrian Arab Republic;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;787;34 -212;'760;Syrian Arab Republic;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;9 -212;'760;Syrian Arab Republic;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1 -212;'760;Syrian Arab Republic;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -212;'760;Syrian Arab Republic;1872;Sawnwood;5516;Production;m3;5300;5300;5300;5300;5300;2800;3400;3900;4800;700;500;500;200;400;400;2000;2000;2000;7600;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 -212;'760;Syrian Arab Republic;1872;Sawnwood;5616;Import quantity;m3;86500;123200;93600;86100;88100;94100;137700;75500;109200;155400;80400;106100;131800;179700;117700;128300;271900;181700;257100;268200;237200;205900;92500;285900;285900;286200;4565;11116;33958;12162;12162;260082;90785;135444;135444;125500;203391;225300;323300;290500;324100;395103;528355;753478;674578;538821;580201;594429;599935;694517;617000;295961;186189;182185;141996;80998;120763;143512;122031;33084;24503;15399;49134 -212;'760;Syrian Arab Republic;1872;Sawnwood;5622;Import value;1000 USD;7280;10447;4804;4502;4780;5278;5450;4129;5736;11032;5572;7448;16734;31175;18668;20149;49741;35847;46286;75802;56296;50134;20810;56372;56372;56697;986;2319;7647;4048;4048;64641;19576;28433;28433;28326;38083;37547;45123;45415;47764;57603;108454;135299;131569;90135;126714;136116;116588;139265;125935;60224;36918;40082;25892;14436;23721;36279;25971;6488;5944;4915;19642 -212;'760;Syrian Arab Republic;1872;Sawnwood;5916;Export quantity;m3;200;100;100;100;100;300;300;2800;1500;6100;9400;3400;3400;3400;5300;9300;18600;24600;25600;18600;26600;;;;;;;;;;;;;136;136;0;175;172;100;100;100;58;231;1766;1766;98;351;3752;159;70;58;37;171;52;8;0;0;66;16;0;0;0;19 -212;'760;Syrian Arab Republic;1872;Sawnwood;5922;Export value;1000 USD;8;4;4;3;3;3;3;32;17;337;564;153;598;99;768;682;1667;1749;1825;1331;1916;;;;;;;;;;;;;48;48;0;46;45;21;20;20;61;407;439;439;196;895;2499;305;34;84;18;145;34;4;0;0;9;3;1;4;0;9 -212;'760;Syrian Arab Republic;1632;Sawnwood, coniferous;5516;Production;m3;3450;3450;3450;3450;3450;;;;;;;;;;;;;;1800;6600;6600;6600;6600;6600;6600;6600;6600;6600;6600;6600;6600;6600;6600;6600;6600;6600;6600;6600;6600;6600;6600;6600;6600;6600;6600;6600;6600;6600;6600;6600;6600;6600;6600;6600;6600;6600;6600;6600;6600;6600;6600;6600;6600 -212;'760;Syrian Arab Republic;1632;Sawnwood, coniferous;5616;Import quantity;m3;78050;110600;78550;75900;75000;80500;111400;70400;107000;153050;79600;105700;109600;145800;113650;120350;247800;168600;236950;253500;210600;156450;69950;230250;230250;230550;4398;10220;31397;8834;8834;108428;49085;100369;100369;91200;175815;189000;226300;208300;249900;309300;379100;495100;416200;427839;488168;475988;493788;594555;554000;276000;179000;174000;129454;72571;112625;129894;100785;14644;15149;10257;46754 -212;'760;Syrian Arab Republic;1632;Sawnwood, coniferous;5622;Import value;1000 USD;6725;9159;3942;3964;3964;4483;4175;3904;5590;10904;5528;7423;14901;24417;18279;18741;45127;33609;41778;72105;49387;34449;15055;42742;42742;43067;917;2045;6930;2773;2773;22107;7273;17904;17904;17128;28995;26603;29970;26096;29655;37810;43851;56494;52764;62456;99463;96944;85463;109405;106159;53034;34166;36896;22149;11343;20369;31263;22210;2671;3643;2761;18560 -212;'760;Syrian Arab Republic;1632;Sawnwood, coniferous;5916;Export quantity;m3;200;100;100;100;100;300;300;2800;1500;6100;9400;3400;3400;3400;5300;9300;18600;24600;25600;18600;26600;;;;;;;;;;;;;0;0;0;3;0;0;0;0;22;115;709;709;2;2;3442;25;66;24;24;24;24;1;0;0;64;16;0;0;0;0 -212;'760;Syrian Arab Republic;1632;Sawnwood, coniferous;5922;Export value;1000 USD;8;4;4;3;3;3;3;32;17;337;564;153;598;99;768;682;1667;1749;1825;1331;1916;;;;;;;;;;;;;0;0;0;1;0;0;0;0;27;159;118;118;1;1;2003;21;32;5;5;5;5;0;0;0;8;3;1;0;0;0 -212;'760;Syrian Arab Republic;1633;Sawnwood, non-coniferous;5516;Production;m3;1850;1850;1850;1850;1850;2800;3400;3900;4800;700;500;500;200;400;400;2000;2000;2000;5800;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;2400;2400;2400;2400;2400;2400;2400;2400;2400;2400;2400;2400;2400;2400;2400 -212;'760;Syrian Arab Republic;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;8450;12600;15050;10200;13100;13600;26300;5100;2200;2350;800;400;22200;33900;4050;7950;24100;13100;20150;14700;26600;49450;22550;55650;55650;55650;167;896;2561;3328;3328;151654;41700;35075;35075;34300;27576;36300;97000;82200;74200;85803;149255;258378;258378;110982;92033;118441;106147;99962;63000;19961;7189;8185;12542;8427;8138;13618;21246;18440;9354;5142;2380 -212;'760;Syrian Arab Republic;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;555;1288;862;538;816;795;1275;225;146;128;44;25;1833;6758;389;1408;4614;2238;4508;3697;6909;15685;5755;13630;13630;13630;69;274;717;1275;1275;42534;12303;10529;10529;11198;9088;10944;15153;19319;18109;19793;64603;78805;78805;27679;27251;39172;31125;29860;19776;7190;2752;3186;3743;3093;3352;5016;3761;3817;2301;2154;1082 -212;'760;Syrian Arab Republic;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;136;136;0;172;172;100;100;100;36;116;1057;1057;96;349;310;134;4;34;13;147;28;7;0;0;2;0;0;0;0;19 -212;'760;Syrian Arab Republic;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;48;0;45;45;21;20;20;34;248;321;321;195;894;496;284;2;79;13;140;29;4;0;0;1;0;0;4;0;9 -212;'760;Syrian Arab Republic;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;7100;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;9700;9700;9700;9700;9700;9700;9700;9700;9700;10000;10000;10000;10000;10000;10000;10000;10000;10000 -212;'760;Syrian Arab Republic;1634;Veneer sheets;5616;Import quantity;m3;100;200;100;41;20;100;100;100;100;100;100;100;700;700;700;400;3200;11000;9500;9700;24600;600;600;600;600;600;600;600;600;600;600;14019;1099;3594;2000;2000;2197;2100;3900;3000;2600;974;6688;5667;5667;3067;3356;4015;2220;2150;1482;215;184;322;335;113;193;531;396;10;62;54;876 -212;'760;Syrian Arab Republic;1634;Veneer sheets;5622;Import value;1000 USD;73;215;61;25;13;42;42;42;42;42;42;15;348;639;318;121;1284;5682;3949;4100;13565;1167;1167;1167;1167;1167;1167;1167;1167;1167;1167;5991;1683;2111;1521;1278;1247;990;2253;1672;1066;794;4369;4417;4417;2794;4184;5520;3701;3456;2485;495;355;659;422;216;375;651;432;77;227;109;2472 -212;'760;Syrian Arab Republic;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;27;0;0;36;0;0;0;0;0;29;15;15;15;62;124;58;198;31;24;24;24;0;0;0;0;0;0;28;0;0 -212;'760;Syrian Arab Republic;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;27;38;0;0;17;0;0;0;0;0;14;12;12;8;445;729;546;641;167;150;150;150;0;0;0;0;0;0;24;0;0 -212;'760;Syrian Arab Republic;1873;Wood-based panels;5516;Production;m3;11000;11000;11000;11000;11000;9200;10700;14700;16000;17800;16300;16600;21000;13500;12400;11900;12400;16000;18400;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;17000;17000;17000;17000;17200;17200;17200;17200;17200;17200;17200;17200;17200 -212;'760;Syrian Arab Republic;1873;Wood-based panels;5616;Import quantity;m3;;;200;1500;200;100;400;100;200;100;100;100;2000;8200;2800;900;8500;12300;5500;14100;50700;52300;53300;35900;35900;35900;3421;2965;4040;2363;2363;23484;12476;47406;23990;47400;66268;65368;72600;102500;103800;184281;394308;582437;582437;309079;453518;254612;435389;309507.18;185778;94560;70313;58389;36771;32096;37408;112068;195198;154506;142752;46577;98260 -212;'760;Syrian Arab Republic;1873;Wood-based panels;5622;Import value;1000 USD;;;35;160;19;26;14;29;60;31;54;44;891;1443;948;278;2235;5011;1806;5508;20036;27152;26681;11645;11645;11645;1362;1087;1363;796;796;5409;2993;9571;7394;10758;16293;15183;19266;13585;15653;18983;55604;96343;96343;47854;89181;51188;80204;71933.78;66739;34968;26458;24862;15151;11992;18063;39174;51930;41847;41044;20095;42077 -212;'760;Syrian Arab Republic;1873;Wood-based panels;5916;Export quantity;m3;100;100;100;100;400;600;1200;2000;100;100;100;300;800;;;;;;;;;;;;;;;;;;;2;144;144;144;1;111;110;108;208;14808;1098;1258;1293;1293;963;730;174;757;468;599;562;258;176;175;176;177;158;91;10;5;51;165 -212;'760;Syrian Arab Republic;1873;Wood-based panels;5922;Export value;1000 USD;37;37;37;23;81;78;167;316;15;15;27;34;102;;;;;;;;;;;;;;;;;;;1;89;89;89;1;66;65;73;140;546;224;219;254;254;169;219;245;807;715;913;433;197;152;151;151;151;107;62;2;1;34;243 -212;'760;Syrian Arab Republic;1640;Plywood and LVL;5516;Production;m3;11000;11000;11000;11000;11000;9200;10700;11900;11700;11200;11900;12200;11000;5300;8400;7100;9200;9500;9200;7800;7800;7800;7800;7800;7800;7800;7800;7800;7800;7800;7800;7800;7800;7800;7800;7800;7800;7800;7800;7800;7800;7800;7800;7800;7800;7800;7800;7800;7800;7800;7800;7800;7800;7800;8000;8000;8000;8000;8000;8000;8000;8000;8000 -212;'760;Syrian Arab Republic;1640;Plywood and LVL;5616;Import quantity;m3;;;200;1500;200;100;400;100;200;100;100;100;2000;8200;2800;900;8500;12300;5500;14100;16500;24300;24300;8700;8700;8700;2095;601;2075;671;671;2990;935;12723;12723;13100;9800;8900;7600;5100;10000;2639;15316;10710;10710;9038;1926;5957;5399;2307;3834;647;563;1338;2868;2774;4394;4253;7052;3063;3828;2174;14982 -212;'760;Syrian Arab Republic;1640;Plywood and LVL;5622;Import value;1000 USD;;;35;160;19;26;14;29;60;31;54;44;891;1443;948;278;2235;5011;1806;5508;6442;12795;12795;3777;3777;3777;969;215;799;250;250;1453;520;3859;3859;4387;3401;2291;2635;1786;3526;829;9088;3802;3802;5007;8667;6569;6351;2960;3405;861;679;1839;1353;1228;1727;1990;2929;1858;2011;1578;13467 -212;'760;Syrian Arab Republic;1640;Plywood and LVL;5916;Export quantity;m3;100;100;100;100;400;600;1200;2000;100;100;100;300;800;;;;;;;;;;;;;;;;;;;2;1;1;1;1;1;0;0;0;14600;100;395;71;71;153;43;147;3;57;57;7;7;1;0;1;2;0;0;0;0;0;143 -212;'760;Syrian Arab Republic;1640;Plywood and LVL;5922;Export value;1000 USD;37;37;37;23;81;78;167;316;15;15;27;34;102;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;0;0;0;406;101;107;23;23;45;35;189;1;67;67;4;4;1;0;0;0;0;0;0;0;0;231 -212;'760;Syrian Arab Republic;1646;Particle board and OSB (1961-1994);5516;Production;m3;;;;;;;;2800;4300;6600;4400;4400;10000;8200;4000;4800;3200;6500;9200;9200;9200;9200;9200;9200;9200;9200;9200;9200;9200;9200;9200;9200;9200;9200;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -212;'760;Syrian Arab Republic;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;27300;24300;24300;13700;13700;13700;1001;1419;560;181;181;1974;1063;5239;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -212;'760;Syrian Arab Republic;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;11855;12796;12796;4165;4165;4165;272;569;129;54;54;461;275;1013;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -212;'760;Syrian Arab Republic;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9200;9200;9200;9200;9200;9200;9200;9200;9200;9200;9200;9200;9200;9200;9200;9200;9200;9200;9200;9200;9200;9200;9200;9200;9200;9200;9200;9200;9200 -212;'760;Syrian Arab Republic;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1500;2700;4376;4376;2600;1600;2000;2190;6486;10316;10316;3442;3537;8027;6559;14128;17580;0;83;0;0;0;1555;1555;2158;1188;7216;10363;8368 -212;'760;Syrian Arab Republic;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;445;487;657;657;461;393;280;392;1244;1692;1692;397;1454;3348;2554;4109;5191;0;3;0;0;0;542;542;685;285;2079;3258;3112 -212;'760;Syrian Arab Republic;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102;102;100;200;200;990;302;381;381;132;38;4;8;9;2;80;4;4;4;4;4;4;1;8;3;0;9 -212;'760;Syrian Arab Republic;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;56;64;131;131;114;59;62;62;35;91;4;3;5;2;93;4;4;4;4;4;4;0;1;0;0;4 -212;'760;Syrian Arab Republic;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;912;8486;8486;2946;2509;5377;12;303;303;179;179;200;200;200;6;3;3;3;14;3;3 -212;'760;Syrian Arab Republic;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;148;1392;1392;391;1012;1967;16;136;136;85;85;87;87;87;2;2;2;2;3;2;2 -212;'760;Syrian Arab Republic;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;1;1;1;0;0;0;5;0;0;0;0;0;0;0;0;0;5;5 -212;'760;Syrian Arab Republic;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;1;1;8;0;0;0;6;0;0;0;0;0;0;0;0;0;2;2 -212;'760;Syrian Arab Republic;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;6900;3700;4700;13500;13500;13500;325;945;1405;1511;1511;18520;10478;29444;9767;31600;52092;52092;62400;95800;91800;179452;371594;552925;552925;293653;445546;235251;423419;292769.18;164061;93734;69488;56851;33703;29122;31453;106257;185985;150252;131694;34037;74907 -212;'760;Syrian Arab Republic;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;1739;1561;1090;3703;3703;3703;121;303;435;492;492;3495;2198;4699;3090;5884;12235;12235;16170;11406;11847;17762;45124;89457;89457;42059;78048;39304;71283;64728.78;58007;34022;25691;22936;13711;10677;15792;36640;48314;39702;36951;15257;25496 -212;'760;Syrian Arab Republic;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;143;143;143;0;8;8;8;8;8;8;558;838;838;677;648;22;746;402;540;470;247;171;171;171;171;154;90;2;2;46;8 -212;'760;Syrian Arab Republic;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88;88;88;0;9;9;9;9;9;9;50;166;166;88;92;44;803;643;844;330;189;147;147;147;147;103;62;1;1;32;6 -212;'760;Syrian Arab Republic;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1600;13300;23252;23252;18000;23800;7500;7168;28985;13298;13298;25831;10076;7248;21911;6795;83;2194;2194;2194;675;580;1296;1087;1393;1557;2245;1718;1090 -212;'760;Syrian Arab Republic;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;501;2836;5342;5342;3609;3748;1260;1180;6833;6170;6170;7351;3942;3250;5589;2428;56;910;910;910;184;167;322;362;428;475;817;1010;558 -212;'760;Syrian Arab Republic;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;8;8;556;136;136;3;3;3;3;3;2;2;2;2;2;2;2;2;2;2;2;2;2 -212;'760;Syrian Arab Republic;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;9;50;55;55;5;5;5;5;5;1;1;1;1;1;1;1;1;1;1;1;1;1 -212;'760;Syrian Arab Republic;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8000;10000;21638;21638;44000;68600;70000;135284;162609;335315;335315;264278;432400;214990;339932;232359.18;113512;81024;40127;37256;14071;24814;21086;61038;74506;72035;46429;29211;70721 -212;'760;Syrian Arab Republic;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2526;2480;6386;6386;12538;7468;9745;14922;20698;57339;57339;34265;73685;33538;51198;49478.78;43243;29819;16626;14758;7377;7791;9079;22353;31665;27776;20638;13092;23708 -212;'760;Syrian Arab Republic;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;11;18;706;347;431;448;225;149;149;149;149;149;88;0;0;44;6 -212;'760;Syrian Arab Republic;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;13;37;707;510;620;283;142;100;100;100;100;100;61;0;0;31;5 -212;'760;Syrian Arab Republic;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3711;743;167;167;8300;7202;7202;400;3400;14300;37000;180000;204312;204312;3544;3070;13013;61576;53615;50466;10516;27167;17401;18957;3728;9071;44132;110086;76660;83020;3108;3096 -212;'760;Syrian Arab Republic;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;399;201;63;63;568;507;507;23;190;842;1660;17593;25948;25948;443;421;2516;14496;12822;14708;3293;8155;7268;6150;2719;6391;13925;16221;11451;15496;1155;1230 -212;'760;Syrian Arab Republic;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;143;143;143;0;0;0;0;0;0;0;2;702;702;634;634;1;37;52;107;20;20;20;20;20;20;3;0;0;0;0;0 -212;'760;Syrian Arab Republic;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88;88;88;0;0;0;0;0;0;0;0;111;111;74;74;2;91;128;223;46;46;46;46;46;46;2;0;0;0;0;0 -212;'760;Syrian Arab Republic;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;6900;3700;4700;13500;13500;13500;325;945;1405;1511;1511;14809;9735;29277;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -212;'760;Syrian Arab Republic;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;1739;1561;1090;3703;3703;3703;121;303;435;492;492;3096;1997;4636;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -212;'760;Syrian Arab Republic;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;1400;1400;1500;1300;300;100;100;100;368;636;1408;766;766;6096;6892;6348;7965;14915;16278;16278;15900;14103;30000;19569;40828;89822;89822;52434;64103;39166;57188;62695;41065;18382;17504;19915;9819;12939;21524;23194;63640;47553;27162;17280;40248 -212;'760;Syrian Arab Republic;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;184;184;171;143;41;14;14;14;74;189;403;232;232;3186;2463;2575;3268;5971;5630;5630;6264;7565;10829;9421;15409;24959;24959;24208;36476;30139;27366;45070;29557;14961;10251;11410;5026;6467;12377;17210;41807;24863;20593;17898;28320 -212;'760;Syrian Arab Republic;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;130;130;130;0;0;0;0;0;0;0;0;2;2;2;1;63;2;28;28;36;36;250;250;250;250;250;250;19;34;4274;2991;1514 -212;'760;Syrian Arab Republic;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;48;48;0;0;0;0;0;0;0;0;3;3;3;0;4;2;14;14;42;42;112;112;112;112;112;112;41;55;723;491;202 -212;'760;Syrian Arab Republic;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3797;4797;4442;6965;11215;12676;12676;14700;11003;19000;11269;30129;50377;50377;46916;56984;37732;54179;60038;37173;16781;17334;19307;9513;12378;21093;23139;61604;45895;26477;17177;40145 -212;'760;Syrian Arab Republic;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2560;2194;2287;3008;5059;4790;4790;6082;7028;9107;7402;13796;20581;20581;23074;33896;29418;26746;43975;28055;14153;10177;11233;4891;6374;12269;17187;40773;24059;20357;17870;28292 -212;'760;Syrian Arab Republic;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;130;130;130;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;8;8;8;8;8;8;8;8;8;8;8;8;8 -212;'760;Syrian Arab Republic;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;48;48;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;28;28;28;28;28;28;28;28;28;28;28;28;28 -212;'760;Syrian Arab Republic;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3859;4940;4585;6915;11215;13638;13638;16700;13003;20700;12969;33484;50941;50941;48296;63933;41689;58541;63155;40292;19900;20398;19228;9434;12299;21014;23132;61597;45888;26470;17151;40111 -212;'760;Syrian Arab Republic;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2602;2286;2379;2986;5059;5351;5351;7018;7964;9873;8168;15291;20831;20831;23977;37186;31240;28156;45444;29511;15609;11686;11221;4879;6362;12257;17164;40750;24036;20334;17857;28242 -212;'760;Syrian Arab Republic;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;130;130;130;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;8;8;8;8;8;8;8;8;8;8;8;8;8 -212;'760;Syrian Arab Republic;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;48;48;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;28;28;28;28;28;28;28;28;28;28;28;28;28 -212;'760;Syrian Arab Republic;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;59 -212;'760;Syrian Arab Republic;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;56 -212;'760;Syrian Arab Republic;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1742;15;15;15;15;1180;1180;100;0;0;12;34;370;370;101;84;48;24;493;48;48;48;48;48;48;;;;;;; -212;'760;Syrian Arab Republic;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1367;9;9;9;9;123;123;25;0;0;9;23;123;123;78;56;36;18;335;34;34;34;34;34;34;;;;;;; -212;'760;Syrian Arab Republic;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;199;199;100;100;50;50;0;0;100;100;2048;4603;4603;1322;1322;822;822;1378;1378;554;554;554;192;192;;;;;;; -212;'760;Syrian Arab Republic;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;83;83;72;72;22;22;0;0;42;42;982;1818;1818;467;467;554;554;774;774;250;250;250;69;69;;;;;;; -212;'760;Syrian Arab Republic;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2004;4533;4178;6800;11100;11200;11200;14600;11003;18600;10857;27747;44586;44586;45491;55576;36831;53213;58141;35723;16155;16653;18626;9194;12059;21014;23128;61593;45884;26466;17088;40048 -212;'760;Syrian Arab Republic;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1172;2080;2173;2905;4978;4547;4547;6057;7028;8895;7181;12621;17985;17985;22527;33371;28798;26074;42814;27182;13804;9881;10937;4776;6259;12257;17160;40746;24032;20330;17797;28182 -212;'760;Syrian Arab Republic;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;130;130;130;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;8;8;8;8;8;8;8;8;8;8;8;8;8 -212;'760;Syrian Arab Republic;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;48;48;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;28;28;28;28;28;28;28;28;28;28;28;28;28 -212;'760;Syrian Arab Republic;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1200;1200;1200;0;0;0;0;1879;15242;15242;511;18400;3124;2168;14439;12140;2323;2323;2323;2323;2323;2323;2323;2323;2323;2323;2323;2323 -212;'760;Syrian Arab Republic;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;499;499;499;0;0;0;0;1027;5411;5411;175;9043;1220;602;6890;6892;893;893;893;893;893;893;893;893;893;893;893;893 -212;'760;Syrian Arab Republic;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1842;4472;2440;2100;7800;9500;9500;14600;11000;17400;10150;24485;25594;25594;42095;37124;32817;45579;42510;22763;13060;13558;16303;6871;9734;18691;20780;59245;43536;24118;14740;37700 -212;'760;Syrian Arab Republic;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1072;2046;1235;1295;3561;3874;3874;6057;7024;8068;6777;11038;10800;10800;21288;24277;26842;22480;35182;19623;12550;8627;10044;3883;5360;11364;16239;39825;23111;19409;16876;27261 -212;'760;Syrian Arab Republic;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;130;130;130;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;8;8;8;8;8;8;8;8;8;8;8;8;8 -212;'760;Syrian Arab Republic;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;48;48;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;28;28;28;28;28;28;28;28;28;28;28;28;28 -212;'760;Syrian Arab Republic;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;25;25;25;25 -212;'760;Syrian Arab Republic;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;28;28;28;28 -212;'760;Syrian Arab Republic;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1394;3800;300;300;300;0;3;0;0;0;0;0;0;0;0;0;0;530;530;530;0;0;0;;;;;;; -212;'760;Syrian Arab Republic;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;747;842;66;66;66;0;4;0;0;0;0;0;0;0;0;0;0;200;200;200;0;0;0;;;;;;; -212;'760;Syrian Arab Republic;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;162;61;344;900;1800;200;200;0;0;1200;707;1383;3750;3750;2885;52;890;5466;1192;290;242;242;0;0;2;;;;;;; -212;'760;Syrian Arab Republic;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;34;191;768;852;108;108;0;0;827;404;556;1774;1774;1064;51;736;2992;742;467;161;161;0;0;6;;;;;;; -212;'760;Syrian Arab Republic;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;193;193;0;0;1208;1208;2000;2000;2000;2000;3655;1382;1382;1382;6951;3988;4482;3143;3143;3143;3143;0;0;0;0;4;4;4;4;4;4 -212;'760;Syrian Arab Republic;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;114;114;0;0;659;659;936;936;936;936;1665;905;905;905;3292;1852;1510;1521;1521;1521;1521;0;0;0;0;4;4;4;4;4;4 -212;'760;Syrian Arab Republic;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;50;50;0;246;246;0;0;300;300;300;818;818;2;2;31;120;26;24;24;79;79;79;79;79;11;11;11;11;30;38 -212;'760;Syrian Arab Republic;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22;22;0;98;98;0;0;170;170;170;655;655;2;2;30;100;52;65;65;12;12;12;12;12;27;27;27;27;17;54 -212;'760;Syrian Arab Republic;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;708;708;708;708;708;708;708;708;708;81;81;27;27;27;27;399;399;289;289;289;289 -212;'760;Syrian Arab Republic;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;21;21;21;21;21;21;21;72;72;2;2;2;2;303;303;164;164;164;164 -212;'760;Syrian Arab Republic;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;1400;1400;1500;1300;300;100;100;100;368;636;1408;766;766;2299;2095;1906;1000;3700;3602;3602;1200;3100;11000;8300;10699;39445;39445;5518;7119;1434;3009;2657;3892;1601;170;608;306;561;431;55;2036;1658;685;103;103 -212;'760;Syrian Arab Republic;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;184;184;171;143;41;14;14;14;74;189;403;232;232;626;269;288;260;912;840;840;182;537;1722;2019;1613;4378;4378;1134;2580;721;620;1095;1502;808;74;177;135;93;108;23;1034;804;236;28;28 -212;'760;Syrian Arab Republic;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;1;63;2;28;28;28;28;242;242;242;242;242;242;11;26;4266;2983;1506 -212;'760;Syrian Arab Republic;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;0;4;2;14;14;14;14;84;84;84;84;84;84;13;27;695;463;174 -212;'760;Syrian Arab Republic;1876;Paper and paperboard;5510;Production;t;;;;;;;;900;900;900;;1400;1900;2000;2100;3100;3100;3100;3100;3100;3100;3100;3100;3100;5000;5000;10000;19000;19000;19000;1000;1000;1000;1000;1000;1000;1000;1000;1000;11000;15000;15000;62000;75000;75000;75000;75000;75000;75000;75000;75000;75000;75000;75000;75000;75000;75000;75000;75000;75000;75000;75000;75000 -212;'760;Syrian Arab Republic;1876;Paper and paperboard;5610;Import quantity;t;13800;20044;12600;13000;20600;18900;24400;18500;19600;24200;23200;23800;26600;44300;37600;15700;33000;61100;61600;80300;46500;47100;65600;67200;73400;72400;85871;60205;65347;66742;66742;49300;66238;80888;37500;51800;115103;141000;131800;136800;160500;76346;217956;184858;184858;196362;217013;232786;234419;254977;255764;138508;49246;87576;57495;84453;104244;98816;199470;138128;82411;42074;72268 -212;'760;Syrian Arab Republic;1876;Paper and paperboard;5622;Import value;1000 USD;4809;7473;2413;2618;4230;3969;5366;7480;4973;5126;5351;6177;8540;25866;23525;7771;18258;33193;37117;55844;34476;35903;43055;38609;42758;42358;59487;37711;42310;43680;43680;33453;45220;52574;26952;29754;71059;78593;67612;75556;81710;41977;120914;131698;131698;115996;149416;164140;137360;183641;204777;102045;36317;67324;38514;57122;71040;70939;132529;93487;70605;51223;76568 -212;'760;Syrian Arab Republic;1876;Paper and paperboard;5910;Export quantity;t;100;50;30;120;20;20;100;100;300;100;200;500;500;500;100;200;200;200;3100;1400;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;4287;128;35;35;35;320;300;800;800;4300;5965;8001;9705;9705;2050;2982;3337;3393;6365;4025;1502;730;1233;1047;1047;408;193;283;2121;12661;7454;4134 -212;'760;Syrian Arab Republic;1876;Paper and paperboard;5922;Export value;1000 USD;20;10;6;24;4;4;11;13;30;30;130;140;140;140;459;318;260;340;1935;1021;834;834;834;834;834;834;834;834;834;834;834;2264;75;26;26;26;229;250;799;799;3667;7594;11072;6483;6483;1884;4060;7161;4569;8248;4765;1638;733;1152;994;994;310;183;165;1047;6709;4371;2907 -212;'760;Syrian Arab Republic;2042;Graphic papers;5610;Import quantity;t;1000;1044;3200;4500;8100;5300;11400;5700;9200;8700;7900;8800;10300;18300;12900;1600;4000;19100;23600;33700;13900;16500;19400;23900;30100;29100;42871;17205;22347;23742;23742;26467;26847;35734;13300;14600;44603;58000;50800;63300;71900;25112;86503;63137;63137;67031;83364;66932;87301;87600;104099;48538;16816;40999;20319;30617;35412;30353;62727;43200;34909;17408;25805 -212;'760;Syrian Arab Republic;2042;Graphic papers;5622;Import value;1000 USD;281;326;601;923;1634;1165;2394;935;1838;1959;1819;2276;3580;12666;11325;805;1758;9509;12717;18950;11425;12189;13107;13051;17200;16800;33929;12153;16752;18122;18122;18560;16840;22575;11222;10278;30546;32582;28225;34544;38855;15066;53143;46267;46267;45761;67699;53164;57087;74634;92736;41622;14947;34538;14176;22580;27858;24234;46244;32748;27771;18644;27543 -212;'760;Syrian Arab Republic;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;51;20;20;20;20;;;;200;200;1199;829;829;723;690;106;124;345;138;149;151;192;48;48;47;75;25;155;10;2;8 -212;'760;Syrian Arab Republic;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;40;20;20;20;20;;;;82;82;821;642;642;151;174;108;183;323;226;286;182;134;30;30;31;70;10;120;9;2;7 -212;'760;Syrian Arab Republic;1671;Newsprint;5610;Import quantity;t;900;1000;1100;800;400;1000;1200;700;1500;1500;600;300;500;800;900;800;1100;4400;2800;3700;3500;4500;7400;7000;5600;4600;14211;5491;4701;7064;7064;3232;5785;2588;5500;1700;7873;4500;4600;8600;7000;4460;11349;12714;12714;3976;4651;9238;4491;6682;9118;2010;65;516;399;942;588;673;2606;954;506;200;390 -212;'760;Syrian Arab Republic;1671;Newsprint;5622;Import value;1000 USD;261;317;176;135;65;170;180;101;214;235;106;60;87;413;442;391;473;1879;1283;1950;2171;3215;4133;2716;2200;1800;7458;3230;3049;4325;4325;2111;3090;1246;3801;1114;4321;2787;2820;5522;4701;2775;8580;6484;6484;2644;3469;7200;2540;4372;7764;1455;28;278;170;342;202;411;1374;336;199;233;292 -212;'760;Syrian Arab Republic;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;186;186;186;11;11;19;19;19;19;19;19;19;19;19;19;19;19;54;1;0;2 -212;'760;Syrian Arab Republic;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;150;150;150;8;8;5;5;5;5;5;5;5;5;5;5;5;5;25;1;0;1 -212;'760;Syrian Arab Republic;1674;Printing and writing papers;5610;Import quantity;t;100;44;2100;3700;7700;4300;10200;5000;7700;7200;7300;8500;9800;17500;12000;800;2900;14700;20800;30000;10400;12000;12000;16900;24500;24500;28660;11714;17646;16678;16678;23235;21062;33146;7800;12900;36730;53500;46200;54700;64900;20652;75154;50423;50423;63055;78713;57694;82810;80918;94981;46528;16751;40483;19920;29675;34824;29680;60121;42246;34403;17208;25415 -212;'760;Syrian Arab Republic;1674;Printing and writing papers;5622;Import value;1000 USD;20;9;425;788;1569;995;2214;834;1624;1724;1713;2216;3493;12253;10883;414;1285;7630;11434;17000;9254;8974;8974;10335;15000;15000;26471;8923;13703;13797;13797;16449;13750;21329;7421;9164;26225;29795;25405;29022;34154;12291;44563;39783;39783;43117;64230;45964;54547;70262;84972;40167;14919;34260;14006;22238;27656;23823;44870;32412;27572;18411;27251 -212;'760;Syrian Arab Republic;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;51;20;20;20;20;;;;200;200;1013;643;643;712;679;87;105;326;119;130;132;173;29;29;28;56;6;101;9;2;6 -212;'760;Syrian Arab Republic;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;40;20;20;20;20;;;;82;82;671;492;492;143;166;103;178;318;221;281;177;129;25;25;26;65;5;95;8;2;6 -212;'760;Syrian Arab Republic;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;412;356;3700;500;1552;3063;3546;3546;4552;7877;7847;3450;6594;6017;2853;763;198;1044;590;1319;1319;1846;638;1595;3618;894 -212;'760;Syrian Arab Republic;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;448;382;2050;513;1055;1594;2799;2799;2938;5445;6345;3497;9397;8792;5034;467;177;604;351;901;901;1482;839;998;1671;749 -212;'760;Syrian Arab Republic;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;138;77;77;650;593;2;2;222;1;30;30;26;26;26;26;26;0;63;3;0;0 -212;'760;Syrian Arab Republic;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;59;59;116;77;5;5;107;0;81;81;22;22;22;22;22;1;60;2;0;0 -212;'760;Syrian Arab Republic;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33716;29115;35000;40900;16156;57182;36930;36930;34711;33951;22232;32221;41955;60345;23798;12771;30650;9317;21038;22717;15839;35239;26204;18490;9258;18089 -212;'760;Syrian Arab Republic;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19118;16301;17000;21915;9763;34744;29136;29136;25762;26786;19915;22567;35931;52901;20686;11548;26605;7227;16337;18416;14822;29449;23052;16442;11841;21273 -212;'760;Syrian Arab Republic;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;782;530;530;5;68;63;102;14;28;10;91;142;1;1;1;2;0;28;1;0;0 -212;'760;Syrian Arab Republic;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;82;532;406;406;3;79;54;167;21;31;10;85;102;2;2;2;14;0;26;1;0;0 -212;'760;Syrian Arab Republic;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19372;16729;16000;23500;2944;14909;9947;9947;23792;36885;27615;47139;32369;28619;19877;3217;9635;9559;8047;10788;12522;23036;15404;14318;4332;6432 -212;'760;Syrian Arab Republic;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10229;8722;9972;11726;1473;8225;7848;7848;14417;31999;19704;28483;24934;23279;14447;2904;7478;6175;5550;8339;8100;13939;8521;10132;4899;5229 -212;'760;Syrian Arab Republic;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;36;36;57;18;22;1;90;90;90;11;5;2;2;1;28;6;10;5;2;6 -212;'760;Syrian Arab Republic;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;27;27;24;10;44;6;190;190;190;11;5;1;1;2;29;4;9;5;2;6 -212;'760;Syrian Arab Republic;1675;Other paper and paperboard;5510;Production;t;;;;;;;;900;900;900;;1400;1900;2000;2100;3100;3100;3100;3100;3100;3100;3100;3100;3100;5000;5000;10000;19000;19000;19000;1000;1000;1000;1000;1000;1000;1000;1000;1000;11000;15000;15000;62000;75000;75000;75000;75000;75000;75000;75000;75000;75000;75000;75000;75000;75000;75000;75000;75000;75000;75000;75000;75000 -212;'760;Syrian Arab Republic;1675;Other paper and paperboard;5610;Import quantity;t;12800;19000;9400;8500;12500;13600;13000;12800;10400;15500;15300;15000;16300;26000;24700;14100;29000;42000;38000;46600;32600;30600;46200;43300;43300;43300;43000;43000;43000;43000;43000;22833;39391;45154;24200;37200;70500;83000;81000;73500;88600;51234;131453;121721;121721;129331;133649;165854;147118;167377;151665;89970;32430;46577;37176;53836;68832;68463;136743;94928;47502;24666;46463 -212;'760;Syrian Arab Republic;1675;Other paper and paperboard;5622;Import value;1000 USD;4528;7147;1812;1695;2596;2804;2972;6545;3135;3167;3532;3901;4960;13200;12200;6966;16500;23684;24400;36894;23051;23714;29948;25558;25558;25558;25558;25558;25558;25558;25558;14893;28380;29999;15730;19476;40513;46011;39387;41012;42855;26911;67771;85431;85431;70235;81717;110976;80273;109007;112041;60423;21370;32786;24338;34542;43182;46705;86285;60739;42834;32579;49025 -212;'760;Syrian Arab Republic;1675;Other paper and paperboard;5910;Export quantity;t;100;50;30;120;20;20;100;100;300;100;200;500;500;500;100;200;200;200;3100;1400;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;4284;77;15;15;15;300;300;800;800;4100;5765;6802;8876;8876;1327;2292;3231;3269;6020;3887;1353;579;1041;999;999;361;118;258;1966;12651;7452;4126 -212;'760;Syrian Arab Republic;1675;Other paper and paperboard;5922;Export value;1000 USD;20;10;6;24;4;4;11;13;30;30;130;140;140;140;459;318;260;340;1935;1021;834;834;834;834;834;834;834;834;834;834;834;2261;35;6;6;6;209;250;799;799;3585;7512;10251;5841;5841;1733;3886;7053;4386;7925;4539;1352;551;1018;964;964;279;113;155;927;6700;4369;2900 -212;'760;Syrian Arab Republic;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4700;5953;9872;9901;9901;6334;4336;4172;2920;2214;1422;1292;3370;3961;6066;7233;11718;7715;9395;6944;9198;6819;9499 -212;'760;Syrian Arab Republic;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3608;3924;8737;10892;10892;6555;4788;5103;2854;2631;2008;1936;4913;5333;7847;8553;12707;9966;12805;8342;11265;11721;13735 -212;'760;Syrian Arab Republic;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3200;3200;2367;651;651;157;639;1012;2315;3899;2511;1074;64;600;600;600;4;25;34;419;792;89;186 -212;'760;Syrian Arab Republic;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2291;2291;2099;721;721;120;848;1508;2928;4579;2472;1064;68;546;546;546;5;35;47;318;730;87;286 -212;'760;Syrian Arab Republic;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;1000;1000;1000;1000;1000;1000;1000 -212;'760;Syrian Arab Republic;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59500;69700;34256;113199;96035;96035;99444;93260;124762;115558;134190;123933;62368;27848;40131;30983;45062;56873;60560;126956;87737;38224;17287;36650 -212;'760;Syrian Arab Republic;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27821;28559;14581;50439;59543;59543;48541;55089;83568;58596;81203;89396;37850;15594;24133;16293;23994;29996;36195;72597;51341;30596;19627;33397 -212;'760;Syrian Arab Republic;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;2451;4224;7920;7920;870;1377;955;542;1362;598;251;431;312;270;270;228;91;224;1524;11768;7353;3937 -212;'760;Syrian Arab Republic;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1165;5135;7891;4784;4784;1233;2778;3305;860;1763;954;243;377;354;300;300;156;73;108;591;5899;4273;2596 -212;'760;Syrian Arab Republic;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19000;1000;1000;1000;1000;1000;1000;1000;;;;;;;;;;;;;;;;;;;;;;;;;; -212;'760;Syrian Arab Republic;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;12000;12400;11700;8600;13700;12800;9200;10800;19300;16700;6600;14000;20000;18000;22000;15800;17200;35200;20000;20000;20000;20000;20000;20000;20000;20000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -212;'760;Syrian Arab Republic;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;2160;2424;5031;2236;2244;2560;2116;2822;9650;8350;3342;8000;11400;12400;18894;10772;10792;19309;10263;10263;10263;10263;10263;10263;10263;10263;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -212;'760;Syrian Arab Republic;1617;Case materials;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;1000;1000 -212;'760;Syrian Arab Republic;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13000;17900;12163;29191;34871;34871;16222;30799;30527;25545;41770;39404;12535;9492;10896;7284;12975;21725;32072;69580;47268;13805;5010;11485 -212;'760;Syrian Arab Republic;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5998;5905;3827;11127;21620;21620;10532;18854;20568;15955;29287;25913;5886;4678;5349;3407;5597;10182;18239;33147;21905;9276;4631;7782 -212;'760;Syrian Arab Republic;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;367;152;152;289;21;4;58;2;149;1;206;206;206;206;206;40;40;1445;11604;7343;3790 -212;'760;Syrian Arab Republic;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;156;92;92;641;3;3;35;3;101;3;137;137;137;137;137;20;20;534;5786;4258;2400 -212;'760;Syrian Arab Republic;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25000;30300;13548;47281;31641;31641;68380;37046;72105;64276;60251;71517;36576;13384;24779;21539;30459;31195;23474;44172;33476;19820;9632;18896 -212;'760;Syrian Arab Republic;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12517;13460;6288;21160;19619;19619;27470;19286;44142;28497;34527;50469;20813;6995;15714;11142;16243;17493;15487;31064;25845;18218;12339;20035 -212;'760;Syrian Arab Republic;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;2316;2969;6867;6867;376;452;859;328;1047;359;39;53;53;53;53;10;9;171;26;54;8;47 -212;'760;Syrian Arab Republic;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1165;5091;7145;4147;4147;498;1074;2939;709;1550;803;88;94;94;94;94;11;11;80;21;54;13;146 -212;'760;Syrian Arab Republic;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17000;17400;7668;32731;25391;25391;14472;25039;21481;24858;31832;12835;12644;4771;4133;2096;1524;3693;4040;12585;6618;4295;2497;6052 -212;'760;Syrian Arab Republic;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7824;8109;4172;16999;15743;15743;10386;16745;18656;13728;17173;12947;10887;3716;2907;1695;2028;2112;1891;8023;3382;2888;2481;5367 -212;'760;Syrian Arab Republic;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;326;117;117;204;712;88;122;132;81;63;124;5;5;5;1;31;2;47;104;2;1 -212;'760;Syrian Arab Republic;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;174;71;71;91;1674;137;105;118;49;32;85;62;62;62;2;36;2;33;56;2;1 -212;'760;Syrian Arab Republic;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4500;4100;877;3996;4132;4132;370;376;649;879;337;177;613;201;323;64;104;260;974;619;375;304;148;217 -212;'760;Syrian Arab Republic;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1482;1085;294;1153;2561;2561;153;204;202;416;216;67;264;205;163;49;126;209;578;363;209;214;176;213 -212;'760;Syrian Arab Republic;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;562;784;784;1;192;4;34;181;9;148;48;48;6;6;11;11;11;6;6;0;99 -212;'760;Syrian Arab Republic;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;416;474;474;3;27;226;11;92;1;120;61;61;7;7;6;6;6;3;3;0;49 -212;'760;Syrian Arab Republic;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;14000;14000;61000;74000;74000;74000;74000;74000;74000;74000;74000;74000;74000;74000;74000;74000;74000;74000;74000;74000;74000;74000;74000 -212;'760;Syrian Arab Republic;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;1600;600;1100;1800;1800;2500;5800;5500;6700;8000;7500;15000;22000;20000;24600;16800;13400;11000;23300;23300;23300;23000;23000;23000;23000;23000;22833;39391;45154;24200;37200;70500;83000;81000;14000;14200;11025;8382;15785;15785;23553;36053;36920;28640;30973;26310;26310;1212;2485;127;1541;241;188;392;247;80;560;314 -212;'760;Syrian Arab Republic;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;644;548;1514;899;923;972;1785;2138;3550;3850;3624;8500;12284;12000;18000;12279;12922;10639;15295;15295;15295;15295;15295;15295;15295;15295;14893;28380;29999;15730;19476;40513;46011;39387;13191;10688;8406;8595;14996;14996;15139;21840;22305;18823;25173;20637;20637;863;3320;198;1995;479;544;883;1056;973;1231;1893 -212;'760;Syrian Arab Republic;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;300;800;800;300;114;211;305;305;300;276;1264;412;759;778;28;84;129;129;129;129;2;0;23;91;10;3 -212;'760;Syrian Arab Republic;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;209;250;799;799;129;86;261;336;336;380;260;2240;598;1583;1113;45;106;118;118;118;118;5;0;18;71;9;18 -212;'760;Syrian Arab Republic;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4645;5712;4550;2791;3360;5365;5197 -212;'760;Syrian Arab Republic;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1983;1556;1293;1014;2413;1260;1694 -212;'760;Syrian Arab Republic;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;122;8;3;125;1;117;20 -212;'760;Syrian Arab Republic;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;1;30;1;10;3;5 -212;'760;Syrian Arab Republic;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;13;0;14;14 -212;'760;Syrian Arab Republic;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;30;0;0;0;0 -212;'760;Syrian Arab Republic;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;122;8;3;112;1;103;6 -212;'760;Syrian Arab Republic;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;1;0;1;10;3;5 -212;'760;Syrian Arab Republic;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;150;148;141;199;96;22 -212;'760;Syrian Arab Republic;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;56;20;24;13;31;14 -212;'760;Syrian Arab Republic;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;185;216;109;98;85;71;390 -212;'760;Syrian Arab Republic;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;557;431;485;610;1632;427;492 -212;'760;Syrian Arab Republic;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1202;1127;1303;355;805;1170;411 -212;'760;Syrian Arab Republic;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;76;99;141;64;73;188 -212;'760;Syrian Arab Republic;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1890;2457;1382;884;1686;2897;3250 -212;'760;Syrian Arab Republic;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1257;896;606;162;458;611;842 -212;'760;Syrian Arab Republic;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -212;'760;Syrian Arab Republic;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -212;'760;Syrian Arab Republic;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1210;1754;1605;1188;584;1014;1104 -212;'760;Syrian Arab Republic;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;96;53;76;236;115;153 -212;'760;Syrian Arab Republic;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27038;30340;30186;23686;24116;24785;26897 -212;'760;Syrian Arab Republic;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2740;3114;4324;4142;5318;4008;3552 -212;'760;Syrian Arab Republic;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;387;984;1194;1467;1355;1089;681 -212;'760;Syrian Arab Republic;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;24;24;3;84;8;9 -212;'760;Syrian Arab Republic;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6932;7822;8887;9737;7819;7551;7066 -212;'760;Syrian Arab Republic;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;135;398;836;599;355;192 -212;'760;Syrian Arab Republic;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2331;1400;1016;381;688;1062;2811 -212;'760;Syrian Arab Republic;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;802;1107;1114;752;442;231;116 -212;'760;Syrian Arab Republic;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10459;11377;10380;6005;10461;11571;12315 -212;'760;Syrian Arab Republic;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;555;947;1027;406;1301;1087;1690 -212;'760;Syrian Arab Republic;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6929;8757;8709;6096;3793;3512;4024 -212;'760;Syrian Arab Republic;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1316;901;1761;2145;2892;2327;1545 -208;'762;Tajikistan;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91942.05;91942;93386;79286;79286;79286;79286 -208;'762;Tajikistan;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.3;3;1184;739;739;739;739 -208;'762;Tajikistan;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;101;101;101;695;695;3508;3866;3866;3866;3866;3866;15902;20202;20202;11244;12035;11453;11303;127888;130462;142688;148056;91943;91942;91942.05;91942;93386;79286;79286;79286;79286 -208;'762;Tajikistan;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;11;11;11;19;19;8;8;8;8;8;8;8;8;8;8;8;8;8;68;10;2;3;13;3;3.3;3;1184;739;739;739;739 -208;'762;Tajikistan;1861;Roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;3528000;3600000;3674000;3674000;3674000;3674000;3674000;3674000;3674000;3674000 -208;'762;Tajikistan;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;435;435;0;0;0;0;0;0;0;0;0;0;0;0;0;21247;15865;15870;15870;15870;15870;15870;15870;1581;2932;2932;2932;2932 -208;'762;Tajikistan;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;47;29;395;395;395;395;395;0;0;0;0;0;0;0;1453;980;980;980;980;980;980.61;980;171;141;141;141;141 -208;'762;Tajikistan;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;22;22;0;0;0;0;0;0;156;168;168;168;168 -208;'762;Tajikistan;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;26;10;0;0;0;0;0;0;28;45;45;45;45 -208;'762;Tajikistan;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000;1764000;1800000;1837000;1837000;1837000;1837000;1837000;1837000;1837000;1837000 -208;'762;Tajikistan;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15760;15760;1581;2932;2932;2932;2932 -208;'762;Tajikistan;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;956.38;956;171;141;141;141;141 -208;'762;Tajikistan;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -208;'762;Tajikistan;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -208;'762;Tajikistan;1863;Roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000;1764000;1800000;1837000;1837000;1837000;1837000;1837000;1837000;1837000;1837000 -208;'762;Tajikistan;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110;110;0;0;0;0;0 -208;'762;Tajikistan;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24.23;24;0;0;0;0;0 -208;'762;Tajikistan;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;156;168;168;168;168 -208;'762;Tajikistan;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;28;45;45;45;45 -208;'762;Tajikistan;1864;Wood fuel;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;90000;90000;90000;90000;90000;90000;90000;90000;90000;90000;3528000;3600000;3674000;3674000;3674000;3674000;3674000;3674000;3674000;3674000 -208;'762;Tajikistan;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;34;0;0;0;0;0;;;0;0;0;0;0 -208;'762;Tajikistan;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;29;29;29;29;29;0;0;0;0;0;0;0;5;0;0;0;0;0;;;0;0;0;0;0 -208;'762;Tajikistan;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;;;92;24;24;24;24 -208;'762;Tajikistan;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;;;13;3;3;3;3 -208;'762;Tajikistan;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000;1764000;1800000;1837000;1837000;1837000;1837000;1837000;1837000;1837000;1837000 -208;'762;Tajikistan;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -208;'762;Tajikistan;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -208;'762;Tajikistan;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -208;'762;Tajikistan;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -208;'762;Tajikistan;1628;Wood fuel, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000;1764000;1800000;1837000;1837000;1837000;1837000;1837000;1837000;1837000;1837000 -208;'762;Tajikistan;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -208;'762;Tajikistan;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -208;'762;Tajikistan;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92;24;24;24;24 -208;'762;Tajikistan;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;3;3;3;3 -208;'762;Tajikistan;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;34;0;0;0;0;0;;;;;;; -208;'762;Tajikistan;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;29;29;29;29;29;0;0;0;0;0;0;0;5;0;0;0;0;0;;;;;;; -208;'762;Tajikistan;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;;;;;;; -208;'762;Tajikistan;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;;;;;;; -208;'762;Tajikistan;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 -208;'762;Tajikistan;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;435;435;0;0;0;0;0;0;0;0;0;0;0;0;0;21213;15865;15870;15870;15870;15870;15870;15870;1581;2932;2932;2932;2932 -208;'762;Tajikistan;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;47;0;366;366;366;366;366;0;0;0;0;0;0;0;1448;980;980;980;980;980;980.61;980;171;141;141;141;141 -208;'762;Tajikistan;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;22;22;0;0;0;0;0;0;64;144;144;144;144 -208;'762;Tajikistan;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;26;10;0;0;0;0;0;0;15;42;42;42;42 -208;'762;Tajikistan;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 -208;'762;Tajikistan;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;435;435;0;0;0;0;0;0;0;0;0;0;0;0;0;20553;15760;15760;15760;15760;15760;15760;15760;1581;2932;2932;2932;2932 -208;'762;Tajikistan;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;47;0;325;325;325;325;325;0;0;0;0;0;0;0;1306;956;956;956;956;956;956.38;956;171;141;141;141;141 -208;'762;Tajikistan;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 -208;'762;Tajikistan;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 -208;'762;Tajikistan;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;435;435;0;0;0;0;0;0;0;0;0;0;0;0;0;20553;15760;15760;15760;15760;15760;15760;15760;1581;2932;2932;2932;2932 -208;'762;Tajikistan;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;47;0;325;325;325;325;325;0;0;0;0;0;0;0;1306;956;956;956;956;956;956.38;956;171;141;141;141;141 -208;'762;Tajikistan;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 -208;'762;Tajikistan;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 -208;'762;Tajikistan;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 -208;'762;Tajikistan;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;660;105;110;110;110;110;110;110;0;0;0;0;0 -208;'762;Tajikistan;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;41;41;41;41;41;0;0;0;0;0;0;0;142;24;24;24;24;24;24.23;24;0;0;0;0;0 -208;'762;Tajikistan;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;22;22;0;0;0;0;0;0;64;144;144;144;144 -208;'762;Tajikistan;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;26;10;0;0;0;0;0;0;15;42;42;42;42 -208;'762;Tajikistan;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 -208;'762;Tajikistan;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 -208;'762;Tajikistan;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 -208;'762;Tajikistan;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 -208;'762;Tajikistan;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;660;105;110;110;110;110;110;110;0;0;0;0;0 -208;'762;Tajikistan;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;41;41;41;41;41;0;0;0;0;0;0;0;142;24;24;24;24;24;24.23;24;0;0;0;0;0 -208;'762;Tajikistan;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;22;22;0;0;0;0;0;0;64;144;144;144;144 -208;'762;Tajikistan;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;10;0;0;0;0;0;0;15;42;42;42;42 -208;'762;Tajikistan;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 -208;'762;Tajikistan;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 -208;'762;Tajikistan;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 -208;'762;Tajikistan;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 -208;'762;Tajikistan;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 -208;'762;Tajikistan;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 -208;'762;Tajikistan;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 -208;'762;Tajikistan;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 -208;'762;Tajikistan;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 -208;'762;Tajikistan;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;105;110;110;110;110;110;110;193;10;10;10;10 -208;'762;Tajikistan;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;6;0;0;0;0;0;0;331;28;28;28;28 -208;'762;Tajikistan;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0 -208;'762;Tajikistan;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0 -208;'762;Tajikistan;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;165;33;33;33;33;33;49;90;90;90;90 -208;'762;Tajikistan;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;21;11;11;11;11;11;19;36;36;36;36 -208;'762;Tajikistan;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0 -208;'762;Tajikistan;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0 -208;'762;Tajikistan;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22;22;22;22;49;90;90;90;90 -208;'762;Tajikistan;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;11;19;36;36;36;36 -208;'762;Tajikistan;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0 -208;'762;Tajikistan;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0 -208;'762;Tajikistan;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;165;11;11;11;11;11;0;0;0;0;0 -208;'762;Tajikistan;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;21;0;0;0;0;0;0;0;0;0;0 -208;'762;Tajikistan;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0 -208;'762;Tajikistan;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0 -208;'762;Tajikistan;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -208;'762;Tajikistan;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -208;'762;Tajikistan;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0 -208;'762;Tajikistan;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0 -208;'762;Tajikistan;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -208;'762;Tajikistan;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -208;'762;Tajikistan;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0 -208;'762;Tajikistan;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0 -208;'762;Tajikistan;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -208;'762;Tajikistan;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -208;'762;Tajikistan;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0 -208;'762;Tajikistan;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0 -208;'762;Tajikistan;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 -208;'762;Tajikistan;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;56;56;4253;4253;40380;40380;40380;40380;40380;40380;85600;109000;109000;59900;63600;58900;58900;854451;853581;853580;1028600;685100;685100;685100;685100;135634;81775;81775;81775;81775 -208;'762;Tajikistan;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;586;586;1885;1877;1877;1877;1877;1877;15000;19000;19000;10042;10833;10251;10101;91168;89318;89318;94696;38582;38582;38582;38582;31159;19037;19037;19037;19037 -208;'762;Tajikistan;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;29;29;29;29;29;29;29;29;29;29;29;29;29;29;29;30;0;8;0;21;0;0;0;62;20;20;20;20 -208;'762;Tajikistan;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;0;2;0;10;0;0;0;22;4;4;4;4 -208;'762;Tajikistan;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 -208;'762;Tajikistan;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4197;4197;40370;40370;40370;40370;40370;40370;42800;54500;54500;54500;54500;54500;54500;850934;848388;848390;1028000;683000;683000;683000;683000;131970;79473;79473;79473;79473 -208;'762;Tajikistan;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;572;572;1871;1871;1871;1871;1871;1871;7500;9500;9500;9500;9500;9500;9500;90732;89024;89024;94600;38400;38400;38400;38400;29787;18776;18776;18776;18776 -208;'762;Tajikistan;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;1;0;0;0;8;0;0;0;0;0;0;0;0 -208;'762;Tajikistan;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;2;0;0;0;0;0;0;0;0 -208;'762;Tajikistan;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 -208;'762;Tajikistan;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;56;56;56;56;10;10;10;10;10;10;42800;54500;54500;5400;9100;4400;4400;3517;5193;5190;600;2100;2100;2100;2100;3664;2302;2302;2302;2302 -208;'762;Tajikistan;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;14;14;14;6;6;6;6;6;7500;9500;9500;542;1333;751;601;436;294;294;96;182;182;182;182;1372;261;261;261;261 -208;'762;Tajikistan;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;29;29;29;29;29;29;29;29;29;29;29;29;29;29;29;0;8;0;13;0;0;0;62;20;20;20;20 -208;'762;Tajikistan;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;0;2;0;8;0;0;0;22;4;4;4;4 -208;'762;Tajikistan;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 -208;'762;Tajikistan;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;1;1;1;1;1;1;0;0;0;0;0;0;0;11;112;110;110;110;110;110;110;89;0;0;0;0 -208;'762;Tajikistan;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;0;0;0;0;0;0;0;5;10;10;10;10;10;9.91;10;47;0;0;0;0 -208;'762;Tajikistan;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -208;'762;Tajikistan;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -208;'762;Tajikistan;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 -208;'762;Tajikistan;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;207;207;8683;8683;8683;8683;8683;8683;0;0;0;0;0;0;0;110015;120395;120400;120400;120400;120400;120400;120400;195558;195795;195795;195795;195795 -208;'762;Tajikistan;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;31;1143;1143;1143;1143;1143;1143;0;0;0;0;0;0;0;27711;32429;32428;32428;32429;32428;32426.76;32428;46051;45923;45923;45923;45923 -208;'762;Tajikistan;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;0;0;0;0;0;0;0;10;0;0;0;0 -208;'762;Tajikistan;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;0;0;0;3;0;0;0;0 -208;'762;Tajikistan;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 -208;'762;Tajikistan;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;184;184;184;184;184;184;0;0;0;0;0;0;0;2552;2817;2820;2820;2820;2820;2820;2820;10733;10970;10970;10970;10970 -208;'762;Tajikistan;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;101;101;101;101;101;101;0;0;0;0;0;0;0;1438;2196;2196;2196;2196;2196;2195.62;2196;6721;6593;6593;6593;6593 -208;'762;Tajikistan;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0 -208;'762;Tajikistan;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0 -208;'762;Tajikistan;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 -208;'762;Tajikistan;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;194;194;3000;3000;3000;3000;3000;3000;0;0;0;0;0;0;0;72944;75253;74640;75940;76120;75590;75590;75590;135716;139222;139222;139222;139222 -208;'762;Tajikistan;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;300;300;300;300;300;300;0;0;0;0;0;0;0;15700;16762;16578;16839;16958;16867;16867.24;16867;23009;23764;23764;23764;23764 -208;'762;Tajikistan;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;10;0;0;0;0 -208;'762;Tajikistan;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;3;0;0;0;0 -208;'762;Tajikistan;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 -208;'762;Tajikistan;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;380;886;1500;200;20;550;550;550;3526;20;20;20;20 -208;'762;Tajikistan;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;59;201;384;123;5;95;95.2;95;758;3;3;3;3 -208;'762;Tajikistan;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -208;'762;Tajikistan;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -208;'762;Tajikistan;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 -208;'762;Tajikistan;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5499;5499;5499;5499;5499;5499;0;0;0;0;0;0;0;34139;41439;41440;41440;41440;41440;41440;41440;45583;45583;45583;45583;45583 -208;'762;Tajikistan;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;742;742;742;742;742;742;0;0;0;0;0;0;0;10514;13270;13270;13270;13270;13270;13268.7;13270;15563;15563;15563;15563;15563 -208;'762;Tajikistan;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;0;0;0;0;0;0;0;0;0;0;0;0 -208;'762;Tajikistan;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;0;0;0;0;0;0;0;0 -208;'762;Tajikistan;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 -208;'762;Tajikistan;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2257;2257;2257;2257;2257;2257;0;0;0;0;0;0;0;19845;23439;23440;23440;23440;23440;23440;23440;15295;15295;15295;15295;15295 -208;'762;Tajikistan;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;390;390;390;390;390;390;0;0;0;0;0;0;0;6474;7542;7542;7542;7542;7542;7541.56;7542;3982;3982;3982;3982;3982 -208;'762;Tajikistan;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -208;'762;Tajikistan;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -208;'762;Tajikistan;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 -208;'762;Tajikistan;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;529;529;529;529;529;529;0;0;0;0;0;0;0;13859;17239;17240;17240;17240;17240;17240;17240;29753;29753;29753;29753;29753 -208;'762;Tajikistan;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;200;200;200;200;0;0;0;0;0;0;0;3888;5364;5364;5364;5364;5364;5363.51;5364;11333;11333;11333;11333;11333 -208;'762;Tajikistan;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;0;0;0;0;0;0;0;0;0;0;0;0 -208;'762;Tajikistan;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;0;0;0;0;0;0;0;0 -208;'762;Tajikistan;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 -208;'762;Tajikistan;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2713;2713;2713;2713;2713;2713;0;0;0;0;0;0;0;435;761;760;760;760;760;760;760;535;535;535;535;535 -208;'762;Tajikistan;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;152;152;152;152;152;152;0;0;0;0;0;0;0;152;364;364;364;364;364;363.63;364;248;248;248;248;248 -208;'762;Tajikistan;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -208;'762;Tajikistan;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -208;'762;Tajikistan;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 -208;'762;Tajikistan;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;12;12;4;4;4;4;4;4;4;4;4;4;4;4;4;1185;1121;1120;1120;1120;1120;1120;1120;2374;917;917;917;917 -208;'762;Tajikistan;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;181;221;221;221;221;221;220.78;221;743;190;190;190;190 -208;'762;Tajikistan;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;24;24;24;0;0;0;0;0 -208;'762;Tajikistan;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;0;0;0;0;0 -208;'762;Tajikistan;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 -208;'762;Tajikistan;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;62;189;190;190;190;190;190;190;557;19;19;19;19 -208;'762;Tajikistan;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;44;145;145;145;145;145;144.88;145;321;21;21;21;21 -208;'762;Tajikistan;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -208;'762;Tajikistan;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -208;'762;Tajikistan;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 -208;'762;Tajikistan;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;62;189;190;190;190;190;190;190;555;14;14;14;14 -208;'762;Tajikistan;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;44;145;145;145;145;145;144.88;145;320;14;14;14;14 -208;'762;Tajikistan;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -208;'762;Tajikistan;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -208;'762;Tajikistan;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -208;'762;Tajikistan;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -208;'762;Tajikistan;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -208;'762;Tajikistan;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -208;'762;Tajikistan;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -208;'762;Tajikistan;1654;Mechanical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -208;'762;Tajikistan;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -208;'762;Tajikistan;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -208;'762;Tajikistan;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -208;'762;Tajikistan;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -208;'762;Tajikistan;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;;;;;;; -208;'762;Tajikistan;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 -208;'762;Tajikistan;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;62;189;190;190;190;190;190;190;555;14;14;14;14 -208;'762;Tajikistan;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;44;145;145;145;145;145;144.88;145;320;14;14;14;14 -208;'762;Tajikistan;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -208;'762;Tajikistan;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -208;'762;Tajikistan;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 -208;'762;Tajikistan;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 -208;'762;Tajikistan;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 -208;'762;Tajikistan;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -208;'762;Tajikistan;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -208;'762;Tajikistan;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 -208;'762;Tajikistan;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;62;189;190;190;190;190;190;190;555;14;14;14;14 -208;'762;Tajikistan;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;44;145;145;145;145;145;144.88;145;320;14;14;14;14 -208;'762;Tajikistan;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -208;'762;Tajikistan;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -208;'762;Tajikistan;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -208;'762;Tajikistan;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -208;'762;Tajikistan;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -208;'762;Tajikistan;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -208;'762;Tajikistan;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -208;'762;Tajikistan;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -208;'762;Tajikistan;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;;;;;;; -208;'762;Tajikistan;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;;;;;;; -208;'762;Tajikistan;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -208;'762;Tajikistan;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;;;;;;; -208;'762;Tajikistan;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;;;;;;; -208;'762;Tajikistan;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 -208;'762;Tajikistan;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 -208;'762;Tajikistan;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 -208;'762;Tajikistan;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -208;'762;Tajikistan;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -208;'762;Tajikistan;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 -208;'762;Tajikistan;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;2;5;5;5;5 -208;'762;Tajikistan;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;1;7;7;7;7 -208;'762;Tajikistan;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -208;'762;Tajikistan;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -208;'762;Tajikistan;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;705;0;0;0;0 -208;'762;Tajikistan;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;153;0;0;0;0 -208;'762;Tajikistan;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -208;'762;Tajikistan;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -208;'762;Tajikistan;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;12;12;4;4;4;4;4;4;4;4;4;4;4;4;4;1123;932;930;930;930;930;930;930;1817;898;898;898;898 -208;'762;Tajikistan;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;137;76;76;76;76;76;75.9;76;422;169;169;169;169 -208;'762;Tajikistan;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;24;24;24;0;0;0;0;0 -208;'762;Tajikistan;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;0;0;0;0;0 -208;'762;Tajikistan;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 -208;'762;Tajikistan;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;112;112;112;29;29;1225;1225;1225;1225;1225;1225;800;990;990;990;990;990;990;8441;8766;8780;8780;8780;8780;8780;8780;17309;15276;15276;15276;15276 -208;'762;Tajikistan;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;86;86;86;29;29;448;448;448;448;448;448;900;1200;1200;1200;1200;1200;1200;7368;7497;19710;19710;19710;19710;19710.99;19710;14712;13931;13931;13931;13931 -208;'762;Tajikistan;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;25;25;25;25;25;0;0;0;0;0;0;0;0;0;0;0;0;0;32;0;0;0;0;0;0;0;2287;1564;1564;1564;1564 -208;'762;Tajikistan;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;11;11;11;11;11;0;0;0;0;0;0;0;0;0;0;0;0;0;32;0;0;0;0;0;0.3;0;1131;690;690;690;690 -208;'762;Tajikistan;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 -208;'762;Tajikistan;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;15;2;2;1103;1103;1103;1103;1103;1103;0;0;0;0;0;0;0;4508;5005;5010;5010;5010;5010;5010;5010;11742;11122;11122;11122;11122 -208;'762;Tajikistan;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;25;25;3;3;275;275;275;275;275;275;0;0;0;0;0;0;0;4298;4636;5286;5286;5286;5286;5286.24;5286;9438;9364;9364;9364;9364 -208;'762;Tajikistan;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;;;;;;;;;;;;;;30;0;0;0;0;0;0;0;0;21;21;21;21 -208;'762;Tajikistan;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;;;;;;;;;;;;;;29;0;0;0;0;0;0.3;0;0;16;16;16;16 -208;'762;Tajikistan;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 -208;'762;Tajikistan;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;822;822;822;822;822;822;0;0;0;0;0;0;0;1872;2027;2030;2030;2030;2030;2030;2030;2738;2738;2738;2738;2738 -208;'762;Tajikistan;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;250;250;250;250;250;250;0;0;0;0;0;0;0;1231;1350;2000;2000;2000;2000;2000;2000;1486;1486;1486;1486;1486 -208;'762;Tajikistan;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0 -208;'762;Tajikistan;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0 -208;'762;Tajikistan;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 -208;'762;Tajikistan;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;15;2;2;281;281;281;281;281;281;0;0;0;0;0;0;0;2636;2978;2980;2980;2980;2980;2980;2980;9004;8384;8384;8384;8384 -208;'762;Tajikistan;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;25;25;3;3;25;25;25;25;25;25;0;0;0;0;0;0;0;3067;3286;3286;3286;3286;3286;3286.24;3286;7952;7878;7878;7878;7878 -208;'762;Tajikistan;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;;;;;;;;;;;;;;30;0;0;0;0;0;0;0;0;21;21;21;21 -208;'762;Tajikistan;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;;;;;;;;;;;;;;29;0;0;0;0;0;0.3;0;0;16;16;16;16 -208;'762;Tajikistan;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 -208;'762;Tajikistan;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;281;281;281;281;281;281;0;0;0;0;0;0;0;159;138;140;140;140;140;140;140;149;110;110;110;110 -208;'762;Tajikistan;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;25;25;25;25;0;0;0;0;0;0;0;184;287;287;287;287;287;287.19;287;127;507;507;507;507 -208;'762;Tajikistan;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -208;'762;Tajikistan;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -208;'762;Tajikistan;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 -208;'762;Tajikistan;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;2186;2359;2360;2360;2360;2360;2360;2360;7800;7800;7800;7800;7800 -208;'762;Tajikistan;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;2514;2369;2369;2369;2369;2369;2368.97;2369;6938;6938;6938;6938;6938 -208;'762;Tajikistan;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -208;'762;Tajikistan;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0.3;0;0;0;0;0;0 -208;'762;Tajikistan;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 -208;'762;Tajikistan;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;291;481;480;480;480;480;480;480;1055;474;474;474;474 -208;'762;Tajikistan;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;369;630;630;630;630;630;630.08;630;887;433;433;433;433 -208;'762;Tajikistan;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;0;0;0;0;0;0;0;0;21;21;21;21 -208;'762;Tajikistan;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;0;0;0;0;0;0;0;0;16;16;16;16 -208;'762;Tajikistan;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 -208;'762;Tajikistan;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97;97;97;27;27;122;122;122;122;122;122;800;990;990;990;990;990;990;3933;3761;3770;3770;3770;3770;3770;3770;5567;4154;4154;4154;4154 -208;'762;Tajikistan;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;61;61;26;26;173;173;173;173;173;173;900;1200;1200;1200;1200;1200;1200;3070;2861;14424;14424;14424;14424;14424.75;14424;5274;4567;4567;4567;4567 -208;'762;Tajikistan;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22;22;22;22;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;0;2287;1543;1543;1543;1543 -208;'762;Tajikistan;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;8;0;0;0;0;0;0;0;0;0;0;0;0;0;3;0;0;0;0;0;0;0;1131;674;674;674;674 -208;'762;Tajikistan;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 -208;'762;Tajikistan;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;270;330;330;330;330;330;330;229;489;490;490;490;490;490;490;26;26;26;26;26 -208;'762;Tajikistan;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;350;500;500;500;500;500;500;303;371;6385;6385;6385;6385;6385;6385;27;27;27;27;27 -208;'762;Tajikistan;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;0;0;0;0;0;0;0;0 -208;'762;Tajikistan;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;0;0;0;0;0;0;0;0;0;0;0 -208;'762;Tajikistan;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 -208;'762;Tajikistan;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;260;330;330;330;330;330;330;3694;3257;3260;3260;3260;3260;3260;3260;5471;4118;4118;4118;4118 -208;'762;Tajikistan;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;200;200;200;200;200;2728;2438;2438;2438;2438;2438;2438.75;2438;5105;4490;4490;4490;4490 -208;'762;Tajikistan;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2287;1543;1543;1543;1543 -208;'762;Tajikistan;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1131;674;674;674;674 -208;'762;Tajikistan;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 -208;'762;Tajikistan;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;2747;2742;2740;2740;2740;2740;2740;2740;1164;12;12;12;12 -208;'762;Tajikistan;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;1485;1488;1488;1488;1488;1488;1488.31;1488;561;9;9;9;9 -208;'762;Tajikistan;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2287;1543;1543;1543;1543 -208;'762;Tajikistan;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1131;674;674;674;674 -208;'762;Tajikistan;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 -208;'762;Tajikistan;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;304;340;340;340;340;340;340;340;3194;3194;3194;3194;3194 -208;'762;Tajikistan;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;770;743;743;743;743;743;743.14;743;2708;2708;2708;2708;2708 -208;'762;Tajikistan;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -208;'762;Tajikistan;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -208;'762;Tajikistan;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 -208;'762;Tajikistan;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;260;330;330;330;330;330;330;357;90;90;90;90;90;90;90;830;830;830;830;830 -208;'762;Tajikistan;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;200;200;200;200;200;226;157;157;157;157;157;157.2;157;1695;1695;1695;1695;1695 -208;'762;Tajikistan;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -208;'762;Tajikistan;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -208;'762;Tajikistan;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 -208;'762;Tajikistan;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;286;85;90;90;90;90;90;90;283;82;82;82;82 -208;'762;Tajikistan;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;247;50;50;50;50;50;50.1;50;141;78;78;78;78 -208;'762;Tajikistan;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -208;'762;Tajikistan;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -208;'762;Tajikistan;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 -208;'762;Tajikistan;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;122;122;122;122;122;122;270;330;330;330;330;330;330;10;15;20;20;20;20;20;20;70;10;10;10;10 -208;'762;Tajikistan;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;173;173;173;173;173;173;350;500;500;500;500;500;500;39;52;5601;5601;5601;5601;5601;5601;142;50;50;50;50 -208;'762;Tajikistan;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 -208;'762;Tajikistan;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 -216;'764;Thailand;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3109369;3287854;3033207;2855397;3936619.72;4065920;3779617 -216;'764;Thailand;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5049339;5152235;4614031;4540832;5790287.2;5820281;6031728 -216;'764;Thailand;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;10724;8611;9563;13607;14329;19190;22833;26621;31859;31166;34337;36163;56516;67436;73117;86481;104856;153228;261633;225701;290140;238042;287551;301875;265243;259116;414392;528209;776641;1035314;1211277;1418174;1417054;1861111;2399246;2049654;1528178;707146;982760;1221909;1106810;1030600;1072863;1401437;1699435;1636597;1819411;2150740;1599013;2175602;2372378;2003060;1948360;2291803;2248596;2176108;2337867;2430235;2169475;2008770;2916448.72;3022441;2717651 -216;'764;Thailand;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;15995;11661;11043;13544;13833;14869;11832;10507;11146;11026;13576;18008;42475;42475;38608;58764;61258;35203;30157;27963;27174;29946;29493;36560;43619;77288;121520;140382;145010;120914;143919;174333;196982;319214;566978;491008;574641;494773;625118;682182;720461;868263;857764;1303521;1219562;1527919;1716304;1888834;1758820;2292944;2290794;2250015;2819844;3182825.13;3142885;3567920;3924993;3989398;3468717;3296635;4326062.2;4413640;4832211 -216;'764;Thailand;1861;Roundwood;5516;Production;m3;23638608;23894962;24470220;24801982;25335756;25424244;25960450;26446380;26352036;26173424;26576288;27914110;27852582;28158976;27995860;28224572;28428840;27712220;28343720;27881460;27096876;27023820;27011382;27162150;26997174;27130596;27162904;26861888;25542744;24899980;24495036;24211982;23954400;23739032;23500478;23352536;23393376;23420828;23440552;26814514;27497336;28050008;34713108;34585240;34466024;34336195;34215200;34102600;33998094;33901440;33786500;33679925;33581414;33490685;33407472;33302765;33205596;33115705;33032846;32956790;32886868;32823446;32766328 -216;'764;Thailand;1861;Roundwood;5616;Import quantity;m3;2700;1000;2300;2300;2300;6900;6000;2900;1200;500;4200;12900;23600;23600;17100;13500;65800;180200;227100;104900;160000;148900;229000;201700;172400;168100;300800;451200;1182100;2035949;1544574;2036453;1370383;1549600;1378800;927000;896300;278000;466000;493000;517000;679000;137857;468330;466353;503826;531579;303762;292036;274078;240172;160772;189726;142765;62979;39602;27723;20512;38166;24465;22708;22184;30299 -216;'764;Thailand;1861;Roundwood;5622;Import value;1000 USD;54;21;40;40;40;142;64;96;35;9;76;222;728;728;378;832;4123;12014;21680;11404;15473;15285;30918;35744;41201;38191;55045;80285;159859;221028;267661;285735;233663;294698;402583;246276;180050;51187;95677;127131;101177;125365;15211;106224;114079;108600;86779;107537;49623;60102;54879;65920;80813;70465;12126;19374;8404;5719;5109;4444;4395;3726;5429 -216;'764;Thailand;1861;Roundwood;5916;Export quantity;m3;10800;9200;21400;19300;27900;36900;30600;28700;27500;29700;64100;76100;86700;86700;500;49000;31800;17200;700;700;7100;6300;;;;;;;;46601;38970;24135;1531;650;26200;0;0;12000;300;200;200;17612;10287;6528;26917;16500;15832;19163;12782;8802;15971;23287;28134;46332;14591;6218;2128;9164;10633;13783;19618;15243;11239 -216;'764;Thailand;1861;Roundwood;5922;Export value;1000 USD;1572;1439;1488;2400;4753;5387;4568;3942;3846;3521;4754;6528;12067;12067;104;10687;8783;3030;293;293;2816;2500;;;;;;;;6226;9175;6816;244;88;1287;0;0;766;19;15;18;4080;4189;535;9801;8052;9580;6867;4827;3806;7414;17185;25855;37240.13;10451;5622;2511;3668;3926;8860;18867;3534;10720 -216;'764;Thailand;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 -216;'764;Thailand;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11895;11331;13746;8209;13956;12221;23910 -216;'764;Thailand;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1600;1622;2466;1709;1653;1933;3207 -216;'764;Thailand;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;163;0;44;5;292;2;2 -216;'764;Thailand;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;0;112;1;63;214;3 -216;'764;Thailand;1863;Roundwood, non-coniferous;5516;Production;m3;23638608;23894962;24470220;24801982;25335756;25424244;25960450;26446380;26352036;26173424;26576288;27914110;27852582;28158976;27995860;28224572;28428840;27712220;28343720;27881460;27096876;27023820;27011382;27162150;26997174;27130596;27162904;26861888;25542744;24899980;24495036;24211982;23954400;23739032;23500478;23352536;23393376;23420828;23440552;26814514;27497336;28050008;34713108;34585240;34466024;34336195;34215200;34102600;33998094;33901440;33786500;33679925;33581414;33490685;33407472;33302765;33205596;33115705;33032846;32956790;32886868;32823446;32766328 -216;'764;Thailand;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15828;9181;24420;16256;8752;9963;6389 -216;'764;Thailand;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6804;4097;2643;2735;2742;1793;2222 -216;'764;Thailand;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1965;9164;10589;13778;19326;15241;11237 -216;'764;Thailand;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2468;3668;3814;8859;18804;3320;10717 -216;'764;Thailand;1864;Wood fuel;5516;Production;m3;20735608;20855962;20977220;21098982;21221756;21345244;21469450;21594380;21720036;21846424;22127288;22417110;22506582;22759976;22970860;23027572;23049840;23013220;23104120;23151460;23068876;22983820;22880382;22779150;22730174;22680596;22533904;22290888;22059744;21806980;21629036;21428982;21198400;20960032;20725478;20539536;20548376;20548828;20547552;20552514;20396336;20250008;20113108;19985240;19866024;19736195;19615200;19502600;19398094;19301440;19186500;19079925;18981414;18890685;18807472;18702765;18605596;18515705;18432846;18356790;18286868;18223446;18166328 -216;'764;Thailand;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;252;2266;700;300;300;100;0;0;0;0;0;0;0;0;0;0;270;270;6383;681;1123;1123;120;125;46;12;51;17515;8074;232;398;184 -216;'764;Thailand;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;81;124;123;123;39;0;0;0;0;0;0;0;0;0;0;67;67;208;91;368;368;83;90;28;6;37;759;262;136;113;128 -216;'764;Thailand;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;131;50;0;0;0;0;0;0;0;0;0;0;0;0;0;148;148;280;951;711;711;1000;511;41;123;0;934;68;1;2;115 -216;'764;Thailand;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;10;11;0;0;0;0;0;0;0;0;0;0;0;0;0;70;70;67;248;266;266;435;332;7;64;0;93;109;0;4;22 -216;'764;Thailand;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 -216;'764;Thailand;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;28;162;153;213;168;172 -216;'764;Thailand;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;19;18;83;126;106;118 -216;'764;Thailand;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;5;0;2;2 -216;'764;Thailand;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;0;0;3;3 -216;'764;Thailand;1628;Wood fuel, non-coniferous;5516;Production;m3;20735608;20855962;20977220;21098982;21221756;21345244;21469450;21594380;21720036;21846424;22127288;22417110;22506582;22759976;22970860;23027572;23049840;23013220;23104120;23151460;23068876;22983820;22880382;22779150;22730174;22680596;22533904;22290888;22059744;21806980;21629036;21428982;21198400;20960032;20725478;20539536;20548376;20548828;20547552;20552514;20396336;20250008;20113108;19985240;19866024;19736195;19615200;19502600;19398094;19301440;19186500;19079925;18981414;18890685;18807472;18702765;18605596;18515705;18432846;18356790;18286868;18223446;18166328 -216;'764;Thailand;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;23;17353;7921;19;230;12 -216;'764;Thailand;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;18;741;179;10;7;10 -216;'764;Thailand;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;123;0;905;63;1;0;113 -216;'764;Thailand;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;0;85;109;0;1;19 -216;'764;Thailand;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;252;2266;700;300;300;100;0;0;0;0;0;0;0;0;0;0;270;270;6383;681;1123;1123;120;125;46;;;;;;; -216;'764;Thailand;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;81;124;123;123;39;0;0;0;0;0;0;0;0;0;0;67;67;208;91;368;368;83;90;28;;;;;;; -216;'764;Thailand;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;131;50;0;0;0;0;0;0;0;0;0;0;0;0;0;148;148;280;951;711;711;1000;511;41;;;;;;; -216;'764;Thailand;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;10;11;0;0;0;0;0;0;0;0;0;0;0;0;0;70;70;67;248;266;266;435;332;7;;;;;;; -216;'764;Thailand;1865;Industrial roundwood;5516;Production;m3;2903000;3039000;3493000;3703000;4114000;4079000;4491000;4852000;4632000;4327000;4449000;5497000;5346000;5399000;5025000;5197000;5379000;4699000;5239600;4730000;4028000;4040000;4131000;4383000;4267000;4450000;4629000;4571000;3483000;3093000;2866000;2783000;2756000;2779000;2775000;2813000;2845000;2872000;2893000;6262000;7101000;7800000;14600000;14600000;14600000;14600000;14600000;14600000;14600000;14600000;14600000;14600000;14600000;14600000;14600000;14600000;14600000;14600000;14600000;14600000;14600000;14600000;14600000 -216;'764;Thailand;1865;Industrial roundwood;5616;Import quantity;m3;2700;1000;2300;2300;2300;6900;6000;2900;1200;500;4200;12900;23600;23600;17100;13500;65800;180200;227100;104900;160000;148900;229000;201700;172400;168100;300800;451200;1182100;2035949;1544574;2036201;1368117;1548900;1378500;926700;896200;278000;466000;493000;517000;679000;137857;468330;466353;503826;531579;303492;291766;267695;239491;159649;188603;142645;62854;39556;27711;20461;20651;16391;22476;21786;30115 -216;'764;Thailand;1865;Industrial roundwood;5622;Import value;1000 USD;54;21;40;40;40;142;64;96;35;9;76;222;728;728;378;832;4123;12014;21680;11404;15473;15285;30918;35744;41201;38191;55045;80285;159859;221028;267661;285722;233582;294574;402460;246153;180011;51187;95677;127131;101177;125365;15211;106224;114079;108600;86779;107470;49556;59894;54788;65552;80445;70382;12036;19346;8398;5682;4350;4182;4259;3613;5301 -216;'764;Thailand;1865;Industrial roundwood;5916;Export quantity;m3;10800;9200;21400;19300;27900;36900;30600;28700;27500;29700;64100;76100;86700;86700;500;49000;31800;17200;700;700;7100;6300;;;;;;;;46601;38970;24055;1400;600;26200;0;0;12000;300;200;200;17612;10287;6528;26917;16500;15832;19015;12634;8522;15020;22576;27423;45332;14080;6177;2005;9164;9699;13715;19617;15241;11124 -216;'764;Thailand;1865;Industrial roundwood;5922;Export value;1000 USD;1572;1439;1488;2400;4753;5387;4568;3942;3846;3521;4754;6528;12067;12067;104;10687;8783;3030;293;293;2816;2500;;;;;;;;6226;9175;6810;234;77;1287;0;0;766;19;15;18;4080;4189;535;9801;8052;9580;6797;4757;3739;7166;16919;25589;36805.13;10119;5615;2447;3668;3833;8751;18867;3530;10698 -216;'764;Thailand;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1824;8628;3471;2414;39500;43900;43900;73000;7000;20000;39000;37000;32000;55540;40000;14811;12648;13093;14827;23726;27105;76418;40400;32533;26885;24254;13259;11884;11303;13584;8056;13743;12053;23738 -216;'764;Thailand;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;208;965;476;217;7293;7703;7193;8511;778;1984;3458;3146;2483;3388;2500;3379;2920;1841;2396;2652;3248;7241;7851;5772;6019;3158;1663;1595;1603;2448;1626;1527;1827;3089 -216;'764;Thailand;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;313;283;570;60;0;1332;3103;319;231;18;818;0;2;279;665;163;0;15;0;292;0;0 -216;'764;Thailand;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104;125;233;25;0;155;412;64;50;8;612;0;0.13;29;240;43;0;104;1;63;211;0 -216;'764;Thailand;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1824;8628;3471;2414;39500;43900;43900;73000;7000;20000;39000;37000;32000;55540;40000;14811;12648;13093;14827;23726;27105;76418;40400;32533;26885;24254;13259;11884;11303;13584;8056;13743;12053;23738 -216;'764;Thailand;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;208;965;476;217;7293;7703;7193;8511;778;1984;3458;3146;2483;3388;2500;3379;2920;1841;2396;2652;3248;7241;7851;5772;6019;3158;1663;1595;1603;2448;1626;1527;1827;3089 -216;'764;Thailand;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;313;283;570;60;0;1332;3103;319;231;18;818;0;2;279;665;163;0;15;0;292;0;0 -216;'764;Thailand;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104;125;233;25;0;155;412;64;50;8;612;0;0.13;29;240;43;0;104;1;63;211;0 -216;'764;Thailand;1867;Industrial roundwood, non-coniferous;5516;Production;m3;2903000;3039000;3493000;3703000;4114000;4079000;4491000;4852000;4632000;4327000;4449000;5497000;5346000;5399000;5025000;5197000;5379000;4699000;5239600;4730000;4028000;4040000;4131000;4383000;4267000;4450000;4629000;4571000;3483000;3093000;2866000;2783000;2756000;2779000;2775000;2813000;2845000;2872000;2893000;6262000;7101000;7800000;14600000;14600000;14600000;14600000;14600000;14600000;14600000;14600000;14600000;14600000;14600000;14600000;14600000;14600000;14600000;14600000;14600000;14600000;14600000;14600000;14600000 -216;'764;Thailand;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2034125;1535946;2032730;1365703;1509400;1334600;882800;823200;271000;446000;454000;480000;647000;82317;428330;451542;491178;518486;288665;268040;240590;163073;119249;156070;115760;38600;26297;15827;9158;7067;8335;8733;9733;6377 -216;'764;Thailand;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;220820;266696;285246;233365;287281;394757;238960;171500;50409;93693;123673;98031;122882;11823;103724;110700;105680;84938;105074;46904;56646;47547;57701;74673;64363;8878;17683;6803;4079;1902;2556;2732;1786;2212 -216;'764;Thailand;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46601;38970;24055;1400;600;26200;0;0;12000;300;200;200;17299;10004;5958;26857;16500;14500;15912;12315;8291;15002;21758;27423;45330;13801;5512;1842;9164;9684;13715;19325;15241;11124 -216;'764;Thailand;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6226;9175;6810;234;77;1287;0;0;766;19;15;18;3976;4064;302;9776;8052;9425;6385;4693;3689;7158;16307;25589;36805;10090;5375;2404;3668;3729;8750;18804;3319;10698 -216;'764;Thailand;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2021551;1535677;2031900;1364000;1501900;1333900;882800;816200;255000;398000;393000;480000;647000;64632;428330;451542;491178;518486;288665;202970;187440;154333;105475;117450;106000;31560;12270;8464;6236;3512;100;399;633;164 -216;'764;Thailand;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;219090;266600;284776;232379;284756;393999;238960;169005;48872;90438;118407;98031;122882;6533;103724;110700;105680;84938;105074;45270;52916;44692;54876;70570;60314;7322;13728;4419;2282;1266;41;222;181;68 -216;'764;Thailand;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46601;38970;24055;1400;600;26200;0;0;12000;300;200;200;17299;8910;5958;26590;16500;14500;15475;12267;8035;14994;21720;27406;42470;13801;5512;1841;9164;9684;13715;19325;10472;11124 -216;'764;Thailand;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6226;9175;6810;234;77;1287;0;0;766;19;15;18;3976;3802;302;9677;8052;9425;6273;4682;3685;7156;16280;25582;36397;10090;5375;2403;3668;3729;8750;18804;2743;10698 -216;'764;Thailand;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12574;269;830;1703;7500;700;0;7000;16000;48000;61000;0;0;17685;0;0;0;0;0;65070;53150;8740;13774;38620;9760;7040;14027;7363;2922;3555;8235;8334;9100;6213 -216;'764;Thailand;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1730;96;470;986;2525;758;0;2495;1537;3255;5266;0;0;5290;0;0;0;0;0;1634;3730;2855;2825;4103;4049;1556;3955;2384;1797;636;2515;2510;1605;2144 -216;'764;Thailand;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1094;0;267;0;0;437;48;256;8;38;17;2860;0;0;1;0;0;0;0;4769;0 -216;'764;Thailand;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;262;0;99;0;0;112;11;4;2;27;7;408;0;0;1;0;0;0;0;576;0 -216;'764;Thailand;1868;Sawlogs and veneer logs;5516;Production;m3;1631000;1729000;2143000;2312000;2681000;2601000;2966000;3279000;3010000;2655000;2725000;3721000;3517000;3517000;3090000;3210000;3340000;2609000;3100600;2544000;1798000;1769000;1820000;2032000;1875000;2015000;2149000;2048000;919000;492000;232000;119000;65000;62000;33000;44000;50000;50000;45000;158000;210000;300000;6200000;6200000;6200000;6200000;6200000;6200000;6200000;6200000;6200000;6200000;6200000;6200000;6200000;6200000;6200000;6200000;6200000;6200000;6200000;6200000;6200000 -216;'764;Thailand;1868;Sawlogs and veneer logs;5616;Import quantity;m3;2700;1000;2300;2300;2300;6900;6000;2900;1200;400;3800;12500;23400;23400;12000;9700;61000;169200;216300;104800;158900;146900;226400;199000;169300;165000;298400;451200;1182100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -216;'764;Thailand;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;54;21;40;40;40;142;64;96;35;7;66;212;723;723;92;623;3825;11490;20188;11382;15326;15074;30497;35065;40724;37714;54708;80285;159859;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -216;'764;Thailand;1868;Sawlogs and veneer logs;5916;Export quantity;m3;10800;9200;21400;19300;27900;36900;30600;28700;27500;29700;64100;76100;86700;86700;500;49000;31800;17200;700;700;7100;6300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -216;'764;Thailand;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;1572;1439;1488;2400;4753;5387;4568;3942;3846;3521;4754;6528;12067;12067;104;10687;8783;3030;293;293;2816;2500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -216;'764;Thailand;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;9500;12700;12700;7300;7300;3500;5900;12300;12300;12300;12300;13900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -216;'764;Thailand;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;721;1310;1310;700;700;1367;1274;1508;1508;1508;1508;2183;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -216;'764;Thailand;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;1631000;1729000;2143000;2312000;2681000;2601000;2966000;3279000;3010000;2655000;2725000;3721000;3517000;3517000;3090000;3210000;3340000;2609000;3100600;2544000;1798000;1769000;1820000;2032000;1875000;2015000;2149000;2048000;919000;492000;232000;119000;65000;62000;33000;44000;50000;50000;45000;158000;210000;300000;6200000;6200000;6200000;6200000;6200000;6200000;6200000;6200000;6200000;6200000;6200000;6200000;6200000;6200000;6200000;6200000;6200000;6200000;6200000;6200000;6200000 -216;'764;Thailand;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;2700;1000;2300;2300;2300;6900;6000;2900;1200;400;3800;12500;23400;23400;12000;9700;61000;159700;203600;92100;151600;139600;222900;193100;157000;152700;286100;438900;1168200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -216;'764;Thailand;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;54;21;40;40;40;142;64;96;35;7;66;212;723;723;92;623;3825;10769;18878;10072;14626;14374;29130;33791;39216;36206;53200;78777;157676;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -216;'764;Thailand;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;10800;9200;21400;19300;27900;36900;30600;28700;27500;29700;64100;76100;86700;86700;500;49000;31800;17200;700;700;7100;6300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -216;'764;Thailand;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;1572;1439;1488;2400;4753;5387;4568;3942;3846;3521;4754;6528;12067;12067;104;10687;8783;3030;293;293;2816;2500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -216;'764;Thailand;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1528000;1838000;2000000;2900000;2900000;2900000;2900000;2900000;2900000;2900000;2900000;2900000;2900000;2900000;2900000;2900000;2900000;2900000;2900000;2900000;2900000;2900000;2900000;2900000 -216;'764;Thailand;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1528000;1838000;2000000;2900000;2900000;2900000;2900000;2900000;2900000;2900000;2900000;2900000;2900000;2900000;2900000;2900000;2900000;2900000;2900000;2900000;2900000;2900000;2900000;2900000 -216;'764;Thailand;1871;Other industrial roundwood;5516;Production;m3;1272000;1310000;1350000;1391000;1433000;1478000;1525000;1573000;1622000;1672000;1724000;1776000;1829000;1882000;1935000;1987000;2039000;2090000;2139000;2186000;2230000;2271000;2311000;2351000;2392000;2435000;2480000;2523000;2564000;2601000;2634000;2664000;2691000;2717000;2742000;2769000;2795000;2822000;2848000;4576000;5053000;5500000;5500000;5500000;5500000;5500000;5500000;5500000;5500000;5500000;5500000;5500000;5500000;5500000;5500000;5500000;5500000;5500000;5500000;5500000;5500000;5500000;5500000 -216;'764;Thailand;1871;Other industrial roundwood;5616;Import quantity;m3;;;;;;;;;;100;400;400;200;200;5100;3800;4800;11000;10800;100;1100;2000;2600;2700;3100;3100;2400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -216;'764;Thailand;1871;Other industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;2;10;10;5;5;286;209;298;524;1492;22;147;211;421;679;477;477;337;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -216;'764;Thailand;1871;Other industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -216;'764;Thailand;1871;Other industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -216;'764;Thailand;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;1272000;1310000;1350000;1391000;1433000;1478000;1525000;1573000;1622000;1672000;1724000;1776000;1829000;1882000;1935000;1987000;2039000;2090000;2139000;2186000;2230000;2271000;2311000;2351000;2392000;2435000;2480000;2523000;2564000;2601000;2634000;2664000;2691000;2717000;2742000;2769000;2795000;2822000;2848000;4576000;5053000;5500000;5500000;5500000;5500000;5500000;5500000;5500000;5500000;5500000;5500000;5500000;5500000;5500000;5500000;5500000;5500000;5500000;5500000;5500000;5500000;5500000;5500000 -216;'764;Thailand;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;;;;;100;400;400;200;200;5100;3800;4800;11000;10800;100;1100;2000;2600;2700;3100;3100;2400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -216;'764;Thailand;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;2;10;10;5;5;286;209;298;524;1492;22;147;211;421;679;477;477;337;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -216;'764;Thailand;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -216;'764;Thailand;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -216;'764;Thailand;1630;Wood charcoal;5510;Production;t;535525;551510;569079;536247;553131;610747;618211;634240;643153;660368;690560;723725;750236;774017;796004;826607;845102;868748;889321;918290;948610;977489;998935;997837;1008424;1018837;1040010;1037064;1124408;1064983;1086386;1096463;1105701;1110243;1122083;1130649;1150642;1171758;1205730;1202869;1217499;1232306;1247294;1262465;1277820;1293772;1309900;1326300;1342836;1359600;1376983;1394588;1412417;1430475;1448764;1465688;1482810;1500131;1517655;1535384;1553588;1572009;1590647 -216;'764;Thailand;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;1000;100;100;300;500;2000;2600;5400;7500;11000;11500;12600;15200;20300;38100;25300;13600;20994;23234;22400;19200;25600;15000;7000;13000;21000;10000;10000;25000;34000;33000;40116;40100;64547;78385;86665;128225;137272;122766;151695;126813;92007;92582;122808;97134;63974;61455.87;85789;94219 -216;'764;Thailand;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;24;9;9;23;34;274;191;373;510;783;751;996;1139;1319;2341;1762;974;1570;1728;1551;1667;2260;1077;288;640;1042;571;787;1338;1780;1670;2538;3585;5845;7027;8187;13396;14466;13218;16642;14318;13811;12237;17699;14266;8151;8732.56;12368;13314 -216;'764;Thailand;1630;Wood charcoal;5910;Export quantity;t;46900;47500;49200;49200;49200;40200;29700;27200;17000;14500;22200;32300;35300;35300;34300;40100;34500;34600;32000;39700;51300;64600;70300;54700;47200;39300;43100;25400;111800;22600;16600;20097;18848;10400;6900;8800;5100;4000;30000;2000;3000;2300;2300;2300;2529;2288;22084;14160;24018;13744;18538;26323;26323;36607;37315;31554;23692;25934;13903;16926;24586.17;22593;21370 -216;'764;Thailand;1630;Wood charcoal;5922;Export value;1000 USD;643;531;602;602;602;459;368;318;212;195;370;631;846;846;1049;1618;1618;1205;1529;2408;2927;3642;4088;3223;3038;2495;2738;2166;7571;2773;2922;3922;4347;3484;2838;3054;1913;1027;1754;493;878;1060;1521;1521;922;824;2044;4379;6868;4579;6636;10203;10203;15226;14052;13447;11697;11325;6946;7679;12297.56;10202;10512 -216;'764;Thailand;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;353000;1229000;1853000;2080000;2080000;6180000;6180000;6180000;6180000;6180000;6180000;6180000;6180000;6180000;6180000;6180000;6180000;12439000;9129900;9129900;9129900;8492555;7735970;7735970;7735970;7735970 -216;'764;Thailand;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;1500;2000;1000;1000;1000;2290;2951;2951;2951;31540;123097;213622;229426;293590;251190;231742;79810;64612;40529;72337;54174;62175;139436.89;91014;103328 -216;'764;Thailand;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;41;49;46;46;46;427;482;482;482;1617;3876;7552;11922;11907;10597;9630;4356;2778;1401;1669;963;1767;3868.11;2833;3876 -216;'764;Thailand;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;491000;614000;781000;904000;1244700;1071000;734000;763000;368000;575000;1413437;2007652;3164584;5074284;5416549;4610000;4114000;4436522;4130308;3280096;2984157;2544545;1823473;2822775.47;4653297;5229923 -216;'764;Thailand;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19365;25363;29818;40712;64196;42150;39500;37671;18762;32031;90487;97619;204301;302820;351692;313248;278920;284960;296503;203435;180709;260387;169625;230665.72;418291;474530 -216;'764;Thailand;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;353000;1229000;1853000;2080000;2080000;2080000;2080000;2080000;2080000;2080000;2080000;2080000;2080000;2080000;2080000;2080000;2080000;4239000;3129900;3129900;3129900;2492555;1735970;1735970;1735970;1735970 -216;'764;Thailand;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;52;400;0;6400;0;0;0;0;0;0;0;0;0;0;0;269;6948;73460;144680;198190;198190;174515;51764;30683;20754;36274;23038;32280;84247.63;52046;54273 -216;'764;Thailand;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;17;107;0;148;0;0;10;10;0;0;0;0;0;0;0;250;312;2959;6631;6913;6913;5584;1927;947;994;1006;589;1123;2684.11;1694;2005 -216;'764;Thailand;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;183097;120395;160100;210500;309300;416500;491000;614000;781000;904000;1244700;1071000;734000;763000;368000;575000;1411000;2005000;3161300;5070000;5410000;4598000;4085000;4398000;4075000;3280000;2982000;2544332;1823031;2822672.47;4652781;5229295 -216;'764;Thailand;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11031;6825;7832;15908;20450;22793;19365;25363;29818;40712;64196;42150;39500;37671;18762;32031;90140;97250;202912;300528;348964;309869;272450;275972;288334;203430;180389;260364;169591;230659.72;418204;474387 -216;'764;Thailand;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4100000;4100000;4100000;4100000;4100000;4100000;4100000;4100000;4100000;4100000;4100000;4100000;8200000;6000000;6000000;6000000;6000000;6000000;6000000;6000000;6000000 -216;'764;Thailand;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4084;5759;100;3700;6300;5000;500;1500;2000;1000;1000;1000;2290;2951;2951;2951;31271;116149;140162;84746;95400;53000;57227;28046;33929;19775;36063;31136;29895;55189.26;38968;49055 -216;'764;Thailand;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;186;236;18;209;285;462;21;31;39;46;46;46;427;482;482;482;1367;3564;4593;5291;4994;3684;4046;2429;1831;407;663;374;644;1184;1139;1871 -216;'764;Thailand;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28415;351;;300;78500;44000;0;0;0;0;0;0;0;0;0;0;2437;2652;3284;4284;6549;12000;29000;38522;55308;96;2157;213;442;103;516;628 -216;'764;Thailand;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2092;15;;83;4392;1677;0;0;0;0;0;0;0;0;0;0;347;369;1389;2292;2728;3379;6470;8988;8169;5;320;23;34;6;87;143 -216;'764;Thailand;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;20000;115000;40000;40000;130000;317000;172400;61200;61200;140000;220000 -216;'764;Thailand;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5515;1000;1331;998;1129;5923;21652;17332;15990;37706.87;14051;11724 -216;'764;Thailand;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;553;366;525;451;479;363;1446;1102;1624;2887;1349;1457 -216;'764;Thailand;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;631;18159;110826;25429;21706;128032;289361;172736;70259;36732.42;136381;207606 -216;'764;Thailand;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98;2353;16085;2723;1965;11850;36862;19935;10624;6254.69;20070;29025 -216;'764;Thailand;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;20000;115000;40000;40000;130000;317000;172400;61200;61200;140000;220000 -216;'764;Thailand;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5515;1000;1331;998;1129;5923;21652;17332;8453;17641.67;11236;9873 -216;'764;Thailand;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;553;366;525;451;479;363;1446;1102;605;1369;523;658 -216;'764;Thailand;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;631;18159;110826;25429;21706;128032;289361;172736;60799;30237.12;133433;206968 -216;'764;Thailand;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98;2353;16085;2723;1965;11850;36862;19935;6500;3249.86;18232;28762 -216;'764;Thailand;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7537;20065.2;2815;1851 -216;'764;Thailand;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1019;1518;826;799 -216;'764;Thailand;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9460;6495.3;2948;638 -216;'764;Thailand;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4124;3004.82;1838;263 -216;'764;Thailand;1872;Sawnwood;5516;Production;m3;904300;916700;1123800;1153500;1318600;1245400;1394500;1456400;1342200;1204000;1235000;1952000;1942000;1519000;1672000;1670000;1744000;1572000;1558400;1543000;920500;911000;950000;1036000;958000;1027000;1095000;1044000;1259000;1170000;939000;1076000;715000;567700;425900;306900;426000;103000;178000;220000;233000;288000;288000;2814000;2868000;2850000;2850000;2850000;2850000;2850000;2850000;2850000;2850000;2850000;2850000;3700000;4500000;4500000;4500000;4300000;4300000;4200000;5000000 -216;'764;Thailand;1872;Sawnwood;5616;Import quantity;m3;700;500;1100;1100;1100;1100;32400;49300;55100;69100;95000;164900;218000;285000;174000;131100;254900;345800;806100;342200;433200;346800;385100;384600;246100;204100;442200;609200;2114600;1490600;1534000;1881875;1907199;2516900;2085700;2295500;1463300;955000;1016000;1020000;1285000;1924000;1650290;1835276;1939576;1007283;1032124;788043;721127;910051;998767;982734;782339;737000;965150;1447090;1281512;976981;628000;959696;629772;557000;501000 -216;'764;Thailand;1872;Sawnwood;5622;Import value;1000 USD;21;12;27;27;27;27;566;951;1163;1269;2169;3062;4164;5570;3947;6028;20981;31737;71509;44903;65842;59026;66056;60340;37763;38073;87913;112193;244622;316667;362070;436088;510059;649023;682011;679033;437453;164128;215966;233595;253770;313281;340313;427415;521928;275844;265189;277199;221974;268730;274032;319261;279562;270741;247805;225038;229457;223606;187732;156524;169053;176045;150369 -216;'764;Thailand;1872;Sawnwood;5916;Export quantity;m3;122900;93700;96100;110900;85400;67200;43400;34600;37700;37900;62200;57500;92700;63000;74900;101300;52400;16300;6900;1500;700;1400;600;2200;11200;29100;49000;92700;80000;47300;56400;99627;62373;61700;54400;45300;79500;59000;174100;311000;400000;1561697;1974000;1698090;1953988;1296568;975794;1143341;1366881;1546865;1724739;1642986;1937334;2275184;3476571;4396985;4862404;4789288;3938936;3958281;3858966;4060873;4648085 -216;'764;Thailand;1872;Sawnwood;5922;Export value;1000 USD;13768;9644;8925;10514;8450;8995;6827;6202;6924;6845;7606;8502;19959;19959;27913;26851;31283;12784;5866;375;249;351;138;638;10321;21431;25967;47058;58715;46196;51450;52421;55938;71225;87665;76765;73868;11564;37552;55276;53865;165775;148522;403643;204250;270150;291441;318449;339005;548766;323080;379995;888933;931435;1053336;1353967;1541368;1427217;1053550;971035;1057480;1040248;1134213 -216;'764;Thailand;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19700;21900;21900;36000;4000;41000;17000;18000;18000;18000;18000;18000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -216;'764;Thailand;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19636;91299;71200;115000;95700;103300;58000;91000;98000;98000;118000;153510;137576;155576;150853;224034;193413;126497;189327;253037;298734;261339;297000;248530;290217;287000;328000;292000;299673;286772;298000;242000 -216;'764;Thailand;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2626;9066;20074;29689;26821;25263;12920;17398;18847;18533;19214;27879;23798;31928;29465;35546;37544;21144;37418;51081;59269;53812;65340;50949;51606;54530;70192;56356;49529;74385;82546;56870 -216;'764;Thailand;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10655;800;1000;4100;2100;2200;0;100;0;0;3697;2000;90;1446;610;3274;4861;5700;7952;9344;2945;985;2184;1571;4985;1404;1968;4157;1652;5966;1433;85 -216;'764;Thailand;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1794;582;1125;4859;2578;2761;0;121;0;0;1190;1802;43;666;519;706;1348;1212;1542;1763;611;275;612;411;1231;431;596;627;344;1758;1031;101 -216;'764;Thailand;1633;Sawnwood, non-coniferous;5516;Production;m3;904300;916700;1123800;1153500;1318600;1245400;1394500;1456400;1342200;1204000;1235000;1952000;1942000;1519000;1672000;1670000;1744000;1572000;1558400;1543000;920500;911000;950000;1036000;958000;1027000;1095000;1044000;1259000;1170000;939000;1076000;715000;548000;404000;285000;390000;99000;137000;203000;215000;270000;270000;2796000;2850000;2850000;2850000;2850000;2850000;2850000;2850000;2850000;2850000;2850000;2850000;3700000;4500000;4500000;4500000;4300000;4300000;4200000;5000000 -216;'764;Thailand;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;700;500;1100;1100;1100;1100;32400;49300;55100;69100;95000;164900;218000;285000;174000;131100;254900;345800;806100;342200;433200;346800;385100;384600;246100;204100;442200;609200;2114600;1490600;1534000;1862239;1815900;2445700;1970700;2199800;1360000;897000;925000;922000;1187000;1806000;1496780;1697700;1784000;856430;808090;594630;594630;720724;745730;684000;521000;440000;716620;1156873;994512;648981;336000;660023;343000;259000;259000 -216;'764;Thailand;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;21;12;27;27;27;27;566;951;1163;1269;2169;3062;4164;5570;3947;6028;20981;31737;71509;44903;65842;59026;66056;60340;37763;38073;87913;112193;244622;316667;362070;433462;500993;628949;652322;652212;412190;151208;198568;214748;235237;294067;312434;403617;490000;246379;229643;239655;200830;231312;222951;259992;225750;205401;196856;173432;174927;153414;131376;106995;94668;93499;93499 -216;'764;Thailand;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;122900;93700;96100;110900;85400;67200;43400;34600;37700;37900;62200;57500;92700;63000;74900;101300;52400;16300;6900;1500;700;1400;600;2200;11200;29100;49000;92700;80000;47300;56400;88972;61573;60700;50300;43200;77300;59000;174000;311000;400000;1558000;1972000;1698000;1952542;1295958;972520;1138480;1361181;1538913;1715395;1640041;1936349;2273000;3475000;4392000;4861000;4787320;3934779;3956629;3853000;4059440;4648000 -216;'764;Thailand;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;13768;9644;8925;10514;8450;8995;6827;6202;6924;6845;7606;8502;19959;19959;27913;26851;31283;12784;5866;375;249;351;138;638;10321;21431;25967;47058;58715;46196;51450;50627;55356;70100;82806;74187;71107;11564;37431;55276;53865;164585;146720;403600;203584;269631;290735;317101;337793;547224;321317;379384;888658;930823;1052925;1352736;1540937;1426621;1052923;970691;1055722;1039217;1134112 -216;'764;Thailand;1634;Veneer sheets;5516;Production;m3;2000;4000;4500;5100;4900;5300;6600;7600;8700;7600;8300;12100;12800;12800;9000;11000;13000;11000;22800;22500;23000;15000;15000;50000;17000;10000;21000;21000;21000;136000;154000;71200;71700;14000;8000;8000;2000;2000;3000;145000;150000;155000;160000;165000;175000;180000;185000;185000;185000;185000;185000;185000;185000;185000;185000;185000;185000;185000;185000;185000;300000;300000;300000 -216;'764;Thailand;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;100;100;300;400;400;600;1100;1100;5000;1900;1100;4100;5100;600;1200;900;200;100;100;100;100;800;1700;2300;3100;9192;11798;14000;20500;15500;17400;11000;14000;15000;12000;20288;9280;8646;33365;32456;28849;28750;27046;32342;25213;22776;20128;22281;13920;23397;18429;24980;14933;16986;13535;14386;14888 -216;'764;Thailand;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;9;9;55;95;105;173;153;153;274;111;69;187;252;117;506;616;142;177;177;177;303;1226;2165;3569;4064;7882;10343;12857;17196;16341;14993;10031;12921;14517;12457;18662;8691;13040;26145;26970;25170;27376;19641;26599;29664;24015;22464;24517;19552;24341;25797;32320;25474;22264;24468;26678;30792 -216;'764;Thailand;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;500;3700;3700;4100;7200;7700;11800;8400;6800;6000;6000;7000;10200;7300;5800;11000;5800;7800;5000;3900;3595;3326;4000;2300;2100;2300;3000;3000;2000;2000;1853;2970;5746;3261;3745;5020;3565;1604;2792;4572;4075;6485;5712;10105;11712;33795;104186;122371;134307;251075;162293;143687 -216;'764;Thailand;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;141;5420;5420;5436;14405;14008;12839;14188;13160;12225;13058;16043;22295;18075;16493;15566;16020;17452;14734;12489;12166;10772;15018;10371;8831;12375;11522;11222;8406;8290;8196;8412;16703;15068;13772;13461;14383;2698;4982;4654;5257;4990;3783;3824;2772;4520;9754;10725;10198;20634;16547;22452 -216;'764;Thailand;1873;Wood-based panels;5516;Production;m3;21300;21400;24900;28600;28300;44700;48200;45111;56800;66200;85448;105520;97727;101696;97600;111300;115000;122400;133300;127000;159000;222500;249000;265000;169000;186000;212000;214000;220000;313000;367400;417000;791000;742000;675000;586000;318000;283000;892000;1154000;1272000;1357000;1352000;3607000;3694900;3889900;4414900;4404900;4664900;5214900;5214900;5214900;5844900;5844900;7278900;7331900;7503900;7779900;8057324;7725640;9837640;9541640;10171640 -216;'764;Thailand;1873;Wood-based panels;5616;Import quantity;m3;300;1000;900;800;800;4600;7100;4700;6800;9500;6000;2300;4900;1300;3700;7500;6600;9700;10000;7600;8500;6500;8200;5700;6500;5400;8600;10200;12700;46600;48600;62870;42954;49700;112500;126800;77500;41000;38000;68000;58000;85504;129306;168051;225608;333839;287065;269660;252049;312443;370794;385366;434748;309614;273946;351402;442903;448466;485557;470922;568436.09;442307;368957 -216;'764;Thailand;1873;Wood-based panels;5622;Import value;1000 USD;56;149;154;113;130;642;712;351;825;1267;920;312;998;428;793;893;925;1502;1943;1814;2191;1908;2233;1667;1455;1369;2453;4174;6775;18074;22117;33556;24114;29906;51428;48271;30858;13145;12036;16425;16844;21931;34122;45989;60155;80741;98152;103011;97034;118735;157585;165828;180245;185838;176810;173356;165312;182361;230378;235447;281223.13;264754;187246 -216;'764;Thailand;1873;Wood-based panels;5916;Export quantity;m3;100;400;200;200;200;200;200;100;305;2605;12111;19737;28616;28616;9516;11216;9700;7600;8600;8200;11200;10400;13700;16900;21200;32900;79200;54500;9800;5600;15400;39104;190782;152800;184300;182700;249900;414000;673000;869000;1002100;1079424;1199239;1611959;2173421;2646792;2675894;2520855;2860784;3367540;3263322;3155554;3627891;4100869;4152464;4731323;5130673;5478799;5640744;5557229;6456179.25;6004459;6995030 -216;'764;Thailand;1873;Wood-based panels;5922;Export value;1000 USD;12;47;28;28;28;28;28;11;49;179;748;1476;3267;3267;1993;2291;1950;1430;1613;1964;2219;2127;2637;3158;3507;6194;28786;20025;5882;2969;4819;11497;34508;30225;38863;37644;51510;63681;110467;110199;120365;143376;172205;252152;315575;381686;484072;513557;488724;642631;726348;692675;725201;836155;806824;835440;959699;988102;974811;1016772;1424772.21;1331271;1362360 -216;'764;Thailand;1640;Plywood and LVL;5516;Production;m3;14600;15800;18400;23800;25600;38300;39700;42800;45800;47200;48800;56000;55000;60000;51000;63000;68000;75400;93000;88700;106000;160000;165000;165000;82000;44000;70000;70000;70000;122000;164000;166000;260000;220000;278000;195000;44000;53000;82000;93000;107000;85000;90000;100000;110000;115000;120000;120000;120000;120000;120000;120000;120000;120000;396000;388000;397000;286000;120000;120000;120000;120000;120000 -216;'764;Thailand;1640;Plywood and LVL;5616;Import quantity;m3;200;500;400;400;300;4100;2100;100;4600;2500;200;100;400;800;400;700;800;600;1500;900;1300;1800;1900;1300;1300;1100;1400;4900;9400;19700;23800;41079;24012;30700;95000;109900;60000;27000;21000;48000;41000;71204;105606;155398;175391;275117;215965;216447;224495;286747;338240;359050;399353;263949;224000;309228;405223;402172;432146;417015;523772;404385;334058 -216;'764;Thailand;1640;Plywood and LVL;5622;Import value;1000 USD;19;86;43;43;22;534;367;42;616;333;66;61;51;117;77;168;168;180;465;333;529;757;943;616;439;366;598;2556;5860;12477;16022;25407;15999;21629;43484;40696;24672;10522;9008;12567;12007;17706;26116;38720;46872;64171;75071;71606;78253;100827;135421;146978;157689;157729;150711;151212;147155;160713;209038;214606;261972;246444;171425 -216;'764;Thailand;1640;Plywood and LVL;5916;Export quantity;m3;100;400;200;200;200;200;200;100;200;2500;11900;19000;28300;28300;9200;10900;4800;700;2000;2000;4200;2000;1900;1600;2000;6400;54000;39000;5400;1900;2900;3657;4576;1800;1300;2200;6000;13000;13000;3000;2000;18546;57089;56233;53811;8095;17320;14816;19831;37300;24722;23560;41858;44577;57144;47636;61122;54734;99493;146068;108485;98665;72665 -216;'764;Thailand;1640;Plywood and LVL;5922;Export value;1000 USD;12;47;28;28;28;28;28;11;41;166;732;1395;3230;3230;1956;2254;1219;288;426;557;711;352;177;163;178;1732;23954;17312;4658;1828;1636;2447;2848;1392;1414;1282;2466;3281;3281;900;800;8227;24911;29351;30595;3893;10468;9698;17616;19708;19026;18059;26037;27476;28502;30007;29484;40487;49180;67061;77553;99655;84241 -216;'764;Thailand;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;360;395 -216;'764;Thailand;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;466;197 -216;'764;Thailand;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;194 -216;'764;Thailand;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;172 -216;'764;Thailand;1646;Particle board and OSB (1961-1994);5516;Production;m3;6700;5600;6500;4800;2700;6400;8500;2100;4000;4000;5900;7400;10400;8000;8000;6000;5000;5000;9500;8700;11000;28000;33000;33000;31000;74000;72000;72000;72000;60000;64000;81000;300000;258000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -216;'764;Thailand;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;2200;1400;1400;1400;1400;1400;100;100;100;100;100;100;100;400;1300;1300;600;700;700;500;2300;4500;2300;16700;16000;3798;1300;3500;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -216;'764;Thailand;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;206;169;169;169;169;169;80;80;80;80;42;83;220;339;536;563;346;406;359;413;1116;1354;730;3455;3547;1257;673;1156;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -216;'764;Thailand;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8705;122406;102300;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -216;'764;Thailand;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1711;18137;17808;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -216;'764;Thailand;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;216000;172000;106000;156000;452000;500000;538000;538000;538000;2600000;2600000;2600000;2600000;2600000;2600000;2600000;2600000;2600000;2600000;2600000;3072000;3146000;3220000;3373000;3334000;3334000;4576000;4300000;4890000 -216;'764;Thailand;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1800;1700;5100;1000;1000;1800;3300;3600;6000;2387;3640;14571;18619;12365;4604;3198;5967;1635;8060;8737;19436;11977;10907;13751;13437;8368;5324.29;4624;5578 -216;'764;Thailand;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;916;1036;2347;595;343;626;1795;1964;3196;1139;2295;5580;7089;7503;3764;2820;4197;1313;4223;5095;7314;5432;4754;6296;4974;3984;2932.83;2855;3703 -216;'764;Thailand;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121700;118900;106500;207000;379000;433000;495000;383000;434000;868000;1340000;1687000;1711000;1566000;1734000;1863000;1753000;1720000;1795000;2072190;1940120;2327696;2511492;2548911;2520000;2551036;3039377.86;2341153;2883372 -216;'764;Thailand;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21797;20838;18566;23426;45004;50974;53633;44712;53084;108500;156230;218583;233162;258032;227073;275030;308979;280749;267972;319213;281938;323771;387569;346151;331248;329206;477605.26;381226;416415 -216;'764;Thailand;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;130000;100000;100000 -216;'764;Thailand;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;200;700;400;400;400;5360;2181;2181;719;729;592;1208;1286;3940;2000;4600;6584;9183;14105;16467;19242;12831.34;11450;7893 -216;'764;Thailand;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106;49;194;102;102;100;2078;1000;1000;451;419;312;613;696;1492;681;1183;1548;2137;3926;4210;4298;3347.16;2929;2380 -216;'764;Thailand;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;166;59;103;177;15785;122982.21;47092;38199 -216;'764;Thailand;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;26;53;53;2058;18391.92;7862;5618 -216;'764;Thailand;1874;Fibreboard;5516;Production;m3;;;;;;;;211;7000;15000;30748;42120;32327;33696;38600;42300;42000;42000;30800;29600;42000;34500;51000;67000;56000;68000;70000;72000;78000;131000;139400;170000;231000;264000;181000;219000;168000;74000;358000;561000;627000;734000;724000;907000;984900;1174900;1694900;1684900;1944900;2494900;2494900;2494900;3124900;3124900;3810900;3797900;3886900;4120900;4603324;4271640;5011640;5021640;5061640 -216;'764;Thailand;1874;Fibreboard;5616;Import quantity;m3;100;500;500;400;500;500;2800;3200;800;5600;4400;800;4400;400;3200;6700;5700;9000;8400;6300;5900;3400;5700;3700;4500;3800;4900;800;1000;10200;8800;17993;17642;15500;15700;15200;12400;13000;15000;18000;13000;10300;17300;9866;41217;41970;50300;40129;22221;21906;25379;23395;23395;34928;25910;23613;17590;18438;23507;26297;26508.46;21848;21428 -216;'764;Thailand;1874;Fibreboard;5622;Import value;1000 USD;37;63;111;70;108;108;139;140;40;765;685;82;867;231;636;645;715;1239;1258;1142;1126;588;944;645;657;590;739;264;185;2142;2548;6892;7442;7121;7028;6539;3839;2028;2579;3183;2848;2159;4708;6030;8910;9990;14992;23451;14598;14776;17354;16841;16841;22333;17602;15164;11266;11426;12156;12559;12971.13;12526;9738 -216;'764;Thailand;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;105;105;211;737;316;316;316;316;4900;6900;6600;6200;7000;8400;11800;15300;19200;26500;25200;15500;4400;3700;12500;26742;63800;48700;61300;61600;137400;194000;281000;433000;505100;677878;708150;687726;779610;951697;947574;940039;1106953;1467240;1485600;1411994;1791033;1984102;2155200;2355825;2558000;2875051;3021074;2844340;3185334.18;3517549;4000794 -216;'764;Thailand;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;8;13;16;81;37;37;37;37;731;1142;1187;1407;1508;1775;2460;2995;3329;4462;4832;2713;1224;1141;3183;7339;13523;11025;15652;15524;30478;36974;62182;58325;65932;90437;94210;114301;128750;159210;240442;245827;244035;347893;398343;393867;431192;489466;496384;481587;542620;601411;594330;618447;851222.03;842528;856086 -216;'764;Thailand;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70000;108000;57000;38000;113000;113000;135000;92000;92000;116100;92000;92000;92000;92000;92000;92000;92000;92000;92000;92000;281000;268000;276000;259000;272000;219000;245000;255000;255000 -216;'764;Thailand;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2300;2500;2600;1000;1000;1000;3000;900;900;5200;5116;8900;10600;16007;11340;13189;16988;13683;13683;14303;12062;8970;7306;8622;10050;9204;8571.51;5862;4914 -216;'764;Thailand;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1054;1257;1214;304;382;536;856;593;593;4348;2574;3940;6588;10940;7842;8883;11227;10302;10302;11725;10349;6717;5333;6094;6713;5645;5369.16;4302;3304 -216;'764;Thailand;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43400;44800;71600;95000;93000;82000;105000;117000;110400;160700;157300;150700;34839;50651;34557;36915;40973;40451;40680;43102;46200;39825;55000;69430;48896;74432;82723;77756;93374 -216;'764;Thailand;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14039;13469;17654;19378;24002;19270;22353;27489;28928;44951;49922;51504;11201;19477;19004;14725;20962;22558;19389;22500;18928;14127;18744;25978;24314;27058;33226;31110;36433 -216;'764;Thailand;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81000;81000;81000;6000;195000;398000;442000;442000;442000;558000;660000;850000;1370000;1360000;1620000;2170000;2170000;2170000;2800000;2800000;3297000;3297000;3378000;3629000;4039000;3746000;4460000;4460000;4500000 -216;'764;Thailand;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1400;2300;1800;1000;2000;6000;1000;400;400;1050;13401;11670;20000;20481;7007;5913;4994;6389;6389;17463;11328;12028;8399;7497;8028;11350;11267.85;10403;9758 -216;'764;Thailand;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1208;1781;1274;429;741;1128;741;315;315;700;2485;2450;5052;9828;3845;3740;3294;3970;3970;8338;5434;6190;4324;3693;4273;5780;6204.21;6999;5103 -216;'764;Thailand;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3500;40000;89000;165000;340000;389000;555000;590000;524000;619000;800000;615000;633000;663000;918000;952000;962000;1324000;1528000;1658000;1832000;2093000;2287621;2522000;2297000;2650000;2880491;3350906 -216;'764;Thailand;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1180;11067;16915;37395;38262;42561;62395;64706;68965;78230;107536;159310;166493;148626;224549;259685;268413;323018;383712;393363;389611;454513;492072;502206;520355;734653.6;703181;726288 -216;'764;Thailand;1650;Other fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;3500;16000;16000;16000;16000;16000;16000;16000;49000;49000;10000;30000;30000;30000;30000;30000;30000;50000;50000;50000;200000;190000;232900;232900;232900;232900;232900;232900;232900;232900;232900;232900;232900;232900;232900;232900;232900;292324;306640;306640;306640;306640 -216;'764;Thailand;1650;Other fibreboard;5616;Import quantity;m3;100;500;500;400;500;500;2800;3200;800;5600;4400;800;4400;400;3200;6700;5700;9000;8400;6300;5900;3400;5700;3700;4500;3800;4900;800;1000;10200;8800;12070;12300;10500;12000;10400;8000;11000;12000;11000;9000;9000;16000;3616;22700;21400;19700;3641;3874;2804;3397;3323;3323;3162;2520;2615;1885;2319;5429;5743;6669.1;5583;6756 -216;'764;Thailand;1650;Other fibreboard;5622;Import value;1000 USD;37;63;111;70;108;108;139;140;40;765;685;82;867;231;636;645;715;1239;1258;1142;1126;588;944;645;657;590;739;264;185;2142;2548;4632;5254;4473;4766;3501;1351;1295;1456;1519;1251;1251;3800;982;3851;3600;3352;2683;2911;2153;2833;2569;2569;2270;1819;2257;1609;1639;1170;1134;1397.77;1225;1331 -216;'764;Thailand;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;100;200;1300;1100;300;1000;1000;1000;4000;4000;1000;300;300;2151;20700;13400;17900;13300;25800;10000;23000;11000;11100;5878;7750;3026;3310;997;297735;256388;409396;512325;492627;409543;426353;413000;451000;484000;410000;518000;450178;472908;452611.18;559302;556514 -216;'764;Thailand;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;6;28;148;168;45;143;143;143;786;786;197;114;114;563;1302;1170;1613;875;1757;681;785;793;1018;553;576;385;598;170;69931;59857;76405;108619;117696;102896;88785;83254;84093;77849;69363;83361;67810;71034;83342.43;108237;93365 -216;'764;Thailand;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;;;;;;;;211;7000;15000;30748;42120;32327;33696;38600;42300;42000;42000;30800;29600;42000;31000;35000;51000;40000;52000;54000;56000;62000;82000;90400;160000;201000;234000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -216;'764;Thailand;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5923;5342;5000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -216;'764;Thailand;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2260;2188;2648;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -216;'764;Thailand;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;105;105;211;737;316;316;316;316;4900;6900;6500;6000;5700;7300;11500;14300;18200;25500;21200;11500;3400;3400;12200;24591;43100;35300;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -216;'764;Thailand;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;8;13;16;81;37;37;37;37;731;1142;1181;1379;1360;1607;2415;2852;3186;4319;4046;1927;1027;1027;3069;6776;12221;9855;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -216;'764;Thailand;1879;Total fibre furnish;5510;Production;t;2600;2200;2200;2800;2400;1800;2000;8800;10400;39000;52000;72000;81000;71000;136000;127000;130000;141000;113000;185000;195000;207000;256000;292000;243000;275000;291000;328000;394000;294000;398000;430000;505000;568000;1145000;1435000;1594000;1677000;1704000;1622000;1818000;1997000;2043000;2265000;2451000;2854000;2947000;2753000;3045000;2996000;2988000;2963000;3508000;3508000;3808000;3934000;3896000;4028000;4078000;4157950;4161000;4164000;4183023 -216;'764;Thailand;1879;Total fibre furnish;5610;Import quantity;t;600;200;200;2800;1600;1600;3300;12500;30200;65400;54900;100100;107500;162700;103800;159600;189100;196200;280200;235400;247100;194800;201000;172900;201600;215100;308300;295300;290500;333500;482000;562164;655430;789300;962400;928000;972300;964000;1283000;1291000;1957000;1217100;1507000;1230821;1336124;1429410;1389282;1575881;1299369;1461573;1311119;1425114;1283421;1300933;1624293;1621807;2037386;1866797;2035404;1981521;3232895.07;2756925;4060415 -216;'764;Thailand;1879;Total fibre furnish;5622;Import value;1000 USD;87;27;27;453;249;249;506;1744;4387;8948;8953;12710;20011;30095;19548;32752;39836;44436;78922;70141;84479;55789;62625;50485;53855;56909;87280;88192;95748;102986;164585;161835;181514;242319;453725;315360;254426;203712;280697;378810;312863;221175;318901;277687;334467;362480;442751;536364;327336;570345;574600;511766;473644;488449;548944;502453;698070;625996;488466;416969;1062009.1;1007084;959026 -216;'764;Thailand;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;11900;27100;900;26100;25152;55530;56800;98900;131400;102600;214000;229000;250020;341020;191001;194029;199399;203199;236666;274834;221533;199882;168121;189070;139893;151078;188527;169451;160120;190466;305779;145786;306711;153527.04;88394;91218 -216;'764;Thailand;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;8148;19711;782;11030;10877;11882;30618;76157;52451;45449;74594;109983;170963;127736;72231;72797;73956;90332;123760;145015;124651;81222;101864;115620;74176;76353;89174;95599;75102;92237;132390;73234;104788;73783.04;50078;44814 -216;'764;Thailand;1878;Pulp for paper;5510;Production;t;2600;2200;2200;2800;2400;1800;2000;8800;10400;18000;22000;27000;36000;26000;38000;52000;52000;38000;36000;37000;37000;43000;41000;43000;44000;44000;44000;44000;44000;44000;148000;180000;178000;241000;294000;502000;573000;772000;836000;844000;999000;999000;990000;990000;990000;1146000;1239000;1045000;1189000;1140000;1132000;1107000;1143000;1143000;1043000;1149000;1138000;1186000;1169000;1191000;1249000;1233000;1165000 -216;'764;Thailand;1878;Pulp for paper;5610;Import quantity;t;600;200;200;2800;1600;1600;3300;12500;30200;53400;41900;81100;83500;83500;26000;70100;86900;104500;128100;80500;111000;91600;121000;69600;105400;103700;113900;80200;95600;119400;189600;218188;311319;328700;353800;346000;350600;250000;362000;354000;320000;386000;408000;411625;388124;375460;371482;355392;326642;435881;386737;425118;425118;442308;490665;534900;538373;470960;390569;375793;427497.1;440667;405336 -216;'764;Thailand;1878;Pulp for paper;5622;Import value;1000 USD;87;27;27;453;249;249;506;1744;4387;7768;7451;11580;18259;18259;9556;23255;29068;33773;56248;43993;59241;39756;51741;34838;42804;44942;58132;52374;65567;72433;121147;113516;141344;166395;294597;212609;171151;120331;171037;223311;151799;152156;161951;182240;197467;218007;257555;252067;184840;336640;333716;297793;297793;317357;336871;306329;359274;383941;269864;220600;327537.76;400260;322430 -216;'764;Thailand;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;11900;27100;900;26100;25152;55530;56800;98900;131400;102600;214000;227000;250020;341020;191001;191029;191728;186452;221204;258334;198621;169712;134538;157171;108715;108715;116874;126086;110244;101049;113377;81726;167233;93655.04;42487;62103 -216;'764;Thailand;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;8148;19711;782;11030;10877;11882;30618;76157;52451;45449;74594;109383;170963;127736;72231;72317;72512;87195;120727;140697;116973;73952;88174;103116;63338;63338;70252;82079;60772;68338;82790;57552;80019;57395.04;35547;37310 -216;'764;Thailand;1875;Wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64000;160000;408000;465000;544000;756000;764000;919000;919000;916000;916000;916000;991000;1135000;928000;1077000;1014000;1001000;974000;1010000;1010000;927000;1111000;1109000;1162000;1143000;1074000;1192000;1171000;1126000 -216;'764;Thailand;1875;Wood pulp;5610;Import quantity;t;600;200;200;2800;1600;1600;3300;12500;30200;36600;30400;66100;81400;81400;26400;65200;82600;98700;127700;79700;108900;89500;117600;64900;97800;100100;113300;97300;113100;129600;189600;222022;309853;286800;327300;398300;399800;318000;423000;410000;385000;451000;470000;464323;466625;464438;473782;452884;430773;562142;527563;556202;556202;550260;631333;672967;674761;621143;514158;499469;583370.59;645609;611002 -216;'764;Thailand;1875;Wood pulp;5622;Import value;1000 USD;87;27;27;453;249;249;506;1744;4387;4808;5424;10397;17629;17629;9551;21699;27622;31373;56093;43682;58170;38374;50550;31685;39947;43020;57483;69411;99261;101775;121147;135674;159892;165526;296431;260402;211650;167574;205568;265315;187922;188279;196469;210029;247929;281038;347057;353690;261777;486227;503003;430035;430035;420737;454423;424550;483493;523746;395166;311674;469948.56;607612;514659 -216;'764;Thailand;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;11900;27100;900;26100;25152;55530;56800;98900;131400;102600;214000;227000;250000;341000;191000;191000;191695;163331;178551;178551;126607;91929;58088;74873;39855;39855;140607;171719;162068;140576;145008;141999;219752;169854.73;108289;141678 -216;'764;Thailand;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;8148;19711;782;11030;10877;11882;30618;76157;52451;45449;74594;109383;170925;127719;72228;72228;72423;77376;99544;99544;74756;40055;39466;49840;25035;25035;108764;124549;113305;115636;124846;97333;110143;129877.01;101019;109179 -216;'764;Thailand;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97000;97000;98000;90000;95000;90000;70000 -216;'764;Thailand;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;245;1462;972;449;882;1008;1106 -216;'764;Thailand;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;276;1032;572;377;685;751;795 -216;'764;Thailand;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109;617;1557;130;105;40;21 -216;'764;Thailand;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;314;471;883;260;264;211;176 -216;'764;Thailand;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;600;200;200;2800;1600;1600;3300;10000;26400;15500;12200;18300;13700;13700;1000;2200;2200;6100;2800;1700;2600;200;400;1500;7300;2500;400;2400;4900;4300;2300;5739;5300;7100;6400;10800;6600;3000;3000;3000;1000;1000;5000;11176;2328;600;600;2649;1594;1705;828;799;799;3145;1462;474;;;;;;; -216;'764;Thailand;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;87;27;27;453;249;249;506;1395;3846;1130;2234;2779;3439;3439;388;758;758;1550;1067;935;1137;130;149;789;2181;1484;257;1636;4079;3434;1999;3033;2799;3982;4738;5346;2624;1233;1325;1325;392;392;1500;3711;773;200;200;879;529;566;275;265;265;1044;486;157;;;;;;; -216;'764;Thailand;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;695;695;311;311;1082;697;360;256;901;901;795;902;527;;;;;;; -216;'764;Thailand;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;195;195;87;87;303;195;101;72;252;252;223;253;148;;;;;;; -216;'764;Thailand;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23000;26000;55000;0;0;0;0;59000;59000;59000;58000;62000;63000;63000;61000;60000;62000;62000;62000;57000;120000;;;;;;; -216;'764;Thailand;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;1700;700;800;600;600;100;100;1000;7100;4700;2000;1900;1700;1800;5200;7100;3100;10900;5400;2800;2400;2000;3864;2600;1000;1000;0;0;0;0;0;0;30000;45000;45000;33099;24200;645;1;0;27;563;2187;2187;3536;1837;899;;;;;;; -216;'764;Thailand;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;261;126;119;150;150;68;68;68;2415;2196;1364;998;895;814;3886;5303;1965;3343;2323;2550;2118;1620;2046;1733;659;659;0;0;10;10;10;10;13266;20348;20425;20824;15500;195;1;0;60;379;1457;1457;2609;935;396;;;;;;; -216;'764;Thailand;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2433;4412;4412;3928;2490;2490;36;226;945;;;;;;; -216;'764;Thailand;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1630;2136;2136;2712;1449;1449;215;273;554;;;;;;; -216;'764;Thailand;1656;Chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64000;160000;385000;439000;489000;756000;764000;919000;919000;857000;857000;857000;933000;1073000;865000;1014000;953000;941000;912000;948000;948000;870000;908000;924000;971000;953000;892000;1006000;992000;969000 -216;'764;Thailand;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;2500;3800;18600;15100;46500;66500;66500;24700;61900;78500;85000;119800;75700;104100;87100;114200;58100;80100;93000;100500;59300;62400;73000;123000;152569;239717;218100;255700;317800;329700;241000;350000;340000;310000;346000;346000;350000;347840;345460;365737;347293;317556;412375;372479;409956;409956;425576;477830;522635;531756;461114;382923;368863;417395.74;432242;396379 -216;'764;Thailand;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;349;541;3282;2691;7387;13950;13950;9005;20538;26477;27228;52664;41244;55896;37174;48981;26937;30776;38843;53155;39369;43722;45059;65445;80535;109583;112304;218814;197933;161646;114851;163782;214548;145240;132341;132341;151662;170694;197072;251926;243216;175714;309525;303843;274514;274514;299271;322165;289368;348179;369296;258185;210134;311661.37;382877;308562 -216;'764;Thailand;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;11900;27100;900;26100;25152;55530;56800;98900;131400;102600;214000;227000;250000;341000;191000;191000;191000;162636;178240;178240;121220;84005;52073;69939;33685;33685;53541;81434;75727;50836;54695;54306;133232;76665.36;28587;51001 -216;'764;Thailand;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;8148;19711;782;11030;10877;11882;30618;76157;52451;45449;74594;109383;170925;127719;72228;72228;72228;77181;99457;99457;71543;36474;36364;45912;20157;20157;31601;51281;38451;34230;39649;28704;56233;42772.91;22585;28731 -216;'764;Thailand;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64000;160000;385000;439000;489000;756000;0;0;0;110000;110000;110000;110000;110000;110000;75000;85000;72000;74000;74000;74000;62000;72000;89000;97000;88000;97000;89000;115000;101000 -216;'764;Thailand;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;300;18200;16400;16400;6700;16000;16600;11500;20900;16700;17600;11000;30400;8100;31400;32600;33800;27200;25400;30100;45500;54230;55027;53700;67800;107800;128800;106000;150000;142000;124000;130000;130000;110000;106753;105351;127200;108538;102160;125879;110982;128998;128998;136390;125476;156130;114798;114798;102171;104414;136608.03;133409;108514 -216;'764;Thailand;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;46;2939;2790;2790;2575;4719;5115;3009;7976;8026;8771;4401;15054;3403;10602;10538;16095;16224;14863;15717;23325;27236;25655;24202;51580;67167;55623;40221;60712;77077;44872;44000;44000;33138;45588;51965;79344;63057;51589;89185;86818;84154;84154;98781;81920;84172;88178;88178;70412;59409;103644.52;112542;75530 -216;'764;Thailand;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;0;0;0;300;1000;1000;0;0;0;0;0;1030;116;116;1937;221;221;26;14;14;186;12;3;20;20;2657;2033;0;0;5362 -216;'764;Thailand;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;0;0;0;231;526;32;0;0;0;0;0;685;57;57;1486;110;110;21;32;32;96;6;2;16;16;1439;848;0;0;2508 -216;'764;Thailand;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;764000;919000;919000;747000;747000;747000;823000;963000;755000;939000;868000;869000;838000;874000;874000;808000;836000;835000;874000;865000;795000;917000;877000;868000 -216;'764;Thailand;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;500;1600;9600;7600;15700;21100;21100;9800;28400;53700;56500;73400;43800;74500;59300;72400;35600;37600;49900;48200;29800;33000;40100;71900;93156;180753;153200;184700;192300;197200;127000;189000;189000;177000;206000;206000;226000;227776;230022;226200;233994;213835;282659;259079;279602;279602;280935;341979;353670;402012;327455;269752;262851;279426.71;297817;286882 -216;'764;Thailand;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;64;240;1778;1330;2662;4892;4892;3837;9429;17919;18150;32110;24384;37804;24096;29077;16279;15819;22919;25518;21577;25518;26966;37518;49189;81150;82399;164493;119279;103837;71301;97659;131149;96734;84841;84841;112033;119146;139201;163278;176251;122372;216777;213968;188270;188270;193591;232593;196330;249170;263255;176896;148554;205798.08;268269;230969 -216;'764;Thailand;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;11900;27100;900;26100;25001;55482;56800;98900;131400;102300;213000;225000;250000;341000;191000;191000;191000;160798;176911;176911;119263;83607;51376;68697;32948;32948;53355;81422;75724;50816;54675;51649;129095;76662.36;28574;45631 -216;'764;Thailand;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;8148;19711;782;11030;10781;11853;30618;76157;52451;45218;74067;108701;170925;127719;72228;72228;72228;76010;98660;98660;70019;36197;35871;45018;19679;19679;31505;51275;38449;34214;39633;27265;54415;42768.91;22570;26211 -216;'764;Thailand;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -216;'764;Thailand;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14946;18861;11000;1598;1361;1016;983 -216;'764;Thailand;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10831;17863;10877;2171;2218.77;2066;2063 -216;'764;Thailand;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2104;3;13;8 -216;'764;Thailand;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;970;4;15;12 -216;'764;Thailand;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;200;1100;16400;16400;400;4200;100;600;700;3400;1900;600;1400;3800;2300;500;3900;200;200;200;3000;9;28;4600;100;15100;2000;6000;10000;6000;8000;9000;9000;9000;6300;7119;3500;3500;3;1091;415;2;2;6885;8845;11374;;;;;;; -216;'764;Thailand;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;36;188;3314;3314;136;1375;39;169;274;1640;929;274;388;1688;786;152;1680;118;118;118;2344;6;11;2171;44;9775;765;1980;4147;3379;2902;2800;2800;2800;2540;3371;2220;2220;3;864;349;5;5;5096;5892;6984;;;;;;; -216;'764;Thailand;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;0;0;0;0;0;0;0;0;0;0;0;7;7;7;0;0;0;;;;;;; -216;'764;Thailand;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;649;0;0;0;0;0;0;0;0;0;0;0;7;7;7;0;0;0;;;;;;; -216;'764;Thailand;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;2000;2200;9000;7000;11500;12600;12600;7800;13300;8100;16400;24800;11800;10100;16200;10000;10600;8800;10000;14600;2100;3800;2600;2600;5174;3909;6600;3100;2600;1700;2000;1000;3000;1000;1000;1000;5000;7011;2968;8837;1261;1558;2746;2003;1354;1354;1366;1530;1461;;;;;;; -216;'764;Thailand;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;285;301;1504;1279;1598;2954;2954;2457;5015;3404;5900;12304;7194;8392;8403;4462;5567;3569;5234;9862;1450;3223;2258;2258;4104;2767;3532;2697;1712;1421;1349;1264;2943;732;700;700;3691;3420;2535;7084;1688;1750;2699;2708;2085;2085;1803;1760;1882;;;;;;; -216;'764;Thailand;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;151;26;0;0;0;0;0;0;0;0;0;0;0;808;1213;1213;20;177;476;1209;716;716;0;0;0;;;;;;; -216;'764;Thailand;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96;20;0;0;0;0;1;1;0;0;0;0;0;486;740;740;38;167;383;866;439;439;0;0;0;;;;;;; -216;'764;Thailand;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83000;88000;94000;92000;92000;91000;89000;87000 -216;'764;Thailand;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;800;2400;500;600;600;600;1000;900;500;400;300;300;500;1200;100;3300;1500;1500;30200;43000;49900;62300;59850;62236;60600;64200;69700;63500;74000;70000;67000;74000;74000;74000;58147;83358;94178;106800;102941;111623;148035;153693;143260;143260;118003;150204;148959;142760;158567;130263;130157;165092.85;212359;213517 -216;'764;Thailand;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;135;373;112;90;90;90;335;319;180;166;139;139;175;606;73;1687;728;728;26083;48910;51164;52083;50060;45777;48581;72220;57123;47380;51480;40451;49432;42280;42280;42280;34231;55638;68266;94736;109594;85534;176076;198506;153799;153799;117813;130837;134629;135038;153418;136409;101163;157602.18;223984;205302 -216;'764;Thailand;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1872;2815;1243;750;2779;2779;86235;89157;84869;89631;89696;86136;86390;93084.38;79662;90656 -216;'764;Thailand;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1280;1250;865;1144;3177;3177;76725;72742;74152;81092;84726;67746;53650;86840.1;78223;80272 -216;'764;Thailand;1668;Pulp from fibres other than wood;5510;Production;t;2600;2200;2200;2800;2400;1800;2000;8800;10400;18000;22000;27000;36000;26000;38000;52000;52000;38000;36000;37000;37000;43000;41000;43000;44000;44000;44000;44000;44000;44000;148000;180000;178000;177000;134000;94000;108000;228000;80000;80000;80000;80000;74000;74000;74000;155000;104000;117000;112000;126000;131000;133000;133000;133000;116000;121000;117000;118000;118000;209000;148000;151000;126000 -216;'764;Thailand;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;17600;13900;15500;2700;2700;200;5900;5200;6300;800;1100;2400;2600;4600;4800;10900;5100;2100;13100;25500;39700;62300;56016;63702;102500;90700;17400;14300;6000;9000;11000;9000;9000;12000;5449;4857;5200;4500;5449;7492;21774;12867;12176;12176;10051;9536;10892;6372;8384;6674;6481;9219.36;7417;7851 -216;'764;Thailand;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;3095;2400;1295;720;720;95;1891;1765;2580;321;450;1210;1557;1797;3226;4544;2650;1377;9046;15216;21822;52083;27902;27229;49450;70386;9330;6881;4237;5920;7428;6157;6157;7762;6442;5176;5235;5234;7971;8597;26489;29219;21557;21557;14433;13285;16408;10819;13613;11107;10089;15191.39;16632;13073 -216;'764;Thailand;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;1;29;33;23121;42653;79783;73886;80598;77693;83048;71639;71639;62502;43524;33045;50104;58065;25863;33871;16884.69;13860;11081 -216;'764;Thailand;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;17;3;89;89;9819;21183;41153;43497;35147;49573;54420;41480;41480;38213;30272;21619;33794;42670;27965;23526;14358.13;12751;8403 -216;'764;Thailand;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16000;24995;24995;19520;18057;38221;35493;37365;37365;40183;39692;31831;39500;36677;42067;43700;51993.39;59405;56908 -216;'764;Thailand;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7854;11177;11177;11411;9510;26520;27126;25359;25359;28169;27258;20770;27880;32440;27608;26552;42887.63;46849;46198 -216;'764;Thailand;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6200;1240;1240;587;78;273;69;143;143;480;441;83;223;67;15633;188401;1175796.58;1645878;2696543 -216;'764;Thailand;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3942;700;700;506;358;503;342;115;115;257;169;42;111;81;2423;43838;465554.14;481037;678545 -216;'764;Thailand;1669;Recovered paper;5510;Production;t;;;;;;;;;;21000;30000;45000;45000;45000;98000;75000;78000;103000;77000;148000;158000;164000;215000;249000;199000;231000;247000;284000;350000;250000;250000;250000;327000;327000;851000;933000;1021000;905000;868000;778000;819000;998000;1053000;1275000;1461000;1708000;1708000;1708000;1856000;1856000;1856000;1856000;2365000;2365000;2765000;2785000;2758000;2842000;2909000;2966950;2912000;2931000;3018023 -216;'764;Thailand;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;12000;13000;19000;24000;79200;77800;89500;102200;91700;152100;154900;136100;103200;80000;103300;96200;111400;194400;215100;194900;214100;292400;343976;344111;460600;608600;582000;621700;714000;921000;937000;1637000;831100;1099000;819196;948000;1053950;1017800;1220489;972727;1025692;924382;999996;858303;858625;1133628;1086907;1499013;1395837;1644835;1605728;2805397.96;2316258;3655079 -216;'764;Thailand;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;1180;1502;1130;1752;11836;9992;9497;10768;10663;22674;26148;25238;16033;10884;15647;11051;11967;29148;35818;30181;30553;43438;48319;40170;75924;159128;102751;83275;83381;109660;155499;161064;69019;156950;95447;137000;144473;185196;284297;142496;233705;240884;213973;175851;171092;212073;196124;338796;242055;218602;196369;734471.34;606824;636596 -216;'764;Thailand;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;0;0;0;3000;7671;16747;15462;16500;22912;30170;33583;31899;31178;42363;71653;43365;49876;89417;192402;64060;139478;59872;45907;29115 -216;'764;Thailand;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;0;0;0;480;1444;3137;3033;4318;7678;7270;13690;12504;10838;13015;18922;13520;14330;23899;49600;15682;24769;16388;14531;7504 -216;'764;Thailand;1876;Paper and paperboard;5510;Production;t;5600;7800;9900;14300;20000;20200;25500;29700;45400;70800;111200;145700;171400;164200;180400;216100;252100;276600;331200;338000;349200;329000;300000;437000;466000;431000;466000;514000;524000;877000;1045000;1150000;1306000;1664000;1970000;2036000;2271000;2367000;2434000;2312000;2445000;2444000;3260000;3273000;3292000;5145000;4324000;4108000;4180000;4362000;4396000;4386000;4525000;4525000;4829000;5084000;5172000;5118000;5033000;5094000;5263000;5374000;5325000 -216;'764;Thailand;1876;Paper and paperboard;5610;Import quantity;t;52800;40400;58300;69500;76900;102200;109700;128200;135700;89300;97600;88000;99700;99700;82100;105600;110400;129000;150700;134100;163700;151200;208400;216400;202200;173400;255400;282000;262600;368000;410200;540041;576507;559000;523000;468400;398900;193000;321000;389300;361400;339900;361600;564368;609771;655564;751228;756070;629840;737054;731385;737356;736262;977975;999392;1084314;1075180;1038601;989334;1036494;1082824.89;1167085;1097617 -216;'764;Thailand;1876;Paper and paperboard;5622;Import value;1000 USD;10506;8402;9315;12974;13883;18130;20976;23470;25394;19443;21741;19572;30372;30372;48063;45521;38594;63149;87127;96909;121319;104870;124461;152606;128354;122673;179531;214737;216221;320064;337723;441261;409603;582051;718207;684557;561479;213154;324331;400908;366802;287073;311961;494644;577017;699499;791390;970786;777458;912756;1030668;710186;708293;1079014;1066139;1059079;1033908;1153561;1051968;1033865;1159323.02;1256771;1114642 -216;'764;Thailand;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;100;100;300;900;800;2200;3500;3500;9600;5900;6400;6400;11300;14700;7500;7600;4800;6100;7800;36200;53000;57600;61200;52200;47900;73383;120965;183400;207200;203600;517600;867100;903200;716600;757000;893700;879300;856920;785005;1088106;983959;1025836;1062696;963318;917819;825752;929181;1148134;1168550;1286682;1344992;1330653;1325633;1348045;1195291.98;1063467;1054829 -216;'764;Thailand;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;41;34;115;286;98;730;916;916;2113;2912;3616;3915;6668;9763;6738;8268;6587;7246;8678;30675;48463;46965;35679;47234;52034;63511;72451;160724;333806;287421;365056;312254;328758;307012;368597;409349;407968;515511;542001;710213;737960;814275;736249;780647;802736;715442;769416;897825;798205;908908;1016473;1114564;995034;899566;928913.75;964139;984768 -216;'764;Thailand;2042;Graphic papers;5510;Production;t;3600;5800;7900;12300;16300;16200;21000;24000;30000;32000;35000;44000;50000;48000;51000;57000;62000;65000;70000;73000;73000;75000;75000;87000;103000;85000;94000;94000;95000;190000;186000;224000;256000;338000;497000;526000;647000;741000;732000;670000;764000;764000;1040000;1051000;1051000;1406000;1351000;1143000;1248000;1330000;1357000;1251000;1275000;1275000;1251000;1379000;1384000;1306000;1272000;1208000;1159000;1221000;1281000 -216;'764;Thailand;2042;Graphic papers;5610;Import quantity;t;41900;28900;34900;29100;32400;46200;41500;49700;49700;48800;65600;60900;64600;64600;65500;83100;88200;96800;109400;100400;121400;102700;141000;155200;159300;126200;189000;141800;141700;218100;265000;310678;345646;362400;321000;280600;222900;102000;189000;240300;208400;196600;196600;343898;355876;427334;494500;468324;350041;401495;399846;438715;438715;450295;477989;490188;432937;468121;389139;399318;409788.59;345504;349336 -216;'764;Thailand;2042;Graphic papers;5622;Import value;1000 USD;7446;5566;5557;4785;5057;7583;7157;7884;8465;8779;12224;11056;16608;16608;23894;24610;14969;32506;45783;54534;72500;51235;62660;86675;81244;67574;101563;99763;86799;143807;136919;183028;191804;207329;308583;234820;146679;64939;122079;173426;150571;126109;126109;219685;267152;324089;380137;436053;284981;348739;367150;384712;384712;373400;376375;370657;353299;416529;358457;323033;366438.22;344713;323939 -216;'764;Thailand;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;300;300;500;1300;1300;1800;700;400;100;300;300;100;200;200;500;;4500;9700;9200;3600;1800;1300;2983;3365;22600;54200;59800;64600;133700;379000;300000;317000;417000;400000;551995;450738;473682;504284;473689;517829;537129;542177;474972;474972;568363;490032;658975;686049;608200;627433;491951;503848.2;585918;598210 -216;'764;Thailand;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;32;38;154;400;400;325;131;185;77;332;332;75;217;246;961;;3177;7777;9291;3940;4688;3631;2408;2537;15774;51727;44053;45536;57435;149456;140671;225647;235281;232882;364576;359482;404948;446544;469823;480647;545356;567533;512943;512943;553226;472027;575301;604938;616310;608941;471076;471767.96;570170;632304 -216;'764;Thailand;1671;Newsprint;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39000;116000;125000;118000;118000;120000;122000;126000;126000;120000;131000;131000;135000;130000;133000;125000;147000;165000;125000;126000;126000;125000;125000;125000;125000;125000;125000;100000;100000;100000 -216;'764;Thailand;1671;Newsprint;5610;Import quantity;t;24500;15500;26600;21400;25900;35000;32700;42700;42700;36300;54900;50300;55600;55600;63400;78000;74200;90100;104300;91600;110600;96500;131600;107300;137800;104400;166700;129200;136700;194900;238000;238809;289785;298200;252200;205500;169000;66000;111000;147000;135000;76000;76000;130283;171886;128230;168600;131338;104841;111548;99500;101154;101154;98913;69852;64505;50722;38618;45956;45839;30379.56;25800;29271 -216;'764;Thailand;1671;Newsprint;5622;Import value;1000 USD;3358;2090;3445;2790;3214;4517;4548;5624;6009;5232;8577;8579;13589;13589;22664;22710;4014;26828;38984;44621;56400;42830;50627;42545;56040;42460;75324;73506;72143;98763;131871;116602;132289;129535;191628;140382;71903;30222;48297;83859;77200;42964;42964;58861;91685;69830;87203;97392;63455;64575;66009;63605;63605;57380;35095;29080;23186;25988;26490;21707;16297.41;20218;19888 -216;'764;Thailand;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;296;618;4900;23100;13600;3400;37000;13000;3000;5000;5000;5000;6905;19838;24884;24884;14731;21181;17297;22514;19890;19890;20008;34710;47400;54779;41676;23983;11142;19439;31852;29134 -216;'764;Thailand;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;142;300;2308;19472;10308;2081;15888;5260;1567;2382;2382;2382;3780;10972;13841;13841;10532;12054;10642;14629;13162;13162;12845;18479;22654;27477;25777;13112;5358;11274;23315;19164 -216;'764;Thailand;1674;Printing and writing papers;5510;Production;t;3600;5800;7900;12300;16300;16200;21000;24000;30000;32000;35000;44000;50000;48000;51000;57000;62000;65000;70000;73000;73000;75000;75000;87000;103000;85000;94000;94000;95000;190000;186000;224000;256000;299000;381000;401000;529000;623000;612000;548000;638000;638000;920000;920000;920000;1271000;1221000;1010000;1123000;1183000;1192000;1126000;1149000;1149000;1126000;1254000;1259000;1181000;1147000;1083000;1059000;1121000;1181000 -216;'764;Thailand;1674;Printing and writing papers;5610;Import quantity;t;17400;13400;8300;7700;6500;11200;8800;7000;7000;12500;10700;10600;9000;9000;2100;5100;14000;6700;5100;8800;10800;6200;9400;47900;21500;21800;22300;12600;5000;23200;27000;71869;55861;64200;68800;75100;53900;36000;78000;93300;73400;120600;120600;213615;183990;299104;325900;336986;245200;289947;300346;337561;337561;351382;408137;425683;382215;429503;343183;353479;379409.03;319704;320065 -216;'764;Thailand;1674;Printing and writing papers;5622;Import value;1000 USD;4088;3476;2112;1995;1843;3066;2609;2260;2456;3547;3647;2477;3019;3019;1230;1900;10955;5678;6799;9913;16100;8405;12033;44130;25204;25114;26239;26257;14656;45044;5048;66426;59515;77794;116955;94438;74776;34717;73782;89567;73371;83145;83145;160824;175467;254259;292934;338661;221526;284164;301141;321107;321107;316020;341280;341577;330113;390541;331967;301326;350140.82;324495;304051 -216;'764;Thailand;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;300;300;500;1300;1300;1800;700;400;100;300;300;100;200;200;500;;4500;9700;9200;3600;1800;1300;2687;2747;17700;31100;46200;61200;96700;366000;297000;312000;412000;395000;545090;430900;448798;479400;458958;496648;519832;519663;455082;455082;548355;455322;611575;631270;566524;603450;480809;484409.2;554066;569076 -216;'764;Thailand;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;32;38;154;400;400;325;131;185;77;332;332;75;217;246;961;;3177;7777;9291;3940;4688;3631;2266;2237;13466;32255;33745;43455;41547;144196;139104;223265;232899;230500;360796;348510;391107;432703;459291;468593;534714;552904;499781;499781;540381;453548;552647;577461;590533;595829;465718;460493.96;546855;613140 -216;'764;Thailand;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;300;400;10400;10400;8000;5878;14000;8800;13691;10129;13696;8090;11458;11458;17601;11955;11421;12649;12649;7093;7051;8310.26;3495;4800 -216;'764;Thailand;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;817;259;325;7985;7985;6846;2700;7800;8292;12383;8867;12603;10783;12066;12066;15099;10767;9238;10331;10331;5837;5637;6169.89;4527;5220 -216;'764;Thailand;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5700;179000;133000;10000;10000;15000;20500;11500;18749;4900;9144;7851;12443;12197;12779;12779;1040;1721;1491;2370;1962;1781;1544;1866;1412;631 -216;'764;Thailand;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3501;11000;10300;8900;9000;12500;20822;9060;15086;4031;9245;8174;13195;14103;27224;27224;756;885;998;2714;2503;3649;2581;2312;1111;997 -216;'764;Thailand;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;625000;625000;625000;698000;698000;696000;766000;807000;813000;768000;784000;784000;767000;854000;859000;806000;783000;1083000;1059000;1121000;1181000 -216;'764;Thailand;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11000;23000;31000;22000;90000;90000;115900;76942;84933;105900;108461;67647;96449;103148;107415;107415;102828;126961;126951;152447;136292;112670;118121;142254;94935;117374 -216;'764;Thailand;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15536;26893;34878;30048;60000;60000;70206;72667;71829;91010;109921;63927;97015;99213;102316;102316;96647;106559;112256;136107;131231;117023;104486;124305;88978;116886 -216;'764;Thailand;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31000;64000;65000;200000;300000;300000;459500;352200;368278;420000;401064;447933;467915;467930;407545;407545;517226;427238;577625;598136;528050;578674;464763;465734.93;535439;548035 -216;'764;Thailand;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14583;45027;43354;140466;150000;150000;280000;275000;315358;372556;394824;415574;476121;493403;432751;432751;501519;415083;511700;535803;534334;559086;441159;429400.89;517954;579520 -216;'764;Thailand;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;623000;612000;548000;638000;638000;295000;295000;295000;573000;523000;314000;357000;376000;379000;358000;365000;365000;359000;400000;400000;375000;364000;0;0;0;0 -216;'764;Thailand;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25000;54000;62000;51000;20200;20200;89715;101170;200171;211200;214834;167424;179802;189108;218688;218688;230953;269221;287311;217119;280562;223420;228307;228844.77;221274;197891 -216;'764;Thailand;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19181;46072;54430;42998;15160;15160;83772;100100;174630;193632;216357;148732;174546;191145;206725;206725;204274;223954;220083;183675;248979;209107;191203;219665.93;230990;181945 -216;'764;Thailand;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60000;123000;99000;102000;102000;80000;65090;67200;61771;54500;48750;40864;39474;39536;34758;34758;30089;26363;32459;30764;36512;22995;14502;16808.27;17215;20410 -216;'764;Thailand;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23463;88169;85450;73899;73899;68000;59974;64450;60663;56116;55222;44845;45398;45398;39806;39806;38106;37580;39949;38944;53696;33094;21978;28781.07;27790;32623 -216;'764;Thailand;1675;Other paper and paperboard;5510;Production;t;2000;2000;2000;2000;3700;4000;4500;5700;15400;38800;76200;101700;121400;116200;129400;159100;190100;211600;261200;265000;276200;254000;225000;350000;363000;346000;372000;420000;429000;687000;859000;926000;1050000;1326000;1473000;1510000;1624000;1626000;1702000;1642000;1681000;1680000;2220000;2222000;2241000;3739000;2973000;2965000;2932000;3032000;3039000;3135000;3250000;3250000;3578000;3705000;3788000;3812000;3761000;3886000;4104000;4153000;4044000 -216;'764;Thailand;1675;Other paper and paperboard;5610;Import quantity;t;10900;11500;23400;40400;44500;56000;68200;78500;86000;40500;32000;27100;35100;35100;16600;22500;22200;32200;41300;33700;42300;48500;67400;61200;42900;47200;66400;140200;120900;149900;145200;229363;230861;196600;202000;187800;176000;91000;132000;149000;153000;143300;165000;220470;253895;228230;256728;287746;279799;335559;331539;298641;297547;527680;521403;594126;642243;570480;600195;637176;673036.3;821581;748281 -216;'764;Thailand;1675;Other paper and paperboard;5622;Import value;1000 USD;3060;2836;3758;8189;8826;10547;13819;15586;16929;10664;9517;8516;13764;13764;24169;20911;23625;30643;41344;42375;48819;53635;61801;65931;47110;55099;77968;114974;129422;176257;200804;258233;217799;374722;409624;449737;414800;148215;202252;227482;216231;160964;185852;274959;309865;375410;411253;534733;492477;564017;663518;325474;323581;705614;689764;688422;680609;737032;693511;710832;792884.79;912058;790703 -216;'764;Thailand;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;100;100;300;600;500;1700;2200;2200;7800;5200;6000;6300;11000;14400;7400;7400;4600;5600;7800;31700;43300;48400;57600;50400;46600;70400;117600;160800;153000;143800;453000;733400;524200;416600;440000;476700;479300;304925;334267;614424;479675;552147;544867;426189;375642;350780;454209;579771;678518;627707;658943;722453;698200;856094;691443.78;477549;456619 -216;'764;Thailand;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;41;34;115;254;60;576;516;516;1788;2781;3431;3838;6336;9431;6663;8051;6341;6285;8678;27498;40686;37674;31739;42546;48403;61103;69914;144950;282079;243368;319520;254819;179302;166341;142950;174068;175086;150935;182519;305265;291416;344452;255602;235291;235203;202499;256473;344599;326178;333607;411535;498254;386093;428490;457145.79;393969;352464 -216;'764;Thailand;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;6000;7000;10500;11000;12000;14000;18000;18000;20000;20000;21000;21000;18000;25000;27000;16000;17000;19000;21000;43000;142000;60000;62000;69000;75000;81000;84000;95000;72000;81000;92000;91000;76000;78000;97000;136000;118000;115000;114000;117000;119000;121000;125000;125000;125000;126000;141000;131000;134000;133000;155000;152000;155000 -216;'764;Thailand;1676;Household and sanitary papers;5610;Import quantity;t;300;300;700;1300;1300;1700;2000;600;600;700;1700;6600;1100;1100;5600;200;1100;1100;600;400;500;100;400;2500;500;400;600;8800;1400;3300;3500;4700;7000;33900;10800;11200;11000;2000;2000;2000;3000;7500;7500;4100;4589;4745;7700;11815;13412;17024;19914;23898;23898;20948;26492;31776;32595;41460;41546;42912;33663.1;33264;37610 -216;'764;Thailand;1676;Household and sanitary papers;5622;Import value;1000 USD;551;510;676;1474;1589;1898;2488;898;994;508;1260;1258;2440;2440;13666;228;1659;771;641;613;737;371;639;2962;1291;881;1316;23676;1794;8211;11587;15197;20000;116717;25130;31023;25939;1846;2352;1890;2960;7495;7495;4700;6236;6567;9860;21561;19402;26648;30693;34506;34506;29952;35611;38887;44377;54251;52512;48980;40033.1;44113;47012 -216;'764;Thailand;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;300;1300;1300;2600;2500;2700;3200;3100;1400;3000;3100;2700;3000;2100;1800;2000;3100;3100;8900;13600;12400;10300;13000;17000;16900;22000;400;200;0;0;0;0;3021;2004;6575;6575;2321;2544;2757;4764;3657;3657;2759;2173;1985;2629;3063;4440;1543;1983.16;5908;8104 -216;'764;Thailand;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;145;365;365;220;1960;2276;2543;2753;1461;3403;3439;2923;2288;2391;1867;3204;5640;5640;15376;22184;19921;17203;35664;54240;48163;66722;1260;748;0;0;0;0;2300;2046;6247;6247;5866;6594;7158;10948;7864;7864;6292;5288;5079;6017;9415;6967;4709;3284.91;7780;10903 -216;'764;Thailand;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1285000;1486000;1561000;1589000;1589000;2144000;2144000;2144000;3603000;2855000;2850000;2818000;2915000;2920000;3014000;3125000;3125000;3453000;3579000;3647000;3681000;3627000;3753000;3949000;4001000;3889000 -216;'764;Thailand;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46000;91000;93000;88000;80600;102300;146370;180306;147613;188728;230629;223125;304811;303845;265598;265598;498941;487583;555086;588648;522142;552362;581910;631479.88;779688;695066 -216;'764;Thailand;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42979;72230;82058;72346;81325;106213;149970;168629;149855;217224;380768;364088;514375;613162;269032;269032;656484;636895;632742;609983;667054;626586;645762;737058.12;850156;720348 -216;'764;Thailand;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;672000;509000;399600;424000;459700;462300;263104;307976;572176;431100;501516;507331;421078;368866;345785;449171;575324;674448;622898;653050;715445;689936;850666;684586.98;466732;444097 -216;'764;Thailand;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;219934;160576;147907;121853;144843;145861;114559;141179;243018;209816;242385;187050;218469;214095;187301;241275;328500;310475;313882;389879;468750;358234;403393;429606.28;362469;317811 -216;'764;Thailand;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;;;;;59000;81400;95000;91000;101000;128000;154000;174000;217000;216000;232000;211000;197000;322000;332000;309000;331000;371000;375000;557000;630000;757000;877000;1082000;1167000;1157000;1309000;;;;;;;;;;;;;;;;;;;;;;;;;; -216;'764;Thailand;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;1200;1300;2600;4400;4900;6200;7600;65700;66500;22200;7800;5500;3900;3900;6100;1700;4100;3800;3100;2800;4000;5400;4400;100;5600;6400;8200;10700;60700;55000;26300;18900;19500;13500;17200;82300;53000;;;;;;;;;;;;;;;;;;;;;;;;;; -216;'764;Thailand;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;398;369;488;1065;1147;1371;1796;6032;4690;3266;1566;1501;1826;1826;5481;1283;2630;2482;2587;3788;4883;6146;5296;130;5358;7227;10434;14291;56606;44993;26415;28110;28129;30302;42824;88129;53541;;;;;;;;;;;;;;;;;;;;;;;;;; -216;'764;Thailand;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;100;300;600;500;1100;800;800;500;500;1800;1100;1700;3800;1800;3600;900;1500;3500;24800;28600;17800;27100;15200;16700;40000;88100;120000;96700;101500;372000;;;;;;;;;;;;;;;;;;;;;;;;;; -216;'764;Thailand;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;34;115;254;60;313;106;106;219;219;460;320;832;1675;1404;3295;1613;2093;4000;20175;26172;8588;11050;9809;8935;17520;21437;50865;70564;45583;184703;;;;;;;;;;;;;;;;;;;;;;;;;; -216;'764;Thailand;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1285000;1486000;1412000;1429000;1429000;1710000;1710000;1710000;2970000;2532000;2355000;2349000;2394000;2391000;2545000;2443000;2443000;2712000;2782000;2898000;3097000;2968000;3319000;3516000;3533000;3391000 -216;'764;Thailand;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8000;14000;21000;21000;21000;21000;35000;50000;43531;43531;44835;32335;53446;43614;36994;36994;146224;146224;139784;183615;138233;191728;160691;182803.66;334525;292211 -216;'764;Thailand;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7187;14924;19320;16351;16351;16351;25831;31900;29150;29150;32598;25907;46267;50610;35483;35483;83930;83930;72349;92591;94242;107156;84504;120904.33;206338;147182 -216;'764;Thailand;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;622000;439000;357000;340000;340000;340000;145100;225500;489934;310200;296078;314895;282792;222762;212291;315677;387920;466650;457204;463242;476820;529938;663179;473796.62;265572;217135 -216;'764;Thailand;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;197210;127873;124714;91343;91343;91343;48750;70997;169537;104006;131969;102541;133816;121308;108317;162291;192852;203609;199948;240568;263651;224632;255985;241271.37;151363;98506 -216;'764;Thailand;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;149000;160000;160000;244000;244000;244000;320000;239000;356000;343000;395000;403000;390000;411000;411000;440000;476000;427000;438000;496000;434000;433000;468000;498000 -216;'764;Thailand;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19000;22000;25000;22000;16300;38000;53985;47700;36640;71500;102137;121793;182425;181537;150147;150147;237733;223952;294614;290613;251587;229282;268029;292854;300604;284520 -216;'764;Thailand;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16691;23895;25681;20387;25112;50000;70002;63200;60271;118090;258799;275234;384769;470223;147877;147877;459442;444202;455870;407567;439936;394286;430827;473245;487485;453914 -216;'764;Thailand;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6000;9000;6000;6000;37900;37900;42849;60000;63000;94000;190352;181692;127429;127489;117071;117071;164131;172947;118317;134719;153827;110899;117828;135173.85;133921;147538 -216;'764;Thailand;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4331;6278;6425;5099;21190;21190;35048;57400;60100;89831;97079;75165;74415;74415;66264;66264;113432;84457;80630;103753;126423;88588;92920;120305.95;133479;129079 -216;'764;Thailand;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;190000;190000;190000;313000;84000;139000;126000;126000;126000;79000;271000;271000;301000;321000;322000;146000;163000;0;0;0;0 -216;'764;Thailand;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15000;50000;45000;42000;40000;40000;51785;77913;64345;70600;77045;66085;66085;75478;75060;75060;95434;101173;99030;92532;106512;100141;118412;115939;106599;79156 -216;'764;Thailand;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15364;26789;35465;33964;35272;35272;47389;66150;56165;65715;82958;60205;80873;89477;82457;82457;101939;100361;93252;93943;114495;106691;112094;118569;131457;97377 -216;'764;Thailand;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33000;56000;36000;77000;81400;81400;70205;20000;16442;24100;11472;8779;9271;17774;15398;15398;20621;28142;35411;46567;72501;44161;63953;67203.52;62486;76296 -216;'764;Thailand;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14242;24485;16570;24974;32128;32128;29191;11700;11581;14179;10809;8082;9100;16874;11850;11850;19233;19416;26613;40853;71766;42168;51774;64285.96;74702;88619 -216;'764;Thailand;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;5000;2000;3000;3300;3300;5600;4693;3097;3097;6612;2912;2855;3216;3397;3397;19550;16234;21658;21888;25810;31211;34778;39883.22;37960;39179 -216;'764;Thailand;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3737;6622;1592;1644;4590;4590;6748;7379;4269;4269;6413;2742;2466;2852;3215;3215;11173;8402;11271;15882;18381;18453;18337;24339.79;24876;21875 -216;'764;Thailand;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11000;5000;600;1000;400;3000;4950;2476;2800;2800;3614;1965;1586;841;1025;1025;2652;6709;11966;8522;12297;4938;5706;8413;4753;3128 -216;'764;Thailand;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4151;1940;198;437;182;1200;1570;1082;1800;1800;2528;1262;1138;1498;870;870;2983;2993;6691;4705;6910;2846;2714;3743;2925;1607 -216;'764;Thailand;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;11200;13300;15900;14200;16400;17100;18100;19600;24200;29000;23200;22000;10000;3000;4000;21000;24000;30000;33000;87000;87000;109000;111000;175000;231000;272000;231000;246000;144000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -216;'764;Thailand;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;9400;9900;20100;34700;38300;48100;58600;12200;18900;17600;22500;15000;30100;30100;4900;20600;17000;27300;37600;30500;37800;43000;62600;58600;36800;40400;57600;120700;58800;91600;115400;205763;204361;149200;174000;94300;112000;43000;39000;54000;62000;55200;55200;70000;69000;75872;60300;45302;43262;13724;7780;9145;8051;7791;7328;7264;21000;6878;6287;12354;7893.31;8629;15605 -216;'764;Thailand;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;2111;1957;2594;5650;6090;7278;9535;8656;11245;6890;6691;5757;9498;9498;5022;19400;19336;27390;38116;37974;43199;47118;55866;62839;40461;46991;66218;77007;71022;123053;162802;214926;169670;227703;341670;330585;335320;103390;127670;143534;140925;72144;72144;120289;135000;218988;184169;132404;108987;22994;19663;21936;20043;19178;17258;16793;26249;15727;14413;16090;15793.58;17789;23343 -216;'764;Thailand;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;300;100;100;4700;2200;1500;2000;6200;9200;2600;700;1000;1100;2200;5100;12700;27500;27400;26300;16300;18000;19200;27800;39300;25400;59000;61000;15000;17000;16000;17000;17000;38800;24287;35673;42000;48310;34992;2354;2012;1338;1381;1688;1897;2824;3264;3945;3824;3885;4873.65;4909;4418 -216;'764;Thailand;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;118;45;45;1349;602;695;975;2751;6295;1856;1317;1805;1904;2287;5456;11310;23446;15049;17361;17284;23662;31274;58421;157275;149622;68095;33625;17978;18434;21097;29225;29225;34076;39294;56000;75353;96201;61958;9664;10160;7334;7334;9807;10415;14646;15639;20089;20892;20388;24254.61;23720;23750 -216;'764;Thailand;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;207369;248101;244481;234240;302446;270832;275597 -216;'764;Thailand;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;630993;620600;624238;745988;906971;850254;647817 -216;'764;Thailand;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5920;3663;3915;2394;3601;3915;2980 -216;'764;Thailand;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7292;9099;8108;8466;8119;9334;8192 -216;'764;Thailand;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;643;658;492;568;553;828;435 -216;'764;Thailand;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;540;172;46;115;127;44;53 -216;'764;Thailand;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5277;3005;3423;1826;3048;3087;2545 -216;'764;Thailand;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6752;8927;8062;8351;7992;9290;8139 -216;'764;Thailand;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7549;6697;6746;5859;8981;9141;11936 -216;'764;Thailand;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12096;13831;16939;10015;14537;14370;14334 -216;'764;Thailand;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5477;5977;4592;3757;4609;6968;7748 -216;'764;Thailand;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91710;77175;69820;56534;69196;69780;69269 -216;'764;Thailand;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20493;23938;25336;27923;20127;18294;18543 -216;'764;Thailand;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41253;43255;40805;39912;45089;39262;50925 -216;'764;Thailand;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;77 -216;'764;Thailand;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;34 -216;'764;Thailand;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;1 -216;'764;Thailand;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;3 -216;'764;Thailand;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;77 -216;'764;Thailand;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;100 -216;'764;Thailand;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -216;'764;Thailand;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -216;'764;Thailand;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;149221;187766;182959;175396;241402;209505;208792 -216;'764;Thailand;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;466003;462639;475655;616005;750190;701842;492547 -216;'764;Thailand;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1276;984;2307;1578;3704;940;1533 -216;'764;Thailand;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;797;2821;940;267;572;160;280 -216;'764;Thailand;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17433;19076;18626;17333;20022;22069;24065 -216;'764;Thailand;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11842;11780;11971;14789;19268;15506;12270 -216;'764;Thailand;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;564133;609518;619251;612387;717725;772647;786369 -216;'764;Thailand;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;493353;542237;521076;498209;557254;556387;551700 -216;'764;Thailand;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4428;4871;5388;4785;5099;5922;2618 -216;'764;Thailand;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;419;474;2894;2302;1664;1497;975 -216;'764;Thailand;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;160959;169751;159464;146557;154263;156217;148538 -216;'764;Thailand;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70832;88079;77908;92940;103331;92827;83108 -216;'764;Thailand;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57405;66119;64726;61076;77614;99774;134107 -216;'764;Thailand;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62865;61138;65337;61330;40076;35943;39653 -216;'764;Thailand;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121234;128722;141331;169841;210724;230708;221887 -216;'764;Thailand;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;234193;254356;251889;230940;286975;290410;289617 -216;'764;Thailand;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;220107;240055;248342;230128;270025;280026;279219 -216;'764;Thailand;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125044;138190;123048;110697;125208;135710;138347 -176;'626;Timor-Leste;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9851;11027;12227;9769;11957;19116;20923 -176;'626;Timor-Leste;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;490;372;273;186;227;303;124 -176;'626;Timor-Leste;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;121;138;154;154;133;133;133;133;149;288;491;491;355;438;537;608;984;2609;3579;1583;4425;2950;4697;4329;4994;4731;4080;4657;5892;6755 -176;'626;Timor-Leste;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;81;326;368;361;418;1771;2816;1691;1250;197;102;248;298;62;182;103;227;214;105 -176;'626;Timor-Leste;1861;Roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;222530;212326;201736;192769;188068;184723;181758;178872;172300;165955;159828;153910;148193;142161;136344;130733;125320;120097;115162;110395;105791;101344;97047;92980;88873;84989;81234;77603;74132;70774;67524 -176;'626;Timor-Leste;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;475;475;475;78;78;78;78;78;79;79;1258;1267;1;92;0;0;0;0;0;0;20 -176;'626;Timor-Leste;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;39;39;15;15;15;15;15;18;18;92;95;0;7;0;0;0;0;0;11;11 -176;'626;Timor-Leste;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1055;1055;496;514;514;728;1058;984;429;365;354;28;313;18;0;17;100;0;98;0 -176;'626;Timor-Leste;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;66;256;298;298;272;431;954;424;122;112;20;94;31;0;8;44;0;87;0 -176;'626;Timor-Leste;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -176;'626;Timor-Leste;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;20 -176;'626;Timor-Leste;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;11;11 -176;'626;Timor-Leste;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -176;'626;Timor-Leste;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -176;'626;Timor-Leste;1863;Roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;222530;212326;201736;192769;188068;184723;181758;178872;172300;165955;159828;153910;148193;142161;136344;130733;125320;120097;115162;110395;105791;101344;97047;92980;88873;84989;81234;77603;74132;70774;67524 -176;'626;Timor-Leste;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -176;'626;Timor-Leste;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -176;'626;Timor-Leste;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;0;17;100;0;98;0 -176;'626;Timor-Leste;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;0;8;44;0;87;0 -176;'626;Timor-Leste;1864;Wood fuel;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;222530;212326;201736;192769;188068;184723;181758;178872;172300;165955;159828;153910;148193;142161;136344;130733;125320;120097;115162;110395;105791;101344;97047;92980;88873;84989;81234;77603;74132;70774;67524 -176;'626;Timor-Leste;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;;;;;;; -176;'626;Timor-Leste;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;0;0;0;;;;;;; -176;'626;Timor-Leste;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;28;28;28;;;;;;; -176;'626;Timor-Leste;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;20;20;;;;;;; -176;'626;Timor-Leste;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -176;'626;Timor-Leste;1628;Wood fuel, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;222530;212326;201736;192769;188068;184723;181758;178872;172300;165955;159828;153910;148193;142161;136344;130733;125320;120097;115162;110395;105791;101344;97047;92980;88873;84989;81234;77603;74132;70774;67524 -176;'626;Timor-Leste;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;;;;;;; -176;'626;Timor-Leste;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;0;0;0;;;;;;; -176;'626;Timor-Leste;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;28;28;28;;;;;;; -176;'626;Timor-Leste;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;20;20;;;;;;; -176;'626;Timor-Leste;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;475;475;475;78;78;78;78;78;78;78;1257;1266;0;91;0;0;0;0;0;0;20 -176;'626;Timor-Leste;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;39;39;15;15;15;15;15;15;15;89;95;0;7;0;0;0;0;0;11;11 -176;'626;Timor-Leste;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1055;1055;496;514;514;728;1058;984;401;337;326;0;285;18;0;17;100;0;98;0 -176;'626;Timor-Leste;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;66;256;298;298;272;431;954;404;102;92;0;74;31;0;8;44;0;87;0 -176;'626;Timor-Leste;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;431;431;431;34;34;34;34;34;34;34;1208;1208;0;0;0;0;0;0;0;0;20 -176;'626;Timor-Leste;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;26;2;2;2;2;2;2;2;74;74;0;0;0;0;0;0;0;11;11 -176;'626;Timor-Leste;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;269;269;269;269;269;269;0;0;0;0;0;0;0;0;0 -176;'626;Timor-Leste;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;14;14;14;0;0;0;0;0;0;0;0;0 -176;'626;Timor-Leste;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;431;431;431;34;34;34;34;34;34;34;1208;1208;0;0;0;0;0;0;0;0;20 -176;'626;Timor-Leste;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;26;2;2;2;2;2;2;2;74;74;0;0;0;0;0;0;0;11;11 -176;'626;Timor-Leste;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;269;269;269;269;269;269;0;0;0;0;0;0;0;0;0 -176;'626;Timor-Leste;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;14;14;14;0;0;0;0;0;0;0;0;0 -176;'626;Timor-Leste;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;44;44;44;44;44;44;44;44;44;49;58;0;91;0;0;0;0;0;0;0 -176;'626;Timor-Leste;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;13;13;13;13;13;13;15;21;0;7;0;0;0;0;0;0;0 -176;'626;Timor-Leste;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1055;1055;496;514;514;459;789;715;132;68;57;0;285;18;0;17;100;0;98;0 -176;'626;Timor-Leste;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;66;256;298;298;258;417;940;390;88;78;0;74;31;0;8;44;0;87;0 -176;'626;Timor-Leste;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;44;44;44;44;44;44;44;44;44;44;44;0;0;0;0;0;0;0;0;0 -176;'626;Timor-Leste;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;13;13;13;13;13;13;13;13;0;0;0;0;0;0;0;0;0 -176;'626;Timor-Leste;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;47;47;65;65;10;340;127;52;52;52;0;285;18;0;17;100;0;98;0 -176;'626;Timor-Leste;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;49;49;9;168;75;65;65;65;0;74;31;0;8;44;0;87;0 -176;'626;Timor-Leste;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;14;0;91;0;0;0;0;0;0;0 -176;'626;Timor-Leste;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;8;0;7;0;0;0;0;0;0;0 -176;'626;Timor-Leste;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1008;1008;449;449;449;449;449;588;80;16;5;0;0;0;0;0;0;0;0;0 -176;'626;Timor-Leste;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;59;249;249;249;249;249;865;325;23;13;0;0;0;0;0;0;0;0;0 -176;'626;Timor-Leste;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -176;'626;Timor-Leste;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;5;5;2;2;29;1;3;0;3;9;3;2 -176;'626;Timor-Leste;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;6;6;1;4;24;4;2;0;2;2;4;2 -176;'626;Timor-Leste;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16 -176;'626;Timor-Leste;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8 -176;'626;Timor-Leste;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;0;0 -176;'626;Timor-Leste;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;3;3;3;3;0;0 -176;'626;Timor-Leste;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -176;'626;Timor-Leste;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -176;'626;Timor-Leste;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -176;'626;Timor-Leste;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -176;'626;Timor-Leste;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;77;0;0 -176;'626;Timor-Leste;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;0;0 -176;'626;Timor-Leste;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1;1;1 -176;'626;Timor-Leste;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;11;15;15 -176;'626;Timor-Leste;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1;1;1 -176;'626;Timor-Leste;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;11;15;15 -176;'626;Timor-Leste;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;300;300;300;300;300;300;300;300 -176;'626;Timor-Leste;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;32;238;238;203;203;51;58;225;67;37;33;11;71;169;29;43;67;75;0;104;41 -176;'626;Timor-Leste;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;39;60;60;74;74;15;22;147;51;50;32;16;20;61;10;24;70;64;11;133;20 -176;'626;Timor-Leste;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;17;69;158;663;44;24;24;45;107;225;18;115;0;219;57;0 -176;'626;Timor-Leste;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;22;105;150;646;66;31;31;46;106;219;14;122;0;158;59;0 -176;'626;Timor-Leste;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -176;'626;Timor-Leste;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;5;98;98;43;43;43;43;85;32;2;26;4;66;150;17;43;67;75;0;104;36 -176;'626;Timor-Leste;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;9;17;17;10;10;10;10;36;15;14;23;7;15;50;6;24;29;16;0;59;16 -176;'626;Timor-Leste;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -176;'626;Timor-Leste;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;32;31;0 -176;'626;Timor-Leste;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;300;300;300;300;300;300;300;300 -176;'626;Timor-Leste;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;27;140;140;160;160;8;15;140;35;35;7;7;5;19;12;0;0;0;0;0;5 -176;'626;Timor-Leste;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;30;43;43;64;64;5;12;111;36;36;9;9;5;11;4;0;41;48;11;74;4 -176;'626;Timor-Leste;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;17;69;158;663;44;24;24;45;107;225;18;115;0;219;57;0 -176;'626;Timor-Leste;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;22;105;150;646;66;31;31;46;106;219;14;122;0;126;28;0 -176;'626;Timor-Leste;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -176;'626;Timor-Leste;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33;1;1;1;4;4;4;4;4;4;0;0;59;0;0;36;0;0;0 -176;'626;Timor-Leste;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;2;2;2;15;6;6;6;20;33;0;0;26;1;9;8;0;0;0 -176;'626;Timor-Leste;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -176;'626;Timor-Leste;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -176;'626;Timor-Leste;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -176;'626;Timor-Leste;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;149;108;108;108;108;108;108;108;108;304;304;213;220;346;303;763;1486;2364;3156;3484;3741;7658;8246;8236;8978;6472;9138;8070;9918 -176;'626;Timor-Leste;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;91;64;64;64;64;64;64;64;64;155;155;102;106;236;220;503;1451;2329;1002;2959;2687;4054;3617;4056;3077;2758;3016;3319;4418 -176;'626;Timor-Leste;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;46;29;29;29;29;29;29;29;3;3;0;0;0;0;0;0;0;0;61 -176;'626;Timor-Leste;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;15;15;15;15;15;15;1;1;0;0;0;0;0;0;0;0;46 -176;'626;Timor-Leste;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -176;'626;Timor-Leste;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;149;108;108;108;108;108;108;108;108;108;108;17;17;143;100;560;1283;2348;3031;3463;3710;7592;8221;8208;8913;6428;9031;7985;8667 -176;'626;Timor-Leste;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;91;64;64;64;64;64;64;64;64;64;64;11;11;141;125;408;1356;2309;912;2928;2646;3845;3599;4045;3052;2737;2953;3263;3968 -176;'626;Timor-Leste;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;46;29;29;29;29;29;29;29;3;3;0;0;0;0;0;0;0;0;0 -176;'626;Timor-Leste;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;15;15;15;15;15;15;1;1;0;0;0;0;0;0;0;0;0 -176;'626;Timor-Leste;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109;2;2;2;0;0;39;35;11;9;1010 -176;'626;Timor-Leste;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;1;1;1;0;0;16;16;14;10;279 -176;'626;Timor-Leste;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;0;0;0;0;71;71;1 -176;'626;Timor-Leste;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;0;0;0;0;38;38;1 -176;'626;Timor-Leste;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;196;196;196;203;203;203;203;203;16;16;19;29;48;25;28;26;9;25;5;240 -176;'626;Timor-Leste;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91;91;91;95;95;95;95;95;20;20;30;40;202;18;11;9;5;11;8;170 -176;'626;Timor-Leste;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61 -176;'626;Timor-Leste;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46 -176;'626;Timor-Leste;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;196;196;196;196;196;196;196;196;11;11;11;11;11;11;24;24;0;24;2;2 -176;'626;Timor-Leste;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91;91;91;91;91;91;91;91;11;11;11;11;11;11;8;8;0;8;6;6 -176;'626;Timor-Leste;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55 -176;'626;Timor-Leste;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38 -176;'626;Timor-Leste;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;5;5;8;18;37;14;4;2;9;1;3;238 -176;'626;Timor-Leste;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;9;9;19;29;191;7;3;1;5;3;2;164 -176;'626;Timor-Leste;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6 -176;'626;Timor-Leste;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8 -176;'626;Timor-Leste;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96;6;75;75;75;75;75;75;75;87;98;98;98;98;98;99;99;99;90;220;218;218;218;39;39;38;37;57;38;1115 -176;'626;Timor-Leste;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;12;34;34;34;34;34;34;34;21;24;24;24;24;24;27;27;27;41;67;46;46;46;19;19;17;16;123;41;173 -176;'626;Timor-Leste;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;125;45;384;384;18;18;9;9;36;173;667;625;29 -176;'626;Timor-Leste;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;26;11;18;18;1;1;1;1;1;8;18;21;4 -176;'626;Timor-Leste;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96;6;16;16;16;16;16;16;16;28;39;39;39;39;39;40;40;40;40;42;40;40;40;36;36;36;35;57;37;35 -176;'626;Timor-Leste;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;12;31;31;31;31;31;31;31;18;21;21;21;21;21;24;24;24;24;43;22;22;22;18;18;16;15;123;40;15 -176;'626;Timor-Leste;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1 -176;'626;Timor-Leste;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -176;'626;Timor-Leste;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96;4;14;14;14;14;14;14;14;26;37;37;37;37;37;38;38;38;38;40;38;38;38;35;35;35;35;35;35;35 -176;'626;Timor-Leste;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;8;27;27;27;27;27;27;27;14;17;17;17;17;17;20;20;20;20;39;18;18;18;15;15;15;15;15;15;15 -176;'626;Timor-Leste;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1 -176;'626;Timor-Leste;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -176;'626;Timor-Leste;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;;;;;;; -176;'626;Timor-Leste;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;;;;;;; -176;'626;Timor-Leste;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96;4;14;14;14;14;14;14;14;26;37;37;37;37;37;38;38;38;38;37;35;35;35;35;35;35;35;35;35;35 -176;'626;Timor-Leste;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;8;27;27;27;27;27;27;27;14;17;17;17;17;17;20;20;20;20;36;15;15;15;15;15;15;15;15;15;15 -176;'626;Timor-Leste;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1 -176;'626;Timor-Leste;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -176;'626;Timor-Leste;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96;4;14;14;14;14;14;14;14;24;35;35;35;35;35;35;35;35;35;35;35;35;35;35;35;35;35;35;35;35 -176;'626;Timor-Leste;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;8;27;27;27;27;27;27;27;12;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15 -176;'626;Timor-Leste;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1 -176;'626;Timor-Leste;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 -176;'626;Timor-Leste;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;3;3;3;3;2;0;0;0;;;;;;; -176;'626;Timor-Leste;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;5;5;5;5;21;0;0;0;;;;;;; -176;'626;Timor-Leste;1668;Pulp from fibres other than wood;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;1;1;1;0;22;2;0 -176;'626;Timor-Leste;1668;Pulp from fibres other than wood;5622;Import 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;3;3;1;0;108;25;0 -176;'626;Timor-Leste;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;44;44;44;44;44;44;44;44;44;44;44;44;44;0;9;9 -176;'626;Timor-Leste;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;43;43;43;43;43;43;43;43;43;43;43;43;43;0;63;63 -176;'626;Timor-Leste;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1 -176;'626;Timor-Leste;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;34;34;34;34;34;34;34;34;34;34;34;34;34 -176;'626;Timor-Leste;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;50;178;178;178;178;3;3;2;2;0;1;1080 -176;'626;Timor-Leste;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;17;24;24;24;24;1;1;1;1;0;1;158 -176;'626;Timor-Leste;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;124;44;383;383;17;17;8;8;35;172;666;624;28 -176;'626;Timor-Leste;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;11;18;18;1;1;1;1;1;8;18;21;4 -176;'626;Timor-Leste;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;94;94;123;123;94;94;94;94;94;76;213;213;159;175;192;262;222;852;984;621;1029;51;392;659;885;1425;1046;1346;2011;1518 -176;'626;Timor-Leste;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;35;35;56;56;35;35;35;35;35;125;184;184;135;171;199;263;240;1007;1083;318;1229;147;459;607;846;1512;1186;1491;2306;2053 -176;'626;Timor-Leste;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;48;48;112;112;112;26;24;24;40;40;40;40;40;40;41;41 -176;'626;Timor-Leste;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;44;26;26;1141;1141;1141;1044;1;1;13;13;13;17;17;17;13;13 -176;'626;Timor-Leste;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;29;;;;;;7;124;124;70;82;145;101;59;624;817;119;921;21;272;589;775;797;884;1137;1530;1338 -176;'626;Timor-Leste;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;;;;;;38;97;97;48;83;140;129;88;740;902;83;1052;63;273;501;750;776;916;1161;1772;1702 -176;'626;Timor-Leste;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110;110;110;24;24;24;40;40;40;40;40;40;40;40 -176;'626;Timor-Leste;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98;98;98;1;1;1;13;13;13;13;13;13;13;13 -176;'626;Timor-Leste;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;9;9;6;23;45;52;21;40;46;17 -176;'626;Timor-Leste;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;4;9;4;12;25;37;14;27;48;14 -176;'626;Timor-Leste;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -176;'626;Timor-Leste;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -176;'626;Timor-Leste;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;29;;;;;;7;124;124;70;82;145;101;59;624;817;119;912;12;266;566;730;745;863;1097;1484;1321 -176;'626;Timor-Leste;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;;;;;;38;97;97;48;83;140;129;88;740;902;83;1048;54;269;489;725;739;902;1134;1724;1688 -176;'626;Timor-Leste;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110;110;110;24;24;24;40;40;40;40;40;40;40;40 -176;'626;Timor-Leste;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98;98;98;1;1;1;13;13;13;13;13;13;13;13 -176;'626;Timor-Leste;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;9;9;9;9;9;10;2;2;2;3;1;1;7;1;7;112;19;5;10;12 -176;'626;Timor-Leste;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;7;7;7;7;7;18;8;3;2;7;14;14;25;3;4;127;9;4;16;33 -176;'626;Timor-Leste;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -176;'626;Timor-Leste;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -176;'626;Timor-Leste;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;16;16;18;54;126;70;36;601;802;75;858;10;244;377;535;520;808;1047;1391;1271 -176;'626;Timor-Leste;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;12;12;14;43;124;66;35;707;893;46;996;35;228;340;575;480;836;1103;1654;1604 -176;'626;Timor-Leste;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110;110;110;24;24;24;40;40;40;40;40;40;40;40 -176;'626;Timor-Leste;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98;98;98;1;1;1;13;13;13;13;13;13;13;13 -176;'626;Timor-Leste;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;99;99;43;19;10;21;21;21;13;41;53;1;15;188;188;113;36;45;83;38 -176;'626;Timor-Leste;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;78;78;27;33;9;45;45;30;7;30;38;5;16;146;146;132;57;27;54;51 -176;'626;Timor-Leste;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -176;'626;Timor-Leste;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -176;'626;Timor-Leste;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;94;94;94;94;94;94;94;94;94;69;89;89;89;93;47;161;163;228;167;502;108;30;120;70;110;628;162;209;481;180 -176;'626;Timor-Leste;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;35;35;35;35;35;35;35;35;35;87;87;87;87;88;59;134;152;267;181;235;177;84;186;106;96;736;270;330;534;351 -176;'626;Timor-Leste;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;48;48;2;2;2;2;0;0;0;0;0;0;0;0;1;1 -176;'626;Timor-Leste;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;44;26;26;1043;1043;1043;1043;0;0;0;0;0;4;4;4;0;0 -176;'626;Timor-Leste;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;2;2;6;7;8;40;12;108;37;66;13;8;2;34;80 -176;'626;Timor-Leste;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;10;25;25;13;15;9;119;55;146;70;30;10;17;4;37;210 -176;'626;Timor-Leste;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;1;1 -176;'626;Timor-Leste;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;0;0 -176;'626;Timor-Leste;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;54;54;54;58;40;151;154;129;19;11;20;12;6;27;38;609;149;201;443;96 -176;'626;Timor-Leste;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;34;34;34;35;25;90;108;158;31;15;17;16;27;23;53;717;250;320;491;119 -176;'626;Timor-Leste;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;48;48;2;2;2;2;0;0;0;0;0;0;0;0;0;0 -176;'626;Timor-Leste;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;44;26;26;1043;1043;1043;1043;0;0;0;0;0;0;0;0;0;0 -176;'626;Timor-Leste;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;116;116;87;1;1;4;5;4;26;18;4;2;1;5;3 -176;'626;Timor-Leste;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;64;64;111;1;1;6;8;22;20;25;1;1;2;10;7 -176;'626;Timor-Leste;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;0;0;0;0;0;0;0;0;0;0 -176;'626;Timor-Leste;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1010;1010;1010;1010;0;0;0;0;0;0;0;0;0;0 -176;'626;Timor-Leste;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;23;23;23;23;5;4;7;24;11;8;14;5;1;0;0;10;19;18;16;23 -176;'626;Timor-Leste;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;14;14;4;6;24;40;12;9;6;3;2;0;0;13;13;10;14;56 -176;'626;Timor-Leste;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;48;48;1;1;1;1;0;0;0;0;0;0;0;0;0;0 -176;'626;Timor-Leste;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;44;26;26;33;33;33;33;0;0;0;0;0;0;0;0;0;0 -176;'626;Timor-Leste;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;31;31;31;31;31;31;31;18;7;2;2;2;1;1;20;595;128;182;280;21 -176;'626;Timor-Leste;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;20;20;20;20;20;7;18;5;5;5;3;3;28;703;236;308;346;19 -176;'626;Timor-Leste;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;142;49 -176;'626;Timor-Leste;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121;37 -176;'626;Timor-Leste;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94;94;94;94;94;32;32;32;32;32;4;8;7;93;141;483;48;6;6;6;6;6;5;6;4;4 -176;'626;Timor-Leste;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;35;35;35;35;43;43;43;43;43;24;19;19;96;135;211;41;13;13;13;13;9;3;6;6;22 -176;'626;Timor-Leste;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2408;2342;2531;3073;4518;8579;7590 -176;'626;Timor-Leste;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;192;310;91;83;0;89;19 -176;'626;Timor-Leste;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -176;'626;Timor-Leste;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -176;'626;Timor-Leste;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;182;28;17;24;49;40;641 -176;'626;Timor-Leste;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;8;8 -176;'626;Timor-Leste;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;143;56;60;165;146;381;81 -176;'626;Timor-Leste;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -176;'626;Timor-Leste;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;216;154;230;208;425;753;346 -176;'626;Timor-Leste;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -176;'626;Timor-Leste;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1590;1940;2041;2596;3765;7158;6084 -176;'626;Timor-Leste;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;119;20;36;0;81;11 -176;'626;Timor-Leste;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;14;25;18 -176;'626;Timor-Leste;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;277;164;183;74;119;222;420 -176;'626;Timor-Leste;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;191;191;71;47;0;0;0 -176;'626;Timor-Leste;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3114;3691;4965;2616;2782;4645;6578 -176;'626;Timor-Leste;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;0;0;2;84 -176;'626;Timor-Leste;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;19;43;30;27;49;119 -176;'626;Timor-Leste;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1859;2638;3049;895;701;1060;1149 -176;'626;Timor-Leste;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -176;'626;Timor-Leste;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;336;281;675;658;962;1347;2170 -176;'626;Timor-Leste;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -176;'626;Timor-Leste;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;902;752;1197;1033;1092;2187;3056 -176;'626;Timor-Leste;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -217;'768;Togo;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37028;43276;36708;43856;55052.24;59433.24;57721.24 -217;'768;Togo;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21847;11781;12892;14499;14935;22803;27227 -217;'768;Togo;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;88;116;77;340;561;597;371;472;468;584;483;451;499;357;484;1778;2807;471;1069;458;3046;2506;2506;2506;3058;1297;1544;1793;2202;3248;4013;1835;1068;2064;4158;3324;2315;4638;4933;4349;4318;2943;9129;4208;4289;2926;6718;11394;5600.2;5794;7955;30720;14969;19407;7641;9811;14073;23036;10708;14448;21630.24;21144.24;23710.24 -217;'768;Togo;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;87;70;53;38;30;30;92;9;10;;;;;;;;;;;;;;;;;;;354;181;156;390;214;4514;1891;935;1433;2121;1248;2030;4560;15232;19799;25020;44508;29777;46930.4;45217;45132;42605;56077;39088;18760;19396;9940;11304;11470;11400;18723;22718 -217;'768;Togo;1861;Roundwood;5516;Production;m3;3558054;3571884;3587768;3604708;3620703;3636754;3654861;3673023;3691242;3711518;3796364;3810499;3828959;3838138;3870102;3924564;3917902;3881034;3965071;3881431;3982656;4092016;4217712;4253395;4294556;4388127;4499405;4558501;4639109;4766292;4897659;5064918;5339345;5390470;5456040;5485954;5628158;5651300;5744924;5805189;5784194;5808447;5886967;4678000;4590000;4590000;4590000;4590000;4590000;4590000;4596000;4654000;4654000;4652000;4600000;4629000;4670000;4608095;4611914;4611914;4611914;4795914;7108623 -217;'768;Togo;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;700;800;200;400;200;300;200;200;200;200;200;100;100;2800;;;;;600;3200;500;200;1000;2000;5000;5000;1000;201;1022;1022;270;2197;595;669;390;246;4381;4470;1516;235;13;2286;527;368;1176;6375;324;1566 -217;'768;Togo;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;177;323;80;170;85;140;100;100;100;100;100;11;11;309;;;;;151;355;46;17;344;367;1406;1406;166;6;90;90;46;395;206;299;128;66;644;503;215;28;7;908;55;66;367;2024;141;526 -217;'768;Togo;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1200;3000;600;68000;16000;11000;28000;28000;17000;18341;16794;49123;60407;70328;100422;77708;117843;101167;94435;77682;115765;117974;50151;49241;24907;30432;31241;33022;8325;9526 -217;'768;Togo;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;156;390;78;4398;1739;782;778;778;451;788;3634;14476;18584;23987;37651;28250;44400;40102;41085;38519;50908;37184;18135;18790;9180;10551;10128;10146;933;1917 -217;'768;Togo;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 -217;'768;Togo;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;746;37;306;0;3400;42;7 -217;'768;Togo;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;348;11;37;16;504;13;4 -217;'768;Togo;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2980;107;36;2180;2450;6578;6480 -217;'768;Togo;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1375;47;3;248;265;779;764 -217;'768;Togo;1863;Roundwood, non-coniferous;5516;Production;m3;3558054;3571884;3587768;3604708;3620703;3636754;3654861;3673023;3691242;3711518;3796364;3810499;3828959;3838138;3870102;3924564;3917902;3881034;3965071;3881431;3982656;4092016;4217712;4253395;4294556;4388127;4499405;4558501;4639109;4766292;4897659;5064918;5339345;5390470;5456040;5485954;5628158;5651300;5744924;5805189;5784194;5808447;5886967;4678000;4590000;4590000;4590000;4590000;4590000;4590000;4596000;4654000;4654000;4652000;4600000;4629000;4670000;4608095;4611914;4611914;4611914;4795914;7108623 -217;'768;Togo;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1540;490;62;1176;2975;282;1559 -217;'768;Togo;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;560;44;29;351;1520;128;522 -217;'768;Togo;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46261;24800;30396;29061;30572;1747;3046 -217;'768;Togo;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17415;9133;10548;9880;9881;154;1153 -217;'768;Togo;1864;Wood fuel;5516;Production;m3;3479054;3492884;3506768;3520708;3534703;3548754;3562861;3577023;3591242;3605518;3689364;3691499;3704959;3712138;3740102;3791564;3781902;3742034;3822071;3751431;3848156;3952016;4075712;4106895;4139556;4231127;4333405;4388501;4466109;4581292;4710859;4873918;5142345;5179470;5220040;5238954;5309158;5364300;5430924;5499189;5549194;5600447;5652967;4424000;4424000;4424000;4424000;4424000;4424000;4424000;4424000;4424000;4424000;4424000;4424000;4424000;4424000;4424000;4424000;4424000;4424000;4424000;6736709 -217;'768;Togo;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;32;32;32;62;62;62;62;62;62;;;36;36;36;36;36 -217;'768;Togo;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;32;32;32;15;15;15;15;15;15;;;3;3;3;3;3 -217;'768;Togo;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 -217;'768;Togo;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;36;36;36;36 -217;'768;Togo;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3 -217;'768;Togo;1628;Wood fuel, non-coniferous;5516;Production;m3;3479054;3492884;3506768;3520708;3534703;3548754;3562861;3577023;3591242;3605518;3689364;3691499;3704959;3712138;3740102;3791564;3781902;3742034;3822071;3751431;3848156;3952016;4075712;4106895;4139556;4231127;4333405;4388501;4466109;4581292;4710859;4873918;5142345;5179470;5220040;5238954;5309158;5364300;5430924;5499189;5549194;5600447;5652967;4424000;4424000;4424000;4424000;4424000;4424000;4424000;4424000;4424000;4424000;4424000;4424000;4424000;4424000;4424000;4424000;4424000;4424000;4424000;6736709 -217;'768;Togo;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;32;32;32;62;62;62;62;62;62;;;;;;; -217;'768;Togo;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;32;32;32;15;15;15;15;15;15;;;;;;; -217;'768;Togo;1865;Industrial roundwood;5516;Production;m3;79000;79000;81000;84000;86000;88000;92000;96000;100000;106000;107000;119000;124000;126000;130000;133000;136000;139000;143000;130000;134500;140000;142000;146500;155000;157000;166000;170000;173000;185000;186800;191000;197000;211000;236000;247000;319000;287000;314000;306000;235000;208000;234000;254000;166000;166000;166000;166000;166000;166000;172000;230000;230000;228000;176000;205000;246000;184095;187914;187914;187914;371914;371914 -217;'768;Togo;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;700;800;200;400;200;300;200;200;200;200;200;100;100;2800;;;;;600;3200;500;200;1000;2000;5000;5000;1000;201;1022;1022;270;2197;595;669;390;246;4381;4470;1516;235;13;2286;527;368;1176;6375;324;1566 -217;'768;Togo;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;177;323;80;170;85;140;100;100;100;100;100;11;11;309;;;;;151;355;46;17;344;367;1406;1406;166;6;90;90;46;395;206;299;128;66;644;503;215;28;7;908;55;66;367;2024;141;526 -217;'768;Togo;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1200;3000;600;68000;16000;11000;28000;28000;17000;18341;16794;49123;60407;70296;100390;77676;117811;101105;94373;77620;115703;117912;50089;49241;24907;30396;31205;32986;8289;9490 -217;'768;Togo;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;156;390;78;4398;1739;782;778;778;451;788;3634;14476;18584;23955;37619;28218;44368;40087;41070;38504;50893;37169;18120;18790;9180;10548;10125;10143;930;1914 -217;'768;Togo;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;513;17;281;101;122;4191;4234;1249;179;0;746;37;306;0;3400;42;7 -217;'768;Togo;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;31;2;17;6;13;557;443;125;16;0;348;11;37;16;504;13;4 -217;'768;Togo;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;16;66;162;4181;4184;912;492;2980;107;0;2144;2414;6542;6444 -217;'768;Togo;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;1;5;15;364;336;80;36;1375;47;0;245;262;776;761 -217;'768;Togo;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;513;17;281;101;122;4191;4234;1249;179;0;746;37;306;0;3400;42;7 -217;'768;Togo;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;31;2;17;6;13;557;443;125;16;0;348;11;37;16;504;13;4 -217;'768;Togo;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;16;66;162;4181;4184;912;492;2980;107;0;2144;2414;6542;6444 -217;'768;Togo;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;1;5;15;364;336;80;36;1375;47;0;245;262;776;761 -217;'768;Togo;1867;Industrial roundwood, non-coniferous;5516;Production;m3;79000;79000;81000;84000;86000;88000;92000;96000;100000;106000;107000;119000;124000;126000;130000;133000;136000;139000;143000;130000;134500;140000;142000;146500;155000;157000;166000;170000;173000;185000;186800;191000;197000;211000;236000;247000;319000;287000;314000;306000;235000;208000;234000;254000;166000;166000;166000;166000;166000;166000;172000;230000;230000;228000;176000;205000;246000;184095;187914;187914;187914;371914;371914 -217;'768;Togo;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;3200;500;200;1000;2000;5000;5000;1000;201;1022;1022;270;1684;578;388;289;124;190;236;267;56;13;1540;490;62;1176;2975;282;1559 -217;'768;Togo;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;151;355;46;17;344;367;1406;1406;166;6;90;90;46;364;204;282;122;53;87;60;90;12;7;560;44;29;351;1520;128;522 -217;'768;Togo;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1200;3000;600;68000;16000;11000;28000;28000;17000;18341;16794;49123;60407;70296;100390;77627;117795;101039;94211;73439;111519;117000;49597;46261;24800;30396;29061;30572;1747;3046 -217;'768;Togo;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;156;390;78;4398;1739;782;778;778;451;788;3634;14476;18584;23955;37619;28214;44367;40082;41055;38140;50557;37089;18084;17415;9133;10548;9880;9881;154;1153 -217;'768;Togo;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;3200;500;200;1000;2000;5000;5000;1000;2;231;231;231;839;112;161;116;63;129;52;197;56;0;0;444;59;0;68;42;59 -217;'768;Togo;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;151;355;46;17;344;367;1406;1406;166;0;38;38;38;34;65;103;63;35;50;17;73;12;0;0;32;27;0;30;17;29 -217;'768;Togo;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1200;3000;600;68000;16000;11000;28000;28000;17000;17000;12275;44604;55888;65777;95871;73108;113276;96520;89692;68920;107000;117000;49597;46261;24800;30396;29061;30572;22;3046 -217;'768;Togo;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;156;390;78;4398;1739;782;778;778;451;721;3367;14209;18317;23688;37352;27947;44100;39815;40788;37873;50290;37089;18084;17415;9133;10548;9880;9881;2;1153 -217;'768;Togo;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;199;791;791;39;845;466;227;173;61;61;184;70;0;13;1540;46;3;1176;2907;240;1500 -217;'768;Togo;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;52;52;8;330;139;179;59;18;37;43;17;0;7;560;12;2;351;1490;111;493 -217;'768;Togo;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1341;4519;4519;4519;4519;4519;4519;4519;4519;4519;4519;4519;0;0;0;0;0;0;0;1725;0 -217;'768;Togo;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;267;267;267;267;267;267;267;267;267;267;267;0;0;0;0;0;0;0;152;0 -217;'768;Togo;1868;Sawlogs and veneer logs;5516;Production;m3;4000;4000;5000;6000;6000;5000;5000;5000;5000;7000;5000;14000;17000;16000;18000;18000;18000;18000;18000;2000;2500;4000;2000;2500;6000;4000;8000;7000;5000;12000;7800;7000;7000;16000;35000;35000;99000;55000;67000;62000;55000;43000;43000;44000;86000;86000;86000;86000;86000;86000;92000;150000;150000;148000;96000;125000;166000;166000;166000;166000;166000;350000;350000 -217;'768;Togo;1868;Sawlogs and veneer logs;5616;Import quantity;m3;;;;;;;;;;;;;;;;700;800;200;400;200;300;200;200;200;200;200;100;100;2800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -217;'768;Togo;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;;;;;;;;;;;;;;;;177;323;80;170;85;140;100;100;100;100;100;11;11;309;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -217;'768;Togo;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;4000;4000;5000;6000;6000;5000;5000;5000;5000;7000;5000;14000;17000;16000;18000;18000;18000;18000;18000;2000;2500;4000;2000;2500;6000;4000;8000;7000;5000;12000;7800;7000;7000;16000;35000;35000;99000;55000;67000;62000;55000;43000;43000;44000;86000;86000;86000;86000;86000;86000;92000;150000;150000;148000;96000;125000;166000;166000;166000;166000;166000;350000;350000 -217;'768;Togo;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;700;800;200;400;200;300;200;200;200;200;200;100;100;2800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -217;'768;Togo;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;177;323;80;170;85;140;100;100;100;100;100;11;11;309;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -217;'768;Togo;1871;Other industrial roundwood;5516;Production;m3;75000;75000;76000;78000;80000;83000;87000;91000;95000;99000;102000;105000;107000;110000;112000;115000;118000;121000;125000;128000;132000;136000;140000;144000;149000;153000;158000;163000;168000;173000;179000;184000;190000;195000;201000;212000;220000;232000;247000;244000;180000;165000;191000;210000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;18095;21914;21914;21914;21914;21914 -217;'768;Togo;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;75000;75000;76000;78000;80000;83000;87000;91000;95000;99000;102000;105000;107000;110000;112000;115000;118000;121000;125000;128000;132000;136000;140000;144000;149000;153000;158000;163000;168000;173000;179000;184000;190000;195000;201000;212000;220000;232000;247000;244000;180000;165000;191000;210000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;80000;18095;21914;21914;21914;21914;21914 -217;'768;Togo;1630;Wood charcoal;5510;Production;t;42609;44057;45555;47104;48705;50361;52073;53843;55674;57566;60476;61434;62954;64386;66473;70248;72469;73882;79464;80419;85303;90618;96821;99818;102901;107090;111933;114813;118597;124129;51000;138741;151356;190000;220000;228000;240000;248000;274000;281000;282000;280000;280000;300000;300000;205712;211000;216300;221849;227505;233324;239291;245411;251687;258124;263880;269764;275779;281928;288214;294579;301085;307734 -217;'768;Togo;1630;Wood charcoal;5610;Import 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;13;0;45;1;63;49 -217;'768;Togo;1630;Wood charcoal;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;0;19;323;0;144;0;240;11 -217;'768;Togo;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;545;156;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;159;100;100;54;54;128;49;49;49;21;21;21;21;0;0 -217;'768;Togo;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;151;40;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;34;15;15;9;9;12;7;7;7;6;6;6;6;0;0 -217;'768;Togo;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;28;40;30;15;15;15;15;15;15;15;2;2;2;2;2 -217;'768;Togo;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;3.2;4;4;4;4;4;4;4;4;4;2;2;2;2;2 -217;'768;Togo;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;171;370;370;370;370;877;877;28;28;28;28;7;7 -217;'768;Togo;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;8;40;40;40;40;77;77;11;11;11;11;0;0 -217;'768;Togo;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;23;13;13;13;13;13;13;13;13;0;0;0;0;0 -217;'768;Togo;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.2;2;2;2;2;2;2;2;2;2;0;0;0;0;0 -217;'768;Togo;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;237;237;237;237;237;237;21;21;21;21;0;0 -217;'768;Togo;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;32;32;32;32;32;11;11;11;11;0;0 -217;'768;Togo;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;17;2;2;2;2;2;2;2;2;2;2;2;2 -217;'768;Togo;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2 -217;'768;Togo;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;171;133;133;133;133;640;640;7;7;7;7;7;7 -217;'768;Togo;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;8;8;8;8;8;45;45;0;0;0;0;0;0 -217;'768;Togo;1872;Sawnwood;5516;Production;m3;700;2000;2500;3000;3000;3000;2200;2500;2500;3500;2500;3000;3000;4000;5000;5000;5000;5000;5000;1000;1300;2100;1000;1200;3000;2100;4200;3500;2500;5800;2000;3000;3000;7600;14400;15000;17000;18000;21000;19000;15000;13000;13000;13000;14000;14000;15000;15000;15000;23000;46000;75000;75000;74000;48071;49172;67398;67398;67398;67398;67398;150000;150000 -217;'768;Togo;1872;Sawnwood;5616;Import quantity;m3;300;300;100;6900;7700;7950;5100;4900;4900;9500;6800;4300;4000;1050;1600;250;100;100;400;100;100;100;100;100;100;100;2500;5500;3600;3600;6100;61;38;7600;3400;5000;5900;2000;7000;3500;11700;10000;10000;0;0;181;516;525;614;640;337;568;472;174;2;43;6;139;205;46;3;550;388 -217;'768;Togo;1872;Sawnwood;5622;Import value;1000 USD;11;11;6;238;317;376;283;350;323;367;306;201;257;71;187;30;12;12;43;6;6;6;6;6;6;6;227;503;438;438;1209;15;27;319;272;435;403;1067;649;347;389;521;630;0;0;63;468;494;544;569;298;559;446;161;0;12;4;60;97;40;44;292;481 -217;'768;Togo;1872;Sawnwood;5916;Export quantity;m3;;;;;600;400;400;300;300;200;500;200;200;;;;;;;;;;;;;;;;;;;111;111;0;0;900;900;800;1000;2000;8000;1381;2381;1701;1038;1760;1661;3776;1944;2677;5635;4743;3502;2731;1310;186;53;228;467;1670;1970;82000;79885 -217;'768;Togo;1872;Sawnwood;5922;Export value;1000 USD;;;;;87;70;53;38;30;30;92;9;10;;;;;;;;;;;;;;;;;;;55;55;0;0;136;116;152;153;655;1231;579;872;708;484;915;757;1319;1068;1870;4087;2534;2742;2024;978;153;44;210;301;749;693;17093;20104 -217;'768;Togo;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 -217;'768;Togo;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;33;0;0;0;0;0;0;0;0;0;0;0;0;171;18;3;30;0;11;2;24;8;0;31;1;58;89;0;2;462;70 -217;'768;Togo;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;25;0;0;0;0;0;0;0;0;0;0;0;0;40;4;1;10;0;3;1;7;2;0;8;1;15;3;8;2;224;269 -217;'768;Togo;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;3;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0 -217;'768;Togo;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;1;0;0;0;0;0;0;0;0;0;0;1;0;0;37;0 -217;'768;Togo;1633;Sawnwood, non-coniferous;5516;Production;m3;700;2000;2500;3000;3000;3000;2200;2500;2500;3500;2500;3000;3000;4000;5000;5000;5000;5000;5000;1000;1300;2100;1000;1200;3000;2100;4200;3500;2500;5800;2000;3000;3000;7600;14400;15000;17000;18000;21000;19000;15000;13000;13000;13000;14000;14000;15000;15000;15000;23000;46000;75000;75000;74000;48071;49172;67398;67398;67398;67398;67398;150000;150000 -217;'768;Togo;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;300;300;100;6900;7700;7950;5100;4900;4900;9500;6800;4300;4000;1050;1600;250;100;100;400;100;100;100;100;100;100;100;2500;5500;3600;3600;6100;32;5;7600;3400;5000;5900;2000;7000;3500;11700;10000;10000;0;0;10;498;522;584;640;326;566;448;166;2;12;5;81;116;46;1;88;318 -217;'768;Togo;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;11;11;6;238;317;376;283;350;323;367;306;201;257;71;187;30;12;12;43;6;6;6;6;6;6;6;227;503;438;438;1209;9;2;319;272;435;403;1067;649;347;389;521;630;0;0;23;464;493;534;569;295;558;439;159;0;4;3;45;94;32;42;68;212 -217;'768;Togo;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;600;400;400;300;300;200;500;200;200;;;;;;;;;;;;;;;;;;;111;111;0;0;900;900;800;1000;2000;8000;1381;2381;1701;1038;1760;1626;3773;1944;2677;5635;4743;3502;2731;1310;186;53;228;465;1670;1970;82000;79885 -217;'768;Togo;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;87;70;53;38;30;30;92;9;10;;;;;;;;;;;;;;;;;;;55;55;0;0;136;116;152;153;655;1231;579;872;708;484;915;740;1318;1068;1870;4087;2534;2742;2024;978;153;44;210;300;749;693;17056;20104 -217;'768;Togo;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;1000;1000;1000 -217;'768;Togo;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;2;17;736;8;359;724;316;938;299;123;413;615;124;96;29;40;817;20;5;0;111 -217;'768;Togo;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;13;73;18;36;28;144;508;186;36;211;176;17;14;5;18;276;8;2;162;8 -217;'768;Togo;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;139;2;142;222;31;4;52;497;273;314;735;67;62;0;3;0;0;0;0;0;13 -217;'768;Togo;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;44;1;68;97;74;4;49;185;121;121;41;32;24;0;6;1;0;0;0;0;1 -217;'768;Togo;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;1000;1000;1000;2000;2000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000 -217;'768;Togo;1873;Wood-based panels;5616;Import quantity;m3;82;100;118;200;200;200;200;200;200;200;200;600;600;500;500;500;500;500;;;;;;;1000;400;200;200;1300;200;300;579;253;629;800;1300;1400;700;1200;1200;800;882;1281;1255;1252;241;5426;5146;5842;2917;2572;1512;3726;3884;1866;2815;4024;3877;7195;12631;22505.13;21667;27261 -217;'768;Togo;1873;Wood-based panels;5622;Import value;1000 USD;14;17;20;34;41;52;36;36;36;36;36;95;95;139;150;147;147;147;;;;;;;329;182;106;90;299;96;90;225;57;168;176;257;242;249;256;166;141;91;173;195;216;65;1819;2170;1967;1178;4242;16580;908;1247;993;2424;2215;1991;2336;4072;7321.02;6768;10179 -217;'768;Togo;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;149;67;33;10;11;11;4099;110;251;512;773;509;409;677;653;214;340;81;143;395;3657;3900 -217;'768;Togo;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;106;49;35;22;23;23;5237;76;122;254;250;262;290;222;208;137;260;75;194;178;584;585 -217;'768;Togo;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;1000;1000;1000;2000;2000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000 -217;'768;Togo;1640;Plywood and LVL;5616;Import quantity;m3;82;100;118;200;200;200;200;200;200;200;200;600;600;500;500;500;500;500;;;;;;;;;;;;;;31;2;100;100;400;300;200;1000;1000;500;632;1000;1003;1000;21;5036;4781;4667;2283;2193;910;3124;3467;1476;2294;3205;3758;6392;11175;21114;20618;25669 -217;'768;Togo;1640;Plywood and LVL;5622;Import value;1000 USD;14;17;20;34;41;52;36;36;36;36;36;95;95;139;150;147;147;147;;;;;;;;;;;;;;11;2;41;40;154;113;99;193;103;72;53;102;115;136;7;1733;2056;1830;1069;4151;16405;733;1056;787;2032;1939;1916;1922;3417;6476;6292;9353 -217;'768;Togo;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;149;64;30;7;8;8;4093;104;245;506;762;498;399;665;641;202;328;67;0;252;3582;3825 -217;'768;Togo;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106;29;15;2;3;3;5232;71;117;249;227;239;282;204;190;119;242;63;175;159;555;556 -217;'768;Togo;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;3;300;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -217;'768;Togo;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;1;58;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -217;'768;Togo;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -217;'768;Togo;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -217;'768;Togo;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;100;100;200;100;100;100;50;30;30;30;30;69;69;891;409;154;275;275;0;25;13;89;89;95;270;329;231;398 -217;'768;Togo;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;33;39;68;51;51;51;19;43;43;43;43;43;43;82;43;25;58;58;0;48;23;55;55;65;137;279;170;323 -217;'768;Togo;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5;5;4;6;6;6;6;8;8;8;2;2 -217;'768;Togo;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;18;18;3;13;13;13;13;8;8;8;4;4 -217;'768;Togo;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;2;32;3;3 -217;'768;Togo;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;18;1;1;1;4;153;3;3 -217;'768;Togo;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;1000;400;200;200;1300;200;300;530;248;229;500;800;1000;300;100;100;200;200;251;222;222;190;321;296;284;225;225;327;327;414;362;505;727;27;705;1184;1030.13;815;1191 -217;'768;Togo;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;329;182;106;90;299;96;90;209;54;69;66;70;90;82;12;12;18;19;28;37;37;15;43;71;55;66;66;117;117;173;140;351;220;19;348;514;413.02;303;500 -217;'768;Togo;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;6;6;6;6;6;6;6;6;6;6;6;6;135;135;73;73 -217;'768;Togo;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;20;20;5;5;5;5;5;5;5;5;5;5;5;4;11;11;25;25 -217;'768;Togo;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;52;52;20;128;88;88;29;29;29;29;101;35;35;21;21;52;196;7;107;2 -217;'768;Togo;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;24;24;2;23;31;31;42;42;42;42;53;16;16;12;12;34;102;25;78;7 -217;'768;Togo;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;38;26;26;26;128;128;143;157;436;468;2;289;980;1023.13;626;1155 -217;'768;Togo;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;27;11;11;11;62;62;107;111;313;140;3;165;407;383.02;173;471 -217;'768;Togo;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;6;6;6;6;6;6;6;6;6;6;6;6;135;135;73;73 -217;'768;Togo;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;20;20;5;5;5;5;5;5;5;5;5;5;5;4;11;11;25;25 -217;'768;Togo;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;208;8;5;500;800;1000;300;100;100;200;200;170;170;170;170;170;170;170;170;170;170;170;170;170;34;238;4;364;8;0;82;34 -217;'768;Togo;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119;2;2;66;70;90;82;12;12;18;19;13;13;13;13;13;13;13;13;13;13;13;13;13;22;68;4;149;5;5;52;22 -217;'768;Togo;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -217;'768;Togo;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -217;'768;Togo;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;1000;400;200;200;1300;200;300;322;240;224;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -217;'768;Togo;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;329;182;106;90;299;96;90;90;52;67;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -217;'768;Togo;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;800;600;100;700;700;700;700;700;700;700 -217;'768;Togo;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;5;94;90;90;90;0;0;0;0;0;56;1548;1548;1498;1506;1504;301;85;83;323;323;304;473;523;442;442;295;292;461;456.2;456.2 -217;'768;Togo;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;4;12;24;24;24;0;0;0;0;0;11;215;215;204;216;212;122;71;61;127;127;110;129;144;105;105;74;63;135;132.24;132.24 -217;'768;Togo;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;2;80;361;10;20;43;314;295;763;604;113;679;679;1001;676;697.88;589;155 -217;'768;Togo;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;16;67;2;0.4;7;134;33;46;62;20;65;65;111;67;86;71;15 -217;'768;Togo;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;5;0;0;0;0;0;0;0;0;0;3;124;124;74;82;80;90;83;83;323;323;304;432;443;428;428;295;279;452;452.2;452.2 -217;'768;Togo;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;4;0;0;0;0;0;0;0;0;0;2;57;57;46;58;54;72;61;61;127;127;110;111;138;102;102;74;58;124;126.24;126.24 -217;'768;Togo;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;13;13;10;10;10;10;10;10;10 -217;'768;Togo;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;1;1;1;1;1;1;1 -217;'768;Togo;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;5;0;0;0;0;0;0;0;0;0;3;124;124;74;82;80;90;83;83;100;100;81;80;91;76;76;44;41;52;52;52 -217;'768;Togo;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;4;0;0;0;0;0;0;0;0;0;2;57;57;46;58;54;72;61;61;75;75;58;50;77;41;41;41;37;64;66;66 -217;'768;Togo;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -217;'768;Togo;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -217;'768;Togo;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;0;0;0;;;;;;; -217;'768;Togo;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;0;0;;;;;;; -217;'768;Togo;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;;;;;;; -217;'768;Togo;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;;;;;;; -217;'768;Togo;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;5;0;0;0;0;0;0;0;0;0;3;124;124;74;82;80;90;83;83;87;87;81;80;76;76;76;44;41;52;52;52 -217;'768;Togo;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;4;0;0;0;0;0;0;0;0;0;2;57;57;46;58;54;72;61;61;74;74;58;50;41;41;41;41;37;64;66;66 -217;'768;Togo;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -217;'768;Togo;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -217;'768;Togo;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;19;19;19;19;19 -217;'768;Togo;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;17;17;17;17;17 -217;'768;Togo;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;75;75;75;75;75;75;75;75;74;74;74;74;20;20;20;20;20 -217;'768;Togo;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;48;48;48;48;48;48;48;48;41;41;41;41;15;15;15;15;15 -217;'768;Togo;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;2;13;13;13 -217;'768;Togo;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;5;32;34;34 -217;'768;Togo;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;5;0;0;0;0;0;0;0;0;0;1;122;122;48;5;3;13;6;6;10;10;4;4;0;;;;;;; -217;'768;Togo;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;4;0;0;0;0;0;0;0;0;0;2;57;57;35;10;6;24;13;13;26;26;10;9;0;;;;;;; -217;'768;Togo;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -217;'768;Togo;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -217;'768;Togo;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;223;223;223;352;352;352;352;251;238;400;400.2;400.2 -217;'768;Togo;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;52;52;61;61;61;61;33;21;60;60.24;60.24 -217;'768;Togo;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;13;13;10;10;10;10;10;10;10 -217;'768;Togo;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;1;1;1;1;1;1;1 -217;'768;Togo;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;251;286;286;286;17;17;120;120;120;120;120;259;259 -217;'768;Togo;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;196;196;196;3;3;13;13;13;13;13;29;29 -217;'768;Togo;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;12;12;12;12;12 -217;'768;Togo;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1 -217;'768;Togo;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;800;600;100;700;700;700;700;700;700;700 -217;'768;Togo;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94;90;90;90;0;0;0;0;0;53;1424;1424;1424;1424;1424;211;2;0;0;0;0;41;80;14;14;0;13;9;4;4 -217;'768;Togo;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;24;24;24;0;0;0;0;0;9;158;158;158;158;158;50;10;0;0;0;0;18;6;3;3;0;5;11;6;6 -217;'768;Togo;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;2;80;361;10;20;30;301;282;750;591;100;669;669;991;666;687.88;579;145 -217;'768;Togo;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;16;67;2;0.4;2;129;28;41;57;15;64;64;110;66;85;70;14 -217;'768;Togo;1876;Paper and paperboard;5610;Import quantity;t;100;200;200;200;400;300;100;200;200;100;200;400;300;300;300;1200;1400;200;700;300;2300;1800;1800;1800;3000;1000;1000;1000;1015;1900;1900;1250;1127;1300;2400;2300;1700;3000;4000;3500;3800;3220;22038;4762;4762;5265;6237;8909;4060;4664;3638;13125;13125;19220;9491;9872;13437;21565;11037;12825;15332.63;14308;11707 -217;'768;Togo;1876;Paper and paperboard;5622;Import value;1000 USD;63;88;51;68;203;169;52;86;109;181;141;155;147;147;147;1424;2325;232;856;367;2900;2400;2400;2400;2623;1009;1200;1189;1156;2714;2714;1582;978;1414;3331;2562;1629;2978;3661;2430;2382;2165;8309;3695;3695;2530;3784;8282;2521;3336;3013;12574;12574;17298;6467;7203;10800;20467;7844;9739;12089.22;13378;12342 -217;'768;Togo;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;230;34;0;0;0;0;0;0;0;200;200;338;252;252;274;133;1165;196;227;367;465;465;3944;1025;660;771;163;2623;2696;2137.03;157;237 -217;'768;Togo;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;148;86;0;0;0;0;0;0;0;112;112;277;181;181;180;163;230;298;334;623;959;959;2725;571;160;269;206;248;314;279;41;95 -217;'768;Togo;2042;Graphic papers;5610;Import quantity;t;;100;100;100;200;;;;;;;;;;;;;;;;;;;;1800;500;600;600;615;1200;1200;893;698;1000;2100;1800;1000;500;1500;2200;2900;2600;5504;2925;2925;3439;4544;6780;2541;2980;1963;10063;10063;15724;3010;4009;4856;15429;4788;3117;5738.21;4720;3234 -217;'768;Togo;2042;Graphic papers;5622;Import value;1000 USD;;25;38;51;59;;;;;;;;;;;;;;;;;;;;1678;561;684;614;699;1856;1856;1010;534;1060;2977;1875;875;302;951;1716;1897;1737;3317;2171;2171;1707;2476;6564;1669;2256;1605;8930;8930;13404;2240;2763;3492;13888;2267;1652;2007.22;2437;2101 -217;'768;Togo;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;;0;0;0;0;0;0;0;200;200;224;138;138;165;49;52;61;57;52;243;243;3742;816;563;387;84;109;182;399.03;45;125 -217;'768;Togo;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;;0;0;0;0;0;0;0;112;112;165;69;69;78;28;41;63;40;51;167;167;2497;327;51;40;104;16;81;104;15;69 -217;'768;Togo;1671;Newsprint;5610;Import quantity;t;;100;100;100;200;;;;;;;;;;;;;;;;;;;;;;0;;;;;27;54;400;700;100;300;500;500;100;1100;500;232;491;491;155;520;303;281;309;232;246;246;168;492;444;397;376;321;288;287;308;484 -217;'768;Togo;1671;Newsprint;5622;Import value;1000 USD;;25;38;51;59;;;;;;;;;;;;;;;;;;;;;;0;;;;;18;21;402;824;48;198;302;306;78;810;203;137;250;250;77;421;195;291;239;236;224;224;145;317;271;257;240;186;155;155.63;279;377 -217;'768;Togo;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;;0;0;0;0;0;0;0;0;0;164;130;130;130;3;3;14;20;20;1;1;382;382;2;2;2;0;0;0;0;0 -217;'768;Togo;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;;0;0;0;0;0;0;0;0;0;125;61;61;61;2;2;16;21;21;0;0;256;256;4;4;4;0;0;0;1;1 -217;'768;Togo;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;1800;500;600;600;615;1200;1200;866;644;600;1400;1700;700;;1000;2100;1800;2100;5272;2434;2434;3284;4024;6477;2260;2671;1731;9817;9817;15556;2518;3565;4459;15053;4467;2829;5451.21;4412;2750 -217;'768;Togo;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;1678;561;684;614;699;1856;1856;992;513;658;2153;1827;677;;645;1638;1087;1534;3180;1921;1921;1630;2055;6369;1378;2017;1369;8706;8706;13259;1923;2492;3235;13648;2081;1497;1851.59;2158;1724 -217;'768;Togo;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;;;;200;200;60;8;8;35;46;49;47;37;32;242;242;3360;434;561;385;82;109;182;399.03;45;125 -217;'768;Togo;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;;;;112;112;40;8;8;17;26;39;47;19;30;167;167;2241;71;47;36;100;16;81;104;14;68 -217;'768;Togo;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111;233;200;600;619;456;456;1038;1040;376;94;705;209;599;599;790;67;24;210;210;8;6;4;3;5 -217;'768;Togo;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;98;65;410;290;359;359;283;347;367;60;455;137;1016;1016;557;55;22;166;166;55;17;13;11;21 -217;'768;Togo;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;100;1;1;1;1;1;1;1;10;10;10;10;10;37;2;4;4;4;4;4;3;3 -217;'768;Togo;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;2;2;2;2;2;2;2;0;0;0;0;0;30;2;3;3;3;3;3;1;1 -217;'768;Togo;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;722;1517;1300;800;3956;1555;1555;1809;2385;4767;1914;1791;805;7575;7575;11171;1706;1581;2135;13203;3382;2012;4702.21;3359;2244 -217;'768;Togo;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;506;1285;853;518;2527;1228;1228;1105;1270;4422;1090;1351;606;6540;6540;9355;1355;1003;2127;11878;1428;945;1274;1383;1320 -217;'768;Togo;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;100;56;3;3;3;40;44;42;23;18;227;227;2830;48;3;5;77;9;76;7;16;96 -217;'768;Togo;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96;96;38;3;3;3;17;29;37;11;22;160;160;1988;19;1;1;97;3;67;68;6;60 -217;'768;Togo;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;167;350;300;700;697;423;423;437;599;1334;252;175;717;1643;1643;3595;745;1960;2114;1640;1077;811;745;1050;501 -217;'768;Togo;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;255;169;606;363;334;334;242;438;1580;228;211;626;1150;1150;3347;513;1467;942;1604;598;535;564.59;764;383 -217;'768;Togo;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;4;4;31;5;4;4;4;4;5;5;520;349;556;376;1;96;102;388.03;26;26 -217;'768;Togo;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;3;12;7;8;8;8;8;7;7;253;22;44;32;0;10;11;33;7;7 -217;'768;Togo;1675;Other paper and paperboard;5610;Import quantity;t;100;100;100;100;200;300;100;200;200;100;200;400;300;300;300;1200;1400;200;700;300;2300;1800;1800;1800;1200;500;400;400;400;700;700;357;429;300;300;500;700;2500;2500;1300;900;620;16534;1837;1837;1826;1693;2129;1519;1684;1675;3062;3062;3496;6481;5863;8581;6136;6249;9708;9594.42;9588;8473 -217;'768;Togo;1675;Other paper and paperboard;5622;Import value;1000 USD;63;63;13;17;144;169;52;86;109;181;141;155;147;147;147;1424;2325;232;856;367;2900;2400;2400;2400;945;448;516;575;457;858;858;572;444;354;354;687;754;2676;2710;714;485;428;4992;1524;1524;823;1308;1718;852;1080;1408;3644;3644;3894;4227;4440;7308;6579;5577;8087;10082;10941;10241 -217;'768;Togo;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;212;34;0;0;0;0;0;0;0;0;0;114;114;114;109;84;1113;135;170;315;222;222;202;209;97;384;79;2514;2514;1738;112;112 -217;'768;Togo;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;137;86;0;0;0;0;0;0;0;0;0;112;112;112;102;135;189;235;294;572;792;792;228;244;109;229;102;232;233;175;26;26 -217;'768;Togo;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;145;193;193;125;95;145;33;64;77;125;125;120;101;559;528;1069;19;713;869;619;548 -217;'768;Togo;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;90;70;213;213;56;132;141;36;67;91;177;177;532;117;479;394;1056;13;512;632.75;447;525 -217;'768;Togo;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;11;19;30;30;21;1;1;1;3;3 -217;'768;Togo;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;0;1;1;1;1;1;1;1;9;13;40;40;15;1;1;1;3;3 -217;'768;Togo;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1100;300;220;16207;771;771;1574;1342;1557;1394;1607;1559;2719;2719;3144;4863;5058;8038;5057;6221;8977;8714.42;8965;7919 -217;'768;Togo;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;516;125;139;4703;480;480;515;905;1188;561;877;1125;3273;3273;2826;2889;3297;6786;5466;5519;7541;9421.25;10445;9683 -217;'768;Togo;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89;89;89;107;68;68;132;166;311;174;174;183;136;53;176;20;2477;2477;1737;109;109 -217;'768;Togo;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98;98;98;102;107;107;232;287;565;770;770;217;205;60;186;8;229;229;170;23;23 -217;'768;Togo;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -217;'768;Togo;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -217;'768;Togo;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108;199;199;53;62;160;47;152;79;771;771;2406;2406;2903;6017;3330;2557;5452;3855;4860;3922 -217;'768;Togo;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;124;124;32;63;125;27;111;61;440;440;1396;1274;1814;3808;2052;1663;3182;3378;4632;2887 -217;'768;Togo;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;7;7;7;7;7;7;7;5;1;725;725;9;19;19 -217;'768;Togo;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;14;14;14;14;14;14;14;1;0;65;65;5;6;6 -217;'768;Togo;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;190;95;95;1156;774;455;895;1106;1132;1468;1468;119;1192;1214;979;1148;2434;1666;2284.37;2745;1741 -217;'768;Togo;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103;59;59;301;623;364;237;565;753;1319;1319;426;656;769;2057;2886;3357;3424;4955.01;5234;5229 -217;'768;Togo;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;21;56;56;56;56;41;20;20;58;11;4;4;5;1716;1716;1716;10;10 -217;'768;Togo;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;5;101;101;101;101;42;23;23;20;8;1;1;4;160;160;160;3;3 -217;'768;Togo;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;200;120;15554;205;205;183;289;725;356;209;208;270;270;568;1177;891;835;378;1221;1820;2549.05;1310;2232 -217;'768;Togo;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;408;96;110;4425;128;128;126;161;641;246;115;225;230;230;943;897;682;843;393;488;904;1070.23;546;1547 -217;'768;Togo;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;85;85;85;1;1;65;102;262;146;146;117;117;31;156;3;25;25;1;69;69 -217;'768;Togo;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97;97;97;97;1;1;126;172;509;733;733;183;183;43;182;2;2;2;3;12;12 -217;'768;Togo;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;100;100;355;272;272;182;217;217;96;140;140;210;210;51;88;50;207;201;9;39;26;50;24 -217;'768;Togo;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108;29;29;96;169;169;56;58;58;51;86;86;1284;1284;61;62;32;78;135;11;31;18;33;20 -217;'768;Togo;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;11;11;11;11;11;11;11;11 -217;'768;Togo;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;2;2;2;2;2;2;2;2 -217;'768;Togo;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;200;100;200;400;300;300;300;1200;1400;200;700;300;2300;1800;1800;1800;1200;500;400;400;400;700;700;357;429;300;300;500;700;2500;2500;200;400;200;182;873;873;127;256;427;92;13;39;218;218;232;1517;246;15;10;9;18;11;4;6 -217;'768;Togo;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;109;181;141;155;147;147;147;1424;2325;232;856;367;2900;2400;2400;2400;945;448;516;575;457;858;858;572;444;354;354;687;754;2676;2710;198;270;199;219;831;831;252;271;389;255;136;192;194;194;536;1221;664;128;57;45;34;28;49;33 -217;'768;Togo;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;24;24;24;1;15;1044;2;3;3;47;47;8;54;14;178;38;36;36;0;0;0 -217;'768;Togo;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;12;12;12;0;27;81;2;6;6;21;21;2;26;9;3;79;2;3;4;0;0 -217;'768;Togo;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4112;3349;3705;3984;6754;8577;8483 -217;'768;Togo;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1440;708;603;1674;1488;1880;1829 -217;'768;Togo;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;12;26;23;23;22 -217;'768;Togo;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;17;17;17;17 -217;'768;Togo;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;0;0;0 -217;'768;Togo;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;7 -217;'768;Togo;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;9;23;23;23;22 -217;'768;Togo;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;10;10 -217;'768;Togo;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;4;29;33;88;128;185 -217;'768;Togo;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;3;3;3;56;477;627 -217;'768;Togo;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;133;47;64;165;12;23 -217;'768;Togo;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;16;6;1;1;1;0 -217;'768;Togo;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;210;125;472;356;371;329;724 -217;'768;Togo;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;182;261;9;889;1077;960;448 -217;'768;Togo;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3799;3023;3035;3451;6023;7945;7183 -217;'768;Togo;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1183;404;561;757;330;418;730 -217;'768;Togo;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;4;4;62;4;258 -217;'768;Togo;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;33;106;50;22;136;88 -217;'768;Togo;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;7 -217;'768;Togo;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18843;16891;22295;25424;26668;29712;25528 -217;'768;Togo;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1011;1133;985;1355;2047;2200;2680 -217;'768;Togo;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;55;36;0;11;15;15 -217;'768;Togo;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;10;10 -217;'768;Togo;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;416;354;182;203;171;223;158 -217;'768;Togo;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;12;1 -217;'768;Togo;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1045;929;769;1057;1528;2139;2140 -217;'768;Togo;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;8;54;394;377;242;1649 -217;'768;Togo;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9401;9067;12769;13019;13011;14788;10316 -217;'768;Togo;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;634;443;413;671;875;1357;507 -217;'768;Togo;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7980;6486;8539;11145;11947;12547;12899 -217;'768;Togo;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;353;671;507;279;784;579;513 -218;'772;Tokelau;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;255;77;140;107;118;131 -218;'772;Tokelau;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;42;151;103;499;714;216 -218;'772;Tokelau;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;2;2;2;2;2;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;0;53;55;115;49;69;75;112;126 -218;'772;Tokelau;1877;Primary wood and paper products (export/import);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;79;88;134;134;131 -218;'772;Tokelau;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;194;6;253;34;0;1;0;0 -218;'772;Tokelau;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;37;1;73;11;0;1;0;0 -218;'772;Tokelau;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -218;'772;Tokelau;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -218;'772;Tokelau;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;50;34;0;1;0;0 -218;'772;Tokelau;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;20;11;0;1;0;0 -218;'772;Tokelau;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -218;'772;Tokelau;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -218;'772;Tokelau;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;203;0;0;0;0;0 -218;'772;Tokelau;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;53;0;0;0;0;0 -218;'772;Tokelau;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -218;'772;Tokelau;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -218;'772;Tokelau;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;194;6;253;34;0;1;0;0 -218;'772;Tokelau;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;37;1;73;11;0;1;0;0 -218;'772;Tokelau;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -218;'772;Tokelau;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -218;'772;Tokelau;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;194;0;50;34;0;1;0;0 -218;'772;Tokelau;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;37;0;20;11;0;1;0;0 -218;'772;Tokelau;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -218;'772;Tokelau;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -218;'772;Tokelau;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;194;0;50;34;0;1;0;0 -218;'772;Tokelau;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;37;0;20;11;0;1;0;0 -218;'772;Tokelau;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -218;'772;Tokelau;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -218;'772;Tokelau;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;6;203;0;0;0;0;0 -218;'772;Tokelau;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1;53;0;0;0;0;0 -218;'772;Tokelau;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -218;'772;Tokelau;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -218;'772;Tokelau;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;6;203;0;0;0;0;0 -218;'772;Tokelau;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1;53;0;0;0;0;0 -218;'772;Tokelau;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -218;'772;Tokelau;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -218;'772;Tokelau;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -218;'772;Tokelau;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -218;'772;Tokelau;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -218;'772;Tokelau;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -218;'772;Tokelau;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18 -218;'772;Tokelau;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16 -218;'772;Tokelau;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -218;'772;Tokelau;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;0;0;218;0;6;361;0;68;0 -218;'772;Tokelau;1872;Sawnwood;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;0;0;30;0;18;69;0;112;0 -218;'772;Tokelau;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;36;0;0;0 -218;'772;Tokelau;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -218;'772;Tokelau;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -218;'772;Tokelau;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;0;0;215;0;0;361;0;0;0 -218;'772;Tokelau;1632;Sawnwood, coniferous;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;0;0;29;0;0;69;0;0;0 -218;'772;Tokelau;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;36;0;0;0 -218;'772;Tokelau;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -218;'772;Tokelau;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -218;'772;Tokelau;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;3;0;6;0;0;68;0 -218;'772;Tokelau;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1;0;18;0;0;112;0 -218;'772;Tokelau;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -218;'772;Tokelau;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -218;'772;Tokelau;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -218;'772;Tokelau;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2;3;1;0;0;0;0;0 -218;'772;Tokelau;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;5;23;2;0;0;0;0;0 -218;'772;Tokelau;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -218;'772;Tokelau;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -218;'772;Tokelau;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -218;'772;Tokelau;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;11;1;110;20;0;488;0;0 -218;'772;Tokelau;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;11;1;40;20;0;74;0;0 -218;'772;Tokelau;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;20;24;24;24;24 -218;'772;Tokelau;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;16;18;18;18;18 -218;'772;Tokelau;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -218;'772;Tokelau;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;11;1;110;20;0;488;0;0 -218;'772;Tokelau;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;11;1;40;20;0;74;0;0 -218;'772;Tokelau;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -218;'772;Tokelau;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -218;'772;Tokelau;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;24;24;24;24 -218;'772;Tokelau;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;18;18;18;18 -218;'772;Tokelau;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109;1;1;1;1;1;;;;;;;;;;;;;;;;;;;;;;;;;;40 -218;'772;Tokelau;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;1;1;1;1;1;;;;;;;;;;;;;;;;;;;;;;;;;;110 -218;'772;Tokelau;1876;Paper and paperboard;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;59;59;81;81;81 -218;'772;Tokelau;1876;Paper and paperboard;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;63;70;116;116;113 -218;'772;Tokelau;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -218;'772;Tokelau;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -218;'772;Tokelau;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -218;'772;Tokelau;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -218;'772;Tokelau;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -218;'772;Tokelau;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -218;'772;Tokelau;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109;1;1;1;1;1;;;;;;;;;;;;;;;;;;;;;;;;;;40 -218;'772;Tokelau;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;1;1;1;1;1;;;;;;;;;;;;;;;;;;;;;;;;;;110 -218;'772;Tokelau;1675;Other paper and paperboard;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;59;59;81;81;81 -218;'772;Tokelau;1675;Other paper and paperboard;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;63;70;116;116;113 -218;'772;Tokelau;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40 -218;'772;Tokelau;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110 -218;'772;Tokelau;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;58;58;58;58 -218;'772;Tokelau;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;66;66;66;66 -218;'772;Tokelau;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;22;22;22 -218;'772;Tokelau;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;49;49;46 -218;'772;Tokelau;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;22;22;22 -218;'772;Tokelau;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;46;46;46 -218;'772;Tokelau;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -218;'772;Tokelau;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;0 -218;'772;Tokelau;1683;Other paper and paperboard, not elsewhere specified;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;1 -218;'772;Tokelau;1683;Other paper and paperboard, not elsewhere specified;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 -218;'772;Tokelau;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;140;28;71;32;6;5 -218;'772;Tokelau;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;11;9;6;331;508;62 -218;'772;Tokelau;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1; -218;'772;Tokelau;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1; -218;'772;Tokelau;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -218;'772;Tokelau;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -218;'772;Tokelau;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -218;'772;Tokelau;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;6;34;0;5;5 -218;'772;Tokelau;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;328;328;7 -218;'772;Tokelau;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;127;22;37;32;0;0 -218;'772;Tokelau;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;11;9;0;3;180;55 -218;'772;Tokelau;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -218;'772;Tokelau;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -218;'772;Tokelau;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;30;63;9;34;72;23 -218;'772;Tokelau;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -218;'772;Tokelau;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -218;'772;Tokelau;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -218;'772;Tokelau;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;10;3;8;66;2 -218;'772;Tokelau;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -218;'772;Tokelau;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;24;53;6;26;6;21 -219;'776;Tonga;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9182;9296;8966;12370;10980;10457;11054 -219;'776;Tonga;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;606;256;285;217;128;360;797 -219;'776;Tonga;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;2614;1577;2054;2035;2166;2166;1684;2053;2027;2069;1886;1857;2530;1953;1013;611;1651;2066;1957;2019;2539;2681;3541;3521;3829;3120;3371;2916;6194;4224;4021;5625;8344;4425;5409;4786;5249;4170;6139;5557;5456;5308 -219;'776;Tonga;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;8;20;12;13;13;13;158;403;403;137;249;85;25;46;346;433;437;310;290;237;571;215;227;176;84;296;686 -219;'776;Tonga;1861;Roundwood;5516;Production;m3;1794;1809;1824;1838;1853;1868;1884;1899;1914;1930;1949;2009;2073;2057;2395;2084;2082;2101;2120;2092;2066;9558;5053;5042;6414;6627;6650;6705;6732;4470;4466;4466;4456;4460;4456;4481;3926;4301;2611;3710;3702;3695;3688;3682;3375;4167;4158;4150;4142;4134;4126;4119;4112;4105;4098;4089;4079;4070;4061;4052;4041;4031;4020 -219;'776;Tonga;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;137;1632;1632;165;165;83;647;649;1884;1970;1970;1954;1744;2278;2278;2710;2706;3720;5765;15046;11129;14752;11379;11124;360;92;85;60;0;9;44;4;0 -219;'776;Tonga;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;157;157;12;12;18;30;30;176;208;208;209;165;199;199;225;225;527;749;986;770;1101;760;803;138;27;48;25;0;2;17;0;0 -219;'776;Tonga;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;116;116;116;116;116;1785;6626;6626;2061;3967;1185;276;457;1931;4131;4131;1158;115;0;0;0;4;0;0;0;0 -219;'776;Tonga;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;12;12;12;12;12;105;390;390;121;233;69;16;26;113;243;243;68;32;0;0;0;43;6;0;0;0 -219;'776;Tonga;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;6000;2000;2000;2000;2000;2000;2000;2000;900;900;900;900;900;900;900;900;1300;1100;800;800;800;800;800;600;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000 -219;'776;Tonga;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2;0;0;37;4;0 -219;'776;Tonga;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2;0;0;14;0;0 -219;'776;Tonga;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -219;'776;Tonga;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -219;'776;Tonga;1863;Roundwood, non-coniferous;5516;Production;m3;1794;1809;1824;1838;1853;1868;1884;1899;1914;1930;1949;2009;2073;2057;2395;2084;2082;2101;2120;2092;2066;3558;3053;3042;4414;4627;4650;4705;4732;3570;3566;3566;3556;3560;3556;3581;3026;3001;1511;2910;2902;2895;2888;2882;2775;3167;3158;3150;3142;3134;3126;3119;3112;3105;3098;3089;3079;3070;3061;3052;3041;3031;3020 -219;'776;Tonga;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;58;0;9;7;0;0 -219;'776;Tonga;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;23;0;2;3;0;0 -219;'776;Tonga;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;4;0;0;0;0 -219;'776;Tonga;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;43;6;0;0;0 -219;'776;Tonga;1864;Wood fuel;5516;Production;m3;1794;1809;1824;1838;1853;1868;1884;1899;1914;1930;1949;2009;2073;2057;2395;2084;2082;2101;2120;2092;2066;2058;2053;2042;2014;2027;2050;2105;2132;2170;2166;2166;2156;2160;2156;2181;1626;1601;511;2210;2202;2195;2188;2182;2175;2167;2158;2150;2142;2134;2126;2119;2112;2105;2098;2089;2079;2070;2061;2052;2041;2031;2020 -219;'776;Tonga;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;613;613;1700;1700;1700;1700;1700;1700;1700;1700;1700;1700;1700;3;3;3;3;1;0;0;;;;;;; -219;'776;Tonga;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;163;163;163;163;163;163;163;163;163;163;163;0;0;0;0;0;0;0;;;;;;; -219;'776;Tonga;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -219;'776;Tonga;1628;Wood fuel, non-coniferous;5516;Production;m3;1794;1809;1824;1838;1853;1868;1884;1899;1914;1930;1949;2009;2073;2057;2395;2084;2082;2101;2120;2092;2066;2058;2053;2042;2014;2027;2050;2105;2132;2170;2166;2166;2156;2160;2156;2181;1626;1601;511;2210;2202;2195;2188;2182;2175;2167;2158;2150;2142;2134;2126;2119;2112;2105;2098;2089;2079;2070;2061;2052;2041;2031;2020 -219;'776;Tonga;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;613;613;1700;1700;1700;1700;1700;1700;1700;1700;1700;1700;1700;3;3;3;3;1;0;0;;;;;;; -219;'776;Tonga;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;163;163;163;163;163;163;163;163;163;163;163;0;0;0;0;0;0;0;;;;;;; -219;'776;Tonga;1865;Industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;7500;3000;3000;4400;4600;4600;4600;4600;2300;2300;2300;2300;2300;2300;2300;2300;2700;2100;1500;1500;1500;1500;1500;1200;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000 -219;'776;Tonga;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;137;1632;1632;165;165;83;34;36;184;270;270;254;44;578;578;1010;1006;2020;4065;15043;11126;14749;11376;11123;360;92;85;60;0;9;44;4;0 -219;'776;Tonga;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;157;157;12;12;18;4;4;13;45;45;46;2;36;36;62;62;364;586;986;770;1101;760;803;138;27;48;25;0;2;17;0;0 -219;'776;Tonga;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;116;116;116;116;116;1785;6626;6626;2061;3967;1185;276;457;1931;4131;4131;1158;115;0;0;0;4;0;0;0;0 -219;'776;Tonga;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;12;12;12;12;12;105;390;390;121;233;69;16;26;113;243;243;68;32;0;0;0;43;6;0;0;0 -219;'776;Tonga;1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;6000;2000;2000;2000;2000;2000;2000;2000;900;900;900;900;900;900;900;900;1300;1100;800;800;800;800;800;600;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000 -219;'776;Tonga;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;915;915;165;165;83;34;12;160;246;246;246;22;567;567;996;996;2010;2189;11474;8483;12089;10940;10638;202;0;0;2;0;0;37;4;0 -219;'776;Tonga;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;93;93;12;12;18;4;1;10;42;42;42;1;35;35;61;61;363;462;743;588;909;715;760;90;0;0;2;0;0;14;0;0 -219;'776;Tonga;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;131;131;131;131;131;131;131;131;131;75;75;57;0;0;0;0;0;0;0;0;0 -219;'776;Tonga;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;7;7;7;4;4;3;0;0;0;0;0;0;0;0;0 -219;'776;Tonga;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;915;915;165;165;83;34;12;160;246;246;246;22;567;567;996;996;2010;2189;11474;8483;12089;10940;10638;202;0;0;2;0;0;37;4;0 -219;'776;Tonga;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;93;93;12;12;18;4;1;10;42;42;42;1;35;35;61;61;363;462;743;588;909;715;760;90;0;0;2;0;0;14;0;0 -219;'776;Tonga;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;131;131;131;131;131;131;131;131;131;75;75;57;0;0;0;0;0;0;0;0;0 -219;'776;Tonga;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;7;7;7;4;4;3;0;0;0;0;0;0;0;0;0 -219;'776;Tonga;1867;Industrial roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;1500;1000;1000;2400;2600;2600;2600;2600;1400;1400;1400;1400;1400;1400;1400;1400;1400;1000;700;700;700;700;700;600;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000 -219;'776;Tonga;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;717;717;0;0;0;0;24;24;24;24;8;22;11;11;14;10;10;1876;3569;2643;2660;436;485;158;92;85;58;0;9;7;0;0 -219;'776;Tonga;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;64;64;0;0;0;0;3;3;3;3;4;1;1;1;1;1;1;124;243;182;192;45;43;48;27;48;23;0;2;3;0;0 -219;'776;Tonga;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;116;116;116;116;116;1654;6495;6495;1930;3836;1054;145;326;1800;4056;4056;1101;115;0;0;0;4;0;0;0;0 -219;'776;Tonga;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;12;12;12;12;12;98;383;383;114;226;62;9;19;106;239;239;65;32;0;0;0;43;6;0;0;0 -219;'776;Tonga;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;6;6;23;23;18;0;0;0;4;0;0;0;0;0 -219;'776;Tonga;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;8;8;18;18;12;0;0;0;3;0;0;0;0;0 -219;'776;Tonga;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;115;0;0;0;4;0;0;0;0 -219;'776;Tonga;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;32;0;0;0;43;6;0;0;0 -219;'776;Tonga;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;717;717;0;0;0;0;24;24;24;24;8;22;11;11;14;10;10;1876;3563;2637;2637;413;467;158;92;85;54;0;9;7;0;0 -219;'776;Tonga;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;64;64;0;0;0;0;3;3;3;3;4;1;1;1;1;1;1;124;235;174;174;27;31;48;27;48;20;0;2;3;0;0 -219;'776;Tonga;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116;116;116;116;116;1654;6495;6495;1930;3836;1054;145;326;1800;4056;4056;1101;0;0;0;0;0;0;0;0;0 -219;'776;Tonga;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;12;12;98;383;383;114;226;62;9;19;106;239;239;65;0;0;0;0;0;0;0;0;0 -219;'776;Tonga;1868;Sawlogs and veneer logs;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;7500;3000;3000;4400;4600;4600;4600;4600;2300;2300;2300;2300;2300;2300;2300;2300;2700;2100;1500;1500;1500;1500;1500;1200;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000 -219;'776;Tonga;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;6000;2000;2000;2000;2000;2000;2000;2000;900;900;900;900;900;900;900;900;1300;1100;800;800;800;800;800;600;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000 -219;'776;Tonga;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;1500;1000;1000;2400;2600;2600;2600;2600;1400;1400;1400;1400;1400;1400;1400;1400;1400;1000;700;700;700;700;700;600;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000 -219;'776;Tonga;1630;Wood charcoal;5510;Production;t;148;150;152;154;155;157;159;161;163;165;166;170;178;176;212;179;181;182;185;185;184;186;187;188;187;190;197;207;211;219;220;222;226;227;229;234;243;242;244;247;248;249;250;251;252;252;252;253;253;253;253;253;253;254;254;253;253;252;252;251;250;250;249 -219;'776;Tonga;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;12;3;8;18;18;19;19;19;19;19;1;1;0;0;5 -219;'776;Tonga;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;1;1;4;4;0;0;0;0;0;1;1;0;0;14 -219;'776;Tonga;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;0;0;0;0;46;46;46;46;46;21;21;136;4;3;3;3;3;3;3;3;3;3;3;3;3 -219;'776;Tonga;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;8;8;8;8;8;16;16;1;0;3;3;3;3;3;3;3;3;3;3;3;3 -219;'776;Tonga;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -219;'776;Tonga;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -219;'776;Tonga;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;46;46;46;46;46;21;21;136;4;1;1;1;1;1;1;1;1;1;1;1;1 -219;'776;Tonga;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;8;8;8;8;8;16;16;1;0;0;0;0;0;0;0;0;0;0;0;0;0 -219;'776;Tonga;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;43;43;0;0;0;0;0;0;0;0;0;0;0;0;0;2;2;2;2;2;2;2;2;2;2;2;2 -219;'776;Tonga;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;0;0;0;0;0;0;0;0;0;0;0;0;0;3;3;3;3;3;3;3;3;3;3;3;3 -219;'776;Tonga;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -219;'776;Tonga;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -219;'776;Tonga;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -219;'776;Tonga;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;0 -219;'776;Tonga;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -219;'776;Tonga;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;0 -219;'776;Tonga;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;2650;1100;1100;1490;1573;1573;1573;1088;1489;1489;1489;1489;1489;1489;1489;1489;2009;2009;2009;2009;2009;2009;2009;2009;2009;2009;2009;2009;2009;2009;2009;2009;2009;2009;2009;2009;2009;2009;2009;1400;1400;1400 -219;'776;Tonga;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;12300;7500;8700;8700;8700;8700;3000;5300;4800;4800;5097;4075;5830;5645;2036;2337;4586;5700;4689;5238;8747;5979;7861;7919;14653;8040;4703;5173;11377;9701;4131;12563;15301;8245;11584;10173;11939;9351;11933;8678;10470;9000 -219;'776;Tonga;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;2614;1577;1604;1604;1604;1604;1122;1602;1553;1553;940;890;1590;1325;641;405;874;1012;1010;1072;1787;1472;2314;2294;2163;2044;1932;1319;3449;1705;1216;3890;4854;2634;3561;3410;3454;2703;3716;3290;3826;3417 -219;'776;Tonga;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;0;6;6;6;177;45;45;44;44;44;19;52;158;20;20;20;5;0;315;187;123;100;0;0;0 -219;'776;Tonga;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;0;1;1;1;53;13;13;12;12;12;5;16;48;5;5;5;21;0;342;79;48;34;0;0;0 -219;'776;Tonga;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;2000;650;650;650;650;650;650;448;609;609;609;609;609;609;609;609;609;609;609;609;609;609;609;609;609;609;609;609;609;609;609;609;609;609;609;609;609;609;609;0;0;0 -219;'776;Tonga;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4294;3880;3812;5302;2020;2275;4561;5700;4688;5237;8731;5950;7698;7756;14291;8002;4699;5109;6376;9569;340;5169;7156;8073;11139;9912;11639;9339;11895;8546;10469;8682 -219;'776;Tonga;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;740;829;1075;1275;632;385;864;1012;1009;1071;1782;1463;2264;2244;2053;2033;1931;1299;1924;1665;59;1635;2370;2615;3414;3352;3376;2692;3698;3178;3825;3329 -219;'776;Tonga;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;6;6;6;4;4;11;11;11;5;0;70;104;42;0;0;0;0 -219;'776;Tonga;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;2;2;2;21;0;21;34;18;0;0;0;0 -219;'776;Tonga;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;650;450;450;840;923;923;923;640;880;880;880;880;880;880;880;880;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 -219;'776;Tonga;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;12300;7500;8700;8700;8700;8700;3000;5300;4800;4800;803;195;2018;343;16;62;25;0;1;1;16;29;163;163;362;38;4;64;5001;132;3791;7394;8145;172;445;261;300;12;38;132;1;318 -219;'776;Tonga;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;2614;1577;1604;1604;1604;1604;1122;1602;1553;1553;200;61;515;50;9;20;10;0;1;1;5;9;50;50;110;11;1;20;1525;40;1157;2255;2484;19;147;58;78;11;18;112;1;88 -219;'776;Tonga;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;0;0;0;0;171;39;39;38;38;38;13;48;154;9;9;9;0;0;245;83;81;100;0;0;0 -219;'776;Tonga;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;0;0;0;0;52;12;12;11;11;11;4;15;47;3;3;3;0;0;321;45;30;34;0;0;0 -219;'776;Tonga;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -219;'776;Tonga;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;25;6;6;6;26;36;0;7;7;7;7;37;37;163;57;51;27;42;3;127;42;18;100;93;75;171;22;121;84;56;89 -219;'776;Tonga;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;13;4;4;4;33;18;0;3;3;3;3;30;30;61;44;19;13;113;10;310;86;47;204;91;19;176;28;61;46;30;75 -219;'776;Tonga;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -219;'776;Tonga;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -219;'776;Tonga;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -219;'776;Tonga;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;1300;1300;1700;1700;1700;700;900;900;1115;1134;1256;626;541;253;861;1400;1147;1147;192;213;1146;1146;1993;310;627;518;1167;1212;955;795;1879;1278;1419;1439;2216;1799;2144;2987;1707;1900 -219;'776;Tonga;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;450;431;562;562;562;451;474;474;449;474;590;282;232;88;360;514;320;320;120;403;377;377;827;382;473;488;883;887;899;622;1826;829;838;663;1009;607;1194;1137;725;1018 -219;'776;Tonga;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -219;'776;Tonga;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -219;'776;Tonga;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -219;'776;Tonga;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;1300;1300;1700;1700;1700;700;900;900;828;834;1053;606;501;213;639;1000;862;862;134;37;740;740;1613;141;470;381;687;770;599;424;1302;866;1145;1180;1636;1255;1168;1790;1562;1423 -219;'776;Tonga;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;450;431;562;562;562;451;474;474;348;348;509;273;218;78;282;405;236;236;106;305;263;263;746;256;400;409;617;637;693;413;1443;598;696;516;792;370;801;662;559;768 -219;'776;Tonga;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -219;'776;Tonga;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -219;'776;Tonga;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27 -219;'776;Tonga;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34 -219;'776;Tonga;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;12;67;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -219;'776;Tonga;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;7;19;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -219;'776;Tonga;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;21;21;4;0;21;21;21;21;20;20;4;29;2;46;315;315;205;205;72;29;32;32;32;31;28;51;51;31 -219;'776;Tonga;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;7;7;1;0;2;2;2;2;3;3;2;28;6;38;190;190;126;126;54;10;13;13;13;15;15;28;28;21 -219;'776;Tonga;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;23;23;0;0;7;7;7;7;7;7;7;7;7;7;11;11;11;11;11;11;11;11 -219;'776;Tonga;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;0;0;2;2;2;2;2;2;2;2;2;2;15;15;15;15;15;15;15;15 -219;'776;Tonga;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;249;288;136;12;19;19;218;400;241;241;14;132;386;386;369;133;148;84;158;120;144;159;498;376;231;216;537;502;937;1135;83;435 -219;'776;Tonga;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;119;62;8;7;3;77;109;76;76;6;90;111;111;77;96;65;39;74;58;78;81;327;219;114;119;189;207;363;432;123;214 -219;'776;Tonga;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;187;200;155;155;1;22;153;153;86;47;48;71;97;69;120;115;181;188;188;188;509;458;879;1022;2;280 -219;'776;Tonga;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;80;59;59;1;66;71;71;39;23;20;26;37;32;60;57;98;96;96;96;181;184;335;389;1;130 -219;'776;Tonga;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;3;3;23;200;9;9;9;91;228;228;221;83;97;10;58;48;9;41;211;82;20;5;5;21;51;90;58;142 -219;'776;Tonga;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;2;2;8;29;4;4;4;8;39;39;25;70;42;10;34;23;8;23;153;47;14;19;4;19;19;39;118;75 -219;'776;Tonga;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;1;35;5;16;16;8;0;77;77;4;19;5;5;62;3;3;3;3;3;15;3;106;106;23;23;23;23;7;23;23;13 -219;'776;Tonga;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;1;17;4;5;1;2;0;13;13;1;16;1;1;13;3;3;3;3;3;10;1;76;76;4;4;4;4;9;4;4;9 -219;'776;Tonga;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;194;287;101;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -219;'776;Tonga;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;118;45;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -219;'776;Tonga;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;6;20;47;47;282;282;5;5;5;5;5;5;9;23;23;23;12;12;12;35;5;5;5;5;5;5;5;5;5;5 -219;'776;Tonga;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;4;12;12;8;8;1;1;1;1;1;1;20;41;41;41;6;6;7;13;6;6;6;6;6;6;6;6;5;5 -219;'776;Tonga;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;24;24;24;24;24;55;55;55;55;55;55;55;55;55;55;55 -219;'776;Tonga;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;6;6;6;6;6;6;6;6;6;6;6 -219;'776;Tonga;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;15;15;15;10;10;10;10;3;3;3;3;3;3;3;3;3;3 -219;'776;Tonga;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;41;41;41;6;6;6;6;5;5;5;5;5;5;5;5;5;5 -219;'776;Tonga;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;9;9;9;9;9;2;2;2;2;2;2;2;2;2;2 -219;'776;Tonga;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;5;5;5;5;5;4;4;4;4;4;4;4;4;4;4 -219;'776;Tonga;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;7;0;0;0;;;;;;; -219;'776;Tonga;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;0;0;0;;;;;;; -219;'776;Tonga;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -219;'776;Tonga;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -219;'776;Tonga;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -219;'776;Tonga;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -219;'776;Tonga;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2 -219;'776;Tonga;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4 -219;'776;Tonga;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;8;8;8;3;3;3;3;3;3;3;3;3;3;3;3;3;3 -219;'776;Tonga;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;40;40;40;5;5;5;5;5;5;5;5;5;5;5;5;5;5 -219;'776;Tonga;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;6;20;47;47;282;282;5;5;5;5;5;5;8;8;8;8;2;2;2;25;2;2;2;2;2;2;2;2;2;2 -219;'776;Tonga;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;4;12;12;8;8;1;1;1;1;1;1;0;0;0;0;0;0;1;7;1;1;1;1;1;1;1;1;0;0 -219;'776;Tonga;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;24;24;24;24;24;55;55;55;55;55;55;55;55;55;55;55 -219;'776;Tonga;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;6;6;6;6;6;6;6;6;6;6;6 -219;'776;Tonga;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;254;347;300;248;53;43;264;260;437;437;511;3816;723;723;272;364;248;192;643;439;388;154;1056;302;536;385;311;519;456;346;139;256 -219;'776;Tonga;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;312;322;333;326;104;41;359;356;415;415;419;629;612;612;520;371;358;281;751;841;477;243;801;607;879;633;572;815;1149;1051;860;772 -219;'776;Tonga;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;1;1;1;1;1;28;28;28;40;40;40;46;76;76;76;63;277;504 -219;'776;Tonga;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;2;2;2;2;2;183;183;183;231;231;231;223;130;130;130;78;290;680 -219;'776;Tonga;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;290;198;65;12;5;204;200;285;285;429;3206;283;283;134;178;149;116;166;156;297;93;961;194;444;283;251;386;401;307;98;227 -219;'776;Tonga;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;244;205;114;29;6;279;276;283;283;332;343;210;210;177;195;149;172;269;186;349;166;567;308;498;293;254;433;420;394;207;386 -219;'776;Tonga;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;15;15;15;15;13;13 -219;'776;Tonga;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;22;22;22;22;22;22 -219;'776;Tonga;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;72;35;2;2;4;0;44;44;44;2;42;42;46;10;10;10;68;16;26;26;28;28;28;46;46;46;0;0;0;0 -219;'776;Tonga;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;35;39;2;2;3;0;23;23;23;3;22;22;22;6;6;6;96;11;51;51;78;78;78;20;20;20;0;1;0;0 -219;'776;Tonga;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;236;126;30;10;3;200;200;241;241;385;3204;241;241;88;168;139;106;98;140;271;67;933;166;416;237;205;340;401;307;98;227 -219;'776;Tonga;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;217;170;75;27;4;276;276;260;260;309;340;188;188;155;189;143;166;173;175;298;115;489;230;420;273;234;413;420;393;207;386 -219;'776;Tonga;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;15;15;15;15;13;13 -219;'776;Tonga;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;22;22;22;22;22;22 -219;'776;Tonga;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;10;10;7;3;4;2;2;1;127;9;616;17;28;13;1;28;1;2;5;9 -219;'776;Tonga;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;2;8;8;11;3;5;6;8;2;143;14;344;38;60;49;1;74;6;14;35;45 -219;'776;Tonga;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;44;44;6;192;221;221;78;163;133;99;74;135;9;50;92;145;380;216;198;311;397;298;90;186 -219;'776;Tonga;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;67;51;51;75;328;173;173;131;149;128;149;101;153;78;72;60;181;340;204;206;329;399;310;140;213 -219;'776;Tonga;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;2;2;0;0 -219;'776;Tonga;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3;3;3;3;3;3 -219;'776;Tonga;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;196;196;196;196;378;3011;10;10;3;2;2;5;22;4;135;8;225;4;8;8;6;1;3;7;3;32 -219;'776;Tonga;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;206;206;206;206;231;10;7;7;13;37;10;11;64;20;77;29;85;11;20;20;27;10;15;69;32;128 -219;'776;Tonga;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;13;13 -219;'776;Tonga;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;19;19;19 -219;'776;Tonga;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;244;57;102;183;41;38;60;60;152;152;82;610;440;440;138;186;99;76;477;283;91;61;95;108;92;102;60;133;55;39;41;29 -219;'776;Tonga;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;293;78;128;212;75;35;80;80;132;132;87;286;402;402;343;176;209;109;482;655;128;77;234;299;381;340;318;382;729;657;653;386 -219;'776;Tonga;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;26;26;26;38;38;38;44;61;61;61;48;264;491 -219;'776;Tonga;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;2;2;2;2;2;180;180;180;228;228;228;220;108;108;108;56;268;658 -219;'776;Tonga;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;28;67;57;57;12;54;60;19;37;53;33;2;36;43;39;58;31;116;41;21;0;10 -219;'776;Tonga;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;32;32;48;63;63;19;34;30;12;57;42;53;4;54;94;149;152;95;191;522;297;4;43 -219;'776;Tonga;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;27;29;68;68;49;5;19;40;189;196;13;14;16;22;19;10;17;10;5;5;32;14 -219;'776;Tonga;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;14;21;41;41;36;7;17;29;237;470;16;14;21;46;63;19;33;38;22;31;429;196 -219;'776;Tonga;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;25;30;30;30;36;48;48;48;48;264;491 -219;'776;Tonga;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;178;178;178;202;202;202;194;56;56;56;56;268;658 -219;'776;Tonga;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;4;4;4;4;1;1;1;21;21;1;2;2;2;5;2;3;1;1;1;15;0 -219;'776;Tonga;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;7;7;7;7;1;1;1;16;16;4;2;2;2;5;4;8;2;4;4;334;2 -219;'776;Tonga;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;12;12;12;12;12;12;12;12;12;12 -219;'776;Tonga;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3;3;3;3;3;3 -219;'776;Tonga;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22;22;22;22;22;22;1;15;15;152;152;5;5;5;5;1;5;5;1;1;0;0;9 -219;'776;Tonga;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;9;9;2;12;12;206;206;7;7;7;7;3;6;6;2;7;1;1;175 -219;'776;Tonga;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;11;11;11;11;11;227;454 -219;'776;Tonga;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;24;16;16;16;16;16;228;618 -219;'776;Tonga;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;3;2;41;41;22;2;2;23;15;22;1;1;8;8;12;2;8;7;2;3;3;4 -219;'776;Tonga;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;5;5;25;25;20;4;4;16;15;246;3;3;10;10;53;7;17;32;9;24;18;18 -219;'776;Tonga;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;13;13;13;25;25;25;25;25;25 -219;'776;Tonga;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;175;175;175;175;175;175;175;37;37;37;37;37;37 -219;'776;Tonga;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;6;6;1;7;1;1;1;1;1;1;14;1 -219;'776;Tonga;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;2;2;2;2;27;2;2;2;2;2;2;76;1 -219;'776;Tonga;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;60;99;99;27;514;315;315;77;127;20;17;251;34;45;45;43;43;34;34;12;7;9;13;9;5 -219;'776;Tonga;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;80;91;91;41;217;298;298;288;135;162;68;188;143;59;59;159;159;169;169;190;153;185;329;220;147 -219;'776;Tonga;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;1;1;1;1;1;1;1;1;8;8;8;8;13;13;13;0;0;0 -219;'776;Tonga;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;2;2;2;2;2;2;2;2;26;26;26;26;52;52;52;0;0;0 -219;'776;Tonga;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2143;1641;1546;1937;1621;1481;2696 -219;'776;Tonga;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;36;53;36;37;48;85 -219;'776;Tonga;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;27;53;81;82;35;74 -219;'776;Tonga;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;28;28;28;28;28 -219;'776;Tonga;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;25;37;62;62;13;70 -219;'776;Tonga;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;28;28;28;28;28 -219;'776;Tonga;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;16;19;20;22;4 -219;'776;Tonga;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -219;'776;Tonga;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;68;75;150;105;126;161 -219;'776;Tonga;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -219;'776;Tonga;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;7;1;12;8;8;13 -219;'776;Tonga;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;1;4;1;14;11 -219;'776;Tonga;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;306;425;267;513;502;313;1475 -219;'776;Tonga;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2 -219;'776;Tonga;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;180 -219;'776;Tonga;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;871 -219;'776;Tonga;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;447;869;727;872;870;977;907 -219;'776;Tonga;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;6;22;2;6;4;43 -219;'776;Tonga;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;880;194;361;292;3;3;15 -219;'776;Tonga;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;233;51;62;17;51;19;51 -219;'776;Tonga;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;1 -219;'776;Tonga;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2253;2406;3250;4294;3802;3520;3050 -219;'776;Tonga;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;5;5;5;7;16;26 -219;'776;Tonga;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;23;26;38;1;1;1 -219;'776;Tonga;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;70;46;82;91;90;73 -219;'776;Tonga;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;931;1021;1721;2550;1954;2135;1567 -219;'776;Tonga;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;5;1 -219;'776;Tonga;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;393;336;441;182;676;453;421 -219;'776;Tonga;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;1;1 -219;'776;Tonga;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;897;956;1016;1442;1080;841;988 -219;'776;Tonga;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;5;5;5;7;10;24 -220;'780;Trinidad and Tobago;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;155529;172307;195377;158750;177745.42;234438.33;178188 -220;'780;Trinidad and Tobago;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59966;61613;82880;79393;76003.94;87870.7;75936.7 -220;'780;Trinidad and Tobago;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;4999;5412;5341;6767;6782;8187;9751;9835;11244;11945;13861;16299;14905;26406;27125;28484;33377;55681;60673;98889;96141;135846;132113;123179;77301;71861;69419;45032;54847;54542;49821;55096;54399;57331;77220;73992;71114;85770;79192;77852;112384;88213;117644;132038;135530;118147;116031;125263;115401;119578;123474;116718;122287;138189;111786;98905;82160;97866;121452;94918;107017.42;150048.33;115623 -220;'780;Trinidad and Tobago;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;50;47;40;48;84;149;91;69;154;131;198;194;286;364;1605;1470;1480;1204;1081;1022;693;832;489;540;550;467;501;547;672;1545;1016;2171;1447;1894;1676;1291;465;971;3457;2348;2785;1425;1444;2457;3319;2192;1696;4477;7852;8721;12429.7;19393;17159;16369;20441;18526;4624;3041;20981;18320;21354.94;22051.69;16208.69 -220;'780;Trinidad and Tobago;1861;Roundwood;5516;Production;m3;131000;111000;111000;111000;112000;115000;115000;82000;146221;165882;152875;122053;116000;103474;122399;121811;121500;99881;96281;112840;112648;100335;84227;79951;73385;82702;83094;70288;98217;89947;85484;95637;91274;121865;156314;97673;111322;72218;70809;108515;102084;92664;95254;85856;99467;99122;98800;80400;80135;97822;97517;97218;94426;198440;198160;197854;197553;197259;196970;196687;196411;196139;195873 -220;'780;Trinidad and Tobago;1861;Roundwood;5616;Import quantity;m3;2700;7900;2700;1900;2700;2200;1600;2800;6000;1900;3600;1400;500;700;1400;600;5100;500;500;1300;1300;2300;12200;5200;2600;1500;1700;1100;2800;;11217;4991;4202;5000;3800;2000;2300;20600;13600;10320;7000;6669;3619;2958;3813;2958;7108;1979;1645;5138;12963;22300;28394;44824;14521;6161;3823;4552;346;694;640;1127;464 -220;'780;Trinidad and Tobago;1861;Roundwood;5622;Import value;1000 USD;131;339;132;82;133;116;86;166;142;94;161;96;34;49;98;48;405;88;88;231;231;552;2167;999;881;444;368;189;224;;1433;1010;988;945;856;358;261;1602;982;1149;906;1113;841;1102;810;558;1178;323;232;593;883;2649;3867;4743;1601;1258;637;1082;205;437;189;333;163 -220;'780;Trinidad and Tobago;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1810;2669;4749;1100;700;700;0;0;0;0;0;0;500;500;26;77;118;39;5550;2964;4915;7699;4485;3066;429;318;824;107;2578;98;73;8;1388;90 -220;'780;Trinidad and Tobago;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;661;406;796;491;385;385;0;0;0;0;0;0;42;41;21;40;25;46;750;368;595;3683;2571;1497;192;207;535;124;698;37;47;2;136;56 -220;'780;Trinidad and Tobago;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;15000;10000;18000;18000;18000;10000;10000;6000;5000;5000;15000;15000;15000;3000;3000;5000;5000;5000;2500;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000 -220;'780;Trinidad and Tobago;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3763;4472;51;677;548;710;189 -220;'780;Trinidad and Tobago;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;603;1059;89;427;139;141;102 -220;'780;Trinidad and Tobago;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;109;0 -220;'780;Trinidad and Tobago;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;12;0 -220;'780;Trinidad and Tobago;1863;Roundwood, non-coniferous;5516;Production;m3;131000;111000;111000;111000;112000;115000;115000;82000;146221;165882;152875;122053;116000;103474;122399;121811;121500;99881;96281;112840;112648;100335;84227;79951;73385;82702;83094;70288;98217;89947;85484;95637;91274;121865;141314;87673;93322;54218;52809;98515;92084;86664;90254;80856;84467;84122;83800;77400;77135;92822;92517;92218;91926;193440;193160;192854;192553;192259;191970;191687;191411;191139;190873 -220;'780;Trinidad and Tobago;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;80;295;17;92;417;275 -220;'780;Trinidad and Tobago;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;23;116;10;50;192;61 -220;'780;Trinidad and Tobago;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107;2578;98;73;8;1279;90 -220;'780;Trinidad and Tobago;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;124;698;37;47;2;124;56 -220;'780;Trinidad and Tobago;1864;Wood fuel;5516;Production;m3;25000;17000;17000;17000;17000;14000;19000;10000;41221;40882;40375;40053;13000;39474;39399;38811;38500;37881;37881;37640;37448;38135;39027;38751;39185;39502;39894;40088;40017;39747;39484;39437;39674;39265;38914;37273;37922;37218;36809;36515;36084;35664;35254;34856;34467;34122;33800;33400;33135;32822;32517;32218;31926;31640;31360;31054;30753;30459;30170;29887;29611;29339;29073 -220;'780;Trinidad and Tobago;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1300;300;300;200;20;0;0;0;0;0;0;0;0;0;53;53;53;53;53;53;53;;;1;1;1;15;15 -220;'780;Trinidad and Tobago;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;60;13;50;100;9;0;0;0;0;0;0;0;0;0;12;12;12;12;12;12;12;;;8;8;8;30;30 -220;'780;Trinidad and Tobago;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 -220;'780;Trinidad and Tobago;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;15;15 -220;'780;Trinidad and Tobago;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;30;30 -220;'780;Trinidad and Tobago;1628;Wood fuel, non-coniferous;5516;Production;m3;25000;17000;17000;17000;17000;14000;19000;10000;41221;40882;40375;40053;13000;39474;39399;38811;38500;37881;37881;37640;37448;38135;39027;38751;39185;39502;39894;40088;40017;39747;39484;39437;39674;39265;38914;37273;37922;37218;36809;36515;36084;35664;35254;34856;34467;34122;33800;33400;33135;32822;32517;32218;31926;31640;31360;31054;30753;30459;30170;29887;29611;29339;29073 -220;'780;Trinidad and Tobago;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1300;300;300;200;20;0;0;0;0;0;0;0;0;0;53;53;53;53;53;53;53;;;;;;; -220;'780;Trinidad and Tobago;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;60;13;50;100;9;0;0;0;0;0;0;0;0;0;12;12;12;12;12;12;12;;;;;;; -220;'780;Trinidad and Tobago;1865;Industrial roundwood;5516;Production;m3;106000;94000;94000;94000;95000;101000;96000;72000;105000;125000;112500;82000;103000;64000;83000;83000;83000;62000;58400;75200;75200;62200;45200;41200;34200;43200;43200;30200;58200;50200;46000;56200;51600;82600;117400;60400;73400;35000;34000;72000;66000;57000;60000;51000;65000;65000;65000;47000;47000;65000;65000;65000;62500;166800;166800;166800;166800;166800;166800;166800;166800;166800;166800 -220;'780;Trinidad and Tobago;1865;Industrial roundwood;5616;Import quantity;m3;2700;7900;2700;1900;2700;2200;1600;2800;6000;1900;3600;1400;500;700;1400;600;5100;500;500;1300;1300;2300;12200;5200;2600;1500;1700;1100;2800;;11217;4991;4202;5000;3800;700;2000;20300;13400;10300;7000;6669;3619;2958;3813;2958;7108;1979;1645;5085;12910;22247;28341;44771;14468;6108;3823;4552;345;693;639;1112;449 -220;'780;Trinidad and Tobago;1865;Industrial roundwood;5622;Import value;1000 USD;131;339;132;82;133;116;86;166;142;94;161;96;34;49;98;48;405;88;88;231;231;552;2167;999;881;444;368;189;224;;1433;1010;988;945;856;298;248;1552;882;1140;906;1113;841;1102;810;558;1178;323;232;581;871;2637;3855;4731;1589;1246;637;1082;197;429;181;303;133 -220;'780;Trinidad and Tobago;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1810;2669;4749;1100;700;700;0;0;0;0;0;0;500;500;26;77;118;39;5550;2964;4915;7699;4485;3066;429;318;824;107;2578;98;73;8;1388;90 -220;'780;Trinidad and Tobago;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;661;406;796;491;385;385;0;0;0;0;0;0;42;41;21;40;25;46;750;368;595;3683;2571;1497;192;207;535;124;698;37;47;2;136;56 -220;'780;Trinidad and Tobago;1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15000;10000;18000;18000;18000;10000;10000;6000;5000;5000;15000;15000;15000;3000;3000;5000;5000;5000;2500;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000 -220;'780;Trinidad and Tobago;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4276;3154;3193;2900;1700;700;700;19000;12400;6600;2000;2567;2071;1254;1153;1822;5626;1979;1356;4308;12284;21279;27299;43146;13963;5728;3763;4472;50;676;547;695;174 -220;'780;Trinidad and Tobago;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;895;737;868;750;661;298;128;1432;717;737;659;818;608;634;296;223;904;323;126;398;741;2117;3117;3465;1445;1123;603;1059;81;419;131;111;72 -220;'780;Trinidad and Tobago;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1133;80;145;0;0;0;2;0;0;0;0;0;0;109;0 -220;'780;Trinidad and Tobago;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;60;60;8;0;0;0;0;0;0;0;0;0;0;12;0 -220;'780;Trinidad and Tobago;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4276;3154;3193;2900;1700;700;700;19000;12400;6600;2000;2567;2071;1254;1153;1822;5626;1979;1356;4308;12284;21279;27299;43146;13963;5728;3763;4472;50;676;547;695;174 -220;'780;Trinidad and Tobago;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;895;737;868;750;661;298;128;1432;717;737;659;818;608;634;296;223;904;323;126;398;741;2117;3117;3465;1445;1123;603;1059;81;419;131;111;72 -220;'780;Trinidad and Tobago;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;1133;80;145;0;0;0;2;0;0;0;0;0;0;109;0 -220;'780;Trinidad and Tobago;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;60;60;8;0;0;0;0;0;0;0;0;0;0;12;0 -220;'780;Trinidad and Tobago;1867;Industrial roundwood, non-coniferous;5516;Production;m3;106000;94000;94000;94000;95000;101000;96000;72000;105000;125000;112500;82000;103000;64000;83000;83000;83000;62000;58400;75200;75200;62200;45200;41200;34200;43200;43200;30200;58200;50200;46000;56200;51600;82600;102400;50400;55400;17000;16000;62000;56000;51000;55000;46000;50000;50000;50000;44000;44000;60000;60000;60000;60000;161800;161800;161800;161800;161800;161800;161800;161800;161800;161800 -220;'780;Trinidad and Tobago;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6941;1837;1009;2100;2100;0;1300;1300;1000;3700;5000;4102;1548;1704;2660;1136;1482;0;289;777;626;968;1042;1625;505;380;60;80;295;17;92;417;275 -220;'780;Trinidad and Tobago;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;538;273;120;195;195;0;120;120;165;403;247;295;233;468;514;335;274;0;106;183;130;520;738;1266;144;123;34;23;116;10;50;192;61 -220;'780;Trinidad and Tobago;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1810;2669;4749;1100;700;700;0;0;0;0;0;0;500;500;26;77;118;39;5550;1831;4835;7554;4485;3066;429;316;824;107;2578;98;73;8;1279;90 -220;'780;Trinidad and Tobago;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;661;406;796;491;385;385;0;0;0;0;0;0;42;41;21;40;25;46;750;308;535;3675;2571;1497;192;207;535;124;698;37;47;2;124;56 -220;'780;Trinidad and Tobago;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6941;1837;1009;2100;2100;0;1300;1300;1000;3700;5000;4102;1548;1704;2660;1136;1482;0;280;190;434;158;16;89;385;0;24;0;205;0;75;0;262 -220;'780;Trinidad and Tobago;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;538;273;120;195;195;0;120;120;165;403;247;295;233;468;514;335;274;0;84;45;66;45;8;30;107;0;22;0;44;0;45;0;55 -220;'780;Trinidad and Tobago;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1810;2669;4749;1100;700;700;0;0;0;0;0;0;500;500;26;77;118;39;5550;1686;4804;7408;4463;3066;429;316;824;107;2578;98;73;8;1142;90 -220;'780;Trinidad and Tobago;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;661;406;796;491;385;385;0;0;0;0;0;0;42;41;21;40;25;46;750;164;516;3507;2511;1497;192;207;535;124;698;37;47;2;85;56 -220;'780;Trinidad and Tobago;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;587;192;810;1026;1536;120;380;36;80;90;17;17;417;13 -220;'780;Trinidad and Tobago;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;138;64;475;730;1236;37;123;12;23;72;10;5;192;6 -220;'780;Trinidad and Tobago;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;145;31;146;22;0;0;0;0;0;0;0;0;0;137;0 -220;'780;Trinidad and Tobago;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;144;19;168;60;0;0;0;0;0;0;0;0;0;39;0 -220;'780;Trinidad and Tobago;1868;Sawlogs and veneer logs;5516;Production;m3;100000;93000;93000;93000;93000;99000;93000;68000;100000;120000;110000;80000;99000;62000;81000;81000;81000;60000;56000;73000;73000;60000;43000;39000;32000;41000;41000;28000;56000;48000;43000;54000;50000;80000;115000;58000;71000;35000;34000;72000;66000;57000;60000;51000;65000;65000;65000;47000;47000;65000;65000;65000;62500;166800;166800;166800;166800;166800;166800;166800;166800;166800;166800 -220;'780;Trinidad and Tobago;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15000;10000;18000;18000;18000;10000;10000;6000;5000;5000;15000;15000;15000;3000;3000;5000;5000;5000;2500;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000 -220;'780;Trinidad and Tobago;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;100000;93000;93000;93000;93000;99000;93000;68000;100000;120000;110000;80000;99000;62000;81000;81000;81000;60000;56000;73000;73000;60000;43000;39000;32000;41000;41000;28000;56000;48000;43000;54000;50000;80000;100000;48000;53000;17000;16000;62000;56000;51000;55000;46000;50000;50000;50000;44000;44000;60000;60000;60000;60000;161800;161800;161800;161800;161800;161800;161800;161800;161800;161800 -220;'780;Trinidad and Tobago;1871;Other industrial roundwood;5516;Production;m3;6000;1000;1000;1000;2000;2000;3000;4000;5000;5000;2500;2000;4000;2000;2000;2000;2000;2000;2400;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;3000;2200;1600;2600;2400;2400;2400;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -220;'780;Trinidad and Tobago;1871;Other industrial roundwood;5616;Import quantity;m3;2700;7900;2700;1900;2700;2200;1600;2800;6000;1900;3600;1400;500;700;1400;600;5100;500;500;1300;1300;2300;12200;5200;2600;1500;1700;1100;2800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -220;'780;Trinidad and Tobago;1871;Other industrial roundwood;5622;Import value;1000 USD;131;339;132;82;133;116;86;166;142;94;161;96;34;49;98;48;405;88;88;231;231;552;2167;999;881;444;368;189;224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -220;'780;Trinidad and Tobago;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;6000;1000;1000;1000;2000;2000;3000;4000;5000;5000;2500;2000;4000;2000;2000;2000;2000;2000;2400;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;2200;3000;2200;1600;2600;2400;2400;2400;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -220;'780;Trinidad and Tobago;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;2700;7900;2700;1900;2700;2200;1600;2800;6000;1900;3600;1400;500;700;1400;600;5100;500;500;1300;1300;2300;12200;5200;2600;1500;1700;1100;2800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -220;'780;Trinidad and Tobago;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;131;339;132;82;133;116;86;166;142;94;161;96;34;49;98;48;405;88;88;231;231;552;2167;999;881;444;368;189;224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -220;'780;Trinidad and Tobago;1630;Wood charcoal;5510;Production;t;1400;1393;1385;1377;1370;1362;1354;1347;1339;1332;1314;1309;1311;1300;1308;1288;1282;1258;1265;1260;1282;1351;1433;1450;1513;1568;1627;1681;1717;1740;1757;1784;1838;1846;1858;1867;1878;1866;1864;1865;1864;1863;1862;1862;1861;1860;1900;1900;1859;1859;1856;1853;1851;1848;1840;1846;1834;1828;1822;1816;1811;1805;1799 -220;'780;Trinidad and Tobago;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;3;3;3;3;3;3;3;0;0;0;0;0;0;0;0;0;388;847;840;951;686;909;851;767;570;527;929;825;852.33;820;854 -220;'780;Trinidad and Tobago;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;1;1;1;1;1;1;1;0;0;0;0;0;0;0;0;0;277;163;183;374;219;261;315;288;225;227;312;298;334;316;278 -220;'780;Trinidad and Tobago;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;0;5;1;0;0 -220;'780;Trinidad and Tobago;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;4;23;8;0;0 -220;'780;Trinidad and Tobago;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;300;100;100;2100;2100;2100;2100;2100;2100;2100;159;3010;158;144;25;57;22;21;74;21;22;3;24;21;60 -220;'780;Trinidad and Tobago;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;17;5;8;144;144;144;144;144;144;144;67;288;37;217;37;14;14;8;12;17;27;5;40;21;43 -220;'780;Trinidad and Tobago;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;19;47;38;38;38;38;38;10;33;33;33;33;33;33;33 -220;'780;Trinidad and Tobago;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;44;62;40;40;40;40;40;20;10;10;10;10;10;10;10 -220;'780;Trinidad and Tobago;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;16;16;0;0;0;0;300;100;100;100;100;100;100;100;100;100;118;2997;126;83;19;54;19;19;19;19;20;3;24;1;40 -220;'780;Trinidad and Tobago;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;4;4;0;0;0;0;17;5;8;9;9;9;9;9;9;9;45;285;31;32;9;8;8;8;11;11;21;5;40;2;24 -220;'780;Trinidad and Tobago;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;18;9;9;9;9;9;9;9;9;9;9;9;9;9 -220;'780;Trinidad and Tobago;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;42;20;20;20;20;20;20;9;9;9;9;9;9;9 -220;'780;Trinidad and Tobago;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;2000;2000;2000;2000;2000;2000;2000;41;13;32;61;6;3;3;2;55;2;2;0;0;20;20 -220;'780;Trinidad and Tobago;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;135;135;135;135;135;135;135;22;3;6;185;28;6;6;0;1;6;6;0;0;19;19 -220;'780;Trinidad and Tobago;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;26;26;0;0;0;0;0;0;0;0;0;0;0;0;10;29;29;29;29;29;29;1;24;24;24;24;24;24;24 -220;'780;Trinidad and Tobago;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;0;0;0;0;0;0;0;0;0;0;0;0;22;20;20;20;20;20;20;0;1;1;1;1;1;1;1 -220;'780;Trinidad and Tobago;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1;0 -220;'780;Trinidad and Tobago;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;5;0 -220;'780;Trinidad and Tobago;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1;0 -220;'780;Trinidad and Tobago;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;5;0 -220;'780;Trinidad and Tobago;1872;Sawnwood;5516;Production;m3;67000;42000;42000;42000;42000;45000;48000;35000;50000;59000;59000;35000;40000;41000;32000;32000;32000;32000;32000;33000;33000;28000;22000;21000;18000;22000;19000;21000;80000;53000;42000;59000;35000;58000;64000;29000;38000;27000;18000;32000;41000;43000;39000;32000;41000;41000;41000;30000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000;31000 -220;'780;Trinidad and Tobago;1872;Sawnwood;5616;Import quantity;m3;37300;44100;38600;58000;41100;50500;39800;37000;37100;34100;36000;41200;38200;35800;26100;15600;22600;101200;128200;373800;373800;329100;563900;679600;208300;151500;136200;33600;40100;44300;1900;33115;23557;34100;39000;31600;80100;47000;46000;30000;51000;53833;45501;40042;64203;57513;64164;73627;61037;62620;66666;100636;72077;103068;76740;54793;11579;24336;50463;37258;44104;40693;42618 -220;'780;Trinidad and Tobago;1872;Sawnwood;5622;Import value;1000 USD;1868;2197;1909;2928;2246;2753;2181;2253;2829;2859;3035;3884;4519;5545;3868;2287;4132;21715;25287;41470;41470;68975;74129;65223;25898;23061;17170;6939;7638;8127;954;8244;6874;8594;11438;11671;21026;21386;12566;10245;14721;14174;12069;13163;17495;16659;14646;18381;15383;16110;18310;18333;18991;21780;25506;15400;3114;7826;17429;12843;17943;18015;14418 -220;'780;Trinidad and Tobago;1872;Sawnwood;5916;Export quantity;m3;800;800;600;800;1200;2400;1200;1400;1600;1600;1100;900;1100;1000;700;500;500;100;100;100;100;300;100;100;100;800;400;1300;8000;5000;100;1395;338;1300;900;900;0;0;1000;1000;1000;164;96;365;840;136;524;4693;3257;727;540;1038;594;2436;2046;776;427;994;922;214;554;205;183 -220;'780;Trinidad and Tobago;1872;Sawnwood;5922;Export value;1000 USD;50;47;40;48;84;149;91;69;112;106;86;74;107;141;104;83;83;21;21;21;21;18;10;10;10;16;25;96;246;458;50;612;141;593;378;378;0;0;439;737;1371;201;114;312;462;152;175;2307;1340;783;416.4;914;158;542;1206;616;519;927;1048;297;609;292;387 -220;'780;Trinidad and Tobago;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11000;15000;15000;5000;10000;10000;8000;5000;1000;5000;3000;3000;9000;9000;9000;2000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000 -220;'780;Trinidad and Tobago;1632;Sawnwood, coniferous;5616;Import quantity;m3;36500;42500;37800;54900;39700;49900;39100;35400;36200;32900;35600;40700;37400;34800;25100;14100;13500;96100;32500;300000;300000;250300;467300;567200;160000;89400;64400;29200;28100;29000;700;30953;23257;32300;37900;21700;76000;36000;38000;25000;46000;50388;42728;37550;62837;56452;60483;66144;56188;58804;62348;98076;60371;85235;75721;52613;10229;23674;48376;36168;42572;39325;40988 -220;'780;Trinidad and Tobago;1632;Sawnwood, coniferous;5622;Import value;1000 USD;1806;2048;1846;2752;2107;2702;2125;2206;2757;2726;2977;3813;4409;5354;3668;1857;1532;20506;6581;25140;25140;47245;56141;45223;17204;17386;13105;6061;5309;6468;684;7862;6786;8439;11312;7100;19921;16786;10304;9101;13636;12737;11069;12219;16733;15932;13372;17275;13700;14600;16972;17288;17944;20614;24483;14757;2398;7461;16295;12350;17248;16791;13663 -220;'780;Trinidad and Tobago;1632;Sawnwood, coniferous;5916;Export quantity;m3;200;100;200;100;100;1300;200;400;400;600;300;200;;;;;;;;;;;;;;;;;;;;671;238;800;800;800;0;0;0;0;0;14;46;240;171;100;320;2335;1207;63;1;35;285;620;550;97;120;144;47;14;328;70;38 -220;'780;Trinidad and Tobago;1632;Sawnwood, coniferous;5922;Export value;1000 USD;10;6;15;4;5;65;11;21;29;35;24;18;;;;;;;;;;;;;;;;;;;;131;53;327;327;327;0;0;0;0;0;10;56;199;121;107;80;1067;293;16;0.4;11;21;185;152;25;31;16;25;33;134;70;74 -220;'780;Trinidad and Tobago;1633;Sawnwood, non-coniferous;5516;Production;m3;67000;42000;42000;42000;42000;45000;48000;35000;50000;59000;59000;35000;40000;41000;32000;32000;32000;32000;32000;33000;33000;28000;22000;21000;18000;22000;19000;21000;80000;53000;42000;59000;24000;43000;49000;24000;28000;17000;10000;27000;40000;38000;36000;29000;32000;32000;32000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000 -220;'780;Trinidad and Tobago;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;800;1600;800;3100;1400;600;700;1600;900;1200;400;500;800;1000;1000;1500;9100;5100;95700;73800;73800;78800;96600;112400;48300;62100;71800;4400;12000;15300;1200;2162;300;1800;1100;9900;4100;11000;8000;5000;5000;3445;2773;2492;1366;1061;3681;7483;4849;3816;4318;2560;11706;17833;1019;2180;1350;662;2087;1090;1532;1368;1630 -220;'780;Trinidad and Tobago;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;62;149;63;176;139;51;56;47;72;133;58;71;110;191;200;430;2600;1209;18706;16330;16330;21730;17988;20000;8694;5675;4065;878;2329;1659;270;382;88;155;126;4571;1105;4600;2262;1144;1085;1437;1000;944;762;727;1274;1106;1683;1510;1338;1045;1047;1166;1023;643;716;365;1134;493;695;1224;755 -220;'780;Trinidad and Tobago;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;600;700;400;700;1100;1100;1000;1000;1200;1000;800;700;1100;1000;700;500;500;100;100;100;100;300;100;100;100;800;400;1300;8000;5000;100;724;100;500;100;100;0;0;1000;1000;1000;150;50;125;669;36;204;2358;2050;664;539;1003;309;1816;1496;679;307;850;875;200;226;135;145 -220;'780;Trinidad and Tobago;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;40;41;25;44;79;84;80;48;83;71;62;56;107;141;104;83;83;21;21;21;21;18;10;10;10;16;25;96;246;458;50;481;88;266;51;51;0;0;439;737;1371;191;58;113;341;45;95;1240;1047;767;416;903;137;357;1054;591;488;911;1023;264;475;222;313 -220;'780;Trinidad and Tobago;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000 -220;'780;Trinidad and Tobago;1634;Veneer sheets;5616;Import quantity;m3;100;100;400;100;100;100;100;100;300;300;300;300;100;100;100;100;100;300;300;400;400;600;500;;;;0;;;;;32;50;50;50;50;200;200;400;100;3000;3;17;42;96;88;122;117;113;341;111;19;120;62;31;8;40;16;21;0;23;12;6 -220;'780;Trinidad and Tobago;1634;Veneer sheets;5622;Import value;1000 USD;8;8;9;11;13;17;14;14;26;26;26;26;17;22;33;33;33;138;138;194;194;200;137;;;;0;;;;;31;47;54;54;54;110;110;198;50;17402;13;26;30;105;63;118;133;93;264;156;47;320;122;80;28;149;46;172;103;123;35;22 -220;'780;Trinidad and Tobago;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;41;;;;;;;;;;1;32;162;66;28;3;0.3;2;0;0;1;0;0;0;0;0;1;0;0;0;0 -220;'780;Trinidad and Tobago;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;16;;;;;;;;;;3;47;192;66;30;10;1;5;0;0;2;0;0;0;0;1;0;2;1;0;0 -220;'780;Trinidad and Tobago;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 -220;'780;Trinidad and Tobago;1873;Wood-based panels;5616;Import quantity;m3;8500;3800;6000;3600;5000;11953;6511;6305;8605;10605;12305;14305;7805;5000;4500;8600;14600;16200;33900;47100;47100;78700;69000;33300;31700;57000;39800;28300;29400;42800;23200;16934;18097;16500;22300;21300;900;2700;40500;15200;29000;40606;34456;44817;49180;60098;57466;80072;55684;43425;45778;45052;54657;45965;49475;35786;40305;36217;41649;33169;34629.84;29216;33856 -220;'780;Trinidad and Tobago;1873;Wood-based panels;5622;Import value;1000 USD;365;415;326;450;526;656;537;638;805;997;1158;1275;1066;1561;1640;3115;4896;5019;8749;14695;14695;23924;21067;15105;13625;10410;11804;5655;5623;8060;12069;7592;8671;8485;11097;10998;638;1199;14529;6389;12329;8931;10832;18720;18097;16520;22626;28947;17212;19015;20194;21549;22424;21534;21317;13624;17016;15138;13764;10986;16086.49;15682;13749 -220;'780;Trinidad and Tobago;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;49;114;100;100;0;0;0;0;0;43;23;285;746;269;107;143;762;13;2;15;5;5;24;4;126;89;70;5;162.65;980.69;324.69 -220;'780;Trinidad and Tobago;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;49;91;88;88;0;0;0;0;0;36;35;464;1012;336;83;48;372;7;4.3;12;10;8;20;5;63;47;131;93;143;248.69;170.69 -220;'780;Trinidad and Tobago;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 -220;'780;Trinidad and Tobago;1640;Plywood and LVL;5616;Import quantity;m3;7400;2500;5100;2500;3200;4500;3200;3700;4800;5000;5800;6400;6100;1200;2100;6200;12200;11700;28800;41500;41500;74000;64000;30600;29100;54400;37200;27300;28600;42000;22000;15528;16878;14100;18400;18400;0;0;37500;12000;22000;16606;18456;26417;30780;41698;40066;56972;36912;31315;36417;33998;41259;33553;38320;26129;26632;26804;27552;22101;23469;16479;18413 -220;'780;Trinidad and Tobago;1640;Plywood and LVL;5622;Import value;1000 USD;301;353;244;343;387;404;343;421;476;583;656;740;896;381;899;2374;4155;3952;7048;12083;12083;21681;18552;13738;12424;9206;10600;5201;5129;7566;11499;7032;7893;7185;9141;9141;0;0;13240;5262;9276;4855;6999;13422;12799;11222;12380;15863;11134;11625;14015;12969;13551;12928;14079;7982;8632;9475;7640;6261;9352;6905;6378 -220;'780;Trinidad and Tobago;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;35;100;100;100;0;0;0;0;0;43;23;285;746;269;107;143;762;13;1;14;4;4;23;3;125;88;66;0;36;57;142 -220;'780;Trinidad and Tobago;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;46;88;88;88;0;0;0;0;0;36;35;464;1012;336;83;48;372;7;0.3;8;6;4;16;1;59;43;122;88;36;173;58 -220;'780;Trinidad and Tobago;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;800;1100;600;900;1400;6400;3100;2500;3700;5500;6400;7800;1600;1200;1200;1200;1200;3400;4400;4500;4500;3400;3800;2000;2000;2000;2000;400;200;200;600;715;397;1200;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -220;'780;Trinidad and Tobago;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;42;46;50;80;82;114;166;188;300;385;473;506;141;389;389;389;389;639;1407;1833;1833;1340;1400;892;892;892;892;142;182;182;258;306;193;498;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -220;'780;Trinidad and Tobago;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;14;14;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -220;'780;Trinidad and Tobago;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;3;3;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -220;'780;Trinidad and Tobago;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1900;1900;300;1600;700;1200;1000;2000;2000;2000;2000;2000;2000;2000;731;511;326;51;1;487;82;7;130;130;2470;959;148.2;759;241 -220;'780;Trinidad and Tobago;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1112;1112;148;649;270;436;595;729;500;500;500;500;500;500;559;409;250;13;2;424;42;30;83;83;164;166;86;265;135 -220;'780;Trinidad and Tobago;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17.64;762;0 -220;'780;Trinidad and Tobago;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;1;1 -220;'780;Trinidad and Tobago;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;17;49;49;49;24;27;28;2;2;1;28;28;47;63 -220;'780;Trinidad and Tobago;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;7;37;37;37;9;16;10;2;2;1;9;9;27;34 -220;'780;Trinidad and Tobago;1874;Fibreboard;5616;Import quantity;m3;300;200;300;200;400;1053;211;105;105;105;105;105;105;2600;1200;1200;1200;1100;700;1100;1100;1300;1200;700;600;600;600;600;600;600;600;691;822;1200;2000;1000;600;1100;2300;2000;6000;22000;14000;16400;16400;16400;15400;21100;18015;11582;8986;10954;13348;11901;11046;9622;13541;9281;11626;10081;10984.65;11931;15139 -220;'780;Trinidad and Tobago;1874;Fibreboard;5622;Import value;1000 USD;22;16;32;27;57;138;28;29;29;29;29;29;29;791;352;352;352;428;294;779;779;903;1115;475;309;312;312;312;312;312;312;254;585;802;844;745;490;550;1019;691;2458;3347;3333;4798;4798;4798;9746;12584;5504;6974;5892;8530;8834;8173;7180;5602;8299;5578;5959;4550;6639.49;8485;7202 -220;'780;Trinidad and Tobago;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;4;5;109;161.69;182.69 -220;'780;Trinidad and Tobago;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4;4;9;5;58;74.69;111.69 -220;'780;Trinidad and Tobago;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;1000;300;800;2000;1000;2000;17000;2000;1400;1400;1400;1400;1400;1383;444;756;1336;1329;1588;777;890;409;347;560;522;661;415;530 -220;'780;Trinidad and Tobago;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;844;745;262;322;787;461;1144;1544;800;798;798;798;798;798;1025;338;555;1348;792;1005;565;458;242;226;396;316;509.23;532;425 -220;'780;Trinidad and Tobago;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0.69;0.69 -220;'780;Trinidad and Tobago;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7.7;7.7 -220;'780;Trinidad and Tobago;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;300;300;1000;1000;3000;5000;8000;8000;8000;9700;9700;13271;5907;4306;6721;8653;7687;8160;8455;13037;8669;10588;8682;10273.65;11023;14510 -220;'780;Trinidad and Tobago;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;228;228;232;230;656;1213;1533;3000;3000;3000;6786;6786;2269;3431;2687;4457;4914;4712;4943;4883;7972;5188;5379;4056;6105.26;7823;6658 -220;'780;Trinidad and Tobago;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;4;5;9;11;26 -220;'780;Trinidad and Tobago;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4;4;9;5;11;20;59 -220;'780;Trinidad and Tobago;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;22;;;;;;;;3000;2000;7000;7000;7000;7000;4300;10000;3361;5231;3924;2897;3366;2626;2109;277;95;265;478;877;50;493;99 -220;'780;Trinidad and Tobago;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;7;;;;;;;;658;590;1000;1000;1000;1000;2162;5000;2210;3205;2650;2725;3128;2456;1672;261;85;164;184;178;25;130;119 -220;'780;Trinidad and Tobago;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;150;156 -220;'780;Trinidad and Tobago;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;47;45 -220;'780;Trinidad and Tobago;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;300;200;300;200;400;1053;211;105;105;105;105;105;105;2600;1200;1200;1200;1100;700;1100;1100;1300;1200;700;600;600;600;600;600;600;600;607;800;1200;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -220;'780;Trinidad and Tobago;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;22;16;32;27;57;138;28;29;29;29;29;29;29;791;352;352;352;428;294;779;779;903;1115;475;309;312;312;312;312;312;312;235;578;802;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -220;'780;Trinidad and Tobago;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -220;'780;Trinidad and Tobago;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -220;'780;Trinidad and Tobago;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;9000;5000;8000;6000;8000;6000;6000;4000;20000;6000;12000;8000;5000;6000;5000;2000;2000;2000;2000;2000;2000;4000;4100;4100;4100;4100;0;0;0;3000;3000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000 -220;'780;Trinidad and Tobago;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;200;200;300;300;500;400;400;400;800;400;600;800;1300;1400;1600;800;2000;2000;3233;3357;3505;3005;2505;5200;7500;6200;6900;6900;3880;4150;4150;4150;4150;4150;4150;21285;25547;26589;39782;26869;27757;25363;31931;24630;19736;27611;10825;5128.33;4169.03;32993 -220;'780;Trinidad and Tobago;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;96;135;185;185;305;251;251;251;584;312;470;484;897;1067;1050;764;1982;1982;2551;2118;1886;2758;2026;3543;3272;3035;4856;4893;2841;2592;2592;2592;2592;2592;2592;14208;14873;13038;16456;13441;17286;13529;13832;13154;13502;19919;6197;2097.2;2747.24;18934 -220;'780;Trinidad and Tobago;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;4000;2000;4000;3200;4100;3400;3000;1700;9800;3100;5500;3900;2400;2900;2400;2000;2000;900;800;800;2000;3964;4059;4059;4059;4059;400;400;5300;9500;5600;10000;9000;10000;10000;10000;4300;4300;5402;4243;5274;4530;8081;6524;9869;7274;6045;25;8849;7808;7744.85;9025;5515 -220;'780;Trinidad and Tobago;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;100;109;131;190;378;264;274;358;235;288;372;207;128;179;189;100;125;100;75;75;209;375;451;451;451;451;43;43;753;643;380;481;438;800;800;800;549;549;568;1048;1410;1327;1652;1966;2226;1386;1363;7;951;745;903;840;1084 -220;'780;Trinidad and Tobago;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 -220;'780;Trinidad and Tobago;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;200;200;300;300;500;400;400;400;800;400;600;800;1300;1400;1600;800;2000;2000;2781;2502;3405;2905;2405;4900;7200;5600;6300;6300;3580;3550;3550;3550;3550;3550;3550;17055;15553;12258;14955;16185;26511;21250;23003;21432;16538;21590;9657;1925;2329.03;26363 -220;'780;Trinidad and Tobago;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;96;135;185;185;305;251;251;251;584;312;470;484;897;1067;1050;764;1982;1982;2412;2034;1855;2727;1995;3501;3230;2953;4774;4774;2793;2492;2492;2492;2492;2492;2492;12622;11985;8631;10403;10069;16435;12780;12422;12590;12938;16960;5930;1403;2005.24;17244 -220;'780;Trinidad and Tobago;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;1;0;0;0;0 -220;'780;Trinidad and Tobago;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;5;0;0;0;0 -220;'780;Trinidad and Tobago;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;200;200;300;300;500;400;400;400;800;400;600;800;1300;1400;1600;800;2000;2000;2795;2540;3400;2900;2400;4900;7200;5600;6300;6300;3580;3550;3550;3550;3550;3550;3550;17902;16396;13072;15769;16999;27325;22064;23817;22246;17352;22461;10471;2796;3200;27234 -220;'780;Trinidad and Tobago;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;96;135;185;185;305;251;251;251;584;312;470;484;897;1067;1050;764;1982;1982;2399;2042;1837;2709;1977;3501;3230;2953;4774;4774;2793;2492;2492;2492;2492;2492;2492;13187;12609;9246;11018;10684;17050;13395;13037;13205;13553;17612;6545;2056;2658;17895 -220;'780;Trinidad and Tobago;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -220;'780;Trinidad and Tobago;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -220;'780;Trinidad and Tobago;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;804;804;439;12;12 -220;'780;Trinidad and Tobago;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;454;454;325;31;31 -220;'780;Trinidad and Tobago;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;69;408;0;17;0;;;;;;; -220;'780;Trinidad and Tobago;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;18;25;147;0;32;0;;;;;;; -220;'780;Trinidad and Tobago;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;156;100;100;100;400;400;300;300;300;300;300;300;300;300;300;300;1943;1943;1943;1943;1943;0;0;0;;;;;;; -220;'780;Trinidad and Tobago;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;46;46;46;110;110;113;113;113;113;113;113;113;113;113;113;1353;1353;1353;1353;1353;0;0;0;;;;;;; -220;'780;Trinidad and Tobago;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;200;200;300;300;500;400;400;400;800;400;600;800;1300;1400;1600;800;2000;2000;2775;2341;3300;2800;2300;4500;6800;5300;6000;6000;3280;3250;3250;3250;3250;3250;3250;15076;13570;10246;12886;13777;26454;21176;22946;21375;16481;20786;8796;1486;2317;26351 -220;'780;Trinidad and Tobago;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;96;135;185;185;305;251;251;251;584;312;470;484;897;1067;1050;764;1982;1982;2389;1935;1791;2663;1931;3391;3120;2840;4661;4661;2680;2379;2379;2379;2379;2379;2379;11163;10585;7222;8987;8531;16397;12710;12384;12552;12900;16505;5438;1078;1974;17211 -220;'780;Trinidad and Tobago;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -220;'780;Trinidad and Tobago;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -220;'780;Trinidad and Tobago;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;348;200;200;0;0;0;0;0;0;0;0;0;0;0;0;0;65;65;65;500;500;500;500;500;500;500;500;500;500;500;500 -220;'780;Trinidad and Tobago;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;268;124;124;0;0;0;0;0;0;0;0;0;0;0;0;0;24;24;24;243;243;243;243;243;243;243;243;243;243;243;243 -220;'780;Trinidad and Tobago;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2000;1640;1858;2500;1600;2300;4500;6800;5300;6000;6000;3000;3000;3000;3000;3000;3000;3000;14808;13354;10030;12116;13007;25632;20576;22346;20875;15981;20286;8296;986;1817;25851 -220;'780;Trinidad and Tobago;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1982;1982;1351;1508;1347;1520;1931;3391;3120;2840;4661;4661;2189;1935;1935;1935;1935;1935;1935;10763;10264;6901;8351;7895;15895;12386;12060;12309;12657;16262;5195;835;1731;16968 -220;'780;Trinidad and Tobago;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -220;'780;Trinidad and Tobago;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -220;'780;Trinidad and Tobago;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;;;;;;;;;100;150;150;150;150;150;150;150;150;150;150;150;275;0;0;;;;;;; -220;'780;Trinidad and Tobago;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;;;;;;;;;191;294;294;294;294;294;294;294;294;294;294;294;218;0;0;;;;;;; -220;'780;Trinidad and Tobago;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -220;'780;Trinidad and Tobago;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -220;'780;Trinidad and Tobago;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1135;93;600;1000;0;0;0;0;0;0;180;100;100;100;100;100;100;53;1;1;120;120;47;100;100;;;;;;; -220;'780;Trinidad and Tobago;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1038;127;320;1019;0;0;0;0;0;0;300;150;150;150;150;150;150;82;3;3;99;99;41;81;81;;;;;;; -220;'780;Trinidad and Tobago;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;43;;;;;;;;;;;;;;;;871;871;871;871;871;871;871;871;871;871;871;871;871;871;871 -220;'780;Trinidad and Tobago;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;26;;;;;;;;;;;;;;;;653;653;653;653;653;653;653;653;653;653;653;653;653;653;653 -220;'780;Trinidad and Tobago;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -220;'780;Trinidad and Tobago;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -220;'780;Trinidad and Tobago;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 -220;'780;Trinidad and Tobago;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;5;5;5;5;0;0;0;0;0;0;0;0;0;0;0;0;24;28;57;57;57;57;57;57;57;57;0;57;0;0.03;0 -220;'780;Trinidad and Tobago;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;18;18;18;18;0;0;0;0;0;0;0;0;0;0;0;0;88;29;38;38;38;38;38;38;38;38;1;38;0;0.24;2 -220;'780;Trinidad and Tobago;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;1;0;0;0;0 -220;'780;Trinidad and Tobago;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;5;0;0;0;0 -220;'780;Trinidad and Tobago;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;57;10;10;10;10;10;10;24;23.95;2 -220;'780;Trinidad and Tobago;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;38;4;4;4;4;4;4;13;13.09;2 -220;'780;Trinidad and Tobago;1669;Recovered paper;5510;Production;t;;;;;;;;;;;9000;5000;8000;6000;8000;6000;6000;4000;20000;6000;12000;8000;5000;6000;5000;2000;2000;2000;2000;2000;2000;4000;4100;4100;4100;4100;0;0;0;3000;3000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000 -220;'780;Trinidad and Tobago;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;452;855;100;100;100;300;300;600;600;600;300;600;600;600;600;600;600;4230;9994;14331;24827;10684;1246;4113;8928;3198;3198;6021;1168;3203.33;1840;6630 -220;'780;Trinidad and Tobago;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;139;84;31;31;31;42;42;82;82;119;48;100;100;100;100;100;100;1586;2888;4407;6053;3372;851;749;1410;564;564;2959;267;694.2;742;1690 -220;'780;Trinidad and Tobago;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;4000;2000;4000;3200;4100;3400;3000;1700;9800;3100;5500;3900;2400;2900;2400;2000;2000;900;800;800;2000;3964;4059;4059;4059;4059;400;400;5300;9500;5600;10000;9000;10000;10000;10000;4300;4300;5402;4243;5274;4530;8081;6524;9869;7274;6045;25;8848;7808;7744.85;9025;5515 -220;'780;Trinidad and Tobago;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;100;109;131;190;378;264;274;358;235;288;372;207;128;179;189;100;125;100;75;75;209;375;451;451;451;451;43;43;753;643;380;481;438;800;800;800;549;549;568;1048;1410;1327;1652;1966;2226;1386;1363;7;946;745;903;840;1084 -220;'780;Trinidad and Tobago;1876;Paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;10000;10000;10000;15000;15000;15000;15000;15000;15000;15000;15000;15000 -220;'780;Trinidad and Tobago;1876;Paper and paperboard;5610;Import quantity;t;14000;13200;14600;14400;14700;17400;23500;23100;29000;29600;38000;36200;29000;35900;27800;29400;31400;36600;35600;46400;44200;43300;38900;42500;43900;39900;43200;30100;36400;37800;40700;43072;40054;44000;46400;45400;52700;64100;77900;69799;69272;74400;92500;99500;99500;85400;135500;137700;83172;75153;70217;66582;76594;74933;61640;63547;57095;64680;58030;65114;63227.9;80073;64105 -220;'780;Trinidad and Tobago;1876;Paper and paperboard;5622;Import value;1000 USD;2627;2453;2965;3296;3864;4645;6933;6764;7442;7969;9481;11018;9269;19133;21351;22816;23726;28416;26160;42048;39300;41611;34301;41382;36413;37049;39010;31199;40598;36373;33383;35647;35670;37362;51016;48884;45535;58200;47864;55158;62125;60997;91140;96287;96287;81611;74727;74743;67276;67619;70020;56440;62331;71758;48767;53810;47196;59371;68967;63392;69529.73;112228;67361 -220;'780;Trinidad and Tobago;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;1000;500;300;100;200;200;1600;1600;1600;1200;1200;1200;500;600;500;500;500;500;500;500;500;500;500;323;256;252;252;252;302;602;2500;800;800;500;570;570;570;570;570;570;4102;4524;4519;12156;11686;10723;15559;15055;2312;997;16260;14976;16381.33;15759;10278 -220;'780;Trinidad and Tobago;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;42;25;12;11;48;33;1123;1123;1123;825;825;713;300;607;351;351;351;351;351;351;351;351;351;353;298;373;373;373;422;928;2265;968;1034;665;813;813;813;813;813;813;5159;6221;6876;14529;13800;13621;16742;15964;2545;1308;18800;17103;19678.94;20525;14501 -220;'780;Trinidad and Tobago;2042;Graphic papers;5610;Import quantity;t;5700;5700;5000;5800;5700;6000;8100;7900;8700;8400;9500;10300;10400;11000;8200;9800;11800;11100;9100;9400;14600;12800;14600;12200;20300;13200;17100;12400;22700;19800;23100;16756;11929;13600;18100;17200;24800;20100;37400;28899;29372;33400;34500;37500;37500;37500;36600;38800;29371;42363;38950;35351;40396;38127;29349;27045;24699;25710;20392;13346;11645.17;16993;15375 -220;'780;Trinidad and Tobago;2042;Graphic papers;5622;Import value;1000 USD;1164;1133;1281;1365;1473;1562;2160;2134;2046;2169;2309;2903;3279;5784;4757;6222;7132;8291;7942;9817;13600;12488;12883;10531;13399;10545;13949;11152;20076;16464;18913;13645;11418;11995;18209;16505;17834;18634;22403;23363;26757;24011;24049;26712;26712;26712;32129;32145;25021;34402;33836;30509;32389;30751;22822;18865;17691;20933;18883;11369;11199.07;22698;17276 -220;'780;Trinidad and Tobago;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;146;68;52;52;52;202;202;300;200;200;200;200;200;200;200;200;200;487;1065;434;1243;930;422;1231;780;969;82;171;362;270;98;674 -220;'780;Trinidad and Tobago;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;160;94;85;85;85;303;359;254;267;267;267;267;267;267;267;267;267;784;1623;964;2532;1435;692;1725;878;915;121;301;980;1327;190;1303 -220;'780;Trinidad and Tobago;1671;Newsprint;5610;Import quantity;t;3800;4100;3400;4500;4400;4100;5400;5600;6300;5600;6600;7100;7200;7100;6300;6400;8400;7500;3300;5100;11000;7900;10400;7000;11900;5900;9300;6800;5000;3700;7000;9334;4451;4400;9000;6500;11900;9400;19400;11000;12200;16000;18000;22000;22000;22000;22300;22300;15789;21222;16785;13916;19898;16904;13154;10206;9810;8476;5309;3848;1862.45;2382;2157 -220;'780;Trinidad and Tobago;1671;Newsprint;5622;Import value;1000 USD;582;608;697;846;795;734;874;938;1040;1004;1064;1387;1621;2475;2875;2930;3840;5208;2358;4139;8900;6408;7553;4398;7507;3869;5838;4911;4069;3098;5547;5194;4050;3661;7705;6460;5823;8650;8610;5788;10833;8322;9205;12768;12768;12768;16401;16401;10766;13328;12104;9686;13221;11008;8134;5557;5232;5293;3240;1958;1463.47;2103;1885 -220;'780;Trinidad and Tobago;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;2;2;2;2;2;2;0;0;0;0;0;0;0;0;0;0;44;44;182;182;182;1;3;4;19;7;5;6;1;5;15 -220;'780;Trinidad and Tobago;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;1;1;1;1;1;1;0;0;0;0;0;0;0;0;0;0;30;30;545;545;545;8;5;4;19;6;5;10;0;8;20 -220;'780;Trinidad and Tobago;1674;Printing and writing papers;5610;Import quantity;t;1900;1600;1600;1300;1300;1900;2700;2300;2400;2800;2900;3200;3200;3900;1900;3400;3400;3600;5800;4300;3600;4900;4200;5200;8400;7300;7800;5600;17700;16100;16100;7422;7478;9200;9100;10700;12900;10700;18000;17899;17172;17400;16500;15500;15500;15500;14300;16500;13582;21141;22165;21435;20498;21223;16195;16839;14889;17234;15083;9498;9782.72;14611;13218 -220;'780;Trinidad and Tobago;1674;Printing and writing papers;5622;Import value;1000 USD;582;525;584;519;678;828;1286;1196;1006;1165;1245;1516;1658;3309;1882;3292;3292;3083;5584;5678;4700;6080;5330;6133;5892;6676;8111;6241;16007;13366;13366;8451;7368;8334;10504;10045;12011;9984;13793;17575;15924;15689;14844;13944;13944;13944;15728;15744;14255;21074;21732;20823;19168;19743;14688;13308;12459;15640;15643;9411;9735.61;20595;15391 -220;'780;Trinidad and Tobago;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;132;66;50;50;50;200;200;300;200;200;200;200;200;200;200;200;200;443;1021;252;1061;748;421;1228;776;950;75;166;356;269;93;659 -220;'780;Trinidad and Tobago;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;154;93;84;84;84;302;358;254;267;267;267;267;267;267;267;267;267;754;1593;419;1987;890;684;1720;874;896;115;296;970;1327;182;1283 -220;'780;Trinidad and Tobago;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;246;414;411;1000;400;500;500;500;500;500;500;535;1988;1778;2062;2312;2008;396;147;24;24;539;449;397;419;58 -220;'780;Trinidad and Tobago;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;215;297;379;946;338;444;444;444;444;444;444;832;1851;1870;1786;2261;2008;466;144;36;36;569;484;427;686;122 -220;'780;Trinidad and Tobago;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;273;555;83;262;188;136;99;15;11;11;5;5;4;83;273 -220;'780;Trinidad and Tobago;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;456;842;142;520;323;214;179;28;23;23;15;23;19;149;415 -220;'780;Trinidad and Tobago;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6764;11379;11316;10000;11000;11000;12000;12000;12000;10800;13000;9829;12705;15602;13074;11600;12719;10264;13706;11506;14021;12681;7477;7957.72;11664;10664 -220;'780;Trinidad and Tobago;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6158;8508;10840;8622;9677;9600;10000;10000;10000;11784;11800;9481;11960;15098;12404;10283;11254;8747;10022;9090;12257;12581;6767;7080.61;14837;11825 -220;'780;Trinidad and Tobago;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;300;200;200;200;200;200;200;200;200;200;134;370;108;696;290;172;1048;725;922;41;104;164;60;2;341 -220;'780;Trinidad and Tobago;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;358;254;267;267;267;267;267;267;267;267;267;201;575;196;1313;512;315;1429;805;803;55;123;63;73;8;704 -220;'780;Trinidad and Tobago;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3690;6207;6172;6172;6000;5000;3000;3000;3000;3000;3000;3218;6448;4785;6299;6586;6496;5535;2986;3359;3189;1863;1572;1428;2528;2496 -220;'780;Trinidad and Tobago;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3611;4988;6356;6356;5674;4800;3500;3500;3500;3500;3500;3942;7263;4764;6633;6624;6481;5475;3142;3333;3347;2493;2160;2228;5072;3444 -220;'780;Trinidad and Tobago;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;96;61;103;270;113;81;36;17;23;57;187;205;8;45 -220;'780;Trinidad and Tobago;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97;176;81;154;55;155;112;41;70;37;158;884;1235;25;164 -220;'780;Trinidad and Tobago;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;10000;10000;10000;15000;15000;15000;15000;15000;15000;15000;15000;15000 -220;'780;Trinidad and Tobago;1675;Other paper and paperboard;5610;Import quantity;t;8300;7500;9600;8600;9000;11400;15400;15200;20300;21200;28500;25900;18600;24900;19600;19600;19600;25500;26500;37000;29600;30500;24300;30300;23600;26700;26100;17700;13700;18000;17600;26316;28125;30400;28300;28200;27900;44000;40500;40900;39900;41000;58000;62000;62000;47900;98900;98900;53801;32790;31267;31231;36198;36806;32291;36502;32396;38970;37638;51768;51582.73;63080;48730 -220;'780;Trinidad and Tobago;1675;Other paper and paperboard;5622;Import value;1000 USD;1463;1320;1684;1931;2391;3083;4773;4630;5396;5800;7172;8115;5990;13349;16594;16594;16594;20125;18218;32231;25700;29123;21418;30851;23014;26504;25061;20047;20522;19909;14470;22002;24252;25367;32807;32379;27701;39566;25461;31795;35368;36986;67091;69575;69575;54899;42598;42598;42255;33217;36184;25931;29942;41007;25945;34945;29505;38438;50084;52023;58330.66;89530;50085 -220;'780;Trinidad and Tobago;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;1000;500;300;100;200;200;1600;1600;1600;1200;1200;1200;500;600;500;500;500;500;500;500;500;500;500;177;188;200;200;200;100;400;2200;600;600;300;370;370;370;370;370;370;3615;3459;4085;10913;10756;10301;14328;14275;1343;915;16089;14614;16111.33;15661;9604 -220;'780;Trinidad and Tobago;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;42;25;12;11;48;33;1123;1123;1123;825;825;713;300;607;351;351;351;351;351;351;351;351;351;193;204;288;288;288;119;569;2011;701;767;398;546;546;546;546;546;546;4375;4598;5912;11997;12365;12929;15017;15086;1630;1187;18499;16123;18351.94;20335;13198 -220;'780;Trinidad and Tobago;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;10000;10000;10000;15000;15000;15000;15000;15000;15000;15000;15000;15000 -220;'780;Trinidad and Tobago;1676;Household and sanitary papers;5610;Import quantity;t;100;100;100;100;100;100;200;;;;;;;;;;;100;5100;4900;3900;3900;6800;6800;4700;6300;5100;4300;100;100;100;5000;5700;8000;16900;16900;15000;9400;10400;10500;12900;12000;14000;14000;14000;14000;1700;1700;3927;2089;2099;5120;4456;5112;4958;8335;5389;7369;8451;26392;30062;34260;9950 -220;'780;Trinidad and Tobago;1676;Household and sanitary papers;5622;Import value;1000 USD;44;40;50;58;72;92;143;;;;;;;;;;;78;4399;5832;4600;4600;7481;7481;4964;5885;4799;4632;327;314;314;5473;6995;8385;14882;14882;13000;8718;8869;6832;14506;12699;18658;18658;18658;18658;2436;2436;5497;3011;2418;5606;4985;7320;6838;8198;5926;7989;10487;21640;28807;41914;12272 -220;'780;Trinidad and Tobago;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;200;0;0;0;0;0;0;0;0;0;3093;3257;3882;10770;10588;10087;14137;14137;1164;866;15934;14351;15931.33;15532;9356 -220;'780;Trinidad and Tobago;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;125;0;0;0;0;0;0;0;0;0;3516;4192;5561;11830;12190;12649;14811;14811;1359;1097;18228;15766;17933.94;20025;12663 -220;'780;Trinidad and Tobago;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32400;28400;28200;26100;26000;29000;29000;29000;29000;78200;78200;48482;29256;28086;25672;30824;30488;26807;26991;26730;31378;28802;24560;20029.09;27190;38596 -220;'780;Trinidad and Tobago;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27771;14136;20988;19650;19723;31417;31417;31417;31417;20662;20662;33596;26551;30453;19553;23681;31040;18595;23637;22876;29731;38585;29105;27145.97;44984;36913 -220;'780;Trinidad and Tobago;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1800;500;500;200;200;200;200;200;200;200;188;164;157;138;165;190;133;115;173;43;155;260;180;129;242 -220;'780;Trinidad and Tobago;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1642;456;522;224;224;224;224;224;224;224;165;266;180;156;143;215;175;210;248;67;269;324;417;310;509 -220;'780;Trinidad and Tobago;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;3800;3400;4400;3900;4000;5300;7000;7000;4700;4200;4800;7300;8700;1000;1900;1900;1900;16100;4400;16600;13300;16600;15700;12800;12300;10700;12500;6800;8000;8000;3000;18216;16725;14400;400;300;0;;;;;;;;;;;;;;;;;;;;;;;;;; -220;'780;Trinidad and Tobago;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;556;501;640;734;908;1172;1814;1814;1116;1145;1012;2603;2335;645;2041;2041;2041;12385;3586;14892;11900;12184;12175;9453;9265;7642;9386;4973;8517;8008;2838;14017;10257;8540;1177;749;0;;;;;;;;;;;;;;;;;;;;;;;;;; -220;'780;Trinidad and Tobago;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -220;'780;Trinidad and Tobago;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -220;'780;Trinidad and Tobago;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21600;18933;18800;18000;18000;15000;15000;15000;15000;32800;32800;36304;13885;12453;12337;15738;14882;14907;13025;16211;17402;15330;13813;11158;19019;26487 -220;'780;Trinidad and Tobago;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16009;8149;12099;13090;13090;11901;11901;11901;11901;7419;7419;9400;7373;7391;7245;9902;9877;8638;7282;8657;11246;13089;10980;9977;22579;16316 -220;'780;Trinidad and Tobago;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;11;17;34;36;24;18;13;1;4;0;6;18 -220;'780;Trinidad and Tobago;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;36;36;13;18;48;46;28;20;18;1;4;0;6;16 -220;'780;Trinidad and Tobago;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3503;8025;7832;7383;7290;7022;5075;7592;6777;6545;4721;3873;4015;5562;9472 -220;'780;Trinidad and Tobago;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12598;11639;13803;6127;5645;11851;3546;10751;10674;10962;14356;10593;10651;16159;16659 -220;'780;Trinidad and Tobago;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;25;31;29;13;7;12;15;13;4;13;47;6;0;65 -220;'780;Trinidad and Tobago;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;30;54;82;24;23;24;56;25;13;21;12;13;1;188 -220;'780;Trinidad and Tobago;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10800;9467;9400;8100;8000;14000;14000;14000;14000;45400;45400;8645;7058;7258;5493;6962;8183;6661;6006;3709;7309;8737;6862;4593.09;2608;2616 -220;'780;Trinidad and Tobago;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11762;5987;8889;6560;6633;19516;19516;19516;19516;13243;13243;11557;7194;8783;5883;7451;8975;6251;5361;3515;7431;11122;7521;6357.98;6244;3912 -220;'780;Trinidad and Tobago;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1800;500;500;200;200;200;200;200;200;200;169;124;45;32;69;83;79;73;139;23;138;206;171;120;156 -220;'780;Trinidad and Tobago;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1642;456;522;224;224;224;224;224;224;224;146;200;77;48;88;131;100;123;200;33;244;305;401;300;302 -220;'780;Trinidad and Tobago;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;288;543;459;834;401;164;368;33;122;14;12;263;1;21 -220;'780;Trinidad and Tobago;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;345;476;298;683;337;160;243;30;92;18;11;160;2;26 -220;'780;Trinidad and Tobago;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;66;66;66;6;3;3;3;3;3;3;3;3 -220;'780;Trinidad and Tobago;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;5;3;3;3;3;3;3;3;3 -220;'780;Trinidad and Tobago;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;4400;4000;5100;4600;4900;6000;8200;8200;15600;17000;23700;18600;9900;23900;17700;17700;17700;9300;17000;15500;12400;10000;1800;10700;6600;9700;8500;6600;5600;9900;14500;3100;5700;8000;11000;11000;12900;2200;1700;2200;900;3000;15000;19000;19000;4900;19000;19000;1392;1445;1082;439;918;1206;526;1176;277;223;385;816;1491.64;1630;184 -220;'780;Trinidad and Tobago;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;863;779;994;1139;1411;1819;2816;2816;4280;4655;6160;5512;3655;12704;14553;14553;14553;7662;10233;11507;9200;12339;1762;13917;8785;12977;10876;10442;11678;11587;11318;2512;7000;8442;16748;16748;14701;3077;2456;3975;1212;4564;17016;19500;19500;4824;19500;19500;3162;3655;3313;772;1276;2647;512;3110;703;718;1012;1278;2377.68;2632;900 -220;'780;Trinidad and Tobago;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;1000;500;300;100;200;200;1600;1600;1600;1200;1200;1200;500;600;500;500;500;500;500;500;500;500;500;177;188;200;200;200;100;400;200;100;100;100;170;170;170;170;170;170;334;38;46;5;3;24;58;23;6;6;0;3;0;0;6 -220;'780;Trinidad and Tobago;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;42;25;12;11;48;33;1123;1123;1123;825;825;713;300;607;351;351;351;351;351;351;351;351;351;193;204;288;288;288;119;569;244;245;245;174;322;322;322;322;322;322;694;140;171;11;32;65;31;65;23;23;2;33;1;0;26 -220;'780;Trinidad and Tobago;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34491;33970;31063;24116;28388;31745;25385 -220;'780;Trinidad and Tobago;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7171;7989;7209;5538;7522;7847;6858 -220;'780;Trinidad and Tobago;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1732;1551;1503;605;685;1136;1402 -220;'780;Trinidad and Tobago;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89;123;7;59;31;18;189 -220;'780;Trinidad and Tobago;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;908;971;857;281;275;735;788 -220;'780;Trinidad and Tobago;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;25;1;51;1;17;28 -220;'780;Trinidad and Tobago;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;824;580;646;324;410;401;614 -220;'780;Trinidad and Tobago;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;98;6;8;30;1;161 -220;'780;Trinidad and Tobago;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;449;259;500;360;404;178;328 -220;'780;Trinidad and Tobago;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;274;246;327;311;172;90;152 -220;'780;Trinidad and Tobago;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;383;387;411;340;319;544;365 -220;'780;Trinidad and Tobago;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;135;98;38;44;253;45 -220;'780;Trinidad and Tobago;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3881;4359;3762;2805;3047;3762;2508 -220;'780;Trinidad and Tobago;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2371;3247;3004;2122;2912;3101;2581 -220;'780;Trinidad and Tobago;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27425;26982;24335;19440;23329;25703;19768 -220;'780;Trinidad and Tobago;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4086;3960;3605;2884;4161;4183;3802 -220;'780;Trinidad and Tobago;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;170;170;170;170;170;170;68 -220;'780;Trinidad and Tobago;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;451;262;382;396;434;252;946 -220;'780;Trinidad and Tobago;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;277;278;168;124;202;202;89 -220;'780;Trinidad and Tobago;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38878;40471;42862;39716;42340;52645;37180 -220;'780;Trinidad and Tobago;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48171;50583;54690;55535;47127;57972;52870 -220;'780;Trinidad and Tobago;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;292;115;435;1432;797;430 -220;'780;Trinidad and Tobago;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -220;'780;Trinidad and Tobago;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3101;3290;3008;3358;3853;5016;5745 -220;'780;Trinidad and Tobago;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;325;313;159;132;78;135;145 -220;'780;Trinidad and Tobago;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8792;8367;9356;8529;8568;5478;2549 -220;'780;Trinidad and Tobago;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21073;21470;24771;28394;25175;33467;32321 -220;'780;Trinidad and Tobago;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12870;13962;15759;14877;17431;24550;14410 -220;'780;Trinidad and Tobago;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10473;11409;12029;13095;7195;7203;7376 -220;'780;Trinidad and Tobago;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14106;14560;14624;12517;11056;16804;14046 -220;'780;Trinidad and Tobago;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16300;17391;17731;13914;14679;17167;13028 -222;'788;Tunisia;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;564322;606174;547735;494313;574732.31;769490;592111 -222;'788;Tunisia;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;171854;145968;161716;150660;186224.7;246170;229161 -222;'788;Tunisia;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;8677;8024;7952;12278;9748;11329;11838;10366;11737;14796;16424;14231;20949;59056;46543;47369;54518;67565;75104;77504;92441;98023;80001;115786;117236;111370;113269;114140;140452;197423;173602;213217;124883;214806;238502;172681;223886;194511;135564;187329;159318;153043;182039;309925;302783;333313;451578;516785;448204;617948;558492;434047;440923;483794;363579;440782;371806;422178;374557;332149;397510.31;578526;417637 -222;'788;Tunisia;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;1501;2048;3430;3485;3229;3535;3589;3626;3312;4378;4063;4398;5653;6462;7678;7712;7712;6718;5371;6690;4096;5415;5415;5415;11183;6546;8575;8688;13002;8508;15365;17669;16932;18566;15446;13787;13854;10604;11044;16256;72145;72145;72106;76166;66814;44806;49683;44603;30448;35739;48558;55208;58874;76396;34045;50939;47392;57422.7;115592;96660 -222;'788;Tunisia;1861;Roundwood;5516;Production;m3;1334682;1347966;1361366;1374885;1415523;1417283;1418165;1454168;1452297;1473551;1472472;1446129;1475092;1508144;1506691;1517682;1557556;1572264;1631232;1655359;1687895;1736113;1762725;1820014;1831488;1895173;1921525;1970370;2040233;2054970;2111042;2061675;2172165;2196393;2233431;2246779;2267939;2278341;2293491;2307853;2318520;2329317;2340246;2336508;2366704;2373743;2380800;2388000;2395284;2402607;2405775;3783000;3914000;3914000;3914000;3914000;3914000;3914000;3914000;3914000;3914000;3914000;3027898 -222;'788;Tunisia;1861;Roundwood;5616;Import quantity;m3;16600;21600;14700;22900;23000;37000;24200;27200;45100;57100;60400;32900;14900;36600;76800;32200;37200;44900;37400;37400;33900;36200;27500;25200;25200;47800;47800;15800;9800;71700;55900;49827;11900;60800;45000;42200;39900;44000;34100;18400;17300;15400;15400;81476;81476;81476;81476;17508;15602;14830;11158;17695;11987;7957;5190;11741;7508;28145;1486;3060;3278;1650;2636 -222;'788;Tunisia;1861;Roundwood;5622;Import value;1000 USD;569;695;441;776;815;1392;1056;1199;1857;2451;2765;1683;1141;3650;8829;3803;4787;5581;4018;4618;5917;6531;3527;3499;3499;7471;7471;1805;1259;13310;9797;9821;1748;12959;10742;8829;8534;8975;6005;2493;2827;2372;2372;6399;6399;6399;6399;5878;4996;4357;4288;5311;3710;1900;712;1458;1767;9088;562;565;659;608;602 -222;'788;Tunisia;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;0;0;0;0;0;0;0;0;0;354;354;354;354;744;272;220;113;85;234;234;69;96;1;250;0;0;3;8617;147 -222;'788;Tunisia;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;0;0;0;0;0;0;0;0;31;31;31;31;1527;427;299;146;151;215;208;16;29;8;71;3;0;7;76;67 -222;'788;Tunisia;1862;Roundwood, coniferous;5516;Production;m3;134176;135401;136637;137885;166145;155417;143702;166998;152307;160628;162222;158595;156882;183485;169736;166131;176308;167042;201351;203657;206701;203476;197737;226837;212396;223677;230607;236277;268701;271322;253120;225981;249419;252153;255646;256877;258887;259725;261136;262567;263631;264707;265797;261700;264216;264918;265600;266300;267065;267795;268111;833000;919000;919000;919000;919000;919000;919000;919000;919000;919000;919000;919000 -222;'788;Tunisia;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3627;14121;589;834;833;1152;842 -222;'788;Tunisia;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;965;3926;213;326;356;462;363 -222;'788;Tunisia;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;120;0 -222;'788;Tunisia;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;3;0;0;20;0 -222;'788;Tunisia;1863;Roundwood, non-coniferous;5516;Production;m3;1200506;1212565;1224729;1237000;1249378;1261866;1274463;1287170;1299990;1312923;1310250;1287534;1318210;1324659;1336955;1351551;1381248;1405222;1429881;1451702;1481194;1532637;1564988;1593177;1619092;1671496;1690918;1734093;1771532;1783648;1857922;1835694;1922746;1944240;1977785;1989902;2009052;2018616;2032355;2045286;2054889;2064610;2074449;2074808;2102488;2108825;2115200;2121700;2128219;2134812;2137664;2950000;2995000;2995000;2995000;2995000;2995000;2995000;2995000;2995000;2995000;2995000;2108898 -222;'788;Tunisia;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3881;14024;897;2226;2445;498;1794 -222;'788;Tunisia;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;802;5162;349;239;303;146;239 -222;'788;Tunisia;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;250;0;0;3;8497;147 -222;'788;Tunisia;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;71;0;0;7;56;67 -222;'788;Tunisia;1864;Wood fuel;5516;Production;m3;1285682;1297966;1310366;1322885;1335523;1348283;1361165;1374168;1387297;1400551;1396472;1370129;1403092;1409144;1421691;1435682;1467556;1491964;1517132;1540259;1570795;1625713;1659425;1688514;1716188;1772173;1791525;1838370;1877733;1888970;1917042;1925675;1960165;1989593;2024631;2036979;2057139;2065541;2079691;2094053;2104720;2115517;2126446;2137508;2148704;2155743;2162800;2170000;2177284;2184607;2187775;3569000;3610000;3610000;3610000;3610000;3610000;3610000;3610000;3610000;3610000;3610000;2723898 -222;'788;Tunisia;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;127;700;700;700;700;700;0;0;0;0;0;0;0;0;0;0;2;2;24;24;24;24;24;24;17;;;;;;70;70 -222;'788;Tunisia;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;29;29;29;29;29;0;0;0;0;0;0;0;0;0;0;8;8;19;19;19;19;19;19;6;;;;;;22;22 -222;'788;Tunisia;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;69;69;75;;;;;;123;3 -222;'788;Tunisia;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;18;;;;;;21;1 -222;'788;Tunisia;1627;Wood fuel, coniferous;5516;Production;m3;128176;129401;130637;131885;133145;134417;135702;136998;138307;139628;139222;136595;139882;140485;141736;143131;146308;148742;151251;153557;156601;162076;165437;168337;171096;176677;178607;183277;187201;188322;191120;191981;195419;198353;201846;203077;205087;205925;207336;208767;209831;210907;211997;213100;214216;214918;215600;216300;217065;217795;218111;731000;742000;742000;742000;742000;742000;742000;742000;742000;742000;742000;742000 -222;'788;Tunisia;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120;0 -222;'788;Tunisia;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;0 -222;'788;Tunisia;1628;Wood fuel, non-coniferous;5516;Production;m3;1157506;1168565;1179729;1191000;1202378;1213866;1225463;1237170;1248990;1260923;1257250;1233534;1263210;1268659;1279955;1292551;1321248;1343222;1365881;1386702;1414194;1463637;1493988;1520177;1545092;1595496;1612918;1655093;1690532;1700648;1725922;1733694;1764746;1791240;1822785;1833902;1852052;1859616;1872355;1885286;1894889;1904610;1914449;1924408;1934488;1940825;1947200;1953700;1960219;1966812;1969664;2838000;2868000;2868000;2868000;2868000;2868000;2868000;2868000;2868000;2868000;2868000;1981898 -222;'788;Tunisia;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;70 -222;'788;Tunisia;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22 -222;'788;Tunisia;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3 -222;'788;Tunisia;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1 -222;'788;Tunisia;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;127;700;700;700;700;700;0;0;0;0;0;0;0;0;0;0;2;2;24;24;24;24;24;24;17;;;;;;; -222;'788;Tunisia;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;29;29;29;29;29;0;0;0;0;0;0;0;0;0;0;8;8;19;19;19;19;19;19;6;;;;;;; -222;'788;Tunisia;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;69;69;75;;;;;;; -222;'788;Tunisia;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;18;;;;;;; -222;'788;Tunisia;1865;Industrial roundwood;5516;Production;m3;49000;50000;51000;52000;80000;69000;57000;80000;65000;73000;76000;76000;72000;99000;85000;82000;90000;80300;114100;115100;117100;110400;103300;131500;115300;123000;130000;132000;162500;166000;194000;136000;212000;206800;208800;209800;210800;212800;213800;213800;213800;213800;213800;199000;218000;218000;218000;218000;218000;218000;218000;214000;304000;304000;304000;304000;304000;304000;304000;304000;304000;304000;304000 -222;'788;Tunisia;1865;Industrial roundwood;5616;Import quantity;m3;16600;21600;14700;22900;23000;37000;24200;27200;45100;57100;60400;32900;14900;36600;76800;32200;37200;44900;37400;37400;33900;36200;27500;25200;25200;47800;47800;15800;9800;71700;55900;49700;11200;60100;44300;41500;39200;44000;34100;18400;17300;15400;15400;81476;81476;81476;81476;17506;15600;14806;11134;17671;11963;7933;5166;11724;7508;28145;1486;3060;3278;1580;2566 -222;'788;Tunisia;1865;Industrial roundwood;5622;Import value;1000 USD;569;695;441;776;815;1392;1056;1199;1857;2451;2765;1683;1141;3650;8829;3803;4787;5581;4018;4618;5917;6531;3527;3499;3499;7471;7471;1805;1259;13310;9797;9815;1719;12930;10713;8800;8505;8975;6005;2493;2827;2372;2372;6399;6399;6399;6399;5870;4988;4338;4269;5292;3691;1881;693;1452;1767;9088;562;565;659;586;580 -222;'788;Tunisia;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;0;0;0;0;0;0;0;0;0;354;354;354;354;744;272;220;113;85;165;165;0;21;1;250;0;0;3;8494;144 -222;'788;Tunisia;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;0;0;0;0;0;0;0;0;31;31;31;31;1527;427;299;146;151;199;192;0;11;8;71;3;0;7;55;66 -222;'788;Tunisia;1866;Industrial roundwood, coniferous;5516;Production;m3;6000;6000;6000;6000;33000;21000;8000;30000;14000;21000;23000;22000;17000;43000;28000;23000;30000;18300;50100;50100;50100;41400;32300;58500;41300;47000;52000;53000;81500;83000;62000;34000;54000;53800;53800;53800;53800;53800;53800;53800;53800;53800;53800;48600;50000;50000;50000;50000;50000;50000;50000;102000;177000;177000;177000;177000;177000;177000;177000;177000;177000;177000;177000 -222;'788;Tunisia;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24900;15700;10700;3100;6500;2900;1500;3000;4500;4500;2600;800;1400;1400;6064;6064;6064;6064;604;1711;3809;519;882;355;892;151;505;3627;14121;589;834;833;1152;842 -222;'788;Tunisia;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3244;1982;1340;337;1370;465;263;225;315;315;224;121;266;266;370;370;370;370;37;104;232;32;399;175;38;13;37;965;3926;213;326;356;462;363 -222;'788;Tunisia;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;0;0;0;0;0;0;0;0;0;61;61;61;61;81;81;81;35;35;115;115;0;20;0;0;0;0;0;0;0 -222;'788;Tunisia;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;0;0;0;0;0;0;0;0;3;3;3;3;4;4;4;2;2;50;50;0;11;0;0;3;0;0;0;0 -222;'788;Tunisia;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24900;15700;10700;3100;6500;2900;1500;3000;4500;4500;2600;800;1400;1400;6064;6064;6064;6064;604;1711;3809;519;882;355;892;151;505;3627;14121;589;834;833;1152;842 -222;'788;Tunisia;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3244;1982;1340;337;1370;465;263;225;315;315;224;121;266;266;370;370;370;370;37;104;232;32;399;175;38;13;37;965;3926;213;326;356;462;363 -222;'788;Tunisia;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;0;0;0;0;0;0;0;0;0;61;61;61;61;81;81;81;35;35;115;115;0;20;0;0;0;0;0;0;0 -222;'788;Tunisia;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;0;0;0;0;0;0;0;0;3;3;3;3;4;4;4;2;2;50;50;0;11;0;0;3;0;0;0;0 -222;'788;Tunisia;1867;Industrial roundwood, non-coniferous;5516;Production;m3;43000;44000;45000;46000;47000;48000;49000;50000;51000;52000;53000;54000;55000;56000;57000;59000;60000;62000;64000;65000;67000;69000;71000;73000;74000;76000;78000;79000;81000;83000;132000;102000;158000;153000;155000;156000;157000;159000;160000;160000;160000;160000;160000;150400;168000;168000;168000;168000;168000;168000;168000;112000;127000;127000;127000;127000;127000;127000;127000;127000;127000;127000;127000 -222;'788;Tunisia;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46800;40200;39000;8100;53600;41400;40000;36200;39500;29600;15800;16500;14000;14000;75412;75412;75412;75412;16902;13889;10997;10615;16789;11608;7041;5015;11219;3881;14024;897;2226;2445;428;1724 -222;'788;Tunisia;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10066;7815;8475;1382;11560;10248;8537;8280;8660;5690;2269;2706;2106;2106;6029;6029;6029;6029;5833;4884;4106;4237;4893;3516;1843;680;1415;802;5162;349;239;303;124;217 -222;'788;Tunisia;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;293;293;293;293;663;191;139;78;50;50;50;0;1;1;250;0;0;3;8494;144 -222;'788;Tunisia;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;28;28;28;28;1523;423;295;144;149;149;142;0;0;8;71;0;0;7;55;66 -222;'788;Tunisia;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23200;16000;18200;1200;27700;15700;17500;13700;14000;14000;200;200;0;0;10729;10729;10729;10729;1921;1145;1269;1766;1729;1345;442;132;132;254;537;424;0;210;205;0 -222;'788;Tunisia;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5585;3854;4387;286;6673;3782;4210;3953;3548;3548;127;127;0;0;1760;1760;1760;1760;1344;818;704;1081;673;585;122;91;60;138;181;201;0;81;105;0 -222;'788;Tunisia;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121;121;121;121;491;156;104;43;43;43;43;0;0;0;0;0;0;0;2;0 -222;'788;Tunisia;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;18;18;1513;414;286;135;135;135;135;0;0;0;0;0;0;0;0;0 -222;'788;Tunisia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23600;24200;20800;6900;25900;25700;22500;22500;25500;15600;15600;16300;14000;14000;64683;64683;64683;64683;14981;12744;9728;8849;15060;10263;6599;4883;11087;3627;13487;473;2226;2235;223;1724 -222;'788;Tunisia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4481;3961;4088;1096;4887;6466;4327;4327;5112;2142;2142;2579;2106;2106;4269;4269;4269;4269;4489;4066;3402;3156;4220;2931;1721;589;1355;664;4981;148;239;222;19;217 -222;'788;Tunisia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;172;172;172;172;172;35;35;35;7;7;7;0;1;1;250;0;0;3;8492;144 -222;'788;Tunisia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;10;10;10;10;10;9;9;9;14;14;7;0;0;8;71;0;0;7;55;66 -222;'788;Tunisia;1868;Sawlogs and veneer logs;5516;Production;m3;1000;1000;1000;1000;28000;16000;3000;20000;1000;4000;4000;5000;3000;13000;8000;4000;10000;3300;6100;6100;6100;3400;2300;3500;2300;7000;6000;11000;19000;15000;17000;6000;19000;20800;20800;20800;20800;20800;20800;20800;20800;20800;20800;20000;25000;25000;25000;25000;25000;25000;25000;41000;86000;86000;86000;86000;86000;86000;86000;86000;86000;86000;86000 -222;'788;Tunisia;1868;Sawlogs and veneer logs;5616;Import quantity;m3;;;;;;;;3000;20900;32900;32900;1100;1100;8800;37900;31100;20000;24000;20000;20000;6600;8900;8400;10400;10400;10400;10400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -222;'788;Tunisia;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;;;;;;;;143;801;1395;1395;20;59;1023;3637;3655;2400;2900;2400;3000;1477;2091;1675;1974;1974;1974;1974;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -222;'788;Tunisia;1868;Sawlogs and veneer logs;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -222;'788;Tunisia;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -222;'788;Tunisia;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;1000;1000;1000;1000;28000;16000;3000;20000;1000;4000;4000;5000;3000;13000;8000;4000;10000;3300;6100;6100;6100;3400;2300;3500;2300;7000;6000;11000;19000;15000;17000;6000;6000;6800;6800;6800;6800;6800;6800;6800;6800;6800;6800;6600;8000;8000;8000;8000;8000;8000;8000;39000;83000;83000;83000;83000;83000;83000;83000;83000;83000;83000;83000 -222;'788;Tunisia;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;;;;;;;;3000;20900;32900;32900;1100;1100;8800;37900;31100;20000;24000;20000;20000;6600;8900;8400;10400;10400;10400;10400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -222;'788;Tunisia;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;;;;;;;;143;801;1395;1395;20;59;1023;3637;3655;2400;2900;2400;3000;1477;2091;1675;1974;1974;1974;1974;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -222;'788;Tunisia;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -222;'788;Tunisia;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -222;'788;Tunisia;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;13400;17000;17000;17000;17000;17000;17000;17000;2000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000 -222;'788;Tunisia;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75000;75000;75000;75000;75000;75000;61000;75000;75000;75000;75000;75000;75000;75000;55000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000 -222;'788;Tunisia;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25000;25000;25000;25000;25000;25000;20000;20000;20000;20000;20000;20000;20000;20000;41000;72000;72000;72000;72000;72000;72000;72000;72000;72000;72000;72000 -222;'788;Tunisia;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50000;50000;50000;50000;50000;50000;41000;55000;55000;55000;55000;55000;55000;55000;14000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000 -222;'788;Tunisia;1870;Pulpwood and particles (1961-1997);5516;Production;m3;;;;;;;;5000;8000;12000;14000;12000;6000;22000;12000;12000;13000;10000;34000;34000;34000;26000;15000;36000;24000;29000;36000;35000;54000;53000;81000;39000;84000;75000;75000;75000;75000;;;;;;;;;;;;;;;;;;;;;;;;;; -222;'788;Tunisia;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;5000;8000;12000;14000;12000;6000;22000;12000;12000;13000;10000;34000;34000;34000;26000;15000;36000;24000;29000;36000;35000;54000;53000;33000;23000;27000;25000;25000;25000;25000;;;;;;;;;;;;;;;;;;;;;;;;;; -222;'788;Tunisia;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48000;16000;57000;50000;50000;50000;50000;;;;;;;;;;;;;;;;;;;;;;;;;; -222;'788;Tunisia;1871;Other industrial roundwood;5516;Production;m3;48000;49000;50000;51000;52000;53000;54000;55000;56000;57000;58000;59000;63000;64000;65000;66000;67000;67000;74000;75000;77000;81000;86000;92000;89000;87000;88000;86000;89500;98000;96000;91000;109000;111000;113000;114000;115000;117000;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 -222;'788;Tunisia;1871;Other industrial roundwood;5616;Import quantity;m3;16600;21600;14700;22900;23000;37000;24200;24200;24200;24200;27500;31800;13800;27800;38900;1100;17200;20900;17400;17400;27300;27300;19100;14800;14800;37400;37400;15800;9800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -222;'788;Tunisia;1871;Other industrial roundwood;5622;Import value;1000 USD;569;695;441;776;815;1392;1056;1056;1056;1056;1370;1663;1082;2627;5192;148;2387;2681;1618;1618;4440;4440;1852;1525;1525;5497;5497;1805;1259;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -222;'788;Tunisia;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;8000;8000;8000;7000;7000;5000;10000;10000;10000;12000;15000;19000;15000;11000;10000;7000;8500;15000;12000;5000;21000;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;22000;22000;22000 -222;'788;Tunisia;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;43000;44000;45000;46000;47000;48000;49000;50000;51000;52000;53000;54000;55000;56000;57000;59000;60000;62000;64000;65000;67000;69000;71000;73000;74000;76000;78000;79000;81000;83000;84000;86000;88000;89000;91000;92000;93000;95000;96000;96000;96000;96000;96000;96000;96000;96000;96000;96000;96000;96000;96000;96000;96000;96000;96000;96000;96000;96000;96000;96000;96000;96000;96000 -222;'788;Tunisia;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;16600;21600;14700;22900;23000;37000;24200;24200;24200;24200;27500;31800;13800;27800;38900;1100;17200;20900;17400;17400;27300;27300;19100;14800;14800;37400;37400;15800;9800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -222;'788;Tunisia;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;569;695;441;776;815;1392;1056;1056;1056;1056;1370;1663;1082;2627;5192;148;2387;2681;1618;1618;4440;4440;1852;1525;1525;5497;5497;1805;1259;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -222;'788;Tunisia;1630;Wood charcoal;5510;Production;t;89910;91384;92882;94405;95952;99625;105824;112349;112100;113179;104761;103264;107692;109443;111867;113057;116001;118191;120431;122455;125438;130957;134322;137248;140093;146681;149481;155323;160484;162628;166649;168565;173458;177672;182810;184946;188042;189874;191988;195188;197214;199261;201330;203420;205531;207025;208500;210000;211570;213108;214003;199000;204000;204000;204000;204000;204000;204000;204000;204000;219745;220045;220346 -222;'788;Tunisia;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;0;140;51;51;51;150;600;600;600;600;600;1;1;1;1;746;304;117;18;84;179;136;188;180;77;35;273;273;258;215;703 -222;'788;Tunisia;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;0;24;23;23;23;35;90;90;90;112;112;232;232;232;232;730;259;274;41;158;316;67;381;279;121;34;275;256;294;311;763 -222;'788;Tunisia;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;0;0;0;0;0;0;0;0;0;0;0;0;0;0;565;458;6;5;81;167;59;114;437;567;1009;1279;229;388;1598;1454 -222;'788;Tunisia;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1222;805;4;4;38;101;27;69;268;343;432;552;99;232;711;749 -222;'788;Tunisia;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000 -222;'788;Tunisia;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;100;100;100;100;100;1653;1653;1653;1653;169;65;278;103;519;914;417;176;80;103;86;28;34;37;25;20 -222;'788;Tunisia;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;5;5;5;5;5;81;81;81;81;338;76;144;111;230;393;25;173;87;133;38;29;31;29;58;70 -222;'788;Tunisia;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;1280;1318;1359;58;848;848;278;2551;5434;9198;188;50;41;41;40;40 -222;'788;Tunisia;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;116;117;127;14;90;90;97;467;1010;1617;60;3;7;7;5;5 -222;'788;Tunisia;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;200;1500;1500;0;0;0;0;0;0;1178;1178;1178;1178;153;50;147;58;55;334;156;102;41;53;31;11;7;10;16;11 -222;'788;Tunisia;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;27;112;112;0;0;0;0;0;0;62;62;62;62;326;60;70;87;47;171;9;138;60;79;23;16;16;14;14;26 -222;'788;Tunisia;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1279;1279;1279;9;2;2;23;13;2;20;20;1;1;1;0;0 -222;'788;Tunisia;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115;115;115;7;6;6;47;21;0;24;24;1;2;2;0;0 -222;'788;Tunisia;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000 -222;'788;Tunisia;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;204;151;242;44;800;800;300;100;100;100;100;100;475;475;475;475;16;15;131;45;464;580;261;74;39;50;55;17;27;27;9;9 -222;'788;Tunisia;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;5;8;3;31;31;21;5;5;5;5;5;19;19;19;19;12;16;74;24;183;222;16;35;27;54;15;13;15;15;44;44 -222;'788;Tunisia;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;44;0;0;0;0;0;0;0;0;0;0;0;0;1;39;80;49;846;846;255;2538;5432;9178;168;49;40;40;40;40 -222;'788;Tunisia;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;0;0;0;0;0;0;0;0;0;0;0;0;1;2;12;7;84;84;50;446;1010;1593;36;2;5;5;5;5 -222;'788;Tunisia;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1000;3000;6000;9000;9000;9000;9000;9000;9000;9000 -222;'788;Tunisia;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119;63;196;258;284 -222;'788;Tunisia;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;7;25;24;31 -222;'788;Tunisia;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;225;1841;5147;8726;8726;13869;4320;1512.06;2421;6066 -222;'788;Tunisia;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;42;347;965;1689;1689;2604;702;263;657;1375 -222;'788;Tunisia;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1000;3000;6000;9000;9000;9000;9000;9000;9000;9000 -222;'788;Tunisia;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;0;2;2 -222;'788;Tunisia;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;3;3;1;1 -222;'788;Tunisia;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;225;1841;5147;8726;8726;12847;4083;1482.06;1440;5574 -222;'788;Tunisia;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;42;347;965;1689;1689;2407;670;258;472;1279 -222;'788;Tunisia;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116;63;196;256;282 -222;'788;Tunisia;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;4;22;23;30 -222;'788;Tunisia;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1022;237;30;981;492 -222;'788;Tunisia;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;197;32;5;185;96 -222;'788;Tunisia;1872;Sawnwood;5516;Production;m3;2500;2500;4500;3500;3100;3100;19000;22000;18500;16000;16000;16000;2000;6000;3500;3000;3000;3000;3000;3000;3000;3000;3000;4000;6000;9000;11000;12000;20000;16000;16700;6200;19350;20400;20400;20400;20400;20400;20400;20400;20400;20400;20400;20400;20400;20400;20400;20400;20400;20400;20400;20000;20000;20000;20000;26632;26632;26632;26632;24309;24309;24309;24309 -222;'788;Tunisia;1872;Sawnwood;5616;Import quantity;m3;80000;71600;60600;97300;74500;81500;101800;67000;66100;72700;116200;82400;130300;166500;90651;216200;203200;243500;244500;244500;212200;315400;268300;315100;315100;294200;257500;259600;326900;307000;241600;329393;270748;382419;327495;298400;415600;391500;383600;466800;314900;311000;319200;385370;355870;453770;513000;440792;604326;1012300;495000;549895;587190;532335;371602;347025;303800;322697;188547;265403;311966;232841;251832 -222;'788;Tunisia;1872;Sawnwood;5622;Import value;1000 USD;3909;3516;3144;5479;4281;4863;5835;3821;3753;4669;8456;5756;11815;31392;16597;31435;34208;40716;40842;42642;47793;61133;46179;54947;54947;48983;43375;48431;71724;89474;58321;82864;48211;91728;86342;63472;98254;86558;59456;77997;49176;49959;61426;77032;69890;98469;150584;135035;146336;236447;151947;153447;121982;127192;80450;70595;67323;76335;56217;53139;82980;66144;57725 -222;'788;Tunisia;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1304;634;1076;517;172;180;400;150;150;50;0;0;1679;1679;1679;1679;446;358;339;1490;1280;1263;1288;169;244;420;141;2;121;8;8;2 -222;'788;Tunisia;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;639;306;747;151;94;74;126;33;33;30;0;0;511;511;511;511;695;499;417;891;698;841;718;149;172;241;174;3;147;13;37;3 -222;'788;Tunisia;1632;Sawnwood, coniferous;5516;Production;m3;1250;1250;1250;1250;1250;1250;17000;18500;15000;15500;15500;15500;1500;5500;3000;2500;2500;2500;2500;2500;2500;2500;2500;3500;5500;8500;10500;11500;19500;15500;4700;2200;5800;6800;6800;6800;6800;6800;6800;6800;6800;6800;6800;6800;6800;6800;6800;6800;6800;6800;6800;18000;18000;18000;18000;24632;24632;24632;24632;24309;24309;24309;24309 -222;'788;Tunisia;1632;Sawnwood, coniferous;5616;Import quantity;m3;78400;70250;60050;96050;73550;80050;99000;65550;64600;71950;114000;80200;127750;149750;79551;196800;188150;228450;230900;230900;184300;286500;234850;280550;280550;267950;231250;238400;266900;260000;234500;284232;244148;346500;292155;273200;373600;355300;375600;453200;299500;300000;308200;319600;290100;388000;393000;376600;536000;555000;434000;463526;511855;457000;340661;317855;282634;300262;147450;221893;257723;209328;225260 -222;'788;Tunisia;1632;Sawnwood, coniferous;5622;Import value;1000 USD;3813;3441;3055;5397;4225;4774;5672;3734;3668;4616;8299;5599;11595;27114;13788;27294;30675;37183;37546;39346;39502;52030;37485;46396;46396;43132;37524;43148;60254;75000;55800;66418;40188;77208;71434;54713;83578;74034;56372;73722;44610;46341;57808;56973;49831;78410;113379;96212;109449;122663;121187;121028;94166;99376;66098;58069;56929;65773;41908;38528;62835;57392;47044 -222;'788;Tunisia;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;353;353;744;500;100;100;0;0;0;0;0;0;0;0;0;0;3;233;233;1250;1250;1250;1250;0;74;242;0;0;16;6;6;0 -222;'788;Tunisia;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;196;196;538;136;35;35;0;0;0;0;0;0;0;0;0;0;10;313;313;652;652;652;652;0;29;69;0;0;28;12;0;0 -222;'788;Tunisia;1633;Sawnwood, non-coniferous;5516;Production;m3;1250;1250;3250;2250;1850;1850;2000;3500;3500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;12000;4000;13550;13600;13600;13600;13600;13600;13600;13600;13600;13600;13600;13600;13600;13600;13600;13600;13600;13600;13600;2000;2000;2000;2000;2000;2000;2000;2000;0;0;0;0 -222;'788;Tunisia;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;1600;1350;550;1250;950;1450;2800;1450;1500;750;2200;2200;2550;16750;11100;19400;15050;15050;13600;13600;27900;28900;33450;34550;34550;26250;26250;21200;60000;47000;7100;45161;26600;35919;35340;25200;42000;36200;8000;13600;15400;11000;11000;65770;65770;65770;120000;64192;68326;457300;61000;86369;75335;75335;30941;29170;21166;22435;41097;43510;54243;23513;26572 -222;'788;Tunisia;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;96;75;89;82;56;89;163;87;85;53;157;157;220;4278;2809;4141;3533;3533;3296;3296;8291;9103;8694;8551;8551;5851;5851;5283;11470;14474;2521;16446;8023;14520;14908;8759;14676;12524;3084;4275;4566;3618;3618;20059;20059;20059;37205;38823;36887;113784;30760;32419;27816;27816;14352;12526;10394;10562;14309;14611;20145;8752;10681 -222;'788;Tunisia;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;951;281;332;17;72;80;400;150;150;50;0;0;1679;1679;1679;1679;443;125;106;240;30;13;38;169;170;178;141;2;105;2;2;2 -222;'788;Tunisia;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;443;110;209;15;59;39;126;33;33;30;0;0;511;511;511;511;685;186;104;239;46;189;66;149;143;172;174;3;119;1;37;3 -222;'788;Tunisia;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;3000;3000;4000;5000;5000;5000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;0;0;0;4000;4000;4000;4000;4000;3958;3899;3899;3899 -222;'788;Tunisia;1634;Veneer sheets;5616;Import quantity;m3;100;100;200;100;100;200;200;200;200;300;100;1100;1100;1500;2500;2600;6400;5300;6400;6400;8300;11000;11400;18700;18700;10400;10400;14800;15000;6700;150;15967;14100;14814;12703;14000;11000;15000;1100;1100;1100;3000;10000;14041;14041;14041;16000;13316;6736;10607;7062;9506;5084;4543;4989;3884;3659;2632;3468;3088;2388;2633;2578 -222;'788;Tunisia;1634;Veneer sheets;5622;Import value;1000 USD;53;39;117;93;109;108;179;125;165;223;92;460;576;812;1239;1596;2736;3845;5234;5234;7200;7956;7855;10744;10744;7055;7055;10062;11514;4992;125;12932;14000;11041;10489;11107;6961;10510;830;792;792;2790;8000;10936;10936;10936;12049;19785;11878;16376;12540;11833;8278;8726;6917;5992;6558;5821;5742;5590;5806;5305;5174 -222;'788;Tunisia;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;0;0;178;100;180;100;100;0;0;200;200;1524;1524;1524;1524;2051;731;544;14;4;3;42;42;15;14;28;39;25;42;42;0 -222;'788;Tunisia;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112;0;0;229;128;192;167;115;0;0;220;220;1201;1201;1201;1201;13237;3702;1913;86;25;35;43;54;32;28;115;165;149;344;331;0 -222;'788;Tunisia;1873;Wood-based panels;5516;Production;m3;;;;;;;;2400;9000;6700;7700;12800;14900;13500;22000;29000;29500;33700;39000;40000;47000;64000;73000;60000;80000;81000;82000;92000;93000;93000;93000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;100000;60000;60000;60000;98500;112500;112500;112500;112500;112500;112500;112500;112500 -222;'788;Tunisia;1873;Wood-based panels;5616;Import quantity;m3;3100;3600;4300;4800;4800;7927;7016;3816;705;1105;2105;711;405;11032;7548;6627;5500;5900;10800;10800;9500;5800;5800;1500;1500;600;600;1100;800;700;500;4369;5866;49005;20037;23268;15968;20000;15400;23900;16300;36600;36600;69499;69499;72407;34361;88457;90425;125402;84511;223477;207285;148960;146150;162459;198568;202818;217566;232228;245416.84;270227;194413 -222;'788;Tunisia;1873;Wood-based panels;5622;Import value;1000 USD;579;606;777;1046;876;1238;895;549;134;248;418;153;135;3153;1884;1000;907;1214;2062;2062;1903;1067;1096;451;451;303;303;468;374;366;298;1083;923;15333;5564;8901;4361;4719;1969;3974;4954;5070;5070;13063;13063;15014;9315;27721;27060;35999;45922;54720;49972;63796;55009;60029;74547;76710;59104;61327;80933.06;116616;80137 -222;'788;Tunisia;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;884;2903;2990;4864;4784;3830;3000;1000;200;100;300;300;20734;20734;23159;6586;5246;9378;7314;6122;1959;2623;1264;4309;4994;12971;11470;11304;5487;10851.14;4134;3987 -222;'788;Tunisia;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;836;1619;1176;2311;2308;1234;1002;592;319;210;410;410;4291;4291;4252;2366;2838;6432;4567;2288;1422;1827;2738;3567;4422;8833;6636;6357;3961;5986.43;3158;3308 -222;'788;Tunisia;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;2000;3900;2500;4000;10000;10500;11500;13000;14000;18000;24000;18000;22000;27000;27000;27000;26000;26000;26000;26000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;4000;4000;4000;30000;30000;30000;30000;30000;30000;30000;30000;30000 -222;'788;Tunisia;1640;Plywood and LVL;5616;Import quantity;m3;2600;2900;3500;4000;3700;5300;3000;1500;400;800;1800;300;100;3300;1400;100;200;200;300;300;100;100;100;100;100;100;100;100;100;100;100;227;143;39174;13202;19800;6800;6800;200;4800;1900;800;800;2787;2787;2787;2787;1213;1143;1133;1828;2233;1602;2593;6573;3643;7444;5937;4467;6809;3414;15315;5656 -222;'788;Tunisia;1640;Plywood and LVL;5622;Import value;1000 USD;514;537;693;932;754;1033;590;307;102;216;378;105;63;1844;853;98;77;78;135;135;57;57;86;86;86;86;86;86;86;86;86;302;171;13725;4308;8122;2734;2734;189;1643;608;396;396;989;989;989;989;1895;1698;1522;2696;1977;1392;4041;3230;2261;4346;4505;3032;2587;2272;4703;7936 -222;'788;Tunisia;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;881;2900;2470;480;400;3000;2300;300;200;100;300;300;1554;1554;1554;1554;386;2931;1498;346;284;203;158;1537;372;3507;2549;3524;425;335;15;91 -222;'788;Tunisia;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;835;1618;1020;265;262;927;677;267;319;210;410;410;510;510;510;510;508;4261;3062;827;303;291;940;1163;188;1469;1526;1652;1106;869;130;212 -222;'788;Tunisia;1646;Particle board and OSB (1961-1994);5516;Production;m3;;;;;;;;2400;9000;6700;7700;10800;11000;11000;13000;14000;14000;17200;21000;21000;24000;35000;50000;33000;48000;49000;50000;51000;52000;52000;52000;55000;55000;55000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -222;'788;Tunisia;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;200;300;500;500;700;2100;3700;2000;200;200;200;200;200;7100;5200;6000;3100;3500;8700;8700;9000;5300;5300;100;100;100;100;100;100;100;100;3708;5246;9510;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -222;'788;Tunisia;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;23;30;49;49;76;135;245;219;24;24;24;24;63;1126;820;816;517;823;1632;1632;1732;896;896;86;86;86;86;86;86;86;86;616;559;1474;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -222;'788;Tunisia;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;520;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -222;'788;Tunisia;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;156;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -222;'788;Tunisia;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55000;55000;55000;55000;55000;55000;55000;55000;55000;55000;55000;55000;55000;55000;55000;55000;55000;23000;23000;23000;8500;7500;7500;7500;7500;7500;7500;7500;7500 -222;'788;Tunisia;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6082;3000;8300;11300;13300;17400;2100;15000;15000;22693;22693;22693;6875;12599;9028;3420;7808;19353;20117;21659;23156;18032;23521;29239;24468;29513;22374.47;34899;31865 -222;'788;Tunisia;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;942;552;1247;1486;1281;1931;2635;2013;2013;3721;3721;3721;1102;5081;3614;2410;3817;4815;4578;6127;5311;4383;5735;7687;6176;6446;6551.45;12331;9369 -222;'788;Tunisia;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4354;4354;800;700;700;0;0;0;0;16002;16002;18427;1854;2634;4174;5700;5700;908;608;523;443;916;1041;1041;1341;528;2119.33;507;1166 -222;'788;Tunisia;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1994;1994;255;325;325;0;0;0;0;2705;2705;2666;780;1243;1092;1331;1331;746;794;590;396;818;765;765;660;364;893;339;581 -222;'788;Tunisia;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125;125;125;125;404;4;5;16;574;215;560;720;743;682;721;878;1126;370;1117;1167 -222;'788;Tunisia;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;21;21;217;6;8;16;178;70;190;468;194;288;340;248;290;130;410;382 -222;'788;Tunisia;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -222;'788;Tunisia;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -222;'788;Tunisia;1874;Fibreboard;5516;Production;m3;;;;;;;;;;;;;;;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;33000;33000;33000;60000;75000;75000;75000;75000;75000;75000;75000;75000 -222;'788;Tunisia;1874;Fibreboard;5616;Import quantity;m3;300;400;300;300;400;527;316;316;105;105;105;211;105;632;948;527;2200;2200;1800;1800;400;400;400;1300;1300;400;400;900;600;500;300;434;477;321;753;468;868;1900;1900;1700;12300;20800;20800;43894;43894;46802;24574;74241;80250;120844;74859;201317;185351;124148;115701;140041;166921;166921;187753;194780;219258.37;218896;155725 -222;'788;Tunisia;1874;Fibreboard;5622;Import value;1000 USD;42;39;35;65;46;70;60;23;8;8;16;24;9;183;211;86;313;313;295;295;114;114;114;279;279;131;131;296;202;194;126;165;193;134;314;227;380;499;499;400;1711;2661;2661;8332;8332;10283;7203;20528;21742;32059;39393;47750;43932;53438;46000;53191;64178;64178;49648;52004;71979.6;99172;62450 -222;'788;Tunisia;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;30;30;30;0;0;0;0;0;0;3178;3178;3178;3178;2226;2273;116;76;767;1812;583;2329;3706;8423;7880;6439;4534;8396.81;3612;2730 -222;'788;Tunisia;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;52;52;52;0;0;0;0;0;0;1076;1076;1076;1076;1087;1079;174;130;373;742;1208;2008;3416;6599;4345;4045;2491;4224.43;2689;2515 -222;'788;Tunisia;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15000;15000;15000;15000;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 -222;'788;Tunisia;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;559;300;700;800;800;600;400;1300;1300;4533;4533;5765;3835;479;452;539;902;768;1124;1251;1445;1536;1485;1485;1090;359;570;545;305 -222;'788;Tunisia;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;252;175;328;352;352;219;166;306;306;2103;2103;2103;1946;386;409;793;1081;797;1009;1396;1147;1082;1102;1102;736;338;480;503;321 -222;'788;Tunisia;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30;30;0;0;0;0;0;0;2130;2130;2130;2130;2130;2130;3;3;20;20;64;15;104;104;104;104;66;66;104;104 -222;'788;Tunisia;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;52;52;0;0;0;0;0;0;860;860;860;860;860;860;6;6;12;12;390;65;669;669;669;669;33;33;263;263 -222;'788;Tunisia;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15000;15000;15000;33000;33000;33000;60000;75000;75000;75000;75000;75000;75000;75000;75000 -222;'788;Tunisia;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;15;15;0;0;0;8200;16000;16000;27955;27955;40092;19998;71668;78252;119068;73626;199322;183207;122881;114139;138069;165139;165139;186044;194279;218376.37;218018;155070 -222;'788;Tunisia;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;4;4;0;0;0;1173;2121;2121;4780;4780;7926;4971;19443;20695;30811;37900;46600;42686;52020;44712;51863;62814;62814;48758;51627;71421.6;98614;62046 -222;'788;Tunisia;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;594;594;594;594;83;98;83;43;717;1762;464;2254;3498;8317;7774;6327;4452;8328.81;3442;2625 -222;'788;Tunisia;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;144;144;144;144;174;121;98;54;291;660;576;1589;2161;5920;3674;3363;2450;4187.43;2418;2247 -222;'788;Tunisia;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;0;0;128;153;153;1100;1100;1100;3700;3500;3500;11406;11406;945;741;2094;1546;1237;331;1227;1020;16;117;436;297;297;619;142;312;333;350 -222;'788;Tunisia;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;0;0;36;48;48;147;147;181;372;234;234;1449;1449;254;286;699;638;455;412;353;237;22;141;246;262;262;154;39;78;55;83 -222;'788;Tunisia;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;454;454;454;454;13;45;30;30;30;30;55;60;104;2;2;8;16;2;66;1 -222;'788;Tunisia;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;72;72;72;72;53;98;70;70;70;70;242;354;586;10;2;13;8;4;8;5 -222;'788;Tunisia;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;;;;;;;;;;;;;;;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;15000;15000;15000;15000;15000;15000;15000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -222;'788;Tunisia;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;300;400;300;300;400;527;316;316;105;105;105;211;105;632;948;527;2200;2200;1800;1800;400;400;400;1300;1300;400;400;900;600;500;300;403;477;321;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -222;'788;Tunisia;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;42;39;35;65;46;70;60;23;8;8;16;24;9;183;211;86;313;313;295;295;114;114;114;279;279;131;131;296;202;194;126;154;193;134;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -222;'788;Tunisia;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -222;'788;Tunisia;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -222;'788;Tunisia;1879;Total fibre furnish;5510;Production;t;;;;10500;13300;21600;21600;20000;21000;21900;24000;32000;33000;33000;30000;31000;30000;31000;31000;31000;33000;34000;30000;25000;29000;29000;30000;43000;25000;29000;22700;23000;23000;23000;23000;23000;27000;25000;25000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;50000;42000;42000;42000;42000;42000;42000;42000;42000;42000;42000;42000;42000 -222;'788;Tunisia;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;8900;2100;1000;8300;8700;3500;6400;6400;9800;5400;5400;27800;8200;15100;17500;20300;17600;32000;43700;39100;39900;31800;66822;24762;54273;72668;61700;69800;85100;37100;52500;41500;55400;55400;108017;108017;108017;120720;152949;91343;113615;106863;144932;137765;92028;164937;182976;154663;132328;191647;109280;134975.12;148899;135671 -222;'788;Tunisia;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;1670;162;162;1725;3249;1155;2180;2180;3609;1992;1992;7600;2236;4804;7595;8729;7003;14510;17319;16495;16984;16616;32338;8532;21982;47079;25072;28979;24785;15050;28290;15367;20584;20584;41837;41837;41837;70897;88699;45627;80293;75887;80030;74694;54809;90547;80993;74630;72338;86082;48054;81402.74;126685;89857 -222;'788;Tunisia;1879;Total fibre furnish;5910;Export quantity;t;;;;8900;11600;19700;19700;18200;20800;18500;19100;16900;15700;14600;14600;12800;16200;18500;14300;14300;12800;9800;12600;7200;9500;9500;9500;15800;6700;7600;7700;7666;5713;8659;7471;9700;9700;10100;10650;11150;8800;7700;11069;13588;13588;13588;13588;9868;5655;13579;12660;7803;9503;8553;10450;9027;12948;11823;5022;4872;5692.11;7195;5950 -222;'788;Tunisia;1879;Total fibre furnish;5922;Export value;1000 USD;;;;1501;2048;3430;3485;3229;3535;3589;3626;3312;4378;4063;4398;5653;6462;7678;7712;7712;6718;5371;6690;4096;5415;5415;5415;11183;6546;8575;8688;8928;6376;8822;10496;11690;11641;10238;10567;10977;8837;8063;13037;14447;14447;14447;14447;14268;6152;7145;8345;4873;4138;4642;3263;4635;4440;3502;950;1785;2232;4107;2566 -222;'788;Tunisia;1878;Pulp for paper;5510;Production;t;;;;10500;13300;21600;21600;20000;21000;18900;21000;22000;23000;23000;21000;22000;21000;22000;22000;22000;21000;20000;18000;11000;15000;17000;17000;25000;20000;18000;11700;12000;12000;12000;12000;12000;16000;14000;14000;12000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000 -222;'788;Tunisia;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;8900;2100;1000;8300;8700;3500;6400;6400;9800;5400;5400;27800;8200;15100;17500;20300;15600;29000;29000;29000;29000;27900;61922;20562;42939;60061;49700;57800;53500;34900;47800;37000;50900;50900;96850;96850;96850;105620;136912;75997;101860;96669;125083;113566;78134;140142;139080;110635;88300;119283;83835;95946.57;114959;103588 -222;'788;Tunisia;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;1670;162;162;1725;3249;1155;2180;2180;3609;1992;1992;7600;2236;4804;7595;8729;6681;14000;14500;14500;14500;15731;31230;7590;20495;44058;23039;26946;23592;14675;27307;14408;19625;19625;40597;40597;40597;67517;85066;42505;78011;72452;75019;69185;51942;86514;73512;67352;65060;71704;43246;73344.21;117134;81512 -222;'788;Tunisia;1878;Pulp for paper;5910;Export quantity;t;;;;8900;11600;19700;19700;18200;20800;18500;19100;16900;15700;14600;14600;12800;16200;18500;14300;14300;12800;9800;12600;7200;9500;9500;9500;15800;6700;7600;7700;7666;5713;8659;7471;9700;9700;10100;10650;11150;8800;7700;11069;12232;12232;12232;12232;7762;3510;3949;3782;3224;2292;1702;1871;2918;1889;764;480;1442;1442;2346;1594 -222;'788;Tunisia;1878;Pulp for paper;5922;Export value;1000 USD;;;;1501;2048;3430;3485;3229;3535;3589;3626;3312;4378;4063;4398;5653;6462;7678;7712;7712;6718;5371;6690;4096;5415;5415;5415;11183;6546;8575;8688;8928;6376;8822;10496;11690;11641;10238;10567;10977;8837;8063;13037;14313;14313;14313;14313;13844;5642;5246;6445;4072;2869;3282;1926;3669;2092;1154;368;1286;1286;2937;1835 -222;'788;Tunisia;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;8900;2100;1000;8300;8700;3500;6400;6400;9800;5400;5400;27800;8200;15100;17500;20300;15600;29000;29000;29000;29000;27900;61971;31842;42939;60061;50700;58800;55200;35500;48400;37600;50900;50900;96440;96440;96440;105210;136934;76060;101802;96636;125076;113559;78137;140165;139102;110657;88267;119668;84220;96331.57;115344;103952 -222;'788;Tunisia;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;1670;162;162;1725;3249;1155;2180;2180;3609;1992;1992;7600;2236;4804;7595;8729;6681;14000;14500;14500;14500;15731;31277;12393;20495;44058;23499;27406;24681;15024;27656;14757;19625;19625;40268;40268;40268;67188;84882;42447;77887;72383;75004;69170;51950;86530;73524;67364;64972;71987;43527;73626.21;117414;81720 -222;'788;Tunisia;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;714;1113;2003;200;200;200;400;150;450;300;500;500;5089;5089;5089;5089;131;115;1381;1091;867;419;347;444;37;589;634;438;1450;1450;2344;1592 -222;'788;Tunisia;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;756;1007;1964;244;205;156;379;136;398;254;574;574;2096;2096;2096;2096;268;229;1338;2079;1532;755;683;564;52;405;349;292;1300;1300;2935;1833 -222;'788;Tunisia;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;416;416;209;104;0;306;208 -222;'788;Tunisia;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;159;159;92;47;0;170;160 -222;'788;Tunisia;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108;1120;1120;1120;1120 -222;'788;Tunisia;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113;1121;1121;1121;1121 -222;'788;Tunisia;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7700;752;0;400;900;900;0;0;0;0;0;0;981;981;981;981;663;513;702;184;366;232;242;468;520;;;;;;; -222;'788;Tunisia;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2513;218;0;292;583;583;0;0;0;0;0;0;326;326;326;326;388;275;345;95;168;113;116;187;202;;;;;;; -222;'788;Tunisia;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;0;0;0;0;0;0;;;;;;; -222;'788;Tunisia;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;0;0;0;0;0;0;;;;;;; -222;'788;Tunisia;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;203;200;1200;1600;400;400;0;0;0;0;0;0;217;217;217;217;217;217;217;217;217;217;0;0;0;;;;;;; -222;'788;Tunisia;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;115;569;803;210;210;0;0;0;0;0;0;86;86;86;86;86;86;86;86;86;86;0;0;0;;;;;;; -222;'788;Tunisia;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;8900;2100;1000;8300;8700;3500;6400;6400;9800;5400;5400;27800;8200;15100;17500;20300;15600;29000;29000;29000;29000;27900;54019;19610;41739;58061;48400;56500;53500;34900;47800;37000;50900;50900;95230;95230;95230;104000;135914;75190;100882;96231;124489;113106;77891;139672;138557;110216;87826;119074;83731;95946.57;114653;103359 -222;'788;Tunisia;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;1670;162;162;1725;3249;1155;2180;2180;3609;1992;1992;7600;2236;4804;7595;8729;6681;14000;14500;14500;14500;15731;28617;7257;19926;42963;22246;26153;23592;14675;27307;14408;19625;19625;39848;39848;39848;66768;84360;42038;77450;72190;74738;68959;51822;86324;73303;67186;64794;71612;43197;73343.21;116961;81277 -222;'788;Tunisia;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;714;1113;2003;200;200;200;400;150;450;300;500;500;5089;5089;5089;5089;109;104;1370;1080;856;408;336;433;26;578;623;319;319;319;1223;471 -222;'788;Tunisia;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;756;1007;1964;244;205;156;379;136;398;254;574;574;2096;2096;2096;2096;222;208;1317;2058;1511;734;662;543;31;384;328;158;158;158;1809;707 -222;'788;Tunisia;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;7500;5000;5800;2000;3000;3000;3000;3000;3000;20350;5319;17649;22596;15900;17800;13000;10200;17000;17000;17000;17000;16366;16366;16366;16600;41834;9559;13760;18930;20452;20452;3906;24656;18534;9046;9046;19076;22;23;17527;12349 -222;'788;Tunisia;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;2068;2079;2389;822;1200;1200;1200;1200;1113;9322;1388;7263;12814;5476;5616;4426;3199;6140;6140;6140;6140;5810;5810;5810;6952;15361;2643;6594;8805;7276;7276;2497;10369;7143;4997;4997;8837;12;14;12314;7198 -222;'788;Tunisia;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;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 -222;'788;Tunisia;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;45;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -222;'788;Tunisia;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;8900;2100;1000;8300;8700;3500;6400;6400;9800;5400;5400;27800;8200;7600;12500;14500;13600;26000;26000;26000;26000;14600;25505;9064;14614;26305;28100;30000;30200;24200;29300;20000;33900;33900;64002;64002;64002;74600;79713;51888;71458;64147;88409;77105;58705;101279;107526;91200;68810;90941;74343;89029.76;91291;83272 -222;'788;Tunisia;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;1670;162;162;1725;3249;1155;2180;2180;3609;1992;1992;7600;2236;2736;5516;6340;5859;12800;13300;13300;13300;8255;14047;2945;7453;24638;14023;15357;13483;11205;19817;8268;13485;13485;27009;27009;27009;50118;56704;28914;57374;50970;54483;49555;37162;64849;57168;55485;53093;55366;37131;66546.13;97277;64088 -222;'788;Tunisia;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;714;1089;404;0;0;0;0;0;300;300;500;500;1663;1663;1663;1663;100;100;1270;1008;784;336;336;347;26;578;623;319;319;319;1223;471 -222;'788;Tunisia;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;756;981;331;0;0;0;0;0;262;254;574;574;667;667;667;667;186;186;1226;1986;1439;662;662;471;31;384;328;158;158;158;1809;707 -222;'788;Tunisia;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9970;9970;9057;9366;6893.81;5835;7738 -222;'788;Tunisia;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6704;6704;7409;6054;6783.08;7370;9991 -222;'788;Tunisia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5200;2974;2974;3078;660;100;200;100;0;0;0;0;0;7;7;7;;;;;;;;;;;;;;;;; -222;'788;Tunisia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2922;1586;1586;1327;411;50;80;70;0;0;0;0;0;2;2;2;;;;;;;;;;;;;;;;; -222;'788;Tunisia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5100;5190;2253;6398;8500;4300;8500;10200;500;1500;0;0;0;14855;14855;14855;12800;14367;13743;15664;13154;15628;15549;15280;13737;12497;;;;;;; -222;'788;Tunisia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3441;3662;1338;3883;5100;2697;5100;5613;271;1350;0;0;0;7027;7027;7027;9698;12295;10481;13482;12415;12979;12128;12163;11106;8992;;;;;;; -222;'788;Tunisia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1559;200;200;200;400;150;150;0;0;0;3426;3426;3426;3426;9;4;100;72;72;72;0;86;0;;;;;;; -222;'788;Tunisia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1588;244;205;156;379;136;136;0;0;0;1429;1429;1429;1429;36;22;91;72;72;72;0;72;0;;;;;;; -222;'788;Tunisia;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;11280;0;0;1000;1000;1700;600;600;600;0;0;12;12;12;12;140;140;1;4;4;4;4;25;25;25;25;385;385;385;385;385 -222;'788;Tunisia;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;4803;0;0;460;460;1089;349;349;349;0;0;8;8;8;8;48;48;6;12;12;12;12;19;19;19;19;283;283;283;283;283 -222;'788;Tunisia;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;22;11;11;11;11;11;11;11;11;11;11;11;11;11;1;1 -222;'788;Tunisia;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;46;21;21;21;21;21;21;21;21;21;21;21;21;21;5;5 -222;'788;Tunisia;1668;Pulp from fibres other than wood;5510;Production;t;;;;10500;13300;21600;21600;20000;21000;18900;21000;22000;23000;23000;21000;22000;21000;22000;22000;22000;21000;20000;18000;11000;15000;17000;17000;25000;20000;18000;11700;12000;12000;12000;12000;12000;16000;14000;14000;12000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000 -222;'788;Tunisia;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;422;422;422;422;118;77;59;37;11;11;1;2;3;3;58;0;0;0;0;21 -222;'788;Tunisia;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;337;337;337;337;232;106;130;81;27;27;4;3;7;7;107;0;2;1;3;75 -222;'788;Tunisia;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;8900;11600;19700;19700;18200;20800;18500;19100;16900;15700;14600;14600;12800;16200;18500;14300;14300;12800;9800;12600;7200;9500;9500;9500;15800;6700;7600;7700;6952;4600;6656;7271;9500;9500;9700;10500;10700;8500;7200;10569;7143;7143;7143;7143;7653;3406;2579;2702;2368;1884;1366;1438;2892;1311;141;53;3;3;3;3 -222;'788;Tunisia;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;1501;2048;3430;3485;3229;3535;3589;3626;3312;4378;4063;4398;5653;6462;7678;7712;7712;6718;5371;6690;4096;5415;5415;5415;11183;6546;8575;8688;8172;5369;6858;10252;11485;11485;9859;10431;10579;8583;7489;12463;12217;12217;12217;12217;13622;5434;3929;4387;2561;2135;2620;1383;3638;1708;826;97;7;7;7;7 -222;'788;Tunisia;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121;121;121;121;387;403;168;157;48;63;63;50;1;4;4;0;0;27;5;1 -222;'788;Tunisia;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97;97;97;97;270;255;173;145;33;56;56;38;1;3;3;0;0;13;1;1 -222;'788;Tunisia;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -222;'788;Tunisia;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -222;'788;Tunisia;1669;Recovered paper;5510;Production;t;;;;;;;;;;3000;3000;10000;10000;10000;9000;9000;9000;9000;9000;9000;12000;14000;12000;14000;14000;12000;13000;18000;5000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;38000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000 -222;'788;Tunisia;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;2000;3000;14700;10100;10900;3900;4900;4200;11334;12607;12000;12000;31600;2200;4700;4500;4500;4500;11167;11167;11167;15100;16037;15346;11755;10194;19849;24199;13894;24795;43896;44028;44028;72364;25445;39028.55;33940;32083 -222;'788;Tunisia;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;322;510;2819;1995;2484;885;1108;942;1487;3021;2033;2033;1193;375;983;959;959;959;1240;1240;1240;3380;3633;3122;2282;3435;5011;5509;2867;4033;7481;7278;7278;14378;4808;8058.52;9551;8345 -222;'788;Tunisia;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;1356;1356;1356;1356;2106;2145;9630;8878;4579;7211;6851;8579;6109;11059;11059;4542;3430;4250.11;4849;4356 -222;'788;Tunisia;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;134;134;134;134;424;510;1899;1900;801;1269;1360;1337;966;2348;2348;582;499;946;1170;731 -222;'788;Tunisia;1876;Paper and paperboard;5510;Production;t;5000;3700;4400;4400;4800;4800;4800;4800;4000;3900;12000;14000;21000;22000;15000;17000;21000;21000;21000;25000;24000;26000;30000;28000;48000;53000;59000;70000;82000;78000;72000;71000;80000;92000;90000;90000;97000;105000;108000;132000;138000;143000;118000;132000;131900;131600;131600;131600;131600;131600;131600;127000;123000;138000;148000;148000;148000;148000;148000;148000;148000;163000;163000 -222;'788;Tunisia;1876;Paper and paperboard;5610;Import quantity;t;16700;14400;15200;19500;17800;18700;20000;22100;24600;23700;18200;22500;16800;28600;29100;10700;21200;26200;32800;32800;37200;41800;36700;62650;63355;59200;59200;50123;52314;74443;84600;88468;58334;80526;80111;67300;96300;87743;87225;102428;129547;106336;141976;214513;214513;214513;261841;193381;185157;210714;205500;161798;236250;231881;184548;236409;181872;199598;193107;199038;175053.13;240398;171603 -222;'788;Tunisia;1876;Paper and paperboard;5622;Import value;1000 USD;3567;3168;3473;4884;3667;3728;3873;4672;5828;5535;4531;6017;5557;16800;16839;7355;9700;12600;20956;20956;22028;19100;16540;38550;38866;40555;40555;36055;39086;72297;88445;74112;46661;61718;78233;54674;76171;57819;51810;73339;85758;72151;84470;160240;160240;160240;201916;238281;211669;243879;267599;128273;181510;227211;129333;221329;146705;181792;166213;162897;145085.52;262491;182994 -222;'788;Tunisia;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3109;182;5687;5050;2970;7000;4905;4359;5020;2519;4059;4078;52376;52376;52376;57442;25202;21721;26336;23550;21799;28792;31960;43672;48736;61094;18793;38396;41903;52140.5;75091;70824 -222;'788;Tunisia;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2474;194;4616;4479;2712;5425;3913;2480;2525;1527;2351;2589;51664;51664;51664;57610;32865;26651;35190;32808;23130;28470;40022;47255;47320;59176;21345;40281;40521;48317.26;106505;88582 -222;'788;Tunisia;2042;Graphic papers;5510;Production;t;;;;;;;;;;;12000;14000;21000;22000;15000;17000;21000;21000;21000;18000;17000;19000;22000;23000;26000;22000;23000;24000;28000;29000;23000;28000;36000;39000;33000;33000;34000;36000;38000;38000;38000;21000;24000;23000;22900;22600;22600;22600;22600;22600;22600;18000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000 -222;'788;Tunisia;2042;Graphic papers;5610;Import quantity;t;800;500;;;400;;;500;500;;500;;400;3500;2900;2900;5000;10000;16600;16600;6200;8300;12300;11000;14600;12600;12600;14097;18425;18523;12500;24894;15900;30578;26240;23100;37400;35800;34500;36800;47900;33400;40400;65148;65148;65148;85266;74913;73610;87631;74475;48578;63021;75229;72825;79235;79540;86765;82755;79303;62060.01;101303;61220 -222;'788;Tunisia;2042;Graphic papers;5622;Import value;1000 USD;110;76;;;49;;;66;70;;90;;68;1685;1431;1431;2474;5374;13730;13730;4176;5500;6608;5494;7663;8209;8209;12630;17322;18757;10799;21474;12993;23834;27514;19917;32750;28982;24228;30183;33798;18486;22386;45668;45668;45668;65767;78360;68720;82929;80928;39929;53209;65961;58184;65227;65327;82178;74635;67137;56838.52;107897;76741 -222;'788;Tunisia;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;379;0;2181;1450;670;1200;1900;1400;100;50;0;0;3946;3946;3946;3946;3065;578;1298;2104;201;74;379;290;930;228;144;149;144;171;95;270 -222;'788;Tunisia;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;435;0;2520;1730;864;1724;2354;600;123;47;0;0;2996;2996;2996;2996;2647;441;1428;2050;244;158;483;420;838;261;158;298;161;156;141;326 -222;'788;Tunisia;1671;Newsprint;5610;Import quantity;t;800;500;;;400;;;500;500;;500;;400;3500;2900;2900;5000;5000;5500;5500;5000;7000;9100;8100;9900;9300;9300;8400;10300;11100;10200;13400;5800;15800;16600;13000;13000;16900;11400;12000;21000;17000;17000;20546;20546;20546;19900;19723;17374;21712;15051;18420;13792;10447;15576;11056;10152;8676;7925;5780;5615.75;5096;4959 -222;'788;Tunisia;1671;Newsprint;5622;Import value;1000 USD;110;76;;;49;;;66;70;;90;;68;1685;1431;1431;2474;2474;3865;3865;2986;4200;3949;3087;3762;4536;4536;5964;7530;8147;7131;7758;2614;8619;12913;9078;9078;10214;5214;6995;14094;6656;6656;10477;10477;10477;14149;15355;12935;14432;11233;12660;9336;6140;8317;5986;5195;5264;4792;2726;2958.09;4027;3564 -222;'788;Tunisia;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;181;800;500;500;0;0;0;0;0;0;82;82;82;82;178;178;1;1;1;0;0;0;0;24;24;24;24;24;24;24 -222;'788;Tunisia;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;187;966;658;658;0;0;0;0;0;0;39;39;39;39;132;132;9;9;3;0;0;0;0;15;15;15;15;15;15;15 -222;'788;Tunisia;1674;Printing and writing papers;5510;Production;t;;;;;;;;;;;12000;14000;21000;22000;15000;17000;21000;21000;21000;18000;17000;19000;22000;23000;26000;22000;23000;24000;28000;29000;23000;28000;36000;39000;33000;33000;34000;36000;38000;38000;38000;21000;24000;23000;22900;22600;22600;22600;22600;22600;22600;18000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000 -222;'788;Tunisia;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;5000;11100;11100;1200;1300;3200;2900;4700;3300;3300;5697;8125;7423;2300;11494;10100;14778;9640;10100;24400;18900;23100;24800;26900;16400;23400;44602;44602;44602;65366;55190;56236;65919;59424;30158;49229;64782;57249;68179;69388;78089;74830;73523;56444.26;96207;56261 -222;'788;Tunisia;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;2900;9865;9865;1190;1300;2659;2407;3901;3673;3673;6666;9792;10610;3668;13716;10379;15215;14601;10839;23672;18768;19014;23188;19704;11830;15730;35191;35191;35191;51618;63005;55785;68497;69695;27269;43873;59821;49867;59241;60132;76914;69843;64411;53880.43;103870;73177 -222;'788;Tunisia;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;379;0;2000;650;170;700;1900;1400;100;50;0;0;3864;3864;3864;3864;2887;400;1297;2103;200;74;379;290;930;204;120;125;120;147;71;246 -222;'788;Tunisia;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;435;0;2333;764;206;1066;2354;600;123;47;0;0;2957;2957;2957;2957;2515;309;1419;2041;241;158;483;420;838;246;143;283;146;141;126;311 -222;'788;Tunisia;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36000;38000;38000;38000;21000;24000;23000;22900;22600;22600;22600;22600;22600;22600;18000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000 -222;'788;Tunisia;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1067;1304;1400;800;2000;2000;2966;2966;2966;2966;1927;733;1195;2425;478;379;2858;1529;1342;565;565;739;1032;491;1215;612 -222;'788;Tunisia;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1011;1024;1249;642;1331;1331;2342;2342;2342;2342;2117;732;1316;2269;490;482;2448;1116;805;435;435;644;742;528;1379;757 -222;'788;Tunisia;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;6;11;10;56;56;107;88;21;12;12;1;18;43;27;27 -222;'788;Tunisia;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;12;19;18;126;126;219;187;24;14;14;2;25;38;34;34 -222;'788;Tunisia;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9145;11177;12000;16100;8000;15000;21115;21115;21115;37800;34062;38352;39991;36835;27796;27796;43611;36639;48019;45763;45109;51065;54406;37769;74737;39957 -222;'788;Tunisia;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8463;8574;10456;10887;7000;10900;16660;16660;16660;29864;38816;37199;42296;44858;24016;24016;39731;32280;42613;40512;47117;48482;47582;35763;75185;50735 -222;'788;Tunisia;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1900;1400;100;50;0;0;3508;3508;3508;3508;1850;19;921;198;15;15;83;169;788;100;25;94;69;39;16;104 -222;'788;Tunisia;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2354;600;123;47;0;0;2686;2686;2686;2686;1668;25;927;213;24;24;107;212;599;142;41;104;81;24;43;153 -222;'788;Tunisia;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8688;10619;11400;10000;6400;6400;20521;20521;20521;24600;19201;17151;24733;20164;1884;21054;18313;19081;18818;23060;32415;23026;18085;18184.26;20255;15692 -222;'788;Tunisia;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9294;9416;11483;8175;3499;3499;16189;16189;16189;19412;22072;17854;24885;22568;2763;19375;17642;16471;15823;19185;29362;20717;16087;17589.44;27306;21685 -222;'788;Tunisia;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;356;356;356;356;1003;375;365;1895;129;3;189;33;121;92;83;30;33;65;28;115 -222;'788;Tunisia;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;271;271;271;271;765;272;473;1810;91;8;157;21;215;90;88;177;40;79;49;124 -222;'788;Tunisia;1675;Other paper and paperboard;5510;Production;t;5000;3700;4400;4400;4800;4800;4800;4800;4000;3900;0;;;;;;;;;7000;7000;7000;8000;5000;22000;31000;36000;46000;54000;49000;49000;43000;44000;53000;57000;57000;63000;69000;70000;94000;100000;122000;94000;109000;109000;109000;109000;109000;109000;109000;109000;109000;109000;124000;134000;134000;134000;134000;134000;134000;134000;149000;149000 -222;'788;Tunisia;1675;Other paper and paperboard;5610;Import quantity;t;15900;13900;15200;19500;17400;18700;20000;21600;24100;23700;17700;22500;16400;25100;26200;7800;16200;16200;16200;16200;31000;33500;24400;51650;48755;46600;46600;36026;33889;55920;72100;63574;42434;49948;53871;44200;58900;51943;52725;65628;81647;72936;101576;149365;149365;149365;176575;118468;111547;123083;131025;113220;173229;156652;111723;157174;102332;112833;110352;119735;112993.12;139095;110383 -222;'788;Tunisia;1675;Other paper and paperboard;5622;Import value;1000 USD;3457;3092;3473;4884;3618;3728;3873;4606;5758;5535;4441;6017;5489;15115;15408;5924;7226;7226;7226;7226;17852;13600;9932;33056;31203;32346;32346;23425;21764;53540;77646;52638;33668;37884;50719;34757;43421;28837;27582;43156;51960;53665;62084;114572;114572;114572;136149;159921;142949;160950;186671;88344;128301;161250;71149;156102;81378;99614;91578;95760;88246.99;154594;106253 -222;'788;Tunisia;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2730;182;3506;3600;2300;5800;3005;2959;4920;2469;4059;4078;48430;48430;48430;53496;22137;21143;25038;21446;21598;28718;31581;43382;47806;60866;18649;38247;41759;51969.5;74996;70554 -222;'788;Tunisia;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2039;194;2096;2749;1848;3701;1559;1880;2402;1480;2351;2589;48668;48668;48668;54614;30218;26210;33762;30758;22886;28312;39539;46835;46482;58915;21187;39983;40360;48161.26;106364;88256 -222;'788;Tunisia;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;3000;4000;4000;5000;5000;5000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;35000;45000;45000;45000;45000;45000;45000;45000;60000;60000 -222;'788;Tunisia;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;700;700;2575;2575;2575;2575;3877;3501;4148;5660;8582;4553;2008;3032;4187;3807;3219;5525;5641;2343;2759;1194 -222;'788;Tunisia;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;584;584;2832;2832;2832;2832;4575;4658;6190;8350;11932;6285;2766;3835;4778;4427;4038;6613;6431;2814;2197;1750 -222;'788;Tunisia;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6482;6482;6482;8000;5608;9360;8345;11544;12793;14949;23937;38208;32868;45018;16952;28954;31908;31100;55806;55631 -222;'788;Tunisia;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7183;7183;7183;10933;9315;12185;13068;17681;17567;20469;32458;43725;34188;46991;19443;32284;33002;31917;84731;70311 -222;'788;Tunisia;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66000;66000;90000;95000;117000;89000;89000;89000;89000;89000;89000;89000;89000;89000;89000;89000;89000;89000;89000;89000;89000;89000;89000;89000;89000;89000 -222;'788;Tunisia;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51943;52725;57828;72747;64436;93076;83968;83968;83968;98000;92587;85340;93540;97902;100062;163257;140587;104835;128544;94915;107967;101722;110502;106470.08;131285;105677 -222;'788;Tunisia;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28837;27582;32086;40564;40798;49217;52062;52062;52062;60961;71982;55914;67960;78862;66150;109065;133390;59960;79455;68542;93511;76084;78342;71741.16;137057;90801 -222;'788;Tunisia;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3005;2959;4920;2469;4059;4078;9393;9393;9393;12941;12518;10876;14849;9235;8796;13723;7310;5075;13600;15831;1687;9270;9828;20804.5;19149;14888 -222;'788;Tunisia;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1559;1880;2402;1480;2351;2589;5675;5675;5675;7871;13671;10826;15215;10483;5281;7616;6111;3020;9836;11886;1662;7587;7243;15975.26;21370;17630 -222;'788;Tunisia;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;;;;;;;;;;;;;;7000;7000;7000;8000;5000;22000;31000;36000;46000;54000;49000;49000;43000;44000;53000;57000;57000;60000;;;;;;;;;;;;;;;;;;;;;;;;;; -222;'788;Tunisia;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;15900;13900;15200;19500;17400;18700;20000;21600;24100;23700;17700;22500;16400;25100;26200;7800;16200;16200;16200;16200;31000;33500;24400;51650;48755;46600;46600;36026;33889;55920;72100;63574;42434;49948;53871;44200;58900;;;;;;;;;;;;;;;;;;;;;;;;;; -222;'788;Tunisia;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;3457;3092;3473;4884;3618;3728;3873;4606;5758;5535;4441;6017;5489;15115;15408;5924;7226;7226;7226;7226;17852;13600;9932;33056;31203;32346;32346;23425;21764;53540;77646;52638;33668;37884;50719;34757;43421;;;;;;;;;;;;;;;;;;;;;;;;;; -222;'788;Tunisia;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2730;182;3506;3600;2300;5800;;;;;;;;;;;;;;;;;;;;;;;;;; -222;'788;Tunisia;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2039;194;2096;2749;1848;3701;;;;;;;;;;;;;;;;;;;;;;;;;; -222;'788;Tunisia;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42000;42000;42000;45000;67000;79000;79000;79000;79000;79000;79000;79000;79000;79000;79000;79000;79000;79000;79000;79000;79000;79000;79000;79000;79000;79000 -222;'788;Tunisia;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31001;28629;32866;40000;31200;67085;37828;37828;37828;43400;48158;40649;36362;43788;3604;62008;65541;60053;65735;52637;52444;45145;52271;33325.25;68459;54438 -222;'788;Tunisia;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12799;10877;14282;18951;11361;27063;23454;23454;23454;26909;28771;18725;20838;28500;2147;36166;37524;29936;30497;27983;30636;22377;25216;22992.7;56471;30973 -222;'788;Tunisia;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;196;159;918;767;0;32;442;442;442;442;147;13;107;153;259;284;103;225;411;1892;59;130;1338;6263.19;4206;3394 -222;'788;Tunisia;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;221;184;400;264;0;49;268;268;268;268;139;58;118;230;283;320;21;289;492;1289;55;61;544;3398.72;2824;1535 -222;'788;Tunisia;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14000;14000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000 -222;'788;Tunisia;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9594;12834;10042;14437;17500;14282;21250;21250;21250;34700;29761;33600;39535;41172;90505;91878;54723;30719;43918;30555;36113;33573;38800;39539.36;39499;30444 -222;'788;Tunisia;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6972;8313;7541;9885;18420;12428;13175;13175;13175;21500;25862;24813;29992;34381;54692;63266;73441;17621;30491;27539;43065;29094;33537;28646.46;48421;30444 -222;'788;Tunisia;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2061;1960;1884;844;133;63;1871;1871;1871;1871;842;1185;1138;801;4211;5641;6187;1469;1192;2484;388;2293;548;923.6;1882;1973 -222;'788;Tunisia;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1028;1006;687;390;235;1130;1130;1130;1130;4856;6111;7814;4521;2216;2556;5033;1265;3846;4849;903;3485;2247;3518.13;7770;9035 -222;'788;Tunisia;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10998;11252;14419;17562;15038;11162;18003;18003;18003;19000;13499;9883;15406;11373;4886;9049;18349;12295;17189;11211;14613;21963;17767;32465.11;22123;20119 -222;'788;Tunisia;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8930;8386;10066;11519;10495;9455;11162;11162;11162;11822;16363;11477;15688;14577;8523;8968;20889;11042;15987;12215;16949;23242;18171;18682.07;30437;28237 -222;'788;Tunisia;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;589;840;2088;858;3926;3983;6652;6652;6652;10200;11512;9673;13597;8274;4319;7798;1020;3378;11957;10694;479;4555;5449;6747.86;5721;4036 -222;'788;Tunisia;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;301;668;936;529;1961;2305;4018;4018;4018;6214;7721;4640;7268;5729;2770;4738;1055;1463;5444;5448;404;3150;3495;5626.88;6018;4573 -222;'788;Tunisia;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;10000;38000;40000;40000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -222;'788;Tunisia;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;350;10;501;748;698;547;6887;6887;6887;900;1169;1208;2237;1569;1067;322;1974;1768;1702;512;4797;1041;1664;1140.37;1204;676 -222;'788;Tunisia;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;136;6;197;209;522;271;4271;4271;4271;730;986;899;1442;1404;788;665;1536;1361;2480;805;2861;1371;1418;1419.93;1728;1147 -222;'788;Tunisia;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;159;0;30;0;0;0;428;428;428;428;17;5;7;7;7;0;0;3;40;761;761;2292;2493;6869.85;7340;5485 -222;'788;Tunisia;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;0;60;0;0;0;259;259;259;259;955;17;15;3;12;2;2;3;54;300;300;891;957;3431.54;4758;2487 -222;'788;Tunisia;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7800;8900;7800;7800;62822;62822;62822;76000;22004;22706;25395;27463;4576;5419;14057;3856;24443;3610;1647;3105;3592;4180.03;5051;3512 -222;'788;Tunisia;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11070;11396;12283;12283;59678;59678;59678;72356;83364;82377;86800;99459;10262;12951;25094;7354;71869;8409;2065;8881;10987;13691.83;15340;13702 -222;'788;Tunisia;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32555;32555;32555;32555;4011;907;1844;667;9;46;334;99;1338;17;10;23;23;65;41;35 -222;'788;Tunisia;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35810;35810;35810;35810;7232;3199;5479;2594;38;227;970;90;2458;38;82;112;115;269;263;315 -222;'788;Tunisia;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40517;28714;29728;24649;31650;24783;25645 -222;'788;Tunisia;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16871;20160;20318;19873;23055;11038;10605 -222;'788;Tunisia;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1788;1888;1506;1099;1191;1193;1106 -222;'788;Tunisia;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;200;200;201;2;2;1 -222;'788;Tunisia;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;472;671;421;275;342;109;295 -222;'788;Tunisia;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;200;200;200;1;1;1 -222;'788;Tunisia;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1316;1217;1085;824;849;1084;811 -222;'788;Tunisia;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;1;1;1;0 -222;'788;Tunisia;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1325;1937;2809;3235;2982;2171;3130 -222;'788;Tunisia;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1192;1413;1548;1361;1916;1958;1936 -222;'788;Tunisia;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;581;354;327;178;206;252;576 -222;'788;Tunisia;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1170;1105;697;316;279;348;1990 -222;'788;Tunisia;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8437;7677;5825;5771;6233;7399;4855 -222;'788;Tunisia;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;387;584;789;1565;317;1884;809 -222;'788;Tunisia;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;77 -222;'788;Tunisia;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;75 -222;'788;Tunisia;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;6 -222;'788;Tunisia;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;21 -222;'788;Tunisia;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24954;14369;16856;12217;19752;11620;13284 -222;'788;Tunisia;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14075;16496;17031;16366;20507;6584;5478 -222;'788;Tunisia;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109;55;10;64;17;212 -222;'788;Tunisia;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;358;51;51;3;168;297 -222;'788;Tunisia;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3432;2380;2350;2139;1222;2131;2482 -222;'788;Tunisia;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;4;2;13;31;94;94 -222;'788;Tunisia;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;151999;155282;143450;137515;145572;166181;148829 -222;'788;Tunisia;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78587;91763;90459;83395;105747;119540;121896 -222;'788;Tunisia;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2598;1487;1211;1449;2345;3956;1879 -222;'788;Tunisia;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;21;33;4;4 -222;'788;Tunisia;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70282;63650;57544;56525;54291;65287;56455 -222;'788;Tunisia;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2918;2765;2580;2487;2698;4232;5614 -222;'788;Tunisia;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3028;3289;4479;2960;2528;3886;6079 -222;'788;Tunisia;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4084;5378;5740;5918;3714;3206;2829 -222;'788;Tunisia;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35093;38947;35439;32679;37434;44366;39938 -222;'788;Tunisia;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37043;48316;50047;45676;61618;67184;70201 -222;'788;Tunisia;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40998;47909;44777;43902;48974;48686;44478 -222;'788;Tunisia;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34542;35304;32092;29293;37684;44914;43248 -223;'792;Türkiye;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4960387;4847171;4102354;3846884;4485543;6674542;5557595 -223;'792;Türkiye;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3476808;3932540;4374552;4343647;5738134;7160210;6678165 -223;'792;Türkiye;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;6700;10104;10801;6662;13118;10999;19926;22093;21962;17800;37726;21691;23041;23756;35349;54892;51687;35111;52211;76867;82243;83777;64565;90578;100539;102935;286430;309722;322574;384414;330506;475329;839423;517354;903313;931969;883160;984212;963600;1250702;808887;1052445;1122741;1362197;2755785;2789865;3403360;3573674;2713677;3791129;4379835;4249153;4258132;4230010;3888894;4072432;4237448;4104509;3452833;3241465;3817357;5801633;4576015 -223;'792;Türkiye;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;1094;1039;1542;1418;1750;2111;1910;1975;2286;3830;6584;7859;11599;16425;4117;2095;1295;942;1424;2372;11992;19172;33716;45841;50989;28064;58587;73055;72529;73663;73668;78343;37155;108623;113794;68797;87414;74553;78528;81517;168279;181471;202992;237603;256278;294764;492688;603157;518310;622342;756434;811663;866583;819039;780323;1090556;1256198;1432623;1507020;1464684;2033640;2770961;2485924 -223;'792;Türkiye;1861;Roundwood;5516;Production;m3;8781000;8913000;9989000;12236000;14382000;14887000;14913000;16160000;18001000;17541000;16910000;18304000;17473000;18675000;18518000;21297000;21257000;21320000;22676000;22575000;21878000;21878000;20841000;19703000;16303000;17922000;16809000;16784000;15524000;15756000;15252000;16953000;18877000;16845000;19279000;19411000;18050000;17668000;16608300;15939300;15337200;16122000;15810000;16503000;16185000;18084000;18319000;19420000;19300000;20597000;21039000;21959000;20858000;22835000;24641800;25936000;24805000;28154000;28450000;28703000;35248000;35435000;27717040 -223;'792;Türkiye;1861;Roundwood;5616;Import quantity;m3;13500;67000;33400;21900;76500;34800;51700;75900;53000;73500;48900;49100;62000;52000;60500;41500;43800;20700;20800;8800;3800;4000;4400;4400;12700;67000;1010100;938400;467700;857342;988908;995306;2607973;1315200;784600;1249000;1049000;1346000;1430000;1883000;937000;1061000;1401000;2052888;2303600;2255000;2082000;1349000;987000;1416000;1315000;1174000;700000;578015;512500;416000;201000;102680;59030;44000;71691;115795;88430 -223;'792;Türkiye;1861;Roundwood;5622;Import value;1000 USD;435;2061;1002;664;2336;1065;1580;1599;798;4007;2421;2425;3030;3448;6703;8102;6179;2088;2110;1492;443;486;561;1103;2761;10787;100614;100710;60741;111905;69531;122784;294604;143648;107884;148685;131017;134400;104153;128616;67306;84399;109444;180162;220334;236503;267784;218639;113385;161041;188668;159272;93860;84379;68555;59970;38845;31450;22726;17653;29907;50352;43470 -223;'792;Türkiye;1861;Roundwood;5916;Export quantity;m3;7400;14500;21600;11000;12900;14800;10600;8300;10800;20100;34900;34100;29400;12100;19300;11300;8900;5100;3700;4800;36900;42400;45900;119800;91400;48600;23600;35000;17900;11543;2958;3701;6125;8200;56000;22400;20000;93000;5000;4000;8000;9002;68567;36509;9693;2781;11000;4860;13017;7412;3800;6300;3633;437;1505;9800;24000;53200;68042;33000;79000;54879;26398 -223;'792;Türkiye;1861;Roundwood;5922;Export value;1000 USD;821;900;1452;1237;1393;1440;1342;1151;1482;1935;2790;3803;5024;1838;1765;1071;915;414;316;456;4525;5287;5259;15213;16718;7037;2788;6318;2708;1138;1143;453;842;1923;13231;5065;6871;7858;671;1217;464;664;2777;2157;2818;260;4260;1658;614;1948;1732;3594;945;199;309;1277;3068;7226;9183;3017;10186;7429;6138 -223;'792;Türkiye;1862;Roundwood, coniferous;5516;Production;m3;4677000;4390000;4504000;7427000;7831000;8017000;8427000;9363000;10801000;10443000;9978000;10778000;10396000;12100000;12204000;13002000;12071000;13709000;13800000;14222000;14028000;14028000;12940000;11679000;9510000;10835000;9855000;9830000;9208000;9440000;8979000;8548000;8858000;8211000;9002000;8606000;8216000;7437000;7175800;7175500;6581800;7939000;7350000;8134000;8119000;9854000;10254000;10964000;10725000;11497000;12109000;13036000;12559000;13650000;15610200;16906000;15892000;17332000;17480000;17860000;22963000;22216000;18067095 -223;'792;Türkiye;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45000;20290;7000;6000;6000;2000;4551 -223;'792;Türkiye;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4996;1905;808;688;963;622;1369 -223;'792;Türkiye;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11000;22000;37000;26000;44000;30879;18000 -223;'792;Türkiye;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1998;3995;4018;2800;5445;3975;5007 -223;'792;Türkiye;1863;Roundwood, non-coniferous;5516;Production;m3;4104000;4523000;5485000;4809000;6551000;6870000;6486000;6797000;7200000;7098000;6932000;7526000;7077000;6575000;6314000;8295000;9186000;7611000;8876000;8353000;7850000;7850000;7901000;8024000;6793000;7087000;6954000;6954000;6316000;6316000;6273000;8405000;10019000;8634000;10277000;10805000;9834000;10231000;9432500;8763800;8755400;8183000;8460000;8369000;8066000;8230000;8065000;8456000;8575000;9100000;8930000;8923000;8299000;9185000;9031600;9030000;8913000;10822000;10970000;10843000;12285000;13219000;9649945 -223;'792;Türkiye;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;156000;82390;52030;38000;65691;113795;83879 -223;'792;Türkiye;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33849;29545;21918;16965;28944;49730;42101 -223;'792;Türkiye;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13000;31200;31042;7000;35000;24000;8398 -223;'792;Türkiye;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1070;3231;5165;217;4741;3454;1131 -223;'792;Türkiye;1864;Wood fuel;5516;Production;m3;7031000;6981000;7214000;8806000;10670000;11175000;10994000;11852000;13377000;12670000;11852000;12684000;11051000;11355000;11941000;14815000;13970000;13457000;15742000;16351000;15000000;15000000;14938000;13568000;10345000;10500000;10500000;10475000;9796000;9796000;9750000;8495000;9469000;7634000;8534000;9182000;8277000;7689000;6543300;5510300;5361200;4931000;5081000;5278000;4983000;5831000;4645000;4958000;5048000;4902000;4616000;4258000;4096000;4300000;4633800;5547000;5343000;5688000;5750000;5397000;4116000;5596000;5166656 -223;'792;Türkiye;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26049;192473;9500;8600;257000;178000;297000;216000;368000;119000;240000;325000;295000;336000;233000;232000;110000;65000;242000;207000;166000;27000;8324;36600;26000;73000;7780;30;0;1000;3000;15671 -223;'792;Türkiye;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;729;7024;297;376;10000;7189;11012;6328;11368;3378;7330;10752;12851;13794;11875;13694;8133;3350;14048;13665;12491;1901;614;2786;2351;5395;556;6;0;63;266;1089 -223;'792;Türkiye;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;546;3225;;;1400;0;2000;0;0;0;0;520;0;9;0;0;0;17;12;0;0;2000;57;5;800;0;0;42;0;0;0;0 -223;'792;Türkiye;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;90;;;38;0;92;0;0;0;0;0;0;8;0;0;0;5;0;0;0;45;5;1;0;0;0;20;2;11;11;11 -223;'792;Türkiye;1627;Wood fuel, coniferous;5516;Production;m3;3260000;3191000;2839000;4628000;4800000;4986000;5273000;5973000;6988000;6358000;5775000;6327000;5141000;6285000;6556000;7529000;5954000;7477000;8350000;8993000;8250000;8250000;8188000;6868000;4725000;4725000;4725000;4700000;4408000;4408000;4390000;3135000;3032000;2499000;2417000;2589000;2651000;1993000;1671800;1420500;1424800;1673000;1776000;1852000;1859000;2860000;1753000;1922000;2049000;1976000;1962000;1762000;1692000;1900000;1792200;2502000;2463000;2402000;2450000;2330000;2045000;2239000;2067564 -223;'792;Türkiye;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;390;0;0;0;0;751 -223;'792;Türkiye;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;0;0;0;0;67 -223;'792;Türkiye;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -223;'792;Türkiye;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;2;0;10;10 -223;'792;Türkiye;1628;Wood fuel, non-coniferous;5516;Production;m3;3771000;3790000;4375000;4178000;5870000;6189000;5721000;5879000;6389000;6312000;6077000;6357000;5910000;5070000;5385000;7286000;8016000;5980000;7392000;7358000;6750000;6750000;6750000;6700000;5620000;5775000;5775000;5775000;5388000;5388000;5360000;5360000;6437000;5135000;6117000;6593000;5626000;5696000;4871500;4089800;3936400;3258000;3305000;3426000;3124000;2971000;2892000;3036000;2999000;2926000;2654000;2496000;2404000;2400000;2841600;3045000;2880000;3286000;3300000;3067000;2071000;3357000;3099092 -223;'792;Türkiye;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73000;7390;30;0;1000;3000;14920 -223;'792;Türkiye;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5395;555;6;0;63;266;1022 -223;'792;Türkiye;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;42;0;0;0;0 -223;'792;Türkiye;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;20;0;11;1;1 -223;'792;Türkiye;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26049;192473;9500;8600;257000;178000;297000;216000;368000;119000;240000;325000;295000;336000;233000;232000;110000;65000;242000;207000;166000;27000;8324;36600;26000;;;;;;; -223;'792;Türkiye;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;729;7024;297;376;10000;7189;11012;6328;11368;3378;7330;10752;12851;13794;11875;13694;8133;3350;14048;13665;12491;1901;614;2786;2351;;;;;;; -223;'792;Türkiye;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;546;3225;;;1400;0;2000;0;0;0;0;520;0;9;0;0;0;17;12;0;0;2000;57;5;800;;;;;;; -223;'792;Türkiye;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;90;;;38;0;92;0;0;0;0;0;0;8;0;0;0;5;0;0;0;45;5;1;0;;;;;;; -223;'792;Türkiye;1865;Industrial roundwood;5516;Production;m3;1750000;1932000;2775000;3430000;3712000;3712000;3919000;4308000;4624000;4871000;5058000;5620000;6422000;7320000;6577000;6482000;7287000;7863000;6934000;6224000;6878000;6878000;5903000;6135000;5958000;7422000;6309000;6309000;5728000;5960000;5502000;8458000;9408000;9211000;10745000;10229000;9773000;9979000;10065000;10429000;9976000;11191000;10729000;11225000;11202000;12253000;13674000;14462000;14252000;15695000;16423000;17701000;16762000;18535000;20008000;20389000;19462000;22466000;22700000;23306000;31132000;29839000;22550384 -223;'792;Türkiye;1865;Industrial roundwood;5616;Import quantity;m3;13500;67000;33400;21900;76500;34800;51700;75900;53000;73500;48900;49100;62000;52000;60500;41500;43800;20700;20800;8800;3800;4000;4400;4400;12700;67000;1010100;938400;467700;857342;988908;969257;2415500;1305700;776000;992000;871000;1049000;1214000;1515000;818000;821000;1076000;1757888;1967600;2022000;1850000;1239000;922000;1174000;1108000;1008000;673000;569691;475900;390000;128000;94900;59000;44000;70691;112795;72759 -223;'792;Türkiye;1865;Industrial roundwood;5622;Import value;1000 USD;435;2061;1002;664;2336;1065;1580;1599;798;4007;2421;2425;3030;3448;6703;8102;6179;2088;2110;1492;443;486;561;1103;2761;10787;100614;100710;60741;111905;69531;122055;287580;143351;107508;138685;123828;123388;97825;117248;63928;77069;98692;167311;206540;224628;254090;210506;110035;146993;175003;146781;91959;83765;65769;57619;33450;30894;22720;17653;29844;50086;42381 -223;'792;Türkiye;1865;Industrial roundwood;5916;Export quantity;m3;7400;14500;21600;11000;12900;14800;10600;8300;10800;20100;34900;34100;29400;12100;19300;11300;8900;5100;3700;4800;36900;42400;45900;119800;91400;48600;23600;35000;17900;11543;2958;3155;2900;8200;56000;21000;20000;91000;5000;4000;8000;9002;68047;36509;9684;2781;11000;4860;13000;7400;3800;6300;1633;380;1500;9000;24000;53200;68000;33000;79000;54879;26398 -223;'792;Türkiye;1865;Industrial roundwood;5922;Export value;1000 USD;821;900;1452;1237;1393;1440;1342;1151;1482;1935;2790;3803;5024;1838;1765;1071;915;414;316;456;4525;5287;5259;15213;16718;7037;2788;6318;2708;1138;1143;431;752;1923;13231;5027;6871;7766;671;1217;464;664;2777;2157;2810;260;4260;1658;609;1948;1732;3594;900;194;308;1277;3068;7226;9163;3015;10175;7418;6127 -223;'792;Türkiye;1866;Industrial roundwood, coniferous;5516;Production;m3;1417000;1199000;1665000;2799000;3031000;3031000;3154000;3390000;3813000;4085000;4203000;4451000;5255000;5815000;5648000;5473000;6117000;6232000;5450000;5229000;5778000;5778000;4752000;4811000;4785000;6110000;5130000;5130000;4800000;5032000;4589000;5413000;5826000;5712000;6585000;6017000;5565000;5444000;5504000;5755000;5157000;6266000;5574000;6282000;6260000;6994000;8501000;9042000;8676000;9521000;10147000;11274000;10867000;11750000;13818000;14404000;13429000;14930000;15030000;15530000;20918000;19977000;15999531 -223;'792;Türkiye;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;438194;863827;719981;1809200;1047900;545000;630000;519000;705000;913000;1138000;634000;538000;679000;1387888;1688600;1780000;1553000;1011000;794000;1034000;953000;846000;553000;489015;399000;274000;45000;19900;7000;6000;6000;2000;3800 -223;'792;Türkiye;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54096;52034;68805;188375;97442;58079;65461;60462;63185;54581;63194;35736;34699;50829;97116;137764;163373;168039;127711;71530;105741;125328;105100;67871;62052;43749;26364;4996;1904;808;688;963;622;1302 -223;'792;Türkiye;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1132;1132;1070;2200;6100;53000;16000;18000;87000;0;0;0;1000;58500;34509;7684;0;3000;600;1000;5800;3200;5400;612;73;600;3000;11000;22000;37000;26000;44000;30879;18000 -223;'792;Türkiye;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107;107;73;565;1654;13000;4320;6519;7089;53;8;27;79;2574;1967;2567;0;900;139;206;1522;1461;3230;241;25;100;660;1998;3995;4018;2798;5445;3965;4997 -223;'792;Türkiye;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;438194;863827;719981;1809200;1047900;545000;630000;519000;705000;913000;1138000;634000;538000;679000;1387888;1688600;1780000;1553000;1011000;794000;1034000;953000;846000;553000;489015;399000;274000;45000;19900;7000;6000;6000;2000;3800 -223;'792;Türkiye;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54096;52034;68805;188375;97442;58079;65461;60462;63185;54581;63194;35736;34699;50829;97116;137764;163373;168039;127711;71530;105741;125328;105100;67871;62052;43749;26364;4996;1904;808;688;963;622;1302 -223;'792;Türkiye;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1132;1132;1070;2200;6100;53000;16000;18000;87000;0;0;0;1000;58500;34509;7684;0;3000;600;1000;5800;3200;5400;612;73;600;3000;11000;22000;37000;26000;44000;30879;18000 -223;'792;Türkiye;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107;107;73;565;1654;13000;4320;6519;7089;53;8;27;79;2574;1967;2567;0;900;139;206;1522;1461;3230;241;25;100;660;1998;3995;4018;2798;5445;3965;4997 -223;'792;Türkiye;1867;Industrial roundwood, non-coniferous;5516;Production;m3;333000;733000;1110000;631000;681000;681000;765000;918000;811000;786000;855000;1169000;1167000;1505000;929000;1009000;1170000;1631000;1484000;995000;1100000;1100000;1151000;1324000;1173000;1312000;1179000;1179000;928000;928000;913000;3045000;3582000;3499000;4160000;4212000;4208000;4535000;4561000;4674000;4819000;4925000;5155000;4943000;4942000;5259000;5173000;5420000;5576000;6174000;6276000;6427000;5895000;6785000;6190000;5985000;6033000;7536000;7670000;7776000;10214000;9862000;6550853 -223;'792;Türkiye;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;419148;125081;249276;606300;257800;231000;362000;352000;344000;301000;377000;184000;283000;397000;370000;279000;242000;297000;228000;128000;140000;155000;162000;120000;80676;76900;116000;83000;75000;52000;38000;64691;110795;68959 -223;'792;Türkiye;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57809;17497;53250;99205;45909;49429;73224;63366;60203;43244;54054;28192;42370;47863;70195;68776;61255;86051;82795;38505;41252;49675;41681;24088;21713;22020;31255;28454;28990;21912;16965;28881;49464;41079 -223;'792;Türkiye;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10411;1826;2085;700;2100;3000;5000;2000;4000;5000;4000;8000;8002;9547;2000;2000;2781;8000;4260;12000;1600;600;900;1021;307;900;6000;13000;31200;31000;7000;35000;24000;8398 -223;'792;Türkiye;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1031;1036;358;187;269;231;707;352;677;618;1209;437;585;203;190;243;260;3360;1519;403;426;271;364;659;169;208;617;1070;3231;5145;217;4730;3453;1130 -223;'792;Türkiye;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;285060;31697;165275;246500;123800;121000;217000;199000;183000;137000;179000;99000;141000;279000;131000;133000;104000;142000;109000;60000;51000;34000;20000;28000;25018;25600;91000;38000;32000;16000;21000;17000;17000;44 -223;'792;Türkiye;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38270;4160;33607;56120;32492;35308;55937;45177;40120;25055;34016;19092;29714;35043;42970;48246;38719;58330;52543;26473;22664;20543;11386;13430;11035;10052;23914;14814;15020;5975;10684;6747;7929;27 -223;'792;Türkiye;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;0;0;0;0;0;0;0;2;30;68;9;0;410;56;40;400;10;500;810;74;500;4000;100;43;0;0;0;0;0 -223;'792;Türkiye;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;171;0;0;0;32;1;1;15;27;11;25;25;0;75;74;28;198;84;184;546;24;95;327;48;26;0;0;0;0;0 -223;'792;Türkiye;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;134088;93384;84001;359800;134000;110000;145000;153000;161000;164000;198000;85000;142000;118000;239000;146000;138000;155000;119000;68000;89000;121000;142000;92000;55658;51300;25000;45000;43000;36000;17000;47691;93795;68915 -223;'792;Türkiye;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19539;13337;19643;43085;13417;14121;17287;18189;20083;18189;20038;9100;12656;12820;27225;20530;22536;27721;30252;12032;18588;29132;30295;10658;10678;11968;7341;13640;13970;15937;6281;22134;41535;41052 -223;'792;Türkiye;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10411;1826;2085;700;1500;3000;5000;2000;4000;5000;4000;8000;8000;9517;1932;1991;2781;7590;4204;11960;1200;590;400;211;233;400;2000;12900;31157;31000;7000;35000;24000;8398 -223;'792;Türkiye;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1031;1036;358;187;98;231;707;352;645;617;1208;422;558;192;165;218;260;3285;1445;375;228;187;180;113;145;113;290;1022;3205;5145;217;4730;3453;1130 -223;'792;Türkiye;1868;Sawlogs and veneer logs;5516;Production;m3;1400000;1454000;2185000;2596000;2727000;2727000;2968000;3325000;3548000;3151000;3645000;3790000;4409000;4988000;4675000;4709000;5234000;5660000;4820000;4846000;5165000;5165000;4139000;4078000;3974000;4114000;3974000;3974000;3393000;3625000;3197000;4731000;4880000;4689000;5467000;5062000;4804000;4846000;4933000;5178000;4978000;5606000;5137000;5235000;5107000;5676000;7898000;8126000;7805000;8321000;8719000;9864000;8703000;9050000;9714000;10000000;10145000;10253000;10400000;9791000;14923000;13041000;8276631 -223;'792;Türkiye;1868;Sawlogs and veneer logs;5616;Import quantity;m3;600;1200;3200;700;700;1700;900;42000;45800;32500;32400;32600;33100;32200;60500;41500;43800;20700;20800;8800;3800;4000;4400;4400;12700;67000;1010100;938400;467700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -223;'792;Türkiye;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;45;86;97;59;61;75;55;579;583;1969;1987;1991;2044;2015;6703;8102;6179;2088;2110;1492;443;486;561;1103;2761;10787;100614;100710;60741;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -223;'792;Türkiye;1868;Sawlogs and veneer logs;5916;Export quantity;m3;7400;14500;21600;11000;12900;14800;10600;8300;10800;20100;34900;34100;29400;12100;19300;11300;8900;5100;3700;4800;36900;42400;45900;119800;91400;48600;23600;35000;17900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -223;'792;Türkiye;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;821;900;1452;1237;1393;1440;1342;1151;1482;1935;2790;3803;5024;1838;1765;1071;915;414;316;456;4525;5287;5259;15213;16718;7037;2788;6318;2708;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -223;'792;Türkiye;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;1152000;1051000;1485000;2082000;2176000;2176000;2328000;2518000;2828000;2570000;2963000;2855000;3493000;3768000;3908000;3860000;4304000;4340000;3840000;4071000;4339000;4339000;3313000;3270000;3180000;3515000;3180000;3180000;2850000;3082000;2654000;2752000;2742000;2541000;3083000;2683000;2384000;2298000;2345000;2493000;2243000;2822000;2344000;2503000;2394000;2869000;4672000;4992000;4627000;4843000;5234000;6176000;5259000;5400000;6377000;6847000;7006000;7393000;7400000;7150000;9226000;8613000;6651737 -223;'792;Türkiye;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;;;;;;;;40900;45200;31400;31400;31400;31400;31400;59100;40900;40900;20600;20600;3500;3500;3500;3500;700;700;28000;902600;801400;334700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -223;'792;Türkiye;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;;;;;;;;480;537;1929;1929;1929;1929;1929;6493;8007;5686;2070;2070;392;392;392;392;90;90;3700;84307;76381;33472;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -223;'792;Türkiye;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;400;800;1400;2300;2700;1200;500;1000;900;4200;16600;14400;6500;4900;3900;2100;200;600;600;800;1300;6800;10800;20100;15000;24300;500;13000;2400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -223;'792;Türkiye;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;20;33;60;111;130;44;28;42;65;185;683;667;536;634;372;258;27;86;86;136;152;914;1545;2569;1678;2825;111;2559;170;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -223;'792;Türkiye;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;248000;403000;700000;514000;551000;551000;640000;807000;720000;581000;682000;935000;916000;1220000;767000;849000;930000;1320000;980000;775000;826000;826000;826000;808000;794000;599000;794000;794000;543000;543000;543000;1979000;2138000;2148000;2384000;2379000;2420000;2548000;2588000;2685000;2735000;2784000;2793000;2732000;2713000;2807000;3226000;3134000;3178000;3478000;3485000;3688000;3444000;3650000;3337000;3153000;3139000;2860000;3000000;2641000;5697000;4428000;1624894 -223;'792;Türkiye;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;600;1200;3200;700;700;1700;900;1100;600;1100;1000;1200;1700;800;1400;600;2900;100;200;5300;300;500;900;3700;12000;39000;107500;137000;133000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -223;'792;Türkiye;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;45;86;97;59;61;75;55;99;46;40;58;62;115;86;210;95;493;18;40;1100;51;94;169;1013;2671;7087;16307;24329;27269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -223;'792;Türkiye;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;7000;13700;20200;8700;10200;13600;10100;7300;9900;15900;18300;19700;22900;7200;15400;9200;8700;4500;3100;4000;35600;35600;35100;99700;76400;24300;23100;22000;15500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -223;'792;Türkiye;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;801;867;1392;1126;1263;1396;1314;1109;1417;1750;2107;3136;4488;1204;1393;813;888;328;230;320;4373;4373;3714;12644;15040;4212;2677;3759;2538;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -223;'792;Türkiye;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3300000;3303000;3369000;3259000;3684000;3650000;4278000;4403000;4747000;5560000;6154000;6200000;7027000;7288000;7413000;7815000;9200000;9520000;9699000;8694000;11411000;11500000;12715000;14838000;15768000;13368609 -223;'792;Türkiye;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2190000;2171000;2213000;2057000;2411000;2345000;2913000;2979000;3118000;3614000;3869000;3832000;4392000;4538000;4734000;5406000;6100000;6883000;6913000;5839000;6803000;6900000;7650000;10400000;10400000;8448026 -223;'792;Türkiye;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1110000;1132000;1156000;1202000;1273000;1305000;1365000;1424000;1629000;1946000;2285000;2368000;2635000;2750000;2679000;2409000;3100000;2637000;2786000;2855000;4608000;4600000;5065000;4438000;5368000;4920583 -223;'792;Türkiye;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5616;Import quantity;m3;12900;65800;30200;21200;75800;33100;50800;33900;7200;41000;16500;16500;28900;19800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -223;'792;Türkiye;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5622;Import value;1000 USD;390;1975;905;605;2275;990;1525;1020;215;2038;434;434;986;1433;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -223;'792;Türkiye;1870;Pulpwood and particles (1961-1997);5516;Production;m3;120000;105000;131000;185000;215000;215000;207000;254000;438000;874000;672000;960000;1133000;1363000;869000;900000;991000;987000;1032000;653000;692000;692000;743000;492000;358000;716000;705000;705000;705000;705000;705000;1149000;1466000;1577000;1558000;1568000;1369000;;;;;;;;;;;;;;;;;;;;;;;;;; -223;'792;Türkiye;1870;Pulpwood and particles (1961-1997);5616;Import quantity;m3;12900;65800;30200;21200;75800;33100;50800;33900;7200;41000;16500;16500;28900;19800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -223;'792;Türkiye;1870;Pulpwood and particles (1961-1997);5622;Import value;1000 USD;390;1975;905;605;2275;990;1525;1020;215;2038;434;434;986;1433;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -223;'792;Türkiye;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;101000;103000;123000;180000;210000;210000;199000;244000;422000;764000;585000;861000;1013000;1213000;823000;885000;976000;966000;992000;549000;581000;581000;581000;384000;294000;559000;635000;635000;635000;635000;635000;1140000;1444000;1553000;1546000;1548000;1361000;;;;;;;;;;;;;;;;;;;;;;;;;; -223;'792;Türkiye;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;19000;2000;8000;5000;5000;5000;8000;10000;16000;110000;87000;99000;120000;150000;46000;15000;15000;21000;40000;104000;111000;111000;162000;108000;64000;157000;70000;70000;70000;70000;70000;9000;22000;24000;12000;20000;8000;;;;;;;;;;;;;;;;;;;;;;;;;; -223;'792;Türkiye;1871;Other industrial roundwood;5516;Production;m3;230000;373000;459000;649000;770000;770000;744000;729000;638000;846000;741000;870000;880000;969000;1033000;873000;1062000;1216000;1082000;725000;1021000;1021000;1021000;1565000;1626000;2592000;1630000;1630000;1630000;1630000;1600000;2578000;3062000;2945000;3720000;3599000;3600000;1833000;1829000;1882000;1739000;1901000;1942000;1712000;1692000;1830000;216000;182000;247000;347000;416000;424000;244000;285000;774000;690000;623000;802000;800000;800000;1371000;1030000;905144 -223;'792;Türkiye;1871;Other industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -223;'792;Türkiye;1871;Other industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -223;'792;Türkiye;1871;Other industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -223;'792;Türkiye;1871;Other industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -223;'792;Türkiye;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;164000;45000;57000;537000;645000;645000;627000;628000;563000;751000;655000;735000;749000;834000;917000;728000;837000;926000;618000;609000;858000;858000;858000;1157000;1311000;2036000;1315000;1315000;1315000;1315000;1300000;1521000;1640000;1618000;1956000;1786000;1820000;956000;988000;1049000;857000;1033000;885000;866000;887000;1007000;215000;181000;217000;286000;375000;364000;202000;250000;558000;644000;584000;734000;730000;730000;1292000;964000;899768 -223;'792;Türkiye;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;66000;328000;402000;112000;125000;125000;117000;101000;75000;95000;86000;135000;131000;135000;116000;145000;225000;290000;464000;116000;163000;163000;163000;408000;315000;556000;315000;315000;315000;315000;300000;1057000;1422000;1327000;1764000;1813000;1780000;877000;841000;833000;882000;868000;1057000;846000;805000;823000;1000;1000;30000;61000;41000;60000;42000;35000;216000;46000;39000;68000;70000;70000;79000;66000;5376 -223;'792;Türkiye;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -223;'792;Türkiye;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -223;'792;Türkiye;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -223;'792;Türkiye;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -223;'792;Türkiye;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;800;800;800;800;800;800;800;800 -223;'792;Türkiye;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;339;2302;100;100;800;500;1000;1000;1000;2000;2000;3470;10000;11843;20000;22000;14800;19000;23000;32000;50553;73708;58467;82000;89000;94000;88000;81000;62000;33000;57000;65892 -223;'792;Türkiye;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;377;16;12;135;95;122;230;260;319;246;505;1704;2350;3936;5831;4827;6048;7776;10642;17630;32865;29498;36676;39065;39427;36362;33178;26698;20328;34927;34715 -223;'792;Türkiye;1630;Wood charcoal;5910;Export quantity;t;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;24;53;120;100;80;777;1250;900;1100;6000;5000;8000;11000;19000;18000;13376 -223;'792;Türkiye;1630;Wood charcoal;5922;Export value;1000 USD;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1;0;0;0;0;0;0;0;30;12;67;92;57;335;602;526;819;2727;3097;5183;7299;12266;13722;9413 -223;'792;Türkiye;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;400000;400000;1690000;1700000;1700000;1700000;1700000;1700000;1700000;1700000;1700000;1215000;1166000;1170000;980000;980000;980000;980000;950000;950000;1050000;1801656 -223;'792;Türkiye;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8000;11000;6000;15000;74000;324058;1008000;1292000;1394000;1965000;2280000;2468500;2566000;2872600;4485600;5252000;5628562;5004800;3971000;2093000;2426700;252362;196500;299000;397000;926721 -223;'792;Türkiye;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;365;434;160;318;1765;14923;40161;57195;80843;101112;145635;125732;147404;176351;195530;205650;224711;313335;231891;192718;208133;23338;17382;40672;52811;110233 -223;'792;Türkiye;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;128;8;56;337;1000;2600;717;59300;300;501;1234;1234;0;82;3200;6000;6000;5800;7000;16611;17547 -223;'792;Türkiye;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;10;10;3;3;17;6;22;57;125;336;104;2180;119;117;178;178;0;4;397;635;681;651;541;973;1421 -223;'792;Türkiye;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;200000;200000;845000;850000;850000;850000;850000;850000;850000;850000;850000;365000;316000;320000;130000;130000;130000;130000;120000;450000;500000;525000 -223;'792;Türkiye;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2093;72053;3500;900;24000;9000;4000;6000;3000;14000;74000;324000;966000;1219000;1394000;1965000;1622000;2468000;2565000;2871000;4480000;5248000;5627000;5004800;3971000;2092000;2426000;252000;196000;296000;393000;922209 -223;'792;Türkiye;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;4241;176;68;1187;345;204;230;64;303;1753;14892;37924;53327;80843;101112;102936;125577;147155;176021;195317;205457;224578;313335;231891;191219;207275;23070;17350;40602;52725;110154 -223;'792;Türkiye;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;0;;;1500;0;0;0;0;0;0;79;1;21;0;0;0;17;59000;0;1;0;0;0;82;200;0;0;0;0;500;5621 -223;'792;Türkiye;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;0;;;75;0;15;0;3;2;1;11;0;6;0;0;1;1;2088;0;1;0;0;0;4;7;0;0;1;15;49;40 -223;'792;Türkiye;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;200000;200000;845000;850000;850000;850000;850000;850000;850000;850000;850000;850000;850000;850000;850000;850000;850000;850000;830000;500000;550000;1276656 -223;'792;Türkiye;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2841;903;;;9300;0;4000;5000;3000;1000;0;58;42000;73000;0;0;658000;500;1000;1600;5600;4000;1562;0;0;1000;700;362;500;3000;4000;4512 -223;'792;Türkiye;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;31;;;300;0;161;204;96;15;12;31;2237;3868;0;0;42699;155;249;330;213;193;133;0;0;1499;858;268;32;70;86;79 -223;'792;Türkiye;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;172;0;0;0;0;0;0;0;0;0;0;49;7;35;337;1000;2600;700;300;300;500;1234;1234;0;0;3000;6000;6000;5800;7000;16111;11926 -223;'792;Türkiye;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;0;0;0;0;0;11;10;7;1;2;6;6;16;57;125;335;103;92;119;116;178;178;0;0;390;635;681;650;526;924;1381 -223;'792;Türkiye;1605;Sawdust (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;765 -223;'792;Türkiye;1605;Sawdust (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;25 -223;'792;Türkiye;1605;Sawdust (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;5000 -223;'792;Türkiye;1605;Sawdust (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;268;941 -223;'792;Türkiye;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26000 -223;'792;Türkiye;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;4000;4436 -223;'792;Türkiye;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;67;54 -223;'792;Türkiye;1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7000;7000;6390 -223;'792;Türkiye;1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;526;455;440 -223;'792;Türkiye;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;4000;20000;20000;20000;26000;84000;23000 -223;'792;Türkiye;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;260;300;1300;1600;400;366;230;400;0;137000;79446 -223;'792;Türkiye;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;60;70;741;742;173;154;157;145;45;16665;15999 -223;'792;Türkiye;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;400;400;2900;3700;2060;15300;14127;14300;29000;222361;94095 -223;'792;Türkiye;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;81;120;556;647;480;1506;1952;1961;4085;35218;20146 -223;'792;Türkiye;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;4000;20000;20000;20000;26000;84000;23000 -223;'792;Türkiye;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;123;140;100;100;200;100;250;186;0;0;137000;79131 -223;'792;Türkiye;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;32;24;73;61;52;126;148;73;26;16635;15946 -223;'792;Türkiye;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;100;200;400;500;2000;14600;14000;14000;28000;220361;93392 -223;'792;Türkiye;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;60;66;96;343;1410;1927;1932;3993;34784;19994 -223;'792;Türkiye;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -223;'792;Türkiye;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;120;200;1200;1400;300;116;44;400;0;0;315 -223;'792;Türkiye;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;28;46;668;681;121;28;9;72;19;30;53 -223;'792;Türkiye;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;300;200;2500;3200;60;700;127;300;1000;2000;703 -223;'792;Türkiye;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;80;60;490;551;137;96;25;29;92;434;152 -223;'792;Türkiye;1872;Sawnwood;5516;Production;m3;759000;1107000;1142000;1335000;1375000;1808000;1926000;2059000;2278000;2325000;2222000;2366000;2483000;2471000;2498000;2987000;3192000;4650000;4650000;4650000;4633000;4424000;4343000;4923000;4923000;4923000;4923000;4923000;4923000;4923000;4928000;4891000;5241000;4037000;4331000;4268000;3833000;4891000;5039000;5528000;5036000;5579000;5615000;6215000;6445000;6471000;6599000;6175000;5853000;6243000;6461000;6682000;6405000;6635000;7772000;8499000;8116000;8205000;8205000;9375000;11193000;9770000;9425000 -223;'792;Türkiye;1872;Sawnwood;5616;Import quantity;m3;;100;950;950;950;950;400;400;400;400;25300;12000;17500;1300;300;5900;5900;8500;8500;4350;4350;7050;7050;26550;58250;35250;232650;79450;23650;30350;30350;39026;148333;107400;180700;191000;168000;266000;307000;312000;178000;196000;236363;372953;469350;626000;634000;667000;457000;664000;909000;953000;954000;1126095;1284000;1182000;1171000;819000;442000;436000;307000;400000;869566 -223;'792;Türkiye;1872;Sawnwood;5622;Import value;1000 USD;;13;57;57;57;57;18;18;18;18;1240;575;966;81;14;1703;1703;302;302;159;159;439;439;1027;3208;2151;38505;11745;4363;5783;5783;8709;27573;12020;26896;34583;35015;40863;35062;32841;21538;25839;27097;46431;65704;91218;113045;159720;99441;132290;210967;222299;238438;278957;281417;232410;240292;183475;102547;100845;106533;170195;271598 -223;'792;Türkiye;1872;Sawnwood;5916;Export quantity;m3;5000;2100;1200;1300;4700;8200;6500;9500;10700;32400;67200;59000;46000;69300;9700;2100;800;1600;3700;6500;16100;43400;91200;72800;47900;16500;68100;68900;35200;43200;43200;48348;52300;131700;154000;23000;28000;15000;36000;43000;168000;158562;99714;57000;122010;44000;76000;28000;39000;40820;29000;24000;25477;24992;22661;23610;23762;54329;135303;143043;308518;260221;190452 -223;'792;Türkiye;1872;Sawnwood;5922;Export value;1000 USD;273;105;69;77;248;434;421;588;625;1751;3564;3826;4686;9844;1455;399;244;377;902;1710;3685;9850;22450;26502;11613;3085;10790;10174;12544;16445;16445;10843;8084;25866;21088;12230;23890;5135;10552;10813;34647;26792;13039;11423;14310;12866;26722;12261;12895;14896;14078;12587;14027;13609;10087;10455;11317;16068;35662;27382;83551;71769;43557 -223;'792;Türkiye;1632;Sawnwood, coniferous;5516;Production;m3;575500;850000;874500;1026000;1042000;1460000;1524500;1663500;1851000;1828000;1811500;1828000;1915000;1902000;1927000;2465500;2463000;3659000;3659000;3659000;3659000;3659000;3352000;3354000;3354000;3354000;3354000;3354000;3354000;3354000;3354000;3330000;3179000;2334000;2502000;2502000;2032000;2609000;2694000;3118000;2391000;3015000;2986000;3625000;3787000;4103000;4226000;4076000;3777000;3984000;4192000;4307000;4184000;4285000;5102000;5819000;5604800;5915000;5915000;6975000;6920000;6450000;6150000 -223;'792;Türkiye;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;14300;1000;6500;1050;150;2700;2700;4250;4250;100;100;2800;2800;22300;54000;31000;228400;75200;19400;26100;26100;28109;103133;82800;158700;164000;117000;188000;207000;235000;140000;119000;130085;272000;376800;487000;514000;553000;368000;581000;840000;881000;865000;1010806;1177000;1093000;1081000;750000;382000;380000;243000;319000;774140 -223;'792;Türkiye;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;727;62;453;63;7;157;157;151;151;8;8;288;288;876;3057;2000;38354;11594;4212;5632;5632;4885;21481;8193;22268;23730;15509;25458;22070;20767;14102;12920;12375;28964;44956;65970;81373;110478;64434;93086;162870;179855;184959;218406;220680;186898;189861;140736;69981;66167;58084;93503;181665 -223;'792;Türkiye;1632;Sawnwood, coniferous;5916;Export quantity;m3;1700;1700;100;700;700;100;200;1400;2900;17900;46000;31100;23500;48300;8600;1400;400;1300;1500;3400;9900;32000;84200;65100;42600;8700;11300;43000;11200;32100;32100;30628;25000;112300;130000;19000;20000;6000;17000;15000;132000;104000;59157;37000;111423;38000;39000;20000;31000;32000;17000;14000;16406;14086;13000;15000;11000;38000;100000;133000;260000;228000;67838 -223;'792;Türkiye;1632;Sawnwood, coniferous;5922;Export value;1000 USD;85;85;5;37;37;4;8;75;153;806;2047;1607;2106;5949;1067;194;94;297;313;522;2220;7579;21050;26001;11113;1164;2209;3686;6044;10515;10515;4943;4084;19186;12307;8599;14956;716;585;2833;26421;18646;6490;7040;10168;9310;10477;5931;7241;8992;5588;5025;6603;5126;3744;4802;2938;7963;18139;22397;59064;55507;16863 -223;'792;Türkiye;1633;Sawnwood, non-coniferous;5516;Production;m3;183500;257000;267500;309000;333000;348000;401500;395500;427000;497000;410500;538000;568000;569000;571000;521500;729000;991000;991000;991000;974000;765000;991000;1569000;1569000;1569000;1569000;1569000;1569000;1569000;1574000;1561000;2062000;1703000;1829000;1766000;1801000;2282000;2345000;2410000;2645000;2564000;2629000;2590000;2658000;2368000;2373000;2099000;2076000;2259000;2269000;2375000;2221000;2350000;2670000;2680000;2511200;2290000;2290000;2400000;4273000;3320000;3275000 -223;'792;Türkiye;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;100;950;950;950;950;400;400;400;400;11000;11000;11000;250;150;3200;3200;4250;4250;4250;4250;4250;4250;4250;4250;4250;4250;4250;4250;4250;4250;10917;45200;24600;22000;27000;51000;78000;100000;77000;38000;77000;106278;100953;92550;139000;120000;114000;89000;83000;69000;72000;89000;115289;107000;89000;90000;69000;60000;56000;64000;81000;95426 -223;'792;Türkiye;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;13;57;57;57;57;18;18;18;18;513;513;513;18;7;1546;1546;151;151;151;151;151;151;151;151;151;151;151;151;151;151;3824;6092;3827;4628;10853;19506;15405;12992;12074;7436;12919;14722;17467;20748;25248;31672;49242;35007;39204;48097;42444;53479;60551;60737;45512;50431;42739;32566;34678;48449;76692;89933 -223;'792;Türkiye;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;3300;400;1100;600;4000;8100;6300;8100;7800;14500;21200;27900;22500;21000;1100;700;400;300;2200;3100;6200;11400;7000;7700;5300;7800;56800;25900;24000;11100;11100;17720;27300;19400;24000;4000;8000;9000;19000;28000;36000;54562;40557;20000;10587;6000;37000;8000;8000;8820;12000;10000;9071;10906;9661;8610;12762;16329;35303;10043;48518;32221;122614 -223;'792;Türkiye;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;188;20;64;40;211;430;413;513;472;945;1517;2219;2580;3895;388;205;150;80;589;1188;1465;2271;1400;501;500;1921;8581;6488;6500;5930;5930;5900;4000;6680;8781;3631;8934;4419;9967;7980;8226;8146;6549;4383;4142;3556;16245;6330;5654;5904;8490;7562;7424;8483;6343;5653;8379;8105;17523;4985;24487;16262;26694 -223;'792;Türkiye;1634;Veneer sheets;5516;Production;m3;;;;1000;1800;1800;1800;1800;2000;2500;2700;2800;5900;7200;7700;8200;8800;9700;9700;9700;9700;9700;9700;10000;10000;10000;10000;10000;10000;10000;44000;44000;17000;15000;15000;18000;11000;10000;16000;17000;13000;60000;65000;70000;75000;84000;95000;96000;82000;96000;88000;85000;84000;85000;87000;270000;74000;74000;74000;75000;393320;394320;389320 -223;'792;Türkiye;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;100;100;100;100;500;1300;1100;1000;800;800;1200;1000;1400;1200;1500;1800;1000;1400;700;3500;5500;5500;3093;16500;2200;2900;5000;4000;6000;8000;9000;4000;8000;11187;23021;22780;21804;27300;30000;21560;42900;51000;64000;66500;81629;92000;102000;27000;99000;61923;85000;98000;122000;185318 -223;'792;Türkiye;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;29;29;29;31;331;1081;1496;1430;976;980;1470;2218;2786;2469;3600;3762;1375;1366;788;3802;5144;5144;3591;4017;2673;4047;3470;4364;4471;4121;5337;2596;5190;7590;12376;13121;12661;26086;32533;20291;27867;38303;39409;41154;47666;48648;41430;11638;42924;33922;36483;44532;70562;93995 -223;'792;Türkiye;1634;Veneer sheets;5916;Export quantity;m3;;;;100;100;300;200;200;100;100;900;900;900;300;300;300;300;300;300;300;200;400;3200;400;400;400;400;400;400;400;400;2226;24800;23700;23000;10000;6000;7000;10000;7000;11000;14400;12954;21766;20192;19682;13000;20800;17700;21800;20400;21400;16845;17909;19900;20100;4100;31000;28565;46281;67000;81000;42118 -223;'792;Türkiye;1634;Veneer sheets;5922;Export value;1000 USD;;;;65;91;219;129;129;72;72;178;178;178;19;19;19;19;19;19;19;96;192;1814;227;227;227;227;227;227;227;227;2595;2188;4633;5604;8180;8243;8989;8567;7576;10249;13302;18031;21487;22408;21644;24508;26911;21320;25171;25185;27782;23798;26711;25885;25915;5136;30191;28477;29125;41559;60105;39857 -223;'792;Türkiye;1873;Wood-based panels;5516;Production;m3;42000;45000;57400;64100;70800;67000;109000;143000;152000;165000;173000;196000;218000;258000;325000;390000;452000;531000;540000;436000;436000;434000;469000;681000;771000;771000;771000;771000;771000;771000;771000;1121000;1055000;1095000;1449000;1555000;2368000;1932000;2026000;2353000;2085000;2654000;3131000;3763000;4696000;4905000;5364000;5518000;5400000;6510000;7320000;7981000;8716000;9550000;9344000;9486000;9272000;9512000;9512000;9021000;11200000;12570000;12944000 -223;'792;Türkiye;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59647;132574;135800;139900;110000;100000;118000;73000;526000;136000;325000;439332;705764;1107426;874000;1075000;903000;668900;1016300;1091110;1507000;1320300;990064;907200;880000;723100;427568;275342;303187;224194;411300;481619 -223;'792;Türkiye;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13869;26527;20425;24854;33367;36766;50391;34524;94083;42335;78603;106779;224960;368078;335701;498319;457276;278999;503939;651912;738411;732379;601454;553609;500855;419581;200519;95561;119983;123773;225419;245993 -223;'792;Türkiye;1873;Wood-based panels;5916;Export quantity;m3;;100;62;100;46;46;46;1000;1000;600;400;400;1100;200;200;200;200;200;200;200;300;2000;3000;1500;1500;700;700;3800;3100;7400;7400;17951;6667;45067;59100;46200;42000;40000;49000;57000;159000;215000;308606;384594;492994;541000;829000;760000;765700;914085;973500;926300;776739;1047761;1034900;1182000;1700158;1805648;2087053;2356203;2970141;2863763;3015383 -223;'792;Türkiye;1873;Wood-based panels;5922;Export value;1000 USD;;34;21;39;18;18;18;107;107;72;52;52;358;52;52;52;52;52;52;52;185;1440;2777;1863;1863;977;562;2336;1250;2585;2585;4601;2221;4322;10428;8607;11449;10962;13048;13852;33764;40216;68634;102036;116226;159443;267695;327330;293380;328792;373799;382832;364538;426582;367599;390047;500841;546109;570224;662939;1036694;1190425;1229365 -223;'792;Türkiye;1640;Plywood and LVL;5516;Production;m3;20000;23000;30000;36000;41000;31000;44000;42000;35000;38000;41000;38000;39000;38000;40000;45000;50000;53000;45000;34000;34000;34000;54000;65000;65000;65000;65000;65000;65000;65000;65000;74000;77000;77000;75000;61000;66000;50000;35000;47000;35000;55000;57000;60000;64000;55000;117000;111000;100000;110000;115000;116000;116000;150000;116000;120000;105000;112000;112000;96000;600000;620000;649000 -223;'792;Türkiye;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28395;72100;67400;79000;42000;26000;16000;14000;33000;15000;21000;36071;63973;109335;146000;166000;184000;127500;190000;244000;268000;293000;293125;279000;288000;244000;130100;44382;83000;84000;159273;221471 -223;'792;Türkiye;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5334;8692;11950;14344;9140;7732;6983;8523;17565;8391;12205;17381;39863;64622;81485;110367;123214;69624;180198;273022;298861;320099;327620;309354;316670;269011;99747;30941;54539;70470;130457;155883 -223;'792;Türkiye;1640;Plywood and LVL;5916;Export quantity;m3;;100;62;100;46;46;46;1000;1000;600;400;400;1100;200;200;200;200;200;200;200;300;2000;3000;1500;1500;700;700;3800;3100;7400;7400;5582;1900;11600;6000;8000;4000;3000;5000;6000;13000;26000;20757;27527;25500;20000;27000;24000;20700;45085;17500;17300;4407;4153;14000;36000;34000;21000;45507;31600;112000;123125;97365 -223;'792;Türkiye;1640;Plywood and LVL;5922;Export value;1000 USD;;34;21;39;18;18;18;107;107;72;52;52;358;52;52;52;52;52;52;52;185;1440;2777;1863;1863;977;562;2336;1250;2585;2585;1146;530;972;1441;1641;2620;2028;3242;2764;5640;9092;14055;17237;19977;15256;22298;28837;14621;12907;14403;14051;4460;4547;10743;21224;15484;12797;23606;14168;55855;67485;73468 -223;'792;Türkiye;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;317;154 -223;'792;Türkiye;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;465;107 -223;'792;Türkiye;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140;103 -223;'792;Türkiye;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;278;301 -223;'792;Türkiye;1646;Particle board and OSB (1961-1994);5516;Production;m3;2000;2000;2400;3100;4800;12000;37000;71000;79000;89000;94000;119000;139000;177000;240000;292000;339000;415000;425000;332000;332000;330000;330000;546000;636000;636000;636000;636000;636000;636000;636000;947000;883000;898000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -223;'792;Türkiye;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10839;44300;64000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -223;'792;Türkiye;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1544;5434;2375;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -223;'792;Türkiye;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10954;3000;32600;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -223;'792;Türkiye;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2979;877;3065;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -223;'792;Türkiye;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1243000;1193000;1728000;1525000;1643000;1884000;1664000;1999000;2264000;2700000;2890000;2750000;3047000;3181000;2320000;3060000;3580000;3875000;4225000;4425000;4361000;4202000;4286000;4355000;4355000;4075000;5675000;5625000;5770000 -223;'792;Türkiye;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44000;17000;25000;17000;11000;106000;22000;66000;107000;201050;171826;66000;74000;90000;90000;206000;140000;286000;234000;77100;63000;78000;78000;59000;48581;29000;25000;19000;29802 -223;'792;Türkiye;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1254;5486;4902;7525;4371;17669;5643;10232;16026;34257;32037;16042;20179;23513;19978;36991;32867;60735;50146;20398;20111;15773;16256;15639;12233;7470;5382;7485;10919 -223;'792;Türkiye;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51000;30000;31000;22000;21000;18000;41000;76000;87556;165383;277686;172000;226000;314000;248600;260400;314000;315000;303935;478951;407100;554000;737000;870200;854851;870000;1088746;1088302;1029381 -223;'792;Türkiye;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8266;5058;6348;5184;4853;3721;6756;7129;17713;39704;43291;42873;63581;90757;62037;61259;72795;71966;76798;105803;79765;104755;137812;179102;168375;158532;241098;287808;256312 -223;'792;Türkiye;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;30000;40000;40000;75000;75000;75000;75000;80000;75000;75000;75000;75000;75000;75000;75000 -223;'792;Türkiye;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;3000;113000;11000;11000;49000;71741;98910;113000;116000;149000;154000;161000;192000;192000;193000;187895;160000;182000;186000;145000;138000;101000;66000;36000;153242 -223;'792;Türkiye;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;445;1006;4872;1948;1948;8334;18227;23918;28594;32600;36057;39294;47963;56221;51021;60259;58143;60066;39829;45174;41611;30265;19679;21333;11470;40949 -223;'792;Türkiye;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;9000;14000;23000;23000;24244;7036;6541;6000;5000;6000;5400;3600;3000;5000;4574;2495;2900;2000;2000;2800;4000;6000;4000;3000;1984 -223;'792;Türkiye;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1322;2291;3776;9208;9208;6160;2366;2301;1969;2074;2577;1849;1425;1377;1722;1791;932;861;617;585;740;1209;1234;1735;1049;855 -223;'792;Türkiye;1874;Fibreboard;5516;Production;m3;20000;20000;25000;25000;25000;24000;28000;30000;38000;38000;38000;39000;40000;43000;45000;53000;63000;63000;70000;70000;70000;70000;85000;70000;70000;70000;70000;70000;70000;70000;70000;100000;95000;120000;131000;301000;574000;357000;348000;422000;386000;600000;810000;1003000;1742000;2100000;2200000;2226000;2950000;3300000;3585000;3915000;4300000;4900000;4792000;5084000;4806000;4970000;4970000;4775000;4850000;6250000;6450000 -223;'792;Türkiye;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20413;16174;4400;16900;51000;49000;83000;45000;274000;88000;227000;247261;369000;727355;549000;719000;480000;297400;459300;515110;761000;600300;431944;405200;332000;215100;93468;44379;90187;49194;197027;77104 -223;'792;Türkiye;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6991;12401;6100;9256;18741;24132;35438;20624;53977;26353;54218;65038;132613;247501;209580;335173;274492;150103;238787;289802;327794;301875;195293;164078;128583;89140;43522;22122;38295;26588;76007;38242 -223;'792;Türkiye;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1415;1767;867;2100;8200;7000;10000;14000;19000;82000;90000;176049;184648;183267;343000;571000;416000;491000;605000;639000;589000;463823;562162;610900;590000;927158;911648;1182695;1448603;1765395;1649336;1886653 -223;'792;Türkiye;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;476;814;285;721;1908;2481;2428;2662;3591;12160;14787;30706;42729;50657;99345;179742;205159;214873;253201;285224;295093;281489;315300;276230;263451;346960;353470;377034;489005;738006;834083;898730 -223;'792;Türkiye;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;23000;44000;0;0;0;0;0;77000;120000;210000;270000;185000;250000;34000;20000;0;0;0;0;0;0;0;0;0;0;0;0;0 -223;'792;Türkiye;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14300;37000;18000;17000;19000;60000;22000;47000;63949;120000;190355;213000;352000;251000;125000;227000;204000;321000;268000;177846;183000;153000;100000;38000;22000;57000;20000;33000;51731 -223;'792;Türkiye;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7102;12569;9468;10202;9547;22571;12925;24788;36722;73234;119629;126937;233472;185421;89453;146780;161860;180041;185353;102922;97844;77341;47363;21415;12568;22862;12386;18166;22769 -223;'792;Türkiye;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;200;0;1000;2000;1000;4000;13000;3699;34000;23267;42000;14000;41000;23000;52000;68000;93000;84200;81752;57000;40000;55158;82196;164582;234172;350010;350560;293958 -223;'792;Türkiye;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;85;0;290;590;401;1241;4595;2995;15179;11969;19671;9424;9513;16038;28501;42843;40188;45238;41009;30142;20768;28409;39402;62572;112269;196057;231639;183974 -223;'792;Türkiye;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121000;278000;530000;357000;348000;388000;355000;570000;700000;850000;1500000;1798000;1952000;1921000;2916000;3265000;3570000;3900000;4285000;4885000;4777000;5069000;4747000;4910000;4910000;4775000;4850000;6250000;6450000 -223;'792;Türkiye;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;12000;30000;63000;21000;104000;59000;173000;176540;246000;436000;325000;334000;228000;172000;232000;311000;420000;332000;253788;220000;178000;115000;55268;21861;32187;28578;163771;25049 -223;'792;Türkiye;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1535;4608;13740;24166;9912;23106;12554;28489;27511;59141;115760;80625;96590;88749;60439;91814;127851;142873;116214;91809;64367;50467;41530;22028;9439;15216;14065;57437;15004 -223;'792;Türkiye;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1800;8000;7000;8000;6000;9000;31000;53000;122606;134000;128000;271000;515000;356000;456000;538000;556000;465000;359622;457640;534000;530000;770000;687452;905113;1017229;1136392;1091486;1402301 -223;'792;Türkiye;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;619;1823;2481;1885;1421;2239;6182;8104;21099;25295;33980;74228;160648;190474;194754;220148;237829;236783;223288;261082;236862;233844;292571;272070;283234;330853;464848;524853;648609 -223;'792;Türkiye;1650;Other fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;34000;31000;30000;33000;33000;32000;32000;63000;55000;0;15000;15000;15000;15000;15000;15000;15000;59000;60000;60000;0;0;0;0 -223;'792;Türkiye;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;659;1774;200;1600;2000;1000;3000;5000;110000;7000;7000;6772;3000;101000;11000;33000;1000;400;300;110;20000;300;310;2200;1000;100;200;518;1000;616;256;324 -223;'792;Türkiye;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;213;621;138;619;1564;924;1070;1165;8300;874;941;805;238;12112;2018;5111;322;211;193;91;4880;308;562;1867;775;247;79;115;217;137;404;469 -223;'792;Türkiye;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;330;367;367;200;0;0;1000;6000;9000;47000;24000;49744;16648;32000;30000;42000;19000;12000;15000;15000;31000;20001;22770;19900;20000;102000;142000;113000;197202;278993;207290;190394 -223;'792;Türkiye;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;152;114;114;59;0;0;253;651;951;4737;2088;6612;2255;4708;5446;9670;5172;4081;4552;4552;18122;12963;13209;9226;8839;25980;41998;31228;45883;77101;77591;66147 -223;'792;Türkiye;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;20000;20000;25000;25000;25000;24000;28000;30000;38000;38000;38000;39000;40000;43000;45000;53000;63000;63000;70000;70000;70000;70000;85000;70000;70000;70000;70000;70000;70000;70000;70000;100000;95000;120000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -223;'792;Türkiye;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19754;14400;4200;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -223;'792;Türkiye;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6778;11780;5962;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -223;'792;Türkiye;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1085;1400;500;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -223;'792;Türkiye;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;324;700;171;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -223;'792;Türkiye;1879;Total fibre furnish;5510;Production;t;45900;70300;77300;85200;84100;86000;86100;89200;85900;149900;234900;287200;367000;338000;313000;306000;398000;354000;455100;499300;514500;510500;571800;631100;587100;706100;743100;708100;736100;575100;735100;772100;820000;881000;1098000;962000;1046000;1084000;1040000;1238000;1138000;1294000;1294000;1294000;1294000;1213000;1954000;2041000;2142000;1541000;1662000;1650000;1652000;1657000;1643000;1657000;1657000;1657000;1657000;1657000;1657000;1657000;1657000 -223;'792;Türkiye;1879;Total fibre furnish;5610;Import quantity;t;6700;12000;7400;5400;7900;8300;600;10500;11300;1900;7700;7200;21700;14600;12200;28800;27500;34200;30200;32600;46700;62600;68400;91100;118100;99600;145300;164500;160000;121000;121000;242861;303008;240700;292700;220700;325400;335000;376000;396000;366000;598000;598000;598000;512918;512918;606469;676300;700110;745200;842140;893000;1019796;1152647;1333300;1602600;1983000;2019000;2575742;2967018;2498942;3034676;2779965 -223;'792;Türkiye;1879;Total fibre furnish;5622;Import value;1000 USD;873;1297;953;783;1181;1154;107;1212;1653;304;1446;1279;3957;4312;4752;9413;9341;12128;16428;17309;20586;24240;25141;37672;37088;34844;65734;102572;87579;73662;73662;101811;103541;102178;226497;144447;143021;152881;163949;236467;148197;190673;190673;190673;269806;269806;407520;466804;341196;543051;598959;555108;642390;681989;736610;741719;948807;1125966;999401;936985;1216410;1806142;1314218 -223;'792;Türkiye;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;371;1226;5400;4100;1848;2000;5000;0;1000;1000;4581;4581;4581;4581;4581;9346;35650;34063;75241;122833;41800;70849;82046;78971;67180;57200;84287;134461;111140;139563;248065;250245 -223;'792;Türkiye;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;239;1762;992;396;461;601;122;612;82;738;738;738;738;738;1457;7406;5720;14603;27778;8448;28986;34761;24243;23990;21818;31993;56883;54078;78045;192724;122132 -223;'792;Türkiye;1878;Pulp for paper;5510;Production;t;45900;70300;77300;85200;84100;86000;86100;89200;85900;111900;196900;246200;317000;278000;253000;234000;258000;182000;311100;336300;353500;349500;383800;441100;437100;468100;453100;418100;456100;414100;385100;422100;284000;354000;512000;407000;357000;392000;333000;372000;292000;278000;278000;278000;278000;138000;128000;118000;109000;118000;128000;116000;118000;123000;109000;123000;123000;123000;123000;123000;123000;123000;123000 -223;'792;Türkiye;1878;Pulp for paper;5610;Import quantity;t;6700;12000;7400;5400;7900;8300;600;10500;11300;1900;7700;7200;21700;14600;12200;28800;27500;34200;30200;31600;38500;54400;66400;78900;95600;95600;104300;136400;111800;96700;96700;157597;219773;195900;229700;204900;262400;303000;319000;320000;300000;368000;368000;368000;474918;474918;577469;591300;618110;629200;770140;841000;939728;968813;1032300;1151600;1230000;1266000;1349401;1424018;1307668;1677676;1602862 -223;'792;Türkiye;1878;Pulp for paper;5622;Import value;1000 USD;873;1297;953;783;1181;1154;107;1212;1653;304;1446;1279;3957;4312;4752;9413;9341;12128;16428;17200;18920;22574;24801;36338;34500;34500;60454;99380;81757;70804;70804;89197;92097;94574;206806;139516;133035;147228;157890;223156;141211;166858;166858;166858;264389;264389;402890;451470;329670;525774;582859;546117;629192;648712;689084;668527;803213;980372;854718;748482;945278;1512788;1129781 -223;'792;Türkiye;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;902;3700;100;148;1000;0;0;0;0;1581;1581;1581;1581;1581;346;650;1063;1241;2833;1800;31307;38717;18971;21180;17200;12287;43112;67140;64147;120065;131566 -223;'792;Türkiye;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;156;1526;53;82;289;218;106;375;1;413;413;413;413;413;301;815;1044;1445;2741;1978;22229;27158;14331;15149;12947;11424;37164;46608;59959;151084;91962 -223;'792;Türkiye;1875;Wood pulp;5510;Production;t;39600;66600;68700;76000;76000;78300;76900;80000;78500;101600;184600;235000;322000;283000;262000;238000;264000;168000;284600;282600;289500;283500;317800;375100;352100;376100;365100;351100;375100;336100;307100;342100;258000;328000;413000;336000;278000;290000;250000;306000;236000;225000;225000;225000;225000;85000;75000;65000;56000;65000;75000;63000;65000;70000;56000;70000;70000;70000;70000;70000;70000;70000;70000 -223;'792;Türkiye;1875;Wood pulp;5610;Import quantity;t;6700;12000;7400;5400;7900;8300;2000;10500;11300;12300;31000;39800;48000;25600;17500;100000;63200;34200;30200;46700;46300;70700;82700;89900;106600;106600;108700;139600;111900;97000;97000;157677;227534;195900;229700;209000;263400;304000;319000;320000;301000;368000;368000;368000;486666;486666;577000;599000;618110;627000;770440;841500;938491;967731;1030100;1150200;1227100;1261265;1345159;1424018;1308668;1678676;1612333 -223;'792;Türkiye;1875;Wood pulp;5622;Import value;1000 USD;873;1297;953;783;1181;1154;307;1212;1653;2753;6459;7279;7738;8800;7246;18943;18797;12128;16428;26765;24184;31872;34099;42234;40396;40396;62850;101530;81858;71041;71041;89255;94879;94574;206806;140970;133453;147483;157892;223197;141803;166897;166897;166897;270326;270326;402277;456727;327739;524907;583147;546622;627866;647461;686908;667463;801381;978048;851422;746792;947413;1510689;1134171 -223;'792;Türkiye;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;300;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;62;902;100;0;0;0;0;0;0;0;1102;1102;1102;1102;1102;346;630;1033;1091;2533;1500;30901;38428;18873;21150;17210;12379;43058;67083;64147;122213;131024 -223;'792;Türkiye;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;169;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;21;156;28;0;0;0;80;90;353;1;229;229;229;229;229;291;791;1022;1281;2551;1823;22035;27031;14292;15138;12950;11396;37134;46471;59851;153013;91638 -223;'792;Türkiye;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70000;70000;70000;70000;70000;70000;70000 -223;'792;Türkiye;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21000;71000;34776;20018;33668;33660;11530 -223;'792;Türkiye;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7635;13259;16223;11876;15775;15350;5768 -223;'792;Türkiye;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;119;45;64;147;279;71 -223;'792;Türkiye;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;45;48;66;72;137;35 -223;'792;Türkiye;1654;Mechanical wood pulp (1961-2016);5510;Production;t;23500;37700;38100;42200;39300;39600;37200;37500;38700;39200;87200;99400;107000;99000;97000;94000;100000;87000;105000;116000;116000;155000;150000;152000;158000;169000;164000;128000;152000;148000;94000;112000;47000;52000;132000;70000;25000;31000;53000;96000;70000;42000;42000;42000;42000;15867;0;0;0;0;0;0;0;0;0;0;;;;;;; -223;'792;Türkiye;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;6700;12000;7400;5400;7900;8300;;;;;;;;;;;;;;;;;;;;;;;;;;2141;340;100;300;100;0;0;0;1000;2000;4000;4000;4000;10800;10800;14000;9000;500;2600;3540;200;350;929;3700;8300;;;;;;; -223;'792;Türkiye;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;873;1297;953;783;1181;1154;;;;;;;;;;;;;;;;;;;;;;;;;;1065;153;65;280;62;0;13;10;334;691;1557;1557;1557;4482;4482;7400;5425;249;1707;1937;120;239;505;1750;3326;;;;;;; -223;'792;Türkiye;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;10;30;140;233;0;141;24;40;100;;;;;;; -223;'792;Türkiye;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;8;0;0;0;0;0;0;0;0;14;52;288;125;87;399;13;149;198;;;;;;; -223;'792;Türkiye;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;1900;2200;4500;6000;1600;5900;11700;2200;32000;19000;8000;17000;20000;3000;2100;600;6500;6500;2800;3100;3100;3100;3100;3100;3100;3100;3100;3100;42000;42000;42000;55000;30000;50000;0;0;0;0;0;0;0;0;75000;65000;56000;65000;75000;63000;65000;70000;56000;70000;;;;;;; -223;'792;Türkiye;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;600;600;1000;1000;3500;500;3600;1700;500;12900;7300;4200;5600;6000;6000;6000;6000;6000;6000;6000;6000;500;700;600;600;5138;4200;1000;3500;1800;2000;2000;3000;0;9000;4000;4000;4000;1000;1000;0;0;600;5900;12200;11200;2900;1412;3000;4300;;;;;;; -223;'792;Türkiye;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;107;107;125;125;622;130;690;489;134;3615;2243;1310;1109;1200;1200;1200;1200;1200;1200;1200;1200;557;321;268;268;3257;2223;192;678;348;916;1196;1674;292;3464;1543;1543;1543;508;508;0;0;317;3781;7124;6400;1696;967;1370;1782;;;;;;; -223;'792;Türkiye;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;10;0;0;0;0;0;0;30;0;;;;;;; -223;'792;Türkiye;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;263;0;0;0;0;0;0;0;47;0;0;0;0;0;0;19;0;;;;;;; -223;'792;Türkiye;1656;Chemical wood pulp;5510;Production;t;16100;28900;30600;33800;34800;36500;35200;36500;38200;56500;85700;132500;172000;150000;142000;117000;132000;75000;169000;156000;156000;113000;156000;211000;182000;195000;189000;211000;211000;176000;201000;218000;160000;225000;230000;202000;223000;209000;197000;210000;166000;183000;183000;183000;183000;69133;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -223;'792;Türkiye;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;9900;10300;900;4200;6700;18100;12900;11700;15900;20200;30000;24600;25600;32500;48400;60400;72900;89600;89600;98300;135900;111100;96100;96100;150318;215233;194800;225900;203000;260400;301000;316000;319000;289000;359000;359000;359000;462666;462666;563000;582000;615010;617700;754200;829500;934765;964767;1022700;1137000;1206000;1190000;1309625;1402000;1270000;1641016;1588973 -223;'792;Türkiye;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;1105;1528;179;824;1149;3267;3823;4618;5798;7098;10818;15319;16000;17720;21374;23601;35138;33300;33300;59254;98823;81436;70536;70536;84875;89721;94317;205848;139106;132119;145910;155993;222432;136868;163374;163374;163374;258855;258855;394877;445155;326194;518031;573330;539355;625322;645160;682990;661591;793281;963559;834435;733594;923856;1489494;1116695 -223;'792;Türkiye;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;902;100;0;0;0;0;0;0;0;1102;1102;1102;1102;1102;346;610;1003;801;2300;1500;30760;38401;18801;21050;17100;12140;43011;67006;64000;119786;130938 -223;'792;Türkiye;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;156;28;0;0;0;78;82;90;1;229;229;229;229;229;291;730;970;992;2426;1736;21636;27007;14115;14940;12868;11342;37079;46372;59754;150790;91589 -223;'792;Türkiye;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;;;;;;17100;40600;63700;60000;79000;77000;59000;78000;37000;86000;42000;41000;30000;41000;61000;129000;138000;134000;150000;150000;125000;143000;154000;123000;171000;181000;157000;173000;159000;143000;149000;153000;148000;148000;148000;148000;55911;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -223;'792;Türkiye;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;3200;1500;12900;10500;6900;3400;7300;7300;5900;3500;16600;32600;45000;64300;77700;77700;73300;108300;77000;70000;70000;9056;11496;7500;3400;2000;500;4000;2000;0;0;0;0;0;2070;2070;2519;5000;4000;10000;8500;12000;14126;12035;12000;15000;19000;26000;34180;18000;16000;50634;31278 -223;'792;Türkiye;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;631;279;2397;3071;2729;1107;2533;2533;4300;2583;10369;14185;16471;30568;27928;27928;44100;78987;57000;52000;52000;3542;4154;2311;2272;1159;185;1457;660;163;0;0;0;0;1102;1102;1681;3400;2305;6634;6756;7994;9592;9106;8961;9766;11935;22178;14642;10884;5700;27430;19770 -223;'792;Türkiye;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;1000;1000;1000;1000;1000;315;0;0;0;0;0;0;0;0;0;0;0;0;0;2000;17000;385 -223;'792;Türkiye;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;183;183;183;183;183;233;0;0;0;0;0;0;0;0;0;0;2;0;0;688;26678;240 -223;'792;Türkiye;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;22700;56000;29000;24000;24000;22000;17000;36700;46000;57000;41000;57000;64000;28000;30000;29000;33000;33000;28000;32000;42000;37000;54000;49000;45000;50000;50000;54000;61000;13000;35000;35000;35000;35000;13222;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -223;'792;Türkiye;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;5500;5600;10000;10000;10000;125172;192535;178500;212700;192000;247000;285000;300000;307000;278000;345000;345000;345000;452000;452000;550016;573000;609000;603000;736000;810000;917230;949937;1007000;1119000;1166000;1134000;1244000;1347000;1219000;1554382;1548867 -223;'792;Türkiye;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;2521;3143;5700;5800;5800;69594;78487;86956;194551;130340;123948;135675;147311;213263;129965;154893;154893;154893;250856;250856;382675;437300;321377;506174;556766;524835;611234;631903;669729;648627;766558;916724;799872;703709;897868;1437326;1091892 -223;'792;Türkiye;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;902;100;0;0;0;0;0;0;0;102;102;102;102;102;31;600;1000;800;2300;1500;30757;38396;18800;21000;17000;12000;43000;67000;62000;102786;130422 -223;'792;Türkiye;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;156;28;0;0;0;0;82;89;1;46;46;46;46;46;58;720;956;986;2411;1732;21629;26995;14112;14922;12858;11300;37064;46359;59035;124097;91200 -223;'792;Türkiye;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -223;'792;Türkiye;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21000;30000;31445;37000;35000;36000;8828 -223;'792;Türkiye;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14788;24657;19921;19001;20288;24738;5033 -223;'792;Türkiye;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;140;11;6;0;0;131 -223;'792;Türkiye;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;40;15;13;31;15;149 -223;'792;Türkiye;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;19400;19900;17500;15900;17200;17400;16600;18900;20600;16000;24000;24000;21000;25000;17000;37000;56000;46000;33000;46000;68000;;;;;;;;14000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -223;'792;Türkiye;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;1000;4600;4600;500;4200;11900;11900;21700;9900;12400;6200;6100;5700;8400;10400;10400;18800;20900;23000;15000;15000;2;0;0;0;0;0;0;0;0;0;0;0;0;115;115;146;0;10;0;0;100;0;0;0;0;;;;;;; -223;'792;Türkiye;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;193;759;759;151;1646;4448;4248;7968;6134;9561;3495;3333;3274;4461;4847;4847;12237;15957;18000;12000;12000;4;0;0;0;0;0;794;2;166;0;0;0;0;57;57;87;0;0;0;0;64;0;0;0;0;;;;;;; -223;'792;Türkiye;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;;;;;;; -223;'792;Türkiye;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;2;0;0;0;0;;;;;;; -223;'792;Türkiye;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;14400;14900;19000;19300;19300;20800;22800;26200;25500;40000;18000;17000;13000;7000;4000;9300;12000;12000;9000;12000;18000;25000;27000;26000;28000;28000;23000;26000;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;;;;;;; -223;'792;Türkiye;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;600;600;1900;600;600;1000;1000;8800;9700;9700;9700;9700;200;1500;1500;700;1100;1100;1100;1100;16088;11202;8800;9800;9000;12900;12000;14000;12000;11000;14000;14000;14000;8481;8481;10319;4000;2000;4700;9700;7400;3409;2795;3700;3000;;;;;;; -223;'792;Türkiye;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;111;111;601;243;243;317;317;4885;3856;3856;3856;3856;109;525;525;396;736;736;736;736;11735;7080;5050;9025;7607;7986;7984;8020;8840;6903;8481;8481;8481;6840;6840;10434;4455;2512;5223;9808;6462;4496;4151;4300;3198;;;;;;; -223;'792;Türkiye;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;10;3;1;0;0;3;5;1;50;;;;;;; -223;'792;Türkiye;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;77;0;1;0;0;0;0;0;0;0;10;14;6;15;2;7;12;3;18;;;;;;; -223;'792;Türkiye;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;900;11000;15000;15000;10000;12000;3000;8500;10000;11000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;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;0;0;0 -223;'792;Türkiye;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;1400;0;0;10400;23300;32600;26300;11000;5300;71200;35700;0;0;15100;7800;16300;16300;11000;11000;11000;4400;3200;100;300;300;80;7761;0;0;4100;1000;1000;0;0;1000;1000;1000;1000;12200;12200;0;8000;2000;800;500;600;476;623;700;600;100;265;758;2000;5000;4000;11830 -223;'792;Türkiye;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;200;0;0;2449;5013;6000;3781;4488;2494;9530;9456;0;0;9565;5264;9298;9298;5896;5896;5896;2396;2150;101;237;237;58;2782;0;0;1454;418;364;215;139;780;423;423;423;6481;6481;0;6147;979;1388;756;747;609;829;798;764;465;1230;764;1322;7782;5845;11708 -223;'792;Türkiye;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;300;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;150;0;0;0;3;2;0;10;120;2;13;0;2148;15 -223;'792;Türkiye;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;169;0;0;0;0;0;0;0;0;0;0;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;11;9;0;3;9;7;33;25;2086;14 -223;'792;Türkiye;1668;Pulp from fibres other than wood;5510;Production;t;6300;3700;8600;9200;8100;7700;9200;9200;7400;10300;12300;12100;6000;10000;6000;6000;6000;17000;35000;63700;75000;75000;75000;75000;94000;101000;97000;76000;90000;87000;87000;89000;35000;35000;108000;80000;79000;102000;83000;66000;56000;53000;53000;53000;53000;53000;53000;53000;53000;53000;53000;53000;53000;53000;53000;53000;53000;53000;53000;53000;53000;53000;53000 -223;'792;Türkiye;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;1000;1000;1000;452;452;469;300;2000;3000;200;100;1713;1705;2900;2000;3000;5000;5000;2000;4000;3000;2359 -223;'792;Türkiye;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109;213;98;188;384;384;384;544;544;613;890;2910;2255;468;242;1935;2080;2974;1828;2297;3554;4060;3012;5647;7944;7318 -223;'792;Türkiye;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3600;100;148;1000;0;0;0;0;479;479;479;479;479;0;20;30;300;300;300;406;292;100;30;0;28;56;70;0;0;557 -223;'792;Türkiye;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1498;53;82;289;138;16;22;0;184;184;184;184;184;10;24;22;165;190;155;194;138;48;11;0;37;37;170;133;157;338 -223;'792;Türkiye;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;26;26;31;0;20;10;3500;5000;2843;627;300;500;50;543;204;500;0;0;1028 -223;'792;Türkiye;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;8;0;0;0;0;36;36;41;0;24;7;2911;4208;2111;636;302;408;389;274;184;378;377;493;756 -223;'792;Türkiye;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;30;600;700;30;60;28;24;20;10;20;5;16;49;0;0;278 -223;'792;Türkiye;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1;0;0;0;0;0;0;0;40;447;530;19;13;34;26;5;1;3;3;9;67;245;242;393 -223;'792;Türkiye;1669;Recovered paper;5510;Production;t;;;;;;;;;;38000;38000;41000;50000;60000;60000;72000;140000;172000;144000;163000;161000;161000;188000;190000;150000;238000;290000;290000;280000;161000;350000;350000;536000;527000;586000;555000;689000;692000;707000;866000;846000;1016000;1016000;1016000;1016000;1075000;1826000;1923000;2033000;1423000;1534000;1534000;1534000;1534000;1534000;1534000;1534000;1534000;1534000;1534000;1534000;1534000;1534000 -223;'792;Türkiye;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;1000;8200;8200;2000;12200;22500;4000;41000;28100;48200;24300;24300;85264;83235;44800;63000;15800;63000;32000;57000;76000;66000;230000;230000;230000;38000;38000;29000;85000;82000;116000;72000;52000;80068;183834;301000;451000;753000;753000;1226341;1543000;1191274;1357000;1177103 -223;'792;Türkiye;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;109;1666;1666;340;1334;2588;344;5280;3192;5822;2858;2858;12614;11444;7604;19691;4931;9986;5653;6059;13311;6986;23815;23815;23815;5417;5417;4630;15334;11526;17277;16100;8991;13198;33277;47526;73192;145594;145594;144683;188503;271132;293354;184437 -223;'792;Türkiye;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;309;324;1700;4000;1700;1000;5000;0;1000;1000;3000;3000;3000;3000;3000;9000;35000;33000;74000;120000;40000;39542;43329;60000;46000;40000;72000;91349;44000;75416;128000;118679 -223;'792;Türkiye;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;83;236;939;314;172;383;16;237;81;325;325;325;325;325;1156;6591;4676;13158;25037;6470;6757;7603;9912;8841;8871;20569;19719;7470;18086;41640;30170 -223;'792;Türkiye;1876;Paper and paperboard;5510;Production;t;63300;82100;94400;98600;97900;106200;126800;130700;145900;164800;212100;277700;345000;387000;240000;310000;340000;265000;443400;478000;512000;537000;391000;488000;644000;710000;813000;681000;751000;891000;747000;1012200;1032000;1102000;1240000;1105000;1246000;1357000;1349000;1567000;1513000;1643000;1643000;1643000;1866000;1720000;2039000;2050000;2156000;2348000;2659000;2784000;2847201;2900002;2922130;3049790;3076852;2799991;2728739;2697762;2761460;2823768;2851460 -223;'792;Türkiye;1876;Paper and paperboard;5610;Import quantity;t;27100;34000;47000;26100;51100;47800;101400;111600;123400;56900;121800;38500;26400;17400;30500;59900;49100;34900;65100;99500;67000;70000;32000;70600;83000;82600;113000;135500;220900;249000;226100;314809;640905;256900;421000;700000;811000;775000;871000;1005540;668000;1020000;1020000;1020000;2068000;2068000;2495001;2213000;2165000;2700004;2613867;2711329;2659151;2696746;2468900;2638300;2672000;2674942;2417000;2505000;2390893;2788793;2438077 -223;'792;Türkiye;1876;Paper and paperboard;5622;Import value;1000 USD;5392;6733;8789;5158;9544;8723;18021;19264;19493;10993;27577;11383;11276;11096;20305;24648;23578;19617;32391;46872;53573;46528;26657;41280;47824;47882;77815;91757;165988;187683;176149;224247;375730;236218;513055;564341;532119;600355;620912;752791;525498;665307;665307;665307;1752680;1752680;1983622;2082093;1727582;2266366;2500366;2316456;2268616;2279821;1848203;2223178;2345113;2274022;2141055;1983591;2226928;3368155;2433276 -223;'792;Türkiye;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;4500;15000;1200;1700;200;300;500;500;1300;900;600;1000;42000;41000;83600;76000;70000;64000;64000;79268;27998;88800;97000;37400;48000;57000;78000;65000;163000;174627;174627;174627;174627;174627;195764;269040;228000;274528;310817;362416;369901;329707;475700;733900;835000;959810;882000;816000;741380;962629;868311 -223;'792;Türkiye;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;1353;4672;657;554;65;80;135;135;3501;2403;1416;2036;20568;16738;44220;54000;55800;53268;53268;59731;23581;70117;62451;34244;36500;40982;45558;47435;89070;99756;99756;99756;99756;99756;167921;227185;183818;234154;313632;376232;433661;316240;351104;637401;710408;795786;798759;678132;765917;1195813;1013048 -223;'792;Türkiye;2042;Graphic papers;5510;Production;t;24000;37000;40900;45200;43900;45100;44700;49300;50400;53100;84700;113400;141000;159000;158000;157000;161000;139000;149000;155000;200000;230000;232000;244000;236000;252000;275000;190000;203000;290000;218000;261600;205000;274000;348000;269000;296000;348000;319000;386000;302000;271000;271000;271000;452000;339000;331000;289000;273000;241000;294000;331000;337000;342913;345275;348826;346462;331087;331080;331080;331080;331080;331080 -223;'792;Türkiye;2042;Graphic papers;5610;Import quantity;t;17500;19200;27500;13900;24000;26500;50500;56700;66800;19700;79100;22500;7300;4500;14600;26900;24100;16300;46200;74200;25100;39600;12900;36000;38300;44500;60200;82200;111600;146300;123400;224816;453205;149700;208000;415000;470000;395000;495000;580540;358000;530000;530000;530000;996000;996000;1201654;1166000;1091000;1361937;1266496;1328470;1370067;1301342;1239700;1191000;1152000;1022396;1016000;929000;766000;883000;795370 -223;'792;Türkiye;2042;Graphic papers;5622;Import value;1000 USD;3349;3659;4950;2162;3229;3638;7301;8079;9343;2855;13867;4505;2533;1754;6353;8713;8794;5572;14641;22872;16017;20066;10180;18532;21320;30102;47825;61483;85688;102184;90650;139953;260745;149154;309551;349999;309118;288553;331656;410523;262152;326194;326194;326194;757591;757591;857415;1112364;899733;1143543;1190470;1140763;1184141;1124679;975727;1102907;1063195;900344;855088;706270;675694;1084354;890426 -223;'792;Türkiye;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;3600;5800;;;;;;;;;;;;;0;;;;;9398;5498;20600;32000;5400;9000;11000;8000;8000;17000;30627;30627;30627;30627;30627;34337;9040;21000;16552;17860;25583;20591;19926;17100;30900;29000;34493;55000;36000;34000;28629;41587 -223;'792;Türkiye;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;1042;1493;;;;;;;;;;;;;0;;;;;5752;3647;12192;21688;5842;7214;8459;6894;7781;13353;24161;24161;24161;24161;24161;40671;11527;20462;19171;21422;27792;22953;22802;19698;28907;25426;31144;53601;33673;37583;39589;53111 -223;'792;Türkiye;1671;Newsprint;5510;Production;t;12900;20400;19500;22300;20300;18400;12600;8300;11800;10700;40100;65500;84000;96000;86000;80000;89000;77000;88000;86000;125000;144000;147000;152000;145000;150000;155000;115000;128000;151000;93000;134600;94000;110000;151000;78000;60000;98000;68000;128000;88000;54000;54000;54000;84500;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -223;'792;Türkiye;1671;Newsprint;5610;Import quantity;t;11100;11200;17100;10900;22700;25700;46700;51900;59600;15400;66800;17800;2500;1500;12200;24200;19900;13500;43400;71400;20400;32000;4200;23000;17000;20000;15400;48100;59200;80900;58000;124512;256340;124700;183000;255000;315000;239000;314000;344000;197000;246000;246000;246000;502000;502000;605653;536000;469000;510961;486920;456770;435428;391641;348000;263000;225000;224488;140000;125000;125000;106000;97329 -223;'792;Türkiye;1671;Newsprint;5622;Import value;1000 USD;1583;1625;2226;1370;2930;3398;6187;6813;7796;1888;10612;2910;577;447;5245;7430;6580;4081;13150;21381;13106;15109;1886;9700;7200;8185;8371;27856;34388;41534;30000;55569;121546;54868;142362;169697;146050;124888;159894;192293;124395;106773;106773;106773;307766;307766;348319;395413;294970;299436;336595;294786;276277;243789;172708;131627;112523;112267;77900;51502;52000;79212;63440 -223;'792;Türkiye;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;3600;5800;;;;;;;;;;;;;0;;;;;74;100;200;19000;400;1000;2000;0;1000;6000;201;201;201;201;201;224;1040;1000;608;584;2400;2786;1088;1300;900;1000;2157;2000;1000;1000;2000;2354 -223;'792;Türkiye;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;1042;1493;;;;;;;;;;;;;0;;;;;34;39;70;9215;223;307;1337;220;535;3279;110;110;110;110;110;185;709;560;503;504;1763;1908;791;666;510;670;1445;1725;813;799;1615;1985 -223;'792;Türkiye;1674;Printing and writing papers;5510;Production;t;11100;16600;21400;22900;23600;26700;32100;41000;38600;42400;44600;47900;57000;63000;72000;77000;72000;62000;61000;69000;75000;86000;85000;92000;91000;102000;120000;75000;75000;139000;125000;127000;111000;164000;197000;191000;236000;250000;251000;258000;214000;217000;217000;217000;367500;339000;331000;289000;273000;241000;294000;331000;337000;342913;345275;348826;346462;331087;331080;331080;331080;331080;331080 -223;'792;Türkiye;1674;Printing and writing papers;5610;Import quantity;t;6400;8000;10400;3000;1300;800;3800;4800;7200;4300;12300;4700;4800;3000;2400;2700;4200;2800;2800;2800;4700;7600;8700;13000;21300;24500;44800;34100;52400;65400;65400;100304;196865;25000;25000;160000;155000;156000;181000;236540;161000;284000;284000;284000;494000;494000;596001;630000;622000;850976;779576;871700;934639;909701;891700;928000;927000;797908;876000;804000;641000;777000;698041 -223;'792;Türkiye;1674;Printing and writing papers;5622;Import value;1000 USD;1766;2034;2724;792;299;240;1114;1266;1547;967;3255;1595;1956;1307;1108;1283;2214;1491;1491;1491;2911;4957;8294;8832;14120;21917;39454;33627;51300;60650;60650;84384;139199;94286;167189;180302;163068;163665;171762;218230;137757;219421;219421;219421;449825;449825;509096;716951;604763;844107;853875;845977;907864;880890;803019;971280;950672;788077;777188;654768;623694;1005142;826986 -223;'792;Türkiye;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9324;5398;20400;13000;5000;8000;9000;8000;7000;11000;30426;30426;30426;30426;30426;34113;8000;20000;15944;17276;23183;17805;18838;15800;30000;28000;32336;53000;35000;33000;26629;39233 -223;'792;Türkiye;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5718;3608;12122;12473;5619;6907;7122;6674;7246;10074;24051;24051;24051;24051;24051;40486;10818;19902;18668;20918;26029;21045;22011;19032;28397;24756;29699;51876;32860;36784;37974;51126 -223;'792;Türkiye;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;250000;6000;2000;2000;3000;3000;3000;84500;14000;15000;5000;6000;8000;11000;11000;12000;12211;12294;12416;12332;11783;11780;11780;11780;11780;11780 -223;'792;Türkiye;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7000;9000;16000;9000;22000;22000;22000;32000;32000;38607;70000;68000;87354;81590;97900;95988;75181;66700;76000;80000;79995;64000;60000;54000;74000;71849 -223;'792;Türkiye;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5354;6368;9886;5788;13077;13077;13077;21740;21740;24605;63989;58258;68783;70350;78237;74947;61141;45751;48885;52085;52082;46200;39600;38383;68108;66404 -223;'792;Türkiye;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;0;0;0;426;426;426;426;426;482;1000;2000;3060;3152;3140;2366;4481;2800;6000;8000;7368;8000;4000;3000;9000;6835 -223;'792;Türkiye;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;303;220;249;219;253;253;253;253;253;426;709;2058;2605;2586;2128;1892;3120;1562;3513;3673;3383;3599;2018;2265;6170;4256 -223;'792;Türkiye;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;223000;229000;200000;201000;201000;201000;271000;317000;305000;277000;263000;231000;281000;315000;320000;325614;327856;331227;328982;314383;314380;314380;314380;314380;314380 -223;'792;Türkiye;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34000;28000;57540;47000;100000;100000;100000;220000;220000;265426;250000;254000;402458;335418;406400;441906;424124;453000;468000;425000;314237;442000;459000;365000;447000;425886 -223;'792;Türkiye;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40177;35482;59759;42410;77572;77572;77572;195221;195221;220944;309650;251987;408667;393094;424502;459050;436032;461098;631921;568945;420667;420527;395929;396309;630733;547106 -223;'792;Türkiye;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7000;6000;4000;9000;28000;28000;28000;28000;28000;31389;4000;15000;9687;9667;16800;11344;10328;9000;16000;15000;18756;38000;28000;27000;13000;27511 -223;'792;Türkiye;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5694;4498;4252;8099;22158;22158;22158;22158;22158;37299;5460;13895;11241;11354;18131;13286;12118;10498;14968;15315;19150;37273;25359;28643;22737;34731 -223;'792;Türkiye;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;22000;27000;12000;13000;13000;13000;12000;8000;11000;7000;4000;2000;2000;5000;5000;5088;5125;5183;5148;4921;4920;4920;4920;4920;4920 -223;'792;Türkiye;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115000;144000;163000;105000;162000;162000;162000;242000;242000;291968;310000;300000;361164;362568;367400;396745;410396;372000;384000;422000;403676;370000;285000;222000;256000;200306 -223;'792;Türkiye;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118134;129912;148585;89559;128772;128772;128772;232864;232864;263547;343312;294518;366657;390431;343238;373867;383717;296170;290474;329642;315328;310461;219239;189002;306301;213476 -223;'792;Türkiye;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;2000;3000;2000;2000;2000;2000;2000;2000;2242;3000;3000;3197;4457;3243;4095;4029;4000;8000;5000;6212;7000;3000;3000;4629;4887 -223;'792;Türkiye;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1125;1956;2745;1756;1640;1640;1640;1640;1640;2761;4649;3949;4822;6978;5770;5867;6773;6972;9916;5768;7166;11004;5483;5876;9067;12139 -223;'792;Türkiye;1675;Other paper and paperboard;5510;Production;t;39300;45100;53500;53400;54000;61100;82100;81400;95500;111700;127400;164300;204000;228000;82000;153000;179000;126000;294400;323000;312000;307000;159000;244000;408000;458000;538000;491000;548000;601000;529000;750600;827000;828000;892000;836000;950000;1009000;1030000;1181000;1211000;1372000;1372000;1372000;1414000;1381000;1708000;1761000;1883000;2107000;2365000;2453000;2510201;2557089;2576855;2700964;2730390;2468904;2397659;2366682;2430380;2492688;2520380 -223;'792;Türkiye;1675;Other paper and paperboard;5610;Import quantity;t;9600;14800;19500;12200;27100;21300;50900;54900;56600;37200;42700;16000;19100;12900;15900;33000;25000;18600;18900;25300;41900;30400;19100;34600;44700;38100;52800;53300;109300;102700;102700;89993;187700;107200;213000;285000;341000;380000;376000;425000;310000;490000;490000;490000;1072000;1072000;1293347;1047000;1074000;1338067;1347371;1382859;1289084;1395404;1229200;1447300;1520000;1652546;1401000;1576000;1624893;1905793;1642707 -223;'792;Türkiye;1675;Other paper and paperboard;5622;Import value;1000 USD;2043;3074;3839;2996;6315;5085;10720;11185;10150;8138;13710;6878;8743;9342;13952;15935;14784;14045;17750;24000;37556;26462;16477;22748;26504;17780;29990;30274;80300;85499;85499;84294;114985;87064;203504;214342;223001;311802;289256;342268;263346;339113;339113;339113;995089;995089;1126207;969729;827849;1122823;1309896;1175693;1084475;1155142;872476;1120271;1281918;1373678;1285967;1277321;1551234;2283801;1542850 -223;'792;Türkiye;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;900;9200;1200;1700;200;300;500;500;1300;900;600;1000;42000;41000;83600;76000;70000;64000;64000;69870;22500;68200;65000;32000;39000;46000;70000;57000;146000;144000;144000;144000;144000;144000;161427;260000;207000;257976;292957;336833;349310;309781;458600;703000;806000;925317;827000;780000;707380;934000;826724 -223;'792;Türkiye;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;311;3179;657;554;65;80;135;135;3501;2403;1416;2036;20568;16738;44220;54000;55800;53268;53268;53979;19934;57925;40763;28402;29286;32523;38664;39654;75717;75595;75595;75595;75595;75595;127250;215658;163356;214983;292210;348440;410708;293438;331406;608494;684982;764642;745158;644459;728334;1156224;959937 -223;'792;Türkiye;1676;Household and sanitary papers;5510;Production;t;;;;;6700;7200;5400;800;1700;1800;900;1300;6000;5000;5000;3000;6000;3000;4000;4000;4000;5000;3000;4000;23000;26000;30000;27000;30000;35000;31000;58000;55000;54000;57000;65000;73000;83000;85000;108000;115000;146000;146000;146000;47000;27000;28000;27000;20000;39000;63000;73000;72201;226316;230000;330000;375500;418514;347279;316302;380000;442308;470000 -223;'792;Türkiye;1676;Household and sanitary papers;5610;Import quantity;t;200;400;400;400;600;500;1000;1000;1100;800;800;300;400;200;300;700;400;300;300;500;800;600;300;700;900;800;1000;1100;1100;1100;1100;1100;2500;4200;4000;3000;2000;2000;8000;9000;9000;15000;15000;15000;13000;13000;15684;8000;9000;12242;10310;7100;5437;11484;7700;4300;3000;3291;2000;4000;4000;5793;7264 -223;'792;Türkiye;1676;Household and sanitary papers;5622;Import value;1000 USD;41;61;76;60;127;101;255;223;202;163;274;138;175;201;280;319;295;281;355;480;778;535;315;600;530;356;600;631;631;631;631;631;2503;3861;5121;3467;2408;2914;8263;9768;7180;13651;13651;13651;15591;15591;17645;14337;13781;19425;18921;13292;12140;18065;10667;5953;5020;5507;3682;6151;8285;8624;13299 -223;'792;Türkiye;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21200;12000;18000;17000;12000;9000;20000;38000;41000;41000;41000;41000;41000;45962;66000;60000;60384;95410;152400;174353;157342;167000;266000;315000;363641;296000;269000;311000;368000;410388 -223;'792;Türkiye;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19637;15946;19724;17666;13009;8076;20178;32727;33550;33550;33550;33550;33550;56475;82791;62695;73001;116863;174236;213604;194963;190046;264789;314138;362646;317977;267239;320433;565993;517717 -223;'792;Türkiye;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;918000;940000;1067000;1088000;1221000;1221000;1221000;1253000;1327000;1608000;1668000;1806000;1984000;2260000;2379000;2437000;2329755;2345828;2369923;2353856;2049406;2049400;2049400;2049400;2049400;2049400 -223;'792;Türkiye;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;324000;313000;357000;252000;429000;429000;429000;872000;872000;1052051;1011000;1038000;1289453;1298063;1336859;1241822;1335676;1199500;1389000;1464000;1594869;1353000;1523000;1576000;1848000;1585012 -223;'792;Türkiye;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;210632;188112;234568;165209;219305;219305;219305;530952;530952;600913;881442;740545;1018394;1205004;1071990;973489;1032822;836359;1010962;1169018;1257470;1102260;1163432;1444241;2161033;1413900 -223;'792;Türkiye;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31000;57000;34000;105000;101000;101000;101000;101000;101000;113223;193000;145000;195284;195621;182980;172700;150192;290100;432000;486000;554478;525000;506000;388000;559000;411084 -223;'792;Türkiye;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14852;24076;14938;39201;37271;37271;37271;37271;37271;62739;131134;94904;134246;169456;168366;190491;91205;137664;335765;361931;389164;408985;361325;385777;567465;421282 -223;'792;Türkiye;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;25900;27100;48800;53200;63800;79200;107900;142600;124000;146000;;128000;146000;122000;193600;213000;205000;201000;104000;160000;371000;416000;489000;446000;498000;538000;474000;688000;766000;770000;830000;767000;871000;;;;;;;;;;;;;;;;;;;;;;;;;; -223;'792;Türkiye;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;9100;14000;18500;11400;25700;20200;48400;52300;53800;35300;40600;15200;18100;12300;15100;31300;23800;17700;18000;24000;40300;29000;18000;33100;42500;36200;50200;50600;106600;100000;100000;87293;179200;93000;197000;255000;333000;;;;;;;;;;;;;;;;;;;;;;;;;; -223;'792;Türkiye;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;1818;2736;3417;2666;5620;4526;9500;9955;9034;7243;12202;6121;7781;8300;12417;14182;13158;12500;15798;21360;34618;23767;14002;19988;23589;15824;26691;26944;76970;82169;82169;80964;102376;64265;177267;184528;196629;;;;;;;;;;;;;;;;;;;;;;;;;; -223;'792;Türkiye;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;41800;38000;32000;26000;26000;31870;16500;41000;48000;14000;22000;;;;;;;;;;;;;;;;;;;;;;;;;; -223;'792;Türkiye;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;22110;27000;28800;26268;26268;26979;16134;35417;22395;8678;11620;;;;;;;;;;;;;;;;;;;;;;;;;; -223;'792;Türkiye;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;631000;712000;767000;856000;856000;856000;803000;688000;804000;864000;941000;1011000;1172000;1151000;1202000;1073088;1080491;1091587;1084187;943962;943960;943960;943960;943960;943960 -223;'792;Türkiye;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125000;129000;139000;89000;146000;146000;146000;466000;466000;562220;563000;580000;726572;714798;749500;729700;707300;607000;618000;608000;723800;484000;568000;559000;614000;642715 -223;'792;Türkiye;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57798;52841;66482;39799;59609;59609;59609;204786;204786;231770;354805;272316;434343;506234;443638;495377;485005;379640;346652;381863;454593;308484;330709;416125;560427;386513 -223;'792;Türkiye;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21000;37000;13000;82000;52000;52000;52000;52000;52000;58293;96000;73000;91398;105616;83300;69500;101700;225300;274000;326000;397882;332000;322000;198000;316000;192918 -223;'792;Türkiye;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8129;13957;4614;22424;16145;16145;16145;16145;16145;27177;46044;26079;40550;54184;40114;35870;47689;93114;107219;156632;191169;132287;121899;132452;202723;85095 -223;'792;Türkiye;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;244000;277000;255000;296000;296000;296000;136000;204000;190000;253000;264000;256000;321000;378000;380000;386667;389337;393339;390672;340141;340140;340140;340140;340140;340140 -223;'792;Türkiye;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116000;101000;129000;113000;174000;174000;174000;273000;273000;329369;317000;328000;381118;423530;450400;440188;540808;503000;572000;636000;644337;667000;694000;710000;885000;655445 -223;'792;Türkiye;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90586;80916;107405;93622;94537;94537;94537;231268;231268;261741;378973;345496;411967;502860;488246;393360;458219;379887;492014;584171;591829;597405;603688;731863;1168283;703870 -223;'792;Türkiye;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;15000;13000;13000;38000;38000;38000;38000;38000;42599;71000;55000;74598;60328;71437;83438;37458;59700;139000;135000;128132;153000;148000;155000;195000;181968 -223;'792;Türkiye;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3303;6894;6287;12578;14122;14122;14122;14122;14122;23772;57819;52334;65392;82144;102564;132836;29077;36554;209441;179932;170778;244116;212183;220465;307504;298082 -223;'792;Türkiye;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;918000;65000;78000;66000;69000;69000;69000;249000;330000;509000;442000;497000;487000;517000;597000;600000;610526;614741;621054;616843;537059;537060;537060;537060;537060;537060 -223;'792;Türkiye;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81000;80000;85000;47000;75000;75000;75000;106000;106000;127887;109000;106000;152523;139017;112723;42232;43403;50600;169000;192000;202475;183000;243000;273000;305000;246390 -223;'792;Türkiye;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58390;51472;56612;29385;48688;48688;48688;81952;81952;92750;128637;106256;153084;179006;122674;63346;63395;56253;156502;186989;197191;184559;217530;273454;389433;293022 -223;'792;Türkiye;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;4000;5000;5000;9000;9000;9000;9000;9000;10089;22000;14000;25022;24129;24043;15545;7438;2500;16000;20000;18366;20000;20000;18000;26000;19000 -223;'792;Türkiye;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3179;2826;2897;2741;6470;6470;6470;6470;6470;10891;25217;15221;25567;29605;23173;16863;11252;5812;16618;21805;20023;22036;19734;22223;39198;26739 -223;'792;Türkiye;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;65000;105000;105000;109000;104000;230000;250000;253000;255000;259474;261259;263943;262154;228244;228240;228240;228240;228240;228240 -223;'792;Türkiye;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;3000;4000;3000;34000;34000;34000;27000;27000;32575;22000;24000;29240;20718;24236;29702;44165;38900;30000;28000;24257;19000;18000;34000;44000;40462 -223;'792;Türkiye;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3858;2883;4069;2403;16471;16471;16471;12946;12946;14652;19027;16477;19000;16904;17432;21406;26203;20579;15794;15995;13857;11812;11505;22799;42890;30495 -223;'792;Türkiye;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;3000;5000;2000;2000;2000;2000;2000;2242;4000;3000;4266;5548;4200;4217;3596;2600;3000;5000;10098;20000;16000;17000;22000;17198 -223;'792;Türkiye;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;241;399;1140;1458;534;534;534;534;534;899;2054;1270;2737;3523;2515;4922;3187;2184;2487;3562;7194;10546;7509;10637;18040;11366 -223;'792;Türkiye;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;21400;26800;27900;27400;30000;30700;18600;20400;74000;77000;77000;22000;27000;1000;96800;106000;103000;101000;52000;80000;14000;16000;19000;18000;20000;28000;24000;4600;6000;4000;5000;4000;6000;8000;5000;6000;8000;5000;5000;5000;114000;27000;72000;66000;57000;84000;42000;1000;1000;1018;1027;1041;1034;984;980;980;980;980;980 -223;'792;Türkiye;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;300;400;600;400;800;600;1500;1600;1700;1100;1300;500;600;400;500;1000;800;600;600;800;800;800;800;800;1300;1100;1600;1600;1600;1600;1600;1600;6000;10000;12000;27000;6000;54000;55000;59000;49000;46000;46000;46000;187000;187000;225612;28000;27000;36372;38998;38900;41825;48244;22000;54000;53000;54386;46000;49000;44893;52000;50431 -223;'792;Türkiye;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;184;277;346;270;568;458;965;1007;914;732;1234;619;787;841;1255;1434;1331;1264;1597;2160;2160;2160;2160;2160;2385;1600;2699;2699;2699;2699;2699;2699;10106;18938;21116;26347;23964;98256;92881;97932;90957;106157;106157;106157;448546;448546;507649;73950;73523;85004;85971;90411;98846;104255;25450;103356;107880;110701;180025;107738;98708;114144;115651 -223;'792;Türkiye;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;900;9200;1200;1700;200;300;500;500;1300;900;600;1000;42000;41000;41800;38000;38000;38000;38000;38000;6000;6000;5000;0;0;3000;4000;3000;3000;2000;2000;2000;2000;2000;2242;1000;2000;2308;1926;1453;2257;2247;1500;5000;5000;7198;6000;5000;8380;7000;5252 -223;'792;Türkiye;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;311;3179;657;554;65;80;135;135;3501;2403;1416;2036;20568;16738;22110;27000;27000;27000;27000;27000;3800;2871;2422;0;0;4662;6512;4538;3789;4774;4774;4774;4774;4774;8036;1733;5757;7736;5891;5838;6613;7270;3696;7940;8913;12832;18196;15895;22124;22766;20938 -223;'792;Türkiye;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;281097;261318;192785;182744;203470;281053;387056 -223;'792;Türkiye;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1428379;1577824;1843837;1811880;2281329;2736690;2665774 -223;'792;Türkiye;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17809;16282;9619;7289;11183;20034;33869 -223;'792;Türkiye;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9927;8358;12488;10660;16753;23383;36377 -223;'792;Türkiye;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12628;11525;6172;4476;7185;14352;26819 -223;'792;Türkiye;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;866;810;1685;2318;4554;8525;20992 -223;'792;Türkiye;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5181;4757;3447;2813;3998;5682;7050 -223;'792;Türkiye;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9061;7548;10803;8342;12199;14858;15385 -223;'792;Türkiye;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9783;9896;8469;5695;2190;10724;12837 -223;'792;Türkiye;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28673;30938;28621;25832;25832;61854;48110 -223;'792;Türkiye;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8361;12760;9338;8578;7334;11063;13228 -223;'792;Türkiye;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5838;9087;9262;8935;12811;24428;20321 -223;'792;Türkiye;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65392;41309;18805;22221;29817;43566;71805 -223;'792;Türkiye;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;143914;149715;156251;156296;200960;257166;238489 -223;'792;Türkiye;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;7177 -223;'792;Türkiye;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4940;5298 -223;'792;Türkiye;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7000;3069 -223;'792;Türkiye;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3308;3429 -223;'792;Türkiye;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116;799 -223;'792;Türkiye;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;138;594 -223;'792;Türkiye;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;66 -223;'792;Türkiye;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;51 -223;'792;Türkiye;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1179;2556 -223;'792;Türkiye;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1952;2670 -223;'792;Türkiye;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;524;74 -223;'792;Türkiye;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;986;95 -223;'792;Türkiye;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;161485;145945;114908;103513;117397;168289;209066 -223;'792;Türkiye;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1195294;1356522;1613318;1586529;1988352;2323611;2261918 -223;'792;Türkiye;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1339;377;1178;2150;1203;1275;1054 -223;'792;Türkiye;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2311;690;1048;1933;1642;2421;2640 -223;'792;Türkiye;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16928;34749;30468;33298;34346;26102;45197 -223;'792;Türkiye;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42422;22514;22849;21695;34979;43827;57919 -223;'792;Türkiye;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;441842;481344;456736;422675;464716;591856;594524 -223;'792;Türkiye;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;792231;922093;1023695;1067083;1423165;1652559;1526467 -223;'792;Türkiye;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13850;12091;9036;11927;14905;17085;11341 -223;'792;Türkiye;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7592;9262;8468;8506;11245;13781;16879 -223;'792;Türkiye;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;246707;257691;251429;234134;247199;322830;322648 -223;'792;Türkiye;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65245;67410;76287;73468;76703;107924;91958 -223;'792;Türkiye;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17186;18709;16534;18392;16729;21599;23673 -223;'792;Türkiye;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98691;116684;142214;162839;149339;176374;221230 -223;'792;Türkiye;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50818;49601;49562;45086;56190;75690;79819 -223;'792;Türkiye;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;470839;523796;556793;591442;837841;949468;831822 -223;'792;Türkiye;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113281;143252;130175;113136;129693;154652;157043 -223;'792;Türkiye;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;149864;204941;239933;230828;348037;405012;364578 -213;'795;Turkmenistan;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;146701.97;64168;53527;53527;53527;53527;53527 -213;'795;Turkmenistan;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.74;373;554;554;554;554;554 -213;'795;Turkmenistan;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;453;229;806;804;1193;2653;2175;3880;3880;3880;3880;3880;3880;3880;3880;3880;3880;3880;3880;82212;188605;196740;174270;146536;146536;146533.09;63999;53358;53358;53358;53358;53358 -213;'795;Turkmenistan;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;0;7;7;11;444;63;501;501;501;501;501;501;501;501;501;501;501;501;501;0;0;0;0;0;0;363;544;544;544;544;544 -213;'795;Turkmenistan;1861;Roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2500;2500;2500;2500;3400;3400;3400;3400;10000;10000;10000;10000;10000;10000;0;0;0;0;0;0;10000;10000;10000;10000;10000;10000 -213;'795;Turkmenistan;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;157;160;400;72;0;0;0;0;0;0;0;0;0;0;0;0;0;14003;9490;12994;12994;12994;12994;12994;38418;38417;38417;38417;38417;38417 -213;'795;Turkmenistan;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;52;11;3;75;75;75;75;75;75;75;75;75;75;75;75;1133;2989;4023;4023;4023;4023;4022.8;3618;3583;3583;3583;3583;3583 -213;'795;Turkmenistan;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 -213;'795;Turkmenistan;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;46;46;46;46;46;46;46;46;46;46;46;46;46;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;100;100;125;170;170;170;170;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12994;283;417;417;417;417;417 -213;'795;Turkmenistan;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4022.8;28;40;40;40;40;40 -213;'795;Turkmenistan;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1863;Roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2400;2400;2400;2375;3230;3230;3230;3230;10000;10000;10000;10000;10000;10000;0;0;0;0;0;0;10000;10000;10000;10000;10000;10000 -213;'795;Turkmenistan;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;38135;38000;38000;38000;38000;38000 -213;'795;Turkmenistan;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3590;3543;3543;3543;3543;3543 -213;'795;Turkmenistan;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1864;Wood fuel;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2500;2500;2500;2500;3400;3400;3400;3400;10000;10000;10000;10000;10000;10000;0;0;0;0;0;0;10000;10000;10000;10000;10000;10000 -213;'795;Turkmenistan;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;;38000;38000;38000;38000;38000;38000 -213;'795;Turkmenistan;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;;3543;3543;3543;3543;3543;3543 -213;'795;Turkmenistan;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;;0;0;0;0;0;0 -213;'795;Turkmenistan;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;;0;0;0;0;0;0 -213;'795;Turkmenistan;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;100;100;125;170;170;170;170;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0 -213;'795;Turkmenistan;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0 -213;'795;Turkmenistan;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0 -213;'795;Turkmenistan;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0 -213;'795;Turkmenistan;1628;Wood fuel, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2400;2400;2400;2375;3230;3230;3230;3230;10000;10000;10000;10000;10000;10000;0;0;0;0;0;0;10000;10000;10000;10000;10000;10000 -213;'795;Turkmenistan;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38000;38000;38000;38000;38000;38000 -213;'795;Turkmenistan;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3543;3543;3543;3543;3543;3543 -213;'795;Turkmenistan;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0 -213;'795;Turkmenistan;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0 -213;'795;Turkmenistan;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;;;;;;; -213;'795;Turkmenistan;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;;;;;;; -213;'795;Turkmenistan;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;;;;;;; -213;'795;Turkmenistan;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;;;;;;; -213;'795;Turkmenistan;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 -213;'795;Turkmenistan;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;157;160;400;72;0;0;0;0;0;0;0;0;0;0;0;0;0;14003;9490;12994;12994;12994;12994;12994;418;417;417;417;417;417 -213;'795;Turkmenistan;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;52;11;3;75;75;75;75;75;75;75;75;75;75;75;75;1133;2989;4023;4023;4023;4023;4022.8;75;40;40;40;40;40 -213;'795;Turkmenistan;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 -213;'795;Turkmenistan;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;46;46;46;46;46;46;46;46;46;46;46;46;46;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;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 -213;'795;Turkmenistan;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;157;160;400;72;0;0;0;0;0;0;0;0;0;0;0;0;0;14000;9490;12994;12994;12994;12994;12994;283;417;417;417;417;417 -213;'795;Turkmenistan;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;52;11;3;72;72;72;72;72;72;72;72;72;72;72;72;1132;2989;4023;4023;4023;4023;4022.8;28;40;40;40;40;40 -213;'795;Turkmenistan;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 -213;'795;Turkmenistan;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;46;46;46;46;46;46;46;46;46;46;46;46;46;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;157;160;400;72;0;0;0;0;0;0;0;0;0;0;0;0;0;14000;9490;12994;12994;12994;12994;12994;283;417;417;417;417;417 -213;'795;Turkmenistan;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;52;11;3;72;72;72;72;72;72;72;72;72;72;72;72;1132;2989;4023;4023;4023;4023;4022.8;28;40;40;40;40;40 -213;'795;Turkmenistan;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 -213;'795;Turkmenistan;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;46;46;46;46;46;46;46;46;46;46;46;46;46;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;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 -213;'795;Turkmenistan;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;3;0;0;0;0;0;0;135;0;0;0;0;0 -213;'795;Turkmenistan;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;3;3;3;3;3;3;3;3;3;3;3;1;0;0;0;0;0;0;47;0;0;0;0;0 -213;'795;Turkmenistan;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 -213;'795;Turkmenistan;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;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 -213;'795;Turkmenistan;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;1;1;1;1;1;1;1;1;1;1;1;1;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;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 -213;'795;Turkmenistan;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 -213;'795;Turkmenistan;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;3;0;0;0;0;0;0;135;0;0;0;0;0 -213;'795;Turkmenistan;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2;2;2;2;2;2;2;2;2;2;2;2;0;0;0;0;0;0;0;47;0;0;0;0;0 -213;'795;Turkmenistan;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 -213;'795;Turkmenistan;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 -213;'795;Turkmenistan;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 -213;'795;Turkmenistan;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 -213;'795;Turkmenistan;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 -213;'795;Turkmenistan;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 -213;'795;Turkmenistan;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 -213;'795;Turkmenistan;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 -213;'795;Turkmenistan;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 -213;'795;Turkmenistan;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 -213;'795;Turkmenistan;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 -213;'795;Turkmenistan;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;11;11;11;11;11;11;11;11;11;11;9;10;10;10;10;10;55;9;9;9;9;9 -213;'795;Turkmenistan;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4;4;4;4;4;4;4;4;2;2;2;2;2;1.99;33;2;2;2;2;2 -213;'795;Turkmenistan;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0 -213;'795;Turkmenistan;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0 -213;'795;Turkmenistan;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;14;14;14;14;14;14;14;14;14;14;14;0;0;0;0;0;0;41;41;41;41;41;41 -213;'795;Turkmenistan;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;0;0;0;0;0;0;14;14;14;14;14;14 -213;'795;Turkmenistan;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;31;41;41;41;41;41 -213;'795;Turkmenistan;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;13;14;14;14;14;14 -213;'795;Turkmenistan;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;0;0;0;0;0;0;10;0;0;0;0;0 -213;'795;Turkmenistan;1620;Wood residues;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;0;1;0;0;0;0;0 -213;'795;Turkmenistan;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0 -213;'795;Turkmenistan;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;5;7;7;7;7;7 -213;'795;Turkmenistan;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;2;5;5;5;5;5 -213;'795;Turkmenistan;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;3;7;7;7;7;7 -213;'795;Turkmenistan;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;2;5;5;5;5;5 -213;'795;Turkmenistan;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;2;0;0;0;0;0 -213;'795;Turkmenistan;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;123;1133;1133;4100;11878;23803;23803;23803;23803;23803;23803;23803;23803;23803;23803;23803;23803;23803;175935;310128;323960;384400;346100;346100;346100;51907;59743;59743;59743;59743;59743 -213;'795;Turkmenistan;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;358;358;623;1247;358;1877;1877;1877;1877;1877;1877;1877;1877;1877;1877;1877;1877;44178;88022;90534;68064;40330;40330;40330;13309;13739;13739;13739;13739;13739 -213;'795;Turkmenistan;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106;106;100;157;44;44;44;44;44;44;44;44;44;44;44;44;44;44;0;0;0;0;0;0;0;348;348;348;348;348 -213;'795;Turkmenistan;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;11;38;5;5;5;5;5;5;5;5;5;5;5;5;5;5;0;0;0;0;0;0;0;43;43;43;43;43 -213;'795;Turkmenistan;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;412;412;3400;11296;23598;23598;23598;23598;23598;23598;23598;23598;23598;23598;23598;23598;23598;173421;307027;320720;383000;344000;344000;344000;51842;59538;59538;59538;59538;59538 -213;'795;Turkmenistan;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;57;57;466;1000;57;1752;1752;1752;1752;1752;1752;1752;1752;1752;1752;1752;1752;42863;87142;89629;67000;39200;39200;39200;13277;13599;13599;13599;13599;13599 -213;'795;Turkmenistan;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106;106;100;157;44;44;44;44;44;44;44;44;44;44;44;44;44;44;0;0;0;0;0;0;0;348;348;348;348;348 -213;'795;Turkmenistan;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;11;38;5;5;5;5;5;5;5;5;5;5;5;5;5;5;0;0;0;0;0;0;0;43;43;43;43;43 -213;'795;Turkmenistan;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;721;721;700;582;205;205;205;205;205;205;205;205;205;205;205;205;205;2514;3101;3240;1400;2100;2100;2100;65;205;205;205;205;205 -213;'795;Turkmenistan;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;301;301;157;247;301;125;125;125;125;125;125;125;125;125;125;125;125;1315;880;905;1064;1130;1130;1130;32;140;140;140;140;140 -213;'795;Turkmenistan;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;7;7;7;7;7;7;7;7;7;7;7;7;7;38;429;627;627;627;627;627;1;9;9;9;9;9 -213;'795;Turkmenistan;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;3;3;3;3;3;3;3;3;3;3;3;3;3;66;66;1995;1995;1995;1995;1994.7;1;35;35;35;35;35 -213;'795;Turkmenistan;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;305;160;658;652;504;2141;2837;2917;2917;2917;2917;2917;2917;2917;2917;2917;2917;2917;2917;71295;115949;108956;108956;108956;108956;108956;105640;60376;60376;60376;60376;60376 -213;'795;Turkmenistan;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;415;69;260;258;350;759;625;739;739;739;739;739;739;739;739;739;739;739;739;26221;68379;67438;67438;67438;67438;67436.89;30347;17424;17424;17424;17424;17424 -213;'795;Turkmenistan;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;;;;;788;939;939;939;939;939;939;939;939;939;939;939;939;939;939;151;0;0;0;0;0;0;95;95;95;95;95 -213;'795;Turkmenistan;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;;;;;392;38;430;430;430;430;430;430;430;430;430;430;430;430;430;0;0;0;0;0;0;0;28;28;28;28;28 -213;'795;Turkmenistan;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;223;57;617;617;400;403;330;330;330;330;330;330;330;330;330;330;330;330;330;7349;38808;33419;33419;33419;33419;33419;8158;10915;10915;10915;10915;10915 -213;'795;Turkmenistan;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;386;35;250;250;330;362;250;194;194;194;194;194;194;194;194;194;194;194;194;3764;37544;31167;31167;31167;31167;31166.7;3060;3502;3502;3502;3502;3502 -213;'795;Turkmenistan;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;;;;;788;788;788;788;788;788;788;788;788;788;788;788;788;788;788;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;;;;;392;0;392;392;392;392;392;392;392;392;392;392;392;392;392;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;9;31;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -213;'795;Turkmenistan;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;2;4;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -213;'795;Turkmenistan;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;100;286;770;770;770;770;770;770;770;770;770;770;770;770;770;33963;49034;36893;36893;36893;36893;36893;56698;18401;18401;18401;18401;18401 -213;'795;Turkmenistan;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;16;96;4;174;174;174;174;174;174;174;174;174;174;174;174;8859;16746;13252;13252;13252;13252;13251.57;12815;3308;3308;3308;3308;3308 -213;'795;Turkmenistan;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;95;95;95;95;95 -213;'795;Turkmenistan;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;28;28;28;28;28 -213;'795;Turkmenistan;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;3691;2777;2777;2777;2777;2777;2770;83;83;83;83;83 -213;'795;Turkmenistan;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;1260;997;997;997;997;997.43;583;27;27;27;27;27 -213;'795;Turkmenistan;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1874;Fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;94;10;4;4;1452;1737;1817;1817;1817;1817;1817;1817;1817;1817;1817;1817;1817;1817;29981;24416;35867;35867;35867;35867;35867;38014;30977;30977;30977;30977;30977 -213;'795;Turkmenistan;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;32;6;4;4;301;371;371;371;371;371;371;371;371;371;371;371;371;371;13594;12829;22022;22022;22022;22022;22021.19;13889;10587;10587;10587;10587;10587 -213;'795;Turkmenistan;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;151;151;151;151;151;151;151;151;151;151;151;151;151;151;151;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;38;38;38;38;38;38;38;38;38;38;38;38;38;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;801;929;929;929;929;929;929;929;929;929;929;929;929;929;12138;4624;6263;6263;6263;6263;6263;6083;5780;5780;5780;5780;5780 -213;'795;Turkmenistan;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;175;303;303;303;303;303;303;303;303;303;303;303;303;303;6418;5049;8667;8667;8667;8667;8666.95;2757;2046;2046;2046;2046;2046 -213;'795;Turkmenistan;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;159;288;368;368;368;368;368;368;368;368;368;368;368;368;14359;17729;24015;24015;24015;24015;24015;21630;18838;18838;18838;18838;18838 -213;'795;Turkmenistan;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;34;34;34;34;34;34;34;34;34;34;34;34;34;6445;7400;12702;12702;12702;12702;12701.72;8570;7043;7043;7043;7043;7043 -213;'795;Turkmenistan;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;151;151;151;151;151;151;151;151;151;151;151;151;151;151;151;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;38;38;38;38;38;38;38;38;38;38;38;38;38;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1650;Other fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;492;520;520;520;520;520;520;520;520;520;520;520;520;520;3484;2063;5589;5589;5589;5589;5589;10301;6359;6359;6359;6359;6359 -213;'795;Turkmenistan;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;68;34;34;34;34;34;34;34;34;34;34;34;34;34;731;380;653;653;653;653;652.53;2562;1498;1498;1498;1498;1498 -213;'795;Turkmenistan;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;90;6;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -213;'795;Turkmenistan;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;28;2;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -213;'795;Turkmenistan;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;55;55;55;55;55;73;73;73;73;73;73;73;73;73;73;73;73;73;22;82;83;83;83;83;83;2153;1939;1939;1939;1939;1939 -213;'795;Turkmenistan;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;28;53;53;53;53;53;53.14;1349;1233;1233;1233;1233;1233 -213;'795;Turkmenistan;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;98;704;704;704;704;704 -213;'795;Turkmenistan;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;13;102;102;102;102;102 -213;'795;Turkmenistan;1878;Pulp for paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;13;9;10;10;10;10;10;1848;1939;1939;1939;1939;1939 -213;'795;Turkmenistan;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;20;47;47;47;47;47;47.14;1299;1233;1233;1233;1233;1233 -213;'795;Turkmenistan;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1875;Wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;13;9;10;10;10;10;10;1861;1938;1938;1938;1938;1938 -213;'795;Turkmenistan;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;20;47;47;47;47;47;47.14;1315;1217;1217;1217;1217;1217 -213;'795;Turkmenistan;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;0;140;140;140;140;140 -213;'795;Turkmenistan;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47.14;0;126;126;126;126;126 -213;'795;Turkmenistan;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1654;Mechanical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;;;;;;; -213;'795;Turkmenistan;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;9;10;10;10;10;;;;;;; -213;'795;Turkmenistan;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;47;47;47;47;47;;;;;;; -213;'795;Turkmenistan;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;;;;;;; -213;'795;Turkmenistan;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;;;;;;; -213;'795;Turkmenistan;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;;;;;;; -213;'795;Turkmenistan;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;;;;;;; -213;'795;Turkmenistan;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;;;;;;; -213;'795;Turkmenistan;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;;;;;;; -213;'795;Turkmenistan;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;;;;;;; -213;'795;Turkmenistan;1656;Chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;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;1848;1798;1798;1798;1798;1798 -213;'795;Turkmenistan;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;1299;1091;1091;1091;1091;1091 -213;'795;Turkmenistan;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;66;66;66;66;66 -213;'795;Turkmenistan;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;31;31;31;31;31 -213;'795;Turkmenistan;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;1848;1732;1732;1732;1732;1732 -213;'795;Turkmenistan;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;1296;1060;1060;1060;1060;1060 -213;'795;Turkmenistan;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;0;0;0;0;0 -213;'795;Turkmenistan;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;;;;;;; -213;'795;Turkmenistan;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;;;;;;; -213;'795;Turkmenistan;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;;;;;;; -213;'795;Turkmenistan;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;;;;;;; -213;'795;Turkmenistan;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;;;;;;; -213;'795;Turkmenistan;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;;;;;;; -213;'795;Turkmenistan;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;;;;;;; -213;'795;Turkmenistan;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;1;0;0;0;0;0;;;;;;; -213;'795;Turkmenistan;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;;;;;;; -213;'795;Turkmenistan;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;;;;;;; -213;'795;Turkmenistan;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;13;0;0;0;0;0 -213;'795;Turkmenistan;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;16;0;0;0;0;0 -213;'795;Turkmenistan;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1668;Pulp from fibres other than wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0 -213;'795;Turkmenistan;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;1;1;1;1 -213;'795;Turkmenistan;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;16;16;16;16;16 -213;'795;Turkmenistan;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;276;200;200;200;200;200;200;0;0;0;0;0;0 -213;'795;Turkmenistan;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;308;234;234;234;234;234;233.87;0;0;0;0;0;0 -213;'795;Turkmenistan;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0 -213;'795;Turkmenistan;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;55;55;55;55;55;73;73;73;73;73;73;73;73;73;73;73;73;73;9;73;73;73;73;73;73;305;0;0;0;0;0 -213;'795;Turkmenistan;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;8;6;6;6;6;6;6;50;0;0;0;0;0 -213;'795;Turkmenistan;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;98;704;704;704;704;704 -213;'795;Turkmenistan;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;13;102;102;102;102;102 -213;'795;Turkmenistan;1876;Paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0 -213;'795;Turkmenistan;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;119;150;150;426;772;960;960;960;960;960;960;960;960;960;960;960;960;960;13282;18716;25406;25406;25406;25406;25406;16798;18235;18235;18235;18235;18235 -213;'795;Turkmenistan;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;102;159;159;162;618;1175;1175;1175;1175;1175;1175;1175;1175;1175;1175;1175;1175;1175;10273;28860;32461;32461;32461;32461;32459.7;15310;17323;17323;17323;17323;17323 -213;'795;Turkmenistan;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;14;25;25;25;25;25;25;25;25;25;25;25;25;25;25;0;0;0;0;0;0;451;1226;1226;1226;1226;1226 -213;'795;Turkmenistan;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;14;20;20;20;20;20;20;20;20;20;20;20;20;20;20;0;0;0;0;0;0;350;371;371;371;371;371 -213;'795;Turkmenistan;2042;Graphic papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0 -213;'795;Turkmenistan;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;92;26;26;26;278;838;838;838;838;838;838;838;838;838;838;838;838;838;6403;7167;9802;9802;9802;9802;9802;10767;13028;13028;13028;13028;13028 -213;'795;Turkmenistan;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;80;39;39;39;256;836;836;836;836;836;836;836;836;836;836;836;836;836;5299;8601;10953;10953;10953;10953;10952.6;9203;10515;10515;10515;10515;10515 -213;'795;Turkmenistan;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 -213;'795;Turkmenistan;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 -213;'795;Turkmenistan;1671;Newsprint;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0 -213;'795;Turkmenistan;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;6;6;6;6;6;6;6;6;6;6;6;6;6;4343;4190;7129;7129;7129;7129;7129;3581;3722;3722;3722;3722;3722 -213;'795;Turkmenistan;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;1;1;1;1;1;1;1;1;1;1;1;1;1;2978;4190;7188;7188;7188;7188;7187.7;2339;1964;1964;1964;1964;1964 -213;'795;Turkmenistan;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1674;Printing and writing papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0 -213;'795;Turkmenistan;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;92;26;26;26;199;832;832;832;832;832;832;832;832;832;832;832;832;832;2060;2977;2673;2673;2673;2673;2673;7186;9306;9306;9306;9306;9306 -213;'795;Turkmenistan;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;80;39;39;39;208;835;835;835;835;835;835;835;835;835;835;835;835;835;2321;4411;3765;3765;3765;3765;3764.9;6864;8551;8551;8551;8551;8551 -213;'795;Turkmenistan;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0 -213;'795;Turkmenistan;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;2890;2423;2423;2423;2423;2423;283;95;95;95;95;95 -213;'795;Turkmenistan;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;4272;3443;3443;3443;3443;3442.8;249;75;75;75;75;75 -213;'795;Turkmenistan;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0 -213;'795;Turkmenistan;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;832;832;832;832;832;832;832;832;832;832;832;832;832;1894;0;0;0;0;0;0;4389;5405;5405;5405;5405;5405 -213;'795;Turkmenistan;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;835;835;835;835;835;835;835;835;835;835;835;835;835;2107;0;0;0;0;0;0;4277;4911;4911;4911;4911;4911 -213;'795;Turkmenistan;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0 -213;'795;Turkmenistan;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;152;87;250;250;250;250;250;2514;3806;3806;3806;3806;3806 -213;'795;Turkmenistan;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;184;139;322;322;322;322;322.1;2338;3565;3565;3565;3565;3565 -213;'795;Turkmenistan;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0 -213;'795;Turkmenistan;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;27;124;124;400;494;122;122;122;122;122;122;122;122;122;122;122;122;122;6879;11549;15604;15604;15604;15604;15604;6031;5207;5207;5207;5207;5207 -213;'795;Turkmenistan;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;22;120;120;123;362;339;339;339;339;339;339;339;339;339;339;339;339;339;4974;20259;21508;21508;21508;21508;21507.1;6107;6808;6808;6808;6808;6808 -213;'795;Turkmenistan;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;14;25;25;25;25;25;25;25;25;25;25;25;25;25;25;0;0;0;0;0;0;451;1226;1226;1226;1226;1226 -213;'795;Turkmenistan;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;14;20;20;20;20;20;20;20;20;20;20;20;20;20;20;0;0;0;0;0;0;350;371;371;371;371;371 -213;'795;Turkmenistan;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0 -213;'795;Turkmenistan;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;367;461;1080;1080;1080;1080;1080;544;820;820;820;820;820 -213;'795;Turkmenistan;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;555;772;1606;1606;1606;1606;1605.8;696;959;959;959;959;959 -213;'795;Turkmenistan;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;89;0;0;0;0;0 -213;'795;Turkmenistan;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;117;0;0;0;0;0 -213;'795;Turkmenistan;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0 -213;'795;Turkmenistan;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6460;11084;14524;14524;14524;14524;14524;5473;4324;4324;4324;4324;4324 -213;'795;Turkmenistan;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4019;19447;19854;19854;19854;19854;19853.5;5372;5648;5648;5648;5648;5648 -213;'795;Turkmenistan;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;362;1226;1226;1226;1226;1226 -213;'795;Turkmenistan;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;233;371;371;371;371;371 -213;'795;Turkmenistan;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0 -213;'795;Turkmenistan;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5577;5692;7459;7459;7459;7459;7459;3244;696;696;696;696;696 -213;'795;Turkmenistan;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2991;8411;8587;8587;8587;8587;8586.96;1357;371;371;371;371;371 -213;'795;Turkmenistan;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;274;1202;1202;1202;1202;1202 -213;'795;Turkmenistan;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;171;360;360;360;360;360 -213;'795;Turkmenistan;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0 -213;'795;Turkmenistan;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;2992;3921;3921;3921;3921;3921;1833;2750;2750;2750;2750;2750 -213;'795;Turkmenistan;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;223;3562;3636;3636;3636;3636;3636.43;3616;4570;4570;4570;4570;4570 -213;'795;Turkmenistan;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;24;24;24;24;24 -213;'795;Turkmenistan;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;11;11;11;11;11 -213;'795;Turkmenistan;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0 -213;'795;Turkmenistan;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;496;1573;2061;2061;2061;2061;2061;268;438;438;438;438;438 -213;'795;Turkmenistan;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;685;5448;5562;5562;5562;5562;5561.6;346;489;489;489;489;489 -213;'795;Turkmenistan;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;88;0;0;0;0;0 -213;'795;Turkmenistan;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;62;0;0;0;0;0 -213;'795;Turkmenistan;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0 -213;'795;Turkmenistan;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;827;1083;1083;1083;1083;1083;128;440;440;440;440;440 -213;'795;Turkmenistan;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120;2026;2069;2069;2069;2069;2068.51;53;218;218;218;218;218 -213;'795;Turkmenistan;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0 -213;'795;Turkmenistan;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;122;122;122;122;122;122;122;122;122;122;122;122;122;52;4;0;0;0;0;0;14;63;63;63;63;63 -213;'795;Turkmenistan;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;339;339;339;339;339;339;339;339;339;339;339;339;339;400;40;48;48;48;48;47.8;39;201;201;201;201;201 -213;'795;Turkmenistan;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;25;25;25;25;25;25;25;25;25;25;25;25;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;20;20;20;20;20;20;20;20;20;20;20;0;0;0;0;0;0;0;0;0;0;0;0 -213;'795;Turkmenistan;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;168.88;169;169;169;169;169;169 -213;'795;Turkmenistan;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.74;10;10;10;10;10;10 -213;'795;Turkmenistan;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;168.88;169;169;169;169;169;169 -213;'795;Turkmenistan;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.74;10;10;10;10;10;10 -224;'796;Turks and Caicos Islands;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14685;16161;20759;17929;20084;36393;42276 -224;'796;Turks and Caicos Islands;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;160;154;174;324;250;521;382 -224;'796;Turks and Caicos Islands;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;1005;869;1063;1063;1063;1063;1063;1063;1063;1063;1063;1063;1063;1063;1063;1063;1063;1063;1063;2974;3051;3051;3051;5598;6058;3756;4346;7422;6711;9382;13670;13752 -224;'796;Turks and Caicos Islands;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;16;15;15;15;253;163;22;6;61;163;140;182;90 -224;'796;Turks and Caicos Islands;1861;Roundwood;5516;Production;m3;149;152;156;160;163;167;171;175;180;184;184;173;198;198;198;198;198;198;233;233;233;270;288;288;325;341;341;397;397;435;413;303;527;565;565;599;593;653;682;656;681;706;733;762;791;829;869;910;954;1000;1027;1056;1085;1115;1147;1159;1172;1185;1198;1212;1235;1258;1283 -224;'796;Turks and Caicos Islands;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;162;110;89;231;231;231;231;231;231;231;231;231;231;231;231;231;231;231;231;231;642;176;176;176;2397;2383;1710;1968;2962;1667;6681;13191;9299 -224;'796;Turks and Caicos Islands;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;7;7;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;188;66;66;66;572;601;774;378;867;671;1988;2486;3219 -224;'796;Turks and Caicos Islands;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;58;58;58;58;58;58;58;58;58;58;58;58;58;58;58;58;58;0;0;0;0;0;0;70;0;0;0;0;0;0 -224;'796;Turks and Caicos Islands;1861;Roundwood;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;14;0;0;0;0;0;0 -224;'796;Turks and Caicos Islands;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -224;'796;Turks and Caicos Islands;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1463;2837;1475;5833;4915;6897 -224;'796;Turks and Caicos Islands;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;161;795;584;1867;1600;2721 -224;'796;Turks and Caicos Islands;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -224;'796;Turks and Caicos Islands;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -224;'796;Turks and Caicos Islands;1863;Roundwood, non-coniferous;5516;Production;m3;149;152;156;160;163;167;171;175;180;184;184;173;198;198;198;198;198;198;233;233;233;270;288;288;325;341;341;397;397;435;413;303;527;565;565;599;593;653;682;656;681;706;733;762;791;829;869;910;954;1000;1027;1056;1085;1115;1147;1159;1172;1185;1198;1212;1235;1258;1283 -224;'796;Turks and Caicos Islands;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1710;505;125;192;848;8276;2402 -224;'796;Turks and Caicos Islands;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;774;217;72;87;121;886;498 -224;'796;Turks and Caicos Islands;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;0;0;0;0;0;0 -224;'796;Turks and Caicos Islands;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;0;0;0;0;0;0 -224;'796;Turks and Caicos Islands;1864;Wood fuel;5516;Production;m3;149;152;156;160;163;167;171;175;180;184;184;173;198;198;198;198;198;198;233;233;233;270;288;288;325;341;341;397;397;435;413;303;527;565;565;599;593;653;682;656;681;706;733;762;791;829;869;910;954;1000;1027;1056;1085;1115;1147;1159;1172;1185;1198;1212;1235;1258;1283 -224;'796;Turks and Caicos 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;;;;;;; -224;'796;Turks and Caicos 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;;;;;;; -224;'796;Turks and Caicos Islands;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;58;58;58;58;58;58;58;58;58;58;58;58;58;58;58;58;58;0;0;0;0;0;0;;;;;;; -224;'796;Turks and Caicos Islands;1864;Wood fuel;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;;;;;;; -224;'796;Turks and Caicos Islands;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -224;'796;Turks and Caicos Islands;1628;Wood fuel, non-coniferous;5516;Production;m3;149;152;156;160;163;167;171;175;180;184;184;173;198;198;198;198;198;198;233;233;233;270;288;288;325;341;341;397;397;435;413;303;527;565;565;599;593;653;682;656;681;706;733;762;791;829;869;910;954;1000;1027;1056;1085;1115;1147;1159;1172;1185;1198;1212;1235;1258;1283 -224;'796;Turks and Caicos 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;;;;;;; -224;'796;Turks and Caicos 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;;;;;;; -224;'796;Turks and Caicos Islands;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;58;58;58;58;58;58;58;58;58;58;58;58;58;58;58;58;58;0;0;0;0;0;0;;;;;;; -224;'796;Turks and Caicos Islands;1629;Wood fuel, all species (export/import, 1961-2016);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;;;;;;; -224;'796;Turks and Caicos Islands;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;162;110;89;231;231;231;231;231;231;231;231;231;231;231;231;231;231;231;231;231;642;176;176;176;2397;2383;1710;1968;2962;1667;6681;13191;9299 -224;'796;Turks and Caicos Islands;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;7;7;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;188;66;66;66;572;601;774;378;867;671;1988;2486;3219 -224;'796;Turks and Caicos Islands;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;70;0;0;0;0;0;0 -224;'796;Turks and Caicos Islands;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;14;0;0;0;0;0;0 -224;'796;Turks and Caicos Islands;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;162;110;89;231;231;231;231;231;231;231;231;231;231;231;231;231;231;231;231;231;93;9;9;9;1971;1883;0;1463;2837;1475;5833;4915;6897 -224;'796;Turks and Caicos Islands;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;7;7;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;31;1;1;1;333;335;0;161;795;584;1867;1600;2721 -224;'796;Turks and Caicos Islands;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -224;'796;Turks and Caicos Islands;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -224;'796;Turks and Caicos Islands;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;162;110;89;231;231;231;231;231;231;231;231;231;231;231;231;231;231;231;231;231;93;9;9;9;1971;1883;0;1463;2837;1475;5833;4915;6897 -224;'796;Turks and Caicos Islands;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;7;7;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;31;1;1;1;333;335;0;161;795;584;1867;1600;2721 -224;'796;Turks and Caicos Islands;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -224;'796;Turks and Caicos Islands;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -224;'796;Turks and Caicos 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;549;167;167;167;426;500;1710;505;125;192;848;8276;2402 -224;'796;Turks and Caicos 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;157;65;65;65;239;266;774;217;72;87;121;886;498 -224;'796;Turks and Caicos Islands;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;70;0;0;0;0;0;0 -224;'796;Turks and Caicos Islands;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;14;0;0;0;0;0;0 -224;'796;Turks and Caicos Islands;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;535;162;162;162;285;467;1190;270;38;34;558;363;1030 -224;'796;Turks and Caicos Islands;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;153;60;60;60;196;251;640;153;16;14;65;106;234 -224;'796;Turks and Caicos Islands;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;70;0;0;0;0;0;0 -224;'796;Turks and Caicos Islands;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;14;0;0;0;0;0;0 -224;'796;Turks and Caicos 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;14;5;5;5;141;33;520;235;87;158;290;7913;1372 -224;'796;Turks and Caicos 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;4;5;5;5;43;15;134;64;56;73;56;780;264 -224;'796;Turks and Caicos Islands;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -224;'796;Turks and Caicos Islands;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -224;'796;Turks and Caicos Islands;1630;Wood charcoal;5510;Production;t;14;14;15;15;16;16;17;18;18;19;19;18;24;24;24;24;24;24;27;27;27;30;35;35;38;38;38;47;47;50;47;50;56;59;59;62;61;68;72;76;79;83;87;92;96;101;106;112;118;124;128;132;137;141;146;148;149;151;152;154;158;162;166 -224;'796;Turks and Caicos Islands;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;5;5;5;5;5;5;5;1;1;3;2;7 -224;'796;Turks and Caicos Islands;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;5;5;5;5;5;5;5;0;0;5;7;19 -224;'796;Turks and Caicos Islands;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101;61;61;61;61;61;61;61;107;107;6;6;6 -224;'796;Turks and Caicos Islands;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;58;58;58;58;58;58;58;58;58;4;4;4 -224;'796;Turks and Caicos Islands;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;26;26;26;26;26;26;26;72;72;6;6;6 -224;'796;Turks and Caicos Islands;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;3;3;3;3;3;3;3;3;3;4;4;4 -224;'796;Turks and Caicos Islands;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;35;35;35;35;35;35;35;35;35;0;0;0 -224;'796;Turks and Caicos Islands;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;55;55;55;55;55;55;55;55;55;0;0;0 -224;'796;Turks and Caicos Islands;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -224;'796;Turks and Caicos Islands;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2557;3335;3779;3779;3779;3779;3779;3779;3779;3779;3779;3779;3779;3779;3779;3779;3779;3779;3779;3641;4308;4308;4308;6737;7858;1106;2912;7140;5778;10567;13596;12098 -224;'796;Turks and Caicos Islands;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;422;568;702;702;702;702;702;702;702;702;702;702;702;702;702;702;702;702;702;1176;1506;1506;1506;3120;3432;565;1607;2608;2696;3524;5639;4726 -224;'796;Turks and Caicos 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;10;10;10;420;0;2;1;0;0;23;0;0 -224;'796;Turks and Caicos 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;5;5;5;247;0;2;0;0;16;17;0;0 -224;'796;Turks and Caicos Islands;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -224;'796;Turks and Caicos Islands;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2428;3305;3776;3776;3776;3776;3776;3776;3776;3776;3776;3776;3776;3776;3776;3776;3776;3776;3776;2863;3462;3462;3462;6080;7083;5;1698;6140;5367;10268;12565;11103 -224;'796;Turks and Caicos Islands;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;379;555;696;696;696;696;696;696;696;696;696;696;696;696;696;696;696;696;696;818;1068;1068;1068;2605;2935;1;709;2149;2296;3263;5122;3911 -224;'796;Turks and Caicos Islands;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 -224;'796;Turks and Caicos Islands;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;16;0;0;0 -224;'796;Turks and Caicos Islands;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -224;'796;Turks and Caicos Islands;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;129;30;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;778;846;846;846;657;775;1101;1214;1000;411;299;1031;995 -224;'796;Turks and Caicos Islands;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;13;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;6;358;438;438;438;515;497;564;898;459;400;261;517;815 -224;'796;Turks and Caicos Islands;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;420;0;2;1;0;0;23;0;0 -224;'796;Turks and Caicos Islands;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;247;0;2;0;0;0;17;0;0 -224;'796;Turks and Caicos Islands;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -224;'796;Turks and Caicos Islands;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;418;662;662;662;104;23;62;42;17;133;13;38;67 -224;'796;Turks and Caicos Islands;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;157;249;249;249;118;48;105;94;57;294;83;173;220 -224;'796;Turks and Caicos Islands;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;0;0;0;0;0;0;0;0;0 -224;'796;Turks and Caicos Islands;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;0;0;0;0;0;0;0;0;0 -224;'796;Turks and Caicos Islands;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -224;'796;Turks and Caicos Islands;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;864;1099;1283;1283;1283;1283;1283;1283;1283;1283;1283;1283;1283;1283;1283;1283;1283;1283;1283;2990;2047;2047;2047;2596;3217;3789;3634;5039;3713;6587;6992;7014 -224;'796;Turks and Caicos Islands;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;165;290;335;335;335;335;335;335;335;335;335;335;335;335;335;335;335;335;335;980;840;840;840;1398;1587;1922;1877;2645;2484;3059;4308;3985 -224;'796;Turks and Caicos 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;48;0;0;0;0;328;0;0;0;0;0;376;991 -224;'796;Turks and Caicos 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;16;0;0;0;0;157;0;0;0;0;0;65;72 -224;'796;Turks and Caicos Islands;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -224;'796;Turks and Caicos Islands;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;864;1099;1214;1214;1214;1214;1214;1214;1214;1214;1214;1214;1214;1214;1214;1214;1214;1214;1214;2843;1741;1741;1741;2290;2911;3483;3328;4677;3263;6362;6850;6856 -224;'796;Turks and Caicos Islands;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;165;290;316;316;316;316;316;316;316;316;316;316;316;316;316;316;316;316;316;889;751;751;751;1309;1498;1833;1788;2440;1556;2932;4126;3808 -224;'796;Turks and Caicos Islands;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;0;0;0;0;328;0;0;0;0;0;0;0 -224;'796;Turks and Caicos Islands;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;0;0;0;0;157;0;0;0;0;0;0;0 -224;'796;Turks and Caicos Islands;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -224;'796;Turks and Caicos Islands;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -224;'796;Turks and Caicos Islands;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;67;67;67;67;67;67;67;247;339;80;17;78 -224;'796;Turks and Caicos Islands;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;31;31;31;31;31;31;31;166;895;80;125;142 -224;'796;Turks and Caicos 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;376;376 -224;'796;Turks and Caicos 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;65;65 -224;'796;Turks and Caicos Islands;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;69;69;69;69;69;69;69;69;69;69;69;69;69;69;69;69;101;239;239;239;239;239;239;239;115;111;145;125;80 -224;'796;Turks and Caicos Islands;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;27;58;58;58;58;58;58;58;39;33;47;57;35 -224;'796;Turks and Caicos Islands;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;615 -224;'796;Turks and Caicos Islands;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7 -224;'796;Turks and Caicos Islands;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;108;108;108;108;108;108;108;108;108;108;108;5 -224;'796;Turks and Caicos Islands;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;29;29;29;29;29;29;29;29;29;29;29;6 -224;'796;Turks and Caicos Islands;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;131;131;131;131;131;131;131;5;1;35;15;73 -224;'796;Turks and Caicos Islands;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;29;29;29;29;29;29;29;1;0;14;24;25 -224;'796;Turks and Caicos Islands;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;615 -224;'796;Turks and Caicos Islands;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7 -224;'796;Turks and Caicos Islands;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;69;69;69;69;69;69;69;69;69;69;69;69;69;69;69;69;39;0;0;0;0;0;0;0;2;2;2;2;2 -224;'796;Turks and Caicos Islands;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;19;5;0;0;0;0;0;0;0;9;4;4;4;4 -224;'796;Turks and Caicos Islands;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;2;2;2;2;2;2;2;1;252;252;252;1 -224;'796;Turks and Caicos Islands;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;2;2;2;2;2;2;2;1;14;14;14;1 -224;'796;Turks and Caicos Islands;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1 -224;'796;Turks and Caicos Islands;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1 -224;'796;Turks and Caicos Islands;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1 -224;'796;Turks and Caicos Islands;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1 -224;'796;Turks and Caicos Islands;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;1;1;1;1;1;1;1;0;251;251;251;0 -224;'796;Turks and Caicos Islands;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;1;1;1;1;1;1;1;0;13;13;13;0 -224;'796;Turks and Caicos Islands;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;454;3;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;619;520;520;520;520;520;520;520;704;199;273;475;778 -224;'796;Turks and Caicos Islands;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;411;4;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;11;443;325;325;325;325;325;325;325;1186;494;705;1039;1578 -224;'796;Turks and Caicos Islands;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;7;69;162;125;118;21 -224;'796;Turks and Caicos Islands;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;61;147;123;117;18 -224;'796;Turks and Caicos Islands;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;326;350;350;350;350;350;350;350;450;30;42;79;85 -224;'796;Turks and Caicos Islands;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;153;110;110;110;110;110;110;110;519;44;62;158;208 -224;'796;Turks and Caicos Islands;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;7;2;7;7;0;0 -224;'796;Turks and Caicos Islands;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;3;6;6;0;0 -224;'796;Turks and Caicos Islands;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;326;350;350;350;350;350;350;350;450;30;42;79;85 -224;'796;Turks and Caicos Islands;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;153;110;110;110;110;110;110;110;519;44;62;158;208 -224;'796;Turks and Caicos Islands;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;7;2;7;7;0;0 -224;'796;Turks and Caicos Islands;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;3;6;6;0;0 -224;'796;Turks and Caicos Islands;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4;4;4;4;4;4;4;4;3;3;3;3;3;3;3;0;3;0;0;0 -224;'796;Turks and Caicos Islands;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3;3;3;3;3;3;17;7;7;7;7;7;7;7;2;7;0;2;0 -224;'796;Turks and Caicos Islands;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3;418;16;31;58;60 -224;'796;Turks and Caicos Islands;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;9;9;9;9;9;9;9;462;25;48;101;131 -224;'796;Turks and Caicos Islands;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;7;2;7;7;0;0 -224;'796;Turks and Caicos Islands;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;3;6;6;0;0 -224;'796;Turks and Caicos Islands;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;319;344;344;344;344;344;344;344;32;11;11;21;25 -224;'796;Turks and Caicos Islands;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;129;94;94;94;94;94;94;94;55;12;14;55;77 -224;'796;Turks and Caicos Islands;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;454;3;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;293;170;170;170;170;170;170;170;254;169;231;396;693 -224;'796;Turks and Caicos Islands;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;411;4;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;290;215;215;215;215;215;215;215;667;450;643;881;1370 -224;'796;Turks and Caicos Islands;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;155;118;118;21 -224;'796;Turks and Caicos Islands;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;141;117;117;18 -224;'796;Turks and Caicos Islands;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;217;137;137;137;137;137;137;137;227;161;203;370;601 -224;'796;Turks and Caicos Islands;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;227;165;165;165;165;165;165;165;604;426;599;800;1234 -224;'796;Turks and Caicos Islands;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;114;104;104;9 -224;'796;Turks and Caicos Islands;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;109;110;110;16 -224;'796;Turks and Caicos Islands;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;10;10;10;10;10;10;10;22;6;17;18;78 -224;'796;Turks and Caicos Islands;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;30;30;30;30;30;30;30;46;20;25;36;73 -224;'796;Turks and Caicos Islands;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;41;14;14;12 -224;'796;Turks and Caicos Islands;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;32;7;7;2 -224;'796;Turks and Caicos Islands;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;2;2;2;2;2;2;2;1;1;12;1;64 -224;'796;Turks and Caicos Islands;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;2;2;2;2;2;2;2;7;6;5;0;46 -224;'796;Turks and Caicos Islands;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -224;'796;Turks and Caicos Islands;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -224;'796;Turks and Caicos Islands;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;1;1;1;1;1;1;1;21;2;2;6;1 -224;'796;Turks and Caicos Islands;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;36;8;17;13;6 -224;'796;Turks and Caicos Islands;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;2;2;2;0 -224;'796;Turks and Caicos Islands;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;6;6;6;1 -224;'796;Turks and Caicos Islands;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;7;7;7;7;7;7;7;0;0;0;8;12 -224;'796;Turks and Caicos Islands;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;26;26;26;26;26;26;26;0;4;1;21;18 -224;'796;Turks and Caicos Islands;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;27;0;0;0 -224;'796;Turks and Caicos Islands;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;26;1;1;1 -224;'796;Turks and Caicos Islands;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;3;3;1 -224;'796;Turks and Caicos Islands;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;2;2;2;3 -224;'796;Turks and Caicos Islands;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;12;12 -224;'796;Turks and Caicos Islands;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -224;'796;Turks and Caicos Islands;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4;4;4;4;4;4;4;53;23;23;23;23;23;23;23;5;2;11;8;14 -224;'796;Turks and Caicos Islands;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;8;8;8;8;8;8;8;8;8;30;20;20;20;20;20;20;20;17;4;19;45;63 -224;'796;Turks and Caicos Islands;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10057;10796;11805;10020;9020;19042;25141 -224;'796;Turks and Caicos Islands;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;42;26;48;50;291;122 -224;'796;Turks and Caicos Islands;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2122;2227;2908;1670;2079;2438;3133 -224;'796;Turks and Caicos Islands;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2016;2059;2529;1370;1720;2130;2469 -224;'796;Turks and Caicos Islands;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106;168;379;300;359;308;664 -224;'796;Turks and Caicos Islands;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;1;2;1;22;18;20 -224;'796;Turks and Caicos Islands;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -224;'796;Turks and Caicos Islands;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;187;222;56;52;225;139;275 -224;'796;Turks and Caicos Islands;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3 -224;'796;Turks and Caicos Islands;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2584;2165;2844;1822;2068;3639;3685 -224;'796;Turks and Caicos Islands;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -224;'796;Turks and Caicos Islands;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4627;5618;5347;6105;4106;12528;17230 -224;'796;Turks and Caicos Islands;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;42;26;48;50;291;119 -224;'796;Turks and Caicos Islands;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -224;'796;Turks and Caicos Islands;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -224;'796;Turks and Caicos Islands;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;532;563;648;370;520;280;798 -224;'796;Turks and Caicos Islands;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -224;'796;Turks and Caicos Islands;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;872;1019;1532;1198;1682;3681;3383 -224;'796;Turks and Caicos Islands;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;106;87;113;60;48;170 -224;'796;Turks and Caicos Islands;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -224;'796;Turks and Caicos Islands;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;7;27;109;34;85;69 -224;'796;Turks and Caicos Islands;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;154;232;294;281;518;821;778 -224;'796;Turks and Caicos Islands;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;31;51;105;53;32;79 -224;'796;Turks and Caicos Islands;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140;198;377;233;438;1075;1122 -224;'796;Turks and Caicos Islands;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;3;3;6;6;8;82 -224;'796;Turks and Caicos Islands;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;513;582;834;575;692;1700;1414 -224;'796;Turks and Caicos Islands;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;72;33;2;1;8;9 -227;'798;Tuvalu;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1645;1902;2454;2121;1274;2080;2852 -227;'798;Tuvalu;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;16;9;5;1;73;145 -227;'798;Tuvalu;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;208;102;325;323;323;323;323;323;323;323;323;323;323;323;323;323;323;323;323;323;323;323;323;482;915;841;1512;986;866;847;1000;1964 -227;'798;Tuvalu;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;7;9;5;1;1;137 -227;'798;Tuvalu;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;35;35;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;99;10;16;294;310;0;572;706;127 -227;'798;Tuvalu;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;3;3;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;28;9;6;255;20;1;27;31;41 -227;'798;Tuvalu;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -227;'798;Tuvalu;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -227;'798;Tuvalu;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;294;294;0;2;126;24 -227;'798;Tuvalu;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;255;19;1;0;4;1 -227;'798;Tuvalu;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -227;'798;Tuvalu;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -227;'798;Tuvalu;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;16;0;570;580;103 -227;'798;Tuvalu;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;1;0;27;27;40 -227;'798;Tuvalu;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -227;'798;Tuvalu;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -227;'798;Tuvalu;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;35;35;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;64;99;10;16;294;310;0;572;706;127 -227;'798;Tuvalu;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;3;3;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;28;9;6;255;20;1;27;31;41 -227;'798;Tuvalu;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -227;'798;Tuvalu;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -227;'798;Tuvalu;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;32;32;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;44;10;12;294;294;0;2;126;24 -227;'798;Tuvalu;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;13;9;5;255;19;1;0;4;1 -227;'798;Tuvalu;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -227;'798;Tuvalu;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -227;'798;Tuvalu;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;32;32;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;44;10;12;294;294;0;2;126;24 -227;'798;Tuvalu;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;13;9;5;255;19;1;0;4;1 -227;'798;Tuvalu;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -227;'798;Tuvalu;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -227;'798;Tuvalu;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;3;3;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;55;0;4;0;16;0;570;580;103 -227;'798;Tuvalu;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;1;1;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;15;0;1;0;1;0;27;27;40 -227;'798;Tuvalu;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -227;'798;Tuvalu;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -227;'798;Tuvalu;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;3;3;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;33;55;0;4;0;16;0;570;570;2 -227;'798;Tuvalu;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;1;1;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;12;15;0;1;0;1;0;27;27;1 -227;'798;Tuvalu;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -227;'798;Tuvalu;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -227;'798;Tuvalu;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;10;101 -227;'798;Tuvalu;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;39 -227;'798;Tuvalu;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -227;'798;Tuvalu;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -227;'798;Tuvalu;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -227;'798;Tuvalu;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;450;279;732;732;732;732;732;732;732;732;732;732;732;732;732;732;732;732;732;732;732;732;732;2899;3070;1077;5475;2508;2247;1138;872;834 -227;'798;Tuvalu;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115;92;235;235;235;235;235;235;235;235;235;235;235;235;235;235;235;235;235;235;235;235;235;265;398;430;1058;625;584;430;548;1469 -227;'798;Tuvalu;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;15;18;6;0;0;12 -227;'798;Tuvalu;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;7;8;4;0;0;2 -227;'798;Tuvalu;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -227;'798;Tuvalu;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;191;187;395;395;395;395;395;395;395;395;395;395;395;395;395;395;395;395;395;395;395;395;395;2573;2501;887;4815;2396;1958;970;859;580 -227;'798;Tuvalu;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;56;113;113;113;113;113;113;113;113;113;113;113;113;113;113;113;113;113;113;113;113;113;223;328;338;980;582;455;344;517;1317 -227;'798;Tuvalu;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;15;18;6;0;0;12 -227;'798;Tuvalu;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;7;8;4;0;0;2 -227;'798;Tuvalu;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -227;'798;Tuvalu;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;259;92;337;337;337;337;337;337;337;337;337;337;337;337;337;337;337;337;337;337;337;337;337;326;569;190;660;112;289;168;13;254 -227;'798;Tuvalu;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;36;122;122;122;122;122;122;122;122;122;122;122;122;122;122;122;122;122;122;122;122;122;42;70;92;78;43;129;86;31;152 -227;'798;Tuvalu;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -227;'798;Tuvalu;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -227;'798;Tuvalu;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -227;'798;Tuvalu;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;180;56;0;14;33;17;12;0 -227;'798;Tuvalu;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;56;54;0;41;32;0;32;1 -227;'798;Tuvalu;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;162 -227;'798;Tuvalu;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;134 -227;'798;Tuvalu;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -227;'798;Tuvalu;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;361;12;95;92;92;92;92;92;92;92;92;92;92;92;92;92;92;92;92;92;92;92;92;182;494;481;302;318;46;1283;72;690 -227;'798;Tuvalu;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;7;70;68;68;68;68;68;68;68;68;68;68;68;68;68;68;68;68;68;68;68;68;167;446;345;193;278;199;202;216;375 -227;'798;Tuvalu;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -227;'798;Tuvalu;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -227;'798;Tuvalu;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -227;'798;Tuvalu;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;354;4;67;67;67;67;67;67;67;67;67;67;67;67;67;67;67;67;67;67;67;67;67;157;469;456;277;296;25;1264;45;663 -227;'798;Tuvalu;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88;4;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;59;158;437;336;184;266;185;198;198;357 -227;'798;Tuvalu;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -227;'798;Tuvalu;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -227;'798;Tuvalu;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;8;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -227;'798;Tuvalu;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;2;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -227;'798;Tuvalu;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;8;5;4;2;10;10 -227;'798;Tuvalu;1697;Particle board;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;5;7;1;11;11 -227;'798;Tuvalu;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;3;20;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;17;17 -227;'798;Tuvalu;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;2;9;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;3;7;7 -227;'798;Tuvalu;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -227;'798;Tuvalu;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -227;'798;Tuvalu;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -227;'798;Tuvalu;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -227;'798;Tuvalu;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;17;17;17 -227;'798;Tuvalu;1650;Other fibreboard;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;7;7;3;7;7 -227;'798;Tuvalu;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;3;3;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -227;'798;Tuvalu;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;2;2;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -227;'798;Tuvalu;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;29;29;29;29 -227;'798;Tuvalu;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;14;14;14;14 -227;'798;Tuvalu;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;29;29;29;29 -227;'798;Tuvalu;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;14;14;14;14 -227;'798;Tuvalu;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;29;29;29;29 -227;'798;Tuvalu;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;14;14;14;14 -227;'798;Tuvalu;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;29;29;29;29 -227;'798;Tuvalu;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;14;14;14;14 -227;'798;Tuvalu;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -227;'798;Tuvalu;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -227;'798;Tuvalu;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;20;52;50;35 -227;'798;Tuvalu;1876;Paper and paperboard;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;36;174;159;64 -227;'798;Tuvalu;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 -227;'798;Tuvalu;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;1;1;1;1;1 -227;'798;Tuvalu;2042;Graphic papers;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;2;2;2;1;19;51;49;35 -227;'798;Tuvalu;2042;Graphic papers;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;1;35;172;158;60 -227;'798;Tuvalu;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 -227;'798;Tuvalu;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 -227;'798;Tuvalu;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -227;'798;Tuvalu;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -227;'798;Tuvalu;1674;Printing and writing papers;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;2;2;2;1;19;51;49;35 -227;'798;Tuvalu;1674;Printing and writing papers;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;1;35;172;158;60 -227;'798;Tuvalu;1674;Printing and writing 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 -227;'798;Tuvalu;1674;Printing and writing 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 -227;'798;Tuvalu;1612;Printing and writing papers, uncoated, mechanical;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;1;19;33;29;0 -227;'798;Tuvalu;1612;Printing and writing papers, uncoated, mechanical;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;1;35;115;87;1 -227;'798;Tuvalu;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 -227;'798;Tuvalu;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;0;0;0 -227;'798;Tuvalu;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -227;'798;Tuvalu;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -227;'798;Tuvalu;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;20;35 -227;'798;Tuvalu;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;71;59 -227;'798;Tuvalu;1675;Other paper and paperboard;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;2;1;1;1;0 -227;'798;Tuvalu;1675;Other paper and paperboard;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;5;1;2;1;4 -227;'798;Tuvalu;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -227;'798;Tuvalu;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1 -227;'798;Tuvalu;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0 -227;'798;Tuvalu;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;1;0;2 -227;'798;Tuvalu;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -227;'798;Tuvalu;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1 -227;'798;Tuvalu;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -227;'798;Tuvalu;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -227;'798;Tuvalu;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -227;'798;Tuvalu;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -227;'798;Tuvalu;1683;Other paper and paperboard, not elsewhere specified;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 -227;'798;Tuvalu;1683;Other paper and paperboard, not elsewhere specified;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;2 -227;'798;Tuvalu;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;645;281;1326;1045;202;849;760 -227;'798;Tuvalu;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;9;0;0;0;72;8 -227;'798;Tuvalu;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -227;'798;Tuvalu;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -227;'798;Tuvalu;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -227;'798;Tuvalu;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -227;'798;Tuvalu;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;94;279;279;14;45;573 -227;'798;Tuvalu;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101;126;364;83;182;59;151 -227;'798;Tuvalu;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;9;0;0;0;72;8 -227;'798;Tuvalu;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;474;57;683;683;3;743;33 -227;'798;Tuvalu;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;4;0;0;3;2;3 -227;'798;Tuvalu;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;159;109;142;210;225;231;128 -227;'798;Tuvalu;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -227;'798;Tuvalu;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;12;5;17;7;12;0 -227;'798;Tuvalu;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;60;53;69;104;100;99 -227;'798;Tuvalu;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -227;'798;Tuvalu;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;4;13;5;27;6;2 -227;'798;Tuvalu;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -227;'798;Tuvalu;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119;33;71;119;87;113;27 -227;'798;Tuvalu;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -226;'800;Uganda;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;150213;180693;173923;117610;120945;118127;142670 -226;'800;Uganda;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47624;67666;62266;70753;69599;70822;83634 -226;'800;Uganda;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;670;737;843;1164;1764;2224;2899;5544;6478;3960;6543;3301;2838;5065;3546;3499;3499;3499;3500;3501;3491;898;898;898;1166;1802;3818;4673;1448;2109;2109;1230;2107;2041;3323;1061;4644;4222;17787;17787;17870;13973;29403;39069;39069;36143;46046;68416;26946;64205;79664;72816;72816;74038;76058;76830;98510;122411;125859;83423;83706;60279;85990 -226;'800;Uganda;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;759;481;392;529;512;442;553;744;678;796;641;655;482;378;317;38;38;38;38;38;;;;;;;;;;;;;41;11;11;11;32;58;49;49;51;87;1115;1865;1865;3619;4173;4123;6121;9542;9944;7923;7755;14870;20241;29426;31933;49713;46486;57003;51798;53432;77209 -226;'800;Uganda;1861;Roundwood;5516;Production;m3;14774983;15243363;15745705;16268496;16819243;17395468;17985708;18571524;19180484;19819188;20324764;20773408;21262796;21768476;22387844;23062204;23769800;24810176;26232912;27173334;27613326;27775766;27963010;28544058;29230284;29764586;30098836;30225012;30549856;31004482;31678918;32671212;33418080;34378026;34880392;35430348;35967024;36409100;36901320;37265320;37786016;38316824;38857952;39480600;40120000;40746297;41685200;42357800;43029470;43729358;45811000;45975000;46207000;46704575;47544054;48191593;48622521;49060965;49507058;49960935;50405927;50858855;51319863 -226;'800;Uganda;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;923;362;362;46;7241;640;401;1950;9423;8916;8916;8944;11;22;48;179;21;0;134;279;0 -226;'800;Uganda;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;292;23;23;10;1035;583;224;173;681;629;629;630;5;45;16;161;28;0;15;77;0 -226;'800;Uganda;1861;Roundwood;5916;Export quantity;m3;100;300;300;300;300;100;100;100;500;700;400;300;300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;870;3911;3911;1240;4111;10256;7349;1318;10302;4622;1458;10713;10569;12743;14910;30018;12895;12937;350;4827;10083 -226;'800;Uganda;1861;Roundwood;5922;Export value;1000 USD;8;6;10;10;9;5;5;5;15;29;22;35;24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;190;484;484;383;502;1526;969;334;823;911;743;9322;5552;6446;6203;8851;4235;4458;83;1056;4536 -226;'800;Uganda;1862;Roundwood, coniferous;5516;Production;m3;1000;1000;1000;5000;5000;7000;8000;9000;9000;11000;32000;10000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;19000;19000;19000;19000;50000;100000;150000;200000;214000;229000;245000;269000;269000;269000;269000;269000;287000;307000;327000;425000;450000;475000;503000;533000;755000;799000;844000;894000;935000;935000;935000;935000;935000;935000;935000;935000 -226;'800;Uganda;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;178;21;0;0;1;0 -226;'800;Uganda;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;161;28;0;0;0;0 -226;'800;Uganda;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;18;0;42;41;0;83 -226;'800;Uganda;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;0;223;4;0;16 -226;'800;Uganda;1863;Roundwood, non-coniferous;5516;Production;m3;14773983;15242363;15744705;16263496;16814243;17388468;17977708;18562524;19171484;19808188;20292764;20763408;21248796;21754476;22373844;23048204;23755800;24796176;26218912;27159334;27599326;27761766;27949010;28530058;29216284;29750586;30084836;30206012;30530856;30985482;31659918;32621212;33318080;34228026;34680392;35216348;35738024;36164100;36632320;36996320;37517016;38047824;38588952;39193600;39813000;40419297;41260200;41907800;42554470;43226358;45278000;45220000;45408000;45860575;46650054;47256593;47687521;48125965;48572058;49025935;49470927;49923855;50384863 -226;'800;Uganda;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;1;0;0;134;278;0 -226;'800;Uganda;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;0;0;0;15;77;0 -226;'800;Uganda;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14910;30000;12895;12895;309;4827;10000 -226;'800;Uganda;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6203;8850;4235;4235;79;1056;4520 -226;'800;Uganda;1864;Wood fuel;5516;Production;m3;13982983;14440363;14912705;15400496;15904243;16424468;16961708;17516524;18089484;18681188;19116764;19567408;20037796;20516476;21168844;21800204;22474800;23479176;24866912;25774334;26183326;26311766;26467010;27016058;27670284;28171586;28472836;28573012;28856856;29265482;29865918;30679212;31225080;31932026;32181392;32622348;33045024;33368100;33726320;34090320;34611016;35141824;35682952;36234600;36797000;37343297;37900200;38467800;39046470;39636358;41600000;41600000;41600000;41856575;42438054;42861593;43292521;43730965;44177058;44630935;45075927;45528855;45989863 -226;'800;Uganda;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;12;1;3;3;4;4;12;;;;;;; -226;'800;Uganda;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;0;0;43;;;;;;; -226;'800;Uganda;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;2;2;25;25;25;11;229;229;10;111;14;;;;;;;83 -226;'800;Uganda;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;2;2;2;18;160;160;2;5;2;;;;;;;16 -226;'800;Uganda;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 -226;'800;Uganda;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83 -226;'800;Uganda;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16 -226;'800;Uganda;1628;Wood fuel, non-coniferous;5516;Production;m3;13982983;14440363;14912705;15400496;15904243;16424468;16961708;17516524;18089484;18681188;19116764;19567408;20037796;20516476;21168844;21800204;22474800;23479176;24866912;25774334;26183326;26311766;26467010;27016058;27670284;28171586;28472836;28573012;28856856;29265482;29865918;30679212;31225080;31932026;32181392;32622348;33045024;33368100;33726320;34090320;34611016;35141824;35682952;36234600;36797000;37343297;37900200;38467800;39046470;39636358;41600000;41600000;41600000;41856575;42438054;42861593;43292521;43730965;44177058;44630935;45075927;45528855;45989863 -226;'800;Uganda;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -226;'800;Uganda;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -226;'800;Uganda;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;12;1;3;3;4;4;12;;;;;;; -226;'800;Uganda;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;0;0;43;;;;;;; -226;'800;Uganda;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;2;2;25;25;25;11;229;229;10;111;14;;;;;;; -226;'800;Uganda;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;2;2;2;18;160;160;2;5;2;;;;;;; -226;'800;Uganda;1865;Industrial roundwood;5516;Production;m3;792000;803000;833000;868000;915000;971000;1024000;1055000;1091000;1138000;1208000;1206000;1225000;1252000;1219000;1262000;1295000;1331000;1366000;1399000;1430000;1464000;1496000;1528000;1560000;1593000;1626000;1652000;1693000;1739000;1813000;1992000;2193000;2446000;2699000;2808000;2922000;3041000;3175000;3175000;3175000;3175000;3175000;3246000;3323000;3403000;3785000;3890000;3983000;4093000;4211000;4375000;4607000;4848000;5106000;5330000;5330000;5330000;5330000;5330000;5330000;5330000;5330000 -226;'800;Uganda;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;923;362;362;46;7241;620;381;1938;9422;8913;8913;8940;7;10;48;179;21;0;134;279;0 -226;'800;Uganda;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;292;23;23;10;1035;582;223;172;680;628;628;630;5;2;16;161;28;0;15;77;0 -226;'800;Uganda;1865;Industrial roundwood;5916;Export quantity;m3;100;300;300;300;300;100;100;100;500;700;400;300;300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;866;3907;3907;1238;4109;10231;7324;1293;10291;4393;1229;10703;10458;12729;14910;30018;12895;12937;350;4827;10000 -226;'800;Uganda;1865;Industrial roundwood;5922;Export value;1000 USD;8;6;10;10;9;5;5;5;15;29;22;35;24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;190;484;484;383;502;1524;967;332;805;751;583;9320;5547;6444;6203;8851;4235;4458;83;1056;4520 -226;'800;Uganda;1866;Industrial roundwood, coniferous;5516;Production;m3;1000;1000;1000;5000;5000;7000;8000;9000;9000;11000;32000;10000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;19000;19000;19000;19000;50000;100000;150000;200000;214000;229000;245000;269000;269000;269000;269000;269000;287000;307000;327000;425000;450000;475000;503000;533000;755000;799000;844000;894000;935000;935000;935000;935000;935000;935000;935000;935000 -226;'800;Uganda;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;206;206;13;7142;415;26;26;90;1;1;22;0;0;29;178;21;0;0;1;0 -226;'800;Uganda;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;13;13;1;436;25;2;2;5;0;0;1;0;0;11;161;28;0;0;0;0 -226;'800;Uganda;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;450;3;3;0;0;42;0;0;76;3164;0;0;2;2;0;18;0;42;41;0;0 -226;'800;Uganda;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;0;0;0;0;4;0;0;4;168;0;0;0;1;0;1;0;223;4;0;0 -226;'800;Uganda;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;206;206;13;7142;415;26;26;90;1;1;22;0;0;29;178;21;0;0;1;0 -226;'800;Uganda;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;13;13;1;436;25;2;2;5;0;0;1;0;0;11;161;28;0;0;0;0 -226;'800;Uganda;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;450;3;3;0;0;42;0;0;76;3164;0;0;2;2;0;18;0;42;41;0;0 -226;'800;Uganda;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;0;0;0;0;4;0;0;4;168;0;0;0;1;0;1;0;223;4;0;0 -226;'800;Uganda;1867;Industrial roundwood, non-coniferous;5516;Production;m3;791000;802000;832000;863000;910000;964000;1016000;1046000;1082000;1127000;1176000;1196000;1211000;1238000;1205000;1248000;1281000;1317000;1352000;1385000;1416000;1450000;1482000;1514000;1546000;1579000;1612000;1633000;1674000;1720000;1794000;1942000;2093000;2296000;2499000;2594000;2693000;2796000;2906000;2906000;2906000;2906000;2906000;2959000;3016000;3076000;3360000;3440000;3508000;3590000;3678000;3620000;3808000;4004000;4212000;4395000;4395000;4395000;4395000;4395000;4395000;4395000;4395000 -226;'800;Uganda;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;915;156;156;33;99;205;355;1912;9332;8912;8912;8918;7;10;19;1;0;0;134;278;0 -226;'800;Uganda;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;292;10;10;9;599;557;221;170;675;628;628;629;5;2;5;0;0;0;15;77;0 -226;'800;Uganda;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;416;3904;3904;1238;4109;10189;7324;1293;10215;1229;1229;10703;10456;12727;14910;30000;12895;12895;309;4827;10000 -226;'800;Uganda;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;166;484;484;383;502;1520;967;332;801;583;583;9320;5547;6443;6203;8850;4235;4235;79;1056;4520 -226;'800;Uganda;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1874;8909;8909;8909;8909;7;10;19;0;0;0;0;250;0 -226;'800;Uganda;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;147;627;627;627;627;5;2;5;0;0;0;0;74;0 -226;'800;Uganda;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;365;2916;2916;1060;37;163;586;93;9661;675;675;9552;10456;12727;14910;30000;12895;12895;309;1295;10000 -226;'800;Uganda;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;156;426;426;348;16;62;189;91;738;520;520;6249;5547;6443;6203;8850;4235;4235;79;146;4520 -226;'800;Uganda;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;915;155;155;32;98;204;354;38;423;3;3;9;0;0;0;1;0;0;134;28;0 -226;'800;Uganda;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;292;10;10;9;599;557;221;23;48;1;1;2;0;0;0;0;0;0;15;3;0 -226;'800;Uganda;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;988;988;178;4072;10026;6738;1200;554;554;554;1151;0;0;0;0;0;0;0;3532;0 -226;'800;Uganda;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;58;58;35;486;1458;778;241;63;63;63;3071;0;0;0;0;0;0;0;910;0 -226;'800;Uganda;1868;Sawlogs and veneer logs;5516;Production;m3;108000;91000;91000;95000;108000;129000;146000;140000;140000;155000;196000;168000;162000;162000;98000;106000;99000;94000;89000;84000;79000;80000;80000;80000;80000;80000;80000;70000;70000;70000;119000;250000;400000;600000;800000;856000;916000;980000;1055000;1055000;1055000;1055000;1055000;1126000;1203000;1283000;1665000;1770000;1863000;1973000;2091000;2869000;3037000;3209000;3398000;3553000;3553000;3553000;3553000;3553000;3553000;3553000;3553000 -226;'800;Uganda;1868;Sawlogs and veneer logs;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -226;'800;Uganda;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -226;'800;Uganda;1868;Sawlogs and veneer logs;5916;Export quantity;m3;100;300;300;300;300;100;100;100;500;700;400;300;300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -226;'800;Uganda;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;8;6;10;10;9;5;5;5;15;29;22;35;24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -226;'800;Uganda;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;1000;1000;1000;5000;5000;7000;8000;9000;9000;11000;32000;10000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;19000;19000;19000;19000;50000;100000;150000;200000;214000;229000;245000;269000;269000;269000;269000;269000;287000;307000;327000;425000;450000;475000;503000;533000;755000;799000;844000;894000;935000;935000;935000;935000;935000;935000;935000;935000 -226;'800;Uganda;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;107000;90000;90000;90000;103000;122000;138000;131000;131000;144000;164000;158000;148000;148000;84000;92000;85000;80000;75000;70000;65000;66000;66000;66000;66000;66000;66000;51000;51000;51000;100000;200000;300000;450000;600000;642000;687000;735000;786000;786000;786000;786000;786000;839000;896000;956000;1240000;1320000;1388000;1470000;1558000;2114000;2238000;2365000;2504000;2618000;2618000;2618000;2618000;2618000;2618000;2618000;2618000 -226;'800;Uganda;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -226;'800;Uganda;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -226;'800;Uganda;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;100;300;300;300;300;100;100;100;500;700;400;300;300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -226;'800;Uganda;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;8;6;10;10;9;5;5;5;15;29;22;35;24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -226;'800;Uganda;1871;Other industrial roundwood;5516;Production;m3;684000;712000;742000;773000;807000;842000;878000;915000;951000;983000;1012000;1038000;1063000;1090000;1121000;1156000;1196000;1237000;1277000;1315000;1351000;1384000;1416000;1448000;1480000;1513000;1546000;1582000;1623000;1669000;1694000;1742000;1793000;1846000;1899000;1952000;2006000;2061000;2120000;2120000;2120000;2120000;2120000;2120000;2120000;2120000;2120000;2120000;2120000;2120000;2120000;1506000;1570000;1639000;1708000;1777000;1777000;1777000;1777000;1777000;1777000;1777000;1777000 -226;'800;Uganda;1871;Other industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -226;'800;Uganda;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;0 -226;'800;Uganda;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;684000;712000;742000;773000;807000;842000;878000;915000;951000;983000;1012000;1038000;1063000;1090000;1121000;1156000;1196000;1237000;1277000;1315000;1351000;1384000;1416000;1448000;1480000;1513000;1546000;1582000;1623000;1669000;1694000;1742000;1793000;1846000;1899000;1952000;2006000;2061000;2120000;2120000;2120000;2120000;2120000;2120000;2120000;2120000;2120000;2120000;2120000;2120000;2120000;1506000;1570000;1639000;1708000;1777000;1777000;1777000;1777000;1777000;1777000;1777000;1777000 -226;'800;Uganda;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -226;'800;Uganda;1630;Wood charcoal;5510;Production;t;187160;196457;206065;213703;208292;221253;226707;244978;257891;272269;284870;295626;310802;323059;338733;352603;367067;390539;425628;448283;459840;463934;469337;486726;507627;524242;535006;539377;548628;560789;578046;601248;615690;636037;642806;657287;672505;685412;699257;713381;732368;751861;771873;792417;813508;835839;858800;882300;906579;931466;931466;931466;1000000;1037412;1065731;1091717;1118336;1145605;1173539;1202154;1232052;1262693;1294096 -226;'800;Uganda;1630;Wood charcoal;5610;Import quantity;t;1000;500;100;2100;17600;15200;20800;14100;13300;11600;7700;6700;2300;800;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;3;2;12;42;40;15;15;7;8;2;48;3;30;22;27;0;0 -226;'800;Uganda;1630;Wood charcoal;5622;Import value;1000 USD;14;7;2;35;285;240;332;275;296;254;165;152;48;23;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;7;2;8;16;12;20;20;103;3;4;27;17;10;2;4;0;0 -226;'800;Uganda;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;27;27;16;150;161;161;38;120;74;74;1734;6;22;22;30;5;37;37;4;0 -226;'800;Uganda;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;8;58;37;37;33;156;58;58;612;3;9;9;16;1;5;5;0;0 -226;'800;Uganda;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;337;337;337;46;46;75;52;52;60;60;96;1;0;44;51;4;46;46;46;46 -226;'800;Uganda;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;18;18;18;75;75;138;239;239;74;74;108;0;0;73;18;0;20;18;18;18 -226;'800;Uganda;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;15;314;283;315;309;206;206;46;132;433;433;48;48;20;2;1;46 -226;'800;Uganda;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;25;59;56;123;66;50;50;12;53;196;196;38;38;36;3;3;4 -226;'800;Uganda;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;336;336;336;44;44;44;44;44;44;44;44;1;0;44;5;0;0;0;0;0 -226;'800;Uganda;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;18;18;18;73;73;73;73;73;73;73;73;0;0;73;0;0;2;0;0;0 -226;'800;Uganda;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;43;12;44;38;193;193;33;2;0;0;0;0;19;1;1;46 -226;'800;Uganda;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;6;3;70;13;42;42;4;1;1;1;1;1;36;3;3;4 -226;'800;Uganda;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;2;2;31;8;8;16;16;52;0;0;0;46;4;46;46;46;46 -226;'800;Uganda;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;2;2;65;166;166;1;1;35;0;0;0;18;0;18;18;18;18 -226;'800;Uganda;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;271;271;271;271;13;13;13;130;433;433;48;48;1;1;0;0 -226;'800;Uganda;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;53;53;53;53;8;8;8;52;195;195;37;37;0;0;0;0 -226;'800;Uganda;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;201;940;940;0 -226;'800;Uganda;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;11;11;0 -226;'800;Uganda;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;201;940;940;0 -226;'800;Uganda;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;11;11;0 -226;'800;Uganda;1872;Sawnwood;5516;Production;m3;40400;28300;35400;39500;51300;51200;61400;62500;58500;64900;83000;37000;38000;40600;33600;44600;23900;23900;23900;23900;23000;23000;23000;23000;23000;23000;23000;28100;28100;30300;30300;96000;106500;140000;200000;215000;229000;245000;264000;264000;264000;264000;264000;264000;125000;117000;117000;117000;117000;117000;350000;400000;440000;440000;440000;440000;440000;440000;440000;440000;440000;440000;440000 -226;'800;Uganda;1872;Sawnwood;5616;Import quantity;m3;3000;4200;3300;4900;5400;5800;9300;11900;13900;11600;11300;4300;800;1000;300;400;400;400;400;400;100;100;100;100;;59;396;0;193;234;234;234;234;90;104;104;104;25;71;71;649;649;73;191;191;37;853;4452;23;7897;6161;6166;6166;6931;192;59;11309;5274;14146;12180;6421;6766;42 -226;'800;Uganda;1872;Sawnwood;5622;Import value;1000 USD;110;142;121;159;195;209;376;442;561;415;569;185;40;29;21;33;33;33;33;33;22;22;22;22;;20;48;0;30;96;96;96;96;90;93;93;93;7;11;11;94;94;29;50;50;64;116;651;3;1206;775;743;743;808;77;8;2577;1187;1965;2020;1110;715;31 -226;'800;Uganda;1872;Sawnwood;5916;Export quantity;m3;9100;6200;4900;6800;6000;5700;6900;9200;7400;8900;7100;7100;6200;4300;3800;400;400;400;400;400;;;;;;;;;;;;;77;11;11;11;24;6;0;0;36;113;1143;664;664;545;259;885;286;921;692;1903;1903;886;1146;4546;2126;6140;9999;27443;20000;13828;6281 -226;'800;Uganda;1872;Sawnwood;5922;Export value;1000 USD;703;427;334;471;455;389;459;628;544;697;565;570;438;378;317;38;38;38;38;38;;;;;;;;;;;;;34;4;4;4;25;2;0;0;2;38;242;182;182;303;191;390;192;684;341;407;407;786;612;2438;1309;2948;2080;3983;3086;2959;996 -226;'800;Uganda;1632;Sawnwood, coniferous;5516;Production;m3;500;200;100;1600;1200;1800;2200;2300;2600;2300;8000;5000;4000;7600;7600;7600;7600;7600;7600;7600;7000;7000;7000;7000;7000;7000;7000;7800;7800;10000;10000;20000;30000;40000;50000;54000;57000;61000;67000;67000;67000;67000;67000;67000;24000;24000;24000;24000;24000;24000;70000;80000;132000;132000;132000;132000;132000;132000;132000;132000;132000;132000;132000 -226;'800;Uganda;1632;Sawnwood, coniferous;5616;Import quantity;m3;2900;4000;2900;4600;4400;4700;8600;11400;13700;11400;11150;4100;700;1000;300;400;400;400;400;400;100;100;100;100;;59;396;0;193;234;234;234;234;0;14;14;14;1;1;1;579;579;36;36;36;4;4;4;7;9;9;1;1;25;192;0;6259;74;146;134;50;11;31 -226;'800;Uganda;1632;Sawnwood, coniferous;5622;Import value;1000 USD;106;134;108;142;140;155;335;417;553;397;560;174;33;29;21;33;33;33;33;33;22;22;22;22;;20;48;0;30;96;96;96;96;0;3;3;3;0;0;0;83;83;3;3;3;6;6;6;1;1;1;3;3;0;77;0;1804;1;61;54;30;4;30 -226;'800;Uganda;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;200;100;400;1200;1900;900;1100;1100;1100;1100;1900;1900;100;100;100;100;100;;;;;;;;;;;;;;0;0;0;0;0;0;0;36;36;739;144;144;37;37;309;9;39;163;821;821;330;96;255;47;700;8299;26338;18000;9000;6177 -226;'800;Uganda;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;9;4;18;50;105;49;56;56;56;56;112;112;12;12;12;12;12;;;;;;;;;;;;;;0;0;0;0;0;0;0;2;2;22;24;24;5;5;24;12;20;36;105;105;54;28;108;12;141;1113;3517;2430;2268;937 -226;'800;Uganda;1633;Sawnwood, non-coniferous;5516;Production;m3;39900;28100;35300;37900;50100;49400;59200;60200;55900;62600;75000;32000;34000;33000;26000;37000;16300;16300;16300;16300;16000;16000;16000;16000;16000;16000;16000;20300;20300;20300;20300;76000;76500;100000;150000;161000;172000;184000;197000;197000;197000;197000;197000;197000;101000;93000;93000;93000;93000;93000;280000;320000;308000;308000;308000;308000;308000;308000;308000;308000;308000;308000;308000 -226;'800;Uganda;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;100;200;400;300;1000;1100;700;500;200;200;150;200;100;;;;;;;;;;;;;;;;;;;;;90;90;90;90;24;70;70;70;70;37;155;155;33;849;4448;16;7888;6152;6165;6165;6906;0;59;5050;5200;14000;12046;6371;6755;11 -226;'800;Uganda;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;4;8;13;17;55;54;41;25;8;18;9;11;7;;;;;;;;;;;;;;;;;;;;;90;90;90;90;7;11;11;11;11;26;47;47;58;110;645;2;1205;774;740;740;808;0;8;773;1186;1904;1966;1080;711;1 -226;'800;Uganda;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;9100;6200;4900;6600;5900;5300;5700;7300;6500;7800;6000;6000;5100;2400;1900;300;300;300;300;300;;;;;;;;;;;;;77;11;11;11;24;6;0;0;0;77;404;520;520;508;222;576;277;882;529;1082;1082;556;1050;4291;2079;5440;1700;1105;2000;4828;104 -226;'800;Uganda;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;703;427;334;462;451;371;409;523;495;641;509;514;382;266;205;26;26;26;26;26;;;;;;;;;;;;;34;4;4;4;25;2;0;0;0;36;220;158;158;298;186;366;180;664;305;302;302;732;584;2330;1297;2807;967;466;656;691;59 -226;'800;Uganda;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;26000;101000 -226;'800;Uganda;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;65;31;20;20;20;15;200;200;200;1;347;279;279;26;16;68;31;53;15;45;45;22;195;67;122;31;10;19;11;0;5 -226;'800;Uganda;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;65;42;12;12;12;6;112;112;112;9;194;216;216;61;21;229;62;19;51;100;100;41;84;89;163;10;36;31;25;16;16 -226;'800;Uganda;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;1;3;24;117;83;363;363;363;113;143;214;265;61;118;1353;1353;24042;79000 -226;'800;Uganda;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;3;4;15;134;57;202;202;202;79;153;93;79;16;93;559;542;14528;27492 -226;'800;Uganda;1873;Wood-based panels;5516;Production;m3;3400;4500;2500;2500;2900;3400;4400;4800;7200;7000;6600;6400;6500;6900;1500;1200;1200;1200;1200;1200;1200;2000;2000;2450;2450;2565;3530;3300;3300;2700;2700;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;5000;5000;5000;5000;5000;5000;5000;5000;5000;25000;36000;85000;105000;125000;155000;195000;195000;245000;270000 -226;'800;Uganda;1873;Wood-based panels;5616;Import quantity;m3;500;600;700;1500;1200;1742;1427;2164;1953;2053;11277;927;3006;2406;1258;205;205;205;205;205;205;205;205;205;205;510;481;274;33;50;50;345;91;83;64;64;510;100;401;401;401;23;6489;11626;11626;7514;4434;6046;5085;5636;5928;9971;9971;6209;8898;8007;3859;3387;5139;3685;4350;3710;4016 -226;'800;Uganda;1873;Wood-based panels;5622;Import value;1000 USD;74;86;96;219;227;338;307;418;479;479;2173;220;739;636;517;236;236;236;236;236;236;236;236;236;236;217;209;144;27;42;42;111;28;41;50;50;232;48;587;587;587;29;2057;2175;2175;2426;2509;3523;3359;3157;3052;5501;5501;3020;2957;2591;1943;1636;1800;1429;1610;1480;1660 -226;'800;Uganda;1873;Wood-based panels;5916;Export quantity;m3;48;48;48;48;48;48;548;948;1048;1200;800;500;200;;;;;;;;;;;;;;;;;;;;11;11;11;11;11;11;0;0;0;0;774;839;839;3620;1953;750;3813;7431;7086;5017;5017;1108;8888;45935;60692;88044;94061;129727;145324;120097;158963 -226;'800;Uganda;1873;Wood-based panels;5922;Export value;1000 USD;48;48;48;48;48;48;89;111;119;70;54;50;20;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;0;0;0;0;349;360;360;1820;2381;665;2516;4744;4388;3134;3134;994;3329;17403;21326;34194;34877;43699;42266;33914;42020 -226;'800;Uganda;1640;Plywood and LVL;5516;Production;m3;3400;4500;2500;2500;2900;3400;3900;3800;5100;5100;5200;5100;5300;5700;1300;1000;1000;1000;1000;1000;1000;1800;1800;2250;2250;2025;2700;2700;2700;2700;2700;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;16000;50000;50000;60000;90000;130000;130000;180000;180000 -226;'800;Uganda;1640;Plywood and LVL;5616;Import quantity;m3;100;200;200;400;500;700;700;800;700;900;1700;400;900;300;100;100;100;100;100;100;100;100;100;100;100;491;478;270;33;50;50;35;2;30;26;26;60;3;0;0;0;0;1601;1193;1193;1139;2189;1957;2414;1240;1535;1432;1432;1540;1484;1799;2264;966;2363;1024;1127;1008;1104 -226;'800;Uganda;1640;Plywood and LVL;5622;Import value;1000 USD;17;41;42;105;140;222;179;275;354;361;686;140;342;239;140;140;140;140;140;140;140;140;140;140;140;212;208;138;27;42;42;21;2;21;27;27;51;2;0;0;0;0;520;423;423;654;1062;1457;1920;1094;821;945;945;897;660;870;1128;453;982;534;432;273;339 -226;'800;Uganda;1640;Plywood and LVL;5916;Export quantity;m3;48;48;48;48;48;48;48;48;48;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;11;11;0;0;0;0;774;774;774;3229;1623;454;1715;2313;2109;1420;1420;810;2353;26424;22182;40649;62628;101487;112900;83688;83688 -226;'800;Uganda;1640;Plywood and LVL;5922;Export value;1000 USD;48;48;48;48;48;48;48;48;48;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;0;0;0;0;349;349;349;1749;2269;524;1183;2215;1958;1164;1164;781;1269;9698;8284;16928;22109;33543;31840;21506;21506 -226;'800;Uganda;1646;Particle board and OSB (1961-1994);5516;Production;m3;;;;;;;500;1000;2100;1900;1400;1300;1200;1200;200;200;200;200;200;200;200;200;200;200;200;540;830;600;600;0;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -226;'800;Uganda;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;300;200;300;200;200;200;200;100;200;100;100;;;;;;;;;;;;;;;;;;;;;;28;10;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -226;'800;Uganda;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;44;22;27;13;14;20;20;6;15;8;12;;;;;;;;;;;;;;;;;;;;;;7;9;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -226;'800;Uganda;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;500;900;1000;1200;800;500;200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -226;'800;Uganda;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;41;63;71;70;54;50;20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -226;'800;Uganda;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;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000 -226;'800;Uganda;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;399;45;400;400;400;22;2387;4652;4652;1717;471;1083;1897;1074;617;316;316;145;846;1053;501;501;1225;935;1411;1292;1288 -226;'800;Uganda;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;156;21;587;587;587;29;972;763;763;444;286;579;997;549;267;334;334;119;381;320;275;275;383;328;531;522;533 -226;'800;Uganda;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;65;65;147;51;22;2053;4647;4421;2899;2899;207;5817;8005;7306;7306;229;4493;4994;78;13173 -226;'800;Uganda;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;11;11;28;38;73;1293;1955;1808;1200;1200;152;1700;2229;1934;1934;143;932;760;13;1931 -226;'800;Uganda;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;403;403;2009;721;1076;27;767;477;347;347;0;233;5;0;0;0;173;6;7;7 -226;'800;Uganda;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;66;696;386;668;16;448;326;243;243;0;26;1;0;0;0;175;3;2;2 -226;'800;Uganda;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;14;2;2;2;11;11;11;11;0;0;0;6;1;6;6;47;47 -226;'800;Uganda;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;14;8;8;8;14;14;14;14;0;0;0;1;0;1;1;10;10 -226;'800;Uganda;1874;Fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15000;35000;45000;45000;45000;45000;45000;70000 -226;'800;Uganda;1874;Fibreboard;5616;Import quantity;m3;100;200;200;900;500;842;527;1264;1053;1053;9477;527;2106;2106;1158;105;105;105;105;105;105;105;105;105;105;19;3;4;0;0;0;310;61;43;28;28;51;52;1;1;1;1;2501;5378;5378;2649;1053;1930;747;2555;3299;7876;7876;4524;6335;5150;1094;1920;1551;1553;1806;1403;1617 -226;'800;Uganda;1874;Fibreboard;5622;Import value;1000 USD;13;23;27;101;73;96;108;137;110;110;1475;80;397;397;377;96;96;96;96;96;96;96;96;96;96;5;1;6;0;0;0;90;19;11;14;14;25;25;0;0;0;0;565;923;923;632;775;819;426;1066;1638;3979;3979;2004;1890;1400;540;908;435;392;644;683;786 -226;'800;Uganda;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;243;265;272;43;469;545;687;687;80;718;11506;31204;40083;31203;23741;27424;36284;62055 -226;'800;Uganda;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;60;60;32;566;608;756;756;47;360;5476;11108;15331;12625;9223;9665;12385;18573 -226;'800;Uganda;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;0;0;0;0;441;621;621;395;540;124;21;120;84;43;43;158;174;84;13;136;17;0;10;28;28 -226;'800;Uganda;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;0;0;0;0;215;288;288;272;436;54;18;64;37;38;38;85;67;48;13;97;16;0;14;49;49 -226;'800;Uganda;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;27;27;12;198;198;198;198;6;0;0;0;0;0;0;0;27;1623 -226;'800;Uganda;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;24;24;3;337;337;337;337;6;0;0;0;0;0;0;0;10;408 -226;'800;Uganda;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15000;35000;45000;45000;45000;45000;45000;70000 -226;'800;Uganda;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;28;28;0;0;0;0;91;694;694;747;279;1328;570;1683;2697;7321;7321;4122;5810;4929;784;1575;1126;880;1344;1065;1502 -226;'800;Uganda;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;14;0;0;0;0;47;119;119;145;225;572;307;762;1447;3784;3784;1794;1712;1328;334;692;364;312;554;596;727 -226;'800;Uganda;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;6;113;346;326;326;72;718;11506;31127;40050;31203;23718;27401;36252;60427 -226;'800;Uganda;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;10;84;270;278;278;41;360;5476;11055;15315;12625;9219;9661;12374;18164 -226;'800;Uganda;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;1;1;1;1;1;1969;4063;4063;1507;234;478;156;752;518;512;512;244;351;137;297;209;408;673;452;310;87 -226;'800;Uganda;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;303;516;516;215;114;193;101;240;154;157;157;125;111;24;193;119;55;80;76;38;10 -226;'800;Uganda;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;238;238;238;25;158;1;163;163;2;0;0;77;33;0;23;23;5;5 -226;'800;Uganda;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;36;36;19;145;1;141;141;0;0;0;53;16;0;4;4;1;1 -226;'800;Uganda;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;100;200;200;900;500;842;527;1264;1053;1053;9477;527;2106;2106;1158;105;105;105;105;105;105;105;105;105;105;19;3;4;0;0;0;310;61;43;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -226;'800;Uganda;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;13;23;27;101;73;96;108;137;110;110;1475;80;397;397;377;96;96;96;96;96;96;96;96;96;96;5;1;6;0;0;0;90;19;11;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -226;'800;Uganda;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -226;'800;Uganda;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -226;'800;Uganda;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;24;10;10;10;10;159;414;414;725;536;2090;423;1163;2488;3249;3249;2597;4674;3527;3683;3745;10990;4126;6626;3306;4412 -226;'800;Uganda;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;13;6;6;6;6;150;135;135;327;195;423;195;301;644;801;801;388;644;498;550;611;1830;863;1395;956;2576 -226;'800;Uganda;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;6;6;42;46;312;103;1283;780;1170;1170;882;41;7;356;354;285;13;525;1970;746 -226;'800;Uganda;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;1;1;28;21;139;131;375;281;1651;1651;1241;19;45;70;67;42;20;94;434;157 -226;'800;Uganda;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;24;10;10;10;10;97;178;178;214;224;224;203;216;419;419;419;136;77;63;150;212;273;775;482;344;2318 -226;'800;Uganda;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;13;6;6;6;6;138;109;109;153;158;158;154;143;283;278;278;63;73;41;109;170;201;450;350;301;2182 -226;'800;Uganda;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;45;102;86;74;721;721;668;0;2;12;10;10;10;10;10;0 -226;'800;Uganda;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;89;130;137;115;1222;1222;1168;0;1;22;19;19;19;19;19;1 -226;'800;Uganda;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;10;10;10;10;10;94;175;175;196;206;206;206;219;406;406;406;123;81;67;137;199;275;779;486;348;2418 -226;'800;Uganda;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;6;6;6;136;107;107;138;143;143;143;152;302;297;297;82;95;63;128;189;216;472;372;323;2299 -226;'800;Uganda;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;10;67;67;67;67;67;14;0;0;2;0;0;0;0;0;0 -226;'800;Uganda;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;28;69;69;69;69;69;15;0;0;3;0;0;0;0;0;0 -226;'800;Uganda;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;1;50;74;123;123;123 -226;'800;Uganda;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;0;21;32;78;78;78 -226;'800;Uganda;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;0;0 -226;'800;Uganda;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;0;0;0;0;0 -226;'800;Uganda;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;118;118;118;118;118;118;118;118;118;118;0;49;0;;;;;;; -226;'800;Uganda;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;39;39;39;39;39;39;39;39;39;39;0;47;0;;;;;;; -226;'800;Uganda;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5;0;0;0;;;;;;; -226;'800;Uganda;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;14;14;14;14;0;0;0;;;;;;; -226;'800;Uganda;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;24;42;42;42;42;215;215;215;0;0;0;;;;;;; -226;'800;Uganda;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;20;26;26;26;26;170;170;170;0;0;0;;;;;;; -226;'800;Uganda;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;2;0;0;;;;;;; -226;'800;Uganda;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;11;11;2;0;0;;;;;;; -226;'800;Uganda;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;10;10;10;10;10;73;43;43;50;42;42;42;55;69;69;69;119;28;63;127;194;221;701;359;221;2195 -226;'800;Uganda;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;6;6;6;113;53;53;77;76;76;76;65;71;66;66;60;26;41;99;167;173;418;272;223;2104 -226;'800;Uganda;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;57;57;57;57;8;0;0;0;0;0;0;0;0;0 -226;'800;Uganda;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;41;41;41;41;10;0;0;0;0;0;0;0;0;0 -226;'800;Uganda;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;25;25;25;25;25;23;23;23;23;23;23;23;23;23;23;23;23;23;100 -226;'800;Uganda;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;43;43;43;43;43;43;24;24;24;24;24;24;24;24;24;24;24;24;24;108 -226;'800;Uganda;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;10;10;10;10;10;10;10;10;10;2;2;2;17;44;44;44;96;0;40;103;171;198;678;336;198;2095 -226;'800;Uganda;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;6;6;6;6;6;6;6;5;5;5;13;17;15;15;36;2;17;74;143;149;394;248;199;1996 -226;'800;Uganda;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;57;57;57;57;8;0;0;0;0;0;0;0;0;0 -226;'800;Uganda;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;41;41;41;41;10;0;0;0;0;0;0;0;0;0 -226;'800;Uganda;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;0;0 -226;'800;Uganda;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;0;0 -226;'800;Uganda;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;5;0;;;;;;; -226;'800;Uganda;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;;;;;;; -226;'800;Uganda;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;8;8;15;15;15;15;15;2;2;2;0;0;0;;;;;;; -226;'800;Uganda;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;4;4;28;28;28;28;28;30;27;27;0;0;0;;;;;;; -226;'800;Uganda;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;100 -226;'800;Uganda;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;22;22;22;22;22;22;22;22;22;22;22;22;22;117 -226;'800;Uganda;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4;0;0;0;0;0;0;0;0;0 -226;'800;Uganda;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;0;0;0;0;0;0;0;0;0 -226;'800;Uganda;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;0;0;0;0;3;3;3;22;22;22;1;1;17;17;17;17;0;0;17;17;2;0;0;0;0 -226;'800;Uganda;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;0;0;0;0;2;2;2;17;17;17;13;13;3;3;3;3;0;0;3;3;7;0;0;0;0 -226;'800;Uganda;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;39;23;11;658;658;658;0;2;10;10;10;10;10;10;0 -226;'800;Uganda;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;64;71;49;1156;1156;1156;0;1;19;19;19;19;19;19;1 -226;'800;Uganda;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;6;6;29;4;55;4;4;12;4;4;4;2;2;2;2;0;6;46;46;46 -226;'800;Uganda;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;5;5;17;4;18;2;2;1;7;7;7;0;0;0;0;0;4;46;46;46 -226;'800;Uganda;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;62;236;236;511;312;1866;220;947;2069;2830;2830;2461;4597;3464;3533;3533;10717;3351;6144;2962;2094 -226;'800;Uganda;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;12;26;26;174;37;265;41;158;361;523;523;325;571;457;441;441;1629;413;1045;655;394 -226;'800;Uganda;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;6;6;42;41;267;1;1197;706;449;449;214;41;5;344;344;275;3;515;1960;746 -226;'800;Uganda;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;1;1;28;7;50;1;238;166;429;429;73;19;44;48;48;23;1;75;415;156 -226;'800;Uganda;1876;Paper and paperboard;5510;Production;t;;;;;;;;;;500;1300;1500;1300;1300;1300;1200;1200;1200;1200;1200;1200;200;200;200;2000;2000;2000;2000;2000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -226;'800;Uganda;1876;Paper and paperboard;5610;Import quantity;t;1700;1900;2300;2400;3600;5000;6600;9500;11900;10500;12900;8800;3700;4900;3000;2900;2900;2900;2900;2900;2900;600;600;600;1000;1520;3644;5168;1288;1677;1677;1090;2647;2617;3668;1700;7196;6468;23401;23401;23401;19965;36277;53667;53667;43930;54031;67412;35787;71909;82599;83723;83723;87800;101093;105084;126581;139250;144409;111373;98885;47773;101947 -226;'800;Uganda;1876;Paper and paperboard;5622;Import value;1000 USD;472;502;624;751;1057;1437;1884;4409;5142;2812;3636;2744;2011;4377;3008;3230;3230;3230;3231;3232;3233;640;640;640;930;1565;3561;4529;1391;1971;1971;995;1912;1862;3162;900;4301;4148;17071;17071;17071;13835;26677;36447;36447;33218;42082;62910;22953;59070;74187;64919;64919;68911;72266;73573;93139;118749;120168;79017;79450;56938;81526 -226;'800;Uganda;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;70;70;70;70;70;275;1247;1247;1326;1075;1247;3643;4932;4749;1756;1756;2371;4884;2607;3581;4303;5461;5338;6536;583;2018 -226;'800;Uganda;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;49;49;49;49;49;320;827;827;1071;991;1289;2083;3189;3684;1507;1507;1821;10520;2796;2741;3583;5120;4243;5719;538;2004 -226;'800;Uganda;2042;Graphic papers;5610;Import quantity;t;1200;1400;1700;1700;2600;3000;3200;3300;3900;3600;3500;1900;500;1300;900;700;700;700;700;700;700;200;200;200;600;1120;3244;4768;888;1277;1277;733;2303;2526;3454;1100;6596;5929;14100;14100;14100;19716;24403;39641;39641;33166;35934;46271;19330;44249;52041;48717;48717;52578;57131;61003;68193;72419;81073;54391;41847;18109;41873 -226;'800;Uganda;2042;Graphic papers;5622;Import value;1000 USD;308;338;420;475;684;820;903;2134;2024;971;940;468;252;959;872;709;709;709;710;711;712;130;130;130;420;1055;3051;4019;881;1461;1461;627;1617;1762;2951;510;3911;3666;10372;10372;10372;13614;18373;26676;26676;25433;31131;45785;12825;37294;45816;41016;41016;42561;43503;45990;54103;64649;73581;40708;38698;22417;31624 -226;'800;Uganda;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101;519;519;701;415;992;206;1114;2847;1048;1048;748;1093;1417;959;1011;2209;3015;3241;196;1071 -226;'800;Uganda;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;135;371;371;659;513;980;183;1063;2443;948;948;516;1015;1829;738;979;2742;2585;3298;260;1456 -226;'800;Uganda;1671;Newsprint;5610;Import quantity;t;500;500;700;600;900;900;900;1100;800;1000;1300;1100;200;600;500;200;200;200;200;200;200;100;100;100;200;353;545;270;56;1;1;;61;61;2482;1000;2277;2593;6800;6800;6800;6800;5402;16487;16487;10285;14737;18745;10515;16462;17712;18214;18214;13371;14320;14708;17098;16579;17425;12579;5305;365;7530 -226;'800;Uganda;1671;Newsprint;5622;Import value;1000 USD;78;78;120;112;151;157;160;186;135;179;224;208;81;318;343;172;172;172;173;174;175;50;50;50;100;214;328;154;29;3;3;;26;26;1774;395;859;1059;4732;4732;4732;4732;3489;8409;8409;6721;11406;17812;5205;11640;13612;12837;12837;8998;9025;8604;10486;11633;12080;6612;3287;431;5870 -226;'800;Uganda;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;89;89;228;29;17;55;66;936;82;82;184;124;104;8;4;42;51;43;28;28 -226;'800;Uganda;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;42;42;166;48;40;48;97;719;78;78;147;155;146;9;2;59;57;36;22;22 -226;'800;Uganda;1674;Printing and writing papers;5610;Import quantity;t;700;900;1000;1100;1700;2100;2300;2200;3100;2600;2200;800;300;700;400;500;500;500;500;500;500;100;100;100;400;767;2699;4498;832;1276;1276;733;2242;2465;972;100;4319;3336;7300;7300;7300;12916;19001;23154;23154;22881;21197;27526;8815;27787;34329;30503;30503;39207;42811;46295;51095;55840;63648;41812;36542;17744;34343 -226;'800;Uganda;1674;Printing and writing papers;5622;Import value;1000 USD;230;260;300;363;533;663;743;1948;1889;792;716;260;171;641;529;537;537;537;537;537;537;80;80;80;320;841;2723;3865;852;1458;1458;627;1591;1736;1177;115;3052;2607;5640;5640;5640;8882;14884;18267;18267;18712;19725;27973;7620;25654;32204;28179;28179;33563;34478;37386;43617;53016;61501;34096;35411;21986;25754 -226;'800;Uganda;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;430;430;473;386;975;151;1048;1911;966;966;564;969;1313;951;1007;2167;2964;3198;168;1043 -226;'800;Uganda;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108;329;329;493;465;940;135;966;1724;870;870;369;860;1683;729;977;2683;2528;3262;238;1434 -226;'800;Uganda;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;603;1319;1319;1319;410;1139;543;543;2260;256;848;705;1370;1218;1814;1814;1019;138;427;3610;3610;830;516;472;26;715 -226;'800;Uganda;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;442;956;956;956;256;550;428;428;1225;203;728;596;755;698;1248;1248;881;156;373;2886;2886;766;414;454;32;578 -226;'800;Uganda;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;26;26;7;2;1;2;494;1173;397;397;22;20;9;10;10;1;13;10;3;26 -226;'800;Uganda;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;19;19;2;6;5;3;275;623;207;207;14;18;15;12;12;7;18;12;4;20 -226;'800;Uganda;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1739;3806;3806;3806;11830;14824;16097;16097;16031;16578;19613;6928;19361;25321;21387;21387;31108;32551;35078;37383;39741;50203;28777;28360;12021;26426 -226;'800;Uganda;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1430;3093;3093;3093;8200;10550;12698;12698;12640;13918;17461;5921;15789;20883;17170;17170;24716;24460;26404;29575;33702;42103;22265;23484;14084;16074 -226;'800;Uganda;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;181;181;343;323;607;54;374;706;462;462;321;739;1112;878;944;1954;1741;2870;61;1013 -226;'800;Uganda;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;139;139;358;400;587;52;430;1049;455;455;197;502;1285;671;906;2288;1895;2778;70;1185 -226;'800;Uganda;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;994;2175;2175;2175;676;3038;6514;6514;4590;4363;7065;1182;7056;7790;7302;7302;7080;10122;10790;10102;12489;12615;12519;7710;5697;7202 -226;'800;Uganda;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;735;1591;1591;1591;426;3784;5141;5141;4847;5604;9784;1103;9110;10623;9761;9761;7966;9862;10609;11156;16428;18632;11417;11473;7870;9102 -226;'800;Uganda;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;223;223;123;61;367;95;180;32;107;107;221;210;192;63;53;212;1210;318;104;4 -226;'800;Uganda;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;171;171;133;59;348;80;261;52;208;208;158;340;383;46;59;388;615;472;164;229 -226;'800;Uganda;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;;500;1300;1500;1300;1300;1300;1200;1200;1200;1200;1200;1200;200;200;200;2000;2000;2000;2000;2000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -226;'800;Uganda;1675;Other paper and paperboard;5610;Import quantity;t;500;500;600;700;1000;2000;3400;6200;8000;6900;9400;6900;3200;3600;2100;2200;2200;2200;2200;2200;2200;400;400;400;400;400;400;400;400;400;400;357;344;91;214;600;600;539;9301;9301;9301;249;11874;14026;14026;10764;18097;21141;16457;27660;30558;35006;35006;35222;43962;44081;58388;66831;63336;56982;57038;29664;60074 -226;'800;Uganda;1675;Other paper and paperboard;5622;Import value;1000 USD;164;164;204;276;373;617;981;2275;3118;1841;2696;2276;1759;3418;2136;2521;2521;2521;2521;2521;2521;510;510;510;510;510;510;510;510;510;510;368;295;100;211;390;390;482;6699;6699;6699;221;8304;9771;9771;7785;10951;17125;10128;21776;28371;23903;23903;26350;28763;27583;39036;54100;46587;38309;40752;34521;49902 -226;'800;Uganda;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;70;70;70;70;70;174;728;728;625;660;255;3437;3818;1902;708;708;1623;3791;1190;2622;3292;3252;2323;3295;387;947 -226;'800;Uganda;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;49;49;49;49;49;185;456;456;412;478;309;1900;2126;1241;559;559;1305;9505;967;2003;2604;2378;1658;2421;278;548 -226;'800;Uganda;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;300;300;300;300;300;300;300;300;300;100;100;100;100;100;100;100;100;100;100;100;0;0;0;0;0;0;1700;1700;1700;1;1283;1222;1222;1204;1210;1242;712;1284;1087;1433;1433;1585;1776;2150;2006;2400;3347;2654;3416;707;1174 -226;'800;Uganda;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;253;270;270;270;270;270;270;270;270;100;100;100;100;100;100;100;100;100;100;100;0;0;0;0;0;0;1218;1218;1218;2;1214;1343;1343;1082;1273;1565;757;1443;1423;1755;1755;1957;2144;2222;2376;2857;4193;3055;3971;1444;1892 -226;'800;Uganda;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;25;145;10;229;1196;455;455;161;222;460;1333;1822;710;14;78;147;66 -226;'800;Uganda;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;26;191;6;248;721;392;392;109;253;417;1086;1590;583;27;90;166;71 -226;'800;Uganda;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7301;7301;7301;240;9358;11320;11320;9077;14052;17478;15122;23422;27533;33213;33213;32425;42069;41677;56062;64040;59561;53937;53228;28856;58844 -226;'800;Uganda;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4862;4862;4862;177;5547;7018;7018;5561;8072;13115;7816;15414;19483;21854;21854;22346;26417;24934;36006;50347;41494;34331;35918;32739;47444 -226;'800;Uganda;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;139;698;698;609;587;61;3384;2248;184;158;158;389;49;687;1138;1259;2293;2076;3072;238;881 -226;'800;Uganda;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113;422;422;393;399;74;1851;1051;174;123;123;278;53;520;585;529;1230;1050;1828;98;473 -226;'800;Uganda;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;400;400;500;600;800;1600;2700;5000;6400;4800;6400;5000;1500;1600;300;400;400;400;400;400;400;100;100;100;100;100;100;100;100;100;100;100;0;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;; -226;'800;Uganda;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;90;90;112;152;205;339;540;1251;1729;1019;1572;1215;538;775;470;855;855;855;855;855;855;220;220;220;220;220;220;220;220;220;220;220;0;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;; -226;'800;Uganda;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -226;'800;Uganda;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -226;'800;Uganda;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;183;183;183;6;4576;4574;4574;5788;8262;12748;12261;20300;21573;28800;28800;25778;34401;33294;42851;45871;42780;37202;42780;20287;47025 -226;'800;Uganda;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;82;82;3;2449;2836;2836;3389;4737;8983;4803;12771;15104;18365;18365;16940;20462;18644;25837;33944;25785;20287;25785;20250;31289 -226;'800;Uganda;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126;83;83;94;1;4;4;26;26;8;8;8;2;232;491;323;1580;2043;2710;6;611 -226;'800;Uganda;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94;50;50;78;5;3;3;17;17;4;4;4;3;123;253;208;927;1031;1500;4;377 -226;'800;Uganda;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;791;791;791;26;136;700;700;270;1032;927;950;484;662;1161;1161;963;2111;2385;6990;6575;5829;5157;4272;2374;1836 -226;'800;Uganda;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;632;632;632;23;121;435;435;401;914;768;1068;351;484;576;576;848;1642;1898;5214;5814;5984;4495;5238;4312;5195 -226;'800;Uganda;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;27;27;27;1;44;458;4;30;48;48;43;10;2;19;357;134;4;119;45;0 -226;'800;Uganda;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;17;17;17;9;33;321;2;48;39;39;35;2;2;78;84;96;5;187;53;0 -226;'800;Uganda;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6327;6327;6327;208;2432;4473;4473;3005;4753;3801;1909;2284;5111;3021;3021;5540;5475;5960;6183;11593;10951;11578;6120;6139;9975 -226;'800;Uganda;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4148;4148;4148;151;1895;2772;2772;1751;2377;3362;1943;2004;3830;2743;2743;4412;4225;4371;4921;10587;9717;9538;4849;8131;10935 -226;'800;Uganda;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;119;119;19;116;10;748;44;127;62;62;298;34;450;106;57;57;4;93;10;93 -226;'800;Uganda;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;72;72;15;102;29;535;40;108;54;54;213;45;391;97;80;50;3;72;11;66 -226;'800;Uganda;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2214;1573;1573;14;5;2;2;354;187;231;231;144;82;38;38;1;1;0;56;56;8 -226;'800;Uganda;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1082;975;975;20;44;2;2;288;65;170;170;146;88;21;34;2;8;11;46;46;25 -226;'800;Uganda;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;469;469;469;469;3;2174;2174;1;40;40;40;3;3;522;522;522;25;150;177;177 -226;'800;Uganda;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;283;283;283;283;9;992;992;1;26;26;26;3;4;157;157;157;11;69;30;30 -226;'800;Uganda;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -226;'800;Uganda;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;100;100;100;100;200;400;700;1200;1600;2100;3000;1900;1400;1700;1500;1500;1500;1500;1500;1500;1500;200;200;200;200;200;200;200;200;200;200;157;344;91;214;600;600;539;300;300;300;8;1233;1484;1484;483;2835;2421;623;2954;1938;360;360;1212;117;254;320;391;428;391;394;101;56 -226;'800;Uganda;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;74;74;92;124;168;278;441;1024;1389;822;1124;1061;968;2373;1396;1396;1396;1396;1396;1396;1396;190;190;190;190;190;190;190;190;190;190;48;295;100;211;390;390;482;619;619;619;42;1543;1410;1410;1142;1606;2445;1555;4919;7465;294;294;2047;202;427;654;896;900;923;863;338;566 -226;'800;Uganda;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;70;70;70;70;24;19;19;5;48;49;43;1341;522;95;95;1073;3520;43;151;211;249;233;145;2;0 -226;'800;Uganda;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;49;49;49;49;59;21;21;6;53;44;43;827;346;44;44;918;9199;30;332;485;565;581;503;14;4 -226;'800;Uganda;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11094;10637;9825;7495;7663;13116;14012 -226;'800;Uganda;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1903;909;1416;857;1210;951;1440 -226;'800;Uganda;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;19;43;59;13;124;94 -226;'800;Uganda;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;31;25;32;0;0;18 -226;'800;Uganda;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;9;0;32;0;107;33 -226;'800;Uganda;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;0;0;0;0 -226;'800;Uganda;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;10;43;27;13;17;61 -226;'800;Uganda;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;18;32;0;0;18 -226;'800;Uganda;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;122;228;127;145;74;78;65 -226;'800;Uganda;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;61;348;281;604;447;410 -226;'800;Uganda;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;436;351;285;309;347;176 -226;'800;Uganda;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;45;41;6;13;30;28 -226;'800;Uganda;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;733;608;410;481;297;978;2492 -226;'800;Uganda;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;354;128;222;140;71;62;41 -226;'800;Uganda;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23 -226;'800;Uganda;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54 -226;'800;Uganda;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9759;9185;8455;6396;6843;11016;10869 -226;'800;Uganda;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;530;481;676;394;504;402;217 -226;'800;Uganda;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;290;19;5;59;55 -226;'800;Uganda;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -226;'800;Uganda;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;105;149;110;122;514;261 -226;'800;Uganda;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;908;163;104;4;18;10;726 -226;'800;Uganda;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40609;47645;38239;26692;29576;44732;42668 -226;'800;Uganda;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13788;17044;14364;12893;16591;16439;4985 -226;'800;Uganda;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110;60;119;83;22;32;1 -226;'800;Uganda;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;2;8;10;10;1;1 -226;'800;Uganda;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4300;5550;6471;5990;7685;18676;16302 -226;'800;Uganda;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;165;164;115;116;30;29;5 -226;'800;Uganda;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3136;2564;2951;2277;2678;3739;4044 -226;'800;Uganda;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;460;131;190;98;186;106;0 -226;'800;Uganda;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26112;33121;21870;12831;12880;13970;13706 -226;'800;Uganda;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5496;7988;5468;5459;7667;6629;429 -226;'800;Uganda;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6951;6350;6828;5511;6311;8315;8615 -226;'800;Uganda;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7661;8759;8583;7210;8698;9674;4550 -230;'804;Ukraine;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1244862.97;1455917;1371857;1279310;1380812;944210;1022607 -230;'804;Ukraine;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1830397.88;2174076;2045928;2033086;2511139;2414934;2130791 -230;'804;Ukraine;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1971;6867;6867;37493;298427;278197;246493;240215;250125;358399;464057;644003;576370;731269;839132;1111422;1112588;1074789;1157742;1345354;1049079;1178362;1137198;1126898;1116143;875624.97;1015823;954952;889774;963778;681640;705983 -230;'804;Ukraine;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6396;9519;9519;11685;106083;116390;123434;158124;196086;355971;421421;519162;644016;684785;773288;1027695;1033445;970942;991306;1246478;1015691;1339167;1365721;1404568;1305288;1165816.88;1397995;1267762;1183172;1475789;1380974;1112278 -230;'804;Ukraine;1861;Roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6318333;6252000;6053000;8453000;7920330;9859330;9889000;12280100;13753900;14861800;14606300;15848600;16884300;16884300;14221400;16145600;17510300;17506700;18021900;18337000;18337000;18337000;18915000;19695700;17886600;16773000;16667000;16904000;15252000 -230;'804;Ukraine;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;470300;315200;160100;163986;57757;57757;111950;89098;116172;135537;170218;173273;133455;133455;133455;19041;22738;18940;14200;14200;14200;14200;9599;23211;4840;7520;52623;75259;4500 -230;'804;Ukraine;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;30024;30100;14870;15068;8628;8628;5069;4256;6478;8130;10132;10820;12898;12898;12898;2083;2805;1611;1381;1381;1381;1381;1041;3239;977;1180;8208;11794;1656 -230;'804;Ukraine;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;693;1100;1100;28000;356000;479000;507927;704969;704969;1091195;1763766;2136815;2977198;2670147;2699509;3396444;3396444;3396444;3670600;4151865;4140300;4518460;5229900;5028300;3888100;1495100;1046300;1043030;166516;437589;357478;302100 -230;'804;Ukraine;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;132;222;222;2389;14320;20946;21177;32804;32804;54638;64602;90736;133861;146281;159160;194235;194235;194235;219526;283356;255823;296778;304847;296329;160383;51167;42511;42328;11757;32011;37697;42503 -230;'804;Ukraine;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4060333;4094000;4195000;5195000;5262330;5661330;5679000;5855100;6464700;7138940;7119240;7976018;8557189;8557189;9887036;11009456;12032788;12193200;13127000;11064000;11064000;11064000;11818000;12761600;11265400;10923529;10223000;10087000;8913000 -230;'804;Ukraine;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1100;367;0;0;400;400;400 -230;'804;Ukraine;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;25;0;0;53;53;53 -230;'804;Ukraine;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;635100;468300;465000;34834;199120;149200;119700 -230;'804;Ukraine;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18590;16295;16104;2236;11264;11278;13996 -230;'804;Ukraine;1863;Roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2258000;2158000;1858000;3258000;2658000;4198000;4210000;6425000;7289200;7722860;7487060;7872582;8327111;8327111;4334364;5136144;5477512;5313500;4894900;7273000;7273000;7273000;7097000;6934100;6621200;5849471;6444000;6817000;6339000 -230;'804;Ukraine;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8499;22844;4840;7520;52223;74859;4100 -230;'804;Ukraine;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;966;3214;977;1180;8155;11741;1603 -230;'804;Ukraine;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;860000;578000;578030;131682;238469;208278;182400 -230;'804;Ukraine;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32577;26216;26224;9521;20747;26419;28507 -230;'804;Ukraine;1864;Wood fuel;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1898000;1876000;1810000;1810000;1766000;4058000;4070000;7423000;8118000;8396100;8145600;8941900;9519900;9519900;8039800;8609600;9520900;9655900;9919800;10174000;10174000;10174000;11618000;10719700;8583200;7777000;8452000;8689000;8612000 -230;'804;Ukraine;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;200;100;3986;1057;1057;0;28;22;27;98;743;55;55;55;541;471;290;200;200;200;200;309;94;0;95;532;133;0 -230;'804;Ukraine;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;0;0;198;53;53;0;3;2;3;4;33;2;2;2;37;37;24;18;18;18;18;23;7;0;14;43;14;6 -230;'804;Ukraine;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7900;49000;14000;42927;65969;65969;34265;12006;298545;375468;281357;497759;814244;814244;814244;738400;1143785;1120000;1064560;1776000;2052000;1814000;1483000;1043000;1043000;166374;437189;357078;301700 -230;'804;Ukraine;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;348;1050;296;527;810;810;411;157;3893;4896;10129;17919;29313;29313;29313;38102;48830;43282;59236;67305;58787;54474;50287;42320;42320;11741;31959;37645;42451 -230;'804;Ukraine;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;949000;938000;905000;905000;883000;1623200;1628000;2968500;3247200;3358440;3258240;3576318;3807489;3807489;5589449;5870764;6492162;6584200;6745500;4446000;4446000;4446000;5973000;6048400;3950600;3579529;3670000;3534000;3763000 -230;'804;Ukraine;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -230;'804;Ukraine;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -230;'804;Ukraine;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;623000;465000;465000;34692;198720;148800;119300 -230;'804;Ukraine;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17710;16104;16104;2220;11212;11226;13944 -230;'804;Ukraine;1628;Wood fuel, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;949000;938000;905000;905000;883000;2434800;2442000;4454500;4870800;5037660;4887360;5365582;5712411;5712411;2450351;2738836;3028738;3071700;3174300;5728000;5728000;5728000;5645000;4671300;4632600;4197471;4782000;5155000;4849000 -230;'804;Ukraine;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;309;94;0;95;532;133;0 -230;'804;Ukraine;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;7;0;14;43;14;6 -230;'804;Ukraine;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;860000;578000;578000;131682;238469;208278;182400 -230;'804;Ukraine;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32577;26216;26216;9521;20747;26419;28507 -230;'804;Ukraine;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;200;100;3986;1057;1057;0;28;22;27;98;743;55;55;55;541;471;290;200;200;200;200;;;;;;; -230;'804;Ukraine;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;0;0;198;53;53;0;3;2;3;4;33;2;2;2;37;37;24;18;18;18;18;;;;;;; -230;'804;Ukraine;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7900;49000;14000;42927;65969;65969;34265;12006;298545;375468;281357;497759;814244;814244;814244;738400;1143785;1120000;1064560;1776000;2052000;1814000;;;;;;; -230;'804;Ukraine;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;348;1050;296;527;810;810;411;157;3893;4896;10129;17919;29313;29313;29313;38102;48830;43282;59236;67305;58787;54474;;;;;;; -230;'804;Ukraine;1865;Industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4420333;4376000;4243000;6643000;6154330;5801330;5819000;4857100;5635900;6465700;6460700;6906700;7364400;7364400;6181600;7536000;7989400;7850800;8102100;8163000;8163000;8163000;7297000;8976000;9303400;8996000;8215000;8215000;6640000 -230;'804;Ukraine;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;470000;315000;160000;160000;56700;56700;111950;89070;116150;135510;170120;172530;133400;133400;133400;18500;22267;18650;14000;14000;14000;14000;9290;23117;4840;7425;52091;75126;4500 -230;'804;Ukraine;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;30017;30100;14870;14870;8575;8575;5069;4253;6476;8127;10128;10787;12896;12896;12896;2046;2768;1587;1363;1363;1363;1363;1018;3232;977;1166;8165;11780;1650 -230;'804;Ukraine;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;693;1100;1100;20100;307000;465000;465000;639000;639000;1056930;1751760;1838270;2601730;2388790;2201750;2582200;2582200;2582200;2932200;3008080;3020300;3453900;3453900;2976300;2074100;12100;3300;30;142;400;400;400 -230;'804;Ukraine;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;132;222;222;2041;13270;20650;20650;31994;31994;54227;64445;86843;128965;136152;141241;164922;164922;164922;181424;234526;212541;237542;237542;237542;105909;880;191;8;16;52;52;52 -230;'804;Ukraine;1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3111333;3156000;3290000;4290000;4379330;4038130;4051000;2886600;3217500;3780500;3861000;4399700;4749700;4749700;4297587;5138692;5540626;5609000;6381500;6618000;6618000;6618000;5845000;6713200;7314800;7344000;6553000;6553000;5150000 -230;'804;Ukraine;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;270000;180000;90000;90000;30000;30000;9130;6360;8770;5460;10400;14370;3700;3700;3700;600;369;5550;2600;2600;2600;2600;1100;367;0;0;400;400;400 -230;'804;Ukraine;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;10100;4870;4870;4870;4870;666;394;708;414;707;1261;556;556;556;83;21;288;89;89;89;89;75;25;0;0;53;53;53 -230;'804;Ukraine;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;0;0;6300;60000;85000;85000;259000;259000;624410;824520;984610;1359310;1176680;1038710;1348000;1348000;1348000;2143900;2217278;2270600;3077600;3077600;2600000;2074000;12100;3300;0;142;400;400;400 -230;'804;Ukraine;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;3670;4850;4850;16194;16194;25890;31504;39201;62324;65943;72658;94280;94280;94280;136670;183397;169088;210517;210517;210517;105903;880;191;0;16;52;52;52 -230;'804;Ukraine;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;270000;180000;90000;90000;30000;30000;9130;6360;8770;5460;10400;14370;3700;3700;3700;600;369;5550;2600;2600;2600;2600;1100;367;0;0;400;400;400 -230;'804;Ukraine;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;10100;4870;4870;4870;4870;666;394;708;414;707;1261;556;556;556;83;21;288;89;89;89;89;75;25;0;0;53;53;53 -230;'804;Ukraine;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;0;0;6300;60000;85000;85000;259000;259000;624410;824520;984610;1359310;1176680;1038710;1348000;1348000;1348000;2143900;2217278;2270600;3077600;3077600;2600000;2074000;12100;3300;0;142;400;400;400 -230;'804;Ukraine;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;3670;4850;4850;16194;16194;25890;31504;39201;62324;65943;72658;94280;94280;94280;136670;183397;169088;210517;210517;210517;105903;880;191;0;16;52;52;52 -230;'804;Ukraine;1867;Industrial roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1309000;1220000;953000;2353000;1775000;1763200;1768000;1970500;2418400;2685200;2599700;2507000;2614700;2614700;1884013;2397308;2448774;2241800;1720600;1545000;1545000;1545000;1452000;2262800;1988600;1652000;1662000;1662000;1490000 -230;'804;Ukraine;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200000;135000;70000;70000;26700;26700;102820;82710;107380;130050;159720;158160;129700;129700;129700;17900;21898;13100;11400;11400;11400;11400;8190;22750;4840;7425;51691;74726;4100 -230;'804;Ukraine;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30000;20000;10000;10000;3705;3705;4403;3859;5768;7713;9421;9526;12340;12340;12340;1963;2747;1299;1274;1274;1274;1274;943;3207;977;1166;8112;11727;1597 -230;'804;Ukraine;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;613;1100;1100;13800;247000;380000;380000;380000;380000;432520;927240;853660;1242420;1212110;1163040;1234200;1234200;1234200;788300;790802;749700;376300;376300;376300;100;0;0;30;0;0;0;0 -230;'804;Ukraine;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;123;213;213;2032;9600;15800;15800;15800;15800;28337;32941;47642;66641;70209;68583;70642;70642;70642;44754;51129;43453;27025;27025;27025;6;0;0;8;0;0;0;0 -230;'804;Ukraine;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;33;33;40;80;120;0;0;20;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -230;'804;Ukraine;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;5;5;6;7;10;0;0;4;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -230;'804;Ukraine;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120;230;10;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -230;'804;Ukraine;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;24;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -230;'804;Ukraine;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200000;135000;70000;70000;26667;26667;102780;82630;107260;130050;159720;158140;129700;129700;129700;17900;21898;13100;11400;11400;11400;11400;8190;22750;4840;7425;51691;74726;4100 -230;'804;Ukraine;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30000;20000;10000;10000;3700;3700;4397;3852;5758;7713;9421;9522;12340;12340;12340;1963;2747;1299;1274;1274;1274;1274;943;3207;977;1166;8112;11727;1597 -230;'804;Ukraine;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;613;1100;1100;13800;247000;380000;380000;380000;380000;432400;927010;853650;1242420;1212110;1163040;1234200;1234200;1234200;788300;790802;749700;376300;376300;376300;100;0;0;30;0;0;0;0 -230;'804;Ukraine;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;123;213;213;2032;9600;15800;15800;15800;15800;28328;32917;47641;66641;70209;68583;70642;70642;70642;44754;51129;43453;27025;27025;27025;6;0;0;8;0;0;0;0 -230;'804;Ukraine;1868;Sawlogs and veneer logs;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3111333;3156000;3290000;3290000;3379330;3379330;3390000;3325300;3892300;4570500;4631600;4890500;5337200;5337200;4801100;5734900;6300000;6306000;6644800;7053000;7053000;7053000;5909000;6021200;6237400;6027259;5506288;5506288;4452801 -230;'804;Ukraine;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3111333;3156000;3290000;3290000;3379330;3379330;3390000;2592200;2785700;3331700;3352000;3302400;3645000;3645000;3468200;4150000;4544700;4637200;5416300;5774000;5774000;5774000;4719000;4457900;4880800;4900284;4372486;4372486;3436338 -230;'804;Ukraine;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;733100;1106600;1238800;1279600;1588100;1692200;1692200;1332900;1584900;1755300;1668800;1228500;1279000;1279000;1279000;1190000;1563300;1356600;1126975;1133802;1133802;1016463 -230;'804;Ukraine;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2400000;2000000;1647000;1652000;509800;792600;954200;953100;1000100;1059400;1059400;736700;1101400;1117700;1025900;986100;723000;723000;723000;762000;877800;263100;250047;230810;230810;188919 -230;'804;Ukraine;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000000;1000000;658800;661000;294400;431800;448800;509000;533200;553100;553100;442600;604600;682100;686900;706100;525000;525000;525000;573000;699800;181700;182425;162781;162781;127929 -230;'804;Ukraine;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1400000;1000000;988200;991000;215400;360800;505400;444100;466900;506300;506300;294100;496800;435600;339000;280000;198000;198000;198000;189000;178000;81400;67622;68029;68029;60990 -230;'804;Ukraine;1871;Other industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1309000;1220000;953000;953000;775000;775000;777000;1022000;951000;941000;876000;1016100;967800;967800;643800;699700;571700;518900;471200;387000;387000;387000;626000;2077000;2802900;2718694;2477902;2477902;1998280 -230;'804;Ukraine;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;564100;551600;551600;386787;384092;313826;284900;259100;319000;319000;319000;553000;1555500;2252300;2261291;2017733;2017733;1585733 -230;'804;Ukraine;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1309000;1220000;953000;953000;775000;775000;777000;1022000;951000;941000;876000;452000;416200;416200;257013;315608;257874;234000;212100;68000;68000;68000;73000;521500;550600;457403;460169;460169;412547 -230;'804;Ukraine;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7000;6000;6000;9000;9000;9000;25000;19000;38000;46000;50000;58000;58000;120000;120000;100000;100000;100000;110000;100000;100000;179000;177000;173000;165000;54000;124000;124000 -230;'804;Ukraine;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;526;500;500;0;0;0;1963;499;26;70;60;230;20;380;2650;100;410;291;324;377;620;1350;1350;1350;1350;1000;2000;1868;1973;2000;1100;1000 -230;'804;Ukraine;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;129;128;128;0;0;0;609;109;5;45;13;100;73;190;955;382;573;493;679;614;767;1088;1088;1088;1088;1325;2082;2290;2374;2326;1468;1580 -230;'804;Ukraine;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;308;100;100;0;0;0;117;556;1691;8810;16370;12830;32360;41590;43730;53200;53000;77885;80715;83164;82240;89110;96916;89110;89110;174000;174000;155698;151838;160000;125500;121600 -230;'804;Ukraine;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126;47;47;0;0;0;21;95;244;1537;3189;6509;8876;12343;14824;20202;23927;29912;30506;36479;34751;41145;38549;41145;41145;59322;70780;66267;69199;73643;71203;74463 -230;'804;Ukraine;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1624000;1540000;1530000;1434000;1390000;1439600;787800;790800;784800;831800;831800;1171800;1102800;1140800;1372200;1376000;1376000;1376000;1376000;1748800;2090800;1889800;1842800;1625800;1453800;1453800 -230;'804;Ukraine;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2500;2500;2500;1256;1100;1180;970;1640;41790;3800;3800;3800;5373;650;130;590;590;590;590;274;740;104;68;30000;8241;68 -230;'804;Ukraine;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;200;83;83;66;110;153;402;313;313;313;301;303;87;301;301;301;301;100.97;127;79;52;1583;451;122 -230;'804;Ukraine;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;10305;5970;15610;14180;28040;38380;39700;39700;39700;429987;505265;729025;731470;731470;731470;731470;1039560;1068310;818667;293090;363859;291214;299024 -230;'804;Ukraine;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;129;149;290;289;355;1475;2191;2191;2191;27700;37559;40622;47905;47905;47905;47905;62330.85;68803;56090;14537;17466;14378;15187 -230;'804;Ukraine;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;812000;770000;765000;717000;695000;719800;68000;71000;65000;112000;112000;452000;383000;421000;560000;560200;560200;560200;560200;933000;1275000;1074000;1027000;810000;638000;638000 -230;'804;Ukraine;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;500;0;0;0;0;176;70;180;70;100;28640;2500;2500;2500;3926;440;130;370;370;370;370;54;520;104;59;29991;8241;68 -230;'804;Ukraine;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;0;0;0;0;0;36;35;46;55;65;183;149;149;149;212;209;86;203;203;203;203;3;29;79;49;1580;449;120 -230;'804;Ukraine;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;100;0;0;0;0;3120;1400;12910;11930;6200;28880;20300;20300;20300;146751;18544;516435;202510;202510;202510;202510;510600;539350;289707;254075;241626;103257;148909 -230;'804;Ukraine;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;0;0;0;0;0;29;25;202;235;186;800;514;514;514;7191;486;23359;9160;9160;9160;9160;23586;30058;17345;13094;13094;6683;9081 -230;'804;Ukraine;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1686000;1396000;1123000;1049000;825000;829000;812000;770000;765000;717000;695000;719800;719800;719800;719800;719800;719800;719800;719800;719800;812200;815800;815800;815800;815800;815800;815800;815800;815800;815800;815800;815800 -230;'804;Ukraine;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;100;100;200;800;2500;2500;2500;2500;1080;1030;1000;900;1540;13150;1300;1300;1300;1447;210;0;220;220;220;220;220;220;0;9;9;0;0 -230;'804;Ukraine;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;5;5;5;70;200;200;200;200;47;48;20;55;88;219;164;164;164;89;94;1;98;98;98;98;97.97;98;0;3;3;2;2 -230;'804;Ukraine;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;319;100;100;0;100;0;0;0;0;7185;4570;2700;2250;21840;9500;19400;19400;19400;283236;486721;212590;528960;528960;528960;528960;528960;528960;528960;39015;122233;187957;150115 -230;'804;Ukraine;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;8;8;8;0;0;0;0;0;100;124;88;54;169;675;1677;1677;1677;20509;37073;17263;38745;38745;38745;38745;38744.85;38745;38745;1443;4372;7695;6106 -230;'804;Ukraine;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -230;'804;Ukraine;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;5;5;4 -230;'804;Ukraine;1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -230;'804;Ukraine;1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -230;'804;Ukraine;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300000;300000;300000;449000;480000;1011000;1164000;1070484;1029484;1048484;981484;1051484 -230;'804;Ukraine;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;433;503;1;47;44;7;24;142;165;5200;6600;200 -230;'804;Ukraine;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111;159;1;6;6;2;5;31;52;771;1066;57 -230;'804;Ukraine;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;299000;246000;217273;227389;264800;348000;498000;695657;639603;612200;587200;676400 -230;'804;Ukraine;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45188;41588;33571;24375;27419;36354;60273;77015;68820;75274;141021;128992 -230;'804;Ukraine;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;210000;210000;210000;359000;390000;480000;552641;519000;478000;497000;430000;500000 -230;'804;Ukraine;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;433;502;0;46;43;6;23;70;2;5000;6500;100 -230;'804;Ukraine;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111;158;0;5;5;1;4;8;0;736;1049;24 -230;'804;Ukraine;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;218000;165000;132273;150389;163800;247000;397000;450796;464709;434500;413500;482100 -230;'804;Ukraine;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32731;29248;18957;15095;16057;24992;48911;55221;54202;56741;103358;93411 -230;'804;Ukraine;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90000;90000;90000;90000;90000;531000;611359;551484;551484;551484;551484;551484 -230;'804;Ukraine;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;1;1;1;1;1;72;163;200;100;100 -230;'804;Ukraine;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;1;1;1;1;1;23;52;35;17;33 -230;'804;Ukraine;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81000;81000;85000;77000;101000;101000;101000;244861;174894;177700;173700;194300 -230;'804;Ukraine;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12457;12340;14614;9280;11362;11362;11362;21794;14618;18533;37663;35581 -230;'804;Ukraine;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4691000;3884000;3123000;2917000;2296000;2306000;2258000;2141000;2127000;1995000;1949600;2019000;2392000;2416000;2385000;2525000;2467000;1753000;1735000;1888000;1824000;1804000;1880000;2700000;3050000;3650000;4100000;3583000;3714000;3173000;3201000;3201000 -230;'804;Ukraine;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;196;1500;1500;2000;167000;167000;167000;249500;249500;56247;32040;24165;31934;18470;8820;10350;12360;12360;7043;14054;10280;6960;6960;6960;10070;29500;45500;31002;21855;35900;6200;4100 -230;'804;Ukraine;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;271;271;271;23900;14300;14300;14300;6636;2362;1160;1498;2004;2738;3260;3822;4795;4795;3688;5643;3788;2868;2184;2497;4873;5711;7272;8194;5746;13763;3943;2981 -230;'804;Ukraine;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19247;30400;30400;31000;203000;243000;243000;349000;349000;853384;1098370;1366012;1546602;1306400;1248510;1480000;1405000;1300000;1375800;1511018;1387000;1455902;1515902;2337000;2675000;3279800;3710800;3287483;3391609;3220778;1814050;1875151 -230;'804;Ukraine;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3819;4290;4290;4290;20100;25720;30711;30711;52539;125973;160817;213847;248013;230743;240195;319731;321755;272666;229360;285506;256371;273021;295164;361213;394116;461062;587384;516644;515589;696229;474152;382204 -230;'804;Ukraine;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2580000;2136000;1718000;1604000;1263000;1268000;1242000;1178000;1170000;1097000;1072129;1110450;1670000;1743000;1771000;1817000;1817000;1299000;1290000;1393000;1351000;1349000;1425000;2200000;2500000;3000000;3500000;3079000;3280000;2689000;2717000;2717000 -230;'804;Ukraine;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96;1000;1000;1000;125000;142000;142000;212500;212500;22360;18220;3150;2610;4640;6110;5500;5500;5500;2598;12121;5760;4070;4070;4070;4070;22000;38000;27316;20245;27300;1600;1700 -230;'804;Ukraine;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;123;123;123;13500;8400;8400;8400;4583;482;393;332;376;647;1016;1402;1402;1402;746;3663;1710;1334;1334;1334;1334;1683;3538;5199;4603;7192;578;856 -230;'804;Ukraine;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17406;19800;19800;20000;150000;178000;178000;257000;257000;649860;847740;1010700;1084530;947940;906100;1070000;1070000;1070000;1005800;1171382;1075000;1162902;1162902;1900000;2200000;2700800;3188800;2810605;2999560;2743900;1516400;1626478 -230;'804;Ukraine;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3266;2048;2048;2048;9900;11540;16531;16531;30799;77879;101593;129887;138825;122373;125513;165138;165138;165138;130415;167888;148543;165238;165238;233720;252729;319209;435995;368349;388942;569582;338289;246040 -230;'804;Ukraine;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2111000;1748000;1405000;1313000;1033000;1038000;1016000;963000;957000;898000;877471;908550;722000;673000;614000;708000;650000;454000;445000;495000;473000;455000;455000;500000;550000;650000;600000;504000;434000;484000;484000;484000 -230;'804;Ukraine;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;500;500;1000;42000;25000;25000;37000;37000;33887;13820;21015;29324;13830;2710;4850;6860;6860;4445;1933;4520;2890;2890;2890;6000;7500;7500;3686;1610;8600;4600;2400 -230;'804;Ukraine;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;148;148;148;10400;5900;5900;5900;2053;1880;767;1166;1628;2091;2244;2420;3393;3393;2942;1980;2078;1534;850;1163;3539;4028;3734;2995;1143;6571;3365;2125 -230;'804;Ukraine;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1841;10600;10600;11000;53000;65000;65000;92000;92000;203524;250630;355312;462072;358460;342410;410000;335000;230000;370000;339636;312000;293000;353000;437000;475000;579000;522000;476878;392049;476878;297650;248673 -230;'804;Ukraine;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;553;2242;2242;2242;10200;14180;14180;14180;21740;48094;59224;83960;109188;108370;114682;154593;156617;107528;98945;117618;107828;107783;129926;127493;141387;141853;151389;148295;126647;126647;135863;136164 -230;'804;Ukraine;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92000;48000;30000;36000;31500;26800;34000;42000;53000;67000;63800;75000;61000;66000;71000;85000;85000;56000;77000;92700;109990;109990;150000;109990;109990;204800;217000;216000;208000;242000;216000;216000 -230;'804;Ukraine;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;20;20;100;900;500;150;190;190;676;240;494;748;900;2470;3500;3500;3500;2789;3077;2640;3920;3920;3920;3920;6019;9008;8940;8216;11100;8211;4399 -230;'804;Ukraine;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;30;30;30;940;500;323;273;273;679;242;502;744;1271;2630;5589;5589;5589;5821;6087;6085;8989;8989;8989;8989;16342;27843;22173;17790;27910;22606;14796 -230;'804;Ukraine;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;350;300;300;300;2400;4600;2780;4100;4100;3148;4970;8695;13401;23380;85240;75100;75100;75100;51001;52046;82020;66080;142916;66080;66080;191648;191423;174178;173016;174130;158900;125099 -230;'804;Ukraine;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;138;120;120;120;980;1340;1479;1825;1825;4842;7582;13482;20749;26959;38712;62513;62513;62513;58194;66661;73165;82508;94173;82508;82508;175008;198187;197324;205888;283587;319720;209780 -230;'804;Ukraine;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1215000;988000;614000;560000;382000;372000;355000;392000;490000;659000;868300;970000;1239000;1443000;1604000;1944000;1944000;1522000;1751000;1989000;2097300;2167700;1886000;1936000;2267700;2195700;3222700;2889700;2844700;3589700;3419700;3419700 -230;'804;Ukraine;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7647;723;723;8000;48900;76600;90088;109219;109219;249964;423843;661814;556370;593845;659270;672500;672500;480370;476805;595904;624190;826510;698740;698740;698740;601100;673810;767714;756835;756850;209000;187900 -230;'804;Ukraine;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;455;403;403;724;18870;26300;22650;20289;20289;32911;40024;58251;77528;95381;122676;174197;174197;136480;148602;227943;237142;282531;236306;236306;236306;179695;215913;225135;218940;218940;124100;129612 -230;'804;Ukraine;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4277;12200;12200;13000;49400;35800;36369;45256;45256;118353;230665;274802;912993;303507;340760;416200;416200;401361;507731;623238;728950;764120;864470;864470;864470;738025;699905;592266;588639;588650;595300;379600 -230;'804;Ukraine;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2142;3696;3696;3737;9058;6514;9372;10697;10697;25794;32117;42284;62260;72152;85999;131874;131875;112476;128046;184313;214152;204415;200101;200101;200101;148712;170411;160683;155546;155546;235747;188461 -230;'804;Ukraine;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98000;52000;32000;38000;32000;30000;36000;44000;56000;80000;101600;125000;145000;173000;164000;178000;178000;109000;145000;169000;167000;177000;177000;177000;177000;180000;190000;177000;181000;193000;193000;193000 -230;'804;Ukraine;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;300;300;800;3200;1800;1530;1640;1640;31030;27630;90230;40060;26760;33310;53000;53000;16470;24705;36542;36950;50370;50370;50370;50370;49760;63620;61294;39352;39350;18200;9800 -230;'804;Ukraine;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;227;227;227;2070;930;816;453;453;1056;2280;3022;5337;8164;12367;25085;25085;8829;13667;21412;21094;29338;29338;29338;29338;23959;30586;27844;19834;19834;15369;15958 -230;'804;Ukraine;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4217;11200;11200;11000;12800;7900;12970;20750;20750;47870;57480;71040;100980;102230;98340;104400;104400;78456;98021;111077;107880;194640;194640;194640;194640;134010;135610;126368;126364;126370;165900;64300 -230;'804;Ukraine;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2134;3529;3529;3530;5090;3040;5752;8519;8519;15701;19155;24517;33399;39830;39601;54217;54217;31149;37671;43605;40731;51574;51574;51574;51574;40415;55500;60176;60345;60345;104688;64306 -230;'804;Ukraine;1646;Particle board and OSB (1961-1994);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;952000;806000;492000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -230;'804;Ukraine;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7559;400;400;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -230;'804;Ukraine;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;409;139;139;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -230;'804;Ukraine;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;1000;1000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -230;'804;Ukraine;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;131;131;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -230;'804;Ukraine;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;382000;240000;202000;189000;218000;264000;379000;549900;734000;975000;1150000;1329000;1641000;1641000;1295000;1471000;1642000;1626000;1609000;1609000;1609000;1609000;1388000;2405000;2121000;2053000;2781000;2611000;2611000 -230;'804;Ukraine;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6000;33200;62800;76558;93979;93979;186434;273240;383681;261490;287860;285710;238100;238100;183849;119707;110166;160590;196070;108100;108100;108100;123930;122400;208982;214185;214190;36600;23900 -230;'804;Ukraine;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;139;14160;22700;19164;15140;15140;24629;28660;39929;49846;54428;60200;61412;61412;48819;31385;38273;48970;61358;32981;32981;32981;27154;31642;37825;34761;34761;16082;21005 -230;'804;Ukraine;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;32900;19100;14599;14356;14356;62700;101820;116310;692070;150860;196990;302000;302000;301772;380399;427004;426900;319900;450000;450000;450000;518670;457470;328994;308366;308370;292100;178000 -230;'804;Ukraine;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;131;3200;1612;1758;1388;1388;8283;10711;14910;24810;29121;43530;75011;75012;74983;81473;111900;115280;87552;94615;94615;94615;87612;88365;61872;52476;52476;78143;71239 -230;'804;Ukraine;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;50000;100000;100000;153000;153000;153000;153000;153000;153000;153000 -230;'804;Ukraine;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4430;8640;17300;18930;36750;72900;72900;127151;161793;189856;165660;179700;139900;139900;139900;167000;138610;81700;81700;81700;8900;8900 -230;'804;Ukraine;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;550;1342;3052;4507;9260;21818;21818;34411;50615;60667;47462;58320;40472;40472;40472;33169;33067;25330;25330;25330;2710;2710 -230;'804;Ukraine;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;0;0;0;0;228;1;262;55580;41750;12000;12000;12000;10020;3340;4300;10450;10450;51900;51900 -230;'804;Ukraine;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;0;0;5;5;33;1;192;17370;15377;4000;4000;4000;1874;925;1555;2147;2147;16733;16733 -230;'804;Ukraine;1874;Fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;165000;130000;90000;140000;110000;140000;130000;130000;170000;200000;216800;111000;119000;120000;111000;125000;125000;118000;135000;178000;304300;381700;50000;50000;381700;474700;474700;438700;457700;462700;462700;462700 -230;'804;Ukraine;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;23;23;1200;12500;12000;12000;13600;13600;32500;118543;179263;237520;260295;303500;308500;308500;152900;170600;259340;260990;400370;400370;400370;400370;260410;349180;415738;421598;421610;145300;145300 -230;'804;Ukraine;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;37;37;358;2640;2670;2670;4696;4696;7226;8534;13958;19293;28282;40849;65882;65882;44421;52935;107591;119616;133515;133515;133515;133515;95413;120618;134136;139015;139015;89939;89939 -230;'804;Ukraine;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;1000;3700;8800;8800;10150;10150;7783;71365;87452;119913;50417;45430;9800;9800;20905;29310;84895;138590;207830;207830;207830;207830;75325;103485;132604;143459;143460;85400;85400 -230;'804;Ukraine;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;36;36;76;768;1862;1862;790;790;1810;2251;2857;4046;3201;2868;2641;2641;6311;8901;28616;40771;49912;49912;49912;49912;18811;25621;37080;40578;40578;36183;36183 -230;'804;Ukraine;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70000;55000;70000;65000;65000;85000;100000;106200;111000;119000;120000;111000;125000;125000;118000;135000;178000;304300;381700;50000;50000;381700;381700;381700;381700;381700;381700;381700;381700 -230;'804;Ukraine;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6500;6200;6200;6200;6200;9628;22042;40726;65900;70583;81390;113100;113100;23600;38800;6400;3240;3400;3400;3400;3400;2120;3180;16667;23587;23590;13300;13300 -230;'804;Ukraine;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1050;920;920;4696;4696;3793;3524;5492;8885;13638;19335;24165;24165;10019;16068;3458;2285;3340;3340;3340;3340;1367;2116;6144;8809;8809;9674;9674 -230;'804;Ukraine;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;3400;3400;3400;3400;1717;5199;6040;10461;3828;740;800;800;16400;22000;19432;24070;26720;26720;26720;26720;42400;34980;52505;47302;47300;28700;28700 -230;'804;Ukraine;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;347;600;600;790;790;726;369;533;923;617;216;308;308;4806;6514;6437;7954;10388;10388;10388;10388;11232;10514;18833;18747;18747;11236;11236 -230;'804;Ukraine;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;4100;0;0;0;0;0;0;0;0;0;0;0;0;0;0;93000;93000;57000;76000;81000;81000;81000 -230;'804;Ukraine;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;3700;3400;3400;5000;5000;11687;86741;135245;170128;186472;216610;191200;191200;126500;128100;247870;253260;392110;392110;392110;392110;247970;328800;379134;379016;379020;117300;117300 -230;'804;Ukraine;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;162;940;1040;1040;0;0;2326;4432;8166;10272;14437;21228;40826;40826;33579;35815;102559;115794;128028;128028;128028;128028;90937;114393;123481;125777;125777;77162;77162 -230;'804;Ukraine;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1500;2700;2700;4050;4050;6036;66087;81374;109421;46589;44670;9000;9000;4500;7300;65451;114500;181110;181110;181110;181110;32880;68500;80096;96062;96060;55800;55800 -230;'804;Ukraine;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;376;631;631;0;0;1080;1870;2321;3121;2584;2651;2333;2333;1503;2382;22177;32800;39524;39524;39524;39524;7570;15106;18236;21802;21802;24829;24829 -230;'804;Ukraine;1650;Other fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;165000;130000;90000;70000;55000;70000;65000;65000;85000;100000;106500;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -230;'804;Ukraine;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;0;0;1000;2300;2400;2400;2400;2400;11185;9760;3292;1492;3240;5500;4200;4200;2800;3700;5070;4490;4860;4860;4860;4860;10320;17200;19937;18995;19000;14700;14700 -230;'804;Ukraine;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;30;30;196;650;710;710;0;0;1107;578;300;136;207;286;891;891;823;1052;1574;1537;2147;2147;2147;2147;3109;4109;4511;4429;4429;3103;3103 -230;'804;Ukraine;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1000;200;2700;2700;2700;2700;30;79;38;31;0;20;0;0;5;10;12;20;0;0;0;0;45;5;3;95;100;900;900 -230;'804;Ukraine;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;36;76;45;631;631;0;0;4;12;3;2;0;1;0;0;2;5;2;17;0;0;0;0;9;1;11;29;29;118;118 -230;'804;Ukraine;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;23;23;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -230;'804;Ukraine;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;7;7;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -230;'804;Ukraine;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -230;'804;Ukraine;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -230;'804;Ukraine;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;570000;395000;285000;301000;260000;225000;253000;271000;354000;407000;407000;407000;407000;339000;339000;339000;339000;339000;339000;339000;175000;147000;147000;147000;147000;725000;725000;725000;725000;725000;725000;725000 -230;'804;Ukraine;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;0;0;5700;111200;78100;99586;103730;103730;133770;136580;200170;205900;223480;228440;278960;278960;278960;302504;353015;359950;393920;402009;409528;344445;408164;461270;326264;383230;649829;213200;207800 -230;'804;Ukraine;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;0;412;30687;21757;28180;24877;24877;31213;28757;53532;51850;56999;66910;97168;97168;97168;114470;141355;116183;118347;124250;113632;100501;108606;124487;96805;87917;139530;79478;70819 -230;'804;Ukraine;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;900;1900;1798;1002;1002;1960;2610;3130;6450;10410;23190;30700;30700;30700;4259;2934;3600;6250;4214;2380;5020;12000;9020;10393;10165;11000;5200;4100 -230;'804;Ukraine;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;85;170;144;96;96;207;281;425;1012;1384;3271;4519;4519;4519;732;609;613;1241;845;426;1145;2966.03;2445;3157;3187;3649;2009;1548 -230;'804;Ukraine;1878;Pulp for paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102000;70000;70000;84000;52000;37000;45000;50000;62000;68000;68000;68000;68000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -230;'804;Ukraine;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;43200;31100;40568;37256;37256;48530;56560;71540;81220;82750;92090;113360;113360;113360;87691;85142;78290;72560;72560;72560;72560;62164;69270;69097;72449;81413;40600;40300 -230;'804;Ukraine;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;22887;16557;21843;19253;19253;23709;21590;40699;38322;40471;49577;72143;72143;72143;69205;71772;56996;52865;52865;52865;52865;38556;47831;44969;39646;51242;37056;36898 -230;'804;Ukraine;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;500;300;301;301;50;0;0;330;0;960;300;300;300;75;91;10;0;0;0;0;0;20;186;99;400;100;100 -230;'804;Ukraine;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;40;2;30;30;17;0;0;127;9;507;282;282;282;72;97;45;9;9;9;9;9.03;104;130;100;369;105;105 -230;'804;Ukraine;1875;Wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26000;22000;19000;23000;18000;11000;15000;13000;23000;27000;27000;27000;27000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -230;'804;Ukraine;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2112;2100;2100;2100;63200;48100;53445;54827;54827;64600;73030;87090;95050;91440;91400;112500;112500;112500;87242;84367;77220;71570;71570;71570;71570;59176;66295;72059;76052;78500;37800;37500 -230;'804;Ukraine;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1246;1246;1246;1246;41887;33557;32139;32287;32287;35645;33730;52215;48415;46584;48442;70753;70753;70753;68353;69844;54435;50959;50959;50959;50959;34536;44563;45566;40143;47991;33363;33197 -230;'804;Ukraine;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;600;500;300;301;301;50;0;0;310;0;950;300;300;300;69;75;0;0;0;0;0;0;20;145;78;400;100;100 -230;'804;Ukraine;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;630;40;2;30;30;17;0;0;123;0;490;268;268;268;59;52;0;9;9;9;9;9.03;23;78;57;368;80;80 -230;'804;Ukraine;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -230;'804;Ukraine;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6000;7000;5210;5985;8500;700;400 -230;'804;Ukraine;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3276;3899;3051;3174;4666;444;286 -230;'804;Ukraine;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -230;'804;Ukraine;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -230;'804;Ukraine;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;0;0;;;;;;; -230;'804;Ukraine;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;300;43;438;438;0;0;0;0;0;0;160;160;160;0;0;0;50;50;50;50;;;;;;; -230;'804;Ukraine;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;77;11;62;62;0;0;0;3;0;0;69;69;69;0;0;0;39;39;39;39;;;;;;; -230;'804;Ukraine;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;32;0;0;0;0;0;;;;;;; -230;'804;Ukraine;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;;;;;;; -230;'804;Ukraine;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;;;;;;; -230;'804;Ukraine;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;10;100;20;10;0;0;0;0;3548;4804;7650;4620;4620;4620;4620;;;;;;; -230;'804;Ukraine;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;6;76;17;3;0;0;0;0;2515;3683;5373;3265;3265;3265;3265;;;;;;; -230;'804;Ukraine;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;300;300;300;300;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -230;'804;Ukraine;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;30;30;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -230;'804;Ukraine;1656;Chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26000;22000;19000;23000;18000;11000;15000;13000;23000;27000;27000;27000;27000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -230;'804;Ukraine;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;42900;30800;40408;36717;36717;48220;56040;70990;80690;82250;91400;112300;112300;112300;83668;79557;69570;66890;66890;66890;66890;53164;59270;61639;64082;70000;37100;37100 -230;'804;Ukraine;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;22810;16480;21614;19087;19087;23416;20967;40099;37610;39678;48435;70632;70632;70632;65814;66149;49053;47643;47643;47643;47643;31248;40639;39464;33795;43300;32911;32911 -230;'804;Ukraine;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;200;0;1;1;50;0;0;310;0;950;300;300;300;69;43;0;0;0;0;0;0;20;145;78;400;100;100 -230;'804;Ukraine;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;40;2;0;0;17;0;0;123;0;490;268;268;268;59;50;0;9;9;9;9;9.03;23;78;57;368;80;80 -230;'804;Ukraine;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26000;22000;19000;23000;18000;11000;15000;13000;23000;27000;27000;27000;27000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -230;'804;Ukraine;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;5300;5100;22210;24023;24023;11890;9740;12330;16300;17820;18800;26600;26600;26600;19818;14294;12500;11700;11700;11700;11700;11000;9000;7310;8520;10487;4900;4900 -230;'804;Ukraine;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2700;2600;11684;12337;12337;5002;3761;5078;7043;8063;9041;15477;15477;15477;14421;10978;8141;7797;7797;7797;7797;6152;6249;5381;5029;6457;3781;3781 -230;'804;Ukraine;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;200;0;1;1;50;0;0;0;0;0;30;30;30;7;2;0;0;0;0;0;0;0;21;0;0;0;0 -230;'804;Ukraine;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;40;0;0;0;17;0;0;0;0;0;22;22;22;5;1;0;0;0;0;0;0;0;15;0;0;0;0 -230;'804;Ukraine;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 -230;'804;Ukraine;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;20800;17200;0;0;0;13870;18500;27640;34180;33090;42770;57700;57700;57700;42989;58834;51460;51380;51380;51380;51380;42000;50000;54241;55319;59413;31900;31900 -230;'804;Ukraine;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;12200;9900;0;0;0;7889;7503;11888;16639;17249;23760;37375;37375;37375;34826;49247;36519;36038;36038;36038;36038;24946;34143;33921;28488;36583;28648;28648 -230;'804;Ukraine;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;250;250;250;57;0;0;0;0;0;0;0;20;124;78;400;100;100 -230;'804;Ukraine;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;201;201;201;44;0;0;9;9;9;9;9.03;23;63;57;368;80;80 -230;'804;Ukraine;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0 -230;'804;Ukraine;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;164;270;88;243;100;300;300 -230;'804;Ukraine;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;150;247;162;278;260;482;482 -230;'804;Ukraine;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -230;'804;Ukraine;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -230;'804;Ukraine;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;;;;;;; -230;'804;Ukraine;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;400;9099;6347;6347;6550;6160;7890;5080;6680;7900;3800;3800;3800;2831;2831;2470;0;0;0;0;;;;;;; -230;'804;Ukraine;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;210;180;4965;3375;3375;5457;1393;14205;1448;2287;3363;1823;1823;1823;1699;1699;1260;0;0;0;0;;;;;;; -230;'804;Ukraine;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;310;0;0;0;0;0;0;41;0;0;0;0;0;;;;;;; -230;'804;Ukraine;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1;0;0;0;0;0;123;0;0;0;0;0;0;49;0;0;0;0;0;;;;;;; -230;'804;Ukraine;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;;;;;;; -230;'804;Ukraine;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16300;8100;9099;6347;6347;15910;21640;23130;25130;24660;21930;24200;24200;24200;18030;3598;3140;3810;3810;3810;3810;;;;;;; -230;'804;Ukraine;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7700;3800;4965;3375;3375;5068;8310;8928;12480;12079;12271;15957;15957;15957;14868;4225;3133;3808;3808;3808;3808;;;;;;; -230;'804;Ukraine;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;950;20;20;20;5;0;0;0;0;0;0;;;;;;; -230;'804;Ukraine;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;1;0;0;0;0;0;0;0;490;45;45;45;10;0;0;0;0;0;0;;;;;;; -230;'804;Ukraine;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 -230;'804;Ukraine;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2112;2100;2100;2100;20000;17000;12994;17672;17672;16380;16980;16000;14340;9180;0;40;40;40;26;6;0;10;10;10;10;12;25;5210;5985;0;0;0 -230;'804;Ukraine;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1246;1246;1246;1246;19000;17000;10514;13138;13138;12229;12757;12040;10785;6903;7;52;52;52;24;12;9;12;12;12;12;12;25;3051;3174;25;8;0 -230;'804;Ukraine;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;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 -230;'804;Ukraine;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;630;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -230;'804;Ukraine;1668;Pulp from fibres other than wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76000;48000;51000;61000;34000;26000;30000;37000;39000;41000;41000;41000;41000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -230;'804;Ukraine;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;117;101;101;310;510;450;510;490;690;900;900;900;475;781;1070;1000;1000;1000;1000;3000;3000;2248;2382;2913;2800;2800 -230;'804;Ukraine;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;218;104;104;293;617;524;692;790;1142;1442;1442;1442;876;1940;2570;1918;1918;1918;1918;4032;3293;2454;2677;3276;3701;3701 -230;'804;Ukraine;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;20;0;10;0;0;0;6;16;10;0;0;0;0;0;0;41;21;0;0;0 -230;'804;Ukraine;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;4;9;17;14;14;14;13;45;45;0;0;0;0;0;81;52;43;1;25;25 -230;'804;Ukraine;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;10;200;3490;150;470;2700;2700;2700;3438;4254;4550;6860;6860;6860;6860;7000;7000;5722;15103;11670;0;0 -230;'804;Ukraine;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;7;117;304;73;329;2165;2165;2165;2906;3772;3136;4318;4318;4318;4318;3602;4122;3106;8068;6236;19;19 -230;'804;Ukraine;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;10;0;0;0;20;20;10;10;10;4;0;0;0;0;0;0;65;24;128;322;100;300;300 -230;'804;Ukraine;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;12;0;0;0;24;25;9;9;9;4;0;0;0;0;0;0;33;12;187;386;121;250;250 -230;'804;Ukraine;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;468000;325000;215000;217000;208000;188000;208000;221000;292000;339000;339000;339000;339000;339000;339000;339000;339000;339000;339000;339000;175000;147000;147000;147000;147000;725000;725000;725000;725000;725000;725000;725000 -230;'804;Ukraine;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;0;0;5700;68000;47000;59018;66474;66474;85240;80020;128630;124680;140730;136350;165600;165600;165600;214813;267873;281660;321360;329449;336968;271885;346000;392000;257167;310781;568416;172600;167500 -230;'804;Ukraine;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;0;412;7800;5200;6337;5624;5624;7504;7167;12833;13528;16528;17333;25025;25025;25025;45265;69583;59187;65482;71385;60767;47636;70050;76656;51836;48271;88288;42422;33921 -230;'804;Ukraine;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;900;1400;1498;701;701;1910;2610;3130;6120;10410;22230;30400;30400;30400;4184;2843;3590;6250;4214;2380;5020;12000;9000;10207;10066;10600;5100;4000 -230;'804;Ukraine;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;85;130;142;66;66;190;281;425;885;1375;2764;4237;4237;4237;660;512;568;1232;836;417;1136;2957;2341;3027;3087;3280;1904;1443 -230;'804;Ukraine;1876;Paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;228790;145290;78500;85200;292890;264000;292900;310900;411000;479900;531600;618037;722999;768010;804000;937001;937001;813999;857001;986998;1123060;1079350;1079350;1079350;1079350;983000;1155000;1033000;1039000;1198000;982429;982429 -230;'804;Ukraine;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;5900;5900;6800;233700;238400;216559;239471;270947;367960;422060;495500;563880;689780;737780;839200;839200;839200;837242;797879;652340;647700;647700;647700;647700;579000;590000;589920;553104;553110;326900;374300 -230;'804;Ukraine;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;4767;4767;4772;174860;183270;154649;158401;176079;273808;376758;511419;424842;557429;631143;814836;814838;814836;879168;956820;680160;758368;758368;758368;758368;559188;630708;593111;544481;544481;436702;484337 -230;'804;Ukraine;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;4000;4000;4000;50500;54800;77485;87452;101692;118750;119710;139930;156650;145990;163570;198000;198000;198000;197849;238451;133390;241790;241790;241790;241790;234102;256512;179925;175598;175600;65200;42200 -230;'804;Ukraine;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;1136;1136;1136;60910;61700;60530;81896;97881;142839;152684;151589;168956;194544;229627;292421;292421;292421;297238;351995;95006;350566;350566;350566;350566;168862;197189;148067;138263;138263;84797;68890 -230;'804;Ukraine;2042;Graphic papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94690;52490;23200;20300;20490;19100;24000;15900;29600;38300;38100;44693;52314;55890;59481;69322;69322;59029;62178;72810;70250;45150;45150;45150;45150;8000;8000;4000;4000;5000;5000;5000 -230;'804;Ukraine;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;5900;5900;6800;148400;162400;148187;162394;162394;193430;208630;279760;299130;349200;393370;446800;446800;446800;411375;390002;279180;207310;207310;207310;207310;271000;269000;264928;213131;213130;111600;138600 -230;'804;Ukraine;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;4767;4767;4772;108300;118800;92836;87359;87359;135763;180255;323105;197442;246434;290418;371824;371824;371824;373691;401439;254390;175718;175718;175718;175718;213701;247954;228941;186433;186433;142210;168912 -230;'804;Ukraine;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;4000;4000;4000;14300;10200;7745;3983;3983;4290;2570;3970;6390;6480;5930;5600;5600;5600;1931;4567;3100;70;70;70;70;1102;102;5002;149;150;700;100 -230;'804;Ukraine;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;1136;1136;1136;17670;12820;4049;5697;5697;13550;6138;1900;3362;3487;3190;3404;3404;3404;1267;5161;1803;128;128;128;128;3790;130;3231;481;481;1090;240 -230;'804;Ukraine;1671;Newsprint;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34100;23700;15700;15800;14800;8300;15900;14400;26000;32300;32100;32000;36057;38511;39000;40000;40000;34000;15000;33000;8000;8000;8000;8000;8000;1000;1000;1000;0;0;0;0 -230;'804;Ukraine;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;800;64400;60400;74771;76828;76828;79370;68560;71770;114060;119710;124490;126200;126200;126200;89781;74480;99970;91630;91630;91630;91630;46000;45000;39881;30186;30190;7800;8300 -230;'804;Ukraine;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;30300;29800;36853;37529;37529;42925;26576;29693;49190;58475;69635;78673;78673;78673;46851;45673;57893;53290;53290;53290;53290;21434;28965;20776;12216;12216;6141;6851 -230;'804;Ukraine;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;4800;2500;6680;2444;2444;1660;1420;3740;5510;6080;5800;5400;5400;5400;1776;3978;3100;0;0;0;0;6;12;12;26;30;100;0 -230;'804;Ukraine;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;554;554;554;3720;1920;2132;1041;1041;819;639;1543;2370;2851;2980;3094;3094;3094;1014;2494;1795;2;2;2;2;3;6;10;15;15;49;26 -230;'804;Ukraine;1674;Printing and writing papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60590;28790;7500;4500;5690;10800;8100;1500;3600;6000;6000;12693;16257;17379;20481;29322;29322;25029;47178;39810;62250;37150;37150;37150;37150;7000;7000;3000;4000;5000;5000;5000 -230;'804;Ukraine;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;5900;5900;6000;84000;102000;73416;85566;85566;114060;140070;207990;185070;229490;268880;320600;320600;320600;321594;315522;179210;115680;115680;115680;115680;225000;224000;225047;182945;182940;103800;130300 -230;'804;Ukraine;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;4765;4765;4770;78000;89000;55983;49830;49830;92838;153679;293412;148252;187959;220783;293151;293151;293151;326840;355766;196497;122428;122428;122428;122428;192267;218989;208165;174217;174217;136069;162061 -230;'804;Ukraine;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;3000;3000;3000;9500;7700;1065;1539;1539;2630;1150;230;880;400;130;200;200;200;155;589;0;70;70;70;70;1096;90;4990;123;120;600;100 -230;'804;Ukraine;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;582;582;582;13950;10900;1917;4656;4656;12731;5499;357;992;636;210;310;310;310;253;2667;8;126;126;126;126;3787;124;3221;466;466;1041;214 -230;'804;Ukraine;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2700;500;1200;2000;2000;4231;5419;5793;6827;9774;9774;8343;15726;13270;20750;13700;13700;13700;13700;0;0;0;0;0;0;0 -230;'804;Ukraine;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24472;28522;28522;7540;7020;7890;11050;11450;14290;17100;17100;17100;23692;21139;21130;25550;25550;25550;25550;16000;14000;14284;8624;8620;5200;9700 -230;'804;Ukraine;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18661;16610;16610;4892;5536;5856;7109;7943;10441;14169;14169;14169;19805;19043;19043;21781;21781;21781;21781;10910;11235;10371;6355;6355;6066;11467 -230;'804;Ukraine;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;355;513;513;60;20;0;0;0;0;0;0;0;0;399;0;0;0;0;0;18;5;1;0;0;0;100 -230;'804;Ukraine;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;639;1552;1552;88;38;0;1;0;1;1;1;1;0;2314;0;14;14;14;14;11;3;1;1;1;21;108 -230;'804;Ukraine;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2700;500;1200;2000;2000;4231;5419;5793;6827;9774;9774;8343;15726;13270;20750;2700;2700;2700;2700;7000;7000;3000;4000;5000;5000;5000 -230;'804;Ukraine;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24472;28522;28522;62630;38280;50910;87150;77640;88360;103600;103600;103600;155177;156317;156310;61720;61720;61720;61720;128000;129000;130753;115033;115030;68800;85100 -230;'804;Ukraine;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18661;16610;16610;49244;28013;42444;63725;59033;70565;98160;98160;98160;155497;173999;173999;57906;57906;57906;57906;107397;124801;120989;110476;110476;90819;104218 -230;'804;Ukraine;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;355;513;513;2480;990;150;250;180;70;100;100;100;137;152;0;70;70;70;70;1000;18;4974;100;100;600;0 -230;'804;Ukraine;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;639;1552;1552;12560;5321;249;332;314;110;268;268;268;213;251;0;89;89;89;89;3714;68;3175;412;412;962;49 -230;'804;Ukraine;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2700;500;1200;2000;2000;4231;5419;5793;6827;9774;9774;8343;15726;13270;20750;20750;20750;20750;20750;0;0;0;0;0;0;0 -230;'804;Ukraine;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24472;28522;28522;43890;94770;149190;86870;140400;166230;199900;199900;199900;142725;138066;1770;28410;28410;28410;28410;81000;81000;80010;59288;59290;29800;35500 -230;'804;Ukraine;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18661;16610;16610;38702;120130;245112;77418;120983;139777;180822;180822;180822;151538;162724;3455;42741;42741;42741;42741;73960;82953;76805;57386;57386;39184;46376 -230;'804;Ukraine;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;355;513;513;90;140;80;630;220;60;100;100;100;18;38;0;0;0;0;0;78;67;15;23;20;0;0 -230;'804;Ukraine;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;639;1552;1552;83;140;108;659;322;99;41;41;41;40;102;8;23;23;23;23;62;53;45;53;53;58;57 -230;'804;Ukraine;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;134100;92800;55300;64900;272400;244900;268900;295000;381400;441600;493500;573344;670685;712120;744519;867679;867679;754970;794823;914188;1052810;1034200;1034200;1034200;1034200;975000;1147000;1029000;1035000;1193000;977429;977429 -230;'804;Ukraine;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;85300;76000;68372;77077;108553;174530;213430;215740;264750;340580;344410;392400;392400;392400;425867;407877;373160;440390;440390;440390;440390;308000;321000;324992;339973;339980;215300;235700 -230;'804;Ukraine;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;66560;64470;61813;71042;88720;138045;196503;188314;227400;310995;340725;443012;443014;443012;505477;555381;425770;582650;582650;582650;582650;345487;382754;364170;358048;358048;294492;315425 -230;'804;Ukraine;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;36200;44600;69740;83469;97709;114460;117140;135960;150260;139510;157640;192400;192400;192400;195918;233884;130290;241720;241720;241720;241720;233000;256410;174923;175449;175450;64500;42100 -230;'804;Ukraine;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;43240;48880;56481;76199;92184;129289;146546;149689;165594;191057;226437;289017;289017;289017;295971;346834;93203;350438;350438;350438;350438;165072;197059;144836;137782;137782;83707;68650 -230;'804;Ukraine;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111300;76700;49100;58200;63400;59400;70700;57000;63800;74700;82900;92000;106000;109000;112000;122000;122000;120000;126000;131000;138000;145500;145500;145500;145500;135000;141000;146000;158000;146000;156429;156429 -230;'804;Ukraine;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1300;1400;1031;928;928;150;490;1180;1320;1810;2620;3000;3000;3000;4628;5546;10950;15470;15470;15470;15470;13000;12000;14263;18725;18730;14700;22100 -230;'804;Ukraine;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1060;1070;763;352;352;231;496;1436;1696;2648;3973;6107;6107;6107;10259;12570;21277;29276;29276;29276;29276;14448;15350;16916;19511;19511;24126;32143 -230;'804;Ukraine;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4600;9100;11667;5479;5479;9320;10530;13080;15070;16740;13570;9400;9400;9400;8226;10173;8640;8780;8780;8780;8780;11000;13000;14355;15585;15590;8500;7300 -230;'804;Ukraine;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2570;4900;6319;3948;3948;6277;5994;8318;8980;8321;9277;8748;8748;8748;6957;7655;6263;5048;5048;5048;5048;6839;9369;9814;10071;10071;7773;5614 -230;'804;Ukraine;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;197200;237100;317000;366300;410000;480637;563861;602242;631519;744679;744679;634118;667926;782134;902410;878600;878600;878600;878600;822000;989000;862000;860000;1025000;802000;802000 -230;'804;Ukraine;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55941;59049;90525;114300;163110;157340;169390;254130;263300;315200;315200;315200;354209;333752;293670;359760;359760;359760;359760;260000;280000;287925;298773;298770;192300;205200 -230;'804;Ukraine;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48111;51282;68960;84236;146589;122730;129052;204980;235964;318541;318543;318541;371649;407374;276836;422033;422033;422033;422033;264455;305559;292575;284160;284160;242335;249191 -230;'804;Ukraine;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57973;77840;92080;94250;101110;116370;129620;118690;136800;172400;172400;172400;185442;221484;119230;231760;231760;231760;231760;221000;243000;160003;158668;158660;55800;34700 -230;'804;Ukraine;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50136;72211;88196;119454;138756;139101;154556;181343;214017;274145;274145;274145;286403;336999;84728;343431;343431;343431;343431;157426;187359;132391;123465;123465;73819;62671 -230;'804;Ukraine;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;207400;184900;;;;;;;;;;;;;;;;;;;;;;;;;; -230;'804;Ukraine;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69200;63200;;;;;;;;;;;;;;;;;;;;;;;;;; -230;'804;Ukraine;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48700;50000;;;;;;;;;;;;;;;;;;;;;;;;;; -230;'804;Ukraine;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31400;35400;;;;;;;;;;;;;;;;;;;;;;;;;; -230;'804;Ukraine;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40200;43600;;;;;;;;;;;;;;;;;;;;;;;;;; -230;'804;Ukraine;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94500;114500;154500;178600;199900;234341;274920;293633;307908;363081;363081;309175;325659;381343;367970;683900;683900;683900;683900;374000;498000;461000;442000;528000;322000;322000 -230;'804;Ukraine;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18649;11454;18008;19500;33600;44970;53050;66610;67570;67400;67400;67400;100630;83566;113000;118440;118440;118440;118440;67000;67000;83573;96751;96750;60000;68500 -230;'804;Ukraine;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9365;5806;8132;8704;12126;19391;20370;27742;31677;37124;37125;37124;55795;55784;65000;73991;73991;73991;73991;33966;39102;42383;44432;44432;44580;42493 -230;'804;Ukraine;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27442;33349;50654;41970;32560;37360;47290;33190;37440;60600;60600;60600;50789;71508;12630;104970;104970;104970;104970;117000;134000;61540;49227;49230;19900;9900 -230;'804;Ukraine;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10124;9260;16075;12125;8494;10267;13406;10396;12706;24983;24983;24983;29094;44046;6030;55846;55846;55846;55846;48526;65059;25822;18049;18049;14129;4678 -230;'804;Ukraine;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94500;114500;154500;178600;199900;234341;274920;293633;307908;363081;363081;309175;325659;381343;356580;8600;8600;8600;8600;186000;179000;144000;163000;202000;195000;195000 -230;'804;Ukraine;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22447;32899;43352;66530;100010;73860;92470;126190;126260;143100;143100;143100;144895;145962;123600;148300;148300;148300;148300;109000;126000;131095;129014;129010;90000;93800 -230;'804;Ukraine;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27141;36031;45535;59523;117871;79548;90681;138589;154296;194092;194092;194092;201280;229859;149028;240831;240831;240831;240831;152643;179957;178456;175826;175826;143070;151211 -230;'804;Ukraine;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28662;42052;39783;50330;65310;73260;48220;77840;89080;101500;101500;101500;115988;124959;81060;93500;93500;93500;93500;86000;90000;82643;97384;97380;27700;14000 -230;'804;Ukraine;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38170;61606;71098;105811;127948;124757;123818;165232;192909;239726;239726;239726;240676;269892;58308;258871;258871;258871;258871;91271;102007;88222;92013;92013;44993;32868 -230;'804;Ukraine;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8200;8100;8000;9100;10200;11955;14021;14976;15703;18517;18517;15768;16608;19448;177860;186100;186100;186100;186100;232000;281000;227000;222000;229000;219000;219000 -230;'804;Ukraine;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13287;14513;29004;27350;28040;36590;22020;56150;59540;77600;77600;77600;64560;67618;27380;72300;72300;72300;72300;68000;70000;60458;60571;60570;38000;37900 -230;'804;Ukraine;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10850;9367;15201;15663;15972;23092;17496;37073;46140;73943;73943;73943;66478;82320;36142;87020;87020;87020;87020;67247;75868;65768;59166;59166;50994;51848 -230;'804;Ukraine;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1869;2439;1643;1910;3230;5750;34110;7660;10270;10200;10200;10200;7909;11077;11140;21070;21070;21070;21070;12000;13000;11127;6794;6790;4500;6700 -230;'804;Ukraine;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1842;1345;1022;1500;2308;4077;17314;5715;8399;9397;9397;9397;10780;14548;12254;21635;21635;21635;21635;14909;17727;16341;11246;11246;12038;22863 -230;'804;Ukraine;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;30000;31000;30000;33000;66000;66000;66000 -230;'804;Ukraine;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1558;183;161;920;1460;1920;1850;5180;9930;27100;27100;27100;44124;36606;29690;20720;20720;20720;20720;16000;17000;12799;12437;12440;4300;5000 -230;'804;Ukraine;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;755;78;92;346;620;699;505;1576;3851;13382;13383;13382;48096;39411;26666;20191;20191;20191;20191;10599;10632;5968;4736;4736;3691;3639 -230;'804;Ukraine;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;40;10;0;0;0;10;100;100;100;10756;13940;14400;12220;12220;12220;12220;6000;6000;4693;5263;5260;3700;4100 -230;'804;Ukraine;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1;18;6;0;18;0;3;39;39;39;5853;8513;8136;7079;7079;7079;7079;2720;2566;2006;2157;2157;2659;2262 -230;'804;Ukraine;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22800;16100;6200;6700;1600;600;1000;900;600;600;600;707;824;878;1000;1000;1000;852;897;1054;12400;10100;10100;10100;10100;18000;17000;21000;17000;22000;19000;19000 -230;'804;Ukraine;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14800;11400;11400;17100;17100;60080;49830;57220;94040;84640;78490;74200;74200;74200;67030;68579;68540;65160;65160;65160;65160;35000;29000;22804;22475;22480;8300;8400 -230;'804;Ukraine;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16800;13400;12939;19408;19408;53578;49418;64148;96652;103367;100788;118364;118364;118364;123569;135437;127657;131341;131341;131341;131341;66584;61845;54679;54377;54377;28031;34091 -230;'804;Ukraine;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;100;100;150;150;10890;5500;6510;5570;4080;7270;10600;10600;10600;2250;2227;2420;1180;1180;1180;1180;1000;410;565;1196;1200;200;100 -230;'804;Ukraine;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;470;380;26;40;40;3558;1796;2270;2058;1393;3143;6124;6124;6124;2611;2180;2212;1959;1959;1959;1959;807;331;2631;4246;4246;2115;365 -230;'804;Ukraine;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;114599;147339;142497;115128;142626;58481;87033 -230;'804;Ukraine;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;382555;491000;554157;625905;811341;865439;872455 -230;'804;Ukraine;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1710;1760;1515;1515;1515;1277;1398 -230;'804;Ukraine;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19985;23635;21675;21675;21675;29000;24927 -230;'804;Ukraine;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;868;755;761;761;761;530;350 -230;'804;Ukraine;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7147;8208;7657;7657;7657;15045;12805 -230;'804;Ukraine;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;842;1005;754;754;754;747;1048 -230;'804;Ukraine;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12838;15427;14018;14018;14018;13955;12122 -230;'804;Ukraine;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3196;5248;4787;4787;4787;3730;4076 -230;'804;Ukraine;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47246;71366;76265;76265;76265;242375;140501 -230;'804;Ukraine;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1539;1976;5020;5020;5020;1761;2909 -230;'804;Ukraine;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1211;1466;2786;2786;2786;11870;9244 -230;'804;Ukraine;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20706;19773;20291;20291;20291;3544;10385 -230;'804;Ukraine;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;138959;174251;189151;189151;189151;148417;161992 -230;'804;Ukraine;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59422;73648;86286;61294;83423;42063;61947 -230;'804;Ukraine;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;156823;197713;235682;273241;404935;322785;434071 -230;'804;Ukraine;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19726;38070;17329;17329;17329;618;388 -230;'804;Ukraine;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7800;11071;15673;15673;15673;13955;12478 -230;'804;Ukraine;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8300;6864;7269;4892;10261;5488;5930 -230;'804;Ukraine;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10531;11498;12925;47114;100856;97037;89242 -230;'804;Ukraine;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;254639;292755;274408;274408;274408;204089;229591 -230;'804;Ukraine;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;282026;285081;224009;224009;224009;168521;146058 -230;'804;Ukraine;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2486;2214;2182;2182;2182;2049;2212 -230;'804;Ukraine;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;130;43;59;59;59;1192;1619 -230;'804;Ukraine;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74745;86499;78132;78132;78132;60463;67867 -230;'804;Ukraine;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1106;1074;1565;1565;1565;824;870 -230;'804;Ukraine;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33799;38776;42555;42555;42555;32347;42737 -230;'804;Ukraine;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28832;30785;32019;32019;32019;30210;27767 -230;'804;Ukraine;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76936;86972;80408;80408;80408;59529;58596 -230;'804;Ukraine;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73487;77632;66391;66391;66391;48571;31576 -230;'804;Ukraine;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66673;78294;71131;71131;71131;49701;58179 -230;'804;Ukraine;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;178471;175547;123975;123975;123975;87724;84226 -225;'784;United Arab Emirates;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3625298;3832786;3761830;3099463;4165899.54;4965407;4816820 -225;'784;United Arab Emirates;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;966973;1453515;1719165;2317963;2329562.84;2843829;2632592 -225;'784;United Arab Emirates;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;195;2174;206171;239514;308382;277643;257240;286241;328207;297934;345705;364236;337281;402383;621636;657075;677902;1183340;1645428;962209;1199926;1557202;1447147;1612108;1738221;1729750;1585101;1949023;2170641;2088321;1736434;2331828.54;2936981;2668879 -225;'784;United Arab Emirates;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10921;10575;59533;38786;26185;25560;25209;15076;12071;17891;60659;67335;72921;84152;89134;92256;89652;110125;257257;162909;224244;205024;248675;281220;340321;364361;313960;370569;583381;746847;1341700;1086997.84;1433435;1325083 -225;'784;United Arab Emirates;1861;Roundwood;5516;Production;m3;246;287;335;392;457;533;623;727;848;990;1072;1282;1501;1813;2235;2651;3113;3801;4243;4639;5301;6206;7140;7836;8790;10136;10662;11412;11603;11625;12080;12537;12951;12308;12700;13146;13507;14859;15260;15672;15925;16183;16445;16711;16981;17181;17382;17586;17793;18002;18144;18287;18432;18578;18724;18765;18806;18847;18888;18929;18969;19009;19049 -225;'784;United Arab Emirates;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;364;8729;2966;9200;18400;18400;30900;30900;16900;23700;35300;35000;37000;109900;159578;159578;159578;280488;311854;123417;177784;157674;156120;172058;130796;141327;163850;72873;153708;61230;77520;78658.26;85060;109614 -225;'784;United Arab Emirates;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;1208;765;1205;1410;1410;6147;6147;3872;5183;8418;5800;5600;6804;11708;11708;11708;30034;47495;13453;21222;20695;16123;15082;14352;23329;18577;9857;22086;9454;12794;12570.19;21311;12074 -225;'784;United Arab Emirates;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;800;800;800;3084;3084;3084;3084;4690;6340;14228;12492;15134;15794;31835;10347;8239;21131;14574;18117;22220;18381.17;7322;22223 -225;'784;United Arab Emirates;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;289;289;289;936;936;936;936;2621;927;3333;2145;4320;2577;4793;2801;5655;10148;7300;10698;13411;16658.96;8902;10259 -225;'784;United Arab Emirates;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -225;'784;United Arab Emirates;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47537;126669;37377;52810;59996.16;58735;46633 -225;'784;United Arab Emirates;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4972;14267;3658;6845;6451;8792;7340 -225;'784;United Arab Emirates;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14857;10783;9855;16014;11380.17;4872;6269 -225;'784;United Arab Emirates;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7560;5228;7458;11207;13444.95;4957;4659 -225;'784;United Arab Emirates;1863;Roundwood, non-coniferous;5516;Production;m3;246;287;335;392;457;533;623;727;848;990;1072;1282;1501;1813;2235;2651;3113;3801;4243;4639;5301;6206;7140;7836;8790;10136;10662;11412;11603;11625;12080;12537;12951;12308;12700;13146;13507;14859;15260;15672;15925;16183;16445;16711;16981;17181;17382;17586;17793;18002;18144;18287;18432;18578;18724;18765;18806;18847;18888;18929;18969;19009;19049 -225;'784;United Arab Emirates;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25336;27039;23853;24710;18662.1;26325;62981 -225;'784;United Arab Emirates;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4885;7819;5796;5949;6119.19;12519;4734 -225;'784;United Arab Emirates;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6274;3791;8262;6206;7001;2450;15954 -225;'784;United Arab Emirates;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2588;2072;3240;2204;3214;3945;5600 -225;'784;United Arab Emirates;1864;Wood fuel;5516;Production;m3;246;287;335;392;457;533;623;727;848;990;1072;1282;1501;1813;2235;2651;3113;3801;4243;4639;5301;6206;7140;7836;8790;10136;10662;11412;11603;11625;12080;12537;12951;12308;12700;13146;13507;14859;15260;15672;15925;16183;16445;16711;16981;17181;17382;17586;17793;18002;18144;18287;18432;18578;18724;18765;18806;18847;18888;18929;18969;19009;19049 -225;'784;United Arab Emirates;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;311;200;1400;1400;1000;1000;0;0;0;0;0;0;0;0;0;0;557;557;4895;735;2400;2836;4550;4843;6003;4220;6985;7931;7824;13273.26;11414;13431 -225;'784;United Arab Emirates;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;24;216;216;59;59;0;0;0;0;0;0;0;0;0;0;241;241;757;179;322;796;1399;1223;2238;763;2590;1661;2132;2597.19;2568;2704 -225;'784;United Arab Emirates;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;296;296;273;128;631;256;248;172;237;104;312;317;473;839.17;1638;4525 -225;'784;United Arab Emirates;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;293;293;56;18;223;380;88;86;211;46;166;119;203;653.96;888;689 -225;'784;United Arab Emirates;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -225;'784;United Arab Emirates;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3297;5949;3372;2408;3431.16;3734;5450 -225;'784;United Arab Emirates;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;548;2090;554;872;402;590;1050 -225;'784;United Arab Emirates;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;186;147;252;473.17;1213;2610 -225;'784;United Arab Emirates;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;127;65;136;306.95;666;368 -225;'784;United Arab Emirates;1628;Wood fuel, non-coniferous;5516;Production;m3;246;287;335;392;457;533;623;727;848;990;1072;1282;1501;1813;2235;2651;3113;3801;4243;4639;5301;6206;7140;7836;8790;10136;10662;11412;11603;11625;12080;12537;12951;12308;12700;13146;13507;14859;15260;15672;15925;16183;16445;16711;16981;17181;17382;17586;17793;18002;18144;18287;18432;18578;18724;18765;18806;18847;18888;18929;18969;19009;19049 -225;'784;United Arab Emirates;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;923;1036;4559;5416;9842.1;7680;7981 -225;'784;United Arab Emirates;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;215;500;1107;1260;2195.19;1978;1654 -225;'784;United Arab Emirates;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;126;170;221;366;425;1915 -225;'784;United Arab Emirates;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;39;54;67;347;222;321 -225;'784;United Arab Emirates;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;311;200;1400;1400;1000;1000;0;0;0;0;0;0;0;0;0;0;557;557;4895;735;2400;2836;4550;4843;6003;;;;;;; -225;'784;United Arab Emirates;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;24;216;216;59;59;0;0;0;0;0;0;0;0;0;0;241;241;757;179;322;796;1399;1223;2238;;;;;;; -225;'784;United Arab Emirates;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;296;296;273;128;631;256;248;172;237;;;;;;; -225;'784;United Arab Emirates;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;293;293;56;18;223;380;88;86;211;;;;;;; -225;'784;United Arab Emirates;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;364;8729;2655;9000;17000;17000;29900;29900;16900;23700;35300;35000;37000;109900;159578;159578;159578;280488;311297;122860;172889;156939;153720;169222;126246;136484;157847;68653;146723;53299;69696;65385;73646;96183 -225;'784;United Arab Emirates;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;1208;716;1181;1194;1194;6088;6088;3872;5183;8418;5800;5600;6804;11708;11708;11708;30034;47254;13212;20465;20516;15801;14286;12953;22106;16339;9094;19496;7793;10662;9973;18743;9370 -225;'784;United Arab Emirates;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;800;800;800;3084;3084;3084;3084;4394;6044;13955;12364;14503;15538;31587;10175;8002;21027;14262;17800;21747;17542;5684;17698 -225;'784;United Arab Emirates;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;289;289;289;936;936;936;936;2328;634;3277;2127;4097;2197;4705;2715;5444;10102;7134;10579;13208;16005;8014;9570 -225;'784;United Arab Emirates;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2418;113;4600;7400;7400;15500;15500;15000;15000;29000;27100;27100;100000;143718;143718;143718;264628;275246;104935;131204;112057;138258;132029;110530;58169;100437;44240;120720;34005;50402;56565;55001;41183 -225;'784;United Arab Emirates;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;484;14;364;482;482;3368;3368;3476;3950;5611;3796;3796;5000;8767;8767;8767;27093;34281;6401;8003;6836;8434;8054;6742;5875;7321;4424;12177;3104;5973;6049;8202;6290 -225;'784;United Arab Emirates;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;600;600;600;600;600;600;600;4521;4521;5644;5644;5644;17737;5511;4123;14770;10597;9708;15762;10907;3659;3659 -225;'784;United Arab Emirates;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;216;216;216;216;216;216;216;216;240;240;299;299;299;940;482;1127;7521;5101;7393;11071;13138;4291;4291 -225;'784;United Arab Emirates;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2418;113;4600;7400;7400;15500;15500;15000;15000;29000;27100;27100;100000;143718;143718;143718;264628;275246;104935;131204;112057;138258;132029;110530;58169;100437;44240;120720;34005;50402;56565;55001;41183 -225;'784;United Arab Emirates;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;484;14;364;482;482;3368;3368;3476;3950;5611;3796;3796;5000;8767;8767;8767;27093;34281;6401;8003;6836;8434;8054;6742;5875;7321;4424;12177;3104;5973;6049;8202;6290 -225;'784;United Arab Emirates;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;600;600;600;600;600;600;600;4521;4521;5644;5644;5644;17737;5511;4123;14770;10597;9708;15762;10907;3659;3659 -225;'784;United Arab Emirates;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;216;216;216;216;216;216;216;216;240;240;299;299;299;940;482;1127;7521;5101;7393;11071;13138;4291;4291 -225;'784;United Arab Emirates;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;364;6311;2542;4400;9600;9600;14400;14400;1900;8700;6300;7900;9900;9900;15860;15860;15860;15860;36051;17925;41685;44882;15462;37193;15716;78315;57410;24413;26003;19294;19294;8820;18645;55000 -225;'784;United Arab Emirates;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;724;702;817;712;712;2720;2720;396;1233;2807;2004;1804;1804;2941;2941;2941;2941;12973;6811;12462;13680;7367;6232;6211;16231;9018;4670;7319;4689;4689;3924;10541;3080 -225;'784;United Arab Emirates;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;200;200;200;2484;2484;2484;2484;3794;1523;9434;6720;8859;9894;13850;4664;3879;6257;3665;8092;5985;6635;2025;14039 -225;'784;United Arab Emirates;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;73;73;73;720;720;720;720;2112;394;3037;1828;3798;1898;3765;2233;4317;2581;2033;3186;2137;2867;3723;5279 -225;'784;United Arab Emirates;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;5291;1779;2000;7000;7000;9000;9000;0;0;0;3900;3900;3900;1706;1706;1706;1706;22042;10700;28544;19190;12360;6815;8612;19874;8096;6922;11483;8554;8554;7020;9846;4460 -225;'784;United Arab Emirates;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;473;648;648;614;614;2175;2175;0;0;0;364;364;364;280;280;280;280;3615;1755;4681;3147;2027;1118;1412;10838;3154;3204;5093;3388;3388;2761;3517;1864 -225;'784;United Arab Emirates;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2930;1384;5231;3496;8115;9188;11008;458;1733;2704;678;2688;2714;4490;454;6 -225;'784;United Arab Emirates;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;428;202;764;511;1185;1342;1607;287;601;728;214;1160;1165;1743;637;3 -225;'784;United Arab Emirates;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;326;1020;763;2400;2600;2600;5400;5400;1900;8700;6300;4000;6000;6000;14154;14154;14154;14154;14009;7225;13141;25692;3102;30378;7104;58441;49314;17491;14520;10740;10740;1800;8799;50540 -225;'784;United Arab Emirates;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;251;54;169;98;98;545;545;396;1233;2807;1640;1440;1440;2661;2661;2661;2661;9358;5056;7781;10533;5340;5114;4799;5393;5864;1466;2226;1301;1301;1163;7024;1216 -225;'784;United Arab Emirates;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;200;200;200;2484;2484;2484;2484;864;139;4203;3224;744;706;2842;4206;2146;3553;2987;5404;3271;2145;1571;14033 -225;'784;United Arab Emirates;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;73;73;73;720;720;720;720;1684;192;2273;1317;2613;556;2158;1946;3716;1853;1819;2026;972;1124;3086;5276 -225;'784;United Arab Emirates;1630;Wood charcoal;5510;Production;t;28;33;38;45;53;63;74;87;103;121;131;159;188;230;288;345;407;504;565;620;713;843;979;1081;1222;1422;1500;1613;1642;1646;1714;1714;1714;1714;1714;1714;1714;1714;1714;2261;2300;2338;2378;2418;2459;2488;2518;2548;2578;2609;2630;2651;2672;2693;2715;2721;2727;2732;2738;2744;2750;2756;2761 -225;'784;United Arab Emirates;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7840;6400;5700;5700;4200;4200;6800;3800;3700;5400;5000;3431;2825;59767;59767;37478;81200;81200;81200;81200;151525;159084;106834;138038;111544;100554;88964;74517;56526;60247;87644;50671 -225;'784;United Arab Emirates;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1542;1107;926;926;1002;1002;1227;747;1045;853;1266;1266;1172;8795;8795;6253;12597;12597;12597;12597;26150;30082;28798;40010;33575;34016;33452;33303;23793;27115;39545;39600 -225;'784;United Arab Emirates;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;138;200;200;200;200;200;0;0;0;0;0;0;0;9580;9580;758;509;2988;5570;2864;8149;7311;7460;11460;8887;11084;33148;20943;14294;15720;25583;19145 -225;'784;United Arab Emirates;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;75;75;75;75;75;0;0;0;0;0;0;0;1452;1452;906;281;1204;2013;1681;4994;5153;5344;5918;4683;5186;12296;9785;7241;8454;16387;15405 -225;'784;United Arab Emirates;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3700;6000;9000;7500;7500;7500;4949;4949;4949;4949;14297;29502;32439;31349;13567;15147;24057;22062;25028;31959;17943;24027;15468;9703.49;31988;42071 -225;'784;United Arab Emirates;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;311;410;902;927;927;927;769;769;769;769;3436;3955;3786;3760;3447;3945;6349;7121;5667;9233;6657;6453;5487;2188.78;3907;3896 -225;'784;United Arab Emirates;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;2248;1563;1134;1296;1883;1102;1125;1106;2424;1327;2453;1440;2264;968;1334;13427 -225;'784;United Arab Emirates;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;936;479;451;543;558;352;492;522;1121;708;840;501;1011;1690.52;759;986 -225;'784;United Arab Emirates;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;506;700;1400;1400;1100;1100;2500;4800;4800;400;400;400;336;336;336;336;3497;24186;29491;26449;5403;7300;11256;7498;18635;21504;13155;16567;13622;4187.93;31325;40396 -225;'784;United Arab Emirates;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;94;196;196;175;175;102;201;201;135;135;135;269;269;269;269;2236;2574;2842;2400;986;1493;2081;2094;4207;4973;5089;5421;4938;1705.78;3608;3751 -225;'784;United Arab Emirates;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1200;254;277;265;198;857;763;531;740;327;778;655;2006;613;952;13291 -225;'784;United Arab Emirates;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;738;158;158;252;150;273;271;284;594;396;371;439;966;1505.52;636;974 -225;'784;United Arab Emirates;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;993;2200;1000;1000;1200;1200;1200;1200;4200;7100;7100;7100;4613;4613;4613;4613;10800;5316;2948;4900;8164;7847;12801;14564;6393;10455;4788;7460;1846;5515.56;663;1675 -225;'784;United Arab Emirates;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;87;94;94;50;50;209;209;701;792;792;792;500;500;500;500;1200;1381;944;1360;2461;2452;4268;5027;1460;4260;1568;1032;549;483;299;145 -225;'784;United Arab Emirates;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;410;100;0;0;100;100;0;0;0;0;0;0;0;0;0;0;1048;1309;857;1031;1685;245;362;575;1684;1000;1675;785;258;355;382;136 -225;'784;United Arab Emirates;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;6;0;0;4;4;0;0;0;0;0;0;0;0;0;0;198;321;293;291;408;79;221;238;527;312;469;62;45;185;123;12 -225;'784;United Arab Emirates;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;133;923;12194;13812;6102;2975;2109;1191;1607;2437.43;3131;7195 -225;'784;United Arab Emirates;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;203;4046;4076;1364;1190;1140;328;980;906;1283;2084 -225;'784;United Arab Emirates;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;57;1137;1682;1575;447;1061;1721;433;338;394;393 -225;'784;United Arab Emirates;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;71;569;498;498;182;398;448;218;185;1475;129 -225;'784;United Arab Emirates;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;133;923;2053;97;109;184;521;108;711;572;1596;2779 -225;'784;United Arab Emirates;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;203;863;78;30;110;380;89;408;368;338;776 -225;'784;United Arab Emirates;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;57;302;77;144;43;53;11;13;86;82;101 -225;'784;United Arab Emirates;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;71;310;103;77;25;65;10;13;33;58;26 -225;'784;United Arab Emirates;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10141;13715;5993;2791;1588;1083;896;1865.43;1535;4416 -225;'784;United Arab Emirates;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3183;3998;1334;1080;760;239;572;538;945;1308 -225;'784;United Arab Emirates;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;835;1605;1431;404;1008;1710;420;252;312;292 -225;'784;United Arab Emirates;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;259;395;421;157;333;438;205;152;1417;103 -225;'784;United Arab Emirates;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -225;'784;United Arab Emirates;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;252141;356900;340900;349000;273100;289600;447000;362200;424900;447600;315600;467400;602401;729801;729901;1124900;1258387;719400;783525;913300;1040000;1010000;1275906;1220635;1212313;1282765;1134161;1199041;975849;1112025;982221;877000 -225;'784;United Arab Emirates;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46897;60025;69471;76850;57099;54026;70677;42526;53091;53599;50071;73319;106724;135379;139353;276199;395687;175132;207582;237434;271717;300787;349987;312133;276261;330533;341948;330185;245906;390472;411777;245450 -225;'784;United Arab Emirates;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39944;100200;3900;3900;181;181;0;0;0;700;700;700;11791;11791;11791;20000;108647;94973;75752;43019;152726;195657;191153;237830;175919;113166;156374;117015;100473;108913;122121;122155 -225;'784;United Arab Emirates;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7793;12224;389;389;28;28;0;0;0;92;92;92;2266;2266;2266;3738;58762;35478;45703;30460;50405;61327;58762;74145;47443;37524;52103;44279;35591;55436;64677;64677 -225;'784;United Arab Emirates;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -225;'784;United Arab Emirates;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;131283;235900;233500;233500;189300;205800;345000;123100;185800;256300;265600;367400;506100;633500;633600;1012600;978700;641300;693200;743000;856000;839000;1067000;994843;1049807;996460;910114;929034;746311;888533;754548;704000 -225;'784;United Arab Emirates;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19145;32273;35435;35435;29376;26303;44755;14236;24801;26634;35688;44510;67217;95872;99846;193455;210273;112618;131424;149853;177100;215109;231364;186083;177449;172470;185845;188140;144608;273695;267514;170368 -225;'784;United Arab Emirates;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1146;3700;3700;3700;81;81;0;0;0;700;700;700;11791;11791;11791;20000;34822;20262;25415;23747;132685;167524;156724;196015;144853;74310;100110;73762;50661;61635;78684;78684 -225;'784;United Arab Emirates;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;155;351;351;351;11;11;0;0;0;92;92;92;2266;2266;2266;3738;15206;10199;13097;11980;31925;40312;41355;51867;29141;15308;22630;16489;10723;18896;27491;27491 -225;'784;United Arab Emirates;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -225;'784;United Arab Emirates;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120858;121000;107400;115500;83800;83800;102000;239100;239100;191300;50000;100000;96301;96301;96301;112300;279687;78100;90325;170300;184000;171000;208906;225792;162506;286305;224047;270007;229538;223492;227673;173000 -225;'784;United Arab Emirates;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27752;27752;34036;41415;27723;27723;25922;28290;28290;26965;14383;28809;39507;39507;39507;82744;185414;62514;76158;87581;94617;85678;118623;126050;98812;158063;156103;142045;101298;116777;144263;75082 -225;'784;United Arab Emirates;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38798;96500;200;200;100;100;0;0;0;0;0;0;0;0;0;0;73825;74711;50337;19272;20041;28133;34429;41815;31066;38856;56264;43253;49812;47278;43437;43471 -225;'784;United Arab Emirates;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7638;11873;38;38;17;17;0;0;0;0;0;0;0;0;0;0;43556;25279;32606;18480;18480;21015;17407;22278;18302;22216;29473;27790;24868;36540;37186;37186 -225;'784;United Arab Emirates;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;3000;3000;2000;2000;2000;2000;2000;2000 -225;'784;United Arab Emirates;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;886;1100;1300;1300;2100;3800;4900;3000;6100;10000;10000;10000;12239;12239;12239;13500;18240;10565;5176;5762;4248;5293;9447;12539;10256;13203;12491;9387;7779;7500;10940;8249 -225;'784;United Arab Emirates;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1025;980;1171;1171;2241;2072;2363;2720;3783;3672;3672;7000;11253;11253;11253;24394;28103;20931;18356;17347;14432;16797;19702;23941;25689;28263;28409;24553;19661;24430;32063;26432 -225;'784;United Arab Emirates;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;365;200;200;200;200;200;0;0;0;0;0;0;0;0;0;0;5078;1654;6953;846;1268;1573;5755;2395;1969;3297;3554;2589;2110;2810;4219;2784 -225;'784;United Arab Emirates;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;496;137;137;137;137;137;0;0;0;0;0;0;0;0;0;0;3923;2304;3075;1074;1127;1970;4547;2426;1792;4055;4689;5869;4614;5739;7554;6070 -225;'784;United Arab Emirates;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -225;'784;United Arab Emirates;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;272339;200639;288772;202000;241900;243400;318800;201400;199800;314700;314700;314700;405729;405729;405729;694073;769973;456945;547592;708088;785392;746026;1056924;1328713;1433957;1873543;1788062;1579740;1202817;1478254.35;1387922;1415471 -225;'784;United Arab Emirates;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100397;89639;127393;87647;108007;118017;88900;69004;67567;104322;104322;104322;157422;157422;157422;389159;523959;296189;315290;417301;476181;459989;428809;567736;535111;598111;610862;484371;369362;479126.1;563594;647893 -225;'784;United Arab Emirates;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40118;43000;43200;26200;26068;68;0;0;0;44300;44300;44300;25751;25751;25751;44207;153966;27721;124073;42272;83038;79484;187207;173735;170467;136181;98030;108713;113840;223203.96;243407;252128 -225;'784;United Arab Emirates;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14722;13243;13302;11883;11840;16;0;0;0;12316;12316;12316;10804;10804;10804;19001;88112;32467;66309;35426;62354;52178;73490;75454;59346;53393;44891;40858;36912;84863.96;102276;100244 -225;'784;United Arab Emirates;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -225;'784;United Arab Emirates;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;246409;172200;254300;188700;208600;210100;271000;162700;158000;229700;229700;229700;114529;114529;114529;317000;423503;152986;223938;311258;360000;311508;394431;734030;800029;1041056;1006790;735542;522740;700397;655512;706512 -225;'784;United Arab Emirates;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92656;79998;116245;83400;96620;106630;77425;60124;56510;81983;81983;81983;77887;77887;77887;215753;349890;156397;163965;232618;267880;263769;237084;395861;372548;379735;391484;276051;192009;252606;286326;303354 -225;'784;United Arab Emirates;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40049;43000;43000;26000;26000;0;0;0;0;44300;44300;44300;24550;24550;24550;23000;50142;26406;55716;40002;52263;50658;60065;100858;106579;75670;59476;54716;34996;77037;92676;92676 -225;'784;United Arab Emirates;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14689;13243;13243;11824;11824;0;0;0;0;12316;12316;12316;10500;10500;10500;9900;40326;30228;37855;32925;47076;36192;34797;49644;41705;34018;29492;22622;13969;36774;42616;42616 -225;'784;United Arab Emirates;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;224;575 -225;'784;United Arab Emirates;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;158;428 -225;'784;United Arab Emirates;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;7 -225;'784;United Arab Emirates;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;6 -225;'784;United Arab Emirates;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5919;2900;7500;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -225;'784;United Arab Emirates;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1566;1024;2348;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -225;'784;United Arab Emirates;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;0;200;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -225;'784;United Arab Emirates;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;0;59;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -225;'784;United Arab Emirates;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7500;8400;8400;10500;4700;5900;2000;2000;2000;14994;14994;14994;58000;48126;22676;23253;17384;20013;7804;58077;62711;76381;102565;109702;112785;95645;83802.16;118003;95693 -225;'784;United Arab Emirates;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2348;3068;3068;2919;1945;1503;894;894;894;4692;4692;4692;19200;28628;14046;15140;12647;13386;4438;22203;23092;25865;34743;38619;36652;30794;31458.13;51019;44938 -225;'784;United Arab Emirates;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;68;68;0;0;0;0;0;0;1201;1201;1201;1201;4939;655;1405;891;737;1337;2155;9414;2035;3753;6037;6783;10238;7564.33;12401;20616 -225;'784;United Arab Emirates;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;16;16;0;0;0;0;0;0;304;304;304;304;2298;1563;905;561;583;793;1041;6105;907;2194;3376;3866;5140;4660.12;7466;8793 -225;'784;United Arab Emirates;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3657;512;1488;2984;355;2065;2761;1770;2470;3887;2244;2409;2273;1372;2433;2354 -225;'784;United Arab Emirates;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2112;345;527;1062;323;903;1806;612;772;1409;783;640;603;481.63;836;756 -225;'784;United Arab Emirates;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1074;60;60;75;1;9;5;85;40;9;105;107;14;59;162;993 -225;'784;United Arab Emirates;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;800;42;42;20;1;174;114;24;10;2;24;31;8;25;126;308 -225;'784;United Arab Emirates;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20011;25539;26972;5800;24900;24900;37300;34000;35900;83000;83000;83000;276206;276206;276206;319073;294687;280771;298913;376462;405024;424649;601655;530202;555077;726035;669326;729004;582159;692683.19;611974;610912 -225;'784;United Arab Emirates;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6175;8617;8800;1899;8319;8319;8556;6935;9554;21445;21445;21445;74843;74843;74843;154206;143329;125401;135658;170974;194592;190879;167716;148171;135926;182224;179976;171028;145956;194580.34;225413;298845 -225;'784;United Arab Emirates;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;20006;97811;600;66892;1304;30037;27480;124982;63378;61813;56749;32412;47107;68592;138543.63;138168;137843 -225;'784;United Arab Emirates;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;8797;44688;634;27507;1920;14694;15019;37538;19681;16724;17179;11999;14339;17795;43404.84;52068;48527 -225;'784;United Arab Emirates;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36273;16372;10568;8275;10078;4991;7398;9087;6656;9461;8609;5928;4391;3704;4817.4;3409;3660 -225;'784;United Arab Emirates;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13600;8602;8323;5686;8236;4371;5493;5655;4388;4326;3924;3530;2267;2176;3298.19;2729;3131 -225;'784;United Arab Emirates;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20006;10759;77;8260;198;450;603;14065;877;939;1100;389;555;460;689;302;206 -225;'784;United Arab Emirates;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8797;5141;60;3921;115;332;335;4929;162;566;466;153;267;222;498.76;485;188 -225;'784;United Arab Emirates;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14400;14400;10300;10000;22800;72000;72000;72000;249791;249791;249791;256600;208323;213840;227767;285877;332982;336878;473763;413905;411666;603507;560538;615376;523857;652891.2;569281;569281 -225;'784;United Arab Emirates;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6419;6419;4634;4585;8065;20181;20181;20181;71137;71137;71137;136900;98442;89009;98079;123775;148894;148000;140384;123915;110835;157993;153409;150494;133405;184448.11;214990;282051 -225;'784;United Arab Emirates;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87052;489;50410;904;24539;21230;97719;52277;45562;49561;28567;42885;59620;134972.15;135599;135599 -225;'784;United Arab Emirates;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39547;550;18383;1258;11679;12244;30360;17978;14050;15692;11194;13083;16385;42113.26;47431;47431 -225;'784;United Arab Emirates;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1900;4000;5800;5800;10500;10500;27000;24000;13100;11000;11000;11000;26415;26415;26415;26200;69992;56363;62871;80507;67051;80373;118805;109641;133950;113919;102860;109237;54598;34974.59;39284;37971 -225;'784;United Arab Emirates;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;820;1647;1899;1899;1900;1900;3922;2350;1489;1264;1264;1264;3706;3706;3706;3706;36285;28069;31893;38963;41327;37386;21677;19868;20765;20307;23037;18267;10375;6834.04;7694;13663 -225;'784;United Arab Emirates;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;34;8222;202;5048;5647;13198;10224;15312;6088;3456;3667;8512;2882.48;2267;2038 -225;'784;United Arab Emirates;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;24;5203;547;2683;2440;2249;1541;2108;1021;652;989;1188;792.82;4152;908 -225;'784;United Arab Emirates;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18111;21539;21172;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -225;'784;United Arab Emirates;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5355;6970;6901;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -225;'784;United Arab Emirates;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -225;'784;United Arab Emirates;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -225;'784;United Arab Emirates;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83000;74000;60000;65000;63000;53000;84000;89000;86000;79000;100000;150000;252000;284000;282000;289000;257000;310000;320000;286000;313000;375000;420000;440000;450000;450000;500000;500000;500000;500000;500000;500000;500000;500000 -225;'784;United Arab Emirates;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3529;13886;37142;21402;23554;27260;30622;28671;42300;57400;61351;70935;42589;65395;52920;48421;76195;72272;94779;92636;113433;131944;191039;297556;233365;232350;270987;339158;412217;586927;678827;624953.8;692169;944864 -225;'784;United Arab Emirates;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;168;966;3446;2883;3637;5265;7728;7041;7047;8345;12141;15458;13136;16415;15359;17937;29915;29052;50352;32474;50976;57571;68203;114574;92705;100901;100726;129481;180289;281321;266937;390392.17;547290;640980 -225;'784;United Arab Emirates;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55944;57196;66031;54128;53286;46598;71527;74617;83138;91420;123790;104754;178974;232997;218760;220792;201178;263667;270220;228827;285181;371029;405499;459283;459628;461769;525627;476133;515212;469155;296125;382095.49;464120;428905 -225;'784;United Arab Emirates;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10921;10575;13027;7761;10286;11080;11329;11030;10922;12048;20912;14215;23360;34591;34174;35844;33240;46407;46826;40441;48978;70740;72875;82888;83564;81204;88416;117800;103029;133054;79652;160776.31;203947;155009 -225;'784;United Arab Emirates;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;366;2200;3200;3200;12700;12700;14700;14000;6800;17000;17000;17000;17406;17406;33006;19329;46602;51491;61536;75918;84613;163928;127382;140221;144703;191333;184309;401869;519375;534015.8;612755;898724 -225;'784;United Arab Emirates;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;215;745;1255;1255;5824;5824;5599;5601;5828;8759;8759;8759;9083;9083;22512;10466;37242;23921;40019;45677;48753;92525;79643;87570;81600;105922;149767;262829;253897;377297.17;534544;633136 -225;'784;United Arab Emirates;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;700;300;300;300;300;0;0;0;0;0;0;0;0;0;1;752;541;2181;1362;3024;490;321;1152;2066;6295;20639;85457;61923;73712.32;73582;145502 -225;'784;United Arab Emirates;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;197;100;100;100;100;0;0;0;0;0;0;0;0;0;4;642;1111;1859;1207;1522;348;475;1126;1691;4864;18505;66057;38663;63949.27;80394;86520 -225;'784;United Arab Emirates;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;356;2400;3400;3400;12200;12200;14200;14200;7000;17500;17500;17500;20363;20363;35963;19540;38767;51370;59862;75472;84264;163918;127219;138638;142717;191106;184118;401632;519037;533593.8;612291;898430 -225;'784;United Arab Emirates;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;205;823;1333;1333;5725;5725;5500;5722;5949;9121;9121;9121;10693;10693;24122;10633;29662;23767;38759;45280;48520;92473;79387;86827;76924;105415;149368;262539;253505;376779.17;533778;632480 -225;'784;United Arab Emirates;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;700;300;300;300;300;0;0;0;0;0;0;0;0;0;3;990;647;1068;1407;1061;651;235;509;1964;6027;20147;85402;61941;69822.68;73576;145391 -225;'784;United Arab Emirates;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;197;100;100;100;100;0;0;0;0;0;0;0;0;0;6;926;1168;774;1278;916;564;226;397;1605;4497;18028;65932;38663;60721.63;80374;86376 -225;'784;United Arab Emirates;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;607;544;36;25;1416;4876;1021 -225;'784;United Arab Emirates;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;397;422;135;31;1069;3832;641 -225;'784;United Arab Emirates;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;145;882.51;5130;1291 -225;'784;United Arab Emirates;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105;95;724;4484;730 -225;'784;United Arab Emirates;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;1000;1000;0;0;0;0;0;0;0;0;0;38;146;727;382;1141;322;284;54;1086;1357;;;;;;; -225;'784;United Arab Emirates;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;78;446;446;0;0;0;0;0;0;0;0;0;83;82;338;258;426;105;130;27;445;462;;;;;;; -225;'784;United Arab Emirates;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;7;7;7;7;27;27;2;0;0;;;;;;; -225;'784;United Arab Emirates;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;11;11;11;11;29;29;10;0;0;;;;;;; -225;'784;United Arab Emirates;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1885;1999;1166;499;18;523;1603;0;8;0;;;;;;; -225;'784;United Arab Emirates;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1300;1446;581;269;24;288;1120;4;9;1;;;;;;; -225;'784;United Arab Emirates;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;78;1;0;15;0;;;;;;; -225;'784;United Arab Emirates;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;153;153;153;153;48;1;0;9;0;;;;;;; -225;'784;United Arab Emirates;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;356;2200;3000;3000;11000;11000;14000;14000;6800;17000;17000;17000;17406;17406;33006;17406;36251;49276;58795;74181;83275;161872;127051;137537;141147;190499;183574;401595;519004;532177.8;607415;897409 -225;'784;United Arab Emirates;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;205;745;1177;1177;5201;5201;5422;5601;5828;8759;8759;8759;9083;9083;22512;9083;27714;22712;37999;44583;47988;91056;79200;86370;76305;105017;148946;262402;253471;375706.17;529935;631838 -225;'784;United Arab Emirates;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;700;300;300;300;300;0;0;0;0;0;0;0;0;0;0;732;520;941;1219;788;455;230;490;1961;6027;20146;85375;61772;68916.18;68441;144100 -225;'784;United Arab Emirates;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;197;100;100;100;100;0;0;0;0;0;0;0;0;0;0;478;938;544;881;606;301;211;371;1604;4497;18023;65826;38559;59988.63;75885;85645 -225;'784;United Arab Emirates;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;325;985;450;420;3792;9066;4237;3481;3351;224;48;30;483;2186;3407 -225;'784;United Arab Emirates;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;85;503;276;212;1968;5276;2180;2021;1699;205;10;15;404;2060;2580 -225;'784;United Arab Emirates;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;418;77;718;288;43;325;12;298;0;9;1;2118;583;813.98;1484;1484 -225;'784;United Arab Emirates;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;256;49;392;263;78;209;18;210;0;26;7;1540;323;389;1381;1381 -225;'784;United Arab Emirates;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;235;700;2800;2800;8800;8800;14000;14000;6800;17000;17000;17000;17000;17000;32600;17000;35612;41659;48670;69380;82746;157760;116977;131864;136175;186861;183225;401176;518587;531494.8;604709;893219 -225;'784;United Arab Emirates;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;123;324;1063;1063;4295;4295;5422;5601;5828;8759;8759;8759;8688;8688;22117;8688;26667;18778;31273;41235;47626;88817;73201;83268;72575;103082;148494;262113;253110;375142.17;527487;627566 -225;'784;United Arab Emirates;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;700;300;300;300;300;0;0;0;0;0;0;0;0;0;0;217;102;102;810;624;9;217;140;1666;5921;20075;82827;61070;68006.2;66474;142133 -225;'784;United Arab Emirates;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;197;100;100;100;100;0;0;0;0;0;0;0;0;0;0;180;68;68;534;444;8;191;122;1061;4351;17906;64027;38154;59533.63;74192;83952 -225;'784;United Arab Emirates;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;287;125;371;387;200;520;783 -225;'784;United Arab Emirates;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;236;247;279;346;160;388;1692 -225;'784;United Arab Emirates;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97;70;430;119;96;483;483 -225;'784;United Arab Emirates;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120;110;259;82;66;312;312 -225;'784;United Arab Emirates;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;44;22;22;22;22;99;0;2;;;;;;; -225;'784;United Arab Emirates;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;224;224;7;7;7;7;61;0;3;;;;;;; -225;'784;United Arab Emirates;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;270;25;25;25;25;0;0;0;;;;;;; -225;'784;United Arab Emirates;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;764;11;11;11;11;0;0;0;;;;;;; -225;'784;United Arab Emirates;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121;1500;200;200;2200;2200;0;0;0;0;0;0;406;406;406;406;580;7248;9118;4329;87;298;909;1436;1489;;;;;;; -225;'784;United Arab Emirates;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;421;114;114;906;906;0;0;0;0;0;0;395;395;395;395;782;3625;6216;3065;143;264;662;922;1706;;;;;;; -225;'784;United Arab Emirates;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;51;71;96;96;96;96;1;52;295;;;;;;; -225;'784;United Arab Emirates;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;36;57;73;73;73;73;2;39;543;;;;;;; -225;'784;United Arab Emirates;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;200;200;200;200;200;200;500;500;500;2957;2957;2957;211;371;201;186;132;144;159;114;7;213;0;0;1;8;0;0;0 -225;'784;United Arab Emirates;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;78;78;78;78;78;121;121;362;362;362;1610;1610;1610;167;420;136;233;247;139;167;156;3;156;1;0;2;3;4;11;1 -225;'784;United Arab Emirates;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;238;107;107;168;168;168;3;4;3;0;1;0;24;24;5;0 -225;'784;United Arab Emirates;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;284;66;66;233;233;233;5;17;1;0;5;1;9;9;5;1 -225;'784;United Arab Emirates;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;0;0;0;700;700;700;0;0;0;0;0;0;0;0;0;8206;322;1860;578;493;169;277;1590;2199;227;191;238;346;422;464;294 -225;'784;United Arab Emirates;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;0;0;0;177;177;177;0;0;0;0;0;0;0;0;0;8000;290;1493;644;372;219;412;746;4832;508;399;292;395;522;777;657 -225;'784;United Arab Emirates;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;1;1220;123;2131;7;89;647;105;268;493;55;6;3913.64;11;111 -225;'784;United Arab Emirates;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;9;1151;162;839;17;254;746;87;367;482;126;9;3236.64;25;145 -225;'784;United Arab Emirates;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1146;9;534;102;669;610;649;626;879;981;1510;1456;1144;658;699;1577 -225;'784;United Arab Emirates;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;386;9;298;120;203;238;441;602;865;814;1099;1393;1213;820;726;1101 -225;'784;United Arab Emirates;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;194;2;2;2;3;3;25;14;36;6;40;55;186;31;253;2764 -225;'784;United Arab Emirates;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;175;2;2;2;10;4;22;15;10;18;148;163;191;81;468;1272 -225;'784;United Arab Emirates;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83000;74000;60000;65000;63000;53000;84000;89000;86000;79000;100000;150000;252000;284000;282000;289000;257000;310000;320000;286000;313000;375000;420000;440000;450000;450000;500000;500000;500000;500000;500000;500000;500000;500000 -225;'784;United Arab Emirates;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3529;13886;36776;19202;20354;24060;17922;15971;27600;43400;54551;53935;25589;48395;35514;31015;43189;52943;48177;41145;51897;56026;106426;133628;105983;92129;126284;147825;227908;185058;159452;90938;79414;46140 -225;'784;United Arab Emirates;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;168;966;3231;2138;2382;4010;1904;1217;1448;2744;6313;6699;4377;7656;6276;8854;7403;18586;13110;8553;10957;11894;19450;22049;13062;13331;19126;23559;30522;18492;13040;13095;12746;7844 -225;'784;United Arab Emirates;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55944;57196;66031;53428;52986;46298;71227;74317;83138;91420;123790;104754;178974;232997;218760;220792;201178;263666;269468;228286;283000;369667;402475;458793;459307;460617;523561;469838;494573;383698;234202;308383.17;390538;283403 -225;'784;United Arab Emirates;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10921;10575;13027;7564;10186;10980;11229;10930;10922;12048;20912;14215;23360;34591;34174;35844;33240;46403;46184;39330;47119;69533;71353;82540;83089;80078;86725;112936;84524;66997;40989;96827.04;123553;68489 -225;'784;United Arab Emirates;1876;Paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55000;58000;58000;78000;81000;81000;81000;81000;81000;300000;246000;246000;246000;246000;246000;246000;246000;246000;246000;246000;246000;294000;304000;304000 -225;'784;United Arab Emirates;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79307;138300;155700;155700;101800;132500;228800;284999;267600;301800;278186;332207;480877;476783;480826;580569;649631;545194;643656;858449;717148;852317;921864;831534;754627;991589;889714;1043972;998692;1168086.42;1225303;838808 -225;'784;United Arab Emirates;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51970;83416;104006;104006;74713;97633;153732;168878;198637;179243;157925;191968;315619;312202;317077;427313;582993;407333;569586;790130;570472;670244;792876;649898;587110;807524;944699;916958;790298;1003804.29;1315474;1049368 -225;'784;United Arab Emirates;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30441;7800;3600;3600;1714;3214;3500;6900;49500;63500;59100;59100;52069;52069;52069;43835;47270;44390;47859;58766;78928;96766;122732;157858;130331;187719;470638;615855;1475320;819945.14;887426;856405 -225;'784;United Arab Emirates;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23425;5340;1996;1996;1796;3786;1149;5843;39747;40423;36864;36864;40954;40954;40954;39135;55337;49541;54314;62720;51719;74467;108733;121361;104995;141555;357682;501191;1162850;753104.1;1026985;971031 -225;'784;United Arab Emirates;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35046;68800;85200;85200;43400;43400;129000;150999;119100;141500;130500;179851;244614;244614;244614;297700;380875;270471;331130;463686;387419;398428;384174;335399;343708;446278;341163;449407;353365;498380.7;501916;340892 -225;'784;United Arab Emirates;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26438;47608;60404;60404;42252;42252;89466;91935;94246;89428;76728;107920;172924;172924;172924;239176;365383;207329;288453;432852;341285;338341;332226;278578;264048;389170;417910;415674;297010;424014.67;504590;447424 -225;'784;United Arab Emirates;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2696;2500;400;400;214;214;0;0;16900;13900;15000;15000;20449;20449;20449;22837;20883;17374;20794;12605;17285;18611;17619;14030;12054;26211;107304;131320;962020;389077.16;466776;453157 -225;'784;United Arab Emirates;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2758;1899;213;213;95;95;0;0;14542;8815;9263;9263;14314;14314;14314;17004;20031;19964;24696;15480;15420;16826;18903;15735;13506;23860;104482;144950;774591;340539.05;536011;530317 -225;'784;United Arab Emirates;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7266;15900;21000;21000;13400;13400;18000;20000;12100;17400;17400;17400;26210;26210;26210;66900;100532;71186;68344;48134;61770;66615;52204;36957;33491;30353;26957;21223;7601;8172.32;12194;10379 -225;'784;United Arab Emirates;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3612;7253;9861;9861;8372;8372;9143;9129;6453;9910;9910;9910;12397;12397;12397;41012;83722;42404;44184;32231;43472;44591;38103;21616;18595;16623;19820;14762;3537;4958.34;7427;8320 -225;'784;United Arab Emirates;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;128;300;200;200;200;200;0;0;0;1600;2700;2700;4533;4533;4533;4533;2209;1274;1274;3957;2151;2574;522;331;460;1248;2157;1658;46105;1522.66;1970;1973 -225;'784;United Arab Emirates;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;170;68;68;68;68;0;0;0;952;1400;1400;2412;2412;2412;2412;1820;918;918;3291;1544;2139;431;241;317;1006;1493;1086;9397;594;1157;1425 -225;'784;United Arab Emirates;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27780;52900;64200;64200;30000;30000;111000;130999;107000;124100;113100;162451;218404;218404;218404;230800;280343;199285;262786;415552;325649;331813;331970;298442;310217;415925;314206;428184;345764;490208.39;489722;330513 -225;'784;United Arab Emirates;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22826;40355;50543;50543;33880;33880;80323;82806;87793;79518;66818;98010;160527;160527;160527;198164;281661;164925;244269;400621;297813;293750;294123;256962;245453;372547;398090;400912;293473;419056.33;497163;439104 -225;'784;United Arab Emirates;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2568;2200;200;200;14;14;;;16900;12300;12300;12300;15916;15916;15916;18304;18674;16100;19520;8648;15134;16037;17097;13699;11594;24963;105147;129662;915915;387554.5;464806;451184 -225;'784;United Arab Emirates;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2704;1729;145;145;27;27;;;14542;7863;7863;7863;11902;11902;11902;14592;18211;19046;23778;12189;13876;14687;18472;15494;13189;22854;102989;143864;765194;339945.05;534854;528892 -225;'784;United Arab Emirates;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25935;30607;25000;22000;40000;40000;42156;42156;42156;34600;44197;18971;45397;27889;25947;36515;38244;36288;44458;42187;25327;31822;19597;15823.71;26689;23047 -225;'784;United Arab Emirates;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17714;18261;19361;13976;19320;19320;30376;30376;30376;27802;38691;16130;33901;25694;24582;28846;27817;23099;23444;23643;17159;27336;15424;11726.21;20453;20258 -225;'784;United Arab Emirates;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;872;480;3607;468;1462;1428;525;346;348;152;469;996;2143;25841.5;41731;58167 -225;'784;United Arab Emirates;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;844;1028;3349;671;631;910;719;346;632;148;614;1443;2318;30078.05;53708;53431 -225;'784;United Arab Emirates;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28009;33056;27000;44000;15000;15000;63786;63786;63786;76400;92712;78010;78444;243284;156163;131511;108165;101301;102349;152075;153344;173851;136937;272097;195502;161850 -225;'784;United Arab Emirates;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21114;21767;23078;26882;8838;8838;46883;46883;46883;67203;92390;65426;81930;232823;144279;122529;112040;104805;103102;146656;165347;169804;117221;199051;207507;219351 -225;'784;United Arab Emirates;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10700;8300;8300;8300;6112;6112;6112;8500;11776;8325;8235;3121;6331;5264;5996;3940;4422;12576;33537;86536;876134;263614;361771;347988 -225;'784;United Arab Emirates;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8727;4795;4795;4795;4376;4376;4376;7066;10466;11549;11549;4973;5967;5192;7015;6434;5297;12973;38906;73607;702951;226857;409939;412947 -225;'784;United Arab Emirates;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57056;67336;55000;58100;58100;107451;112462;112462;112462;119800;143434;102304;138945;144379;143539;163787;185561;160853;163410;221663;135535;222511;189230;202287.67;267531;145616 -225;'784;United Arab Emirates;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41495;42778;45354;38660;38660;69852;83268;83268;83268;103159;150580;83369;128438;142104;128952;142375;154266;129058;118907;202248;215584;203772;160828;208279.12;269203;199495 -225;'784;United Arab Emirates;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6200;4000;4000;4000;9804;9804;9804;9804;6026;7295;7678;5059;7341;9345;10576;9413;6824;12235;71141;42130;37638;98099;61304;45029 -225;'784;United Arab Emirates;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5815;3068;3068;3068;7526;7526;7526;7526;6901;6469;8880;6545;7278;8585;10738;8714;7260;9733;63469;68814;59925;83010;71207;62514 -225;'784;United Arab Emirates;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55000;58000;58000;78000;81000;81000;81000;81000;81000;300000;246000;246000;246000;246000;246000;246000;246000;246000;246000;246000;246000;294000;304000;304000 -225;'784;United Arab Emirates;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44261;69500;70500;70500;58400;89100;99800;134000;148500;160300;147686;152356;236263;232169;236212;282869;268756;274723;312526;394763;329729;453889;537690;496135;410919;545311;548551;594565;645327;669705.71;723387;497916 -225;'784;United Arab Emirates;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25532;35808;43602;43602;32461;55381;64266;76943;104391;89815;81197;84048;142695;139278;144153;188137;217610;200004;281133;357278;229187;331903;460650;371320;323062;418354;526789;501284;493288;579789.62;810884;601944 -225;'784;United Arab Emirates;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27745;5300;3200;3200;1500;3000;3500;6900;32600;49600;44100;44100;31620;31620;31620;20998;26387;27016;27065;46161;61643;78155;105113;143828;118277;161508;363334;484535;513300;430867.98;420650;403248 -225;'784;United Arab Emirates;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20667;3441;1783;1783;1701;3691;1149;5843;25205;31608;27601;27601;26640;26640;26640;22131;35306;29577;29618;47240;36299;57641;89830;105626;91489;117695;253200;356241;388259;412565.06;490974;440714 -225;'784;United Arab Emirates;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17000;20000;20000;43000;45000;45000;45000;45000;45000;70000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;62000;110000;120000;120000 -225;'784;United Arab Emirates;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12400;16400;7086;11756;7828;3734;7777;9579;12496;10866;12992;20846;15065;45945;21042;24381;25720;39173;30542;32807;19680;18647.18;22756;21733 -225;'784;United Arab Emirates;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11715;14940;6882;9733;7996;4579;9454;12539;20267;14781;18728;25119;17541;49536;28091;29657;28871;43435;38160;39117;20984;21953.79;31907;37376 -225;'784;United Arab Emirates;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3100;7100;6000;6000;12336;12336;12336;7058;14707;8756;8756;12176;22430;7521;27099;27889;30952;42817;42817;112509;153781;119477.49;138554;125071 -225;'784;United Arab Emirates;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3702;7266;6015;6015;14363;14363;14363;9579;19164;11466;11466;17569;11812;10540;37983;38425;40884;55613;55613;148088;171557;149454.94;219081;203761 -225;'784;United Arab Emirates;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38000;38000;38000;35000;36000;36000;36000;36000;36000;230000;184000;184000;184000;184000;184000;184000;184000;184000;184000;184000;184000;184000;184000;184000 -225;'784;United Arab Emirates;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;124000;132700;131600;131600;209889;209889;209889;255921;250241;234263;259541;334597;299357;381615;473253;444418;349218;490580;497811;535492;595553;624367.98;660574;453159 -225;'784;United Arab Emirates;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75499;58091;59754;59754;103668;103668;103668;160256;186902;125418;182464;253561;190374;252431;350834;312536;244643;334310;431116;390497;381612;487976.53;659822;456668 -225;'784;United Arab Emirates;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25800;37700;33300;33300;17630;17630;17630;12730;10788;15990;16039;29430;38055;67596;73363;106810;84463;115249;317726;366310;352335;306157.89;270211;270700 -225;'784;United Arab Emirates;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15646;19671;16915;16915;9235;9235;9235;9592;7991;14018;14059;20817;22236;41195;45849;61864;42698;59948;189620;191596;186330;245449.87;244297;205376 -225;'784;United Arab Emirates;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38000;38000;38000;35000;36000;36000;36000;36000;36000;230000;184000;184000;184000;184000;184000;184000;184000;184000;184000;184000;184000;184000;184000;184000 -225;'784;United Arab Emirates;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53000;66800;64000;64000;107022;107022;107022;125353;126031;112027;121486;152728;111087;158026;228933;249545;157659;237224;209113;223659;285617;282545.18;270522;222816 -225;'784;United Arab Emirates;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20508;19929;22678;22678;42813;42813;42813;62922;72137;42772;62773;90333;58538;89529;124283;123797;85770;128298;136266;109180;126616;169801.92;197241;136729 -225;'784;United Arab Emirates;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5700;10600;6200;6200;10534;10534;10534;6956;4301;6296;6296;2749;5287;19683;31100;50818;52991;108036;293246;295114;297114;260883.39;220369;222027 -225;'784;United Arab Emirates;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2434;3647;891;891;3938;3938;3938;4764;2439;3526;3526;1762;3039;10893;16066;24740;22694;51361;157148;124431;115026;156742.19;142822;105758 -225;'784;United Arab Emirates;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30400;31300;31300;31300;32559;32559;32559;51693;61413;80966;92821;124876;143862;150107;171327;102823;102898;132380;158562;199843;192817;208436.52;239532;139997 -225;'784;United Arab Emirates;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27947;20961;20961;20961;27636;27636;27636;41956;52860;53429;72643;103129;92358;103917;152679;98892;95367;119494;185636;193231;172834;219519.08;293601;193349 -225;'784;United Arab Emirates;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1700;3700;3700;3700;2226;2226;2226;835;374;6184;6184;19386;24906;39752;33484;45561;28820;2442;15773;50630;38344;31083.62;27865;26486 -225;'784;United Arab Emirates;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1941;2822;2822;2822;1363;1363;1363;861;713;5605;5605;11839;12642;23687;20061;26361;16522;4761;27189;50433;58525;73995.88;78162;70809 -225;'784;United Arab Emirates;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33800;25500;25000;25000;38220;38220;38220;77500;59686;37971;41050;52119;36627;66063;60087;77385;74744;105892;118001;93018;101156;114973.04;132443;79220 -225;'784;United Arab Emirates;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23938;13764;13068;13068;23395;23395;23395;53921;59719;25311;42866;54519;32947;52752;66798;82591;56619;79115;102589;79176;74615;88137.65;156309;117272 -225;'784;United Arab Emirates;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18400;23400;23400;23400;4870;4870;4870;4870;5774;3477;3477;7100;7082;7866;8215;9962;2275;3688;7613;10797;9860;10561.71;15157;14002 -225;'784;United Arab Emirates;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11271;13202;13202;13202;3934;3934;3934;3934;4735;4810;4810;6719;6086;6112;8650;9809;2949;3051;4604;12432;10268;12675.57;19016;21806 -225;'784;United Arab Emirates;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6800;9100;11300;11300;32088;32088;32088;1375;3111;3299;4184;4874;7781;7419;12906;14665;13917;15084;12135;18972;15963;18413.23;18077;11126 -225;'784;United Arab Emirates;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3106;3437;3047;3047;9824;9824;9824;1457;2186;3906;4182;5580;6531;6233;7074;7256;6887;7403;6625;8910;7547;10517.88;12671;9318 -225;'784;United Arab Emirates;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;339;33;82;195;780;295;564;469;377;1083;1094;9769;7017;3629.16;6820;8185 -225;'784;United Arab Emirates;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;104;77;118;497;469;503;1072;954;533;775;679;4300;2511;2036.23;4297;7003 -225;'784;United Arab Emirates;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44261;69500;70500;70500;58400;89100;99800;134000;12100;11200;9000;9000;18546;18546;18546;17369;6019;29594;39993;39320;15307;26329;43395;27336;35981;15558;20198;26266;30094;26690.55;40057;23024 -225;'784;United Arab Emirates;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25532;35808;43602;43602;32461;55381;64266;76943;17177;16784;14561;14561;31031;31031;31031;15342;10441;59805;79941;78598;21272;29936;81725;29127;49548;40609;57513;71670;90692;69859.29;119155;107900 -225;'784;United Arab Emirates;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27745;5300;3200;3200;1500;3000;3500;6900;3700;4800;4800;4800;1654;1654;1654;1210;892;2270;2270;4555;1158;3038;4651;9129;2862;3442;2791;5716;7184;5232.6;11885;7477 -225;'784;United Arab Emirates;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20667;3441;1783;1783;1701;3691;1149;5843;5857;4671;4671;4671;3042;3042;3042;2960;8151;4093;4093;8854;2251;5906;5998;5337;7907;2134;7967;16557;30372;17660.24;27596;31577 -225;'784;United Arab Emirates;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1130314;1094449;1097523;871278;1253197;1245293;1283473 -225;'784;United Arab Emirates;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;301065;410198;471679;371221;596363;730014;652790 -225;'784;United Arab Emirates;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9980;11748;7619;5407;8283;8573;7982 -225;'784;United Arab Emirates;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7560;6886;3873;2793;3438;6325;5906 -225;'784;United Arab Emirates;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5750;6649;3684;2981;4521;4500;3276 -225;'784;United Arab Emirates;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3806;3646;1100;845;1447;3841;1128 -225;'784;United Arab Emirates;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4230;5099;3935;2426;3762;4073;4706 -225;'784;United Arab Emirates;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3754;3240;2773;1948;1991;2484;4778 -225;'784;United Arab Emirates;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10583;14577;11060;7229;7012;9877;13465 -225;'784;United Arab Emirates;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9022;11129;25982;18942;24989;34308;22955 -225;'784;United Arab Emirates;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35354;36032;38515;29985;42827;51629;49444 -225;'784;United Arab Emirates;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9108;11557;14213;12081;15561;22840;21422 -225;'784;United Arab Emirates;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115461;120435;82176;46814;39236;40653;60466 -225;'784;United Arab Emirates;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18003;43223;22420;19340;25950;24225;20464 -225;'784;United Arab Emirates;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;148 -225;'784;United Arab Emirates;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;145 -225;'784;United Arab Emirates;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;1002 -225;'784;United Arab Emirates;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;930 -225;'784;United Arab Emirates;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;5 -225;'784;United Arab Emirates;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105;4 -225;'784;United Arab Emirates;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1 -225;'784;United Arab Emirates;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1 -225;'784;United Arab Emirates;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;148;79 -225;'784;United Arab Emirates;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;161;114 -225;'784;United Arab Emirates;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91;42 -225;'784;United Arab Emirates;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111;70 -225;'784;United Arab Emirates;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;942132;869838;922300;744690;1105479;1088359;1095674 -225;'784;United Arab Emirates;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;252819;314782;308270;297776;503341;614173;554040 -225;'784;United Arab Emirates;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4520;3250;5708;14677;3524;4965 -225;'784;United Arab Emirates;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10395;11050;3327;9727;10548;10548 -225;'784;United Arab Emirates;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16804;37299;32603;31445;35683;42678;51477 -225;'784;United Arab Emirates;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4553;12226;85871;16962;13357;17595;17455 -225;'784;United Arab Emirates;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;545961;567696;575986;491751;580874;783133;864468 -225;'784;United Arab Emirates;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;295339;459936;500639;605042;646202;680380;654719 -225;'784;United Arab Emirates;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7298;7001;5001;5303;7638;10381;5977 -225;'784;United Arab Emirates;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;930;3415;4207;3917;3628;3049;2771 -225;'784;United Arab Emirates;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89216;85546;92947;69537;97028;115372;106380 -225;'784;United Arab Emirates;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14814;24317;29539;34896;49831;53654;50652 -225;'784;United Arab Emirates;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72932;72793;76423;66604;66951;69655;74884 -225;'784;United Arab Emirates;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65602;73488;87710;86842;92426;68359;80406 -225;'784;United Arab Emirates;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;196954;200787;195726;172960;206469;278505;359284 -225;'784;United Arab Emirates;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95154;176692;187009;211639;226983;247366;249522 -225;'784;United Arab Emirates;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;179561;201569;205889;177347;202788;309220;317943 -225;'784;United Arab Emirates;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118839;182024;192174;267748;273334;307952;271368 -229;'826;United Kingdom of Great Britain and Northern Ireland;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18866276.05;19961345;19646531;18152708;21976415;25270259;21833219 -229;'826;United Kingdom of Great Britain and Northern Ireland;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4913195.5;5119394;4743695;4293318;5300986;5607734;4927282 -229;'826;United Kingdom of Great Britain and Northern Ireland;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;961310;920745;1003942;1225390;1228023;1156003;1223407;1525686;1555357;1711149;1799988;1983072;2929058;4178877;3229640;3701887;4099800;4278057;5653105;5830896;5564611;5527460;5177678;5346668;5146967;6226018;8130510;10430210;10334880;10458641;8995091;9148606;8119893;8840202;9349269;8984086;9992619;9421812;9039256;8986566;9026384;8556522;9961501;11313881;10887744;11344758;13646660;11794782;9097530;10449741;10725480;10142176;10526654;11678382;11483509;10033300;10100742.54;11015602;10591719;9594691;11746707;13117561;11207034 -229;'826;United Kingdom of Great Britain and Northern Ireland;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;75551;74190;87825;98562;99655;96650;96943;96748;105459;121029;168975;187940;239429;386833;328717;389794;507513;535372;688143;894787;707088;711374;609556;700803;733099;909507;1286996;1584335;1478275;1771245;1783522;1778400;1518470;1673369;1671213;1654363;2124055;2399987;2182913;2165552;2014937;1836859;2198437;2587969;2682975;2781485;3293617;3309726;2394593;2800674;2985445;2863713;2747310;2778660;2450722;2002453;2396202.22;2414136;2186662;1986450;2713830;2757830;2163097 -229;'826;United Kingdom of Great Britain and Northern Ireland;1861;Roundwood;5516;Production;m3;2928000;2954000;3007000;3517000;3502000;3370000;3142000;3185000;3525000;3492000;3530000;3603000;3492000;3406000;3430000;3580000;3880000;3810000;4120000;3951000;4314000;4080000;3940000;3870000;4775000;5207000;5428000;6041000;6427000;6350000;6372000;6408000;6711000;7479000;7555000;7093000;7482000;7600000;7794000;7785000;7898000;7771000;8046000;8291000;8519000;8424000;9021000;8416460;8623629;9718263;10020468;10119547;10820680;11184042;10550048;10753684;10921011;11150491;10782981;10450317;10899278;9787000;9506000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1861;Roundwood;5616;Import quantity;m3;1738400;1675200;1492200;1610900;1598100;1269500;950700;901000;974800;926200;714000;580400;782000;653200;485400;422700;390200;378800;400400;349100;291200;286000;264200;222000;176000;143700;150600;260900;271500;253325;249906;317950;254093;318000;489000;848000;587000;468000;247500;258900;357301;490420;703461;631905;661661;419379;682743;507313;308615;344683;308668;289550;475829;545214;533819;643403;518703;753204;1462021;1150828;763759;1051000;1001000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1861;Roundwood;5622;Import value;1000 USD;50574;45104;43679;50701;50615;43699;32901;32672;37268;35354;31848;30000;61698;55355;44682;45554;45452;46899;56212;53896;38026;34907;33541;26776;22562;26357;34697;42920;50971;58719;50644;47116;76857;93360;106389;159080;109061;95892;80633;70539;77407;87862;122741;125991;118813;144109;176243;141171;105051;108986;69387;63761;76836;74790;71926;70689;61033.47;93672;162788;162959;151656;233522;229166 -229;'826;United Kingdom of Great Britain and Northern Ireland;1861;Roundwood;5916;Export quantity;m3;20900;28700;24300;16500;15500;16500;14600;13900;22600;23100;16800;14400;37800;20600;41900;85600;85600;41200;50300;150500;658700;557100;446200;387100;394100;349100;471600;513500;413500;161103;211047;201652;38000;46400;55400;54400;70000;356300;166200;270400;190288;157169;439641;757694;895478;789604;922902;832525;409941;621761;724464;1023054;1016348;709044;850135;731840;387246;318985;277354;170229;184659;158000;219000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1861;Roundwood;5922;Export value;1000 USD;1925;2263;1605;1099;1162;1221;1012;900;1440;1985;1601;1462;3238;4352;3929;5010;6971;7413;10287;18434;39738;26230;23103;19787;20381;18204;23354;24214;22663;16795;18815;17228;11723;12908;18526;16287;17315;21594;18863;23240;13127;14013;23811;40364;47769;49360;65438;56872;22060;39598;52405;59525;66857;51235;42076;31537;28921.23;29169;27525;25329;44733;37554;40504 -229;'826;United Kingdom of Great Britain and Northern Ireland;1862;Roundwood, coniferous;5516;Production;m3;1169000;1204000;1295000;1526000;1625000;1551000;1581000;1739000;1941000;2166000;2188000;2435000;2352000;2236000;2186000;2390000;2540000;2470000;2770000;2639000;3014000;3080000;3045000;2970000;3940000;4230000;4613000;5080000;5207000;5255000;5210000;5730000;5995000;6581000;6780000;6403000;6736000;6973000;7203000;7212000;7337000;7228000;7553000;7842000;8000000;8041000;8635000;8039438;8154731;9249853;9547392;9653768;10357640;10718531;10088647;10231167;10279989;10420126;10022796;9725249;10179008;9057000;8791000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;456378;640595;1271140;1010891;653629;791000;716000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42395.3;67721;130169;130658;124426;131303;118639 -229;'826;United Kingdom of Great Britain and Northern Ireland;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;370088;305811;243514;160833;179992;136000;206000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24979.04;25160;22930;22321;41537;33835;36174 -229;'826;United Kingdom of Great Britain and Northern Ireland;1863;Roundwood, non-coniferous;5516;Production;m3;1759000;1750000;1712000;1991000;1877000;1819000;1561000;1446000;1584000;1326000;1342000;1168000;1140000;1170000;1244000;1190000;1340000;1340000;1350000;1312000;1300000;1000000;895000;900000;835000;977000;815000;961000;1220000;1095000;1162000;678000;716000;898000;775000;690000;746000;627000;591000;573000;561000;543000;493000;449000;519000;383000;386000;377022;468898;468410;473076;465779;463040;465511;461401;522517;641022;730365;760185;725068;720270;730000;715000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62325;112609;190881;139937;110130;260000;285000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18638.18;25951;32619;32301;27230;102219;110527 -229;'826;United Kingdom of Great Britain and Northern Ireland;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17158;13174;33840;9396;4667;22000;13000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3942.19;4009;4595;3008;3196;3719;4330 -229;'826;United Kingdom of Great Britain and Northern Ireland;1864;Wood fuel;5516;Production;m3;366000;371000;376000;419000;416000;413000;368000;375000;412000;392000;330000;373000;262000;256000;140000;110000;110000;110000;110000;110000;110000;110000;110000;110000;129000;117000;150000;160000;220000;225000;250000;225000;230000;230000;232000;232000;232000;229000;229000;229000;229000;229000;229000;229000;317000;317000;459000;557100;988300;1381100;1233800;1332000;1577500;1823000;1921200;1872100;2096200;2478300;2478300;2429200;2183700;2184000;2282000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1864;Wood fuel;5616;Import quantity;m3;;;4700;6800;4100;1700;2800;2800;2800;2300;2900;1400;800;2300;14000;19900;19900;200;100;200;300;400;2800;4000;4000;700;2700;2200;1500;2600;2800;2000;8000;7000;11000;12000;11000;8800;3000;20000;10101;3120;3023;7287;4370;4372;11743;16313;14920;4163;11136;11594;18753;57605;60995;101640;90346;132680;353761;265439;124383;253000;329000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1864;Wood fuel;5622;Import value;1000 USD;;;80;81;56;22;39;39;39;91;78;53;94;170;242;244;244;19;18;46;24;41;287;400;393;73;206;265;248;789;469;375;1232;1158;964;906;1366;846;278;1118;611;278;637;1841;1263;1476;5653;5632;4335;1463;3470;4000;5736;13922;12681;13029;15156.44;30679;51818;45412;30935;103411;114720 -229;'826;United Kingdom of Great Britain and Northern Ireland;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;800;800;300;6400;400;2600;300;400;400;200;200;200;300;200;100;100;100;0;300;900;1100;2900;1800;1000;400;1400;1400;30000;142500;132800;228900;159400;109200;336043;150745;195345;145162;164896;106004;65141;159918;146162;496670;385696;264675;578656;446279;47492;49207;47205;23818;15429;15000;10000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;74;54;30;101;52;106;34;23;52;57;57;57;80;58;42;42;42;0;110;346;435;479;445;415;159;550;550;2122;6208;3114;3327;3353;3410;4156;4705;5973;4347;7403;6833;4705;13267;16018;23062;14390;10348;11254;6923;3393.53;4620;3683;3123;3697;3472;3148 -229;'826;United Kingdom of Great Britain and Northern Ireland;1627;Wood fuel, coniferous;5516;Production;m3;117000;120000;130000;151000;162000;167000;158000;174000;194000;186000;188000;185000;102000;101000;26000;30000;30000;30000;30000;30000;30000;30000;30000;30000;58000;52000;72000;80000;95000;95000;100000;95000;100000;100000;100000;100000;100000;98000;98000;98000;98000;98000;98000;98000;98000;98000;196000;294600;638300;1031100;883800;982000;1227500;1473000;1571200;1522100;1571200;1865800;1865800;1816700;1571200;1571000;1669000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73150;99842;305783;206909;81622;43000;75000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11910.03;22321;40561;29770;20075;16224;17061 -229;'826;United Kingdom of Great Britain and Northern Ireland;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44748;47051;46551;23680;15160;6000;4000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3082.79;4082;3259;2864;3424;1942;1769 -229;'826;United Kingdom of Great Britain and Northern Ireland;1628;Wood fuel, non-coniferous;5516;Production;m3;249000;251000;246000;268000;254000;246000;210000;201000;218000;206000;142000;188000;160000;155000;114000;80000;80000;80000;80000;80000;80000;80000;80000;80000;71000;65000;78000;80000;125000;130000;150000;130000;130000;130000;132000;132000;132000;131000;131000;131000;131000;131000;131000;131000;219000;219000;263000;262500;350000;350000;350000;350000;350000;350000;350000;350000;525000;612500;612500;612500;612500;613000;613000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17196;32838;47978;58530;42761;210000;254000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3246.41;8358;11257;15642;10860;87187;97659 -229;'826;United Kingdom of Great Britain and Northern Ireland;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2744;2156;654;138;269;9000;6000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;310.74;538;424;259;273;1530;1379 -229;'826;United Kingdom of Great Britain and Northern Ireland;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;4700;6800;4100;1700;2800;2800;2800;2300;2900;1400;800;2300;14000;19900;19900;200;100;200;300;400;2800;4000;4000;700;2700;2200;1500;2600;2800;2000;8000;7000;11000;12000;11000;8800;3000;20000;10101;3120;3023;7287;4370;4372;11743;16313;14920;4163;11136;11594;18753;57605;60995;101640;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;80;81;56;22;39;39;39;91;78;53;94;170;242;244;244;19;18;46;24;41;287;400;393;73;206;265;248;789;469;375;1232;1158;964;906;1366;846;278;1118;611;278;637;1841;1263;1476;5653;5632;4335;1463;3470;4000;5736;13922;12681;13029;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;800;800;300;6400;400;2600;300;400;400;200;200;200;300;200;100;100;100;0;300;900;1100;2900;1800;1000;400;1400;1400;30000;142500;132800;228900;159400;109200;336043;150745;195345;145162;164896;106004;65141;159918;146162;496670;385696;264675;578656;446279;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;74;54;30;101;52;106;34;23;52;57;57;57;80;58;42;42;42;0;110;346;435;479;445;415;159;550;550;2122;6208;3114;3327;3353;3410;4156;4705;5973;4347;7403;6833;4705;13267;16018;23062;14390;10348;11254;6923;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1865;Industrial roundwood;5516;Production;m3;2562000;2583000;2631000;3098000;3086000;2957000;2774000;2810000;3113000;3100000;3200000;3230000;3230000;3150000;3290000;3470000;3770000;3700000;4010000;3841000;4204000;3970000;3830000;3760000;4646000;5090000;5278000;5881000;6207000;6125000;6122000;6183000;6481000;7249000;7323000;6861000;7250000;7371000;7565000;7556000;7669000;7542000;7817000;8062000;8202000;8107000;8562000;7859360;7635329;8337163;8786668;8787547;9243180;9361042;8628848;8881584;8824811;8672191;8304681;8021117;8715578;7603000;7224000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1865;Industrial roundwood;5616;Import quantity;m3;1738400;1675200;1487500;1604100;1594000;1267800;947900;898200;972000;923900;711100;579000;781200;650900;471400;402800;370300;378600;400300;348900;290900;285600;261400;218000;172000;143000;147900;258700;270000;250725;247106;315950;246093;311000;478000;836000;576000;459200;244500;238900;347200;487300;700438;624618;657291;415007;671000;491000;293695;340520;297532;277956;457076;487609;472824;541763;428357;620524;1108260;885389;639376;798000;672000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1865;Industrial roundwood;5622;Import value;1000 USD;50574;45104;43599;50620;50559;43677;32862;32633;37229;35263;31770;29947;61604;55185;44440;45310;45208;46880;56194;53850;38002;34866;33254;26376;22169;26284;34491;42655;50723;57930;50175;46741;75625;92202;105425;158174;107695;95046;80355;69421;76796;87584;122104;124150;117550;142633;170590;135539;100716;107523;65917;59761;71100;60868;59245;57660;45877.04;62993;110970;117547;120721;130111;114446 -229;'826;United Kingdom of Great Britain and Northern Ireland;1865;Industrial roundwood;5916;Export quantity;m3;20900;28700;24300;16500;15500;16500;14600;13900;22600;22300;16000;14100;31400;20200;39300;85300;85200;40800;50100;150300;658500;556800;446000;387000;394000;349000;471600;513200;412600;160003;208147;199852;37000;46000;54000;53000;40000;213800;33400;41500;30888;47969;103598;606949;700133;644442;758006;726521;344800;461843;578302;526384;630652;444369;271479;285561;339754;269778;230149;146411;169230;143000;209000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1865;Industrial roundwood;5922;Export value;1000 USD;1925;2263;1605;1099;1162;1221;1012;900;1440;1911;1547;1432;3137;4300;3823;4976;6948;7361;10230;18377;39681;26150;23045;19745;20339;18162;23354;24104;22317;16360;18336;16783;11308;12749;17976;15737;15193;15386;15749;19913;9774;10603;19655;35659;41796;45013;58035;50039;17355;26331;36387;36463;52467;40887;30822;24614;25527.71;24549;23842;22206;41036;34082;37356 -229;'826;United Kingdom of Great Britain and Northern Ireland;1866;Industrial roundwood, coniferous;5516;Production;m3;1052000;1084000;1165000;1375000;1463000;1384000;1423000;1565000;1747000;1980000;2000000;2250000;2250000;2135000;2160000;2360000;2510000;2440000;2740000;2609000;2984000;3050000;3015000;2940000;3882000;4178000;4541000;5000000;5112000;5160000;5110000;5635000;5895000;6481000;6680000;6303000;6636000;6875000;7105000;7114000;7239000;7130000;7455000;7744000;7902000;7943000;8439000;7744838;7516431;8218753;8663592;8671768;9130140;9245531;8517447;8709067;8708789;8554326;8156996;7908549;8607808;7486000;7122000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74530;108177;130000;98000;131000;340000;670000;387000;262400;132400;154500;251600;365200;549616;494769;564304;325146;584000;422000;235537;239665;231579;220074;389696;439833;414127;460189;383228;540753;965357;803982;572007;748000;641000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18871;17612;12945;18715;26186;54106;93720;41285;35894;30056;32685;45880;44507;62113;59476;61163;68492;92378;69755;47095;28166;35671;30876;49641;47773;46788;41130;30485.27;45400;89608;100888;104351;115079;101578 -229;'826;United Kingdom of Great Britain and Northern Ireland;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64635;92673;82011;8000;21000;7000;20000;12000;3900;9500;15100;13788;31664;92737;599020;692310;631317;745574;719486;341081;458212;574671;525584;628052;429469;271444;226905;325340;258760;196963;137153;164832;130000;202000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3472;3950;3882;1665;3410;1150;3326;1992;2244;6127;10005;3077;5231;14367;31132;36647;41219;55329;46812;16447;25592;35285;35502;50957;38749;27831;20199;21896.25;21078;19671;19457;38113;31893;34405 -229;'826;United Kingdom of Great Britain and Northern Ireland;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74530;108177;130000;98000;131000;340000;670000;387000;262400;132400;154500;251600;365200;549616;494769;564304;325146;584000;422000;235537;239665;231579;220074;389696;439833;414127;460189;383228;540753;965357;803982;572007;748000;641000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18871;17612;12945;18715;26186;54106;93720;41285;35894;30056;32685;45880;44507;62113;59476;61163;68492;92378;69755;47095;28166;35671;30876;49641;47773;46788;41130;30485.27;45400;89608;100888;104351;115079;101578 -229;'826;United Kingdom of Great Britain and Northern Ireland;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64635;92673;82011;8000;21000;7000;20000;12000;3900;9500;15100;13788;31664;92737;599020;692310;631317;745574;719486;341081;458212;574671;525584;628052;429469;271444;226905;325340;258760;196963;137153;164832;130000;202000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3472;3950;3882;1665;3410;1150;3326;1992;2244;6127;10005;3077;5231;14367;31132;36647;41219;55329;46812;16447;25592;35285;35502;50957;38749;27831;20199;21896.25;21078;19671;19457;38113;31893;34405 -229;'826;United Kingdom of Great Britain and Northern Ireland;1867;Industrial roundwood, non-coniferous;5516;Production;m3;1510000;1499000;1466000;1723000;1623000;1573000;1351000;1245000;1366000;1120000;1200000;980000;980000;1015000;1130000;1110000;1260000;1260000;1270000;1232000;1220000;920000;815000;820000;764000;912000;737000;881000;1095000;965000;1012000;548000;586000;768000;643000;558000;614000;496000;460000;442000;430000;412000;362000;318000;300000;164000;123000;114522;118898;118410;123076;115779;113040;115511;111401;172517;116022;117865;147685;112568;107770;117000;102000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;176195;138929;185950;148093;180000;138000;166000;189000;196800;112100;84400;95600;122100;150822;129849;92987;89861;87000;69000;58158;100855;65953;57882;67380;47776;58697;81574;45129;79771;142903;81407;67369;50000;31000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39059;32563;33796;56910;66016;51319;64454;66410;59152;50299;36736;30916;43077;59991;64674;56387;74141;78212;65784;53621;79357;30246;28885;21459;13095;12457;16530;15391.77;17593;21362;16659;16370;15032;12868 -229;'826;United Kingdom of Great Britain and Northern Ireland;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95368;115474;117841;29000;25000;47000;33000;28000;209900;23900;26400;17100;16305;10861;7929;7823;13125;12432;7035;3719;3631;3631;800;2600;14900;35;58656;14414;11018;33186;9258;4398;13000;7000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12888;14386;12901;9643;9339;16826;12411;13201;13142;9622;9908;6697;5372;5288;4527;5149;3794;2706;3227;908;739;1102;961;1510;2138;2991;4415;3631.46;3471;4171;2749;2923;2189;2951 -229;'826;United Kingdom of Great Britain and Northern Ireland;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44766;28927;20599;18093;23000;24000;39000;47000;15500;66700;43500;45200;36700;22187;23354;23069;25900;16907;12936;6278;10097;9780;9996;3175;3849;5811;12013;17440;61976;47785;23700;1296;2000;5000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14343;9559;4567;6447;8663;9674;18060;25245;7651;30527;20422;17032;16947;15761;15861;17496;23618;20978;15313;7349;8435;7195;7786;3334;2875;3435;9410;12055.21;11854;6386;3435;665;1315;2836 -229;'826;United Kingdom of Great Britain and Northern Ireland;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;894;0;0;0;0;323;659;152;702;136;300;35;3;2;65;10656;7146;31;15;32;3000;3000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;508;962;94;323;273;637;139;221;189;50;3161.38;2623;50;33;68;610;716 -229;'826;United Kingdom of Great Britain and Northern Ireland;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;131429;110002;165351;130000;157000;114000;127000;142000;181300;45400;40900;50400;85400;128635;106495;69918;63961;70093;56064;51880;90758;56173;47886;64205;43927;52886;69561;27689;17795;95118;57707;66073;48000;26000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24716;23004;29229;50463;57353;41645;46394;41165;51501;19772;16314;13884;26130;44230;48813;38891;50523;57234;50471;46272;70922;23051;21099;18125;10220;9022;7120;3336.56;5739;14976;13224;15705;13717;10032 -229;'826;United Kingdom of Great Britain and Northern Ireland;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95368;115474;117841;29000;25000;47000;33000;28000;209900;23900;26400;17100;15411;10861;7929;7823;13125;12109;6376;3567;2929;3495;500;2565;14897;33;58591;3758;3872;33155;9243;4366;10000;4000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12888;14386;12901;9643;9339;16826;12411;13201;13142;9622;9908;6697;5372;5288;4527;5149;3794;2198;2265;814;416;829;324;1371;1917;2802;4365;470.08;848;4121;2716;2855;1579;2235 -229;'826;United Kingdom of Great Britain and Northern Ireland;1868;Sawlogs and veneer logs;5516;Production;m3;1837000;1829000;1837000;2214000;2140000;2052000;1804000;1768000;1781000;1780000;1770000;2060000;2030000;1870000;1945000;2135000;2435000;2515000;2685000;2610000;2645000;2605000;2480000;2385000;2983000;3062000;3036000;3420000;3714000;3645000;3647000;3435000;3485000;3915000;3768000;3821000;3898000;4300000;4569000;4564000;4671000;4716000;4908000;5051000;5041000;5308000;5716000;5095341;5208603;5742890;5991650;6157228;6611868;6876891;6315484;6653308;6724718;6467628;6023998;5903169;6354274;5509000;4935000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1868;Sawlogs and veneer logs;5616;Import quantity;m3;628300;453600;454000;565800;459900;416800;327100;378100;390300;288500;339500;365600;462500;242000;218400;271300;267300;214100;215500;148200;123100;120400;144400;107000;70000;75000;67000;102000;145000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;26752;18588;21731;27884;23237;22719;17861;20993;22637;18374;19050;21924;47521;27940;24858;34478;35425;35317;41064;34325;23450;22800;25144;17971;14833;18340;25658;26270;35500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1868;Sawlogs and veneer logs;5916;Export quantity;m3;;;;;;;;;;14500;7600;6400;12600;10000;7500;14600;18700;20000;22800;26800;19300;14900;22000;20000;19000;20000;24500;34200;30000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;;;;;;;;;;1354;837;752;1558;2220;1643;2964;3924;5356;6277;8527;5664;2200;5022;4396;4477;5186;5931;7198;6750;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;494000;489000;533000;673000;698000;669000;615000;662000;694000;960000;900000;1270000;1240000;1080000;1055000;1265000;1425000;1505000;1665000;1668000;1700000;1890000;1900000;1850000;2463000;2414000;2596000;2945000;3065000;3125000;3087000;3135000;3247000;3495000;3443000;3567000;3642000;4077000;4370000;4389000;4503000;4573000;4786000;4970000;4978000;5252000;5658000;5037729;5142424;5677111;5921205;6091359;6546988;6809575;6252313;6573462;6656751;6401736;5925912;5840353;6297780;5453000;4883000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;56000;27400;11700;21100;9100;8000;9500;11400;16100;9800;16400;13400;30200;22000;7400;17500;45500;10700;2500;3600;11700;8000;6000;7000;3000;4000;10000;5000;35000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;1576;719;479;843;316;316;394;617;864;420;489;318;1440;1680;684;1161;1806;1449;564;986;2091;1400;1109;1328;530;852;2538;1270;4500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;;;;;;;;;;3200;5100;5100;10700;7600;6000;12500;14500;5700;7600;9600;8900;6000;9000;9000;7000;10000;6500;15000;15000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;;;;;;;;;;192;535;559;1213;1620;1311;2478;2767;1127;1507;2252;1466;1000;1130;1121;1017;1561;966;2200;2250;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;1343000;1340000;1304000;1541000;1442000;1383000;1189000;1106000;1087000;820000;870000;790000;790000;790000;890000;870000;1010000;1010000;1020000;942000;945000;715000;580000;535000;520000;648000;440000;475000;649000;520000;560000;300000;238000;420000;325000;254000;256000;223000;199000;175000;168000;143000;122000;81000;63000;56000;58000;57612;66179;65779;70445;65869;64880;67316;63171;79846;67967;65892;98086;62816;56494;56000;52000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;572300;426200;442300;544700;450800;408800;317600;366700;374200;278700;323100;352200;432300;220000;211000;253800;221800;203400;213000;144600;111400;112400;138400;100000;67000;71000;57000;97000;110000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;25176;17869;21252;27041;22921;22403;17467;20376;21773;17954;18561;21606;46081;26260;24174;33317;33619;33868;40500;33339;21359;21400;24035;16643;14303;17488;23120;25000;31000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;;;;;;;;;;11300;2500;1300;1900;2400;1500;2100;4200;14300;15200;17200;10400;8900;13000;11000;12000;10000;18000;19200;15000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;1162;302;193;345;600;332;486;1157;4229;4770;6275;4198;1200;3892;3275;3460;3625;4965;4998;4500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2597000;2518000;2572000;2580000;2465000;2556000;2617000;2705000;2369000;2396000;2257746;1860396;2070608;2248030;2098712;2069406;1940738;1810701;1732577;1596119;1735131;1794972;1632106;1898394;1646000;1848000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2372000;2305000;2353000;2366000;2244000;2364000;2428000;2516000;2309000;2379000;2248961;1855802;2066102;2243524;2096927;2069371;1940703;1810666;1688031;1596119;1731143;1793498;1630479;1895243;1633000;1846000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;225000;213000;219000;214000;221000;192000;189000;189000;60000;17000;8785;4594;4506;4506;1785;35;35;35;44546;0;3988;1474;1627;3151;13000;2000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5616;Import quantity;m3;326200;284900;240000;307200;373700;293500;270900;313300;258800;283800;75800;20700;55600;148000;33000;20700;600;200;5000;5000;3600;23700;24000;12000;6000;6000;400;20000;20000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5622;Import value;1000 USD;6913;6175;4975;6520;8170;6264;5691;5966;5604;7018;2009;492;1558;6550;2079;1418;16;13;280;280;122;806;743;343;181;181;31;1600;1650;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;9400;10600;106800;629200;506500;401000;346000;353000;322000;420000;446000;358000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;276;354;6024;31456;16750;13334;11869;12203;12355;15032;15111;13524;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1870;Pulpwood and particles (1961-1997);5516;Production;m3;357000;398000;450000;518000;623000;632000;709000;794000;1110000;1000000;1070000;895000;895000;1015000;1070000;1050000;1060000;860000;1000000;791000;1125000;1070000;1065000;1100000;1366000;1756000;1982000;2206000;2216000;2270000;2245000;2424000;2634000;2852000;3073000;2608000;2934000;;;;;;;;;;;;;;;;;;;;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1870;Pulpwood and particles (1961-1997);5616;Import quantity;m3;326200;284900;240000;307200;373700;293500;270900;313300;258800;283800;75800;20700;55600;148000;33000;20700;600;200;5000;5000;3600;23700;24000;12000;6000;6000;400;20000;20000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1870;Pulpwood and particles (1961-1997);5622;Import value;1000 USD;6913;6175;4975;6520;8170;6264;5691;5966;5604;7018;2009;492;1558;6550;2079;1418;16;13;280;280;122;806;743;343;181;181;31;1600;1650;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1870;Pulpwood and particles (1961-1997);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;9400;10600;106800;629200;506500;401000;346000;353000;322000;420000;446000;358000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1870;Pulpwood and particles (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;276;354;6024;31456;16750;13334;11869;12203;12355;15032;15111;13524;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;190000;239000;288000;336000;442000;442000;547000;655000;831000;740000;780000;745000;745000;830000;880000;850000;850000;670000;810000;606000;955000;900000;875000;870000;1146000;1536000;1733000;1850000;1825000;1880000;1858000;2224000;2334000;2552000;2803000;2352000;2624000;;;;;;;;;;;;;;;;;;;;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;167000;159000;162000;182000;181000;190000;162000;139000;279000;260000;290000;150000;150000;185000;190000;200000;210000;190000;190000;185000;170000;170000;190000;230000;220000;220000;249000;356000;391000;390000;387000;200000;300000;300000;270000;256000;310000;;;;;;;;;;;;;;;;;;;;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1871;Other industrial roundwood;5516;Production;m3;368000;356000;344000;366000;323000;273000;261000;248000;222000;320000;360000;275000;305000;265000;275000;285000;275000;325000;325000;440000;434000;295000;285000;275000;297000;272000;260000;255000;277000;210000;230000;324000;362000;482000;482000;432000;418000;474000;478000;420000;418000;361000;353000;394000;456000;430000;450000;506273;566330;523665;546988;531607;561906;543413;502663;495699;503974;469432;485711;485842;462910;448000;441000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1871;Other industrial roundwood;5616;Import quantity;m3;783900;936700;793500;731100;760400;557500;349900;206800;322900;351600;295800;192700;263100;260900;220000;110800;102400;164300;179800;195700;164200;141500;93000;99000;96000;62000;80500;136700;105000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1871;Other industrial roundwood;5622;Import value;1000 USD;16909;20341;16893;16216;19152;14694;9310;5674;8988;9871;10711;7531;12525;20695;17503;9414;9767;11550;14850;19245;14430;11260;7367;8062;7155;7763;8802;14785;13573;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1871;Other industrial roundwood;5916;Export quantity;m3;20900;28700;24300;16500;15500;16500;14600;13900;22600;7800;8400;7700;18800;10200;31800;70700;66500;11400;16700;16700;10000;35400;23000;21000;22000;7000;27100;33000;24600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1871;Other industrial roundwood;5922;Export value;1000 USD;1925;2263;1605;1099;1162;1221;1012;900;1440;557;710;680;1579;2080;2180;2012;3024;1729;3599;3826;2561;7200;4689;3480;3659;621;2391;1795;2043;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;368000;356000;344000;366000;323000;273000;261000;248000;222000;280000;320000;235000;265000;225000;225000;245000;235000;265000;265000;335000;329000;260000;240000;220000;273000;228000;212000;205000;222000;155000;165000;276000;314000;434000;434000;384000;370000;426000;430000;372000;370000;313000;305000;346000;408000;382000;402000;458148;518205;475540;498863;483482;513781;495253;454468;447574;455919;421447;437586;437717;414785;400000;393000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;;;;;;;;;;40000;40000;40000;40000;40000;50000;40000;40000;60000;60000;105000;105000;35000;45000;55000;24000;44000;48000;50000;55000;55000;65000;48000;48000;48000;48000;48000;48000;48000;48000;48000;48000;48000;48000;48000;48000;48000;48000;48125;48125;48125;48125;48125;48125;48160;48195;48125;48055;47985;48125;48125;48125;48000;48000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;783900;936700;793500;731100;760400;557500;349900;206800;322900;351600;295800;192700;263100;260900;220000;110800;102400;164300;179800;195700;164200;141500;93000;99000;96000;62000;80500;136700;105000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;16909;20341;16893;16216;19152;14694;9310;5674;8988;9871;10711;7531;12525;20695;17503;9414;9767;11550;14850;19245;14430;11260;7367;8062;7155;7763;8802;14785;13573;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;20900;28700;24300;16500;15500;16500;14600;13900;22600;7800;8400;7700;18800;10200;31800;70700;66500;11400;16700;16700;10000;35400;23000;21000;22000;7000;27100;33000;24600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;1925;2263;1605;1099;1162;1221;1012;900;1440;557;710;680;1579;2080;2180;2012;3024;1729;3599;3826;2561;7200;4689;3480;3659;621;2391;1795;2043;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1630;Wood charcoal;5510;Production;t;0;0;0;0;3247;7283;8049;20447;21276;13739;14372;18693;18906;18868;23470;24268;20191;19264;19122;17253;21431;22339;14755;2687;3625;10611;2163;6352;0;0;0;340;8077;15825;3825;0;7409;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 -229;'826;United Kingdom of Great Britain and Northern Ireland;1630;Wood charcoal;5610;Import quantity;t;22800;26100;22900;19600;14900;11600;11600;11600;11600;8600;9600;7000;8500;10400;7500;7290;11600;12900;13700;15900;12600;12600;21000;34000;34000;28000;37800;34600;57300;53500;48800;46317;41456;32000;45000;57000;45000;49500;41000;45000;41647;43615;54454;57038;53150;54611;47004;40717;40421;64748;62088;64507;109523;118200;106500;68918;119219;146278;91376;98371;95506;87000;72000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1630;Wood charcoal;5622;Import value;1000 USD;1831;2217;2079;1705;1378;1204;1252;1252;1252;821;1109;603;1083;2230;1481;1235;2326;3029;3943;6052;4824;4824;6167;9873;9945;8343;11564;11781;18600;18886;15576;16734;12373;10191;15700;17961;16735;16670;15289;17069;16377;17141;23549;28461;29314;29682;26068;25134;21230;37681;40964;42253;51587;55407;46041;37409;45259.73;57890;53202;61900;63892;64357;52203 -229;'826;United Kingdom of Great Britain and Northern Ireland;1630;Wood charcoal;5910;Export quantity;t;200;;;;;;;;;200;100;100;100;200;200;400;200;100;300;200;100;100;100;100;100;100;300;300;500;1000;400;1920;3765;1000;1000;1000;1000;500;1000;1000;1206;1371;8395;8222;9355;11871;6172;3803;1007;1161;2171;2171;3223;10985;2403;1675;3256;5847;3322;2944;3120;2000;2000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1630;Wood charcoal;5922;Export value;1000 USD;50;;;;;;;;;22;12;16;28;45;57;108;72;67;117;144;83;83;83;83;83;83;303;309;513;769;451;731;1047;1040;1040;1040;1178;682;961;975;1556;1678;7909;6024;4563;6709;3817;2595;1275;1530;1627;1355;2247;6129;1649;1135;1920.3;2874;2443;2016;3007;2309;2930 -229;'826;United Kingdom of Great Britain and Northern Ireland;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2400000;2400000;2396000;2217000;2123000;2079000;2080000;2257000;2441000;2599000;2377044;2493549;2917456;3079179;3225629;3086188;3409848;3112159;3284725;3259600;3253876;2827043;3041788;3121779;2647000;1179000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;144000;113400;206700;280600;267800;223058;260558;558287;386391;475516;974077;338052;929643;120598;144184;143509;106979;221858;165140;127327;110736;172698;279206;119351;96000;130000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8330;7352;13316;11667;14740;14199;19008;58634;32924;48640;119105;46710;125129;6940;9243;11768;8634;19414;11020;6187.66;6854;12120;19004;3555;14373;16983 -229;'826;United Kingdom of Great Britain and Northern Ireland;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2300;8000;10500;11097;34418;141298;190690;140906;316667;392612;433177;258473;489728;234093;482919;483652;670695;444532;256103;136735;167003;162811;82986;77136;83000;279000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1423;3179;3937;3014;3963;9807;15089;11033;12451;11663;29518;10117;24025;14014;18493;14226;23763;18442;13098;12290.98;12127;13080;12899;10628;15661;25476 -229;'826;United Kingdom of Great Britain and Northern Ireland;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1800000;1800000;1797000;1663000;1592000;1559000;1560000;1693000;1831000;1949000;1782783;1870162;2188092;2309384;2419222;2314641;2557386;2334119;2463544;2444700;2440407;2120282;2281341;2341334;1985000;884000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;200;300;100;400;400;300;300;1000;700;400;3200;12100;13600;7100;8665;41805;22000;69000;166000;97000;65100;54900;70300;136600;121600;80654;131936;192689;219539;165297;157779;231528;93643;116175;136684;134509;96339;212370;151478;127327;106998;168056;266728;117634;60000;71000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;31;45;23;79;79;59;39;80;57;75;352;484;1052;596;573;2010;2507;5942;8430;6074;3374;3253;3399;4705;5606;4007;5825;10903;11508;9120;11540;28937;13233;5379;6422;8446;5466;16339;8442;6187.66;6376;11607;18025;3075;4254;4689 -229;'826;United Kingdom of Great Britain and Northern Ireland;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;1200;1100;1100;2200;2200;700;400;21000;55000;78000;68000;40000;123000;122600;120000;57000;46000;53165;7714;3000;22000;22000;5000;1400;4000;7900;7138;29027;128889;176459;128691;279787;371076;259992;185736;201446;233637;209919;185852;223635;127532;75103;136515;166476;161981;82107;75520;61000;241000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;47;25;45;90;90;32;18;525;1265;2288;1849;1167;3171;4288;4668;2045;1785;2939;520;280;2050;1320;1454;1093;1671;2722;2070;2957;7739;12073;8640;6574;6539;5187;3934;7025;13513;9752;4776;7271;10433;8918;12219.48;12011;12958;12756;10217;12142;21522 -229;'826;United Kingdom of Great Britain and Northern Ireland;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2900000;3100000;3100000;3100000;3100000;600000;600000;599000;554000;531000;520000;520000;564000;610000;650000;594261;623387;729364;769795;806407;771547;852462;778040;821181;814900;813469;706761;760447;780445;662000;295000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;9700;12200;2100;10000;9000;15500;21000;34000;29000;4000;18500;11400;18600;23200;18000;40703;69021;33000;80000;100000;52000;78900;58500;136400;144000;146200;142404;128622;365598;166852;310219;816298;106524;836000;4423;7500;9000;10640;9488;13662;0;3738;4642;12478;1717;36000;59000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;220;296;231;472;381;620;708;1112;936;451;1060;1417;2015;2909;2067;2440;1840;1532;3700;5726;5864;4956;4099;9917;6962;9134;10192;13183;47731;21416;39520;107565;17773;111896;1561;2821;3322;3168;3075;2578;0;478;513;979;480;10119;12294 -229;'826;United Kingdom of Great Britain and Northern Ireland;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;900;3300;100;1600;4300;900;900;900;3000;2000;5500;11800;8400;45600;41300;40555;12402;2000;7500;6000;7000;900;4000;2600;3959;5391;12409;14231;12215;36880;21536;173185;72737;288282;456;273000;297800;447060;317000;181000;220;527;830;879;1616;22000;38000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;80;165;2;179;623;130;130;130;189;368;493;1042;690;2616;2957;1963;500;1214;3166;2963;2903;330;1508;1215;944;1006;2068;3016;2393;5877;5124;24331;6183;17000;501;8741;9450;16492;8009;4180;71.5;116;122;143;411;3519;3954 -229;'826;United Kingdom of Great Britain and Northern Ireland;1605;Sawdust (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7000;25000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1605;Sawdust (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1785;3261 -229;'826;United Kingdom of Great Britain and Northern Ireland;1605;Sawdust (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6000;1000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1605;Sawdust (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1016;366 -229;'826;United Kingdom of Great Britain and Northern Ireland;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3700000;3750000;4500000;4050000;4500000;4500000;4500000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5390;7846;20830;47644;97527;19000;52000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1358.5;1424;1530;2044;9579;5041;5528 -229;'826;United Kingdom of Great Britain and Northern Ireland;1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81175;47390;85022;40457;5006;19000;57000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7273.9;6776;5416;2577;274;250;2760 -229;'826;United Kingdom of Great Britain and Northern Ireland;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;278028;301483;354370;342878;329393;286519;279174;298379;297602;304411;327000;313000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1489080;3391500;4760247;6575766;6789458;6893195;8003512;8894896;9123910;9160535;7586000;6425000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;295662;646543;900135;1192907;1238297;1239865.23;1492772;1674578;1725560;1790288;1665184;1567095 -229;'826;United Kingdom of Great Britain and Northern Ireland;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58721;111600;107036;92571;13458;135541;80448;50326;15065;12790;44000;35000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6874;9352;10475;3581;2534;9998.2;10241;5471;3763;2830;16357;7560 -229;'826;United Kingdom of Great Britain and Northern Ireland;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;278028;301483;354370;342878;329393;286519;279174;298379;297602;304411;327000;313000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1486880;3389000;4757135;6573192;6781608;6885238;7992230;8878007;9077675;9128015;7516000;6364000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;293318;643783;897799;1191424;1235944;1237289.54;1489482;1669885;1716946;1781215;1629665;1531593 -229;'826;United Kingdom of Great Britain and Northern Ireland;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53621;106000;98491;84876;5200;126405;62573;32564;3919;1628;23000;11000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5691;8073;3066;2158;577;7869.82;6956;2207;836;578;14795;5795 -229;'826;United Kingdom of Great Britain and Northern Ireland;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -229;'826;United Kingdom of Great Britain and Northern Ireland;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2200;2500;3112;2574;7850;7957;11282;16889;46235;32520;70000;61000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2344;2760;2336;1483;2353;2575.69;3290;4693;8614;9073;35519;35502 -229;'826;United Kingdom of Great Britain and Northern Ireland;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5100;5600;8545;7695;8258;9136;17875;17762;11146;11162;21000;24000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1183;1279;7409;1423;1957;2128.38;3285;3264;2927;2252;1562;1765 -229;'826;United Kingdom of Great Britain and Northern Ireland;1872;Sawnwood;5516;Production;m3;990000;875300;879800;1115900;1062800;1004300;909300;960600;967600;1323000;1289000;1326000;1396000;1284000;1199000;1461000;1647000;1666000;1766000;1721000;1543000;1687000;1619000;1520000;1717000;1807000;1823000;1919000;2191000;2271000;2241000;2097000;2112000;2225000;2295000;2291000;2356000;2515000;2651000;2622382;2710853;2705370;2742219;2771742;2781000;2905000;3145000;2815255;2856458;3100646;3279070;3409400;3581095;3763654;3492916;3671129;3763206;3659332;3454581;3347893;3610837;3145000;2908000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1872;Sawnwood;5616;Import quantity;m3;8731900;8198200;8842400;10596400;10101700;8866500;9305300;10178200;8643600;8973700;8922700;9094800;10971900;9127700;5871800;7877400;6994900;7105000;8339600;6632100;6027600;7137300;7969000;7466000;7002000;8263000;9083500;10048000;9542900;10661400;7280100;7181157;6687703;8575000;5532500;5951900;7102000;6969300;7015000;7852500;7801100;8200900;8714007;8652976;8222695;7962654;8468828;5886000;5239585;5699069;4936349;5178714;5517601;6424216;6322549;6645646;7662510;7212940;7039993;7217787;8158976;6294000;6210000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1872;Sawnwood;5622;Import value;1000 USD;450041;396910;435803;559909;570173;501991;503003;524845;491519;540710;568651;564978;1019620;1344370;750373;1008181;1058039;1101487;1548498;1527911;1181422;1392300;1380955;1322506;1131433;1430982;1898894;2338332;2257370;2361722;1766601;1726301;1640061;2010435;1683850;1697878;1984273;1682462;1618747;1672828;1524305;1662256;2003058;2180382;2038080;2106977;3036216;2004233;1491210;1852355;1732335;1717886;1845476;2304267;2002997;1906277;2105813.31;2325209;2039290;2034613;3671469;2768064;2261202 -229;'826;United Kingdom of Great Britain and Northern Ireland;1872;Sawnwood;5916;Export quantity;m3;8100;3600;2700;1900;4300;4100;2400;4400;3800;26000;37100;33200;53800;47500;38700;58000;66800;54600;59100;51100;48100;53000;56000;55000;47000;44000;41600;40600;37700;57500;60200;68940;46238;94000;62600;64800;93000;134700;151700;195000;210099;292690;355626;371022;358000;415354;345787;221903;203000;194624;162297;140599;167050;174757;187716;191318;218216;237936;215157;230780;276715;183000;189000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1872;Sawnwood;5922;Export value;1000 USD;745;613;398;301;482;557;314;518;521;2668;3799;3203;6442;9245;7397;9900;13227;13018;17212;18552;14329;15790;11813;11255;10364;11538;13473;16795;17951;24667;21186;31613;18728;38802;33828;36777;45963;37705;48189;46534;45177;59142;76551;91135;94321;112524;139263;91624;64962;72602;66212;53995;57253;71099;67626;66957;70558.82;85148;73732;80857;132285;104133;103597 -229;'826;United Kingdom of Great Britain and Northern Ireland;1632;Sawnwood, coniferous;5516;Production;m3;221500;197150;210400;383450;393400;383150;352650;372300;392300;587000;560000;616000;688000;661500;587500;769500;881500;909500;999000;1066000;1011000;1226000;1228000;1179000;1421000;1451000;1561000;1654000;1826000;1935000;1894000;1916000;1950000;2050000;2106000;2140000;2214000;2387000;2531000;2514000;2581000;2614164;2660975;2711116;2728000;2860000;3100000;2770966;2808681;3053004;3227334;3361284;3535535;3716296;3449237;3624094;3721430;3618236;3408180;3310523;3573539;3108000;2873000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1632;Sawnwood, coniferous;5616;Import quantity;m3;7749950;7399250;7993600;9565200;9073550;7989200;8468700;9221850;7843100;8145100;8141450;8288100;9860950;8500850;5263900;7224000;6344200;6408550;7343400;5990450;5371000;6470500;7086000;6691000;6239000;7472000;8129750;9026000;8534950;9826400;6604100;6555157;6178703;8170000;5032000;5377000;6491000;6490000;6511000;7197500;7105500;7522500;7943923;7871000;7562778;7400598;7946000;5487000;4858878;5230448;4526202;4755962;5081601;5928216;5887783;6219091;7087822;6625866;6437262;6676976;7623373;5682000;5726000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1632;Sawnwood, coniferous;5622;Import value;1000 USD;369854;334674;367492;475408;483881;426325;430555;446066;421173;461252;489817;481308;840865;1195350;633195;870785;908660;921250;1262955;1294998;933291;1141950;1083384;1036738;875716;1135507;1512787;1860062;1772305;1843815;1380388;1342648;1306596;1622625;1306926;1324208;1570121;1401793;1336052;1353019;1210729;1338209;1650732;1783094;1684018;1734413;2542014;1550101;1171736;1480553;1362561;1345732;1475731;1887267;1616488;1528696;1679308.45;1896198;1643637;1670255;3280145;2342827;1816349 -229;'826;United Kingdom of Great Britain and Northern Ireland;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;17850;25600;22350;36850;33600;24350;34450;37400;24200;22850;22000;24600;29000;31500;30000;25000;24000;21500;28600;25050;42800;46400;50940;41238;86000;54600;53800;81000;122000;139700;185000;198300;281700;341959;356493;342933;406953;326456;205037;178000;163725;130676;115503;148264;156871;166716;166392;194426;217587;192832;207817;237376;166000;170000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;1286;2019;1598;3673;5845;3814;5311;6371;4686;5406;5808;5391;6645;5038;4938;4383;4734;5372;6878;7595;8737;7028;13275;11371;23124;20170;23425;28445;26123;36311;36869;33840;45515;60890;69348;81847;102947;105266;61793;42421;48015;38761;31838;38944;50349;47816;46517;48348.15;60835;48718;54988;103462;76169;69845 -229;'826;United Kingdom of Great Britain and Northern Ireland;1633;Sawnwood, non-coniferous;5516;Production;m3;768500;678150;669400;732450;669400;621150;556650;588300;575300;736000;729000;710000;708000;622500;611500;691500;765500;756500;767000;655000;532000;461000;391000;341000;296000;356000;262000;265000;365000;336000;347000;181000;162000;175000;189000;151000;142000;128000;120000;108382;129853;91206;81244;60626;53000;45000;45000;44289;47777;47642;51736;48116;45560;47358;43679;47035;41776;41096;46401;37370;37298;37000;35000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;981950;798950;848800;1031200;1028150;877300;836600;956350;800500;828600;781250;806700;1110950;626850;607900;653400;650700;696450;996200;641650;656600;666800;883000;775000;763000;791000;953750;1022000;1007950;835000;676000;626000;509000;405000;500500;574900;611000;479300;504000;655000;695600;678400;770084;781976;659917;562056;522828;399000;380707;468621;410147;422752;436000;496000;434766;426555;574688;587074;602731;540811;535603;612000;484000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;80187;62236;68311;84501;86292;75666;72448;78779;70346;79458;78834;83670;178755;149020;117178;137396;149379;180237;285543;232913;248131;250350;297571;285768;255717;295475;386107;478270;485065;517907;386213;383653;333465;387810;376924;373670;414152;280669;282695;319809;313576;324047;352326;397288;354062;372564;494202;454132;319474;371802;369774;372154;369745;417000;386509;377581;426504.86;429011;395653;364358;391324;425237;444853 -229;'826;United Kingdom of Great Britain and Northern Ireland;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;8100;3600;2700;1900;4300;4100;2400;4400;3800;8150;11500;10850;16950;13900;14350;23550;29400;30400;36250;29100;23500;24000;24500;25000;22000;20000;20100;12000;12650;14700;13800;18000;5000;8000;8000;11000;12000;12700;12000;10000;11799;10990;13667;14529;15067;8401;19331;16866;25000;30899;31621;25096;18786;17886;21000;24926;23790;20349;22325;22963;39339;17000;19000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;745;613;398;301;482;557;314;518;521;1382;1780;1605;2769;3400;3583;4589;6856;8332;11806;12744;8938;9145;6775;6317;5981;6804;8101;9917;10356;15930;14158;18338;7357;15678;13658;13352;17518;11582;11878;9665;11337;13627;15661;21787;12474;9577;33997;29831;22541;24587;27451;22157;18309;20750;19810;20440;22210.67;24313;25014;25869;28823;27964;33752 -229;'826;United Kingdom of Great Britain and Northern Ireland;1634;Veneer sheets;5516;Production;m3;;;;;;;;;28000;29000;40000;47000;48000;32000;29000;29000;24000;25000;27000;22000;22000;22000;22000;22000;22000;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;0;0;0 -229;'826;United Kingdom of Great Britain and Northern Ireland;1634;Veneer sheets;5616;Import quantity;m3;28400;21600;26100;31200;32200;29500;39400;44400;40800;45500;40500;44300;56900;81400;39000;47000;74300;84100;90800;77400;76400;76400;95000;95000;107000;103000;106000;187900;159600;116000;72600;48169;52195;87000;62000;78000;51000;46200;40000;37200;34039;33700;27825;29636;69267;57360;33094;30063;15667;27752;25803;20053;24365;23801;15032;26017;41836;29976;17892;22059;14205;7000;7000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1634;Veneer sheets;5622;Import value;1000 USD;9118;8017;8510;9944;10270;9438;7587;6270;5148;12663;13748;15446;30942;33585;29020;19043;38152;47700;57784;47783;45549;45549;44116;43313;48421;55906;78772;101993;86855;102472;70897;70994;71381;86849;84954;94004;91953;86646;81066;76517;64843;57415;62686;66123;44843;43967;78589;73898;40439;48944;70254;53240;69022;68662;45480;47216;34001.56;39092;26207;25523;16768;41484;40914 -229;'826;United Kingdom of Great Britain and Northern Ireland;1634;Veneer sheets;5916;Export quantity;m3;400;400;4300;4700;3600;2300;4700;5400;6500;8300;7900;8200;11300;17700;8700;7800;8100;7900;8200;9100;10600;6800;10000;8000;7000;9000;9000;10000;34900;43600;29500;6247;5973;11000;13000;27000;6000;7700;60000;17000;6296;6023;5078;4608;4758;5390;4612;7778;3116;2002;1908;1568;2124;2678;2643;2610;2638;1888;2257;1653;378;1000;1000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1634;Veneer sheets;5922;Export value;1000 USD;280;280;3010;5546;4270;2774;2785;2906;3427;4464;5861;5698;8629;13286;9143;9544;10215;10795;11790;16498;13269;6400;9367;9806;9274;11023;11023;14355;12806;15734;14723;16472;14883;20340;23002;24974;20401;24810;22566;23161;16242;18171;14969;14876;17708;20002;20962;18506;14286;9001;12185;11631;12885;13506;7222;7766;6195.01;4782;4443;3310;4581;6165;6811 -229;'826;United Kingdom of Great Britain and Northern Ireland;1873;Wood-based panels;5516;Production;m3;187400;211700;231400;306100;352300;409500;337900;386800;404500;385100;327900;346600;387000;478600;635800;761000;643000;611000;680000;680000;605000;605000;624000;660000;949000;1075000;1212000;1675000;1657000;1707000;1763000;1917000;2097000;2208000;2531000;2589000;2640000;2727000;2974000;3275000;3255000;3217000;3361000;3533000;3398000;3498000;3549000;3140000;3030000;3370000;3384000;3003000;3032000;3068000;3080000;3033000;3176000;3079000;3246000;2952000;3486000;3261000;3216000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1873;Wood-based panels;5616;Import quantity;m3;825700;928900;1025300;1252200;1244300;1259242;1683441;1926231;1724276;1962484;2033017;2420763;3317155;2346357;2213205;2506822;2271300;2883100;3177100;2368300;2765300;2705400;2959800;2973000;3092700;3073600;3302500;3807200;3884700;3202100;2757100;2981000;2696000;2670000;2780000;2916000;2821000;3233300;2990800;3270100;3564231;3746375;3463714;3782938;3482261;3627341;3814141;3358942;2484273;2673244;2801075;2629628;2939742;3236150;3200158;3383931;3453457;3847825;3597036;3245349;3780291;3225000;3126000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1873;Wood-based panels;5622;Import value;1000 USD;101039;112170;124635;154706;158779;147482;188674;195698;190188;228866;236609;290337;511451;438421;405063;459481;465937;620004;827446;684270;721708;688300;671710;619390;609833;734716;837486;1178700;1035486;1032910;839887;896969;812035;909975;1016149;1066639;971524;957520;947630;962075;991637;1118146;1190849;1556395;1403852;1333105;1719312;1538397;1019226;1157710;1273696;1200042;1311011;1474534;1418494;1316542;1452639.54;1562894;1421264;1217806;1790171;1908506;1665148 -229;'826;United Kingdom of Great Britain and Northern Ireland;1873;Wood-based panels;5916;Export quantity;m3;4900;4200;5500;5400;4900;12800;15400;21300;25000;57900;38000;34200;49800;62600;56600;64200;79300;90700;114800;132700;144300;140700;115800;140800;89000;96000;80800;101800;129800;176200;183000;180079;191375;320000;373800;382200;315000;261400;321400;328800;356257;418390;525671;514079;515302;504404;594332;512332;447735;507421;543697;595247;429399;401393;283754;312324;371564;293191;381962;387800;321035;371000;310000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1873;Wood-based panels;5922;Export value;1000 USD;1000;1086;1239;1507;1475;1426;1948;2167;2938;6644;5318;5693;8761;12155;12370;14084;21565;27097;36362;54844;48411;49011;33699;40282;26254;32061;40604;40053;41243;56025;66418;71130;76218;92868;129292;124014;123205;91005;101108;92831;89586;104914;134434;158426;168746;214884;193963;173432;148942;166184;193281;194630;158052;163521;107924;114897;133938.26;132321;152607;142739;212207;205667;159602 -229;'826;United Kingdom of Great Britain and Northern Ireland;1640;Plywood and LVL;5516;Production;m3;40800;36600;34700;39200;44100;37600;32500;31300;28900;36000;31000;30000;26000;26000;25000;25000;23000;24000;22000;15000;17000;16000;17000;17000;15000;16000;17000;18000;17000;15000;14000;7000;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;0 -229;'826;United Kingdom of Great Britain and Northern Ireland;1640;Plywood and LVL;5616;Import quantity;m3;575800;637400;701100;863000;858900;773600;1000300;1075200;955200;1101100;990800;1112800;1480000;921200;830000;1057900;873800;1063300;1212700;771700;1023300;928700;1135000;1048000;1042000;1203000;1271000;1603000;1642700;1454200;1271000;1397000;1157000;1202000;1127000;1132000;947000;969100;1153200;1207000;1300000;1297000;1253000;1474000;1456404;1496885;1624077;1486000;1164273;1264310;1329718;1285006;1370005;1399214;1466045;1478758;1215000;1598315;1452991;1362365;1540990;1315000;1167000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1640;Plywood and LVL;5622;Import value;1000 USD;78159;86326;95520;117925;121657;111723;142776;142019;139570;167335;155723;181709;325933;268340;210263;266590;259084;327463;459466;324523;394757;358478;366818;325789;309504;376279;383230;621813;550609;572985;452184;506955;448063;494205;472604;480376;494460;439093;451593;436290;459753;452279;447436;624749;624587;630994;766814;779215;484032;593590;634764;625764;672811;698627;702861;635778;673380.91;764360;650148;551108;805658;866096;684371 -229;'826;United Kingdom of Great Britain and Northern Ireland;1640;Plywood and LVL;5916;Export quantity;m3;2600;2100;2500;2400;1900;1900;3000;4000;7700;19700;9100;10000;16100;17000;11800;15600;21500;39100;51600;77300;59500;56400;43000;53000;23000;29000;33000;24300;25800;39500;44800;25492;13000;23000;25000;27000;16000;18400;26100;34000;49266;55800;66849;90967;114820;136154;69638;58941;66000;74588;70260;53923;57597;71515;45384;65589;91556;78985;85910;82556;54552;66000;48000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1640;Plywood and LVL;5922;Export value;1000 USD;464;509;677;681;526;496;815;974;1704;3456;2529;2988;4216;5290;4820;6313;9573;15513;20702;37465;26363;24985;16308;22031;10574;12829;24000;11151;9330;14279;13424;15049;8263;9582;12978;7998;10920;13581;19007;21037;24584;27198;32940;48978;59519;64855;37527;32529;36075;39797;39012;29640;30893;41873;31824;36058;42505.52;46852;50421;44480;51323;49254;37953 -229;'826;United Kingdom of Great Britain and Northern Ireland;1607;Laminated Veneer Lumber (LVL);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -229;'826;United Kingdom of Great Britain and Northern Ireland;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54000;49000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40953;35215 -229;'826;United Kingdom of Great Britain and Northern Ireland;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;260;340 -229;'826;United Kingdom of Great Britain and Northern Ireland;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;978;388 -229;'826;United Kingdom of Great Britain and Northern Ireland;1646;Particle board and OSB (1961-1994);5516;Production;m3;76400;113800;142300;193400;231200;253900;230800;280900;297800;272700;243500;255500;301500;377000;552000;683000;562000;529000;604000;616000;536000;515000;518000;542000;835000;953000;1065000;1486000;1437000;1517000;1569000;1737000;1757000;1803000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;40600;57600;69800;97900;128900;157700;230400;378500;345100;417400;612300;867200;1280500;954800;998000;1020100;1047000;1413200;1539800;1280200;1399000;1473700;1525000;1629000;1735000;1541000;1717000;1829000;1871000;1418900;1138000;1193000;1165000;1167000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;1563;2991;4001;5923;7966;9080;14286;22865;22706;29071;46142;71748;128982;121100;138464;132633;151239;224232;280560;275563;243844;256400;234337;225789;231257;272168;369537;424398;363967;332036;267136;241585;224438;256829;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;11400;8100;5900;9400;19800;26300;27500;35400;38100;46500;40900;67000;63000;49000;63000;42000;41000;42000;44600;71000;97800;92400;100857;93775;190000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;1354;941;984;1998;3495;4435;4653;7676;8331;11221;12118;17939;16900;10586;12259;9860;11044;14226;15131;20025;25673;33721;39012;33736;53835;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1915000;1963000;1954000;2064000;2206000;2334000;2238000;2166000;2246000;2373000;2277000;2346000;2404000;2166000;2115000;2274000;2310000;1885000;1956000;1999000;2004000;2004000;2146000;1890000;1934327;1698399;2090399;2012399;2012400 -229;'826;United Kingdom of Great Britain and Northern Ireland;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1190000;1185000;1119000;1263200;985300;1130900;1200231;1287075;1106000;1104000;936000;877207;940666;814000;434000;452991;488074;415877;570142;701580;665000;818850;915060;977838;847698;590417;698175;649000;608000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;257000;256686;245719;235768;236314;232521;243614;238677;236046;283230;214687;152996;367090;258709;146264;150575;177437;141484;185269;232276;215200;226923;248065.97;272783;229219;157933;249914;280551;252505 -229;'826;United Kingdom of Great Britain and Northern Ireland;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;254000;255000;198000;75100;99900;74600;82300;81000;97953;94357;91871;12699;163471;127831;107000;143000;121032;157809;72802;71682;59000;61556;113601;69934;87394;85639;62005;55000;65000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71969;73514;77135;29476;30861;20133;24729;23482;29301;31375;35471;44901;56227;48210;38667;42750;40784;50184;28076;30384;22299;23987;37606.11;27877;32114;29434;33595;31873;35129 -229;'826;United Kingdom of Great Britain and Northern Ireland;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;203000;201000;221000;223000;236000;236000;260000;280000;280000;280000;280000;280000;280000;265000;255000;320000;315000;330000;320000;320000;320000;345000;355000;465000;560673;597601;597601;597601;597600 -229;'826;United Kingdom of Great Britain and Northern Ireland;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109800;78100;69100;90900;158000;150000;184000;198000;198082;243337;181000;198000;195974;202941;193839;225965;278486;305000;270269;373482;349936;399398;413912;460824;365000;436000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22390;17904;18251;21382;23503;25086;39157;45459;31881;72799;60869;54025;62627;66629;52843;59951;77649;78648;55588;92852.72;88470;109063;105040;166558;144610;129604 -229;'826;United Kingdom of Great Britain and Northern Ireland;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;129300;130200;112200;130200;133200;157138;149238;91317;132941;113971;161169;139000;135000;169913;174580;156478;146193;108303;120500;100018;89322;146518;160410;132980;190000;149000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32755;30590;22625;18780;21448;30829;36276;23896;43693;35864;39807;32654;35816;51861;46843;46100;43535;24594;27341;23146.37;28124;41141;39259;80752;75917;47103 -229;'826;United Kingdom of Great Britain and Northern Ireland;1874;Fibreboard;5516;Production;m3;70200;61300;54400;73500;77000;118000;74600;74600;77800;76400;53400;61100;59500;75600;58800;53000;58000;58000;54000;49000;52000;74000;89000;101000;99000;106000;130000;171000;203000;175000;180000;173000;335000;400000;408000;420000;460000;435000;527000;700000;757000;771000;835000;880000;841000;872000;865000;709000;660000;776000;759000;788000;756000;749000;756000;684000;675000;724000;751000;656000;798000;651000;606000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1874;Fibreboard;5616;Import quantity;m3;209300;233900;254400;291300;256500;327942;452741;472531;423976;443984;429917;440763;556655;470357;385205;428822;350500;406600;424600;316400;343000;303000;299800;296000;315700;329600;314500;375200;371000;329000;348100;391000;374000;301000;463000;599000;755000;891200;774200;863100;973100;1004300;954714;1020938;891857;1055167;1006061;877942;688000;759969;780342;734906;773630;856870;764113;816054;949915;921736;896949;878655;1080302;896000;915000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1874;Fibreboard;5622;Import value;1000 USD;21317;22853;25114;30858;29156;26679;31612;30814;27912;32460;34744;36880;56536;48981;56336;60258;55614;68309;87420;84184;83107;73422;70555;67812;69072;86269;84719;132489;120910;127889;120567;148429;139534;158941;286545;329577;231345;260269;241819;275013;266888;403687;482281;609259;519119;517234;512609;439604;334905;350918;394866;379951;392980;465982;421785;398253;438339.95;437281;432834;403725;568041;617249;598668 -229;'826;United Kingdom of Great Britain and Northern Ireland;1874;Fibreboard;5916;Export quantity;m3;2300;2100;3000;3000;3000;10900;12400;17300;17300;26800;20800;18300;24300;25800;18500;21100;22400;13500;16700;14500;17800;21300;23800;24800;24000;26000;5800;32900;33000;38900;45800;53730;84600;107000;94800;100200;101000;38600;65200;108000;94491;148390;203731;179517;217294;222610;247252;164391;135735;154833;182492;208935;142522;112003;71067;64679;66389;54950;62140;59195;71498;60000;48000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1874;Fibreboard;5922;Export value;1000 USD;536;577;562;826;949;930;1133;1193;1234;1834;1848;1721;2547;3370;3115;3118;4316;3253;4439;5261;4109;7126;6805;5992;5820;8188;2378;13771;11888;16073;19273;17069;34219;29451;44345;42502;35150;15193;20650;29036;21493;32786;41364;41797;49860;61435;64345;52886;41546;47821;61624;67963;52983;47729;29207;27511;30680.26;29468;28931;29566;46537;48623;39417 -229;'826;United Kingdom of Great Britain and Northern Ireland;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48000;45000;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 -229;'826;United Kingdom of Great Britain and Northern Ireland;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;170000;170000;198000;191600;143200;243300;230900;321100;398052;435689;387262;353571;238695;146230;103000;109263;105749;122234;143222;143869;153874;140194;120790;110189;121095;100671;111160;110000;120000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83842;112955;112808;94720;81819;143760;155518;249284;343463;428543;368649;352683;139753;109565;91042;94083;93581;107044;103122;136858;134792;113941;87826.13;76184;81173;80338;91754;113287;212378 -229;'826;United Kingdom of Great Britain and Northern Ireland;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8800;23200;38000;3900;7700;21400;18700;32900;31519;12821;28450;31835;34001;29017;18000;4833;5077;4185;4267;5124;4430;3873;2628;3667;5232;4214;10517;9000;9000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6000;18053;19298;5057;6993;11810;8554;11484;13876;12873;17936;21511;15618;11363;8316;3706;4186;4921;5090;4822;3666;3553;2192.41;2925;2801;3379;7291;8068;10900 -229;'826;United Kingdom of Great Britain and Northern Ireland;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;408000;420000;412000;390000;515000;700000;757000;771000;835000;880000;841000;872000;865000;709000;660000;776000;759000;788000;756000;749000;756000;684000;675000;724000;751000;656000;798000;651000;606000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;247000;337000;462000;571900;496000;409500;378800;437000;390000;424000;406000;625987;711277;697000;560000;596968;611449;558480;576315;669486;560119;610962;776802;741494;719720;710061;878369;739000;755000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;191027;202066;105453;142684;130092;95702;92181;121914;107747;148516;131325;146731;340959;312032;230730;239929;278088;252872;269424;313000;266978;262717;331079.72;338852;333277;301884;441677;484451;364080 -229;'826;United Kingdom of Great Britain and Northern Ireland;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70000;53000;51000;29500;47500;74600;68600;109300;161512;138115;137464;180419;206176;130059;111735;137000;165652;193111;126404;96001;54701;47767;48433;42461;49188;50684;54411;42000;31000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35534;20090;12836;7782;10655;13415;11507;19451;24372;25350;27149;35093;44597;38200;30620;38761;51513;56897;40492;36285;19073;16963;19647.65;20259;20783;20540;31617;29779;19667 -229;'826;United Kingdom of Great Britain and Northern Ireland;1650;Other fibreboard;5516;Production;m3;36000;36000;32400;36500;38000;56000;35600;35600;37200;36400;30400;34800;34000;55600;44800;28000;34000;34000;30000;25000;28000;32000;32000;28000;25000;32000;33000;34000;30000;27000;17000;17000;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 -229;'826;United Kingdom of Great Britain and Northern Ireland;1650;Other fibreboard;5616;Import quantity;m3;25900;28400;31200;56700;52700;132400;199600;219600;192000;190000;187200;185200;249600;232800;190400;186000;153800;167900;170000;124500;148000;130700;84000;76000;84000;80000;128000;107200;110000;63700;93800;92000;116000;25000;46000;92000;95000;127700;135000;210300;363400;246200;166662;161249;98595;75609;56089;34712;25000;53738;63144;54192;54093;43515;50120;64898;52323;70053;56134;67923;90773;47000;40000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1650;Other fibreboard;5622;Import value;1000 USD;3150;3618;3761;6970;6997;5634;6049;6848;6912;6043;6856;6805;10904;2057;13536;11258;10751;13139;15253;13716;15256;13462;8061;6384;6941;7583;13000;12650;11477;8235;8596;12782;15448;14298;11676;14556;13084;22865;29908;35551;19189;32489;31071;32200;19145;17820;31897;18007;13133;16906;23197;20035;20434;16124;20015;21595;19434.1;22245;18384;21503;34610;19511;22210 -229;'826;United Kingdom of Great Britain and Northern Ireland;1650;Other fibreboard;5916;Export quantity;m3;;;;;;10600;12000;16800;16800;26200;20200;17800;23600;25100;17000;19600;18900;10100;12800;10500;14800;13300;8000;8000;8000;8000;3000;8800;7000;11200;9800;12000;12000;7000;16000;24000;12000;5200;10000;12000;7191;6190;10700;28581;51380;10356;7075;5315;6000;13000;11763;11639;11851;10878;11936;13039;15328;8822;7720;4297;6570;9000;8000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;860;973;1073;1104;1674;1678;1571;2317;3100;2515;2568;2910;1610;2362;2558;2168;1950;1204;824;1068;1521;600;2163;1549;2823;2482;3807;2559;4385;2811;4359;3016;2354;3002;3811;1432;1851;3116;3574;4775;4831;4130;3323;2610;5354;5925;6145;7401;6622;6468;6995;8840.2;6284;5347;5647;7629;10776;8850 -229;'826;United Kingdom of Great Britain and Northern Ireland;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;34200;25300;22000;37000;39000;62000;39000;39000;40600;40000;23000;26300;25500;20000;14000;25000;24000;24000;24000;24000;24000;42000;57000;73000;74000;74000;97000;137000;173000;148000;163000;156000;318000;400000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;183400;205500;223200;234600;203800;195542;253141;252931;231976;253984;242717;255563;307055;237557;194805;242822;196700;238700;254600;191900;195000;172300;215800;220000;231700;249600;186500;268000;261000;265300;254300;299000;258000;276000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;18167;19235;21353;23888;22159;21045;25563;23966;21000;26417;27888;30075;45632;46924;42800;49000;44863;55170;72167;70468;67851;59960;62494;61428;62131;78686;71719;119839;109433;119654;111971;135647;124086;144643;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;2300;2100;3000;3000;3000;300;400;500;500;600;600;500;700;700;1500;1500;3500;3400;3900;4000;3000;8000;15800;16800;16000;18000;2800;24100;26000;27700;36000;41730;72600;100000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;536;577;562;826;949;70;160;120;130;160;170;150;230;270;600;550;1406;1643;2077;2703;1941;5176;5601;5168;4752;6667;1778;11608;10339;13250;16791;13262;31660;25066;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1879;Total fibre furnish;5510;Production;t;2070000;1984000;1982000;2076000;2194000;2107000;2096200;2291900;2423300;2486400;2285300;2604700;2712000;2598000;2134000;2354000;2399000;2490000;2603000;2604000;2364000;2211000;2299000;2436000;2514000;2866000;3126000;3343000;3593000;3857000;3854000;3690000;3812000;4570000;4433000;4900000;5610000;5583000;5652000;5775000;6013000;6491900;6808100;7469600;8059000;8302400;8881000;9045000;8426000;8233000;8266000;8420000;8128000;8251000;8139000;8052000;7999000;7766000;7575000;6874000;7330000;6905000;6625000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1879;Total fibre furnish;5610;Import quantity;t;733200;655200;715300;829700;897100;836100;727000;2644700;2619100;2787500;2058100;2223400;2189600;2337000;1769600;2132917;1963862;1941400;1928900;1615300;1561600;1321000;1439000;1641000;1565000;1653000;1994800;2029700;2048000;2053700;2007000;2075374;1791007;1928000;2064000;1790000;1848700;1701200;1734600;1911400;1669215;1692701;1610583;1712321;1653258;1454740;1393796;1297195;987709;1132280;1186279;1109618;1239432;1326176;1487720;1169327;1138895;1136535;923197;720542;848290;936000;837000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1879;Total fibre furnish;5622;Import value;1000 USD;57388;51430;55542;65439;75379;70821;61683;309532;329265;406253;327860;339748;388218;657911;681848;751087;651413;559009;697307;783410;778648;610181;550086;725722;578573;690941;1077080;1291729;1441645;1382086;971593;1056101;782823;879588;1490585;979097;927117;795523;827496;1142787;878803;737870;802863;879328;858892;900598;957208;1010079;638502;847499;916191;751181;774040;828117;971304;726344;707519.62;839721;634893;580200;526552;727296;554783 -229;'826;United Kingdom of Great Britain and Northern Ireland;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;107300;81200;77000;109000;155700;82600;55000;54000;49600;125700;233700;169500;136300;196800;262400;199400;253400;350800;427800;482400;414400;343000;359513;205678;440400;286300;321000;498500;466000;481400;598900;697218;1240264;2012025;3155762;3354344;4015014;4766691;4900532;4464006;4422771;4501462;4460271;4259943;4449533;4892832;4934281;4738094;4534897;4334187;3859381;4301262;4083000;3956000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;7170;5437;4881;8791;27560;17784;7939;9031;8250;20425;46100;25921;20365;24045;34758;29514;35895;54525;79021;80525;90931;65311;78594;41467;68158;88717;76540;97130;75001;82800;109837;109484;156103;290669;442852;515716;619566;828128;878287;551014;836193;968962;851522;781125;793216;822442;629018;837684.96;764525;561435;514550;1008984;925308;649198 -229;'826;United Kingdom of Great Britain and Northern Ireland;1878;Pulp for paper;5510;Production;t;550000;525000;440000;440000;430000;405000;410200;464900;500300;500400;413300;396700;419000;404000;371000;400000;360000;380000;346000;301000;183000;156000;185000;202000;293000;411000;404000;442000;615000;764000;757000;632000;568000;626000;639000;575000;623000;584000;517000;474000;492000;524000;504000;344000;341000;287000;264000;277000;271000;230000;230000;220000;227000;237000;227000;227000;227000;227000;227000;227000;227000;227000;229000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1878;Pulp for paper;5610;Import quantity;t;733200;655200;715300;829700;897100;836100;727000;2644700;2619100;2760500;2049100;2211400;2160600;2229600;1745900;2032317;1839962;1891200;1878700;1588600;1534900;1281300;1412000;1556000;1473000;1613000;1939700;1969700;1967700;1895000;1803800;1915537;1733646;1754000;1826000;1701000;1769600;1643800;1673600;1775000;1617904;1616806;1510469;1625257;1575472;1314825;1306200;1223372;894168;1017358;1009617;949618;1055432;1190176;1182720;1044543;1031693;1016535;840197;590299;718290;768000;741000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1878;Pulp for paper;5622;Import value;1000 USD;57388;51430;55542;65439;75379;70821;61683;309532;329265;405118;327313;339107;386440;644200;678562;739497;634929;551325;687735;779240;775010;603843;546679;714823;566869;685563;1066152;1275838;1420793;1353502;942869;1030013;769356;849624;1411294;960301;909400;784949;817241;1112576;860989;724222;786743;866958;849770;884065;942246;991307;621783;821704;861745;718623;740824;796693;936767;709224;689408.45;811407;612612;535903;490313;679129;530628 -229;'826;United Kingdom of Great Britain and Northern Ireland;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;8300;4200;3000;7000;15700;15900;100;9500;9400;8900;23000;12200;10800;3800;6400;3400;5400;2900;4200;3000;10000;4500;28973;34429;21400;15300;16000;8500;23300;29700;8600;2818;13364;6798;28323;25423;18911;18177;9393;20418;34437;22103;13271;11943;13533;11832;2016;5433;4897;7187;17381;2638;1000;1000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;1291;1016;803;1929;6070;8290;22;2361;1845;2307;10805;2887;2257;1456;1951;1125;2051;1259;1854;1671;7353;2704;13837;11233;7422;10916;14138;7977;15538;18603;5976;1528;9872;7128;11431;10748;12784;13425;5676;15226;26436;14703;10058;9041;8804;6503;1595;2483.4;3635;3217;9926;3014;2673;2032 -229;'826;United Kingdom of Great Britain and Northern Ireland;1875;Wood pulp;5510;Production;t;265000;265000;270000;280000;285000;285000;310200;374900;422300;432400;377300;356700;356000;342000;319000;346000;306000;326000;324000;286000;168000;141000;173000;190000;281000;399000;389000;421000;594000;743000;743000;618000;554000;626000;639000;575000;623000;584000;517000;474000;492000;524000;504000;344000;341000;287000;264000;277000;271000;230000;230000;220000;220000;230000;220000;220000;220000;220000;220000;220000;220000;220000;220000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1875;Wood pulp;5610;Import quantity;t;1007900;919000;1039000;1153400;1221200;1110900;1024400;2998500;2977900;3109800;2372800;2590400;2559300;2572900;2025700;2292917;2151862;2160300;2199700;1856600;1726500;1483400;1601000;1737000;1610000;1750000;2220800;2102900;2098500;2011300;1972800;2155172;1937047;1908000;1967000;1814000;1870000;1748400;1652100;1737100;1587197;1579090;1467549;1565135;1627309;1400000;1378159;1280001;911999;1061000;1062663;999379;1077881;1212790;1191673;1059093;1062621;1046000;871679;623927;754085;800000;772000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1875;Wood pulp;5622;Import value;1000 USD;106734;95532;108478;121764;133490;117670;110806;367543;390926;469626;388328;404904;465644;748340;775001;814771;737424;648246;816944;904317;868301;702900;634266;799608;631878;749224;1210866;1337386;1481016;1404245;1029958;1161186;886340;930648;1479775;1008203;977554;851803;785404;1075078;826089;682829;741337;810928;875709;948155;991210;1008524;596703;857756;926383;766884;727779;783689;916102;685698;680617.83;795602;596052;514091;475415;661788;524223 -229;'826;United Kingdom of Great Britain and Northern Ireland;1875;Wood pulp;5910;Export quantity;t;100;0;0;0;0;0;0;0;0;8300;4200;3000;7000;15700;15900;16000;21500;24100;28100;35600;14600;12900;4300;8400;6400;6400;3200;6200;3900;10400;5000;33297;33830;21000;15000;15000;8000;23400;29600;8200;2965;8355;2663;3247;4907;14261;12939;3714;15691;31000;20557;12154;11001;13026;7266;1734;5202;5272;7100;17003;2304;1000;1000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1875;Wood pulp;5922;Export value;1000 USD;10;0;0;0;0;0;0;0;0;1291;1016;803;1929;6070;8290;10540;7372;8095;10470;16676;3873;3097;1656;2861;2396;2366;1442;3031;2220;7515;2923;15249;10056;6831;10491;12248;7053;14500;17073;5097;1157;4127;1302;3415;2741;8325;7282;2091;9036;23825;13069;8474;7542;8316;4699;745;1940.35;3367;3050;9070;1711;1108;1245 -229;'826;United Kingdom of Great Britain and Northern Ireland;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;220000;220000;220000;220000;220000;220000;220000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87155;19000;23000;20618;17000;17000;47000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45055.8;10374;12054;12098;9463;10428;9933 -229;'826;United Kingdom of Great Britain and Northern Ireland;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5045;2976;6000;4000;171;0;0 -229;'826;United Kingdom of Great Britain and Northern Ireland;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1819.39;1832;2319;1236;351;168;230 -229;'826;United Kingdom of Great Britain and Northern Ireland;1654;Mechanical wood pulp (1961-2016);5510;Production;t;230000;230000;235000;240000;245000;245000;220800;233900;250300;249100;207200;179500;174000;172000;179000;188000;149000;163000;172000;164000;78000;61000;74000;91000;182000;258000;252000;273000;446000;595000;595000;495000;444000;502000;548000;490000;537000;509000;442000;411000;429000;444000;413000;258000;341000;287000;264000;277000;271000;230000;230000;220000;220000;230000;220000;220000;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;733200;655200;696300;779500;840400;783300;676500;708800;651500;616400;442500;440000;432400;417900;263000;338117;305162;315200;288400;182900;121100;94700;115000;226000;183000;194000;181300;194000;172300;155000;145000;131769;106264;95000;119000;79000;96000;69500;51000;69000;96995;65190;69387;71723;61524;61741;38919;19054;20439;13166;12861;11335;1629;1320;565;1062;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;57388;51430;54000;59720;68583;63927;54671;58154;54521;55934;42536;40338;50940;78420;70400;70709;62083;58456;62404;58424;43864;34300;33818;81404;60703;59622;71713;94259;87125;79364;61095;54680;38993;33012;36500;35550;40779;31844;21668;36936;49098;35595;41556;43147;34048;38143;21870;11939;14993;8792;8172;6388;977;956;780;290;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;8300;4200;3000;7000;15700;15900;100;700;100;400;100;2000;600;300;2000;1000;1000;100;1900;1300;2400;1000;1611;17425;13000;13000;11000;5000;3600;5000;3000;52;7576;2174;1638;887;1217;3399;2995;2773;1231;5742;908;998;983;846;1503;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;1291;1016;803;1929;6070;8290;22;210;10;108;86;900;270;151;448;451;400;29;727;615;1385;736;1081;2717;2521;9172;9262;4443;3309;2322;1592;33;2945;818;630;332;300;1224;801;1048;628;3135;1356;954;1232;352;509;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;22200;44700;106800;113800;107100;109800;112000;105000;86000;97000;99000;102000;94000;88000;90000;80000;99000;99000;99000;141000;137000;148000;148000;148000;148000;123000;110000;124000;91000;85000;86000;75000;75000;63000;63000;80000;91000;86000;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;19000;31000;35300;26500;24900;16500;17400;19400;19700;22400;19600;20700;13400;15600;11700;11600;12200;12000;10700;5200;8000;11000;8000;6000;9600;12000;7000;61000;32300;50594;55016;36000;52000;20000;11000;8700;9000;17000;14847;34516;11312;10953;10915;7193;9006;25708;9682;58209;78000;56665;182371;175680;160435;117108;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;1542;2586;3128;2212;2061;1373;1622;2102;2437;2684;3053;5115;4778;4723;3190;2852;3779;4645;4053;1900;2218;3714;2268;2229;4708;5147;3310;30585;13086;13768;12716;13222;26195;9591;4920;3912;4741;11676;7243;13878;8819;5852;5615;4772;6070;20868;6662;63315;86015;62530;110330;118097;115086;63339;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;183;84;0;0;0;0;0;100;100;179;78;34;50;1;74;1;2;25;0;0;92;2;17;154;65;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;153;73;0;0;0;0;53;81;60;109;104;34;500;25;147;0;5;70;0;0;73;13;85;752;20;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1656;Chemical wood pulp;5510;Production;t;35000;35000;35000;40000;40000;40000;67200;96300;65200;69500;63000;67400;70000;65000;54000;61000;58000;61000;58000;34000;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -229;'826;United Kingdom of Great Britain and Northern Ireland;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;1892500;1928100;2103200;1569900;1727200;1685500;1765600;1458500;1661600;1503500;1544600;1560900;1380900;1381700;1160000;1277000;1308000;1257000;1390000;1727100;1736900;1759200;1642300;1589500;1701179;1556938;1607000;1640000;1584000;1636000;1548500;1591600;1648000;1461779;1473298;1378994;1474706;1438876;1197420;1217742;1126274;838192;918389;897518;860000;850000;993000;991869;894962;926998;981000;799000;554309;686000;736000;684000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;245102;269112;342772;278578;292591;326271;544350;594058;652307;555855;475638;605302;698971;705450;546000;498998;622798;492124;610617;974779;1153680;1305581;1211696;840377;937373;699905;786671;1329080;889165;838468;726871;758340;1023311;761272;630315;687090;757591;746492;782119;856875;856654;534589;693057;711324;594160;575409;623970;758369;580881;590202.06;747773;537291;463130;418166;601815;473986 -229;'826;United Kingdom of Great Britain and Northern Ireland;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;8800;9300;8500;22900;10200;10200;3500;4400;2400;4400;2800;2300;1700;7600;3500;22152;15896;8000;2000;4000;3000;19500;24300;5100;2510;639;446;946;4017;12875;9402;712;12394;29768;14815;11124;10000;12000;6036;166;157;1680;1065;13000;2132;1000;1000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;2151;1835;2199;10719;1987;1987;1305;1503;674;1651;1230;1127;1056;5968;1968;9755;7047;4310;1319;2986;2610;10856;14583;3409;974;488;282;634;2382;6866;6001;1275;7567;23182;9931;6963;6548;6978;3437;213;116.48;1305;574;7813;1342;901;985 -229;'826;United Kingdom of Great Britain and Northern 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 -229;'826;United Kingdom of Great Britain and Northern Ireland;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;243700;251700;254000;144200;150300;166500;166800;136600;115800;101500;105000;98400;93300;96700;62900;63000;39000;35000;31000;37200;38300;39200;37900;27600;19943;28684;60000;83000;97000;86000;18400;22000;24000;9161;10937;32153;6706;4799;1857;3582;8631;3321;8910;11047;11173;8365;15411;17645;12997;11204;13763;12050;5212;9532;0;10000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;27926;30084;36300;21930;21383;28195;46760;52378;38954;31472;27551;34009;41780;44230;28700;20602;15699;12766;12555;18434;22291;23498;22414;14673;9954;12090;31175;43125;50399;43533;8731;8031;13605;4173;4061;16742;3066;2281;1112;2723;6137;2002;6609;8591;7770;6230;12215;13497;10009;7104.92;9922;8050;4338;5775;8702;6266 -229;'826;United Kingdom of Great Britain and Northern Ireland;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;100;200;300;1800;7500;7500;1000;1000;1000;1000;1000;1000;200;200;600;194;1283;0;0;0;0;0;0;0;2;209;140;0;0;75;0;0;40;0;1;0;63;1;2;0;9;250;12;0;13;0;0 -229;'826;United Kingdom of Great Britain and Northern Ireland;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;59;53;83;111;833;833;258;258;258;258;258;258;82;82;405;108;510;0;0;0;0;28;13;0;6;195;25;0;0;282;0;0;31;3;8;0;95;1;1;0;10.04;186;8;44;2;0;57 -229;'826;United Kingdom of Great Britain and Northern 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 -229;'826;United Kingdom of Great Britain and Northern Ireland;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;1005900;1058400;1222400;949800;1123000;1075700;1138500;1004000;1165500;1128200;1179200;1219500;1099100;1104500;957200;1060000;1087000;1053000;1193000;1387000;1407500;1439300;1322600;1437300;1444771;1368316;1442000;1449000;1363000;1424900;1439800;1525900;1566700;1408000;1398189;1278668;1379827;1356864;1155901;1177732;1086792;823034;891655;875759;834827;829635;968589;971355;878114;913261;964237;783950;546783;673468;734000;672000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;134131;152599;203035;170683;196363;212663;359690;412311;462902;424175;368070;476213;559987;562970;441500;412910;518016;411109;522581;796680;954064;1063462;979303;753353;794549;611357;696083;1224040;767445;731616;665359;699604;967680;732538;593545;634575;702194;696688;751720;823694;820025;522671;667848;684865;572553;557705;602613;739403;565447;579157.2;731921;523749;455179;408010;588407;463590 -229;'826;United Kingdom of Great Britain and Northern Ireland;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;3100;4400;500;7800;2100;2100;2100;3000;1000;3000;1400;1100;1200;6500;1700;20249;9640;3000;0;0;0;19200;24000;5000;2502;417;289;800;3948;12748;9326;625;12172;29718;14725;11000;9937;11999;5998;138;121;1364;988;13000;2108;1000;1000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;1051;1014;189;4056;858;858;858;1056;227;1204;783;771;872;5431;847;8582;4083;2241;0;0;0;10530;14396;3226;723;220;217;382;2233;6556;5916;1100;7287;23061;9776;6771;6453;6977;3373;154;66.7;1030;481;7698;1280;822;517 -229;'826;United Kingdom of Great Britain and Northern Ireland;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -229;'826;United Kingdom of Great Britain and Northern Ireland;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2533;3000;3000;2314;3000;2000;2000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3939.94;5930;5492;3613;4381;4706;4130 -229;'826;United Kingdom of Great Britain and Northern Ireland;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;66;65;0;11;0;0 -229;'826;United Kingdom of Great Britain and Northern Ireland;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39.74;89;85;71;60;79;411 -229;'826;United Kingdom of Great Britain and Northern 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;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;228500;227700;218100;137600;142900;130700;139900;86900;83800;59700;54500;49600;49100;36800;32900;25000;33000;30000;23000;28100;15300;15200;4500;3800;8446;18517;17000;7000;5000;2700;600;0;0;219;1160;227;192;268;2226;3815;1033;358;420;438;528;325;283;280;680;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;27161;28903;33139;22551;21571;22593;37335;33042;27239;17139;12765;16263;23616;17896;16000;9913;14309;10779;8627;12063;9119;9199;434;1527;3617;8662;8526;3511;2508;1201;396;115;120;264;680;275;390;442;1536;2855;1045;307;697;820;783;772;687;649;630;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;0;0;0;0;0;0;0;0;1;0;0;0;0;0;0;22;32;0;92;0;0;24;19;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;0;0;0;0;66;2;42;42;48;0;0;0;0;0;25;56;71;0;114;0;0;30;20;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;40000;40000;40000;67200;96300;65200;69500;63000;67400;70000;65000;54000;61000;58000;61000;58000;34000;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;414400;390300;408700;338300;311000;312600;320400;231000;296500;214100;205900;193400;139400;143700;107000;129000;149000;139000;143000;274800;275800;265500;277300;120800;228019;141421;88000;101000;119000;122400;89700;43700;57300;44399;63012;67946;87981;76945;37436;32613;29818;11479;17404;10274;13472;11675;8717;2589;3171;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;55884;57526;70298;63414;53274;62820;100565;96327;123212;83069;67252;78817;73588;80354;59800;55573;74774;57470;66854;147602;168206;209422;209545;70824;129253;67796;50887;58404;68813;62118;52385;50590;41906;24297;32029;35498;51941;47081;27751;27603;29447;9609;17903;17048;13054;10702;8455;4820;4795;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;5600;4700;7700;13300;600;600;400;400;400;400;400;200;300;900;1200;1709;4936;5000;2000;4000;3000;300;300;100;6;12;17;146;69;52;76;87;160;18;89;32;0;0;12;9;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;1041;768;1927;6552;296;296;189;189;189;189;189;98;102;455;716;1065;2425;2069;1319;2986;2610;232;172;141;203;25;40;252;149;28;85;150;193;47;147;78;0;0;33;39;;;;;;; -229;'826;United Kingdom of Great Britain and Northern 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 -229;'826;United Kingdom of Great Britain and Northern Ireland;1667;Dissolving wood pulp;5610;Import quantity;t;274700;263800;323700;342900;345500;301100;323000;380700;380900;370800;340700;400800;421800;368700;290800;277600;331500;288900;338200;280800;213000;223500;201000;192000;162000;160000;302800;160000;160000;153000;206000;271630;218829;170000;156000;131000;127000;121700;500;3100;13576;6086;7856;7753;115994;133646;112492;108965;43686;71236;74284;71379;43881;42790;38804;45961;48468;46000;49679;49000;51085;47000;41000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1667;Dissolving wood pulp;5622;Import value;1000 USD;49346;44102;52936;59458;61779;51531;54074;62914;65671;68818;64777;69291;85380;120455;105765;87032;116296;111300;145459;142277;114934;120700;99232;91692;76783;76756;159666;84300;85000;82600;115400;155365;134726;97743;88000;73897;93387;89176;655;3155;8476;3041;3872;4338;89554;123121;106395;119063;40459;92592;120872;103806;41063;40666;41867;41188;45359.97;37455;46707;38863;47786;49545;40304 -229;'826;United Kingdom of Great Britain and Northern Ireland;1667;Dissolving wood pulp;5910;Export quantity;t;100;0;0;0;0;0;0;0;0;0;0;0;0;0;0;15900;12000;14700;19200;12600;2400;2100;500;2000;3000;1000;300;2000;900;400;500;9351;425;0;0;0;0;300;200;0;224;62;9;613;2;95;137;5;499;1;0;30;1;26;230;0;0;616;35;3;1;0;0 -229;'826;United Kingdom of Great Britain and Northern Ireland;1667;Dissolving wood pulp;5922;Export value;1000 USD;10;0;0;0;0;0;0;0;0;0;0;0;0;0;0;10518;5011;6250;8163;5871;986;840;200;910;1271;315;183;1177;549;162;219;4260;219;0;0;0;0;282;87;36;41;590;168;1651;2;1012;57;10;351;15;3;82;27;21;158;3;4.48;230;157;21;18;39;30 -229;'826;United Kingdom of Great Britain and Northern Ireland;1668;Pulp from fibres other than wood;5510;Production;t;285000;260000;170000;160000;145000;120000;100000;90000;78000;68000;36000;40000;63000;62000;52000;54000;54000;54000;22000;15000;15000;15000;12000;12000;12000;12000;15000;21000;21000;21000;14000;14000;14000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;9000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;19200;21400;26300;25600;26900;22100;21500;17000;21800;23100;25400;11000;17000;19600;19800;17200;12800;21400;21400;12000;11000;25000;23000;21700;26800;29200;36700;37000;31995;15428;16000;15000;18000;26600;17100;22000;41000;44283;43802;50776;67875;64157;48471;40533;52336;25855;27594;21238;21618;21432;20176;29851;31411;17540;16535;18197;15372;15290;15000;10000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;3133;3668;4682;4951;4903;4010;4310;3762;3494;6176;16315;9326;11758;13801;14379;16250;17200;21643;21643;11645;6907;11774;13095;14952;22752;24777;31857;28311;24192;17742;16719;19519;25995;25233;22322;32492;40653;43376;44434;49278;60368;63615;59031;57431;101846;65539;56540;56234;55545;54108;53670;62532;64714;54150.58;53260;63267;60675;62684;66886;46709 -229;'826;United Kingdom of Great Britain and Northern Ireland;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5027;1024;400;300;1000;500;200;300;400;77;5071;4144;25689;20518;4745;5375;5684;5226;3438;1546;1147;943;533;4796;282;231;241;122;381;335;0;0 -229;'826;United Kingdom of Great Britain and Northern Ireland;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2848;1396;591;425;1890;924;1320;1617;915;412;6335;5994;9667;8009;5471;6200;3595;6541;2626;1637;1666;1526;509;1962;853;547.53;498;324;877;1321;1604;817 -229;'826;United Kingdom of Great Britain and Northern Ireland;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;43000;3000;2165;292;3708;3307;2077;3101;8340;11551;2048;5192;115;177;218;868;1668;1155;1259;3481;7186;4631;8701;5000;5000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;190;3241;1996;914;217;902;1384;992;1463;5072;11761;3774;2429;819;375;337;1451;2076;1202;1446.97;3036;4657;4073;7302;5220;5342 -229;'826;United Kingdom of Great Britain and Northern Ireland;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5600;7000;14000;11780;7722;3417;190;44;4653;5380;324;936;166;10018;22333;11471;7188;12221;5194;1513;2262;1628;8486;2518;5000;29000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4815;3232;5498;3883;2382;1470;121;79;535;1098;349;299;632;2647;5289;3383;2025;3467;3755;3618.31;2836;2254;4118;1512;1818;8432 -229;'826;United Kingdom of Great Britain and Northern Ireland;1669;Recovered paper;5510;Production;t;1520000;1459000;1542000;1636000;1764000;1702000;1686000;1827000;1923000;1986000;1872000;2208000;2293000;2194000;1763000;1954000;2039000;2110000;2257000;2303000;2181000;2055000;2114000;2234000;2221000;2455000;2722000;2901000;2978000;3093000;3097000;3058000;3244000;3944000;3794000;4325000;4987000;4999000;5135000;5301000;5521000;5967900;6304100;7125600;7718000;8015400;8617000;8768000;8155000;8003000;8036000;8200000;7901000;8014000;7912000;7825000;7772000;7539000;7348000;6647000;7103000;6678000;6396000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;27000;9000;12000;29000;107400;23700;100600;123900;50200;50200;26700;26700;39700;27000;85000;92000;40000;55100;60000;80300;158700;203200;159837;57361;174000;238000;89000;79100;57400;61000;136400;51311;75895;100114;87064;77786;139915;87596;73823;93541;114922;176662;160000;184000;136000;305000;124784;107202;120000;83000;130243;130000;168000;96000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;1135;547;641;1778;13711;3286;11590;16484;7684;9572;4170;3638;6338;3407;10899;11704;5378;10928;15891;20852;28584;28724;26088;13467;29964;79291;18796;17717;10574;10255;30211;17814;13648;16120;12370;9122;16533;14962;18772;16719;25795;54446;32558;33216;31424;34537;17120;18111.17;28314;22281;44297;36239;48167;24155 -229;'826;United Kingdom of Great Britain and Northern Ireland;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;99000;77000;74000;102000;140000;66700;54900;44500;40200;116800;210700;157300;125500;193000;256000;196000;248000;347900;423600;479400;404400;338500;330540;171249;419000;271000;305000;490000;442700;451700;590300;694400;1226900;2005227;3127439;3328921;3996103;4748514;4891139;4443588;4388334;4479359;4447000;4248000;4436000;4881000;4932265;4732661;4530000;4327000;3842000;4298624;4082000;3955000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;5879;4421;4078;6862;21490;9494;7917;6670;6405;18118;35295;23034;18108;22589;32807;28389;33844;53266;77167;78854;83578;62607;64757;30234;60736;77801;62402;89153;59463;64197;103861;107956;146231;283541;431421;504968;606782;814703;872611;535788;809757;954259;841464;772084;784412;815939;627423;835201.57;760890;558218;504624;1005970;922635;647166 -229;'826;United Kingdom of Great Britain and Northern Ireland;1876;Paper and paperboard;5510;Production;t;4021300;3952300;4137200;4401300;4536400;4539900;4436200;4660100;4936500;4903200;4335900;4337800;4614000;4552000;3615000;4188000;4145000;4165000;4223000;3787000;3379000;3227000;3208000;3591000;3712000;3941000;4184000;4295000;4450000;4824000;4951000;5152000;5282000;5829000;6093000;6189000;6480000;6477000;6576000;6605000;6204000;6452000;6455000;6442000;6241000;5454000;5228000;4983270;4293001;4300001;4341998;4291998;4561001;4397000;3970001;3677001;3856990;3894725;3850989;3633829;3641991;3456000;3225376 -229;'826;United Kingdom of Great Britain and Northern Ireland;1876;Paper and paperboard;5610;Import quantity;t;1461800;1543400;1648400;1865200;1722300;1888500;2076300;2267200;2416200;2232700;2648100;3053700;3223900;3726000;2654000;3107600;3394000;3495400;3726800;3509600;4033600;3956400;4279000;4522000;4598000;4751000;5286200;5600500;5990800;5596700;5527300;5892047;5803580;6433000;6277000;6525000;7098000;6725400;7089600;6675000;7325250;7075436;7489705;7527669;7663000;7741001;7890001;7402821;7018394;7253764;6887094;6059500;5866162;5626357;6032000;5875703;5603646;5477067;5150001;4555000;4206000;4730000;3990000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1876;Paper and paperboard;5622;Import value;1000 USD;241973;260795;280758;323528;299650;329837;374233;392503;435046;417664;555386;672669;830666;1526550;1211408;1330274;1721965;1788302;2316180;2584802;2679040;2630000;2391104;2506245;2668401;3201509;4031216;5378686;5356454;5415285;5161830;5176013;4585787;4748022;4854000;4881374;5786631;5689403;5457147;5026284;5451955;4857834;5736782;6452471;6244770;6628812;7492917;6751941;5690929;6176416;6494022;5904727;5698971;5921719;5671003;4637116;4400256.97;4555583;4514483;3722146;3667689;5634969;4768366 -229;'826;United Kingdom of Great Britain and Northern Ireland;1876;Paper and paperboard;5910;Export quantity;t;157000;161900;171300;170600;152200;149300;144500;151700;170500;164700;229500;246300;297200;408300;246300;327400;388000;375100;421100;466200;357200;384100;409000;516000;558000;613000;731900;798000;842300;1100100;1238800;1237806;1240706;1254000;1316000;1340000;1673000;1789500;1784300;1759000;1628051;1548888;1697126;1557306;1163999;1001999;984332;1030911;895702;960977;982308;1159500;1170004;1010000;807000;766575;808661;798400;850700;780999;979557;949736;812984 -229;'826;United Kingdom of Great Britain and Northern Ireland;1876;Paper and paperboard;5922;Export value;1000 USD;71541;69948;81573;90109;92266;90672;90884;90257;97133;98076;146947;166987;203540;320190;277990;332666;441296;462227;583695;734133;563710;592000;505851;581504;633920;798853;1139867;1403081;1296667;1561501;1591657;1553470;1353165;1437759;1371592;1370448;1814506;2142670;1901928;1859503;1732827;1475903;1638649;1817431;1823038;1744442;2029228;2058533;1581287;1650894;1674109;1660317;1641903;1643670;1376135;1131753;1283797.75;1363107;1338099;1194271;1292771;1442569;1156197 -229;'826;United Kingdom of Great Britain and Northern Ireland;2042;Graphic papers;5510;Production;t;1681500;1564700;1632800;1775000;1790200;1813200;1858000;1854300;1957300;1902200;1559700;1666000;1654000;1685000;1271000;1277000;1267000;1353000;1394000;1300000;1006000;919000;983000;1201000;1347000;1554000;1683000;1688000;1843000;2083000;2150000;2283000;2416000;2588000;2639000;2729000;2809000;2788000;2816000;2847000;2627000;2526000;2532000;2632000;2654000;2349000;2229000;2063000;1609000;1637001;1668999;1625999;1636000;1544000;1053000;897000;917990;961989;917999;742356;802658;672435;605188 -229;'826;United Kingdom of Great Britain and Northern Ireland;2042;Graphic papers;5610;Import quantity;t;638800;691200;705300;771600;700000;768800;780500;898100;1013900;1063800;1204800;1484100;1582600;1809700;1474000;1622300;1634300;1798700;1935700;1891000;2353500;2291600;2413000;2588000;2584000;2616000;2963000;3370800;3713000;3413800;3348500;3580455;3509453;4349000;4172000;4283000;4687000;4526600;4594000;4365200;5151500;5178600;5443379;5469014;5426890;5459452;5520934;4888420;4566045;4608256;4394886;3626000;3420000;3293000;3394000;3173582;2854893;2675000;2477001;1966000;1744000;2028000;1622000 -229;'826;United Kingdom of Great Britain and Northern Ireland;2042;Graphic papers;5622;Import value;1000 USD;98971;107800;110915;122051;110521;121388;127230;145185;167033;188064;237599;289761;365110;698090;606945;644106;782476;911064;1208161;1365298;1511807;1490100;1333398;1398222;1431535;1705412;2083700;3377352;3354508;3387705;3181366;3023134;2571135;3077842;2682040;2808124;3771550;3705828;3470379;3160328;3587852;3598090;4024262;4526446;4353149;4529984;5095843;4530520;3775806;3813042;3788109;3509986;3217752;3347553;3085904;2394283;2238567.95;2219788;2206512;1546617;1396110;2271487;1910719 -229;'826;United Kingdom of Great Britain and Northern Ireland;2042;Graphic papers;5910;Export quantity;t;74000;75200;80400;74500;47100;41600;50600;57800;76600;70800;62200;61700;67500;85300;63300;92000;99000;122200;152100;170200;127900;139000;144000;197000;214000;264000;302500;410500;459500;621000;634200;731806;848706;874000;764000;762000;923000;817300;794500;811800;596634;688800;832272;765667;550644;445532;481477;476293;414610;431359;427005;573500;547800;482000;303000;292489;303987;306000;352401;310286;450364;404000;382000 -229;'826;United Kingdom of Great Britain and Northern Ireland;2042;Graphic papers;5922;Export value;1000 USD;26282;28020;32614;30950;27566;24374;30673;30046;36922;37865;42862;44367;48499;81123;78314;98501;112709;146234;197320;249079;221967;249600;193471;223597;241175;332953;445501;659200;715475;969865;929302;946127;892620;1012046;646444;643146;1038296;975859;846982;844568;669840;719359;870324;941921;916487;830967;1042711;1078289;846713;808038;824976;889976;837088;870704;629610;509152;600559.15;614632;630251;515233;542498;611050;475139 -229;'826;United Kingdom of Great Britain and Northern Ireland;1671;Newsprint;5510;Production;t;723400;665500;682800;762000;780300;748600;714500;735200;790000;756900;575400;467500;439000;383000;319000;326000;300000;319000;364000;363000;113000;86000;80000;236000;382000;476000;496000;529000;572000;696000;672000;700000;741000;769000;873000;976000;1030000;1046000;1071000;1100000;1090000;1048000;1038000;1117000;1136000;1095000;1036000;1073000;1104000;1195000;1227000;1184000;1233000;1159000;790432;673447;689210;722244;689217;557342;602617;504849;454365 -229;'826;United Kingdom of Great Britain and Northern Ireland;1671;Newsprint;5610;Import quantity;t;622500;659700;653100;684400;596800;646300;609800;685600;766400;789100;809000;1129500;1165300;1276400;943000;1134000;964300;1033200;1068600;1076500;1363000;1255900;1244000;1257000;1242000;1136000;1285000;1285000;1578000;1307600;1327500;1333360;1354336;1696000;1553000;1524000;1628000;1577000;1468400;1290700;1969700;1650400;1486431;1451071;1488999;1461452;1566255;1460207;1208212;1078951;997873;652000;513000;521173;591743;698336;537456;457857;456424;289000;285000;382000;337000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1671;Newsprint;5622;Import value;1000 USD;94607;100198;98399;101126;86685;94640;90816;101976;114631;122242;139030;194321;231766;406490;346199;398049;407512;451868;572620;659674;729727;671900;580466;532433;536249;573774;800000;1068083;1067245;964755;1014553;855050;667295;804602;1021710;1133680;973585;946200;848893;649582;1079360;870874;796071;861466;858749;906336;1099648;790452;632268;459360;501897;433706;318332;337404;333427;339407;271868.97;251183;267158;139260;147603;285787;271222 -229;'826;United Kingdom of Great Britain and Northern Ireland;1671;Newsprint;5910;Export quantity;t;28000;24300;23400;16900;2300;2300;2000;1500;1700;1800;300;200;100;2300;4900;9000;12200;21400;37900;58400;12500;7000;9000;28000;63000;72000;74800;70300;95800;145000;148600;156339;163033;202000;164000;188000;252000;251100;229400;216700;159000;160400;168669;185353;132600;101901;128483;219245;257622;267099;254130;336000;333000;292000;130000;148446;161648;168968;214336;188848;304965;269000;265000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1671;Newsprint;5922;Export value;1000 USD;4597;4059;3853;2634;378;358;291;204;262;233;49;46;33;863;1932;3509;5234;8334;18907;32915;6398;3600;2866;11117;24091;34914;47558;50258;65519;125645;117648;98415;80012;100635;121927;134010;135457;131228;106393;88562;83297;79605;93246;111299;106035;88021;118957;198060;171757;173638;191430;311806;231312;223976;118628;114467;158445.64;169510;180659;143920;166882;242714;213037 -229;'826;United Kingdom of Great Britain and Northern Ireland;1674;Printing and writing papers;5510;Production;t;958100;899200;950000;1013000;1009900;1064600;1143500;1119100;1167300;1145300;984300;1198500;1215000;1302000;952000;951000;967000;1034000;1030000;937000;893000;833000;903000;965000;965000;1078000;1187000;1159000;1271000;1387000;1478000;1583000;1675000;1819000;1766000;1753000;1779000;1742000;1745000;1747000;1537000;1478000;1494000;1515000;1518000;1254000;1193000;990000;505000;442001;441999;441999;403000;385000;262568;223553;228780;239745;228782;185014;200041;167586;150823 -229;'826;United Kingdom of Great Britain and Northern Ireland;1674;Printing and writing papers;5610;Import quantity;t;16300;31500;52200;87200;103200;122500;170700;212500;247500;274700;395800;354600;417300;533300;531000;488300;670000;765500;867100;814500;990500;1035700;1169000;1331000;1342000;1480000;1678000;2085800;2135000;2106200;2021000;2247095;2155117;2653000;2619000;2759000;3059000;2949600;3125600;3074500;3181800;3528200;3956948;4017943;3937891;3998000;3954679;3428213;3357833;3529305;3397013;2974000;2907000;2771827;2802257;2475246;2317437;2217143;2020577;1677000;1459000;1646000;1285000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1674;Printing and writing papers;5622;Import value;1000 USD;4364;7602;12516;20925;23836;26748;36414;43209;52402;65822;98569;95440;133344;291600;260746;246057;374964;459196;635541;705624;782080;818200;752932;865789;895286;1131638;1283700;2309269;2287263;2422950;2166813;2168084;1903840;2273240;1660330;1674444;2797965;2759628;2621486;2510746;2508492;2727216;3228191;3664980;3494400;3623648;3996195;3740068;3143538;3353682;3286212;3076280;2899420;3010149;2752477;2054876;1966698.98;1968605;1939354;1407357;1248507;1985700;1639497 -229;'826;United Kingdom of Great Britain and Northern Ireland;1674;Printing and writing papers;5910;Export quantity;t;46000;50900;57000;57600;44800;39300;48600;56300;74900;69000;61900;61500;67400;83000;58400;83000;86800;100800;114200;111800;115400;132000;135000;169000;151000;192000;227700;340200;363700;476000;485600;575467;685673;672000;600000;574000;671000;566200;565100;595100;437634;528400;663603;580314;418044;343631;352994;257048;156988;164260;172875;237500;214800;190000;173000;144043;142339;137032;138065;121438;145399;135000;117000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1674;Printing and writing papers;5922;Export value;1000 USD;21685;23961;28761;28316;27188;24016;30382;29842;36660;37632;42813;44321;48466;80260;76382;94992;107475;137900;178413;216164;215569;246000;190605;212480;217084;298039;397943;608942;649956;844220;811654;847712;812608;911411;524517;509136;902839;844631;740589;756006;586543;639754;777078;830622;810452;742946;923754;880229;674956;634400;633546;578170;605776;646728;510982;394685;442113.51;445122;449592;371313;375616;368336;262102 -229;'826;United Kingdom of Great Britain and Northern Ireland;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17000;17000;13000;17000;13000;9000;9000;7000;4000;3830;2686;981;1264;1621;1621;1477;1410;962;810;830;870;830;671;721;604;540 -229;'826;United Kingdom of Great Britain and Northern Ireland;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;467200;502900;444900;521700;632000;619279;644042;583205;622822;644600;635136;678992;634230;641027;560000;441006;442733;453336;370760;310047;330823;282420;269000;182000;238000;196000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;364494;380551;275407;318335;444919;418412;446340;392065;444278;534112;565845;545618;466355;476695;465806;340539;381326;332531;241380;206842.95;228965;215495;187594;127630;199776;190281 -229;'826;United Kingdom of Great Britain and Northern Ireland;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21900;28000;25000;21934;132600;125904;113037;108078;72904;59035;22974;22344;24700;15700;19500;15800;7981;8880;11322;7849;7045;8703;7583;8901;10000;10000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18676;19634;19323;16260;154533;113095;105163;129519;103471;117574;79130;67885;52794;53633;54887;50700;47549;53591;46378;52861.15;51799;55884;58520;60107;65716;71292 -229;'826;United Kingdom of Great Britain and Northern Ireland;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;985000;935000;903000;812000;798000;777000;789000;792000;572000;540000;532000;219973;278213;304903;304903;277997;265580;181124;154234;157840;165405;157840;127796;138181;115762;104185 -229;'826;United Kingdom of Great Britain and Northern Ireland;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;658900;725000;683000;705300;691400;943442;1073493;1119040;1098288;933464;769635;983975;1048755;1114579;1005000;1008448;947714;923722;888982;897419;848782;791264;657000;561000;693000;550000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;651326;628879;612793;646516;608417;880145;1102028;1090096;1077810;1039133;958617;996198;1102578;1180647;1131172;1098277;1102909;1027222;820226;820549.88;837833;836365;604894;516206;909610;771233 -229;'826;United Kingdom of Great Britain and Northern Ireland;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;224800;203100;178400;153500;106000;162777;149445;137148;136326;171135;123656;56864;47297;51681;69000;67000;61214;54881;57240;56059;51782;52346;46054;58498;45000;20000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;426180;348709;332252;295919;204284;335194;354406;395917;383922;552948;536039;394336;333550;293675;332052;303634;344602;283356;230300;275491.49;275569;289404;241926;234603;202600;88864 -229;'826;United Kingdom of Great Britain and Northern Ireland;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;740000;793000;831000;708000;667000;708000;717000;719000;678000;649170;455314;284046;162524;135475;135475;123526;118010;80482;68509;70110;73470;70112;56547;61139;51220;46098 -229;'826;United Kingdom of Great Britain and Northern Ireland;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1823500;1897700;1946600;1954800;2204800;2394227;2300408;2235646;2276890;2376615;2023442;1694866;1846320;1641407;1409000;1457546;1381380;1425199;1215504;1109971;1037538;946893;751000;716000;715000;539000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1743808;1612056;1622546;1543641;1673880;1929634;2116612;2012239;2101560;2422950;2215606;1601722;1784749;1628870;1479302;1460604;1525914;1392724;993270;939306.15;901807;887494;614869;604671;876314;677983 -229;'826;United Kingdom of Great Britain and Northern Ireland;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;319500;334000;391700;262200;289800;374922;317832;172818;134401;122824;110418;77780;92263;105494;149000;132000;120805;109239;75481;78431;78205;77016;67801;78000;80000;87000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;399775;372246;404431;274364;280937;328789;371053;285016;255553;253232;265060;212735;248056;286238;191231;251442;254577;174035;118007;113760.86;117754;104304;70867;80906;100020;101946 -229;'826;United Kingdom of Great Britain and Northern Ireland;1675;Other paper and paperboard;5510;Production;t;2339800;2387600;2504400;2626300;2746200;2726700;2578200;2805800;2979200;3001000;2776200;2671800;2960000;2867000;2344000;2911000;2878000;2812000;2829000;2487000;2373000;2308000;2225000;2390000;2365000;2387000;2501000;2607000;2607000;2741000;2801000;2869000;2866000;3241000;3454000;3460000;3671000;3689000;3760000;3758000;3577000;3926000;3923000;3810000;3587000;3105000;2999000;2920270;2684001;2663000;2672999;2665999;2925001;2853000;2917001;2780001;2939000;2932736;2932990;2891473;2839333;2783565;2620188 -229;'826;United Kingdom of Great Britain and Northern Ireland;1675;Other paper and paperboard;5610;Import quantity;t;823000;852200;943100;1093600;1022300;1119700;1295800;1369100;1402300;1168900;1443300;1569600;1641300;1916300;1180000;1485300;1759700;1696700;1791100;1618600;1680100;1664800;1866000;1934000;2014000;2135000;2323200;2229700;2277800;2182900;2178800;2311592;2294127;2084000;2105000;2242000;2411000;2198800;2495600;2309800;2173750;1896836;2046326;2058655;2236110;2281549;2369067;2514401;2452349;2645508;2492208;2433500;2446162;2333357;2638000;2702121;2748753;2802067;2673000;2589000;2462000;2702000;2368000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1675;Other paper and paperboard;5622;Import value;1000 USD;143002;152995;169843;201477;189129;208449;247003;247318;268013;229600;317787;382908;465556;828460;604463;686168;939489;877238;1108019;1219504;1167233;1139900;1057706;1108023;1236866;1496097;1947516;2001334;2001946;2027580;1980464;2152879;2014652;1670180;2171960;2073250;2015081;1983575;1986768;1865956;1864103;1259744;1712520;1926025;1891621;2098828;2397074;2221421;1915123;2363374;2705913;2394741;2481219;2574166;2585099;2242833;2161689.02;2335795;2307971;2175529;2271579;3363482;2857647 -229;'826;United Kingdom of Great Britain and Northern Ireland;1675;Other paper and paperboard;5910;Export quantity;t;83000;86700;90900;96100;105100;107700;93900;93900;93900;93900;167300;184600;229700;323000;183000;235400;289000;252900;269000;296000;229300;245100;265000;319000;344000;349000;429400;387500;382800;479100;604600;506000;392000;380000;552000;578000;750000;972200;989800;947200;1031417;860088;864854;791639;613355;556467;502855;554618;481092;529618;555303;586000;622204;528000;504000;474086;504674;492400;498299;470713;529193;545736;430984 -229;'826;United Kingdom of Great Britain and Northern Ireland;1675;Other paper and paperboard;5922;Export value;1000 USD;45259;41928;48959;59159;64700;66298;60211;60211;60211;60211;104085;122620;155041;239067;199676;234165;328587;315993;386375;485054;341743;342400;312380;357907;392745;465900;694366;743881;581192;591636;662355;607343;460545;425713;725148;727302;776210;1166811;1054946;1014935;1062987;756544;768325;875510;906551;913475;986517;980244;734574;842856;849133;770341;804815;772966;746525;622601;683238.61;748475;707848;679038;750273;831519;681058 -229;'826;United Kingdom of Great Britain and Northern Ireland;1676;Household and sanitary papers;5510;Production;t;;;;;;238300;230700;257600;284600;293400;313800;325600;374000;366000;367000;417000;387000;402000;419000;434000;414000;403000;413000;444000;417000;421000;435000;439000;439000;441000;455000;473000;445000;551000;567000;586000;639000;635000;718000;724000;738000;823000;808000;806000;801000;805000;834000;783000;736000;729000;766000;795000;802000;768000;772000;730000;734000;737811;762000;742000;690000;737000;734000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;9600;800;1000;1600;1700;1800;1900;2400;2000;2400;76600;54300;70800;68000;76000;99000;90000;83000;98000;117600;128200;128500;168700;170000;164000;194000;183000;201000;224500;176000;145000;148242;125069;135304;159657;179275;162500;174078;333253;338330;358966;374954;356000;221000;235000;318000;377218;388542;375000;313000;497000;486000;365000;362000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;9600;798;800;1200;2160;2763;3056;4221;3500;4225;92772;57017;74000;56642;61837;82462;88449;101711;126098;151693;182608;173533;199122;196173;196746;233000;219790;279529;294591;190360;177983;162817;143862;158064;190736;229149;222230;257631;296020;275366;283959;297673;270690;345702;372680;410868;412162;393189.96;419465;445940;429387;415279;635724;555479 -229;'826;United Kingdom of Great Britain and Northern Ireland;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;500;400;400;400;800;1300;1500;1300;1500;8400;6800;7000;5000;7000;11000;9000;5500;9000;12000;19300;25200;26000;22000;25000;21000;23000;39000;24200;31000;37000;29255;40605;25272;31191;27091;40494;52700;12822;9731;13961;10475;9000;13000;15000;17000;22300;30800;41400;33100;41000;32771;28736;20984 -229;'826;United Kingdom of Great Britain and Northern Ireland;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;389;400;450;490;1245;1739;2516;2200;2600;19440;7395;7400;4865;6434;9900;12212;6090;14613;16382;29512;33409;34000;28730;31660;26594;29127;63089;42420;40945;47199;30958;43898;30459;53454;55288;87135;98969;98153;65486;63911;46022;41300;51912;55186;59779;37857;46373.34;67566;54399;58817;53786;63556;47885 -229;'826;United Kingdom of Great Britain and Northern Ireland;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2590000;2527000;2554000;2420000;2441000;2469000;2432000;2191000;1999000;1852000;1838270;1702001;1640000;1599999;1599999;1851001;1801000;1894001;1800001;1935000;1904000;1883990;1917010;1897990;1841990;1696684 -229;'826;United Kingdom of Great Britain and Northern Ireland;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1696100;2020100;1869400;1764908;1681267;1824804;1820677;1988256;2047604;2106961;2010289;1962889;2120012;2043007;1957500;2038162;2046709;2175000;2172394;2223816;2289067;2234000;2043000;1929000;2281000;1992000 -229;'826;United Kingdom of Great Britain and Northern Ireland;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1217375;1361645;1254608;1283571;988545;1407156;1570945;1525290;1722563;1956647;1740788;1514943;1932598;2241807;1950664;1983487;2062355;2032435;1718924;1683192.96;1832038;1770992;1661260;1792683;2643151;2217319 -229;'826;United Kingdom of Great Britain and Northern Ireland;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;614400;652000;585500;623862;787383;809656;734099;563485;485568;431662;392399;339794;353781;363056;424000;486204;393000;372000;339968;352003;317000;335999;316000;456422;479000;398000 -229;'826;United Kingdom of Great Britain and Northern Ireland;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;613705;558916;522974;552137;598336;615328;708903;734870;740718;779809;768919;586213;679355;686386;602204;628822;585231;564518;485704;534965.89;565809;536153;511469;573480;656857;531150 -229;'826;United Kingdom of Great Britain and Northern Ireland;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;1903800;1846800;1989900;2106600;2095400;1877700;1911500;2081000;2089000;1625000;2049000;1972000;1949000;1961000;1678000;1601000;1557000;1549000;1664000;1647000;1662000;1733000;1821000;1821000;2024000;2106000;2148000;2137000;2375000;2534000;2513000;2617000;;;;;;;;;;;;;;;;;;;;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;823000;852200;943100;1093600;1022300;1119700;1295800;1369100;1402300;1159300;899200;991200;992500;1099600;897600;728600;862700;831400;877600;1264800;1362400;1307500;1515000;1547000;1641000;1738000;1549500;1478800;1584900;1915500;1924800;1994192;2052127;1877000;1624000;1699000;1829000;;;;;;;;;;;;;;;;;;;;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;143002;152995;169843;201477;189129;208449;247003;247318;268013;220000;180180;200000;230000;423950;469517;286026;327862;315932;342300;802107;833950;800200;740344;767081;876443;1037643;1041833;1137811;1112659;1722101;1688612;1828629;1746479;1429430;1645290;1484680;1542879;;;;;;;;;;;;;;;;;;;;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;83000;86700;90900;96100;105100;107700;93900;93900;93900;93900;4500;7000;12100;21200;13800;12100;16800;14700;16000;118200;91600;98000;143000;163000;193000;195000;242100;179500;235100;336000;410600;310000;309000;317000;327000;350000;404000;;;;;;;;;;;;;;;;;;;;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;45259;41928;48959;59159;64700;66298;60211;60211;60211;60211;4695;7500;16000;12585;12641;9683;13518;12000;14000;119489;93722;94000;114181;122099;159885;190414;268188;213396;246739;436697;490236;423343;344408;341640;419394;417805;503387;;;;;;;;;;;;;;;;;;;;;;;;;; -229;'826;United Kingdom of Great Britain and Northern Ireland;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1760000;1813000;1872000;1791000;1822000;1866000;1873000;1692000;1532000;1402000;1304000;1226815;1150547;1126620;1126620;1303359;1268153;1333638;1266947;1361966;1340147;1326065;1349305;1335923;1296507;1205752 -229;'826;United Kingdom of Great Britain and Northern Ireland;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;910100;796000;793000;787400;775100;799581;795555;878641;871432;993042;1024611;927837;1039400;1080500;989000;1020000;963708;1075000;1052565;1097401;1163000;1147000;1004000;1047000;1134000;1125000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;461173;379308;406476;429019;368912;399818;431569;430502;474609;625351;609153;424429;627794;813166;614368;639683;641366;621456;531826;524487.11;621997;600241;561818;738502;1037619;872788 -229;'826;United Kingdom of Great Britain and Northern Ireland;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;194400;264100;211300;231600;274500;384502;400605;222754;155837;119139;116125;103796;84586;108167;213000;236000;172000;192000;189220;191929;144000;152000;127000;129168;161000;125000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;114615;128861;118505;137609;133196;183284;225564;162780;123528;119725;110810;63339;79948;105530;98445;117578;67451;86481;84672;101732.32;91045;86381;75249;89421;138557;101928 -229;'826;United Kingdom of Great Britain and Northern Ireland;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;274000;270000;263000;230000;234000;229000;202000;202000;244000;235000;278867;283453;265537;268338;268338;310436;302054;317652;301800;324432;319235;315878;321417;318228;308839;277955 -229;'826;United Kingdom of Great Britain and Northern Ireland;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;376100;887800;794200;706700;504600;664520;676464;691492;775848;763308;648749;676354;724201;656566;727000;766863;731226;745556;789091;812950;821540;797694;769000;599000;752000;576000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;386241;694141;596420;610372;291295;666349;766596;732491;869944;917794;740044;731971;897521;1011418;943665;958038;1000366;993812;843854;827734.83;871647;860851;814734;733084;1084980;927216 -229;'826;United Kingdom of Great Britain and Northern Ireland;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;189300;183000;210900;213448;163055;101144;111814;138657;222744;217418;203342;175653;185872;189668;160000;164236;142308;113370;95978;103598;117457;126365;129908;233675;231000;187000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;315372;265079;271248;276717;226392;183296;264114;307352;453343;478315;505915;401077;461315;417034;351494;358032;346957;304184;254792;267364.62;288039;281682;278355;294722;305539;267203 -229;'826;United Kingdom of Great Britain and Northern Ireland;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;160000;141000;130000;127000;120000;111000;120000;108000;74000;71000;84523;64130;65435;75944;75944;87853;85477;89891;85483;91893;90420;89467;91035;90130;87470;78723 -229;'826;United Kingdom of Great Britain and Northern Ireland;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;321900;326200;279000;268500;319166;283536;276646;341027;328107;282654;272799;307501;306973;261024;187000;192999;296191;277037;257359;236749;228241;205787;156000;154000;225000;226000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;312853;279129;249555;242972;280651;298803;324180;316265;329113;364162;349825;331391;373371;381992;349118;343504;375320;356030;291495;279394.35;291629;257962;236135;257371;438913;360222 -229;'826;United Kingdom of Great Britain and Northern Ireland;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;127700;129200;100200;98178;118844;109934;101387;146993;67531;60690;52264;39696;60965;43236;13000;47149;52461;38785;33905;37871;37358;38463;37242;46707;47000;63000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;128797;125980;104419;105968;126917;137868;147025;221249;130391;146613;126039;100978;113487;139056;124994;126432;143860;143116;122295;144305.22;163565;147644;137132;158698;180591;136148 -229;'826;United Kingdom of Great Britain and Northern Ireland;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;396000;303000;289000;272000;265000;263000;237000;189000;149000;144000;170880;127603;158481;129097;129097;149353;145316;152820;145771;156709;154198;152580;155253;153709;149174;134254 -229;'826;United Kingdom of Great Britain and Northern Ireland;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88000;10100;3200;2308;82401;77167;72012;77096;72217;67957;64130;51197;49438;44917;54500;58300;55584;77407;73379;76716;76286;83519;114000;129000;170000;65000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57108;9067;2157;1208;47687;42186;48600;46032;48897;49340;41766;27152;33912;35231;43513;42262;45303;61137;51749;51576.68;46765;51938;48573;63726;81639;57093 -229;'826;United Kingdom of Great Britain and Northern Ireland;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103000;75700;63100;80636;230984;214076;120293;55081;39456;34415;20668;20649;22358;21985;38000;38819;26231;27845;20865;18605;18185;19171;21850;46872;40000;23000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54921;38996;28802;31843;111831;110880;72200;43489;33456;35156;26155;20819;24605;24766;27271;26780;26963;30737;23945;21563.73;23160;20446;20733;30639;32170;25871 -229;'826;United Kingdom of Great Britain and Northern Ireland;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;584600;500700;558300;588000;612200;584700;434700;505000;412000;352000;445000;519000;461000;449000;375000;358000;348000;263000;282000;301000;304000;333000;347000;347000;276000;240000;248000;284000;315000;353000;361000;415000;464000;515000;480000;419000;662000;646000;572000;595000;301000;313000;299000;246000;294000;307000;271000;272000;284000;251000;250000;270000;290925;287000;232463;251343;204575;189504 -229;'826;United Kingdom of Great Britain and Northern Ireland;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;543300;577400;647200;815000;280600;754800;894600;863300;911100;277200;263400;286500;283000;311000;274000;307000;690700;652900;575300;139200;125500;148700;72000;43000;287000;360000;381000;278200;299500;295400;260600;90500;86218;78321;68579;71445;88028;170859;151130;166530;74247;120000;187000;51648;145000;152509;136395;138000;126000;49000;47000;56000;14000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;136809;182108;234356;402350;132183;397086;607406;557806;761494;324625;276266;265700;260720;279105;277961;370005;803972;737425;737594;122871;118319;125128;72000;44004;293670;368780;192673;471609;434763;433365;417715;127337;147300;164344;137182;154035;182796;184613;124814;146817;166433;173387;152030;139131;141796;111747;85306.1;84292;91039;84882;63617;84607;84849 -229;'826;United Kingdom of Great Britain and Northern Ireland;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;0;162300;177200;217200;301400;168400;222000;270700;236900;251500;169400;130900;140100;117000;149000;140000;145000;181800;199000;135700;123800;168800;170000;61000;38000;204000;205000;307000;333600;306800;324700;378300;32100;29926;26349;22779;30405;18493;149397;131567;161876;181772;153000;123000;120000;115000;111818;121871;134000;129200;113713;40000;38000;12000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;99001;114720;138591;225992;185790;222743;312553;301793;369775;346125;240626;241000;193334;229374;222960;263274;420088;515872;318071;125427;138710;150000;87407;52413;279160;280370;209734;510686;455085;444762;479892;114310;122538;113153;116393;85622;107739;113172;82875;99590;116725;126837;124081;132549;122228;99040;101899.38;115100;117296;108752;123007;111106;102023 -229;'826;United Kingdom of Great Britain and Northern Ireland;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6162004.24;6145814;6333247;5709135;7434612;8466893;7321708 -229;'826;United Kingdom of Great Britain and Northern Ireland;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;810292.08;903526;893102;773301;1025232;1131496;1147699 -229;'826;United Kingdom of Great Britain and Northern Ireland;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;229105.33;189038;185304;150692;199162;265731;204757 -229;'826;United Kingdom of Great Britain and Northern Ireland;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28777.88;39507;34818;32363;40861;35204;33461 -229;'826;United Kingdom of Great Britain and Northern Ireland;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60862.89;66772;58533;51684;69894;100949;68455 -229;'826;United Kingdom of Great Britain and Northern Ireland;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17286.51;24316;23168;21682;28516;21794;20409 -229;'826;United Kingdom of Great Britain and Northern Ireland;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;168242.44;122266;126771;99008;129268;164782;136302 -229;'826;United Kingdom of Great Britain and Northern Ireland;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11491.37;15191;11650;10681;12345;13410;13052 -229;'826;United Kingdom of Great Britain and Northern Ireland;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;215899.25;228571;235118;221906;244904;346285;394031 -229;'826;United Kingdom of Great Britain and Northern Ireland;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61041.77;66581;73102;58509;206863;233179;209603 -229;'826;United Kingdom of Great Britain and Northern Ireland;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;192370.55;182786;220087;194853;241291;234177;202674 -229;'826;United Kingdom of Great Britain and Northern Ireland;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40054.57;40729;44487;40444;33175;31525;34348 -229;'826;United Kingdom of Great Britain and Northern Ireland;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;945990.55;911875;965624;875511;1117292;1228184;1175453 -229;'826;United Kingdom of Great Britain and Northern Ireland;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68383.72;88416;78985;73411;106099;79795;79298 -229;'826;United Kingdom of Great Britain and Northern Ireland;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39000;42000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42242;38908 -229;'826;United Kingdom of Great Britain and Northern Ireland;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;1000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5070;2025 -229;'826;United Kingdom of Great Britain and Northern Ireland;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31000;29000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29051;27806 -229;'826;United Kingdom of Great Britain and Northern Ireland;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;374 -229;'826;United Kingdom of Great Britain and Northern Ireland;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102;1607 -229;'826;United Kingdom of Great Britain and Northern Ireland;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31000;25000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40695;34236 -229;'826;United Kingdom of Great Britain and Northern Ireland;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;3000 -229;'826;United Kingdom of Great Britain and Northern Ireland;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1578;5498 -229;'826;United Kingdom of Great Britain and Northern Ireland;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4200510;4248822;4331367;3867848;5109423;5824943;4892140 -229;'826;United Kingdom of Great Britain and Northern Ireland;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;545725;606894;593282;501227;553466;670951;701616 -229;'826;United Kingdom of Great Britain and Northern Ireland;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53132;65803;57921;60022;83700;169806;130779 -229;'826;United Kingdom of Great Britain and Northern Ireland;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9808.32;10221;13691;14405;26755;37177;45856 -229;'826;United Kingdom of Great Britain and Northern Ireland;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;324996.56;318919;337826;338303;438840;397767;321874 -229;'826;United Kingdom of Great Britain and Northern Ireland;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56500.83;51178;54737;52942;58013;43665;43517 -229;'826;United Kingdom of Great Britain and Northern Ireland;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2603529.28;2799929;2721565;2848882;2795096;3685805;3304477 -229;'826;United Kingdom of Great Britain and Northern Ireland;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1706701.19;1801732;1663931;1533567;1561924;1718408;1616486 -229;'826;United Kingdom of Great Britain and Northern Ireland;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52601.28;57072;51875;44156;49799;83837;64878 -229;'826;United Kingdom of Great Britain and Northern Ireland;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17857.19;15806;14703;13180;12274;14001;17200 -229;'826;United Kingdom of Great Britain and Northern Ireland;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;373906;416474;396749;355896;424060;576939;508809 -229;'826;United Kingdom of Great Britain and Northern Ireland;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;358148;371331;293160;257167;264056;320935;268018 -229;'826;United Kingdom of Great Britain and Northern Ireland;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;410300;413807;387105;766351;363850;494393;452771 -229;'826;United Kingdom of Great Britain and Northern Ireland;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;234129;263356;258395;252512;210106;282497;311594 -229;'826;United Kingdom of Great Britain and Northern Ireland;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;906432;967276;959085;871137;1040361;1387688;1212603 -229;'826;United Kingdom of Great Britain and Northern Ireland;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;370114;412769;410365;387689;470970;502550;482367 -229;'826;United Kingdom of Great Britain and Northern Ireland;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;860290;945300;926751;811342;917026;1142948;1065416 -229;'826;United Kingdom of Great Britain and Northern Ireland;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;726453;738470;687308;623019;604518;598425;537307 -215;'834;United Republic of Tanzania;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;147962;177378;183379;142592;186950.39;246283;249857 -215;'834;United Republic of Tanzania;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90536;181111;101856;112746;186100.47;190366;153241 -215;'834;United Republic of Tanzania;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;1001;1165;1085;1819;2139;2678;2871;3522;3834;5149;6274;4824;7741;13445;11900;11200;12200;13200;14600;16600;16750;16900;16900;18600;15700;15700;15642;14432;14440;13014;13014;3579;8607;5940;3520;3600;3555;11447;22532;9966;9966;6385;30023;36801;36801;40605;54395;63912;63912;89000;91532;93565;83170;135828;81890;99363;94187;115819;120023;88195;121358.39;163850;157481 -215;'834;United Republic of Tanzania;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;1797;886;1158;1981;2172;2131;1661;2068;3392;2310;2106;897;1481;1675;1262;1588;1208;1311;1452;1094;1171;1012;789;789;3017;1696;1516;2465;1971;8514;5214;9178;3151;5583;4645;4400;6503;4459;5780;5349;5349;2868;7080;12390;12390;21981;38789;42606;44030;58954;45476;49189;51606;56640;80634;57589;67813;59367;85130;101399;169157.47;175520;141948 -215;'834;United Republic of Tanzania;1861;Roundwood;5516;Production;m3;12846000;13169999;13553999;13980000;14408000;15288017;15457595;15656572;15833958;16039770;16229840;16304481;16138085;16282094;16421056;16569305;16908008;17123846;17326280;17634016;17965843;18343940;18740530;18976399;19320916;19674682;20124393;20227400;20329256;20513195;20909098;21701612;22009753;22294261;22608063;22802740;22943360;22958131;23051167;23100647;23264514;23438758;23623584;23819209;24025852;24227959;24441200;24665700;24901785;25149697;25382998;25904759;26408297;26676696;26957293;27178148;27410480;27654478;27910341;28178277;28458502;28751187;29056566 -215;'834;United Republic of Tanzania;1861;Roundwood;5616;Import quantity;m3;2000;3700;4300;400;900;2000;800;7600;9600;21700;55100;4000;5000;3000;;;;;;;;;;;;;;;;;;;72;72;111;111;111;136;3032;2522;2522;130;84;6486;6486;1658;4804;247;247;1225;4939;20224;9482;36608;9491;3928;15981;1657;4918;2756;1304;5532;15137 -215;'834;United Republic of Tanzania;1861;Roundwood;5622;Import value;1000 USD;69;206;129;113;114;76;219;85;96;217;551;57;96;86;;;;;;;;;;;;;;;;;;;3;3;6;6;6;10;603;506;506;35;21;401;401;264;588;242;242;425;3686;7926;5200;30066;3814;1809;5740;681;1501;868;768;1656;6511 -215;'834;United Republic of Tanzania;1861;Roundwood;5916;Export quantity;m3;9800;14000;11600;5500;5600;5700;3600;3800;9200;11100;11800;2500;3100;3300;1100;1100;400;300;1600;900;200;200;600;600;600;200;200;200;200;18628;7621;17001;7000;7000;10047;7847;5622;2332;24326;12160;12160;10085;44550;76530;76530;58318;23838;5603;18957;12890;9738;14281;3500;4944;29498;16819;6175;16315;46960;103065;117149;84461;15180 -215;'834;United Republic of Tanzania;1861;Roundwood;5922;Export value;1000 USD;232;133;177;285;277;151;106;120;258;284;344;188;214;277;22;22;51;46;269;131;24;24;52;52;52;14;14;14;14;5523;2223;5853;1163;1544;2903;1821;2823;988;1903;1701;1701;888;3422;6296;6296;12170;11759;5204;6443;5820;2643;3102;3768;1354;7971;4786;3543;7312;11200;11168;14736;10826;3509 -215;'834;United Republic of Tanzania;1862;Roundwood, coniferous;5516;Production;m3;116000;117999;117999;135000;133000;101113;117301;109492;109684;117878;123065;133096;80164;67417;54585;68797;78165;83438;78691;136529;119503;138064;129338;173559;171956;310138;422353;422458;422544;422735;423206;621888;607433;540861;541223;541432;541572;541547;541625;541691;541910;542142;542388;542649;542924;543193;543500;543800;544091;544421;544732;822058;1105050;1105407;1105781;1106075;1106385;1106710;1107051;1107408;1107781;1108171;1108578 -215;'834;United Republic of Tanzania;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11761;1654;3640;712;1237;3228;942 -215;'834;United Republic of Tanzania;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4166;680;1238;188;323;483;465 -215;'834;United Republic of Tanzania;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;614;5997;34807;91789;102403;69481;9428 -215;'834;United Republic of Tanzania;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;226;142;3122;7386;9404;6023;870 -215;'834;United Republic of Tanzania;1863;Roundwood, non-coniferous;5516;Production;m3;12730000;13052000;13436000;13845000;14275000;15186904;15340294;15547080;15724274;15921892;16106775;16171385;16057921;16214677;16366471;16500508;16829843;17040408;17247589;17497487;17846340;18205876;18611192;18802840;19148960;19364544;19702040;19804942;19906712;20090460;20485892;21079724;21402320;21753400;22066840;22261308;22401788;22416584;22509542;22558956;22722604;22896616;23081196;23276560;23482928;23684766;23897700;24121900;24357694;24605276;24838266;25082701;25303247;25571289;25851512;26072073;26304095;26547768;26803290;27070869;27350721;27643016;27947988 -215;'834;United Republic of Tanzania;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4220;3;1278;2044;67;2304;14195 -215;'834;United Republic of Tanzania;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1574;1;263;680;445;1173;6046 -215;'834;United Republic of Tanzania;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5561;10318;12153;11276;14746;14980;5752 -215;'834;United Republic of Tanzania;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3317;7170;8078;3782;5332;4803;2639 -215;'834;United Republic of Tanzania;1864;Wood fuel;5516;Production;m3;12046000;12390999;12749999;13125000;13515000;14347017;14488595;14631572;14775958;14921770;15061840;15085481;15136085;15326094;15452056;15611305;15888008;16092846;16282280;16461416;16816743;17162740;17518530;17684399;17982916;18119682;18280393;18359400;18424256;18567195;18921098;19432612;19841753;20163261;20435063;20591740;20697360;20678131;20737167;20786647;20950514;21124758;21309584;21505209;21711852;21913959;22127200;22351700;22587785;22835697;23068998;23313759;23570218;23838617;24119214;24340069;24572401;24816399;25072262;25340198;25620423;25913108;26218487 -215;'834;United Republic of Tanzania;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;72;72;72;72;72;3;3;3;3;13;13;13;13;13;13;13;30;30;229;16;28;28;28;;0;0;0;0;80;195 -215;'834;United Republic of Tanzania;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;0;0;0;0;3;3;3;3;3;3;3;1;1;162;13;18;18;18;;0;0;0;0;171;488 -215;'834;United Republic of Tanzania;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9431;19;19;19;2212;2212;2212;1269;200;200;200;2700;1;25;825;825;23;23;;5327;32434;85877;102329;65865;9685 -215;'834;United Republic of Tanzania;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;290;2;2;2;304;304;304;117;59;59;59;1453;1;177;100;100;2;2;;85;2853;6839;9387;5721;957 -215;'834;United Republic of Tanzania;1627;Wood fuel, coniferous;5516;Production;m3;50000;49999;49999;50000;50000;19113;19301;19492;19684;19878;20065;20096;20164;20417;20585;20797;21165;21438;21691;21929;22403;22864;23338;23559;23956;24138;24353;24458;24544;24735;25206;25888;26433;26861;27223;27432;27572;27547;27625;27691;27910;28142;28388;28649;28924;29193;29500;29800;30091;30421;30732;31058;31400;31757;32131;32425;32735;33060;33401;33758;34131;34521;34928 -215;'834;United Republic of Tanzania;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0 -215;'834;United Republic of Tanzania;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0 -215;'834;United Republic of Tanzania;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5327;32434;85877;102329;64585;9428 -215;'834;United Republic of Tanzania;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;2853;6839;9387;5292;870 -215;'834;United Republic of Tanzania;1628;Wood fuel, non-coniferous;5516;Production;m3;11996000;12341000;12700000;13075000;13465000;14327904;14469294;14612080;14756274;14901892;15041775;15065385;15115921;15305677;15431471;15590508;15866843;16071408;16260589;16439487;16794340;17139876;17495192;17660840;17958960;18095544;18256040;18334942;18399712;18542460;18895892;19406724;19815320;20136400;20407840;20564308;20669788;20650584;20709542;20758956;20922604;21096616;21281196;21476560;21682928;21884766;22097700;22321900;22557694;22805276;23038266;23282701;23538818;23806860;24087083;24307644;24539666;24783339;25038861;25306440;25586292;25878587;26183559 -215;'834;United Republic of Tanzania;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;195 -215;'834;United Republic of Tanzania;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;171;488 -215;'834;United Republic of Tanzania;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1280;257 -215;'834;United Republic of Tanzania;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;429;87 -215;'834;United Republic of Tanzania;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;72;72;72;72;72;3;3;3;3;13;13;13;13;13;13;13;30;30;229;16;28;28;28;;;;;;; -215;'834;United Republic of Tanzania;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;0;0;0;0;3;3;3;3;3;3;3;1;1;162;13;18;18;18;;;;;;; -215;'834;United Republic of Tanzania;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9431;19;19;19;2212;2212;2212;1269;200;200;200;2700;1;25;825;825;23;23;;;;;;; -215;'834;United Republic of Tanzania;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;290;2;2;2;304;304;304;117;59;59;59;1453;1;177;100;100;2;2;;;;;;; -215;'834;United Republic of Tanzania;1865;Industrial roundwood;5516;Production;m3;800000;779000;804000;855000;893000;941000;969000;1025000;1058000;1118000;1168000;1219000;1002000;956000;969000;958000;1020000;1031000;1044000;1172600;1149100;1181200;1222000;1292000;1338000;1555000;1844000;1868000;1905000;1946000;1988000;2269000;2168000;2131000;2173000;2211000;2246000;2280000;2314000;2314000;2314000;2314000;2314000;2314000;2314000;2314000;2314000;2314000;2314000;2314000;2314000;2591000;2838079;2838079;2838079;2838079;2838079;2838079;2838079;2838079;2838079;2838079;2838079 -215;'834;United Republic of Tanzania;1865;Industrial roundwood;5616;Import quantity;m3;2000;3700;4300;400;900;2000;800;7600;9600;21700;55100;4000;5000;3000;;;;;;;;;;;;;;;;;;;;;39;39;39;64;3029;2519;2519;127;71;6473;6473;1645;4791;234;234;1195;4909;19995;9466;36580;9463;3900;15981;1657;4918;2756;1304;5452;14942 -215;'834;United Republic of Tanzania;1865;Industrial roundwood;5622;Import value;1000 USD;69;206;129;113;114;76;219;85;96;217;551;57;96;86;;;;;;;;;;;;;;;;;;;;;3;3;3;7;603;506;506;35;18;398;398;261;585;239;239;424;3685;7764;5187;30048;3796;1791;5740;681;1501;868;768;1485;6023 -215;'834;United Republic of Tanzania;1865;Industrial roundwood;5916;Export quantity;m3;9800;14000;11600;5500;5600;5700;3600;3800;9200;11100;11800;2500;3100;3300;1100;1100;400;300;1600;900;200;200;600;600;600;200;200;200;200;18628;7621;17001;7000;7000;10047;7847;5622;2332;14895;12141;12141;10066;42338;74318;74318;57049;23638;5403;18757;10190;9737;14256;2675;4119;29475;16796;6175;10988;14526;17188;14820;18596;5495 -215;'834;United Republic of Tanzania;1865;Industrial roundwood;5922;Export value;1000 USD;232;133;177;285;277;151;106;120;258;284;344;188;214;277;22;22;51;46;269;131;24;24;52;52;52;14;14;14;14;5523;2223;5853;1163;1544;2903;1821;2823;988;1613;1699;1699;886;3118;5992;5992;12053;11700;5145;6384;4367;2642;2925;3668;1254;7969;4784;3543;7227;8347;4329;5349;5105;2552 -215;'834;United Republic of Tanzania;1866;Industrial roundwood, coniferous;5516;Production;m3;66000;68000;68000;85000;83000;82000;98000;90000;90000;98000;103000;113000;60000;47000;34000;48000;57000;62000;57000;114600;97100;115200;106000;150000;148000;286000;398000;398000;398000;398000;398000;596000;581000;514000;514000;514000;514000;514000;514000;514000;514000;514000;514000;514000;514000;514000;514000;514000;514000;514000;514000;791000;1073650;1073650;1073650;1073650;1073650;1073650;1073650;1073650;1073650;1073650;1073650 -215;'834;United Republic of Tanzania;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;39;39;39;567;46;46;46;53;6077;6077;1384;4542;131;131;270;270;16807;5438;28444;9356;3872;11761;1654;3640;712;1237;3228;942 -215;'834;United Republic of Tanzania;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;120;22;22;22;3;371;371;84;277;8;8;16;16;5589;1958;18989;3751;1780;4166;680;1238;188;323;483;465 -215;'834;United Republic of Tanzania;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;26;9741;9741;9741;9741;35080;3155;3155;4611;5375;1603;14957;1186;5084;8804;333;1208;1468;481;614;670;2373;5912;74;4896;0 -215;'834;United Republic of Tanzania;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;12;694;694;694;694;1859;167;167;244;285;85;1324;102;269;467;18;64;152;35;226;57;269;547;17;731;0 -215;'834;United Republic of Tanzania;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;39;39;39;567;46;46;46;53;6077;6077;1384;4542;131;131;270;270;16807;5438;28444;9356;3872;11761;1654;3640;712;1237;3228;942 -215;'834;United Republic of Tanzania;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;120;22;22;22;3;371;371;84;277;8;8;16;16;5589;1958;18989;3751;1780;4166;680;1238;188;323;483;465 -215;'834;United Republic of Tanzania;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;26;9741;9741;9741;9741;35080;3155;3155;4611;5375;1603;14957;1186;5084;8804;333;1208;1468;481;614;670;2373;5912;74;4896;0 -215;'834;United Republic of Tanzania;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;12;694;694;694;694;1859;167;167;244;285;85;1324;102;269;467;18;64;152;35;226;57;269;547;17;731;0 -215;'834;United Republic of Tanzania;1867;Industrial roundwood, non-coniferous;5516;Production;m3;734000;711000;736000;770000;810000;859000;871000;935000;968000;1020000;1065000;1106000;942000;909000;935000;910000;963000;969000;987000;1058000;1052000;1066000;1116000;1142000;1190000;1269000;1446000;1470000;1507000;1548000;1590000;1673000;1587000;1617000;1659000;1697000;1732000;1766000;1800000;1800000;1800000;1800000;1800000;1800000;1800000;1800000;1800000;1800000;1800000;1800000;1800000;1800000;1764429;1764429;1764429;1764429;1764429;1764429;1764429;1764429;1764429;1764429;1764429 -215;'834;United Republic of Tanzania;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;2462;2473;2473;81;18;396;396;261;249;103;103;925;4639;3188;4028;8136;107;28;4220;3;1278;2044;67;2224;14000 -215;'834;United Republic of Tanzania;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;483;484;484;13;15;27;27;177;308;231;231;408;3669;2175;3229;11059;45;11;1574;1;263;680;445;1002;5558 -215;'834;United Republic of Tanzania;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18628;7621;17001;7000;7000;10047;7847;5622;2306;5154;2400;2400;325;7258;71163;71163;52438;18263;3800;3800;9004;4653;5452;2342;2911;28007;16315;5561;10318;12153;11276;14746;13700;5495 -215;'834;United Republic of Tanzania;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5523;2223;5853;1163;1544;2903;1821;2823;976;919;1005;1005;192;1259;5825;5825;11809;11415;5060;5060;4265;2373;2458;3650;1190;7817;4749;3317;7170;8078;3782;5332;4374;2552 -215;'834;United Republic of Tanzania;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;15;15;15;15;15;15;1;15;5;5;20;8;8;11;11;62;27;65;2;0;552;0;1;16 -215;'834;United Republic of Tanzania;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;2;2;2;2;2;2;0;3;11;11;13;27;27;58;58;32;11;31;0;0;502;0;0;4 -215;'834;United Republic of Tanzania;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18628;7621;17001;7000;7000;3500;1300;399;402;297;165;165;61;5497;18691;18691;19400;17647;3192;3192;1511;1425;537;125;303;28007;16315;5561;10318;12153;11276;14746;10676;5495 -215;'834;United Republic of Tanzania;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5523;2223;5853;1163;1544;2000;918;190;124;61;62;62;40;1026;2729;2729;3124;4974;4560;4560;851;961;428;241;121;7817;4749;3317;7170;8078;3782;5332;3084;2552 -215;'834;United Republic of Tanzania;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;2458;2458;2458;66;3;381;381;260;234;98;98;905;4631;3180;4017;8125;45;1;4155;1;1278;1492;67;2223;13984 -215;'834;United Republic of Tanzania;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;482;482;482;11;13;25;25;177;305;220;220;395;3642;2148;3171;11001;13;0;1543;1;263;178;445;1002;5554 -215;'834;United Republic of Tanzania;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6547;6547;5223;1904;4857;2235;2235;264;1761;52472;52472;33038;616;608;608;7493;3228;4915;2217;2608;0;0;0;0;0;0;0;3024;0 -215;'834;United Republic of Tanzania;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;903;903;2633;852;858;943;943;152;233;3096;3096;8685;6441;500;500;3414;1412;2030;3409;1069;0;0;0;0;0;0;0;1290;0 -215;'834;United Republic of Tanzania;1868;Sawlogs and veneer logs;5516;Production;m3;282000;246000;256000;289000;310000;340000;350000;387000;400000;440000;470000;500000;261000;193000;183000;147000;184000;168000;154000;249000;195000;179000;184000;208000;222000;314000;317000;317000;317000;317000;317000;317000;317000;317000;317000;317000;317000;317000;317000;317000;317000;317000;317000;317000;317000;317000;317000;317000;317000;317000;317000;510000;785079;785079;785079;785079;785079;785079;785079;785079;785079;785079;785079 -215;'834;United Republic of Tanzania;1868;Sawlogs and veneer logs;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -215;'834;United Republic of Tanzania;1868;Sawlogs and veneer logs;5916;Export quantity;m3;1400;800;1300;3100;3100;1400;1400;1200;3700;3800;3800;1700;1500;2200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -215;'834;United Republic of Tanzania;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;194;87;141;271;258;125;94;104;225;237;288;176;187;255;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -215;'834;United Republic of Tanzania;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;65000;67000;67000;82000;80000;79000;95000;87000;87000;95000;100000;110000;57000;44000;31000;45000;54000;59000;54000;107000;88000;89000;75000;106000;105000;152000;170000;170000;170000;170000;170000;170000;170000;170000;170000;170000;170000;170000;170000;170000;170000;170000;170000;170000;170000;170000;170000;170000;170000;170000;170000;363000;673650;673650;673650;673650;673650;673650;673650;673650;673650;673650;673650 -215;'834;United Republic of Tanzania;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -215;'834;United Republic of Tanzania;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -215;'834;United Republic of Tanzania;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -215;'834;United Republic of Tanzania;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;217000;179000;189000;207000;230000;261000;255000;300000;313000;345000;370000;390000;204000;149000;152000;102000;130000;109000;100000;142000;107000;90000;109000;102000;117000;162000;147000;147000;147000;147000;147000;147000;147000;147000;147000;147000;147000;147000;147000;147000;147000;147000;147000;147000;147000;147000;147000;147000;147000;147000;147000;147000;111429;111429;111429;111429;111429;111429;111429;111429;111429;111429;111429 -215;'834;United Republic of Tanzania;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -215;'834;United Republic of Tanzania;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;1400;800;1300;3100;3100;1400;1400;1200;3700;3800;3800;1700;1500;2200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -215;'834;United Republic of Tanzania;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;194;87;141;271;258;125;94;104;225;237;288;176;187;255;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -215;'834;United Republic of Tanzania;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;153000;153000;153000;153000;153000;153000;153000;153000;153000;153000;153000;153000;153000;153000;237000;209000;209000;209000;209000;209000;209000;209000;209000;209000;209000;209000 -215;'834;United Republic of Tanzania;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116000;116000;116000;116000;116000;116000;116000;116000;116000;116000;116000;116000;116000;116000;200000;172000;172000;172000;172000;172000;172000;172000;172000;172000;172000;172000 -215;'834;United Republic of Tanzania;1603;Pulpwood, round and split, non-coniferous (production);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 -215;'834;United Republic of Tanzania;1870;Pulpwood and particles (1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;157000;145000;145000;145000;145000;381000;234000;153000;153000;153000;153000;;;;;;;;;;;;;;;;;;;;;;;;;; -215;'834;United Republic of Tanzania;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;198000;183000;116000;116000;116000;116000;;;;;;;;;;;;;;;;;;;;;;;;;; -215;'834;United Republic of Tanzania;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;157000;145000;145000;145000;145000;183000;51000;37000;37000;37000;37000;;;;;;;;;;;;;;;;;;;;;;;;;; -215;'834;United Republic of Tanzania;1871;Other industrial roundwood;5516;Production;m3;518000;533000;548000;566000;583000;601000;619000;638000;658000;678000;698000;719000;741000;763000;786000;811000;836000;863000;890000;923600;954100;1002200;1038000;1084000;1116000;1241000;1370000;1406000;1443000;1484000;1526000;1571000;1617000;1661000;1703000;1741000;1776000;1810000;1844000;1844000;1844000;1844000;1844000;1844000;1844000;1844000;1844000;1844000;1844000;1844000;1844000;1844000;1844000;1844000;1844000;1844000;1844000;1844000;1844000;1844000;1844000;1844000;1844000 -215;'834;United Republic of Tanzania;1871;Other industrial roundwood;5616;Import quantity;m3;2000;3700;4300;400;900;2000;800;7600;9600;21700;55100;4000;5000;3000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -215;'834;United Republic of Tanzania;1871;Other industrial roundwood;5622;Import value;1000 USD;69;206;129;113;114;76;219;85;96;217;551;57;96;86;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -215;'834;United Republic of Tanzania;1871;Other industrial roundwood;5916;Export quantity;m3;8400;13200;10300;2400;2500;4300;2200;2600;5500;7300;8000;800;1600;1100;1100;1100;400;300;1600;900;200;200;600;600;600;200;200;200;200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -215;'834;United Republic of Tanzania;1871;Other industrial roundwood;5922;Export value;1000 USD;38;46;36;14;19;26;12;16;33;47;56;12;27;22;22;22;51;46;269;131;24;24;52;52;52;14;14;14;14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -215;'834;United Republic of Tanzania;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;1000;1000;1000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;7600;9100;26200;31000;44000;43000;134000;228000;228000;228000;228000;228000;228000;228000;228000;228000;228000;228000;228000;228000;228000;228000;228000;228000;228000;228000;228000;228000;228000;228000;228000;228000;228000;228000;228000;228000;228000;228000;228000;228000;228000;228000;228000;228000 -215;'834;United Republic of Tanzania;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;517000;532000;547000;563000;580000;598000;616000;635000;655000;675000;695000;716000;738000;760000;783000;808000;833000;860000;887000;916000;945000;976000;1007000;1040000;1073000;1107000;1142000;1178000;1215000;1256000;1298000;1343000;1389000;1433000;1475000;1513000;1548000;1582000;1616000;1616000;1616000;1616000;1616000;1616000;1616000;1616000;1616000;1616000;1616000;1616000;1616000;1616000;1616000;1616000;1616000;1616000;1616000;1616000;1616000;1616000;1616000;1616000;1616000 -215;'834;United Republic of Tanzania;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;2000;3700;4300;400;900;2000;800;7600;9600;21700;55100;4000;5000;3000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -215;'834;United Republic of Tanzania;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;69;206;129;113;114;76;219;85;96;217;551;57;96;86;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -215;'834;United Republic of Tanzania;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;8400;13200;10300;2400;2500;4300;2200;2600;5500;7300;8000;800;1600;1100;1100;1100;400;300;1600;900;200;200;600;600;600;200;200;200;200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -215;'834;United Republic of Tanzania;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;38;46;36;14;19;26;12;16;33;47;56;12;27;22;22;22;51;46;269;131;24;24;52;52;52;14;14;14;14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -215;'834;United Republic of Tanzania;1630;Wood charcoal;5510;Production;t;263478;274220;285292;296811;308696;321164;334136;347632;361674;376282;390151;404721;420682;438137;455479;472343;492636;513562;535938;559887;580565;603142;626724;651275;676802;702914;729851;758118;788324;820822;855439;48000;51000;101000;1005350;1039165;1071481;1099905;1131871;1164705;1203457;1243498;1284871;1327620;1371792;1416220;1462100;1509400;1558324;1608792;1658297;1709324;1761922;1816139;1872024;1924687;1978831;2034499;2091732;2150576;2210941;2273000;2336801 -215;'834;United Republic of Tanzania;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;20;20;20;20;7;7;7;7;4;4;4;28;11;100;100;22;9;49;20;12;7;72;72;72;3;6;11;22;9 -215;'834;United Republic of Tanzania;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;3;3;3;1;1;1;1;3;3;3;3;7;16;16;12;8;52;174;8;5;31;31;31;4;0;26;3;4 -215;'834;United Republic of Tanzania;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;207;15;15;15;15;69;30;41;41;41;41;41;41;41;41;223;223;223;990;819;45;4;4;4;13;52;52;0;28;102;412;178 -215;'834;United Republic of Tanzania;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;3;3;3;3;17;8;4;4;4;4;4;4;4;4;18;18;18;424;227;9;0;0;0;9;36;36;0;2;25;92;36 -215;'834;United Republic of Tanzania;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;146;146;146;146;5;42;42;42;3;3;3;11;52;111;20;40;54;20;159;9;931;253;5;0;3 -215;'834;United Republic of Tanzania;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;5;2;2;2;1;1;1;7;10;199;6;20;9;7;137;11;331;218;1;4;8 -215;'834;United Republic of Tanzania;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;6076;41;41;41;1089;7970;7970;309;370;132;136;106;531;86;1798;5762;351;378;378;121;93;115;103;449;1418 -215;'834;United Republic of Tanzania;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;176;1;1;1;76;381;381;19;132;66;71;61;152;27;502;623;58;100;100;75;74;76;80;18;505 -215;'834;United Republic of Tanzania;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;146;146;146;146;3;40;40;40;1;1;1;9;12;85;18;18;18;18;157;5;622;0;0;0;3 -215;'834;United Republic of Tanzania;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;5;2;2;2;1;1;1;7;3;66;5;5;5;5;135;8;54;2;1;3;7 -215;'834;United Republic of Tanzania;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;12;12;12;6076;41;41;41;581;7747;7747;86;94;94;94;94;94;6;6;376;285;285;285;28;0;22;10;10;1147 -215;'834;United Republic of Tanzania;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;176;1;1;1;37;372;372;10;55;55;55;55;55;5;5;11;26;26;26;1;0;2;6;6;394 -215;'834;United Republic of Tanzania;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;40;26;2;22;36;2;2;4;309;253;5;0;0 -215;'834;United Republic of Tanzania;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;7;133;1;15;4;2;2;3;277;216;0;1;1 -215;'834;United Republic of Tanzania;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;508;223;223;223;276;38;42;12;437;80;1792;5386;66;93;93;93;93;93;93;439;271 -215;'834;United Republic of Tanzania;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;9;9;9;77;11;16;6;97;22;497;612;32;74;74;74;74;74;74;12;111 -215;'834;United Republic of Tanzania;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;1;1 -215;'834;United Republic of Tanzania;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;0;1 -215;'834;United Republic of Tanzania;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;0;5;5;0 -215;'834;United Republic of Tanzania;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;0;1;1;1 -215;'834;United Republic of Tanzania;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -215;'834;United Republic of Tanzania;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -215;'834;United Republic of Tanzania;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;1;1 -215;'834;United Republic of Tanzania;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;0;1 -215;'834;United Republic of Tanzania;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;0;5;5;0 -215;'834;United Republic of Tanzania;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;0;1;1;1 -215;'834;United Republic of Tanzania;1872;Sawnwood;5516;Production;m3;101000;103000;105000;107000;109000;131000;136000;148000;153000;168000;180000;192000;125000;105000;105000;97000;79000;86000;97500;122000;95000;86000;91000;102000;109000;154000;156000;156000;156000;156000;156000;48000;39000;24000;24000;24000;24000;24000;24000;24000;24000;24000;24000;24000;24000;24000;24000;24000;24000;24000;24000;35000;48000;48000;73000;73000;73000;73000;94000;210000;210000;230000;240000 -215;'834;United Republic of Tanzania;1872;Sawnwood;5616;Import quantity;m3;4600;4500;5000;5100;6700;9800;9900;16500;16400;13800;25900;4200;2200;5100;;;;;;;;;;;;;;;;;;257;20;20;682;968;20;5;1080;64;64;48;230;141;141;1221;2668;3896;3896;14596;19250;14076;24166;43274;4196;2990;2003;3241;4766;5945;11946;26349;10686 -215;'834;United Republic of Tanzania;1872;Sawnwood;5622;Import value;1000 USD;145;139;158;192;293;349;361;690;772;565;1246;238;99;334;;;;;;;;;;;;;;;;;;74;4;4;212;356;7;1;40;19;19;9;99;42;42;146;291;391;391;4417;3125;3823;2748;5412;3162;2214;1916;2468;1941;3478;4403;7803;3608 -215;'834;United Republic of Tanzania;1872;Sawnwood;5916;Export quantity;m3;15600;10500;11100;17900;20400;21500;17100;18800;28000;26000;17400;5400;6400;6200;4100;5200;4700;4400;3900;2800;1700;1600;1000;1000;8400;8100;4559;5692;2782;6355;6355;4853;3935;8000;2760;4400;9498;6475;3170;2869;2869;964;9071;12053;12053;31679;36434;44413;44413;71643;56313;45206;40076;77047;66624;44305;49444;45631;70672;189138;175739;155397;155397 -215;'834;United Republic of Tanzania;1872;Sawnwood;5922;Export value;1000 USD;1565;753;892;1471;1596;1616;1354;1558;2688;1676;1382;561;933;1051;1072;1238;1053;1128;1077;851;720;659;439;439;2667;1384;1367;2316;1822;2856;2856;2590;1799;3881;778;1615;2702;2142;2097;2459;2459;816;2150;2944;2944;6295;15237;15605;15785;26112;22127;24326;20927;30084;44502;24513;31979;29927;30510;50729;64906;69101;69101 -215;'834;United Republic of Tanzania;1632;Sawnwood, coniferous;5516;Production;m3;20000;20000;20000;20000;20000;36500;43500;39500;39500;43500;45500;50500;50500;50500;50500;50500;50000;50000;50000;54000;44000;44000;38000;53000;53000;76000;85000;85000;85000;85000;85000;26000;21000;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;34000;150000;150000;150000;150000 -215;'834;United Republic of Tanzania;1632;Sawnwood, coniferous;5616;Import quantity;m3;2300;2500;2100;2450;4700;7250;7800;13300;14150;12650;19650;2400;2100;2900;;;;;;;;;;;;;;;;;;257;6;6;568;568;9;4;433;36;36;36;125;14;14;342;110;2286;2286;3707;170;195;166;614;181;225;4;283;1202;473;676;1064;2686 -215;'834;United Republic of Tanzania;1632;Sawnwood, coniferous;5622;Import value;1000 USD;66;75;64;80;180;224;263;507;595;497;958;124;92;177;;;;;;;;;;;;;;;;;;74;1;1;156;156;2;1;9;5;5;5;50;3;3;26;9;201;201;2216;22;40;59;80;58;58;2;104;299;93;380;578;432 -215;'834;United Republic of Tanzania;1632;Sawnwood, coniferous;5916;Export quantity;m3;1500;2200;1800;2600;3600;5400;4100;4200;3900;4900;1300;600;100;1000;900;900;1800;2000;2400;800;200;400;400;400;400;300;59;270;40;51;51;35;35;0;0;0;1570;1570;1170;155;155;155;220;5251;5251;2072;6229;14208;14208;3363;4270;7520;4986;9183;7002;4702;5231;2971;22008;145138;116702;70000;70000 -215;'834;United Republic of Tanzania;1632;Sawnwood, coniferous;5922;Export value;1000 USD;76;113;93;148;192;236;216;200;196;227;51;19;5;64;115;115;240;332;380;141;50;101;101;101;101;57;3;61;6;11;11;4;4;0;0;0;218;218;265;53;53;53;508;877;877;439;2214;2582;2582;1270;386;3062;1636;2745;3423;2435;867;790;5073;31281;39610;28630;28630 -215;'834;United Republic of Tanzania;1633;Sawnwood, non-coniferous;5516;Production;m3;81000;83000;85000;87000;89000;94500;92500;108500;113500;124500;134500;141500;74500;54500;54500;46500;29000;36000;47500;68000;51000;42000;53000;49000;56000;78000;71000;71000;71000;71000;71000;22000;18000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;22000;35000;35000;60000;60000;60000;60000;60000;60000;60000;80000;90000 -215;'834;United Republic of Tanzania;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;2300;2000;2900;2650;2000;2550;2100;3200;2250;1150;6250;1800;100;2200;;;;;;;;;;;;;;;;;;;14;14;114;400;11;1;647;28;28;12;105;127;127;879;2558;1610;1610;10889;19080;13881;24000;42660;4015;2765;1999;2958;3564;5472;11270;25285;8000 -215;'834;United Republic of Tanzania;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;79;64;94;112;113;125;98;183;177;68;288;114;7;157;;;;;;;;;;;;;;;;;;;3;3;56;200;5;0;31;14;14;4;49;39;39;120;282;190;190;2201;3103;3783;2689;5332;3104;2156;1914;2364;1642;3385;4023;7225;3176 -215;'834;United Republic of Tanzania;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;14100;8300;9300;15300;16800;16100;13000;14600;24100;21100;16100;4800;6300;5200;3200;4300;2900;2400;1500;2000;1500;1200;600;600;8000;7800;4500;5422;2742;6304;6304;4818;3900;8000;2760;4400;7928;4905;2000;2714;2714;809;8851;6802;6802;29607;30205;30205;30205;68280;52043;37686;35090;67864;59622;39603;44213;42660;48664;44000;59037;85397;85397 -215;'834;United Republic of Tanzania;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;1489;640;799;1323;1404;1380;1138;1358;2492;1449;1331;542;928;987;957;1123;813;796;697;710;670;558;338;338;2566;1327;1364;2255;1816;2845;2845;2586;1795;3881;778;1615;2484;1924;1832;2406;2406;763;1642;2067;2067;5856;13023;13023;13203;24842;21741;21264;19291;27339;41079;22078;31112;29137;25437;19448;25296;40471;40471 -215;'834;United Republic of Tanzania;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;5000;5000;5000;16000;31000;61000;81000;151000 -215;'834;United Republic of Tanzania;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;3;3;23;23;4;1;43;111;111;111;674;132;132;71;30;34;34;67;1684;957;307;284;201;47;63;131;36;169;197;219;268 -215;'834;United Republic of Tanzania;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;2;2;16;16;2;0;25;29;29;29;184;102;102;28;81;29;29;190;1054;836;356;160;128;64;52;219;116;280;215;623;423 -215;'834;United Republic of Tanzania;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;3;3;3;3;20;24;109;7;7;7;83;87;87;68;47;4;4;299;249;322;59;236;1438;3527;1840;1352;10106;20777;52670;69258;140731 -215;'834;United Republic of Tanzania;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;10;10;10;10;10;27;45;18;18;18;54;68;68;137;57;80;80;452;180;664;70;121;216;531;493;434;914;3143;11806;17604;28130 -215;'834;United Republic of Tanzania;1873;Wood-based panels;5516;Production;m3;400;600;1500;2600;3100;4800;3500;4000;3900;5200;6800;9500;9500;10217;10154;12023;9200;9900;9200;6000;7000;5700;5000;9100;7500;11200;10200;14100;14700;14700;14700;8400;7330;3860;3860;3860;3860;3860;3860;4168;4050;3904;4162;4178;4518;4632;4632;4632;4632;4632;4632;4632;4632;4632;4600;4600;8600;18600;38600;63600;128600;203600;203600 -215;'834;United Republic of Tanzania;1873;Wood-based panels;5616;Import quantity;m3;1200;1100;700;3100;2000;3206;3485;5948;4690;5406;8465;832;2580;3700;;;;;;;;;;;;;;;;;;1552;292;292;415;408;172;1416;98858;9896;9896;1172;20573;14479;14479;24427;17509;23047;23047;24600;24580;21734;20225;29976;35716;37813;28823;51023;41435;38527;40715.68;40387;26372 -215;'834;United Republic of Tanzania;1873;Wood-based panels;5622;Import value;1000 USD;189;154;123;383;259;412;428;641;721;753;1092;250;752;1345;;;;;;;;;;;;;;;;;;457;143;143;175;169;106;515;2807;1757;1757;495;4051;3749;3749;5601;7342;11224;11224;11782;13080;15066;14600;19451;20751;17480;12060;21646;14768;12421;14550.21;15870;11487 -215;'834;United Republic of Tanzania;1873;Wood-based panels;5916;Export quantity;m3;;;600;1700;2000;2200;1200;2500;2800;2200;1400;700;1300;1416;921;1600;400;400;300;300;900;600;530;530;530;530;600;600;600;600;600;600;600;500;0;0;0;0;425;757;757;757;3427;1350;1350;1422;542;590;590;399;157;373;169;344;516;652;3121;11003;34595;37242;96569;114804;102112 -215;'834;United Republic of Tanzania;1873;Wood-based panels;5922;Export value;1000 USD;;;89;225;299;364;201;390;446;350;380;148;334;347;168;328;104;137;106;112;427;329;298;298;298;298;135;135;135;135;135;135;135;104;0;0;0;0;33;78;78;78;255;227;227;996;136;197;197;3135;86;91;57;246;281;319;880;4085;8717;12925;27781;30285;28971 -215;'834;United Republic of Tanzania;1640;Plywood and LVL;5516;Production;m3;400;600;1500;2600;3100;4800;3500;4000;3900;4200;5100;6500;6000;4400;3900;3100;2800;4000;3200;1700;1700;1900;1100;1400;1600;2000;1600;3200;3400;3400;3400;1000;630;260;260;260;260;260;260;568;450;304;562;578;918;1032;1032;1032;1032;1032;1032;1032;1032;1032;1000;1000;5000;15000;35000;60000;125000;200000;200000 -215;'834;United Republic of Tanzania;1640;Plywood and LVL;5616;Import quantity;m3;400;400;200;400;300;500;700;800;1500;1200;1700;200;1000;1200;;;;;;;;;;;;;;;;;;610;154;154;191;200;111;232;1619;1694;1694;18;6998;4944;4944;8060;4348;6044;6044;6119;9563;8872;9593;15565;18642;23126;14361;10733;11368;8657;11275;11680;8130 -215;'834;United Republic of Tanzania;1640;Plywood and LVL;5622;Import value;1000 USD;79;61;64;85;88;167;224;283;453;402;429;61;305;634;;;;;;;;;;;;;;;;;;335;75;75;118;116;80;90;549;505;505;332;1800;1755;1755;2386;2627;4626;4626;4590;6022;7864;8558;12008;11652;11289;5527;4409;5519;4000;4152;4693;3279 -215;'834;United Republic of Tanzania;1640;Plywood and LVL;5916;Export quantity;m3;;;600;1700;2000;2200;1200;2500;2800;2200;1300;400;600;200;200;300;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;0;0;0;0;0;89;89;89;89;1286;15;15;17;67;115;115;110;16;15;6;143;266;462;2682;10580;33962;35678;96205;95998;95998 -215;'834;United Republic of Tanzania;1640;Plywood and LVL;5922;Export value;1000 USD;;;89;225;299;364;201;390;446;350;354;86;189;73;73;84;26;25;25;31;31;31;31;31;31;31;31;31;31;31;31;31;31;0;0;0;0;0;27;27;27;27;122;5;5;15;19;80;80;44;12;15;12;148;152;246;571;4025;8548;12376;27660;26800;26800 -215;'834;United Republic of Tanzania;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5 -215;'834;United Republic of Tanzania;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1 -215;'834;United Republic of Tanzania;1646;Particle board and OSB (1961-1994);5516;Production;m3;;;;;;;;;;1000;1700;3000;3500;3500;3200;4500;3900;3200;2800;1800;2700;2200;1000;2700;2400;3900;3600;5500;5800;5800;5800;2400;2700;1600;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -215;'834;United Republic of Tanzania;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;300;300;200;200;200;600;1100;2200;1400;2100;1500;;;;;;;;;;;;;;;;;;;;;700;100;100;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -215;'834;United Republic of Tanzania;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;47;47;27;26;13;36;52;85;61;96;63;;;;;;;;;;;;;;;;;;;;;21;51;51;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -215;'834;United Republic of Tanzania;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;100;300;700;900;300;900;200;200;100;100;100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -215;'834;United Republic of Tanzania;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;26;62;145;218;52;143;26;65;34;34;40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -215;'834;United Republic of Tanzania;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1600;1600;1600;1600;1600;1600;1600;1600;1600;1600;1600;1600;1600;1600;1600;1600;1600;1600;1600;1600;1600;1600;1600;1600;1600;1600;1600;1600;1600 -215;'834;United Republic of Tanzania;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;183;183;5;361;12143;2047;2047;672;2513;2493;2493;1017;592;4152;4152;2429;2577;2025;1248;1231;1739;489;1116;1116;1503;1451;988;1646;1080 -215;'834;United Republic of Tanzania;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;40;2;97;368;329;329;40;493;408;408;143;231;1921;1921;858;1303;1215;443;538;956;236;941;941;327;511;361;602;233 -215;'834;United Republic of Tanzania;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;11;343;343;343;1925;1179;1179;1274;374;374;374;24;79;31;35;22;90;6;98;98;276;1393;135;75;4 -215;'834;United Republic of Tanzania;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;1;46;46;46;109;199;199;888;18;18;18;2890;51;48;11;8;18;2;36;36;76;509;63;27;6 -215;'834;United Republic of Tanzania;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;112;156;156;636;135;1;1;44;44;13;8;53;5;162;294;238;279;315;703.62;661;120 -215;'834;United Republic of Tanzania;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;27;26;26;164;43;1;1;22;22;40;49;63;5;15;112;180;61;55;196;304;79 -215;'834;United Republic of Tanzania;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;0 -215;'834;United Republic of Tanzania;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;0;0;0;0;0 -215;'834;United Republic of Tanzania;1874;Fibreboard;5516;Production;m3;;;;;;;;;;;;;;2317;3054;4423;2500;2700;3200;2500;2600;1600;2900;5000;3500;5300;5000;5400;5500;5500;5500;5000;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;2000 -215;'834;United Republic of Tanzania;1874;Fibreboard;5616;Import quantity;m3;500;400;300;2500;1500;2106;1685;2948;1790;2106;5265;632;1580;2500;;;;;;;;;;;;;;;;;;242;38;38;41;25;56;823;85096;6145;6145;472;10950;6886;6886;14714;12434;12850;12850;16008;12396;10824;9376;13127;15330;14036;13052;38936;28285;28104;27749.07;26400;17042 -215;'834;United Republic of Tanzania;1874;Fibreboard;5622;Import value;1000 USD;63;46;32;272;158;209;152;273;207;255;600;189;447;711;;;;;;;;;;;;;;;;;;101;17;17;17;13;24;328;1890;922;922;122;1731;1560;1560;2908;4441;4676;4676;6312;5733;5947;5550;6842;8138;5940;5480;16116;8861;7855;9841.21;10271;7896 -215;'834;United Republic of Tanzania;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;316;421;400;100;100;100;100;700;500;430;430;430;430;500;500;500;500;500;500;500;500;;;;;325;325;325;325;216;156;156;131;101;101;101;265;62;327;128;179;160;184;341;324;357;171;229;18731;6110 -215;'834;United Republic of Tanzania;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;56;43;101;52;47;47;47;356;298;267;267;267;267;104;104;104;104;104;104;104;104;;;;;5;5;5;5;24;23;23;93;99;99;99;201;23;28;34;90;111;71;273;19;93;40;58;3458;2165 -215;'834;United Republic of Tanzania;1647;Hardboard;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 -215;'834;United Republic of Tanzania;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;583;61552;4195;4195;117;4699;1873;1873;5773;4768;2178;2178;9269;854;1901;4009;3211;3172;5215;3834;4965;5543;5496;2544.07;4022;2471 -215;'834;United Republic of Tanzania;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;246;1416;730;730;37;1101;869;869;1691;1524;911;911;3246;427;904;2382;1682;2425;2480;1716;2120;2198;1848;1019;1750;1438 -215;'834;United Republic of Tanzania;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;261;261;261;261;105;105;105;1;1;1;1;1;1;1;1;1;1;1;2;23;0;23;23;327;157 -215;'834;United Republic of Tanzania;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;12;12;12;1;1;1;1;1;1;1;1;1;1;1;1;1;0;1;1;137;83 -215;'834;United Republic of Tanzania;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;9;221;19918;1830;1830;144;675;1242;1242;1629;1132;9371;9371;4263;6998;5506;4396;7744;10272;8685;9110;33796;22485;22135;24943;21331;14095 -215;'834;United Republic of Tanzania;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;19;78;253;179;179;69;183;212;212;488;643;3328;3328;1930;3221;3208;2730;4189;5020;3370;3690;13922;6492;5868;8721.21;8259;6315 -215;'834;United Republic of Tanzania;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;50;50;50;20;20;20;259;56;321;101;117;106;156;312;274;345;121;179;3604;4304 -215;'834;United Republic of Tanzania;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;17;17;17;197;19;24;24;44;73;59;261;7;91;28;46;1646;1902 -215;'834;United Republic of Tanzania;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;211;6;6;16;0;47;19;3626;120;120;211;5576;3771;3771;7312;6534;1301;1301;2476;4544;3417;971;2172;1886;136;108;175;257;473;262;1047;476 -215;'834;United Republic of Tanzania;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;7;7;4;0;5;4;221;13;13;16;447;479;479;729;2274;437;437;1136;2085;1835;438;971;693;90;74;74;171;139;101;262;143 -215;'834;United Republic of Tanzania;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;64;64;64;61;1;1;80;80;80;80;5;5;5;26;61;53;27;27;27;12;27;27;14800;1649 -215;'834;United Republic of Tanzania;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;0;0;81;81;81;81;3;3;3;9;45;37;11;11;11;2;11;11;1675;180 -215;'834;United Republic of Tanzania;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;;;;;;;;;;;;;;2317;3054;4423;2500;2700;3200;2500;2600;1600;2900;5000;3500;5300;5000;5400;5500;5500;5500;5000;4000;2000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -215;'834;United Republic of Tanzania;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;500;400;300;2500;1500;2106;1685;2948;1790;2106;5265;632;1580;2500;;;;;;;;;;;;;;;;;;31;32;32;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -215;'834;United Republic of Tanzania;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;63;46;32;272;158;209;152;273;207;255;600;189;447;711;;;;;;;;;;;;;;;;;;23;10;10;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -215;'834;United Republic of Tanzania;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;316;421;400;100;100;100;100;700;500;430;430;430;430;500;500;500;500;500;500;500;500;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -215;'834;United Republic of Tanzania;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;56;43;101;52;47;47;47;356;298;267;267;267;267;104;104;104;104;104;104;104;104;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -215;'834;United Republic of Tanzania;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;37000;35000;35000;52000;52000;52000;52000;52000;52000;52000;52000;52000;52000;52000;52000;52000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000;57000;57000;57000;58000;58000;58000;58000;58000;58000;58000 -215;'834;United Republic of Tanzania;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1209;579;579;2147;3656;2060;7477;3591;938;938;1366;6133;9597;9597;8270;7099;2081;2081;4497;4800;4007;3786;2032;3816;5240;2814;5126;17612;9275;17137.65;14565;15288 -215;'834;United Republic of Tanzania;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;223;163;163;616;719;416;405;698;152;152;281;1318;1294;1294;1507;1302;795;795;1091;1015;1265;1402;882;1153;1688;862;2211;6668;7002;12195.19;10671;14925 -215;'834;United Republic of Tanzania;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;160;301;201;201;201;866;3072;3072;456;517;1024;1024;1676;1648;1213;2470;2502;2816;4521;4557;4552;3087;2643;3373.05;7603.12;2262.12 -215;'834;United Republic of Tanzania;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;19;19;354;359;129;129;104;593;1821;1821;138;181;318;318;213;922;949;963;677;1214;739;812;800;311;260;399;1262;268 -215;'834;United Republic of Tanzania;1878;Pulp for paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;37000;35000;35000;52000;52000;52000;52000;52000;52000;52000;52000;52000;52000;52000;52000;52000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000 -215;'834;United Republic of Tanzania;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121;438;438;56;56;30;27;78;43;43;308;356;573;573;428;181;140;140;242;101;115;60;133;162;400;55;2367;5237;4734;7912.73;5830;8437 -215;'834;United Republic of Tanzania;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;141;141;63;63;19;17;73;44;44;141;253;292;292;289;180;157;157;222;131;164;74;222;189;378;68;1417;3364;5732;9434.31;7905;12613 -215;'834;United Republic of Tanzania;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;160;160;60;60;60;422;2351;2351;75;75;75;75;910;953;969;1392;56;54;134;170;165;172;120;12;31.12;31.12 -215;'834;United Republic of Tanzania;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;19;19;354;354;124;124;99;424;1750;1750;91;91;91;91;130;784;918;696;129;80;77;150;138;139;67;7;25;25 -215;'834;United Republic of Tanzania;1875;Wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;37000;35000;35000;52000;52000;52000;52000;52000;52000;52000;52000;52000;52000;52000;52000;52000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000;56000 -215;'834;United Republic of Tanzania;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121;438;438;55;55;29;26;66;31;31;296;330;494;494;435;175;130;130;246;99;116;67;116;134;372;55;2599;5196;4769;7839.73;5853;8463 -215;'834;United Republic of Tanzania;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;141;141;62;62;18;16;67;38;38;135;236;223;223;291;198;165;165;247;147;153;81;107;114;303;64;1401;3337;5769;9118.31;7942;12624 -215;'834;United Republic of Tanzania;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;10;10;10;10;10;10;20;20;51;51;51;51;891;624;82;82;45;13;121;126;121;128;121;11;32.12;31.12 -215;'834;United Republic of Tanzania;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;19;19;19;19;19;19;19;19;22;22;41;41;41;41;81;63;28;28;37;5;66;78;66;67;66;7;25;24 -215;'834;United Republic of Tanzania;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12000;12000;12000;12000;12000;12000;12000 -215;'834;United Republic of Tanzania;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;49;45;45;92;3 -215;'834;United Republic of Tanzania;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;19;32;17;17;157;45 -215;'834;United Republic of Tanzania;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;0;0;0;0;0;0 -215;'834;United Republic of Tanzania;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;0;0;0;0;0;0 -215;'834;United Republic of Tanzania;1654;Mechanical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;9000;10000;10000;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;;;;;;; -215;'834;United Republic of Tanzania;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;6;6;6;2;6;1;1;0;0;0;;;;;;; -215;'834;United Republic of Tanzania;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;3;0;0;0;0;0;;;;;;; -215;'834;United Republic of Tanzania;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;5;5;5;23;23;23;23;23;23;23;0;0;3;;;;;;; -215;'834;United Republic of Tanzania;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;2;2;2;29;29;29;29;29;29;29;0;0;8;;;;;;; -215;'834;United Republic of Tanzania;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;835;582;65;65;0;0;0;;;;;;; -215;'834;United Republic of Tanzania;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;28;4;4;0;0;0;;;;;;; -215;'834;United Republic of Tanzania;1656;Chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;28000;25000;25000;44000;44000;44000;44000;44000;44000;44000;44000;44000;44000;44000;44000;44000;44000;44000;44000;44000;44000;44000;44000;44000;44000;44000;44000;44000;44000;44000;44000;44000;44000;44000;44000;44000;44000 -215;'834;United Republic of Tanzania;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121;438;438;55;55;29;26;63;28;28;293;323;445;445;386;139;94;94;214;63;80;31;104;124;359;45;2354;5138;4681;7751.73;5730;8426 -215;'834;United Republic of Tanzania;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;141;141;62;62;18;16;63;34;34;131;228;192;192;260;132;99;99;181;79;109;37;92;98;279;48;1378;3291;5698;9047.31;7738;12558 -215;'834;United Republic of Tanzania;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;10;10;10;10;10;10;20;20;51;51;51;51;51;37;12;12;40;8;116;116;116;123;116;10;31.12;31.12 -215;'834;United Republic of Tanzania;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;19;19;19;19;19;19;19;19;22;22;41;41;41;41;41;34;23;23;36;4;65;65;65;66;65;6;24;24 -215;'834;United Republic of Tanzania;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;15000;15000;15000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000 -215;'834;United Republic of Tanzania;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;42;42;42;42;14;14;14;50;24;24;5;5;5;39;7;7;25;25;22;103;438 -215;'834;United Republic of Tanzania;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;13;11;11;11;45;22;22;1;1;5;28;6;6;11;11;20;106;272 -215;'834;United Republic of Tanzania;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;10;10;3;3;3;2;2;110;110;110;110;110;4;30;30 -215;'834;United Republic of Tanzania;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;10;10;10;2;2;63;63;63;63;63;3;23;23 -215;'834;United Republic of Tanzania;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;13000;10000;10000;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;17000;17000;17000 -215;'834;United Republic of Tanzania;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121;438;438;55;55;23;23;53;23;23;246;143;228;228;334;94;74;74;158;33;50;23;99;119;320;34;2347;5087;4637;7724.73;5618;7984 -215;'834;United Republic of Tanzania;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;141;141;62;62;14;14;45;19;19;103;84;96;96;212;79;63;63;111;32;62;22;91;93;251;30;1372;3232;5658;9002.31;7593;12267 -215;'834;United Republic of Tanzania;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;10;6;6;6;6;6;6;6;6;13;6;6;1;1 -215;'834;United Republic of Tanzania;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;2;3;2;2;0;0 -215;'834;United Republic of Tanzania;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;26;19;5;9;4 -215;'834;United Republic of Tanzania;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;0;48;29;25;39;19 -215;'834;United Republic of Tanzania;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0.12;0.12 -215;'834;United Republic of Tanzania;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1 -215;'834;United Republic of Tanzania;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;31;31;31;31;28;3;3;32;0;0;;;;;;; -215;'834;United Republic of Tanzania;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;19;19;22;11;11;32;0;0;;;;;;; -215;'834;United Republic of Tanzania;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;3;10;5;5;5;138;175;175;10;31;6;6;6;6;6;3;0;0;0;;;;;;; -215;'834;United Republic of Tanzania;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;2;18;15;15;15;131;83;83;35;42;25;25;25;25;25;14;0;0;0;;;;;;; -215;'834;United Republic of Tanzania;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;4;42;42;42;7;7;7;7;7;12;12;12;10;10;10;242;9;43;43;31;34 -215;'834;United Republic of Tanzania;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;6;28;28;28;36;36;36;36;36;15;15;15;16;16;16;4;14;54;54;47;21 -215;'834;United Republic of Tanzania;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5;5;5;5;5;1;1;0 -215;'834;United Republic of Tanzania;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;0 -215;'834;United Republic of Tanzania;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;13;13;13;13;30;121;121;35;13;17;17;3;9;11;5;29;38;38;10;10;50;8;116;8;8 -215;'834;United Republic of Tanzania;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;9;9;9;9;23;97;97;26;18;28;28;11;20;26;8;130;91;91;20;20;41;17;370;10;10 -215;'834;United Republic of Tanzania;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;150;150;50;50;50;412;2331;2331;24;24;24;24;24;334;892;1315;16;46;18;49;49;49;4;2;0;0 -215;'834;United Republic of Tanzania;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;335;335;105;105;80;405;1728;1728;50;50;50;50;50;722;891;669;93;76;12;73;73;73;2;1;1;1 -215;'834;United Republic of Tanzania;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101;2;2;23;25;25;25;7;7;7;40;40;18;37;130;132;107;121;123;123;123 -215;'834;United Republic of Tanzania;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;2;2;3;4;5;5;4;4;4;8;8;13;21;39;38;83;96;105;105;105 -215;'834;United Republic of Tanzania;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;191;191;191;191;10;10;10;10;10;11;11;134;134;134;134;134;288;288 -215;'834;United Republic of Tanzania;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;24;24;0;0;0;0;0;1;1;18;18;18;18;18;53;53 -215;'834;United Republic of Tanzania;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;2000;2000;2000;2000;2000;2000;2000 -215;'834;United Republic of Tanzania;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1088;141;141;2091;3600;2030;7450;3513;895;895;1058;5777;9024;9024;7842;6918;1941;1941;4255;4699;3892;3726;1899;3654;4840;2759;2759;12375;4541;9224.93;8735;6851 -215;'834;United Republic of Tanzania;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;156;22;22;553;656;397;388;625;108;108;140;1065;1002;1002;1218;1122;638;638;869;884;1101;1328;660;964;1310;794;794;3304;1270;2760.87;2766;2312 -215;'834;United Republic of Tanzania;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;141;141;141;141;444;721;721;381;442;949;949;766;695;244;1078;2446;2762;4387;4387;4387;2915;2523;3361.05;7572;2231 -215;'834;United Republic of Tanzania;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;169;71;71;47;90;227;227;83;138;31;267;548;1134;662;662;662;172;193;392;1237;243 -215;'834;United Republic of Tanzania;1876;Paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;29000;28000;28000;25000;25000;25000;25000;25000;25000;25000;25000;19000;19000;19000;19000;19000;19000;19000;19000;19000;19000;19000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000 -215;'834;United Republic of Tanzania;1876;Paper and paperboard;5610;Import quantity;t;2400;2700;2900;3800;5000;6100;6200;7400;7600;11500;10700;15800;17800;18900;19500;16800;18000;18800;20200;23500;23500;23500;23500;25700;21700;21700;20732;17997;19211;16375;16375;3233;7135;4235;3008;3000;3966;17908;23540;9707;9707;10631;40535;47866;47866;101934;50342;60923;60923;75038;66146;68356;66799;90893;66414;94515;92587;102634;123423;90421;108770.99;126685;137804 -215;'834;United Republic of Tanzania;1876;Paper and paperboard;5622;Import value;1000 USD;598;666;675;1131;1473;1841;1863;2106;2245;3614;3385;4279;6794;11680;11900;11200;12200;13200;14600;16600;16750;16900;16900;18600;15700;15700;15642;14432;14440;13014;13014;2802;8292;5625;2492;2331;3015;10513;18352;7496;7496;5529;24313;31178;31178;33023;44743;51173;51173;71036;69514;64379;58661;79806;52839;76033;73334;88510;94597;63778;89025.99;127068;120388 -215;'834;United Republic of Tanzania;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;772;30;30;1640;1640;1640;1658;1128;897;897;897;555;723;723;3677;61171;26863;26863;20360;22168;22556;28495;27856;32139;34006;41582;18430;36297;29672;52937.97;44755;12886 -215;'834;United Republic of Tanzania;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;511;21;21;931;931;931;939;1163;959;959;959;526;649;649;2198;11245;21094;21094;22736;19138;20020;25318;23534;26390;26590;29951;16679;33351;23077;49404.47;46277;11374 -215;'834;United Republic of Tanzania;2042;Graphic papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;12000;15000;15000;14000;14000;14000;14000;14000;14000;14000;14000;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 -215;'834;United Republic of Tanzania;2042;Graphic papers;5610;Import quantity;t;1500;1900;1800;2600;3200;4000;3800;4600;3600;6600;6100;7500;7700;6900;9500;6800;8000;7800;9200;10500;10500;10500;10500;10700;6700;6700;5732;2997;4211;1375;1375;1186;5900;3000;1800;1900;2866;12376;14362;5517;5517;8202;21459;29289;29289;85274;40886;40549;40549;51051;41314;49323;44762;56037;43776;67338;58157;55164;75053;50361;55005.28;61384;72074 -215;'834;United Republic of Tanzania;2042;Graphic papers;5622;Import value;1000 USD;342;490;419;702;950;1173;1081;1248;1056;2045;1815;2108;2987;4366;5600;4700;5200;5200;6300;7100;7200;7300;7300;7500;4600;4600;4542;3332;3340;1914;1914;794;6776;4109;1463;1105;1789;6432;10593;4428;4428;4434;12906;18418;18418;21767;34009;35010;35010;45606;41711;48770;42436;51321;34514;53680;47659;51228;62851;38514;48608.36;65973;69179 -215;'834;United Republic of Tanzania;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;297;11;11;11;11;11;12;950;776;776;776;221;75;75;121;178;109;109;492;1114;835;61;174;118;76;15;206;145;290;319;1240;848 -215;'834;United Republic of Tanzania;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;228;12;12;12;12;12;12;892;825;825;825;238;59;59;76;226;109;109;5785;967;680;1331;240;201;72;11;661;202;462;653.81;978;687 -215;'834;United Republic of Tanzania;1671;Newsprint;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;9000;9000;8000;8000;8000;8000;8000;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 -215;'834;United Republic of Tanzania;1671;Newsprint;5610;Import quantity;t;500;600;600;900;600;600;1100;1300;800;1500;1400;2400;2200;1900;4500;1800;3000;2800;3200;3500;3500;3500;3500;3700;2500;2500;2500;116;1552;212;212;725;4200;400;1487;1300;1868;8282;8569;1215;1215;3370;12249;16809;16809;69323;22386;15562;15562;20728;17517;19152;18682;21024;20399;26041;19078;18997;28118;16213;15227.54;15528;26367 -215;'834;United Republic of Tanzania;1671;Newsprint;5622;Import value;1000 USD;95;127;110;156;114;110;194;207;142;275;270;484;587;664;1600;700;1100;1000;1200;1300;1350;1400;1400;1500;1000;1000;1000;66;840;130;130;323;4700;724;1062;577;825;3418;5297;576;576;1000;6101;8572;8572;9619;16195;10098;10098;13917;13729;14787;13877;14830;12211;15017;11199;14652;19459;9646;10409.9;16481;21846 -215;'834;United Republic of Tanzania;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;217;;0;0;0;0;0;188;188;188;188;25;25;25;25;106;39;39;417;939;668;4;26;1;1;6;6;6;121;30;55;106 -215;'834;United Republic of Tanzania;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;163;;0;0;0;0;0;114;114;114;114;19;19;19;19;78;37;37;308;750;471;13;8;1;1;4;4;8;126;43;8;5 -215;'834;United Republic of Tanzania;1674;Printing and writing papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;7000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;;;;;;;;;;;;;;;;;;;;;;;;;; -215;'834;United Republic of Tanzania;1674;Printing and writing papers;5610;Import quantity;t;1000;1300;1200;1700;2600;3400;2700;3300;2800;5100;4700;5100;5500;5000;5000;5000;5000;5000;6000;7000;7000;7000;7000;7000;4200;4200;3232;2881;2659;1163;1163;461;1700;2600;313;600;998;4094;5793;4302;4302;4832;9210;12480;12480;15951;18500;24987;24987;30323;23797;30171;26080;35013;23377;41297;39079;36167;46935;34148;39777.75;45856;45707 -215;'834;United Republic of Tanzania;1674;Printing and writing papers;5622;Import value;1000 USD;247;363;309;546;836;1063;887;1041;914;1770;1545;1624;2400;3702;4000;4000;4100;4200;5100;5800;5850;5900;5900;6000;3600;3600;3542;3266;2500;1784;1784;471;2076;3385;401;528;964;3014;5296;3852;3852;3434;6805;9846;9846;12148;17814;24912;24912;31689;27982;33983;28559;36491;22303;38663;36460;36576;43392;28868;38198.46;49492;47333 -215;'834;United Republic of Tanzania;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;11;11;11;11;11;12;762;588;588;588;196;50;50;96;72;70;70;75;175;167;57;148;117;75;9;200;139;169;289;1185;742 -215;'834;United Republic of Tanzania;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;12;12;12;12;12;12;778;711;711;711;219;40;40;57;148;72;72;5477;217;209;1318;232;200;71;7;657;194;336;610.81;970;682 -215;'834;United Republic of Tanzania;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;399;565;136;136;1245;1218;1528;1528;1689;30;4098;4098;303;381;821;399;1019;617;566;448;448;754;696;970;1286;1563 -215;'834;United Republic of Tanzania;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;231;406;57;57;787;806;1205;1205;971;71;3576;3576;307;415;800;422;1058;445;467;371;371;544;461;881;914;1189 -215;'834;United Republic of Tanzania;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;35;35;35;35;23;23;23;1;1;6;6;14;3;3;3;42;42;42;1;1;15;2;23;3;2 -215;'834;United Republic of Tanzania;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30;30;30;19;19;19;16;11;15;15;25;7;7;7;41;41;41;1;1;10;7;43;2;1 -215;'834;United Republic of Tanzania;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2398;3393;1933;1933;2633;4702;8048;8048;7436;11746;15587;15587;17859;14213;17466;14786;21999;18986;27101;26691;27079;34043;22858;28520.74;31605;33143 -215;'834;United Republic of Tanzania;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1766;3103;2100;2100;2031;3627;6350;6350;6459;10970;13757;13757;17658;15858;19002;16047;22752;18497;24137;24124;27521;30701;18745;25403.46;32951;34617 -215;'834;United Republic of Tanzania;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;402;228;228;228;140;9;9;2;40;62;62;19;31;31;11;58;27;31;6;8;28;57;24;83;40 -215;'834;United Republic of Tanzania;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;243;176;176;176;165;7;7;2;84;55;55;5352;66;9;1159;59;27;28;4;16;17;80;49;148;37 -215;'834;United Republic of Tanzania;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1297;1835;2233;2233;954;3290;2904;2904;6826;6724;5302;5302;12161;9203;11884;10895;11995;3774;13630;11940;8640;12138;10594;10287;12965;11001 -215;'834;United Republic of Tanzania;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1017;1787;1695;1695;616;2372;2291;2291;4718;6773;7579;7579;13724;11709;14181;12090;12681;3361;14059;11965;8684;12147;9662;11914;15627;11527 -215;'834;United Republic of Tanzania;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;325;325;325;325;33;18;18;93;31;2;2;42;141;133;43;48;48;2;2;191;96;110;242;1099;700 -215;'834;United Republic of Tanzania;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;505;505;505;505;35;14;14;39;53;2;2;100;144;193;152;132;132;2;2;640;167;249;518.81;820;644 -215;'834;United Republic of Tanzania;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;17000;13000;13000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000 -215;'834;United Republic of Tanzania;1675;Other paper and paperboard;5610;Import quantity;t;900;800;1100;1200;1800;2100;2400;2800;4000;4900;4600;8300;10100;12000;10000;10000;10000;11000;11000;13000;13000;13000;13000;15000;15000;15000;15000;15000;15000;15000;15000;2047;1235;1235;1208;1100;1100;5532;9178;4190;4190;2429;19076;18577;18577;16660;9456;20374;20374;23987;24832;19033;22037;34856;22638;27177;34430;47470;48370;40060;53765.71;65301;65730 -215;'834;United Republic of Tanzania;1675;Other paper and paperboard;5622;Import value;1000 USD;256;176;256;429;523;668;782;858;1189;1569;1570;2171;3807;7314;6300;6500;7000;8000;8300;9500;9550;9600;9600;11100;11100;11100;11100;11100;11100;11100;11100;2008;1516;1516;1029;1226;1226;4081;7759;3068;3068;1095;11407;12760;12760;11256;10734;16163;16163;25430;27803;15609;16225;28485;18325;22353;25675;37282;31746;25264;40417.63;61095;51209 -215;'834;United Republic of Tanzania;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;475;19;19;1629;1629;1629;1646;178;121;121;121;334;648;648;3556;60993;26754;26754;19868;21054;21721;28434;27682;32021;33930;41567;18224;36152;29382;52618.97;43515;12038 -215;'834;United Republic of Tanzania;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;283;9;9;919;919;919;927;271;134;134;134;288;590;590;2122;11019;20985;20985;16951;18171;19340;23987;23294;26189;26518;29940;16018;33149;22615;48750.66;45299;10687 -215;'834;United Republic of Tanzania;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;136;146;146;146;486;357;357;526;455;897;897;840;1160;1528;1519;2093;1836;2110;1858;2071;2625;2732;4340;4169;4623 -215;'834;United Republic of Tanzania;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;95;75;75;75;472;394;394;369;320;984;984;781;1064;1409;1492;1801;1825;1791;1549;1763;1986;2027;3315;4844;5374 -215;'834;United Republic of Tanzania;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;50;50;50;90;1;1;18;117;12;12;162;62;297;509;601;834;1032;513;147;582;967;1013.41;720;703 -215;'834;United Republic of Tanzania;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;57;57;57;71;1;1;17;155;7;7;210;168;361;601;727;864;1163;577;31;693;1059;1121.69;938;747 -215;'834;United Republic of Tanzania;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000 -215;'834;United Republic of Tanzania;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1100;8071;3583;3583;2152;17758;14976;14976;14763;7280;17540;17540;18892;18839;16302;20128;30151;20469;23148;31772;44551;44795;36272;48323.26;59972;59962 -215;'834;United Republic of Tanzania;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1226;6016;2017;2017;682;9171;9285;9285;8401;5359;11551;11551;13783;15803;11580;14230;22295;16107;16694;21319;33025;27048;20382;34046.44;52764;42237 -215;'834;United Republic of Tanzania;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1629;47;55;55;55;153;247;247;3447;60822;26696;26696;19320;20757;21189;27923;27014;31186;32893;41049;18068;35476;28353;51591.56;42780;11334 -215;'834;United Republic of Tanzania;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;919;41;34;34;34;141;149;149;2024;10753;20747;20747;16311;17500;18476;23384;22492;25322;25345;29348;15629;31944;21530;47536.97;44266;9940 -215;'834;United Republic of Tanzania;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;17000;13000;13000;11000;11000;11000;11000;11000;11000;11000;11000;;;;;;;;;;;;;;;;;;;;;;;;;; -215;'834;United Republic of Tanzania;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;;;1500;2300;4600;3200;6800;6000;6000;6000;6500;6500;8000;8000;8000;8000;10000;10000;10000;10000;10000;10000;10000;10000;2047;1235;1235;1208;1100;1100;;;;;;;;;;;;;;;;;;;;;;;;;; -215;'834;United Republic of Tanzania;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;;;336;541;945;1132;3222;2620;2700;3000;3400;3500;4000;4050;4060;4060;5500;5500;5500;5500;5500;5500;5500;5500;2008;1516;1516;1029;1226;1226;;;;;;;;;;;;;;;;;;;;;;;;;; -215;'834;United Republic of Tanzania;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;475;19;19;1629;1629;1629;;;;;;;;;;;;;;;;;;;;;;;;;; -215;'834;United Republic of Tanzania;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;283;9;9;919;919;919;;;;;;;;;;;;;;;;;;;;;;;;;; -215;'834;United Republic of Tanzania;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;623;4571;1253;1253;1628;11581;8960;8960;6891;1958;14155;14155;12146;11227;12530;13936;16930;13891;8783;21647;32023;32305;26725;33819.43;41202;46099 -215;'834;United Republic of Tanzania;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;590;2897;512;512;422;5120;5556;5556;4114;1127;8749;8749;8002;8813;8482;9417;11619;11619;5837;13593;21694;17945;13836;21223.59;32574;30655 -215;'834;United Republic of Tanzania;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;901;26;34;34;34;12;1;1;1789;35332;19276;19276;11900;13322;12093;17403;17818;23867;25515;25140;10877;18838;22417;40784;31531;9538 -215;'834;United Republic of Tanzania;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;583;26;19;19;19;9;0;0;918;3118;14221;14221;9785;10919;9787;13870;14113;18623;18624;16462;7071;16089;16595;37440;31668;7881 -215;'834;United Republic of Tanzania;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;437;226;226;234;2056;1107;1107;388;960;1670;1670;2449;2618;2130;4640;5875;4123;6549;4593;7349;7700;5754;8994.78;13000;9393 -215;'834;United Republic of Tanzania;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;124;608;170;170;125;1475;686;686;392;912;1265;1265;2441;2333;1521;3308;4790;2665;5596;4076;7495;5965;4050;8326.42;14351;8005 -215;'834;United Republic of Tanzania;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;659;19;19;19;19;19;76;76;1;24;3;3;3;18;6;2;51;51;51;4;45;0;0;13;6;5 -215;'834;United Republic of Tanzania;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;291;13;13;13;13;13;46;46;1;13;9;9;9;64;12;1;39;39;39;3;232;2;0;18;2;10 -215;'834;United Republic of Tanzania;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;11000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000 -215;'834;United Republic of Tanzania;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;410;3008;2101;2101;268;3548;4546;4546;7479;4357;1672;1672;4279;4986;1601;1550;7338;2418;7773;5493;5034;4537;3645;5334.06;5641;4375 -215;'834;United Republic of Tanzania;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;506;2482;1332;1332;124;2227;2818;2818;3883;3308;1509;1509;3325;4646;1408;1502;5882;1782;5205;3615;3724;2931;2412;4365.44;5733;3504 -215;'834;United Republic of Tanzania;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;2;2;2;2;8;146;146;1633;25442;7393;7393;7393;7393;9066;10494;9122;7245;7304;15882;7123;16615;5913;10771.56;11235;1783 -215;'834;United Republic of Tanzania;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;2;2;2;2;20;88;88;1090;7607;6502;6502;6502;6502;8662;9498;8315;6635;6657;12858;8301;15828;4910;10053.97;12595;2048 -215;'834;United Republic of Tanzania;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;55;3;3;22;573;363;363;5;5;43;43;18;8;41;2;8;37;43;39;145;253;148;175;129;95 -215;'834;United Republic of Tanzania;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;29;3;3;11;349;225;225;12;12;28;28;15;11;169;3;4;41;56;35;112;207;84;131;106;73 -215;'834;United Republic of Tanzania;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;114;24;24;24;24;24;24;24;24;24;24;23;23;23;23;23;23;23;23;8;8 -215;'834;United Republic of Tanzania;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;15;15;15;15;15;15;15;15;15;15;25;25;25;25;25;25;25;25;1;1 -215;'834;United Republic of Tanzania;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;3400;2300;3700;6900;5200;4000;4000;4000;4500;4500;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;;;;;;;4432;971;461;461;131;832;3244;3244;1371;1721;1937;1937;4255;4833;1203;390;2612;333;1919;800;848;950;1056;1102.44;1160;1145 -215;'834;United Republic of Tanzania;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;1233;1029;1226;2675;4092;3680;3800;4000;4600;4800;5500;5500;5540;5540;5600;5600;5600;5600;5600;5600;5600;5600;;;;;;;2855;1648;976;976;338;1764;3081;3081;2486;5055;3628;3628;10866;10936;2620;503;4389;393;3868;2807;2494;2712;2855;3056.19;3487;3598 -215;'834;United Republic of Tanzania;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;128;16;16;16;91;400;400;91;54;46;46;386;235;235;2;67;1;5;5;9;94;62;14;15;1 -215;'834;United Republic of Tanzania;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;229;43;43;43;76;440;440;81;111;231;231;430;503;503;2;75;3;10;15;358;512;26;92;95;0 -215;'834;United Republic of Tanzania;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18979;22651;23064;15573;15894;20895;23320 -215;'834;United Republic of Tanzania;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10800;61631;2649;1643;1939;1691;3330 -215;'834;United Republic of Tanzania;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;66;10;3;9;24;89 -215;'834;United Republic of Tanzania;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;103;103;36;83;50;1 -215;'834;United Republic of Tanzania;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1;1;1;3;20;35 -215;'834;United Republic of Tanzania;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;34;34;34;34;0;0 -215;'834;United Republic of Tanzania;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;65;9;2;6;4;54 -215;'834;United Republic of Tanzania;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;69;69;2;49;50;1 -215;'834;United Republic of Tanzania;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;179;420;234;775;283;316;171 -215;'834;United Republic of Tanzania;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;10578;116;509;14;342;104 -215;'834;United Republic of Tanzania;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;307;1367;515;267;335;389;353 -215;'834;United Republic of Tanzania;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1717;14958;1112;273;373;503;544 -215;'834;United Republic of Tanzania;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1054;1733;1359;1027;1073;643;1760 -215;'834;United Republic of Tanzania;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;324;77;95;55;25;58 -215;'834;United Republic of Tanzania;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;6 -215;'834;United Republic of Tanzania;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;4 -215;'834;United Republic of Tanzania;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126;2 -215;'834;United Republic of Tanzania;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;256;29 -215;'834;United Republic of Tanzania;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27 -215;'834;United Republic of Tanzania;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34 -215;'834;United Republic of Tanzania;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15467;15994;16841;11472;12197;16404;15552 -215;'834;United Republic of Tanzania;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8821;23012;444;377;434;247;2155 -215;'834;United Republic of Tanzania;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;456;1015;523;318;226;480;1384 -215;'834;United Republic of Tanzania;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;30;4;6;14;25 -215;'834;United Republic of Tanzania;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1434;2056;3582;1711;1771;2639;4011 -215;'834;United Republic of Tanzania;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;197;12656;767;349;974;510;443 -215;'834;United Republic of Tanzania;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34796;38908;40292;38824;49698;61538;69056 -215;'834;United Republic of Tanzania;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11923;60113;14077;9704;15004;13155;7963 -215;'834;United Republic of Tanzania;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;24;19;1;54;55;32 -215;'834;United Republic of Tanzania;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;2;2;2;1 -215;'834;United Republic of Tanzania;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6296;8318;7474;6410;11087;8627;10717 -215;'834;United Republic of Tanzania;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;1067;50;134;206;49;12 -215;'834;United Republic of Tanzania;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1486;1164;1250;2057;1726;3047;3904 -215;'834;United Republic of Tanzania;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;532;64;141;656;324;155 -215;'834;United Republic of Tanzania;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13995;14113;12582;14095;16860;23145;26395 -215;'834;United Republic of Tanzania;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;553;5415;1436;879;845;2718;373 -215;'834;United Republic of Tanzania;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12985;15289;18967;16261;19971;26664;28008 -215;'834;United Republic of Tanzania;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11342;53098;12526;8548;13295;10062;7422 -231;'840;United States of America;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59356964.86;64157773;58772360;60663068;82938847;93258257;69617986 -231;'840;United States of America;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35949317.46;37394220;33404290;30499212;36473313;40752147;35362890 -231;'840;United States of America;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;1232916;1315989;1342726;1435079;1511078;1669698;1614463;2246390;2494417;2307552;2693678;3305989;4027252;4308018;3972088;5061356;6039024;7682589;8149222;7611628;7732662;8106301;9020518;10547022;10803714;11157833;13068210;14411694;15257301;14979366;12879239;14614755;16312954;18655770;22444014;23451813;24155826;22026753;24482164;25823164;24339667;23408124;24536568;31455615;32100697;31698402;27660324;24327525;17122792;19542151;19527676;20752316;22952586;24613980;23685321;24078761;24938865.86;26906650;23306733;24606244;36694449;39159768;27151341 -231;'840;United States of America;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;437298;456288;525806;611259;687625;769630;871608;1213576;1346946;1658040;1509838;1838642;2730786;3724239;3613227;4166855;4059424;4244434;6018689;7404772;6882083;6017243;6033807;6219231;5770375;6795317;8782463;11564733;13058860;13376333;13199757;14380990;13537705;14411468;18252253;17097223;16384240;14666378;14650350;16563635;14094805;13838301;14201193;15877177;17018961;18497513;20872689;21274008;19148260;22923905;25250957;25605682;26595675;27234076;25149516;24636383;27084950.46;28296900;24441916;22364104;27051831;29972067;25010582 -231;'840;United States of America;1861;Roundwood;5516;Production;m3;289770016;295717016;291838016;311378016;320381024;328651016;324431000;340913008;341253032;348474008;355073016;351589032;356245000;357280008;324232008;354761008;362945008;400891000;417174008;398171016;393549008;395217008;432033008;463237024;455393016;492320024;496782000;495675000;497603000;509319000;491260000;483803000;470725992;473107008;469830000;461077000;464231008;469750000;469313000;466549000;449114000;448000000;448513255;461739180;467347350;457048000;425128760;380508844;332527676;376571676;395140676;387512000;396817843;398692751;399023412;436632000;440785378;464118154;459122600;429237511;453446000;456329687;412291332 -231;'840;United States of America;1861;Roundwood;5616;Import quantity;m3;3865900;4056800;3850300;2585600;2588400;2720900;2532400;2621500;2299800;2578800;2323200;2337800;1766200;2002900;1627600;1724200;1918300;1863700;1806500;1940600;1690200;1503700;1690600;1702000;1299800;1299300;1820000;1427600;1090000;246348;218867;456720;905948;1275800;976000;704000;750000;1475700;1969800;2571000;2562246;2851699;2720658;2587816;3753855;3091528;2354438;1551587;801053;899969;1064113;1279026;1066460;1061546;1341350;1393364;1199212;1943030;1032084;1422285;898026;1021011;951839 -231;'840;United States of America;1861;Roundwood;5622;Import value;1000 USD;38138;37161;35013;28292;28255;32385;29498;31159;29496;35200;27069;23960;20818;38060;35448;28153;42121;42679;48183;42001;42415;45924;50770;46829;37465;25609;46142;44072;54345;33657;26059;52970;66893;103973;97706;79662;81761;111517;152671;222613;198926;219785;200012;212460;302643;305697;219393;120980;85280;75995;74408;101245;97289;100233;104786;107215;99017.49;150098;97306;172982;205803;245468;245070 -231;'840;United States of America;1861;Roundwood;5916;Export quantity;m3;2636100;2660100;4542700;5161300;5625300;6670200;9280800;11885400;11076800;12778700;10718700;14638100;14870200;13268400;13385300;15919700;15294300;16331700;18635208;15800900;12593800;15523200;16828100;16726900;18381308;17488800;19509396;22647096;22495200;21666105;20700384;17341266;13107391;12355000;12945000;12077000;10991000;12544900;11916100;12156600;11610198;11298498;10442146;10515348;9937704;9772701;10064967;10420066;9849584;11839907;14320972;12769700;15128067;14294222;11931500;12335590;12526601;12635232;7957283;7355169;9429098;7538813;6412532 -231;'840;United States of America;1861;Roundwood;5922;Export value;1000 USD;54277;61317;79823;91929;124381;137381;202383;287098;303246;368358;301357;445020;825070;745835;751020;948086;1001676;1219731;1793702;1624207;1138497;1291272;1199030;1212443;1293628;1268566;1686484;2292973;2447770;2491915;2203542;2257888;2492785;2295941;2312986;2152502;1690067;1346556;1355006;1448989;1261747;1229127;1241214;1460554;1458585;1470431;1683331;1654509;1363768;1858906;2260677;1952012;2429903;2485749;1767567;2024014;2434148.12;2452810;1605382;1627550;2149548;1958306;1613757 -231;'840;United States of America;1862;Roundwood, coniferous;5516;Production;m3;199146016;209908008;207727000;221745008;229882008;234283008;233290000;248189008;243952016;249796000;257837016;249964016;253329000;250778000;234187000;257547000;260837000;280150000;286863000;260038008;252688008;245061008;275067008;296970008;296213008;319294016;336375000;335225000;332443000;327812000;293274000;301743000;278779992;283586008;283367000;277206000;286759008;292410000;292376000;291072000;281198000;283550000;288664003;303837591;308983426;299186000;268140006;233795673;200556339;257466339;268554339;262856000;267858672;269536483;279813660;297544000;300482708;327461607;326400000;318900000;339500000;329408000;304629000 -231;'840;United States of America;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;741312;1460458;553455;917463;517936;628609;626355 -231;'840;United States of America;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69479;118854;59958;133732;157669;206193;206263 -231;'840;United States of America;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9851000;10183667;6014497;5608967;7288961;5391606;4679894 -231;'840;United States of America;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1571187;1563857;932729;995754;1317369;1049863;840643 -231;'840;United States of America;1863;Roundwood, non-coniferous;5516;Production;m3;90624000;85809008;84111016;89633008;90499016;94368008;91141000;92724000;97301016;98678008;97236000;101625016;102916000;106502008;90045008;97214008;102108008;120741000;130311008;138133008;140861000;150156000;156966000;166267016;159180008;173026008;160407000;160450000;165160000;181507000;197986000;182060000;191946000;189521000;186463000;183871000;177472000;177340000;176937000;175477000;167916000;164450000;159849252;157901589;158363924;157862000;156988754;146713171;131971337;119105337;126586337;124656000;128959171;129156268;119209752;139088000;140302670;136656547;132722600;110337511;113946000;126921687;107662332 -231;'840;United States of America;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;457900;482572;478629;504822;380090;392402;325484 -231;'840;United States of America;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29538.49;31244;37348;39250;48134;39275;38807 -231;'840;United States of America;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2675601;2451565;1942786;1746202;2140137;2147207;1732638 -231;'840;United States of America;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;862961.12;888953;672653;631796;832179;908443;773114 -231;'840;United States of America;1864;Wood fuel;5516;Production;m3;41432000;32936000;30444008;32002008;29393000;29450000;30186000;31092000;31149000;35821000;34915000;35963000;34037000;37265000;35651000;34886000;42504000;53972000;62467000;71076000;76455000;100243000;96193000;102678000;97807000;100044000;82940000;82148000;80703000;82119000;102960000;80703000;69206000;62326000;60882000;54482000;48139000;46213000;46015000;45930000;45902000;43042000;42900255;43608180;43891350;44914000;46357760;43613844;40436676;40436676;40436676;40436000;41880843;41880843;44345000;62156000;64370000;71608562;71400000;60500000;71200000;72369000;66026000 -231;'840;United States of America;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;216520;444148;478800;271000;180000;168000;115700;114800;118000;132300;164400;169294;151286;184523;170000;112706;121551;104722;83679;105575;111902;140425;152452;150350;145683;45000;165074;90319;103345;126116;80583;83210 -231;'840;United States of America;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8792;15302;20796;12579;10606;10605;3934;3902;4011;4499;5589;5756;7413;8119;8177;7664;8227;7088;7713;8648;11534;10251;11129;13451;18160;12385;12677;19312;23425;30914;22461;27211 -231;'840;United States of America;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65266;77391;140000;128000;132000;127000;254900;177100;204600;198300;231000;153667;113806;122444;135000;115481;219981;231043;257407;566472;542300;428339;332048;370500;288659;327000;365471;35000;576;14488;4277;515 -231;'840;United States of America;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3093;3220;5773;13966;14358;14358;6117;4250;4911;4760;5544;4610;4097;4408;5248;6005;11439;11922;20374;37964;39507;26557;20587;27007;19450;21899;21713;2331;1061;1146;5230;787 -231;'840;United States of America;1627;Wood fuel, coniferous;5516;Production;m3;9600000;6004000;5381000;5805000;5588000;5599000;5739000;5911000;5922000;6810000;6638000;6837000;6471000;7085000;6778000;6632000;8081000;10261000;11876000;13513000;14535000;19058000;18288000;19521000;18595000;19020000;15768000;15618000;15343000;15612000;19574000;15343000;13157000;11849000;11575000;10358000;9152000;8786000;8748000;8732000;8727000;8183000;8156003;8290591;8344426;8812000;9095006;8556673;7933339;7933339;7933339;7933000;8216672;8216672;8431000;11817000;12238000;32506311;32800000;26300000;33800000;31800000;30700000 -231;'840;United States of America;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45000;161670;51333;22953;34126;28782;25431 -231;'840;United States of America;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12385;12360;11077;5802;8537;8151;7479 -231;'840;United States of America;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;327000;365277;23600;445;9111;3790;257 -231;'840;United States of America;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21899;21697;1417;783;581;4482;339 -231;'840;United States of America;1628;Wood fuel, non-coniferous;5516;Production;m3;31832000;26932000;25063008;26197008;23805000;23851000;24447000;25181000;25227000;29011000;28277000;29126000;27566000;30180000;28873000;28254000;34423000;43711000;50591000;57563000;61920000;81185000;77905000;83157000;79212000;81024000;67172000;66530000;65360000;66507000;83386000;65360000;56049000;50477000;49307000;44124000;38987000;37427000;37267000;37198000;37175000;34859000;34744252;35317589;35546924;36102000;37262754;35057171;32503337;32503337;32503337;32503000;33664171;33664171;35914000;50339000;52132000;39102251;38600000;34200000;37400000;40569000;35326000 -231;'840;United States of America;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3404;38986;80392;91990;51801;57779 -231;'840;United States of America;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;317;8235;17623;22377;14310;19732 -231;'840;United States of America;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;194;11400;131;5377;487;258 -231;'840;United States of America;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;914;278;565;748;448 -231;'840;United States of America;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;216520;444148;478800;271000;180000;168000;115700;114800;118000;132300;164400;169294;151286;184523;170000;112706;121551;104722;83679;105575;111902;140425;152452;150350;145683;;;;;;; -231;'840;United States of America;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8792;15302;20796;12579;10606;10605;3934;3902;4011;4499;5589;5756;7413;8119;8177;7664;8227;7088;7713;8648;11534;10251;11129;13451;18160;;;;;;; -231;'840;United States of America;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65266;77391;140000;128000;132000;127000;254900;177100;204600;198300;231000;153667;113806;122444;135000;115481;219981;231043;257407;566472;542300;428339;332048;370500;288659;;;;;;; -231;'840;United States of America;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3093;3220;5773;13966;14358;14358;6117;4250;4911;4760;5544;4610;4097;4408;5248;6005;11439;11922;20374;37964;39507;26557;20587;27007;19450;;;;;;; -231;'840;United States of America;1865;Industrial roundwood;5516;Production;m3;248338016;262781016;261394008;279376008;290988024;299201016;294245000;309821008;310104032;312653008;320158016;315626032;322208000;320015008;288581008;319875008;320441008;346919000;354707008;327095016;317094008;294974008;335840008;360559024;357586016;392276024;413842000;413527000;416900000;427200000;388300000;403100000;401519992;410781008;408948000;406595000;416092008;423537000;423298000;420619000;403212000;404958000;405613000;418131000;423456000;412134000;378771000;336895000;292091000;336135000;354704000;347076000;354937000;356811908;354678412;374476000;376415378;392509592;387722600;368737511;382246000;383960687;346265332 -231;'840;United States of America;1865;Industrial roundwood;5616;Import quantity;m3;3865900;4056800;3850300;2585600;2588400;2720900;2532400;2621500;2299800;2578800;2323200;2337800;1766200;2002900;1627600;1724200;1918300;1863700;1806500;1940600;1690200;1503700;1690600;1702000;1299800;1299300;1820000;1427600;1090000;246348;218867;240200;461800;797000;705000;524000;582000;1360000;1855000;2453000;2429946;2687299;2551364;2436530;3569332;2921528;2241732;1430036;696331;816290;958538;1167124;926035;909094;1191000;1247681;1154212;1777956;941765;1318940;771910;940428;868629 -231;'840;United States of America;1865;Industrial roundwood;5622;Import value;1000 USD;38138;37161;35013;28292;28255;32385;29498;31159;29496;35200;27069;23960;20818;38060;35448;28153;42121;42679;48183;42001;42415;45924;50770;46829;37465;25609;46142;44072;54345;33657;26059;44178;51591;83177;85127;69056;71156;107583;148769;218602;194427;214196;194256;205047;294524;297520;211729;112753;78192;68282;65760;89711;87038;89104;91335;89055;86632.49;137421;77994;149557;174889;223007;217859 -231;'840;United States of America;1865;Industrial roundwood;5916;Export quantity;m3;2636100;2660100;4542700;5161300;5625300;6670200;9280800;11885400;11076800;12778700;10718700;14638100;14870200;13268400;13385300;15919700;15294300;16331700;18635208;15800900;12593800;15523200;16828100;16726900;18381308;17488800;19509396;22647096;22495200;21666105;20700384;17276000;13030000;12215000;12817000;11945000;10864000;12290000;11739000;11952000;11411898;11067498;10288479;10401542;9815260;9637701;9949486;10200085;9618541;11582500;13754500;12227400;14699728;13962174;11561000;12046931;12199601;12269761;7922283;7354593;9414610;7534536;6412017 -231;'840;United States of America;1865;Industrial roundwood;5922;Export value;1000 USD;54277;61317;79823;91929;124381;137381;202383;287098;303246;368358;301357;445020;825070;745835;751020;948086;1001676;1219731;1793702;1624207;1138497;1291272;1199030;1212443;1293628;1268566;1686484;2292973;2447770;2491915;2203542;2254795;2489565;2290168;2299020;2138144;1675709;1340439;1350756;1444078;1256987;1223583;1236604;1456457;1454177;1465183;1677326;1643070;1351846;1838532;2222713;1912505;2403346;2465162;1740560;2004564;2412249.12;2431097;1603051;1626489;2148402;1953076;1612970 -231;'840;United States of America;1866;Industrial roundwood, coniferous;5516;Production;m3;189546016;203904008;202346000;215940008;224294008;228684008;227551000;242278008;238030016;242986000;251199016;243127016;246858000;243693000;227409000;250915000;252756000;269889000;274987000;246525008;238153008;226003008;256779008;277449008;277618008;300274016;320607000;319607000;317100000;312200000;273700000;286400000;265622992;271737008;271792000;266848000;277607008;283624000;283628000;282340000;272471000;275367000;280508000;295547000;300639000;290374000;259045000;225239000;192623000;249533000;260621000;254923000;259642000;261319811;271382660;285727000;288244708;294955296;293600000;292600000;305700000;297608000;273929000 -231;'840;United States of America;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;161243;174462;210000;388000;579000;591000;379000;382000;1056000;1585000;2137000;2098000;2340919;2187387;2118530;3131332;2642528;2093541;1171282;548140;553000;708000;733124;555282;459658;719000;703632;696312;1298788;502122;894510;483810;599827;600924 -231;'840;United States of America;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20317;18157;36212;40869;65082;60171;40758;40016;73875;113117;173683;151875;171714;151456;161875;246691;255793;180720;85705;47183;42639;40822;60300;59827;59377;60931;57694;57094;106494;48881;127930;149132;198042;198784 -231;'840;United States of America;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20062048;19077984;15844000;11956000;11020000;11604000;10797000;9413000;10321000;9718000;9358000;8702102;7963426;7620944;7261033;7316464;7429474;7623730;7720166;7515341;9457500;11879500;10327400;12795000;11734000;9788000;9692958;9524000;9818390;5990897;5608522;7279850;5387816;4679637 -231;'840;United States of America;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2227714;1953120;2002527;2236560;2007990;2016862;1889580;1368920;1018981;1013365;1027208;824404;739619;725321;857162;861244;838795;860588;898096;813994;1111711;1557588;1307730;1778991;1727682;1274056;1267050;1549288;1542160;931312;994971;1316788;1045381;840304 -231;'840;United States of America;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;161243;174462;210000;388000;579000;591000;379000;382000;1056000;1585000;2137000;2098000;2340919;2187387;2118530;3131332;2642528;2093541;1171282;548140;553000;708000;733124;555282;459658;719000;703632;696312;1298788;502122;894510;483810;599827;600924 -231;'840;United States of America;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20317;18157;36212;40869;65082;60171;40758;40016;73875;113117;173683;151875;171714;151456;161875;246691;255793;180720;85705;47183;42639;40822;60300;59827;59377;60931;57694;57094;106494;48881;127930;149132;198042;198784 -231;'840;United States of America;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20062048;19077984;15844000;11956000;11020000;11604000;10797000;9413000;10321000;9718000;9358000;8702102;7963426;7620944;7261033;7316464;7429474;7623730;7720166;7515341;9457500;11879500;10327400;12795000;11734000;9788000;9692958;9524000;9818390;5990897;5608522;7279850;5387816;4679637 -231;'840;United States of America;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2227714;1953120;2002527;2236560;2007990;2016862;1889580;1368920;1018981;1013365;1027208;824404;739619;725321;857162;861244;838795;860588;898096;813994;1111711;1557588;1307730;1778991;1727682;1274056;1267050;1549288;1542160;931312;994971;1316788;1045381;840304 -231;'840;United States of America;1867;Industrial roundwood, non-coniferous;5516;Production;m3;58792000;58877008;59048008;63436000;66694016;70517008;66694000;67543000;72074016;69667008;68959000;72499016;75350000;76322008;61172008;68960008;67685008;77030000;79720008;80570008;78941000;68971000;79061000;83110016;79968008;92002008;93235000;93920000;99800000;115000000;114600000;116700000;135897000;139044000;137156000;139747000;138485000;139913000;139670000;138279000;130741000;129591000;125105000;122584000;122817000;121760000;119726000;111656000;99468000;86602000;94083000;92153000;95295000;95492097;83295752;88749000;88170670;97554296;94122600;76137511;76546000;86352687;72336332 -231;'840;United States of America;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85105;44405;30200;73800;218000;114000;145000;200000;304000;270000;316000;331946;346380;363977;318000;438000;279000;148191;258754;148191;263290;250538;434000;370753;449436;472000;544049;457900;479168;439643;424430;288100;340601;267705 -231;'840;United States of America;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13340;7902;7966;10722;18095;24956;28298;31140;33708;35652;44919;42552;42482;42800;43172;47833;41727;31009;27048;31009;25643;24938;29411;27211;29727;30404;31361;29538.49;30927;29113;21627;25757;24965;19075 -231;'840;United States of America;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1604057;1622400;1432000;1074000;1195000;1213000;1148000;1451000;1969000;2021000;2594000;2709796;3104072;2667535;3140509;2498796;2208227;2325756;2479919;2103200;2125000;1875000;1900000;1904728;2228174;1773000;2353973;2675601;2451371;1931386;1746071;2134760;2146720;1732380 -231;'840;United States of America;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;264201;250422;252268;253005;282178;282158;248564;306789;321458;337391;416870;432583;483964;511283;599295;592933;626388;816738;744974;537852;726821;665125;604775;624355;737480;466504;737514;862961.12;888937;671739;631518;831614;907695;772666 -231;'840;United States of America;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24843;16367;4200;4300;5000;3000;3000;3000;1000;1000;2000;1472;1300;1564;2000;1279;1466;1744;5403;1191;666;216;1000;6595;6595;6595;8017;8518;26527;1727;562;8000;25211;7213 -231;'840;United States of America;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7778;4200;2230;2233;2412;4140;4140;4140;4607;6722;1005;702;788;835;1041;663;904;1187;1216;946;839;220;468;2068;2068;2068;2512;2669;2402;2000;235;1420;4577;3588 -231;'840;United States of America;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;17000;4000;612;2266;1600;1000;1266;1396;1999;1999;1186;1211;722;800;451;229;229;1709;4442;21697;6522;5341;5920;3630;3289 -231;'840;United States of America;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;615;3987;805;175;929;344;136;247;302;808;840;491;538;413;328;209;35;35;260;676;9140;2442;3245;2053;1186;994 -231;'840;United States of America;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60262;28038;26000;69500;213000;111000;142000;197000;303000;269000;314000;330474;345080;362413;316000;436721;277534;146447;253351;147000;262624;250322;433000;364158;442841;465405;536032;449382;452641;437916;423868;280100;315390;260492 -231;'840;United States of America;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5562;3702;5736;8489;15683;20816;24158;27000;29101;28930;43914;41850;41694;41965;42131;47170;40823;29822;25832;30063;24804;24718;28943;25143;27659;28336;28849;26869.49;28525;27113;21392;24337;20388;15487 -231;'840;United States of America;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1604057;1622400;1432000;1074000;1195000;1213000;1148000;1451000;1966000;2004000;2590000;2709184;3101806;2665935;3139509;2497530;2206831;2323757;2477920;2102014;2123789;1874278;1899200;1904277;2227945;1772771;2352264;2671159;2429674;1924864;1740730;2128840;2143090;1729091 -231;'840;United States of America;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;264201;250422;252268;253005;282178;282158;248564;306789;320843;333404;416065;432408;483035;510939;599159;592686;626086;815930;744134;537361;726283;664712;604447;624146;737445;466469;737254;862285.12;879797;669297;628273;829561;906509;771672 -231;'840;United States of America;1868;Sawlogs and veneer logs;5516;Production;m3;162245008;175499008;175443008;186628000;191585008;194559008;191160000;204329008;193142016;191019008;206595008;198948016;199940000;190310000;180681008;204046000;211692000;229250000;226560000;191302016;182400000;161220000;201481008;224129008;226308016;249898016;266580000;267710000;262400000;272400000;229500000;241700000;236700992;244303008;242874000;241502000;247112008;238492000;247516000;242698000;230483000;234578000;230012000;247958000;253636000;242259000;223000000;189199000;147228000;148119000;158666000;150223000;153323000;156784000;160471000;166429000;171272378;185837357;187600000;180200000;183700000;186400000;179200000 -231;'840;United States of America;1868;Sawlogs and veneer logs;5616;Import quantity;m3;478200;452700;443500;294500;308600;433100;348400;386300;370700;654100;380500;178000;151700;346900;387300;369600;704200;438800;602100;577600;458000;530100;747400;665500;449500;355500;373700;308500;190000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -231;'840;United States of America;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;7861;8035;8083;6707;6698;8745;7293;7422;7902;13143;7455;4635;4200;13134;17040;9904;23970;19247;29177;20153;19690;26430;28053;20482;21641;8617;22309;18089;23324;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -231;'840;United States of America;1868;Sawlogs and veneer logs;5916;Export quantity;m3;2182400;2365700;4309600;4921000;5403400;6414400;8927300;11633700;10859000;12492700;10424600;14286900;14607600;12015000;12119000;14757300;13953900;15443800;17653508;14772000;11480100;14532900;15864600;15831900;17409508;16431900;18579496;21735296;21620000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -231;'840;United States of America;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;46771;55537;75239;84345;116968;129095;191936;279929;295957;357954;294434;436000;813748;719881;723765;921015;972790;1180031;1751653;1581055;1094716;1258085;1166903;1179910;1260281;1226634;1644307;2249602;2401306;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -231;'840;United States of America;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;131235008;142280000;142166000;150804000;153778000;157318000;155902000;170345008;158025008;156468000;172611008;162839008;163500000;157034000;152786000;173460000;179974000;193142000;189178000;154061008;146980000;136200000;170341008;191904000;195867008;213397008;228550000;228750000;223800000;218600000;178300000;185500000;170308992;175743008;173404000;171386000;176391008;172272000;180221000;176803000;167641000;172973000;174211000;186490000;192678000;182390000;166160000;137469000;110294000;117644000;125285000;118323000;121323000;123897000;128472000;132462000;136965708;140768540;143000000;148000000;151000000;153000000;152000000 -231;'840;United States of America;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;258000;170700;199100;39500;61200;192500;153400;178500;188800;482400;252300;51100;38400;206600;310400;305300;635600;358200;536100;516700;396700;447400;645300;529200;320900;236100;311000;253200;110000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -231;'840;United States of America;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;2683;1552;1939;424;706;1906;1690;1384;3056;8599;3943;737;557;8571;13059;7190;21126;15196;26445;17349;16976;22930;24474;15384;17408;4563;19039;14739;9198;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -231;'840;United States of America;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;1958000;2050700;3984400;4632500;5034600;5973600;8487400;11203700;10495700;12180400;10151400;13860000;14089600;11450000;11819000;14329000;13500000;14941900;17070208;14084300;10768300;14110900;15359500;15263200;16905808;15802800;17934896;20812496;20640000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -231;'840;United States of America;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;33762;38416;55261;66785;82429;104352;159630;237783;255812;322143;264632;393840;760420;670031;680925;855131;900320;1077215;1613553;1451691;1002848;1174180;1068840;1079201;1169132;1129369;1526032;2089613;2178564;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -231;'840;United States of America;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;31010000;33219008;33277008;35824000;37807008;37241008;35258000;33984000;35117008;34551008;33984000;36109008;36440000;33276000;27895008;30586000;31718000;36108000;37382000;37241008;35420000;25020000;31140000;32225008;30441008;36501008;38030000;38960000;38600000;53800000;51200000;56200000;66392000;68560000;69470000;70116000;70721000;66220000;67295000;65895000;62842000;61605000;55801000;61468000;60958000;59869000;56840000;51730000;36934000;30475000;33381000;31900000;32000000;32887000;31999000;33967000;34306670;45068817;44600000;32200000;32700000;33400000;27200000 -231;'840;United States of America;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;220200;282000;244400;255000;247400;240600;195000;207800;181900;171700;128200;126900;113300;140300;76900;64300;68600;80600;66000;60900;61300;82700;102100;136300;128600;119400;62700;55300;80000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -231;'840;United States of America;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;5178;6483;6144;6283;5992;6839;5603;6038;4846;4544;3512;3898;3643;4563;3981;2714;2844;4051;2732;2804;2714;3500;3579;5098;4233;4054;3270;3350;14126;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -231;'840;United States of America;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;224400;315000;325200;288500;368800;440800;439900;430000;363300;312300;273200;426900;518000;565000;300000;428300;453900;501900;583300;687700;711800;422000;505100;568700;503700;629100;644600;922800;980000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -231;'840;United States of America;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;13009;17121;19978;17560;34539;24743;32306;42146;40145;35811;29802;42160;53328;49850;42840;65884;72470;102816;138100;129364;91868;83905;98063;100709;91149;97265;118275;159989;222742;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -231;'840;United States of America;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;176409000;167344000;169426000;163681000;161391000;166596000;161168000;160815000;160813000;146568000;139484000;136552000;179705000;183821000;184448000;186390000;184803908;179303412;194647000;192458000;192921268;186500000;175300000;185200000;181162000;152337000 -231;'840;United States of America;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106775000;98935000;101035000;97128000;94764000;101524000;104284000;103188000;103181000;88007000;83418000;77924000;127484000;130931000;132195000;134314000;133417811;130926660;142677000;140743000;142533442;139000000;133000000;143000000;130198000;108869000 -231;'840;United States of America;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69634000;68409000;68391000;66553000;66627000;65072000;56884000;57627000;57632000;58561000;56066000;58628000;52221000;52890000;52253000;52076000;51386097;48376752;51970000;51715000;50387826;47500000;42300000;42200000;50964000;43468000 -231;'840;United States of America;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5616;Import quantity;m3;2866300;2988000;2732300;1536600;1578000;1685000;1494800;1375600;1143600;1064700;774100;651500;559300;743000;606300;621600;497100;574900;437700;503000;357500;346400;329500;441200;67400;125000;32700;83900;200000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -231;'840;United States of America;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5622;Import value;1000 USD;24833;23364;21549;16145;16121;17538;16589;16650;14326;14567;10981;9956;7964;11038;9297;10200;9751;13370;8869;10866;9876;8948;8248;11465;2655;4563;1742;4201;7610;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -231;'840;United States of America;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5916;Export quantity;m3;398500;243300;196400;162800;156100;194600;279800;206700;163800;201000;244100;301200;187600;469000;433000;372000;429000;463600;560100;394100;374200;238000;442000;459000;573000;771000;746000;790000;700000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -231;'840;United States of America;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5922;Export value;1000 USD;3598;2284;1912;1529;1522;2010;3022;2400;1803;1919;2174;3295;2122;7129;6422;7230;8225;8958;11473;9389;9910;7475;8800;10700;17000;23000;28000;30000;21000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -231;'840;United States of America;1870;Pulpwood and particles (1961-1997);5516;Production;m3;69129008;75699008;75048000;81137008;87650016;89491008;88500000;89350000;101386016;109598000;100819008;103934016;106908000;116961008;95864000;102943008;98271008;106058000;116253008;124324000;123225008;122285008;122890000;123348016;117912000;128701008;132820000;131350000;140300000;140500000;148700000;150900000;149962000;150743000;150000000;149533000;153240000;;;;;;;;;;;;;;;;;;;;;;;;;; -231;'840;United States of America;1870;Pulpwood and particles (1961-1997);5616;Import quantity;m3;2866300;2988000;2732300;1536600;1578000;1685000;1494800;1375600;1143600;1064700;774100;651500;559300;743000;606300;621600;497100;574900;437700;503000;357500;346400;329500;441200;67400;125000;32700;83900;200000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -231;'840;United States of America;1870;Pulpwood and particles (1961-1997);5622;Import value;1000 USD;24833;23364;21549;16145;16121;17538;16589;16650;14326;14567;10981;9956;7964;11038;9297;10200;9751;13370;8869;10866;9876;8948;8248;11465;2655;4563;1742;4201;7610;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -231;'840;United States of America;1870;Pulpwood and particles (1961-1997);5916;Export quantity;m3;398500;243300;196400;162800;156100;194600;279800;206700;163800;201000;244100;301200;187600;469000;433000;372000;429000;463600;560100;394100;374200;238000;442000;459000;573000;771000;746000;790000;700000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -231;'840;United States of America;1870;Pulpwood and particles (1961-1997);5922;Export value;1000 USD;3598;2284;1912;1529;1522;2010;3022;2400;1803;1919;2174;3295;2122;7129;6422;7230;8225;8958;11473;9389;9910;7475;8800;10700;17000;23000;28000;30000;21000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -231;'840;United States of America;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;49985008;54969008;53950000;58623008;64003008;64003008;63720000;63720000;71933008;80004000;71649008;73349008;74908000;79862000;68110000;70658000;65986000;69384000;78446000;85526000;84235008;82865008;79500000;78211008;74360000;79401008;83930000;82730000;85600000;85800000;88300000;93400000;87447000;87645000;89870000;87116000;92870000;;;;;;;;;;;;;;;;;;;;;;;;;; -231;'840;United States of America;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;19144000;20730000;21098000;22514000;23647008;25488000;24780000;25630000;29453008;29594000;29170000;30585008;32000000;37099008;27754000;32285008;32285008;36674000;37807008;38798000;38990000;39420000;43390000;45137008;43552000;49300000;48890000;48620000;54700000;54700000;60400000;57500000;62515000;63098000;60130000;62417000;60370000;;;;;;;;;;;;;;;;;;;;;;;;;; -231;'840;United States of America;1871;Other industrial roundwood;5516;Production;m3;16964000;11583000;10903000;11611000;11753000;15151000;14585000;16142000;15576000;12036000;12744000;12744000;15360000;12744000;12036000;12886000;10478000;11611000;11894000;11469000;11469000;11469000;11469000;13082000;13366000;13677000;14442000;14467000;14200000;14300000;10100000;10500000;14857000;15735000;16074000;15560000;15740000;8636000;8438000;8495000;9048000;8989000;9005000;9005000;9005000;9062000;9203000;8212000;8311000;8311000;12217000;12405000;15224000;15224000;14904000;13400000;12685000;13750967;13622600;13237511;13346000;16398687;14728332 -231;'840;United States of America;1871;Other industrial roundwood;5616;Import quantity;m3;521400;616100;674500;754500;701800;602800;689200;859600;785500;860000;1168600;1508300;1055200;913000;634000;733000;717000;850000;766700;860000;874700;627200;613700;595300;782900;818800;1413600;1035200;700000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -231;'840;United States of America;1871;Other industrial roundwood;5622;Import value;1000 USD;5444;5762;5381;5440;5436;6102;5616;7087;7268;7490;8633;9369;8654;13888;9111;8049;8400;10062;10137;10982;12849;10546;14469;14882;13169;12429;22091;21782;23411;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -231;'840;United States of America;1871;Other industrial roundwood;5916;Export quantity;m3;55200;51100;36700;77500;65800;61200;73700;45000;54000;85000;50000;50000;75000;784400;833300;790400;911400;424300;421600;634800;739500;752300;521500;436000;398800;285900;183900;121800;175200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -231;'840;United States of America;1871;Other industrial roundwood;5922;Export value;1000 USD;3908;3496;2672;6055;5891;6276;7425;4769;5486;8485;4749;5725;9200;18825;20833;19841;20661;30742;30576;33763;33871;25712;23327;21833;16347;18932;14177;13371;25464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -231;'840;United States of America;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;8326000;6655000;6230000;6513000;6513000;7363000;7929000;8213000;8072000;6514000;6939000;6939000;8450000;6797000;6513000;6797000;6796000;7363000;7363000;6938000;6938000;6938000;6938000;7334000;7391000;7476000;8127000;8127000;7700000;7800000;7100000;7500000;7867000;8349000;8518000;8346000;8346000;4577000;4472000;4502000;7702000;7630000;4773000;4773000;4773000;4803000;4878000;4352000;4405000;4405000;4405000;4405000;4005000;4005000;11984000;10588000;10536000;11653314;11600000;11600000;11700000;14410000;13060000 -231;'840;United States of America;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;8638000;4928000;4673000;5098000;5240000;7788000;6656000;7929000;7504000;5522000;5805000;5805000;6910000;5947000;5523000;6089000;3682000;4248000;4531000;4531000;4531000;4531000;4531000;5748000;5975000;6201000;6315000;6340000;6500000;6500000;3000000;3000000;6990000;7386000;7556000;7214000;7394000;4059000;3966000;3993000;1346000;1359000;4232000;4232000;4232000;4259000;4325000;3860000;3906000;3906000;7812000;8000000;11219000;11219000;2920000;2812000;2149000;2097653;2022600;1637511;1646000;1988687;1668332 -231;'840;United States of America;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;521400;616100;674500;754500;701800;602800;689200;859600;785500;860000;1168600;1508300;1055200;913000;634000;733000;717000;850000;766700;860000;874700;627200;613700;595300;782900;818800;1413600;1035200;700000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -231;'840;United States of America;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;5444;5762;5381;5440;5436;6102;5616;7087;7268;7490;8633;9369;8654;13888;9111;8049;8400;10062;10137;10982;12849;10546;14469;14882;13169;12429;22091;21782;23411;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -231;'840;United States of America;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;55200;51100;36700;77500;65800;61200;73700;45000;54000;85000;50000;50000;75000;784400;833300;790400;911400;424300;421600;634800;739500;752300;521500;436000;398800;285900;183900;121800;175200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -231;'840;United States of America;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;3908;3496;2672;6055;5891;6276;7425;4769;5486;8485;4749;5725;9200;18825;20833;19841;20661;30742;30576;33763;33871;25712;23327;21833;16347;18932;14177;13371;25464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -231;'840;United States of America;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;734000;762000;747000;789000;802000;852900;870800;925100;909900;959400;982200;930300;940000;901800;901649;916524;923507;1070000;1038000;1039000;982260;982260;982260;852000;852000;852000;852000;852000;852000;852000;852000 -231;'840;United States of America;1630;Wood charcoal;5610;Import quantity;t;9200;8300;9500;11400;8500;8500;8100;7800;12100;17700;23600;17100;13200;17000;7900;9200;14300;35700;34200;37400;8100;6800;9300;18000;20100;18500;22800;22700;27300;36100;24800;25024;25406;22700;22400;19200;27100;26000;23000;19000;21483;29753;55520;64000;60000;61000;59000;48000;55249;55839;64937;76000;78875;88000;101000;117085;118944;107659;102899;151559;183010;121001;129435 -231;'840;United States of America;1630;Wood charcoal;5622;Import value;1000 USD;436;343;426;555;479;524;752;597;757;1224;2022;1893;1231;2228;1030;727;1381;4844;3837;5967;3093;1561;2089;3582;3668;2950;3853;4712;7308;10683;6439;5819;5552;4583;5504;4829;5993;5743;5434;5274;6652;7760;14524;16201;17681;18890;20899;19476;24420;27510;32956;36033;40618;46907;57470;58543;62508.52;60175;60194;87710;107439;81265;91507 -231;'840;United States of America;1630;Wood charcoal;5910;Export quantity;t;4300;3800;3800;8400;10200;14000;15200;20000;14000;17000;14000;15100;18700;18300;34300;27000;33300;28400;16300;10500;18000;14100;14100;15000;14800;13600;12600;17300;20900;18800;26000;32219;30575;30300;29000;30200;27900;27000;19000;15000;11376;12510;15388;15000;21165;19462;10000;12000;14800;13792;16184;18000;24000;22000;17000;27273;24943;19417;23807;22636;27690;17833;15860 -231;'840;United States of America;1630;Wood charcoal;5922;Export value;1000 USD;544;527;605;803;1093;1507;1639;2155;1559;1834;1503;1678;2161;2426;4881;4548;5707;5672;7003;4566;9225;5609;5609;2882;2742;2515;2793;3989;4163;6089;8966;9292;8573;7241;7256;8038;6342;6733;5711;4438;3063;3892;5344;6301;8266;9490;7072;8825;10796;10133;11477;13342;15420;15988;12075;13636;12471.34;15096;17552;20442;25960;17184;17087 -231;'840;United States of America;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85385000;87607000;86273000;79952000;81631000;77986000;82883000;85511000;82191000;75721000;65523000;48027000;53748000;55346000;58531000;61612000;64064000;64064000;64064000;60751000;60104821;61700000;57500000;60500000;61515616;51359327 -231;'840;United States of America;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1288000;1103569;1250000;1273544;1168170;1258296;2160200;1988838;1838570;1283385;988596;767755;844605;669474;259764;226638;246579;298400;396207;662464;312198;128693;135097;216402;274878;245348 -231;'840;United States of America;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72352;64384;75191;84695;78611;113543;136582;148807;162472;145910;129253;109606;116035;92369;30082;25104;26742;30021;32675;40333.54;55384;28906;30022;40080;56182;49521 -231;'840;United States of America;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9696662;10059296;8441500;6267862;4502304;3670694;4060430;4260416;3583058;4860005;6346887;5415189;5763791;6062746;6019950;5341479;5540127;7316800;6259603;6143701;6773059;5407872;4919484;5794241;4244648;4493473 -231;'840;United States of America;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;491770;465574;418343;305391;206871;169856;177191;211894;194410;265606;337096;290915;328762;327550;253679;233283;270338;302295;250690;249405.78;295902;248811;215088;241355;313984;343770 -231;'840;United States of America;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65564000;67636000;66528000;61992000;63352000;61505000;65320000;67183000;64189000;58875000;50114000;38321000;41991000;43692000;46203000;48414000;50264000;50264000;50264000;46476000;45286795;46400000;44300000;44200000;52000000;41700000 -231;'840;United States of America;1619;Wood chips and particles;5616;Import quantity;m3;;;;1128800;783500;929900;1195400;1146800;703700;881100;646000;686000;800000;651900;449500;672000;919100;939700;898600;981100;979900;814400;1086900;736700;641700;849100;615000;1100000;1406400;1240600;1157300;688348;1090000;514000;1077000;1033000;914000;738000;459000;478000;252544;212170;604434;1395200;1191435;896842;310859;142218;90240;290240;131516;89264;80166;87902;134400;234607;386508;35507;29746;12048;79920;115542;88062 -231;'840;United States of America;1619;Wood chips and particles;5622;Import value;1000 USD;;;;7714;6134;7156;9918;9571;5900;9015;12180;11763;15700;14298;14107;21517;29500;31500;30442;43599;43959;36700;51000;36000;27047;19607;19914;41616;28912;24096;24379;18050;28761;34417;39807;42390;43063;29718;17975;18221;9305;8037;19989;34565;35483;30068;11267;5388;3956;21468;4717;4568;5056;5140;5243;9245;15405.57;13987;15117;11686;17732;25772;17227 -231;'840;United States of America;1619;Wood chips and particles;5916;Export quantity;m3;;;;;170700;400400;1083500;2323800;3366800;3509900;2872200;3664200;5047200;5605000;4607000;5723000;5861000;5251000;6529800;6497900;5146900;4151400;3650600;3374900;3361100;3521100;3692400;5086500;7633000;8100000;9350200;8585000;6860000;7636000;8145000;7177000;7319000;9614000;9848000;8254000;6178862;4411304;3611304;3920000;3880000;3533466;4792974;6006400;4564800;5016343;5564080;5912500;5307590;5499305;7260800;6097315;6034364;6771931;5321819;4898906;5772528;4226598;4473306 -231;'840;United States of America;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;1909;4458;12092;26825;36346;36634;41140;57070;85627;113930;115385;153002;160000;156680;197847;377899;436832;231139;171269;164058;168814;170022;188459;286191;389134;412018;489653;476949;423288;455779;554382;559507;501529;482391;445579;397281;295883;197112;158378;160627;191797;179236;243369;286369;179874;219442;233780;232815;219846;254043;285621;237646;234944.79;295609;236810;206910;232637;306292;336638 -231;'840;United States of America;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15952000;17489000;18347000;19178000;19361000;19473000;19691000;19821000;19971000;19745000;17960000;18279000;16481000;17563000;18328000;18002000;16846000;15409000;9706000;11757000;11654000;12328000;13198000;13800000;13800000;13800000;14275000;14818026;15300000;13200000;16300000;9515616;9659327 -231;'840;United States of America;1620;Wood residues;5616;Import quantity;m3;279800;277300;252100;254300;327600;457100;478800;438600;327000;302000;294000;299000;164000;140000;246700;250000;271700;168000;93800;99200;323400;282000;437900;405700;520200;582400;628600;358300;200000;125000;185800;200000;299000;442000;498000;550000;523000;550000;644569;772000;1021000;956000;653862;765000;797403;941728;972526;846378;677515;554365;537958;170500;146472;158677;164000;161600;275956;276691;98947;123049;136482;159336;157286 -231;'840;United States of America;1620;Wood residues;5622;Import value;1000 USD;90;52;87;267;229;338;397;426;375;645;572;900;860;1429;1641;1726;1803;1836;1100;2300;7440;6500;10100;9300;11522;11500;13300;16800;21398;23400;25000;35105;30815;30497;39096;39768;39768;42634;46409;56970;75390;70574;93554;102017;113324;132404;134643;123865;105650;94567;87652;25514;20048;21602;24778;23430;24927.98;41397;13789;18336;22348;30410;32294 -231;'840;United States of America;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;168069;33000;91000;48000;47151;142424;82662;211296;187500;89000;91000;59390;140430;380416;49592;67031;340487;850389;747448;498666;107450;33889;40822;56000;162288;109337;1128;86053;20578;21713;18050;20167 -231;'840;United States of America;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7392;5310;8679;8360;9443;16330;9379;19995;21062;9508;9759;11478;16564;20097;15174;22237;50727;111041;109320;93770;20864;13437;16295;16674;13044;14461;293;12001;8178;8718;7692;7132 -231;'840;United States of America;1605;Sawdust (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;753;1048 -231;'840;United States of America;1605;Sawdust (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;214;326 -231;'840;United States of America;1605;Sawdust (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6444;7200 -231;'840;United States of America;1605;Sawdust (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3697;4133 -231;'840;United States of America;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4622;9118;9118;9118;84840;84840 -231;'840;United States of America;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;884;2202;2202;2202;25336;25336 -231;'840;United States of America;1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2380;0 -231;'840;United States of America;1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1476;0 -231;'840;United States of America;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3474000;4704000;5947000;6517000;6410900;6917900;7579945;8704297;8523943;8560184;9655584;9932287 -231;'840;United States of America;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;199750;243987;319160;316200;312547;395588;261735;369548;348408;362838;351558;333340 -231;'840;United States of America;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43952;50310;66508;70559;58175;66061.9;50908;82202;80647;88384;90562;90125 -231;'840;United States of America;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969775;2903698;4030571;4706000;4817192;5276872;6197228;6881576;7272265;7535286;9027388;9550643 -231;'840;United States of America;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;279098;384418;535694;699652;625540;681005.66;840791;955257;991553;1070184;1565655;1762605 -231;'840;United States of America;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3474000;4704000;5947000;6517000;6393000;6900000;7468361;8592713;8412359;8448600;9544000;9820703 -231;'840;United States of America;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86000;152442;219987;207000;204847;211617;221086;211615;204958;195951;194416;176872 -231;'840;United States of America;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18438;30262;44906;45782;34745;41133.93;41392;42323;42118;42997;46788;46855 -231;'840;United States of America;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1898125;2882517;4005057;4669000;4709000;5203981;6017278;6858462;7256860;7522550;9015228;9541070 -231;'840;United States of America;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;258234;370981;519399;682978;612496;666544.66;809855;942627;981593;1059261;1556111;1753489 -231;'840;United States of America;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17900;17900;111584;111584;111584;111584;111584;111584 -231;'840;United States of America;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113750;91545;99173;109200;107700;183971;40649;157933;143450;166887;157142;156468 -231;'840;United States of America;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25514;20048;21602;24777;23430;24927.98;9516;39879;38529;45387;43774;43270 -231;'840;United States of America;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71650;21181;25514;37000;108192;72891;179950;23114;15405;12736;12160;9573 -231;'840;United States of America;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20864;13437;16295;16674;13044;14461;30936;12630;9960;10923;9544;9116 -231;'840;United States of America;1872;Sawnwood;5516;Production;m3;58075246;59914458;63143814;66948941;67423500;67314908;65376400;66858996;68165400;63665496;67480300;68655500;70235200;63450800;59416900;67260000;71182000;72929500;73985008;65312512;59416000;51809900;64141200;67770800;67583700;77540116;84369508;84038008;82851508;86144700;80476708;85150200;83789900;87035900;84140100;86202200;88905900;88990911;92614685;91076000;86015300;88642700;86158800;93067180;97019600;92903360;85376960;72869280;54276000;60013400;63173800;67474000;71115000;75833300;76362000;78165000;80374000;81997600;82400000;79100000;80700000;81637000;77872000 -231;'840;United States of America;1872;Sawnwood;5616;Import quantity;m3;7430001;8550535;9229958;8898725;9111119;9114750;9065529;10688986;11009461;10623008;13139575;16333483;16633850;12662642;10267833;14209218;18425066;21001650;19859134;16985349;16392671;16063408;20989297;23377506;25705904;24997280;26125729;23823460;26229128;22489016;20108241;23034787;26384812;28321307;29939817;31152042;31758344;32679900;33770482;34390823;35226268;37416449;37889801;43992112;43504381;40109233;32168061;22135846;15419189;16575803;16423151;17409000;20512602;22241579;24449069;28329733;27418474;26440206;25272568;26229908;27716790;26998869;25026162 -231;'840;United States of America;1872;Sawnwood;5622;Import value;1000 USD;315055;336994;358005;351231;375390;386393;378559;557215;622627;486799;745643;1159139;1462256;1029542;919932;1297214;1885643;2856614;2642271;1916232;1849709;1669857;2802928;2723145;2937160;2994368;3311949;3154317;3033869;2938670;2642000;3815840;5024209;6393435;5823135;6985063;7572802;6708138;7815585;7060497;6847047;6625058;5988865;9210487;8987751;8321603;6478409;4425535;2652534;3412054;3388220;3890376;5033209;5726343;5473651;6807869;7148092.37;7187788;5794412;8011254;13732622;12221955;7406058 -231;'840;United States of America;1872;Sawnwood;5916;Export quantity;m3;1378675;1346188;1547040;1683112;1639308;1842150;2033201;2054274;2016916;2193247;2006574;2645310;3660279;3151906;3125051;3313102;3023559;3344005;3860596;4446965;4312633;3626530;4118108;3928421;3354139;4438756;5927825;8393949;7697176;8450929;7303851;6898519;6170282;5900450;5677398;5732625;6001823;4580786;5112970;5128900;4529611;4520339;4364962;4417454;4379706;4606603;4128124;3702626;3603734;4959766;5758045;5870000;6595416;6942341;6297818;6742906;7394518;7353524;6018632;5470057;6257584;6089646;5551745 -231;'840;United States of America;1872;Sawnwood;5922;Export value;1000 USD;84485;89191;105923;117716;119543;132241;135693;151423;176026;193685;169622;285916;475732;470353;413188;566115;548988;568431;1009775;1053683;925865;805026;897979;834899;753781;987212;1349145;1825394;2050572;2159057;2220074;2519347;2449338;2447133;2436560;2455178;2504010;1908132;2184182;2180578;1753576;1689928;1691108;2035727;1964004;2210369;1981850;1715075;1539771;2223839;2523139;2593957;3082030;3515677;3104316;3304076;3792073.77;3791960;2978928;2719293;3559310;3536297;2849203 -231;'840;United States of America;1632;Sawnwood, coniferous;5516;Production;m3;44000246;45086458;47284814;49779933;49801500;49039900;47892400;49784500;48181400;46801000;51066300;52657500;53696200;47096800;45469900;52020000;55590000;56950000;56610000;47940000;43180000;40437900;50534200;52995800;53245700;59964100;65152500;64821000;63826500;60844700;56373700;58694200;56009900;57981900;54796100;56552200;58933900;58947911;62342685;61144000;58780900;60912700;61189800;66427500;69186600;65548600;59768600;49415600;39576000;42163400;45481800;48746000;51051000;53803300;53793000;55627000;57600000;59343600;60000000;62400000;63400000;64000000;63500000 -231;'840;United States of America;1632;Sawnwood, coniferous;5616;Import quantity;m3;6850701;7819685;8508508;8179475;8326319;8124200;8156329;9874936;9951261;9821558;12293225;15273333;15333000;11595242;9729933;13528718;17627366;20149350;18959584;16273049;15693721;15553308;20386997;22616256;24873054;24203630;24955329;22902860;25343928;21886316;19574441;22421787;25644812;27579307;29241817;30634042;30598344;31384900;32274482;32708823;33801449;35673589;36017141;41644856;41610306;38483233;30940726;21283409;14898189;15913803;15610151;16684000;19674995;21200590;23311069;27369099;26695038;25486124;24500000;25600000;27000000;26200000;24400000 -231;'840;United States of America;1632;Sawnwood, coniferous;5622;Import value;1000 USD;273665;285171;307944;300194;318000;312000;316000;494000;545000;425000;680000;1070000;1340000;896000;834964;1200000;1770000;2690000;2460000;1770000;1700000;1570000;2650000;2560000;2770000;2840000;3060000;2930000;2870000;2780000;2500000;3610000;4800000;6110000;5540000;6660000;7171942;6309507;7374285;6567455;6385206;6156700;5499581;8278486;8266862;7611441;5831398;3847876;2360361;3042115;2987704;3532561;4585650;5213417;4916422;6296574;6630781;6695801;5290192;7587043;13200000;11500000;6933316 -231;'840;United States of America;1632;Sawnwood, coniferous;5916;Export quantity;m3;1078325;1081638;1286240;1354812;1324058;1475350;1640751;1781674;1740366;1896247;1586524;2024760;2979429;2662906;2389051;2729202;2426959;2301505;3028046;3410865;3277083;2779180;2984358;2759971;2414039;3210106;4159675;5486449;5676976;6379529;5098951;4364201;3895282;3532450;3182398;3040625;2905823;2078786;2322970;2178900;1646871;1642791;1625962;1395454;1370188;1483192;1381677;1473370;1713734;2415766;2957045;2759000;3112416;3041107;2732818;2779169;2889844;2885879;2308661;1958792;2562394;2307829;2317292 -231;'840;United States of America;1632;Sawnwood, coniferous;5922;Export value;1000 USD;63959;70023;86605;95050;95252;102931;107230;129090;150913;162877;144686;211284;423132;403441;348338;474093;442072;404689;787592;794492;665901;579824;602971;539269;498002;642724;854332;1139857;1396370;1346004;1358000;1466316;1372065;1329065;1235340;1172611;1051725;686557;817770;752444;528017;448947;405611;456155;485161;591527;559886;584196;618619;901829;1082120;1000367;1200693;1178725;1020991;1018341;1129717;1137719;923264;806376;1231043;1145137;968393 -231;'840;United States of America;1633;Sawnwood, non-coniferous;5516;Production;m3;14075000;14828000;15859000;17169008;17622000;18275008;17484000;17074496;19984000;16864496;16414000;15998000;16539000;16354000;13947000;15240000;15592000;15979500;17375008;17372512;16236000;11372000;13607000;14775000;14338000;17576016;19217008;19217008;19025008;25300000;24103008;26456000;27780000;29054000;29344000;29650000;29972000;30043000;30272000;29932000;27234400;27730000;24969000;26639680;27833000;27354760;25608360;23453680;14700000;17850000;17692000;18728000;20064000;22030000;22569000;22538000;22774000;22654000;22400000;16700000;17300000;17637000;14372000 -231;'840;United States of America;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;579300;730850;721450;719250;784800;990550;909200;814050;1058200;801450;846350;1060150;1300850;1067400;537900;680500;797700;852300;899550;712300;698950;510100;602300;761250;832850;793650;1170400;920600;885200;602700;533800;613000;740000;742000;698000;518000;1160000;1295000;1496000;1682000;1424819;1742860;1872660;2347256;1894075;1626000;1227335;852437;521000;662000;813000;725000;837607;1040989;1138000;960634;723436;954082;772568;629908;716790;798869;626162 -231;'840;United States of America;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;41390;51823;50061;51037;57390;74393;62559;63215;77627;61799;65643;89139;122256;133542;84968;97214;115643;166614;182271;146232;149709;99857;152928;163145;167160;154368;251949;224317;163869;158670;142000;205840;224209;283435;283135;325063;400860;398631;441300;493042;461841;468358;489284;932001;720889;710162;647011;577659;292173;369939;400516;357815;447559;512926;557229;511295;517311.37;491987;504220;424211;532622;721955;472742 -231;'840;United States of America;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;300350;264550;260800;328300;315250;366800;392450;272600;276550;297000;420050;620550;680850;489000;736000;583900;596600;1042500;832550;1036100;1035550;847350;1133750;1168450;940100;1228650;1768150;2907500;2020200;2071400;2204900;2534318;2275000;2368000;2495000;2692000;3096000;2502000;2790000;2950000;2882740;2877548;2739000;3022000;3009518;3123411;2746447;2229256;1890000;2544000;2801000;3111000;3483000;3901234;3565000;3963737;4504674;4467645;3709971;3511265;3695190;3781817;3234453 -231;'840;United States of America;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;20526;19168;19318;22666;24291;29310;28463;22333;25113;30808;24936;74632;52600;66912;64850;92022;106916;163742;222183;259191;259964;225202;295008;295630;255779;344488;494813;685537;654202;813053;862074;1053031;1077273;1118068;1201220;1282567;1452285;1221575;1366412;1428134;1225559;1240981;1285497;1579572;1478843;1618842;1421964;1130879;921152;1322010;1441019;1593590;1881337;2336952;2083325;2285735;2662356.77;2654241;2055664;1912917;2328267;2391160;1880810 -231;'840;United States of America;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90000;80000;80000;80000;80000;80000;300000;300000;300000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;400000;2096000;2209000;2229493;2284022;2284022;2284022;2284022 -231;'840;United States of America;1634;Veneer sheets;5616;Import quantity;m3;208500;282000;324400;383800;432800;451500;440000;517100;454100;414700;508800;696500;655600;504000;331000;441000;498000;473700;458900;368400;382200;368100;458000;417000;397400;441400;465600;492100;297900;588000;569600;531000;582000;666000;598000;546000;700000;1013000;1160000;1280000;1256000;1389000;1322000;1703512;533660;469000;362975;261998;184323;195940;215231;250000;275045;401084;318500;297055;317511;673281;615012;599874;671379;652299;593885 -231;'840;United States of America;1634;Veneer sheets;5622;Import value;1000 USD;25275;31533;37223;42430;45756;49804;43070;50928;47797;39008;47243;69448;83913;79454;51073;73397;91163;112674;117958;94592;104250;89657;138654;137521;125035;129889;158843;182409;196095;196900;169364;215907;251420;285899;232958;206700;269704;357189;403342;454772;419834;454677;436808;541633;575049;542874;476115;377147;237530;263062;265719;312139;337332;627908;335834;370881;384401.18;425478;348095;328836;484150;561053;422048 -231;'840;United States of America;1634;Veneer sheets;5916;Export quantity;m3;12800;14300;17500;31900;37500;34900;42800;68500;81500;73400;127100;109600;146800;133000;163000;268600;338700;467100;237000;294600;291300;252000;317500;302900;243200;324000;392500;404500;206300;508000;418000;456000;486000;578000;526000;486000;670000;866000;968000;1038000;969000;1094000;1082000;1216899;382612;370294;344709;279911;202305;228638;221276;147900;140251;137201;153500;220713;239800;289259;256296;215434;280652;294156;252198 -231;'840;United States of America;1634;Veneer sheets;5922;Export value;1000 USD;2814;3535;4543;7116;8989;8057;7777;11735;14704;13530;15158;22139;35726;37169;42243;46060;47192;74318;91436;122428;97590;84435;106701;93727;71817;96939;128005;160325;173581;210901;221712;237687;253301;308416;258818;259588;361631;364410;408754;448461;404796;457609;473270;532975;510155;506706;505299;414619;297031;328998;318955;317095;322165;325347;296306;315983;309810.48;338099;301825;278822;360099;393260;356515 -231;'840;United States of America;1873;Wood-based panels;5516;Production;m3;10831800;11965800;13301300;14804800;16411800;20451000;20510000;23220000;23061000;23026000;27437000;30642000;31931000;27236000;25005000;29255000;32464008;32023000;30706000;26397000;27627000;23791000;30100008;31869008;33233000;36289008;37930008;38310008;37757000;37040008;35072000;37615008;38050000;38898000;38077000;39375000;40042000;42532000;45501000;45423000;39895607;40649713;42338260;44114255;44389051;43958721;40511145;35176450;33965789;32192280;31649823;31059000;33062390;35059540;35258505;35956730;36200910;34244962;34371650;33110844;34651024;33322838;31394901 -231;'840;United States of America;1873;Wood-based panels;5616;Import quantity;m3;554400;733300;858900;1016400;1130900;1269254;1260320;1965041;2254200;2066020;2577000;3312960;2778730;1795594;1899600;2486300;2594700;3104400;2544400;1776500;2017400;1746100;2593900;2854500;3260300;3366300;3419700;3616600;3848400;3636900;2997400;3978859;4849112;5810000;6546200;8459100;9725200;10258000;12010000;12653033;13793790;15363130;16510775;19373125;20196944;19931665;14311495;8933106;7150055;7901319;8009540;8577800;8544410;9662160;11679540;13226704;14504798;15672752;14341049;15864647;18674746;18477547;14923225 -231;'840;United States of America;1873;Wood-based panels;5622;Import value;1000 USD;82426;113551;126757;142015;147435;167946;157782;238377;273272;225843;284392;375006;435813;328585;282445;415857;520686;703789;674683;490934;556213;414811;714269;628632;665770;722231;940050;905837;923254;924538;785858;1122795;1399808;1687287;1743636;1802665;1874569;2255591;3025342;2917356;2911968;3291355;4493842;6462699;6521691;6069107;4496794;3292414;2654518;2893199;2786507;3728815;4396446;4619511;5055763;5510358;5975686.86;6395644;5029605;5884862;9981376;10281079;6220951 -231;'840;United States of America;1873;Wood-based panels;5916;Export quantity;m3;29800;31200;35400;45800;48800;130946;146109;154063;281784;230761;265141;377564;625604;843862;861650;833200;527600;544800;627800;673700;1023400;664900;817600;745500;692300;1248200;1568200;2056300;2502100;2652900;2534200;2796816;2695200;2503000;2618139;2587000;2866300;1894000;1800000;1800000;1649412;1716935;1563746;1722624;1699000;1818466;1959293;2218036;1758798;2134013;2175140;2487600;2278502;2149518;1665090;2016256;1930650;1985384;1909750;1786748;2133940;2301675;1910455 -231;'840;United States of America;1873;Wood-based panels;5922;Export value;1000 USD;7655;8201;9810;11676;13811;17693;20606;21573;41602;28536;31542;56603;102306;148772;179775;195298;121513;114451;155396;161562;251552;166763;204545;142350;155801;237647;314134;426815;461514;539616;476241;630190;668585;653967;685879;636299;737155;539992;546364;559339;483646;470008;430878;484282;497065;598850;637805;714744;757203;812103;821700;881493;863387;825855;739190;718707;769360.31;715697;646395;609548;830396;915993;737099 -231;'840;United States of America;1640;Plywood and LVL;5516;Production;m3;8580000;9470000;10540000;11630000;12811000;13208000;13059000;14509000;13635000;14078000;16184000;17746000;18054000;15172000;14579000;16726000;17981008;17056000;17128000;14857000;16300000;14803000;18169008;18425008;18562000;20311008;21089008;20835008;19700000;18771008;16508000;17109008;17093000;17380000;17140000;16975000;17517000;17468000;17551000;17271000;15416700;15306960;14869770;14833485;14449395;13651125;12401505;10375740;8934075;9396930;9365070;9493000;9680210;11150700;10971600;11239000;11600000;10104241;9925234;9499533;9704858;9105606;8781735 -231;'840;United States of America;1640;Plywood and LVL;5616;Import quantity;m3;450500;598200;675100;815400;892200;1072000;1068100;1623600;1823000;1771400;2208800;2748000;2200000;1337000;1674000;2058000;1962500;2217600;1764700;1000700;1226400;946000;1436900;1271200;1521900;1645000;1719200;1771500;1790000;1493000;1338000;1648662;1630000;1547000;1769000;1866000;1868000;1964000;2494000;2385033;3009498;3890476;4248793;5900052;6181000;6392668;4397244;3059303;2646655;2550803;2631684;3113000;2829000;2872000;4253000;4876774;4934336;5465793;4663582;6460500;8085550;7798300;5856760 -231;'840;United States of America;1640;Plywood and LVL;5622;Import value;1000 USD;72602;100638;108900;123238;124909;150513;141336;217836;249540;208308;261659;337345;389830;287654;262105;380753;447201;590056;577644;394271;446639;319686;549723;422635;447304;499639;698363;663768;598610;631706;544333;687645;778206;790046;804560;773552;758612;673992;893227;855838;973818;1225345;1389395;2071329;2180368;2558944;2050965;1600978;1268812;1390074;1357239;1906178;2071985;2314088;2681464;2775275;2916762.08;3264654;2464641;2656694;4066342;4348054;2658359 -231;'840;United States of America;1640;Plywood and LVL;5916;Export quantity;m3;10200;11300;11300;18300;22200;34800;56200;48400;130600;114700;107000;155400;307500;399000;514000;482600;215000;199100;259000;247500;437400;290800;362700;240300;215100;598000;757000;980800;1381500;1562700;1374200;1618012;1562000;1346000;1395000;1384000;1596000;833000;712000;673000;530325;522562;511724;525000;503000;491504;443063;506105;529400;871100;837100;913500;887842;827748;643000;697456;936180;699581;556047;528490;758930;768089;584357 -231;'840;United States of America;1640;Plywood and LVL;5922;Export value;1000 USD;2830;3111;3550;4512;5628;7831;11369;11714;28151;16700;16316;37098;73005;101239;141404;149790;75843;75431;108695;108163;178291;116717;145671;74480;85683;149577;195723;253901;292045;337467;294568;382694;412165;362233;377108;340737;418143;236112;214313;208928;161808;158589;156167;166042;165759;187449;192587;230173;243207;395291;391363;431288;410038;384842;345773;344041;414681.66;330751;244135;221287;363164;360662;267701 -231;'840;United States of America;1607;Laminated Veneer Lumber (LVL);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2030316;1775465 -231;'840;United States of America;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;158556;147536 -231;'840;United States of America;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;135709;137913 -231;'840;United States of America;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63525;40453 -231;'840;United States of America;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34429;27394 -231;'840;United States of America;1646;Particle board and OSB (1961-1994);5516;Production;m3;578000;724000;858000;1120000;1477000;2012000;2157000;2650000;3163000;3127000;4365000;5526000;6352000;5476000;4190000;5310000;7140000;7797000;6391000;5534000;5489000;4901000;6559000;7799000;8384000;9640000;10357000;11023000;11377000;11831000;12179000;13707000;14351000;14664000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -231;'840;United States of America;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;3500;1800;1600;2500;6600;1600;3200;6000;31800;11600;33200;42000;34700;30100;70200;214900;275100;393500;450600;538200;517900;517300;720200;1126100;1228100;1131400;1235700;1348900;1667800;1680000;1337400;2026629;2856112;3557000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -231;'840;United States of America;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;288;124;115;212;830;176;137;142;1533;555;1439;1894;1677;1008;3231;10790;38315;47719;52768;59186;60099;53318;86083;131772;141702;136640;152711;155355;239229;211484;185525;359971;531618;756726;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -231;'840;United States of America;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;200;900;3400;12900;29600;21000;42300;95500;162300;240000;179000;169600;133000;165000;178200;226600;248300;145800;167800;192300;210700;305100;402700;572800;590000;650000;700000;574081;508200;457000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -231;'840;United States of America;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;85;199;861;1031;2208;1599;3182;6273;10967;17614;12973;13405;12504;15496;19588;25815;34943;19561;22724;26198;24169;34366;53878;81106;67173;89668;72199;103645;99220;93023;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -231;'840;United States of America;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5516000;6731000;6668000;8128000;10695984;9256000;7559670;7065800;7145490;7554360;7235760;7414530;6271110;5161320;5338320;5485385;5519010;3665000;4129410;4129410;4301100;4129410;4129410;4165128;3942000;3853000;4732000;4488066;3988000 -231;'840;United States of America;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1220000;1252000;1238000;1428000;1416000;1532000;1374993;1480359;1523169;1501387;1374000;1274851;1032807;797460;658199;767775;747657;554000;591000;974000;1036000;1253000;1238000;1333000;1429000;1462129;1461890;1192213;947727 -231;'840;United States of America;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;255468;167542;159325;267134;248397;258558;235905;228889;239981;276729;259798;221620;229098;204170;162177;188071;181322;217650;251436;288600;289012;320849;333456.58;310040;341594;300552;332588;379929;315913 -231;'840;United States of America;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;424799;437000;581000;524000;442000;470000;488694;507542;444738;398000;353000;351609;366957;354343;244000;96763;87050;264000;289000;326726;144910;340800;275137;314543;379736;362600;487650;482532;429408 -231;'840;United States of America;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78723;83821;121636;118673;117493;131714;130405;114663;99988;95481;83843;119278;118794;107247;75731;81298;82972;94392;99462;115678;110351;96808;89867.16;96950;120062;120972;175373;211027;182488 -231;'840;United States of America;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8913000;9254000;9595000;9936000;10277016;11906000;11090820;11882000;13615000;14271000;14985000;14960000;14763000;13003000;10773990;9114615;9180990;9770000;11055420;11512080;11755455;12320970;12930000;13389165;13858000;13700000;13800000;13592000;12962000 -231;'840;United States of America;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3050000;4666000;5752000;5752000;6513000;6754000;7167007;7496675;8045080;8724112;9342000;8972000;5999193;3190540;2412901;2464225;2565343;2965000;3460000;3982000;4484000;5067000;5569000;5667000;5419000;5065671;6128380;6197740;5716445 -231;'840;United States of America;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;573400;713898;736256;1034638;1479519;1272102;1016776;1076832;1990227;2879462;2703723;1946848;1025996;578476;417543;610075;529326;771766;1101780;936228;947725;1235911;1451865.7;1630201;1068600;1718108;4065184;3222718;1867558 -231;'840;United States of America;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72340;148000;89000;89000;160000;159000;147836;173155;139484;171000;150000;158239;234043;398657;133100;241140;293920;231000;275000;275274;235470;310620;164484;191947;189193;205300;146100;159859;152487 -231;'840;United States of America;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15990;27380;20737;29368;48001;43899;38635;41031;36519;43050;36426;48838;70341;115123;42681;72328;79842;75785;89834;78879;64063;64685;55071.98;67499;62471;70080;58742;73685;69161 -231;'840;United States of America;1874;Fibreboard;5516;Production;m3;1673800;1771800;1903300;2054800;2123800;5231000;5294000;6061000;6263000;5821000;6888000;7370000;7525000;6588000;6236000;7219000;7343000;7170000;7187000;6006000;5838000;4087000;5372000;5645000;6287000;6338000;6484000;6452000;6680000;6438000;6385000;6799000;6606000;6854000;6508000;6415000;6262000;7000000;6977000;6990000;5828417;6394953;6708000;7455410;7718896;7933066;7075530;6636390;8919404;8195350;7584753;8131000;8197350;8267350;8230350;8267350;7541500;6586428;6646416;6058311;6414166;6137166;5663166 -231;'840;United States of America;1874;Fibreboard;5616;Import quantity;m3;100400;133300;182200;198500;232100;195654;189020;335441;399400;283020;335000;522960;544030;428494;155400;213400;357100;493300;329100;237600;273100;282800;436800;457200;510300;589900;464800;496200;390600;463900;322000;303568;363000;706000;507200;675100;867200;1114000;1587000;1982000;2242292;2495620;2693733;3247574;3299944;3292146;2882251;1885803;1432300;2118516;2064856;1945800;1664410;1834160;1906540;2029930;2763462;3206959;2829467;2876347;2998926;3289294;2402293 -231;'840;United States of America;1874;Fibreboard;5622;Import value;1000 USD;9536;12789;17742;18565;21696;17257;16309;20399;22199;16980;21294;35767;44306;39923;17109;24314;35170;66014;44271;37477;49475;41807;78463;74225;76764;85952;88976;86714;85415;81348;56000;75179;89984;140515;110208;147673;220376;279827;404199;530858;685469;760289;874239;1235179;1377802;1341695;1190735;908790;805986;704979;718620;833221;971245;1080595;1137562;1178323;1273602.5;1190749;1154770;1209508;1517262;2330378;1379121 -231;'840;United States of America;1874;Fibreboard;5916;Export quantity;m3;19600;19900;24100;27500;26400;95246;86509;92763;121584;95061;115841;126664;155804;204862;168650;181000;179600;180700;190600;199600;337700;228300;287100;312900;266500;345100;408500;502700;530600;440200;460000;604723;625000;700000;726000;618000;600300;448000;486000;498000;482557;513676;467800;628624;693000;817114;915230;958931;852298;925010;957070;1079100;826660;719770;641710;667380;554849;779313;784774;690358;741260;891195;744203 -231;'840;United States of America;1874;Fibreboard;5922;Export value;1000 USD;4825;5090;6260;7164;8098;9663;8376;8828;11243;10237;12044;13232;18334;29919;25398;32103;33166;23524;27113;27584;38318;30485;36150;41672;45949;53704;64533;91808;102296;112481;109474;143851;157200;198711;214058;184361;176639;155839;166557;174798;152798;155725;138204;179709;211037;243285;256083;262201;395584;263186;267523;280028;264053;246456;219003;213173;209739.51;220497;219727;197209;233117;270619;217749 -231;'840;United States of America;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1454000;1558000;1328000;1269000;1225000;1238000;980017;861053;1264370;1144480;1282296;1282296;977000;860000;728233;802000;124000;377000;377000;390000;390000;390000;343700;316000;282255;211738;211738;211738;211738 -231;'840;United States of America;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;273200;349100;385200;263000;339000;296000;678000;1005571;1062159;1236000;1412000;1440990;1182919;708763;320800;329741;205743;191000;210000;172000;209000;248000;231249;270169;199113;238380;243120;249311;173079 -231;'840;United States of America;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70396;98714;116650;63333;69850;76946;283193;437115;515923;730257;851649;800528;572163;341180;255336;117829;102771;82137;90519;61946;78382;107922;153074.1;130315;98277;121838;141339;180781;107401 -231;'840;United States of America;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;406000;419000;390300;155000;159000;152000;232326;197433;191044;296000;317000;388756;358474;331981;293000;271287;235318;242000;218000;166000;127000;133000;116972;198442;213278;238963;255020;224460;98589 -231;'840;United States of America;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;127945;133206;125071;41430;40896;40668;76171;69271;59868;84473;96267;114514;104711;90347;83951;83883;76287;76576;68286;53366;39790;40847;62829.39;59800;62323;71743;94419;85729;36862 -231;'840;United States of America;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1959000;2057000;2402000;2480000;2501000;2501000;2513400;2778900;2688630;3555930;3681600;3895770;3343530;3021390;3314821;2517000;2584403;2878000;2944000;3001000;2964000;3001000;2987800;3091000;3184733;2667145;3023000;2746000;2272000 -231;'840;United States of America;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109000;206000;373000;694000;1052000;1448000;1231000;1169000;1320878;1704664;1509944;1408207;1140332;821040;939500;1616775;1638953;1450000;1261770;1424800;1515220;1568650;2317612;2638636;2419098;2453395;2552000;2879312;2108484 -231;'840;United States of America;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24288;33729;88758;187512;296867;409501;347524;269704;299217;435932;426589;418518;442776;450241;490817;527317;550814;666659;821921;920618;991472;1014312;1072220.79;998538;1008708;1051826;1333312;2098500;1235139 -231;'840;United States of America;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;210000;114000;128000;171000;204000;242000;140440;164200;170884;210624;252000;306977;352756;451950;423298;517723;542872;585900;364420;330170;294550;358940;320126;450716;423852;284470;315310;372319;412971 -231;'840;United States of America;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58451;31725;33754;59855;76637;97707;40048;46837;48964;62792;76871;89823;97548;127424;276800;144470;153421;158886;145177;139147;128660;135149;122126.51;127579;119565;82362;90901;104243;118488 -231;'840;United States of America;1650;Other fibreboard;5516;Production;m3;983400;979800;1033300;1102200;1132200;4191000;4268000;4837000;4906000;4424000;5247000;5548000;5614000;4699000;4532000;5204000;5207000;5142000;5160000;3390000;3100000;1704000;2128000;2457000;3099000;3178000;3247000;3228000;3429000;3157000;3156000;3266000;3003000;3076000;3095000;2800000;2532000;3251000;3251000;3251000;2335000;2755000;2755000;2755000;2755000;2755000;2755000;2755000;4876350;4876350;4876350;4876000;4876350;4876350;4876350;4876350;4210000;3179428;3179428;3179428;3179428;3179428;3179428 -231;'840;United States of America;1650;Other fibreboard;5616;Import quantity;m3;5600;3500;5700;11800;11800;11800;11800;128000;188800;135600;124400;186000;217600;220000;54400;68800;156000;209900;78700;73300;92200;137200;154800;200200;279500;337600;219300;309400;176500;264300;72000;93024;98000;113000;125000;120000;109000;157000;196000;238000;333292;321049;310696;306910;378000;442949;559000;356000;172000;172000;220160;304800;192640;237360;182320;213280;214601;298154;211256;184572;203806;160671;120730 -231;'840;United States of America;1650;Other fibreboard;5622;Import value;1000 USD;563;338;712;1147;1147;1147;1147;2899;4199;3980;3640;6767;9306;8923;2751;3500;5283;11407;4664;4764;7380;10899;18722;21138;24773;29853;26111;37787;29771;25216;12000;14736;10158;13299;15524;15230;14968;28982;37482;44411;54752;53470;59099;68990;99564;122649;175796;117369;59833;59833;65035;84425;58805;98031;67708;56089;48307.61;61896;47785;35844;42611;51097;36581 -231;'840;United States of America;1650;Other fibreboard;5916;Export quantity;m3;14400;14300;17100;17600;14200;84400;76400;79600;106000;70000;89200;93600;114000;148000;116000;118000;123000;156300;160000;172000;283300;183600;229400;251900;209900;291200;329000;407500;404000;276900;278000;136122;140000;127000;110000;85000;82000;122000;123000;104000;109791;152043;105872;122000;124000;121381;204000;175000;136000;136000;178880;251200;244240;223600;220160;175440;117751;130155;147644;166925;170930;294416;232643 -231;'840;United States of America;1650;Other fibreboard;5922;Export value;1000 USD;3555;3741;4455;4694;4183;6609;5543;5651;7807;4640;6493;6313;8798;13889;10398;11690;11816;14984;15890;16879;20414;16565;18191;22096;21426;30198;29384;42795;62572;68210;60000;32619;32466;32436;27662;19430;17814;54554;49024;36423;36579;39617;29372;32444;37899;38948;53824;44430;34833;34833;37815;44566;50590;53943;50553;37177;24783.62;33118;37839;43104;47797;80647;62399 -231;'840;United States of America;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;690400;792000;870000;952600;991600;1040000;1026000;1224000;1357000;1397000;1641000;1822000;1911000;1889000;1704000;2015000;2136000;2028000;2027000;2616000;2738000;2383000;3244000;3188000;3188000;3160000;3237000;3224000;3251000;3281000;3229000;3533000;3603000;3778000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -231;'840;United States of America;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;94800;129800;176500;186700;220300;183854;177220;207441;210600;147420;210600;336960;326430;208494;101000;144600;201100;283400;250400;164300;180900;145600;282000;257000;230800;252300;245500;186800;214100;199600;250000;210544;265000;593000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -231;'840;United States of America;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;8973;12451;17030;17418;20549;16110;15162;17500;18000;13000;17654;29000;35000;31000;14358;20814;29887;54607;39607;32713;42095;30908;59741;53087;51991;56099;62865;48927;55644;56132;44000;60443;79826;127216;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -231;'840;United States of America;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;5200;5600;7000;9900;12200;10846;10109;13163;15584;25061;26641;33064;41804;56862;52650;63000;56600;24400;30600;27600;54400;44700;57700;61000;56600;53900;79500;95200;126600;163300;182000;468601;485000;573000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -231;'840;United States of America;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;1270;1349;1805;2470;3915;3054;2833;3177;3436;5597;5551;6919;9536;16030;15000;20413;21350;8540;11223;10705;17904;13920;17959;19576;24523;23506;35149;49013;39724;44271;49474;111232;124734;166275;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -231;'840;United States of America;1879;Total fibre furnish;5510;Production;t;30479200;31509800;32892300;34866100;36256300;39798900;39842000;43735300;45268000;47644000;48062000;51303000;54001000;54536000;47740000;53668000;55747000;57563000;58642000;61872008;62688016;59717008;63693008;68031008;66484000;71085016;74494016;77767016;80238008;82792008;86092008;88692016;89680000;100932000;98409000;97768000;99700000;99869046;98712000;100547803;94237541;94510563;95575709;97893497;99222083;99676155;102741472;99354753;93878272;97110039;98429622;95966830;93659219;95525078;95713587;96392150;95977466;99973107;95640806;92091130;93598000;92739859;88171582 -231;'840;United States of America;1879;Total fibre furnish;5610;Import quantity;t;281100;297800;307400;315500;329500;303000;268400;2924100;3383800;3003800;2974400;3270700;3560200;3616000;2727500;3305600;3425500;3542700;3811900;3514900;3553200;3214700;3686400;4088900;4029300;4098200;4496400;4471100;4539300;4452800;4497200;4580515;4963592;5309000;5790000;5523000;6405000;5880000;6424000;6805000;6937054;6952454;6453822;6601636;6622344;6723339;6858188;6223439;4794922;6122779;6241846;5877473;6164112;6379924;5944671;6306864;6180000;6201312;5713817;6103153;6702440;7539732;6462078 -231;'840;United States of America;1879;Total fibre furnish;5622;Import value;1000 USD;22655;22800;22401;24143;26262;25378;25194;381144;449915;441244;440215;462363;632705;1044996;1002585;1147777;1131192;1094733;1409158;1591828;1673486;1424956;1440189;1829035;1507078;1542714;2027106;2526983;2971650;2865479;2179639;2182486;1963272;2404993;3907542;2711057;2691222;2387217;2556009;3321744;2588517;2346374;2567670;2870579;2987760;3110401;3635390;3828643;2317850;3690449;3672126;3053671;3191722;3453875;3242183;2868370;2999727;3569157;3244726;2744087;3780559;4687782;3659518 -231;'840;United States of America;1879;Total fibre furnish;5910;Export quantity;t;3500;3000;4700;1000;52500;54100;39100;1161300;1267000;2525600;1676000;1751600;2101100;3149000;2592933;2853400;3131800;3154400;4076100;5245600;4737400;4600200;6177000;6216985;7437900;7318400;7907900;11941100;10613000;12113200;11121400;11859819;10791778;12561700;13354000;11896000;12743000;12482000;12976000;15479000;15060004;15820136;17725023;18271129;20090017;21884431;24389547;25064900;25791394;26431970;29374540;27428200;26276817;26250007;26626584;26859609;25440000;26082432;23507495;21572341;23217060;22731226;20102979 -231;'840;United States of America;1879;Total fibre furnish;5922;Export value;1000 USD;470;489;678;255;12177;14156;11667;148457;167232;337666;230024;241775;331671;746762;734902;712384;736194;695602;1080313;1650084;1590086;1391298;1403847;1651556;1465339;1794320;2509338;3201092;3803546;3542983;3038294;3400966;2589993;3046565;4867825;3481188;3389061;2982638;3205314;4206201;3405642;3543374;3813051;4215252;4734068;5393057;6602630;7359856;6216910;8273158;9181064;8208412;7936168;8020165;7694725;7502074;7921367;8444351;7495375;6821964;8543167;9571092;7981936 -231;'840;United States of America;1878;Pulp for paper;5510;Production;t;22075200;23105800;24965300;26939100;28329300;30678900;30993000;34335300;35868000;36341000;36467000;38953000;40336000;40416000;36015000;39680000;40917000;42463000;44562000;45569008;46631016;44295008;46819008;49607008;48296000;51056008;53178016;54590008;55285000;56397000;57893000;58213008;57226000;64732000;59909000;58468000;59600000;58766535;57609000;57177803;53025144;52913583;52541714;53816954;54164336;53074122;54980637;52243853;48390972;50250939;50459622;49519530;48184100;49103770;48503940;48765200;48350516;52186107;50940806;49891130;48598000;47911859;47020582 -231;'840;United States of America;1878;Pulp for paper;5610;Import quantity;t;281100;297800;307400;315500;329500;303000;268400;2924100;3383800;2935800;2903400;3176700;3460200;3535000;2662500;3208600;3342500;3479500;3740800;3436500;3482000;3147300;3541700;3942000;3892500;3925500;4322900;4254400;4382900;4250300;4386600;4440944;4836702;5072000;5338000;5094000;5712000;5416000;6037000;6550000;6639675;6579238;6091551;6095897;6127589;6285031;6134272;5574027;4494906;5411779;5330281;4885473;5353112;5599924;5232671;5500864;5283000;5457694;5200566;5491664;5824380;6712184;5761256 -231;'840;United States of America;1878;Pulp for paper;5622;Import value;1000 USD;22655;22800;22401;24143;26262;25378;25194;381144;449915;436627;434851;455256;623662;1035196;994685;1135846;1120900;1086841;1397169;1573452;1659109;1415386;1413251;1801163;1479435;1513654;1988721;2475937;2937055;2837842;2156091;2152662;1939205;2367528;3815658;2655906;2614422;2326929;2495630;3230594;2541045;2291651;2516439;2801899;2920034;3049979;3534794;3717422;2271631;3565388;3501392;2900785;3068478;3340671;3142416;2757948;2847405;3428418;3162501;2663306;3645863;4549600;3554275 -231;'840;United States of America;1878;Pulp for paper;5910;Export quantity;t;3500;3000;4700;1000;52500;54100;39100;1161300;1267000;2061600;1296000;1374600;1481100;1894000;1811500;1698400;1759800;1703400;2050100;2828600;2730400;2582200;2782100;2752700;2939800;3510600;3899500;4413600;5060400;4783800;5155100;5995943;5439036;5576000;6871000;6116000;5936000;5133000;5211000;5583000;5506573;5477121;5113620;5449849;5569483;5976135;6290860;6836900;6728575;7617970;8324490;7284200;7382817;7126007;7040584;7106609;7151000;7057630;7007495;7172341;6917060;7159568;6637782 -231;'840;United States of America;1878;Pulp for paper;5922;Export value;1000 USD;470;489;678;255;12177;14156;11667;148457;167232;313857;208351;221137;284632;599556;658506;596230;603533;549718;824205;1327889;1321560;1152365;1094930;1242740;1116082;1383244;1956375;2512834;3068176;2764383;2325862;2757437;2054900;2487510;4122800;2782076;2641662;2229508;2351995;3023041;2519444;2466204;2445963;2713331;3018911;3311028;3829834;4352267;3639635;5003377;5419042;4823618;4780820;4872812;4639252;4371712;4745643;5152037;4797200;4367530;5240544;6301868;5470585 -231;'840;United States of America;1875;Wood pulp;5510;Production;t;22759300;23835200;25709100;27760900;29153800;31534200;31766600;35308500;36828000;37318000;37405000;39866000;41221000;41379000;36808000;40307000;41618000;43145000;45318000;46187008;47200016;44786008;47660008;50398008;49061000;51927008;54058016;55530008;56225000;57217000;58896000;59281008;58333000;65788000;60866000;59312000;60365000;59523535;58362000;57830911;53680144;53568583;53196714;54471954;54819336;53729122;55635637;52898853;49045972;50905939;51114622;50200530;49055100;50106640;49368210;49534430;49247516;53233456;52046820;50859116;49718000;49017673;47981531 -231;'840;United States of America;1875;Wood pulp;5610;Import quantity;t;458700;547000;544400;563800;567200;552900;492600;3175500;3643900;3166600;3163400;3358100;3592700;3691000;2770100;3359600;3462900;3608800;3880800;3652400;3685500;3295700;3706300;4043700;3982600;4106200;4407400;4359300;4630400;4439000;4532600;4564975;4914602;5126000;5417000;5164000;5805000;5479000;6071530;6596000;6666427;6574830;6069924;6190103;6225201;6346385;6198607;5710231;4597488;5591374;5549875;5199473;5545112;5755924;5351465;5588864;5377000;5564687;5299721;5661107;6036280;6951418;5989140 -231;'840;United States of America;1875;Wood pulp;5622;Import value;1000 USD;53033;66106;64922;70087;72298;71955;68292;429281;498674;480022;482059;491018;654947;1087536;1037051;1190827;1169303;1135108;1452468;1673405;1753467;1484974;1485257;1844779;1517089;1581443;2031881;2552182;3121036;2968060;2243242;2220212;1990799;2406357;3879220;2720866;2670395;2363588;2518645;3274775;2569334;2294183;2527263;2852612;2979715;3111412;3614020;3865227;2386130;3731815;3837432;3257812;3366110;3555403;3308381;2889295;2984023;3574312;3317631;2851243;3858758;4804317;3789295 -231;'840;United States of America;1875;Wood pulp;5910;Export quantity;t;398000;438400;480200;528000;490700;520000;560100;1737800;1907500;2808200;1973600;2044700;2126300;2544000;2391200;2298000;2415000;2310300;2624400;3391500;3321800;3060000;3275300;3215400;3414800;4012900;4415900;5015400;5667400;5359500;5747700;6615487;5917052;6101000;7494000;6532000;6328000;5466000;5499000;5816000;5594418;5673323;5304566;5643849;5817483;6198347;6473556;7076900;7043373;7884442;8842322;7912200;8079817;7875409;7755236;7798609;7975000;7834958;7850167;7806435;7620910;7917021;7224076 -231;'840;United States of America;1875;Wood pulp;5922;Export value;1000 USD;75349;78766;85592;94235;88769;96645;106275;254961;281462;463952;350858;357956;420360;820752;896516;848751;880275;806572;1092702;1628666;1655689;1407655;1350732;1483491;1343466;1649892;2250495;2904521;3520714;3151679;2713015;3148001;2380775;2832935;4536623;3208807;2995813;2537853;2600503;3256021;2631600;2612230;2595450;2868360;3197866;3494741;3962829;4607857;4030289;5365916;6098258;5691881;5711108;5805635;5469825;5161436;5566651;5956738;5596710;4940922;6054395;7243693;6185342 -231;'840;United States of America;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5505217;5623750;5546740;4592683;4046000;3943485;3825685 -231;'840;United States of America;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79000;159558;124572;123030;137040;207341;96822 -231;'840;United States of America;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26493;57566;52311;45796;47577;123673;50801 -231;'840;United States of America;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;152000;192037;88288;126041;210540;237088;132159 -231;'840;United States of America;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73517;103321;43685;57952;124222;141236;62950 -231;'840;United States of America;1654;Mechanical wood pulp (1961-2016);5510;Production;t;2820000;2878000;3010000;3076000;3069000;3167000;3266000;3571000;3778000;3719000;3776000;3917000;4271000;4274000;4197000;4173000;4445000;4264000;4030000;4169000;4826000;4625000;4597000;4998000;4772000;5030000;5184000;5391000;5469000;5772000;5810000;5898000;5586000;5884000;5593000;5369000;5401000;5290674;5109000;5146432;4501441;4244760;4118687;4144990;4172200;3960869;4241132;4029075;3729149;3805101;3805101;3600000;3385000;3047000;2747156;2713165;;;;;;; -231;'840;United States of America;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;281100;297800;307400;315500;313800;281700;246300;223100;252900;161800;162700;179100;159000;163000;131300;142000;140500;146600;147400;134700;143900;130900;167600;233600;101100;47100;84000;206800;173300;141200;126600;108041;146658;200000;168000;101000;95000;88000;117000;101000;126382;165763;141200;108428;92000;113023;87273;62000;37461;39370;33000;33000;39000;38000;31964;27664;;;;;;; -231;'840;United States of America;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;22655;22800;22401;24143;24489;22857;22539;17691;17872;11571;12209;12968;14253;24578;22801;23823;26897;29377;35601;33849;37422;32861;43669;70362;28690;13011;29096;75150;69204;61602;59767;46537;50995;79289;62320;32295;27291;27963;35941;36204;38781;46238;42848;35809;31597;44805;39054;31003;14192;20215;16997;16503;15843;15351;13525;10657;;;;;;; -231;'840;United States of America;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;3500;3000;4700;1000;5600;9200;9000;11100;7300;11300;7900;3400;4900;16000;42500;67000;73700;9000;25700;12400;7200;5000;5700;4400;1900;21600;5200;18000;32600;29100;30700;71000;69000;67000;133000;133000;104000;57000;124000;143000;115402;98524;100304;130000;93000;31810;54892;117000;241514;116737;99000;34000;29000;59000;87781;98388;;;;;;; -231;'840;United States of America;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;470;489;678;255;491;791;734;1030;611;1323;881;299;477;1804;14184;21647;19595;2117;7123;2851;2530;1492;1594;1476;430;2323;1322;3439;9789;8779;10310;20000;23058;21036;42024;31725;42917;19669;38027;48967;41098;35168;33365;33972;29593;12932;25950;66538;118590;65814;43493;13827;12256;28895;40665;40725;;;;;;; -231;'840;United States of America;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;2133700;2307000;2385000;2460300;2605500;2810500;2889400;3167000;3284000;2991000;3151000;3435000;3505000;3409000;2904000;3244000;3238000;3582000;4226000;3661000;3572000;3356000;3494000;3720000;3682000;3749000;3852000;3953000;3958000;3828000;3714000;3721000;3640000;4099000;3609000;3497000;3668000;3606948;3643000;3587897;3198989;3224385;2994914;3202617;3462019;3140034;3515532;3339755;3092770;3154619;3311457;3614490;3614000;3403000;3327014;3270266;;;;;;; -231;'840;United States of America;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;153800;172200;163500;175379;245053;227000;200000;234000;299000;258000;296000;336000;280092;221792;216248;225261;288000;158901;164849;216000;278681;401025;342000;271000;239000;245000;168942;82332;;;;;;; -231;'840;United States of America;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69926;78409;57000;62446;81132;80049;101585;101016;118856;91366;100280;144369;105936;81627;84335;89982;109560;71046;83492;122237;128861;214282;185022;132788;110432;93883;76004;29576;;;;;;; -231;'840;United States of America;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;18700;28100;32700;13400;15000;50003;25000;24000;54000;181000;183000;212000;191000;223000;190159;161629;239822;382000;276000;173505;113169;257000;234081;483718;438000;446000;278000;213000;171615;21430;;;;;;; -231;'840;United States of America;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;9112;17395;10429;5327;5000;20528;7297;10358;21061;62159;41359;65006;69153;81410;85623;79692;114843;172375;133946;84838;56690;130036;117086;249104;220212;245864;161025;122208;90595;11807;;;;;;; -231;'840;United States of America;1656;Chemical wood pulp;5510;Production;t;16721500;17500800;19070300;20902800;22134800;24171400;24297600;27047300;28246000;29061000;28960000;31011000;31960000;32133000;28271000;31581000;32664000;34015000;35702000;36989008;37563016;35814008;38425008;40586008;39539000;42007008;43832016;44946008;45505000;46444000;48129000;48407008;47830000;54512000;50467000;49351000;50292000;49621913;48612000;48198474;45079714;45199438;45183113;46224347;46285117;45728219;46978973;44630023;41324053;43046219;43098064;42060040;40940100;42334000;42110000;42461999;42525299;46394152;45248066;45149100;44444000;43872374;43104374 -231;'840;United States of America;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;2672200;3109300;2753700;2715200;2973900;3271300;3323000;2509100;3044600;3158400;3291000;3558200;3279300;3316100;2995600;3364200;3664000;3722700;3828000;4144300;3927100;4045600;3924200;4085700;4147944;4437550;4629000;4950000;4737000;5310000;5065000;5619000;6108000;6224398;6161395;5693739;5716477;5709589;5971677;5828077;5243027;4145335;4944311;4926320;4566473;5064112;5304924;5009365;5368868;5180000;5273068;5040971;5355537;5652340;6460949;5633354 -231;'840;United States of America;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;360406;429409;422337;418945;439157;605454;1000227;964333;1105113;1086418;1045110;1348874;1529354;1610866;1374260;1365547;1708221;1426386;1480707;1922150;2347445;2789242;2687996;2031571;2035883;1802172;2198229;3639053;2509487;2461487;2201964;2353388;3044805;2388900;2150579;2372479;2650850;2760162;2917148;3385716;3527637;2109204;3308376;3269000;2738605;2932975;3220625;3038991;2701891;2796968;3347890;3086642;2594749;3574714;4394903;3478636 -231;'840;United States of America;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;1118000;1225600;2008300;1248800;1321400;1453500;1813000;1718000;1568000;1619300;1614100;1905200;2681500;2603500;2482300;2683100;2671300;2840600;3346200;3710800;4184600;4843300;4607900;5002400;5760241;5231843;5388000;6572000;5697000;5526000;4735000;4731000;5027000;4945766;5042592;4634278;4814849;5059483;5638536;5991493;6341900;6154276;6894694;7619311;6697200;6993817;6748409;6696762;6907791;6899000;6766667;6833735;6961120;6619890;6834831;6433035 -231;'840;United States of America;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;136974;155835;299738;195217;206975;264799;559285;611241;538176;544135;499614;742503;1232431;1233835;1078547;1023531;1177720;1043850;1308421;1854864;2380077;2928674;2633463;2212513;2617995;1940963;2371414;3948749;2586406;2436360;2019314;2098844;2731759;2220612;2214671;2182812;2396002;2715745;3069790;3593252;3994052;3293614;4536561;4940228;4398451;4485699;4588152;4394894;4202249;4533659;4911364;4641468;4199025;5023298;6042766;5315349 -231;'840;United States of America;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;9483000;9854900;11433500;12626400;13055500;14104200;14230400;15817100;16485000;16639000;16398000;16141000;16479000;16179000;13942000;16133000;16734000;16954000;17894000;18090000;18371008;16484000;17813008;18815008;18330000;18702000;19473008;19669008;19638000;20024000;20010000;20165008;19482000;23346000;21375000;20902000;21118000;19305698;19389000;19232216;17986806;18034576;18028062;18443515;18467762;18245559;18744610;17807379;16488297;17175442;17150109;16470000;16370000;19494000;19588000;19751737;20448285;21987892;22100000;23200000;23900000;23772000;23357000 -231;'840;United States of America;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;273700;310200;277000;266400;324400;334000;310000;154300;225600;221900;181300;152400;130200;150200;120300;184300;179200;165700;151200;240900;150800;78700;85500;101700;66646;103020;157400;127000;136000;206000;178000;160000;159000;259531;345690;236537;162945;103000;135271;211988;150800;71034;82150;82087;215000;216000;199714;244853;286000;319000;299571;169228;123221;143560;164209;137825 -231;'840;United States of America;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;31091;35491;35563;34935;37991;56817;83033;58404;77682;65907;53460;49689;53437;65266;48428;66407;69827;59965;55437;62095;82899;47280;46930;47548;30598;35415;78599;81699;67528;87113;68602;53281;65016;65333;76105;67622;57041;43701;52655;99597;77236;34138;54299;61098;128680;119230;85134;81001;82846;91824;99685;80448;67444;98497;103456;73977 -231;'840;United States of America;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;134500;115000;229900;136500;70100;65000;142000;90000;103000;104000;68500;94400;102500;91800;89900;87000;82400;86400;130800;140600;157900;166600;172200;165500;148812;129488;151000;324000;190000;184000;92000;156000;143000;171570;104721;51060;105000;177000;206754;240202;140000;234976;250756;306065;242800;220024;267605;217538;192000;181000;190488;264833;316720;362130;256992;212487 -231;'840;United States of America;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;12813;11845;29218;16729;7952;10175;39526;23797;21432;21571;15010;30212;40035;35085;29625;23231;28116;23557;39775;58976;81959;64947;67414;61307;53177;38080;52985;111679;59660;58149;27688;49804;43615;48746;32231;17605;37382;63151;78079;98756;81145;83822;117336;151796;117945;115268;154174;115591;95719;101440;141740;148293;154536;234367;167322;126240 -231;'840;United States of America;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;4903400;5318900;5196400;5840600;6644300;7574200;7742100;9022100;9688000;10295000;10600000;12899000;13500000;13950000;12559000;13603000;14116000;15467000;16215000;17227008;17495008;17891008;19146000;20222000;19700000;21883008;23053008;23862000;24450000;25004000;26748000;26792000;26886000;29704000;27724000;27111000;27665000;29009802;27927000;27905764;26101154;26170475;26161022;26763897;26799083;26476639;27200825;25840784;23926627;24923761;24887001;24432000;23412000;22613000;22304000;22490440;21860415;24159324;22900000;21700000;20300000;19902000;19549000 -231;'840;United States of America;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;1891000;2264200;2014500;2078300;2268900;2481700;2494000;2029100;2423000;2474000;2670200;2868600;2762000;2764500;2576400;2902700;3069500;3171900;3239300;3442100;3436100;3596900;3548800;3705200;3845569;4066321;4232600;4590000;4342000;4875000;4652000;5196000;5647000;5714701;5565926;5188248;5309296;5349000;5585551;5410793;4870000;3924699;4636815;4626353;4136000;4632000;4874000;4553132;4857000;4595000;4701168;4593877;4957226;5042720;5595191;5149011 -231;'840;United States of America;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;258258;317445;317057;327203;344679;464150;756429;792154;897621;869974;850051;1092942;1297965;1347905;1180459;1174252;1445283;1205513;1256971;1656164;2068474;2491582;2445325;1825940;1880540;1636841;2000700;3397933;2315260;2274520;2027078;2194258;2819888;2212204;1980911;2193259;2474685;2581953;2732592;3161739;3300588;1990813;3091230;3078672;2481246;2688432;3007980;2859957;2515816;2600580;3143240;2892343;2410392;3316872;4054675;3200174 -231;'840;United States of America;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;769400;870600;1421200;919000;1044800;1117000;1389000;1377000;1288000;1332000;1354700;1577800;2263200;2253800;2195700;2329500;2340500;2507200;2903400;3197000;3643600;4267500;4066100;4502000;5127755;4659678;4790700;5609000;5011000;4995000;4374000;4380000;4691000;4639034;4613264;4310964;4457000;4716000;5315300;5559400;6078700;5760300;6527378;7195864;6377800;6714000;6426000;6436700;6666000;6671000;6533160;6531492;6593114;6217770;6542382;6192725 -231;'840;United States of America;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;97755;113202;217290;148306;166467;205122;432440;494888;454184;462192;421450;617323;1038198;1076514;955871;890306;1038549;927077;1157815;1631784;2114500;2632051;2355113;1978361;2336275;1723481;2108450;3494442;2331520;2238750;1881282;1969414;2601890;2115593;2066838;2068645;2264671;2585828;2927283;3373592;3831721;3116911;4347936;4714562;4235939;4339594;4405274;4257098;4082270;4409138;4748827;4475938;4021838;4767898;5858078;5175804 -231;'840;United States of America;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;216599;246936;248066;249100;244000;198374;198374 -231;'840;United States of America;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;266000;272329;277866;275090;466060;701549;346518 -231;'840;United States of America;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104564;104965;113851;116913;159345;236772;204485 -231;'840;United States of America;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47000;43019;37410;51286;39990;35457;27823 -231;'840;United States of America;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23081;20797;17237;22651;21033;17366;13305 -231;'840;United States of America;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;514400;461800;462700;437300;424600;415500;367400;352000;355000;375000;321000;313000;339000;367000;324000;395000;367000;298000;355000;349000;354000;313000;281000;297000;289000;159000;155000;177000;173000;152000;154000;155000;163000;157000;144000;141000;302000;294000;300000;155128;144706;145090;145038;148380;148575;146788;150803;143262;132650;138178;154803;168970;169000;0;0;0;;;;;;; -231;'840;United States of America;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;92100;108300;108300;91000;87200;133200;110000;54500;69000;51000;61200;101200;99100;81800;44800;46300;56500;100600;119500;141500;46400;37700;26500;23200;15427;7460;4600;13000;18000;9000;1000;15000;21000;234;5411;8359;2857;1589;216;227;227;43;42;53;473;843;4450;367;0;;;;;;; -231;'840;United States of America;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;10655;13099;13969;12332;11480;23413;31070;16943;19393;14737;16874;34441;39127;35506;19573;18397;25266;34724;38809;45657;20751;22110;14716;10146;5810;2895;1605;5136;8787;2742;226;3515;5809;60;2011;1405;1497;769;83;44;11;16;7;14;278;495;2317;136;0;;;;;;; -231;'840;United States of America;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;7700;12500;31300;9100;1700;5500;22000;28000;11000;7500;18200;34400;23500;11200;7000;11300;9400;20200;24000;34900;27400;32300;16800;15200;15896;15638;27800;52000;49000;34000;48000;62000;56000;23223;53696;164170;143849;38483;14225;25847;15200;8000;12730;12837;18000;17721;15901;13195;23395;;;;;;; -231;'840;United States of America;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;834;1361;4145;1168;204;937;6405;8423;3606;2068;4183;10272;8114;3771;1936;3736;3258;5343;6721;7182;4234;8257;5997;5025;6573;6260;9418;13016;11335;7983;11749;14509;13712;5903;13126;45629;42563;11052;4899;9437;10564;3032;4690;5134;7423;5625;5546;4446;8702;;;;;;; -231;'840;United States of America;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;1820700;1865200;1977700;1998500;2010400;2077500;1957700;1856100;1718000;1752000;1641000;1658000;1642000;1637000;1446000;1450000;1447000;1296000;1238000;1323000;1343000;1126000;1185000;1252000;1220000;1263000;1151000;1238000;1244000;1264000;1217000;1295000;1299000;1305000;1224000;1197000;1207000;1012413;996000;905366;847048;849297;848991;868555;869697;859233;882735;838598;776479;808838;906151;989070;989100;227000;218000;219822;;;;;;; -231;'840;United States of America;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;415400;426600;353900;279500;293400;322400;409000;271200;327000;411500;378300;436000;288000;319600;254100;230900;358800;284500;318000;319800;293800;332300;263400;255600;220302;260749;234400;220000;241000;220000;234000;248000;281000;249932;244368;260595;241379;256000;250639;205069;222000;149559;225304;217827;215000;215269;226760;211013;225868;;;;;;; -231;'840;United States of America;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;60402;63374;55748;44475;45007;61074;129695;96832;110417;135800;124725;171802;138825;162189;125800;106491;167845;126184;129490;158234;175321;228270;181025;147937;118935;127021;117325;154285;117912;97112;106058;102334;154092;111303;91552;110193;117627;133739;131818;124336;149802;84237;162840;129216;128401;124818;125194;97897;103229;;;;;;; -231;'840;United States of America;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;206400;227500;325900;184200;204800;266000;260000;223000;166000;175800;172700;198600;292300;246700;189700;255300;239000;226800;288000;338300;355700;376900;352800;319700;467778;427039;418500;587000;447000;313000;221000;133000;137000;111939;270911;108084;109000;128000;102257;166044;108000;151000;103830;104545;58600;42072;38903;29329;26396;;;;;;; -231;'840;United States of America;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;25572;29427;49085;29014;32352;48565;80914;84133;58954;58304;58971;84696;146084;118465;91115;106258;107797;87873;104110;156922;179384;223419;204939;167820;221970;173142;200561;329612;183891;131478;98595;65117;72542;50370;102476;50933;51386;55714;59529;111467;70622;89849;66599;68736;37144;25212;23158;17759;15558;;;;;;; -231;'840;United States of America;1667;Dissolving wood pulp;5510;Production;t;1084100;1149400;1243800;1321800;1344500;1385300;1313600;1523200;1520000;1547000;1518000;1503000;1485000;1563000;1436000;1309000;1271000;1284000;1360000;1368000;1239000;991000;1144000;1094000;1068000;1141000;1190000;1240000;1293000;1173000;1243000;1255000;1277000;1293000;1197000;1095000;1004000;1004000;998000;898108;900000;900000;900000;900000;900000;900000;900000;900000;900000;900000;900000;926000;1116000;1322640;1184040;1089000;1217000;1215554;1252014;1117333;1228000;1201814;1051472 -231;'840;United States of America;1667;Dissolving wood pulp;5610;Import quantity;t;177600;249200;237000;248300;253400;271200;246300;280200;281700;251100;285500;205100;162400;205000;129700;173000;164000;171200;175200;238400;225500;169200;174500;146100;158800;231100;179100;225400;257700;201400;156800;133611;85341;70000;99000;92000;101000;68000;39530;51000;35555;25880;18737;139937;135612;102784;118408;189204;136011;206668;248555;329000;203000;168000;141194;110000;118000;132061;134178;182540;246900;283128;258964 -231;'840;United States of America;1667;Dissolving wood pulp;5622;Import value;1000 USD;30378;43306;42521;45944;47809;49098;45753;51184;51393;46114;50905;38893;35240;62731;49917;61891;55988;60621;67993;110202;105179;77853;76041;66196;62013;87725;80635;129587;192664;140053;94904;75346;56500;48790;76262;78068;62761;42295;29036;49397;35717;15739;27601;75971;78396;78413;105758;184350;133873;188942;366413;369916;306860;225544;179861;147171;160562;168856;178678;210698;236467;285741;259858 -231;'840;United States of America;1667;Dissolving wood pulp;5910;Export quantity;t;394500;435400;475500;527000;485100;510800;551100;608700;674600;788600;716900;719900;667900;715000;630700;663000;722000;687200;693500;697600;711100;572700;586500;539700;572300;645100;681200;784700;758800;709100;699600;734243;591209;622000;735000;521000;515000;462000;453000;423000;343091;370578;330162;317000;389000;354496;314002;361000;413502;389293;686011;735000;779000;855000;799078;771000;924000;876254;928144;719274;790480;845102;658882 -231;'840;United States of America;1667;Dissolving wood pulp;5922;Export value;1000 USD;74879;78277;84914;93980;88278;95854;105541;116957;125016;162891;154760;150682;155084;259663;271091;288928;316545;304841;343076;393384;419324;327616;325607;304295;299186;339148;385197;503610;571822;504110;485192;489478;409457;430127;524789;528517;475177;433864;394479;393885;284267;282699;264430;266011;318582;327181;286937;417231;500999;514437;894325;1033739;1052128;1066380;943671;906655;959475;942053;911557;683945;906875;1059691;807043 -231;'840;United States of America;1668;Pulp from fibres other than wood;5510;Production;t;400000;420000;500000;500000;520000;530000;540000;550000;560000;570000;580000;590000;600000;600000;643000;682000;570000;602000;604000;750000;670000;500000;303000;303000;303000;270000;310000;300000;353000;353000;240000;187000;170000;237000;240000;251000;239000;247000;245000;245000;245000;245000;245000;245000;245000;245000;245000;245000;245000;245000;245000;245000;245000;319770;319770;319770;320000;168205;146000;149347;108000;96000;90523 -231;'840;United States of America;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;15700;21300;22100;28800;21600;20300;25500;23700;29900;49000;22100;22000;43600;41900;35200;22500;22000;20800;9900;44400;68700;50400;94600;120500;10200;12700;10800;9580;7441;16000;20000;22000;8000;5000;5000;5000;8803;30288;40364;45731;38000;41430;54073;53000;33429;27073;28961;15000;11000;12000;22400;22000;24000;25068;35023;13097;35000;43894;31080 -231;'840;United States of America;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;1773;2521;2655;3047;2634;2719;3697;3131;3955;10391;7551;6910;7585;12354;12694;10249;10821;8265;4035;22580;24359;19936;37475;53342;8683;9835;7753;7796;4906;9961;12700;13108;6788;5636;6021;5216;7428;13207;16777;25258;18715;16980;26532;36545;19374;22515;30373;12889;9228;10812;13896;15824;23944;22962;23548;22761;23572;31024;24838 -231;'840;United States of America;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;46900;44900;30100;32200;34100;42000;39300;49800;22700;65000;51000;63400;66800;80300;119200;134700;119700;94900;93300;77000;97300;142800;164800;182900;151800;133400;107000;114699;113193;97000;112000;105000;123000;129000;165000;190000;255246;174376;139216;123000;141000;132284;131306;121000;98704;122821;168179;107000;82000;105598;84426;79000;100000;98926;85472;85180;86630;87649;72588 -231;'840;United States of America;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;11686;13365;10933;10453;10786;12796;12253;13863;19356;38467;33081;36407;39803;47987;74579;92607;85195;72326;69805;63544;71802;72500;91077;111923;119284;116814;98039;98914;83582;84702;110966;101786;121026;125519;145971;160905;172111;136673;114943;110982;139627;143468;153942;161641;110345;151898;215109;165476;121840;133557;113098;116931;138467;137352;112047;110553;93024;117866;92286 -231;'840;United States of America;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44000;34000;27000;19156;3868;3631;3071;1818;1643;7720;13000;1136;9739;19522;14000;9000;5000;1660;1000;1000;1652;1253;4664;9000;4500;1000 -231;'840;United States of America;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13491;11848;9775;6602;1019;1291;1302;1132;1004;1466;1380;585;1527;2823;2220;1411;964;474;642;428;557;633;2355;4023;2364;401 -231;'840;United States of America;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46000;36000;53000;18306;21798;45322;39000;40000;29508;28452;28000;75010;101350;67877;111000;113000;108570;91360;51000;53000;44112;267563;329142;429130;509104;195906 -231;'840;United States of America;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18479;16295;31643;8885;10341;19004;15961;18731;15972;14096;16992;33227;61806;42216;78030;86138;82586;65938;33858;35409;26814;111188;131386;226990;272854;74833 -231;'840;United States of America;1669;Recovered paper;5510;Production;t;8404000;8404000;7927000;7927000;7927000;9120000;8849000;9400000;9400000;11303000;11595000;12350000;13665000;14120000;11725000;13988000;14830000;15100000;14080000;16303000;16057000;15422000;16874000;18424000;18188000;20029008;21316000;23177008;24953008;26395008;28199008;30479008;32454000;36200000;38500000;39300000;40100000;41102511;41103000;43370000;41212397;41596980;43033995;44076543;45057747;46602033;47760835;47110900;45487300;46859100;47970000;46447300;45475119;46421308;47209647;47626950;47626950;47787000;44700000;42200000;45000000;44828000;41151000 -231;'840;United States of America;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;68000;71000;94000;100000;81000;65000;97000;83000;63200;71100;78400;71200;67400;144700;146900;136800;172700;173500;216700;156400;202500;110600;139571;126890;237000;452000;429000;693000;464000;387000;255000;297379;373216;362271;505739;494755;438308;723916;649412;300016;711000;911565;992000;811000;780000;712000;806000;897000;743618;513251;611489;878060;827548;700822 -231;'840;United States of America;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;4617;5364;7107;9043;9800;7900;11931;10292;7892;11989;18376;14377;9570;26938;27872;27643;29060;38385;51046;34595;27637;23548;29824;24067;37465;91884;55151;76800;60288;60379;91150;47472;54723;51231;68680;67726;60422;100596;111221;46219;125061;170734;152886;123244;113204;99767;110422;152322;140739;82225;80781;134696;138182;105243 -231;'840;United States of America;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;464000;380000;377000;620000;1255000;781433;1155000;1372000;1451000;2026000;2417000;2007000;2018000;3394900;3464285;4498100;3807800;4008400;7527500;5552600;7329400;5966300;5863876;5352742;6985700;6483000;5780000;6807000;7349000;7765000;9896000;9553431;10343015;12611403;12821280;14520534;15908296;18098687;18228000;19062819;18814000;21050050;20144000;18894000;19124000;19586000;19753000;18289000;19024802;16500000;14400000;16300000;15571658;13465197 -231;'840;United States of America;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;23809;21673;20638;47039;147206;76396;116154;132661;145884;256108;322195;268526;238933;308917;408816;349257;411076;552963;688258;735370;778600;712432;643529;535093;559055;745025;699112;747399;753130;853319;1183160;886198;1077170;1367088;1501921;1715157;2082029;2772796;3007589;2577275;3269781;3762022;3384794;3155348;3147353;3055473;3130362;3175724;3292314;2698175;2454434;3302623;3269224;2511351 -231;'840;United States of America;1876;Paper and paperboard;5510;Production;t;30757696;32292700;33687004;35778200;37866504;40705196;40504596;44117196;46814008;45805008;46954008;50757000;52971000;52540008;45248008;51757008;53347000;55154000;57410008;56839000;57667008;54899000;58804000;62366000;60959008;64444008;67532008;69587000;69514016;71965000;72724008;75160016;77250008;80945000;85526000;84046000;88511000;86469000;88670000;86252263;81248828;81879072;80712166;82084368;83697335;84316937;83915965;80178382;71355455;75772845;76430822;74492000;71732298;73093000;72397000;71902239;72044539;70891067;68138836;66229000;67505880;65507164;60674376 -231;'840;United States of America;1876;Paper and paperboard;5610;Import quantity;t;5097200;5135300;5063600;5569600;5921500;6622300;6249800;6095200;6467400;6370800;6713800;6953400;7341800;7387400;5775400;6562800;6851600;8074900;7923500;8053800;7394600;7207700;8009700;9842900;10433600;10993400;11808200;11852500;11829600;11685300;10600900;10866519;11352000;12443000;12910000;13076000;14381000;14542100;15731000;16278887;15524479;15940837;16638541;17513176;16756359;16523764;14963857;13280319;10242860;9938080;9180107;9228800;9766754;10023000;9510454;9262578;9171427;9463421;8723968;7641894;8222967;8723109;6836201 -231;'840;United States of America;1876;Paper and paperboard;5622;Import value;1000 USD;718463;730249;720293;792488;833329;950676;923540;925789;1012885;1022460;1083437;1162624;1338716;1706695;1613910;2013097;2279547;2773299;3153597;3313973;3346918;4338482;3734478;5066782;5426956;5621240;6466418;7405361;7827806;7821890;6925597;7090437;7485724;7661896;10478368;11501611;11514183;10073220;10418513;11706545;11239709;10367746;10692412;11927701;12479787;13087941;12080190;11948347;8906596;8873378;8846135;9183867;9472285;9719445;9134719;8116862;8002047;8841721;8439774;7050589;8031344;10620981;8680948 -231;'840;United States of America;1876;Paper and paperboard;5910;Export quantity;t;959200;922400;1054000;1365500;1541000;1658500;1775400;2223800;2340400;2424200;2704000;2655100;2543300;3165900;2563200;2872800;2647500;1635700;2840400;4186200;3591300;3298600;3504700;3385700;3221300;3795600;4117200;4591400;5046400;5388100;6372400;6980905;6825297;7532000;8536000;10172000;9937000;9127000;8637000;9139000;8356122;8225392;8348718;9032856;9609997;9644467;10971611;10130115;9100715;10299543;11338983;12119700;12121920;12066250;11608793;11063075;11606705;11533851;10569283;10313873;10076865;10161286;9191838 -231;'840;United States of America;1876;Paper and paperboard;5922;Export value;1000 USD;212174;214751;239510;287784;317444;358283;374210;447353;481215;514906;564732;577759;717409;1199329;1100742;1252434;1121609;1104708;1340141;2016959;2013112;1714085;1719220;1813021;1559267;1898948;2218908;2864344;3156758;3509644;4056083;4351801;4237075;4757620;6595398;7006963;6702938;6573804;6068671;6871758;6183792;5944452;6093038;6682923;7297611;7771047;8888063;8635061;8137640;8511763;8869854;9994825;10190635;10090297;9523781;8941150;9920424;10433327;9169646;8264513;9137947;10366275;8466734 -231;'840;United States of America;2042;Graphic papers;5510;Production;t;8356200;8796200;9217100;9697100;10270400;11291000;11434300;12340700;12948000;12827000;13039000;14135000;15245000;15128000;13056000;15094000;15811000;16351000;17277000;18067000;18711000;18472000;20092000;21377000;21391000;22736000;23896000;25015000;24842008;26093000;26078000;26705008;27930008;29657000;29393000;28856000;30875000;29228000;29734000;29659263;26685607;26165792;25430976;26506892;25942627;25829228;25952606;24030291;19245220;21523000;19927116;19013000;17938577;17284000;16185000;15890388;14741341;12970932;11634648;8513000;8296040;8177366;6482743 -231;'840;United States of America;2042;Graphic papers;5610;Import quantity;t;4992400;5010600;4955800;5476600;5835800;6476600;6153400;6000100;6373900;6278500;6566800;6735000;7058500;7147400;5636400;6401800;6609600;7651000;7494500;7441800;7069400;6834200;7479000;9165000;9758500;10088600;10748800;10758300;9847600;9561500;9458700;9538519;9953000;10669000;10961000;10312000;11270000;11690000;12389000;12931511;12395633;12753174;13644909;14129494;13486490;13119336;11828875;10377700;7830308;7597939;7218813;6798800;7040754;7108000;6514054;6111679;5785670;5946644;5383171;4210439;4608900;5056232;3459430 -231;'840;United States of America;2042;Graphic papers;5622;Import value;1000 USD;693499;703843;697665;766054;806903;913621;894177;892069;981574;985721;1043866;1105611;1249311;1580715;1530500;1899341;2123712;2540176;2863147;2976613;3145186;4136675;3431223;4494823;4812679;4852223;5509883;6364219;6011781;5914337;6054000;5929081;6423010;6391850;8803402;7683326;7422230;7931714;7905049;8905449;8782283;7777154;8083619;8843395;9312252;9678392;8671187;8500116;6123741;5825000;5918000;5973516;5960405;5940232;5309293;4452156;4095967;4594737;4451903;3209192;3635105;5271281;3828184 -231;'840;United States of America;2042;Graphic papers;5910;Export quantity;t;239900;172400;183200;199400;176200;195100;180400;247800;267400;295200;334000;324100;326300;495900;510200;501800;425500;292400;284200;437500;554200;477700;434800;449500;456900;515300;517500;622600;845500;881600;1520000;1920417;1942297;2101000;2274000;2528000;2479000;2042000;2043000;2217000;2137796;1894032;1896653;2064120;2228228;2163529;2801723;3009464;2589313;3065361;3016373;3129000;3125470;2663521;2283046;1971057;2006551;1642930;1550608;1199560;1283099;1154446;1001234 -231;'840;United States of America;2042;Graphic papers;5922;Export value;1000 USD;50811;43206;43542;50244;38207;61933;75064;94558;109822;122849;141558;144542;186024;313008;347211;379143;313644;266480;209971;280403;425025;333327;396220;401487;302687;451545;411223;567210;664348;682145;1294000;1382495;1476665;1743560;2072323;2263038;2206433;1814527;1830980;2093231;1950432;1690334;1737431;1881618;2086295;2132458;2642754;2936064;2422617;2852000;2925000;3043143;2890786;2509556;2115228;1767190;1840925;1651694;1499398;1143001;1288914;1351098;1137076 -231;'840;United States of America;1671;Newsprint;5510;Production;t;1863400;1909700;2007600;2040300;1977700;2129200;2357800;2681700;3050000;3143000;3153000;3317000;3391000;3231000;3348000;3389000;3512000;3418000;3685000;4238000;4753000;4574000;4687000;5029000;4923000;5108000;5300000;5427000;5523000;6001000;6206000;6424000;6419000;6334000;6351000;6303000;6544000;6577000;6513000;6667773;5770572;5248036;5148246;5096537;4891515;4740015;4464233;4193893;2991880;3111000;2963757;2874000;2470251;1921000;1658000;1485000;1194713;958895;840053;440000;370000;328401;294835 -231;'840;United States of America;1671;Newsprint;5610;Import quantity;t;4956300;4969200;4910400;5401900;5735900;6342100;5986400;5862400;6159800;6019300;6242100;6441600;6722300;6712000;5305000;5959000;5950000;6787000;6552000;6593600;6329600;5924000;6277100;7161100;7685700;7790600;8142800;7794200;7953900;7529300;6796700;6659519;7062000;7150000;7083000;6304000;6502000;6521000;6796000;6839294;6187740;6262649;6344577;5861776;5375339;4922379;4140551;3611518;2407622;2311943;2278384;2077000;2116000;2230000;1975461;1843000;1721000;1525511;1277444;1045698;1064720;1012448;762248 -231;'840;United States of America;1671;Newsprint;5622;Import value;1000 USD;686521;695751;687756;752531;789604;889592;863795;862675;938626;929626;988042;1056144;1184785;1484156;1456915;1779063;1913894;2140814;2379109;2637857;2824777;3748652;2817193;3369904;3720143;3682352;4116485;4461983;4650760;4459338;3979000;3767268;3774150;3517530;4550683;4063348;3580370;3765750;3517372;3788840;3597193;3039066;2991386;2975013;3073973;3073805;2383557;2364820;1441660;1377000;1464000;1344160;1290446;1316438;1130112;979315;907290;876975;745358;510639;557210;657884;519918 -231;'840;United States of America;1671;Newsprint;5910;Export quantity;t;165100;99300;107200;106600;76400;90200;81300;117200;115500;130300;150500;131400;88400;170700;149800;114800;116700;74800;64800;158600;245300;279100;267500;277800;285200;355800;308200;387600;623400;526600;674000;928492;925297;862000;1013000;1013000;967000;781000;704000;777000;695820;661747;609699;559314;654315;585365;696364;902657;541558;766567;843677;735000;799000;566000;464615;301000;293000;189822;211815;68756;119900;67075;79637 -231;'840;United States of America;1671;Newsprint;5922;Export value;1000 USD;23024;14576;14771;14534;10921;13050;11356;17090;15849;18677;20666;20385;16840;53093;51621;41237;42545;29947;32046;86403;139702;142964;127119;113964;131379;194549;210093;295474;392559;317598;388000;468125;496543;480180;591022;651858;522343;460318;423341;491714;409096;330236;324579;322466;382538;354666;410283;605369;316630;440000;535000;456377;461298;334307;253111;154643;149768;114535;120003;37064;68813;44024;48944 -231;'840;United States of America;1674;Printing and writing papers;5510;Production;t;6492800;6886500;7209500;7656800;8292700;9161800;9076500;9659000;9898000;9684000;9886000;10818000;11854000;11897000;9708000;11705000;12299000;12933000;13592000;13829000;13958000;13898000;15405000;16348000;16468000;17628000;18596000;19588000;19319008;20092000;19872000;20281008;21511008;23323000;23042000;22553000;24331000;22651000;23221000;22991490;20915035;20917756;20282730;21410355;21051112;21089213;21488373;19836398;16253340;18412000;16963359;16139000;15468326;15363000;14527000;14405388;13546628;12012037;10794595;8073000;7926040;7848965;6187908 -231;'840;United States of America;1674;Printing and writing papers;5610;Import quantity;t;36100;41400;45400;74700;99900;134500;167000;137700;214100;259200;324700;293400;336200;435400;331400;442800;659600;864000;942500;848200;739800;910200;1201900;2003900;2072800;2298000;2606000;2964100;1893700;2032200;2662000;2879000;2891000;3519000;3878000;4008000;4768000;5169000;5593000;6092217;6207893;6490525;7300332;8267718;8111151;8196957;7688324;6766182;5422686;5285996;4940429;4721800;4924754;4878000;4538593;4268679;4064670;4421133;4105727;3164741;3544180;4043784;2697182 -231;'840;United States of America;1674;Printing and writing papers;5622;Import value;1000 USD;6978;8092;9909;13523;17299;24029;30382;29394;42948;56095;55824;49467;64526;96559;73585;120278;209818;399362;484038;338756;320409;388023;614030;1124919;1092536;1169871;1393398;1902236;1361021;1454999;2075000;2161813;2648860;2874320;4252719;3619978;3841860;4165964;4387677;5116609;5185090;4738088;5092233;5868382;6238279;6604587;6287630;6135296;4682081;4448000;4454000;4629356;4669959;4623794;4179181;3472841;3188677;3717762;3706545;2698553;3077895;4613397;3308266 -231;'840;United States of America;1674;Printing and writing papers;5910;Export quantity;t;74800;73100;76000;92800;99800;104900;99100;130600;151900;164900;183500;192700;237900;325200;360400;387000;308800;217600;219400;278900;308900;198600;167300;171700;171700;159500;209300;235000;222100;355000;846000;991925;1017000;1239000;1261000;1515000;1512000;1261000;1339000;1440000;1441976;1232285;1286954;1504806;1573913;1578164;2105359;2106807;2047755;2298794;2172696;2394000;2326470;2097521;1818431;1670057;1713551;1453108;1338793;1130804;1163199;1087371;921597 -231;'840;United States of America;1674;Printing and writing papers;5922;Export value;1000 USD;27787;28630;28771;35710;27286;48883;63708;77468;93973;104172;120892;124157;169184;259915;295590;337906;271099;236533;177925;194000;285323;190363;269101;287523;171308;256996;201130;271736;271789;364547;906000;914370;980122;1263380;1481301;1611180;1684090;1354209;1407639;1601517;1541336;1360098;1412852;1559152;1703757;1777792;2232471;2330695;2105987;2412000;2390000;2586766;2429488;2175249;1862117;1612547;1691157;1537159;1379395;1105937;1220101;1307074;1088132 -231;'840;United States of America;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1871000;1771000;1661954;1379821;1513176;1275495;1504104;1686448;1732714;1897821;1992167;1593915;1816000;1768094;1466000;1405222;1494000;1360000;1348615;1054412;808302;680389;420000;394600;365855;566083 -231;'840;United States of America;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2332000;2534000;2782728;2937909;3163555;3353545;3851256;3835018;3854488;3862846;3586703;3002903;2743675;2507855;2119800;2301754;2162000;1832412;1715919;1620036;1618091;1341528;1069575;1194624;1201866;848899 -231;'840;United States of America;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1690332;1818358;1971429;2169133;2037829;1998550;2384673;2643045;2778956;2824659;2931873;2396196;2029000;2006000;1786296;1885229;1742671;1366347;1015501;949758;1060560;980611;716875;787757;1026818;802357 -231;'840;United States of America;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;147000;139000;203000;189714;198300;212074;212107;159625;182807;220666;251234;225064;305720;255825;248000;274470;232521;233072;190863;185653;94206;77346;53789;58559;60298;59990 -231;'840;United States of America;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;130171;118981;172297;144834;190551;213256;203670;147483;174308;209920;258193;214996;293000;246000;236383;237629;197489;182964;147092;146975;86703;74270;54341;62303;69518;69199 -231;'840;United States of America;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12342000;12759000;12607000;11474920;11274433;11168293;11389645;10900675;10948755;10827193;9972630;8301000;9005000;8444031;8177000;7898816;7895000;7836000;7770401;7505511;6698654;6056367;4789000;4774510;4775422;4183030 -231;'840;United States of America;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1165000;1294000;1272535;1336645;1101365;1324210;1402745;1387712;1164109;1020637;988954;844437;945094;916070;954000;1027000;1231000;1092938;977202;842186;902328;1019171;859325;986477;1151036;762512 -231;'840;United States of America;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;913977;1011952;1263477;1286115;898384;1034873;1103747;1125188;1022909;963243;1019692;838699;973000;974000;1117895;1128007;1322717;1178091;999978;855081;937539;1106582;874273;1011189;1417442;1014298 -231;'840;United States of America;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;557000;600000;634000;543778;351443;375856;528037;676064;673598;806757;804000;792463;857285;892665;919000;933000;851000;671658;617262;671763;573646;487852;361636;330741;283945;238007 -231;'840;United States of America;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;700828;734569;840949;730295;497096;497674;609715;803732;855450;1009783;1019128;939174;1074000;1138000;1026867;998980;931313;751426;686124;730290;680723;584688;420771;423467;444064;359584 -231;'840;United States of America;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8438000;8691000;8722536;8060294;8130147;7838942;8516606;8463989;8407744;8763359;7871601;6358425;7591000;6751234;6496000;6164288;5974000;5331000;5286372;4986705;4505081;4057839;2864000;2756930;2707688;1438795 -231;'840;United States of America;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1672000;1765000;2036954;1933339;2225605;2622577;3013717;2888421;3178360;2804841;2190525;1575346;1597227;1516504;1648000;1596000;1485000;1613243;1575558;1602448;1900714;1745028;1235841;1363079;1690882;1085771 -231;'840;United States of America;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1561655;1557367;1881703;1729842;1801875;2058810;2379962;2470046;2802722;2499728;2183731;1447186;1446000;1474000;1725165;1656723;1558406;1634743;1457362;1383838;1719663;1619352;1107405;1278949;2169137;1491611 -231;'840;United States of America;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;557000;600000;603000;708484;682542;699024;764662;738224;721759;1077936;1051573;1030228;1135789;1024206;1227000;1119000;1014000;913701;861932;856135;785256;773595;715379;773899;743128;623600 -231;'840;United States of America;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;523210;554089;588271;666207;672451;701922;745767;752542;748034;1012768;1053374;951817;1045000;1006000;1323516;1192879;1046447;927727;779331;813892;769733;720437;630825;734331;793492;659349 -231;'840;United States of America;1675;Other paper and paperboard;5510;Production;t;22401496;23496500;24469904;26081100;27596104;29414196;29070296;31776496;33866008;32978008;33915008;36622000;37726000;37412008;32192008;36663008;37536000;38803000;40133008;38772000;38956008;36427000;38712000;40989000;39568008;41708008;43636008;44572000;44672008;45872000;46646008;48455008;49320000;51288000;56133000;55190000;57636000;57241000;58936000;56593000;54563221;55713280;55281190;55577476;57754708;58487709;57963359;56148091;52110235;54249845;56503706;55479000;53793721;55809000;56212000;56011851;57303198;57920135;56504188;57716000;59209840;57329798;54191633 -231;'840;United States of America;1675;Other paper and paperboard;5610;Import quantity;t;104800;124700;107800;93000;85700;145700;96400;95100;93500;92300;147000;218400;283300;240000;139000;161000;242000;423900;429000;612000;325200;373500;530700;677900;675100;904800;1059400;1094200;1982000;2123800;1142200;1328000;1399000;1774000;1949000;2764000;3111000;2852100;3342000;3347376;3128846;3187663;2993632;3383682;3269869;3404428;3134982;2902619;2412552;2340141;1961294;2430000;2726000;2915000;2996400;3150899;3385757;3516777;3340797;3431455;3614067;3666877;3376771 -231;'840;United States of America;1675;Other paper and paperboard;5622;Import value;1000 USD;24964;26406;22628;26434;26426;37055;29363;33720;31311;36739;39571;57013;89405;125980;83410;113756;155835;233123;290450;337360;201732;201807;303255;571959;614277;769017;956535;1041142;1816025;1907553;871597;1161356;1062714;1270046;1674966;3818285;4091953;2141506;2513464;2801096;2457426;2590592;2608793;3084306;3167535;3409549;3409003;3448231;2782855;3048378;2928135;3210351;3511880;3779213;3825426;3664706;3906080;4246984;3987871;3841397;4396239;5349700;4852764 -231;'840;United States of America;1675;Other paper and paperboard;5910;Export quantity;t;719300;750000;870800;1166100;1364800;1463400;1595000;1976000;2073000;2129000;2370000;2331000;2217000;2670000;2053000;2371000;2222000;1343300;2556200;3748700;3037100;2820900;3069900;2936200;2764400;3280300;3599700;3968800;4200900;4506500;4852400;5060488;4883000;5431000;6262000;7644000;7458000;7085000;6594000;6922000;6218326;6331360;6452065;6968736;7381769;7480938;8169888;7120651;6511402;7234182;8322610;8990700;8996450;9402729;9325747;9092018;9600154;9890921;9018675;9114313;8793766;9006840;8190604 -231;'840;United States of America;1675;Other paper and paperboard;5922;Export value;1000 USD;161363;171545;195968;237540;279237;296350;299146;352795;371393;392057;423174;433217;531385;886321;753531;873291;807965;838228;1130170;1736556;1588087;1380758;1323000;1411534;1256580;1447403;1807685;2297134;2492410;2827499;2762083;2969306;2760410;3014060;4523075;4743925;4496505;4759277;4237691;4778527;4233360;4254118;4355607;4801305;5211316;5638589;6245309;5698997;5715023;5659763;5944854;6951682;7299849;7580741;7408553;7173960;8079499;8781633;7670248;7121512;7849033;9015177;7329658 -231;'840;United States of America;1676;Household and sanitary papers;5510;Production;t;2097500;2187300;2334200;2488400;2619100;2811400;2913900;3081800;3276000;3373000;3477000;3608000;3664000;3707000;3610000;3795000;3888000;3824000;4101000;3969000;4098000;4026000;4342000;4464000;4482000;4624000;4808000;4968000;5113000;5264000;5143000;5247000;5450000;5530000;5632000;5681000;5831000;5974000;6212000;6270000;6371125;6465472;6435535;6450957;6721297;6805664;6665959;6561633;6600642;6631000;6613342;6563000;6849209;6731000;6824000;6878300;6937314;6949944;7002561;7281000;6928170;6958109;7056992 -231;'840;United States of America;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109600;119000;63200;60000;75000;97000;100000;125000;170000;160100;212000;160622;191389;228010;223042;259136;284922;253757;234279;281149;234279;295000;323000;293000;298000;299000;340446;386509;373832;411786;382495;416677;274593;321745;349952 -231;'840;United States of America;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113151;122613;65597;55000;64699;81330;107178;119657;150591;136462;189171;165455;184633;218585;215627;228808;269158;255219;254438;324295;296000;348000;379000;371881;378249;380002;470234;476986;459867;534575;489996;500856;375570;516437;515323 -231;'840;United States of America;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;16000;19000;18000;18000;14000;18000;21000;22000;28000;18000;14000;19200;25300;55300;46900;21100;14400;15400;16500;15200;34800;42700;20000;32400;60400;66000;62000;91000;95000;98000;86000;90000;94000;130000;147985;164874;141553;136953;144204;142857;151055;143001;146863;174000;135000;134000;152450;149729;199416;163137;192154;209926;201515;184290;172096;176313;181299 -231;'840;United States of America;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;7089;8809;8773;8466;6381;8346;9880;14216;17026;13402;10628;17814;21795;53521;47842;25415;18861;19280;18205;21351;30790;37427;31924;41266;71083;88000;88901;127893;140546;128504;112631;109771;109352;175740;198870;233934;153256;152807;174116;171560;192461;187515;167972;211000;169000;183346;209855;206601;261187;208502;234732;267641;265545;237711;223342;264961;268299 -231;'840;United States of America;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47104000;48347000;46286000;44181096;45319719;44982248;46938401;46745171;47393805;47220533;45478747;41634120;43733845;45841620;45798000;43907512;47332000;47614000;47374402;48610487;49608506;48027451;48153000;50978950;49084393;46234713 -231;'840;United States of America;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2095000;2462000;2447974;2488367;2621064;2475566;2811234;2693964;2904744;2729531;2506139;2063046;1919043;1533294;2041000;2349000;2561000;2597716;2710010;2959522;3054991;2918302;2972710;3284087;3292024;2985388 -231;'840;United States of America;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1680830;1923088;2132687;2064263;2186451;2218341;2673807;2701159;2986214;3013457;3004068;2385687;2593378;2435135;2542049;2872259;3153265;3108305;2963460;3220023;3463151;3232345;3076437;3672685;4408063;3985319 -231;'840;United States of America;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6774000;6260000;6452000;5948503;6028913;6170125;6647977;7037705;7093795;7826519;6763602;6218996;6930455;8031575;8431800;8475000;8883000;8710930;8567282;8997701;9237675;8434550;8641936;8315527;8464640;7779009 -231;'840;United States of America;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4448808;3904685;4293393;3902291;3902291;4069400;4490119;4864283;5233561;5848804;5281784;5400959;5329763;5622854;6355323;6749250;7033018;6779623;6656570;7503789;8137169;7063109;6626305;7328648;8413587;6838589 -231;'840;United States of America;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;19042096;20012800;20817504;22202000;23549104;25246496;24792896;27267696;26771008;26027008;26531008;28798000;29728000;29523008;25009008;28815008;29502000;30718000;31699008;31308000;31573008;29498000;32018000;33902000;32519008;34331008;36047008;36056000;36427008;36870000;37929008;39265008;39874000;41472000;46622000;47440000;49674000;;;;;;;;;;;;;;;;;;;;;;;;;; -231;'840;United States of America;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;67900;77600;72900;66600;93800;141900;219800;160200;48000;52000;73000;123200;123000;176000;103900;83200;112000;141800;146900;209100;262300;265800;823700;900800;519000;571000;1180000;1385000;1470000;2157000;2387000;;;;;;;;;;;;;;;;;;;;;;;;;; -231;'840;United States of America;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;13609;15594;15123;14343;17070;25268;48961;59451;20022;23849;30444;47696;60313;89760;58597;50567;65208;87418;92840;114756;145990;167210;631057;680938;529000;611000;866699;1029760;1323431;2884822;3063170;;;;;;;;;;;;;;;;;;;;;;;;;; -231;'840;United States of America;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;1439000;1835000;1895000;1959000;2196000;2133000;1995000;2342000;1762000;2044000;1948000;1167900;2179500;3298600;2695100;2556500;2887300;2722000;2415900;2938700;3214600;3524600;3380100;3732800;3972000;4055488;4620000;5166000;5993000;6998000;6673000;;;;;;;;;;;;;;;;;;;;;;;;;; -231;'840;United States of America;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;228312;277182;292077;305853;338793;344871;400750;692129;576154;662159;613151;665134;789233;1313159;1219388;1070952;1113326;1186504;961122;1219527;1496003;1792736;1652166;2058467;2001000;2105306;2280598;2708748;4205110;4404971;3443347;;;;;;;;;;;;;;;;;;;;;;;;;; -231;'840;United States of America;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27469000;32385000;30902000;29391725;30660870;30402323;31915500;31657860;32274743;32421706;31143489;28763049;30758845;31005598;31174000;31595265;32084000;32545000;32431551;33438980;34691662;33400000;34500000;36200000;34300000;32900000 -231;'840;United States of America;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;896000;1078000;1050913;1033863;1075972;978881;1090096;1003507;1078727;998612;934745;751849;685374;390087;685000;847000;1056000;1088329;1110876;1294962;1375848;1284882;1309577;1358068;1260462;1278426 -231;'840;United States of America;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;427633;519055;597481;555756;555377;516394;624728;607284;695676;686246;696159;546272;682533;512000;559009;715985;878452;868460;730390;889557;1028825;942783;892730;1062697;1142172;1103643 -231;'840;United States of America;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3714000;3217000;3289000;2912327;2974988;3022482;3108959;3392644;3451375;3880366;4126907;3826651;4150802;4617319;4736000;4640000;5010000;4924445;5090500;5412539;5640050;5129545;5503159;5029097;5170256;5086783 -231;'840;United States of America;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1527343;1137227;1500702;1228733;1228733;1242166;1354882;1542301;1680088;1976263;2164508;2606400;2108250;2478000;2546686;2761130;2963868;2841260;2757835;3235343;3919367;3206011;3088767;3454575;4117521;3391517 -231;'840;United States of America;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6047000;6118000;6084000;5839518;5759686;5787808;5751521;5738821;5751521;5805045;5640845;5255294;8488000;6421927;6271000;6333024;11346000;11224000;11130039;11390392;6607936;6569834;6311000;8482180;6538082;7463411 -231;'840;United States of America;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;395000;467000;493635;486308;520548;467735;531037;497598;497911;454173;421215;378024;290298;258093;887000;970000;994000;986125;1036708;1099118;933564;919301;1098943;1267495;1361650;1111345 -231;'840;United States of America;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;214484;260247;311166;295888;298022;274481;330874;324422;349420;339199;344054;300352;226256;226502;1375191;1464222;1568594;1506156;1494309;1583615;1470021;1367501;1430315;1679581;2089151;1818512 -231;'840;United States of America;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1234000;1173000;1071000;1106516;1341739;1359723;1311862;1351487;1435030;1465561;1574149;1414879;1764465;1883396;2704000;2720000;2718000;2748239;2358511;2431050;2398301;2221266;2081452;2104197;2156029;1724330 -231;'840;United States of America;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1197085;1040449;883697;893838;893838;1165899;1070958;1133519;1259749;1350338;1515939;1419179;1700700;1886400;2907481;2912372;2956056;2942085;2850450;3150757;2982903;2726752;2498745;2591605;2912735;2307567 -231;'840;United States of America;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972000;2023000;1847000;1716000;1665310;1421279;1500476;1649253;1658325;1498661;1530413;1272774;1462000;2704304;2753000;2797743;1511000;1540000;1527108;1533022;2532861;2393154;1678000;2541930;2443049;2395876 -231;'840;United States of America;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;583000;675000;649281;721507;747511;766028;908137;912858;1021063;993866;1019179;815173;864371;818114;397000;460000;454000;457863;496390;493712;667865;626925;484111;546578;568005;502539 -231;'840;United States of America;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;909310;1003855;1062833;1061178;1169070;1267217;1529645;1572499;1716953;1767162;1878205;1467985;1625000;1640000;549531;636572;659749;677827;687210;689558;904487;852671;696669;839063;1070600;973492 -231;'840;United States of America;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;711000;752000;793000;702998;708068;702947;843436;929463;881647;871267;997546;927866;971590;1487775;942000;1072000;1127000;995608;1015597;1047430;1085146;1002318;974207;1090058;1019173;861977 -231;'840;United States of America;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;936838;959778;1051168;974985;974985;960780;1164381;1249102;1351990;1377176;1554047;1339311;1486000;1222000;864121;1044961;1091483;964630;982585;1045814;1149228;1074223;987570;1208280;1272660;1058920 -231;'840;United States of America;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11616000;7821000;7453000;7233853;7233853;7370838;7770904;7699237;7709216;7495121;7164000;6343003;3025000;5709791;5600000;3181480;2391000;2305000;2285704;2248093;5776047;5664463;5664000;3754840;5803262;3475426 -231;'840;United States of America;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;221000;242000;254145;246689;277033;262922;281964;280001;307043;282880;131000;118000;79000;67000;72000;72000;57000;65399;66036;71730;77714;87194;80079;111946;101907;93078 -231;'840;United States of America;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;129403;139931;161207;151441;163982;160249;188560;196954;224165;220850;85650;71078;59589;56633;58318;55480;46470;55862;51551;57293;59818;69390;56723;91344;106140;89672 -231;'840;United States of America;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1115000;1118000;1299000;1226662;1004118;1084973;1383720;1364111;1325743;1609325;65000;49600;43598;43085;49800;43000;28000;42638;102674;106682;114178;81421;83118;92175;119182;105919 -231;'840;United States of America;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;787542;767231;857826;804735;804735;700555;899898;939361;941734;1145027;47290;36069;34813;36454;37035;30787;21611;31648;65700;71875;85671;56123;51223;74188;110671;80585 -231;'840;United States of America;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;1261900;1296400;1318200;1390700;1427900;1356300;1363500;1427000;3819000;3578000;3907000;4216000;4334000;4182000;3573000;4053000;4146000;4261000;4333000;3495000;3285000;2903000;2352000;2623000;2567000;2753000;2781000;3548000;3132000;3738000;3574000;3943000;3996000;4286000;3879000;2069000;2131000;4163000;4377000;4037000;4011000;3928089;3863407;2188118;4288240;4288240;4076867;4107711;3875473;3885000;4048744;3118000;3037000;1746000;1774000;1759149;1755397;1361685;1474176;2282000;1302720;1287296;899928 -231;'840;United States of America;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;28500;17500;20600;25700;53200;76500;63500;79800;91000;109000;169000;300700;306000;436000;221300;290300;418700;536100;528200;695700;797100;828400;1048700;1104000;560000;697000;144000;292000;379000;482000;554000;597000;668000;738780;449090;338589;295024;313312;290983;245927;171172;115331;115227;126098;105000;96000;79000;55000;58238;54380;52403;50000;40000;42068;55387;53108;41431 -231;'840;United States of America;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;15754;18126;16188;22396;22501;31745;40444;66529;63388;89907;125391;185427;230137;247600;143135;151240;238047;484541;521437;654261;810545;873932;1071817;1104002;277000;495356;131316;158956;244357;813806;878192;324214;401205;502954;208530;185556;174825;181691;197218;168116;141108;119868;101168;107000;114000;296421;261372;245946;246887;224260;226190;249258;265530;264104;347984;425200;352122 -231;'840;United States of America;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;140000;122000;160000;152000;160000;180000;201000;306000;263000;309000;260000;156200;351400;394800;295100;243300;168200;198800;332000;326400;350300;401500;800800;741300;820000;939000;201000;174000;174000;548000;699000;221000;240000;340000;121838;137573;140387;183806;199860;244286;192314;214048;145543;129727;156035;424900;369000;370000;415401;361599;410299;443320;382610;288087;306143;365887;230296 -231;'840;United States of America;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;63745;66804;70543;77738;78000;80000;120755;179976;160351;197730;184186;155280;319142;369876;320857;284391;190813;205750;277253;206525;280892;466971;808320;727766;690000;776000;390911;177419;177419;210450;940527;200698;223654;309394;132199;117893;132951;158379;172917;233468;204044;229698;146092;119000;153000;413013;340744;341122;367743;308888;340978;376823;341594;257496;297043;336629;222770 -231;'840;United States of America;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26511888;28605042;27160194;27936733;37123580;43192388;32445933 -231;'840;United States of America;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3019331;3103924;3035341;2612157;3218532;4037722;3815438 -231;'840;United States of America;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1327498;1359786;1316005;1331815;1926787;2539869;1607372 -231;'840;United States of America;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;279195;293473;289201;196356;271452;321816;338895 -231;'840;United States of America;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;989023;994417;1011887;1062298;1566142;2048372;1260298 -231;'840;United States of America;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65394;69007;60230;51865;52587;57922;57725 -231;'840;United States of America;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;338475;365369;304118;269517;360645;491497;347074 -231;'840;United States of America;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;213801;224466;228971;144491;218865;263894;281170 -231;'840;United States of America;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;401662;413978;430461;399471;453175;566539;559900 -231;'840;United States of America;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;354108;387855;418353;334040;370077;515156;612289 -231;'840;United States of America;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1182097;1272688;1222183;1122009;1561883;1615785;1172176 -231;'840;United States of America;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100252;81560;74644;65083;71996;74190;72728 -231;'840;United States of America;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2005771;2162764;2178558;2353919;3189838;3840454;3110884 -231;'840;United States of America;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;375014;401232;394135;390278;538751;624810;549362 -231;'840;United States of America;1636;Glue-laminated timber (glulam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;385916;350400 -231;'840;United States of America;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18558;25284 -231;'840;United States of America;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41427;44421 -231;'840;United States of America;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1882;5821 -231;'840;United States of America;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3156;9089 -231;'840;United States of America;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23920;22883 -231;'840;United States of America;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23826;23944 -231;'840;United States of America;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;203 -231;'840;United States of America;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;259 -231;'840;United States of America;1684;I-beams (I-joists);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;646808;553171 -231;'840;United States of America;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;190839;186124 -231;'840;United States of America;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;288768;249651 -231;'840;United States of America;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44112;38196 -231;'840;United States of America;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112686;94768 -231;'840;United States of America;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20412486;21938602;20591462;21185682;27800255;32302255;24083834 -231;'840;United States of America;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1658666;1691192;1590557;1438727;1722209;2232055;1985132 -231;'840;United States of America;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103960;112873;141252;111477;152392;211384;238547 -231;'840;United States of America;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38398;37664;36768;22968;35038;44962;30377 -231;'840;United States of America;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1078414;1344351;1280273;1432360;2039250;2116102;1673220 -231;'840;United States of America;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;213698;210948;231683;164705;209009;224733;226655 -231;'840;United States of America;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7906211;8646081;8305433;8120091;9120818;10906101;10020712 -231;'840;United States of America;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5845036;5993396;5927033;5522951;6202950;6742358;6536870 -231;'840;United States of America;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67857;65819;66977;66807;78670;117361;74860 -231;'840;United States of America;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48944;78055;69970;47556;49954;60478;52663 -231;'840;United States of America;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;897004;1000513;986254;900946;978787;1187027;1067246 -231;'840;United States of America;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;982007;1028990;1057996;961701;1124808;1237223;1131370 -231;'840;United States of America;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1333244;1458172;1394584;1676204;1561317;1750826;1849260 -231;'840;United States of America;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;892353;901304;898877;907609;826261;940524;984568 -231;'840;United States of America;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2698239;2911829;2772838;2725006;3324326;3837123;3359342 -231;'840;United States of America;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1972108;2013546;2014543;1900130;2257086;2415667;2329917 -231;'840;United States of America;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2909867;3209748;3084780;2751128;3177718;4013764;3670004 -231;'840;United States of America;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1949624;1971501;1885647;1705955;1944841;2088466;2038352 -234;'858;Uruguay;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;256441;272216;256470;234543;297737.52;331601;334965 -234;'858;Uruguay;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1694443;2288171;1882856;1542163;2431344.2;2616814.47;3023936.47 -234;'858;Uruguay;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;10665;10453;7910;10097;7719;7575;8652;6596;11455;11886;10871;7680;10727;16064;15258;13106;16695;16676;26735;33486;33269;20932;12308;13510;15009;17359;22787;22766;20885;32566;30519;47643;49910;58372;60480;64012;88771;99447;97092;95296;89773;64372;61833;68882;79840;86554;103949;124823;109960;122142;147976;124330;127076;127364;100897;93539;110914;117137;108568;95284;124723.52;142335;129654 -234;'858;Uruguay;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;13;82;46;152;73;75;67;236;2051;2401;2255;2755;4209;6535;10381;7663;4579;6646;7066;6971;9846;10744;10743;6365;13366;18474;32326;30909;25895;38154;58617;75645;97173;77918;80686;84125;88332;106720;140165;181547;239848;268952;859357;700451;1113794;1139247;997893;1107935;1195331;1557448;1512146;1671788;2261495;1858747;1525246;2412126.2;2590426.47;3000637.47 -234;'858;Uruguay;1861;Roundwood;5516;Production;m3;1873741;1873533;2420296;2442987;2485908;2492700;2409492;2466284;2482076;2479869;2508255;2549306;2601530;2641451;2731986;2784837;2846128;2879116;3002632;2853795;3002354;3007771;3058669;3279233;3438031;3850068;4057704;3823055;3716974;3914111;4016573;4204875;4422803;4478373;4552631;4738574;5022178;5175459;5060672;2934000;2985000;3439000;3739000;5084000;5702000;6365000;7173000;9454000;8390000;11832000;10430000;9138000;10174000;12521458;13851826;14082691;15895768;16987261;16033884;17975031;18079178;16945000;19836000 -234;'858;Uruguay;1861;Roundwood;5616;Import quantity;m3;54100;26400;27000;23700;37000;24300;36500;17900;11400;10300;21300;7700;13100;18100;18700;8300;12600;3700;6100;6500;2300;1000;400;300;400;200;200;200;300;670;1204;613;1555;1376;2492;1664;1659;1600;1500;2400;2100;1000;2000;2000;8000;8000;7000;6000;5000;5000;9000;7397;7415;2476;4354;6559;9767;13197;10127;5839;6151;8558;16384 -234;'858;Uruguay;1861;Roundwood;5622;Import value;1000 USD;2071;997;994;860;1329;840;1237;627;592;733;739;329;578;917;1096;521;790;384;1034;1070;372;133;62;19;123;45;60;167;141;97;112;56;252;169;306;316;247;240;185;169;187;50;116;116;554;554;833;952;679;832;1976;1736;2077;1340;1262;1444;4119;7270;5654;1469;2144;3094;2670 -234;'858;Uruguay;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75910;21546;168443;168450;102867;480974;514974;691100;843100;371500;839630;917000;1097000;1372773;1614042;1775000;1995000;1873000;537000;263000;471000;364000;129677;149739;158000;123888;137039;888939;2378526;1499583;1716472;3319263;2080571;1433000 -234;'858;Uruguay;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4886;1648;13660;13661;6708;25818;28007;34817;54730;35151;39388;40853;42982;47352;55466;55735;73633;92017;33460;22023;34668;34603;16754;16313;25398;32418;24429;117210;297285;178057;179422;454280;269468;176488 -234;'858;Uruguay;1862;Roundwood, coniferous;5516;Production;m3;125000;125000;125000;125000;125000;125000;41000;46000;50000;45000;50000;66000;73000;76000;84000;95000;104000;95000;100000;56000;89000;53000;27000;57000;53000;171000;223000;243000;251000;281000;243000;298000;298000;298000;298000;340000;416000;354000;354000;263000;263000;304000;177000;213000;221000;354000;519000;507000;458000;783000;1079000;722000;661000;832225;815946;835410;2265783;3277928;2444287;3511204;3930862;3141000;2385000 -234;'858;Uruguay;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;131;23;352;16;0;9;51 -234;'858;Uruguay;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;6;58;7;0;14;28 -234;'858;Uruguay;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;783809;2230825;1440583;1667240;3125263;1827615;1156000 -234;'858;Uruguay;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93766;259395;169856;171981;431280;239123;141032 -234;'858;Uruguay;1863;Roundwood, non-coniferous;5516;Production;m3;1748741;1748533;2295296;2317987;2360908;2367700;2368492;2420284;2432076;2434869;2458255;2483306;2528530;2565451;2647986;2689837;2742128;2784116;2902632;2797795;2913354;2954771;3031669;3222233;3385031;3679068;3834704;3580055;3465974;3633111;3773573;3906875;4124803;4180373;4254631;4398574;4606178;4821459;4706672;2671000;2722000;3135000;3562000;4871000;5481000;6011000;6654000;8947000;7932000;11049000;9351000;8416000;9513000;11689233;13035880;13247281;13629985;13709333;13589597;14463827;14148316;13804000;17451000 -234;'858;Uruguay;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9636;13174;9775;5823;6151;8549;16333 -234;'858;Uruguay;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4064;7264;5596;1462;2144;3080;2642 -234;'858;Uruguay;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105130;147701;59000;49232;194000;252956;277000 -234;'858;Uruguay;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23444;37890;8201;7441;23000;30345;35456 -234;'858;Uruguay;1864;Wood fuel;5516;Production;m3;1663741;1663533;2210296;2232987;2275908;2282700;2290492;2317284;2322076;2331869;2353255;2368306;2389530;2414451;2441986;2473837;2499128;2534116;2575632;2611795;2683354;2785771;2845669;2990233;3175031;3298068;3350704;3085055;2949974;3072111;3159773;3161675;3379603;3435173;3509431;3563374;3614978;3721459;3806672;1423000;1387000;1607000;1607000;1760000;1973000;2111000;2062000;2210000;2210000;2430000;2430000;2383000;2383000;2756000;2777000;2785400;2566120;2566120;2629000;2629177;2332613;2292000;2307000 -234;'858;Uruguay;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;59;59;59;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;2;58 -234;'858;Uruguay;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;6;11 -234;'858;Uruguay;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;0;0;0;0;;;;;;282;0 -234;'858;Uruguay;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;0;0;0;;;;;;22;0 -234;'858;Uruguay;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;21000;29400;30849;35617;30316;24178;26891;30000;30000 -234;'858;Uruguay;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -234;'858;Uruguay;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -234;'858;Uruguay;1628;Wood fuel, non-coniferous;5516;Production;m3;1663741;1663533;2210296;2232987;2275908;2282700;2290492;2317284;2322076;2331869;2353255;2368306;2389530;2414451;2441986;2473837;2499128;2534116;2575632;2611795;2683354;2785771;2845669;2990233;3175031;3298068;3350704;3085055;2949974;3072111;3159773;3161675;3379603;3435173;3509431;3563374;3614978;3721459;3806672;1423000;1387000;1607000;1607000;1760000;1973000;2111000;2062000;2210000;2210000;2430000;2430000;2383000;2383000;2756000;2756000;2756000;2535271;2530503;2598684;2604999;2305722;2262000;2277000 -234;'858;Uruguay;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;58 -234;'858;Uruguay;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;11 -234;'858;Uruguay;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;282;0 -234;'858;Uruguay;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;0 -234;'858;Uruguay;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;59;59;59;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -234;'858;Uruguay;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -234;'858;Uruguay;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;0;0;0;0;;;;;;; -234;'858;Uruguay;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;0;0;0;;;;;;; -234;'858;Uruguay;1865;Industrial roundwood;5516;Production;m3;210000;210000;210000;210000;210000;210000;119000;149000;160000;148000;155000;181000;212000;227000;290000;311000;347000;345000;427000;242000;319000;222000;213000;289000;263000;552000;707000;738000;767000;842000;856800;1043200;1043200;1043200;1043200;1175200;1407200;1454000;1254000;1511000;1598000;1832000;2132000;3324000;3729000;4254000;5111000;7244000;6180000;9402000;8000000;6755000;7791000;9765458;11074826;11297291;13329648;14421141;13404884;15345854;15746565;14653000;17529000 -234;'858;Uruguay;1865;Industrial roundwood;5616;Import quantity;m3;54100;26400;27000;23700;37000;24300;36500;17900;11400;10300;21300;7700;13100;18100;18700;8300;12600;3700;6100;6500;2300;1000;400;300;400;200;200;200;300;670;1204;613;1555;1317;2433;1605;1600;1600;1500;2400;2100;1000;2000;2000;8000;8000;7000;6000;5000;5000;9000;7397;7415;2476;4354;6559;9767;13197;10127;5839;6151;8556;16326 -234;'858;Uruguay;1865;Industrial roundwood;5622;Import value;1000 USD;2071;997;994;860;1329;840;1237;627;592;733;739;329;578;917;1096;521;790;384;1034;1070;372;133;62;19;123;45;60;167;141;97;112;56;252;162;299;309;240;240;185;169;187;50;116;116;554;554;833;952;679;832;1976;1736;2077;1340;1262;1444;4119;7270;5654;1469;2144;3088;2659 -234;'858;Uruguay;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75910;21546;168443;168450;102867;480974;514974;691100;843100;371500;839630;917000;1097000;1372773;1614042;1775000;1995000;1873000;537000;263000;471000;364000;129657;149739;158000;123888;137039;888939;2378526;1499583;1716472;3319263;2080289;1433000 -234;'858;Uruguay;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4886;1648;13660;13661;6708;25818;28007;34817;54730;35151;39388;40853;42982;47352;55466;55735;73633;92017;33460;22023;34668;34603;16751;16313;25398;32418;24429;117210;297285;178057;179422;454280;269446;176488 -234;'858;Uruguay;1866;Industrial roundwood, coniferous;5516;Production;m3;125000;125000;125000;125000;125000;125000;41000;46000;50000;45000;50000;66000;73000;76000;84000;95000;104000;95000;100000;56000;89000;53000;27000;57000;53000;171000;223000;243000;251000;281000;243000;298000;298000;298000;298000;340000;416000;354000;354000;263000;263000;304000;177000;213000;221000;354000;519000;507000;458000;783000;1079000;722000;661000;832225;794946;806010;2234934;3242311;2413971;3487026;3903971;3111000;2355000 -234;'858;Uruguay;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;565;309;63;217;217;405;405;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1205;1205;0;0;0;131;23;352;16;0;9;51 -234;'858;Uruguay;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;48;4;35;35;46;46;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;74;74;0;0;0;55;6;58;7;0;14;28 -234;'858;Uruguay;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3974;3974;1100;1100;8500;0;5000;0;3773;3042;1000;0;5000;12000;7000;11000;137000;4793;33739;32000;9228;42160;783809;2230825;1440583;1667240;3125263;1827615;1156000 -234;'858;Uruguay;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;241;241;63;63;274;0;448;0;89;81;109;0;236;364;201;1383;9956;427;3495;4722;1345;4650;93766;259395;169856;171981;431280;239123;141032 -234;'858;Uruguay;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;565;309;63;217;217;405;405;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1205;1205;0;0;0;131;23;352;16;0;9;51 -234;'858;Uruguay;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;48;4;35;35;46;46;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;74;74;0;0;0;55;6;58;7;0;14;28 -234;'858;Uruguay;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3974;3974;1100;1100;8500;0;5000;0;3773;3042;1000;0;5000;12000;7000;11000;137000;4793;33739;32000;9228;42160;783809;2230825;1440583;1667240;3125263;1827615;1156000 -234;'858;Uruguay;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;241;241;63;63;274;0;448;0;89;81;109;0;236;364;201;1383;9956;427;3495;4722;1345;4650;93766;259395;169856;171981;431280;239123;141032 -234;'858;Uruguay;1867;Industrial roundwood, non-coniferous;5516;Production;m3;85000;85000;85000;85000;85000;85000;78000;103000;110000;103000;105000;115000;139000;151000;206000;216000;243000;250000;327000;186000;230000;169000;186000;232000;210000;381000;484000;495000;516000;561000;613800;745200;745200;745200;745200;835200;991200;1100000;900000;1248000;1335000;1528000;1955000;3111000;3508000;3900000;4592000;6737000;5722000;8619000;6921000;6033000;7130000;8933233;10279880;10491281;11094714;11178830;10990913;11858828;11842594;11542000;15174000 -234;'858;Uruguay;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105;895;550;1338;1100;2028;1200;1600;1600;1500;2400;2100;1000;2000;2000;8000;8000;7000;6000;5000;5000;9000;6192;6210;2476;4354;6559;9636;13174;9775;5823;6151;8547;16275 -234;'858;Uruguay;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;64;52;217;127;253;263;240;240;185;169;187;50;116;116;554;554;833;952;679;832;1976;1662;2003;1340;1262;1444;4064;7264;5596;1462;2144;3074;2631 -234;'858;Uruguay;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75910;21546;168443;168450;102867;477000;511000;690000;842000;363000;839630;912000;1097000;1369000;1611000;1774000;1995000;1868000;525000;256000;460000;227000;124864;116000;126000;114660;94879;105130;147701;59000;49232;194000;252674;277000 -234;'858;Uruguay;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4886;1648;13660;13661;6708;25577;27766;34754;54667;34877;39388;40405;42982;47263;55385;55626;73633;91781;33096;21822;33285;24647;16324;12818;20676;31073;19779;23444;37890;8201;7441;23000;30323;35456 -234;'858;Uruguay;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105;264;340;323;744;744;800;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4354;6554;9419;13174;9642;5822;6151;8547;11521 -234;'858;Uruguay;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;13;32;62;77;77;155;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1262;1440;3880;7264;5589;1458;2144;3074;2487 -234;'858;Uruguay;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;3433;2231;754;550;158;0;674;0 -234;'858;Uruguay;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;946;639;396;233;112;89;0;363;0 -234;'858;Uruguay;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;631;210;1015;356;1284;400;1600;1600;1500;2400;2100;1000;2000;2000;8000;8000;7000;6000;5000;5000;9000;6192;6210;2476;0;5;217;0;133;1;0;0;4754 -234;'858;Uruguay;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;20;155;50;176;108;240;240;185;169;187;50;116;116;554;554;833;952;679;832;1976;1662;2003;1340;0;4;184;0;7;4;0;0;144 -234;'858;Uruguay;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75910;21546;168443;168450;102867;477000;511000;690000;842000;363000;839630;912000;1097000;1369000;1611000;1774000;1995000;1868000;525000;256000;460000;227000;124864;116000;126000;110660;91446;102899;146947;58450;49074;194000;252000;277000 -234;'858;Uruguay;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4886;1648;13660;13661;6708;25577;27766;34754;54667;34877;39388;40405;42982;47263;55385;55626;73633;91781;33096;21822;33285;24647;16324;12818;20676;30127;19140;23048;37657;8089;7352;23000;29960;35456 -234;'858;Uruguay;1868;Sawlogs and veneer logs;5516;Production;m3;140000;140000;140000;140000;140000;140000;98000;103000;107000;99000;103000;126000;145000;149000;195000;208000;225000;225000;249000;80000;170000;87000;26000;96000;94000;343000;495000;534000;588000;670000;600000;784000;784000;784000;784000;909000;1130000;1000000;800000;548000;548000;591000;485000;536000;580000;734000;1168000;1150000;1020000;1547000;1779000;1450000;1436000;1937388;1703898;1534762;3125834;4176161;3135244;4259854;4803565;3995000;3280000 -234;'858;Uruguay;1868;Sawlogs and veneer logs;5616;Import quantity;m3;35900;17400;17200;16000;28000;22500;33700;16900;10700;9900;20700;7500;13000;17400;18300;8000;12300;3600;5000;4500;1400;200;100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -234;'858;Uruguay;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;1360;638;621;579;936;757;1129;568;510;621;684;317;554;824;1065;493;769;370;942;856;263;65;43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -234;'858;Uruguay;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;100000;100000;100000;100000;100000;100000;39000;40000;41000;37000;41000;58000;62000;64000;68000;78000;83000;80000;84000;40000;73000;37000;11000;42000;41000;123000;178000;191000;215000;245000;215000;267000;267000;267000;267000;309000;385000;300000;300000;209000;209000;250000;171000;189000;197000;330000;423000;408000;332000;667000;998000;594000;581000;807705;687089;805481;2234554;3241831;2413971;3487026;3903971;3111000;2355000 -234;'858;Uruguay;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;40000;40000;40000;40000;40000;40000;59000;63000;66000;62000;62000;68000;83000;85000;127000;130000;142000;145000;165000;40000;97000;50000;15000;54000;53000;220000;317000;343000;373000;425000;385000;517000;517000;517000;517000;600000;745000;700000;500000;339000;339000;341000;314000;347000;383000;404000;745000;742000;688000;880000;781000;856000;855000;1129683;1016809;729281;891280;934330;721273;772828;899594;884000;925000 -234;'858;Uruguay;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;35900;17400;17200;16000;28000;22500;33700;16900;10700;9900;20700;7500;13000;17400;18300;8000;12300;3600;5000;4500;1400;200;100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -234;'858;Uruguay;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;1360;638;621;579;936;757;1129;568;510;621;684;317;554;824;1065;493;769;370;942;856;263;65;43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -234;'858;Uruguay;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;380000;380000;893000;960000;1151000;1637000;2770000;3128000;3497000;3929000;6080000;5146000;7841000;6207000;5232000;6180000;7793750;9346000;9714000;10158000;10197000;10219640;11036000;10893000;10608000;14199000 -234;'858;Uruguay;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54000;54000;54000;54000;54000;6000;24000;24000;24000;96000;99000;126000;116000;81000;78000;15000;24000;107000;0;0;0;0;0;0;0;0 -234;'858;Uruguay;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;326000;326000;839000;906000;1097000;1631000;2746000;3104000;3473000;3833000;5981000;5020000;7725000;6126000;5154000;6165000;7769750;9239000;9714000;10158000;10197000;10219640;11036000;10893000;10608000;14199000 -234;'858;Uruguay;1870;Pulpwood and particles (1961-1997);5516;Production;m3;;;;;;;;24000;27000;25000;24000;23000;27000;31000;37000;42000;48000;50000;103000;135000;125000;110000;131000;149000;123000;161000;168000;160000;135000;127000;213800;217200;217200;217200;217200;217200;217200;;;;;;;;;;;;;;;;;;;;;;;;;; -234;'858;Uruguay;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;5000;7000;6000;6000;5000;8000;10000;12000;14000;16000;15000;16000;16000;16000;16000;16000;15000;12000;48000;45000;52000;36000;36000;28000;31000;31000;31000;31000;31000;31000;;;;;;;;;;;;;;;;;;;;;;;;;; -234;'858;Uruguay;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;19000;20000;19000;18000;18000;19000;21000;25000;28000;32000;35000;87000;119000;109000;94000;115000;134000;111000;113000;123000;108000;99000;91000;185800;186200;186200;186200;186200;186200;186200;;;;;;;;;;;;;;;;;;;;;;;;;; -234;'858;Uruguay;1871;Other industrial roundwood;5516;Production;m3;70000;70000;70000;70000;70000;70000;21000;22000;26000;24000;28000;32000;40000;47000;58000;61000;74000;70000;75000;27000;24000;25000;56000;44000;46000;48000;44000;44000;44000;45000;43000;42000;42000;42000;42000;49000;60000;74000;74000;70000;90000;90000;10000;18000;21000;23000;14000;14000;14000;14000;14000;73000;175000;34320;24928;48529;45814;47980;50000;50000;50000;50000;50000 -234;'858;Uruguay;1871;Other industrial roundwood;5616;Import quantity;m3;18200;9000;9800;7700;9000;1800;2800;1000;700;400;600;200;100;700;400;300;300;100;1100;2000;900;800;300;300;400;200;200;200;300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -234;'858;Uruguay;1871;Other industrial roundwood;5622;Import value;1000 USD;711;359;373;281;393;83;108;59;82;112;55;12;24;93;31;28;21;14;92;214;109;68;19;19;123;45;60;167;141;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -234;'858;Uruguay;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;25000;25000;25000;25000;25000;25000;2000;1000;2000;2000;3000;3000;3000;2000;4000;3000;5000;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;50000;65000;520;857;529;380;480;0;0;0;0;0 -234;'858;Uruguay;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;45000;45000;45000;45000;45000;45000;19000;21000;24000;22000;25000;29000;37000;45000;54000;58000;69000;70000;75000;27000;24000;25000;56000;44000;46000;48000;44000;44000;44000;45000;43000;42000;42000;42000;42000;49000;60000;74000;74000;70000;90000;90000;10000;18000;21000;23000;14000;14000;14000;14000;14000;23000;110000;33800;24071;48000;45434;47500;50000;50000;50000;50000;50000 -234;'858;Uruguay;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;18200;9000;9800;7700;9000;1800;2800;1000;700;400;600;200;100;700;400;300;300;100;1100;2000;900;800;300;300;400;200;200;200;300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -234;'858;Uruguay;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;711;359;373;281;393;83;108;59;82;112;55;12;24;93;31;28;21;14;92;214;109;68;19;19;123;45;60;167;141;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -234;'858;Uruguay;1630;Wood charcoal;5510;Production;t;101267;101232;101198;101164;101129;101095;100761;100926;100892;100758;101747;102745;102747;102274;100977;100788;101661;101494;101084;100616;101452;106387;111681;113723;114680;113036;111491;112869;113680;114693;114967;113622;114184;113728;115876;114934;114061;114874;115185;116597;116861;117125;117389;117655;117921;118032;118100;118300;118366;118478;118459;118441;118422;118403;118385;118266;118266;118030;117912;117794;117670;117545;117421 -234;'858;Uruguay;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;174;416;448;600;700;700;900;1100;1300;1000;1000;1000;1000;1000;1000;1000;2000;2000;1000;1818;1895;2143;2073;3019;3022;3050;3550;3480;5374.38;4494;5345 -234;'858;Uruguay;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;42;63;72;86;94;94;125;151;161;135;88;88;108;116;181;287;402;449;449;673;734;847;806;1142;1136;1128;1260;1116;3152.46;1522;1776 -234;'858;Uruguay;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;222;222;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;1180;1180;1082;1082 -234;'858;Uruguay;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;71;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;1041;1041;1172;1172 -234;'858;Uruguay;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17000;25000;12000;262000;836000;1298000;1389000;1286000;2289000;1148000;2274000;2090000;908000;1041000;897776;720160;1068000;836000;1315025;1383714;247026;1039288;1334000;1101000 -234;'858;Uruguay;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;107;33;407;39;82;89;384;118;81;353.49;147;90 -234;'858;Uruguay;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;175;35;238;39;86;101;126;67;76;123;146;100 -234;'858;Uruguay;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23742;25000;16919;232000;836000;1298000;1383000;1280000;2283000;1146000;2274000;2090000;905396;924206;892389;717663;1065700;833700;1315025;1260609;247130;1039307;1333876;943364 -234;'858;Uruguay;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;425;667;131;10865;32694;62286;89015;65394;165848;79696;130234;158239;73303;82082;61059;56696;82200;63627;98318;102352;21137;74227;112951;103448 -234;'858;Uruguay;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17000;25000;12000;262000;836000;1298000;1383000;1280000;2283000;1148000;2274000;2090000;905000;1038000;886776;716160;1064000;832000;1312767;1382500;245812;1039118;1334000;1101000 -234;'858;Uruguay;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;26;0;0;0;0;0;0;0;0;0;0;0;0;0;0;8;2;10;32;47;56;127;98;54;52;53;49 -234;'858;Uruguay;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;42;19;38;20;56;76;76;42;66;79;87;75 -234;'858;Uruguay;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23742;25000;16919;232000;836000;1298000;1383000;1280000;2283000;1146000;2274000;2090000;904426;924069;891289;716163;1064000;832000;1312767;1259395;245812;1039118;1333876;943364 -234;'858;Uruguay;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;425;667;131;10865;32694;62286;89015;65394;165848;79696;130234;158239;73133;82060;60902;56516;82012;63439;98065;102201;20911;74209;112951;103448 -234;'858;Uruguay;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6000;6000;6000;0;0;0;3000;3000;11000;4000;4000;4000;2258;1214;1214;170;0;0 -234;'858;Uruguay;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;308;30;605;250;500;500;0;0;0;0;0;0;0;0;0;0;0;0;0;0;99;31;397;7;35;33;257;20;27;301.49;94;41 -234;'858;Uruguay;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;1;20;11;40;40;0;0;0;0;0;0;0;0;0;0;0;0;0;0;133;16;200;19;30;25;50;25;10;44;59;25 -234;'858;Uruguay;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;970;137;1100;1500;1700;1700;2258;1214;1318;189;0;0 -234;'858;Uruguay;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;170;22;157;180;188;188;253;151;226;18;0;0 -234;'858;Uruguay;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -234;'858;Uruguay;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;3000;1460;2000;410;1000;0;0;0;1331;2000;4000 -234;'858;Uruguay;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;103;102;171;569;1076;3040;3675;3928;6382.22;6886;2741 -234;'858;Uruguay;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;92;62;38;82;141;463;516;550;833;965;440 -234;'858;Uruguay;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2051;3344;1460;1892;410;567;0;0;1106;1482.01;557;3983 -234;'858;Uruguay;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;231;575;259;295;66;92;0;0;193;261;93;875 -234;'858;Uruguay;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;3000;1460;2000;410;1000;0;0;0;0;1000;3000 -234;'858;Uruguay;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;25;76;171;569;1076;2867;2803;3218;6243.22;6181;2707 -234;'858;Uruguay;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;19;33;38;82;141;413;372;431;787;862;390 -234;'858;Uruguay;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2051;3344;1460;1892;410;567;0;0;0;0;0;2779 -234;'858;Uruguay;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;231;575;259;295;66;92;0;0;0;0;0;638 -234;'858;Uruguay;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1331;1000;1000 -234;'858;Uruguay;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;26;0;0;0;173;872;710;139;705;34 -234;'858;Uruguay;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;29;0;0;0;50;144;119;46;103;50 -234;'858;Uruguay;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1106;1482.01;557;1204 -234;'858;Uruguay;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;193;261;93;237 -234;'858;Uruguay;1872;Sawnwood;5516;Production;m3;70000;70000;70000;70000;70000;70000;74000;78000;80000;73000;57000;66000;72000;80000;105000;117000;107000;104000;99000;99000;100000;47000;16000;59000;54000;117000;169000;185000;201000;229000;205000;269000;269000;269000;269000;269000;269000;269000;269000;203000;203000;224000;230000;252000;268000;293000;308000;284000;264000;346000;376000;413000;433000;513000;487036;434630;595000;585000;527904;580183;684805;756000;758000 -234;'858;Uruguay;1872;Sawnwood;5616;Import quantity;m3;71200;86000;57000;87000;32700;63150;47500;34800;43100;59100;47700;30900;32000;33600;20200;21000;31000;42000;51600;60400;43200;32800;18300;19600;19500;24000;26200;32200;39400;75000;100400;35166;40536;44663;38707;42600;43800;43800;49300;41600;45400;20000;19000;33000;37000;30000;29000;27000;24000;20000;19000;18500;12169;10154;9438;6417;6122;6991;7365;11333;12072;12215;14529 -234;'858;Uruguay;1872;Sawnwood;5622;Import value;1000 USD;3528;4222;2683;4002;1753;3217;2421;1933;3263;3546;3245;2430;3839;4210;3393;3359;4917;5110;10682;11070;9806;6212;3083;3500;4515;4860;6384;5643;4935;5689;5926;7126;11178;9445;9562;11564;9121;9121;11120;9300;8985;4200;3478;6589;8074;7931;9876;11754;10524;8707;9612;5267;5300;7234;4808;4173;4321;4310;4095;6194;6853;8479;8737 -234;'858;Uruguay;1872;Sawnwood;5916;Export quantity;m3;;;;;;300;600;800;600;300;200;100;200;1100;200;200;200;200;;;;;;;;;;;;;;18210;20975;32262;51499;53600;64400;64400;58600;37800;33100;77000;96000;124000;140000;130000;144000;109000;92000;125000;157000;146369;189204;212322;232091;249884;326195;315980;354833;469503;508568;608220;417264 -234;'858;Uruguay;1872;Sawnwood;5922;Export value;1000 USD;;;;;;13;19;35;44;14;16;8;23;477;34;33;44;44;;;;;;;;;;;;;;1747;2149;3846;5776;7953;7868;7868;10600;7793;7011;8759;12793;16295;22734;25521;30648;29446;25450;38500;49912;49850;63406;76173;72012;68561;82431;97894;98456;107230;164191;183534;167074 -234;'858;Uruguay;1632;Sawnwood, coniferous;5516;Production;m3;50000;50000;50000;50000;50000;50000;26000;27000;27000;25000;22000;28000;31000;34000;46500;54000;48500;44500;39500;39500;40000;18500;6500;26500;24000;39000;57000;62000;67000;77000;67000;84000;84000;84000;84000;84000;84000;84000;84000;100000;100000;120000;82000;88000;91000;104000;109000;105000;102000;131000;128000;145000;156000;193000;208906;225298;345000;354000;319850;377540;422793;481000;477000 -234;'858;Uruguay;1632;Sawnwood, coniferous;5616;Import quantity;m3;69100;83350;54450;78900;28700;63050;47400;34700;41600;58800;47400;30350;28400;29850;16150;16200;24400;36100;33700;42900;36400;28800;13700;13900;9700;18000;15600;11700;12400;6000;400;17906;14065;16964;21093;15700;13000;13000;15200;10500;15000;4000;3000;5000;3000;4000;3000;3000;4000;3000;2000;2500;2500;2500;2647;1820;734;1503;1959;2733;2712;3476;5785 -234;'858;Uruguay;1632;Sawnwood, coniferous;5622;Import value;1000 USD;3425;4121;2600;3778;1628;3213;2417;1929;3162;3529;3224;2402;3602;3718;2805;2662;4169;4373;8763;9099;8542;5549;2391;2394;1785;2670;3467;2590;1600;780;64;4175;3462;4400;4073;4701;4673;4673;3776;2464;2295;512;500;864;732;912;972;1278;1249;1254;955;965;950;1118;946;700;195;692;814;815;815;1040;1298 -234;'858;Uruguay;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;551;1939;2367;2500;7000;39400;39400;22600;19200;17800;8000;34000;34000;33000;35000;39000;42000;41000;59000;57000;55873;73730;76132;105820;153005;183000;205000;225954;333378;329458;424881;278095 -234;'858;Uruguay;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;232;633;926;1872;4070;4070;6453;5565;5173;1031;6688;6688;7907;10000;10969;10567;9843;16740;17320;18051;24570;25263;29735;30746;36234;48175;52683;62219;98019;102635;88549 -234;'858;Uruguay;1633;Sawnwood, non-coniferous;5516;Production;m3;20000;20000;20000;20000;20000;20000;48000;51000;53000;48000;35000;38000;41000;46000;58500;63000;58500;59500;59500;59500;60000;28500;9500;32500;30000;78000;112000;123000;134000;152000;138000;185000;185000;185000;185000;185000;185000;185000;185000;103000;103000;104000;148000;164000;177000;189000;199000;179000;162000;215000;248000;268000;277000;320000;278130;209332;250000;231000;208054;202643;262012;275000;281000 -234;'858;Uruguay;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;2100;2650;2550;8100;4000;100;100;100;1500;300;300;550;3600;3750;4050;4800;6600;5900;17900;17500;6800;4000;4600;5700;9800;6000;10600;20500;27000;69000;100000;17260;26471;27699;17614;26900;30800;30800;34100;31100;30400;16000;16000;28000;34000;26000;26000;24000;20000;17000;17000;16000;9669;7654;6791;4597;5388;5488;5406;8600;9360;8739;8744 -234;'858;Uruguay;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;103;101;83;224;125;4;4;4;101;17;21;28;237;492;588;697;748;737;1919;1971;1264;663;692;1106;2730;2190;2917;3053;3335;4909;5862;2951;7716;5045;5489;6863;4448;4448;7344;6836;6690;3688;2978;5725;7342;7019;8904;10476;9275;7453;8657;4302;4350;6116;3862;3473;4126;3618;3281;5379;6038;7439;7439 -234;'858;Uruguay;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;300;600;800;600;300;200;100;200;1100;200;200;200;200;;;;;;;;;;;;;;17659;19036;29895;48999;46600;25000;25000;36000;18600;15300;69000;62000;90000;107000;95000;105000;67000;51000;66000;100000;90496;115474;136190;126271;96879;143195;110980;128879;136125;179110;183339;139169 -234;'858;Uruguay;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;13;19;35;44;14;16;8;23;477;34;33;44;44;;;;;;;;;;;;;;1672;1917;3213;4850;6081;3798;3798;4147;2228;1838;7728;6105;9607;14827;15521;19679;18879;15607;21760;32592;31799;38836;50910;42277;37815;46197;49719;45773;45011;66172;80899;78525 -234;'858;Uruguay;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2000;2000;2000;2000;2000;296;8687;2000 -234;'858;Uruguay;1634;Veneer sheets;5616;Import quantity;m3;4800;4700;3400;2600;2100;2300;2100;2500;1700;2700;2800;2800;2300;1500;800;1000;1700;1600;1700;3300;1500;700;500;500;1000;1100;1400;1100;800;1000;1900;1640;1380;755;356;200;200;200;300;300;100;100;50;50;50;0;0;0;0;1000;1000;37;48;27;44;30;84;67;7;36;27;30;12 -234;'858;Uruguay;1634;Veneer sheets;5622;Import value;1000 USD;435;409;267;214;165;178;155;185;141;267;288;345;433;570;295;244;491;524;723;1423;765;362;206;206;318;385;556;508;323;356;623;584;466;270;220;295;147;147;237;237;70;70;41;41;41;0;0;0;0;348;420;127;86;89;77;64;108;152;50;68;51;118;108 -234;'858;Uruguay;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;654;0;37;133;94;234;10;10;1;0;113;4475;3293 -234;'858;Uruguay;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;232;0;8;17;57;103;24;25;2;11;76;1990;1433 -234;'858;Uruguay;1873;Wood-based panels;5516;Production;m3;7600;6500;6800;6800;8500;8633;18486;16712;18223;17712;8811;9838;14343;15648;14600;13100;14000;15000;16900;16000;16500;10000;12000;16000;7650;7800;10650;11000;10000;10300;7900;5500;5500;5500;5500;5500;5500;5500;5500;5500;5500;5500;5500;5500;5300;51300;163300;176300;142000;199000;200000;252000;282000;259000;220000;220000;270000;320000;238366;243424;246572;275000;264000 -234;'858;Uruguay;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10553;13689;17568;18924;16537;21500;21500;23400;14100;16500;20000;20500;20100;32140;40000;52000;55000;51000;50400;64000;38524;52802;54038;52232;49305;48815;51322;52445;57142;65671.31;61502;71932 -234;'858;Uruguay;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2782;3913;5296;4791;5753;8031;8031;8070;6912;6528;6005;5255;5749;8369;10472;14337;19453;16060;18846;24819;23082;26088;25178;22990;20639;20164;22410;20846;20452;27217.03;31488;34511 -234;'858;Uruguay;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;19;19;0;0;0;0;0;0;0;0;3000;49000;112000;137000;113000;178000;175000;177358;256850;197393;180536;179911;224907;272614;220624;204348;183010;194507.61;238748.61 -234;'858;Uruguay;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;16;16;0;0;0;0;0;0;0;0;555;13940;33516;47541;31775;53588;53106;71186;84885;74459;71370;64648;63513;75037;57155;70147;105960;101942.47;78380.47 -234;'858;Uruguay;1640;Plywood and LVL;5516;Production;m3;4500;4500;4500;4500;4500;4500;13500;11000;12300;12000;4800;5000;5500;6000;5600;4000;4800;6000;7000;7000;6500;3000;4000;6500;2500;3300;3800;4000;4000;4100;3500;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3000;49000;162000;175000;132000;156000;170000;229000;259000;239000;220000;220000;270000;320000;238366;243424;246572;275000;264000 -234;'858;Uruguay;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2507;4129;5284;8981;7000;8600;8600;8500;5200;4200;5000;4000;5000;8000;8000;5000;4000;8000;6000;9000;2400;7664;9471;10796;10317;9669;10598;10420;12279;15561;15963;20262 -234;'858;Uruguay;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;972;1634;2060;2262;2807;3798;3798;3644;2906;2152;1753;1240;2034;2619;3191;2846;4554;3255;3982;5525;2858;4952;5274;5366;4638;3860;4992;4778;4885;7655;10732;13142 -234;'858;Uruguay;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;0;0;0;0;0;0;0;0;3000;49000;112000;137000;104000;113000;125000;160718;226655;177872;179036;179646;224879;272603;220624;204348;183000;194498;238738 -234;'858;Uruguay;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;0;0;0;0;0;0;0;0;555;13940;33516;47541;30242;40394;44127;65246;74439;67795;70977;64579;63506;75036;57155;70147;105949;101931;78367 -234;'858;Uruguay;1646;Particle board and OSB (1961-1994);5516;Production;m3;3100;2000;2300;2300;1500;1500;1300;1500;1500;1500;1800;2100;6000;6700;6200;6500;6400;6000;7000;7000;6000;4000;5000;5500;2250;2300;3500;4000;3000;3500;3100;1000;1000;1000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -234;'858;Uruguay;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5169;5372;7033;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -234;'858;Uruguay;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;973;1075;1598;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -234;'858;Uruguay;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;;;;;;;;;;;;;;;;; -234;'858;Uruguay;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8933;6100;9000;9000;10200;4200;3900;3000;7000;7000;9000;14000;4000;9000;7000;7000;6000;4666;5065;4890;3317;2506;1546;2500;1667;2907;2840.68;2356;2970 -234;'858;Uruguay;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2130;1565;2528;2528;2204;1784;1448;863;1051;1051;1919;2975;1075;3549;2427;2259;2262;1881;2056;2010;1251;822;440;800;556;1065;1143.37;1203;1077 -234;'858;Uruguay;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;1 -234;'858;Uruguay;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;2 -234;'858;Uruguay;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -234;'858;Uruguay;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9000;5000;5000;4000;8000;8147;9376;9450;6906;7898;7300;7886;6790;7021;8669.52;5894;7312 -234;'858;Uruguay;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2180;1231;1483;1753;2651;2777;3207;3045;1953;2224;1636;2707;2087;1904;3043.53;2044;2100 -234;'858;Uruguay;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;0;0;0;0;0;0;0;0;0;0;0 -234;'858;Uruguay;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;0;0;0;0;0;0;0;0;0;0;0 -234;'858;Uruguay;1874;Fibreboard;5516;Production;m3;;;;;2500;2633;3686;4212;4423;4212;2211;2738;2843;2948;2800;2600;2800;3000;2900;2000;4000;3000;3000;4000;2900;2200;3350;3000;3000;2700;1300;1300;1300;1300;1300;1300;1300;1300;1300;1300;1300;1300;1300;1300;1300;1300;1300;1300;10000;43000;30000;23000;23000;20000;0;0;0;0;0;0;0;0;0 -234;'858;Uruguay;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2877;4188;5251;1010;3437;3900;3900;4700;4700;8400;12000;9500;8100;15140;18000;34000;37000;31000;33400;41000;23311;30697;30227;31213;28584;30300;30338;33568;34935;38600.11;37289;41388 -234;'858;Uruguay;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;837;1204;1638;399;1381;1705;1705;2222;2222;2928;3389;2964;2664;3831;4306;8236;10119;8895;10852;14381;15566;15873;14849;14420;12955;14228;13911;13425;12598;15375.13;17509;18192 -234;'858;Uruguay;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;0;0;0;0;0;0;0;0;0;0;0;0;9000;65000;50000;16581;30195;19521;1500;265;28;11;0;0;10;9.61;9.61 -234;'858;Uruguay;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;0;0;0;0;0;0;0;0;0;0;0;0;1533;13194;8979;5922;10446;6664;393;69;7;1;0;0;11;11.47;11.47 -234;'858;Uruguay;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1300;1300;1300;1300;1300;1300;1300;1300;1300;1300;1300;1300;1300;1300;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -234;'858;Uruguay;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2800;3000;3000;3000;4000;4000;10000;3000;3000;3000;5000;4320;5971;5900;3367;2033;1936;1683;1541;1220;1856;1114;1555 -234;'858;Uruguay;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;977;475;762;762;1419;1694;4050;2091;1916;2359;3599;3427;4318;3640;1665;1117;1049;910;801;651;731;602;858 -234;'858;Uruguay;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;43000;30000;23000;23000;20000;0;0;0;0;0;0;0;0;0 -234;'858;Uruguay;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;673;3100;3500;3500;4000;4000;4000;4000;5000;5000;11000;14000;14000;24000;23000;30000;35000;18882;24456;24251;27584;26238;28014;28361;31797;33584;36485.11;35705;39422 -234;'858;Uruguay;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;346;1328;1573;1573;1970;1970;1793;1793;1882;1882;2400;2612;2612;6454;6229;8434;10633;11965;11452;11144;12546;11601;12912;12732;12453;11864;14473.13;16623;17064 -234;'858;Uruguay;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;0;0;0;0;0;0;0;0;0;0;0;0;9000;65000;50000;16581;30195;19521;1500;265;28;11;0;0;10;9.61;9.61 -234;'858;Uruguay;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;0;0;0;0;0;0;0;0;0;0;0;0;1533;13194;8979;5922;10446;6664;393;69;7;1;0;0;11;11.47;11.47 -234;'858;Uruguay;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 -234;'858;Uruguay;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;81;123;337;337;400;400;700;700;1600;5000;1500;100;140;0;10000;10000;5000;400;1000;109;270;76;262;313;350;294;230;131;259;470;411 -234;'858;Uruguay;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;39;70;53;53;132;132;252;252;158;1121;320;20;12;0;1574;1574;750;59;149;174;103;65;209;237;267;269;171;83;171;284;270 -234;'858;Uruguay;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;;;;;2500;2633;3686;4212;4423;4212;2211;2738;2843;2948;2800;2600;2800;3000;2900;2000;4000;3000;3000;4000;2900;2200;3350;3000;3000;2700;1300;1300;1300;1300;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -234;'858;Uruguay;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2826;4107;5128;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -234;'858;Uruguay;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;814;1165;1568;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -234;'858;Uruguay;1879;Total fibre furnish;5510;Production;t;7000;4000;5000;6300;6800;6800;8300;8400;9200;30000;34600;17000;19300;26800;28800;27300;34100;40500;44200;45400;41300;36300;41400;48800;55300;59600;61300;56000;57000;61000;82400;81000;81000;81000;74000;74000;69000;78000;81000;48000;48000;52000;52000;48000;49000;49000;148000;984000;1084000;1137000;1113000;1193000;1281000;1922000;2428000;2625326;2717000;2625345;2684000;2862932;2847634;2786000;3580293 -234;'858;Uruguay;1879;Total fibre furnish;5610;Import quantity;t;;700;500;1000;900;600;600;16000;9900;9700;10400;8800;12100;7600;6500;8000;10800;12000;12700;10300;7300;5100;8200;9300;12900;13250;14000;13400;7600;16200;17600;18165;18925;17571;19721;19900;28900;32800;27100;20100;20600;18800;17800;21325;24187;12187;19187;21187;32187;32000;32000;28010;23559;31692;11124;11865;9486;8384;11161;8475;17746.47;6559;4859 -234;'858;Uruguay;1879;Total fibre furnish;5622;Import value;1000 USD;;68;46;126;100;57;72;1531;1655;2064;2344;1791;3072;3740;3947;2675;3453;3465;5482;5434;3773;2924;2827;3265;3649;4255;6387;6352;4551;5624;4568;5689;4309;7018;9476;7640;12438;12514;11733;12905;9745;7717;7964;11408;14212;9265;9626;10757;14197;18095;20134;16799;14189;17378;6494;6021;6017;5638;6084;4664;10795.83;5193;3778 -234;'858;Uruguay;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1100;1000;1300;4908;6400;3100;3100;5500;12200;18000;19600;13600;13600;15000;12000;28000;780000;1094000;1123000;1158000;1165450;1252649;1921837;2377000;2588262;2655956;2562813;2612786;2802241;2578150.17;2714990;3516517 -234;'858;Uruguay;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;520;440;485;1774;2234;272;272;481;1394;2132;1865;1695;1695;1622;1423;11135;543022;510120;815997;801448;740450;817696;905862;1268863;1241807;1337553;1689571;1418784;1140224;1606146.2;1918580;2471404 -234;'858;Uruguay;1878;Pulp for paper;5510;Production;t;7000;4000;5000;6300;6800;6800;8300;8400;9200;10000;12600;9000;9300;16800;18800;18300;18100;22500;22200;23400;21300;21300;23400;27800;25300;33600;34300;28000;30000;26000;36400;36000;36000;36000;29000;29000;37000;35000;38000;35000;35000;35000;35000;38000;34000;34000;131000;967000;1066000;1116000;1088000;1154000;1240000;1910000;2412000;2604326;2644000;2543345;2618000;2792781;2770730;2711000;3510000 -234;'858;Uruguay;1878;Pulp for paper;5610;Import quantity;t;;700;500;1000;900;600;600;16000;9900;9700;10400;8800;12100;7600;6500;6800;8400;10300;11200;9000;6100;4500;6700;6500;6900;9750;9900;8000;5600;6200;4600;5801;6171;10987;12582;14800;20800;21800;19800;16200;16400;14800;14800;13325;15187;8187;10187;9187;26187;17000;21000;22745;19773;27581;6127;6990;6931;5609;5621;6166;13489;4374;2905 -234;'858;Uruguay;1878;Pulp for paper;5622;Import value;1000 USD;;68;46;126;100;57;72;1531;1655;2064;2344;1791;3072;3740;3947;2513;3151;3235;5260;5174;3396;2787;2661;3076;2938;3835;5671;5569;4215;4057;3048;3843;2605;5766;7607;6702;10264;10314;10175;11813;8750;7024;7418;6681;8389;8457;7253;7042;12964;12998;16269;14984;13092;16177;5110;4817;5283;4791;4524;4169;9567;4668;3278 -234;'858;Uruguay;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1100;1000;700;1800;1800;0;0;0;0;600;600;600;600;0;0;11000;769000;1082000;1109000;1137000;1150000;1238000;1910000;2361000;2567071;2640670;2539460;2599000;2782667;2563524;2697199;3497769 -234;'858;Uruguay;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;520;440;387;1510;1510;0;0;0;0;374;374;374;374;0;0;8374;540979;508376;812538;796318;737224;814377;902625;1265039;1237373;1334291;1684875;1415990;1136380;1602665;1913554;2467328 -234;'858;Uruguay;1875;Wood pulp;5510;Production;t;1000;2000;3000;3800;3800;3800;4300;5700;6300;5900;7100;4600;5100;12800;14800;14300;14100;18500;22200;23400;21300;21300;23400;27800;25300;33600;34300;28000;30000;26000;36400;36000;36000;36000;29000;29000;37000;35000;38000;35000;35000;35000;35000;38000;34000;34000;131000;967000;1066000;1116000;1088000;1154000;1240000;1910000;2412000;2604326;2644000;2543345;2618000;2792781;2770730;2711000;3510000 -234;'858;Uruguay;1875;Wood pulp;5610;Import quantity;t;;700;500;1000;900;600;1900;17300;11700;11500;10400;8800;12100;7600;6500;6800;8400;10300;11200;9000;6100;4500;6700;6500;6900;9750;9900;8000;5600;6200;4600;6055;6176;10992;12577;14721;20800;21800;19950;16350;16400;14800;14800;13325;15187;8187;10187;9187;26187;17000;21000;22648;19704;27500;6031;6927;6912;5563;5564;6284;13566;4535;2957 -234;'858;Uruguay;1875;Wood pulp;5622;Import value;1000 USD;;68;46;126;100;57;1048;2452;2962;3440;2344;1791;3072;3740;3947;2513;3151;3235;5260;5174;3396;2787;2661;3076;2938;3835;5671;5569;4215;4057;3048;3925;2603;5764;7607;6674;10264;10314;10253;11891;8750;7024;7418;6681;8389;8457;7253;7042;12964;12998;16269;14762;12953;16008;4940;4703;5247;4695;4413;4408;9722;5182;3422 -234;'858;Uruguay;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1109;1000;700;1800;1800;0;0;0;0;600;600;600;600;0;0;11000;769000;1082000;1109000;1137000;1150000;1238000;1910000;2361000;2567088;2640670;2539460;2599000;2782667;2563524;2697421;3497989 -234;'858;Uruguay;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;526;440;387;1510;1510;0;0;0;0;374;374;374;374;0;0;8374;540979;508376;812538;796318;737224;814377;902625;1265039;1237408;1334291;1684875;1415990;1136381;1602666;1913754;2467524 -234;'858;Uruguay;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -234;'858;Uruguay;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;34;35;23;48;23;41 -234;'858;Uruguay;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;34;25;16;65;21;38 -234;'858;Uruguay;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -234;'858;Uruguay;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -234;'858;Uruguay;1654;Mechanical wood pulp (1961-2016);5510;Production;t;1000;1000;1500;1900;2200;2200;2200;2300;2700;2800;3500;2000;2500;2400;2000;2400;2400;1200;2400;1800;1500;1500;1000;1000;900;900;1000;2000;2000;1000;1300;2000;2000;2000;2000;2000;2000;2000;2000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;0;0;0;0;0;0;;;;;;; -234;'858;Uruguay;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;700;500;1000;900;600;600;100;200;400;700;800;600;400;300;300;300;300;200;200;200;300;200;200;300;250;200;200;200;200;200;700;1155;2065;1097;200;2700;2700;100;100;100;100;100;0;0;0;0;0;0;0;0;8;0;11;22;34;;;;;;; -234;'858;Uruguay;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;68;46;126;100;57;72;10;22;53;88;94;107;109;116;116;116;116;76;76;76;70;69;69;44;44;48;48;48;48;48;160;217;461;354;53;906;906;28;28;28;28;28;0;0;0;0;0;0;0;0;7;0;10;16;27;;;;;;; -234;'858;Uruguay;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;1000;1500;1900;1600;1600;1600;2800;2800;2600;3300;2400;2400;3400;2800;1900;1900;2300;2800;2600;2800;2800;3400;5800;1400;700;300;1000;1000;2000;2100;2000;2000;2000;1000;1000;4000;4000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;4000;0;0;0;0;;;;;;; -234;'858;Uruguay;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106;2159;3800;2100;2100;300;300;1700;1700;1700;325;187;187;187;187;187;0;0;0;0;0;0;0;;;;;;; -234;'858;Uruguay;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;722;1374;908;908;138;138;849;849;849;140;94;94;94;94;94;0;0;0;0;0;0;0;;;;;;; -234;'858;Uruguay;1656;Chemical wood pulp;5510;Production;t;;;;;;;500;600;800;500;300;200;200;7000;10000;10000;9800;15000;17000;19000;17000;17000;19000;21000;23000;32000;33000;25000;27000;23000;33000;32000;32000;32000;26000;26000;31000;29000;33000;29000;29000;29000;29000;32000;28000;28000;125000;961000;1060000;1110000;1085000;1150000;1240000;1910000;2412000;2604326;2644000;2543345;2618000;2792781;2770730;2711000;3510000 -234;'858;Uruguay;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;15900;9700;9300;9700;8000;11500;7200;6200;6500;8100;10000;11000;8800;5900;4200;6500;6300;6600;9500;9700;7800;5400;6000;4400;5100;5000;8800;9300;10700;16000;17000;19400;15800;14600;13000;13000;13000;15000;8000;10000;9000;26000;17000;21000;22640;19680;27463;6009;6875;6841;5529;5529;6074;13374;4265;2801 -234;'858;Uruguay;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;1521;1633;2011;2256;1697;2965;3631;3831;2397;3035;3119;5184;5098;3320;2717;2592;3007;2894;3791;5623;5521;4167;4009;3000;3681;2373;5235;6518;5234;8450;8500;10009;11647;7873;6147;6541;6541;8295;8363;7159;6948;12870;12998;16269;14755;12897;15942;4924;4641;5164;4661;4388;4023;9363;4477;3101 -234;'858;Uruguay;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1100;1000;700;1800;1800;0;0;0;0;600;600;600;600;0;0;11000;769000;1082000;1109000;1137000;1150000;1238000;1910000;2361000;2567071;2640670;2539460;2599000;2782667;2563524;2697199;3497767 -234;'858;Uruguay;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;520;440;387;1510;1510;0;0;0;0;374;374;374;374;0;0;8374;540979;508376;812538;796318;737224;814377;902625;1265039;1237373;1334291;1684875;1415990;1136380;1602665;1913554;2467324 -234;'858;Uruguay;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;0;0;0;0 -234;'858;Uruguay;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;2700;3300;2200;2600;2000;4000;3000;3100;2800;2400;3500;2100;1700;1200;1000;1900;1800;1300;1700;2700;2000;1000;1200;500;550;404;486;748;400;100;100;0;0;0;0;0;0;0;0;0;0;0;0;0;8;5;4;0;0;0;0;0;0;0;0;0 -234;'858;Uruguay;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;360;495;409;511;357;921;1292;1647;881;783;899;922;825;580;470;729;798;589;729;1481;1325;713;456;271;276;140;187;499;190;40;40;0;0;0;0;0;0;0;0;0;0;0;0;0;17;10;8;0;0;0;0;0;0;0;0;0 -234;'858;Uruguay;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -234;'858;Uruguay;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -234;'858;Uruguay;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;22000;29000;29000;22000;24000;20000;28000;27000;27000;27000;21000;21000;31000;29000;33000;29000;29000;29000;29000;32000;28000;28000;125000;961000;1060000;1110000;1085000;1150000;1240000;1910000;2412000;2604326;2644000;2543345;2618000;2792781;2770730;2711000;3510000 -234;'858;Uruguay;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;2900;2800;2900;2500;2400;1900;900;1100;2300;3600;5400;6800;5800;3400;2100;2900;2600;3000;5200;5000;3500;2700;3400;2800;4200;3900;7300;7600;10200;15800;16800;19300;15800;14600;13000;13000;13000;15000;8000;10000;9000;26000;17000;21000;22629;19669;27448;6000;6870;6826;5525;5520;6074;13374;4264;2800 -234;'858;Uruguay;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;454;491;664;627;546;537;547;635;964;1441;1864;3332;3622;2088;1712;1218;1458;1415;2067;3060;2780;2193;2687;2118;3106;1906;4366;5303;4976;8328;8378;9920;11647;7873;6147;6541;6541;8295;8363;7159;6948;12870;12998;16269;14732;12874;15913;4901;4633;5138;4654;4372;4023;9363;4473;3096 -234;'858;Uruguay;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1100;1000;700;1800;1800;0;0;0;0;600;600;600;600;0;0;11000;769000;1082000;1109000;1137000;1150000;1238000;1910000;2361000;2567071;2640670;2539460;2599000;2782667;2563524;2697198;3497766 -234;'858;Uruguay;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;520;440;387;1510;1510;0;0;0;0;374;374;374;374;0;0;8374;540979;508376;812538;796318;737224;814377;902625;1265039;1237373;1334291;1684875;1415990;1136380;1602665;1913548;2467318 -234;'858;Uruguay;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -234;'858;Uruguay;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;4;9;0;0;1;1 -234;'858;Uruguay;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;7;16;0;0;4;5 -234;'858;Uruguay;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1 -234;'858;Uruguay;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6 -234;'858;Uruguay;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;1400;900;1400;1500;1300;1900;900;300;500;600;600;600;700;500;400;400;600;800;800;700;600;500;300;200;0;200;100;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -234;'858;Uruguay;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;206;144;278;318;262;444;418;184;168;189;182;234;307;232;190;133;194;260;213;319;332;326;164;91;0;66;51;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -234;'858;Uruguay;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;1000;3000;4000;3000;3000;3000;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;;;;;;; -234;'858;Uruguay;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;8900;2700;2800;3100;2300;3700;2400;1700;900;1500;500;1500;600;800;700;1300;1300;1500;1800;1300;1700;1200;1100;900;350;496;914;952;100;100;100;100;0;0;0;0;0;0;0;0;0;0;0;0;3;6;11;9;5;;;;;;; -234;'858;Uruguay;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;501;503;660;800;532;1063;1374;1365;384;622;174;696;344;420;345;512;557;630;782;763;1084;935;702;520;299;261;631;716;68;82;82;89;0;0;0;0;0;0;0;0;0;0;0;0;6;13;21;23;8;;;;;;; -234;'858;Uruguay;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -234;'858;Uruguay;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;1300;1300;1800;1800;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;255;21;21;21;21;0;0;150;150;0;0;0;0;0;0;0;0;0;0;0;0;24;26;0;18;26;0;0;187;144;247;115 -234;'858;Uruguay;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;976;921;1307;1376;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;84;13;13;13;13;0;0;78;78;0;0;0;0;0;0;0;0;0;0;0;0;56;56;0;35;49;0;0;369;294;684;283 -234;'858;Uruguay;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;17;0;0;0;0;0;222;222 -234;'858;Uruguay;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;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;1;1;200;200 -234;'858;Uruguay;1668;Pulp from fibres other than wood;5510;Production;t;6000;2000;2000;2500;3000;3000;4000;2700;2900;4100;5500;4400;4200;4000;4000;4000;4000;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 -234;'858;Uruguay;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;16;16;26;100;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;97;93;107;96;81;45;46;57;69;67;86;63 -234;'858;Uruguay;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;15;15;13;41;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;222;195;225;170;149;85;96;111;130;139;170;139 -234;'858;Uruguay;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;2 -234;'858;Uruguay;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;4 -234;'858;Uruguay;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;56;43;36;47;45;24;11;21;20;21;49 -234;'858;Uruguay;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;49;30;26;28;31;17;14;18;17;20;33 -234;'858;Uruguay;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -234;'858;Uruguay;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -234;'858;Uruguay;1669;Recovered paper;5510;Production;t;;;;;;;;;;20000;22000;8000;10000;10000;10000;9000;16000;18000;22000;22000;20000;15000;18000;21000;30000;26000;27000;28000;27000;35000;46000;45000;45000;45000;45000;45000;32000;43000;43000;13000;13000;17000;17000;10000;15000;15000;17000;17000;18000;21000;25000;39000;41000;12000;16000;21000;73000;82000;66000;70151;76904;75000;70293 -234;'858;Uruguay;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;1200;2400;1700;1500;1300;1200;600;1500;2800;6000;3500;4100;5400;2000;10000;13000;12364;12754;6584;7139;5100;8100;11000;7300;3900;4200;4000;3000;8000;9000;4000;9000;12000;6000;15000;11000;5265;3786;4111;4997;4875;2555;2775;5540;2309;4257.47;2185;1954 -234;'858;Uruguay;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;162;302;230;222;260;377;137;166;189;711;420;716;783;336;1567;1520;1846;1704;1252;1869;938;2174;2200;1558;1092;995;693;546;4727;5823;808;2373;3715;1233;5097;3865;1815;1097;1201;1384;1204;734;847;1560;495;1228.83;525;500 -234;'858;Uruguay;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;3108;4600;3100;3100;5500;12200;17400;19000;13000;13000;15000;12000;17000;11000;12000;14000;21000;15450;14649;11837;16000;21191;15286;23353;13786;19574;14626.17;17791;18748 -234;'858;Uruguay;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98;264;724;272;272;481;1394;1758;1491;1321;1321;1622;1423;2761;2043;1744;3459;5130;3226;3319;3237;3824;4434;3262;4696;2794;3844;3481.2;5026;4076 -234;'858;Uruguay;1876;Paper and paperboard;5510;Production;t;33000;27000;28000;36500;38100;34300;34000;32200;34500;40100;41800;36700;41300;29100;29000;34800;34800;40200;55000;54600;51900;42900;46900;48900;48900;67900;66000;59000;63000;61000;75000;83000;83000;83000;86000;86000;90000;87999;92000;89318;89318;89000;89000;100000;98000;98000;90000;90000;82000;96000;96000;140000;132000;119510;130327;108000;62102;59000;54000;53100;52515;51000;54000 -234;'858;Uruguay;1876;Paper and paperboard;5610;Import quantity;t;25200;26000;21300;25700;20000;17200;16700;7300;25300;21800;23200;13300;12000;20200;16200;11800;13400;14000;15600;22800;28000;15600;9600;10700;10500;12700;13500;14600;16400;24500;24300;47203;42597;50743;44365;47400;65200;76100;79200;79200;82900;60600;56600;56600;66029;88700;77700;83300;92300;83000;82090;68914;70485;65055;58249;54268;71345;69035;64729;54848;64969.89;70380;60760 -234;'858;Uruguay;1876;Paper and paperboard;5622;Import value;1000 USD;4631;4757;3920;4895;4372;3283;3791;1399;4497;3900;4255;2785;2805;6627;6527;6307;7044;7193;8814;14489;18553;11301;6130;6520;6404;7814;9400;10096;10935;20800;19290;31296;29736;36078;36027;38303;58651;69300;65544;65544;64097;46195;44891;44891;48482;58216;69096;81620;68098;74865;90566;76451;78370;74912;64357;59825;74727;75623;69982;60308;73243.2;90626;77218 -234;'858;Uruguay;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;300;100;500;270;270;270;400;2300;3300;3300;4300;6900;7200;9400;6100;5400;8400;8000;8400;12200;11300;11500;7300;11800;21500;22692;20564;19808;5598;20003;31903;34003;37900;37900;36600;46800;46800;46800;42775;41300;38100;37100;34100;38450;36350;40529;36839;43188;46190;30043;6240;3039;2987;2957;2974;319;134 -234;'858;Uruguay;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;63;11;108;59;59;59;213;1574;2367;2222;2711;4165;6535;10381;7663;4579;6646;7066;6971;9846;10744;10743;6365;8480;16826;16322;14586;14854;4770;20407;32688;34303;31686;31686;33462;34595;34015;34015;38615;36316;36242;40040;31387;40807;41707;46118;42970;52104;55737;30297;7338;3365;3941;5840;5943;496;163 -234;'858;Uruguay;2042;Graphic papers;5510;Production;t;11000;9000;9000;11300;12600;9300;9300;10200;11400;14500;14000;11500;13600;10900;10800;11300;11300;17600;24900;25400;23000;19000;18000;25000;15000;27000;32000;27000;25000;16000;26000;26000;26000;26000;28000;28000;43000;48000;47000;49000;49000;49000;49000;53000;51000;51000;48000;48000;43000;51000;51000;57000;53000;57000;56600;45000;0;0;0;4100;0;0;0 -234;'858;Uruguay;2042;Graphic papers;5610;Import quantity;t;24200;24800;20500;24200;18500;16200;15200;6600;23900;20900;22200;12700;11100;16600;11400;10900;12500;13000;14600;19300;25600;14200;8900;10000;9400;10500;12400;12700;14200;22300;18500;30603;25272;26204;16404;13700;27400;28100;31700;31700;35600;23000;21000;21000;32000;44000;32000;33000;32000;35000;39000;34289;40022;37126;30169;28832;41190;40045;35415;27777;31607.07;36119;29156 -234;'858;Uruguay;2042;Graphic papers;5622;Import value;1000 USD;4031;4137;3410;3935;3472;2576;2511;1099;3905;3438;3745;2450;2286;4683;5138;5348;6107;6106;7735;11284;15655;9311;4944;5409;4638;5274;7500;8796;9735;18348;14296;19571;17020;19358;12843;11311;22876;24300;24201;24201;28105;14631;14270;14270;25360;28829;28035;32197;23475;33394;41229;36003;39622;36658;28636;26643;37616;38428;34328;25874;31794.17;44223;34758 -234;'858;Uruguay;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;1000;900;3500;5500;5700;8400;5500;4700;7700;7300;7300;9400;9400;10200;6100;5700;11100;8692;8275;8709;952;17903;25903;26003;28300;28300;32900;41500;41500;41500;39500;40000;37000;36000;33000;37000;35000;40204;35352;39154;42143;28716;2100;249;14;4;10;219;80 -234;'858;Uruguay;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;793;603;2377;3415;5523;9434;7016;3801;5902;6225;6225;7563;9136;9987;5669;5272;11261;8309;7837;8329;1350;18950;28690;29003;25730;25730;30976;31189;30949;30949;32976;35504;35483;39281;30628;39615;40215;45634;41113;46320;49833;28523;1910;490;31;9;7;236;85 -234;'858;Uruguay;1671;Newsprint;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -234;'858;Uruguay;1671;Newsprint;5610;Import quantity;t;23700;23600;19800;23600;17900;16100;15100;6500;23700;20800;22100;12600;11000;16500;10600;10600;12100;12600;13600;15200;21800;13100;8600;9500;8900;9200;10400;10500;12000;17400;12500;13430;14943;15096;12514;10300;10000;9100;11400;11400;11600;8000;7000;7000;9000;9000;8000;10000;9000;9000;9000;8471;8636;8067;7129;6149;5581;5920;4380;3283;2907.41;3229;2571 -234;'858;Uruguay;1671;Newsprint;5622;Import value;1000 USD;3851;3787;3179;3676;3213;2541;2474;1028;3780;3347;3643;2358;2235;4527;4805;4803;5380;5488;6502;8635;11686;8484;4603;5000;4229;4049;5482;6467;7547;13455;8320;7828;8405;8413;8596;7337;6046;6000;6896;6896;6941;4077;3529;3529;5823;6259;5588;7985;6113;6045;7132;6257;6153;5623;4516;3610;3216;3817;2682;1547;1713.34;2751;2117 -234;'858;Uruguay;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;;0;3;3;3;3;0;0;500;500;500;500;500;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;10;0;0 -234;'858;Uruguay;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;173;;0;3;3;3;3;0;0;497;497;497;497;497;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;7;0;0 -234;'858;Uruguay;1674;Printing and writing papers;5510;Production;t;11000;9000;9000;11300;12600;9300;9300;10200;11400;14500;14000;11500;13600;10900;10800;11300;11300;17600;24900;25400;23000;19000;18000;25000;15000;27000;32000;27000;25000;16000;26000;26000;26000;26000;28000;28000;43000;48000;47000;49000;49000;49000;49000;53000;51000;51000;48000;48000;43000;51000;51000;57000;53000;57000;56600;45000;0;0;0;4100;0;0;0 -234;'858;Uruguay;1674;Printing and writing papers;5610;Import quantity;t;500;1200;700;600;600;100;100;100;200;100;100;100;100;100;800;300;400;400;1000;4100;3800;1100;300;500;500;1300;2000;2200;2200;4900;6000;17173;10329;11108;3890;3400;17400;19000;20300;20300;24000;15000;14000;14000;23000;35000;24000;23000;23000;26000;30000;25818;31386;29059;23040;22683;35609;34125;31035;24494;28699.66;32890;26585 -234;'858;Uruguay;1674;Printing and writing papers;5622;Import value;1000 USD;180;350;231;259;259;35;37;71;125;91;102;92;51;156;333;545;727;618;1233;2649;3969;827;341;409;409;1225;2018;2329;2188;4893;5976;11743;8615;10945;4247;3974;16830;18300;17305;17305;21164;10554;10741;10741;19537;22570;22447;24212;17362;27349;34097;29746;33469;31035;24120;23033;34400;34611;31646;24327;30080.83;41472;32641 -234;'858;Uruguay;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;1000;900;3500;5500;5700;8400;5500;4700;7700;7300;7300;9400;9400;10200;6100;5700;11100;8392;8275;8709;949;17900;25900;26000;28300;28300;32400;41000;41000;41000;39000;40000;37000;36000;33000;37000;35000;40204;35352;39154;42143;28716;2100;249;14;1;0;219;80 -234;'858;Uruguay;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;793;603;2377;3415;5523;9434;7016;3801;5902;6225;6225;7563;9136;9987;5669;5272;11261;8136;7837;8329;1347;18947;28687;29000;25730;25730;30479;30692;30452;30452;32479;35504;35483;39281;30628;39615;40215;45634;41113;46320;49833;28523;1910;490;31;6;0;236;85 -234;'858;Uruguay;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -234;'858;Uruguay;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9104;9727;9727;11500;6000;3000;3000;8000;17000;7000;7000;7000;6000;6000;3160;3160;1615;1638;0;0;0;0;303;598;174;131 -234;'858;Uruguay;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7723;7303;7303;8932;3247;1856;1856;5683;5795;5077;5958;5218;4490;5457;2873;2873;1365;1353;0;0;0;0;232;457.3;187;129 -234;'858;Uruguay;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;0;0;0;0;0;0;0;0;0;4;4 -234;'858;Uruguay;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;4;0;0;0;0;0;0;0;0;0;3;3 -234;'858;Uruguay;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20000;20000;20000;20000;20000;20000;17000;17000;17000;16000;16000;15000;17000;20000;20000;19000;21000;17800;14000;0;0;0;0;0;0;0 -234;'858;Uruguay;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5304;5667;5667;6700;7000;6000;6000;8000;8000;8000;8000;8000;10000;8000;7755;8750;8968;7405;8396;19270;17752;17330;13760;14627.51;16537;15018 -234;'858;Uruguay;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5464;5167;5167;6319;5684;4763;4763;6964;7412;8055;9813;8460;11718;10244;10317;10164;10384;8573;9092;19082;18329;18166;13753;14843.31;18271;16811 -234;'858;Uruguay;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6580;7162;7162;8200;11000;8000;8000;7000;10000;5000;3000;8000;7000;9000;8000;5369;6994;6595;6155;90;1;14;1;0;215;76 -234;'858;Uruguay;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6916;6136;6136;7269;7314;5511;5511;5501;7677;4800;3417;7154;7994;9344;8856;6349;8898;8041;5966;89;1;31;6;0;233;81 -234;'858;Uruguay;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28000;27000;29000;29000;29000;29000;36000;34000;34000;32000;32000;28000;34000;31000;37000;34000;36000;38800;31000;0;0;0;4100;0;0;0 -234;'858;Uruguay;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4592;4906;4906;5800;2000;5000;5000;7000;10000;9000;8000;8000;10000;16000;14903;19476;18476;13997;14287;16339;16373;13705;10431;13474.16;16179;11436 -234;'858;Uruguay;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5113;4835;4835;5913;1623;4122;4122;6890;9363;9315;8441;3684;11141;18396;16556;20432;19286;14194;13941;15318;16282;13480;10342;14780.22;23014;15701 -234;'858;Uruguay;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19420;21138;21138;24200;30000;33000;33000;32000;30000;32000;33000;25000;30000;26000;32203;29983;32160;35548;22561;2010;248;0;0;0;0;0 -234;'858;Uruguay;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22084;19594;19594;23210;23378;24941;24941;26978;27827;30683;35864;23474;31621;30871;36774;34764;37422;41792;22557;1821;489;0;0;0;0;1 -234;'858;Uruguay;1675;Other paper and paperboard;5510;Production;t;22000;18000;19000;25200;25500;25000;24700;22000;23100;25600;27800;25200;27700;18200;18200;23500;23500;22600;30100;29200;28900;23900;28900;23900;33900;40900;34000;32000;38000;45000;49000;57000;57000;57000;58000;58000;47000;39999;45000;40318;40318;40000;40000;47000;47000;47000;42000;42000;39000;45000;45000;83000;79000;62510;73727;63000;62102;59000;54000;49000;52515;51000;54000 -234;'858;Uruguay;1675;Other paper and paperboard;5610;Import quantity;t;1000;1200;800;1500;1500;1000;1500;700;1400;900;1000;600;900;3600;4800;900;900;1000;1000;3500;2400;1400;700;700;1100;2200;1100;1900;2200;2200;5800;16600;17325;24539;27961;33700;37800;48000;47500;47500;47300;37600;35600;35600;34029;44700;45700;50300;60300;48000;43090;34625;30463;27929;28080;25436;30155;28990;29314;27071;33362.82;34261;31604 -234;'858;Uruguay;1675;Other paper and paperboard;5622;Import value;1000 USD;600;620;510;960;900;707;1280;300;592;462;510;335;519;1944;1389;959;937;1087;1079;3205;2898;1990;1186;1111;1766;2540;1900;1300;1200;2452;4994;11725;12716;16720;23184;26992;35775;45000;41343;41343;35992;31564;30621;30621;23122;29387;41061;49423;44623;41471;49337;40448;38748;38254;35721;33182;37111;37195;35654;34434;41449.03;46403;42460 -234;'858;Uruguay;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;300;100;500;270;270;270;400;2300;2300;2400;800;1400;1500;1000;600;700;700;700;1100;2800;1900;1300;1200;6100;10400;14000;12289;11099;4646;2100;6000;8000;9600;9600;3700;5300;5300;5300;3275;1300;1100;1100;1100;1450;1350;325;1487;4034;4047;1327;4140;2790;2973;2953;2964;100;54 -234;'858;Uruguay;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;63;11;108;59;59;59;213;1574;1574;1619;334;750;1012;947;647;778;744;841;746;2283;1608;756;696;3208;5565;8013;6749;6525;3420;1457;3998;5300;5956;5956;2486;3406;3066;3066;5639;812;759;759;759;1192;1492;484;1857;5784;5904;1774;5428;2875;3910;5831;5936;260;78 -234;'858;Uruguay;1676;Household and sanitary papers;5510;Production;t;;;;;;2800;2800;3000;3100;3700;4500;5700;5600;5700;5700;3600;3600;4700;5800;5700;5000;6000;5000;4000;5000;6000;6000;5000;9000;8000;8000;13000;13000;13000;16000;16000;17000;12000;10000;11000;11000;11000;11000;13000;12000;12000;12000;12000;12000;14000;14000;33000;31000;26000;22622;25000;28102;26000;22000;20000;18506;18000;18000 -234;'858;Uruguay;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;400;400;400;400;400;400;400;5000;3000;2000;90;313;528;258;520;329;501;725;846;1448;2002;3098;3801 -234;'858;Uruguay;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;527;527;527;527;527;527;527;6895;4115;3738;120;634;988;441;732;358;620;897;792;1277;1956;3397;4539 -234;'858;Uruguay;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1300;2000;2000;2000;2000;1000;1000;1000;1000;1000;1000;186;1462;4000;3952;1034;3467;1136;2864;2580;2580;16;17 -234;'858;Uruguay;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;738;1068;728;728;728;594;680;680;680;847;1217;226;1796;5690;5759;1443;4888;1789;3806;5504;5504;27;26 -234;'858;Uruguay;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22999;29000;22318;22318;22000;22000;27000;28000;28000;24000;24000;18000;21000;21000;42000;41000;30510;45105;38000;34000;33000;32000;29000;34000;33000;36000 -234;'858;Uruguay;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42100;35200;30200;30200;31311;43300;44300;44300;56300;45000;42000;33776;29386;27070;27099;24579;29174;27791;28062;25302;31003.83;30795;27500 -234;'858;Uruguay;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28776;26936;24766;24766;17075;26427;38249;39722;38156;34923;46407;36929;34729;34149;32137;29558;33581;33114;32153;30276;36631;40038;35162 -234;'858;Uruguay;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2200;3200;3200;3200;106;300;100;100;100;450;350;118;20;33;87;292;671;1651;109;369;375;76;35 -234;'858;Uruguay;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1546;2161;2161;2161;89;218;79;79;79;345;275;148;38;87;99;321;524;1062;104;309;392;175;30 -234;'858;Uruguay;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;7100;7100;7300;10100;14000;14000;12300;12300;12400;12400;16000;16000;14000;20400;19600;20000;14000;20000;16000;25000;31000;27000;25000;26000;30000;40000;43000;43000;43000;42000;42000;27000;;;;;;;;;;;;;;;;;;;;;;;;;; -234;'858;Uruguay;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;;;;;;100;100;100;100;100;100;200;300;500;300;100;100;100;100;100;200;100;100;400;400;500;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;; -234;'858;Uruguay;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;45;123;59;113;121;140;288;504;720;460;188;205;150;108;84;194;144;155;343;327;350;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;; -234;'858;Uruguay;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;;;;;;;;;100;200;500;800;400;300;300;400;500;800;800;1600;600;100;1300;5800;6000;5000;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;; -234;'858;Uruguay;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;;;;45;172;430;682;275;311;315;443;611;520;520;780;235;102;815;2964;3236;3000;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;; -234;'858;Uruguay;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16727;21091;16000;16000;16000;16000;22000;23000;23000;19000;19000;14000;16000;16000;2000;2000;1200;2200;2000;8000;7000;7000;6000;0;0;0 -234;'858;Uruguay;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30000;20000;15000;15000;23000;29000;21000;26000;16000;31000;28000;24785;19187;17175;15816;13531;18181;17605;17714;14332;19647.14;18935;15781 -234;'858;Uruguay;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12025;7833;5940;5940;11735;13494;12142;17301;9686;21073;20935;18468;14828;13298;11467;8748;12616;13003;12388;9133;14938.99;17506;12704 -234;'858;Uruguay;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;0;0;0;429;1546;0;117;117;34;34 -234;'858;Uruguay;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;0;0;0;237;962;0;78;78;26;26 -234;'858;Uruguay;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1045;1318;1318;1318;1000;1000;0;0;0;0;0;0;0;0;34000;34000;24700;37295;34000;26000;26000;25000;23000;34000;33000;36000 -234;'858;Uruguay;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9900;9900;9900;9900;7000;12000;12000;12000;11000;10000;10000;6594;6870;5660;6340;6654;6527;6013;6163;6392;5401;5747;5829 -234;'858;Uruguay;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14885;14885;14885;14885;4089;10505;16705;16705;8017;10057;21610;15776;16345;16468;15739;16587;16575;15366;15160;16786;15892;15992;16183 -234;'858;Uruguay;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;0;0;0;0;23;0;0;93;1;3;1 -234;'858;Uruguay;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;0;0;0;0;58;0;0;22;2;93;4 -234;'858;Uruguay;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;3000;2834;3834;2000;0;0;0;0;0;0;0 -234;'858;Uruguay;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1900;5000;5000;5000;1011;2000;11000;6000;29000;3000;3000;2071;2912;3848;4610;4015;4073;3922;3950;4471;5868.69;5913;5710 -234;'858;Uruguay;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1745;4097;3820;3820;1130;2307;9281;5595;20332;3411;3484;2408;3231;4089;4709;3943;4113;4565;4447;4269;5714.01;6360;6134 -234;'858;Uruguay;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2200;2200;2200;2200;106;300;100;100;100;450;350;64;20;33;87;292;219;105;109;159;257;39;0 -234;'858;Uruguay;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1546;1546;1546;1546;89;218;79;79;79;345;275;84;38;87;99;321;229;100;104;209;312;56;0 -234;'858;Uruguay;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5227;6591;5000;5000;5000;5000;5000;5000;5000;5000;5000;4000;5000;5000;2000;2000;1776;1776;0;0;0;0;0;0;0;0 -234;'858;Uruguay;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;300;300;300;300;300;300;300;300;1000;1000;326;417;387;333;379;393;251;235;107;87;200;180 -234;'858;Uruguay;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121;121;121;121;121;121;121;121;121;382;378;277;325;294;222;280;277;180;158;88;86;180;141 -234;'858;Uruguay;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -234;'858;Uruguay;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;615;615;615;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -234;'858;Uruguay;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;22000;18000;19000;25200;25500;15100;14800;11700;9900;7900;9300;7200;9800;100;100;3900;3900;3900;3900;3900;3900;3900;3900;3900;3900;3900;1000;2000;3000;7000;1000;1000;1000;1000;0;0;3000;5000;6000;7000;7000;7000;7000;7000;7000;7000;6000;6000;9000;10000;10000;8000;7000;6000;6000;0;0;0;0;0;9;0;0 -234;'858;Uruguay;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;1000;1200;800;1500;1500;1000;1500;700;1400;900;1000;600;800;3500;4700;800;800;900;800;3200;1900;1100;600;600;1000;2100;1000;1700;2100;2100;5400;16200;16825;24539;27961;33700;37800;48000;47500;47500;4800;2000;5000;5000;2318;1000;1000;1000;1000;1000;1000;536;549;601;461;528;480;474;406;321;357;368;303 -234;'858;Uruguay;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;600;620;510;960;900;707;1280;300;592;462;510;335;474;1821;1330;846;816;947;791;2701;2178;1530;998;906;1616;2432;1816;1106;1056;2297;4651;11398;12366;16720;23184;26992;35775;45000;41343;41343;6689;4101;5328;5328;5520;2433;2285;2806;2352;2810;2810;2885;3031;3664;2852;3266;2910;3184;2709;2881;2862.03;2968;2759 -234;'858;Uruguay;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;300;100;500;270;270;270;400;2300;2300;2300;600;900;700;600;300;400;300;200;300;2000;300;700;1100;4800;4600;8000;7289;11099;4646;2100;6000;8000;9600;9600;200;100;100;100;1169;0;0;0;0;0;0;21;5;1;8;1;2;3;0;4;9;8;2 -234;'858;Uruguay;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;63;11;108;59;59;59;213;1574;1574;1574;162;320;330;672;336;463;301;230;226;1763;828;521;594;2393;2601;4777;3749;6525;3420;1457;3998;5300;5956;5956;202;177;177;177;4822;0;0;0;0;0;0;110;23;7;46;10;16;24;0;18;40;58;22 -234;'858;Uruguay;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67415;72850;68599;67777;89678;90453;102338 -234;'858;Uruguay;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3096;4111;4164;3353;4343;3716;2257 -234;'858;Uruguay;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1517;1603;1618;1783;2282;3441;2937 -234;'858;Uruguay;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;17;17;17;17 -234;'858;Uruguay;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;568;472;352;451;438;723;790 -234;'858;Uruguay;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -234;'858;Uruguay;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;949;1131;1266;1332;1844;2718;2147 -234;'858;Uruguay;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;17;17;17;17 -234;'858;Uruguay;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;949;1142;1318;898;1017;2044;1812 -234;'858;Uruguay;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;210;555;941;864;1899;2077;1565 -234;'858;Uruguay;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1382;1561;1213;1226;1520;1702;1313 -234;'858;Uruguay;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;44;17;15;18;739;36 -234;'858;Uruguay;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3788;4747;4723;7236;7698;7025;7900 -234;'858;Uruguay;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;1;0;537;3;41;61 -234;'858;Uruguay;1636;Glue-laminated timber (glulam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;357 -234;'858;Uruguay;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;98 -234;'858;Uruguay;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;86 -234;'858;Uruguay;1688;Cross-laminated timber (CLT or X-lam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1221 -234;'858;Uruguay;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;115 -234;'858;Uruguay;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;167 -234;'858;Uruguay;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56993;60854;57220;54652;74341;73010;85307 -234;'858;Uruguay;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2753;3470;3177;1903;2369;824;518 -234;'858;Uruguay;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;377;196;321;224;381;472;378 -234;'858;Uruguay;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;1;1 -234;'858;Uruguay;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2409;2747;2186;1758;2439;2759;2691 -234;'858;Uruguay;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;24;12;17;37;17;59 -234;'858;Uruguay;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78112;82229;79303;71482;83336;98813;102973 -234;'858;Uruguay;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19559;22565;19945;13564;14875;22672;21042 -234;'858;Uruguay;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;141;158;294;170;228;226;36 -234;'858;Uruguay;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8369;9375;8910;7146;8243;10979;9106 -234;'858;Uruguay;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;10;9;9;0;52;5 -234;'858;Uruguay;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13778;14688;15027;13615;16608;23699;27109 -234;'858;Uruguay;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8155;9101;7629;5439;5906;12083;14859 -234;'858;Uruguay;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39844;42238;39126;35637;41674;42466;44468 -234;'858;Uruguay;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10959;13061;11979;8069;8895;10439;6064 -234;'858;Uruguay;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15980;15770;15946;14914;16583;21443;22254 -234;'858;Uruguay;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;444;393;328;47;74;98;114 -228;'810;USSR;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;81800;75087;70979;73944;80237;85658;103115;151645;168296;198722;205377;223258;268989;356972;569099;518994;546375;551736;601723;843750;987208;963324;839876;828500;902120;751940;721700;980459;1160668;931974;916219;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;329367;379780;389793;475333;548422;588942;579624;688375;731186;839532;874171;945869;1401174;1914041;1862897;2021465;2301192;2356015;2585210;2702500;2602381;2477977;2618295;2624690;2688031;2988484;3023770;3894249;3801637;3035410;2667657;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1861;Roundwood;5516;Production;m3;351000000;352700008;369600000;385300000;378139024;372415008;383000000;380400000;374200000;385000000;384700000;382900000;387800000;388500000;395100000;384500000;376700000;361400000;354000000;356600000;358200000;355900000;355700000;367900000;368000000;373900000;385500000;386450000;386450000;386400000;356400000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1861;Roundwood;5616;Import quantity;m3;152400;153200;3700;79500;36800;20800;50200;53900;95900;94100;114100;165200;225100;270000;286200;234800;264200;224500;207900;254800;315600;233000;218000;214000;247200;198000;203200;216800;195000;5154;32177;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1861;Roundwood;5622;Import value;1000 USD;2198;2174;307;1600;1064;1144;2364;2111;3477;2845;4159;6077;26177;23608;21925;27737;31266;27086;27332;35200;51338;28524;26500;25900;32020;25040;26100;37515;30926;474;7319;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1861;Roundwood;5916;Export quantity;m3;5481500;7266900;7794400;8923000;10577700;12109500;11984900;12351400;13230100;14957200;14301900;14345500;17909300;17643300;16170700;17331000;17355800;16799700;14853000;13487600;13335900;12785600;14640600;15134500;14938400;17470000;18615600;19493600;17879600;10707565;10623643;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1861;Roundwood;5922;Export value;1000 USD;79471;112210;103143;128303;168150;184253;186218;218407;223344;266595;273671;288712;532175;707681;599376;596290;703548;665872;829692;797800;705098;592164;677504;698518;692050;815100;832500;1097589;1010070;783187;692734;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1862;Roundwood, coniferous;5516;Production;m3;288670000;289605008;303150000;315680000;310114016;305995008;316650000;315420000;310550000;320600000;320350000;318980000;324650000;325240000;331060000;321700000;315100000;302300000;295700000;297700000;298700000;296000000;296600000;306200000;306000000;312600000;321700000;323850000;323850000;323800000;293800000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1863;Roundwood, non-coniferous;5516;Production;m3;62330000;63095000;66450000;69620000;68025008;66420000;66350000;64980000;63650000;64400000;64350000;63920000;63150000;63260000;64040000;62800000;61600000;59100000;58300000;58900000;59500000;59900000;59100000;61700000;62000000;61300000;63800000;62600000;62600000;62600000;62600000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1864;Wood fuel;5516;Production;m3;97700000;97000000;102300000;108400000;105100016;101700000;96100000;90500000;87900000;86500000;86400000;85300000;83500000;84800000;82200000;82400000;80700000;77800000;78100000;78900000;80900000;83300000;80300000;85100000;86800000;80700000;86300000;81100000;81100000;81100000;81100000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1864;Wood fuel;5616;Import quantity;m3;;;;58800;17700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1864;Wood fuel;5622;Import value;1000 USD;;;;500;150;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1627;Wood fuel, coniferous;5516;Production;m3;63500000;63050000;66500000;70460000;68315008;66100000;62460000;58800000;57100000;56200000;56150000;55400000;54300000;55100000;53400000;53600000;52500000;50600000;50800000;51300000;52600000;54100000;52200000;55300000;56400000;52400000;56100000;52700000;52700000;52700000;52700000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1628;Wood fuel, non-coniferous;5516;Production;m3;34200000;33950000;35800000;37940000;36785008;35600000;33640000;31700000;30800000;30300000;30250000;29900000;29200000;29700000;28800000;28800000;28200000;27200000;27300000;27600000;28300000;29200000;28100000;29800000;30400000;28300000;30200000;28400000;28400000;28400000;28400000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;58800;17700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;500;150;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1865;Industrial roundwood;5516;Production;m3;253300000;255700008;267300000;276900000;273039008;270715008;286900000;289900000;286300000;298500000;298300000;297600000;304300000;303700000;312900000;302100000;296000000;283600000;275900000;277700000;277300000;272600000;275400000;282800000;281200000;293200000;299200000;305350000;305350000;305300000;275300000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1865;Industrial roundwood;5616;Import quantity;m3;152400;153200;3700;20700;19100;20800;50200;53900;95900;94100;114100;165200;225100;270000;286200;234800;264200;224500;207900;254800;315600;233000;218000;214000;247200;198000;203200;216800;195000;5154;32177;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1865;Industrial roundwood;5622;Import value;1000 USD;2198;2174;307;1100;914;1144;2364;2111;3477;2845;4159;6077;26177;23608;21925;27737;31266;27086;27332;35200;51338;28524;26500;25900;32020;25040;26100;37515;30926;474;7319;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1865;Industrial roundwood;5916;Export quantity;m3;5481500;7266900;7794400;8923000;10577700;12109500;11984900;12351400;13230100;14957200;14301900;14345500;17909300;17643300;16170700;17331000;17355800;16799700;14853000;13487600;13335900;12785600;14640600;15134500;14938400;17470000;18615600;19493600;17879600;10707565;10623643;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1865;Industrial roundwood;5922;Export value;1000 USD;79471;112210;103143;128303;168150;184253;186218;218407;223344;266595;273671;288712;532175;707681;599376;596290;703548;665872;829692;797800;705098;592164;677504;698518;692050;815100;832500;1097589;1010070;783187;692734;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1866;Industrial roundwood, coniferous;5516;Production;m3;225170000;226555008;236650000;245220000;241799008;239895008;254190000;256620000;253450000;264400000;264200000;263580000;270350000;270140000;277660000;268100000;262600000;251700000;244900000;246400000;246100000;241900000;244400000;250900000;249600000;260200000;265600000;271150000;271150000;271100000;241100000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2806;205;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;258;51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6484530;6394708;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;577612;497290;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2806;205;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;258;51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6484530;6394708;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;577612;497290;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1867;Industrial roundwood, non-coniferous;5516;Production;m3;28130000;29145000;30650000;31680000;31240000;30820000;32710000;33280000;32850000;34100000;34100000;34020000;33950000;33560000;35240000;34000000;33400000;31900000;31000000;31300000;31200000;30700000;31000000;31900000;31600000;33000000;33600000;34200000;34200000;34200000;34200000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2348;31972;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;216;7268;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4223035;4228935;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;205575;195444;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31272;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7203;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2348;700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;216;65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4223035;4228935;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;205575;195444;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1868;Sawlogs and veneer logs;5516;Production;m3;172100000;172400000;175800000;182100000;144200000;142300000;153900000;156800000;158000000;167000000;167000000;167000000;163000000;162000000;171000000;165000000;162000000;155000000;151000000;152000000;152000000;149400000;150900000;155000000;154100000;162400000;166000000;167300000;167300000;167300000;137300000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1868;Sawlogs and veneer logs;5616;Import quantity;m3;;;;20700;19100;20800;50200;53900;95900;94100;114100;165200;225100;270000;286200;234800;264200;224500;207900;254800;315600;233000;218000;214000;247200;198000;203200;216800;195000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;;;;1100;914;1144;2364;2111;3477;2845;4159;6077;26177;23608;21925;27737;31266;27086;27332;35200;51338;28524;26500;25900;32020;25040;26100;37515;30926;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1868;Sawlogs and veneer logs;5916;Export quantity;m3;1889300;2503800;2692200;3290300;4644100;4899100;4915700;6023400;6252600;7448500;7291200;7820900;9911000;9415800;8498000;9192000;9434400;9472100;7804100;6581700;6268200;6239600;7449700;7740000;7814000;9309000;9084600;8838600;7474600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;32204;49356;44889;58867;88130;90991;93991;134009;131736;161038;166490;184901;386674;484046;362019;374911;477091;452483;598832;526200;428684;349448;418904;435500;438600;523800;511500;678705;613525;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;148350000;148610000;151500000;157000000;124000000;122400000;132350000;134850000;135900000;143650000;143650000;143650000;140200000;139540000;147060000;141900000;139300000;133300000;129900000;130700000;130700000;128500000;129800000;133300000;132600000;139700000;142800000;144000000;144000000;144000000;114000000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;;;;;;;;;10000;25600;21400;47000;63600;111800;108600;64700;44900;53100;51900;59800;58000;56000;54000;54000;40200;40000;39300;39300;39300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;;;;;;;;;160;410;494;1166;1740;2937;2901;2261;1623;2054;2312;3000;2900;2800;2700;2700;2020;2040;2100;2100;2100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;1827300;2446100;2628400;3218600;4569400;4793800;4807400;5908400;6158300;7350700;7200600;7730400;9800300;9296000;8412000;9095000;9360600;9401600;7729500;6514000;6197600;6183000;7378000;7670000;7756000;9243000;9011000;8765000;7401000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;30095;47339;42722;56506;85701;87935;91067;130973;128970;157985;163452;181495;381971;478159;357626;368912;472125;447345;593482;521100;423384;344920;413168;429500;433600;518000;505000;672205;607025;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;23750000;23790000;24300000;25100000;20200000;19900000;21550000;21950000;22100000;23350000;23350000;23350000;22800000;22460000;23940000;23100000;22700000;21700000;21100000;21300000;21300000;20900000;21100000;21700000;21500000;22700000;23200000;23300000;23300000;23300000;23300000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;;;;20700;19100;20800;50200;53900;85900;68500;92700;118200;161500;158200;177600;170100;219300;171400;156000;195000;257600;177000;164000;160000;207000;158000;163900;177500;155700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;;;;1100;914;1144;2364;2111;3317;2435;3665;4911;24437;20671;19024;25476;29643;25032;25020;32200;48438;25724;23800;23200;30000;23000;24000;35415;28826;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;62000;57700;63800;71700;74700;105300;108300;115000;94300;97800;90600;90500;110700;119800;86000;97000;73800;70500;74600;67700;70600;56600;71700;70000;58000;66000;73600;73600;73600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;2109;2017;2167;2361;2429;3056;2924;3036;2766;3053;3038;3406;4703;5887;4393;5999;4966;5138;5350;5100;5300;4528;5736;6000;5000;5800;6500;6500;6500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5616;Import quantity;m3;150100;151000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5622;Import value;1000 USD;2040;2000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5916;Export quantity;m3;2328900;3259000;3492300;4045700;4183700;5468100;5504900;4742400;5375500;5982200;5560000;5246600;6662400;6844000;6186000;6784000;6560500;6018700;5982300;5736000;5831800;5377000;6319000;6677000;6425000;7337000;8776000;9836000;9753000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5922;Export value;1000 USD;29288;41028;37328;47726;53324;64823;65207;56965;64222;77679;79513;76730;111993;174294;186646;175432;173862;160350;175186;212200;210312;184492;215000;227018;218450;250000;281000;382150;367458;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1870;Pulpwood and particles (1961-1997);5516;Production;m3;18000000;17000000;19000000;20000000;20124000;21164000;27300000;28000000;30000000;33000000;34000000;35000000;45700000;46200000;42700000;41200000;40400000;38700000;37600000;37800000;37700000;37100000;37500000;38500000;38300000;40400000;41200000;41600000;41600000;41600000;41600000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1870;Pulpwood and particles (1961-1997);5616;Import quantity;m3;150100;151000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1870;Pulpwood and particles (1961-1997);5622;Import value;1000 USD;2040;2000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1870;Pulpwood and particles (1961-1997);5916;Export quantity;m3;2328900;3259000;3492300;4045700;4183700;5468100;5504900;4742400;5375500;5982200;5560000;5246600;6662400;6844000;6186000;6784000;6560500;6018700;5982300;5736000;5831800;5377000;6319000;6677000;6425000;7337000;8776000;9836000;9753000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1870;Pulpwood and particles (1961-1997);5922;Export value;1000 USD;29288;41028;37328;47726;53324;64823;65207;56965;64222;77679;79513;76730;111993;174294;186646;175432;173862;160350;175186;212200;210312;184492;215000;227018;218450;250000;281000;382150;367458;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;18000000;17000000;19000000;20000000;20124000;21164000;27300000;28000000;30000000;33000000;34000000;35000000;45700000;46200000;42700000;41200000;40400000;38700000;37600000;37800000;37700000;37100000;37500000;38500000;38300000;40400000;41200000;41600000;41600000;41600000;41600000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1871;Other industrial roundwood;5516;Production;m3;63200000;66300008;72500000;74800000;108715008;107251008;105700000;105100000;98300000;98500000;97300000;95600000;95600000;95500000;99200000;95900000;93600000;89900000;87300000;87900000;87600000;86100000;87000000;89300000;88800000;90400000;92000000;96450000;96450000;96400000;96400000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1871;Other industrial roundwood;5616;Import quantity;m3;2300;2200;3700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1871;Other industrial roundwood;5622;Import value;1000 USD;158;174;307;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1871;Other industrial roundwood;5916;Export quantity;m3;1263300;1504100;1609900;1587000;1749900;1742300;1564300;1585600;1602000;1526500;1450700;1278000;1335900;1383500;1486700;1355000;1360900;1308900;1066600;1169900;1235900;1169000;871900;717500;699400;824000;755000;819000;652000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1871;Other industrial roundwood;5922;Export value;1000 USD;17979;21826;20926;21710;26696;28439;27020;27433;27386;27878;27668;27081;33508;49341;50711;45947;52595;53039;55674;59400;66102;58224;43600;36000;35000;41300;40000;36734;29087;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;58820000;60945008;66150000;68220000;97675008;96331008;94540000;93770000;87550000;87750000;86550000;84930000;84450000;84400000;87900000;85000000;82900000;79700000;77400000;77900000;77700000;76300000;77100000;79100000;78700000;80100000;81600000;85550000;85550000;85500000;85500000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;4380000;5355000;6350000;6580000;11040000;10920000;11160000;11330000;10750000;10750000;10750000;10670000;11150000;11100000;11300000;10900000;10700000;10200000;9900000;10000000;9900000;9800000;9900000;10200000;10100000;10300000;10400000;10900000;10900000;10900000;10900000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;2300;2200;3700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;158;174;307;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;1263300;1504100;1609900;1587000;1749900;1742300;1564300;1585600;1602000;1526500;1450700;1278000;1335900;1383500;1486700;1355000;1360900;1308900;1066600;1169900;1235900;1169000;871900;717500;699400;824000;755000;819000;652000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;17979;21826;20926;21710;26696;28439;27020;27433;27386;27878;27668;27081;33508;49341;50711;45947;52595;53039;55674;59400;66102;58224;43600;36000;35000;41300;40000;36734;29087;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;19000;11000;27000;19000;23000;22000;51000;226000;226000;226000;226000;482000;547000;552000;425000;385000;370000;360000;652000;770000;800000;552000;501000;501000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;170;110;253;210;260;275;715;2800;2800;2800;2800;6748;9300;11000;8500;7700;7400;17313;25404;25785;30292;38324;33656;33656;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1620;Wood residues;5916;Export quantity;m3;;19000;51000;431000;776000;867000;900000;940000;603000;561400;744000;617000;1039700;1270000;1499000;1499000;1499000;1499000;1100000;800000;600000;400000;322000;253000;240000;332000;300000;300000;300000;300000;300000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1620;Wood residues;5922;Export value;1000 USD;;130;350;3000;5500;6100;6300;6600;5000;6030;8550;7400;15300;22800;28000;28000;28000;28000;20900;16800;13800;10000;8100;6800;6700;8300;8000;8100;8200;8300;8500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1872;Sawnwood;5516;Production;m3;108890016;108960016;110860000;115450008;115490008;111110008;113300008;114480000;116260996;120494008;123223008;118700000;116000000;115000000;116000000;113000000;109000000;106000000;99600000;98200000;98100000;97500000;97000000;97300000;98200000;102000000;102500000;104800000;104800000;105000000;79300000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1872;Sawnwood;5616;Import quantity;m3;504000;456600;355200;319800;286000;286400;312300;299100;265500;287200;295400;306500;277500;324000;318400;334400;342100;349400;342600;355900;387700;310400;320700;307600;304100;254000;215900;195500;159900;200000;175000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1872;Sawnwood;5622;Import value;1000 USD;34788;31701;25813;23205;20800;19916;21746;20911;18428;20590;22145;25253;26751;31308;43560;47678;50534;60545;57952;62500;97664;80903;84200;79100;76000;66200;53100;51851;44582;52500;47400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1872;Sawnwood;5916;Export quantity;m3;5370500;6146100;6737700;7918800;8188700;8240100;7671000;8190200;8156300;8250100;8000700;8140700;8413200;8006000;7961000;8675800;8390400;8183600;7727200;7242300;7037900;7355200;7327800;7213700;7731600;8070000;7880900;8231000;7822000;6230000;4780000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1872;Sawnwood;5922;Export value;1000 USD;212999;227102;243149;291667;312559;317454;292535;303944;317370;345264;359192;381147;520529;771869;758030;826810;939581;944767;993979;980400;1002570;935324;930104;915300;982300;1027300;1003500;1284307;1299507;1047094;811094;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1632;Sawnwood, coniferous;5516;Production;m3;90950016;91055008;92670000;99315008;99295008;95605008;97525008;98600000;100280496;103897008;106201504;103860000;101500000;100600000;101500000;98900000;95400000;92800000;87200000;86000000;85800000;85300000;84900000;85200000;86000000;89400000;89800000;91800000;91800000;92000000;66300000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1632;Sawnwood, coniferous;5616;Import quantity;m3;217350;170100;112500;15100;15100;15100;15100;15100;23100;37500;41900;51200;22900;60400;61600;84200;91700;104600;114000;123900;134700;133400;135700;137600;147100;112000;110100;88500;53900;100000;100000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1632;Sawnwood, coniferous;5622;Import value;1000 USD;16655;13478;9872;725;725;725;725;725;1613;2448;2559;3171;1398;3718;4127;10338;10857;13478;14085;16500;17900;17700;18200;18400;20000;15200;15100;15397;9386;17400;17400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1632;Sawnwood, coniferous;5916;Export quantity;m3;5286900;6071200;6631600;7797200;8094950;8115500;7557000;8057800;8037850;8115100;7925700;8062650;8310750;7898000;7893500;8612900;8327200;8123400;7677700;7186650;6981450;7294100;7266400;7153850;7680550;8006500;7817450;8091000;7692000;6200000;4750000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1632;Sawnwood, coniferous;5922;Export value;1000 USD;209649;224102;238899;286593;308930;312382;287448;298000;311798;338480;355264;375524;512748;758399;749611;818600;930279;935205;986484;971550;992565;924605;919052;904550;971800;1014150;990500;1272691;1287823;1036000;800000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1633;Sawnwood, non-coniferous;5516;Production;m3;17940000;17905008;18190000;16135000;16195000;15505000;15775000;15880000;15980500;16597000;17021504;14840000;14500000;14400000;14500000;14100000;13600000;13200000;12400000;12200000;12300000;12200000;12100000;12100000;12200000;12600000;12700000;13000000;13000000;13000000;13000000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;286650;286500;242700;304700;270900;271300;297200;284000;242400;249700;253500;255300;254600;263600;256800;250200;250400;244800;228600;232000;253000;177000;185000;170000;157000;142000;105800;107000;106000;100000;75000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;18133;18223;15941;22480;20075;19191;21021;20186;16815;18142;19586;22082;25353;27590;39433;37340;39677;47067;43867;46000;79764;63203;66000;60700;56000;51000;38000;36454;35196;35100;30000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;83600;74900;106100;121600;93750;124600;114000;132400;118450;135000;75000;78050;102450;108000;67500;62900;63200;60200;49500;55650;56450;61100;61400;59850;51050;63500;63450;140000;130000;30000;30000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;3350;3000;4250;5074;3629;5072;5087;5944;5572;6784;3928;5623;7781;13470;8419;8210;9302;9562;7495;8850;10005;10719;11052;10750;10500;13150;13000;11616;11684;11094;11094;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1634;Veneer sheets;5516;Production;m3;;;;;;;436000;459000;476000;476000;476000;476000;476000;476000;476000;476000;476000;476000;476000;476000;476000;420000;436000;440000;445000;445000;445000;400000;400000;400000;400000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1634;Veneer sheets;5616;Import quantity;m3;29100;22300;22500;28600;24700;29300;20000;21000;28600;31100;35100;29600;63200;28600;32000;57500;33100;37200;59200;135300;95300;78200;74600;88000;83300;89400;80000;62600;119200;119000;119000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1634;Veneer sheets;5622;Import value;1000 USD;4427;3879;3673;5094;4630;5416;3909;3845;5337;5952;6942;6063;13393;7752;9242;12257;9481;11666;16133;37100;26100;22820;40000;70000;83000;90000;81000;64000;150000;150000;150000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1634;Veneer sheets;5916;Export quantity;m3;;;11100;14200;19300;20400;17400;24100;28200;12100;7700;12700;8000;7700;3600;3300;7300;7100;8000;6700;2400;2400;4700;5300;3200;3200;3200;3200;3200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1634;Veneer sheets;5922;Export value;1000 USD;;;1169;1511;2075;2234;1835;2405;2857;1288;959;1480;1028;1971;1154;622;1505;1741;2235;2100;751;751;1457;1643;1000;1000;1000;1000;1000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1873;Wood-based panels;5516;Production;m3;1986200;2143600;2330500;2670200;3032500;3944400;4341800;4632400;4931900;5398100;5856400;6341100;7105000;7972000;8807000;9174000;9706000;9856000;9691000;10142000;10510000;10600000;11065000;11688000;12104000;13564000;14051000;14641000;14638000;12281000;11046000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1873;Wood-based panels;5616;Import quantity;m3;35000;41000;46800;48100;54000;60316;62842;56237;52737;56021;51764;46011;41416;46816;46016;56100;64100;57800;50300;51800;37700;33000;35000;35000;42300;35000;30200;27000;28000;21600;14000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1873;Wood-based panels;5622;Import value;1000 USD;5122;5936;6841;7529;8151;8817;9370;8273;7820;8138;8655;8202;8288;9137;11073;15755;19005;18771;17098;18100;13200;15905;17000;17000;20000;17000;19900;5122;6199;20000;13500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1873;Wood-based panels;5916;Export quantity;m3;124600;143100;186500;253900;290400;320384;375132;455604;475674;565291;532936;571758;665505;760325;817926;860932;927700;954300;894200;949300;1008300;951600;918900;922900;947300;1067100;1217700;1069700;1070300;889100;644000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1873;Wood-based panels;5922;Export value;1000 USD;14285;16438;18303;24468;28311;30665;34007;38143;40871;52401;53097;60206;80316;99520;123461;126546;130964;148604;153433;188000;189864;183260;176635;174100;178475;197700;224500;273555;269770;234566;173066;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1640;Plywood and LVL;5516;Production;m3;1427700;1486400;1548700;1658600;1756100;1830100;1878300;1899200;1945900;2045100;2083400;2110100;2142000;2160000;2196000;2174000;2178000;2122000;1988000;2022000;2035000;2015000;2103000;2132000;2187000;2320000;2304000;2340000;2298000;1744000;1497000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1640;Plywood and LVL;5616;Import quantity;m3;35000;41000;46800;46000;53200;60000;62000;55500;52000;55600;48500;45800;41100;46500;45700;56100;64100;57800;50300;51800;37700;33000;35000;35000;42300;35000;30200;27000;28000;21600;14000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1640;Plywood and LVL;5622;Import value;1000 USD;5122;5936;6841;6529;7790;8700;9001;7970;7511;7945;7434;8080;8160;9009;10945;15755;19005;18771;17098;18100;13200;15905;17000;17000;20000;17000;19900;5122;6199;20000;13500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1640;Plywood and LVL;5916;Export quantity;m3;124600;143100;144700;179500;190000;196700;210700;243700;239800;281400;266200;272500;316200;299800;303000;319000;338900;337100;314600;314300;327000;340000;328000;317000;410000;445000;485300;416000;418800;361100;240000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1640;Plywood and LVL;5922;Export value;1000 USD;14285;16438;15463;19787;21994;23257;24087;25986;27000;34794;36773;41034;55026;65095;76110;77409;78026;89668;94902;110000;111366;113268;109300;105600;114000;123700;135000;174367;172516;150000;100000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1646;Particle board and OSB (1961-1994);5516;Production;m3;280000;343000;433000;591600;796400;1035300;1302500;1507200;1707000;1994000;2349000;2676000;3080000;3571000;3994000;4222000;4590000;4777000;4695000;5118000;5390000;5583000;5749000;6190000;6327000;7244000;7689000;8141000;8200000;6397000;5409000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;23700;41100;62400;64400;88300;124400;129100;145000;134900;149100;168400;237500;274000;271100;306800;320600;267000;332000;362200;334000;328000;347600;298000;353000;389000;352000;363200;234000;110000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;1644;2672;4022;3803;5052;6832;7181;8597;7608;8371;10745;15162;18277;18492;21685;24692;20676;33000;30498;28352;27900;29500;25400;30000;33100;37176;37254;24500;13000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1874;Fibreboard;5516;Production;m3;278500;314200;348800;420000;480000;1079000;1161000;1226000;1279000;1359000;1424000;1555000;1883000;2241000;2617000;2778000;2938000;2957000;3008000;3002000;3085000;3002000;3213000;3366000;3590000;4000000;4058000;4160000;4140000;4140000;4140000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1874;Fibreboard;5616;Import quantity;m3;;;;2100;800;316;842;737;737;421;3264;211;316;316;316;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1874;Fibreboard;5622;Import value;1000 USD;;;;1000;361;117;369;303;309;193;1221;122;128;128;128;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1874;Fibreboard;5916;Export quantity;m3;;;18100;33300;38000;59284;76132;87504;106774;138891;131836;150158;180905;223025;240926;270832;282000;296600;312600;303000;319100;277600;262900;258300;239300;269100;343400;301700;288300;294000;294000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1874;Fibreboard;5922;Export value;1000 USD;;;1196;2009;2295;3605;4868;5325;6690;9010;8716;10801;14545;19263;29074;30645;31253;34244;37855;45000;48000;41640;39435;39000;39075;44000;56400;62012;60000;60066;60066;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1650;Other fibreboard;5516;Production;m3;146000;155600;166900;150000;170000;720000;776000;800000;784000;788000;800000;812000;824000;1006000;1226000;1302000;1377000;1386000;1410000;1407000;1446000;1407000;1506000;1578000;1683000;1875000;1902000;1950000;1940000;1940000;1940000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;132500;158600;181900;270000;310000;359000;385000;426000;495000;571000;624000;743000;1059000;1235000;1391000;1476000;1561000;1571000;1598000;1595000;1639000;1595000;1707000;1788000;1907000;2125000;2156000;2210000;2200000;2200000;2200000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;2100;800;316;842;737;737;421;3264;211;316;316;316;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;1000;361;117;369;303;309;193;1221;122;128;128;128;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;18100;33300;38000;59284;76132;87504;106774;138891;131836;150158;180905;223025;240926;270832;282000;296600;312600;303000;319100;277600;262900;258300;239300;269100;343400;301700;288300;294000;294000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;1196;2009;2295;3605;4868;5325;6690;9010;8716;10801;14545;19263;29074;30645;31253;34244;37855;45000;48000;41640;39435;39000;39075;44000;56400;62012;60000;60066;60066;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1879;Total fibre furnish;5510;Production;t;3271600;3514500;3687400;3806400;4194100;4704600;5131600;5400800;5627800;7235500;7603600;7922400;8321700;8968000;9282000;9876000;10323000;10680000;10237000;10505000;10891000;11196000;11890000;12325000;12740000;12602000;13192000;13197000;14046000;13114000;11620000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;250100;274900;287300;265400;221000;236800;198100;243800;195300;198100;194500;168200;220500;272900;222200;241600;192400;169000;183700;224500;253000;237000;150000;150000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;38854;43735;53954;53243;48379;56430;71234;121478;91152;90792;84034;82959;109100;178572;141204;154624;124000;109000;118500;145000;203615;214588;140000;140000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;389600;426000;473800;492600;536400;554200;581700;589500;720300;804000;921400;833400;974400;927400;971800;1088000;1062800;1030000;1195200;1158500;1220800;1226400;700000;700000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;47720;54224;61866;70168;82104;96510;107349;127383;177499;209630;247545;244357;315800;332228;387568;440517;441429;420193;484080;475585;608913;631130;383607;383607;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1878;Pulp for paper;5510;Production;t;3271600;3514500;3687400;3806400;4194100;4704600;5131600;5400800;5627800;6411500;6710600;6961400;7291700;7870000;8115000;8525000;8788000;8961000;8334000;8418000;8640000;8781000;9312000;9583000;9834000;9917000;10128000;10259000;11013000;10081000;8587000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;250100;274900;287300;265400;221000;236800;198100;243800;195300;198100;194500;168200;220500;272900;222200;241600;192400;169000;183700;224500;253000;237000;150000;150000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;38854;43735;53954;53243;48379;56430;71234;121478;91152;90792;84034;82959;109100;178572;141204;154624;124000;109000;118500;145000;203615;214588;140000;140000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;389600;426000;447800;466600;501400;519200;491100;515000;632000;680000;776100;680300;821300;843600;888000;1012000;1009800;965000;1105200;1087800;1055000;1020400;600000;600000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;47720;54224;60452;68754;80173;94579;102369;123283;172599;202530;239145;234857;306300;327198;382538;432747;435300;414000;474000;468000;591625;609464;368000;368000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1875;Wood pulp;5510;Production;t;3442600;3716500;3907400;3856400;4251900;4768000;5210800;5527500;5797800;6678800;7056100;7380600;7730600;8295000;8585000;8984000;9228000;9391000;8732000;8824000;9067000;9222000;9803000;10100000;10374000;10488000;10496000;10596000;11326000;10394000;8662000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1875;Wood pulp;5610;Import quantity;t;;;;;;;;250100;274900;287300;265400;221000;236800;198100;243800;195300;198100;194500;168200;220500;272900;222200;241600;192400;169000;183700;224500;253000;237000;150000;150000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;38854;43735;53954;53243;48379;56430;71234;121478;91152;90792;84034;82959;109100;178572;141204;154624;124000;109000;118500;145000;203615;214588;140000;140000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1875;Wood pulp;5910;Export quantity;t;;;;;;;;389600;426000;447800;466600;501400;519200;491100;515000;632000;680000;776100;680300;821300;843600;888000;1012000;1009800;965000;1105200;1087800;1055000;1020400;600000;600000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;47720;54224;60452;68754;80173;94579;102369;123283;172599;202530;239145;234857;306300;327198;382538;432747;435300;414000;474000;468000;591625;609464;368000;368000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1654;Mechanical wood pulp (1961-2016);5510;Production;t;1027600;1121200;1149700;1168400;1286200;1444900;1501800;1527200;1545800;1569300;1644600;1697000;1697000;1720000;1770000;1815000;1825000;1840000;1710000;1729000;1777000;1807000;1921000;1979000;2033000;2103000;2096000;2124000;2149000;2680000;2360000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;150000;166300;208000;240200;241800;270000;163400;198200;231500;240000;255000;290000;300000;320000;350000;326000;329000;338000;344000;366000;377000;387000;400000;399000;404000;539000;539000;510000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1656;Chemical wood pulp;5510;Production;t;2244000;2393300;2537700;2308000;2545600;2855700;3157600;3387800;3552000;4403800;4573800;4735900;5054700;5580000;5725000;6075000;6283000;6391000;5943000;6005000;6170000;6275000;6670000;6872000;7059000;7059000;7278000;7376000;7970000;6507000;5362000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;250100;274900;287300;265400;221000;236800;198100;243800;195300;198100;194500;168200;220500;272900;222200;241600;192400;169000;183700;224500;253000;237000;150000;150000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;38854;43735;53954;53243;48379;56430;71234;121478;91152;90792;84034;82959;109100;178572;141204;154624;124000;109000;118500;145000;203615;214588;140000;140000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;389600;426000;447800;466600;501400;519200;491100;515000;632000;680000;776100;680300;821300;843600;888000;1012000;1009800;965000;1105200;1087800;1055000;1020400;600000;600000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;47720;54224;60452;68754;80173;94579;102369;123283;172599;202530;239145;234857;306300;327198;382538;432747;435300;414000;474000;468000;591625;609464;368000;368000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;759400;1004900;1260400;1388300;1552000;2158400;2336200;2475600;2687400;3310000;3435000;3645000;3770000;3835000;3567000;3604000;3703000;3766000;4003000;4124000;4236000;4236000;4368000;4426000;4782000;2629000;2290000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;276800;127100;148900;174700;196700;216000;168700;276000;392000;422000;481600;422500;510000;676000;676300;770700;806000;765000;875200;862800;871100;846100;500000;500000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;34475;15158;17320;22793;28739;36997;37274;65190;107275;126574;148445;154857;201800;259164;293334;331401;350000;330000;382600;378000;486375;503124;298000;298000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1880000;1390000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;1786200;1850800;1897200;1999500;2000000;2245400;2237600;2260300;2367300;2270000;2290000;2430000;2513000;2556000;2376000;2401000;2467000;2509000;2667000;2748000;2823000;2823000;2910000;2950000;3188000;1164000;952000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;112800;298900;298900;291900;304700;303200;322400;239000;240000;258000;294500;257800;311300;167600;211700;241300;203800;200000;230000;225000;183900;174300;100000;100000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;13245;39066;43132;45961;51434;57582;65095;58093;65324;75956;90700;80000;104500;68034;89204;101346;85300;84000;91400;90000;105250;106340;70000;70000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;834000;730000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;250100;274900;287300;265400;221000;236800;198100;243800;195300;198100;194500;168200;220500;272900;222200;241600;192400;169000;183700;224500;253000;237000;150000;150000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;38854;43735;53954;53243;48379;56430;71234;121478;91152;90792;84034;82959;109100;178572;141204;154624;124000;109000;118500;145000;203615;214588;140000;140000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1667;Dissolving wood pulp;5510;Production;t;171000;202000;220000;230000;253800;259400;311200;370700;430000;542300;639500;716200;738900;740000;800000;794000;800000;810000;753000;761000;782000;796000;846000;872000;895000;926000;723000;692000;668000;668000;430000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1668;Pulp from fibres other than wood;5510;Production;t;;;;180000;196000;196000;232000;244000;260000;275000;294000;297000;300000;315000;330000;335000;360000;380000;355000;355000;355000;355000;355000;355000;355000;355000;355000;355000;355000;355000;355000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1669;Recovered paper;5510;Production;t;;;;;;;;;;824000;893000;961000;1030000;1098000;1167000;1351000;1535000;1719000;1903000;2087000;2251000;2415000;2578000;2742000;2906000;2685000;3064000;2938000;3033000;3033000;3033000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;26000;26000;35000;35000;90600;74500;88300;124000;145300;153100;153100;83800;83800;76000;53000;65000;90000;70700;165800;206000;100000;100000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;1414;1414;1931;1931;4980;4100;4900;7100;8400;9500;9500;5030;5030;7770;6129;6193;10080;7585;17288;21666;15607;15607;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1876;Paper and paperboard;5510;Production;t;3445000;3668000;3854000;4120000;4679700;5205500;5676500;5969400;6039000;6701000;7048000;7424000;7890000;8199000;8583000;8916000;9064000;9236000;8729000;8733000;8954000;8978000;9556000;9835000;10031000;10395000;10566000;10881000;10735000;10718000;9590000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1876;Paper and paperboard;5610;Import quantity;t;180100;154700;171000;172800;202200;210700;270800;349900;402900;479400;459900;476300;397300;464800;573200;577000;600600;602900;639300;905000;951900;959100;747800;733000;751700;613700;555000;601800;709900;545000;529000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1876;Paper and paperboard;5622;Import value;1000 USD;35265;31397;34345;36516;45592;50365;65726;77651;89499;107243;110233;129284;137950;213933;361821;324415;345297;349634;400249;581750;620334;673968;517552;512500;582100;435200;396600;618356;714373;569000;558000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1876;Paper and paperboard;5910;Export quantity;t;145600;152200;150200;175100;241600;333600;397600;473100;601100;721600;723200;779000;860600;914000;907700;977800;1015700;1012100;970000;1035300;1018400;985700;1033698;1045100;1096600;1188000;1251600;1099300;1020400;967000;890000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1876;Paper and paperboard;5922;Export value;1000 USD;22612;23900;23679;26384;31827;48236;58729;70986;87410;105835;108324;124560;155041;202136;222693;262898;285164;316686;333866;392300;347070;360410;376278;379500;390000;429600;452900;590493;543636;545000;565000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;2042;Graphic papers;5510;Production;t;1203000;1330000;1381000;1475000;1577200;1716800;1812600;1878800;1922000;1984000;2083000;2210000;2363000;2428000;2497000;2553000;2575000;2637000;2493000;2495000;2558000;2565000;2731000;2816000;2875000;2983000;3031000;3165000;3371000;3145000;2795000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;2042;Graphic papers;5610;Import quantity;t;82100;83700;88800;83400;101100;109600;143000;136400;173400;230000;193900;216600;164100;200200;217000;182300;188800;194600;188500;308800;302100;338200;295200;251000;286700;224700;191600;299300;386300;225000;209000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;2042;Graphic papers;5622;Import value;1000 USD;11842;12876;12534;12711;15395;18487;25464;22274;28467;37814;31858;44859;44024;68079;103985;79977;87210;92434;97581;180550;175422;210631;185352;158500;182100;143000;122600;270477;346648;209000;198000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;2042;Graphic papers;5910;Export quantity;t;103200;112300;110200;124800;148700;192900;203100;239200;269500;284400;282200;291800;325000;336700;316800;339400;347700;346100;332000;368300;365800;386200;406000;397100;413600;404700;417500;381200;363800;367000;290000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;2042;Graphic papers;5922;Export value;1000 USD;14499;15856;14768;16854;20002;25034;26559;31424;35187;39129;39663;44707;57497;82432;84343;94967;101178;113311;110566;155500;148488;168726;175577;172000;181000;177600;184300;230593;221634;230000;250000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1671;Newsprint;5510;Production;t;493000;541000;563000;633000;744400;881800;965600;1015800;1051000;1101000;1152000;1212000;1298000;1334000;1361000;1390000;1388000;1432000;1353000;1354000;1388000;1392000;1482000;1532000;1565000;1624000;1650000;1750000;1800000;1780000;1550000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1671;Newsprint;5610;Import quantity;t;44100;56100;57800;46500;56500;34900;30100;46100;69400;86800;64000;56800;21700;42300;45700;30700;30700;27000;16200;30100;47300;33200;14500;6700;6000;5900;11100;26000;95600;40000;24000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1671;Newsprint;5622;Import value;1000 USD;5542;6876;7034;5711;6895;4287;3964;5774;8868;11366;8806;8619;4062;11996;17254;10842;13677;10672;7132;13350;21000;17426;7540;3500;3100;3000;5600;16129;69294;29000;18000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1671;Newsprint;5910;Export quantity;t;98200;107300;105200;118800;138700;178900;186100;218300;247700;259600;255900;263700;292800;288900;268000;290400;316600;312000;303100;320000;321600;341000;361000;350100;367000;357000;363400;333900;320000;327000;250000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1671;Newsprint;5922;Export value;1000 USD;13549;14906;13818;15714;18392;22794;23839;27936;31572;34992;35235;39411;50939;71155;68018;78072;90671;99727;97979;133800;126960;144662;151620;147000;155000;151000;154000;195845;190195;200000;220000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1674;Printing and writing papers;5510;Production;t;710000;789000;818000;842000;832800;835000;847000;863000;871000;883000;931000;998000;1065000;1094000;1136000;1163000;1187000;1205000;1140000;1141000;1170000;1173000;1249000;1284000;1310000;1359000;1381000;1415000;1571000;1365000;1245000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1674;Printing and writing papers;5610;Import quantity;t;38000;27600;31000;36900;44600;74700;112900;90300;104000;143200;129900;159800;142400;157900;171300;151600;158100;167600;172300;278700;254800;305000;280700;244300;280700;218800;180500;273300;290700;185000;185000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1674;Printing and writing papers;5622;Import value;1000 USD;6300;6000;5500;7000;8500;14200;21500;16500;19599;26448;23052;36240;39962;56083;86731;69135;73533;81762;90449;167200;154422;193205;177812;155000;179000;140000;117000;254348;277354;180000;180000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1674;Printing and writing papers;5910;Export quantity;t;5000;5000;5000;6000;10000;14000;17000;20900;21800;24800;26300;28100;32200;47800;48800;49000;31100;34100;28900;48300;44200;45200;45000;47000;46600;47700;54100;47300;43800;40000;40000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1674;Printing and writing papers;5922;Export value;1000 USD;950;950;950;1140;1610;2240;2720;3488;3615;4137;4428;5296;6558;11277;16325;16895;10507;13584;12587;21700;21528;24064;23957;25000;26000;26600;30300;34748;31439;30000;30000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1675;Other paper and paperboard;5510;Production;t;2242000;2338000;2473000;2645000;3102500;3488700;3863900;4090600;4117000;4717000;4965000;5214000;5527000;5771000;6086000;6363000;6489000;6599000;6236000;6238000;6396000;6413000;6825000;7019000;7156000;7412000;7535000;7716000;7364000;7573000;6795000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1675;Other paper and paperboard;5610;Import quantity;t;98000;71000;82200;89400;101100;101100;127800;213500;229500;249400;266000;259700;233200;264600;356200;394700;411800;408300;450800;596200;649800;620900;452600;482000;465000;389000;363400;302500;323600;320000;320000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1675;Other paper and paperboard;5622;Import value;1000 USD;23423;18521;21811;23805;30197;31878;40262;55377;61032;69429;78375;84425;93926;145854;257836;244438;258087;257200;302668;401200;444912;463337;332200;354000;400000;292200;274000;347879;367725;360000;360000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1675;Other paper and paperboard;5910;Export quantity;t;42400;39900;40000;50300;92900;140700;194500;233900;331600;437200;441000;487200;535600;577300;590900;638400;668000;666000;638000;667000;652600;599500;627698;648000;683000;783300;834100;718100;656600;600000;600000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1675;Other paper and paperboard;5922;Export value;1000 USD;8113;8044;8911;9530;11825;23202;32170;39562;52223;66706;68661;79853;97544;119704;138350;167931;183986;203375;223300;236800;198582;191684;200701;207500;209000;252000;268600;359900;322002;315000;315000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;148000;195000;195000;220000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;4161000;4595000;4796000;4148000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;302100;256500;184300;196000;190000;160000;150000;125000;134000;130000;130000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;205206;206652;148483;158000;150000;125000;118000;150000;158000;150000;150000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;;;;;;239000;277300;254800;297500;319900;318300;305000;318800;264200;274300;287200;287000;300000;344000;366000;241800;238300;230000;230000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;36987;52265;53896;51395;65284;66200;71300;74800;80040;87129;91228;91300;100000;110000;120000;104650;105033;105000;105000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;3407000;2574000;2582000;2427000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;347700;364400;268300;286000;275000;229000;213400;177500;189600;190000;190000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;239706;256685;183717;196000;250000;167200;156000;197879;209725;210000;210000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;296600;300000;336100;340900;348100;347700;333000;348200;388400;325200;340498;361000;383000;439300;468100;476300;418300;370000;370000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -228;'810;USSR;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;60557;67439;84454;116536;118702;137175;152000;162000;118542;104555;109473;116200;109000;142000;148600;255250;216969;210000;210000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -235;'860;Uzbekistan;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;699533.84;1026950;1102851;859447;1044868;1350726;1240188 -235;'860;Uzbekistan;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27275.12;38355;44037;43383;70328;113532;107905 -235;'860;Uzbekistan;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;2379;6706;721;5840;17543;24958;37231;29116;35852;44015;60252;95032;174746;244389;368852;518995;405796;408081;555434;626231;761374;761374;456638;486302;628580.24;924457;961567;701392;852029;1096012;987854 -235;'860;Uzbekistan;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;32;32;9;9;131;130;913;1525;2599;2692;2692;3924;5741;6267;6269;6269;6269;16573;9636;13852;13312;16216;19479;24698.81;25487;29336;28072;42460;70727;76119 -235;'860;Uzbekistan;1861;Roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33177;24980;28900;33000;32100;28000;26700;29000;31000;32000;30000;30000;30000;32000;36000;36000;36000;34000;34000;34000;34000;20100;23700;17465;17465;17465 -235;'860;Uzbekistan;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;166;1059;1100;1400;1400;0;0;67623;54658;56945;205057;259501;299197;312935;444238;480357;305298;274381;309936;253494;287866;287866;282798;213922;218025;260037;267995;294782;259526;121953;127637 -235;'860;Uzbekistan;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;70;70;114;114;256;2078;1206;933;1243;3432;6203;10693;18568;29488;37890;20713;19610;24351;26552;30251;30251;13283;17065;17572.76;12754;13737;17571;13234;13525;11470 -235;'860;Uzbekistan;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1160;420;416;1902;1902;2313;4205;4124;4124;4124;4124;2197;1503;54;54;553;421;363;446;6;10;199;188;94 -235;'860;Uzbekistan;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;116;52;44;96;96;90;428;424;424;424;424;427;156;5;5;19;318;245.43;67;2;4;25;12;58 -235;'860;Uzbekistan;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1033;1980;2400;2400;2000;2000;2000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -235;'860;Uzbekistan;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;196408;238420;254260;268402;227474;61993;101252 -235;'860;Uzbekistan;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16839.03;12020;13021;16163;11250;7458;9145 -235;'860;Uzbekistan;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;319;402;6;3;154;188;37 -235;'860;Uzbekistan;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;212;34;2;1;8;12;37 -235;'860;Uzbekistan;1863;Roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32144;23000;26500;30600;30100;26000;24700;29000;31000;32000;30000;30000;30000;32000;36000;36000;36000;34000;34000;34000;34000;20100;23700;17465;17465;17465 -235;'860;Uzbekistan;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21617;21617;13735;26380;32052;59960;26385 -235;'860;Uzbekistan;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;733.73;734;716;1408;1984;6067;2325 -235;'860;Uzbekistan;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;44;0;7;45;0;57 -235;'860;Uzbekistan;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33.42;33;0;3;17;0;21 -235;'860;Uzbekistan;1864;Wood fuel;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24277;18980;24000;24000;22600;20000;18300;21000;22000;23000;22000;22000;22000;23000;26000;26000;26000;24000;24000;24000;24000;12500;17700;11428;11428;11428 -235;'860;Uzbekistan;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1175;26;19;265;3738;0;0;46;453;0;0;0;822;0;0;0;0;;;44;156;132;29;27 -235;'860;Uzbekistan;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;22;0;0;2;128;0;0;3;32;0;0;0;60;0;0;0;0;;;2;4;3;1;3 -235;'860;Uzbekistan;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;1132;1132;173;81;0;0;0;0;32;1434;0;0;0;0;51;126;6;7;15;0;94 -235;'860;Uzbekistan;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;14;14;6;4;0;0;0;0;10;89;0;0;0;0;9;16;2;3;9;0;58 -235;'860;Uzbekistan;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1033;980;2400;2400;2000;2000;2000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -235;'860;Uzbekistan;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0 -235;'860;Uzbekistan;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0 -235;'860;Uzbekistan;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;126;6;0;0;0;37 -235;'860;Uzbekistan;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;16;2;0;0;0;37 -235;'860;Uzbekistan;1628;Wood fuel, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23244;18000;21600;21600;20600;18000;16300;21000;22000;23000;22000;22000;22000;23000;26000;26000;26000;24000;24000;24000;24000;12500;17700;11428;11428;11428 -235;'860;Uzbekistan;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;156;132;29;27 -235;'860;Uzbekistan;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;4;3;1;3 -235;'860;Uzbekistan;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;7;15;0;57 -235;'860;Uzbekistan;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;9;0;21 -235;'860;Uzbekistan;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1175;26;19;265;3738;0;0;46;453;0;0;0;822;0;0;0;0;;;;;;; -235;'860;Uzbekistan;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;22;0;0;2;128;0;0;3;32;0;0;0;60;0;0;0;0;;;;;;; -235;'860;Uzbekistan;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;1132;1132;173;81;0;0;0;0;32;1434;0;0;0;0;;;;;;; -235;'860;Uzbekistan;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;14;14;6;4;0;0;0;0;10;89;0;0;0;0;;;;;;; -235;'860;Uzbekistan;1865;Industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8900;6000;4900;9000;9500;8000;8400;8000;9000;9000;8000;8000;8000;9000;10000;10000;10000;10000;10000;10000;10000;7600;6000;6037;6037;6037 -235;'860;Uzbekistan;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;166;1059;1100;1400;1400;0;0;66448;54632;56926;204792;255763;299197;312935;444192;479904;305298;274381;309936;252672;287866;287866;282798;213922;218025;260037;267951;294626;259394;121924;127610 -235;'860;Uzbekistan;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;70;70;114;114;246;2068;1184;933;1243;3430;6075;10693;18568;29485;37858;20713;19610;24351;26492;30251;30251;13283;17065;17572.76;12754;13735;17567;13231;13524;11467 -235;'860;Uzbekistan;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1160;420;416;770;770;2140;4124;4124;4124;4124;4124;2165;69;54;54;553;421;312;320;0;3;184;188;0 -235;'860;Uzbekistan;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;116;52;44;82;82;84;424;424;424;424;424;417;67;5;5;19;318;236.43;51;0;1;16;12;0 -235;'860;Uzbekistan;1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;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 -235;'860;Uzbekistan;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;166;1059;1100;1400;1400;0;0;35878;22382;31526;87992;138963;195745;279301;401518;431950;270483;251238;283540;227405;259079;259079;251051;192305;196408;238420;254260;268402;227474;61993;101252 -235;'860;Uzbekistan;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;70;70;114;114;70;1889;1008;757;1067;3254;5899;10517;17144;27435;34869;19005;18445;22654;23843;27226;27226;12199;16331;16839.03;12020;13021;16163;11250;7458;9145 -235;'860;Uzbekistan;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;580;210;208;385;385;1070;2062;2062;2062;2062;2062;1985;69;54;54;553;377;268;276;0;3;154;188;0 -235;'860;Uzbekistan;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;58;26;22;41;41;42;212;212;212;212;212;209;67;5;5;19;285;203;18;0;1;8;12;0 -235;'860;Uzbekistan;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;166;1059;1100;1400;1400;0;0;35878;22382;31526;87992;138963;195745;279301;401518;431950;270483;251238;283540;227405;259079;259079;251051;192305;196408;238420;254260;268402;227474;61993;101252 -235;'860;Uzbekistan;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;70;70;114;114;70;1889;1008;757;1067;3254;5899;10517;17144;27435;34869;19005;18445;22654;23843;27226;27226;12199;16331;16839.03;12020;13021;16163;11250;7458;9145 -235;'860;Uzbekistan;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;580;210;208;385;385;1070;2062;2062;2062;2062;2062;1985;69;54;54;553;377;268;276;0;3;154;188;0 -235;'860;Uzbekistan;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;58;26;22;41;41;42;212;212;212;212;212;209;67;5;5;19;285;203;18;0;1;8;12;0 -235;'860;Uzbekistan;1867;Industrial roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8900;5000;4900;9000;9500;8000;8400;8000;9000;9000;8000;8000;8000;9000;10000;10000;10000;10000;10000;10000;10000;7600;6000;6037;6037;6037 -235;'860;Uzbekistan;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;30570;32250;25400;116800;116800;103452;33634;42674;47954;34815;23143;26396;25267;28787;28787;31747;21617;21617;21617;13691;26224;31920;59931;26358 -235;'860;Uzbekistan;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;176;179;176;176;176;176;176;176;1424;2050;2989;1708;1165;1697;2649;3025;3025;1084;734;733.73;734;714;1404;1981;6066;2322 -235;'860;Uzbekistan;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;580;210;208;385;385;1070;2062;2062;2062;2062;2062;180;0;0;0;0;44;44;44;0;0;30;0;0 -235;'860;Uzbekistan;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;58;26;22;41;41;42;212;212;212;212;212;208;0;0;0;0;33;33.42;33;0;0;8;0;0 -235;'860;Uzbekistan;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;221;0;0;4 -235;'860;Uzbekistan;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;0;0;1 -235;'860;Uzbekistan;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 -235;'860;Uzbekistan;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 -235;'860;Uzbekistan;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;30570;32250;25400;116800;116800;103452;33634;42674;47954;34815;23143;26396;25267;28787;28787;31747;21617;21617;21617;13691;26003;31920;59931;26354 -235;'860;Uzbekistan;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;176;176;176;176;176;176;176;176;1424;2050;2989;1708;1165;1697;2649;3025;3025;1084;734;733.73;734;714;1401;1981;6066;2321 -235;'860;Uzbekistan;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;580;210;208;385;385;1070;2062;2062;2062;2062;2062;180;0;0;0;0;44;44;44;0;0;30;0;0 -235;'860;Uzbekistan;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;58;26;22;41;41;42;212;212;212;212;212;208;0;0;0;0;33;33.42;33;0;0;8;0;0 -235;'860;Uzbekistan;1868;Sawlogs and veneer logs;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4900;9000;9500;8000;8400;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -235;'860;Uzbekistan;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 -235;'860;Uzbekistan;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4900;9000;9500;8000;8400;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -235;'860;Uzbekistan;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8900;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 -235;'860;Uzbekistan;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;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 -235;'860;Uzbekistan;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8900;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 -235;'860;Uzbekistan;1871;Other industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;8000;9000;9000;8000;8000;8000;9000;10000;10000;10000;10000;10000;10000;10000;7600;6000;6037;6037;6037 -235;'860;Uzbekistan;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 -235;'860;Uzbekistan;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;8000;9000;9000;8000;8000;8000;9000;10000;10000;10000;10000;10000;10000;10000;7600;6000;6037;6037;6037 -235;'860;Uzbekistan;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;110;326;230;277;353;485;1191;1191 -235;'860;Uzbekistan;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;46;46;46;46;46;46;46;4;23;1;0;11;20;31;0;58;55;15;34;237;226;226;106;80;80;80;766;1143;791;1107;2128 -235;'860;Uzbekistan;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;11;11;11;11;4;13;2;1;23;11;18;0;41;36;19;67;157;103;103;208;42;41.63;42;566;551;595;971;1305 -235;'860;Uzbekistan;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;3;3;3;3;4;80;113;20 -235;'860;Uzbekistan;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;1.73;2;2;1;16;117;18 -235;'860;Uzbekistan;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;48;55;19;36;36 -235;'860;Uzbekistan;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22;250;0;1611;164;171;834;339;1525;653;721;1272;1272;1270;0;0;308;392;392;392;1182;1961;9679;1848;688 -235;'860;Uzbekistan;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;9;0;42;9;19;34;26;77;94;80;61;88;56;0;0;96;149;149.2;149;214;145;283;484;398 -235;'860;Uzbekistan;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;429;429;429;429;429;429;429;429;429;429;312;312;312;312;0;0;0;0;0;0;0;0;0;0;2;0 -235;'860;Uzbekistan;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;14;14;14;14;14;14;14;16;16;16;16;0;0;0;0;0;0;0;0;0;0;0;0 -235;'860;Uzbekistan;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;48;55;19;36;36 -235;'860;Uzbekistan;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22;29;0;0;16;56;59;25;47;129;161;103;103;100;0;0;292;354;354;354;369;494;8000;819;366 -235;'860;Uzbekistan;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1;0;0;5;16;14;18;39;80;66;31;44;28;0;0;86;135;134.72;135;203;134;207;401;334 -235;'860;Uzbekistan;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;311;311;311;311;311;311;311;311;311;311;311;311;311;311;311;311;311;311;311;0;0;0;0;0;0;0;0;0;0;0;0 -235;'860;Uzbekistan;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;0;0;0;0;0;0;0;0;0;0;0;0 -235;'860;Uzbekistan;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0 -235;'860;Uzbekistan;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;221;0;1611;148;115;775;314;1478;524;560;1169;1169;1170;0;0;16;38;38;38;813;1467;1679;1029;322 -235;'860;Uzbekistan;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;0;42;4;3;20;8;38;14;14;30;44;28;0;0;10;14;14.49;14;11;11;76;83;64 -235;'860;Uzbekistan;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118;118;118;118;118;118;118;118;118;118;1;1;1;1;0;0;0;0;0;0;0;0;0;0;2;0 -235;'860;Uzbekistan;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5;5;5;5;7;7;7;7;0;0;0;0;0;0;0;0;0;0;0;0 -235;'860;Uzbekistan;1605;Sawdust (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;4 -235;'860;Uzbekistan;1605;Sawdust (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;5 -235;'860;Uzbekistan;1605;Sawdust (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -235;'860;Uzbekistan;1605;Sawdust (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -235;'860;Uzbekistan;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;48;56;56;76;56 -235;'860;Uzbekistan;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;813;978;1119;686;53 -235;'860;Uzbekistan;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;76;83;34 -235;'860;Uzbekistan;1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;1;0 -235;'860;Uzbekistan;1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -235;'860;Uzbekistan;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -235;'860;Uzbekistan;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;0;0;16;47;47;47;32;9;178;20;181 -235;'860;Uzbekistan;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;0;0;11;18;18.19;18;9;19;59;16;70 -235;'860;Uzbekistan;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;3;0;22 -235;'860;Uzbekistan;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;4 -235;'860;Uzbekistan;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -235;'860;Uzbekistan;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;0;0;5;22;22;22;11;5;168;18;57 -235;'860;Uzbekistan;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;0;0;1;4;3.71;4;1;3;30;6;28 -235;'860;Uzbekistan;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;22 -235;'860;Uzbekistan;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;4 -235;'860;Uzbekistan;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -235;'860;Uzbekistan;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;11;25;25;25;21;4;10;2;124 -235;'860;Uzbekistan;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;0;0;10;14;14.49;14;8;16;29;10;42 -235;'860;Uzbekistan;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;3;0;0 -235;'860;Uzbekistan;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -235;'860;Uzbekistan;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6400;9700;9700;9700;12600;25400;25400;25400;25400;5929;4168;8060;20600;22780;23119;195239;195239 -235;'860;Uzbekistan;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89;5917;243;1000;1000;11470;11470;168387;177105;218848;329015;762299;742125;960894;1323518;1695436;1720203;1712444;2046568;1892588;2423524;2423524;2417241;2122447;2175297;2786971;2700541;2684417;2533553;2415442;2398106 -235;'860;Uzbekistan;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;1523;18;211;211;11;11031;7029;8572;11167;18762;39896;69281;103418;173782;261299;222340;215067;283023;351444;450036;450036;212391;233976;277251.72;359067;323424;325268;334807;440173;392330 -235;'860;Uzbekistan;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;535;535;212;20;1740;276;276;1470;630;52;52;52;52;361;6020;10284;10284;1355;1657;1718;652;1038;174;945;484;3677 -235;'860;Uzbekistan;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;62;62;26;2;206;32;32;120;36;4;4;4;4;217;3234;5525;5525;288;352;372.36;121;160;4;376;294;2397 -235;'860;Uzbekistan;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -235;'860;Uzbekistan;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89;5905;243;1000;1000;6000;6000;167075;176109;217275;326406;760283;740142;957595;1316560;1684726;1710192;1698000;2029035;1883125;2411406;2411406;2399382;2111365;2164215;2745650;2662563;2663538;2500000;2382121;2372784 -235;'860;Uzbekistan;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;1518;18;211;211;6;10546;6858;8443;10940;18386;39606;68999;102950;172777;259809;221045;213775;281057;347930;445536;445536;210804;232808;276083.94;354480;319205;321837;329832;433842;386788 -235;'860;Uzbekistan;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;535;535;106;10;870;138;138;735;315;26;26;26;26;272;6020;10284;10284;0;0;61;96;703;4;543;28;9 -235;'860;Uzbekistan;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;62;13;1;103;16;16;60;18;2;2;2;2;40;3234;5525;5525;0;0;20.11;26;113;0;188;5;4 -235;'860;Uzbekistan;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6400;9700;9700;9700;12600;25400;25400;25400;25400;5929;4168;8060;20600;22780;23119;195239;195239 -235;'860;Uzbekistan;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;0;0;0;5470;5470;1312;996;1573;2609;2016;1983;3299;6958;10710;10011;14444;17533;9463;12118;12118;17859;11082;11082;41321;37978;20879;33553;33321;25322 -235;'860;Uzbekistan;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;0;0;0;5;485;171;129;227;376;290;282;468;1005;1490;1295;1292;1966;3514;4500;4500;1587;1168;1167.79;4587;4219;3431;4975;6331;5542 -235;'860;Uzbekistan;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;106;10;870;138;138;735;315;26;26;26;26;89;0;0;0;1355;1657;1657;556;335;170;402;456;3668 -235;'860;Uzbekistan;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;13;1;103;16;16;60;18;2;2;2;2;177;0;0;0;288;352;352.25;95;47;4;188;289;2393 -235;'860;Uzbekistan;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;331;846;1570;1088;782;2780;2714;2714 -235;'860;Uzbekistan;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;100;100;307;307;175;150;331;220;306;687;1167;700;3129;2379;974;1136;1180;841;841;1004;688;688;1753;2745;1702;1771;1624;2158 -235;'860;Uzbekistan;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;119;119;302;302;84;47;119;95;103;162;195;222;755;756;433;668;768;547;547;1779;1157;1156.71;2263;1614;1298;1407;1415;1499 -235;'860;Uzbekistan;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;170;4;4;0;0;0;0;0;0;3;0;3573;3573;172;17;17;0;0;0;0;3;0 -235;'860;Uzbekistan;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;15;0;0;0;0;0;0;0;0;8;0;2100;2100;38;4;3.73;0;0;0;0;3;0 -235;'860;Uzbekistan;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3360;3300;3300;3300;3400;3800;3800;3800;3800;155571;143386;222885;245005;304943;296574;299381;299381 -235;'860;Uzbekistan;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;33;587;1500;79600;68394;68394;63140;69103;85694;101859;125526;218820;347467;426184;520870;494071;437822;580722;420107;548129;548129;664627;662276;697989;1010404;1245724;1058339;1072161;1188972;1099279 -235;'860;Uzbekistan;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;10;137;561;12264;8810;9822;8292;9902;12146;16378;25701;57235;72304;101351;150746;94502;93563;149107;150767;183978;183978;124456;130019;218489.04;383133;362443;200638;287610;325152;286264 -235;'860;Uzbekistan;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;392;57;2837;2265;2265;3419;3296;3086;3086;3086;3086;276;306;236;236;98;4506;12595;5581;6296;14788;23094;34696;34721 -235;'860;Uzbekistan;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;7;20;176;100;100;145;942;1205;1205;1205;1205;800;270;246;246;47;452;1083.27;1197;1116;2122;5404;6663;6400 -235;'860;Uzbekistan;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;248;1109;15315;1264;4335;3175;88;88 -235;'860;Uzbekistan;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;23;63;1200;1200;2862;2862;1701;1202;2246;7630;11247;15631;20707;19760;27248;29380;27602;32939;29060;30590;30590;26931;30905;30008;37956;48789;45945;48186;62838;62838 -235;'860;Uzbekistan;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;6;48;436;436;6;1018;353;431;777;2453;4424;7022;8256;12222;18810;12144;14350;20404;20306;21375;21375;13536;14559;13858.4;20614;20324;18567;26381;37164;37164 -235;'860;Uzbekistan;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;0;2316;2060;2060;2060;2060;8;8;8;8;8;0;2;2;0;0;1;0;0;2;222;484;484 -235;'860;Uzbekistan;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;57;45;45;45;45;6;6;6;6;6;0;2;2;0;0;0.67;0;0;2;34;304;304 -235;'860;Uzbekistan;1607;Laminated Veneer Lumber (LVL);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -235;'860;Uzbekistan;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -235;'860;Uzbekistan;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -235;'860;Uzbekistan;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -235;'860;Uzbekistan;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -235;'860;Uzbekistan;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;5;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -235;'860;Uzbekistan;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;3;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -235;'860;Uzbekistan;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3360;3300;3300;3300;3400;3800;3800;3800;3800;155323;142277;181358;192610;255668;247943;252100;252100 -235;'860;Uzbekistan;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;511;200;78300;48000;48000;47991;46880;46256;47097;46735;110859;194276;276848;342141;334726;296159;341048;267665;394155;394155;429617;435139;430299;522611;661235;531802;598702;653610;653610 -235;'860;Uzbekistan;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;99;11802;6066;6066;6064;5924;5856;5947;5762;25895;27279;47318;62360;42959;40434;67237;67980;100122;100122;44985;56651;64298.87;98086;92721;79762;133755;135332;135332 -235;'860;Uzbekistan;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1356;1158;3000;3000;3000;3000;190;80;0;0;16;2383;11565;3326;3493;6145;13464;26025;26025 -235;'860;Uzbekistan;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;198;500;500;500;500;95;34;0;0;4;125;590.6;156;163;722;2400;3311;3311 -235;'860;Uzbekistan;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 -235;'860;Uzbekistan;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;1120;1744;903;1265;2650;3081;1588;2449;964;237;494;548;550;550;883;1014;1014;3109;4207;5197;7268;7352;7352 -235;'860;Uzbekistan;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;142;210;119;304;779;890;323;484;288;107;162;174;174;174;196;245;245.11;949;1114;1224;2589;2138;2138 -235;'860;Uzbekistan;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;3246;0;0;0 -235;'860;Uzbekistan;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;11;0;0;0 -235;'860;Uzbekistan;1874;Fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;26212;51131;44940;45456;47193;47193 -235;'860;Uzbekistan;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;13;100;100;17532;17532;13439;19901;35448;46229;66279;89680;129403;127988;149032;129001;113824;206241;122834;122834;122834;207196;195218;236668;446728;531493;475395;418005;465172;375479 -235;'860;Uzbekistan;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;6;26;26;2738;2738;1873;3405;5303;7859;15211;23539;35879;41488;69092;39111;38672;61304;62307;62307;62307;65739;58564;140086.66;263484;248284;101085;124885;150518;111630 -235;'860;Uzbekistan;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;352;57;521;205;205;3;78;78;78;78;78;78;226;234;234;82;2123;1029;2255;2803;5395;9408;8187;8212 -235;'860;Uzbekistan;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;7;20;119;55;55;0;699;699;699;699;699;699;236;244;244;43;327;492;1041;953;1387;2970;3048;2785 -235;'860;Uzbekistan;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -235;'860;Uzbekistan;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9478;9478;10060;18556;35108;45254;62652;81350;107822;102895;96772;90302;78544;78019;56858;56858;56858;62401;50423;50423;83383;83670;71921;70075;89503;44439 -235;'860;Uzbekistan;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2066;2066;1417;3136;5186;7593;14127;21101;29637;31259;43269;22476;21288;28866;25074;25074;25074;15994;8819;8818.66;13609;14311;10613;16182;27678;24386 -235;'860;Uzbekistan;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;352;57;521;205;205;1;26;26;26;26;26;26;113;117;117;0;0;0;0;0;0;28;94;97 -235;'860;Uzbekistan;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;20;119;55;55;0;233;233;233;233;233;233;118;122;122;0;0;0;0;0;0;4;36;102 -235;'860;Uzbekistan;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;21285;49498;40201;35956;45628;45628 -235;'860;Uzbekistan;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1742;1742;3020;1300;303;878;3387;2443;5631;16412;52020;38553;35210;125800;65642;65642;65642;142844;142844;186108;362491;446870;403120;347778;375485;331032 -235;'860;Uzbekistan;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;391;391;413;255;98;241;1004;945;2344;8119;25713;16568;17335;32076;37087;37087;37087;49316;49316;130867;247252;233539;90291;108558;122760;87240 -235;'860;Uzbekistan;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;1;26;26;26;26;26;26;113;117;117;82;1967;1029;2255;2803;5388;9380;8093;8115 -235;'860;Uzbekistan;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;233;233;233;233;233;233;118;122;122;43;298;492;1041;953;1384;2966;3012;2683 -235;'860;Uzbekistan;1650;Other fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;4927;1633;4739;9500;1565;1565 -235;'860;Uzbekistan;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;13;100;100;6312;6312;359;45;37;97;240;5887;15950;8681;240;146;70;2422;334;334;334;1951;1951;137;854;953;354;152;184;8 -235;'860;Uzbekistan;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;6;26;26;281;281;43;14;19;25;80;1493;3898;2110;110;67;49;362;146;146;146;429;429;401;2623;434;181;145;80;4 -235;'860;Uzbekistan;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;1;26;26;26;26;26;26;0;0;0;0;156;0;0;0;7;0;0;0 -235;'860;Uzbekistan;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;233;233;233;233;233;233;0;0;0;0;29;0;0;0;3;0;0;0 -235;'860;Uzbekistan;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9900;9500;9500;9500;15000;16900;16900;16900;16400;20440;25688;25605;26000;22208;27460;25600;25600 -235;'860;Uzbekistan;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1063;1063;3207;6974;7622;4587;2572;1109;1608;1926;1970;2120;3022;7392;8076;8070;8070;12086;23393;24893;52007;39280;44332;36865;85268;93699 -235;'860;Uzbekistan;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;515;515;601;648;1238;1016;338;172;448;581;658;700;1342;2739;3435;3435;3435;3776;6383;6696.28;19283;16429;14800;20220;50526;49722 -235;'860;Uzbekistan;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;40;40;10;0;333;753;753;1999;2846;2846;2846;2846;2846;4389;1992;1990;1990;9374;12259;14533;15492;17603;20396;24554;25702;25375 -235;'860;Uzbekistan;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;46;46;0;1;227;435;435;1288;1827;1827;1827;1827;1827;8194;1329;1329;1329;14519;18049;22676.17;22045;22404;24720;28898;34782;42078 -235;'860;Uzbekistan;1878;Pulp for paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9900;9500;9500;9500;15000;16900;16900;16900;16400;20216;24617;24700;25290;21358;26864;15842;15842 -235;'860;Uzbekistan;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;986;986;1714;2085;2321;1370;679;247;787;547;502;730;988;1623;2454;2450;2450;3106;3493;3493;15143;15861;13723;16783;37594;39730 -235;'860;Uzbekistan;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;509;509;514;495;904;522;260;114;367;326;352;447;890;1384;2327;2327;2327;2132;2277;2278.28;12200;11472;8915;15429;38036;37856 -235;'860;Uzbekistan;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;40;40;0;0;333;753;753;1999;2846;2846;2846;2846;2846;4389;1889;1890;1890;9373;12259;14486;15492;17603;19387;23666;25481;25260 -235;'860;Uzbekistan;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;46;46;0;1;227;435;435;1288;1827;1827;1827;1827;1827;8194;1309;1309;1309;14519;18049;22639.17;22045;22404;24530;28729;34735;41985 -235;'860;Uzbekistan;1875;Wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;5500;7400;7400;7400;7400;7400;7400;7400;7400;0;1128;874;874 -235;'860;Uzbekistan;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1175;1175;1657;1876;2122;1725;1054;5030;3841;6185;2328;1312;1581;1724;3047;3040;3040;2951;3311;3311;14943;16004;13571;16626;37371;39818 -235;'860;Uzbekistan;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;665;665;459;373;793;849;667;5278;3759;7606;3079;1357;1661;1452;3098;3098;3098;1930;2054;2054.92;11758;11367;8730;15315;37879;37969 -235;'860;Uzbekistan;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1207;1889;1890;1890;1;0;0;0;0;0;0;373;42 -235;'860;Uzbekistan;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;1018;1309;1309;1309;0;0;0;0;0;0;0;484;70 -235;'860;Uzbekistan;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;1128;874;874 -235;'860;Uzbekistan;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;69;1;5;1;105 -235;'860;Uzbekistan;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.08;2;48;21;24;10;73 -235;'860;Uzbekistan;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -235;'860;Uzbekistan;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -235;'860;Uzbekistan;1654;Mechanical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;;;;;;; -235;'860;Uzbekistan;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;1;;;;;;; -235;'860;Uzbekistan;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;2;;;;;;; -235;'860;Uzbekistan;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;;;;;;; -235;'860;Uzbekistan;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;;;;;;; -235;'860;Uzbekistan;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;;;;;;; -235;'860;Uzbekistan;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;;;;;;; -235;'860;Uzbekistan;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;;;;;;; -235;'860;Uzbekistan;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;;;;;;; -235;'860;Uzbekistan;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;0;0;;;;;;; -235;'860;Uzbekistan;1656;Chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5500;7400;7400;7400;7400;7400;7400;7400;7400;0;0;0;0 -235;'860;Uzbekistan;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;986;986;1616;1876;2122;1370;679;247;786;546;501;687;988;1623;2454;2450;2450;2951;3310;3310;14927;15605;13570;16621;37349;39625 -235;'860;Uzbekistan;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;509;509;416;373;793;522;260;114;365;324;351;418;890;1384;2327;2327;2327;1929;2052;2052.84;11721;11140;8709;15291;37844;37783 -235;'860;Uzbekistan;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;1207;1889;1890;1890;1;0;0;0;0;0;0;373;42 -235;'860;Uzbekistan;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;1016;1307;1307;1307;0;0;0;0;0;0;0;484;70 -235;'860;Uzbekistan;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0 -235;'860;Uzbekistan;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;396;396;1055;1640;1768;114;248;212;675;435;343;303;127;64;123;120;120;0;0;0;0;0;0;0;1681;0 -235;'860;Uzbekistan;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;222;222;129;261;656;47;68;91;293;244;237;183;79;46;105;105;105;0;0;0;0;0;0;0;852;0 -235;'860;Uzbekistan;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0 -235;'860;Uzbekistan;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0 -235;'860;Uzbekistan;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5500;7400;7400;7400;7400;7400;7400;7400;7400;0;0;0;0 -235;'860;Uzbekistan;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;527;527;450;110;121;1081;368;24;110;111;153;384;861;1558;2330;2330;2330;2938;3162;3162;14926;15603;13568;16619;35585;39459 -235;'860;Uzbekistan;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;231;231;268;47;45;406;159;18;70;80;108;235;811;1334;2220;2220;2220;1909;1978;1978.49;11716;11127;8698;15286;36889;37641 -235;'860;Uzbekistan;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;1207;1889;1890;1890;1;0;0;0;0;0;0;188;42 -235;'860;Uzbekistan;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;1016;1307;1307;1307;0;0;0;0;0;0;0;301;70 -235;'860;Uzbekistan;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0 -235;'860;Uzbekistan;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;148;1;2;2;2;83;166 -235;'860;Uzbekistan;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74.35;5;13;11;5;103;142 -235;'860;Uzbekistan;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;185;0 -235;'860;Uzbekistan;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;183;0 -235;'860;Uzbekistan;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;114;0;0;5;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -235;'860;Uzbekistan;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;31;0;0;2;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -235;'860;Uzbekistan;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;;;;;;; -235;'860;Uzbekistan;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;;;;;;; -235;'860;Uzbekistan;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;63;111;126;119;175;63;6;1;0;5;0;0;1;1;0;0;13;148;;;;;;; -235;'860;Uzbekistan;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;56;19;65;61;69;33;3;2;0;6;0;0;4;2;2;2;20;74;;;;;;; -235;'860;Uzbekistan;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;;;;;;; -235;'860;Uzbekistan;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;;;;;;; -235;'860;Uzbekistan;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -235;'860;Uzbekistan;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;189;189;41;0;0;355;375;4783;3055;5639;1827;625;593;101;593;590;590;0;0;0;15;330;0;0;21;88 -235;'860;Uzbekistan;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;156;156;43;0;0;327;407;5164;3394;7282;2728;939;771;68;771;771;771;1;0;0;35;179;0;0;25;113 -235;'860;Uzbekistan;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -235;'860;Uzbekistan;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -235;'860;Uzbekistan;1668;Pulp from fibres other than wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9900;9500;9500;9500;9500;9500;9500;9500;9000;12816;17217;17300;17890;21358;25736;14968;14968 -235;'860;Uzbekistan;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98;209;199;0;0;0;1;1;1;43;0;0;0;0;0;155;182;182;215;187;152;157;244;0 -235;'860;Uzbekistan;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98;122;111;0;0;0;2;2;1;29;0;0;0;0;0;203;223;223.36;477;284;185;114;182;0 -235;'860;Uzbekistan;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;40;40;0;0;333;753;753;1999;2846;2846;2846;2846;2846;3182;0;0;0;9372;12259;14486;15492;17603;19387;23666;25108;25218 -235;'860;Uzbekistan;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;46;46;0;1;227;435;435;1288;1827;1827;1827;1827;1827;7176;0;0;0;14519;18049;22639.17;22045;22404;24530;28729;34251;41915 -235;'860;Uzbekistan;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;0;0;0;0;0;45;0;0;1;0;0;0;0;0;1239;2027;2027;2027;1680;313;10;83;0 -235;'860;Uzbekistan;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;0;0;0;0;0;9;0;0;2;0;0;0;0;0;139;289;288.51;289;247;183;16;172;0 -235;'860;Uzbekistan;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 -235;'860;Uzbekistan;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 -235;'860;Uzbekistan;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;224;1071;905;710;850;596;9758;9758 -235;'860;Uzbekistan;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;77;1493;4889;5301;3217;1893;862;821;1379;1468;1390;2034;5769;5622;5620;5620;8980;19900;21400;36864;23419;30609;20082;47674;53969 -235;'860;Uzbekistan;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;87;153;334;494;78;58;81;255;306;253;452;1355;1108;1108;1108;1644;4106;4418;7083;4957;5885;4791;12490;11866 -235;'860;Uzbekistan;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;0;0;0;0;0;0;0;0;0;0;0;103;100;100;1;0;47;0;0;1009;888;221;115 -235;'860;Uzbekistan;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;20;20;20;0;0;37;0;0;190;169;47;93 -235;'860;Uzbekistan;1876;Paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7500;8000;8500;11000;11000;11000;11000;1000;2000;2000;2000;31200;27400;27400;27400;28000;55183;62998;85187;76589;72581;76345;125438;102528 -235;'860;Uzbekistan;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;2962;5988;336;4800;4800;19705;18419;16377;23308;27245;31912;31673;42582;56706;61618;64855;74275;82462;90187;90849;90840;90840;114823;112501;119615;155599;220776;170132;190460;213503;216472 -235;'860;Uzbekistan;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;2332;5092;479;4824;4824;14897;13316;11843;15737;18058;20232;22342;31994;46009;56069;64784;65728;77215;95323;92253;92253;92253;100498;97204;106916.2;147424;242694;140908;193722;263470;244649 -235;'860;Uzbekistan;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;32;32;0;0;6;6;1387;1504;2408;2718;2718;4629;4970;5547;5547;5547;5547;2165;5365;5364;3334;233;77;127;1916;3651;1968;11437;21301;14916 -235;'860;Uzbekistan;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;23;23;0;0;8;8;750;1436;1917;2015;2015;2267;2494;2793;2793;2793;2793;6911;4647;4647;4107;1305;302;316.13;2055;5652;1221;7741;28856;25164 -235;'860;Uzbekistan;2042;Graphic papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7500;8000;8500;11000;11000;11000;11000;540;700;700;700;100;100;100;100;100;2915;6253;7043;4643;5296;3279;1434;1569 -235;'860;Uzbekistan;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;2786;5483;270;1400;1400;13807;12521;10637;16801;20451;26451;22406;30099;41921;41039;38557;45573;52973;50372;48051;48040;48040;55508;54182;59820;83665;130278;66618;85799;101816;93841 -235;'860;Uzbekistan;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;2197;4714;379;1591;1591;8497;6916;6371;9913;12151;14500;14022;19538;29373;32780;33894;35738;46294;48946;43823;43823;43823;41133;42066;50512.03;74470;155873;53325;78669;120321;99362 -235;'860;Uzbekistan;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;327;448;623;509;509;278;278;1000;1000;1000;1000;1458;1249;1250;1250;212;48;48;10;1942;320;2148;1971;1235 -235;'860;Uzbekistan;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;578;1006;1309;1316;1316;656;701;1000;1000;1000;1000;6067;3126;3126;3126;1290;255;255.16;52;4076;88;2387;12992;8464 -235;'860;Uzbekistan;1671;Newsprint;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;19;44;44;44;100;100;100;100;100;305;254;2142;673;193;280;441;441 -235;'860;Uzbekistan;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;400;400;8807;8807;4849;6405;8251;12230;7888;9987;17607;16516;13716;15034;19679;15695;15724;15720;15720;12202;12119;12119;13068;9466;7376;7788;9779;9280 -235;'860;Uzbekistan;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;262;262;3787;3787;1898;2955;3159;4493;3212;4657;9621;9702;8273;7834;11195;10445;10255;10255;10255;5719;6043;6043.28;8608;5880;3399;3975;7302;5845 -235;'860;Uzbekistan;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;21;39;48 -235;'860;Uzbekistan;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;7;29;26 -235;'860;Uzbekistan;1674;Printing and writing papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7500;8000;8500;11000;11000;11000;11000;521;656;656;656;0;0;0;0;0;2610;5999;4901;3970;5103;2999;993;1128 -235;'860;Uzbekistan;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;2786;5483;268;1000;1000;5000;3714;5788;10396;12200;14221;14518;20112;24314;24523;24841;30539;33294;34677;32327;32320;32320;43306;42063;47701;70597;120812;59242;78011;92037;84561 -235;'860;Uzbekistan;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;2197;4714;377;1329;1329;4710;3129;4473;6958;8992;10007;10810;14881;19752;23078;25621;27904;35099;38501;33568;33568;33568;35414;36023;44468.75;65862;149993;49926;74694;113019;93517 -235;'860;Uzbekistan;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;311;448;623;509;509;278;278;1000;1000;1000;1000;1458;1249;1250;1250;212;48;48;10;1942;320;2127;1932;1187 -235;'860;Uzbekistan;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;573;1006;1309;1316;1316;656;701;1000;1000;1000;1000;6067;3126;3126;3126;1290;255;255.16;52;4076;88;2380;12963;8438 -235;'860;Uzbekistan;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7500;8000;8500;11000;11000;11000;11000;521;656;656;656;0;0;0;0;0;1623;2560;3031;1450;179;830;0;135 -235;'860;Uzbekistan;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1769;5857;5646;4222;5090;6478;2846;1348;922;461;1413;450;922;920;920;128;231;231;8819;9985;8872;18789;16187;10879 -235;'860;Uzbekistan;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;986;3299;3708;2025;2601;3815;1998;1003;744;316;1277;502;1023;1023;1023;324;437;436.67;6995;8054;6751;15777;17738;9540 -235;'860;Uzbekistan;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;311;447;623;509;509;278;278;1000;1000;1000;1000;1000;1000;1000;1000;0;0;0;0;0;19;2;479;182 -235;'860;Uzbekistan;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;573;1005;1309;1316;1316;656;701;1000;1000;1000;1000;1000;1000;1000;1000;0;0;0;0;0;8;1;340;354 -235;'860;Uzbekistan;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;85;144;348;1110;2790;565;771;771 -235;'860;Uzbekistan;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;3714;2772;2960;4710;6532;7169;10552;16597;17615;18726;23665;27619;28231;27742;27740;27740;37872;37215;42853;48245;49244;38753;37681;55417;54175 -235;'860;Uzbekistan;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4710;3129;2124;2076;3463;5302;6002;8345;13291;16743;19616;20983;28685;31216;28464;28464;28464;29705;31100;39545.64;45922;48722;32798;38091;70238;60891 -235;'860;Uzbekistan;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;357;249;250;250;212;48;48;10;7;289;2116;1284;751 -235;'860;Uzbekistan;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;4976;2126;2126;2126;1290;255;255.16;52;29;74;2287;11525;7336 -235;'860;Uzbekistan;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;902;3295;1522;1410;2134;1604;222;222 -235;'860;Uzbekistan;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1247;1579;1844;3467;2259;3082;4871;5560;5193;6413;4262;5996;3663;3660;3660;5306;4617;4617;13533;61583;11617;21541;20433;19507 -235;'860;Uzbekistan;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1363;1583;1821;2680;2207;2721;4463;5332;5261;6605;5137;6783;4081;4081;4081;5385;4486;4486.44;12945;93217;10377;20826;25043;23086 -235;'860;Uzbekistan;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;0;1;0;0;0;0;0;0;0;0;0;101;0;0;0;0;0;0;0;1935;12;9;169;254 -235;'860;Uzbekistan;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;0;1;0;0;0;0;0;0;0;0;0;91;0;0;0;0;0;0;0;4047;6;92;1098;748 -235;'860;Uzbekistan;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;460;1300;1300;1300;31100;27300;27300;27300;27900;52268;56745;78144;71946;67285;73066;124004;100959 -235;'860;Uzbekistan;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;176;505;66;3400;3400;5898;5898;5740;6507;6794;5461;9267;12483;14785;20579;26298;28702;29489;39815;42798;42800;42800;59315;58319;59795;71934;90498;103514;104661;111687;122631 -235;'860;Uzbekistan;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;135;378;100;3233;3233;6400;6400;5472;5824;5907;5732;8320;12456;16636;23289;30890;29990;30921;46377;48430;48430;48430;59365;55138;56404.17;72954;86821;87583;115053;143149;145287 -235;'860;Uzbekistan;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;32;32;0;0;0;0;1060;1056;1785;2209;2209;4351;4692;4547;4547;4547;4547;707;4116;4114;2084;21;29;79;1906;1709;1648;9289;19330;13681 -235;'860;Uzbekistan;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;23;23;0;0;0;0;172;430;608;699;699;1611;1793;1793;1793;1793;1793;844;1521;1521;981;15;47;60.97;2003;1576;1133;5354;15864;16700 -235;'860;Uzbekistan;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1295;1132;1423;2446;3205;6202;15722;11603 -235;'860;Uzbekistan;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;132;165;197;375;382;470;423;514;515;729;562;551;967;970;970;665;1037;1037;649;528;718;843;785;1335 -235;'860;Uzbekistan;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116;140;185;332;406;506;442;573;728;872;727;792;1189;1189;1189;843;1174;1173.72;779;670;790;1021;1315;1868 -235;'860;Uzbekistan;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;0;0;3;3;1332;2145;2000;2000;2000;2000;363;2000;2000;2000;0;0;0;1583;961;542;1172;5101;8022 -235;'860;Uzbekistan;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;0;0;3;3;416;916;916;916;916;916;552;916;916;916;0;0;0;1838;1191;590;1270;7093;10427 -235;'860;Uzbekistan;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;460;1300;1300;1300;8800;7900;7900;7900;7900;37935;41519;55989;53589;43650;44382;87206;71549 -235;'860;Uzbekistan;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5055;5716;5849;4463;8251;11210;13237;18229;24310;26439;28786;38947;41574;41570;41570;58401;57033;58509;70163;88958;101812;99822;107273;117603 -235;'860;Uzbekistan;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4126;4732;4372;4484;6997;10721;14367;20897;28814;27793;29829;44890;46439;46439;46439;57822;53254;54520.58;67566;81338;82319;105036;130597;132103 -235;'860;Uzbekistan;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1014;1046;1781;2202;2202;3019;2535;2535;2535;2535;2535;344;2104;2104;74;21;25;75;323;748;1105;8107;14214;5656 -235;'860;Uzbekistan;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;146;428;606;693;693;1193;873;873;873;873;873;292;601;601;61;15;12;25.74;165;385;536;4046;8441;6271 -235;'860;Uzbekistan;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3100;1300;1300;1300;1300;30732;35446;49978;45070;32075;32210;58880;46710 -235;'860;Uzbekistan;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2378;3181;2366;1614;2738;3625;5038;7190;8084;8119;5922;8000;7748;7750;7750;13348;13076;13076;13538;15466;20133;14899;12880;20390 -235;'860;Uzbekistan;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1017;1942;1137;630;1270;1651;2230;3570;4572;4272;4205;6568;5538;5538;5538;7488;6341;6341.18;8932;9026;9165;8692;9753;12309 -235;'860;Uzbekistan;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;914;133;30;25;25;163;69;69;69;69;69;234;51;50;50;20;25;25;167;549;726;5253;9541;1971 -235;'860;Uzbekistan;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98;22;36;66;66;100;40;40;40;40;40;174;39;39;39;14;11;11.4;66;298;346;2612;5343;1077 -235;'860;Uzbekistan;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;460;1300;1300;1300;4600;6000;6000;6000;6000;565;237;270;254;112;77;138;138 -235;'860;Uzbekistan;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;640;748;1107;1790;2493;3744;4192;7048;10644;14778;18129;27050;30838;30840;30840;40287;38823;40299;47245;59107;62846;65332;76372;75570 -235;'860;Uzbekistan;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1647;1716;2082;2919;4014;6663;9658;14400;19672;21247;22086;35075;37532;37532;37532;46613;42930;44196.63;49386;59745;58713;80170;102151;99051 -235;'860;Uzbekistan;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;481;525;143;143;822;432;432;432;432;432;34;19;20;20;1;0;50;21;102;175;247;1142;2518 -235;'860;Uzbekistan;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;204;187;83;83;549;289;289;289;289;289;27;18;18;18;1;1;14.33;5;17;95;201;1080;4068 -235;'860;Uzbekistan;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1100;600;600;600;600;6638;5836;5741;8265;11463;12095;28188;24701 -235;'860;Uzbekistan;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2016;1656;1443;819;2422;3348;3550;2978;4058;1433;2104;1643;1194;1190;1190;2282;4474;4474;9235;13350;17611;18039;16914;20740 -235;'860;Uzbekistan;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1454;1032;929;848;1486;2199;2273;2431;3636;1238;1923;1631;1981;1981;1981;2618;3632;3631.55;9107;11938;13773;15022;17693;20104 -235;'860;Uzbekistan;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;430;1226;2034;2034;2034;2034;2034;2034;2034;2034;61;2034;2034;4;0;0;0;57;52;5;831;860;131 -235;'860;Uzbekistan;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;202;383;544;544;544;544;544;544;544;544;89;544;544;4;0;0;0;67;50;20;624;851;114 -235;'860;Uzbekistan;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0 -235;'860;Uzbekistan;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;131;933;240;598;493;457;1013;1524;2109;2631;2254;1794;1790;1790;2484;660;660;145;1035;1222;1552;1107;903 -235;'860;Uzbekistan;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;42;224;87;227;208;206;496;934;1036;1615;1616;1388;1388;1388;1103;351;351.21;141;629;668;1152;1000;639 -235;'860;Uzbekistan;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;2;0;0;0;0;0;0;0;0;0;15;0;0;0;0;0;0;78;45;199;1776;2671;1036 -235;'860;Uzbekistan;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;2;0;0;0;0;0;0;27;20;75;609;1167;1012 -235;'860;Uzbekistan;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22300;19400;19400;19400;20000;13038;14094;20732;15911;20430;22482;21076;17807 -235;'860;Uzbekistan;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5898;5898;553;626;748;623;634;803;1125;1836;1473;1534;141;317;257;260;260;249;249;249;1122;1012;984;3996;3629;3693 -235;'860;Uzbekistan;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6400;6400;1230;952;1350;916;917;1229;1827;1819;1348;1325;365;695;802;802;802;700;710;709.87;4609;4813;4474;8996;11237;11316 -235;'860;Uzbekistan;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;10;10;4;4;4;0;12;12;12;12;12;0;12;10;10;0;4;4;0;0;1;10;15;3 -235;'860;Uzbekistan;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1;2;2;3;3;2;4;4;4;4;4;0;4;4;4;0;35;35.23;0;0;7;38;330;2 -235;'860;Uzbekistan;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35897.76;51226;72892;73527;85810;134610;104136 -235;'860;Uzbekistan;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1551.21;3725;5111;4061;8263;16258;5435 -235;'860;Uzbekistan;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;529.83;530;530;1460;1286;1118;2730 -235;'860;Uzbekistan;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31.16;31;31;25;2;24;376 -235;'860;Uzbekistan;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21.16;21;21;551;470;749;1415 -235;'860;Uzbekistan;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;18;376 -235;'860;Uzbekistan;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;508.66;509;509;909;816;369;1315 -235;'860;Uzbekistan;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31.16;31;31;25;2;6;0 -235;'860;Uzbekistan;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;344.19;2802;299;226;192;747;714 -235;'860;Uzbekistan;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34.76;1891;3497;273;26;20;248 -235;'860;Uzbekistan;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200.25;198;2259;578;656;854;957 -235;'860;Uzbekistan;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10.22;17;73;195;5329;11618;1107 -235;'860;Uzbekistan;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8181.9;3593;20588;9022;16536;28645;28073 -235;'860;Uzbekistan;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;238.12;334;439;625;65;292;438 -235;'860;Uzbekistan;1636;Glue-laminated timber (glulam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -235;'860;Uzbekistan;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1 -235;'860;Uzbekistan;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1 -235;'860;Uzbekistan;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -235;'860;Uzbekistan;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -235;'860;Uzbekistan;1688;Cross-laminated timber (CLT or X-lam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -235;'860;Uzbekistan;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1 -235;'860;Uzbekistan;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;24 -235;'860;Uzbekistan;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -235;'860;Uzbekistan;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -235;'860;Uzbekistan;1684;I-beams (I-joists);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -235;'860;Uzbekistan;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;926;1393 -235;'860;Uzbekistan;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1353;1480 -235;'860;Uzbekistan;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -235;'860;Uzbekistan;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -235;'860;Uzbekistan;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24677;41865;41371;59215;59966;94006;50186 -235;'860;Uzbekistan;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1202;1359;760;2639;2607;3916;3116 -235;'860;Uzbekistan;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5961;337;4352;2605;4643 -235;'860;Uzbekistan;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;34;6;54;6 -235;'860;Uzbekistan;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964.6;2238;1884;2689;2822;6635;16833 -235;'860;Uzbekistan;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34.95;93;308;270;228;334;144 -235;'860;Uzbekistan;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35055.83;51267;68392;84528;107029;120104;148198 -235;'860;Uzbekistan;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1025.1;9143;9590;11250;19605;26547;26351 -235;'860;Uzbekistan;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;152.56;153;153;119;136;175;134 -235;'860;Uzbekistan;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;44;115;129;224 -235;'860;Uzbekistan;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7113.65;7114;7114;22330;21425;25171;26416 -235;'860;Uzbekistan;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.65;6;6;24;89;998;1183 -235;'860;Uzbekistan;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1326.51;885;1096;2062;1948;11598;3926 -235;'860;Uzbekistan;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70.79;6484;5300;4769;3759;2722;4930 -235;'860;Uzbekistan;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5156.79;8890;13278;14795;18719;18106;25246 -235;'860;Uzbekistan;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;831.74;2191;1952;1886;1762;1470;2017 -235;'860;Uzbekistan;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21306.33;34225;46751;45222;64801;65054;92476 -235;'860;Uzbekistan;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116.92;462;2332;4527;13880;21228;17997 -155;'548;Vanuatu;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10168;10188;12260;12363;15600;12557;14761 -155;'548;Vanuatu;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7051;2436;1312;499;2537;3336;5057 -155;'548;Vanuatu;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;117;117;117;117;117;135;209;226;388;256;361;361;361;404;343;343;343;343;343;343;310;633;451;451;520;520;450;343;101;176;176;202;321;412;368;473;246;570;588;1132;2176;4547;1856;2002;1541;1948;3364;2864;3233;4157;4788;5417;4378;4678;5446;5976;5087;4839;5659;7065;9078;5617;8114 -155;'548;Vanuatu;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;10;60;60;60;60;60;34;101;42;608;608;811;810;677;677;1246;591;1900;595;1032;1021;1021;1494;1387;1589;1589;3812;2123;3767;3972;2726;2379;2994;2983;3104;1092;1270;1530;1236;1170;1124;1741;2172;2875;3299;2444;2512;6783;2184;1035;476;2517;3303;4964 -155;'548;Vanuatu;1861;Roundwood;5516;Production;m3;100;100;100;100;100;29000;28000;29000;31000;31000;32000;32000;33000;34000;34000;30000;31000;30300;30300;30300;35200;32900;37900;37900;46900;47700;63200;63200;63200;63200;63200;63200;63200;63200;63200;63200;63200;57800;132000;131000;119000;119000;119000;119000;119000;119000;119000;119000;119000;129000;129000;129000;129000;129000;129000;129000;129000;129000;129000;129000;129000;129000;129000 -155;'548;Vanuatu;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;54;54;23;82;64;64;0;140;1551;1361;1433;123;142;131;2;771;0;14;56;0;25;702;150;4;89;9;327;72 -155;'548;Vanuatu;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;6;6;2;26;22;22;0;52;202;90;108;41;49;44;2;81;0;5;3;0;3;58;114;1;27;7;33;61 -155;'548;Vanuatu;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;4900;4900;4900;4900;4200;4200;22100;9700;25200;4409;5158;5740;5740;5740;3655;3655;3655;3655;234;349;1729;752;752;1746;20526;4935;4950;689;1028;692;851;700;3028;4872;7150;2201;1404;6322;8432;1575;1170;35;1198;2066;1725 -155;'548;Vanuatu;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;585;585;585;585;546;546;1115;412;1733;473;686;727;727;727;671;671;671;671;53;58;153;35;35;283;378;287;292;49;175;65;106;55;765;1085;1775;803;615;1684;6008;1420;882;320;2323;3189;4890 -155;'548;Vanuatu;1862;Roundwood, coniferous;5516;Production;m3;;;;;;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;1900;1900;1900;1900;1900;1900;1900;1900;2700;5400;5400;5400;5400;5400;5400;5400;5400;5400;5400;5400;0;0;0;0;0;0;0;0;0;0;0;0;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000 -155;'548;Vanuatu;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;702;20;0;89;9;27;71 -155;'548;Vanuatu;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;9;0;27;7;23;51 -155;'548;Vanuatu;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;78 -155;'548;Vanuatu;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;11 -155;'548;Vanuatu;1863;Roundwood, non-coniferous;5516;Production;m3;100;100;100;100;100;27000;26000;27000;29000;29000;30000;30000;31000;32000;32000;28000;29000;28400;28400;28400;33300;31000;36000;36000;45000;45000;57800;57800;57800;57800;57800;57800;57800;57800;57800;57800;57800;57800;132000;131000;119000;119000;119000;119000;119000;119000;119000;119000;119000;119000;119000;119000;119000;119000;119000;119000;119000;119000;119000;119000;119000;119000;119000 -155;'548;Vanuatu;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;130;4;0;0;300;1 -155;'548;Vanuatu;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;105;1;0;0;10;10 -155;'548;Vanuatu;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8432;1575;1170;35;1198;2066;1647 -155;'548;Vanuatu;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6008;1420;882;320;2323;3189;4879 -155;'548;Vanuatu;1864;Wood fuel;5516;Production;m3;;;;;;17000;18000;18000;19000;19000;20000;20000;21000;22000;22000;23000;23000;24000;24000;24000;24000;24000;24000;24000;24000;24000;24000;24000;24000;24000;24000;24000;24000;24000;24000;24000;24000;24000;91000;91000;91000;91000;91000;91000;91000;91000;91000;91000;91000;91000;91000;91000;91000;91000;91000;91000;91000;91000;91000;91000;91000;91000;91000 -155;'548;Vanuatu;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;596;596;596;596;596;596;596;596;596;596;596;596;596;596;596;596;596;596;;;;;;54;63 -155;'548;Vanuatu;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;;;;;;406;484 -155;'548;Vanuatu;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -155;'548;Vanuatu;1628;Wood fuel, non-coniferous;5516;Production;m3;;;;;;17000;18000;18000;19000;19000;20000;20000;21000;22000;22000;23000;23000;24000;24000;24000;24000;24000;24000;24000;24000;24000;24000;24000;24000;24000;24000;24000;24000;24000;24000;24000;24000;24000;91000;91000;91000;91000;91000;91000;91000;91000;91000;91000;91000;91000;91000;91000;91000;91000;91000;91000;91000;91000;91000;91000;91000;91000;91000 -155;'548;Vanuatu;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;63 -155;'548;Vanuatu;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;406;484 -155;'548;Vanuatu;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;596;596;596;596;596;596;596;596;596;596;596;596;596;596;596;596;596;596;;;;;;; -155;'548;Vanuatu;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;;;;;;; -155;'548;Vanuatu;1865;Industrial roundwood;5516;Production;m3;100;100;100;100;100;12000;10000;11000;12000;12000;12000;12000;12000;12000;12000;7000;8000;6300;6300;6300;11200;8900;13900;13900;22900;23700;39200;39200;39200;39200;39200;39200;39200;39200;39200;39200;39200;33800;41000;40000;28000;28000;28000;28000;28000;28000;28000;28000;28000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000;38000 -155;'548;Vanuatu;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;54;54;23;82;64;64;0;140;1551;1361;1433;123;142;131;2;771;0;14;56;0;25;702;150;4;89;9;327;72 -155;'548;Vanuatu;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;6;6;2;26;22;22;0;52;202;90;108;41;49;44;2;81;0;5;3;0;3;58;114;1;27;7;33;61 -155;'548;Vanuatu;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;4900;4900;4900;4900;4200;4200;22100;9700;25200;4409;5158;5740;5740;5740;3655;3655;3655;3655;234;349;1133;156;156;1150;19930;4339;4354;93;432;96;255;104;2432;4276;6554;1605;808;5726;8432;1575;1170;35;1198;2012;1662 -155;'548;Vanuatu;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;585;585;585;585;546;546;1115;412;1733;473;686;727;727;727;671;671;671;671;53;58;138;20;20;268;363;272;277;34;160;50;91;40;750;1070;1760;788;600;1669;6008;1420;882;320;2323;2783;4406 -155;'548;Vanuatu;1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;1900;1900;1900;1900;1900;1900;1900;1900;2700;5400;5400;5400;5400;5400;5400;5400;5400;5400;5400;5400;0;0;0;0;0;0;0;0;0;0;0;0;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000 -155;'548;Vanuatu;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;54;54;23;82;64;64;0;64;92;0;71;55;79;19;2;771;0;0;56;0;0;702;20;0;89;9;27;71 -155;'548;Vanuatu;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;6;6;2;26;22;22;0;22;6;0;15;13;5;2;2;81;0;0;3;0;0;58;9;0;27;7;23;51 -155;'548;Vanuatu;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2070;5522;46;46;0;0;0;0;0;0;0;78 -155;'548;Vanuatu;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110;363;2;2;0;0;0;0;0;0;0;11 -155;'548;Vanuatu;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;54;54;23;82;64;64;0;64;92;0;71;55;79;19;2;771;0;0;56;0;0;702;20;0;89;9;27;71 -155;'548;Vanuatu;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;6;6;2;26;22;22;0;22;6;0;15;13;5;2;2;81;0;0;3;0;0;58;9;0;27;7;23;51 -155;'548;Vanuatu;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2070;5522;46;46;0;0;0;0;0;0;0;78 -155;'548;Vanuatu;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110;363;2;2;0;0;0;0;0;0;0;11 -155;'548;Vanuatu;1867;Industrial roundwood, non-coniferous;5516;Production;m3;100;100;100;100;100;10000;8000;9000;10000;10000;10000;10000;10000;10000;10000;5000;6000;4400;4400;4400;9300;7000;12000;12000;21000;21000;33800;33800;33800;33800;33800;33800;33800;33800;33800;33800;33800;33800;41000;40000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000 -155;'548;Vanuatu;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;1459;1361;1362;68;63;112;0;0;0;14;0;0;25;0;130;4;0;0;300;1 -155;'548;Vanuatu;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;196;90;93;28;44;42;0;0;0;5;0;0;3;0;105;1;0;0;10;10 -155;'548;Vanuatu;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5740;5740;5740;3655;3655;3655;3655;234;349;1133;156;156;1150;19930;4339;4354;93;432;96;255;104;2432;2206;1032;1559;762;5726;8432;1575;1170;35;1198;2012;1584 -155;'548;Vanuatu;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;727;727;727;671;671;671;671;53;58;138;20;20;268;363;272;277;34;160;50;91;40;750;960;1397;786;598;1669;6008;1420;882;320;2323;2783;4395 -155;'548;Vanuatu;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;98;0;1;52;47;72;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -155;'548;Vanuatu;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;106;0;3;23;39;41;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -155;'548;Vanuatu;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5740;5740;5740;3655;3655;3655;3655;94;94;3;6;6;1000;127;71;86;33;370;87;229;97;1667;2179;994;1538;762;5726;8432;1575;1170;35;1198;1977;1584 -155;'548;Vanuatu;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;727;727;727;671;671;671;671;31;31;1;2;2;250;35;20;25;9;80;38;51;20;450;480;723;421;598;1669;6008;1420;882;320;2323;1941;3553 -155;'548;Vanuatu;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1361;1361;1361;16;16;40;0;0;0;14;0;0;25;0;130;4;0;0;300;1 -155;'548;Vanuatu;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;90;90;5;5;1;0;0;0;5;0;0;3;0;105;1;0;0;10;10 -155;'548;Vanuatu;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140;255;1130;150;150;150;19803;4268;4268;60;62;9;26;7;765;27;38;21;0;0;0;0;0;0;0;35;0 -155;'548;Vanuatu;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;27;137;18;18;18;328;252;252;25;80;12;40;20;300;480;674;365;0;0;0;0;0;0;0;842;842 -155;'548;Vanuatu;1868;Sawlogs and veneer logs;5516;Production;m3;100;100;100;100;100;12000;10000;11000;12000;12000;12000;12000;12000;12000;12000;7000;8000;6300;6300;6300;11200;8900;13900;13900;22900;23700;39200;39200;39200;39200;39200;39200;39200;39200;39200;39200;39200;33800;41000;40000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000 -155;'548;Vanuatu;1868;Sawlogs and veneer logs;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;4900;4900;4900;4900;4200;4200;22100;9700;25200;4409;5158;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -155;'548;Vanuatu;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;585;585;585;585;546;546;1115;412;1733;473;686;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -155;'548;Vanuatu;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;;;;;;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;1900;1900;1900;1900;1900;1900;1900;1900;2700;5400;5400;5400;5400;5400;5400;5400;5400;5400;5400;5400;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -155;'548;Vanuatu;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;100;100;100;100;100;10000;8000;9000;10000;10000;10000;10000;10000;10000;10000;5000;6000;4400;4400;4400;9300;7000;12000;12000;21000;21000;33800;33800;33800;33800;33800;33800;33800;33800;33800;33800;33800;33800;41000;40000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000 -155;'548;Vanuatu;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;4900;4900;4900;4900;4200;4200;22100;9700;25200;4409;5158;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -155;'548;Vanuatu;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;585;585;585;585;546;546;1115;412;1733;473;686;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -155;'548;Vanuatu;1871;Other industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000 -155;'548;Vanuatu;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000 -155;'548;Vanuatu;1630;Wood charcoal;5510;Production;t;111;115;120;125;129;135;140;145;151;157;164;171;183;184;188;195;199;205;212;230;236;234;239;240;247;260;266;274;279;283;303;314;317;326;334;343;352;361;357;382;393;405;417;429;441;455;469;483;498;513;529;545;561;578;596;612;628;645;662;680;697;716;734 -155;'548;Vanuatu;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;10;10;10;10;10;10;10;10;10;24;24;24;24;24;24;24;1;1;1;4;2;1;1;0 -155;'548;Vanuatu;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1;1;1;1;1;1;1;1;1;22;22;22;22;22;22;22;0;0;0;1;4;2;2;3 -155;'548;Vanuatu;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -155;'548;Vanuatu;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -155;'548;Vanuatu;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;28;28;28;28;28;1;1;1;1;1;1;1;1;0 -155;'548;Vanuatu;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;15;15;15;15;0;0;0;0;0;0;0;0;0 -155;'548;Vanuatu;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;186;241;241;241;241;241;241;241;241;241;188;188;188;5;5;5;5;5 -155;'548;Vanuatu;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;624;729;729;729;729;729;729;729;729;729;626;626;626;4;5;5;5;5 -155;'548;Vanuatu;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;28;28;28;28;28;1;1;1;1;1;1;1;1;0 -155;'548;Vanuatu;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;15;15;15;15;0;0;0;0;0;0;0;0;0 -155;'548;Vanuatu;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;186;186;186;186;186;186;186;186;186;186;186;186;186;3;3;3;3;3 -155;'548;Vanuatu;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;624;624;624;624;624;624;624;624;624;624;624;624;624;2;3;3;3;3 -155;'548;Vanuatu;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;55;55;55;55;55;55;55;55;2;2;2;2;2;2;2;2 -155;'548;Vanuatu;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105;105;105;105;105;105;105;105;105;2;2;2;2;2;2;2;2 -155;'548;Vanuatu;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -155;'548;Vanuatu;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -155;'548;Vanuatu;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -155;'548;Vanuatu;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -155;'548;Vanuatu;1872;Sawnwood;5516;Production;m3;;;;;;5000;6000;5000;6000;6000;5000;5000;5000;5000;5000;2000;2000;2000;2000;2000;2000;2000;3000;3000;4000;6000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;15000;18000;18000;28000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000 -155;'548;Vanuatu;1872;Sawnwood;5616;Import quantity;m3;3700;3700;3700;3700;3700;3200;3200;1700;2400;900;1100;1100;1100;1100;1200;1200;1200;1200;1200;1200;500;1600;900;900;1300;1300;1000;619;171;281;281;356;401;632;632;584;21;722;1351;800;1900;1900;1305;4621;1084;700;4197;6675;5314;5833;8890;7027;6745;6775;10241;11171;8499;9501;8962;11801;17506;9224;11635 -155;'548;Vanuatu;1872;Sawnwood;5622;Import value;1000 USD;117;117;117;117;117;135;135;56;145;59;83;83;83;83;136;136;136;136;136;136;90;368;150;150;252;252;182;183;53;61;61;82;78;178;178;159;5;141;166;226;517;517;350;807;400;311;1636;1238;1557;2112;2086;2413;2492;2470;3099;3397;2959;3152;2878;3871;5492;3615;4417 -155;'548;Vanuatu;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;200;500;500;500;500;500;300;900;300;100;100;800;900;700;700;700;1200;1300;413;909;844;844;1809;1494;1727;1727;6298;3272;6317;13920;10000;5400;6430;6568;7044;1576;975;1044;2543;286;395;187;169;284;2240;1168;107;13;0;16;16;88;0;0 -155;'548;Vanuatu;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;10;60;60;60;60;60;34;101;42;23;23;226;225;131;131;131;179;167;122;346;294;294;767;716;918;918;3141;2008;3647;3757;2691;2344;2705;2601;2757;743;526;556;372;265;266;142;243;222;1630;963;65;12;1;12;14;65;0;0 -155;'548;Vanuatu;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 -155;'548;Vanuatu;1632;Sawnwood, coniferous;5616;Import quantity;m3;3700;3700;3700;3700;3700;3200;3200;1700;2400;900;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;400;1200;600;600;1000;1000;1000;619;164;281;281;293;338;627;627;571;5;721;1261;100;1200;1200;605;2298;974;370;2685;6345;5296;5750;8859;7016;6731;6752;9951;11140;8091;9498;8962;11800;17496;9205;11626 -155;'548;Vanuatu;1632;Sawnwood, coniferous;5622;Import value;1000 USD;117;117;117;117;117;135;135;56;145;59;83;83;83;83;126;126;126;126;126;126;80;266;80;80;182;182;182;183;51;61;61;68;64;173;173;156;1;140;162;46;337;337;170;400;367;176;915;1114;1550;2000;2063;2409;2469;2459;2990;3336;2815;3149;2878;3870;5481;3605;4413 -155;'548;Vanuatu;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;213;108;108;108;108;4;47;20;0;0;0;0;20;26;8;121;12;0;29;0;18;52;22;2;20;0;0;0;0;0;0;0 -155;'548;Vanuatu;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;70;70;70;70;2;12;10;0;0;0;0;24;16;7;34;4;0;8;0;71;15;7;4;14;0;0;0;0;0;0;0 -155;'548;Vanuatu;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;5000;6000;5000;6000;6000;5000;5000;5000;5000;5000;2000;2000;2000;2000;2000;2000;2000;3000;3000;4000;6000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;15000;18000;18000;28000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000 -155;'548;Vanuatu;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;100;100;100;100;100;100;100;400;300;300;300;300;0;0;7;0;0;63;63;5;5;13;16;1;90;700;700;700;700;2323;110;330;1512;330;18;83;31;11;14;23;290;31;408;3;0;1;10;19;9 -155;'548;Vanuatu;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;10;10;10;10;10;10;10;102;70;70;70;70;0;0;2;0;0;14;14;5;5;3;4;1;4;180;180;180;180;407;33;135;721;124;7;112;23;4;23;11;109;61;144;3;0;1;11;10;4 -155;'548;Vanuatu;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;200;500;500;500;500;500;300;900;300;100;100;800;900;700;700;700;1200;1300;413;909;844;844;1596;1386;1619;1619;6190;3268;6270;13900;10000;5400;6430;6568;7024;1550;967;923;2531;286;366;187;151;232;2218;1166;87;13;0;16;16;88;0;0 -155;'548;Vanuatu;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;10;60;60;60;60;60;34;101;42;23;23;226;225;131;131;131;179;167;122;346;294;294;667;646;848;848;3071;2006;3635;3747;2691;2344;2705;2601;2733;727;519;522;368;265;258;142;172;207;1623;959;51;12;1;12;14;65;0;0 -155;'548;Vanuatu;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 -155;'548;Vanuatu;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;45;0;0;0;3;3;10;10;10;10;12;41;98;96;86;273;444;312;345;1021;11;100;9;2;3;1;0;0;0;5;5 -155;'548;Vanuatu;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;0;0;0;1;1;5;5;5;5;16;37;66;118;122;175;260;345;289;1213;10;51;25;13;8;2;131;257;37;4;4 -155;'548;Vanuatu;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;131;131;131;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -155;'548;Vanuatu;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;62;62;62;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -155;'548;Vanuatu;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 -155;'548;Vanuatu;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;100;1500;2027;2027;3153;2225;2225;2350;1205;1205;1205;1205;1400;1400;700;600;600;600;500;500;500;381;145;250;250;191;232;142;60;366;428;425;946;1520;1450;1413;822;412;475;1362;1924;2032;948;1462;2035;1613;2938;1221;1947;2152;1736;1832;2706;2463;3310;1345;2631 -155;'548;Vanuatu;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;74;170;243;197;278;278;278;321;207;207;207;207;207;207;220;265;301;301;268;268;268;160;48;115;115;89;96;78;34;206;130;181;113;377;373;2914;222;177;206;680;859;655;367;668;900;808;901;796;1387;1551;1071;874;1325;1172;1402;1022;2324 -155;'548;Vanuatu;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;4;12;241;229;245;228;228;228;236;285;228;275;228;228;228;228;228;228;228;228;228;229 -155;'548;Vanuatu;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;6;4;60;57;65;55;55;55;59;78;55;67;55;55;55;55;55;55;55;55;55;55 -155;'548;Vanuatu;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 -155;'548;Vanuatu;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;100;1500;1500;1500;2100;2100;2100;2100;800;800;800;800;800;800;300;300;400;400;300;300;300;315;61;104;104;73;130;25;25;321;339;322;110;400;400;1000;345;307;370;950;1632;1546;808;927;1791;1274;2633;956;1484;1951;1638;1442;1639;1228;2227;1126;1718 -155;'548;Vanuatu;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;74;170;182;151;230;230;230;230;92;92;92;92;92;92;141;163;211;211;178;178;178;131;22;50;50;36;52;20;20;194;119;143;47;227;227;2900;175;156;185;561;731;443;302;447;759;627;741;595;1098;1290;944;680;891;724;914;917;1407 -155;'548;Vanuatu;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;4;12;13;1;17;0;0;0;8;57;0;47;0;0;0;0;0;0;0;0;0;0 -155;'548;Vanuatu;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;6;4;5;2;10;0;0;0;4;23;0;12;0;0;0;0;0;0;0;0;0;0 -155;'548;Vanuatu;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;225 -155;'548;Vanuatu;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;272 -155;'548;Vanuatu;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;300;300;300;300;300;300;100;200;100;100;100;100;100;16;9;24;24;19;14;14;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -155;'548;Vanuatu;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;77;77;77;77;77;77;38;82;70;70;70;70;70;10;2;11;11;9;3;3;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -155;'548;Vanuatu;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;6;42;16;300;300;1;1;1;1;80;2;28;33;99;46;30;11;53;44;25;16;16;47;120;33;82;337 -155;'548;Vanuatu;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;13;3;83;83;1;2;2;2;17;2;14;20;44;40;24;6;71;44;24;59;59;37;47;25;62;476 -155;'548;Vanuatu;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1 -155;'548;Vanuatu;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0 -155;'548;Vanuatu;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;16;3;0;0;25;0;0;0;0 -155;'548;Vanuatu;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;18;2;0;0;7;0;0;0;0 -155;'548;Vanuatu;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;527;527;1053;125;125;250;105;105;105;105;300;300;300;100;100;100;100;100;100;50;75;122;122;99;88;103;21;31;83;61;820;820;750;412;476;104;104;332;289;457;106;435;197;308;293;211;403;173;82;374;995;1115;1050;137;576 -155;'548;Vanuatu;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;61;46;48;48;48;91;38;38;38;38;38;38;41;20;20;20;20;20;20;19;24;54;54;44;41;55;11;9;8;25;63;67;63;13;45;19;19;102;125;197;44;176;100;156;153;129;227;235;68;135;390;401;463;43;441 -155;'548;Vanuatu;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;228;228;228;228;228;228;228;228;228;228;228;228;228;228;228;228;228;228;228;228 -155;'548;Vanuatu;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;55;55;55;55;55;55;55;55;55;55;55;55;55;55;55;55;55;55;55 -155;'548;Vanuatu;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;200;200;50;5;69;8;8;195;67;203;54;306;162;239;195;150;257;60;23;241;530;967;866;57;455 -155;'548;Vanuatu;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;53;57;39;2;34;4;4;63;21;77;21;118;76;118;103;89;120;24;27;83;228;347;319;26;185 -155;'548;Vanuatu;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;9;537;537;400;400;400;66;66;107;215;244;49;126;32;66;91;50;129;109;55;129;460;136;172;68;109 -155;'548;Vanuatu;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;6;6;10;10;10;11;11;35;100;111;21;56;22;36;42;27;99;209;39;50;160;52;142;15;254 -155;'548;Vanuatu;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;228;228;228;228;228;228;228;228;228;228;228;228;228;228;228;228;228;228;228;228 -155;'548;Vanuatu;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;55;55;55;55;55;55;55;55;55;55;55;55;55;55;55;55;55;55;55 -155;'548;Vanuatu;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;8;21;21;20;72;4;83;83;300;7;7;30;30;30;7;10;3;3;3;3;7;11;17;4;4;4;5;12;12;12;12 -155;'548;Vanuatu;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;3;11;11;6;5;1;4;4;14;1;1;4;4;4;4;9;2;2;2;2;8;13;8;2;2;2;2;2;2;2;2 -155;'548;Vanuatu;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;527;527;1053;125;125;250;105;105;105;105;300;300;300;100;100;100;100;100;100;50;75;122;122;75;80;82;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -155;'548;Vanuatu;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;61;46;48;48;48;91;38;38;38;38;38;38;41;20;20;20;20;20;20;19;24;54;54;36;38;44;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -155;'548;Vanuatu;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;503;503;503;503;503;503;525;502;502;502;502;502;502;502;504;504;503;503;503;503;501;501;501 -155;'548;Vanuatu;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1;326;326;326;326;326;326;328;329;329;329;329;329;329;329;335;335;345;345;345;345;341;341;341 -155;'548;Vanuatu;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;39 -155;'548;Vanuatu;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;12;12;12;12;12;12;12;12;12;5 -155;'548;Vanuatu;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;500;500;500;500;500;500;500;500;500;500;500;500;500;502;502;501;501;501;501;501;501;501 -155;'548;Vanuatu;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;325;325;325;325;325;325;325;325;325;325;325;325;325;325;331;331;341;341;341;341;341;341;341 -155;'548;Vanuatu;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500 -155;'548;Vanuatu;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;325;325;325;325;325;325;325;325;325;325;325;325;325;325;325;325;325;325;325;325;325;325;325 -155;'548;Vanuatu;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500 -155;'548;Vanuatu;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;325;325;325;325;325;325;325;325;325;325;325;325;325;325;325;325;325;325;325;325;325;325;325 -155;'548;Vanuatu;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500;500 -155;'548;Vanuatu;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;325;325;325;325;325;325;325;325;325;325;325;325;325;325;325;325;325;325;325;325;325;325;325 -155;'548;Vanuatu;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;1;1;1;1;1;1;1 -155;'548;Vanuatu;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;16;16;16;16;16;16;16 -155;'548;Vanuatu;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;3;3;3;25;2;2;2;2;2;2;2;2;2;2;2;2;2;0;0;0 -155;'548;Vanuatu;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1;1;1;1;1;1;1;3;4;4;4;4;4;4;4;4;4;4;4;4;4;0;0;0 -155;'548;Vanuatu;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;39 -155;'548;Vanuatu;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;12;12;12;12;12;12;12;12;12;5 -155;'548;Vanuatu;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;113;107;107;65;79;214;252;347;1320;1188;1272;549;549;343;276;246;722;462;697;385;429;620;366;421;333;216;596;908;1312;310;545 -155;'548;Vanuatu;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;131;156;156;102;104;245;276;500;932;784;889;452;452;404;377;402;639;664;1066;617;604;992;578;677;646;352;978;1389;1797;600;964 -155;'548;Vanuatu;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;;;;;;;;;9;212;212;212;212;212;228;244;244;244;244;244;244;244;244;238;219;203 -155;'548;Vanuatu;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;;;;;;;;;6;15;15;15;15;15;48;70;70;70;70;70;70;70;70;57;42;9 -155;'548;Vanuatu;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;36;53;53;24;51;98;119;234;1227;1131;1153;400;400;223;225;209;251;208;536;289;306;431;244;284;161;195;541;795;1200;140;390 -155;'548;Vanuatu;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;31;72;72;36;67;113;154;301;708;682;697;309;309;238;261;308;378;339;692;423;390;613;364;445;368;272;792;1077;1484;292;649 -155;'548;Vanuatu;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;16;16;16;16;16;16;16;16;0 -155;'548;Vanuatu;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33;33;33;33;33;33;33;33;33;33;0 -155;'548;Vanuatu;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;8;8;1;1;25;18;7;1000;1000;1000;20;20;20;20;9;9;9;9;2;2;2;2;4;4;28;24;1;3;47;23 -155;'548;Vanuatu;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;4;4;1;1;16;11;11;440;440;440;10;10;10;10;11;11;11;11;2;2;2;2;5;5;16;15;3;6;53;25 -155;'548;Vanuatu;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;30;45;45;23;50;73;101;227;227;131;153;380;380;203;205;200;242;199;527;287;304;429;242;280;157;167;517;794;1197;93;367 -155;'548;Vanuatu;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;28;68;68;35;66;97;143;290;268;242;257;299;299;228;251;297;367;328;681;421;388;611;362;440;363;256;777;1074;1478;239;624 -155;'548;Vanuatu;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;16;16;16;16;16;16;16;16;0 -155;'548;Vanuatu;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33;33;33;33;33;33;33;33;33;33;0 -155;'548;Vanuatu;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;5;27;27;27;1;50;50;50;1;9;2;22;26;66;56;55;25;51;56;3;51;70;50;38;43 -155;'548;Vanuatu;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;4;37;37;37;3;39;39;39;5;13;8;30;43;106;76;125;62;100;178;3;152;246;191;104;139 -155;'548;Vanuatu;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;85;100;100;4;147;325;325;143;182;166;226;175;471;210;237;357;196;221;94;143;448;708;1113;48;287 -155;'548;Vanuatu;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;125;108;86;60;240;257;257;170;196;228;331;292;581;282;269;415;242;318;163;214;576;793;1199;105;403 -155;'548;Vanuatu;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;16;16;16;16;16;16;16;16;0 -155;'548;Vanuatu;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33;33;33;33;33;33;33;33;33;33;0 -155;'548;Vanuatu;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;11;100;100;100;5;5;5;10;22;25;14;2;30;11;11;17;21;8;7;21;18;16;34;7;37 -155;'548;Vanuatu;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;14;145;145;145;14;3;3;19;50;56;28;6;57;33;43;71;58;22;22;39;49;35;88;30;82 -155;'548;Vanuatu;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;77;54;54;41;28;116;133;113;93;57;119;149;149;120;51;37;471;254;161;96;123;189;122;137;172;21;55;113;112;170;155 -155;'548;Vanuatu;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;100;84;84;66;37;132;122;199;224;102;192;143;143;166;116;94;261;325;374;194;214;379;214;232;278;80;186;312;313;308;315 -155;'548;Vanuatu;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;;;;;;;;;9;212;212;212;212;212;212;228;228;228;228;228;228;228;228;222;203;203 -155;'548;Vanuatu;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;;;;;;;;;6;15;15;15;15;15;15;37;37;37;37;37;37;37;37;24;9;9 -155;'548;Vanuatu;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;70;50;3;80;8;8;65;15;8;11;52;65;78;98;125;99;81;135;5;42;85;93;141;112 -155;'548;Vanuatu;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;88;113;3;86;9;9;70;22;19;14;30;103;121;121;164;150;112;181;11;106;142;202;237;194 -155;'548;Vanuatu;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;13;13;15;8;39;39;14;15;15;25;157;42;6;8;32;17;49;36;11;12;27;18;28;43 -155;'548;Vanuatu;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;41;41;55;26;38;38;24;38;29;35;129;72;20;23;139;45;73;78;39;48;135;82;45;109 -155;'548;Vanuatu;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;9;9;25;25;25;25;25;25;25;25;19;0;0 -155;'548;Vanuatu;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;28;28;28;28;28;28;28;28;15;0;0 -155;'548;Vanuatu;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;1;2;2;4;4;2;2;4;1;1;1;1;1;3;2;1;1;25 -155;'548;Vanuatu;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;14;2;3;3;5;5;5;6;9;3;1;1;1;1;4;2;1;1;34 -155;'548;Vanuatu;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;4;4;4;4;1;1;1;1;1;1;135;23;1;1;18;3;2;30;1;4;10;9;1;3 -155;'548;Vanuatu;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;7;7;7;7;1;1;1;1;1;1;88;35;5;5;96;4;12;59;1;26;28;48;3;20 -155;'548;Vanuatu;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;8;8;8;1;35;35;10;10;2;10;16;16;2;2;12;12;45;4;8;4;15;7;25;15 -155;'548;Vanuatu;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;33;33;33;4;22;22;19;32;3;7;30;30;7;7;38;38;58;16;35;16;102;31;38;55 -155;'548;Vanuatu;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;9;9;25;25;25;25;25;25;25;25;19;0;0 -155;'548;Vanuatu;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;28;28;28;28;28;28;28;28;15;0;0 -155;'548;Vanuatu;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;2;2;10;10;2;1;1;1;1;1;1;1;1;1;0;1;1;0 -155;'548;Vanuatu;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;2;2;22;22;6;2;2;2;2;2;2;2;2;2;3;2;3;0 -155;'548;Vanuatu;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116;2;30;30;39;31;102;102;41;21;14;435;45;54;12;17;32;6;7;1;5;1;1;1;1;0 -155;'548;Vanuatu;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;132;5;70;70;44;80;96;96;72;56;46;212;166;199;53;70;76;19;47;19;30;32;35;29;26;12 -155;'548;Vanuatu;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;203;203;203;203;203;203;203;203;203;203;203;203;203;203;203;203;203 -155;'548;Vanuatu;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9 -155;'548;Vanuatu;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1844;1846;2226;1320;1315;2004;1488 -155;'548;Vanuatu;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;252;246;276;8;19;32;92 -155;'548;Vanuatu;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120;57;249;60;6;36;17 -155;'548;Vanuatu;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;1;1;1;1 -155;'548;Vanuatu;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;55;247;58;4;27;11 -155;'548;Vanuatu;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1 -155;'548;Vanuatu;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88;2;2;2;2;9;6 -155;'548;Vanuatu;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;0;0;0;0 -155;'548;Vanuatu;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;265;280;34;41;88;33;17 -155;'548;Vanuatu;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;209;209;209;0;0;0;0 -155;'548;Vanuatu;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;46;52;113;86;63;73 -155;'548;Vanuatu;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;31;7;0;0;0;1 -155;'548;Vanuatu;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;572;228;269;137;172;194;235 -155;'548;Vanuatu;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;87 -155;'548;Vanuatu;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;704;959;936;509;518;1397;891 -155;'548;Vanuatu;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;0;54;3;0;18;3 -155;'548;Vanuatu;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;131;349;349;349;65;1 -155;'548;Vanuatu;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;145;337;111;96;216;254 -155;'548;Vanuatu;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;2;2;2;16;11;0 -155;'548;Vanuatu;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3237;3503;4375;3978;5207;4936;5159 -155;'548;Vanuatu;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;6;1;15;1;1;1 -155;'548;Vanuatu;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;2;7;2;0;0;0 -155;'548;Vanuatu;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;65;89;144;180;232;110 -155;'548;Vanuatu;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -155;'548;Vanuatu;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1170;1030;1498;1381;1664;1719;2197 -155;'548;Vanuatu;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1;1;0;0;0;0 -155;'548;Vanuatu;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;617;681;805;692;841;790;988 -155;'548;Vanuatu;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;2;0;14;1;0;0 -155;'548;Vanuatu;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1394;1725;1976;1759;2522;2195;1864 -155;'548;Vanuatu;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;3;0;1;0;1;1 -236;'862;Venezuela (Bolivarian Republic of);1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;158004;112500;159410;145543;141546;207370;262085 -236;'862;Venezuela (Bolivarian Republic of);1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66292;64074;26573;21734;40327;44412;64898 -236;'862;Venezuela (Bolivarian Republic of);1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;24530;28182;25301;18954;21973;21302;23262;36777;40392;53118;47362;58215;61046;100155;86143;139015;172235;215349;236271;249808;270895;339139;277297;262505;252938;223848;258005;283461;240873;236469;277755;440027;230291;303551;406397;232418;322427;301432;261232;373888;407657;268911;210744;337601;392870;406170;395976;705579;643081;454886;515206;483248;533249;416659.2;304774;135852;72579;57619;64650;57132;61153;73996;117545 -236;'862;Venezuela (Bolivarian Republic of);1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;14;41;8;5;168;111;2;;;;;;;;;;;;;;;;;;;;;;;1214;8;69847;41114;76471;70239;51877;132152;90158;56020;49274;59909;54929;64813;71609;56013;39210;49700;33279;11669;10386;4572.43;31766;35100;58624;28350;26142;59997;58270;22801;16431;36459;40361;60910 -236;'862;Venezuela (Bolivarian Republic of);1861;Roundwood;5516;Production;m3;1688653;1742084;1816652;1947189;2036029;2105508;2115960;2162723;2170834;2324332;2342742;2489691;2518001;2652508;2662129;2699816;2746085;2811803;2883636;2982999;2936551;2926190;3374520;3119386;3289046;3443789;3715474;3858747;3798509;3928333;3855726;4271825;4350439;4383420;4305961;4590602;4738202;4638777;5317840;4707654;4620299;5107911;4802503;5319092;5285693;5556521;6061100;6262500;6358625;5904562;5830388;5420793;5517782;5514360;5551531;5574437;5597702;5621326;5645310;5669652;5694226;5719154;5744437 -236;'862;Venezuela (Bolivarian Republic of);1861;Roundwood;5616;Import quantity;m3;53900;30300;12500;6300;1800;1300;200;200;2000;3000;2800;2700;1300;1600;1600;33900;18700;29600;24000;23400;95700;113600;107000;32000;11800;11800;11800;11800;200;1073;995;30692;11566;956;47300;5200;3300;400;300;300;300;0;0;0;0;0;0;232;461;489;274;4426;7238;6407;40;0;283;68;165;409;1;0;20 -236;'862;Venezuela (Bolivarian Republic of);1861;Roundwood;5622;Import value;1000 USD;1644;1209;461;206;92;65;13;9;85;185;152;131;90;162;162;2139;2243;2870;2421;2329;11500;15530;15507;4600;1652;1652;1652;1652;47;216;103;2085;616;62;3370;984;626;73;110;159;150;0;0;0;0;0;0;59;73;30;61;787;1010;520.2;3;0;131;18;32;194;2;0;6 -236;'862;Venezuela (Bolivarian Republic of);1861;Roundwood;5916;Export quantity;m3;300;700;100;100;2500;2000;100;;;;;;;;;;;;;;;;;;;;;;;16448;31;1426;1650;806;27900;47500;8900;3000;5000;4900;5600;4018;12583;19963;6260;940;0;5;0;88;1;0;102;0;0;0;1027;8670;14065;4748;27800;16137;16115 -236;'862;Venezuela (Bolivarian Republic of);1861;Roundwood;5922;Export value;1000 USD;14;41;8;5;168;111;2;;;;;;;;;;;;;;;;;;;;;;;1214;8;54;150;124;1991;2990;833;511;677;238;173;126;471;608;202;82;0;0;0;10;0.43;0;34;0;0;0;418;2593;1888;1921;9881;5483;10909 -236;'862;Venezuela (Bolivarian Republic 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;60000;118000;237000;295000;417000;462000;662000;607000;383000;910000;481000;320000;567000;420000;936000;1098000;1197000;1598000;1707000;1760000;1028000;938000;537000;519000;425000;425000;425000;425000;425000;425000;425000;425000;425000;425000 -236;'862;Venezuela (Bolivarian Republic of);1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -236;'862;Venezuela (Bolivarian Republic of);1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -236;'862;Venezuela (Bolivarian Republic of);1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;184;3175;11706;0;0;30;0 -236;'862;Venezuela (Bolivarian Republic of);1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;290;917;0;0;0;0 -236;'862;Venezuela (Bolivarian Republic of);1863;Roundwood, non-coniferous;5516;Production;m3;1688653;1742084;1816652;1947189;2036029;2105508;2115960;2162723;2170834;2324332;2342742;2489691;2518001;2652508;2662129;2699816;2746085;2811803;2883636;2982999;2936551;2926190;3374520;3119386;3289046;3443789;3715474;3858747;3798509;3868333;3737726;4034825;4055439;3966420;3843961;3928602;4131202;4255777;4407840;4226654;4300299;4540911;4382503;4383092;4187693;4359521;4463100;4555500;4598625;4876562;4892388;4883793;4998782;5089360;5126531;5149437;5172702;5196326;5220310;5244652;5269226;5294154;5319437 -236;'862;Venezuela (Bolivarian Republic of);1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;283;68;165;409;1;0;20 -236;'862;Venezuela (Bolivarian Republic of);1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;131;18;32;194;2;0;6 -236;'862;Venezuela (Bolivarian Republic of);1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;843;5495;2359;4748;27800;16107;16115 -236;'862;Venezuela (Bolivarian Republic of);1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;403;2303;971;1921;9881;5483;10909 -236;'862;Venezuela (Bolivarian Republic of);1864;Wood fuel;5516;Production;m3;1367653;1407084;1447652;1489189;1532029;1576508;1621960;1668723;1716834;1766332;1819742;1876691;1910001;1968508;2026129;2063816;2110085;2175803;2247636;2346999;2415551;2491190;2577520;2631386;2698046;2725789;2776474;2812747;2963509;2990333;2987726;3018825;3095439;3197420;3252961;3329602;3352202;3431777;3516840;3604654;3650299;3696911;3744503;3793092;3842693;3883521;3925100;3967500;4010625;4054562;4089388;4124793;4160782;4197360;4234531;4257437;4280702;4304326;4328310;4352652;4377226;4402154;4427437 -236;'862;Venezuela (Bolivarian Republic of);1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;246;14;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -236;'862;Venezuela (Bolivarian Republic of);1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -236;'862;Venezuela (Bolivarian Republic 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 -236;'862;Venezuela (Bolivarian Republic of);1628;Wood fuel, non-coniferous;5516;Production;m3;1367653;1407084;1447652;1489189;1532029;1576508;1621960;1668723;1716834;1766332;1819742;1876691;1910001;1968508;2026129;2063816;2110085;2175803;2247636;2346999;2415551;2491190;2577520;2631386;2698046;2725789;2776474;2812747;2963509;2990333;2987726;3018825;3095439;3197420;3252961;3329602;3352202;3431777;3516840;3604654;3650299;3696911;3744503;3793092;3842693;3883521;3925100;3967500;4010625;4054562;4089388;4124793;4160782;4197360;4234531;4257437;4280702;4304326;4328310;4352652;4377226;4402154;4427437 -236;'862;Venezuela (Bolivarian Republic of);1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;246;14;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -236;'862;Venezuela (Bolivarian Republic of);1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -236;'862;Venezuela (Bolivarian Republic of);1865;Industrial roundwood;5516;Production;m3;321000;335000;369000;458000;504000;529000;494000;494000;454000;558000;523000;613000;608000;684000;636000;636000;636000;636000;636000;636000;521000;435000;797000;488000;591000;718000;939000;1046000;835000;938000;868000;1253000;1255000;1186000;1053000;1261000;1386000;1207000;1801000;1103000;970000;1411000;1058000;1526000;1443000;1673000;2136000;2295000;2348000;1850000;1741000;1296000;1357000;1317000;1317000;1317000;1317000;1317000;1317000;1317000;1317000;1317000;1317000 -236;'862;Venezuela (Bolivarian Republic of);1865;Industrial roundwood;5616;Import quantity;m3;53900;30300;12500;6300;1800;1300;200;200;2000;3000;2800;2700;1300;1600;1600;33900;18700;29600;24000;23400;95700;113600;107000;32000;11800;11800;11800;11800;200;1073;995;30446;11552;956;47300;5200;3300;400;300;300;300;0;0;0;0;0;0;232;461;489;274;4426;7238;6407;40;0;283;68;165;409;1;0;20 -236;'862;Venezuela (Bolivarian Republic of);1865;Industrial roundwood;5622;Import value;1000 USD;1644;1209;461;206;92;65;13;9;85;185;152;131;90;162;162;2139;2243;2870;2421;2329;11500;15530;15507;4600;1652;1652;1652;1652;47;216;103;2075;615;62;3370;984;626;73;110;159;150;0;0;0;0;0;0;59;73;30;61;787;1010;520.2;3;0;131;18;32;194;2;0;6 -236;'862;Venezuela (Bolivarian Republic of);1865;Industrial roundwood;5916;Export quantity;m3;300;700;100;100;2500;2000;100;;;;;;;;;;;;;;;;;;;;;;;16448;31;1426;1650;806;27900;47500;8900;3000;5000;4900;5600;4018;12583;19963;6260;940;0;5;0;88;1;0;102;0;0;0;1027;8670;14065;4748;27800;16137;16115 -236;'862;Venezuela (Bolivarian Republic of);1865;Industrial roundwood;5922;Export value;1000 USD;14;41;8;5;168;111;2;;;;;;;;;;;;;;;;;;;;;;;1214;8;54;150;124;1991;2990;833;511;677;238;173;126;471;608;202;82;0;0;0;10;0.43;0;34;0;0;0;418;2593;1888;1921;9881;5483;10909 -236;'862;Venezuela (Bolivarian Republic of);1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60000;118000;237000;295000;417000;462000;662000;607000;383000;910000;481000;320000;567000;420000;936000;1098000;1197000;1598000;1707000;1760000;1028000;938000;537000;519000;425000;425000;425000;425000;425000;425000;425000;425000;425000;425000 -236;'862;Venezuela (Bolivarian Republic of);1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;548;984;6337;243;956;1000;2600;3000;400;300;300;300;0;0;0;0;0;0;124;305;489;274;4416;7202;6397;39;0;0;0;0;0;0;0;0 -236;'862;Venezuela (Bolivarian Republic of);1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;102;937;19;62;112;601;563;73;110;159;150;0;0;0;0;0;0;16;15;30;61;779;986;506;3;0;0;0;0;0;0;0;0 -236;'862;Venezuela (Bolivarian Republic of);1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3849;20;536;138;706;27800;47400;6000;0;0;0;0;0;0;0;0;0;0;5;0;88;0;0;0;0;0;0;184;3175;11706;0;0;30;0 -236;'862;Venezuela (Bolivarian Republic of);1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;364;3;22;19;85;1952;2951;344;0;0;0;0;0;0;0;0;0;0;0;0;10;0;0;0;0;0;0;15;290;917;0;0;0;0 -236;'862;Venezuela (Bolivarian Republic of);1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;548;984;6337;243;956;1000;2600;3000;400;300;300;300;0;0;0;0;0;0;124;305;489;274;4416;7202;6397;39;0;0;0;0;0;0;0;0 -236;'862;Venezuela (Bolivarian Republic of);1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;102;937;19;62;112;601;563;73;110;159;150;0;0;0;0;0;0;16;15;30;61;779;986;506;3;0;0;0;0;0;0;0;0 -236;'862;Venezuela (Bolivarian Republic of);1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3849;20;536;138;706;27800;47400;6000;0;0;0;0;0;0;0;0;0;0;5;0;88;0;0;0;0;0;0;184;3175;11706;0;0;30;0 -236;'862;Venezuela (Bolivarian Republic of);1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;364;3;22;19;85;1952;2951;344;0;0;0;0;0;0;0;0;0;0;0;0;10;0;0;0;0;0;0;15;290;917;0;0;0;0 -236;'862;Venezuela (Bolivarian Republic of);1867;Industrial roundwood, non-coniferous;5516;Production;m3;321000;335000;369000;458000;504000;529000;494000;494000;454000;558000;523000;613000;608000;684000;636000;636000;636000;636000;636000;636000;521000;435000;797000;488000;591000;718000;939000;1046000;835000;878000;750000;1016000;960000;769000;591000;599000;779000;824000;891000;622000;650000;844000;638000;590000;345000;476000;538000;588000;588000;822000;803000;759000;838000;892000;892000;892000;892000;892000;892000;892000;892000;892000;892000 -236;'862;Venezuela (Bolivarian Republic of);1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;525;11;24109;11309;0;46300;2600;300;0;0;0;0;0;0;0;0;0;0;108;156;0;0;10;36;10;1;0;283;68;165;409;1;0;20 -236;'862;Venezuela (Bolivarian Republic of);1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;155;1;1138;596;0;3258;383;63;0;0;0;0;0;0;0;0;0;0;43;58;0;0;8;24;14.2;0;0;131;18;32;194;2;0;6 -236;'862;Venezuela (Bolivarian Republic of);1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12599;11;890;1512;100;100;100;2900;3000;5000;4900;5600;4018;12583;19963;6260;940;0;0;0;0;1;0;102;0;0;0;843;5495;2359;4748;27800;16107;16115 -236;'862;Venezuela (Bolivarian Republic of);1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;850;5;32;131;39;39;39;489;511;677;238;173;126;471;608;202;82;0;0;0;0;0.43;0;34;0;0;0;403;2303;971;1921;9881;5483;10909 -236;'862;Venezuela (Bolivarian Republic of);1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;10325;0;0;0;100;0;0;0;0;0;0;0;0;0;0;69;73;0;0;3;0;2;1;0;55;44;0;0;0;0;14 -236;'862;Venezuela (Bolivarian Republic of);1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;496;0;0;0;35;0;0;0;0;0;0;0;0;0;0;21;26;0;0;1;0;0.2;0;0;59;13;0;0;0;0;6 -236;'862;Venezuela (Bolivarian Republic of);1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12599;11;890;1512;100;100;100;2900;3000;5000;4900;5600;4018;12583;19963;6260;940;0;0;0;0;1;0;102;0;0;0;843;5495;2359;4748;27800;15775;16115 -236;'862;Venezuela (Bolivarian Republic of);1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;850;5;32;131;39;39;39;489;511;677;238;173;126;471;608;202;82;0;0;0;0;0.43;0;34;0;0;0;403;2303;971;1921;9881;5387;10813 -236;'862;Venezuela (Bolivarian Republic of);1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;525;11;24084;984;0;46300;2600;200;0;0;0;0;0;0;0;0;0;0;39;83;0;0;7;36;8;0;0;228;24;165;409;1;0;6 -236;'862;Venezuela (Bolivarian Republic of);1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;155;1;1137;100;0;3258;383;28;0;0;0;0;0;0;0;0;0;0;22;32;0;0;7;24;14;0;0;72;5;32;194;2;0;0 -236;'862;Venezuela (Bolivarian Republic of);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;332;0 -236;'862;Venezuela (Bolivarian Republic of);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;96;96 -236;'862;Venezuela (Bolivarian Republic of);1868;Sawlogs and veneer logs;5516;Production;m3;268000;287000;319000;408000;440000;452000;448000;462000;415000;437000;470000;560000;580000;660000;610000;610000;610000;610000;610000;610000;495000;409000;771000;462000;565000;692000;913000;1020000;809000;912000;842000;1139000;1162000;1086000;979000;1188000;1313000;1067000;1620000;848000;737000;1227000;827000;805000;1027000;1051000;1289000;1428000;1428000;445000;336000;319000;393000;299000;299000;299000;299000;299000;299000;299000;299000;299000;299000 -236;'862;Venezuela (Bolivarian Republic of);1868;Sawlogs and veneer logs;5616;Import quantity;m3;53600;30000;9800;3600;1200;100;100;100;100;1100;900;800;1000;1000;1000;33300;18100;29000;23400;23400;95700;113600;107000;32000;11800;11800;11800;11800;200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -236;'862;Venezuela (Bolivarian Republic of);1868;Sawlogs and veneer logs;5622;Import value;1000 USD;1623;1188;365;110;66;4;5;5;3;103;70;49;70;70;70;2047;2151;2778;2329;2329;11500;15530;15507;4600;1652;1652;1652;1652;47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -236;'862;Venezuela (Bolivarian Republic of);1868;Sawlogs and veneer logs;5916;Export quantity;m3;300;700;100;100;2500;2000;100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -236;'862;Venezuela (Bolivarian Republic of);1868;Sawlogs and veneer logs;5922;Export value;1000 USD;14;41;8;5;168;111;2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -236;'862;Venezuela (Bolivarian Republic of);1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60000;118000;202000;231000;344000;415000;616000;561000;383000;910000;481000;320000;567000;420000;446000;762000;675000;991000;1100000;1100000;368000;278000;222000;268000;174000;174000;174000;174000;174000;174000;174000;174000;174000;174000 -236;'862;Venezuela (Bolivarian Republic of);1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;53600;30000;9800;3600;1200;100;100;100;100;1100;900;800;1000;1000;1000;33300;18100;29000;23400;23400;95700;113600;107000;32000;11800;11800;11800;11800;200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -236;'862;Venezuela (Bolivarian Republic of);1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;1623;1188;365;110;66;4;5;5;3;103;70;49;70;70;70;2047;2151;2778;2329;2329;11500;15530;15507;4600;1652;1652;1652;1652;47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -236;'862;Venezuela (Bolivarian Republic of);1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;268000;287000;319000;408000;440000;452000;448000;462000;415000;437000;470000;560000;580000;660000;610000;610000;610000;610000;610000;610000;495000;409000;771000;462000;565000;692000;913000;1020000;809000;852000;724000;937000;931000;742000;564000;572000;752000;684000;710000;367000;417000;660000;407000;359000;265000;376000;298000;328000;328000;77000;58000;97000;125000;125000;125000;125000;125000;125000;125000;125000;125000;125000;125000 -236;'862;Venezuela (Bolivarian Republic of);1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -236;'862;Venezuela (Bolivarian Republic of);1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -236;'862;Venezuela (Bolivarian Republic of);1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;300;700;100;100;2500;2000;100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -236;'862;Venezuela (Bolivarian Republic of);1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;14;41;8;5;168;111;2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -236;'862;Venezuela (Bolivarian Republic of);2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140000;181000;255000;233000;184000;231000;721000;416000;622000;847000;867000;920000;920000;920000;492000;479000;533000;533000;533000;533000;533000;533000;533000;533000;533000;533000 -236;'862;Venezuela (Bolivarian Republic of);1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;490000;336000;522000;607000;607000;660000;660000;660000;315000;251000;251000;251000;251000;251000;251000;251000;251000;251000;251000;251000 -236;'862;Venezuela (Bolivarian Republic of);1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140000;181000;255000;233000;184000;231000;231000;80000;100000;240000;260000;260000;260000;260000;177000;228000;282000;282000;282000;282000;282000;282000;282000;282000;282000;282000 -236;'862;Venezuela (Bolivarian Republic of);1614;Pulpwood, round and split, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -236;'862;Venezuela (Bolivarian Republic of);1614;Pulpwood, round and split, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -236;'862;Venezuela (Bolivarian Republic of);1870;Pulpwood and particles (1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35000;64000;73000;47000;46000;46000;;;;;;;;;;;;;;;;;;;;;;;;;; -236;'862;Venezuela (Bolivarian Republic of);1870;Pulpwood and particles (1961-1997);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -236;'862;Venezuela (Bolivarian Republic of);1870;Pulpwood and particles (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -236;'862;Venezuela (Bolivarian Republic of);1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35000;64000;73000;47000;46000;46000;;;;;;;;;;;;;;;;;;;;;;;;;; -236;'862;Venezuela (Bolivarian Republic of);1871;Other industrial roundwood;5516;Production;m3;53000;48000;50000;50000;64000;77000;46000;32000;39000;121000;53000;53000;28000;24000;26000;26000;26000;26000;26000;26000;26000;26000;26000;26000;26000;26000;26000;26000;26000;26000;26000;79000;29000;27000;27000;27000;27000;0;0;0;0;0;0;0;0;0;0;0;0;485000;485000;485000;485000;485000;485000;485000;485000;485000;485000;485000;485000;485000;485000 -236;'862;Venezuela (Bolivarian Republic of);1871;Other industrial roundwood;5616;Import quantity;m3;300;300;2700;2700;600;1200;100;100;1900;1900;1900;1900;300;600;600;600;600;600;600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -236;'862;Venezuela (Bolivarian Republic of);1871;Other industrial roundwood;5622;Import value;1000 USD;21;21;96;96;26;61;8;4;82;82;82;82;20;92;92;92;92;92;92;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -236;'862;Venezuela (Bolivarian Republic of);1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;53000;48000;50000;50000;64000;77000;46000;32000;39000;121000;53000;53000;28000;24000;26000;26000;26000;26000;26000;26000;26000;26000;26000;26000;26000;26000;26000;26000;26000;26000;26000;79000;29000;27000;27000;27000;27000;0;0;0;0;0;0;0;0;0;0;0;0;485000;485000;485000;485000;485000;485000;485000;485000;485000;485000;485000;485000;485000;485000 -236;'862;Venezuela (Bolivarian Republic of);1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;300;300;2700;2700;600;1200;100;100;1900;1900;1900;1900;300;600;600;600;600;600;600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -236;'862;Venezuela (Bolivarian Republic of);1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;21;21;96;96;26;61;8;4;82;82;82;82;20;92;92;92;92;92;92;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -236;'862;Venezuela (Bolivarian Republic of);1630;Wood charcoal;5510;Production;t;75994;79370;83523;87562;91697;96237;100791;105671;110787;115950;122239;128798;133229;140167;147192;152044;156950;165809;174539;186429;194985;204543;215440;222987;231969;236376;243277;248637;266925;24000;24000;25000;40000;10000;10000;10000;9000;10000;8000;7300;7300;7300;7300;7300;7300;7300;7300;7300;7300;7000;6000;7000;5000;5000;5000;5000;10000;25000;20000;20000;20000;20000;20000 -236;'862;Venezuela (Bolivarian Republic of);1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;0;0;0;1000;0;0;0;0;0;0;0;0;0;0;46;20;16;16;81;10;26;26;34;37;37;96;133;8;8;110 -236;'862;Venezuela (Bolivarian Republic of);1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;0;0;209;0;0;0;0;0;0;0;0;0;0;36;12;74;74;191;32;30;25;34;19;46;85;159;10;19;68 -236;'862;Venezuela (Bolivarian Republic of);1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;448;262;100;200;100;200;200;200;4000;4100;4100;6600;12323;6700;12900;12900;99;246;82;82;82;211;45;589;2774;7000;18928;28154;23153;32376;19834;31766 -236;'862;Venezuela (Bolivarian Republic of);1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;53;61;70;23;33;49;68;118;186;126;131;440;137;800;800;63;147;38;38;38;108;18;156;932;2636;6174;8970;7359;10327;8888;15799 -236;'862;Venezuela (Bolivarian Republic of);1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;326000;303000;185000;196000;219000;191000;191000;191000;292000;305000;305000;305000;305000;305000;305000;305000;723000;262000;123000;221000;338000;338000;338000;338000;338000;338000 -236;'862;Venezuela (Bolivarian Republic of);1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;100;0;0;0;0;0;0;0;0;49;75;750;768;744;426;1358;667;663;668;524;575;158;1752;272;1877 -236;'862;Venezuela (Bolivarian Republic of);1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;31;0;0;0;0;0;0;0;0;75;147;315;401;317;42;65;37;70;89;81;167;141;206;157;277 -236;'862;Venezuela (Bolivarian Republic of);1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;29135;29135;68406;62381;58730;108279;227996;243244;600015;139015;11;97853;214011;29;11;0;0;0 -236;'862;Venezuela (Bolivarian Republic of);1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;583;583;5377;6184;1193;2194;27108;30092;42724;11201;2;7345;15259;3;2;0;2;0 -236;'862;Venezuela (Bolivarian Republic of);1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68000;68000;68000;68000;68000;68000;68000;68000;169000;182000;182000;182000;182000;182000;182000;182000;600000;139000;0;98000;215000;215000;215000;215000;215000;215000 -236;'862;Venezuela (Bolivarian Republic of);1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120;716;1000;1800;400;400;100;0;0;0;0;0;0;0;0;27;3;721;721;721;414;1346;655;655;655;511;562;145;1648;168;1877 -236;'862;Venezuela (Bolivarian Republic of);1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;35;51;93;19;19;31;0;0;0;0;0;0;0;0;40;5;300;300;300;33;56;28;28;28;20;106;80;152;103;276 -236;'862;Venezuela (Bolivarian Republic of);1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;29135;29135;35025;29000;58729;108278;227996;243234;600000;139000;0;97842;214000;18;0;0;0;0 -236;'862;Venezuela (Bolivarian Republic of);1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;583;583;716;1523;1190;2191;27108;30090;42721;11198;0;7343;15257;1;0;0;2;0 -236;'862;Venezuela (Bolivarian Republic of);1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50000;55000;41000;22000;22000;22000;22000;22000;258000;235000;117000;128000;151000;123000;123000;123000;123000;123000;123000;123000;123000;123000;123000;123000;123000;123000;123000;123000;123000;123000;123000;123000;123000;123000 -236;'862;Venezuela (Bolivarian Republic of);1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;928;956;1200;0;0;0;0;0;0;0;0;0;0;0;0;22;72;29;47;23;12;12;12;8;13;13;13;13;104;104;0 -236;'862;Venezuela (Bolivarian Republic of);1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;36;40;52;0;0;0;0;0;0;0;0;0;0;0;0;35;142;15;101;17;9;9;9;42;61;61;61;61;54;54;1 -236;'862;Venezuela (Bolivarian Republic of);1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89;0;0;0;0;0;0;0;0;0;0;0;0;0;0;33381;33381;1;1;0;10;15;15;11;11;11;11;11;0;0;0 -236;'862;Venezuela (Bolivarian Republic of);1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;0;0;0;0;0;0;0;0;0;0;0;0;0;4661;4661;3;3;0;2;3;3;2;2;2;2;2;0;0;0 -236;'862;Venezuela (Bolivarian Republic of);1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;66;33;33;33 -236;'862;Venezuela (Bolivarian Republic of);1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;164;60;60;60 -236;'862;Venezuela (Bolivarian Republic of);1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;21;5;5;5;5 -236;'862;Venezuela (Bolivarian Republic of);1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;5;1;1;1;1 -236;'862;Venezuela (Bolivarian Republic of);1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -236;'862;Venezuela (Bolivarian Republic of);1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -236;'862;Venezuela (Bolivarian Republic of);1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;66;33;33;33 -236;'862;Venezuela (Bolivarian Republic of);1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;164;60;60;60 -236;'862;Venezuela (Bolivarian Republic of);1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;21;5;5;5;5 -236;'862;Venezuela (Bolivarian Republic of);1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;5;1;1;1;1 -236;'862;Venezuela (Bolivarian Republic of);1872;Sawnwood;5516;Production;m3;154000;155000;244000;326000;215000;205000;201000;250000;311000;328000;328000;326000;332000;378000;349000;349000;349000;349000;349000;349000;349000;220000;210000;210000;308000;336000;336000;296000;290000;201000;227000;451000;258000;230000;222000;233000;250000;261000;174000;202000;301000;364000;501000;479000;562000;838000;848000;950000;950000;950000;950000;950000;950000;950000;950000;950000;950000;950000;950000;950000;950000;950000;950000 -236;'862;Venezuela (Bolivarian Republic of);1872;Sawnwood;5616;Import quantity;m3;6600;8700;10800;12600;10500;14300;5500;2800;4600;9500;11100;6500;5800;12100;12100;339200;305800;284200;281700;263400;192600;192000;195400;62100;61900;38100;16300;26700;13800;8300;16900;109446;18415;11800;11100;5100;6000;35300;28200;41800;49600;42634;15699;32335;7788;8301;29142;24926;19511;4944;7449;13006;6320;1543;426;356;564;33;96;5;111;183;1182 -236;'862;Venezuela (Bolivarian Republic of);1872;Sawnwood;5622;Import value;1000 USD;465;668;704;521;474;351;172;200;235;774;918;462;548;1243;1243;32492;30087;25776;35623;30657;23730;24343;28480;8305;9813;4441;1938;3378;2014;616;1588;15156;3371;1820;2127;1274;1130;4323;5052;8881;7364;6444;2710;5093;4918;4435;12054;16713;9787;3145;4674;6369;2899;726;268;130;287;97;82;110;64;172;1349 -236;'862;Venezuela (Bolivarian Republic of);1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1180;19092;4500;3000;1900;2300;1300;2500;300;6800;60557;44430;68751;37596;6254;125;125;1;19;3;2;11;2;16;2673;20377;36100;47670;49297;49125;96290;78058 -236;'862;Venezuela (Bolivarian Republic of);1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;513;1281;839;752;653;528;520;986;130;1309;7926;7008;11684;6347;1092;16;16;1;18;1;1;10;2;8;844;5066;10337;6751;5859;13763;20916;19303 -236;'862;Venezuela (Bolivarian Republic of);1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21000;27000;199000;43000;29000;21000;31000;10000;0;0;27000;90000;101000;260000;289000;371000;538000;598000;670000;670000;670000;670000;670000;670000;670000;670000;670000;670000;670000;670000;670000;670000;670000;670000 -236;'862;Venezuela (Bolivarian Republic of);1632;Sawnwood, coniferous;5616;Import quantity;m3;3700;5000;6100;7100;6050;8350;3400;2250;3000;5900;6750;3950;3700;9600;9600;291100;263400;205450;210150;209850;139050;118350;121700;38400;30800;19100;8800;16500;10600;5400;6900;98812;12516;1900;1700;1600;700;22800;9700;7500;18400;3649;1612;2594;3184;1687;21402;5785;11498;611;1573;3778;950;854;188;244;203;2;40;5;74;104;1033 -236;'862;Venezuela (Bolivarian Republic of);1632;Sawnwood, coniferous;5622;Import value;1000 USD;259;385;392;296;288;239;122;150;166;477;548;278;396;932;932;25828;23718;16666;23025;22978;16051;14450;18540;3145;2874;1201;897;1512;1224;384;424;12423;2039;203;552;542;230;2227;1785;2633;3634;711;639;1044;2469;644;6034;1779;3489;161;440;1420;293;216;78;90;79;5;13;4;24;80;1220 -236;'862;Venezuela (Bolivarian Republic of);1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;227;18732;2700;1900;500;1000;100;300;200;6700;60472;43712;66278;37070;6114;72;72;0;0;3;1;0;0;10;1951;17472;25880;42788;42783;35053;51012;51012 -236;'862;Venezuela (Bolivarian Republic of);1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;1111;377;393;107;234;63;144;77;1261;7874;6837;11208;6275;1050;8;8;0;0;1;0;0;0;1;428;3346;5901;5006;4119;8442;8285;8285 -236;'862;Venezuela (Bolivarian Republic of);1633;Sawnwood, non-coniferous;5516;Production;m3;154000;155000;244000;326000;215000;205000;201000;250000;311000;328000;328000;326000;332000;378000;349000;349000;349000;349000;349000;349000;349000;220000;210000;210000;308000;336000;336000;296000;290000;180000;200000;252000;215000;201000;201000;202000;240000;261000;174000;175000;211000;263000;241000;190000;191000;300000;250000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000;280000 -236;'862;Venezuela (Bolivarian Republic of);1633;Sawnwood, non-coniferous;5616;Import quantity;m3;2900;3700;4700;5500;4450;5950;2100;550;1600;3600;4350;2550;2100;2500;2500;48100;42400;78750;71550;53550;53550;73650;73700;23700;31100;19000;7500;10200;3200;2900;10000;10634;5899;9900;9400;3500;5300;12500;18500;34300;31200;38985;14087;29741;4604;6614;7740;19141;8013;4333;5876;9228;5370;689;238;112;361;31;56;0;37;79;149 -236;'862;Venezuela (Bolivarian Republic of);1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;206;283;312;225;186;112;50;50;69;297;370;184;152;311;311;6664;6369;9110;12598;7679;7679;9893;9940;5160;6939;3240;1041;1866;790;232;1164;2733;1332;1617;1575;732;900;2096;3267;6248;3730;5733;2071;4049;2449;3791;6020;14934;6298;2984;4234;4949;2606;510;190;40;208;92;69;106;40;92;129 -236;'862;Venezuela (Bolivarian Republic of);1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;953;360;1800;1100;1400;1300;1200;2200;100;100;85;718;2473;526;140;53;53;1;19;0;1;11;2;6;722;2905;10220;4882;6514;14072;45278;27046 -236;'862;Venezuela (Bolivarian Republic of);1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;464;170;462;359;546;294;457;842;53;48;52;171;476;72;42;8;8;1;18;0;1;10;2;7;416;1720;4436;1745;1740;5321;12631;11018 -236;'862;Venezuela (Bolivarian Republic of);1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112000;123000;125000;129000;129000;129000;129000;34000;29000;30000;28000;27000;30000;20000;20000;20000;9000;3000;5000;5000;1000;1000;2000;2000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000 -236;'862;Venezuela (Bolivarian Republic of);1634;Veneer sheets;5616;Import quantity;m3;300;300;300;700;700;900;800;700;600;1200;2400;2500;1900;2500;2500;2500;2500;5900;5900;5900;5900;10300;4900;4900;4700;4700;4700;4700;4700;4700;4700;6169;2320;3000;2000;1900;2200;6200;2600;2000;2000;4477;2677;4269;4778;3814;2916;3415;3562;2427;1945;2435;660;1621;1166;645;74;124;94;87;94;262;185 -236;'862;Venezuela (Bolivarian Republic of);1634;Veneer sheets;5622;Import value;1000 USD;246;333;292;514;596;787;609;619;552;1039;1400;1321;1350;1907;1907;1907;1907;4012;4012;4012;4012;8049;3323;3323;2981;2981;2981;2981;2981;2981;2981;4344;1188;3375;1424;1204;1306;5719;3754;946;946;2602;1673;2639;4316;3953;3514;5693;4915;3069;3349;3870;1439;4533;3151;1532;176;507;221;196;235;656;1007 -236;'862;Venezuela (Bolivarian Republic of);1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;174;72;0;0;0;0;0;0;0;0;99;16;6;216;2;1;1;29;1;27;75;0;0;10;2;38;80;97;0;2;2;2 -236;'862;Venezuela (Bolivarian Republic of);1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;55;0;0;0;0;0;0;0;0;15;11;10;733;3;1;1;41;1;53;37;0;0;34;9;26;15;19;0;5;0;36 -236;'862;Venezuela (Bolivarian Republic of);1873;Wood-based panels;5516;Production;m3;11400;12300;13900;20000;25600;24700;35400;44400;51200;59000;64000;68000;75000;71000;81000;83000;74000;69000;101000;136000;151000;101000;129000;133000;109600;147700;143700;167000;157000;113000;169000;178000;151000;65000;65000;65000;60000;103800;67900;72000;97000;257000;242000;213000;227000;708400;673800;674800;674800;523000;490000;254000;308000;310000;310000;310000;310000;310000;310000;310000;310000;310000;310000 -236;'862;Venezuela (Bolivarian Republic of);1873;Wood-based panels;5616;Import quantity;m3;70;70;30;30;63;63;100;100;100;100;100;100;100;100;100;24100;57900;62900;64900;68100;68100;73300;33400;33600;15400;15400;15400;15400;15300;15300;19400;102224;19773;28291;28200;21400;55200;49100;52400;65500;68500;55039;33158;41427;48776;62801;65033;104677;80919;53217;57189;145761;63034;38157;15644;4645;3973;1729;5038;10638;6671;12241;34639 -236;'862;Venezuela (Bolivarian Republic of);1873;Wood-based panels;5622;Import value;1000 USD;18;19;8;8;15;15;24;16;16;16;23;20;22;65;65;4789;8819;13063;14616;18389;18389;28295;18914;18914;8998;8998;8998;8943;8893;8893;10020;34148;7174;8994;13471;8907;21964;18595;20717;22232;23646;16781;10125;15522;24368;32180;34883;63949;53635;29963;33796;80211;35806;24243;9925;2271;1797;755;1583;3317;3556;9552;23803 -236;'862;Venezuela (Bolivarian Republic of);1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;520;662;1603;2300;2400;5200;900;1600;900;3100;51835;124885;132270;162202;60740;88810;21614;8459;14375;6904;8200;9310;29117;30155;29636;27762;15666;3547;1568;1247;1336;2129 -236;'862;Venezuela (Bolivarian Republic of);1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;173;235;267;865;1092;1375;327;506;190;589;8891;22841;29837;26645;13329;24933;7774;2907;6971;1639;4162;4519;15224;16320;15383;11894;3755;856;375;230;178;331 -236;'862;Venezuela (Bolivarian Republic of);1640;Plywood and LVL;5516;Production;m3;8700;9200;10200;11900;15200;13900;19600;26600;30400;33000;35000;37000;43000;37000;40000;40000;29000;22000;50000;55000;69000;37000;47000;47000;33600;39700;39700;53000;50000;52000;39000;39000;39000;46000;46000;46000;0;30000;0;0;23000;21000;12000;28000;43000;20000;6000;7000;7000;2000;2000;2000;2000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000 -236;'862;Venezuela (Bolivarian Republic of);1640;Plywood and LVL;5616;Import quantity;m3;70;70;30;30;63;63;100;100;100;100;100;100;100;100;100;6000;11700;20200;21800;26200;26200;33200;33200;33200;15000;15000;15000;15000;15000;15000;15000;70670;16041;22600;22200;14300;36000;37200;33600;27000;27000;37839;18196;26045;39216;43374;47871;85653;67167;41524;44578;115216;49266;26102;12434;3201;2559;484;293;426;1246;2608;17673 -236;'862;Venezuela (Bolivarian Republic of);1640;Plywood and LVL;5622;Import value;1000 USD;18;19;8;8;15;15;24;16;16;16;23;20;22;65;65;2337;3631;6795;8279;11930;11930;18781;18781;18781;8866;8866;8866;8866;8866;8866;8866;26833;5907;7217;10931;6899;16477;14267;13858;10162;10162;11194;4962;10762;19531;24083;26250;50702;40995;21422;25726;61571;25956;17136;7733;1424;1064;249;122;244;823;1574;14114 -236;'862;Venezuela (Bolivarian Republic of);1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;220;230;200;100;100;400;200;100;0;0;35;39;110;85;77;5;227;0;0;16;0;40;10;291;0;0;525;318;0;0;0;0 -236;'862;Venezuela (Bolivarian Republic of);1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;121;63;46;46;203;61;12;0;0;13;4;17;82;50;1;143;0;0;7;0;7;16;98;1;0;161;135;119;0;0;0 -236;'862;Venezuela (Bolivarian Republic of);1646;Particle board and OSB (1961-1994);5516;Production;m3;2700;3100;3700;8100;10200;10000;15000;17000;20000;24000;27000;29000;30000;30000;35000;35000;35000;35000;35000;65000;66000;60000;78000;78000;65000;98000;98000;107000;98000;52000;121000;130000;103000;10000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -236;'862;Venezuela (Bolivarian Republic of);1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;18100;46200;42700;43100;41900;41900;40100;200;400;400;400;400;400;300;300;4400;18827;694;3900;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -236;'862;Venezuela (Bolivarian Republic of);1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;2452;5188;6268;6337;6459;6459;9514;133;133;132;132;132;77;27;27;1154;4231;255;1185;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -236;'862;Venezuela (Bolivarian Republic of);1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;396;1400;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -236;'862;Venezuela (Bolivarian Republic of);1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;105;203;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -236;'862;Venezuela (Bolivarian Republic of);1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;10000;60000;65000;59000;60000;62000;58000;18000;22000;16000;38400;11800;11800;11800;41000;31000;55000;74000;74000;74000;74000;74000;74000;74000;74000;74000;74000;74000 -236;'862;Venezuela (Bolivarian Republic of);1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;3800;10500;1900;3700;12000;12000;4200;1962;4561;1510;11765;9500;429;2860;883;2451;70;105;152;152;0;49;49;2602;6385;2281;1650;1594 -236;'862;Venezuela (Bolivarian Republic of);1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;982;757;1830;635;1124;2719;3118;875;451;1373;386;3886;4422;521;1209;658;1408;69;94;212;212;0;38;38;753;2039;1224;1154;1311 -236;'862;Venezuela (Bolivarian Republic of);1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;300;300;300;100;500;2600;20100;47126;46435;32442;7300;22400;14074;5775;5500;5497;38;461;461;461;35;6323;6323;1887;173;80;0;180 -236;'862;Venezuela (Bolivarian Republic of);1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;145;220;220;90;94;489;1816;4134;6077;4650;1198;9907;4428;1570;1300;1090;32;306;306;306;14;2146;2146;494;60;23;0;63 -236;'862;Venezuela (Bolivarian Republic of);1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1014;982;203;203;534;505;493;493;9;41;41;1;20;11;11;222 -236;'862;Venezuela (Bolivarian Republic of);1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;559;891;200;200;205;290;257;257;6;11;11;0;19;8;8;69 -236;'862;Venezuela (Bolivarian Republic of);1874;Fibreboard;5516;Production;m3;;;;;200;800;800;800;800;2000;2000;2000;2000;4000;6000;8000;10000;12000;16000;16000;16000;4000;4000;8000;11000;10000;6000;7000;9000;9000;9000;9000;9000;9000;9000;9000;0;8800;8900;12000;12000;178000;212000;163000;168000;650000;656000;656000;656000;480000;457000;197000;232000;232000;232000;232000;232000;232000;232000;232000;232000;232000;232000 -236;'862;Venezuela (Bolivarian Republic of);1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12727;3038;1791;3000;3300;8700;10000;15100;26500;29500;13000;13000;10821;8050;7662;7662;17581;9910;10607;9957;29941;13158;11410;2565;1435;1324;1155;2142;3807;3133;7972;15150 -236;'862;Venezuela (Bolivarian Republic of);1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3084;1012;592;1558;1251;3657;3693;5735;9351;10366;4712;4712;3387;4451;4211;4211;12167;10540;7683;6462;18366;9466;6638;1723;841;684;457;708;1015;1501;6816;8309 -236;'862;Venezuela (Bolivarian Republic of);1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;228;36;3;2100;2000;4500;400;1400;400;500;31700;77720;85725;129675;53363;66405;7313;2684;8875;1391;8162;8809;28646;29403;29601;21439;8818;1342;1395;1167;1336;1949 -236;'862;Venezuela (Bolivarian Republic of);1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;9;1;794;901;952;46;404;96;100;7062;18703;23743;21913;12081;15025;3203;1337;5671;542;4130;4206;14902;15916;15368;9748;1448;227;196;207;178;268 -236;'862;Venezuela (Bolivarian Republic of);1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8800;8900;12000;11000;90000;61000;61000;61000;385000;385000;385000;385000;385000;385000;2000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000 -236;'862;Venezuela (Bolivarian Republic of);1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1200;800;2900;3800;5200;6500;9500;3800;3800;3319;2909;3647;3647;5025;4128;1829;1829;4721;3237;1582;596;78;67;27;40;59;205;5273;1870 -236;'862;Venezuela (Bolivarian Republic of);1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;416;326;1250;1415;1695;2348;3363;1420;1420;1789;1847;2313;2313;4436;5088;2267;2267;3990;2863;1207;500;69;49;14;36;56;190;5575;1201 -236;'862;Venezuela (Bolivarian Republic of);1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1100;1000;4500;400;1400;400;500;16700;16700;4951;5984;5331;5331;22;22;22;22;22;22;19;155;155;57;215;148;246;216;0;1 -236;'862;Venezuela (Bolivarian Republic of);1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;316;423;952;46;404;96;100;3393;3393;1440;1977;1796;1796;16;16;16;16;16;16;12;55;55;12;64;22;25;40;0;1 -236;'862;Venezuela (Bolivarian Republic of);1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87000;150000;101000;106000;264000;270000;270000;270000;94000;71000;175000;212000;212000;212000;212000;212000;212000;212000;212000;212000;212000;212000 -236;'862;Venezuela (Bolivarian Republic of);1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1800;1200;5600;5400;7800;16600;16600;8500;8500;7064;4953;3827;3827;7268;5531;2451;1801;18946;7820;8643;1692;1080;1231;1102;2039;3660;2503;2503;12860 -236;'862;Venezuela (Bolivarian Republic of);1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1142;736;2331;1917;2980;5637;5637;3015;3015;1498;2539;1833;1833;4816;5088;2267;1046;10490;5256;4838;1119;668;625;433;649;928;1185;1185;6951 -236;'862;Venezuela (Bolivarian Republic of);1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;0;0;0;0;0;15000;59433;76800;119000;45958;59000;6840;2211;8402;918;7689;8772;28612;29233;29431;21337;8558;1149;1149;951;951;1947 -236;'862;Venezuela (Bolivarian Republic of);1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;478;478;0;0;0;0;0;3669;14682;21783;19294;10000;12944;2892;1026;5360;231;3819;4178;14878;15849;15301;9702;1350;171;171;167;167;267 -236;'862;Venezuela (Bolivarian Republic of);1650;Other fibreboard;5516;Production;m3;;;;;200;800;800;800;800;2000;2000;2000;2000;4000;6000;8000;10000;12000;16000;16000;16000;4000;4000;8000;11000;10000;6000;7000;9000;9000;9000;9000;9000;9000;9000;9000;0;0;0;0;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;20000;19000;19000;19000;19000;19000;19000;19000;19000;19000;19000;19000 -236;'862;Venezuela (Bolivarian Republic of);1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9311;126;86;0;1300;200;800;2100;3400;3400;700;700;438;188;188;188;5288;251;6327;6327;6274;2101;1185;277;277;26;26;63;88;425;196;420 -236;'862;Venezuela (Bolivarian Republic of);1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2008;49;16;0;189;76;361;1060;1366;1366;277;277;100;65;65;65;2915;364;3149;3149;3886;1347;593;104;104;10;10;23;31;126;56;157 -236;'862;Venezuela (Bolivarian Republic of);1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;228;36;3;0;0;0;0;0;0;0;0;1587;3974;4691;2074;2074;451;451;451;451;451;15;15;15;15;45;45;45;0;0;385;1 -236;'862;Venezuela (Bolivarian Republic of);1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;9;1;0;0;0;0;0;0;0;0;628;520;642;285;285;295;295;295;295;295;12;12;12;12;34;34;34;0;0;11;0 -236;'862;Venezuela (Bolivarian Republic of);1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3416;2912;1705;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -236;'862;Venezuela (Bolivarian Republic of);1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1076;963;576;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -236;'862;Venezuela (Bolivarian Republic of);1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -236;'862;Venezuela (Bolivarian Republic of);1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -236;'862;Venezuela (Bolivarian Republic of);1879;Total fibre furnish;5510;Production;t;5400;8000;10000;15000;18000;20000;20000;22500;22500;153500;154000;154000;172000;193000;164000;167000;181400;233500;245000;207600;192200;195800;240200;264200;307400;359000;383100;406000;328000;331000;362000;352000;377000;350000;508000;531000;468000;404000;342000;415000;397359;306106;245980;319066;327437;330173;363980;380670;343146;292435;305763;240238;240396;240396;240396;240396;218928;218928;218928;218928;218928;218928;218928 -236;'862;Venezuela (Bolivarian Republic of);1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;122300;134200;199400;151400;188500;158000;272140;261953;287800;273000;294300;291100;317000;317200;310100;275600;356400;367900;267400;379800;368700;300600;326300;382800;576722;405621;374400;507100;302400;331600;265270;250900;278900;267700;202300;187550;235682;242613;173777;134392;269695;227877;211338;255505;161119;181233;177433;201715;109108;12948;27670;26691;25176;13840;16591;34273 -236;'862;Venezuela (Bolivarian Republic of);1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;12611;14910;23840;16440;22789;22582;37165;42507;46418;53844;56177;61505;77681;86848;95708;70252;94563;100119;81676;114136;106807;133784;135913;146913;236888;103671;129482;240456;114794;112744;86344;90616;122620;96154;70037;67638;110062;115554;82588;44065;167915;120552;116490;186079;104927;114172;100578;132252;61697;8344;17811;18250;14943;10068;14209;27407 -236;'862;Venezuela (Bolivarian Republic of);1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;23;700;1300;1600;2900;4300;4500;5900;6200;7200;2980;9111;9111;1151;1151;2119;2156;2912;838;43;468;1021;1044;1044;31;31;31;101;773;542;1669 -236;'862;Venezuela (Bolivarian Republic of);1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;2;72;180;186;239;378;486;622;591;621;370;745;745;438;438;1583;1648;1708;151;26;173;392;436;436;24;24;24;41;385;341;455 -236;'862;Venezuela (Bolivarian Republic of);1878;Pulp for paper;5510;Production;t;5400;8000;10000;15000;18000;20000;20000;22500;22500;22500;23000;23000;26000;35000;30000;37000;45400;43500;56000;62600;46200;45800;60200;67200;68400;88000;101100;103000;88000;96000;88000;88000;113000;86000;244000;267000;204000;137000;128000;173000;176359;92106;95980;108066;107437;94173;126980;78670;49146;39435;60281;39396;39396;39396;39396;39396;17928;17928;17928;17928;17928;17928;17928 -236;'862;Venezuela (Bolivarian Republic of);1878;Pulp for paper;5610;Import quantity;t;;;;;;;;122300;134200;154400;106400;132500;106000;103100;135100;150300;150500;151900;165500;185900;182600;179900;145600;225400;242900;220400;294800;269700;182600;184500;184500;370965;221605;189000;220800;170300;178600;148670;146900;133900;122700;123000;108950;118982;125913;115804;48592;185994;151526;118139;175490;108008;140433;110069;187043;103828;12892;18960;23473;24150;13211;15983;34166 -236;'862;Venezuela (Bolivarian Republic of);1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;12611;14910;21357;14021;19750;18235;20507;27507;32823;38040;38005;42700;54870;63135;74698;49278;75872;81822;74900;100200;91700;106784;108913;108913;196701;81851;95326;175598;88294;84873;65471;70988;86737;60271;54670;53975;66062;71554;70706;30149;142274;95610;88491;159915;86108;102721;78786;129001;60812;8334;13646;17324;14692;9884;14090;27385 -236;'862;Venezuela (Bolivarian Republic of);1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2099;2099;2099;25;25;25;25;29;29;29;29;29;29;518;518;518 -236;'862;Venezuela (Bolivarian Republic of);1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1579;1579;1579;22;22;22;22;24;24;24;24;24;24;335;335;335 -236;'862;Venezuela (Bolivarian Republic of);1875;Wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;3400;5500;6000;6600;4200;4200;4200;4200;5800;7000;8400;9000;7000;8000;21000;21000;21000;20000;178000;201000;138000;137000;128000;173000;176359;92106;95980;108066;107437;94173;126980;78670;49146;39435;60281;39396;39396;39396;39396;39396;17928;17928;17928;17928;17928;17928;17928 -236;'862;Venezuela (Bolivarian Republic of);1875;Wood pulp;5610;Import quantity;t;;;;;;;;122300;134200;154400;106400;132500;106000;103100;135100;150300;150500;151900;165500;185900;182600;179900;145600;225400;242900;220400;294800;269700;182600;184500;184500;379059;221550;186500;221000;170028;178200;149670;147300;134400;123200;123000;108950;118982;125913;115804;48592;185308;151269;117937;175268;107807;140194;109779;187039;103822;12886;19697;23779;24954;13952;16729;34895 -236;'862;Venezuela (Bolivarian Republic of);1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;12611;14910;21357;14021;19750;18235;20507;27507;32823;38040;38005;42700;54870;63135;74698;49278;75872;81822;74900;100200;91700;106784;108913;108913;202064;81802;93937;175701;88259;84349;66096;71051;87110;60644;54670;53975;66062;71554;70706;30149;141032;95083;87722;157948;85504;102360;78249;128995;60763;8285;14314;17543;15378;10482;14707;27996 -236;'862;Venezuela (Bolivarian Republic of);1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2099;2099;2099;25;25;25;25;25;25;25;25;25;25;514;514;514 -236;'862;Venezuela (Bolivarian Republic of);1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1579;1579;1579;22;22;22;22;22;22;22;22;22;22;333;333;333 -236;'862;Venezuela (Bolivarian Republic of);1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -236;'862;Venezuela (Bolivarian Republic of);1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;35;35;35;35;10 -236;'862;Venezuela (Bolivarian Republic of);1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;22;20;20;20;6 -236;'862;Venezuela (Bolivarian Republic of);1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;489;489;489 -236;'862;Venezuela (Bolivarian Republic of);1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;311;311;311 -236;'862;Venezuela (Bolivarian Republic of);1654;Mechanical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;3400;5500;6000;6600;4200;4200;4200;4200;5800;7000;8400;9000;7000;8000;21000;21000;21000;20000;31000;31000;0;0;0;0;0;0;0;45000;43000;35902;35082;31338;22507;16400;31813;21468;21468;21468;21468;21468;;;;;;; -236;'862;Venezuela (Bolivarian Republic of);1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;1300;1000;2100;2100;3000;3000;1800;17700;26000;16500;8000;8900;29600;29600;2400;600;600;6900;6900;6900;131;28;300;500;9300;100;0;0;0;0;0;0;0;0;0;0;0;29;29;29;90;90;0;46;0;;;;;;; -236;'862;Venezuela (Bolivarian Republic of);1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;150;107;507;507;723;740;480;4700;6900;5000;2500;2800;9300;9300;800;200;200;2913;2913;2913;74;8;141;197;1589;55;0;0;0;0;0;0;0;0;0;0;0;392;392;392;30;30;0;16;0;;;;;;; -236;'862;Venezuela (Bolivarian Republic of);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;0;0;0;0;;;;;;; -236;'862;Venezuela (Bolivarian Republic of);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;0;0;0;0;;;;;;; -236;'862;Venezuela (Bolivarian Republic of);1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62000;29000;22000;24000;32000;33000;48460;14515;40639;23744;19311;6000;63097;21980;1624;0;0;0;0;0;0;0;;;;;;; -236;'862;Venezuela (Bolivarian Republic of);1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;316;5929;3500;300;600;200;0;0;0;0;0;0;2125;4407;2360;2360;17;58;1436;1436;1436;1436;0;1436;0;;;;;;; -236;'862;Venezuela (Bolivarian Republic of);1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;164;1982;1259;221;358;70;0;0;0;0;0;0;1055;2280;1180;1180;10;34;1162;1162;1162;1162;0;1162;0;;;;;;; -236;'862;Venezuela (Bolivarian Republic of);1656;Chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85000;141000;116000;113000;96000;140000;127899;77591;55341;39322;45126;52271;28801;25352;25015;23035;28468;17928;17928;17928;17928;17928;17928;17928;17928;17928;17928;17928;17928 -236;'862;Venezuela (Bolivarian Republic of);1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;122300;134200;154400;106400;131200;105000;101000;133000;147300;147500;150100;147800;159900;166100;171900;136700;195800;213300;218000;294200;269100;175700;177600;177600;370450;215573;182700;220000;160000;175900;146770;145000;133800;122600;123000;108950;116857;121506;113444;46232;185291;151182;116472;173803;106281;138668;109779;185557;103822;12886;18954;23432;24114;13170;15947;34138 -236;'862;Venezuela (Bolivarian Republic of);1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;12611;14910;21357;14021;19600;18128;20000;27000;32100;37300;37525;38000;47970;58135;72198;46478;66572;72522;74100;100000;91500;103871;106000;106000;196402;79802;92537;175180;86210;83323;64425;69942;86659;60193;54670;53975;65007;69274;69526;28969;141022;94657;86168;156394;84312;101168;78249;127817;60763;8285;13597;17253;14664;9843;14068;27371 -236;'862;Venezuela (Bolivarian Republic of);1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2099;2099;2099;25;25;25;25;25;25;25;25;25;25;25;25;25 -236;'862;Venezuela (Bolivarian Republic of);1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1579;1579;1579;22;22;22;22;22;22;22;22;22;22;22;22;22 -236;'862;Venezuela (Bolivarian Republic of);1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;177600;177600;70262;37330;32300;29700;23600;27700;24000;21700;20000;12800;8800;3520;6427;8272;10105;1500;9964;9659;3790;11800;4934;7210;8532;20861;8952;8952;8952;8952;1386;1440;1440;1440 -236;'862;Venezuela (Bolivarian Republic of);1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106000;106000;33478;12654;13825;22251;11230;12008;9689;9264;10675;5192;3745;1409;2875;3915;4831;812;6482;5255;2451;9440;3553;4957;6329;14154;5567;5567;5567;5567;837;747;747;747 -236;'862;Venezuela (Bolivarian Republic of);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 -236;'862;Venezuela (Bolivarian Republic of);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 -236;'862;Venezuela (Bolivarian Republic of);1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35781;27596;38239;39322;45126;52271;28801;25352;25015;23035;28468;17928;17928;17928;17928;17928;17928;17928;17928;17928;17928;17928;17928 -236;'862;Venezuela (Bolivarian Republic of);1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;298734;174469;146500;188700;134300;146000;119700;120800;112000;108000;113000;105000;110000;113234;103007;44400;175299;141484;112383;161699;101087;130670;100469;164565;94765;3934;10002;14440;22724;11728;14465;32674 -236;'862;Venezuela (Bolivarian Republic of);1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;162022;65459;76932;152221;73252;69844;52735;59016;74538;53748;50131;52275;61841;65359;64215;27677;134471;89221;83227;146437;80389;95415;71133;113587;55118;2718;8030;11608;13816;9091;13224;26566 -236;'862;Venezuela (Bolivarian Republic of);1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2099;2099;2099;25;25;25;25;25;25;25;25;25;25;25;25;25 -236;'862;Venezuela (Bolivarian Republic of);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;1579;1579;1579;22;22;22;22;22;22;22;22;22;22;22;22;22 -236;'862;Venezuela (Bolivarian Republic of);1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;4;2;42;24 -236;'862;Venezuela (Bolivarian Republic of);1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;11;5;97;58 -236;'862;Venezuela (Bolivarian Republic of);1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85000;141000;116000;113000;96000;140000;92118;49995;17102;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -236;'862;Venezuela (Bolivarian Republic of);1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;146;211;1100;0;0;200;70;0;0;100;100;100;100;0;0;0;0;7;7;12;46;546;546;9;69;;;;;;; -236;'862;Venezuela (Bolivarian Republic of);1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;47;480;0;0;123;36;0;0;101;97;97;97;0;0;0;0;13;13;40;14;374;374;3;46;;;;;;; -236;'862;Venezuela (Bolivarian Republic of);1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;;;;;;; -236;'862;Venezuela (Bolivarian Republic of);1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1308;3563;2800;1600;2100;2000;3000;2500;1800;1700;1100;330;330;0;332;332;28;32;292;292;214;242;232;122;36;;;;;;; -236;'862;Venezuela (Bolivarian Republic of);1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;824;1642;1300;708;1728;1348;1965;1662;1446;1152;697;194;194;0;480;480;69;168;477;477;356;422;413;73;32;;;;;;; -236;'862;Venezuela (Bolivarian Republic of);1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8162;20;0;200;128;2000;2900;2300;600;600;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;743;312;805;747;747;747 -236;'862;Venezuela (Bolivarian Republic of);1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5424;10;0;103;102;901;1671;1109;451;451;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;717;268;694;619;619;619 -236;'862;Venezuela (Bolivarian Republic of);1668;Pulp from fibres other than wood;5510;Production;t;5400;8000;10000;15000;18000;20000;20000;22500;22500;22500;23000;23000;26000;35000;30000;37000;42000;38000;50000;56000;42000;41600;56000;63000;62600;81000;92700;94000;81000;88000;67000;67000;92000;66000;66000;66000;66000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -236;'862;Venezuela (Bolivarian Republic of);1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;75;2500;0;400;2400;1900;1900;100;100;0;0;0;0;0;0;686;257;202;222;201;239;290;4;6;6;6;6;1;6;1;18 -236;'862;Venezuela (Bolivarian Republic of);1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;59;1389;0;137;1425;1046;1046;78;78;0;0;0;0;0;0;1242;527;769;1967;604;361;537;6;49;49;49;49;8;21;2;8 -236;'862;Venezuela (Bolivarian Republic of);1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4;4;4 -236;'862;Venezuela (Bolivarian Republic of);1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2 -236;'862;Venezuela (Bolivarian Republic of);1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;144;115;269;182;537;271;271;271;26;26;26;26;26;45;119 -236;'862;Venezuela (Bolivarian Republic of);1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;197;113;289;206;484;177;177;177;14;14;14;14;14;34;52 -236;'862;Venezuela (Bolivarian Republic of);1669;Recovered paper;5510;Production;t;;;;;;;;;;131000;131000;131000;146000;158000;134000;130000;136000;190000;189000;145000;146000;150000;180000;197000;239000;271000;282000;303000;240000;235000;274000;264000;264000;264000;264000;264000;264000;267000;214000;242000;221000;214000;150000;211000;220000;236000;237000;302000;294000;253000;245482;200842;201000;201000;201000;201000;201000;201000;201000;201000;201000;201000;201000 -236;'862;Venezuela (Bolivarian Republic of);1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;45000;45000;56000;52000;169040;126853;137500;122500;142400;125600;131100;134600;130200;130000;131000;125000;47000;85000;99000;118000;141800;198300;205757;184016;185400;286300;132100;153000;116600;104000;145000;145000;79300;78600;116700;116700;57973;85800;83701;76351;93199;80015;53111;40800;67364;14672;5280;56;8710;3218;1026;629;608;107 -236;'862;Venezuela (Bolivarian Republic of);1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;2483;2419;3039;4347;16658;15000;13595;15804;18172;18805;22811;23713;21010;20974;18691;18297;6776;13936;15107;27000;27000;38000;40187;21820;34156;64858;26500;27871;20873;19628;35883;35883;15367;13663;44000;44000;11882;13916;25641;24942;27999;26164;18819;11451;21792;3251;885;10;4165;926;251;184;119;22 -236;'862;Venezuela (Bolivarian Republic of);1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;23;700;1300;1600;2900;4300;4500;5900;6200;7200;2980;9111;9111;1151;1151;20;57;813;813;18;443;996;1015;1015;2;2;2;72;255;24;1151 -236;'862;Venezuela (Bolivarian Republic of);1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;2;72;180;186;239;378;486;622;591;621;370;745;745;438;438;4;69;129;129;4;151;370;412;412;0;0;0;17;50;6;120 -236;'862;Venezuela (Bolivarian Republic of);1876;Paper and paperboard;5510;Production;t;98800;105600;103300;138500;151600;163400;177400;198800;223400;249600;252300;276000;334000;342300;394700;423000;463900;492300;511900;501200;503000;482000;487000;557000;551000;612000;666000;720000;536000;622000;663000;659000;607000;628000;736000;671000;708000;493100;571000;456000;426239;238109;302097;439464;404738;441330;476803;625800;593142;483493;556702;335805;335805;335805;335805;335805;335805;335805;335805;335805;335805;335805;335805 -236;'862;Venezuela (Bolivarian Republic of);1876;Paper and paperboard;5610;Import quantity;t;100400;103300;82300;83600;90700;94200;99700;108600;118100;125800;120900;132300;143200;179900;127100;152818;198400;219100;216800;220400;242000;215100;219500;206300;191700;196000;197500;247400;151900;135500;176400;203263;177778;185500;163200;138100;207200;224091;175600;262130;310200;216660;172750;232574;262620;289790;314604;370947;329167;230084;209372;233030;292505;222434;132820;65231;38296;27288;37699;32782;39202;32614;48485 -236;'862;Venezuela (Bolivarian Republic of);1876;Paper and paperboard;5622;Import value;1000 USD;22157;25953;23836;17705;20796;20084;22444;23322;24594;27264;28429;33492;36454;59613;40259;51270;75335;113451;118094;116740;126416;167214;140821;132800;129375;124100;128300;159700;93154;87850;116150;141980;114213;159743;145343;105060;183528;184688;139843;218599;278946;173047;128598;204285;243714;283014;301460;451075;453763;301687;286483;286370;377365;285787;158936;69941;61722;37573;43927;37200;46319;48518;62897 -236;'862;Venezuela (Bolivarian Republic of);1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90569;59693;108400;78200;64234;210400;161399;100700;111366;113264;74292;82420;65568;51810;53720;53774;44975;525;520;562;317;68;386;387;14851;57210;27094;4608;857;2892;4146;11762 -236;'862;Venezuela (Bolivarian Republic of);1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68811;39334;75108;66381;46933;129144;88373;53297;47976;57061;37224;33981;28285;21204;22883;22929;18465;741;447;496;394;163;263;194;8535;32587;20112;4285;873;1867;4552;14076 -236;'862;Venezuela (Bolivarian Republic of);2042;Graphic papers;5510;Production;t;;;9300;11000;11400;16400;21200;23700;25500;26200;30300;35000;50000;53300;55700;59000;68900;81200;84200;84200;87000;84000;82000;113000;103000;106000;117000;138000;94000;118000;126000;128000;118000;153000;145000;145000;130000;182000;182000;137000;69331;72706;61413;83228;50615;72754;76615;71930;71528;59424;59019;39434;39434;39434;39434;39434;39434;39434;39434;39434;39434;39434;39434 -236;'862;Venezuela (Bolivarian Republic of);2042;Graphic papers;5610;Import quantity;t;53500;60900;49000;52200;59900;65300;67000;76400;85300;93100;81800;92200;95000;113900;90600;103418;128400;158100;155800;159400;181000;163000;173700;163300;148700;156300;145900;187700;117200;107200;129300;161757;145666;134500;110300;82800;158000;177090;149900;208641;243500;156360;131360;171881;203330;204598;227504;266980;228292;168670;148302;183506;222975;134961;107021;41148;29650;15875;22819;14249;18259;18819;21960 -236;'862;Venezuela (Bolivarian Republic of);2042;Graphic papers;5622;Import value;1000 USD;10920;14046;11164;9007;11469;10973;11414;12457;14306;15454;14261;18907;18850;35708;28034;33870;43335;66535;71178;69824;79500;109561;96349;91300;87875;87300;80000;104900;61504;61700;72000;98326;80605;89943;80023;64150;113096;121591;114912;170825;203961;112659;94299;132685;169711;178036;186492;282785;286317;183447;167173;192257;237874;143307;119327;34356;27189;23322;25872;16920;20803;27248;27843 -236;'862;Venezuela (Bolivarian Republic of);2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7772;10700;34300;7700;8934;80500;69300;54300;54300;48164;44342;44269;44750;44668;43833;43887;44004;70;36;32;31;27;27;27;30;75;233;324;9;288;3;1 -236;'862;Venezuela (Bolivarian Republic of);2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4917;6525;22521;5246;6023;59137;33885;23408;23408;20241;16942;16898;17406;17478;16697;16743;17037;221;26;22;22;43;43;43;43;80;179;240;15;285;25;50 -236;'862;Venezuela (Bolivarian Republic of);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 -236;'862;Venezuela (Bolivarian Republic of);1671;Newsprint;5610;Import quantity;t;28700;41200;34700;38100;43600;56200;57300;66200;75300;84300;72900;78400;86000;99900;85600;91318;107000;131000;132000;141000;168000;150500;166700;155700;136000;149900;142100;180600;113500;103500;119800;135163;112922;107600;95400;70800;118000;138100;90400;102000;122600;79000;54000;92118;98656;117194;140100;144481;130176;103095;103095;95858;111754;56298;43093;20174;14093;2970;3667;639;1177;2836;2239 -236;'862;Venezuela (Bolivarian Republic of);1671;Newsprint;5622;Import value;1000 USD;4335;7171;6049;4929;6008;7748;7746;8824;10495;12180;11000;13725;14850;29508;25284;26973;31565;51088;51900;54000;65200;94561;87749;81900;72000;79300;75200;96000;56904;57000;60000;75480;55377;59108;59764;42760;65154;84292;58126;64711;83551;45474;27114;53863;58569;82425;90881;115896;133191;102938;102938;74429;84655;40341;37979;11418;7395;1842;2465;342;706;3033;1933 -236;'862;Venezuela (Bolivarian Republic of);1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;802;1600;100;34;0;0;0;0;0;0;0;0;0;0;0;0;1;1;1;1;1;1;1;1;1;103;265;4;265;0;0 -236;'862;Venezuela (Bolivarian Republic of);1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;546;776;56;23;0;0;0;0;0;0;0;0;0;0;0;0;1;1;1;1;1;1;1;1;1;59;212;2;237;0;0 -236;'862;Venezuela (Bolivarian Republic of);1674;Printing and writing papers;5510;Production;t;;;9300;11000;11400;16400;21200;23700;25500;26200;30300;35000;50000;53300;55700;59000;68900;81200;84200;84200;87000;84000;82000;113000;103000;106000;117000;138000;94000;118000;126000;128000;118000;153000;145000;145000;130000;182000;182000;137000;69331;72706;61413;83228;50615;72754;76615;71930;71528;59424;59019;39434;39434;39434;39434;39434;39434;39434;39434;39434;39434;39434;39434 -236;'862;Venezuela (Bolivarian Republic of);1674;Printing and writing papers;5610;Import quantity;t;24800;19700;14300;14100;16300;9100;9700;10200;10000;8800;8900;13800;9000;14000;5000;12100;21400;27100;23800;18400;13000;12500;7000;7600;12700;6400;3800;7100;3700;3700;9500;26594;32744;26900;14900;12000;40000;38990;59500;106641;120900;77360;77360;79763;104674;87404;87404;122499;98116;65575;45207;87648;111221;78663;63928;20974;15557;12905;19152;13610;17082;15983;19721 -236;'862;Venezuela (Bolivarian Republic of);1674;Printing and writing papers;5622;Import value;1000 USD;6585;6875;5115;4078;5461;3225;3668;3633;3811;3274;3261;5182;4000;6200;2750;6897;11770;15447;19278;15824;14300;15000;8600;9400;15875;8000;4800;8900;4600;4700;12000;22846;25228;30835;20259;21390;47942;37299;56786;106114;120410;67185;67185;78822;111142;95611;95611;166889;153126;80509;64235;117828;153219;102966;81348;22938;19794;21480;23407;16578;20097;24215;25910 -236;'862;Venezuela (Bolivarian Republic of);1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7763;9898;32700;7600;8900;80500;69300;54300;54300;48164;44342;44269;44750;44668;43833;43887;44004;69;35;31;30;26;26;26;29;74;130;59;5;23;3;1 -236;'862;Venezuela (Bolivarian Republic of);1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4895;5979;21745;5190;6000;59137;33885;23408;23408;20241;16942;16898;17406;17478;16697;16743;17037;220;25;21;21;42;42;42;42;79;120;28;13;48;25;50 -236;'862;Venezuela (Bolivarian Republic of);1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91331;91331;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -236;'862;Venezuela (Bolivarian Republic of);1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1667;2559;49700;49700;35260;35260;6618;6618;2984;2984;26857;24452;15904;13137;14068;11311;6171;7408;3774;123;123;118;272;116;157;648 -236;'862;Venezuela (Bolivarian Republic of);1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1657;2523;51851;51851;31298;31298;5220;5220;2802;2802;30098;30882;17993;16029;17696;10170;7460;9468;2475;217;217;214;681;252;396;1273 -236;'862;Venezuela (Bolivarian Republic of);1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;657;515;515;515;93;20;1;1;14;68;58;58;1;1;0;0;0;0;3;20;20;20;3;20;0;0 -236;'862;Venezuela (Bolivarian Republic of);1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;618;427;427;427;66;22;5;4;21;67;175;175;1;1;1;1;1;1;1;13;13;13;3;13;0;0 -236;'862;Venezuela (Bolivarian Republic of);1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90669;90669;137000;69331;72706;61413;83228;50615;72754;76615;71930;71528;59424;59019;39434;39434;39434;39434;39434;39434;39434;39434;39434;39434;39434;39434 -236;'862;Venezuela (Bolivarian Republic of);1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15883;24232;24232;30300;30000;30000;30822;59412;35653;35653;40657;27017;21209;18035;50326;57525;43597;27625;11283;11277;10310;15701;9051;10699;12200;14486 -236;'862;Venezuela (Bolivarian Republic of);1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14961;22777;22777;28778;25000;25000;32958;59055;38584;38584;55089;40774;24637;24702;66146;86002;65866;42240;14850;13847;18489;18967;11362;11847;17101;18215 -236;'862;Venezuela (Bolivarian Republic of);1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12809;10036;10036;3900;500;500;1000;918;70;70;197;1;4;0;0;0;0;0;0;28;28;1;2;2;1;0 -236;'862;Venezuela (Bolivarian Republic of);1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9236;6380;6380;3213;275;275;800;873;75;75;261;19;4;0;0;0;0;0;0;25;25;3;1;1;1;0 -236;'862;Venezuela (Bolivarian Republic of);1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21440;32709;32709;40900;12100;12100;42323;38644;48767;48767;54985;46647;28462;14035;23254;42385;28895;28895;5917;4157;2472;3333;4287;6267;3626;4587 -236;'862;Venezuela (Bolivarian Republic of);1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20681;31486;31486;39781;10887;10887;40644;46867;54225;54225;81702;81470;37879;23504;33986;57047;29640;29640;5613;5730;2774;4226;4535;7998;6718;6422 -236;'862;Venezuela (Bolivarian Republic of);1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55834;43749;43749;43749;43749;43749;43749;43749;43749;43749;43749;10;30;30;30;26;26;26;26;26;82;38;0;1;2;1 -236;'862;Venezuela (Bolivarian Republic of);1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24031;16601;16601;16601;16601;16601;16601;16601;16601;16601;16601;26;20;20;20;41;41;41;41;41;82;12;9;34;24;50 -236;'862;Venezuela (Bolivarian Republic of);1675;Other paper and paperboard;5510;Production;t;98800;105600;94000;127500;140200;147000;156200;175100;197900;223400;222000;241000;284000;289000;339000;364000;395000;411100;427700;417000;416000;398000;405000;444000;448000;506000;549000;582000;442000;504000;537000;531000;489000;475000;591000;526000;578000;311100;389000;319000;356908;165403;240684;356236;354123;368576;400188;553870;521614;424069;497683;296371;296371;296371;296371;296371;296371;296371;296371;296371;296371;296371;296371 -236;'862;Venezuela (Bolivarian Republic of);1675;Other paper and paperboard;5610;Import quantity;t;46900;42400;33300;31400;30800;28900;32700;32200;32800;32700;39100;40100;48200;66000;36500;49400;70000;61000;61000;61000;61000;52100;45800;43000;43000;39700;51600;59700;34700;28300;47100;41506;32112;51000;52900;55300;49200;47001;25700;53489;66700;60300;41390;60693;59290;85192;87100;103967;100875;61414;61070;49524;69530;87473;25799;24083;8646;11413;14880;18533;20943;13795;26525 -236;'862;Venezuela (Bolivarian Republic of);1675;Other paper and paperboard;5622;Import value;1000 USD;11237;11907;12672;8698;9327;9111;11030;10865;10288;11810;14168;14585;17604;23905;12225;17400;32000;46916;46916;46916;46916;57653;44472;41500;41500;36800;48300;54800;31650;26150;44150;43654;33608;69800;65320;40910;70432;63097;24931;47774;74985;60388;34299;71600;74003;104978;114968;168290;167446;118240;119310;94113;139491;142480;39609;35585;34533;14251;18055;20280;25516;21270;35054 -236;'862;Venezuela (Bolivarian Republic of);1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82797;48993;74100;70500;55300;129900;92099;46400;57066;65100;29950;38151;20818;7142;9887;9887;971;455;484;530;286;41;359;360;14821;57135;26861;4284;848;2604;4143;11761 -236;'862;Venezuela (Bolivarian Republic of);1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63894;32809;52587;61135;40910;70007;54488;29889;24568;36820;20282;17083;10879;3726;6186;6186;1428;520;421;474;372;120;220;151;8492;32507;19933;4045;858;1582;4527;14026 -236;'862;Venezuela (Bolivarian Republic of);1676;Household and sanitary papers;5510;Production;t;;;;;17200;22500;23100;26700;32300;36400;37000;37000;51000;55000;61000;65000;68000;80500;91000;103000;100000;104000;108000;103000;120000;149000;149000;159000;141000;156000;145000;153000;158000;160000;164000;170000;181000;182000;175000;159000;164619;81439;64539;134334;148560;161434;164657;167379;164016;144853;137307;133754;133754;133754;133754;133754;133754;133754;133754;133754;133754;133754;133754 -236;'862;Venezuela (Bolivarian Republic of);1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3500;7000;4000;5900;2200;3200;1800;2900;0;3300;1800;1800;3353;2583;7274;6300;10647;17707;7966;5222;5251;10410;8147;6058;2212;152;326;917;1786;901;1345;3984 -236;'862;Venezuela (Bolivarian Republic of);1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9164;11000;10245;6483;2134;11033;2206;3339;0;4207;1821;1821;4550;4300;9081;8099;17519;32878;15025;13438;12712;28590;20260;16078;3141;157;424;1401;2638;1335;2455;5971 -236;'862;Venezuela (Bolivarian Republic of);1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30400;30000;21000;9500;41600;30000;0;17000;3900;3900;1740;1370;1075;1075;473;137;242;242;242;0;0;0;0;1392;1997;2526;793;776;2475;10093 -236;'862;Venezuela (Bolivarian Republic of);1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33176;34000;20610;23943;35006;23689;0;18692;5203;5203;1227;937;955;955;495;146;257;257;257;1;1;1;1;1728;2468;2618;829;544;3397;12896 -236;'862;Venezuela (Bolivarian Republic of);2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97100;210000;159000;192289;83964;176145;221902;203567;207142;235531;386491;357598;279216;360376;162617;162617;162617;162617;162617;162617;162617;162617;162617;162617;162617;162617 -236;'862;Venezuela (Bolivarian Republic of);2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35601;18800;20489;50700;51700;35500;48464;46783;66613;66900;77817;79618;51083;54340;42520;57460;64328;17882;16667;7471;10546;13748;16405;19118;12172;21546 -236;'862;Venezuela (Bolivarian Republic of);2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42927;15657;15466;53569;50112;26014;51765;47393;68865;74636;109557;126435;98468;101405;77027;105698;94439;18947;21027;31987;12418;15937;16450;22426;17853;27105 -236;'862;Venezuela (Bolivarian Republic of);2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49899;16000;23766;46500;22100;30701;16191;4772;6468;6468;380;310;241;242;34;31;356;356;14764;55686;24838;1715;55;1807;1668;1668 -236;'862;Venezuela (Bolivarian Republic of);2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19040;5890;9953;17265;13282;10692;8197;2389;4021;4021;505;341;162;163;66;70;143;143;8165;30453;17286;1153;28;1002;1129;1129 -236;'862;Venezuela (Bolivarian Republic of);1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;51500;52000;56000;59400;62500;66100;178000;195000;218000;218000;266000;285000;309000;324000;330000;300000;296000;287000;276000;330000;323000;345000;388000;411000;289000;336000;380000;257000;231000;139000;192000;164000;175000;;;;;;;;;;;;;;;;;;;;;;;;;; -236;'862;Venezuela (Bolivarian Republic of);1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;17800;13800;14400;10600;14500;17100;23500;24000;13700;12000;20000;19000;19000;19000;19000;8700;4700;4000;4000;1200;2200;700;100;100;100;8100;9400;10500;10500;12000;17000;;;;;;;;;;;;;;;;;;;;;;;;;; -236;'862;Venezuela (Bolivarian Republic of);1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;6200;4900;5000;4000;5478;6460;8878;9067;4170;4200;12000;14521;14521;14521;14521;13076;7174;6100;6100;1800;3300;1100;150;150;150;10008;11315;11852;11134;13000;24914;;;;;;;;;;;;;;;;;;;;;;;;;; -236;'862;Venezuela (Bolivarian Republic of);1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13400;10000;6800;61100;;;;;;;;;;;;;;;;;;;;;;;;;; -236;'862;Venezuela (Bolivarian Republic of);1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6531;7000;4048;22708;;;;;;;;;;;;;;;;;;;;;;;;;; -236;'862;Venezuela (Bolivarian Republic of);1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44235;105000;77000;98369;7959;104730;127580;130034;130789;144089;249006;236450;184033;237121;109815;109815;109815;109815;109815;109815;109815;109815;109815;109815;109815;109815 -236;'862;Venezuela (Bolivarian Republic of);1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9550;5043;5043;13600;13600;13600;9020;4500;19652;12100;5472;15855;8572;8241;5517;4260;2299;1168;91;1344;3873;7532;8342;9138;1454;10110 -236;'862;Venezuela (Bolivarian Republic of);1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5299;1933;1933;6614;10000;10000;5600;3893;11774;7335;4945;14051;6760;7404;6204;5388;2386;1324;778;1346;2694;5696;5226;7538;1148;7077 -236;'862;Venezuela (Bolivarian Republic of);1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22511;7218;7218;10000;12000;26501;12400;1500;637;637;99;117;114;114;6;3;3;3;14719;55637;24730;1697;36;1801;1666;1666 -236;'862;Venezuela (Bolivarian Republic of);1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8610;2663;2663;2000;3990;9092;6100;600;350;350;53;72;78;78;18;25;25;25;8149;30433;17228;1147;21;997;1128;1128 -236;'862;Venezuela (Bolivarian Republic of);1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35405;81000;71000;73398;59508;57093;76165;57309;62031;75769;119559;102487;80576;107167;11735;11735;11735;11735;11735;11735;11735;11735;11735;11735;11735;11735 -236;'862;Venezuela (Bolivarian Republic of);1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19942;10531;5546;28400;32200;16000;28811;23658;35590;44100;54664;44771;35766;36567;27193;44590;51320;11106;15608;5397;5109;3756;5194;5325;9073;7924 -236;'862;Venezuela (Bolivarian Republic of);1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30443;11103;5615;37987;35098;11000;36499;27100;46530;54393;82164;84183;80604;80751;57978;89094;77211;10640;18124;28555;7881;7336;8491;7398;13579;15356 -236;'862;Venezuela (Bolivarian Republic of);1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;450;144;148;600;5800;3200;3250;1146;5731;5731;87;18;102;102;1;1;181;181;6;25;25;16;16;4;0;0 -236;'862;Venezuela (Bolivarian Republic of);1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;495;153;185;724;7196;1100;1685;711;3611;3611;249;87;41;41;4;1;58;58;2;8;8;5;5;4;0;0 -236;'862;Venezuela (Bolivarian Republic of);1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17460;24000;11000;20522;16497;14322;18157;16224;14322;15673;17926;18661;14607;16088;41067;41067;41067;41067;41067;41067;41067;41067;41067;41067;41067;41067 -236;'862;Venezuela (Bolivarian Republic of);1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6109;3226;9900;8700;5900;5900;10633;18625;11371;10700;16732;18628;6549;9508;9753;8530;8093;5226;967;726;1397;2177;1894;3980;1109;1871 -236;'862;Venezuela (Bolivarian Republic of);1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7185;2621;7918;8968;5014;5014;9666;16400;10561;12908;21519;27735;10882;13055;12721;11093;12244;6622;2104;1986;1688;2746;2234;6768;2275;3165 -236;'862;Venezuela (Bolivarian Republic of);1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26938;8638;16400;35900;4300;1000;541;2126;100;100;44;25;25;25;25;25;170;170;37;22;81;0;1;2;0;0 -236;'862;Venezuela (Bolivarian Republic of);1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9935;3074;7105;14541;2096;500;412;1078;60;60;64;43;43;43;43;43;59;59;13;11;49;0;1;1;0;0 -236;'862;Venezuela (Bolivarian Republic of);1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;949;364;196;24;57;80;2616;382;1;4;167;283;975;675;536;1641 -236;'862;Venezuela (Bolivarian Republic of);1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;929;466;222;195;124;123;2598;361;21;100;155;159;499;722;851;1507 -236;'862;Venezuela (Bolivarian Republic of);1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;150;150;0;1;2;2;2;2;2;2;2;2;2;0;2;2 -236;'862;Venezuela (Bolivarian Republic of);1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;139;139;0;1;1;1;1;1;1;1;1;1;1;0;1;1 -236;'862;Venezuela (Bolivarian Republic of);1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;71500;72500;77100;89000;103100;120900;7000;9000;15000;16000;12000;14000;18000;6600;6700;14000;20000;7000;21000;11000;5000;12000;12000;12000;12000;12000;12000;121000;100000;176000;235000;192000;222000;32000;4000;1000;0;0;0;0;1996;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -236;'862;Venezuela (Bolivarian Republic of);1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;14900;18400;18400;22100;24600;23000;24700;42000;22800;37400;50000;42000;42000;42000;42000;43400;41100;39000;39000;38500;49400;59000;34600;28200;47000;29906;15712;36500;36500;41100;29000;9600;4000;33000;12700;6800;4090;8876;9924;11305;13900;15503;3550;2365;1508;1753;1660;14998;1859;5204;1023;541;215;342;924;278;995 -236;'862;Venezuela (Bolivarian Republic of);1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;4830;5965;5288;7810;8690;8125;8726;14838;8055;13200;20000;32395;32395;32395;32395;44577;37298;35400;35400;35000;45000;53700;31500;26000;44000;24482;11293;47703;47703;25776;34485;17964;5935;32308;17209;8455;6464;15285;22310;27032;32233;41214;8133;4747;4467;4374;5203;27781;4584;11417;2389;1409;717;1192;1755;962;1978 -236;'862;Venezuela (Bolivarian Republic of);1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30300;30500;27500;59300;600;400;33300;1600;3950;3550;2887;1000;2344;2344;118;8;1;46;10;10;3;4;57;57;26;43;0;21;0;0 -236;'862;Venezuela (Bolivarian Republic of);1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12880;20135;16252;23356;442;310;14615;863;1797;1188;1455;400;1210;1210;428;33;2;54;49;49;76;7;326;326;179;274;1;36;1;1 -236;'862;Venezuela (Bolivarian Republic of);1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49236;15897;18865;15742;26899;59598;58969 -236;'862;Venezuela (Bolivarian Republic of);1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2783;2894;1157;1095;452;1067;627 -236;'862;Venezuela (Bolivarian Republic of);2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;566;38;109;112;563;345 -236;'862;Venezuela (Bolivarian Republic of);2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;8;24;16;81;138;153 -236;'862;Venezuela (Bolivarian Republic of);1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;9;7;78;48;302;153 -236;'862;Venezuela (Bolivarian Republic of);1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;4;7;16;41;104;106 -236;'862;Venezuela (Bolivarian Republic of);1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;557;31;31;64;261;192 -236;'862;Venezuela (Bolivarian Republic of);1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;4;17;0;40;34;47 -236;'862;Venezuela (Bolivarian Republic of);1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7136;4652;1893;812;1092;4210;3059 -236;'862;Venezuela (Bolivarian Republic of);1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;63;1;3;3;0;0 -236;'862;Venezuela (Bolivarian Republic of);1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;336;70;183;301;600;378;438 -236;'862;Venezuela (Bolivarian Republic of);1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;32;39;24;32;56;32 -236;'862;Venezuela (Bolivarian Republic of);1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26340;1904;5453;910;2631;1889;1217 -236;'862;Venezuela (Bolivarian Republic of);1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;119;35;0;3;3;6 -236;'862;Venezuela (Bolivarian Republic of);1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24 -236;'862;Venezuela (Bolivarian Republic of);1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35 -236;'862;Venezuela (Bolivarian Republic of);1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14819;7634;10545;12892;20845;51231;52770 -236;'862;Venezuela (Bolivarian Republic of);1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1825;2071;1012;1019;110;738;332 -236;'862;Venezuela (Bolivarian Republic of);1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;139;149;91;264;500;134;4 -236;'862;Venezuela (Bolivarian Republic of);1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -236;'862;Venezuela (Bolivarian Republic of);1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;447;922;662;454;1119;1193;1136 -236;'862;Venezuela (Bolivarian Republic of);1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;795;601;46;33;223;132;104 -236;'862;Venezuela (Bolivarian Republic of);5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36189;38984;75895;72669;53494;73776;85571 -236;'862;Venezuela (Bolivarian Republic of);5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3512;2910;2615;4208;3416;2984;3361 -236;'862;Venezuela (Bolivarian Republic of);1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;195;225;63;637;606;153 -236;'862;Venezuela (Bolivarian Republic of);1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -236;'862;Venezuela (Bolivarian Republic of);1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7887;5380;4665;5028;6272;9438;6290 -236;'862;Venezuela (Bolivarian Republic of);1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;56;7;5;3;24;1 -236;'862;Venezuela (Bolivarian Republic of);1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5701;2786;26706;36549;8285;6643;10987 -236;'862;Venezuela (Bolivarian Republic of);1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;3;5;12;0;2;38 -236;'862;Venezuela (Bolivarian Republic of);1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14721;20433;29720;19536;22804;31368;25136 -236;'862;Venezuela (Bolivarian Republic of);1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;205;188;72;31;37;206;70 -236;'862;Venezuela (Bolivarian Republic of);1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7824;10190;14579;11493;15496;25721;43005 -236;'862;Venezuela (Bolivarian Republic of);1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3276;2663;2531;4160;3376;2752;3252 -237;'704;Viet Nam;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5577463;5767114;6096963;5952940;7077448;7264112;5879044 -237;'704;Viet Nam;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8021670;9253797;11178073;12872902;15104372;17540250;15511462 -237;'704;Viet Nam;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;4383;3833;4314;4404;5553;7954;5657;5694;5579;6677;8966;9019;5535;5535;3537;5137;7317;5564;6903;8657;8757;8267;7958;8458;5306;5487;8430;4466;5025;8797;9722;22514;36228;50693;95413;83641;87439;136647;132913;133425;211759;241441;246413;550735;588128;1268333;1337905;1551843;1702973;2102186;2318652;2523050;2981147;3509458;3451737;3428114;4523654;4618845;4874596;4777364;5697830;5936640;4453499 -237;'704;Viet Nam;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;3059;2359;6245;19222;23980;102936;116289;75138;114959;34873;61415;59336;44373;34713;47277;47277;55331;63596;63599;134823;151902;253821;397465;405132;388451;790597;1421983;1453083;2070654;2370884;2360470;2178891;2532583;3071340;3566625;3562984;4480644;6209218;5263423 -237;'704;Viet Nam;1861;Roundwood;5516;Production;m3;17937257;18257826;18662712;19125072;19508060;19851848;20098592;20593468;21193648;21569306;22415572;23266496;23694908;23942902;24241228;24863060;25620500;26012196;26586784;27162000;27493388;27974348;28561620;29057968;29760944;30526076;31222944;31186416;31165044;31203428;31554368;31216296;31163060;31215012;31595304;31641126;31324706;34474974;31249324;32419548;33149186;34480500;29900000;31950000;32950000;33680000;38730000;40550000;40350000;45700000;49200000;50400000;51508960;52735420;53335420;52135420;53835420;57335420;57335420;61335420;66335420;65335420;65335420 -237;'704;Viet Nam;1861;Roundwood;5616;Import quantity;m3;700;1700;19600;14400;18700;19200;11200;18100;31700;22200;22200;22200;22200;22200;22200;22200;27100;25900;18100;41100;41100;41100;34000;34000;;;;;;;;11;31;31;167;1000;887;5999;8100;8100;36100;54300;54300;124230;124230;542659;657519;1062598;699904;898320;1129588;1384779;1817677;2110683;1913097;2803138;3083278;2360769;2332381;2140269;2625593;2482066;1550431 -237;'704;Viet Nam;1861;Roundwood;5622;Import value;1000 USD;40;21;490;360;460;460;275;450;924;689;689;689;689;689;689;689;1189;1209;1255;3409;3409;3409;3100;3100;;;;;;;;1;14;14;24;111;501;394;839;839;3658;8282;8282;19081;19081;199217;98684;340138;242240;250202;331737;328672;431110;528297;559820;529821;833834;710655;649223;602100;877829;1232790;453362 -237;'704;Viet Nam;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;36700;9300;30400;82600;120700;437911;344611;58552;42744;12490;49102;50181;26454;15507;35100;35100;8900;14500;15400;19064;19064;146125;220656;71562;119430;148383;238500;152541;165635;293250;107568;74418;95385;92678;31173;32244;28184;20672;33719 -237;'704;Viet Nam;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;3059;1920;5032;16107;21266;66486;48459;11068;5864;2730;10526;13724;3624;2625;8070;8070;2431;4127;4130;9385;9385;34658;132505;47993;27719;57589;303391;187310;204753;388535;86250;77296;73779;47560;18668;13203;10128;4233;6654 -237;'704;Viet Nam;1862;Roundwood, coniferous;5516;Production;m3;62000;55000;66000;74000;55000;80000;71000;67000;98000;112000;112000;112000;112000;112000;112000;112000;261000;261000;262000;244000;244000;297000;350000;403000;456000;509000;556000;504000;474000;176000;167000;134000;173000;173000;200000;203000;178000;159000;152000;184000;184000;184000;350000;350000;350000;350000;350000;350000;350000;350000;350000;350000;550000;700000;800000;1100000;1300000;1300000;1300000;1300000;1300000;1300000;1300000 -237;'704;Viet Nam;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50019;68510;175338;173979;419093;371033;232646 -237;'704;Viet Nam;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6821;12469;21194;22646;39539;44156;21383 -237;'704;Viet Nam;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4564;6427;1491;2249;761;774;1527 -237;'704;Viet Nam;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1758;1708;618;274;405;242;817 -237;'704;Viet Nam;1863;Roundwood, non-coniferous;5516;Production;m3;17875257;18202826;18596712;19051072;19453060;19771848;20027592;20526468;21095648;21457306;22303572;23154496;23582908;23830902;24129228;24751060;25359500;25751196;26324784;26918000;27249388;27677348;28211620;28654968;29304944;30017076;30666944;30682416;30691044;31027428;31387368;31082296;30990060;31042012;31395304;31438126;31146706;34315974;31097324;32235548;32965186;34296500;29550000;31600000;32600000;33330000;38380000;40200000;40000000;45350000;48850000;50050000;50958960;52035420;52535420;51035420;52535420;56035420;56035420;60035420;65035420;64035420;64035420 -237;'704;Viet Nam;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3033259;2292259;2157043;1966290;2206500;2111033;1317785 -237;'704;Viet Nam;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;827013;698186;628029;579454;838290;1188634;431979 -237;'704;Viet Nam;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90821;86251;29682;29995;27423;19898;32192 -237;'704;Viet Nam;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72021;45852;18050;12929;9723;3991;5837 -237;'704;Viet Nam;1864;Wood fuel;5516;Production;m3;16132257;16475826;16826712;17185072;17551060;17924848;18306592;18696468;19094648;19501306;20320572;21143496;21542908;21760902;22029228;22215060;22571500;22884196;23407784;24076000;24374388;24470348;24672620;24780968;25095944;25474076;25818944;26092416;26233044;26534428;26708368;26752296;26814060;26828012;26793304;26764126;26767706;26706974;26695324;26685548;26615186;26546500;21500000;21250000;21250000;21250000;22000000;22000000;22000000;21500000;20400000;20000000;20000000;20000000;20000000;20000000;20000000;20000000;20000000;20000000;20000000;20000000;20000000 -237;'704;Viet Nam;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1474;4219;4219;602;675;918;1627;2894;2259;2259;3213;833;6622;11066;11066 -237;'704;Viet Nam;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;152;389;389;33;912;112;350;307;200;200;315;94;110;2065;2065 -237;'704;Viet Nam;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;219;345;345;345;345;0;0;0;0;0;0;0;0;0;0;61710;36960;36960;2058;26474;6445;2148;706;23251;23251;2608;5979;10274;12299;15109 -237;'704;Viet Nam;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;18;18;18;18;0;0;0;0;0;0;0;0;0;0;4301;2925;2925;325;1398;491;176;167;870;870;268;670;1203;1820;2289 -237;'704;Viet Nam;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 -237;'704;Viet Nam;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1338;153;122;33;33 -237;'704;Viet Nam;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140;20;20;7;7 -237;'704;Viet Nam;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;251;39;244;108;109 -237;'704;Viet Nam;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;3;41;28;69 -237;'704;Viet Nam;1628;Wood fuel, non-coniferous;5516;Production;m3;16132257;16475826;16826712;17185072;17551060;17924848;18306592;18696468;19094648;19501306;20320572;21143496;21542908;21760902;22029228;22215060;22571500;22884196;23407784;24076000;24374388;24470348;24672620;24780968;25095944;25474076;25818944;26092416;26233044;26534428;26708368;26752296;26814060;26828012;26793304;26764126;26767706;26706974;26695324;26685548;26615186;26546500;21500000;21250000;21250000;21250000;22000000;22000000;22000000;21500000;20400000;20000000;20000000;20000000;20000000;20000000;20000000;20000000;20000000;20000000;20000000;20000000;20000000 -237;'704;Viet Nam;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2259;2259;1875;680;6500;11033;11033 -237;'704;Viet Nam;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;175;74;90;2058;2058 -237;'704;Viet Nam;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23251;23251;2357;5940;10030;12191;15000 -237;'704;Viet Nam;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;870;870;252;667;1162;1792;2220 -237;'704;Viet Nam;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1474;4219;4219;602;675;918;1627;2894;;;;;;; -237;'704;Viet Nam;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;152;389;389;33;912;112;350;307;;;;;;; -237;'704;Viet Nam;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;219;345;345;345;345;0;0;0;0;0;0;0;0;0;0;61710;36960;36960;2058;26474;6445;2148;706;;;;;;; -237;'704;Viet Nam;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;18;18;18;18;0;0;0;0;0;0;0;0;0;0;4301;2925;2925;325;1398;491;176;167;;;;;;; -237;'704;Viet Nam;1865;Industrial roundwood;5516;Production;m3;1805000;1782000;1836000;1940000;1957000;1927000;1792000;1897000;2099000;2068000;2095000;2123000;2152000;2182000;2212000;2648000;3049000;3128000;3179000;3086000;3119000;3504000;3889000;4277000;4665000;5052000;5404000;5094000;4932000;4669000;4846000;4464000;4349000;4387000;4802000;4877000;4557000;7768000;4554000;5734000;6534000;7934000;8400000;10700000;11700000;12430000;16730000;18550000;18350000;24200000;28800000;30400000;31508960;32735420;33335420;32135420;33835420;37335420;37335420;41335420;46335420;45335420;45335420 -237;'704;Viet Nam;1865;Industrial roundwood;5616;Import quantity;m3;700;1700;19600;14400;18700;19200;11200;18100;31700;22200;22200;22200;22200;22200;22200;22200;27100;25900;18100;41100;41100;41100;34000;34000;;;;;;;;11;31;31;167;1000;887;5999;8100;8100;36100;54300;54300;124230;124230;542659;657519;1062598;698430;894101;1125369;1384177;1817002;2109765;1911470;2800244;3081019;2358510;2329168;2139436;2618971;2471000;1539365 -237;'704;Viet Nam;1865;Industrial roundwood;5622;Import value;1000 USD;40;21;490;360;460;460;275;450;924;689;689;689;689;689;689;689;1189;1209;1255;3409;3409;3409;3100;3100;;;;;;;;1;14;14;24;111;501;394;839;839;3658;8282;8282;19081;19081;199217;98684;340138;242088;249813;331348;328639;430198;528185;559470;529514;833634;710455;648908;602006;877719;1230725;451297 -237;'704;Viet Nam;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;36700;9300;30400;82600;120700;437911;344611;58552;42744;12271;48757;49836;26109;15162;35100;35100;8900;14500;15400;19064;19064;146125;220656;71562;57720;111423;201540;150483;139161;286805;105420;73712;72134;69427;28565;26265;17910;8373;18610 -237;'704;Viet Nam;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;3059;1920;5032;16107;21266;66486;48459;11068;5864;2708;10508;13706;3606;2607;8070;8070;2431;4127;4130;9385;9385;34658;132505;47993;23418;54664;300466;186985;203355;388044;86074;77129;72909;46690;18400;12533;8925;2413;4365 -237;'704;Viet Nam;1866;Industrial roundwood, coniferous;5516;Production;m3;62000;55000;66000;74000;55000;80000;71000;67000;98000;112000;112000;112000;112000;112000;112000;112000;261000;261000;262000;244000;244000;297000;350000;403000;456000;509000;556000;504000;474000;176000;167000;134000;173000;173000;200000;203000;178000;159000;152000;184000;184000;184000;350000;350000;350000;350000;350000;350000;350000;350000;350000;350000;550000;700000;800000;1100000;1300000;1300000;1300000;1300000;1300000;1300000;1300000 -237;'704;Viet Nam;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;10;4250;0;0;24400;39300;39300;47230;47230;29426;14519;20331;26450;13189;23052;45060;74478;51399;60632;81000;50019;68510;174000;173826;418971;371000;232613 -237;'704;Viet Nam;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;3;113;0;0;1504;2115;2115;2881;2881;5635;1487;2532;3370;1500;2426;11720;11616;5126;6274;13284;6821;12469;21054;22626;39519;44149;21376 -237;'704;Viet Nam;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31469;50831;7040;9708;3135;15921;17000;18349;4184;1600;1600;1600;100;1000;1150;1150;1000;3586;2946;1414;2679;2940;1936;4829;14805;5010;5412;4564;6427;1240;2210;517;666;1418 -237;'704;Viet Nam;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5068;5419;2306;2421;327;1879;5077;2204;251;147;147;147;57;60;61;61;60;348;359;467;467;1123;693;1261;1804;726;633;1758;1708;602;271;364;214;748 -237;'704;Viet Nam;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;10;4250;0;0;24400;39300;39300;47230;47230;29426;14519;20331;26450;13189;23052;45060;74478;51399;60632;81000;50019;68510;174000;173826;418971;371000;232613 -237;'704;Viet Nam;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;3;113;0;0;1504;2115;2115;2881;2881;5635;1487;2532;3370;1500;2426;11720;11616;5126;6274;13284;6821;12469;21054;22626;39519;44149;21376 -237;'704;Viet Nam;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31469;50831;7040;9708;3135;15921;17000;18349;4184;1600;1600;1600;100;1000;1150;1150;1000;3586;2946;1414;2679;2940;1936;4829;14805;5010;5412;4564;6427;1240;2210;517;666;1418 -237;'704;Viet Nam;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5068;5419;2306;2421;327;1879;5077;2204;251;147;147;147;57;60;61;61;60;348;359;467;467;1123;693;1261;1804;726;633;1758;1708;602;271;364;214;748 -237;'704;Viet Nam;1867;Industrial roundwood, non-coniferous;5516;Production;m3;1743000;1727000;1770000;1866000;1902000;1847000;1721000;1830000;2001000;1956000;1983000;2011000;2040000;2070000;2100000;2536000;2788000;2867000;2917000;2842000;2875000;3207000;3539000;3874000;4209000;4543000;4848000;4590000;4458000;4493000;4679000;4330000;4176000;4214000;4602000;4674000;4379000;7609000;4402000;5550000;6350000;7750000;8050000;10350000;11350000;12080000;16380000;18200000;18000000;23850000;28450000;30050000;30958960;32035420;32535420;31035420;32535420;36035420;36035420;40035420;45035420;44035420;44035420 -237;'704;Viet Nam;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;31;31;167;1000;877;1749;8100;8100;11700;15000;15000;77000;77000;513233;643000;1042267;671980;880912;1102317;1339117;1742524;2058366;1850838;2719244;3031000;2290000;2155168;1965610;2200000;2100000;1306752 -237;'704;Viet Nam;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;14;14;24;111;498;281;839;839;2154;6167;6167;16200;16200;193582;97197;337606;238718;248313;328922;316919;418582;523059;553196;516230;826813;697986;627854;579380;838200;1186576;429921 -237;'704;Viet Nam;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;406442;293780;51512;33036;9136;32836;32836;7760;10978;33500;33500;7300;14400;14400;17914;17914;145125;217070;68616;56306;108744;198600;148547;134332;272000;100410;68300;67570;63000;27325;24055;17393;7707;17192 -237;'704;Viet Nam;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61418;43040;8762;3443;2381;8629;8629;1402;2356;7923;7923;2284;4070;4070;9324;9324;34598;132157;47634;22951;54197;299343;186292;202094;386240;85348;76496;71151;44982;17798;12262;8561;2199;3617 -237;'704;Viet Nam;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;1100;1100;4000;0;0;12400;12400;365495;488000;864324;539050;695288;932401;1150256;1432882;1637014;1583440;2450000;2240000;1230000;1160000;1070000;1117000;1135000;641000 -237;'704;Viet Nam;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;178;178;364;0;0;2000;2000;146422;72292;282583;192083;197907;278292;256895;341286;413320;480488;449741;668116;348997;347660;275335;390950;397250;229478 -237;'704;Viet Nam;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;406442;293780;51512;33036;9136;18329;18329;3010;1631;7100;7100;400;1200;1200;861;861;138875;216734;68614;56305;108618;198586;148547;134244;272000;100410;68300;67570;63000;27325;24055;17393;1512;17192 -237;'704;Viet Nam;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61418;43040;8762;3443;2381;5275;5275;296;306;1824;1824;110;243;243;126;126;31598;132078;47630;22950;54147;299338;186292;202045;386240;85348;76496;71151;44982;17798;12262;8561;603;3617 -237;'704;Viet Nam;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;31;31;167;1000;877;1738;7000;7000;7700;15000;15000;64600;64600;147738;155000;177943;132930;185624;169916;188861;309642;421352;267398;269244;791000;1060000;995168;895610;1083000;965000;665752 -237;'704;Viet Nam;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;14;14;24;111;498;279;661;661;1790;6167;6167;14200;14200;47160;24905;55023;46635;50406;50630;60024;77296;109739;72708;66489;158697;348989;280194;304045;447250;789326;200443 -237;'704;Viet Nam;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14507;14507;4750;9347;26400;26400;6900;13200;13200;17053;17053;6250;336;2;1;126;14;0;88;0;0;0;0;0;0;0;0;6195;0 -237;'704;Viet Nam;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3354;3354;1106;2050;6099;6099;2174;3827;3827;9198;9198;3000;79;4;1;50;5;0;49;0;0;0;0;0;0;0;0;1596;0 -237;'704;Viet Nam;1868;Sawlogs and veneer logs;5516;Production;m3;843000;801000;835000;919000;915000;863000;705000;786000;963000;906000;906000;906000;906000;906000;906000;1312000;1682000;1731000;1750000;1626000;1626000;1978000;2330000;2683000;3036000;3388000;3703000;3356000;3157000;2856000;2993000;2571000;2416000;2416000;2793000;2833000;2480000;5659000;3152000;3684000;4184000;5484000;5350000;6350000;7350000;6850000;9850000;10850000;10850000;12350000;13850000;14350000;14550000;15700000;15800000;16100000;16300000;16300000;16300000;20300000;25300000;24300000;24300000 -237;'704;Viet Nam;1868;Sawlogs and veneer logs;5616;Import quantity;m3;700;1700;19600;14400;18700;19200;11200;18100;24600;15100;15100;15100;15100;15100;15100;15100;20000;18800;11000;34000;34000;34000;34000;34000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -237;'704;Viet Nam;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;40;21;490;360;460;460;275;450;615;380;380;380;380;380;380;380;880;900;946;3100;3100;3100;3100;3100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -237;'704;Viet Nam;1868;Sawlogs and veneer logs;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;36700;9300;30400;82600;120700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -237;'704;Viet Nam;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;3059;1920;5032;16107;21266;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -237;'704;Viet Nam;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;62000;55000;66000;74000;55000;80000;71000;67000;98000;112000;112000;112000;112000;112000;112000;112000;261000;261000;262000;244000;244000;297000;350000;403000;456000;509000;556000;504000;474000;176000;167000;134000;173000;173000;200000;203000;178000;159000;152000;184000;184000;184000;350000;350000;350000;350000;350000;350000;350000;350000;350000;350000;550000;700000;800000;1100000;1300000;1300000;1300000;1300000;1300000;1300000;1300000 -237;'704;Viet Nam;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;781000;746000;769000;845000;860000;783000;634000;719000;865000;794000;794000;794000;794000;794000;794000;1200000;1421000;1470000;1488000;1382000;1382000;1681000;1980000;2280000;2580000;2879000;3147000;2852000;2683000;2680000;2826000;2437000;2243000;2243000;2593000;2630000;2302000;5500000;3000000;3500000;4000000;5300000;5000000;6000000;7000000;6500000;9500000;10500000;10500000;12000000;13500000;14000000;14000000;15000000;15000000;15000000;15000000;15000000;15000000;19000000;24000000;23000000;23000000 -237;'704;Viet Nam;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;700;1700;19600;14400;18700;19200;11200;18100;24600;15100;15100;15100;15100;15100;15100;15100;20000;18800;11000;34000;34000;34000;34000;34000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -237;'704;Viet Nam;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;40;21;490;360;460;460;275;450;615;380;380;380;380;380;380;380;880;900;946;3100;3100;3100;3100;3100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -237;'704;Viet Nam;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;36700;9300;30400;82600;120700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -237;'704;Viet Nam;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;3059;1920;5032;16107;21266;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -237;'704;Viet Nam;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1052000;1700000;2000000;2100000;2500000;3700000;3400000;4200000;5500000;6800000;6600000;11000000;14100000;15250000;16250000;16250000;16750000;15250000;16750000;20250000;20250000;20250000;20250000;20250000;20250000 -237;'704;Viet Nam;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1052000;1700000;2000000;2100000;2500000;3700000;3400000;4200000;5500000;6800000;6600000;11000000;14100000;15250000;16250000;16250000;16750000;15250000;16750000;20250000;20250000;20250000;20250000;20250000;20250000 -237;'704;Viet Nam;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;;;;7100;7100;7100;7100;7100;7100;7100;7100;7100;7100;7100;7100;7100;7100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -237;'704;Viet Nam;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;309;309;309;309;309;309;309;309;309;309;309;309;309;309;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -237;'704;Viet Nam;1870;Pulpwood and particles (1961-1997);5616;Import quantity;m3;;;;;;;;;7100;7100;7100;7100;7100;7100;7100;7100;7100;7100;7100;7100;7100;7100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -237;'704;Viet Nam;1870;Pulpwood and particles (1961-1997);5622;Import value;1000 USD;;;;;;;;;309;309;309;309;309;309;309;309;309;309;309;309;309;309;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -237;'704;Viet Nam;1871;Other industrial roundwood;5516;Production;m3;962000;981000;1001000;1021000;1042000;1064000;1087000;1111000;1136000;1162000;1189000;1217000;1246000;1276000;1306000;1336000;1367000;1397000;1429000;1460000;1493000;1526000;1559000;1594000;1629000;1664000;1701000;1738000;1775000;1813000;1853000;1893000;1933000;1971000;2009000;2044000;2077000;2109000;350000;350000;350000;350000;550000;650000;950000;1380000;1380000;900000;900000;850000;850000;800000;708960;785420;785420;785420;785420;785420;785420;785420;785420;785420;785420 -237;'704;Viet Nam;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;962000;981000;1001000;1021000;1042000;1064000;1087000;1111000;1136000;1162000;1189000;1217000;1246000;1276000;1306000;1336000;1367000;1397000;1429000;1460000;1493000;1526000;1559000;1594000;1629000;1664000;1701000;1738000;1775000;1813000;1853000;1893000;1933000;1971000;2009000;2044000;2077000;2109000;350000;350000;350000;350000;550000;650000;950000;1380000;1380000;900000;900000;850000;850000;800000;708960;785420;785420;785420;785420;785420;785420;785420;785420;785420;785420 -237;'704;Viet Nam;1630;Wood charcoal;5510;Production;t;51375;53135;54955;56838;58786;60800;62883;65037;67266;69570;74522;79606;81938;83084;84584;85548;87692;89585;92968;97438;99104;99315;100284;100576;102340;104429;106278;107614;107976;109512;110387;117731;112715;118268;126659;121085;111294;111184;114012;108258;108327;108395;108464;108532;108601;120000;120000;120000;107969;115000;120000;414000;414000;414000;414000;414000;414000;414000;414000;414000;414000;414000;414000 -237;'704;Viet Nam;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;60;0;0;0;0;0;0;0;0;0;0;57;35;35;4553;2534;5882;11247;15883;15674;14627;8141;8270;14005;7404;7404 -237;'704;Viet Nam;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;14;0;0;0;0;0;0;0;0;0;0;29;15;15;2130;1440;3418;4976;6378;7183;7054;4374;5006;9144;6566;6566 -237;'704;Viet Nam;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7419;2339;8165;17142;12000;2362;2678;5600;5600;27200;19000;19000;5000;5000;14800;24800;24800;9354;12821;12821;31816;29657;28856;39401;51924;72695;84662;125748;110071;105115;106348;170488 -237;'704;Viet Nam;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1964;627;2186;4584;3172;651;681;759;759;2187;1267;1267;1336;1336;2217;3573;3573;4728;4562;4562;12457;14804;14290;26846;37752;48011;69814;67138;63703;75854;76988;109426 -237;'704;Viet Nam;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1403000;1683000;1683000;1683000;950000;1100000;1100000;1600000;2240000;2850000;2850000;8330000;11350000;12350000;13350000;13350000;14050000;12600000;14150000;18150000;12672000;12250000;18150000;19150000;18450000 -237;'704;Viet Nam;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;0;500;0;0;693;693;1825;1825;1825;5278;196000;273000;276549;1566;5299;7064;2432;981;2427;7850;728;2529;4264;4668 -237;'704;Viet Nam;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;19;0;0;33;33;216;216;216;685;37080;52457;55495;179;488;1019;522;331;1265;577;71;173;304;525 -237;'704;Viet Nam;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;297627;434100;434100;716900;804000;804000;1825410;2305326;2901280;3598280;4329280;4153684;7614884;10472884;11440000;13004148;12443000;13847000;12128000;13767000;16627703;19262786;18571355;24779004;26245164;25005164 -237;'704;Viet Nam;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22047;28654;28654;43150;45233;45233;87577;103859;126789;170852;259673;238265;466488;721911;825283;1101036;1006603;1185342;1027607;1133299;1341526;1688452;1488761;1737541;2777218;2214573 -237;'704;Viet Nam;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1403000;1683000;1683000;1683000;950000;1100000;1100000;1300000;1920000;2500000;2500000;8000000;11000000;12000000;13000000;13000000;13500000;12000000;13500000;17500000;12022000;11600000;17500000;18500000;17800000 -237;'704;Viet Nam;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;394;394;1650;1650;1650;1650;177000;252000;275000;56;104;2704;1695;300;406;6982;336;1510;2819;3223 -237;'704;Viet Nam;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;200;200;200;200;35342;50587;55000;6;7;399;204;62;186;548;52;128;240;461 -237;'704;Viet Nam;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35983;34027;150306;284383;299400;299902;297426;434000;434000;715000;804000;804000;1820084;2300000;2900000;3597000;4328000;4123000;7542000;10400000;11300000;12771000;12194000;13347000;11582000;13147000;16601152;19235200;18560000;24774000;26240000;25000000 -237;'704;Viet Nam;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3464;3246;10478;21682;24511;23678;22033;28649;28649;43122;45233;45233;87364;103646;126694;170757;259578;234468;457577;713000;808407;1076850;981103;1146931;988088;1083601;1340083;1687327;1487926;1737118;2776869;2214224 -237;'704;Viet Nam;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300000;320000;350000;350000;330000;350000;350000;350000;350000;550000;600000;650000;650000;650000;650000;650000;650000;650000 -237;'704;Viet Nam;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105;105;105;105;630;3;0;0;500;0;0;299;299;175;175;175;3628;19000;21000;1549;1510;5195;4360;737;681;2021;868;392;1019;1445;1445 -237;'704;Viet Nam;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;84;1;0;0;19;0;0;12;12;16;16;16;485;1738;1870;495;173;481;620;318;269;1079;29;19;45;64;64 -237;'704;Viet Nam;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3030;3030;189;300;381;201;100;100;1900;0;0;5326;5326;1280;1280;1280;30684;72884;72884;140000;233148;249000;500000;546000;620000;26551;27586;11355;5004;5164;5164 -237;'704;Viet Nam;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;214;214;9;15;27;14;5;5;28;0;0;213;213;95;95;95;3797;8911;8911;16876;24186;25500;38411;39519;49698;1443;1125;835;423;349;349 -237;'704;Viet Nam;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50000;170000;800000;1000000;1350000;1837000;3260000;3340000;3440000;3740000;5340000;4740000 -237;'704;Viet Nam;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;43;5258;1053;6182;9822;1702;1763;2018;2645;31744;42503 -237;'704;Viet Nam;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;44;780;132;575;1330;955;299;332;497;4310;4234 -237;'704;Viet Nam;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34210;160276;778545;974711;1353606;1765497;3232645;3258254;3372719;3742835;5255179;4638586 -237;'704;Viet Nam;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5003;23132;117415;103432;119746;195214;407361;342355;393078;458752;857730;534035 -237;'704;Viet Nam;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50000;170000;800000;1000000;1350000;1647000;3050000;3100000;3200000;3500000;5100000;4500000 -237;'704;Viet Nam;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;43;5258;1053;6182;9264;202;869;834;1788;31294;42053 -237;'704;Viet Nam;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;44;780;132;575;947;37;159;149;328;4162;4086 -237;'704;Viet Nam;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34210;160276;778545;974711;1353606;1579471;3022645;3076680;3200000;3500000;5068137;4423018 -237;'704;Viet Nam;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5003;23132;117415;103432;119746;172263;361676;309315;351877;413000;827285;510265 -237;'704;Viet Nam;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;190000;210000;240000;240000;240000;240000;240000 -237;'704;Viet Nam;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;558;1500;894;1184;857;450;450 -237;'704;Viet Nam;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;383;918;140;183;169;148;148 -237;'704;Viet Nam;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;186026;210000;181574;172719;242835;187042;215568 -237;'704;Viet Nam;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22951;45685;33040;41201;45752;30445;23770 -237;'704;Viet Nam;1872;Sawnwood;5516;Production;m3;454000;430000;475000;510000;510000;474000;387000;441000;558000;520000;520000;520000;520000;520000;520000;520000;632000;590000;540000;473000;429000;390000;354000;389000;424000;459000;494000;529000;564000;896000;885000;849000;721000;721000;1606000;1398000;1184000;2705000;1465900;1744000;2036000;2667000;2450000;3009000;3232000;4322000;4441000;5243600;5672200;5236700;5179300;4732000;4520400;3869900;4526000;4855500;5010600;5098700;5218900;5297200;5471000;5500000;5100000 -237;'704;Viet Nam;1872;Sawnwood;5616;Import quantity;m3;;;;;1900;2400;1700;5200;3000;3000;3000;3000;3000;3000;23400;30400;30400;30400;30400;30400;600;700;700;700;400;700;200;1000;200;19800;25800;6148;16704;714;3020;7600;6565;43093;100500;104200;133200;207400;234800;429923;456500;970888;933752;833417;858442;1125521;1156515;1097943;1321631;1796250;1902238;1712219;2179557;2452302;2791164;2870834;2302896;1930793;2230245 -237;'704;Viet Nam;1872;Sawnwood;5622;Import value;1000 USD;;;;;112;175;176;320;120;120;120;120;120;120;1420;2520;2520;2520;2520;2520;120;130;130;130;78;163;52;221;74;6317;9317;3811;4194;307;1357;2248;2978;9951;16513;17025;19935;32420;37392;97742;130431;385824;469555;433437;383443;546138;626244;625035;803608;1185640;1143799;797212;1095175;1207375;1425855;1365361;1010080;1076497;802334 -237;'704;Viet Nam;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;7600;13100;188100;505900;219919;392964;25833;45239;31100;23174;8206;14100;14100;11200;15400;15400;36434;36434;60817;86211;65385;115499;229426;286548;195574;429127;423481;565068;448738;633872;260893;235329;228853;210954;178923;205336 -237;'704;Viet Nam;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;1419;2527;30571;66452;56886;98478;11004;15810;9667;9837;4975;5176;5176;4750;5025;5025;9467;9468;37362;40592;34700;36549;62609;156747;112313;237953;246660;375140;234441;223642;107949;104684;95043;96822;78803;102816 -237;'704;Viet Nam;1632;Sawnwood, coniferous;5516;Production;m3;35000;30000;33000;43000;46000;47000;43000;40000;60000;69000;69000;69000;69000;69000;69000;69000;84000;78000;72000;63000;57000;52000;47000;52000;57000;62000;67000;72000;77000;105000;113000;102000;96000;96000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -237;'704;Viet Nam;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;20400;27400;27400;27400;27400;27400;500;600;600;600;300;600;100;900;100;10000;16000;6100;16600;44;211;3200;4573;12580;30300;34000;44800;123400;150800;250500;286500;358689;342730;340809;456097;485154;400775;388599;383343;407570;676358;738639;766557;908302;911164;1180834;1147746;903000;678000 -237;'704;Viet Nam;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;1300;2400;2400;2400;2400;2400;100;110;110;110;58;143;32;201;54;5000;8000;3782;4150;17;45;640;1224;2332;5252;5764;8308;17391;22363;43018;48431;64100;81714;70279;75308;106052;87241;98346;106258;116327;148918;159662;166473;192573;190695;224611;252044;234815;167466 -237;'704;Viet Nam;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;7600;13100;188100;505900;6354;1664;4657;15330;11600;2803;1928;3500;3500;3500;2800;2800;11742;11742;9007;22021;2533;2999;3848;6515;9455;12462;13010;6642;10137;4896;8585;9432;11912;18094;17486;11702 -237;'704;Viet Nam;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;1419;2527;30571;66452;2922;604;1809;3938;3428;2363;1595;2065;2065;2163;1866;1866;1961;1961;5461;5554;768;784;900;1593;4265;5935;6596;5138;5491;3122;2128;3920;7392;9692;8755;5956 -237;'704;Viet Nam;1633;Sawnwood, non-coniferous;5516;Production;m3;419000;400000;442000;467000;464000;427000;344000;401000;498000;451000;451000;451000;451000;451000;451000;451000;548000;512000;468000;410000;372000;338000;307000;337000;367000;397000;427000;457000;487000;791000;772000;747000;625000;625000;1606000;1398000;1184000;2705000;1465900;1744000;2036000;2667000;2450000;3009000;3232000;4322000;4441000;5243600;5672200;5236700;5179300;4732000;4520400;3869900;4526000;4855500;5010600;5098700;5218900;5297200;5471000;5500000;5100000 -237;'704;Viet Nam;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;1900;2400;1700;5200;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;100;100;100;100;100;100;100;100;100;9800;9800;48;104;670;2809;4400;1992;30513;70200;70200;88400;84000;84000;179423;170000;612199;591022;492608;402345;640367;755740;709344;938288;1388680;1225880;973580;1413000;1544000;1880000;1690000;1155150;1027793;1552245 -237;'704;Viet Nam;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;112;175;176;320;120;120;120;120;120;120;120;120;120;120;120;120;20;20;20;20;20;20;20;20;20;1317;1317;29;44;290;1312;1608;1754;7619;11261;11261;11627;15029;15029;54724;82000;321724;387841;363158;308135;440086;539003;526689;697350;1069313;994881;637550;928702;1014802;1235160;1140750;758036;841682;634868 -237;'704;Viet Nam;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;213565;391300;21176;29909;19500;20371;6278;10600;10600;7700;12600;12600;24692;24692;51810;64190;62852;112500;225578;280033;186119;416665;410471;558426;438601;628976;252308;225897;216941;192860;161437;193634 -237;'704;Viet Nam;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53964;97874;9195;11872;6239;7474;3380;3111;3111;2587;3159;3159;7506;7507;31901;35038;33932;35765;61709;155154;108048;232018;240064;370002;228950;220520;105821;100764;87651;87130;70048;96860 -237;'704;Viet Nam;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;130000;134000;134000;134000;134000;60000;159000;339000;662000;1050000;1050000;1050000;1052000;1052000;1202000;1202000;1202000;1202000;1202000 -237;'704;Viet Nam;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;67;200;600;946;573;800;800;3300;1000;1000;13985;13985;14645;14363;16684;13797;20181;24915;28700;28754;44097;52307;51055;61539;84211;131827;144860;188183;164728;125985 -237;'704;Viet Nam;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;24;166;384;480;297;466;466;1477;3098;3098;10894;10894;30876;34001;42538;35449;46023;54684;61959;61375;88845;60173;69917;95337;119749;172162;200879;321064;255611;215907 -237;'704;Viet Nam;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;406;2967;200;200;3300;7500;7500;7489;7489;4054;3289;1722;552;78853;140054;318954;650805;1052002;1012198;797474;552944;570186;177996;482908;1358709;991845;1086516 -237;'704;Viet Nam;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;201;245;95;95;1003;5845;5845;5901;5901;9288;6968;4328;1735;12077;26594;51342;87357;119433;119965;88787;69213;58276;26631;53993;145196;157449;167509 -237;'704;Viet Nam;1873;Wood-based panels;5516;Production;m3;;2500;1400;700;700;1700;700;5100;7600;7100;7100;7100;7100;7100;7100;16100;28100;30100;18100;18100;21100;23100;49100;40100;40100;40100;40100;40500;41000;39000;39000;39000;39000;39000;39000;39000;39000;39000;40000;40000;49400;57600;103400;117000;311000;442000;420000;430000;430000;620000;650000;698000;865000;970000;1040000;1290000;1490000;1790000;2090000;3090000;4090000;3320000;3140000 -237;'704;Viet Nam;1873;Wood-based panels;5616;Import quantity;m3;1300;1500;1000;1900;1800;2600;3700;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;1000;700;1100;900;1000;1000;2750;1636;8483;20643;38500;42849;85109;97400;97400;123920;121900;121900;294663;304812;623414;537211;503141;450447;656129;713940;714774;682333;624610;1104985;1143541;1459533;1546358;1226919;1320017;1240826;910842;1066347 -237;'704;Viet Nam;1873;Wood-based panels;5622;Import value;1000 USD;123;151;102;193;152;239;567;329;128;128;128;128;128;128;128;128;128;128;128;128;128;128;128;128;128;224;204;351;291;320;320;963;1057;3478;8050;14343;11390;15285;18414;18414;26400;43319;43319;78842;83546;142313;177228;177293;214627;266368;296368;302140;310575;309376;391710;385255;480189;513849;532021;552935;550394;429031;376383 -237;'704;Viet Nam;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3453;11243;13879;19307;20111;13472;2867;7000;7000;1400;1400;1400;5223;6214;30519;43154;49038;87344;208716;212497;301474;495319;594008;706571;931639;1204453;2117114;1460912;1386901;1928622;2185602;2092665 -237;'704;Viet Nam;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;973;5281;6154;7028;6827;4728;2067;2995;2995;263;263;263;1422;2218;10820;18116;30006;51712;97209;105371;140696;257144;328418;342373;438927;521766;723413;838144;835931;1190930;1515778;1084952 -237;'704;Viet Nam;1640;Plywood and LVL;5516;Production;m3;;1100;600;300;200;200;400;4900;7300;7000;7000;7000;7000;7000;7000;16000;28000;30000;18000;18000;21000;23000;49000;40000;40000;40000;40000;40000;40000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;11000;15000;14000;16000;70000;70000;70000;195000;215000;258000;425000;530000;600000;850000;1050000;1350000;1650000;2650000;3650000;2880000;2700000 -237;'704;Viet Nam;1640;Plywood and LVL;5616;Import quantity;m3;1300;1500;1000;1900;1800;2600;3700;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;1000;700;1100;900;1000;1000;2482;1235;5091;12278;18300;14584;31547;28400;28400;30000;10000;10000;9851;20000;127130;162711;128641;120410;191880;221427;231100;245274;207457;242308;353742;495537;594643;527177;606446;596848;341442;334777 -237;'704;Viet Nam;1640;Plywood and LVL;5622;Import value;1000 USD;123;151;102;193;152;239;567;329;128;128;128;128;128;128;128;128;128;128;128;128;128;128;128;128;128;224;204;351;291;320;320;858;955;2624;6383;10023;6487;5153;3568;3568;4546;1837;1837;3496;8200;32548;52283;52348;49150;74424;93681;101695;109123;134211;155104;176729;221781;274790;266610;281257;263990;230650;207560 -237;'704;Viet Nam;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3453;11094;13741;18978;19300;12737;2663;6600;6600;600;600;600;3147;3147;26203;38838;44722;68294;178844;182349;248629;409819;513075;641053;868642;1058848;1950000;1333156;1282005;1762375;1975678;1806895 -237;'704;Viet Nam;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;973;5229;6125;6947;6701;4583;2008;2904;2904;216;216;216;1031;1031;7780;15076;26966;39112;79956;87760;111510;220131;295128;310354;415057;477174;668000;780683;783067;1104493;1436289;1018838 -237;'704;Viet Nam;1607;Laminated Veneer Lumber (LVL);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;170000;180000 -237;'704;Viet Nam;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;10118 -237;'704;Viet Nam;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;4071 -237;'704;Viet Nam;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;159894;166856 -237;'704;Viet Nam;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56228;43688 -237;'704;Viet Nam;1646;Particle board and OSB (1961-1994);5516;Production;m3;;1400;800;400;500;1500;300;200;300;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;500;1000;2000;2000;2000;2000;2000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -237;'704;Viet Nam;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;1906;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -237;'704;Viet Nam;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;378;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -237;'704;Viet Nam;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;43;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -237;'704;Viet Nam;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;8;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -237;'704;Viet Nam;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2000;2000;2000;2000;2000;11400;19600;43500;48000;243000;256000;180000;180000;180000;240000;245000;250000;250000;250000;250000;250000;250000;250000;250000;250000;250000;250000;250000 -237;'704;Viet Nam;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5621;14000;20748;43655;49000;49000;64000;20000;20000;120193;120193;217400;141600;141600;85672;101515;129200;98212;88953;138378;192390;165987;205851;224000;147165;151265;148989;101693;267029 -237;'704;Viet Nam;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1048;3246;3268;7578;8543;8543;11672;2676;2676;19712;19712;29300;30104;30104;41308;39191;49747;36488;35901;36049;44948;35732;45186;36119;45242;49772;56230;49540;49117 -237;'704;Viet Nam;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;311;311;202;4;400;400;0;0;0;1297;1297;44;44;44;16937;23018;23018;23004;11693;26401;9155;3702;46519;46519;38547;23181;33423;91381;85223 -237;'704;Viet Nam;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;72;48;1;91;91;0;0;0;220;220;34;34;34;11718;14420;14420;14416;3491;7516;3004;1275;10025;10025;11106;7243;10951;22394;16541 -237;'704;Viet Nam;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6208;6208;11800;11800;11800;330;221;800;1788;1471;225;5888;30000;58398;69235;128374;141099;75192;28327;28327 -237;'704;Viet Nam;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1018;1018;1400;1400;1400;117;63;250;1013;481;63;1256;6262;13341;21392;34151;34865;15504;11137;11137 -237;'704;Viet Nam;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;156;156;156;156;156;156;90;90;104;1467;593;1221;2553;2;16;169;162;6066;0;0 -237;'704;Viet Nam;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;26;26;26;26;27;27;31;424;165;700;1488;1;17;50;39;2017;0;0 -237;'704;Viet Nam;1874;Fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;48900;54000;54000;170000;170000;180000;180000;185000;190000;190000;190000;190000;190000;190000;190000;190000;190000;190000;190000;190000;190000 -237;'704;Viet Nam;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;268;345;1486;2744;6200;7517;9907;20000;20000;29920;91900;91900;158411;158411;267084;221100;221100;244035;362513;362513;383674;346635;278550;664399;593812;699747;658480;424203;421207;419797;439380;436214 -237;'704;Viet Nam;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105;92;476;619;1074;1635;2554;6303;6303;10182;38806;38806;54616;54616;79065;93441;93441;124052;152690;152690;162944;165070;139053;190402;166532;199881;181548;186018;187041;214670;137704;108569 -237;'704;Viet Nam;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;95;95;18;500;533;200;0;0;800;800;800;623;1614;4116;4116;4116;1957;6764;7040;29737;72340;53939;55142;56742;99084;120579;89040;81553;126758;118543;200547 -237;'704;Viet Nam;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;21;21;9;54;97;58;0;0;47;47;47;145;941;2980;2980;2980;856;2806;3164;14739;33098;25609;28315;21107;34566;45371;46305;45582;73469;57095;49573 -237;'704;Viet Nam;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;647;121;600;600;1900;900;900;5404;5404;15884;11700;11700;12629;20160;20160;17000;16639;19820;50067;52185;44316;13840;34848;26945;22326;20623;13163 -237;'704;Viet Nam;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;275;55;274;274;627;539;539;2508;2508;6600;4565;4565;9595;13855;13855;11671;12254;15650;28095;31666;30771;10143;22709;16692;15798;16731;7772 -237;'704;Viet Nam;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;0;0;100;100;100;9;1000;3000;3000;3000;25;32;32;9212;16160;2921;1437;125;20;3064;6783;9450;52541;46428;18374 -237;'704;Viet Nam;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;0;0;21;21;21;4;800;2700;2700;2700;17;4;4;3859;6633;1047;548;50;9;1181;4138;6289;35099;36591;8241 -237;'704;Viet Nam;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;48900;54000;54000;120000;120000;130000;130000;160000;170000;160000;160000;160000;160000;160000;160000;160000;160000;160000;160000;160000;160000 -237;'704;Viet Nam;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;454;1300;2042;7298;19000;19000;28000;90000;90000;150000;150000;250000;208200;208200;198489;290326;290326;283197;248522;238399;576959;506921;580431;580431;350550;358038;360689;405066;409360 -237;'704;Viet Nam;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;206;510;774;2228;6012;6012;9531;38000;38000;51726;51726;72300;88711;88711;104228;126576;126576;112357;118671;115595;148852;124039;145855;145855;154118;162668;190835;117234;97058 -237;'704;Viet Nam;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;0;0;0;0;0;516;516;416;416;416;1384;6724;7000;20278;53648;49152;53537;56103;98294;117259;81951;71946;74036;71748;181806 -237;'704;Viet Nam;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;37;0;0;0;0;0;125;125;100;100;100;635;2762;3120;10706;25158;24073;27637;20721;33927;44049;42117;39263;38331;20403;41231 -237;'704;Viet Nam;1650;Other fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50000;50000;50000;50000;25000;20000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000;30000 -237;'704;Viet Nam;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;94;1197;2290;4900;4828;2488;400;400;20;1000;1000;3007;3007;1200;1200;1200;32917;52027;52027;83477;81474;20331;37373;34706;75000;64209;38805;36224;36782;13691;13691 -237;'704;Viet Nam;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;25;382;413;564;586;271;17;17;24;267;267;382;382;165;165;165;10229;12259;12259;38916;34145;7808;13455;10827;23255;25550;9191;7681;8037;3739;3739 -237;'704;Viet Nam;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;18;18;18;500;500;167;0;0;700;700;700;98;98;700;700;700;548;8;8;247;2532;1866;168;514;770;256;306;157;181;367;367 -237;'704;Viet Nam;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;9;9;9;54;54;15;0;0;26;26;26;16;16;180;180;180;204;40;40;174;1307;489;130;336;630;141;50;30;39;101;101 -237;'704;Viet Nam;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;262;251;289;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -237;'704;Viet Nam;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;67;94;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -237;'704;Viet Nam;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;77;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -237;'704;Viet Nam;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -237;'704;Viet Nam;1879;Total fibre furnish;5510;Production;t;;;1400;3200;1400;5400;5400;13300;14300;14500;15000;15000;15000;15000;15000;15000;17000;15000;15000;15000;15000;38000;43000;47000;55000;62000;62000;62000;62000;77800;130600;137800;280000;280000;280000;280000;280000;280000;389000;454000;490000;490000;450500;527000;527000;332000;342000;345000;345000;415000;565000;580000;580000;580000;580000;580000;580000;580000;580000;580000;580000;580000;580000 -237;'704;Viet Nam;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2926;13345;20032;38399;36954;48721;88847;49000;49000;87000;108200;108200;273402;273402;462908;614177;614177;410510;746696;746349;927925;800831;865969;918958;1059414;2168757;2600113;3137594;3846369;3774736;3305857;4441658 -237;'704;Viet Nam;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1177;4483;10095;26772;18072;20948;30031;19408;19408;33916;24063;24063;62226;62226;102783;112810;112810;160816;190962;189620;177905;259746;277175;258661;277481;500740;512960;657024;656537;1138786;1055548;907948 -237;'704;Viet Nam;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;1116;1722;1714;950;0;0;0;0;0;576;576;0;0;0;328;15391;42883;53132;97293;58976;12870;6980;7949;7589;7707;6636;15807;10430;12867 -237;'704;Viet Nam;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;377;400;396;115;0;0;0;0;0;110;110;0;0;0;64;8649;22141;18637;36398;19973;4142;1384;2112;2224;4019;3139;8884;8231;9157 -237;'704;Viet Nam;1878;Pulp for paper;5510;Production;t;;;1400;3200;1400;5400;5400;13300;14300;14500;15000;15000;15000;15000;15000;15000;17000;15000;15000;15000;15000;38000;43000;47000;55000;62000;62000;62000;62000;67500;115200;124300;133000;133000;133000;133000;133000;133000;294000;314000;314000;314000;305500;352000;352000;257000;265000;268000;268000;295000;445000;460000;460000;460000;460000;460000;460000;460000;460000;460000;460000;460000;460000 -237;'704;Viet Nam;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2117;12353;16879;34951;34554;44403;80717;46500;46500;84500;33200;33200;104835;104835;162908;134077;134077;120887;155534;155187;230452;350275;228516;270470;346588;367879;470113;356555;361489;381244;341636;381941 -237;'704;Viet Nam;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1063;4248;8561;25538;17405;20185;28985;19108;19108;33616;14260;14260;43515;43515;68783;59521;59521;99564;95765;94423;100485;163181;146694;125879;150982;160112;205633;250482;199120;295959;297567;270284 -237;'704;Viet Nam;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;822;822;814;50;0;0;0;0;0;114;114;0;0;0;12;12953;41083;39174;79048;43406;8449;1305;2927;4823;6657;6414;15560;10013;12450 -237;'704;Viet Nam;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;298;298;294;13;0;0;0;0;0;64;64;0;0;0;7;8314;21889;17255;33245;17424;3406;509;1232;1935;3884;3109;8831;8140;9066 -237;'704;Viet Nam;1875;Wood pulp;5510;Production;t;;;1400;3200;1400;1400;1400;7300;7700;7700;8000;8000;8000;8000;8000;8000;10000;10000;10000;10000;10000;25000;18000;21000;26000;31000;31000;31000;31000;20500;45500;52300;59000;59000;59000;59000;59000;59000;220000;240000;240000;240000;231500;278000;278000;303000;316000;300000;300000;370000;520000;540000;540000;540000;540000;540000;540000;540000;540000;540000;540000;540000;540000 -237;'704;Viet Nam;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2117;12353;16874;34959;34654;41229;71729;45200;45200;84500;33200;33200;104998;104998;160441;131610;131610;123753;158087;158087;225133;348440;225756;264383;345419;358983;463644;355018;359898;379948;338569;368338 -237;'704;Viet Nam;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1063;4248;8556;25520;17198;18944;26635;18636;18636;33616;14260;14260;43619;43619;67509;58247;58247;102034;96871;96871;95957;160983;145031;122383;149881;159045;204218;247385;196434;287842;290803;260179 -237;'704;Viet Nam;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;0;0;0;0;0;0;0;62;62;0;0;0;12;12934;41064;38961;78866;43429;8469;1334;2945;4841;4202;6445;15591;10011;12448 -237;'704;Viet Nam;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;0;0;0;0;0;0;0;25;25;0;0;0;7;8307;21882;17177;33178;17426;3407;516;1237;1940;2581;3119;8841;8136;9062 -237;'704;Viet Nam;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;290000;290000;290000;290000;290000;290000;290000 -237;'704;Viet Nam;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34041;22593;31858;26499;31978;24600;10415 -237;'704;Viet Nam;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17694;13694;17189;12060;17465;15584;6037 -237;'704;Viet Nam;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;666;0;65;35;230;3;3 -237;'704;Viet Nam;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;325;0;32;14;120;3;3 -237;'704;Viet Nam;1654;Mechanical wood pulp (1961-2016);5510;Production;t;;;1400;3200;1400;1400;1400;7300;7700;7700;8000;8000;8000;8000;8000;8000;10000;10000;10000;10000;10000;10000;5000;5000;5000;5000;5000;5000;5000;1500;11200;12300;15000;15000;15000;15000;15000;15000;30000;40000;40000;40000;25000;30000;30000;59000;62000;65000;65000;80000;200000;190000;190000;190000;190000;190000;;;;;;; -237;'704;Viet Nam;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;498;5842;1997;1997;1997;0;0;0;3300;7200;7200;4755;4755;3500;3500;3500;1909;4347;4347;2436;3144;8735;2244;1205;;;;;;; -237;'704;Viet Nam;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;130;1736;1129;1129;1129;0;0;0;1043;1820;1820;1579;1579;1200;1200;1200;1213;2075;2075;809;1792;2900;745;400;;;;;;; -237;'704;Viet Nam;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;10;10;17;2;0;4;177;;;;;;; -237;'704;Viet Nam;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;5;5;5;0;0;2;49;;;;;;; -237;'704;Viet Nam;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106500;127000;127000;45000;47000;47000;47000;55000;80000;100000;100000;100000;100000;100000;;;;;;; -237;'704;Viet Nam;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2317;2082;1957;1957;1957;17091;7100;7100;0;0;0;223;223;3400;3400;3400;15165;15553;15553;2452;69818;71662;64171;62422;;;;;;; -237;'704;Viet Nam;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;720;1065;1078;1078;1078;4567;2853;2853;0;0;0;88;88;1500;1500;1500;10107;7537;7537;1368;40680;42774;36780;29679;;;;;;; -237;'704;Viet Nam;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1870;30000;1837;1837;65;33;100;;;;;;; -237;'704;Viet Nam;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;925;14500;788;788;38;17;44;;;;;;; -237;'704;Viet Nam;1656;Chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;15000;13000;16000;21000;26000;26000;26000;26000;19000;34300;40000;44000;44000;44000;44000;44000;44000;190000;200000;200000;200000;100000;121000;121000;79000;82000;82000;82000;100000;100000;110000;110000;110000;110000;110000;110000;110000;110000;110000;110000;110000;110000 -237;'704;Viet Nam;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2117;9538;8950;30925;30500;37250;54564;38100;38100;81200;26000;26000;99837;99837;153358;124527;124527;103107;134693;134693;219712;273715;143934;196736;281531;324456;440004;323138;333339;347577;313795;357749 -237;'704;Viet Nam;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1063;3398;5755;23248;14883;16721;22024;15783;15783;32573;12440;12440;41832;41832;64689;55427;55427;86587;83938;83938;93378;116337;97557;84173;119596;140852;189652;230171;184305;269970;275020;253943 -237;'704;Viet Nam;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;0;0;0;0;0;0;0;62;62;0;0;0;0;11054;11054;37107;76996;43333;8401;1026;2248;4810;4106;6379;15330;10008;12445 -237;'704;Viet Nam;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;0;0;0;0;0;0;0;25;25;0;0;0;0;7377;7377;16384;32379;17377;3377;412;901;1929;2538;3094;8710;8133;9059 -237;'704;Viet Nam;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;4000;4000;4000;4000;4000;4000;4000;70000;70000;70000;70000;35000;42300;42300;32000;33000;33000;33000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000;40000 -237;'704;Viet Nam;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;195;32;32;200;1081;22;0;0;0;0;0;5911;5911;5005;4300;4300;3564;14704;14704;9033;14394;13042;11635;15841;21846;21846;31231;38699;57590;44829;41976 -237;'704;Viet Nam;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;10;10;84;231;5;0;0;0;0;0;2098;2098;1916;2163;2163;2741;7798;7798;4212;6505;8878;5135;6768;11936;11936;23458;22943;57405;38057;39648 -237;'704;Viet Nam;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;5347;3703;605;605 -237;'704;Viet Nam;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;2613;1834;456;456 -237;'704;Viet Nam;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19000;34300;36000;40000;40000;40000;40000;40000;40000;120000;130000;130000;130000;65000;78700;78700;47000;49000;49000;49000;60000;60000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000 -237;'704;Viet Nam;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1948;9201;8850;29560;19200;32832;51727;36700;36700;77700;26000;26000;92010;92010;146426;118300;118300;86891;104255;104255;209374;258232;124998;181375;264641;301578;417165;290430;293052;289332;268090;314897 -237;'704;Viet Nam;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;942;3249;5708;22616;11335;15232;20673;15170;15170;30976;12440;12440;38828;38828;61792;52283;52283;64384;54438;54438;88356;108973;84339;76540;111679;127266;176043;204439;159051;210848;235310;212642 -237;'704;Viet Nam;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;62;0;0;0;0;9552;9552;35605;75494;43333;8398;1026;2248;4810;4106;1032;11627;9396;11833 -237;'704;Viet Nam;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;0;0;0;0;5271;5271;14278;30273;17377;3368;412;901;1929;2538;481;6876;7673;8599 -237;'704;Viet Nam;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1032;993;1477;1588;655;876;876 -237;'704;Viet Nam;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1650;1673;2274;2311;1717;1653;1653 -237;'704;Viet Nam;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7 -237;'704;Viet Nam;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4 -237;'704;Viet Nam;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;493;200;200;0;0;0;0;0;0;0;0;0;0;0;0;0;150;150;24;;;;;;; -237;'704;Viet Nam;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;188;60;60;0;0;0;0;0;0;0;0;0;0;0;0;0;89;89;10;;;;;;; -237;'704;Viet Nam;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;169;142;68;1333;11100;3337;2322;1200;1200;3500;0;0;1916;1916;1927;1927;1927;12652;15734;15734;1305;1089;5744;3576;1025;;;;;;; -237;'704;Viet Nam;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121;86;37;622;3464;1258;1158;553;553;1597;0;0;906;906;981;981;981;19462;21702;21702;810;859;4251;2409;1139;;;;;;; -237;'704;Viet Nam;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;0;0;0;0;0;0;0;0;0;0;0;0;0;1502;1502;1502;1502;0;3;0;;;;;;; -237;'704;Viet Nam;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;0;0;0;0;0;0;0;0;0;0;0;0;0;2106;2106;2106;2106;0;9;0;;;;;;; -237;'704;Viet Nam;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120000;125000;106000;106000;135000;140000;140000;140000;140000;140000;140000;140000;140000;140000;140000;140000;140000;140000 -237;'704;Viet Nam;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;200;25;74;0;0;0;0;0;183;183;183;183;183;3572;3494;3494;533;1763;1425;1232;261;486;1047;22;60;393;174;174 -237;'704;Viet Nam;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;108;16;44;0;0;0;0;0;120;120;120;120;120;4127;3321;3321;402;2174;1800;685;206;499;872;25;69;407;199;199 -237;'704;Viet Nam;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;31;31;31;31;31;31;31;31;0;0 -237;'704;Viet Nam;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;11;11;11;11;11;0;0 -237;'704;Viet Nam;1668;Pulp from fibres other than wood;5510;Production;t;;;;;;4000;4000;6000;6600;6800;7000;7000;7000;7000;7000;7000;7000;5000;5000;5000;5000;13000;25000;26000;29000;31000;31000;31000;31000;47000;69700;72000;74000;74000;74000;74000;74000;74000;74000;74000;74000;74000;74000;74000;74000;74000;74000;74000;74000;60000;65000;60000;60000;60000;60000;60000;60000;60000;60000;60000;60000;60000;60000 -237;'704;Viet Nam;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;5;72;100;3199;9062;1300;1300;0;0;0;20;20;2650;2650;2650;706;941;594;5852;3598;4185;7319;1430;9382;7516;1559;1651;1689;3241;13777 -237;'704;Viet Nam;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;5;83;315;1257;2394;472;472;0;0;0;16;16;1394;1394;1394;1657;2215;873;4930;4372;3463;4181;1307;1566;2287;3122;2755;8524;6963;10304 -237;'704;Viet Nam;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;814;814;814;50;0;0;0;0;0;52;52;0;0;0;0;19;19;213;213;8;11;2;13;13;2486;0;0;2;2 -237;'704;Viet Nam;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;294;294;294;13;0;0;0;0;0;39;39;0;0;0;0;7;7;78;78;9;10;4;6;6;1314;1;1;4;4 -237;'704;Viet Nam;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;535;535;6700;6700;6700;55;311;311;860;394;1019;475;658;402;4855;212;51;920;446;446 -237;'704;Viet Nam;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;428;428;2660;2660;2660;41;205;205;549;171;492;262;203;223;2365;136;30;583;311;311 -237;'704;Viet Nam;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;18;4;7;7;9;9;9;27139;24300;76564;41372;64664 -237;'704;Viet Nam;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;10;9;9;8;8;8;15685;13744;32959;27624;19351 -237;'704;Viet Nam;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10300;15400;13500;147000;147000;147000;147000;147000;147000;95000;140000;176000;176000;145000;175000;175000;75000;77000;77000;77000;120000;120000;120000;120000;120000;120000;120000;120000;120000;120000;120000;120000;120000;120000 -237;'704;Viet Nam;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;809;992;3153;3448;2400;4318;8130;2500;2500;2500;75000;75000;168567;168567;300000;480100;480100;289623;591162;591162;697473;450556;637453;648488;712826;1800878;2130000;2781039;3484880;3393492;2964221;4059717 -237;'704;Viet Nam;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;114;235;1534;1234;667;763;1046;300;300;300;9803;9803;18711;18711;34000;53289;53289;61252;95197;95197;77420;96565;130481;132782;126499;340628;307327;406542;457417;842827;757981;637664 -237;'704;Viet Nam;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;294;900;900;900;0;0;0;0;0;462;462;0;0;0;316;2438;1800;13958;18245;15570;4421;5675;5022;2766;1050;222;247;417;417 -237;'704;Viet Nam;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;102;102;102;0;0;0;0;0;46;46;0;0;0;57;335;252;1382;3153;2549;736;875;880;289;135;30;53;91;91 -237;'704;Viet Nam;1876;Paper and paperboard;5510;Production;t;6200;6200;12200;21100;20200;21900;12400;18600;29000;30000;49000;50000;50000;50000;50000;50000;53000;56000;47000;37000;37000;50000;48000;55000;60000;65000;59400;55600;55600;57000;108300;114700;129000;106000;216000;220000;263000;311000;349000;406500;445300;489600;687400;809300;901200;1030600;1727000;1899700;1752300;1536800;1568800;1492300;1445000;1349400;1495600;1614400;1829700;2113600;2425000;2674200;2870500;2879100;2779100 -237;'704;Viet Nam;1876;Paper and paperboard;5610;Import quantity;t;32200;27800;27000;27000;39200;44800;25000;28200;31300;35700;42100;36000;15400;15400;3100;3800;7300;3500;6000;4800;8600;7900;7900;8800;8800;8800;11000;7200;7500;2500;300;25897;44296;54896;67333;71300;62269;138040;140900;140900;251300;221500;221500;377693;377693;597043;647946;647946;648739;871322;874175;1074067;1273955;1258154;1224683;1484395;1712626;1674311;1594677;1560930;1755024;1501559;2051450 -237;'704;Viet Nam;1876;Paper and paperboard;5622;Import value;1000 USD;4220;3661;3722;3851;4829;7080;4639;4595;4407;5740;8029;8082;4598;4598;1300;1800;3480;1707;3000;2600;5100;4600;4600;5100;5100;5100;8174;3894;4660;2160;85;16562;26470;36770;58974;48370;51041;80630;77273;77273;126354;130259;130259;281369;281369;404324;442631;442631;661516;761872;764001;968726;1110725;1113147;1030500;1360544;1508813;1541746;1432900;1394044;1788873;1875473;1685730 -237;'704;Viet Nam;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;1000;2000;2400;300;9300;2100;1312;2293;3375;2707;2200;1745;3501;2000;2000;1900;1620;1620;23027;23027;30233;23903;23903;22268;70332;70203;96072;102732;99371;111653;131575;390561;501941;763416;1172076;1121393;1085904;2067361 -237;'704;Viet Nam;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;439;1213;1696;187;5879;1378;783;1249;2088;1399;1020;1231;1958;1528;1528;1547;1836;1836;19625;19625;32687;24859;24859;27679;81403;81255;100031;108056;129537;116960;152932;265528;313198;460838;602378;723567;705164;1014950 -237;'704;Viet Nam;2042;Graphic papers;5510;Production;t;;;10400;15100;14000;14600;9400;15000;18000;19000;30000;31000;31000;31000;31000;31000;33000;34000;29000;23000;23000;36000;35000;39000;43000;46000;43400;40000;40000;35000;69500;73200;80000;64000;73000;73000;73000;138000;110000;106930;99011;95498;97000;105000;125637;131227;140425;169875;175976;451000;430000;488000;493000;493000;493000;493000;493000;493000;493000;493000;493000;268000;268000 -237;'704;Viet Nam;2042;Graphic papers;5610;Import quantity;t;;;1300;2100;12600;9800;10000;15500;20100;21700;20100;20600;;;2000;2000;3800;1800;3100;2500;4400;4100;4100;5000;5000;5000;5000;5000;5000;;;10283;16572;26996;19833;34000;18469;85540;124500;124500;120400;107300;107300;148489;148489;246317;183400;183400;290213;343702;343702;388286;449596;414175;341242;454749;490803;528223;514938;473308;547791;425048;634945 -237;'704;Viet Nam;2042;Graphic papers;5622;Import value;1000 USD;;;222;351;1176;1007;1136;1635;2153;2699;2268;3484;;;700;700;1335;657;1200;1100;2100;2000;2000;2500;2500;2500;2500;2500;2500;;;7610;12408;20588;21985;25397;17813;48449;68257;68257;62062;59236;59236;110906;110906;162651;122381;122381;314849;343829;343829;343883;365262;397790;275950;356011;425441;480250;492901;440795;545376;574975;547732 -237;'704;Viet Nam;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;1000;2000;2400;300;9300;2100;1119;1757;3075;507;700;745;201;0;0;0;0;0;755;755;4700;4700;4700;3042;5609;5480;4314;4883;3889;3388;6203;6723;8158;15386;11082;10315;15545;18715 -237;'704;Viet Nam;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;439;1213;1696;187;5879;1378;677;1094;1841;537;403;391;86;0;0;0;0;0;548;548;3220;3220;3220;3423;5818;5670;4281;5205;4073;3309;5098;6887;9483;14735;12619;13752;21633;18328 -237;'704;Viet Nam;1671;Newsprint;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;5000;5000;5000;5000;5000;6400;6000;6000;9000;11500;10200;13000;16000;18000;18000;18000;36000;35000;36930;29011;25498;27000;35000;55637;61227;70425;99875;105976;91000;60000;60000;65000;65000;65000;65000;65000;65000;65000;65000;65000;0;0 -237;'704;Viet Nam;1671;Newsprint;5610;Import quantity;t;;;1300;2100;12600;9800;10000;15500;20100;21700;20100;20600;;;2000;2000;3800;1800;3100;2500;4400;4100;4100;5000;5000;5000;5000;5000;5000;;;3635;1057;2755;3398;11600;3360;9811;1900;1900;15800;10500;10500;22413;22413;39477;39600;39600;61739;45951;45951;57164;58242;70870;50217;38507;18064;48041;43855;25785;28070;13182;20174 -237;'704;Viet Nam;1671;Newsprint;5622;Import value;1000 USD;;;222;351;1176;1007;1136;1635;2153;2699;2268;3484;;;700;700;1335;657;1200;1100;2100;2000;2000;2500;2500;2500;2500;2500;2500;;;1501;429;1159;2630;5453;2129;4395;541;541;6967;3705;3705;11431;11431;20781;18600;18600;46764;31675;31675;36576;36258;47237;33160;20560;9080;30373;27039;13495;15610;11195;13092 -237;'704;Viet Nam;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;918;1556;1556;392;200;200;201;0;0;0;0;0;109;109;0;0;0;167;279;279;1236;588;58;224;398;4;1;760;247;0;3;3 -237;'704;Viet Nam;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;558;975;975;433;120;102;86;0;0;0;0;0;52;52;0;0;0;118;170;170;781;276;36;174;321;14;3;426;120;0;3;3 -237;'704;Viet Nam;1674;Printing and writing papers;5510;Production;t;;;10400;15100;14000;14600;9400;15000;18000;19000;30000;31000;31000;31000;31000;31000;33000;34000;29000;23000;23000;31000;30000;34000;38000;41000;37000;34000;34000;26000;58000;63000;67000;48000;55000;55000;55000;102000;75000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;360000;370000;428000;428000;428000;428000;428000;428000;428000;428000;428000;428000;268000;268000 -237;'704;Viet Nam;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6648;15515;24241;16435;22400;15109;75729;122600;122600;104600;96800;96800;126076;126076;206840;143800;143800;228474;297751;297751;331122;391354;343305;291025;416242;472739;480182;471083;447523;519721;411866;614771 -237;'704;Viet Nam;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6109;11979;19429;19355;19944;15684;44054;67716;67716;55095;55531;55531;99475;99475;141870;103781;103781;268085;312154;312154;307307;329004;350553;242790;335451;416361;449877;465862;427300;529766;563780;534640 -237;'704;Viet Nam;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;1000;2000;2400;300;9300;2100;201;201;1519;115;500;545;;;;;;;646;646;4700;4700;4700;2875;5330;5201;3078;4295;3831;3164;5805;6719;8157;14626;10835;10315;15542;18712 -237;'704;Viet Nam;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;439;1213;1696;187;5879;1378;119;119;866;104;283;289;;;;;;;496;496;3220;3220;3220;3305;5648;5500;3500;4929;4037;3135;4777;6873;9480;14309;12499;13752;21630;18325 -237;'704;Viet Nam;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102000;75000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;360000;370000;428000;428000;428000;428000;428000;428000;428000;428000;428000;428000;268000;268000 -237;'704;Viet Nam;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;362;586;586;500;1000;1000;2422;2422;1700;1700;1700;4027;5515;5515;28090;15786;7985;5956;5473;13340;13340;20422;31671;39675;34962;39311 -237;'704;Viet Nam;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;212;326;326;265;3032;3032;1911;1911;1200;1200;1200;5852;5257;5257;27266;14222;6587;5387;10136;26057;26057;20221;31184;39916;44884;37969 -237;'704;Viet Nam;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;700;700;700;662;255;126;737;642;622;1063;1447;1866;1700;2121;3131;3759;3030;1992 -237;'704;Viet Nam;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;220;220;220;612;306;158;716;686;592;965;953;1596;1384;1778;2754;4301;4631;3701 -237;'704;Viet Nam;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13611;22035;22035;18800;10500;10500;17305;17305;43540;27000;27000;98282;103248;103248;104415;151183;135347;113919;162699;177596;256554;223764;225065;250561;195193;307540 -237;'704;Viet Nam;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8218;12632;12632;10278;7947;7947;13654;13654;32870;24552;24552;121212;114661;114661;92840;126919;146027;98071;125477;152527;233209;235330;217982;256004;271901;288475 -237;'704;Viet Nam;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;314;314;4000;4000;4000;444;2533;2533;2289;2621;1743;1440;3847;3847;4474;5021;2553;767;4428;8443 -237;'704;Viet Nam;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;241;241;3000;3000;3000;637;2921;2921;2181;2916;2053;1271;3273;3273;4724;4778;2384;810;5521;7616 -237;'704;Viet Nam;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61756;99979;99979;85300;85300;85300;106349;106349;161600;115100;115100;126165;188988;188988;198617;224385;199973;171150;248070;281803;210288;226897;190787;229485;181711;267920 -237;'704;Viet Nam;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35624;54758;54758;44552;44552;44552;83910;83910;107800;78029;78029;141021;192236;192236;187201;187863;197939;139332;199838;237777;190611;210311;178134;233846;246995;208196 -237;'704;Viet Nam;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;331;331;0;0;0;1769;2542;2542;52;1032;1466;661;511;1006;1983;7484;5151;5789;8084;8277 -237;'704;Viet Nam;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;254;254;0;0;0;2056;2421;2421;603;1327;1392;899;551;2004;3372;7753;7361;8641;11478;7008 -237;'704;Viet Nam;1675;Other paper and paperboard;5510;Production;t;6200;6200;1800;6000;6200;7300;3000;3600;11000;11000;19000;19000;19000;19000;19000;19000;20000;22000;18000;14000;14000;14000;13000;16000;17000;19000;16000;15600;15600;22000;38800;41500;49000;42000;143000;147000;190000;173000;239000;299570;346289;394102;590400;704300;775563;899373;1586575;1729825;1576324;1085800;1138800;1004300;952000;856400;1002600;1121400;1336700;1620600;1932000;2181200;2377500;2611100;2511100 -237;'704;Viet Nam;1675;Other paper and paperboard;5610;Import quantity;t;32200;27800;25700;24900;26600;35000;15000;12700;11200;14000;22000;15400;15400;15400;1100;1800;3500;1700;2900;2300;4200;3800;3800;3800;3800;3800;6000;2200;2500;2500;300;15614;27724;27900;47500;37300;43800;52500;16400;16400;130900;114200;114200;229204;229204;350726;464546;464546;358526;527620;530473;685781;824359;843979;883441;1029646;1221823;1146088;1079739;1087622;1207233;1076511;1416505 -237;'704;Viet Nam;1675;Other paper and paperboard;5622;Import value;1000 USD;4220;3661;3500;3500;3653;6073;3503;2960;2254;3041;5761;4598;4598;4598;600;1100;2145;1050;1800;1500;3000;2600;2600;2600;2600;2600;5674;1394;2160;2160;85;8952;14062;16182;36989;22973;33228;32181;9016;9016;64292;71023;71023;170463;170463;241673;320250;320250;346667;418043;420172;624843;745463;715357;754550;1004533;1083372;1061496;939999;953249;1243497;1300498;1137998 -237;'704;Viet Nam;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;193;536;300;2200;1500;1000;3300;2000;2000;1900;1620;1620;22272;22272;25533;19203;19203;19226;64723;64723;91758;97849;95482;108265;125372;383838;493783;748030;1160994;1111078;1070359;2048646 -237;'704;Viet Nam;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106;155;247;862;617;840;1872;1528;1528;1547;1836;1836;19077;19077;29467;21639;21639;24256;75585;75585;95750;102851;125464;113651;147834;258641;303715;446103;589759;709815;683531;996622 -237;'704;Viet Nam;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;700;600;600;7000;10800;12600;10000;8000;10000;10000;10000;10000;55000;60000;31200;34300;33000;46200;46200;55000;58000;58000;58000;70000;70000;93000;93000;93000;93000;93000;93000;93000;93000;93000;93000;274000;274000 -237;'704;Viet Nam;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1100;400;400;1168;1168;2246;2246;2246;5082;7119;7119;8443;8296;9073;3928;11636;13926;20529;31293;26314;27515;21780;54077 -237;'704;Viet Nam;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;705;933;933;1285;1285;2500;2500;2500;9367;10986;10986;11084;11154;13496;2698;14018;18212;25697;39782;32403;36644;39946;56070 -237;'704;Viet Nam;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;1100;1100;9740;9740;11500;7500;7500;2060;16227;16227;24805;29330;25274;34955;36584;39716;38538;62961;49194;53985;59640;82718 -237;'704;Viet Nam;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;429;966;966;10793;10793;10900;7791;7791;4697;23018;23018;29752;35399;35652;39372;42532;47548;47807;75789;63118;63126;99287;89192 -237;'704;Viet Nam;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;156000;184000;232570;199289;232502;433800;509800;581063;394373;1070575;1213825;1060324;475800;518800;391300;339000;243400;389600;508400;723700;1007600;1319000;1568200;1764500;2186100;2086100 -237;'704;Viet Nam;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107600;92800;92800;143801;143801;286480;404400;404400;344564;510597;513450;614316;765102;827019;821029;900107;1185126;1096865;1033982;1041554;1153584;1009766;1334306 -237;'704;Viet Nam;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40886;39383;39383;89157;89157;141273;204530;204530;317203;386489;388618;547556;685922;681383;676509;832090;1031288;1000565;871521;889684;1168685;1224356;1059589 -237;'704;Viet Nam;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1100;320;320;11094;11094;7103;7103;7103;12406;38974;38974;65903;68123;66140;72872;67842;323615;438780;637679;1071710;1018597;931821;1900676 -237;'704;Viet Nam;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;669;398;398;6702;6702;3867;3867;3867;16307;43254;43254;63201;66397;74676;72946;77587;190967;236822;314226;472521;608589;521221;852929 -237;'704;Viet Nam;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;;;;;;;;;;;20000;22000;18000;14000;14000;14000;13000;16000;17000;19000;12000;11800;11800;10000;21500;24700;32000;30000;126000;130000;173000;;;;;;;;;;;;;;;;;;;;;;;;;; -237;'704;Viet Nam;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43100;7000;7000;39401;39401;150000;159800;159800;187893;293969;293969;363000;451346;511527;474750;67668;501971;453578;398785;357715;308688;255762;381513 -237;'704;Viet Nam;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12697;2537;2537;24429;24429;73000;78000;78000;117649;139458;139458;208255;259087;306381;285373;46312;274788;281389;220045;180488;222145;221881;196269 -237;'704;Viet Nam;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;170;170;7720;7720;2500;2500;2500;10760;35348;35348;54000;59298;59178;66256;61019;311020;421995;566145;992999;947772;871772;1694330 -237;'704;Viet Nam;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;224;200;200;4663;4663;1190;1190;1190;13932;37918;37918;49889;54921;60261;59489;64752;174992;213055;228511;370735;485183;415195;611691 -237;'704;Viet Nam;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20700;32000;32000;54335;54335;71630;188500;188500;98393;147122;147122;161000;207885;205642;232424;729666;534454;534454;478879;510147;646976;595910;790067 -237;'704;Viet Nam;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11976;17624;17624;33688;33688;36800;94583;94583;135640;176507;176507;246995;318563;259153;271596;667251;616171;616171;503237;541608;732906;792574;691306 -237;'704;Viet Nam;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1807;1807;533;533;533;227;1213;1213;9778;6333;4673;4311;4834;4426;8723;25565;39426;15346;14647;103429 -237;'704;Viet Nam;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1092;1092;601;601;601;672;3042;3042;10207;7987;11362;9985;10582;12355;15708;32949;57241;74759;47081;164906 -237;'704;Viet Nam;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -237;'704;Viet Nam;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36100;46100;46100;36610;36610;61150;52400;52400;45832;52887;52887;56000;65508;70565;71900;95962;85998;70542;98547;122159;143955;120121;119616 -237;'704;Viet Nam;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13693;16702;16702;22698;22698;29900;30374;30374;54370;58874;58874;68252;78829;87296;89681;107457;86449;75983;115323;138422;175859;175768;128888 -237;'704;Viet Nam;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;900;150;150;1519;1519;3700;3700;3700;1090;2085;2085;1550;2298;2009;2173;1939;1939;7612;45336;38660;37157;42010;57977 -237;'704;Viet Nam;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;445;198;198;918;918;2000;2000;2000;1475;2095;2095;2660;3339;2842;3375;2145;2145;7737;52407;44213;41133;55637;61674 -237;'704;Viet Nam;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;156000;184000;232570;199289;232502;433800;509800;581063;394373;1070575;1213825;1060324;475800;518800;391300;339000;243400;389600;508400;723700;1007600;1319000;1568200;1764500;2186100;2086100 -237;'704;Viet Nam;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7700;7700;7700;13455;13455;3700;3700;3700;12446;16619;19472;34316;40363;39285;41955;6811;62703;38291;57771;51533;53965;37973;43110 -237;'704;Viet Nam;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2520;2520;2520;8342;8342;1573;1573;1573;9544;11650;13779;24054;29443;28553;29859;11070;53880;27022;32916;29166;37775;34133;43126 -237;'704;Viet Nam;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;48;370;370;370;329;328;328;575;194;280;132;50;6230;450;633;625;18322;3392;44940 -237;'704;Viet Nam;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;29;76;76;76;228;199;199;445;150;211;97;108;1475;322;359;332;7514;3308;14658 -237;'704;Viet Nam;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;3300;3200;3200;5000;6500;4200;7000;4000;7000;7000;7000;7000;0;7000;115800;127300;123600;148300;148300;450000;458000;458000;458000;540000;550000;520000;520000;520000;520000;520000;520000;520000;520000;520000;520000;151000;151000 -237;'704;Viet Nam;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27900;47500;37300;43800;52500;16400;16400;22200;21000;21000;84235;84235;62000;57900;57900;8880;9904;9904;63022;50961;7887;58484;117903;22771;28694;14464;19754;26134;44965;28122 -237;'704;Viet Nam;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16182;36989;22973;33228;32181;9016;9016;22701;30707;30707;80021;80021;97900;113220;113220;20097;20568;20568;66203;48387;20478;75343;158425;33872;35234;28696;31162;38168;36196;22339 -237;'704;Viet Nam;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;2200;1500;1000;3300;2000;2000;200;200;200;1438;1438;6930;4600;4600;4760;9522;9522;1050;396;4068;438;20946;20507;16465;47390;40090;38496;78898;65252 -237;'704;Viet Nam;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;247;862;617;840;1872;1528;1528;449;472;472;1582;1582;14700;9981;9981;3252;9313;9313;2797;1055;15136;1333;27715;20126;19086;56088;54120;38100;63023;54501 -237;'704;Viet Nam;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81017;100062;139357;144858;160577;174449;126122 -237;'704;Viet Nam;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5076316;5686244;6980633;8537012;9678336;10114580;8969188 -237;'704;Viet Nam;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4252;4992;6679;10607;11577;9422;9671 -237;'704;Viet Nam;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22595;25699;24318;23709;25924;25123;40532 -237;'704;Viet Nam;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;356;82;3435;4852;821;1340;1649 -237;'704;Viet Nam;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;397;511;639;866;3747;2179;2780 -237;'704;Viet Nam;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3896;4910;3244;5755;10756;8082;8022 -237;'704;Viet Nam;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22198;25188;23679;22843;22177;22944;37752 -237;'704;Viet Nam;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6377;4456;4722;6121;4503;5421;3573 -237;'704;Viet Nam;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19651;20509;21080;23880;27992;30920;24126 -237;'704;Viet Nam;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1390;2428;8000;7837;4636;4399;6241 -237;'704;Viet Nam;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49345;103472;106274;116799;119620;140206;121275 -237;'704;Viet Nam;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8745;12516;15927;16438;39820;48031;34035 -237;'704;Viet Nam;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47395;47395;89425;146994;206815;246012;214868 -237;'704;Viet Nam;1636;Glue-laminated timber (glulam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;5000 -237;'704;Viet Nam;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;946;946 -237;'704;Viet Nam;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;806;806 -237;'704;Viet Nam;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3451;3451 -237;'704;Viet Nam;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3178;3178 -237;'704;Viet Nam;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;190;190 -237;'704;Viet Nam;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;255;255 -237;'704;Viet Nam;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22 -237;'704;Viet Nam;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;31 -237;'704;Viet Nam;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54530;60622;82817;65446;53899;66878;50253 -237;'704;Viet Nam;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4904504;5349063;6576878;8038513;9103612;9464707;8409551 -237;'704;Viet Nam;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;262;1456;213;237;803;536 -237;'704;Viet Nam;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7325;11486;18831;22295;28607;14164 -237;'704;Viet Nam;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5723;14786;19756;38196;45905;39495;21813 -237;'704;Viet Nam;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32826;132781;151172;168286;172078;179005;144672 -237;'704;Viet Nam;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;972792;1048207;1083010;1030718;1219041;1153023;1299423 -237;'704;Viet Nam;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;412771;496213;630815;772906;945392;1216452;1278851 -237;'704;Viet Nam;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15401;14477;15345;10455;10778;8180;2694 -237;'704;Viet Nam;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;194;1249;1491;1543;2050;2053;110 -237;'704;Viet Nam;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;337873;382451;346152;264119;292670;275432;217378 -237;'704;Viet Nam;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11655;13256;14442;32692;44404;73937;61046 -237;'704;Viet Nam;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13994;16575;17517;16419;29976;25828;51274 -237;'704;Viet Nam;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22078;23763;39571;66590;60212;69424;110797 -237;'704;Viet Nam;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;208069;215891;241261;286440;333240;324120;499087 -237;'704;Viet Nam;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;176645;217213;298894;320109;413725;434035;423117 -237;'704;Viet Nam;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;397455;418813;462735;453285;552377;519463;528990 -237;'704;Viet Nam;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;202199;240732;276417;351972;425001;637003;683781 -243;'876;Wallis and Futuna Islands;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1029;1564;1175;1351;2051;1834;1739 -243;'876;Wallis and Futuna Islands;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;160;171;120;113;147;155;149 -243;'876;Wallis and Futuna Islands;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;249;231;226;222;222;222;222;222;222;222;222;222;222;222;222;222;222;222;222;222;222;222;222;237;249;337;384;479;530;908;594;580 -243;'876;Wallis and Futuna Islands;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;1 -243;'876;Wallis and Futuna Islands;1861;Roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400 -243;'876;Wallis and Futuna Islands;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106;106;106;106;106;106;106;106;106;106;106;106;106;106;106;106;106;106;106;106;106;106;0;0;76;132;135;169;86;85;26 -243;'876;Wallis and Futuna Islands;1861;Roundwood;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;28;0;0;31;21;83;74;32;84;34 -243;'876;Wallis and Futuna Islands;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -243;'876;Wallis and Futuna Islands;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -243;'876;Wallis and Futuna Islands;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;132;135;169;86;85;26 -243;'876;Wallis and Futuna Islands;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;21;83;74;32;84;34 -243;'876;Wallis and Futuna Islands;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -243;'876;Wallis and Futuna Islands;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -243;'876;Wallis and Futuna Islands;1863;Roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400 -243;'876;Wallis and Futuna Islands;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -243;'876;Wallis and Futuna Islands;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -243;'876;Wallis and Futuna Islands;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -243;'876;Wallis and Futuna Islands;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -243;'876;Wallis and Futuna Islands;1865;Industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400 -243;'876;Wallis and Futuna Islands;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106;106;106;106;106;106;106;106;106;106;106;106;106;106;106;106;106;106;106;106;106;106;0;0;76;132;135;169;86;85;26 -243;'876;Wallis and Futuna Islands;1865;Industrial roundwood;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;28;0;0;31;21;83;74;32;84;34 -243;'876;Wallis and Futuna Islands;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -243;'876;Wallis and Futuna Islands;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -243;'876;Wallis and Futuna Islands;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;76;132;135;169;86;85;26 -243;'876;Wallis and Futuna Islands;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;31;21;83;74;32;84;34 -243;'876;Wallis and Futuna Islands;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -243;'876;Wallis and Futuna Islands;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -243;'876;Wallis and Futuna Islands;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;76;132;135;169;86;85;26 -243;'876;Wallis and Futuna Islands;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;31;21;83;74;32;84;34 -243;'876;Wallis and Futuna Islands;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -243;'876;Wallis and Futuna Islands;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -243;'876;Wallis and Futuna Islands;1867;Industrial roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400 -243;'876;Wallis and Futuna Islands;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106;106;106;106;106;106;106;106;106;106;106;106;106;106;106;106;106;106;106;106;106;106;0;0;0;0;0;0;0;0;0 -243;'876;Wallis and Futuna Islands;1867;Industrial roundwood, non-coniferous;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;28;0;0;0;0;0;0;0;0;0 -243;'876;Wallis and Futuna Islands;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -243;'876;Wallis and Futuna Islands;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -243;'876;Wallis and Futuna Islands;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -243;'876;Wallis and Futuna Islands;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -243;'876;Wallis and Futuna Islands;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -243;'876;Wallis and Futuna Islands;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -243;'876;Wallis and Futuna Islands;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106;106;106;106;106;106;106;106;106;106;106;106;106;106;106;106;106;106;106;106;106;106;0;0;0;0;0;0;0;0;0 -243;'876;Wallis and Futuna Islands;1670;Industrial roundwood, non-coniferous non-tropical (export/import);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;28;0;0;0;0;0;0;0;0;0 -243;'876;Wallis and Futuna Islands;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -243;'876;Wallis and Futuna Islands;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -243;'876;Wallis and Futuna Islands;1868;Sawlogs and veneer logs;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400 -243;'876;Wallis and Futuna Islands;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400;400 -243;'876;Wallis and Futuna Islands;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;2;0;5 -243;'876;Wallis and Futuna Islands;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;3;0;11 -243;'876;Wallis and Futuna Islands;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;170;170;170;170;170;170;170;170;170;170;170;170;170;170;170;170;170;170;170 -243;'876;Wallis and Futuna Islands;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1319;984;984;984;984;984;984;984;984;984;984;984;984;984;984;984;984;984;984;984;984;984;984;973;556;659;875;746;967;1658;1050;753 -243;'876;Wallis and Futuna Islands;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;230;179;179;179;179;179;179;179;179;179;179;179;179;179;179;179;179;179;179;179;179;179;179;185;193;243;325;269;346;752;421;376 -243;'876;Wallis and Futuna Islands;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -243;'876;Wallis and Futuna Islands;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -243;'876;Wallis and Futuna Islands;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -243;'876;Wallis and Futuna Islands;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1289;970;970;970;970;970;970;970;970;970;970;970;970;970;970;970;970;970;970;970;970;970;970;907;556;634;875;743;967;1658;959;751 -243;'876;Wallis and Futuna Islands;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;220;176;176;176;176;176;176;176;176;176;176;176;176;176;176;176;176;176;176;176;176;176;176;175;193;234;325;269;346;752;381;371 -243;'876;Wallis and Futuna Islands;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -243;'876;Wallis and Futuna Islands;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -243;'876;Wallis and Futuna Islands;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;170;170;170;170;170;170;170;170;170;170;170;170;170;170;170;170;170;170;170 -243;'876;Wallis and Futuna Islands;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;66;0;25;0;3;0;0;91;2 -243;'876;Wallis and Futuna Islands;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;10;0;9;0;0;0;0;40;5 -243;'876;Wallis and Futuna Islands;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -243;'876;Wallis and Futuna Islands;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -243;'876;Wallis and Futuna Islands;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -243;'876;Wallis and Futuna Islands;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;0;0;7;0;0;0;0 -243;'876;Wallis and Futuna Islands;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;10;0;0;0 -243;'876;Wallis and Futuna Islands;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -243;'876;Wallis and Futuna Islands;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -243;'876;Wallis and Futuna Islands;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -243;'876;Wallis and Futuna Islands;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;12;6;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;39;58;60;39;383;102;343;82;261 -243;'876;Wallis and Futuna Islands;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;9;4;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;35;41;48;23;47;62;78;53;90 -243;'876;Wallis and Futuna Islands;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -243;'876;Wallis and Futuna Islands;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -243;'876;Wallis and Futuna Islands;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -243;'876;Wallis and Futuna Islands;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;39;58;60;39;35;91;125;62;100 -243;'876;Wallis and Futuna Islands;1640;Plywood and LVL;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;35;41;48;23;39;55;72;44;56 -243;'876;Wallis and Futuna Islands;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -243;'876;Wallis and Futuna Islands;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -243;'876;Wallis and Futuna Islands;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -243;'876;Wallis and Futuna Islands;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -243;'876;Wallis and Futuna Islands;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;348;11;218;11;95 -243;'876;Wallis and Futuna Islands;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;8;7;6;8;6 -243;'876;Wallis and Futuna Islands;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;6;6;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;66 -243;'876;Wallis and Futuna Islands;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;4;4;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;28 -243;'876;Wallis and Futuna Islands;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;66 -243;'876;Wallis and Futuna Islands;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;28 -243;'876;Wallis and Futuna Islands;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;6;6;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -243;'876;Wallis and Futuna Islands;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;4;4;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -243;'876;Wallis and Futuna Islands;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;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;36;19;10;9;13 -243;'876;Wallis and Futuna Islands;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;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;77;38;43;36;69 -243;'876;Wallis and Futuna Islands;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0 -243;'876;Wallis and Futuna Islands;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1 -243;'876;Wallis and Futuna Islands;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;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;4;18;7;7;12 -243;'876;Wallis and Futuna Islands;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;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;15;27;25;23;48 -243;'876;Wallis and Futuna Islands;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;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;4;18;7;7;12 -243;'876;Wallis and Futuna Islands;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;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;15;27;25;23;48 -243;'876;Wallis and Futuna Islands;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;2 -243;'876;Wallis and Futuna Islands;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;3 -243;'876;Wallis and Futuna Islands;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;4;12;5;3;10 -243;'876;Wallis and Futuna Islands;1615;Printing and writing papers, uncoated, woodfree;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;15;25;18;20;39 -243;'876;Wallis and Futuna Islands;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;2;1;0 -243;'876;Wallis and Futuna Islands;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;7;2;6 -243;'876;Wallis and Futuna Islands;1675;Other paper and paperboard;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;7;32;1;3;2;1 -243;'876;Wallis and Futuna Islands;1675;Other paper and paperboard;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;62;11;18;13;21 -243;'876;Wallis and Futuna Islands;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0 -243;'876;Wallis and Futuna Islands;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1 -243;'876;Wallis and Futuna Islands;1676;Household and sanitary papers;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;3;0;0;0;1 -243;'876;Wallis and Futuna Islands;1676;Household and sanitary papers;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;6;0;1;2;14 -243;'876;Wallis and Futuna Islands;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0 -243;'876;Wallis and Futuna Islands;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1 -243;'876;Wallis and Futuna Islands;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;1;3;2;0 -243;'876;Wallis and Futuna Islands;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;11;17;11;7 -243;'876;Wallis and Futuna Islands;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;1;1;2;0 -243;'876;Wallis and Futuna Islands;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;8;3;10;2 -243;'876;Wallis and Futuna Islands;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;2;0;0 -243;'876;Wallis and Futuna Islands;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;3;14;1;5 -243;'876;Wallis and Futuna Islands;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -243;'876;Wallis and Futuna Islands;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -243;'876;Wallis and Futuna Islands;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;303;367;228;409;524;704;643 -243;'876;Wallis and Futuna Islands;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;156;153;112;108;143;145;144 -243;'876;Wallis and Futuna Islands;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;10;11;11;84;112;46 -243;'876;Wallis and Futuna Islands;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97;97;97;97;97;97;97 -243;'876;Wallis and Futuna Islands;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;3;5;5;74;74;8 -243;'876;Wallis and Futuna Islands;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97;97;97;97;97;97;97 -243;'876;Wallis and Futuna Islands;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;7;6;6;10;38;38 -243;'876;Wallis and Futuna Islands;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;2;2;3;2;1;0 -243;'876;Wallis and Futuna Islands;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -243;'876;Wallis and Futuna Islands;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;37;9;10;28;15;13 -243;'876;Wallis and Futuna Islands;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;0;0;0;0;2;1 -243;'876;Wallis and Futuna Islands;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;81;60;145;55;37;338 -243;'876;Wallis and Futuna Islands;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;11;11;11 -243;'876;Wallis and Futuna Islands;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;131;200;130;213;332;504;238 -243;'876;Wallis and Futuna Islands;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;45;4;0;35;35;35 -243;'876;Wallis and Futuna Islands;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;37;16;27;23;35;8 -243;'876;Wallis and Futuna Islands;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -243;'876;Wallis and Futuna Islands;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;389;813;468;412;619;536;516 -243;'876;Wallis and Futuna Islands;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;18;8;5;4;10;4 -243;'876;Wallis and Futuna Islands;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;1;1;0;0;1;1 -243;'876;Wallis and Futuna Islands;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;268;7;10;22;6;7 -243;'876;Wallis and Futuna Islands;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -243;'876;Wallis and Futuna Islands;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;315;445;385;326;454;375;409 -243;'876;Wallis and Futuna Islands;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4 -243;'876;Wallis and Futuna Islands;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;43;46;49;74;59;28 -243;'876;Wallis and Futuna Islands;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;0 -243;'876;Wallis and Futuna Islands;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;56;29;27;69;95;71 -243;'876;Wallis and Futuna Islands;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;14;4;1;0;3;0 -205;'732;Western Sahara;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -205;'732;Western Sahara;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -249;'887;Yemen;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;279765;212494;192658;416101;385355;248958;288238 -249;'887;Yemen;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2106;2473;1926;461;1215;4164;439 -249;'887;Yemen;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;1870;2056;1890;2120;2120;2120;3201;1888;1659;1451;3224;1170;2117;3821;5293;5392;8132;12045;9177;20030;11656;11656;11350;11350;10555;10555;10555;10555;10555;7951;7999;61542;40663;22900;49018;46009;52794;53913;44915;43812;83595;80463;85258;145519;146264;152197;190413;161582;215088;231049;194670;261957;311955;344021;127993;189933;192875;183786;166821;285282;282206;166801;199369 -249;'887;Yemen;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;431;404;409;381;381;381;304;71;111;96;59;14;50;60;83;83;29;29;29;29;29;29;29;29;29;29;29;29;29;15;15;2221;17;11;245;245;250;165;0;0;0;0;0;752;752;752;752;752;2746;3580;2175;2197.45;1873;2363;1038;993;1957;1364;643;215;709;466;432 -249;'887;Yemen;1861;Roundwood;5516;Production;m3;98198;100458;103739;105442;106966;108513;110581;111972;113786;115423;117020;116347;118600;119048;120081;121677;122824;125749;129833;133149;137625;139842;144712;149979;153982;159340;162382;162639;166297;173220;187319;202586;216084;232822;247729;258480;268709;278488;289934;301896;313823;326262;339236;352768;366885;380530;394700;409500;424823;440785;456134;472047;488545;505651;523387;539699;559018;576554;594535;613111;632199;651914;672277 -249;'887;Yemen;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;1000;100;100;100;700;1800;2000;2000;200;200;5200;5200;5200;5200;5200;5200;5200;5200;5200;;252;81;332;82;82;82;224;285;600;600;0;0;0;10236;10236;10236;10236;11236;2373;1362;1572;75;1199;1635;1298;535;271;279;2052;1729;5009;4164;731 -249;'887;Yemen;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;66;66;66;66;43;112;143;143;71;71;2548;2548;2548;2548;2548;2548;2548;2548;2548;;48;6;32;13;13;13;96;105;329;329;0;0;0;700;700;700;700;860;1651;952;833;74;924;1365;133;39;173;87;785;652;1622;1329;253 -249;'887;Yemen;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;20;0;0;0;0;0;0;0;0;0;0;9;0;13;1;50;0;70;0;0;0;0;0;0;0;10 -249;'887;Yemen;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;0;0;0;0;0;0;0;0;0;0;22;0;2;0.45;14;0;3;0;0;0;0;0;0;0;2 -249;'887;Yemen;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 -249;'887;Yemen;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;275;2052;1729;4519;4164;529 -249;'887;Yemen;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;86;785;652;1461;1329;215 -249;'887;Yemen;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -249;'887;Yemen;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -249;'887;Yemen;1863;Roundwood, non-coniferous;5516;Production;m3;98198;100458;103739;105442;106966;108513;110581;111972;113786;115423;117020;116347;118600;119048;120081;121677;122824;125749;129833;133149;137625;139842;144712;149979;153982;159340;162382;162639;166297;173220;187319;202586;216084;232822;247729;258480;268709;278488;289934;301896;313823;326262;339236;352768;366885;380530;394700;409500;424823;440785;456134;472047;488545;505651;523387;539699;559018;576554;594535;613111;632199;651914;672277 -249;'887;Yemen;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;261;4;0;0;490;0;202 -249;'887;Yemen;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;169;1;0;0;161;0;38 -249;'887;Yemen;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;10 -249;'887;Yemen;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;2 -249;'887;Yemen;1864;Wood fuel;5516;Production;m3;98198;100458;103739;105442;106966;108513;110581;111972;113786;115423;117020;116347;118600;119048;120081;121677;122824;125749;129833;133149;137625;139842;144712;149979;153982;159340;162382;162639;166297;173220;187319;202586;216084;232822;247729;258480;268709;278488;289934;301896;313823;326262;339236;352768;366885;380530;394700;409500;424823;440785;456134;472047;488545;505651;523387;539699;556548;573954;591935;610511;629599;649314;669677 -249;'887;Yemen;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1000;2;91;1;0;0;5;0;0;;;;;;79;281 -249;'887;Yemen;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;160;1;30;1;0;0;9;0;0;;;;;;4;42 -249;'887;Yemen;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;0;13;1;50;0;0;0;;;;;;;10 -249;'887;Yemen;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;0;2;0.45;14;0;0;0;;;;;;;2 -249;'887;Yemen;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 -249;'887;Yemen;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;79 -249;'887;Yemen;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4 -249;'887;Yemen;1628;Wood fuel, non-coniferous;5516;Production;m3;98198;100458;103739;105442;106966;108513;110581;111972;113786;115423;117020;116347;118600;119048;120081;121677;122824;125749;129833;133149;137625;139842;144712;149979;153982;159340;162382;162639;166297;173220;187319;202586;216084;232822;247729;258480;268709;278488;289934;301896;313823;326262;339236;352768;366885;380530;394700;409500;424823;440785;456134;472047;488545;505651;523387;539699;556548;573954;591935;610511;629599;649314;669677 -249;'887;Yemen;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;202 -249;'887;Yemen;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38 -249;'887;Yemen;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10 -249;'887;Yemen;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2 -249;'887;Yemen;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;1000;2;91;1;0;0;5;0;0;;;;;;; -249;'887;Yemen;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;160;1;30;1;0;0;9;0;0;;;;;;; -249;'887;Yemen;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;0;13;1;50;0;0;0;;;;;;; -249;'887;Yemen;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;0;2;0.45;14;0;0;0;;;;;;; -249;'887;Yemen;1865;Industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2470;2600;2600;2600;2600;2600;2600 -249;'887;Yemen;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;1000;100;100;100;700;1800;2000;2000;200;200;5200;5200;5200;5200;5200;5200;5200;5200;5200;;252;81;332;82;82;82;224;285;600;600;0;0;0;10236;10236;10236;10236;10236;2371;1271;1571;75;1199;1630;1298;535;271;279;2052;1729;5009;4085;450 -249;'887;Yemen;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;66;66;66;66;43;112;143;143;71;71;2548;2548;2548;2548;2548;2548;2548;2548;2548;;48;6;32;13;13;13;96;105;329;329;0;0;0;700;700;700;700;700;1650;922;832;74;924;1356;133;39;173;87;785;652;1622;1325;211 -249;'887;Yemen;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;20;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;0;0;0;0;0;0;0;0 -249;'887;Yemen;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;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 -249;'887;Yemen;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;252;47;47;0;0;0;0;61;600;600;0;0;0;0;0;0;0;0;30;7;0;0;0;0;1258;535;10;275;2052;1729;4519;4085;450 -249;'887;Yemen;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;3;3;0;0;0;0;9;329;329;0;0;0;0;0;0;0;0;8;8;0;0;0;0;110;39;4;86;785;652;1461;1325;211 -249;'887;Yemen;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -249;'887;Yemen;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -249;'887;Yemen;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;252;47;47;0;0;0;0;61;600;600;0;0;0;0;0;0;0;0;30;7;0;0;0;0;1258;535;10;275;2052;1729;4519;4085;450 -249;'887;Yemen;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;3;3;0;0;0;0;9;329;329;0;0;0;0;0;0;0;0;8;8;0;0;0;0;110;39;4;86;785;652;1461;1325;211 -249;'887;Yemen;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -249;'887;Yemen;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -249;'887;Yemen;1867;Industrial roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2470;2600;2600;2600;2600;2600;2600 -249;'887;Yemen;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;285;82;82;82;224;224;0;0;0;0;0;10236;10236;10236;10236;10236;2341;1264;1571;75;1199;1630;40;0;261;4;0;0;490;0;0 -249;'887;Yemen;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;29;13;13;13;96;96;0;0;0;0;0;700;700;700;700;700;1642;914;832;74;924;1356;23;0;169;1;0;0;161;0;0 -249;'887;Yemen;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;20;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;0;0;0;0;0;0;0;0 -249;'887;Yemen;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;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 -249;'887;Yemen;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;142;142;0;0;0;0;0;243;243;243;243;243;2281;1263;1571;71;1199;1630;28;0;44;4;0;0;487;0;0 -249;'887;Yemen;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;83;83;0;0;0;0;0;40;40;40;40;40;1622;904;832;71;924;1356;23;0;69;1;0;0;160;0;0 -249;'887;Yemen;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;0;0;0;0;0;0;0;0 -249;'887;Yemen;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;0;0;0;0;0;0;0 -249;'887;Yemen;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;285;82;82;82;82;82;0;0;0;0;0;9993;9993;9993;9993;9993;60;1;0;4;0;0;12;0;217;0;0;0;3;0;0 -249;'887;Yemen;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;29;13;13;13;13;13;0;0;0;0;0;660;660;660;660;660;20;10;0;3;0;0;0;0;100;0;0;0;1;0;0 -249;'887;Yemen;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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 -249;'887;Yemen;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;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 -249;'887;Yemen;1868;Sawlogs and veneer logs;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120;100;100;100;100;100;100 -249;'887;Yemen;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120;100;100;100;100;100;100 -249;'887;Yemen;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1500;1500;1500;1500;1500;1500;1500 -249;'887;Yemen;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1500;1500;1500;1500;1500;1500;1500 -249;'887;Yemen;1871;Other industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;850;1000;1000;1000;1000;1000;1000 -249;'887;Yemen;1871;Other industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;1000;100;100;100;700;1800;2000;2000;200;200;5200;5200;5200;5200;5200;5200;5200;5200;5200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -249;'887;Yemen;1871;Other industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;66;66;66;66;43;112;143;143;71;71;2548;2548;2548;2548;2548;2548;2548;2548;2548;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -249;'887;Yemen;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;850;1000;1000;1000;1000;1000;1000 -249;'887;Yemen;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;;;;;;1000;100;100;100;700;1800;2000;2000;200;200;5200;5200;5200;5200;5200;5200;5200;5200;5200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -249;'887;Yemen;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;;66;66;66;66;43;112;143;143;71;71;2548;2548;2548;2548;2548;2548;2548;2548;2548;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -249;'887;Yemen;1630;Wood charcoal;5510;Production;t;4954;6731;8912;9296;9484;9776;9972;10171;10374;10582;10799;10756;11249;11132;11677;11880;11730;12085;12585;13000;13550;13840;14455;15129;15660;16352;16771;16846;17329;18210;19958;21734;23444;25559;27500;28906;30277;31641;33234;34888;36531;38251;40052;41938;43913;45816;44000;49900;52034;54288;56436;58670;60992;63405;65914;68244;18888;25000;25000;25000;25000;25000;25000 -249;'887;Yemen;1630;Wood charcoal;5610;Import quantity;t;3900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;17;17;0;0;0;0;0;0;0;0;0;343;0.2;2;0;0;0;18;0;0;19170;17812;115;937;1935;603;1697 -249;'887;Yemen;1630;Wood charcoal;5622;Import value;1000 USD;139;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;0;0;0;0;0;0;0;0;0;100;1;5;0;0;0;11;0;0;6518;5344;38;2331;2307;999;1730 -249;'887;Yemen;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;200;200;400;400;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5;0;0;7048;7025;17;17;17;17;15 -249;'887;Yemen;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;36;36;69;69;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0;0;823;843;12;12;12;12;11 -249;'887;Yemen;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5400;15500;15500;15500;15500;15500;15500;15500;15500;15500;15500;15500;15500;15500;15500;15500;250;350;350;350;350;350;350 -249;'887;Yemen;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5200;0;0;0;0;0;301;301;301;7294;5494;7;125;2;160;17;1670;1;1;1;1;435;37;90;36;1721 -249;'887;Yemen;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;214;0;0;0;0;0;11;11;11;3011;2499;7;69;1;100;14;561;2;2;2;2;108;6;14;33;158 -249;'887;Yemen;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;0;0;5;0;0;0;0;0;0;0;0;18 -249;'887;Yemen;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;3;0;0;0;0;0;0;0;0;1 -249;'887;Yemen;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5400;15500;15500;15500;15500;15500;15500;15500;15500;15500;15500;15500;15500;15500;15500;15500;250;350;350;350;350;350;350 -249;'887;Yemen;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7000;5200;1;98;0;0;0;1653;1;1;1;1;328;34;3;2;27 -249;'887;Yemen;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;3000;2488;1;59;0;0;0;547;2;2;2;2;92;5;8;9;9 -249;'887;Yemen;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;0;0;5;0;0;0;0;0;0;0;0;2 -249;'887;Yemen;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;3;0;0;0;0;0;0;0;0;0 -249;'887;Yemen;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;444;87;87;87;5200;5200;5200;0;0;0;0;0;294;294;294;294;294;6;27;2;160;17;17;0;0;0;0;107;3;87;34;1694 -249;'887;Yemen;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;3;3;3;214;214;214;0;0;0;0;0;11;11;11;11;11;6;10;1;100;14;14;0;0;0;0;16;1;6;24;149 -249;'887;Yemen;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16 -249;'887;Yemen;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1 -249;'887;Yemen;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;30;15;0;29 -249;'887;Yemen;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;9;2;31 -249;'887;Yemen;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;30;15;0;29 -249;'887;Yemen;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;9;2;31 -249;'887;Yemen;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -249;'887;Yemen;1872;Sawnwood;5616;Import quantity;m3;34400;34900;38800;41500;41500;41500;47000;37600;35900;28000;42300;9000;8000;18000;15500;19500;32000;35900;47300;87000;28800;28800;28800;28800;29000;29000;29000;29000;29000;29000;29000;147505;19541;8523;78042;98600;102108;122573;94600;87200;86700;110300;137300;145960;156960;173260;202860;197868;321407;292615;212995;282883;407849;419769;90642;194847;175673;173663;245740;308842;209660;102017;135070 -249;'887;Yemen;1872;Sawnwood;5622;Import value;1000 USD;1232;1273;1400;1500;1500;1500;1063;1330;1267;904;2324;542;858;2598;2496;2982;5071;5774;6794;17024;5687;5687;5687;5687;5713;5713;5713;5713;5713;5713;5713;27762;2800;1953;21378;23280;23638;18762;15186;14083;16715;20980;24799;36446;37191;43124;62604;61897;99345;96228;79161;95589;148750;159374;29305;65179;58869;79107;78179;108586;94794;39872;45605 -249;'887;Yemen;1872;Sawnwood;5916;Export quantity;m3;10200;12400;10000;15800;15800;15800;8600;2100;3100;2300;500;100;100;100;;;;;;;;;;;;;;;;;;9;9;0;674;674;674;674;0;0;0;0;0;2;2;2;2;2;168;24;35;2;0;0;0;4;0;0;0;0;681;0;0 -249;'887;Yemen;1872;Sawnwood;5922;Export value;1000 USD;431;395;396;370;370;370;293;60;98;81;48;14;14;10;;;;;;;;;;;;;;;;;;1;1;0;142;142;142;142;0;0;0;0;0;1;1;1;1;1;58;18;20;4;0;0;0;3;0;0;0;0;311;0;0 -249;'887;Yemen;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -249;'887;Yemen;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;1500;1500;7000;7800;7800;7800;7800;7800;7800;7800;8000;8000;8000;8000;8000;8000;8000;31162;19524;7180;7999;11600;15108;16737;24400;17000;37700;44200;71200;60500;71500;87800;117400;117000;196000;159000;112000;174000;223000;210152;41567;96800;48038;41780;139003;121842;64445;46738;71557 -249;'887;Yemen;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;192;192;912;884;884;884;884;884;884;884;910;910;910;910;910;910;910;5128;2789;1480;1180;2390;2748;3200;3925;2822;4940;7074;10893;10381;11126;17059;36539;36683;44219;41055;31578;44983;56597;58170;10253;22912;10579;10146;33652;25300;20965;13442;18158 -249;'887;Yemen;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;595;595;595;595;0;0;0;0;0;0;0;0;0;0;121;12;0;2;0;0;0;0;0;0;0;0;0;0;0 -249;'887;Yemen;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;127;127;127;127;0;0;0;0;0;0;0;0;0;0;45;9;0;4;0;0;0;0;0;0;0;0;0;0;0 -249;'887;Yemen;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -249;'887;Yemen;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;34400;34900;38800;41500;41500;41500;47000;37600;35900;28000;42300;9000;8000;18000;14000;18000;25000;28100;39500;79200;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;21000;116343;17;1343;70043;87000;87000;105836;70200;70200;49000;66100;66100;85460;85460;85460;85460;80868;125407;133615;100995;108883;184849;209617;49075;98047;127635;131883;106737;187000;145215;55279;63513 -249;'887;Yemen;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;1232;1273;1400;1500;1500;1500;1063;1330;1267;904;2324;542;858;2598;2304;2790;4159;4890;5910;16140;4803;4803;4803;4803;4803;4803;4803;4803;4803;4803;4803;22634;11;473;20198;20890;20890;15562;11261;11261;11775;13906;13906;26065;26065;26065;26065;25214;55126;55173;47583;50606;92153;101204;19052;42267;48290;68961;44527;83286;73829;26430;27447 -249;'887;Yemen;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;10200;12400;10000;15800;15800;15800;8600;2100;3100;2300;500;100;100;100;;;;;;;;;;;;;;;;;;9;9;0;79;79;79;79;0;0;0;0;0;2;2;2;2;2;47;12;35;0;0;0;0;4;0;0;0;0;681;0;0 -249;'887;Yemen;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;431;395;396;370;370;370;293;60;98;81;48;14;14;10;;;;;;;;;;;;;;;;;;1;1;0;15;15;15;15;0;0;0;0;0;1;1;1;1;1;13;9;20;0;0;0;0;3;0;0;0;0;311;0;0 -249;'887;Yemen;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -249;'887;Yemen;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;100;100;100;100;100;100;100;1500;2500;2500;2500;500;400;400;400;400;400;400;400;400;400;400;400;10;10;14;14;14;14;9;0;0;0;0;0;17081;17081;17081;37000;28;6;14;1001;1113;1028;1000;1000;0;1;1587;69;101;0;0;0 -249;'887;Yemen;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;10;31;43;22;69;45;38;168;234;242;242;628;1074;1074;1074;1074;1074;1074;1074;1074;1074;1074;1074;16;16;12;12;12;12;16;0;0;0;0;0;13304;13304;13304;29143;25;16;28;283;367;392;296;310;0;3;1233;106;52;0;0;0 -249;'887;Yemen;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5;5;5;5;5;0;0;0;0;0;0;0;0;0 -249;'887;Yemen;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4;4;4;4;4;0;0;0;0;0;0;0;0;0 -249;'887;Yemen;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -249;'887;Yemen;1873;Wood-based panels;5616;Import quantity;m3;1300;1300;1300;1400;1400;1442;1221;621;627;721;721;411;311;411;516;700;1600;4900;2100;2100;2100;2100;2100;2100;2100;2100;2100;2100;2100;2000;2000;54758;10112;9621;43132;22018;22604;62994;34770;34770;56100;59100;64500;116012;116012;116012;90004;108304;142877;125702;80351;138864;161845;184917;101005;157449;179718;123016;126228;235463;149695;150581;96758 -249;'887;Yemen;1873;Wood-based panels;5622;Import value;1000 USD;217;231;220;250;250;250;112;88;113;111;132;75;92;263;268;368;999;1214;527;527;527;527;527;527;527;527;527;527;527;471;471;16410;5751;4151;14625;9437;9686;12825;9298;9298;17548;19182;20158;36932;36932;36932;28078;39595;47722;44041;32471;55414;61626;79581;38131;52413;60970;47744;46465;61225;44906;49498;36945 -249;'887;Yemen;1873;Wood-based panels;5916;Export quantity;m3;;100;100;100;100;100;100;100;100;100;100;0;0;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;;;;;0;0;0;37;37;0;0;0;0;0;0;0;0;0;0;0;8;0;74;0;5;0;0;0;0;86;57;57;57;59 -249;'887;Yemen;1873;Wood-based panels;5922;Export value;1000 USD;;9;13;11;11;11;11;11;13;15;11;0;0;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;;;;;0;0;0;5;5;0;0;0;0;0;0;0;0;0;0;0;2;0;52;0;6;0;0;0;0;111;72;72;72;75 -249;'887;Yemen;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -249;'887;Yemen;1640;Plywood and LVL;5616;Import quantity;m3;500;600;500;600;600;600;800;200;100;300;300;200;100;200;200;500;1500;4800;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;54675;10075;9575;43082;21900;21768;60676;33200;33200;51400;56400;56400;91008;91008;91008;65000;83300;127447;112800;66413;117577;126759;148531;79197;134982;147506;104624;116735;101852;74494;79858;77039 -249;'887;Yemen;1640;Plywood and LVL;5622;Import value;1000 USD;107;144;110;140;140;140;54;39;16;55;66;45;50;174;109;243;943;1158;471;471;471;471;471;471;471;471;471;471;471;471;471;16364;5720;4116;14591;9391;9412;12292;8843;8843;16110;18507;18507;32308;32308;32308;23454;34971;43642;41158;29242;49024;51116;66808;32109;46170;52910;42589;44250;36256;29129;35442;31730 -249;'887;Yemen;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;8;0;74;0;5;0;0;0;0;29;0;0;0;0 -249;'887;Yemen;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;2;0;52;0;6;0;0;0;0;39;0;0;0;0 -249;'887;Yemen;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;5;14;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -249;'887;Yemen;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;1;5;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -249;'887;Yemen;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;280;40;70;70;600;400;5800;10311;10311;10311;10311;10311;6582;4613;269;2131;8336;22233;3290;3290;3290;3290;847;154;187;129;385 -249;'887;Yemen;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;80;28;20;20;294;124;1100;1690;1690;1690;1690;1690;1369;967;63;857;3306;8754;1301;1301;1301;1301;157;551;678;375;364 -249;'887;Yemen;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;37;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;11;11;11;11;11 -249;'887;Yemen;1697;Particle board;5922;Export 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;19;19;19;19;19 -249;'887;Yemen;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22;22;22;22;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -249;'887;Yemen;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -249;'887;Yemen;1874;Fibreboard;5616;Import quantity;m3;800;700;800;800;800;842;421;421;527;421;421;211;211;211;316;200;100;100;100;100;100;100;100;100;100;100;100;100;100;;;31;32;32;32;100;556;2278;1500;1500;4100;2300;2300;14671;14671;14671;14671;14671;8848;8289;13669;19156;26750;14153;18518;19177;28922;15102;8646;133457;75014;70594;19334 -249;'887;Yemen;1874;Fibreboard;5622;Import value;1000 USD;110;87;110;110;110;110;58;49;97;56;66;30;42;89;159;125;56;56;56;56;56;56;56;56;56;56;56;56;56;;;23;30;30;30;42;194;505;435;435;1144;551;551;2930;2930;2930;2930;2930;2711;1916;3166;5533;7204;4019;4721;4942;6759;3854;2058;24418;15099;13681;4851 -249;'887;Yemen;1874;Fibreboard;5916;Export quantity;m3;;100;100;100;100;100;100;100;100;100;100;0;0;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;46;46;46;48 -249;'887;Yemen;1874;Fibreboard;5922;Export value;1000 USD;;9;13;11;11;11;11;11;13;15;11;0;0;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;53;53;53;56 -249;'887;Yemen;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;430;1431;600;600;2000;200;200;1732;1732;1732;1732;1732;1423;60;469;6222;2874;2874;2874;2874;2874;2874;60;160;508;221;1173 -249;'887;Yemen;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;144;281;103;103;627;34;34;804;804;804;804;804;706;38;160;2171;1213;1213;1213;1213;1213;1213;25;92;345;167;360 -249;'887;Yemen;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;479;900;900;2100;2100;2100;10963;10963;10963;10963;10963;7105;5762;8990;8117;15348;6713;6014;6014;6014;6014;8492;92998;37016;38400;11291 -249;'887;Yemen;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;123;332;332;517;517;517;1875;1875;1875;1875;1875;1947;1409;2155;2268;4548;1907;1688;1688;1688;1688;2018;17758;9791;9197;2934 -249;'887;Yemen;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2 -249;'887;Yemen;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3 -249;'887;Yemen;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;32;32;32;100;100;368;0;0;0;0;0;1976;1976;1976;1976;1976;320;2467;4210;4817;8528;4566;9630;10289;20034;6214;94;40299;37490;31973;6870 -249;'887;Yemen;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;30;30;30;42;42;101;0;0;0;0;0;251;251;251;251;251;58;469;851;1094;1443;899;1820;2041;3858;953;15;6568;4963;4317;1557 -249;'887;Yemen;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;46;46;46;46 -249;'887;Yemen;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;53;53;53;53 -249;'887;Yemen;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;800;700;800;800;800;842;421;421;527;421;421;211;211;211;316;200;100;100;100;100;100;100;100;100;100;100;100;100;100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -249;'887;Yemen;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;110;87;110;110;110;110;58;49;97;56;66;30;42;89;159;125;56;56;56;56;56;56;56;56;56;56;56;56;56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -249;'887;Yemen;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;100;100;100;100;100;100;100;100;100;100;0;0;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -249;'887;Yemen;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;9;13;11;11;11;11;11;13;15;11;0;0;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -249;'887;Yemen;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;5000;11000;20000;16000;16000;12000;11000;3000;4000;950;1200;1200;1200;1200;1200;1200 -249;'887;Yemen;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2566;2875;6313;6170;3000;2635;3530;2900;2900;400;200;200;5238;5238;5238;5238;2068;1510;1535;1577;2129;2154;1591;1664;1159;3413;8117;2077;7770;7188;2567;2496 -249;'887;Yemen;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;629;743;1645;3515;991;758;673;524;524;219;124;124;628;628;628;628;464;1196;650;778;1091;1044;631;795;594;3748;5050;981;4243;6785;2395;1074 -249;'887;Yemen;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6437;6437;6437;6437;6437;13102;22045;17718;17627;14322;12292;4200;5400;5183;2237;2237;339;24;232;258 -249;'887;Yemen;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;637;637;637;637;637;2097;2173;1872;1850;1682;2155;942;897;1041;437;437;48;2;70;41 -249;'887;Yemen;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;697;1006;4801;3843;1100;969;724;400;400;400;200;200;176;176;176;176;176;47;38;20;44;66;74;48;48;48;48;1275;4123;6486;1179;1301 -249;'887;Yemen;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;387;501;1468;2968;643;549;430;224;224;219;124;124;66;66;66;66;66;152;63;18;35;57;48;36;36;36;36;793;2200;6424;1353;852 -249;'887;Yemen;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;697;1047;4842;3450;1041;1268;1023;400;400;400;200;200;176;176;176;176;176;0;21;0;0;0;49;24;24;24;24;1267;4063;6446;1178;1300 -249;'887;Yemen;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;387;528;1495;2734;575;721;602;224;224;219;124;124;66;66;66;66;66;0;19;0;0;0;25;22;22;22;22;791;2094;6353;1353;852 -249;'887;Yemen;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30;30;30;30;0;0;0;0;0;0;0;0;;;;;;; -249;'887;Yemen;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;0;0;0;0;0;0;0;0;;;;;;; -249;'887;Yemen;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;42;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -249;'887;Yemen;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;19;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -249;'887;Yemen;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;697;1006;4801;3409;1000;824;582;400;400;400;200;200;146;146;146;146;146;0;21;0;0;0;49;24;24;24;24;1267;4063;6446;1178;1300 -249;'887;Yemen;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;387;501;1468;2707;548;434;316;224;224;219;124;124;56;56;56;56;56;0;19;0;0;0;25;22;22;22;22;791;2094;6353;1353;852 -249;'887;Yemen;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;438;869;4554;3163;800;624;382;400;400;300;200;200;29;29;29;29;29;0;0;0;0;0;49;24;24;24;24;1267;4063;6446;1178;1300 -249;'887;Yemen;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;208;418;1363;2592;433;319;201;224;224;174;124;124;12;12;12;12;12;0;0;0;0;0;25;22;22;22;22;791;2094;6353;1353;852 -249;'887;Yemen;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111;111;111;111;111;0;21;0;0;0;0;0;0;;;;;;; -249;'887;Yemen;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;41;41;41;41;0;19;0;0;0;0;0;0;;;;;;; -249;'887;Yemen;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;259;137;247;246;200;200;200;0;0;100;0;0;6;6;6;6;6;0;0;0;0;0;0;0;0;;;;;;; -249;'887;Yemen;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;179;83;105;115;115;115;115;0;0;45;0;0;3;3;3;3;3;0;0;0;0;0;0;0;0;;;;;;; -249;'887;Yemen;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;41;41;41;399;399;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -249;'887;Yemen;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;27;27;27;267;267;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -249;'887;Yemen;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;434;100;100;100;0;0;0;0;0;0;0;0;0;0;47;17;20;44;66;25;24;24;24;24;8;60;40;1;1 -249;'887;Yemen;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;261;95;95;95;0;0;0;0;0;0;0;0;0;0;152;44;18;35;57;23;14;14;14;14;2;106;71;0;0 -249;'887;Yemen;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;20;2;2;2 -249;'887;Yemen;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;3;2;2;2 -249;'887;Yemen;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;5000;11000;20000;16000;16000;12000;11000;3000;4000;950;1200;1200;1200;1200;1200;1200 -249;'887;Yemen;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1869;1869;1512;2327;1900;1666;2806;2500;2500;0;0;0;5062;5062;5062;5062;1892;1463;1497;1557;2085;2088;1517;1616;1111;3365;8069;802;3647;702;1388;1195 -249;'887;Yemen;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;242;242;177;547;348;209;243;300;300;0;0;0;562;562;562;562;398;1044;587;760;1056;987;583;759;558;3712;5014;188;2043;361;1042;222 -249;'887;Yemen;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6437;6437;6437;6437;6437;13102;22045;17718;17627;14322;12292;4200;5400;5183;2237;2237;339;24;232;258 -249;'887;Yemen;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;637;637;637;637;637;2097;2173;1872;1850;1682;2155;942;897;1041;437;437;48;2;70;41 -249;'887;Yemen;1876;Paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1200;1200;1200;1200;1200;1200;1200;1200;1200;1200;0;0;0;0;0;0;0 -249;'887;Yemen;1876;Paper and paperboard;5610;Import quantity;t;700;1200;700;900;900;900;4300;3100;1500;1900;3700;1100;2400;1600;2900;2100;1900;6500;1600;1600;1900;1900;1500;1500;700;700;700;700;700;700;700;28038;48060;21165;9721;18700;27465;39699;38100;38100;64900;54500;54500;82056;82056;82056;91749;78297;92572;122805;98266;129304;115039;125830;72151;93205;87943;46212;58395;119010;126511;56377;100017 -249;'887;Yemen;1876;Paper and paperboard;5622;Import value;1000 USD;282;552;270;370;370;370;2026;470;269;405;659;465;1032;849;2448;1762;1685;4672;1543;1780;1820;1820;1514;1514;693;693;693;693;693;693;693;16699;31291;15092;9441;12031;18119;21047;19578;19578;49113;40177;40177;57498;57498;57498;66249;56142;65150;89076;81143;109322;99205;102202;59317;71706;62592;45219;40133;108179;131767;72671;113571 -249;'887;Yemen;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2495;1;14;104;104;104;22;0;0;0;0;0;176;176;176;176;176;2008;2181;962;178.48;107;191;93;93;93;78;77;77;204;204;172 -249;'887;Yemen;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2205;1;11;93;93;93;8;0;0;0;0;0;110;110;110;110;110;565;1382;277;287;173;193;93;93;93;84;83;83;312;312;302 -249;'887;Yemen;2042;Graphic papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1200;1200;1200;1200;1200;1200;1200;1200;1200;1200;0;0;0;0;0;0;0 -249;'887;Yemen;2042;Graphic papers;5610;Import quantity;t;500;400;500;500;500;500;500;600;200;400;600;200;600;500;1900;900;900;1600;1000;1500;1800;1800;1400;1400;600;600;600;600;600;600;600;10654;14316;7051;1700;1800;10565;23514;21700;21700;39400;26900;26900;29962;29962;29962;40529;31329;39273;40073;30821;49564;44022;36640;24213;38322;24121;21394;30028;28983;30095;16318;37171 -249;'887;Yemen;2042;Graphic papers;5622;Import value;1000 USD;182;188;170;170;170;170;126;180;113;156;155;87;287;331;1624;650;703;1404;1155;1653;1693;1693;1387;1387;566;566;566;566;566;566;566;6859;9642;4545;991;952;7040;12868;10562;10562;26872;15986;15986;22777;22777;22777;31403;25967;29319;29027;23621;38303;35891;30044;20592;33166;18432;19617;19125;27045;25932;17709;40414 -249;'887;Yemen;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;;;;;;;8;8;8;8;8;59;611;31;0.48;25;24;15;15;15;0;0;0;65;65;66 -249;'887;Yemen;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;;;;;;;5;5;5;5;5;68;512;34;1;20;21;9;9;9;0;0;0;23;23;23 -249;'887;Yemen;1671;Newsprint;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;200;200;200;200;200;200;200;200;200;0;0;0;0;0;0;0 -249;'887;Yemen;1671;Newsprint;5610;Import quantity;t;100;;;;;;100;100;;;100;;100;100;100;200;200;200;800;500;900;900;500;500;300;300;300;300;300;300;300;226;900;900;700;400;1021;1496;1900;1900;19700;7200;7200;3096;3096;3096;11300;6400;3929;4697;1426;4945;3157;3771;483;483;483;483;1684;356;865;821;259 -249;'887;Yemen;1671;Newsprint;5622;Import value;1000 USD;16;;;;;;19;10;;;18;;20;32;44;50;138;112;639;498;686;686;380;380;230;230;230;230;230;230;230;92;423;423;350;214;362;579;541;541;14670;3784;3784;1580;1580;1580;8314;5279;2709;3193;950;3231;2156;2533;422;422;422;422;470;149;499;987;213 -249;'887;Yemen;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;3;5;0;0.48;0;0;0;0;0;0;0;0;0;0;0 -249;'887;Yemen;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;3;0;1;0;0;0;0;0;0;0;0;0;0;0 -249;'887;Yemen;1674;Printing and writing papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;0;0;0;0;0;0;0 -249;'887;Yemen;1674;Printing and writing papers;5610;Import quantity;t;400;400;500;500;500;500;400;500;200;400;500;200;500;400;1800;700;700;1400;200;1000;900;900;900;900;300;300;300;300;300;300;300;10428;13416;6151;1000;1400;9544;22018;19800;19800;19700;19700;19700;26866;26866;26866;29229;24929;35344;35376;29395;44619;40865;32869;23730;37839;23638;20911;28344;28627;29230;15497;36912 -249;'887;Yemen;1674;Printing and writing papers;5622;Import value;1000 USD;166;188;170;170;170;170;107;170;113;156;137;87;267;299;1580;600;565;1292;516;1155;1007;1007;1007;1007;336;336;336;336;336;336;336;6767;9219;4122;641;738;6678;12289;10021;10021;12202;12202;12202;21197;21197;21197;23089;20688;26610;25834;22671;35072;33735;27511;20170;32744;18010;19195;18655;26896;25433;16722;40201 -249;'887;Yemen;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;;;;;;;5;5;5;5;5;56;606;31;0;25;24;15;15;15;0;0;0;65;65;66 -249;'887;Yemen;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;;;;;;;4;4;4;4;4;67;509;34;0;20;21;9;9;9;0;0;0;23;23;23 -249;'887;Yemen;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5896;5896;5896;5896;5896;1702;1226;212;681;935;723;567;567;567;567;187;1481;910;889;8513 -249;'887;Yemen;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4652;4652;4652;4652;4652;1429;834;131;580;844;658;539;539;539;539;100;1457;1348;1432;8979 -249;'887;Yemen;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;0;0;0;0;0;0;0 -249;'887;Yemen;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22018;19800;19800;19700;19700;19700;16437;16437;16437;18800;14500;18608;21408;10896;25618;21937;11568;11887;25996;11795;14683;20131;20031;24433;9400;24894 -249;'887;Yemen;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12289;10021;10021;12202;12202;12202;12969;12969;12969;14861;12460;12625;14253;6918;18818;16982;9425;10469;23043;8309;12516;16221;17360;19941;9862;26748 -249;'887;Yemen;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;45;569;19;0;25;0;0;0;0;0;0;0;0;0;1 -249;'887;Yemen;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;59;502;20;0;20;0;0;0;0;0;0;0;0;0;0 -249;'887;Yemen;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4533;4533;4533;4533;4533;15034;12742;18287;18320;17993;20578;11276;11276;11276;5661;8026;7115;3887;5208;3505 -249;'887;Yemen;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3576;3576;3576;3576;3576;12556;10747;15622;15674;15909;17428;9162;9162;9162;6140;2334;8079;4144;5428;4474 -249;'887;Yemen;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;37;12;0;0;24;15;15;15;0;0;0;65;65;65 -249;'887;Yemen;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;7;14;0;0;21;9;9;9;0;0;0;23;23;23 -249;'887;Yemen;1675;Other paper and paperboard;5610;Import quantity;t;200;800;200;400;400;400;3800;2500;1300;1500;3100;900;1800;1100;1000;1200;1000;4900;600;100;100;100;100;100;100;100;100;100;100;100;100;17384;33744;14114;8021;16900;16900;16185;16400;16400;25500;27600;27600;52094;52094;52094;51220;46968;53299;82732;67445;79740;71017;89190;47938;54883;63822;24818;28367;90027;96416;40059;62846 -249;'887;Yemen;1675;Other paper and paperboard;5622;Import value;1000 USD;100;364;100;200;200;200;1900;290;156;249;504;378;745;518;824;1112;982;3268;388;127;127;127;127;127;127;127;127;127;127;127;127;9840;21649;10547;8450;11079;11079;8179;9016;9016;22241;24191;24191;34721;34721;34721;34846;30175;35831;60049;57522;71019;63314;72158;38725;38540;44160;25602;21008;81134;105835;54962;73157 -249;'887;Yemen;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2495;1;1;91;91;91;22;0;0;0;0;0;168;168;168;168;168;1949;1570;931;178;82;167;78;78;78;78;77;77;139;139;106 -249;'887;Yemen;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2205;1;1;83;83;83;8;0;0;0;0;0;105;105;105;105;105;497;870;243;286;153;172;84;84;84;84;83;83;289;289;279 -249;'887;Yemen;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2500;4000;4000;1942;1942;1942;1942;1942;2915;7448;8668;8855;10942;8988;5031;6294;6592;6180;8420;15475;12185;6337;11643 -249;'887;Yemen;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5121;6328;6328;2135;2135;2135;2135;2135;3567;9587;11986;12009;15277;12874;7088;6536;6534;7372;8844;13708;14087;11881;19844 -249;'887;Yemen;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;97;23;0;0;0;0;0;0;0;0;0;0;0;0 -249;'887;Yemen;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;111;33;0;0;0;0;0;0;0;0;0;0;0;0 -249;'887;Yemen;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20300;17300;17300;45633;45633;45633;44378;40726;48780;73961;57621;68517;59008;78487;42221;47903;56544;17952;18097;72524;82272;33464;50383 -249;'887;Yemen;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15303;14782;14782;28292;28292;28292;28011;24040;26313;45048;41377;49426;43723;52987;28962;29329;34951;15555;11432;61701;84517;41430;50955 -249;'887;Yemen;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;161;161;161;161;161;1911;1463;907;178;82;166;77;77;77;77;77;77;88;88;55 -249;'887;Yemen;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98;98;98;98;98;180;263;208;286;153;164;83;83;83;83;83;83;80;80;70 -249;'887;Yemen;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13800;10500;10500;25457;25457;25457;25457;19805;27201;40635;27286;43092;37145;42448;32671;38353;46994;8402;10903;51247;48740;20409;38188 -249;'887;Yemen;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10690;10004;10004;15783;15783;15783;15783;10308;12433;22725;18444;23920;25355;24978;18488;18855;24477;5081;4550;25503;34381;16815;21977 -249;'887;Yemen;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;0;0;51;0;6;0;0;0;0;0;0;0;0;0 -249;'887;Yemen;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;28;0;5;0;0;0;0;0;0;0;0;0 -249;'887;Yemen;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3500;3900;3900;16481;16481;16481;16481;16481;15403;13230;24196;22853;14616;9795;4166;4166;4166;4166;2557;12543;11402;12361;8424 -249;'887;Yemen;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3613;3881;3881;10218;10218;10218;10218;10218;10691;11563;19425;23738;12617;10833;4822;4822;4822;4822;1421;20974;20432;22889;16295 -249;'887;Yemen;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;153;153;153;153;153;1625;1463;906;127;57;149;77;77;77;77;77;77;54;54;54 -249;'887;Yemen;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;93;93;93;93;147;263;204;258;134;148;83;83;83;83;83;83;69;69;69 -249;'887;Yemen;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;900;800;800;3255;3255;3255;2000;4000;6176;20096;6126;2520;7208;26118;5348;5348;5348;5348;4327;8624;18656;518;3638 -249;'887;Yemen;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;566;463;463;2018;2018;2018;1737;3241;3189;10760;3495;1721;5715;17084;5618;5618;5618;5618;5379;14389;26685;784;12534 -249;'887;Yemen;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;280;0;1;0;25;11;0;0;0;0;0;0;34;34;1 -249;'887;Yemen;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;0;4;0;19;11;0;0;0;0;0;0;11;11;1 -249;'887;Yemen;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2100;2100;2100;440;440;440;440;440;0;0;13;52;39;126;36;36;36;36;310;110;3474;176;133 -249;'887;Yemen;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;434;434;434;273;273;273;273;273;0;0;13;47;36;92;34;34;34;34;82;835;3019;942;149 -249;'887;Yemen;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;8;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -249;'887;Yemen;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -249;'887;Yemen;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;200;800;200;400;400;400;3800;2500;1300;1500;3100;900;1800;1100;1000;1200;1000;4900;600;100;100;100;100;100;100;100;100;100;100;100;100;17384;33744;14114;8021;16900;16900;16185;16400;16400;2700;6300;6300;4519;4519;4519;4900;4300;1604;1323;1156;2368;1067;1715;686;686;686;686;1850;2028;1959;258;820 -249;'887;Yemen;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;100;364;100;200;200;200;1900;290;156;249;504;378;745;518;824;1112;982;3268;388;127;127;127;127;127;127;127;127;127;127;127;127;9840;21649;10547;8450;11079;11079;8179;9016;9016;1817;3081;3081;4294;4294;4294;4700;4000;5951;5414;4159;9584;4314;6297;2675;2675;2675;2675;732;5725;7231;1651;2358 -249;'887;Yemen;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2495;1;1;91;91;91;22;0;0;0;0;0;7;7;7;7;7;36;10;1;0;0;1;1;1;1;1;0;0;51;51;51 -249;'887;Yemen;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2205;1;1;83;83;83;8;0;0;0;0;0;7;7;7;7;7;314;496;2;0;0;8;1;1;1;1;0;0;209;209;209 -249;'887;Yemen;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7265;5729;9850;29408;35521;2344;1431 -249;'887;Yemen;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;69;243;162;264;1029;7 -249;'887;Yemen;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;647;2809;632;281;2167;0;0 -249;'887;Yemen;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;4;4;3;3;0;0 -249;'887;Yemen;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;646;2591;99;263;1579;0;0 -249;'887;Yemen;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;4;4;3;3;0;0 -249;'887;Yemen;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;218;533;18;588;0;0 -249;'887;Yemen;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -249;'887;Yemen;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;142;1;12;99;251;0;77 -249;'887;Yemen;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;0;0 -249;'887;Yemen;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;9;158;147;509;307;1072 -249;'887;Yemen;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;1;1;11;40;3;7 -249;'887;Yemen;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;211;154;4631;159;822;1314;106 -249;'887;Yemen;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;8;4;0;0 -249;'887;Yemen;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5454;2558;3769;23532;24176;78;0 -249;'887;Yemen;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;5;152;80;159;1019;0 -249;'887;Yemen;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;6;6;3079;3726;0;0 -249;'887;Yemen;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;54;54;54;54;0;0 -249;'887;Yemen;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;767;192;642;2111;3870;645;176 -249;'887;Yemen;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;28;6;4;7;0 -249;'887;Yemen;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79625;22979;15987;101411;67628;79813;87438 -249;'887;Yemen;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;1040;1040;84;242;2669;0 -249;'887;Yemen;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;7;9;29;45;62;0 -249;'887;Yemen;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;16;16;0;0 -249;'887;Yemen;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6194;145;301;5456;5716;2686;0 -249;'887;Yemen;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;57;57;57;11;1;0 -249;'887;Yemen;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6691;657;1205;12984;8787;3771;12919 -249;'887;Yemen;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;7;7;0;49;0;0 -249;'887;Yemen;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36925;5146;5641;48337;18979;33898;25505 -249;'887;Yemen;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;3;163;2665;0 -249;'887;Yemen;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29806;17024;8831;34605;34101;39396;49014 -249;'887;Yemen;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;960;960;8;3;3;0 -248;'890;Yugoslav SFR;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;8818;4731;8193;11238;13214;16491;24310;36075;52127;119916;109167;90471;146748;288438;215491;168984;246963;259810;297334;449804;468881;402390;309441;243015;297979;287427;363898;335533;602356;592756;365552;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;52391;62549;72753;79147;78895;85055;81526;95021;106637;106095;104742;139567;246720;298814;197667;316863;338921;342891;449646;651455;527677;480881;478858;408071;402241;388247;636756;598776;784806;769420;632829;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1861;Roundwood;5516;Production;m3;16725000;17034000;17689000;17941000;18510000;18106000;17428000;16952000;16962000;16957000;16970000;13667000;13630000;13871000;14027000;14036000;15025000;13408000;13639000;13134000;14094000;15276000;15329000;15803000;15863000;16006000;15075000;15108000;15541000;12686000;11413000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1861;Roundwood;5616;Import quantity;m3;900;1400;4100;14800;35950;240500;328000;331600;308600;726700;826800;843400;1147700;1692000;1427500;746810;1153899;1534400;1422900;1758700;1702000;1543300;1163100;885700;1297300;831900;885800;868900;1067400;1059746;16400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1861;Roundwood;5622;Import value;1000 USD;142;182;488;1284;1100;4178;4600;5276;5960;20331;20629;20335;32218;54440;52436;31771;50080;67774;67922;126730;125989;112541;83980;45020;79026;53486;54742;47677;130049;79740;1107;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1861;Roundwood;5916;Export quantity;m3;869050;826000;1110000;1055200;831800;581300;493100;569200;707300;759300;743300;817900;935900;954000;775100;880670;1190770;793000;925100;945700;547000;421400;535700;663900;339300;425500;592000;710300;1157200;924935;224000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1861;Roundwood;5922;Export value;1000 USD;8950;8390;11170;11365;9812;6769;5993;7346;10281;12023;14059;15532;25450;36463;32171;45243;60374;35669;48109;70994;47064;39416;46659;26791;17953;21070;48595;49151;103439;67238;10118;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1862;Roundwood, coniferous;5516;Production;m3;3856000;4267000;4380000;4357000;4440000;4342000;4183000;4393000;4525000;4459000;4530000;4493000;4556000;4590000;4815000;4796000;5476000;4526000;4556000;4329000;4592000;4945000;5625000;5204000;5052000;5225000;4722000;4332000;4450000;3715000;3168000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1863;Roundwood, non-coniferous;5516;Production;m3;12869000;12767000;13309000;13584000;14070000;13764000;13245000;12559000;12437000;12498000;12440000;9174000;9074000;9281000;9212000;9240000;9549000;8882000;9083000;8805000;9502000;10331000;9704000;10599000;10811000;10781000;10353000;10776000;11091000;8971000;8245000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1864;Wood fuel;5516;Production;m3;8600000;8470000;8670000;8135000;8110000;7930000;7490000;7213000;7165000;7189000;7161000;3847000;3826000;3765000;3860000;4016000;4129000;3287000;3240000;3020000;3483000;4069000;3968000;4104000;4103000;4254000;3712000;3783000;3967000;3231000;3200000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1864;Wood fuel;5616;Import quantity;m3;;;;;;400;400;300;6800;2400;18600;38600;31100;91000;18300;7800;16400;116500;108000;32900;21100;3200;59000;49000;45500;4000;19200;16800;16400;16400;16400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1864;Wood fuel;5622;Import value;1000 USD;;;;;;5;5;3;32;22;231;503;437;1036;280;100;216;1488;1772;656;422;59;2214;680;742;79;650;523;1107;1107;1107;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1864;Wood fuel;5916;Export quantity;m3;369300;391000;686300;672000;469100;342400;223300;188400;257000;294100;203100;223900;342600;442700;256200;202500;386700;81600;222800;289200;93300;115600;157800;174000;58000;78800;100500;74500;113200;224000;224000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1864;Wood fuel;5922;Export value;1000 USD;3329;3511;6528;6868;4720;3483;2254;1922;2777;3928;2665;2959;5975;13904;7314;10094;10164;1628;7138;14992;4729;7167;4181;3483;888;963;2570;2951;4000;10118;10118;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1627;Wood fuel, coniferous;5516;Production;m3;200000;170000;150000;120000;110000;108000;105000;101000;48000;74000;47000;7000;10000;8000;8000;42000;15000;4000;13000;5000;22000;24000;18000;29000;22000;28000;8000;10000;10000;18000;10000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1628;Wood fuel, non-coniferous;5516;Production;m3;8400000;8300000;8520000;8015000;8000000;7822000;7385000;7112000;7117000;7115000;7114000;3840000;3816000;3757000;3852000;3974000;4114000;3283000;3227000;3015000;3461000;4045000;3950000;4075000;4081000;4226000;3704000;3773000;3957000;3213000;3190000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;400;400;300;6800;2400;18600;38600;31100;91000;18300;7800;16400;116500;108000;32900;21100;3200;59000;49000;45500;4000;19200;16800;16400;16400;16400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;5;5;3;32;22;231;503;437;1036;280;100;216;1488;1772;656;422;59;2214;680;742;79;650;523;1107;1107;1107;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;369300;391000;686300;672000;469100;342400;223300;188400;257000;294100;203100;223900;342600;442700;256200;202500;386700;81600;222800;289200;93300;115600;157800;174000;58000;78800;100500;74500;113200;224000;224000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;3329;3511;6528;6868;4720;3483;2254;1922;2777;3928;2665;2959;5975;13904;7314;10094;10164;1628;7138;14992;4729;7167;4181;3483;888;963;2570;2951;4000;10118;10118;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1865;Industrial roundwood;5516;Production;m3;8125000;8564000;9019000;9806000;10400000;10176000;9938000;9739000;9797000;9768000;9809000;9820000;9804000;10106000;10167000;10020000;10896000;10121000;10399000;10114000;10611000;11207000;11361000;11699000;11760000;11752000;11363000;11325000;11574000;9455000;8213000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1865;Industrial roundwood;5616;Import quantity;m3;900;1400;4100;14800;35950;240100;327600;331300;301800;724300;808200;804800;1116600;1601000;1409200;739010;1137499;1417900;1314900;1725800;1680900;1540100;1104100;836700;1251800;827900;866600;852100;1051000;1043346;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1865;Industrial roundwood;5622;Import value;1000 USD;142;182;488;1284;1100;4173;4595;5273;5928;20309;20398;19832;31781;53404;52156;31671;49864;66286;66150;126074;125567;112482;81766;44340;78284;53407;54092;47154;128942;78633;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1865;Industrial roundwood;5916;Export quantity;m3;499750;435000;423700;383200;362700;238900;269800;380800;450300;465200;540200;594000;593300;511300;518900;678170;804070;711400;702300;656500;453700;305800;377900;489900;281300;346700;491500;635800;1044000;700935;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1865;Industrial roundwood;5922;Export value;1000 USD;5621;4879;4642;4497;5092;3286;3739;5424;7504;8095;11394;12573;19475;22559;24857;35149;50210;34041;40971;56002;42335;32249;42478;23308;17065;20107;46025;46200;99439;57120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1866;Industrial roundwood, coniferous;5516;Production;m3;3656000;4097000;4230000;4237000;4330000;4234000;4078000;4292000;4477000;4385000;4483000;4486000;4546000;4582000;4807000;4754000;5461000;4522000;4543000;4324000;4570000;4921000;5607000;5175000;5030000;5197000;4714000;4322000;4440000;3697000;3158000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;749384;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63732;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21880;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2210;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;749384;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63732;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21880;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2210;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1867;Industrial roundwood, non-coniferous;5516;Production;m3;4469000;4467000;4789000;5569000;6070000;5942000;5860000;5447000;5320000;5383000;5326000;5334000;5258000;5524000;5360000;5266000;5435000;5599000;5856000;5790000;6041000;6286000;5754000;6524000;6730000;6555000;6649000;7003000;7134000;5758000;5055000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;293962;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14901;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;679055;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54910;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5580;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1628;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;288382;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13273;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;679055;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54910;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1868;Sawlogs and veneer logs;5516;Production;m3;3873000;4449000;4808000;4898000;5050000;4943000;4996000;4905000;5106000;5005000;5057000;5171000;5475000;5879000;5859000;5755000;6259000;7516000;7747000;7435000;7698000;8188000;8292000;8593000;8510000;8500000;8249000;7994000;8136000;7142000;5900000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1868;Sawlogs and veneer logs;5616;Import quantity;m3;900;1400;4100;14800;6350;5400;9100;15400;17900;42100;61300;53400;85300;130300;90800;69700;127069;184600;149400;160500;151100;140100;92000;57300;45600;39800;23300;23300;28200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;142;182;488;1284;625;440;590;1216;2235;4334;4942;4941;11106;17363;11586;10170;18815;24290;24306;39753;36256;23897;18300;11105;11879;11406;7596;7596;20745;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1868;Sawlogs and veneer logs;5916;Export quantity;m3;50;1300;1300;2000;700;1300;19800;55700;59500;60600;83200;134100;164900;174700;258200;346970;420070;336600;361800;307500;206600;217900;316000;360800;253400;343100;449800;584900;924000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;1;16;16;43;14;29;416;1253;1505;1775;2812;4260;8012;10755;15947;23681;34990;23636;30163;38146;29255;26924;38850;20257;16205;19956;44056;44900;96500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;2058000;2675000;2628000;2315000;2270000;2219000;2243000;2506000;2676000;2591000;2650000;2549000;2719000;2886000;3149000;3085000;3664000;3549000;3601000;3528000;3611000;3858000;4488000;4064000;3870000;3969000;3656000;3294000;3305000;2839000;2300000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;;100;100;100;50;2100;6000;6000;6000;200;7800;2100;21900;41800;10700;6500;23909;32400;44000;48100;31400;58500;20000;12800;4600;600;1800;1800;2200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;;9;9;9;3;45;110;110;110;16;374;91;482;2378;710;425;1000;2002;3133;4575;3194;5221;1800;1159;495;55;231;231;645;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;;1200;1200;1900;500;500;1600;900;1600;800;1300;1900;3500;2600;4100;9970;4590;3500;3800;3200;3500;4100;3000;2600;3100;3100;2000;2600;4000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;;14;14;38;7;7;37;53;67;52;88;165;294;221;329;770;550;659;744;918;917;895;650;384;425;454;693;900;1900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;1815000;1774000;2180000;2583000;2780000;2724000;2753000;2399000;2430000;2414000;2407000;2622000;2756000;2993000;2710000;2670000;2595000;3967000;4146000;3907000;4087000;4330000;3804000;4529000;4640000;4531000;4593000;4700000;4831000;4303000;3600000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;900;1300;4000;14700;6300;3300;3100;9400;11900;41900;53500;51300;63400;88500;80100;63200;103160;152200;105400;112400;119700;81600;72000;44500;41000;39200;21500;21500;26000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;142;173;479;1275;622;395;480;1106;2125;4318;4568;4850;10624;14985;10876;9745;17815;22288;21173;35178;33062;18676;16500;9946;11384;11351;7365;7365;20100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;50;100;100;100;200;800;18200;54800;57900;59800;81900;132200;161400;172100;254100;337000;415480;333100;358000;304300;203100;213800;313000;358200;250300;340000;447800;582300;920000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;1;2;2;5;7;22;379;1200;1438;1723;2724;4095;7718;10534;15618;22911;34440;22977;29419;37228;28338;26029;38200;19873;15780;19502;43363;44000;94600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;18100;225300;305100;304500;263900;649900;709300;722400;1000800;1418800;1266400;642200;976700;1187000;1127700;1546700;1511800;1380100;999000;769700;1197000;778600;834700;828800;1022800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;217;3447;3528;3854;3203;14990;14165;13837;19275;33344;37838;20019;28999;39452;39696;84163;87151;86223;61900;32320;65394;40933;45410;39558;108197;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5916;Export quantity;m3;498600;425200;402500;358200;350300;203000;183900;244000;279200;300000;306600;207900;135200;195800;162500;219300;279000;351300;326000;348200;246300;84800;57000;124200;26600;2700;39200;50900;120000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5922;Export value;1000 USD;5604;4757;4284;4127;4876;2670;2214;2847;3985;4180;5155;3096;2431;6478;4865;6350;9069;9225;10298;17708;12916;4512;3020;2443;699;71;1288;1300;2939;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1870;Pulpwood and particles (1961-1997);5516;Production;m3;1444000;1253000;1208000;1811000;1985000;1793000;1848000;2057000;1376000;1716000;1436000;1488000;1232000;1310000;1528000;1335000;1422000;1426000;1451000;1503000;1682000;1699000;1775000;1871000;1927000;1968000;1646000;1778000;1778000;1428000;1428000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1870;Pulpwood and particles (1961-1997);5616;Import quantity;m3;;;;;18100;225300;305100;304500;263900;649900;709300;722400;1000800;1418800;1266400;642200;976700;1187000;1127700;1546700;1511800;1380100;999000;769700;1197000;778600;834700;828800;1022800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1870;Pulpwood and particles (1961-1997);5622;Import value;1000 USD;;;;;217;3447;3528;3854;3203;14990;14165;13837;19275;33344;37838;20019;28999;39452;39696;84163;87151;86223;61900;32320;65394;40933;45410;39558;108197;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1870;Pulpwood and particles (1961-1997);5916;Export quantity;m3;498600;425200;402500;358200;350300;203000;183900;244000;279200;300000;306600;207900;135200;195800;162500;219300;279000;351300;326000;348200;246300;84800;57000;124200;26600;2700;39200;50900;120000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1870;Pulpwood and particles (1961-1997);5922;Export value;1000 USD;5604;4757;4284;4127;4876;2670;2214;2847;3985;4180;5155;3096;2431;6478;4865;6350;9069;9225;10298;17708;12916;4512;3020;2443;699;71;1288;1300;2939;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;760000;503000;499000;705000;750000;775000;825000;833000;484000;658000;505000;501000;404000;372000;419000;419000;428000;326000;326000;283000;354000;383000;448000;492000;537000;651000;541000;544000;544000;455000;455000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;684000;750000;709000;1106000;1235000;1018000;1023000;1224000;892000;1058000;931000;987000;828000;938000;1109000;916000;994000;1100000;1125000;1220000;1328000;1316000;1327000;1379000;1390000;1317000;1105000;1234000;1234000;973000;973000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1871;Other industrial roundwood;5516;Production;m3;2808000;2862000;3003000;3097000;3365000;3440000;3094000;2777000;3315000;3047000;3316000;3161000;3097000;2917000;2780000;2930000;3215000;1179000;1201000;1176000;1231000;1320000;1294000;1235000;1323000;1284000;1468000;1553000;1660000;885000;885000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1871;Other industrial roundwood;5616;Import quantity;m3;;;;;11500;9400;13400;11400;20000;32300;37600;29000;30500;51900;52000;27110;33730;46300;37800;18600;18000;19900;13100;9700;9200;9500;8600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1871;Other industrial roundwood;5622;Import value;1000 USD;;;;;258;286;477;203;490;985;1291;1054;1400;2697;2732;1482;2050;2544;2148;2158;2160;2362;1566;915;1011;1068;1086;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1871;Other industrial roundwood;5916;Export quantity;m3;1100;8500;19900;23000;11700;34600;66100;81100;111600;104600;150400;252000;293200;140800;98200;111900;105000;23500;14500;800;800;3100;4900;4900;1300;900;2500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1871;Other industrial roundwood;5922;Export value;1000 USD;16;106;342;327;202;587;1109;1324;2014;2140;3427;5217;9032;5326;4045;5118;6151;1180;510;148;164;813;608;608;161;80;681;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;838000;919000;1103000;1217000;1310000;1240000;1010000;953000;1317000;1136000;1328000;1436000;1423000;1324000;1239000;1250000;1369000;647000;616000;513000;605000;680000;671000;619000;623000;577000;517000;484000;591000;403000;403000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;1970000;1943000;1900000;1880000;2055000;2200000;2084000;1824000;1998000;1911000;1988000;1725000;1674000;1593000;1541000;1680000;1846000;532000;585000;663000;626000;640000;623000;616000;700000;707000;951000;1069000;1069000;482000;482000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;11500;9400;13400;11400;20000;32300;37600;29000;30500;51900;52000;27110;33730;46300;37800;18600;18000;19900;13100;9700;9200;9500;8600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;258;286;477;203;490;985;1291;1054;1400;2697;2732;1482;2050;2544;2148;2158;2160;2362;1566;915;1011;1068;1086;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;1100;8500;19900;23000;11700;34600;66100;81100;111600;104600;150400;252000;293200;140800;98200;111900;105000;23500;14500;800;800;3100;4900;4900;1300;900;2500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;16;106;342;327;202;587;1109;1324;2014;2140;3427;5217;9032;5326;4045;5118;6151;1180;510;148;164;813;608;608;161;80;681;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;8000;8300;7500;7500;5000;10000;6000;6000;6000;20000;13000;13000;13000;13000;20000;20000;20000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1630;Wood charcoal;5610;Import quantity;t;;;;200;200;600;600;400;10200;5600;6600;4500;3100;12100;13600;9800;5400;11200;7400;2700;4200;7100;1400;1200;3000;3000;1200;1100;1100;1100;1100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1630;Wood charcoal;5622;Import value;1000 USD;;;;11;11;26;26;17;371;303;452;302;207;1202;1876;1273;653;1425;739;319;973;1474;322;154;807;807;510;516;862;862;862;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1630;Wood charcoal;5910;Export quantity;t;29900;16500;17500;13300;9100;9100;8400;9700;13900;11700;9500;6700;6400;11800;12900;18100;12900;500;11500;12400;10100;6100;10600;21000;16000;12000;11400;14100;19100;16400;16400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1630;Wood charcoal;5922;Export value;1000 USD;1336;743;768;660;532;543;451;513;749;838;971;728;715;1869;2449;3567;2615;17;2911;5161;4510;2376;2562;3940;3519;3201;4061;4285;6000;6578;6578;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;2258;8844;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;56;151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;575;1985;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;14;108;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1872;Sawnwood;5516;Production;m3;2462000;2817000;2833000;2720000;2703000;2918000;2930000;3016000;3074000;3107000;3325000;3234000;3440000;3695000;3550000;3643000;3992000;4070000;4272000;4239000;4229000;4432000;4413000;4658000;4764000;4706000;4587000;4577000;4481000;3779000;3204000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1872;Sawnwood;5616;Import quantity;m3;16000;500;600;12900;53200;62000;57700;61500;97000;354900;293600;222200;195700;382800;167300;135100;229400;330900;318100;239300;316500;206200;178500;157000;153600;274900;173100;99000;100500;74600;74600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1872;Sawnwood;5622;Import value;1000 USD;847;94;80;699;2973;3183;2830;3041;4904;19891;18332;15046;18309;50631;19758;15579;31559;40660;46445;52391;71619;38504;27115;20220;21477;35102;30895;13795;18100;36902;36902;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1872;Sawnwood;5916;Export quantity;m3;578300;808400;909900;858600;768800;813300;760900;819800;928000;804600;708300;877200;1144400;885000;765500;1478500;1289000;1351500;1115400;1101500;808900;751400;825200;1053500;854200;829600;929000;1002600;979800;795500;792500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1872;Sawnwood;5922;Export value;1000 USD;32230;40797;43270;44065;42355;46175;43165;45744;51951;51690;52078;67457;144634;155715;102151;183075;188024;217690;262245;337536;241257;222673;225827;172269;164041;147251;236762;223756;271638;297642;296904;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1632;Sawnwood, coniferous;5516;Production;m3;1480000;1873000;1791000;1629000;1507500;1554500;1589000;1755500;1795500;1762000;1870500;1831500;1944000;2091000;2180500;2186000;2291500;2289500;2398500;2349000;2292500;2472500;2466500;2497000;2515000;2464000;2381000;2290000;2176000;1769000;1324000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1632;Sawnwood, coniferous;5616;Import quantity;m3;15400;200;500;11800;52000;61200;57000;54800;86550;325750;268450;199550;171600;335400;143650;120450;204850;302300;281600;212350;291350;187350;175250;152900;148100;271350;165300;92100;92800;62500;62500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1632;Sawnwood, coniferous;5622;Import value;1000 USD;631;25;51;405;2632;2971;2665;2645;4096;17965;15918;12516;13922;40835;14425;11421;25708;34119;36167;39568;60047;31005;25850;18960;20089;33921;28178;10733;15000;27020;27020;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1632;Sawnwood, coniferous;5916;Export quantity;m3;269750;435650;488250;362900;286750;269250;212850;240400;289600;204150;137950;216450;399900;342450;232800;536550;449050;298500;258350;229250;164150;187900;245100;283300;223600;218950;194950;224750;208600;81500;80000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1632;Sawnwood, coniferous;5922;Export value;1000 USD;13351;19293;19577;15092;12022;11365;8876;9976;12453;10320;7673;11800;40027;46138;22522;53047;53919;36939;37031;51307;29532;37805;35402;29188;24438;21301;30064;31423;40369;30369;30000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1633;Sawnwood, non-coniferous;5516;Production;m3;982000;944000;1042000;1091000;1195500;1363500;1341000;1260500;1278500;1345000;1454500;1402500;1496000;1604000;1369500;1457000;1700500;1780500;1873500;1890000;1936500;1959500;1946500;2161000;2249000;2242000;2206000;2287000;2305000;2010000;1880000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;600;300;100;1100;1200;800;700;6700;10450;29150;25150;22650;24100;47400;23650;14650;24550;28600;36500;26950;25150;18850;3250;4100;5500;3550;7800;6900;7700;12100;12100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;216;69;29;294;341;212;165;396;808;1926;2414;2530;4387;9796;5333;4158;5851;6541;10278;12823;11572;7499;1265;1260;1388;1181;2717;3062;3100;9882;9882;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;308550;372750;421650;495700;482050;544050;548050;579400;638400;600450;570350;660750;744500;542550;532700;941950;839950;1053000;857050;872250;644750;563500;580100;770200;630600;610650;734050;777850;771200;714000;712500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;18879;21504;23693;28973;30333;34810;34289;35768;39498;41370;44405;55657;104607;109577;79629;130028;134105;180751;225214;286229;211725;184868;190425;143081;139603;125950;206698;192333;231269;267273;266904;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1634;Veneer sheets;5516;Production;m3;46000;96000;96000;110000;203000;199000;182000;170000;192000;200000;215000;192000;180000;210000;207000;235000;219000;234000;230000;250000;237000;233000;233000;245000;248000;251000;242000;236000;235000;235000;235000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1634;Veneer sheets;5616;Import quantity;m3;24;60;300;500;500;1100;2800;4500;6500;7100;8700;10800;10900;16400;10000;7350;8741;12400;11100;10500;10000;8300;6300;5400;4000;6300;5400;6600;7300;7300;7300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1634;Veneer sheets;5622;Import value;1000 USD;18;44;220;355;271;690;1764;2986;4406;5014;6083;7101;10647;20280;12117;12040;16345;15678;18044;21795;20863;15167;12276;8004;5920;9993;14979;14894;36475;36475;36475;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1634;Veneer sheets;5916;Export quantity;m3;14000;12900;12600;10700;11000;26900;10700;12300;16500;19700;17600;22400;28000;24500;19500;25700;25390;30000;36300;44200;33700;30500;26200;41600;41200;37900;42000;39800;44600;37500;37500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1634;Veneer sheets;5922;Export value;1000 USD;4661;4351;3700;4660;5207;5882;4650;4826;6637;8225;8744;9996;17481;18751;15761;17163;17952;20169;27235;47095;37383;33317;22415;21786;27798;22467;31804;27504;37000;37452;37452;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1873;Wood-based panels;5516;Production;m3;159900;201100;262700;354900;409400;421600;374200;376100;372800;413000;460700;521000;581900;665500;681000;752000;921000;917000;1019000;1081000;1056000;1044000;1037000;1088000;990000;1056000;1016000;1048000;1003000;740000;651000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1873;Wood-based panels;5616;Import quantity;m3;;;;200;200;1900;27600;46900;73800;119900;132900;101900;116100;163200;81900;68300;56404;13500;50000;17600;21200;9700;11000;62100;65500;36300;47900;23400;66800;55100;55100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1873;Wood-based panels;5622;Import value;1000 USD;;;;87;23;137;1635;2895;5204;10634;11132;8570;11905;21684;11602;7237;8286;4016;8226;9662;8188;6505;6000;7793;7086;4493;9328;8125;24553;25469;25469;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1873;Wood-based panels;5916;Export quantity;m3;11300;20800;45100;53500;47800;49301;47559;53086;59941;56118;61463;64450;103860;79754;40546;88100;114300;84200;93200;96700;82800;93900;117000;157900;123700;134900;150200;119600;121000;121000;121000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1873;Wood-based panels;5922;Export value;1000 USD;1673;2459;4114;5254;5241;5376;4892;5362;5713;6123;8087;9494;18884;20165;9785;20662;26347;21156;27448;45674;36840;34912;54800;34310;32210;34622;53941;42783;78155;78155;78155;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1640;Plywood and LVL;5516;Production;m3;115300;120100;118100;145200;155300;148600;131600;134800;155500;161400;164700;172000;160500;194000;175000;176000;202000;195000;194000;162000;153000;142000;135000;141000;145000;143000;136000;137000;138000;79000;71000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1640;Plywood and LVL;5616;Import quantity;m3;;;;200;200;100;400;2400;6400;14600;3900;3500;3800;6700;6500;4800;5840;4300;4600;5600;4900;4000;3000;3300;3300;2600;5400;6400;6100;6100;6100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1640;Plywood and LVL;5622;Import value;1000 USD;;;;87;23;22;110;626;1740;3864;1374;1673;2746;4895;5252;3404;4624;3322;4049;7956;6410;4727;3500;2368;2007;1715;4920;6210;12553;12553;12553;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1640;Plywood and LVL;5916;Export quantity;m3;10100;15400;20700;27400;28400;29100;28800;29700;25600;26200;24700;33900;59200;46700;29300;59000;63200;42600;43200;42500;29900;35900;77000;88900;61600;63100;77800;53600;46800;46800;46800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1640;Plywood and LVL;5922;Export value;1000 USD;1548;2105;2614;3548;3881;3973;3634;3790;3380;3979;5112;6996;14034;13987;7885;16400;18638;15539;18692;29251;21552;21095;45300;26378;23785;24822;43941;23166;37375;37375;37375;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1646;Particle board and OSB (1961-1994);5516;Production;m3;13600;44000;91600;144700;185100;185600;170600;163300;166000;190000;215000;264000;321000;375000;413000;484000;626000;632000;726000;812000;789000;790000;745000;759000;681000;730000;718000;737000;698000;555000;465000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;1800;27200;39700;62600;104900;128200;98000;107900;151300;71000;42300;48580;9200;45400;12000;16300;5700;8000;58800;62200;33700;42500;17000;60700;49000;49000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;115;1525;2154;3345;6712;9666;6869;9049;16565;6219;3242;3456;694;4177;1706;1778;1778;2500;5425;5079;2778;4408;1915;12000;12916;12916;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;700;2300;1700;3800;7700;7700;7700;7700;7700;200;400;100;100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;40;130;100;200;400;400;400;400;400;62;132;13;28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1874;Fibreboard;5516;Production;m3;31000;37000;53000;65000;69000;87400;72000;78000;51300;61600;81000;85000;100400;96500;93000;92000;93000;90000;99000;107000;114000;112000;157000;188000;164000;183000;162000;174000;167000;106000;115000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;4800;4800;400;800;400;4400;5200;4400;21200;1984;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;115;119;58;92;28;110;224;131;591;206;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1874;Fibreboard;5916;Export quantity;m3;1200;5400;24400;26100;18700;17901;17059;19586;26641;22218;29063;22850;36960;32854;10846;29000;51000;41600;50000;54200;52900;58000;40000;69000;62100;71800;72400;66000;74200;74200;74200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1874;Fibreboard;5922;Export value;1000 USD;125;354;1500;1706;1320;1273;1158;1372;1933;1744;2575;2098;4450;6116;1768;4249;7681;5617;8756;16423;15288;13817;9500;7932;8425;9800;10000;19617;40780;40780;40780;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1650;Other fibreboard;5516;Production;m3;3000;4000;4000;4000;5000;20000;16000;16000;3200;3500;3600;4200;16800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;4800;4800;400;800;400;4400;5200;4400;21200;1984;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;115;119;58;92;28;110;224;131;591;206;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;28000;33000;49000;61000;64000;67400;56000;62000;48100;58100;77400;80800;83600;96500;93000;92000;93000;90000;99000;107000;114000;112000;157000;188000;164000;183000;162000;174000;167000;106000;115000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;1200;5400;24400;26100;18700;17901;17059;19586;26641;22218;29063;22850;36960;32854;10846;29000;51000;41600;50000;54200;52900;58000;40000;69000;62100;71800;72400;66000;74200;74200;74200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;125;354;1500;1706;1320;1273;1158;1372;1933;1744;2575;2098;4450;6116;1768;4249;7681;5617;8756;16423;15288;13817;9500;7932;8425;9800;10000;19617;40780;40780;40780;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1879;Total fibre furnish;5510;Production;t;235400;254100;275700;276800;360500;377800;427100;437700;452700;574700;630800;660900;682400;682000;670000;721000;788000;806000;957000;1001000;990000;1032000;1032000;1223000;1196000;1193000;1158000;1164000;1159000;899000;731000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1879;Total fibre furnish;5610;Import quantity;t;;200;300;300;300;300;400;42600;47500;137300;72900;88700;116900;176239;147491;134232;209644;226802;251835;318163;325695;295223;359300;326400;337000;326500;290400;328900;365700;365700;199100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1879;Total fibre furnish;5622;Import value;1000 USD;;20;24;24;24;24;33;5556;6621;17373;7533;6615;14961;46879;32226;31998;42957;49856;71474;129746;120987;110629;105228;86730;98669;89907;129178;127098;219319;219319;70748;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;22900;24400;14500;4000;1700;1100;2100;1600;6500;7900;32900;59500;77300;87100;83800;101800;92700;89200;108400;100900;110200;120300;99600;54600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;2912;3374;2647;736;259;186;570;330;1565;2129;8971;21126;41655;45354;41614;38419;34554;34093;38451;57530;68168;67846;62338;30502;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1878;Pulp for paper;5510;Production;t;235400;254100;275700;276800;360500;377800;427100;437700;452700;424700;480800;501900;509400;482000;470000;485000;552000;570000;577000;631000;640000;662000;662000;798000;766000;763000;723000;754000;739000;663000;495000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1878;Pulp for paper;5610;Import quantity;t;;200;300;300;300;300;400;42600;47500;87300;35900;28700;60900;86000;62500;79900;114868;139500;162100;206000;193300;183800;214500;191500;200000;207400;203100;187800;200500;200500;103100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1878;Pulp for paper;5622;Import value;1000 USD;;20;24;24;24;24;33;5556;6621;15695;6302;4891;13207;37011;24387;27956;37621;43807;63036;113818;102300;96197;86922;70464;81103;75282;117758;109516;177068;177068;58297;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;22900;24400;14500;4000;1700;1100;2100;1600;6500;7900;32900;59500;77300;87100;83800;101800;92700;89200;108400;100900;110200;120300;99600;54600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;2912;3374;2647;736;259;186;570;330;1565;2129;8971;21126;41655;45354;41614;38419;34554;34093;38451;57530;68168;67846;62338;30502;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1875;Wood pulp;5510;Production;t;275400;299100;330700;326800;408500;437800;482100;493700;504700;483700;517800;551900;561400;562000;557000;563000;649000;673000;679000;678000;725000;749000;749000;878000;834000;839000;788000;838000;832000;735000;559000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1875;Wood pulp;5610;Import quantity;t;;200;300;300;4000;6500;6700;51800;62800;107300;58100;59600;108600;123100;102100;115300;158600;151000;179700;235400;214400;209500;234900;214300;214000;227400;221600;203700;214900;214900;117500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1875;Wood pulp;5622;Import value;1000 USD;;20;24;24;754;1230;1206;7263;9623;20024;11275;11745;24980;53765;42020;42688;54436;49170;72362;134244;117034;115570;99649;83419;90496;88205;131528;122816;197704;197704;78933;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1875;Wood pulp;5910;Export quantity;t;17800;23100;36800;29200;24100;33100;30500;68800;61100;46300;41200;74500;63300;73800;35800;40100;32700;49200;83000;93700;102400;99600;118800;110100;98200;120900;115400;128100;141200;120500;75500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1875;Wood pulp;5922;Export value;1000 USD;2300;2800;4600;4380;3661;5073;4599;9245;8644;8965;8841;15480;15803;30259;14734;14724;12491;15297;31527;52280;56071;51808;47974;42528;39064;45504;66471;80192;100314;94806;62970;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1654;Mechanical wood pulp (1961-2016);5510;Production;t;60500;60200;66400;84800;84500;89900;95800;110200;104600;93900;95200;95200;89500;95000;88000;100000;121000;116000;105000;115000;121000;128000;128000;129000;129000;125000;132000;129000;131000;129000;112000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;200;300;300;300;300;400;400;400;2000;2000;100;100;100;100;100;600;8800;12700;16100;6200;3700;3700;2300;1000;1300;4800;2800;7200;7200;7200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;20;24;24;24;24;33;33;33;213;213;11;11;11;26;26;153;1881;3442;6226;2276;1645;1645;695;269;464;2749;1144;6028;6028;6028;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;300;200;900;5700;7100;4000;3000;2600;1300;1100;1100;300;200;4800;5800;8600;13700;13700;13700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;29;21;175;1375;1939;726;658;920;507;319;319;72;43;1104;2022;3070;10076;10076;10076;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;30600;30600;26700;25900;29600;33800;28400;34800;34600;34000;42000;68000;65000;61000;71000;73000;82000;90000;90000;122000;134000;126000;116000;132000;127000;109000;69000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;200;1800;1800;1800;1800;300;300;300;100;100;100;1700;1000;1000;1000;700;1300;1300;1300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;27;226;226;226;226;89;89;89;48;21;21;68;43;43;43;840;2057;2057;2057;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1656;Chemical wood pulp;5510;Production;t;174900;193900;209300;192000;245400;257300;304600;298600;314500;293000;353200;367900;381300;350000;337000;314000;363000;390000;398000;440000;434000;441000;441000;544000;490000;499000;469000;488000;475000;419000;308000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;42100;47000;85100;33600;27800;59900;82700;59000;75800;109200;127000;146700;188700;185500;178200;208900;186900;194000;202600;196000;183000;191200;191200;93800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;5513;6565;15460;6069;4761;13044;36259;23567;26852;36142;39956;58147;106305;98462;93326;84051;69177;78601;72998;113436;106002;167367;167367;48596;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;22900;24400;14500;4000;1700;800;1900;700;800;800;28900;56500;74700;85800;82700;100700;92400;89000;103600;95100;101600;106600;85900;40900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;2912;3374;2647;736;259;157;549;155;190;190;8245;20468;40735;44847;41295;38100;34482;34050;37347;55508;65098;57770;52262;20426;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;73400;75800;82700;117400;109700;107600;99600;107600;128500;130900;144000;137000;134000;146000;109000;141000;116000;114000;116000;116000;181000;149000;142000;133000;147000;132000;117000;86000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;3200;11400;22200;6700;5400;13500;22700;16600;13900;23000;28600;28200;38500;34900;30700;36300;22600;30000;25900;23500;19000;24900;24900;2000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;348;1316;3408;1024;805;2656;8113;6212;4741;7671;7876;10161;20755;18527;16231;14576;9090;14106;9732;11687;10134;19104;19104;961;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;44000;43600;60700;69300;77600;71200;69600;67500;72700;72000;70000;58000;62000;49000;63000;111000;109000;111000;111000;145000;133000;135000;127000;129000;121000;107000;78000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;4100;6700;17800;5600;9500;21900;26000;23600;28800;46400;55600;46700;49400;56100;51100;58700;50000;56000;62100;60900;61000;68600;68600;65700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;557;1062;3409;1075;1727;4932;11802;10547;11549;17330;18927;20152;29579;32093;30608;28313;21453;25415;25440;42144;41700;21018;21018;34078;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;9400;9100;6500;1100;300;100;100;100;100;100;1600;4100;25400;36400;34200;51200;43900;47000;51200;49400;55800;56500;51100;27500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;1288;1302;1300;207;42;22;33;33;33;33;482;1444;14020;18934;16506;18918;16041;18007;18919;29801;36578;32250;30185;14169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;46500;42700;38200;42400;45800;44100;45000;41800;40200;48000;41000;38000;35000;27000;32000;40000;40000;41000;41000;41000;41000;37000;35000;33000;40000;34000;26000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;9500;5700;10600;4100;800;600;2200;1500;800;4800;7500;9700;15700;17300;16200;18500;16600;14000;18000;15600;11300;12400;12400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;1107;730;1769;706;153;115;838;557;251;1469;2272;3854;8639;8819;9888;9076;7084;6235;7536;9724;7284;27709;27709;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;200;200;400;900;200;1300;100;200;200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;22;22;63;128;46;427;33;68;68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;118600;79100;88300;88300;77200;83500;78100;131000;130100;137500;86000;89000;84000;120000;205000;162000;173000;171000;173000;173000;177000;167000;185000;174000;179000;182000;161000;118000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;25300;23200;34500;17200;12100;23900;31800;17300;32300;35000;35300;62100;85100;77200;80200;95400;97700;94000;96600;96000;91700;85300;85300;26100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;3501;3457;6874;3264;2076;5341;15506;6251;10311;9672;10881;23980;47332;39023;36599;32086;31550;32845;30290;49881;46884;99536;99536;13557;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;13500;15100;7800;2500;500;500;500;500;500;500;27300;52400;49300;49400;48500;49500;48500;42000;52400;45700;45800;50100;34800;13400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;1624;2050;1325;466;89;89;89;89;89;89;7763;19024;26715;25913;24789;19182;18441;16043;18428;25707;28520;25520;22077;6257;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1667;Dissolving wood pulp;5510;Production;t;40000;45000;55000;50000;48000;60000;55000;59000;56000;63000;41000;54000;56000;83000;90000;81000;100000;106000;105000;50000;88000;90000;90000;83000;81000;89000;71000;89000;99000;78000;70000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;3700;6200;6300;9300;15400;20200;22500;31700;48400;38500;41200;37600;47000;14900;20000;30300;22600;27500;22200;23400;18000;22500;19800;17200;15200;15200;15200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;730;1206;1173;1717;3025;4351;4993;6973;11898;17269;18201;15584;17915;7244;10684;21624;16248;20578;13932;13479;11583;14700;15300;14830;22252;22252;22252;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1667;Dissolving wood pulp;5910;Export quantity;t;17800;23100;36800;29200;24100;33100;30500;45900;36700;31800;37200;72800;62200;71700;34200;33600;24800;16300;23500;16400;15300;15800;17000;17400;9000;12500;14500;17900;20900;20900;20900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1667;Dissolving wood pulp;5922;Export value;1000 USD;2300;2800;4600;4380;3661;5073;4599;6333;5270;6318;8105;15221;15617;29689;14404;13159;10362;6326;10401;10625;10717;10194;9555;7974;4971;7053;8941;12024;32468;32468;32468;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1668;Pulp from fibres other than wood;5510;Production;t;;;;;;;;3000;4000;4000;4000;4000;4000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;13000;13000;6000;5000;6000;6000;6000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;100;100;200;300;800;700;1400;1600;2200;3268;3400;2400;900;1500;1800;1800;600;4000;2500;1300;1300;800;800;800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;10;23;22;20;119;125;515;568;852;1100;1881;1358;1198;1514;1205;1205;524;2190;1777;1530;1530;1616;1616;1616;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1669;Recovered paper;5510;Production;t;;;;;;;;;;150000;150000;159000;173000;200000;200000;236000;236000;236000;380000;370000;350000;370000;370000;425000;430000;430000;435000;410000;420000;236000;236000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;50000;37000;60000;56000;90239;84991;54332;94776;87302;89735;112163;132395;111423;144800;134900;137000;119100;87300;141100;165200;165200;96000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;1678;1231;1724;1754;9868;7839;4042;5336;6049;8438;15928;18687;14432;18306;16266;17566;14625;11420;17582;42251;42251;12451;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1876;Paper and paperboard;5510;Production;t;226600;256000;304100;381000;446500;478800;529900;577600;603100;584700;559300;611700;641900;535000;700600;759000;920000;905000;982000;1097000;1151000;1145000;1205000;1288000;1313000;1301000;1358000;1381000;1302000;894000;685000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1876;Paper and paperboard;5610;Import quantity;t;37400;21800;36500;43700;36000;22000;42500;45500;69700;163900;135500;86600;115500;203000;115500;80500;122600;113100;113500;86800;113000;91800;74600;93500;93000;113500;107200;100200;134300;180400;180400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1876;Paper and paperboard;5622;Import value;1000 USD;7811;4391;7381;8778;8082;7047;12249;14587;21636;42019;40013;25529;46603;76053;67275;53446;79017;73157;73800;87537;104014;96992;60588;61615;73411;78939;108966;108598;150746;171737;171737;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1876;Paper and paperboard;5910;Export quantity;t;6200;17100;28900;41700;59900;84800;97600;126500;132100;94000;56500;89100;80100;66300;39800;91600;79870;82300;94600;108600;132200;132600;169400;291700;268400;288800;315600;299900;271000;291800;202600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1876;Paper and paperboard;5922;Export value;1000 USD;1241;3009;5131;8763;12087;15237;17776;21985;22662;18231;11962;20880;23753;35592;20616;32415;31010;32893;50171;92715;104552;96379;78621;106447;117656;114132;195122;171105;188260;187549;140652;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;2042;Graphic papers;5510;Production;t;94300;102200;114100;156500;173700;190800;201900;229700;226800;214900;216700;220900;232600;258000;242000;271000;297000;311000;312000;337000;349000;363000;382000;368000;356000;355000;355000;356000;343000;312000;260000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;2042;Graphic papers;5610;Import quantity;t;26500;12800;16300;12200;19500;3000;10300;17300;21500;38300;40000;27800;29600;42200;23600;23200;23600;19000;20900;18200;17500;15100;19800;18000;17000;15400;12900;15200;40500;46300;46300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;2042;Graphic papers;5622;Import value;1000 USD;4579;1965;2548;2148;3304;1386;2918;4458;5847;9316;9372;6049;9603;21818;11733;10574;11532;10371;11186;13362;10746;10142;10692;7853;8942;7387;10120;17144;40846;36021;36021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;2042;Graphic papers;5910;Export quantity;t;300;5100;9800;17300;27900;45000;55000;59600;69900;43400;22900;42300;29300;26300;17400;45500;41270;48200;54500;55400;73600;61300;81200;89700;78400;66700;78900;90000;97300;82800;89900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;2042;Graphic papers;5922;Export value;1000 USD;83;1121;2034;3626;5715;8657;10706;11299;12958;9385;5472;10424;9414;16574;8283;16870;16932;19433;27941;41549;51316;38740;37505;35652;37386;31091;56354;60169;64114;63010;83367;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1671;Newsprint;5510;Production;t;25800;25200;31900;45800;45900;52900;62200;72700;69000;75000;79600;75900;75900;79000;85000;90000;96000;96000;84000;45000;52000;29000;31000;29000;27000;38000;36000;36000;36000;16000;16000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1671;Newsprint;5610;Import quantity;t;21700;12000;15400;11100;17700;100;4600;8800;11600;23500;25900;20000;2600;5600;1600;100;;800;5700;5300;10100;7000;12800;12200;12000;7500;5000;2200;11000;22800;22800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1671;Newsprint;5622;Import value;1000 USD;3119;1636;2082;1533;2368;20;673;1273;1719;3680;4535;3480;493;2633;567;34;;218;2053;3123;6164;3952;6266;4487;5644;2889;3687;2255;11893;13983;13983;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1671;Newsprint;5910;Export quantity;t;;;;400;2800;8500;11900;12200;18800;10000;6200;7700;4900;3200;1500;14900;17270;18900;20800;20300;22000;17500;28100;21900;8400;5800;9600;10100;17300;10800;6200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1671;Newsprint;5922;Export value;1000 USD;;;;51;354;1079;1539;1521;2372;1362;882;1142;966;1218;414;4343;6519;6471;8365;11050;11245;7875;10210;6974;3524;3021;4494;5581;7000;4872;4008;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1674;Printing and writing papers;5510;Production;t;68500;77000;82200;110700;127800;137900;139700;157000;157800;139900;137100;145000;156700;179000;157000;181000;201000;215000;228000;292000;297000;334000;351000;339000;329000;317000;319000;320000;307000;296000;244000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1674;Printing and writing papers;5610;Import quantity;t;4800;800;900;1100;1800;2900;5700;8500;9900;14800;14100;7800;27000;36600;22000;23100;23600;18200;15200;12900;7400;8100;7000;5800;5000;7900;7900;13000;29500;23500;23500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1674;Printing and writing papers;5622;Import value;1000 USD;1460;329;466;615;936;1366;2245;3185;4128;5636;4837;2569;9110;19185;11166;10540;11532;10153;9133;10239;4582;6190;4426;3366;3298;4498;6433;14889;28953;22038;22038;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1674;Printing and writing papers;5910;Export quantity;t;300;5100;9800;16900;25100;36500;43100;47400;51100;33400;16700;34600;24400;23100;15900;30600;24000;29300;33700;35100;51600;43800;53100;67800;70000;60900;69300;79900;80000;72000;83700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1674;Printing and writing papers;5922;Export value;1000 USD;83;1121;2034;3575;5361;7578;9167;9778;10586;8023;4590;9282;8448;15356;7869;12527;10413;12962;19576;30499;40071;30865;27295;28678;33862;28070;51860;54588;57114;58138;79359;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1675;Other paper and paperboard;5510;Production;t;132300;153800;190000;224500;272800;288000;328000;347900;376300;369800;342600;390800;409300;277000;458600;488000;623000;594000;670000;760000;802000;782000;823000;920000;957000;946000;1003000;1025000;959000;582000;425000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1675;Other paper and paperboard;5610;Import quantity;t;10900;9000;20200;31500;16500;19000;32200;28200;48200;125600;95500;58800;85900;160800;91900;57300;99000;94100;92600;68600;95500;76700;54800;75500;76000;98100;94300;85000;93800;134100;134100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1675;Other paper and paperboard;5622;Import value;1000 USD;3232;2426;4833;6630;4778;5661;9331;10129;15789;32703;30641;19480;37000;54235;55542;42872;67485;62786;62614;74175;93268;86850;49896;53762;64469;71552;98846;91454;109900;135716;135716;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1675;Other paper and paperboard;5910;Export quantity;t;5900;12000;19100;24400;32000;39800;42600;66900;62200;50600;33600;46800;50800;40000;22400;46100;38600;34100;40100;53200;58600;71300;88200;202000;190000;222100;236700;209900;173700;209000;112700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1675;Other paper and paperboard;5922;Export value;1000 USD;1158;1888;3097;5137;6372;6580;7070;10686;9704;8846;6490;10456;14339;19018;12333;15545;14078;13460;22230;51166;53236;57639;41116;70795;80270;83041;138768;110936;124146;124539;57285;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1676;Household and sanitary papers;5510;Production;t;;;;;;2700;2700;16000;10000;3100;3500;3900;4100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;1300;800;26000;24600;18700;20500;4200;29300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;165;305;3689;3066;3661;5190;1300;9392;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;15900;9800;11200;4100;13400;16400;4000;4000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;2916;2238;2696;1100;3905;5025;2697;2697;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;224500;156300;161600;195500;199100;209300;212400;158300;218800;220100;150000;143700;136000;169000;120000;121000;136000;172000;274000;288000;322000;335000;331000;351000;359000;336000;204000;149000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;8600;23500;40000;54900;37000;60700;100300;37400;19100;49000;47100;45600;33700;46900;37700;26200;37100;37300;48000;46000;42000;46000;101700;101700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;1833;6686;10658;8492;12423;26227;27586;27586;7078;15741;14686;14652;17375;21824;20322;13820;12580;15085;17500;24200;22000;36900;82501;82501;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;16400;19800;17000;19400;26000;29300;26400;2100;40500;31400;27300;32100;42600;47700;57200;44200;162000;152400;178000;190000;169000;140000;141300;80000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;2327;2613;2594;3655;5026;7927;12979;1361;12951;10739;8350;13792;33000;36700;39800;11994;48895;55439;57400;96000;77000;70000;56447;32000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;116500;123700;129800;132800;157000;154300;180800;168100;185100;127000;314900;352000;454000;474000;549000;624000;630000;508000;535000;598000;622000;615000;652000;666000;623000;378000;276000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;18300;23900;59600;16000;3100;4700;56300;25200;38200;50000;47000;47000;34900;48600;39000;28600;38400;38700;50100;48300;43000;47800;32400;32400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;8131;8798;18356;19083;3396;5583;25349;18564;35794;51744;48100;47962;56800;71444;66528;36076;41182;49384;54052;74646;69454;73000;53215;53215;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;34600;32600;22400;10100;7400;5100;9600;16300;5600;7200;6800;8000;10600;10900;14100;44000;40000;37600;44100;46700;40900;33700;67700;32700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -248;'890;Yugoslav SFR;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;5443;4853;3556;1735;1525;1387;3342;8275;2594;3339;5110;8438;18166;16536;17839;29122;21900;24831;25641;42768;33936;54146;68092;25285;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -251;'894;Zambia;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115723;138275;127328;99769;140470.11;168855.07;172826.06 -251;'894;Zambia;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140295;70798;54369;29867;47969;32378.62;61337.62 -251;'894;Zambia;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;141;94;84;3892;5611;7264;8529;10854;10854;9932;10349;9407;8628;16398;21477;13410;13512;13579;16907;22353;9387;8377;8377;8377;7350;6627;7822;7872;7922;12446;11446;10321;6262;2262;4471;4471;2490;8117;12148;2479;3851;3851;3851;21232;21232;21232;21232;42415;39399;48923;59326;36550;53811;71277;38790;44436;60526;77356;73292;60611;85967.11;108709.07;112483.06 -251;'894;Zambia;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;1144;1255;973;837;893;893;699;586;140;;;31;;;;;;;;;;;;0;;;;;966;1276;654;931;739;284;804;661;570;907;907;1170;3013;3013;3013;3013;8329;9664;18978;17653;12485;12013;62067;71167;95386;136801;63535;47653;22780;41093;23547.62;46250.62 -251;'894;Zambia;1861;Roundwood;5516;Production;m3;3595000;3709000;3832000;4144915;4241850;4325547;4430042;4497376;4597586;4700714;4774912;4748441;4803462;4846711;5092077;5174356;5376596;5532624;5722804;5818980;5881818;6028990;6159086;6277212;6374422;6504225;6613925;6700676;6884131;7119113;7322863;7521386;7731331;8109562;8207331;8176550;8319352;8458880;8604752;17577000;17719700;18318400;18929800;19612500;20225000;21066000;21594000;22139000;22700000;23278000;23874000;24488000;24488000;24553000;24548000;24588000;25673000;25725000;25725000;25725000;25725000;25725000;25725000 -251;'894;Zambia;1861;Roundwood;5616;Import quantity;m3;;;;2900;2400;1800;1400;9800;9800;2500;9000;8500;1500;10200;900;1200;2100;2100;9700;1800;8600;8600;8600;8600;8600;8600;8600;8600;8600;;;;;0;102;102;102;338;319;132;1216;1216;1216;439;439;439;439;3866;414;628;395;629;1575;15235;3130;425;9067;10361;28249;14145;19721;16436;16116 -251;'894;Zambia;1861;Roundwood;5622;Import value;1000 USD;;;;68;112;110;89;338;338;97;377;254;144;250;70;54;239;239;1179;216;1046;1046;1046;1046;1046;1046;1046;1046;1046;;;;;0;12;12;12;36;33;98;203;203;203;28;28;28;28;258;44;71;72;96;254;1033;1158;154;2177;2484;4412;2097;2424;2296;2294 -251;'894;Zambia;1861;Roundwood;5916;Export quantity;m3;;;;100;500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;522;522;522;1888;743;773;600;600;600;778;778;778;778;5296;7999;3926;988;1093;1727;75478;215613;301250;95541;48615;27459;12668;33000;18048;25740 -251;'894;Zambia;1861;Roundwood;5922;Export value;1000 USD;;;;1;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;69;69;69;286;155;161;87;87;87;63;63;63;63;2525;3051;1414;193;523;644;52197;60670;87205;130052;52507;32748;7244;20949;7995;9102 -251;'894;Zambia;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;7000;11000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;20000;30000;43000;113000;160000;205000;300000;356000;300000;250000;300000;300000;300000;300000;300000;300000;300000;300000;300000;300000;300000;300000;300000;300000;300000;300000;300000;300000;300000;300000;647000;892000;892000;892000;892000;892000;892000 -251;'894;Zambia;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8589;9390;26362;13639;19079;15770;15770 -251;'894;Zambia;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2051;2170;4207;1995;2336;2200;2200 -251;'894;Zambia;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;226;54;69;30;0;247;264 -251;'894;Zambia;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;16;13;8;16;20;18 -251;'894;Zambia;1863;Roundwood, non-coniferous;5516;Production;m3;3595000;3709000;3832000;4144915;4241850;4325547;4430042;4497376;4597586;4700714;4774912;4748441;4803462;4846711;5085077;5163356;5364596;5520624;5710804;5806980;5869818;6016990;6147086;6265212;6362422;6492225;6593925;6670676;6841131;7006113;7162863;7316386;7431331;7753562;7907331;7926550;8019352;8158880;8304752;17277000;17419700;18018400;18629800;19312500;19925000;20766000;21294000;21839000;22400000;22978000;23574000;24188000;24188000;24253000;24248000;24288000;25026000;24833000;24833000;24833000;24833000;24833000;24833000 -251;'894;Zambia;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;478;971;1887;506;642;666;346 -251;'894;Zambia;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126;314;205;102;88;96;94 -251;'894;Zambia;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95315;48561;27390;12638;33000;17801;25476 -251;'894;Zambia;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;130026;52491;32735;7236;20933;7975;9084 -251;'894;Zambia;1864;Wood fuel;5516;Production;m3;3300000;3400000;3500000;3811915;3893850;3977547;4063042;4150376;4239586;4330714;4415912;4408441;4501462;4536711;4673077;4746356;4945596;5090624;5270804;5356980;5411818;5550990;5674086;5784212;5874422;5995225;6087925;6154676;6308131;6443113;6589863;6729386;6834331;7044562;7257331;7315550;7427352;7554880;7689752;16749000;17192000;17647000;18117000;18600000;19098000;19611000;20139000;20684000;21245000;21823000;22419000;23033000;23033000;23033000;23033000;23033000;23033000;23033000;23033000;23033000;23033000;23033000;23033000 -251;'894;Zambia;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;27;27;27;27;27;27;27;27;27;26;26;1;1;3;3;3;23;23;4;0;0;0;0;20;20 -251;'894;Zambia;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;12;12;0;0;10;10;10;34;34;4;0;0;0;0;4;4 -251;'894;Zambia;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30;79;34;34;34;1950;222;222;;;;;;; -251;'894;Zambia;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;61;16;16;16;442;73;73;;;;;;; -251;'894;Zambia;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0 -251;'894;Zambia;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20 -251;'894;Zambia;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4 -251;'894;Zambia;1628;Wood fuel, non-coniferous;5516;Production;m3;3300000;3400000;3500000;3811915;3893850;3977547;4063042;4150376;4239586;4330714;4415912;4408441;4501462;4536711;4673077;4746356;4945596;5090624;5270804;5356980;5411818;5550990;5674086;5784212;5874422;5995225;6087925;6154676;6308131;6443113;6589863;6729386;6834331;7044562;7257331;7315550;7427352;7554880;7689752;16749000;17192000;17647000;18117000;18600000;19098000;19611000;20139000;20684000;21245000;21823000;22419000;23033000;23033000;23033000;23033000;23033000;23033000;23033000;23033000;23033000;23033000;23033000;23033000 -251;'894;Zambia;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;0;0;0;0;0 -251;'894;Zambia;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;0;0;0;0;0 -251;'894;Zambia;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;27;27;27;27;27;27;27;27;27;26;26;1;1;3;3;3;23;23;;;;;;; -251;'894;Zambia;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;12;12;0;0;10;10;10;34;34;;;;;;; -251;'894;Zambia;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30;79;34;34;34;1950;222;222;;;;;;; -251;'894;Zambia;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;61;16;16;16;442;73;73;;;;;;; -251;'894;Zambia;1865;Industrial roundwood;5516;Production;m3;295000;309000;332000;333000;348000;348000;367000;347000;358000;370000;359000;340000;302000;310000;419000;428000;431000;442000;452000;462000;470000;478000;485000;493000;500000;509000;526000;546000;576000;676000;733000;792000;897000;1065000;950000;861000;892000;904000;915000;828000;527700;671400;812800;1012500;1127000;1455000;1455000;1455000;1455000;1455000;1455000;1455000;1455000;1520000;1515000;1555000;2640000;2692000;2692000;2692000;2692000;2692000;2692000 -251;'894;Zambia;1865;Industrial roundwood;5616;Import quantity;m3;;;;2900;2400;1800;1400;9800;9800;2500;9000;8500;1500;10200;900;1200;2100;2100;9700;1800;8600;8600;8600;8600;8600;8600;8600;8600;8600;;;;;0;89;89;89;325;292;105;1189;1189;1189;412;412;412;412;3840;388;627;394;626;1572;15232;3107;402;9063;10361;28249;14145;19721;16416;16096 -251;'894;Zambia;1865;Industrial roundwood;5622;Import value;1000 USD;;;;68;112;110;89;338;338;97;377;254;144;250;70;54;239;239;1179;216;1046;1046;1046;1046;1046;1046;1046;1046;1046;;;;;0;11;11;11;35;32;97;202;202;202;27;27;27;27;246;32;71;72;86;244;1023;1124;120;2173;2484;4412;2097;2424;2292;2290 -251;'894;Zambia;1865;Industrial roundwood;5916;Export quantity;m3;;;;100;500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;522;522;522;1888;743;773;600;600;600;778;778;778;778;5266;7969;3847;954;1059;1693;73528;215391;301028;95541;48615;27459;12668;33000;18048;25740 -251;'894;Zambia;1865;Industrial roundwood;5922;Export value;1000 USD;;;;1;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;69;69;69;286;155;161;87;87;87;63;63;63;63;2505;3031;1353;177;507;628;51755;60597;87132;130052;52507;32748;7244;20949;7995;9102 -251;'894;Zambia;1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;7000;11000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;20000;30000;43000;113000;160000;205000;300000;356000;300000;250000;300000;300000;300000;300000;300000;300000;300000;300000;300000;300000;300000;300000;300000;300000;300000;300000;300000;300000;300000;300000;647000;892000;892000;892000;892000;892000;892000 -251;'894;Zambia;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;70;70;70;47;29;6;200;200;200;104;104;104;104;3790;336;458;233;465;1412;15089;632;35;8589;9390;26362;13639;19079;15750;15750 -251;'894;Zambia;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;8;8;8;3;2;5;29;29;29;6;6;6;6;231;20;28;14;28;86;920;48;44;2051;2170;4207;1995;2336;2196;2196 -251;'894;Zambia;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;165;165;165;165;300;300;100;100;100;126;126;126;126;1940;502;195;577;577;82;9184;392;33;226;54;69;30;0;247;264 -251;'894;Zambia;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;20;20;20;20;15;15;21;21;21;7;7;7;7;103;27;10;31;31;4;487;29;3;26;16;13;8;16;20;18 -251;'894;Zambia;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;70;70;70;47;29;6;200;200;200;104;104;104;104;3790;336;458;233;465;1412;15089;632;35;8589;9390;26362;13639;19079;15750;15750 -251;'894;Zambia;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;8;8;8;3;2;5;29;29;29;6;6;6;6;231;20;28;14;28;86;920;48;44;2051;2170;4207;1995;2336;2196;2196 -251;'894;Zambia;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;165;165;165;165;300;300;100;100;100;126;126;126;126;1940;502;195;577;577;82;9184;392;33;226;54;69;30;0;247;264 -251;'894;Zambia;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;20;20;20;20;15;15;21;21;21;7;7;7;7;103;27;10;31;31;4;487;29;3;26;16;13;8;16;20;18 -251;'894;Zambia;1867;Industrial roundwood, non-coniferous;5516;Production;m3;295000;309000;332000;333000;348000;348000;367000;347000;358000;370000;359000;340000;302000;310000;412000;417000;419000;430000;440000;450000;458000;466000;473000;481000;488000;497000;506000;516000;533000;563000;573000;587000;597000;709000;650000;611000;592000;604000;615000;528000;227700;371400;512800;712500;827000;1155000;1155000;1155000;1155000;1155000;1155000;1155000;1155000;1220000;1215000;1255000;1993000;1800000;1800000;1800000;1800000;1800000;1800000 -251;'894;Zambia;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;278;263;99;989;989;989;308;308;308;308;50;52;169;161;161;160;143;2475;367;474;971;1887;506;642;666;346 -251;'894;Zambia;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;32;30;92;173;173;173;21;21;21;21;15;12;43;58;58;158;103;1076;76;122;314;205;102;88;96;94 -251;'894;Zambia;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;357;357;357;1723;443;473;500;500;500;652;652;652;652;3326;7467;3652;377;482;1611;64344;214999;300995;95315;48561;27390;12638;33000;17801;25476 -251;'894;Zambia;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;49;49;49;266;140;146;66;66;66;56;56;56;56;2402;3004;1343;146;476;624;51268;60568;87129;130026;52491;32735;7236;20933;7975;9084 -251;'894;Zambia;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;242;242;89;89;89;89;7;7;7;7;7;25;21;135;135;11;3;2;34;68;171;1080;450;0;24;1 -251;'894;Zambia;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;27;88;88;88;88;1;1;1;1;1;3;9;30;30;44;1;2;16;11;45;112;81;0;8;6 -251;'894;Zambia;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;1697;39;69;100;100;100;208;208;208;208;80;51;346;21;21;1611;64344;214999;300995;95315;48561;27390;12638;33000;17032;25476 -251;'894;Zambia;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;255;7;13;20;20;20;30;30;30;30;69;20;254;14;14;624;51268;60568;87129;130026;52491;32735;7236;20933;6931;8040 -251;'894;Zambia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;36;21;10;900;900;900;301;301;301;301;43;27;148;26;26;149;140;2473;333;406;800;807;56;642;642;345 -251;'894;Zambia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;5;3;4;85;85;85;20;20;20;20;14;9;34;28;28;114;102;1074;60;111;269;93;21;88;88;88 -251;'894;Zambia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;357;357;357;26;404;404;400;400;400;444;444;444;444;3246;7416;3306;356;461;0;0;0;0;0;0;0;0;0;769;0 -251;'894;Zambia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;49;49;11;133;133;46;46;46;26;26;26;26;2333;2984;1089;132;462;0;0;0;0;0;0;0;0;0;1044;1044 -251;'894;Zambia;1868;Sawlogs and veneer logs;5516;Production;m3;110000;119000;137000;132000;141000;135000;147000;121000;125000;130000;112000;86000;41000;41000;142000;141000;133000;133000;133000;133000;133000;133000;133000;133000;133000;133000;141000;151000;171000;262000;307000;356000;450000;606000;480000;380000;400000;400000;400000;313000;325700;338400;350800;363500;375000;375000;375000;375000;375000;375000;375000;375000;375000;440000;435000;475000;1441000;1345000;1345000;1345000;1345000;1345000;1345000 -251;'894;Zambia;1868;Sawlogs and veneer logs;5616;Import quantity;m3;;;;;200;200;100;100;100;200;1000;1000;1000;2200;200;600;2100;2100;9700;1800;8600;8600;8600;8600;8600;8600;8600;8600;8600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -251;'894;Zambia;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;;;;;5;5;12;4;4;22;106;106;106;70;20;15;239;239;1179;216;1046;1046;1046;1046;1046;1046;1046;1046;1046;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -251;'894;Zambia;1868;Sawlogs and veneer logs;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -251;'894;Zambia;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -251;'894;Zambia;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;;;;;;;;;;;;;;;7000;11000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;20000;30000;43000;113000;160000;205000;300000;356000;300000;250000;300000;300000;300000;300000;300000;300000;300000;300000;300000;300000;300000;300000;300000;300000;300000;300000;300000;300000;300000;300000;528000;625000;625000;625000;625000;625000;625000 -251;'894;Zambia;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;1400;1400;9000;1400;8400;8400;8400;8400;8400;8400;8400;8400;8400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -251;'894;Zambia;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;105;105;1075;176;1019;1019;1019;1019;1019;1019;1019;1019;1019;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -251;'894;Zambia;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;110000;119000;137000;132000;141000;135000;147000;121000;125000;130000;112000;86000;41000;41000;135000;130000;121000;121000;121000;121000;121000;121000;121000;121000;121000;121000;121000;121000;128000;149000;147000;151000;150000;250000;180000;130000;100000;100000;100000;13000;25700;38400;50800;63500;75000;75000;75000;75000;75000;75000;75000;75000;75000;140000;135000;175000;913000;720000;720000;720000;720000;720000;720000 -251;'894;Zambia;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;;;;;200;200;100;100;100;200;1000;1000;1000;2200;200;600;700;700;700;400;200;200;200;200;200;200;200;200;200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -251;'894;Zambia;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;;;;;5;5;12;4;4;22;106;106;106;70;20;15;134;134;104;40;27;27;27;27;27;27;27;27;27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -251;'894;Zambia;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -251;'894;Zambia;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -251;'894;Zambia;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119000;267000;267000;267000;267000;267000;267000 -251;'894;Zambia;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119000;267000;267000;267000;267000;267000;267000 -251;'894;Zambia;1871;Other industrial roundwood;5516;Production;m3;185000;190000;195000;201000;207000;213000;220000;226000;233000;240000;247000;254000;261000;269000;277000;287000;298000;309000;319000;329000;337000;345000;352000;360000;367000;376000;385000;395000;405000;414000;426000;436000;447000;459000;470000;481000;492000;504000;515000;515000;202000;333000;462000;649000;752000;1080000;1080000;1080000;1080000;1080000;1080000;1080000;1080000;1080000;1080000;1080000;1080000;1080000;1080000;1080000;1080000;1080000;1080000 -251;'894;Zambia;1871;Other industrial roundwood;5616;Import quantity;m3;;;;2900;2200;1600;1300;9700;9700;2300;8000;7500;500;8000;700;600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -251;'894;Zambia;1871;Other industrial roundwood;5622;Import value;1000 USD;;;;68;107;105;77;334;334;75;271;148;38;180;50;39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -251;'894;Zambia;1871;Other industrial roundwood;5916;Export quantity;m3;;;;100;500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -251;'894;Zambia;1871;Other industrial roundwood;5922;Export value;1000 USD;;;;1;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -251;'894;Zambia;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;185000;190000;195000;201000;207000;213000;220000;226000;233000;240000;247000;254000;261000;269000;277000;287000;298000;309000;319000;329000;337000;345000;352000;360000;367000;376000;385000;395000;405000;414000;426000;436000;447000;459000;470000;481000;492000;504000;515000;515000;202000;333000;462000;649000;752000;1080000;1080000;1080000;1080000;1080000;1080000;1080000;1080000;1080000;1080000;1080000;1080000;1080000;1080000;1080000;1080000;1080000;1080000 -251;'894;Zambia;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;2900;2200;1600;1300;9700;9700;2300;8000;7500;500;8000;700;600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -251;'894;Zambia;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;68;107;105;77;334;334;75;271;148;38;180;50;39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -251;'894;Zambia;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;;;;100;500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -251;'894;Zambia;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;;;;1;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -251;'894;Zambia;1630;Wood charcoal;5510;Production;t;94825;99655;104732;408000;419000;430000;442000;454000;460000;481000;487000;500000;526000;547000;564000;584000;600000;620000;618000;649000;682000;715000;753000;790000;835000;878000;878000;878000;894000;924000;953000;983000;1013000;1041000;1041000;1041000;1041000;1041000;1041000;810000;842000;875000;910000;947000;985000;1024000;1065000;1108000;1152000;1198000;1246000;1296000;1296000;1296000;1296000;1296000;1296000;1296000;1296000;1296000;1296000;1296000;1296000 -251;'894;Zambia;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;1;1;1;1;1;1;1;1;1;11;2;69;12;4;6;6;9;14;34;12;1;21;2;3;16 -251;'894;Zambia;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;1;1;1;1;1;1;1;1;1;8;2;26;12;6;7;6;8;20;16;14;21;20;35;18;21 -251;'894;Zambia;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;815;4900;2000;0;0;0;0;0;0;0;0;0;0;0;0;0;76;76;64;64;64;64;58;212;124;124;107;42;43;43;91;91 -251;'894;Zambia;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;281;1267;600;0;0;0;0;0;0;0;0;0;0;0;0;0;17;17;21;21;21;21;5;36;55;55;92;35;14;14;62;62 -251;'894;Zambia;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;126000;201000;201000;201000;201000;201000;201000 -251;'894;Zambia;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;13;13;13;13;13;88;88;88;88;81;109;109;94;94;50;5;18;116;158;184;1328;2761;85;224;37 -251;'894;Zambia;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;0;4;4;4;4;9;20;20;13;13;11;9;12;44;72;111;98;54;82;72;38 -251;'894;Zambia;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;349;349;349;349;63;72;108;423;423;1029;358;203;203;203;53;53;53;53;53;53 -251;'894;Zambia;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;17;17;5;14;42;83;83;94;163;35;35;35;12;12;12;12;12;12 -251;'894;Zambia;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59000;134000;134000;134000;134000;134000;134000 -251;'894;Zambia;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;12;12;12;12;12;12;5;33;33;92;92;48;3;4;112;84;23;613;2748;84;52;12 -251;'894;Zambia;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;1;1;1;1;6;17;17;7;7;5;7;2;37;47;20;66;46;69;24;19 -251;'894;Zambia;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;305;305;305;305;19;28;64;394;394;1000;329;46;46;46;46;46;46;46;46;46 -251;'894;Zambia;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;15;3;12;40;75;75;86;155;11;11;11;11;11;11;11;11;11 -251;'894;Zambia;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;10000;30000;53000;50000;59000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000 -251;'894;Zambia;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;18;31;1;1;1;1;1;76;76;76;76;76;76;76;2;2;2;2;14;4;74;161;715;13;1;172;25 -251;'894;Zambia;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1;2;0;0;0;0;0;3;3;3;3;3;3;3;6;6;6;2;10;7;25;91;32;8;13;48;19 -251;'894;Zambia;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;44;44;44;44;44;44;29;29;29;29;157;157;157;7;7;7;7;7;7 -251;'894;Zambia;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;8;8;8;8;24;24;24;1;1;1;1;1;1 -251;'894;Zambia;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35000;46000;46000;46000;46000;46000;46000 -251;'894;Zambia;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;29;13;413.07;499 -251;'894;Zambia;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;20;83;261.01;424 -251;'894;Zambia;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30;30;91;106 -251;'894;Zambia;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;13;13 -251;'894;Zambia;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23000;29000;29000;29000;29000;29000;29000 -251;'894;Zambia;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;2;2;2.08;3 -251;'894;Zambia;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;4;4.01;1 -251;'894;Zambia;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15 -251;'894;Zambia;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0 -251;'894;Zambia;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12000;17000;17000;17000;17000;17000;17000 -251;'894;Zambia;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;27;11;411;496 -251;'894;Zambia;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;19;79;257;423 -251;'894;Zambia;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30;30;91;91 -251;'894;Zambia;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;13;13 -251;'894;Zambia;1872;Sawnwood;5516;Production;m3;31000;35100;51000;49500;53100;50100;51800;54000;49000;50000;46000;31000;17000;17000;46000;41000;42000;42000;42000;42000;42000;42000;50000;50000;50000;67000;51000;76000;101000;81000;94000;112000;318000;367000;320000;245000;157000;157000;157000;157000;157000;157000;157000;157000;157000;157000;157000;157000;157000;157000;157000;157000;157000;157000;157000;157000;157000;170000;190000;190000;245000;245000;245000 -251;'894;Zambia;1872;Sawnwood;5616;Import quantity;m3;;;;32500;44300;54400;59300;62200;62200;47900;58000;55300;27900;51200;47100;7100;10000;13100;8800;14100;6100;6100;6100;6100;1100;1000;1000;1000;1000;0;0;0;3;3;111;111;21;251;23;27;1400;1400;1400;1171;1171;1171;1171;5448;2207;5457;8446;405;7736;5821;5020;2675;1469;1335;1857;9220;48042;55904;55904 -251;'894;Zambia;1872;Sawnwood;5622;Import value;1000 USD;;;;1519;1964;2483;3022;3220;3220;2826;3316;3174;1870;4667;6284;924;1347;1489;1394;1664;748;748;748;748;121;128;128;128;128;0;0;0;5;5;35;35;12;71;4;6;63;63;63;214;214;214;214;604;296;552;859;418;1073;1740;2046;919;580;498;543;960;5536;5718;5718 -251;'894;Zambia;1872;Sawnwood;5916;Export quantity;m3;;;;23900;23000;17800;15700;16400;16400;11700;9800;2000;;;600;;;;;;;;;;;;0;;;;;2292;7;80;3434;2294;235;1812;26336;276;1200;1200;1605;5586;5586;5586;5586;25489;11866;25210;27803;15198;17827;13309;28383;11320;7849;15334;28095;49035;80510;63574;95225 -251;'894;Zambia;1872;Sawnwood;5922;Export value;1000 USD;;;;1143;1254;973;837;893;893;699;586;140;;;31;;;;;;;;;;;;0;;;;;501;3;48;792;600;145;452;418;334;701;701;964;1025;1025;1025;1025;3241;3153;9876;12461;7554;9397;7495;8399;6509;4973;10508;13637;14497;19115;13581;35297 -251;'894;Zambia;1632;Sawnwood, coniferous;5516;Production;m3;500;550;3000;4750;5050;5050;6400;4500;4500;5000;10000;2500;1500;1500;3500;3000;4000;4000;4000;4000;4000;4000;5000;5000;5000;32000;20000;45000;36000;53000;62000;78000;300000;340000;300000;230000;145000;145000;145000;145000;145000;145000;145000;145000;145000;145000;145000;145000;145000;145000;145000;145000;145000;145000;145000;145000;145000;145000;145000;145000;145000;145000;145000 -251;'894;Zambia;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;26700;35300;44850;48000;48300;48300;37600;44000;45500;24700;40400;43600;5300;7800;10900;8500;13000;5000;5000;5000;5000;0;0;0;0;0;0;0;0;0;0;0;0;0;50;7;7;1000;1000;1000;1098;1098;1098;1098;4675;1836;4023;4846;355;3933;1840;3124;2047;946;1089;1718;1293;1042;1042;1042 -251;'894;Zambia;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;1074;1357;1819;2238;2207;2207;2008;2246;2583;1596;3604;5781;724;1139;1281;1365;1543;627;627;627;627;0;0;0;0;0;0;0;0;0;0;0;0;0;10;1;1;33;33;33;191;191;191;191;421;214;320;477;303;608;743;799;509;238;315;448;306;272;272;272 -251;'894;Zambia;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;984;2;38;1440;300;233;943;238;16;1000;1000;1000;5236;5236;5236;5236;4379;8918;7800;6627;6627;6082;8277;16017;1350;29;437;2317;332;527;405;225 -251;'894;Zambia;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;170;1;9;255;63;144;134;93;9;638;638;638;875;875;875;875;1253;1672;2426;2763;2763;2723;2936;3962;238;7;129;672;100;45;128;52 -251;'894;Zambia;1633;Sawnwood, non-coniferous;5516;Production;m3;30500;34550;48000;44750;48050;45050;45400;49500;44500;45000;36000;28500;15500;15500;42500;38000;38000;38000;38000;38000;38000;38000;45000;45000;45000;35000;31000;31000;65000;28000;32000;34000;18000;27000;20000;15000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;12000;25000;45000;45000;100000;100000;100000 -251;'894;Zambia;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;5800;9000;9550;11300;13900;13900;10300;14000;9800;3200;10800;3500;1800;2200;2200;300;1100;1100;1100;1100;1100;1100;1000;1000;1000;1000;;;;3;3;111;111;21;201;16;20;400;400;400;73;73;73;73;773;371;1434;3600;50;3803;3981;1896;628;523;246;139;7927;47000;54862;54862 -251;'894;Zambia;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;445;607;664;784;1013;1013;818;1070;591;274;1063;503;200;208;208;29;121;121;121;121;121;121;128;128;128;128;;;;5;5;35;35;12;61;3;5;30;30;30;23;23;23;23;183;82;232;382;115;465;997;1247;410;342;183;95;654;5264;5446;5446 -251;'894;Zambia;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;23900;23000;17800;15700;16400;16400;11700;9800;2000;;;600;;;;;;;;;;;;0;;;;;1308;5;42;1994;1994;2;869;26098;260;200;200;605;350;350;350;350;21110;2948;17410;21176;8571;11745;5032;12366;9970;7820;14897;25778;48703;79983;63169;95000 -251;'894;Zambia;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;1143;1254;973;837;893;893;699;586;140;;;31;;;;;;;;;;;;0;;;;;331;2;39;537;537;1;318;325;325;63;63;326;150;150;150;150;1988;1481;7450;9698;4791;6674;4559;4437;6271;4966;10379;12965;14397;19070;13453;35245 -251;'894;Zambia;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;10000;10000;17000;19000;19000;26000;30000;900;850;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;4000;4000;4000;4000;4000;4000;4000;4000;4000 -251;'894;Zambia;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;100;100;100;100;200;1100;400;900;2200;3000;1600;5000;1400;3200;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;35;1;77;77;77;121;101;101;101;101;101;298;298;298;298;28;171;53;130;71;653;738;481;195;100;142;229;16;63;30;31 -251;'894;Zambia;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;49;24;24;41;91;135;61;175;362;582;318;1087;368;745;858;858;858;858;858;858;858;858;858;858;858;858;35;3;46;46;46;50;132;132;132;132;132;232;232;232;232;104;171;107;225;112;322;567;326;132;64;109;144;50;39;54;32 -251;'894;Zambia;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;86;86;86;183;25;101;84;84;84;84;74;77;1;0;84;24;0;0;892 -251;'894;Zambia;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;67;67;67;111;14;32;23;23;23;23;10;22;1;0;55;312;271;343;343 -251;'894;Zambia;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;1700;4100;4100;4000;3000;3700;3700;3700;3700;3700;3000;7500;6000;7600;6800;5500;8600;17000;16700;16900;16900;16900;16900;16900;16900;16900;16900;16900;16900;16900;16900;16900;16900;16900;16900;16900;16900;16900;16900;16900;16900;16900;16900;21000;21000;21000;21000;21000;21000;21000;21000;21000 -251;'894;Zambia;1873;Wood-based panels;5616;Import quantity;m3;1600;900;800;3700;7200;10275;18775;46696;46696;25412;17512;15127;8742;18548;26958;17100;9900;11900;7300;10100;8200;8200;8200;8200;8200;6900;6900;6900;6900;6800;6800;3373;3600;5;504;504;172;802;6848;5827;7141;7141;7141;3707;3707;3707;3707;3646;4452;5141;9857;7133;16609;15328;15854;18130;19352;22476;24694;20010;26710.28;30895;32190 -251;'894;Zambia;1873;Wood-based panels;5622;Import value;1000 USD;141;94;84;501;941;1228;1841;1577;1577;2572;1218;1164;1161;2360;2243;942;661;1377;1003;1471;885;885;885;885;885;425;425;425;425;414;414;360;450;4;142;142;86;231;179;206;406;406;406;833;833;833;833;2492;2821;3943;7876;4564;10620;8898;7911;7506;8714;9676;8936;7559;9498.88;13201;13789 -251;'894;Zambia;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;80;43;142;142;142;3674;3674;3674;3674;2698;1324;3013;2819;1460;2013;1308;1170;453;317;224;193;454;1182.6;859;335 -251;'894;Zambia;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;22;7;51;51;51;672;672;672;672;1487;681;1478;1393;858;1194;859;660;268;134;79;131;184;386;274;95 -251;'894;Zambia;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;1700;4100;4100;4000;3000;3700;3700;3700;3700;3700;3000;2500;2000;1800;1600;1800;1500;1000;700;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;900;5000;5000;5000;5000;5000;5000;5000;5000;5000 -251;'894;Zambia;1640;Plywood and LVL;5616;Import quantity;m3;;;;2000;3900;5800;11300;8800;8800;16500;9000;13600;7300;14200;14800;5000;4400;7200;4000;6800;4900;4900;4900;4900;4900;3600;3600;3600;3600;3600;3600;173;400;5;149;149;29;241;245;2;400;400;400;689;689;689;689;908;1152;1789;2302;1267;4039;2233;3708;5117;5186;6936;7722;4255;4950;7923;5946 -251;'894;Zambia;1640;Plywood and LVL;5622;Import value;1000 USD;;;;287;524;751;1227;931;931;2262;968;1088;1072;2141;2090;734;501;1258;701;1387;583;583;583;583;583;123;123;123;123;123;123;69;159;4;43;43;37;63;46;1;80;80;80;244;244;244;244;830;789;1564;1937;1148;3244;2486;2245;2161;2560;3012;2704;1852;2141;3856;2730 -251;'894;Zambia;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;1;100;100;100;198;198;198;198;1026;143;131;116;116;62;63;30;15;42;50;50;2;0;0;20 -251;'894;Zambia;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;0;44;44;44;65;65;65;65;718;178;140;65;65;29;66;11;41;8;18;29;4;2;26;6 -251;'894;Zambia;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12 -251;'894;Zambia;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4 -251;'894;Zambia;1646;Particle board and OSB (1961-1994);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;5000;4000;5800;5200;3700;7100;16000;16000;16000;16000;16000;16000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -251;'894;Zambia;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;1600;900;800;300;600;600;800;2000;2000;700;300;200;200;200;200;200;100;100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -251;'894;Zambia;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;141;94;84;37;72;71;85;157;157;80;27;29;29;29;29;86;35;35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -251;'894;Zambia;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -251;'894;Zambia;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -251;'894;Zambia;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;16000;16000;16000;16000 -251;'894;Zambia;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;212;212;0;372;45;145;397;397;397;2079;2079;2079;2079;1624;1720;2228;4764;952;10147;9659;7877;8516;9469;9469;12152;10769;15437.97;15744;19787 -251;'894;Zambia;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;50;0;93;35;34;114;114;114;341;341;341;341;1139;1061;1604;4006;659;5770;4180;3148;3158;3668;3668;3842;3349;4870.88;5962;7683 -251;'894;Zambia;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;42;42;42;42;42;3341;3341;3341;3341;1611;1136;2249;2070;768;1375;1050;945;243;106;106;99;216;1109.6;625;205 -251;'894;Zambia;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;7;7;7;7;7;565;565;565;565;697;465;989;979;475;847;712;568;146;34;34;70;130;356;171;43 -251;'894;Zambia;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1104;3;3;3;3;86;86;86;86;31;277;3;33;33;7;7;3;1;8;22;21;236;317;40;7 -251;'894;Zambia;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;2;2;2;2;14;14;14;14;13;99;3;8;8;19;19;15;1;13;19;6;58;60;18;2 -251;'894;Zambia;1874;Fibreboard;5616;Import quantity;m3;;;;1400;2700;3875;6675;35896;35896;8212;8212;1327;1242;4148;11958;11900;5400;4600;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3200;3200;3200;3200;0;143;143;143;189;5454;5677;6341;6341;6341;853;853;853;853;1083;1303;1121;2758;4881;2416;3429;4266;4496;4689;6049;4799;4750;6005.31;7188;6450 -251;'894;Zambia;1874;Fibreboard;5622;Import value;1000 USD;;;;177;345;406;529;489;489;230;223;47;60;190;124;122;125;84;302;84;302;302;302;302;302;302;302;302;302;291;291;291;291;0;49;49;49;75;87;169;210;210;210;234;234;234;234;510;872;772;1925;2749;1587;2213;2503;2186;2473;2977;2384;2300;2427;3365;3374 -251;'894;Zambia;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;135;135;135;135;61;45;633;633;576;576;195;195;195;169;68;44;236;73;234;110 -251;'894;Zambia;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;42;42;42;42;72;38;349;349;318;318;81;81;81;92;27;32;50;28;77;46 -251;'894;Zambia;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;37;424;400;400;400;357;357;357;357;882;1052;826;2351;2962;1104;1671;1970;3469;1718;1950;1004;615;1497.55;2291;1649 -251;'894;Zambia;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;1;104;86;86;86;166;166;166;166;366;653;568;1604;2116;776;954;1069;1588;875;894;654;389;653;1164;1040 -251;'894;Zambia;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;85;85;85;30;30;544;544;544;544;163;163;163;163;36;12;30;2;30;1 -251;'894;Zambia;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;34;34;34;20;20;291;291;291;291;56;56;56;56;3;8;7;4;7;0 -251;'894;Zambia;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;74;74;99;5241;5241;5241;5241;5241;114;114;114;114;42;92;162;392;1898;1201;1223;1363;877;2114;3351;3113;3350;4136.76;3726;4730 -251;'894;Zambia;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;38;38;42;63;63;63;63;63;20;20;20;20;25;53;124;309;575;739;916;980;525;1071;1662;1411;1551;1686;1934;2320 -251;'894;Zambia;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;10;84;84;27;27;27;27;27;1;27;27;15;15;96;1 -251;'894;Zambia;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;4;44;44;13;13;11;11;11;22;10;10;7;10;35;11 -251;'894;Zambia;1650;Other fibreboard;5616;Import quantity;m3;;;;400;500;400;3200;32000;32000;4000;4000;800;400;1200;10800;10800;4500;4500;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;0;69;69;69;18;176;12;700;700;700;382;382;382;382;159;159;133;15;21;111;535;933;150;857;748;682;785;371;1171;71 -251;'894;Zambia;1650;Other fibreboard;5622;Import value;1000 USD;;;;61;210;207;246;193;193;40;45;12;23;26;57;57;73;73;291;73;291;291;291;291;291;291;291;291;291;291;291;291;291;0;11;11;11;2;23;2;61;61;61;48;48;48;48;119;166;80;12;58;72;343;454;73;527;421;319;360;88;267;14 -251;'894;Zambia;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;50;50;50;50;30;5;5;5;5;5;5;5;5;5;5;5;191;56;108;108 -251;'894;Zambia;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;8;8;8;8;19;14;14;14;14;14;14;14;14;14;14;14;36;14;35;35 -251;'894;Zambia;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;1000;2200;3475;3475;3896;3896;4212;4212;527;842;2948;1158;1100;900;100;100;100;100;100;100;100;100;100;100;100;100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -251;'894;Zambia;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;116;135;199;283;296;296;190;178;35;37;164;67;65;52;11;11;11;11;11;11;11;11;11;11;11;11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -251;'894;Zambia;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;202;202;202;199;391;396;396;396;396;2329;2329;2329;2329;771;840;543;544;271;881;1185;1346;670;1588;1531;2964;2479;5257.66;4646.15;4300.15 -251;'894;Zambia;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;55;55;55;87;89;89;89;89;290;290;290;290;130;146;133;230;159;393;496;512;168;601;575;858;587;1904;1217.06;1430.06 -251;'894;Zambia;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7819;7819;7819;7819;3573;2584;2131;296;210;421;333;1151;824;1082;1577;100;218;487;1088;387 -251;'894;Zambia;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;774;774;774;774;656;472;3169;82;89;142;65;105;91;102;117;90;63;74;256;73 -251;'894;Zambia;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;28;33;29;34;34;34;34;96;96;96;96;96;118;87;171;171;70;218;163;78;171;114;341;309;1737;583.15;1236.15 -251;'894;Zambia;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22;22;17;30;32;32;32;32;42;42;42;42;42;59;98;143;143;173;211;142;62;144;118;396;213;1225;457.06;717.06 -251;'894;Zambia;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112;170;1860;25;25;25;26;26;26;26;26;96;74;72;77;79 -251;'894;Zambia;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;158;177;3150;63;63;63;48;48;48;48;48;89;44;51;59;51 -251;'894;Zambia;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;28;11;11;16;16;16;16;94;94;94;94;94;111;80;106;106;68;114;114;29;167;107;188;279;2988.22;5543.15;5952.15 -251;'894;Zambia;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22;22;5;5;7;7;7;7;41;41;41;41;41;51;90;110;110;171;105;105;25;144;100;127;158;2503.09;7135.06;8203.06 -251;'894;Zambia;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;24;24;24;24;24;24;24;24;24;24;24;94;96;96;73;73 -251;'894;Zambia;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;3;3;3;3;3;3;3;3;3;3;3;44;44;44;41;41 -251;'894;Zambia;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0 -251;'894;Zambia;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0 -251;'894;Zambia;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;1;1 -251;'894;Zambia;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -251;'894;Zambia;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5;5;5;22;22;22;22;22;0;0;0;;;;;;; -251;'894;Zambia;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;12;12;12;12;12;0;0;0;;;;;;; -251;'894;Zambia;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;28;11;11;11;11;11;11;89;89;89;89;89;89;58;84;84;46;114;114;29;167;107;188;279;1689;583.15;1236.15 -251;'894;Zambia;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22;22;5;5;5;5;5;5;39;39;39;39;39;39;78;98;98;159;105;105;25;144;100;127;158;1143;457.06;717.06 -251;'894;Zambia;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;72;72;72;72 -251;'894;Zambia;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;41;41;41;41 -251;'894;Zambia;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;5;5;5;5;5;5;2;2;2;2;0;0.15;0.15 -251;'894;Zambia;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;10;10;10;10;10;10;0;0;0;0;0;0.06;0.06 -251;'894;Zambia;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;72;72;72;72 -251;'894;Zambia;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;41;41;41;41 -251;'894;Zambia;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;28;11;11;11;11;11;11;79;79;79;79;79;79;26;63;63;25;109;109;24;165;105;181;259;1673;583;1236 -251;'894;Zambia;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22;22;5;5;5;5;5;5;34;34;34;34;34;34;46;71;71;132;95;95;15;144;100;124;145;1128;456;717 -251;'894;Zambia;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;18;16;0;0 -251;'894;Zambia;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;13;15;1;0 -251;'894;Zambia;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -251;'894;Zambia;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -251;'894;Zambia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;10;16;16;16;16;0;0;0;;;;;;; -251;'894;Zambia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;17;17;17;17;0;0;0;;;;;;; -251;'894;Zambia;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1299.22;4960;4716 -251;'894;Zambia;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1360.09;6678;7486 -251;'894;Zambia;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;24;24;24;24;24;24;24;24;24;24;24;24;24;24;0;0 -251;'894;Zambia;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;3;3;3;3;3;3;3;3;3;3;3;3;3;3;0;0 -251;'894;Zambia;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;18;18;18;18;18;2;2;2;2;2;7;7;65;65;2;104;49;49;4;7;153;30;48;0;0 -251;'894;Zambia;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;25;25;25;25;25;1;1;1;1;1;8;8;33;33;2;106;37;37;0;18;269;55;82;0;0 -251;'894;Zambia;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112;170;1860;25;25;25;26;26;26;26;26;26;2;0;4;6 -251;'894;Zambia;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;158;177;3150;63;63;63;48;48;48;48;48;48;3;10;18;10 -251;'894;Zambia;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;2;2;13;13;13;13;13;13;22;22;6;0;0;87;0 -251;'894;Zambia;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;2;2;4;4;4;4;4;4;4;4;4;0;0;30;0 -251;'894;Zambia;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;4;4;0;0 -251;'894;Zambia;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;10;10;0;0 -251;'894;Zambia;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;174;174;174;166;362;362;362;362;362;2233;2233;2233;2233;675;722;456;373;100;811;967;1183;592;1417;1417;2623;2170;3520.66;4063;3064 -251;'894;Zambia;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33;33;38;57;57;57;57;57;248;248;248;248;88;87;35;87;16;220;285;370;106;457;457;462;374;679;760;713 -251;'894;Zambia;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7819;7819;7819;7819;3461;2414;271;271;185;396;307;1125;798;1056;1551;4;144;415;1011;308 -251;'894;Zambia;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;774;774;774;774;498;295;19;19;26;79;17;57;43;54;69;1;19;23;197;22 -251;'894;Zambia;1876;Paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;7500;5000;3000;2000;5000;3000;2000;3500;1900;2000;2000;4000;2000;2000;2000;3900;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;1000;1000;1000;1000;1000;1000;1000 -251;'894;Zambia;1876;Paper and paperboard;5610;Import quantity;t;;;;5500;7000;10100;11500;18000;18000;16200;20800;15700;16600;17400;18500;16400;16800;16900;18300;18800;7500;6400;6400;6400;5800;6000;8500;8500;7500;10100;10100;9000;5449;2652;4847;4847;3172;11881;34156;2726;3900;3900;3900;27107;27107;27107;27107;32268;26766;31161;37033;34104;34755;50553;29474;38243;49111;57919;69467;61429;59328.35;64215;73855 -251;'894;Zambia;1876;Paper and paperboard;5622;Import value;1000 USD;;;;1804;2594;3443;3528;5695;5695;4396;5347;4680;5392;8946;12518;10908;10947;9387;12963;18257;5850;4840;4840;4840;4440;4170;5365;5415;5465;11174;10174;9103;5772;2250;4181;4181;2278;7672;11712;1947;2957;2957;2957;19630;19630;19630;19630;38807;35897;44069;50035;31178;41127;58524;26813;35489;48298;63885;58239;49264;65005.14;79164;81251 -251;'894;Zambia;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;228;6;6;68;68;68;80;80;84;84;84;84;370;370;370;370;343;857;1513;1283;1281;340;700;710;660;1058;316;1141;538;351;967.99;350.99 -251;'894;Zambia;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;184;6;6;70;70;70;66;66;68;68;68;68;394;394;394;394;284;2259;2943;3394;3331;495;1257;1249;1198;1446;217;933;440;258;1011.62;1253.62 -251;'894;Zambia;2042;Graphic papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;1000;2000;1000;1000;2000;900;1000;1000;2000;1000;1000;1000;1900;;;;;;;;;;;;;;;;;;;;;;;;;; -251;'894;Zambia;2042;Graphic papers;5610;Import quantity;t;;;;3300;2800;3300;5200;3900;3900;7400;9400;7300;5800;6100;8700;5100;5700;6200;6200;9300;4800;4400;4400;4400;3800;3800;6300;6300;5300;7000;7000;4900;3400;2069;2988;2988;2872;7212;24480;656;700;700;700;13360;13360;13360;13360;15160;11384;12496;15298;15314;17088;20217;10280;14924;16889;17623;18918;17722;16350.08;17593;19216 -251;'894;Zambia;2042;Graphic papers;5622;Import value;1000 USD;;;;909;874;993;1250;904;904;2236;2705;2141;2224;4039;6463;3887;3604;3247;4147;8577;3650;3200;3200;3200;2800;2906;4101;4151;4201;5200;5200;4654;3890;1795;2418;2418;2098;4522;4387;643;723;723;723;10509;10509;10509;10509;17162;12377;14167;18637;15044;18227;22807;9569;12797;16893;19767;18019;15442;17675.94;23980;23154 -251;'894;Zambia;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;20;20;20;;;;;;;41;41;41;41;39;165;113;69;66;187;184;192;188;169;169;481;482;247;467;202 -251;'894;Zambia;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;28;28;28;;;;;;;32;32;32;32;12;129;125;63;60;272;45;89;53;83;83;368;330;133;532;1131 -251;'894;Zambia;1671;Newsprint;5610;Import quantity;t;;;;1000;1100;1500;2300;2100;2100;2100;2800;2000;2000;2100;4300;1200;2100;2900;2100;3000;3000;3000;3000;3000;3000;1500;4000;4000;3000;4000;4000;1600;1700;1700;2500;2500;2500;3822;3231;90;100;100;100;117;117;117;117;4016;3181;4782;6322;8202;9196;8740;6179;4843;4159;5049;3600;3988;2896.14;3719;4551 -251;'894;Zambia;1671;Newsprint;5622;Import value;1000 USD;;;;181;226;226;377;307;307;285;384;318;507;1099;2109;484;912;996;841;1900;1950;2000;2000;2000;2100;705;1900;1950;2000;2700;2700;2189;1789;1500;1762;1762;1762;1582;1538;79;41;41;41;60;60;60;60;3648;2965;4423;6361;6231;7479;8026;4784;2707;2986;4518;2212;2058;2242.64;4414;4950 -251;'894;Zambia;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;25;25;22;124;124;124;124;124;124;124;124;124;124;124 -251;'894;Zambia;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;13;13;10;17;17;17;17;17;17;17;17;17;17;17 -251;'894;Zambia;1674;Printing and writing papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;1000;2000;1000;1000;2000;900;1000;1000;2000;1000;1000;1000;1900;;;;;;;;;;;;;;;;;;;;;;;;;; -251;'894;Zambia;1674;Printing and writing papers;5610;Import quantity;t;;;;2300;1700;1800;2900;1800;1800;5300;6600;5300;3800;4000;4400;3900;3600;3300;4100;6300;1800;1400;1400;1400;800;2300;2300;2300;2300;3000;3000;3300;1700;369;488;488;372;3390;21249;566;600;600;600;13243;13243;13243;13243;11144;8203;7714;8976;7112;7892;11477;4101;10081;12730;12574;15318;13734;13453.94;13874;14665 -251;'894;Zambia;1674;Printing and writing papers;5622;Import value;1000 USD;;;;728;648;767;873;597;597;1951;2321;1823;1717;2940;4354;3403;2692;2251;3306;6677;1700;1200;1200;1200;700;2201;2201;2201;2201;2500;2500;2465;2101;295;656;656;336;2940;2849;564;682;682;682;10449;10449;10449;10449;13514;9412;9744;12276;8813;10748;14781;4785;10090;13907;15249;15807;13384;15433.29;19566;18204 -251;'894;Zambia;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;20;20;20;;;;;;;41;41;41;41;37;163;88;44;44;63;60;68;64;45;45;357;358;123;343;78 -251;'894;Zambia;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;28;28;28;;;;;;;32;32;32;32;12;129;112;50;50;255;28;72;36;66;66;351;313;116;515;1114 -251;'894;Zambia;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;49;49;100;100;100;3103;3103;3103;3103;173;146;263;157;283;800;1481;1760;1682;1747;1747;1217;1193;1452.63;798;511 -251;'894;Zambia;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;63;63;63;63;63;2448;2448;2448;2448;237;250;283;330;334;1029;1834;1876;1733;1790;1790;1410;1423;1501.1;1140;667 -251;'894;Zambia;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;9;4;1;1;20;20;20;20;1;1;24;4;4;1;0 -251;'894;Zambia;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;6;0;0;6;6;6;6;36;36;38;3;3;0;0 -251;'894;Zambia;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3321;20820;489;400;400;400;7881;7881;7881;7881;6875;6984;6078;7173;6262;5552;8295;1547;6725;8481;8353;10859;9197;8679.5;10244;11115 -251;'894;Zambia;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2464;2388;471;553;553;553;6219;6219;6219;6219;8505;7997;7693;9566;7561;7146;10199;1774;6560;8974;10210;11141;8727;9445.8;13463;13199 -251;'894;Zambia;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;32;32;32;28;154;34;34;34;22;19;19;19;19;19;332;351;102;342;78 -251;'894;Zambia;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25;25;25;5;122;49;49;49;242;15;15;15;15;15;311;306;109;515;1114 -251;'894;Zambia;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;380;28;100;100;100;2259;2259;2259;2259;4096;1073;1373;1646;567;1540;1701;794;1674;2502;2474;3242;3344;3321.81;2832;3039 -251;'894;Zambia;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;411;398;30;66;66;66;1782;1782;1782;1782;4772;1165;1768;2380;918;2573;2748;1135;1797;3143;3249;3256;3234;4486.39;4963;4338 -251;'894;Zambia;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;9;9;21;21;29;25;25;25;1;3;17;0;0 -251;'894;Zambia;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;1;1;7;7;51;15;15;15;2;4;4;0;0 -251;'894;Zambia;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;7500;5000;3000;1000;3000;2000;1000;1500;1000;1000;1000;2000;1000;1000;1000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;1000;1000;1000;1000;1000;1000;1000 -251;'894;Zambia;1675;Other paper and paperboard;5610;Import quantity;t;;;;2200;4200;6800;6300;14100;14100;8800;11400;8400;10800;11300;9800;11300;11100;10700;12100;9500;2700;2000;2000;2000;2000;2200;2200;2200;2200;3100;3100;4100;2049;583;1859;1859;300;4669;9676;2070;3200;3200;3200;13747;13747;13747;13747;17108;15382;18665;21735;18790;17667;30336;19194;23319;32222;40296;50549;43707;42978.27;46622;54639 -251;'894;Zambia;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;895;1720;2450;2278;4791;4791;2160;2642;2539;3168;4907;6055;7021;7343;6140;8816;9680;2200;1640;1640;1640;1640;1264;1264;1264;1264;5974;4974;4449;1882;455;1763;1763;180;3150;7325;1304;2234;2234;2234;9121;9121;9121;9121;21645;23520;29902;31398;16134;22900;35717;17244;22692;31405;44118;40220;33822;47329.21;55184;58097 -251;'894;Zambia;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;228;;0;48;48;48;80;80;84;84;84;84;329;329;329;329;304;692;1400;1214;1215;153;516;518;472;889;147;660;56;104;500.99;148.99 -251;'894;Zambia;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;184;;0;42;42;42;66;66;68;68;68;68;362;362;362;362;272;2130;2818;3331;3271;223;1212;1160;1145;1363;134;565;110;125;479.62;122.62 -251;'894;Zambia;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;186;4;200;200;200;296;296;296;296;1223;971;1527;1650;1110;2134;2617;4076;1519;6934;5973;3823;3719;5136.44;5854;8040 -251;'894;Zambia;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;226;5;149;149;149;326;326;326;326;1594;1221;1768;2226;1653;3018;3321;4039;1496;5508;5297;4938;4491;5388.17;6271;7897 -251;'894;Zambia;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;320;320;320;320;154;63;489;24;25;21;46;48;2;3;4;46;11;2;1;40 -251;'894;Zambia;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;355;355;355;355;175;79;658;95;35;81;83;31;16;8;5;55;12;8;0;28 -251;'894;Zambia;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;1000;1000;1000;1000;1000;1000;1000 -251;'894;Zambia;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4638;1369;2100;2100;2100;12069;12069;12069;12069;13437;13329;16230;18935;17456;14697;25854;14904;21218;25040;34038;46405;39733;37547.83;40499;46314 -251;'894;Zambia;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3340;832;1510;1510;1510;7483;7483;7483;7483;16273;20355;26056;26653;14023;18782;29390;12615;20406;25491;37763;34441;28568;41383.04;48269;49409 -251;'894;Zambia;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;8;8;8;8;149;626;746;1189;1189;131;469;469;469;885;142;607;27;96;498.99;106.99 -251;'894;Zambia;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;5;5;5;5;84;2007;1771;3230;3230;136;1123;1123;1123;1349;101;470;49;72;473.62;90.62 -251;'894;Zambia;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;;;;;;;;;;;;;;;;;;;;;;;;;; -251;'894;Zambia;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;;;4100;6000;5000;7200;6800;6200;6100;500;400;400;5200;1500;1100;1100;1100;1100;500;500;500;500;1600;1600;2300;249;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;; -251;'894;Zambia;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;;;766;1071;1105;1581;2066;3119;2987;605;384;589;4798;1200;900;900;900;900;456;456;456;456;2659;1659;2776;209;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;; -251;'894;Zambia;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;448;515;800;800;800;1157;1157;1157;1157;4553;4162;5218;7932;8806;6541;9588;10401;10137;17676;24463;40228;33742;29301.65;31464;37861 -251;'894;Zambia;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;256;221;442;442;442;717;717;717;717;2712;2713;3196;6663;5983;5612;7624;8362;6616;13647;20343;21622;16749;24727.9;29608;34292 -251;'894;Zambia;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;21;21;21;21;28;28;584;6;30;339;97 -251;'894;Zambia;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;21;21;21;21;0;0;423;3;20;285;75 -251;'894;Zambia;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3792;122;300;300;300;9904;9904;9904;9904;4235;6839;9025;9145;7383;6073;11570;2408;9511;5566;6905;4142;4377;6952.84;7630;6372 -251;'894;Zambia;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2869;96;260;260;260;6140;6140;6140;6140;9513;15516;20798;17777;6705;10660;17117;1878;12342;9660;13957;10179;9973;14712.79;15940;11980 -251;'894;Zambia;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;612;446;889;889;17;355;355;355;764;30;5;3;28;67;0 -251;'894;Zambia;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970;1392;2851;2851;69;1056;1056;1056;1303;9;4;4;20;118;0 -251;'894;Zambia;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;1000;1000;1000;1000;1000;1000;1000 -251;'894;Zambia;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;361;673;900;900;900;900;900;900;900;4559;2283;1966;1842;1230;2073;4686;2081;1557;1782;2654;2003;1612;1290.34;1404;2018 -251;'894;Zambia;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;163;482;737;737;737;558;558;558;558;3953;2067;2035;2195;1153;2436;4596;2366;1430;2130;3409;2621;1845;1941.35;2712;3063 -251;'894;Zambia;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;8;8;8;8;143;8;282;282;282;81;81;81;81;81;72;6;6;36;91;8 -251;'894;Zambia;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;5;5;5;5;79;32;339;339;339;11;11;11;11;11;57;8;7;25;64;9 -251;'894;Zambia;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;59;100;100;100;108;108;108;108;90;45;21;16;37;10;10;14;13;16;16;32;2;3;1;63 -251;'894;Zambia;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;33;71;71;71;68;68;68;68;95;59;27;18;182;74;53;9;18;54;54;19;1;1;9;74 -251;'894;Zambia;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;12;12;12;12;12;12;12;12;2;1.99;1.99 -251;'894;Zambia;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;35;35;35;35;35;35;35;35;35;35;7;6.62;6.62 -251;'894;Zambia;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1500;1000;1000;1000;2000;1000;0;0;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;0;0;0;0;0;0;0 -251;'894;Zambia;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;4700;5400;3400;3600;4500;3600;5200;10600;10300;11700;4300;1200;900;900;900;900;1700;1700;1700;1700;1500;1500;1800;1800;583;1859;1859;300;4669;4852;697;900;900;900;1382;1382;1382;1382;2448;1082;908;1150;224;836;1865;214;582;248;285;321;255;294;269;285 -251;'894;Zambia;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;1394;1571;1434;1587;2841;2936;4034;6738;5756;8227;4882;1000;740;740;740;740;808;808;808;808;3315;3315;1673;1673;455;1763;1763;180;3150;3759;467;575;575;575;1312;1312;1312;1312;3778;1944;2078;2519;458;1100;3006;590;790;406;1058;841;763;558;644;791 -251;'894;Zambia;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;228;;;48;48;48;80;80;80;80;80;80;1;1;1;1;1;3;165;1;1;1;1;1;1;1;1;7;18;6;1;2 -251;'894;Zambia;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;184;;;42;42;42;66;66;66;66;66;66;2;2;2;2;13;44;389;6;6;6;6;6;6;6;28;40;49;45;6;4 -251;'894;Zambia;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26797;28173;24150;15173;20075;20002;19168 -251;'894;Zambia;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1090;4819;4498;4151;3474;2398;2401 -251;'894;Zambia;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;242;107;93;12;172;87;41 -251;'894;Zambia;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;503;2356;3237;3013;2643;1871;1778 -251;'894;Zambia;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;7;30;3;128;47;18 -251;'894;Zambia;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;80;15;16;16;16;0 -251;'894;Zambia;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;221;100;63;9;44;40;23 -251;'894;Zambia;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;423;2276;3222;2997;2627;1855;1778 -251;'894;Zambia;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1893;1648;1820;707;883;1783;2638 -251;'894;Zambia;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;869;995;857;312;14;8 -251;'894;Zambia;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;467;606;510;583;1013;540;360 -251;'894;Zambia;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;339;16;2;27;2;1 -251;'894;Zambia;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2285;3698;3136;1507;2579;1600;1888 -251;'894;Zambia;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113;174;54;68;176;293;148 -251;'894;Zambia;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19387;20539;17343;11350;14855;15325;13343 -251;'894;Zambia;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;1077;192;108;132;111;365 -251;'894;Zambia;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1982;862;301;127;137;113;215 -251;'894;Zambia;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;203;2;4;46;5;4;61 -251;'894;Zambia;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;541;713;947;887;436;554;683 -251;'894;Zambia;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;2;0;57;179;103;40 -251;'894;Zambia;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28400;32746;29886;23985;34428;40144;41175 -251;'894;Zambia;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2404;2444;2218;2936;3402;6433;12686 -251;'894;Zambia;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;32;52;9;67;154;249 -251;'894;Zambia;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;35;35;35;35;1;35 -251;'894;Zambia;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3480;4209;4370;3474;5157;6223;6775 -251;'894;Zambia;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;1;8;6;1;3 -251;'894;Zambia;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3712;3815;3910;3930;4689;5871;7004 -251;'894;Zambia;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;163;121;198;273;378;214;304 -251;'894;Zambia;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9386;10131;8253;7718;11145;12357;10339 -251;'894;Zambia;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1847;2125;1807;2507;2804;5990;9922 -251;'894;Zambia;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11811;14559;13301;8854;13370;15539;16808 -251;'894;Zambia;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;359;162;177;113;179;227;2422 -181;'716;Zimbabwe;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106660;148666;112577;94208;159504.47;217756.84;178172.74 -181;'716;Zimbabwe;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22736;26280;34702;27725;31277.91;29076;29566 -181;'716;Zimbabwe;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;13281;12914;11225;10462;11177;11177;11117;11584;11584;11584;11584;11584;11584;11584;11584;17567;15975;13843;19222;30843;40717;27009;17080;16546;16954;16202;21531;9949;9144;17074;16875;38420;7316;9812;27700;28550;29244;22956;22292;23318;23387;23387;23387;41966;41966;41966;40319;30671;28536;70044;63346;76164;72244;80863;65853;67454;72958;104405;79484;62280;114009.47;162876.84;123142.74 -181;'716;Zimbabwe;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;2317;2506;2858;4810;4430;4182;4182;4182;4182;4182;4182;4182;4182;4182;4182;7255;6139;6336;6992;8369;7841;8295;6746;7911;7911;4586;9274;3663;3548;7518;7428;13603;5485;9971;25682;37220;42149;34759;31286;32240;9227;6212;17042;32617;17751;17751;22245;18903;20746;13371;9223;10072;10605;11428;17689;14251;12760;16087;26526;16852;21540.91;17820;18770 -181;'716;Zimbabwe;1861;Roundwood;5516;Production;m3;4133000;4294000;4394000;4575000;4735000;4835000;5035000;5198000;5374000;5553000;5735000;3891000;4055000;4226000;4405000;4592000;4999000;5195000;5387000;5633000;6047000;6313000;5955500;6241300;6319300;6393300;6673300;6904200;6904200;6904200;6965200;6975200;6995200;8143600;8393100;8642200;8910100;8994000;9252600;9093600;9107600;9107600;9107600;9092600;8942200;9151336;9197800;9201500;9263876;9227270;9305939;9346519;9582416;9663236;9744786;9806850;9801056;9920009;9983350;10047124;10178502;10059691;10144484 -181;'716;Zimbabwe;1861;Roundwood;5616;Import quantity;m3;12700;10500;7301;6201;7200;7200;5900;5700;5700;5700;5700;5700;5700;5700;5700;2800;2300;1900;1900;2100;3200;2800;4700;4700;4700;3000;3000;3000;3000;;;;;0;651;575;0;0;0;0;0;0;0;1091;1091;1091;1091;2003;296;2336;492;723;158;540;495;202;3142;467;583;1325;1541;1088;1656 -181;'716;Zimbabwe;1861;Roundwood;5622;Import value;1000 USD;248;239;158;131;189;189;129;125;125;125;125;125;125;125;125;98;77;52;69;76;165;96;209;209;209;358;359;359;359;;;;;0;88;79;0;0;0;0;0;0;0;70;70;70;70;188;106;310;58;92;51;73;32;55;149;90;200;391;489;151;302 -181;'716;Zimbabwe;1861;Roundwood;5916;Export quantity;m3;100;100;100;1600;22800;22800;22800;22800;22800;22800;22800;22800;22800;22800;22800;1800;2400;1400;700;600;2700;27900;10000;10200;10200;4700;26700;2400;2400;1000;277;50;21646;21646;15101;716;150;150;150;0;0;0;0;4548;4548;4548;4548;2533;970;2237;735;3598;5515;3648;1329;560;9582;7373;40656;24000;28406;20376;13834 -181;'716;Zimbabwe;1861;Roundwood;5922;Export value;1000 USD;5;5;4;25;166;166;166;166;166;166;166;166;166;166;166;37;90;67;39;54;139;1422;513;515;515;216;533;106;106;69;38;4;1550;1550;1521;131;57;57;57;0;0;0;0;429;429;429;429;441;101;219;59;210;326;415;386;180;1778;2124;8494;4239;4596;3313;2405 -181;'716;Zimbabwe;1862;Roundwood, coniferous;5516;Production;m3;120000;135000;121000;151000;164000;164000;164000;164000;164000;164000;164000;164000;164000;164000;164000;164000;344000;336000;295000;351000;420000;515000;340500;405300;330300;329300;439300;492200;492200;492200;636200;646200;666200;1080200;1115200;1146200;1191200;1035200;1050200;910200;914200;914200;914200;899200;763600;709600;675100;597100;597112;498214;498216;441218;609220;609222;609224;609226;540947;596989;596990;596992;650995;477683;492648 -181;'716;Zimbabwe;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3036;136;274;797;1541;1035;1226 -181;'716;Zimbabwe;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113;27;50;116;489;151;198 -181;'716;Zimbabwe;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8942;6036;39744;23088;27736;17829;13737 -181;'716;Zimbabwe;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1687;1824;8347;4092;4528;2842;2402 -181;'716;Zimbabwe;1863;Roundwood, non-coniferous;5516;Production;m3;4013000;4159000;4273000;4424000;4571000;4671000;4871000;5034000;5210000;5389000;5571000;3727000;3891000;4062000;4241000;4428000;4655000;4859000;5092000;5282000;5627000;5798000;5615000;5836000;5989000;6064000;6234000;6412000;6412000;6412000;6329000;6329000;6329000;7063400;7277900;7496000;7718900;7958800;8202400;8183400;8193400;8193400;8193400;8193400;8178600;8441736;8522700;8604400;8666764;8729056;8807723;8905301;8973196;9054014;9135562;9197624;9260109;9323020;9386360;9450132;9527507;9582008;9651836 -181;'716;Zimbabwe;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106;331;309;528;0;53;430 -181;'716;Zimbabwe;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;63;150;275;0;0;104 -181;'716;Zimbabwe;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;640;1337;912;912;670;2547;97 -181;'716;Zimbabwe;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91;300;147;147;68;471;3 -181;'716;Zimbabwe;1864;Wood fuel;5516;Production;m3;3950000;4100000;4200000;4350000;4500000;4600000;4800000;4963000;5139000;5318000;5500000;3656000;3820000;3991000;4170000;4357000;4552000;4747000;4966000;5148000;5492000;5662000;5547500;5728300;5870300;5983300;6135300;6260200;6260200;6260200;6260200;6260200;6260200;7000200;7210200;7426200;7649200;7879200;8115200;8115200;8115200;8115200;8115200;8115200;8115200;8380436;8461400;8543100;8625576;8708870;8787539;8866919;8947016;9027836;9109386;9171450;9233936;9296849;9360190;9423964;9488171;9552817;9617903 -181;'716;Zimbabwe;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;18;18;66;66;48;48;70;20;84;;;;;;; -181;'716;Zimbabwe;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;1;18;18;8;8;6;7;35;;;;;;; -181;'716;Zimbabwe;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;200;200;0;0;0;0;0;0;0;0;0;0;0;0;0;1;1;1;1;1;20;20;;;;;;; -181;'716;Zimbabwe;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;24;24;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;10;10;;;;;;; -181;'716;Zimbabwe;1627;Wood fuel, coniferous;5516;Production;m3;5000;5000;5000;5000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;1000;1000;2000;2000;9000;500;300;300;300;300;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;200;212;214;216;218;220;222;224;226;227;229;230;232;233;235;237 -181;'716;Zimbabwe;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -181;'716;Zimbabwe;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -181;'716;Zimbabwe;1628;Wood fuel, non-coniferous;5516;Production;m3;3945000;4095000;4195000;4345000;4490000;4590000;4790000;4953000;5129000;5308000;5490000;3646000;3810000;3981000;4160000;4347000;4542000;4746000;4965000;5146000;5490000;5653000;5547000;5728000;5870000;5983000;6135000;6260000;6260000;6260000;6260000;6260000;6260000;7000000;7210000;7426000;7649000;7879000;8115000;8115000;8115000;8115000;8115000;8115000;8115000;8380236;8461200;8542900;8625364;8708656;8787323;8866701;8946796;9027614;9109162;9171224;9233709;9296620;9359960;9423732;9487938;9552582;9617666 -181;'716;Zimbabwe;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;18;18;66;66;48;48;70;20;84;;;;;;; -181;'716;Zimbabwe;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;1;1;18;18;8;8;6;7;35;;;;;;; -181;'716;Zimbabwe;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;200;200;0;0;0;0;0;0;0;0;0;0;0;0;0;1;1;1;1;1;20;20;;;;;;; -181;'716;Zimbabwe;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;24;24;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;10;10;;;;;;; -181;'716;Zimbabwe;1865;Industrial roundwood;5516;Production;m3;183000;194000;194000;225000;235000;235000;235000;235000;235000;235000;235000;235000;235000;235000;235000;235000;447000;448000;421000;485000;555000;651000;408000;513000;449000;410000;538000;644000;644000;644000;705000;715000;735000;1143400;1182900;1216000;1260900;1114800;1137400;978400;992400;992400;992400;977400;827000;770900;736400;658400;638300;518400;518400;479600;635400;635400;635400;635400;567120;623160;623160;623160;690331;506874;526581 -181;'716;Zimbabwe;1865;Industrial roundwood;5616;Import quantity;m3;12700;10500;7301;6201;7200;7200;5900;5700;5700;5700;5700;5700;5700;5700;5700;2800;2300;1900;1900;2100;3200;2800;4700;4700;4700;3000;3000;3000;3000;;;;;0;651;575;0;0;0;0;0;0;0;1091;1091;1091;1091;1985;278;2270;426;675;110;470;475;118;3142;467;583;1325;1541;1088;1656 -181;'716;Zimbabwe;1865;Industrial roundwood;5622;Import value;1000 USD;248;239;158;131;189;189;129;125;125;125;125;125;125;125;125;98;77;52;69;76;165;96;209;209;209;358;359;359;359;;;;;0;88;79;0;0;0;0;0;0;0;70;70;70;70;187;105;292;40;84;43;67;25;20;149;90;200;391;489;151;302 -181;'716;Zimbabwe;1865;Industrial roundwood;5916;Export quantity;m3;100;100;100;1600;22800;22800;22800;22800;22800;22800;22800;22800;22800;22800;22800;1800;2400;1400;700;600;2700;27900;10000;10200;10200;4700;26700;2400;2400;1000;277;50;21646;21646;14901;516;150;150;150;0;0;0;0;4548;4548;4548;4548;2533;970;2236;734;3597;5514;3647;1309;540;9582;7373;40656;24000;28406;20376;13834 -181;'716;Zimbabwe;1865;Industrial roundwood;5922;Export value;1000 USD;5;5;4;25;166;166;166;166;166;166;166;166;166;166;166;37;90;67;39;54;139;1422;513;515;515;216;533;106;106;69;38;4;1550;1550;1497;107;57;57;57;0;0;0;0;429;429;429;429;441;101;219;59;210;326;415;376;170;1778;2124;8494;4239;4596;3313;2405 -181;'716;Zimbabwe;1866;Industrial roundwood, coniferous;5516;Production;m3;115000;130000;116000;146000;154000;154000;154000;154000;154000;154000;154000;154000;154000;154000;154000;154000;334000;335000;294000;349000;418000;506000;340000;405000;330000;329000;439000;492000;492000;492000;636000;646000;666000;1080000;1115000;1146000;1191000;1035000;1050000;910000;914000;914000;914000;899000;763400;709400;674900;596900;596900;498000;498000;441000;609000;609000;609000;609000;540720;596760;596760;596760;650762;477448;492411 -181;'716;Zimbabwe;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;76;0;0;0;0;0;0;0;0;296;296;296;296;1742;212;1741;335;652;59;440;8;37;3036;136;274;797;1541;1035;1226 -181;'716;Zimbabwe;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;9;0;0;0;0;0;0;0;0;18;18;18;18;106;13;106;20;40;4;27;0;3;113;27;50;116;489;151;198 -181;'716;Zimbabwe;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;277;50;21646;21646;14386;0;0;0;0;0;0;0;0;1161;1161;1161;1161;614;892;1829;692;3555;5171;3078;660;90;8942;6036;39744;23088;27736;17829;13737 -181;'716;Zimbabwe;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;38;4;1550;1550;1386;0;0;0;0;0;0;0;0;62;62;62;62;33;47;97;37;188;274;163;187;41;1687;1824;8347;4092;4528;2842;2402 -181;'716;Zimbabwe;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;76;0;0;0;0;0;0;0;0;296;296;296;296;1742;212;1741;335;652;59;440;8;37;3036;136;274;797;1541;1035;1226 -181;'716;Zimbabwe;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;9;0;0;0;0;0;0;0;0;18;18;18;18;106;13;106;20;40;4;27;0;3;113;27;50;116;489;151;198 -181;'716;Zimbabwe;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;277;50;21646;21646;14386;0;0;0;0;0;0;0;0;1161;1161;1161;1161;614;892;1829;692;3555;5171;3078;660;90;8942;6036;39744;23088;27736;17829;13737 -181;'716;Zimbabwe;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;38;4;1550;1550;1386;0;0;0;0;0;0;0;0;62;62;62;62;33;47;97;37;188;274;163;187;41;1687;1824;8347;4092;4528;2842;2402 -181;'716;Zimbabwe;1867;Industrial roundwood, non-coniferous;5516;Production;m3;68000;64000;78000;79000;81000;81000;81000;81000;81000;81000;81000;81000;81000;81000;81000;81000;113000;113000;127000;136000;137000;145000;68000;108000;119000;81000;99000;152000;152000;152000;69000;69000;69000;63400;67900;70000;69900;79800;87400;68400;78400;78400;78400;78400;63600;61500;61500;61500;41400;20400;20400;38600;26400;26400;26400;26400;26400;26400;26400;26400;39569;29426;34170 -181;'716;Zimbabwe;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;575;575;0;0;0;0;0;0;0;795;795;795;795;243;66;529;91;23;51;30;467;81;106;331;309;528;0;53;430 -181;'716;Zimbabwe;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;79;79;0;0;0;0;0;0;0;52;52;52;52;81;92;186;20;44;39;40;25;17;36;63;150;275;0;0;104 -181;'716;Zimbabwe;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;515;516;150;150;150;0;0;0;0;3387;3387;3387;3387;1919;78;407;42;42;343;569;649;450;640;1337;912;912;670;2547;97 -181;'716;Zimbabwe;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;111;107;57;57;57;0;0;0;0;367;367;367;367;408;54;122;22;22;52;252;189;129;91;300;147;147;68;471;3 -181;'716;Zimbabwe;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;2;26;10;11;5;5;5;9;8;106;36;0;0;0;53;430 -181;'716;Zimbabwe;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;46;12;3;8;8;8;2;4;36;13;0;0;0;0;104 -181;'716;Zimbabwe;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;149;150;150;150;150;0;0;0;0;1917;1917;1917;1917;1917;1;2;27;27;27;3;649;450;640;1337;912;912;670;1413;97 -181;'716;Zimbabwe;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;61;57;57;57;57;0;0;0;0;280;280;280;280;280;1;1;13;13;13;2;189;129;91;300;147;147;68;357;3 -181;'716;Zimbabwe;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;575;575;0;0;0;0;0;0;0;795;795;795;795;241;40;519;80;18;46;25;458;73;0;295;309;528;0;0;0 -181;'716;Zimbabwe;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;79;79;0;0;0;0;0;0;0;52;52;52;52;77;46;174;17;36;31;32;23;13;0;50;150;275;0;0;0 -181;'716;Zimbabwe;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;366;366;0;0;0;0;0;0;0;1470;1470;1470;1470;2;77;405;15;15;316;566;0;0;0;0;0;0;0;1134;0 -181;'716;Zimbabwe;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;50;0;0;0;0;0;0;0;87;87;87;87;128;53;121;9;9;39;250;0;0;0;0;0;0;0;114;0 -181;'716;Zimbabwe;1868;Sawlogs and veneer logs;5516;Production;m3;180000;191000;191000;222000;232000;232000;232000;232000;232000;232000;232000;232000;232000;232000;232000;232000;383000;383000;324000;401000;446000;539000;303000;369000;330000;311000;412000;512000;512000;512000;525000;525000;525000;967000;967000;966000;1045000;927000;931000;773000;786000;786000;786000;771000;631600;577600;543100;465100;445000;335000;335000;297000;452000;452000;452000;452000;486930;549670;549670;549670;611463;427726;442689 -181;'716;Zimbabwe;1868;Sawlogs and veneer logs;5616;Import quantity;m3;6400;5100;4301;4801;5900;5900;5900;5700;5700;5700;5700;5700;5700;5700;5700;2800;2300;1900;1900;2100;3200;2800;4700;4700;4700;3000;3000;3000;3000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -181;'716;Zimbabwe;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;112;108;84;102;129;129;129;125;125;125;125;125;125;125;125;98;77;52;69;76;165;96;209;209;209;358;359;359;359;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -181;'716;Zimbabwe;1868;Sawlogs and veneer logs;5916;Export quantity;m3;;;;;;;;;;;;;;;;400;100;100;100;200;300;300;1300;3100;3100;1300;100;1600;1600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -181;'716;Zimbabwe;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;;;;;;;;;;;;;;;;16;5;5;5;23;26;26;64;151;151;56;19;30;30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -181;'716;Zimbabwe;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;115000;130000;116000;146000;154000;154000;154000;154000;154000;154000;154000;154000;154000;154000;154000;154000;286000;286000;230000;281000;324000;431000;259000;290000;248000;261000;369000;404000;404000;404000;522000;522000;522000;921000;921000;920000;995000;883000;887000;742000;752000;752000;752000;737000;601400;544500;510000;432000;432000;323000;323000;266000;434000;434000;434000;434000;468930;531670;531670;531670;585672;412358;427321 -181;'716;Zimbabwe;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;100;200;1;1;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -181;'716;Zimbabwe;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;2;4;1;2;4;4;4;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -181;'716;Zimbabwe;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -181;'716;Zimbabwe;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;65000;61000;75000;76000;78000;78000;78000;78000;78000;78000;78000;78000;78000;78000;78000;78000;97000;97000;94000;120000;122000;108000;44000;79000;82000;50000;43000;108000;108000;108000;3000;3000;3000;46000;46000;46000;50000;44000;44000;31000;34000;34000;34000;34000;30200;33100;33100;33100;13000;12000;12000;31000;18000;18000;18000;18000;18000;18000;18000;18000;25791;15368;15368 -181;'716;Zimbabwe;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;6300;4900;4300;4800;5700;5700;5700;5700;5700;5700;5700;5700;5700;5700;5700;2800;2300;1900;1900;2100;3200;2800;4700;4700;4700;3000;3000;3000;3000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -181;'716;Zimbabwe;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;110;104;83;100;125;125;125;125;125;125;125;125;125;125;125;98;77;52;69;76;165;96;209;209;209;358;359;359;359;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -181;'716;Zimbabwe;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;400;100;100;100;200;300;300;1300;3100;3100;1300;100;1600;1600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -181;'716;Zimbabwe;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;16;5;5;5;23;26;26;64;151;151;56;19;30;30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -181;'716;Zimbabwe;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88000;94000;93000;94000;94000;94000;94000;83000;80900;80900;80900;80900;8000;8000;7200;8000;8000;8000;8000;29260;27600;27600;27600;32978;33258;38002 -181;'716;Zimbabwe;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57000;56000;61000;55000;55000;55000;55000;55000;57900;57900;57900;57900;5000;5000;5000;5000;5000;5000;5000;26260;24600;24600;24600;24600;24600;24600 -181;'716;Zimbabwe;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31000;38000;32000;39000;39000;39000;39000;28000;23000;23000;23000;23000;3000;3000;2200;3000;3000;3000;3000;3000;3000;3000;3000;8378;8658;13402 -181;'716;Zimbabwe;1870;Pulpwood and particles (1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;61000;61000;93000;78000;100000;104000;97000;136000;111000;91000;118000;119000;119000;119000;157000;157000;157000;106000;135000;145000;114000;;;;;;;;;;;;;;;;;;;;;;;;;; -181;'716;Zimbabwe;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;48000;48000;63000;65000;88000;70000;76000;110000;77000;63000;65000;78000;78000;78000;94000;94000;94000;92000;117000;126000;99000;;;;;;;;;;;;;;;;;;;;;;;;;; -181;'716;Zimbabwe;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;13000;13000;30000;13000;12000;34000;21000;26000;34000;28000;53000;41000;41000;41000;63000;63000;63000;14000;18000;19000;15000;;;;;;;;;;;;;;;;;;;;;;;;;; -181;'716;Zimbabwe;1871;Other industrial roundwood;5516;Production;m3;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;4000;4000;6000;9000;8000;8000;8000;8000;8000;8000;13000;13000;13000;23000;33000;53000;70400;80900;105000;101900;99800;112400;112400;112400;112400;112400;112400;112400;112400;112400;112400;112400;175400;175400;175400;175400;175400;175400;175400;50930;45890;45890;45890;45890;45890;45890 -181;'716;Zimbabwe;1871;Other industrial roundwood;5616;Import quantity;m3;6300;5400;3000;1400;1300;1300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -181;'716;Zimbabwe;1871;Other industrial roundwood;5622;Import value;1000 USD;136;131;74;29;60;60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -181;'716;Zimbabwe;1871;Other industrial roundwood;5916;Export quantity;m3;100;100;100;1600;22800;22800;22800;22800;22800;22800;22800;22800;22800;22800;22800;1400;2300;1300;600;400;2400;27600;8700;7100;7100;3400;26600;800;800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -181;'716;Zimbabwe;1871;Other industrial roundwood;5922;Export value;1000 USD;5;5;4;25;166;166;166;166;166;166;166;166;166;166;166;21;85;62;34;31;113;1396;449;364;364;160;514;76;76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -181;'716;Zimbabwe;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;1000;1000;3000;6000;5000;5000;5000;5000;5000;5000;10000;10000;10000;20000;30000;50000;67000;77000;100000;97000;95000;107000;107000;107000;107000;107000;107000;107000;107000;107000;107000;107000;170000;170000;170000;170000;170000;170000;170000;45530;40490;40490;40490;40490;40490;40490 -181;'716;Zimbabwe;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;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;3400;3900;5000;4900;4800;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 -181;'716;Zimbabwe;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;6300;5400;3000;1400;1300;1300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -181;'716;Zimbabwe;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;136;131;74;29;60;60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -181;'716;Zimbabwe;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;100;100;100;1600;22800;22800;22800;22800;22800;22800;22800;22800;22800;22800;22800;1400;2300;1300;600;400;2400;27600;8700;7100;7100;3400;26600;800;800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -181;'716;Zimbabwe;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;5;5;4;25;166;166;166;166;166;166;166;166;166;166;166;21;85;62;34;31;113;1396;449;364;364;160;514;76;76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -181;'716;Zimbabwe;1630;Wood charcoal;5510;Production;t;735;741;748;854;860;867;973;979;986;993;1013;1032;1039;1055;1050;1051;1033;1027;1000;1000;1000;1600;1100;800;1700;800;700;1500;1500;1500;1500;1500;1500;10000;11000;11000;11000;10000;9000;10500;9000;9000;9000;9000;9000;10724;10800;11000;10999;11092;11185;11280;11375;11472;11569;11666;11765;11865;11965;12066;12168;12271;12375 -181;'716;Zimbabwe;1630;Wood charcoal;5610;Import quantity;t;200;200;200;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;200;200;200;200;200;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;7;14;4720;64;261;459;502;461;199;208;156;130;121;228;1124;249 -181;'716;Zimbabwe;1630;Wood charcoal;5622;Import value;1000 USD;41;36;41;25;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;24;211;345;345;345;345;345;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;6;8;766;28;111;85;85;146;94;143;145;59;50;84;217;70 -181;'716;Zimbabwe;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;7;6488;4676;10101;5780;5640;4424;1932;1932;1932;5628;5320;100;146;1294;2320 -181;'716;Zimbabwe;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1307;1307;1307;1307;1;2442;742;1768;773;826;663;253;253;253;776;789;10;10;181;406 -181;'716;Zimbabwe;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31867;29590;29590 -181;'716;Zimbabwe;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;201;201;201;201;22;70;578;496;481;479;623;625;686;873;333;329;330;345;16;29 -181;'716;Zimbabwe;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;9;9;9;9;21;31;145;82;75;67;97;68;59;151;50;44;45;60;17;39 -181;'716;Zimbabwe;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;66;66;66;66;43;95;373;373;18;230;4;4;4;1;1;1;398;1100.64;1296;1296 -181;'716;Zimbabwe;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;3;3;3;3;28;18;23;23;5;220;6;6;6;0;0;0;15;36;38;38 -181;'716;Zimbabwe;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31867;29590;29590 -181;'716;Zimbabwe;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;141;141;141;141;8;38;77;15;31;35;12;12;10;25;22;18;19;34;16;29 -181;'716;Zimbabwe;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;10;28;86;38;13;17;30;18;12;50;25;19;20;35;17;39 -181;'716;Zimbabwe;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;3;3;3;0;0;0;397;1099.64;1000;1000 -181;'716;Zimbabwe;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;6;6;6;0;0;0;15;36;34;34 -181;'716;Zimbabwe;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;40;0;0;0;0;0;0;0;0;60;60;60;60;14;32;501;481;450;444;611;613;676;848;311;311;311;311;0;0 -181;'716;Zimbabwe;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;0;0;0;0;0;0;0;2;2;2;2;11;3;59;44;62;50;67;50;47;101;25;25;25;25;0;0 -181;'716;Zimbabwe;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;516;30;30;30;0;0;0;0;0;0;0;0;66;66;66;66;43;95;373;373;18;230;1;1;1;1;1;1;1;1;296;296 -181;'716;Zimbabwe;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;1;1;1;0;0;0;0;0;0;0;0;3;3;3;3;28;18;23;23;5;220;0;0;0;0;0;0;0;0;4;4 -181;'716;Zimbabwe;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;235;204;230;443;28 -181;'716;Zimbabwe;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;16;16;26;6 -181;'716;Zimbabwe;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;63;63;63;63 -181;'716;Zimbabwe;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10 -181;'716;Zimbabwe;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;201;204;230;1;1 -181;'716;Zimbabwe;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;16;16;0;0 -181;'716;Zimbabwe;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;63;63;63;63 -181;'716;Zimbabwe;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10 -181;'716;Zimbabwe;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;0;0;442;27 -181;'716;Zimbabwe;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;0;26;6 -181;'716;Zimbabwe;1872;Sawnwood;5516;Production;m3;55000;63000;61500;69400;71500;71500;71500;71500;71500;71500;71500;71500;77000;89000;101000;113000;162500;146000;147000;191000;200000;198000;131000;149000;138000;114000;175000;190000;190000;190000;250000;250000;250000;401000;401000;418000;465000;416000;438000;386000;397000;397000;397000;397000;280000;268000;268000;268000;268000;177000;177000;198324;198324;198324;198324;198324;198324;198324;198324;198324;230263;181572;112708 -181;'716;Zimbabwe;1872;Sawnwood;5616;Import quantity;m3;127950;121900;91650;66450;60450;60450;60450;60450;60450;60450;60450;60450;60450;60450;60450;15600;5200;4200;7000;9400;14800;8600;5300;4000;4000;2800;2700;500;500;6874;6874;5716;316;67;1742;200;200;0;0;0;0;0;0;2357;2357;2357;2357;931;1643;1581;2179;3242;5314;3223;802;1475;1537;1591;3085;2357;1740;2384;6084 -181;'716;Zimbabwe;1872;Sawnwood;5622;Import value;1000 USD;4941;4574;3464;2674;2626;2626;2626;2626;2626;2626;2626;2626;2626;2626;2626;1809;949;850;1530;2977;4295;2211;1269;1113;1113;601;459;94;94;1027;1027;2039;70;24;627;86;86;0;0;0;0;0;0;614;614;614;614;237;451;432;620;835;1217;897;542;678;378;895;1243;684;726;963;2071 -181;'716;Zimbabwe;1872;Sawnwood;5916;Export quantity;m3;32900;35000;43250;37700;30800;30800;30800;30800;30800;30800;30800;30800;30800;30800;30800;30400;30050;34400;24200;21300;18900;22750;18700;12900;12900;15000;24300;8400;8400;24300;41500;67440;12291;39797;80380;145600;147500;139000;110500;112000;25400;19600;114000;100453;9853;9853;55653;53709;116722;36038;21450;23913;15723;19879;48054;48167;22330;5782;24850;28212;27997;16817;10077 -181;'716;Zimbabwe;1872;Sawnwood;5922;Export value;1000 USD;2091;2257;2621;3016;2394;2394;2394;2394;2394;2394;2394;2394;2394;2394;2394;4452;4139;4119;4470;6001;5937;5306;3999;1877;1877;2398;3503;1197;1082;4959;4900;8290;2989;7316;17567;25377;30380;28356;23919;24931;6082;3067;13897;16698;1832;1832;9505;9246;13818;8467;3706;4488;2637;3419;9841;8175;5449;1459;5828;6022;6647;3933;2361 -181;'716;Zimbabwe;1632;Sawnwood, coniferous;5516;Production;m3;37500;45500;38750;47200;49250;49250;49250;49250;49250;49250;49250;49250;54000;65000;76000;87000;137500;115000;122000;160000;174000;171500;113500;129500;111500;103000;164500;168000;168000;168000;221000;221000;221000;361000;361000;377000;419000;375000;395000;343000;354000;354000;354000;354000;270000;254000;254000;254000;254000;163000;163000;184324;184324;184324;184324;184324;184324;184324;184324;184324;228261;179932;106778 -181;'716;Zimbabwe;1632;Sawnwood, coniferous;5616;Import quantity;m3;89050;87600;63350;37250;32750;32750;32750;32750;32750;32750;32750;32750;32750;32750;32750;2200;700;700;1000;800;1200;300;300;300;300;100;100;100;100;474;474;216;216;0;42;0;0;0;0;0;0;0;0;803;803;803;803;365;380;380;339;1181;3080;656;160;660;570;600;2713;1504;1736;2044;5744 -181;'716;Zimbabwe;1632;Sawnwood, coniferous;5622;Import value;1000 USD;2989;2872;2070;1255;1126;1126;1126;1126;1126;1126;1126;1126;1126;1126;1126;110;58;58;94;85;116;57;57;57;57;6;6;6;6;106;106;34;34;0;8;0;0;0;0;0;0;0;0;140;140;140;140;64;66;66;59;206;536;114;86;156;97;164;982;504;715;871;1979 -181;'716;Zimbabwe;1632;Sawnwood, coniferous;5916;Export quantity;m3;7600;9400;11550;11400;8300;8300;8300;8300;8300;8300;8300;8300;8300;8300;8300;19400;19150;22000;13000;9800;8000;7550;6100;4700;4700;2000;12100;5800;5800;21300;35500;62591;6291;38497;62080;141000;139000;130500;102000;107000;20400;14600;109000;98900;8300;8300;54100;51693;116600;35700;20554;20302;15641;19153;46934;47740;21242;5182;24760;27653;25621;16370;10046 -181;'716;Zimbabwe;1632;Sawnwood, coniferous;5922;Export value;1000 USD;351;467;530;688;443;443;443;443;443;443;443;443;443;443;443;2032;2004;1954;1862;2320;2385;1953;994;487;487;194;1435;757;757;3889;3200;6910;1221;6931;12545;24109;28280;26156;21619;23540;4691;1676;12506;16226;1360;1360;9033;8633;13781;8365;3433;3390;2612;3198;9652;8020;5153;1343;5770;5879;6394;3822;2337 -181;'716;Zimbabwe;1633;Sawnwood, non-coniferous;5516;Production;m3;17500;17500;22750;22200;22250;22250;22250;22250;22250;22250;22250;22250;23000;24000;25000;26000;25000;31000;25000;31000;26000;26500;17500;19500;26500;11000;10500;22000;22000;22000;29000;29000;29000;40000;40000;41000;46000;41000;43000;43000;43000;43000;43000;43000;10000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;2002;1640;5930 -181;'716;Zimbabwe;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;38900;34300;28300;29200;27700;27700;27700;27700;27700;27700;27700;27700;27700;27700;27700;13400;4500;3500;6000;8600;13600;8300;5000;3700;3700;2700;2600;400;400;6400;6400;5500;100;67;1700;200;200;0;0;0;0;0;0;1554;1554;1554;1554;566;1263;1201;1840;2061;2234;2567;642;815;967;991;372;853;4;340;340 -181;'716;Zimbabwe;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;1952;1702;1394;1419;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1699;891;792;1436;2892;4179;2154;1212;1056;1056;595;453;88;88;921;921;2005;36;24;619;86;86;0;0;0;0;0;0;474;474;474;474;173;385;366;561;629;681;783;456;522;281;731;261;180;11;92;92 -181;'716;Zimbabwe;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;25300;25600;31700;26300;22500;22500;22500;22500;22500;22500;22500;22500;22500;22500;22500;11000;10900;12400;11200;11500;10900;15200;12600;8200;8200;13000;12200;2600;2600;3000;6000;4849;6000;1300;18300;4600;8500;8500;8500;5000;5000;5000;5000;1553;1553;1553;1553;2016;122;338;896;3611;82;726;1120;427;1088;600;90;559;2376;447;31 -181;'716;Zimbabwe;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;1740;1790;2091;2328;1951;1951;1951;1951;1951;1951;1951;1951;1951;1951;1951;2420;2135;2165;2608;3681;3552;3353;3005;1390;1390;2204;2068;440;325;1070;1700;1380;1768;385;5022;1268;2100;2200;2300;1391;1391;1391;1391;472;472;472;472;613;37;102;273;1098;25;221;189;155;296;116;58;143;253;111;24 -181;'716;Zimbabwe;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;1000;3000;1000;3000;4400;3600;3100;3500;2900;4000;4100;4200;4200;12700;12700;12700;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;8000;9000;5000;5000;5000;5000;5000;5000;5000;5000;5000;7000;7000;7000;9000;10000;10000;10000;10000;3712 -181;'716;Zimbabwe;1634;Veneer sheets;5616;Import quantity;m3;400;300;500;600;1300;1300;1300;1300;1300;1300;1300;1300;1300;1300;1300;1000;1300;800;1300;1900;2200;1500;1300;1200;1200;200;200;200;200;599;599;1372;3;19;1103;900;900;700;400;400;300;300;300;598;598;598;598;74;108;487;282;258;284;291;314;96;171;158;66;61;24;119;3 -181;'716;Zimbabwe;1634;Veneer sheets;5622;Import value;1000 USD;132;94;124;165;316;316;316;316;316;316;316;316;316;316;316;814;762;672;1263;2295;2799;1516;993;907;907;313;313;313;313;471;471;1909;19;56;650;542;542;722;551;599;539;539;539;466;466;466;466;251;217;879;462;359;364;289;201;138;108;120;54;99;136;82;10 -181;'716;Zimbabwe;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102;102;0;200;200;200;200;200;400;200;200;200;44;44;44;44;44;49;49;49;49;49;2;1;0;0;664;1416;2382;1198;3445;0 -181;'716;Zimbabwe;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;74;0;196;196;196;196;180;373;188;188;188;35;35;35;35;35;38;38;38;38;38;4;1;0;0;38;75;461;198;451;0 -181;'716;Zimbabwe;1873;Wood-based panels;5516;Production;m3;;;400;3600;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;7000;31100;29000;32000;41000;29000;42000;35000;25600;28000;20000;30400;21300;22000;22000;66400;48900;38900;33000;33000;33000;42000;63000;64000;61000;69000;69000;69000;69000;67000;63000;63000;63000;11761;10882;12754;13931;13931;13931;17931;17931;40240;55280;55280;55101;163263;180982;184279 -181;'716;Zimbabwe;1873;Wood-based panels;5616;Import quantity;m3;2400;2700;2600;1900;2600;2738;2738;2738;2738;2738;2738;2738;2738;2738;2738;2500;1400;1300;1500;1600;2100;2000;2000;1400;1400;900;600;0;0;179;179;1693;556;957;3719;11300;11300;11300;6500;10300;12400;12400;12400;14098;14098;14098;8750;3889;6608;22175;23443;29011;31195;35613;37929;36314;36511;42857;43280;50339;73132.42;70810;88481 -181;'716;Zimbabwe;1873;Wood-based panels;5622;Import value;1000 USD;295;355;330;265;332;332;332;332;332;332;332;332;332;332;332;414;280;295;351;532;710;618;618;325;325;174;135;0;0;25;25;761;141;287;1315;2008;2008;2008;1557;2470;2599;2599;2599;2457;2457;2457;1541;2409;4001;9988;12024;15805;12700;12815;11888;10847;13804;16792;13327;14086;26995.77;25053;29172 -181;'716;Zimbabwe;1873;Wood-based panels;5916;Export quantity;m3;100;100;100;2600;4800;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;6500;4700;4800;3800;1900;1200;700;2300;5300;5300;800;2800;2100;2100;1500;1500;2233;1493;1565;7000;13900;13900;13900;27300;26400;10000;10000;10000;18620;18620;18620;6212;4420;3393;1623;1104;4570;6751;15480;13247;11540;6740;9588;12380;10732;9785.7;5999;4373 -181;'716;Zimbabwe;1873;Wood-based panels;5922;Export value;1000 USD;15;12;23;419;756;756;756;756;756;756;756;756;756;756;756;2267;1598;1793;1720;1381;1055;437;731;1652;1652;351;968;651;651;781;781;927;728;968;3176;5137;5137;5137;5638;5444;1465;1465;1465;5158;5158;5158;1979;2038;1839;957;735;2998;4503;4544;3950;3260;2200;3950;4978;4236;4428.52;3881;2464 -181;'716;Zimbabwe;1640;Plywood and LVL;5516;Production;m3;;;400;1600;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;5000;15000;15000;16000;12000;12000;13000;10000;8600;11000;3000;3400;3300;3100;3100;47500;30000;20000;7000;7000;7000;7000;11000;11000;10000;11000;11000;11000;11000;9000;5000;5000;5000;5000;5000;5000;5000;5000;5000;9000;9000;9000;9000;9000;8821;8821;8821;8821 -181;'716;Zimbabwe;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;3;6;1042;1100;1100;1100;500;400;200;200;200;510;510;510;510;114;267;1249;2106;1971;1655;2153;3122;2724;1619;2354;1962;1615;1818;1434;1614 -181;'716;Zimbabwe;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;3;5;262;583;583;583;157;233;126;126;126;181;181;181;181;170;351;1082;1770;1605;1693;1851;1688;1325;790;1366;1026;833;1904;1087;1090 -181;'716;Zimbabwe;1640;Plywood and LVL;5916;Export quantity;m3;100;100;100;2600;4800;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;5000;3600;3700;2400;1100;600;600;2200;3100;3100;700;2700;2000;2000;1400;1400;2133;1393;1382;3100;5500;5500;5500;2400;5000;700;700;700;1574;1574;1574;1574;1608;702;349;291;2639;414;82;49;42;42;54;42;0;45;0;83 -181;'716;Zimbabwe;1640;Plywood and LVL;5922;Export value;1000 USD;15;12;23;419;756;756;756;756;756;756;756;756;756;756;756;1585;1117;1478;1202;1040;789;390;684;1374;1374;294;911;594;594;724;724;870;671;852;1658;2543;2543;2543;1675;2480;450;450;450;516;516;516;516;949;421;220;195;1630;1657;49;16;12;13;25;47;0;20;37;32 -181;'716;Zimbabwe;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90 -181;'716;Zimbabwe;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75 -181;'716;Zimbabwe;1646;Particle board and OSB (1961-1994);5516;Production;m3;;;;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;16100;14000;16000;29000;17000;29000;25000;17000;17000;17000;27000;18000;18900;18900;18900;18900;18900;26000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -181;'716;Zimbabwe;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;795;496;496;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -181;'716;Zimbabwe;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;280;125;125;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -181;'716;Zimbabwe;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;1500;1100;1100;1400;800;600;100;100;2200;2200;100;100;100;100;100;100;100;100;183;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -181;'716;Zimbabwe;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;682;481;315;518;341;266;47;47;278;278;57;57;57;57;57;57;57;57;116;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -181;'716;Zimbabwe;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26000;26000;35000;52000;53000;51000;58000;58000;58000;58000;58000;58000;58000;58000;6761;5882;7754;8931;8931;8931;8931;8931;31240;46280;46280;46280;31867;29590;21074 -181;'716;Zimbabwe;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;349;800;800;800;2400;6200;10000;10000;10000;10887;10887;10887;5539;1616;4451;9699;13780;17273;22182;23058;22305;21164;25621;25621;22152;24219;39464.72;41382;53340 -181;'716;Zimbabwe;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;242;242;242;667;1377;2000;2000;2000;1785;1785;1785;869;1027;2478;5318;6624;8581;7074;7159;5982;5506;8092;8092;6251;6390;13018.36;13104;16695 -181;'716;Zimbabwe;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3900;8400;8400;8400;1900;3000;3000;3000;3000;9520;9520;9520;2600;504;73;61;7;81;98;98;98;98;98;98;0;3;3;4;4 -181;'716;Zimbabwe;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1518;2594;2594;2594;395;464;415;415;415;1609;1609;1609;673;260;31;35;10;61;61;61;61;61;61;61;0;1;1;3;3 -181;'716;Zimbabwe;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;61;61;61;61;11;121;34;34;2;2;2;26;38;10;20;75;11;51;127 -181;'716;Zimbabwe;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;8;50;26;26;4;4;4;16;30;9;12;31;10;24;57 -181;'716;Zimbabwe;1874;Fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;122575;142571;154384 -181;'716;Zimbabwe;1874;Fibreboard;5616;Import quantity;m3;2400;2700;2600;1900;2600;2738;2738;2738;2738;2738;2738;2738;2738;2738;2738;2500;1400;1300;1500;1600;2100;2000;2000;1400;1400;900;600;0;0;179;179;814;57;455;2328;9400;9400;9400;3600;3700;2200;2200;2200;2640;2640;2640;2640;2098;1879;11106;7523;9733;7356;10400;12500;12400;9233;14872;19146;24430;31838.7;27943;33400 -181;'716;Zimbabwe;1874;Fibreboard;5622;Import value;1000 USD;295;355;330;265;332;332;332;332;332;332;332;332;332;332;332;414;280;295;351;532;710;618;618;325;325;174;135;0;0;25;25;427;13;157;971;1183;1183;1183;733;860;473;473;473;481;481;481;481;1202;1164;3538;3604;5593;3929;3801;4214;4000;4892;7325;6038;6832;12063.41;10838;11330 -181;'716;Zimbabwe;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;23000;18400;6300;6300;6300;7526;7526;7526;2038;2308;2618;1213;806;1850;6239;15300;13100;11400;6600;9436;12338;10729;9737.7;5995;4286 -181;'716;Zimbabwe;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;3568;2500;600;600;600;3033;3033;3033;790;829;1387;702;530;1307;2785;4434;3873;3187;2126;3864;4931;4235;4407.52;3841;2429 -181;'716;Zimbabwe;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;122575;142571;154384 -181;'716;Zimbabwe;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;360;200;200;200;400;400;400;400;400;264;264;264;264;3;213;1515;2633;2942;761;0;0;0;0;0;8;3;22;38;88 -181;'716;Zimbabwe;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;158;80;80;80;100;117;117;117;117;122;122;122;122;2;164;874;1272;1646;318;0;0;0;0;0;3;1;11;145;48 -181;'716;Zimbabwe;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;23000;18400;6300;6300;6300;7488;7488;7488;2000;2082;2558;1159;752;1773;6154;0;0;0;0;4036;6938;10682;9690.7;5994;4285 -181;'716;Zimbabwe;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;3568;2500;600;600;600;3025;3025;3025;782;708;1325;647;475;1240;2728;0;0;0;0;1932;2999;4224;4396.52;3840;2428 -181;'716;Zimbabwe;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1402;800;800;800;2000;2000;1800;1800;1800;1300;1300;1300;1300;1815;1497;9214;4392;4765;5279;10400;12500;12400;9233;14872;18967;24250;31383.7;27674;33152 -181;'716;Zimbabwe;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;724;159;159;159;263;300;356;356;356;222;222;222;222;984;878;2381;1996;2365;2795;3801;4214;4000;4892;7325;5944;6758;11714.41;10525;11257 -181;'716;Zimbabwe;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22;22;22;26;7;1;1;24;57;15300;13100;11400;6600;5400;5400;47;47;1;1 -181;'716;Zimbabwe;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;10;8;1;1;13;38;4434;3873;3187;2126;1932;1932;11;11;1;1 -181;'716;Zimbabwe;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;492;3;3;566;8400;8400;8400;1200;1300;0;0;0;1076;1076;1076;1076;280;169;377;498;2026;1316;0;0;0;0;0;171;177;433;231;160 -181;'716;Zimbabwe;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;283;1;1;89;944;944;944;370;443;0;0;0;137;137;137;137;216;122;283;336;1582;816;0;0;0;0;0;91;73;338;168;25 -181;'716;Zimbabwe;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;16;200;53;53;53;53;28;0;0;0;0;0;0;0;0;0;0 -181;'716;Zimbabwe;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;111;54;54;54;54;19;0;0;0;0;0;0;0;0;0;0 -181;'716;Zimbabwe;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;2400;2700;2600;1900;2600;2738;2738;2738;2738;2738;2738;2738;2738;2738;2738;2500;1400;1300;1500;1600;2100;2000;2000;1400;1400;900;600;0;0;179;179;322;54;452;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -181;'716;Zimbabwe;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;295;355;330;265;332;332;332;332;332;332;332;332;332;332;332;414;280;295;351;532;710;618;618;325;325;174;135;0;0;25;25;144;12;156;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -181;'716;Zimbabwe;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -181;'716;Zimbabwe;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -181;'716;Zimbabwe;1879;Total fibre furnish;5510;Production;t;4000;2700;3400;4700;4900;5000;5000;7000;8000;10000;14200;14700;16000;16000;16000;34000;34000;40000;45000;48000;45000;46000;48000;56000;54000;51000;57000;64000;62000;68000;68000;68000;68000;68000;68000;68000;68000;103000;101000;120000;112000;112000;98000;98000;98000;119000;119000;119000;119000;72000;72000;72000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000 -181;'716;Zimbabwe;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;4100;4100;4100;4100;4100;4100;4100;4100;18600;16200;18900;22700;23100;29000;22100;9400;12300;15300;24300;27700;20700;20700;5010;5010;5271;1812;1055;15104;13900;15300;17600;20800;20600;20600;20600;20600;18413;18413;18413;11636;5016;1462;1913;1730;1944;1528;1310;1578;1843;2201;3605;2694;2003;2922.54;2228.1;2054.1 -181;'716;Zimbabwe;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;471;471;471;471;471;471;471;471;4529;3449;3910;4913;7024;8515;6400;2479;3523;3931;5694;3667;2477;2477;603;603;1846;1272;474;7014;3032;3140;4340;5786;6923;6923;6923;6923;5214;5214;5214;3853;1740;681;1018;1006;1052;1180;696;810;908;881;2072;1228;676;1408.44;1044.74;889.74 -181;'716;Zimbabwe;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;506;506;506;0;0;0;0;0;0;0;0;156;156;156;156;461;1815;3286;6136;6348;7911;10436;11744;12787;13942;14328;11290;9888;14153.07;8754;4031 -181;'716;Zimbabwe;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;27;27;27;0;0;0;0;0;0;0;0;24;24;24;24;79;211;268;572;566;718;940;1739;1347;1839;1642;874;651;991.25;683;369 -181;'716;Zimbabwe;1878;Pulp for paper;5510;Production;t;4000;2700;3400;4700;4900;5000;5000;7000;8000;10000;14200;14700;16000;16000;16000;16000;16000;21000;24000;26000;26000;25000;26000;33000;31000;28000;32000;37000;37000;42000;42000;42000;42000;42000;42000;42000;42000;42000;42000;42000;42000;42000;28000;28000;28000;49000;49000;49000;49000;2000;2000;2000;0;0;0;0;0;0;0;0;0;0;0 -181;'716;Zimbabwe;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;4100;4100;4100;4100;4100;4100;4100;4100;18600;16200;16000;19100;17900;19800;14600;5000;11300;11300;16700;20700;20700;20700;;;1785;1785;1028;7310;2200;3600;8600;11000;8900;8900;8900;8900;10145;10145;10145;4336;1727;668;1127;1119;945;1107;379;600;980;958;1803;936;379;958.66;429.1;571.1 -181;'716;Zimbabwe;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;471;471;471;471;471;471;471;471;4529;3449;3621;4541;6313;7509;5857;1939;3375;3375;4366;2477;2477;2477;;;1266;1266;468;5533;1385;1493;3719;4935;5473;5473;5473;5473;4296;4296;4296;3053;1080;519;873;773;767;981;348;507;693;596;1662;844;336;984.1;574.74;532.74 -181;'716;Zimbabwe;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;16;16;16;16;15;15;15;15;15;15;10;2000;300;716;416;25;25;25;25;25 -181;'716;Zimbabwe;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;10;10;10;10;11;11;11;11;11;11;9;710;90;437;347;22;22;22;22;22 -181;'716;Zimbabwe;1875;Wood pulp;5510;Production;t;4000;2700;3400;4700;4900;5000;5000;7000;8000;10000;14200;14700;16000;16000;16000;16000;16000;21000;24000;26000;26000;25000;26000;33000;31000;28000;32000;37000;37000;42000;42000;42000;42000;42000;42000;42000;42000;42000;42000;42000;42000;42000;28000;28000;28000;47000;47000;47000;47000;0;0;0;0;0;0;0;;;;;;; -181;'716;Zimbabwe;1875;Wood pulp;5610;Import quantity;t;;;;;;;;4100;4100;4100;4100;4100;4100;4100;4100;18600;16200;16000;19100;17900;19800;14600;5000;11300;11300;16700;20700;20700;20700;;;1785;1785;1028;7310;2200;3600;8600;11000;8900;8900;8900;8900;10095;10095;10095;4286;1677;641;1100;1092;918;1080;352;573;953;931;1753;886;355;934.66;355.1;470.1 -181;'716;Zimbabwe;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;471;471;471;471;471;471;471;471;4529;3449;3621;4541;6313;7509;5857;1939;3375;3375;4366;2477;2477;2477;;;1266;1266;468;5533;1385;1493;3719;4935;5473;5473;5473;5473;4256;4256;4256;3013;1040;494;848;748;742;956;323;482;668;571;1626;808;323;971.1;389.74;483.74 -181;'716;Zimbabwe;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;5;5;5;5;5;5;5;5;5;5;0;0;0;416;416;25;25;25;25;25 -181;'716;Zimbabwe;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;2;2;2;2;2;2;2;2;2;2;0;0;0;347;347;22;22;22;22;22 -181;'716;Zimbabwe;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;557;49;49;49;211.66;139;162 -181;'716;Zimbabwe;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;336;46;46;46;144;197;105 -181;'716;Zimbabwe;1654;Mechanical wood pulp (1961-2016);5510;Production;t;4000;2700;3400;4700;4900;5000;5000;7000;8000;10000;10100;10600;12000;12000;12000;12000;12000;14000;15000;16000;18000;18000;19000;22000;20000;17000;17000;17000;17000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;13000;13000;13000;16000;16000;16000;16000;0;0;0;0;0;0;0;;;;;;; -181;'716;Zimbabwe;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;62;21;21;21;10;0;0;0;;;;;;; -181;'716;Zimbabwe;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;36;8;8;8;7;0;0;0;;;;;;; -181;'716;Zimbabwe;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;4100;4100;4000;4000;4000;4000;4000;7000;9000;10000;8000;7000;7000;11000;11000;11000;15000;20000;20000;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000;15000;15000;15000;31000;31000;31000;31000;0;0;0;0;0;0;0;;;;;;; -181;'716;Zimbabwe;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;32;0;150;300;;;;;;; -181;'716;Zimbabwe;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;5;5;5;41;0;71;97;;;;;;; -181;'716;Zimbabwe;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;4100;4100;4100;4100;4100;4100;4100;4100;18600;16200;16000;19100;17900;19800;14600;5000;11300;11300;16700;20700;20700;20700;;;1785;1785;1028;7310;2200;3600;8600;11000;8900;8900;8900;8900;10095;10095;10095;4286;1615;576;1076;1068;894;1038;352;423;653;374;1704;837;306;723;216.1;308.1 -181;'716;Zimbabwe;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;471;471;471;471;471;471;471;471;4529;3449;3621;4541;6313;7509;5857;1939;3375;3375;4366;2477;2477;2477;;;1266;1266;468;5533;1385;1493;3719;4935;5473;5473;5473;5473;4256;4256;4256;3013;1004;455;835;735;729;908;323;411;571;235;1580;762;277;827.1;192.74;378.74 -181;'716;Zimbabwe;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;5;5;5;5;5;5;5;5;5;5;0;0;0;416;416;25;25;25;25;25 -181;'716;Zimbabwe;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;2;2;2;2;2;2;2;2;2;2;0;0;0;347;347;22;22;22;22;22 -181;'716;Zimbabwe;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1171;1200;400;0;0;0;0;0;0;115;115;115;34;0;0;445;420;272;68;30;30;33;33;33;173;135;46;46.1;46.1 -181;'716;Zimbabwe;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;781;781;291;0;0;0;0;0;0;41;41;41;25;0;0;226;238;130;55;28;28;28;28;28;96;130;55;54.74;54.74 -181;'716;Zimbabwe;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;4820;1000;3200;8600;11000;8900;8900;8900;8900;9928;9928;9928;4200;1563;485;581;598;597;944;322;303;620;341;1671;664;171;677;170;262 -181;'716;Zimbabwe;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3745;604;1202;3719;4935;5473;5473;5473;5473;4190;4190;4190;2963;979;398;548;436;576;829;295;342;543;207;1552;666;147;772.1;138;324 -181;'716;Zimbabwe;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;416;416;25;25;25;25;25 -181;'716;Zimbabwe;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;347;347;22;22;22;22;22 -181;'716;Zimbabwe;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;0;0;0;0;0;0;0;0;0;;;;;;; -181;'716;Zimbabwe;1660;Chemical wood pulp, sulphite, unbleached (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;;;;;;; -181;'716;Zimbabwe;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;;;;;;; -181;'716;Zimbabwe;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;;;;;;; -181;'716;Zimbabwe;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1785;1785;1028;1317;0;0;0;0;0;0;0;0;52;52;52;52;52;91;50;50;25;26;0;90;0;;;;;;; -181;'716;Zimbabwe;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1266;1266;468;1006;0;0;0;0;0;0;0;0;25;25;25;25;25;57;61;61;23;24;0;41;0;;;;;;; -181;'716;Zimbabwe;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5;5;5;5;0;0;0;;;;;;; -181;'716;Zimbabwe;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;2;0;0;0;;;;;;; -181;'716;Zimbabwe;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -181;'716;Zimbabwe;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -181;'716;Zimbabwe;1668;Pulp from fibres other than wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;2000;2000;2000;2000;2000;2000;2000;0;0;0;0;0;0;0;0;0;0;0 -181;'716;Zimbabwe;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;50;50;50;50;27;27;27;27;27;27;27;27;27;50;50;24;24;74;101 -181;'716;Zimbabwe;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;40;40;40;40;25;25;25;25;25;25;25;25;25;36;36;13;13;185;49 -181;'716;Zimbabwe;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;10;10;10;10;10;10;10;2000;300;300;0;0;0;0;0;0 -181;'716;Zimbabwe;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;8;9;9;9;9;9;9;9;710;90;90;0;0;0;0;0;0 -181;'716;Zimbabwe;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;219;36;36;36;5;31;41;241;262;128;128;128;1;0;0.5;1 -181;'716;Zimbabwe;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;132;18;18;18;7;37;137;52;64;30;30;30;1;6;6.1;1 -181;'716;Zimbabwe;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;18000;18000;19000;21000;22000;19000;21000;22000;23000;23000;23000;25000;27000;25000;26000;26000;26000;26000;26000;26000;26000;26000;61000;59000;78000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000;70000 -181;'716;Zimbabwe;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;2900;3600;5200;9200;7500;4400;1000;4000;7600;7000;0;0;5010;5010;3486;27;27;7794;11700;11700;9000;9800;11700;11700;11700;11700;8268;8268;8268;7300;3289;794;786;611;999;421;931;978;863;1243;1802;1758;1624;1963.88;1799;1483 -181;'716;Zimbabwe;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;289;372;711;1006;543;540;148;556;1328;1190;0;0;603;603;580;6;6;1481;1647;1647;621;851;1450;1450;1450;1450;918;918;918;800;660;162;145;233;285;199;348;303;215;285;410;384;340;424.34;470;357 -181;'716;Zimbabwe;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;506;506;506;0;0;0;0;0;0;0;0;140;140;140;140;446;1800;3271;6121;6333;7896;10426;9744;12487;13226;13912;11265;9863;14128.07;8729;4006 -181;'716;Zimbabwe;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;27;27;27;0;0;0;0;0;0;0;0;14;14;14;14;68;200;257;561;555;707;931;1029;1257;1402;1295;852;629;969.25;661;347 -181;'716;Zimbabwe;1876;Paper and paperboard;5510;Production;t;9000;6300;8300;12400;18600;19000;20000;24000;28600;33900;35200;37400;38000;38000;38000;38000;38000;50000;53000;57000;62000;67000;65000;64000;76000;75000;81000;82000;82000;86000;86000;86000;73000;81000;81000;81000;81000;76000;80000;85000;88000;88000;125000;127000;127000;109000;109000;109000;10886;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -181;'716;Zimbabwe;1876;Paper and paperboard;5610;Import quantity;t;27800;28900;24000;25800;28600;28600;28600;28600;28600;28600;28600;28600;28600;28600;28600;13400;13700;11600;14100;19900;24600;19900;16700;14700;14700;12100;12800;6193;6002;11210;10600;37467;7287;9828;20633;20700;23000;25100;23500;21340;21340;21340;21340;44567;44567;44567;45773;16145;24775;58052;49583;58886;60267;67244;59610;62773;63565;77026;60804;46782;74468.89;59889;60318 -181;'716;Zimbabwe;1876;Paper and paperboard;5622;Import value;1000 USD;7624;7616;7108;7202;7690;7690;7690;7690;7690;7690;7690;7690;7690;7690;7690;9879;10434;8040;11072;17915;24022;15823;11167;10124;10124;8717;16598;6706;5901;14948;14749;31865;5814;8970;18005;22803;23468;15886;14398;13326;13326;13326;13326;33134;33134;33134;33764;25687;23023;56488;49048;57828;56543;65774;52114;54611;57314;84211;63278;46232;84088.26;135317;90582 -181;'716;Zimbabwe;1876;Paper and paperboard;5910;Export quantity;t;1000;1000;1000;4200;4900;3600;3600;3600;3600;3600;3600;3600;3600;3600;3600;1500;1100;1700;4200;1500;700;1900;4100;9400;9400;3800;11700;4200;4200;4200;4200;8381;135;153;3712;7700;7700;2900;4600;4600;4600;4600;4600;13150;13150;13150;13150;11291;3232;2531;2434;789;1058;1283;3132;1510;1571;5812;5134;1272;4495.4;4223;10267 -181;'716;Zimbabwe;1876;Paper and paperboard;5922;Export value;1000 USD;206;232;210;1350;1114;866;866;866;866;866;866;866;866;866;866;499;312;357;763;933;710;1130;1503;3867;3867;1621;4270;1709;1709;1709;1709;4283;116;109;3194;6379;6379;1013;1492;1492;1492;1492;1492;8963;8963;8963;8963;7035;2279;2657;2322;994;1337;1437;1513;1030;1241;6098;5478;1208;4624.14;5330;10717 -181;'716;Zimbabwe;2042;Graphic papers;5510;Production;t;;2300;3700;4800;5000;5000;6000;7000;8000;10000;12000;12000;12000;12000;12000;12000;12000;13000;14000;16000;18000;17000;18000;17000;18000;21000;18000;19000;19000;21000;21000;21000;15000;17000;17000;17000;17000;24000;24000;26000;26000;26000;26000;25000;25000;9000;9000;9000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -181;'716;Zimbabwe;2042;Graphic papers;5610;Import quantity;t;15600;14400;10600;10400;11400;11400;11400;11400;11400;11400;11400;11400;11400;11400;11400;7800;8100;7000;8200;9600;12900;11600;6800;5300;5300;5300;5800;4193;4002;9210;8600;16171;3551;6551;3837;3900;6200;2500;2500;340;340;340;340;23932;23932;23932;22038;6562;9722;19510;20613;22414;22868;23659;21279;20169;20169;21761;14740;12533;18155.47;19961;19310 -181;'716;Zimbabwe;2042;Graphic papers;5622;Import value;1000 USD;3881;3626;3147;2953;3490;3490;3490;3490;3490;3490;3490;3490;3490;3490;3490;5090;5487;4387;5887;9862;13811;8719;4780;4015;4015;4411;4882;4536;3731;12778;12579;14818;3473;6409;3784;4154;4819;1059;1320;248;248;248;248;18653;18653;18653;17712;18354;8634;19515;21479;24534;24297;25964;20791;18469;19701;27630;18820;13241;21418.61;26789;24969 -181;'716;Zimbabwe;2042;Graphic papers;5910;Export quantity;t;;;100;1200;1300;;;;;;;;;;;;;;;;;;;;;;0;;;;;339;32;44;275;2000;2000;0;0;0;0;0;0;4419;4419;4419;4419;1937;996;144;180;173;78;100;110;95;95;209;37;33;25;12;12 -181;'716;Zimbabwe;2042;Graphic papers;5922;Export value;1000 USD;;;10;231;248;;;;;;;;;;;;;;;;;;;;;;0;;;;;386;30;32;326;2146;2146;0;0;0;0;0;0;2586;2586;2586;2586;1349;566;147;194;191;89;78;52;37;37;124;26;32;19;9;9 -181;'716;Zimbabwe;1671;Newsprint;5510;Production;t;;2300;3700;4800;5000;5000;6000;7000;8000;10000;12000;12000;12000;12000;12000;12000;12000;13000;14000;16000;18000;17000;18000;17000;18000;21000;18000;19000;19000;21000;21000;21000;15000;17000;17000;17000;17000;17000;17000;19000;19000;19000;19000;18000;18000;2000;2000;2000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -181;'716;Zimbabwe;1671;Newsprint;5610;Import quantity;t;6200;3800;1300;1600;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;600;2500;1000;400;400;200;2000;1093;2;1610;1000;4347;16;16;2192;1300;3700;2500;2500;340;340;340;340;823;823;823;823;1872;2849;7097;11150;11062;10482;9590;8445;6721;6394;6132;4045;3750;4774.93;7145;6633 -181;'716;Zimbabwe;1671;Newsprint;5622;Import value;1000 USD;916;563;200;235;159;159;159;159;159;159;159;159;159;159;159;159;159;159;159;159;317;1035;312;119;119;64;1037;646;1;1149;950;3252;10;10;1565;946;1853;1059;1320;248;248;248;248;420;420;420;420;1489;1876;6215;9869;9896;8583;7909;6345;4834;4865;6469;4289;3267;4206.41;8597;7535 -181;'716;Zimbabwe;1671;Newsprint;5910;Export quantity;t;;;100;1200;1300;;;;;;;;;;;;;;;;;;;;;;0;;;;;49;25;25;25;0;0;0;0;0;0;0;0;2720;2720;2720;2720;1534;937;80;36;29;30;30;52;52;52;52;0;11;11;11;11 -181;'716;Zimbabwe;1671;Newsprint;5922;Export value;1000 USD;;;10;231;248;;;;;;;;;;;;;;;;;;;;;;0;;;;;49;12;12;12;0;0;0;0;0;0;0;0;1283;1283;1283;1283;1093;519;58;4;1;25;25;2;2;2;2;0;6;6;6;6 -181;'716;Zimbabwe;1674;Printing and writing papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -181;'716;Zimbabwe;1674;Printing and writing papers;5610;Import quantity;t;9400;10600;9300;8800;10300;10300;10300;10300;10300;10300;10300;10300;10300;10300;10300;6700;7000;5900;7100;8500;12300;9100;5800;4900;4900;5100;3800;3100;4000;7600;7600;11824;3535;6535;1645;2600;2500;;;;;;;23109;23109;23109;21215;4690;6873;12413;9463;11352;12386;14069;12834;13448;13775;15629;10695;8783;13380.55;12816;12677 -181;'716;Zimbabwe;1674;Printing and writing papers;5622;Import value;1000 USD;2965;3063;2947;2718;3331;3331;3331;3331;3331;3331;3331;3331;3331;3331;3331;4931;5328;4228;5728;9703;13494;7684;4468;3896;3896;4347;3845;3890;3730;11629;11629;11566;3463;6399;2219;3208;2966;;;;;;;18233;18233;18233;17292;16865;6758;13300;11610;14638;15714;18055;14446;13635;14836;21161;14531;9974;17212.19;18192;17434 -181;'716;Zimbabwe;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;290;7;19;250;2000;2000;;;;;;;1699;1699;1699;1699;403;59;64;144;144;48;70;58;43;43;157;37;22;14;1;1 -181;'716;Zimbabwe;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;337;18;20;314;2146;2146;;;;;;;1303;1303;1303;1303;256;47;89;190;190;64;53;50;35;35;122;26;26;13;3;3 -181;'716;Zimbabwe;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -181;'716;Zimbabwe;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7231;7231;7231;7231;1146;911;1721;2307;1720;2376;2148;1000;522;861;861;360;262;279;439;404 -181;'716;Zimbabwe;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5705;5705;5705;5705;1444;919;2132;2842;2551;3379;4009;1401;774;1070;1070;638;372;589;323;540 -181;'716;Zimbabwe;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;2;4;4;4;4;24;5;5;5;5;1;4;1;1;1 -181;'716;Zimbabwe;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;2;6;6;6;6;10;5;5;5;5;1;3;1;1;1 -181;'716;Zimbabwe;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -181;'716;Zimbabwe;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10684;10684;10684;10684;3016;3505;7719;6328;7195;6959;8728;7824;9963;10480;10471;7991;6418;9587.14;9671;10458 -181;'716;Zimbabwe;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8429;8429;8429;8429;14679;3753;8231;7759;8948;8594;10279;8603;9800;11028;14987;11014;7229;11781.29;14095;14905 -181;'716;Zimbabwe;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1578;1578;1578;1578;397;55;32;116;116;20;20;20;5;5;119;3;9;4;0;0 -181;'716;Zimbabwe;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1210;1210;1210;1210;250;42;48;149;149;23;23;23;8;8;95;3;15;4;0;0 -181;'716;Zimbabwe;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;3000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -181;'716;Zimbabwe;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5194;5194;5194;3300;528;2457;2973;828;2437;3051;3193;4010;2963;2434;4297;2344;2103;3514.41;2706;1815 -181;'716;Zimbabwe;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4099;4099;4099;3158;742;2086;2937;1009;3139;3741;3767;4442;3061;2738;5104;2879;2373;4841.9;3774;1989 -181;'716;Zimbabwe;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117;117;117;117;2;2;28;24;24;24;26;33;33;33;33;33;9;9;0;0 -181;'716;Zimbabwe;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;90;90;90;3;3;35;35;35;35;20;22;22;22;22;22;8;8;2;2 -181;'716;Zimbabwe;1675;Other paper and paperboard;5510;Production;t;9000;4000;4600;7600;13600;14000;14000;17000;20600;23900;23200;25400;26000;26000;26000;26000;26000;37000;39000;41000;44000;50000;47000;47000;58000;54000;63000;63000;63000;65000;65000;65000;58000;64000;64000;64000;64000;52000;56000;59000;62000;62000;99000;102000;102000;100000;100000;100000;10886;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -181;'716;Zimbabwe;1675;Other paper and paperboard;5610;Import quantity;t;12200;14500;13400;15400;17200;17200;17200;17200;17200;17200;17200;17200;17200;17200;17200;5600;5600;4600;5900;10300;11700;8300;9900;9400;9400;6800;7000;2000;2000;2000;2000;21296;3736;3277;16796;16800;16800;22600;21000;21000;21000;21000;21000;20635;20635;20635;23735;9583;15053;38542;28970;36472;37399;43585;38331;42604;43396;55265;46064;34249;56313.42;39928;41008 -181;'716;Zimbabwe;1675;Other paper and paperboard;5622;Import value;1000 USD;3743;3990;3961;4249;4200;4200;4200;4200;4200;4200;4200;4200;4200;4200;4200;4789;4947;3653;5185;8053;10211;7104;6387;6109;6109;4306;11716;2170;2170;2170;2170;17047;2341;2561;14221;18649;18649;14827;13078;13078;13078;13078;13078;14481;14481;14481;16052;7333;14389;36973;27569;33294;32246;39810;31323;36142;37613;56581;44458;32991;62669.65;108528;65613 -181;'716;Zimbabwe;1675;Other paper and paperboard;5910;Export quantity;t;1000;1000;900;3000;3600;3600;3600;3600;3600;3600;3600;3600;3600;3600;3600;1500;1100;1700;4200;1500;700;1900;4100;9400;9400;3800;11700;4200;4200;4200;4200;8042;103;109;3437;5700;5700;2900;4600;4600;4600;4600;4600;8731;8731;8731;8731;9354;2236;2387;2254;616;980;1183;3022;1415;1476;5603;5097;1239;4470.4;4211;10255 -181;'716;Zimbabwe;1675;Other paper and paperboard;5922;Export value;1000 USD;206;232;200;1119;866;866;866;866;866;866;866;866;866;866;866;499;312;357;763;933;710;1130;1503;3867;3867;1621;4270;1709;1709;1709;1709;3897;86;77;2868;4233;4233;1013;1492;1492;1492;1492;1492;6377;6377;6377;6377;5686;1713;2510;2128;803;1248;1359;1461;993;1204;5974;5452;1176;4605.14;5321;10708 -181;'716;Zimbabwe;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;10000;10000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -181;'716;Zimbabwe;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;732;732;732;732;252;409;1855;1176;2601;4091;4767;5241;5048;5053;4880;3789;5139;5843.35;5941;7096 -181;'716;Zimbabwe;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;806;806;806;806;256;534;2376;1515;3575;4919;5343;5253;4208;5102;5439;3815;5283;7647.49;8433;9997 -181;'716;Zimbabwe;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1145;1145;1145;1145;1511;333;563;737;383;685;694;741;1046;1375;1317;1274;995;1748.13;1474;1606 -181;'716;Zimbabwe;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1269;1269;1269;1269;1471;356;654;702;447;763;695;790;859;1042;1108;1013;779;1374.37;1322;1696 -181;'716;Zimbabwe;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38000;41000;41000;78000;81000;81000;69000;69000;69000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -181;'716;Zimbabwe;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15856;15856;15856;18956;8884;13443;34189;26468;32904;32857;37574;32660;36867;37956;49681;41618;28462;49652.06;32875;32933 -181;'716;Zimbabwe;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9831;9831;9831;11402;5642;9214;25455;21964;27107;26295;30689;25301;29929;31372;48304;38573;25511;52302.89;40402;46237 -181;'716;Zimbabwe;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6527;6527;6527;6527;4378;1689;1579;1390;96;201;393;2185;344;76;4270;3796;212;2678.26;2707;8535 -181;'716;Zimbabwe;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3942;3942;3942;3942;2558;1227;1148;1024;83;189;539;546;109;140;4853;4414;383;3197.77;3972;8972 -181;'716;Zimbabwe;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38000;41000;41000;41000;41000;41000;28000;28000;28000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -181;'716;Zimbabwe;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5500;5500;5500;8600;8036;10670;27265;17111;22977;21272;26240;22912;25444;27720;37482;34792;22725;40460.3;23217;22926 -181;'716;Zimbabwe;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3409;3409;3409;4980;4461;6385;17429;10878;17390;15362;18840;16777;18223;18313;29912;27457;16448;34087.59;19910;21431 -181;'716;Zimbabwe;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2786;2786;2786;2786;3516;1209;1209;1209;6;6;6;6;6;6;3;4;0;0;68;4704 -181;'716;Zimbabwe;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1683;1683;1683;1683;1915;694;694;694;7;7;7;7;7;7;2;5;0;0;36;2797 -181;'716;Zimbabwe;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5702;5702;5702;5702;495;1627;4321;6377;8340;8870;9068;7730;7683;6462;7827;4101;4233;7425.76;6491;6470 -181;'716;Zimbabwe;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3536;3536;3536;3536;650;1455;4672;7419;7387;7603;8504;6162;7616;8570;12496;7617;7580;15851.3;15898;20442 -181;'716;Zimbabwe;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1205;1205;1205;1205;279;62;34;34;3;19;65;65;25;41;40;40;3;100;0;11 -181;'716;Zimbabwe;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;728;728;728;728;152;130;49;49;0;32;222;222;21;89;3;3;12;98;0;4 -181;'716;Zimbabwe;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;1000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -181;'716;Zimbabwe;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4643;4643;4643;4643;322;1113;2568;2855;1575;2587;2142;1870;3564;3726;4234;2714;1464;1766;3070;3487 -181;'716;Zimbabwe;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2879;2879;2879;2879;498;1314;3245;3471;2309;3194;3244;2262;3996;4369;5726;3482;1464;2363;4412;4255 -181;'716;Zimbabwe;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1857;1857;1857;1857;511;398;324;135;67;156;302;2094;293;9;4207;3732;189;2558.26;2639;3820 -181;'716;Zimbabwe;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1121;1121;1121;1121;429;378;373;249;55;129;289;296;60;25;4829;4387;352;3080.77;3936;6171 -181;'716;Zimbabwe;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37000;40000;40000;40000;40000;40000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -181;'716;Zimbabwe;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;31;33;35;125;12;128;124;148;176;48;138;11;40;0;97;50 -181;'716;Zimbabwe;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;33;60;109;196;21;136;101;100;94;120;170;17;19;1;182;109 -181;'716;Zimbabwe;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;679;679;679;679;72;20;12;12;20;20;20;20;20;20;20;20;20;20;0;0 -181;'716;Zimbabwe;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;410;410;410;410;62;25;32;32;21;21;21;21;21;19;19;19;19;19;0;0 -181;'716;Zimbabwe;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63000;65000;65000;65000;58000;64000;64000;64000;64000;52000;56000;21000;21000;21000;21000;21000;21000;21000;21000;21000;10886;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -181;'716;Zimbabwe;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;12200;14500;13400;15400;17200;17200;17200;17200;17200;17200;17200;17200;17200;17200;17200;5600;5600;4600;5900;10300;11700;8300;9900;9400;9400;6800;7000;2000;2000;2000;2000;21296;3736;3277;16796;16800;16800;22600;21000;21000;21000;21000;21000;4047;4047;4047;4047;447;1201;2498;1326;967;451;1244;430;689;387;704;657;648;818;1112;979 -181;'716;Zimbabwe;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;3743;3990;3961;4249;4200;4200;4200;4200;4200;4200;4200;4200;4200;4200;4200;4789;4947;3653;5185;8053;10211;7104;6387;6109;6109;4306;11716;2170;2170;2170;2170;17047;2341;2561;14221;18649;18649;14827;13078;13078;13078;13078;13078;3844;3844;3844;3844;1435;4641;9142;4090;2612;1032;3778;769;2005;1139;2838;2070;2197;2719.26;59693;9379 -181;'716;Zimbabwe;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;1500;1100;1700;4200;1500;700;1900;4100;9400;9400;3800;11700;4200;4200;4200;4200;8042;103;109;3437;5700;5700;2900;4600;4600;4600;4600;4600;1059;1059;1059;1059;3465;214;245;127;137;94;96;96;25;25;16;27;32;44;30;114 -181;'716;Zimbabwe;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;499;312;357;763;933;710;1130;1503;3867;3867;1621;4270;1709;1709;1709;1709;3897;86;77;2868;4233;4233;1013;1492;1492;1492;1492;1492;1166;1166;1166;1166;1657;130;708;402;273;296;125;125;25;22;13;25;14;33;27;40 -181;'716;Zimbabwe;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5663;8522;7069;5459;6840;10648;10077 -181;'716;Zimbabwe;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4512;5236;3222;4344;4919;4325;3284 -181;'716;Zimbabwe;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;132;190;33;86;117;62;187 -181;'716;Zimbabwe;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;790;890;614;518;798;391;302 -181;'716;Zimbabwe;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92;77;12;38;38;19;15 -181;'716;Zimbabwe;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;182;385;168;193;236;58;58 -181;'716;Zimbabwe;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;113;21;48;79;43;172 -181;'716;Zimbabwe;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;608;505;446;325;562;333;244 -181;'716;Zimbabwe;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1784;3162;873;1137;1648;1166;872 -181;'716;Zimbabwe;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;15;38;22;73;147;50 -181;'716;Zimbabwe;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;268;266;139;45;65;162;199 -181;'716;Zimbabwe;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;89;125;59;169;37;81 -181;'716;Zimbabwe;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;672;756;1637;784;1073;1965;2730 -181;'716;Zimbabwe;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;296;472;408;190;245;439;68 -181;'716;Zimbabwe;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3 -181;'716;Zimbabwe;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6 -181;'716;Zimbabwe;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1 -181;'716;Zimbabwe;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1 -181;'716;Zimbabwe;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;19 -181;'716;Zimbabwe;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;30 -181;'716;Zimbabwe;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2715;3852;3817;3176;3524;6868;5582 -181;'716;Zimbabwe;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3311;3705;2001;3535;3633;3311;2774 -181;'716;Zimbabwe;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121;121;14;35;113;74 -181;'716;Zimbabwe;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92;175;449;217;378;312;433 -181;'716;Zimbabwe;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;65;36;20;1;0;9 -181;'716;Zimbabwe;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28039;35739;26024;26469;38655;44232;44953 -181;'716;Zimbabwe;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5464;4957;4954;6529;4818;6931;7512 -181;'716;Zimbabwe;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;262;83;173;568;801;251 -181;'716;Zimbabwe;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;32;32;32;32;32;32 -181;'716;Zimbabwe;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2979;4023;1760;1587;2201;3313;2069 -181;'716;Zimbabwe;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;135;0;0;0;0;1;0 -181;'716;Zimbabwe;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4340;4556;2391;2669;4504;5801;7685 -181;'716;Zimbabwe;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;5;3;0;28;7;3 -181;'716;Zimbabwe;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12529;16068;15496;16658;23479;23896;25414 -181;'716;Zimbabwe;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4669;4072;4104;5900;4273;6728;6970 -181;'716;Zimbabwe;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8113;10830;6294;5382;7903;10421;9534 -181;'716;Zimbabwe;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;621;848;815;597;485;163;507 -5000;'001;World;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;424228592.1;464866131.3;435445253.7;410160373.7;514344001.5;560428339.8;483607940.9 -5000;'001;World;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;418819990.1;458030981.7;429593537;411365371;518355177;545268899.5;481741851.6 -5000;'001;World;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;5730636;5876300;6299082;7229244;7751174;8336632;8691155;11320905;12877821;14335661;15062787;17312678;25243444;33661520;29320754;35213916;39339675;43743915;56219896;63349264;57035125;55115645;53630644;57137467;56560220;65903625;82451324;95593944;105968427;112731634;107525927;112891478;107417770;123724339;152997693;143330338;144269402;133205162;141077408;153750643;141439708;141846664.1;161522095;188042518;195344595.4;210034255.1;238799599.6;243304955.1;192012064;231916873.2;260754670.6;244970478.3;255144074;267687262.2;239680449.5;237300249.8;257750348.6;286377680.8;258622145.7;237627564.7;304355968.5;331746282.8;279833440.9 -5000;'001;World;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;5153235;5263610;5681657;6463672;6891468;7317898;7547533;9959440;11235700;12637170;13155174;15509248;22359724;29597839;25970009;31632957;34143524;38175264;49778956;56587123;51718959;47127648;48226144;51169177;50710482;58908860;74391070;88935076;95951241;100362412;98332845;104496079;100390450;114887377;147425010;134557623;134287689;128927338;133209910;145206136;130901591;134259670;152509559;178748588;187824200.4;203755059;232765285;237492083;188353618.6;223754134.4;247903677.2;233470873.8;246778506.2;256210984.5;230209839.8;227389864.5;246350354;273335529.8;245826174;227949023;295698153;312598979.5;263362538.6 -5000;'001;World;1861;Roundwood;5516;Production;m3;2515974889;2526832421;2550688280;2624086293;2645396186;2679478220;2710650705;2737382671;2763116631;2818893308;2846882784;2854264910;2924477348;2935761885;2885903412;2984514340;3001268766;3054902344;3120085277;3129074849;3116455738;3117363257;3202923408;3288759134;3295359395;3373371435;3429108270;3466078103;3504672370;3539671466;3436087799;3345503887;3292929111;3285390012;3333717508;3301259333;3373238588;3347228653;3399383951;3477732100;3405319159;3463961583;3518016873;3579428952;3621137892;3581117882;3614860535;3499731794;3397581070;3586212895;3667095365;3679094711;3731870243;3762225623;3753136476;3850253675;3882193478;4001831740;3922489655;3910557928;3987596259;3977343429;3885748569 -5000;'001;World;1861;Roundwood;5616;Import quantity;m3;39521100;40733050;43580803;47568801;50660750;55519100;61793400;69966100;75394408;85614116;83633104;86931404;100665508;98323216;83953000;94447018;97821007;99425008;104260112;96408912;85227400;82137500;87239100;88209400;90913500;90938973;99913476;101145753;98455613;83409900;85321568;84938765;78227212;89446298;96055788;84393152;92559899;93282941;107397151;117351014;117690246;120542793;124390801;127735193;136650624.9;135469284;141975146;122757644;94938853;116062277.5;128556606.2;120196306.2;134846276.7;141640923.2;134283950;140009702;137134304;149745589;145767908;141283652;147773824.8;123956653.4;108215984.3 -5000;'001;World;1861;Roundwood;5622;Import value;1000 USD;916900;961380;1062963;1202461;1315732;1498264;1715907;2031724;2292205;2628073;2642148;2869712;5188427;5909430;4615220;5986241;6690380;7191691;11042443;11157705;7933066;7611650;6946031;7020080;6635897;7131856;9417505;9685695;10660260;10172040;9952430;10099582;11092327;11286347;12142762;10550740;9711392;8195596;9331123;10094125;9216965;9296694;10403399;12074146;12841971.8;13946646.3;17361645.3;15858339;11387932;15056730.95;18795290.23;16793417.76;19998322.91;22762801.3;16614529;16539996;18242503.86;20226502.36;17645467;15568644;21234492.07;19331624.96;15210000.57 -5000;'001;World;1861;Roundwood;5916;Export quantity;m3;39601850;39643100;44650566;48684800;51724500;56496900;61637000;70246867;76586600;87084300;83523300;86283900;102275300;95247608;83979350;96231721;97704816;97938200;99311108;93157100;79463850;80018104;82127496;83569200;87059365;86816248;95860688;99561731;98039900;83862301;90690154;87374551;74745161;80069684;90814582;80422767;87763846;90439696;102246655;118029586;114718620;120227437;119637713;121490638;133660775.2;134879748;138201568;118669729;97828798;114178239;126231572;119119140;134692741;141299467;133142694;135601422;136852932;145673491;143136636;144203506;142208616.6;117865597;103493038 -5000;'001;World;1861;Roundwood;5922;Export value;1000 USD;699850;728732;806944;885890;981919;1068141;1185668;1440519;1596079;1804575;1818068;2068113;3784559;4178580;3362984;4401780;4861462;5265502;7659462;7886534;5753186;5605311;5338619;4842666;4918029;5219675;6580134;7572538;7709406;8106968;7758862;8390369;8367419;8473225;9144717;8153181;7724167;6424280;7349633;8286859;7525326;7593179;8076382;9017002;10947161.4;11741264;14754635;14298682;10125304;13294356.87;16263265.73;14774660.97;17837378.82;20099192.41;14848956;14673544;16925987.57;18379621.13;15545042;14027792;17947475.7;15950901;13268064 -5000;'001;World;1862;Roundwood, coniferous;5516;Production;m3;1000330416;1009708763;1014688742;1066062456;1072063211;1084977424;1100196126;1115579293;1127965771;1158872749;1173138153;1162558127;1206117406;1208066552;1171408228;1227595237;1229003798;1251087114;1281715907;1258415283;1235765842;1212883203;1273379505;1325770104;1329155543;1372897402;1415992647;1421289367;1431696734;1425841365;1289975873;1171201130;1136667038;1132541285;1166478212;1133584583;1191076633;1154915182;1186265138;1242202382;1190297121;1216833758;1233660939;1284349715;1324506362;1276853893;1263026810;1132646517;1045337467;1172156509;1206640199;1196861581;1247832307;1258671775;1280940800;1315635223;1338954507;1421313437;1385610528;1371539412;1432201346;1386131647;1301958423 -5000;'001;World;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89941040;100437481;99450933;101044114;104868413.4;83065017.28;74357191.19 -5000;'001;World;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9526537.11;10936720.22;10130398;9581860;13629133.84;11016469.91;8919510.52 -5000;'001;World;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88615386;97781616;99438911;103716714;98712004.99;80778807;70481562 -5000;'001;World;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8800277.6;9891888.05;8700250;8603692;11028369.75;8931300;7270578 -5000;'001;World;1863;Roundwood, non-coniferous;5516;Production;m3;1515644473;1517123658;1535999538;1558023837;1573332975;1594500796;1610454579;1621803378;1635150860;1660020559;1673744631;1691706783;1718359942;1727695333;1714495184;1756919103;1772264968;1803815230;1838369370;1870659566;1880689896;1904480054;1929543903;1962989030;1966203852;2000474033;2013115623;2044788736;2072975636;2113830101;2146111926;2174302757;2156262073;2152848727;2167239296;2167674750;2182161955;2192313471;2213118813;2235529718;2215022038;2247127825;2284355934;2295079237;2296631530;2304263989;2351833725;2367085277;2352243603;2414056386;2460455166;2482233130;2484037936;2503553848;2472195676;2534618452;2543238971;2580518303;2536879127;2539018516;2555394913;2591211782;2583790146 -5000;'001;World;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47193264;49308108;46316975;40239538;42905411.43;40891636.08;33858793.08 -5000;'001;World;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8715966.75;9289782.14;7515069;5986784;7605358.22;8315155.06;6290490.06 -5000;'001;World;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48237546;47891875;43697725;40486792;43496611.65;37086790;33011476 -5000;'001;World;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8125709.97;8487733.08;6844792;5424100;6919105.95;7019601;5997486 -5000;'001;World;1864;Wood fuel;5516;Production;m3;1498610466;1490968482;1501198865;1513378178;1514056639;1526347281;1528549182;1530931056;1528621592;1542387501;1550398053;1564222347;1565001717;1584935554;1591687605;1614744617;1622840443;1632962929;1662069854;1682362640;1704052800;1744685315;1746986309;1767329663;1771469304;1780537886;1775438121;1792454281;1801563455;1833083000;1869868731;1841461249;1809956198;1802119716;1808942127;1795670466;1816263835;1810560746;1815784571;1795443147;1802756921;1820809870;1833078138;1837215414;1825046570;1835928032;1841129934;1848631376;1840157627;1864194713;1869966623;1885690757;1896320868;1903098874;1900487979;1927639781;1929963116;1945725849;1937133764;1926768576;1949889587;1965232116;1961147073 -5000;'001;World;1864;Wood fuel;5616;Import quantity;m3;1815200;1875450;2335000;2418100;1705300;1541700;1318400;1223500;1318100;1110200;997200;865600;1399700;1541200;1416800;1274200;1356641;1050400;1078100;1059100;611500;716400;1021000;1099100;1027500;923200;869500;890200;994900;838700;1005300;1334001;1755582;1434302;1123643;1493077;1317297;1677155;1761127;2085290;2065733;2543406;3284780;3246511;3411700.7;3955672;3526396;3633230;4815548;5162314.5;5940014.17;5957838.16;6585883.58;6763723;6130562;5991772;5084778;5679802;5583713;4185698;5652596.79;5612480.36;5536768.27 -5000;'001;World;1864;Wood fuel;5622;Import value;1000 USD;16281;18459;21450;22481;15342;14064;12880;11233;16350;12763;11948;9678;17771;30237;29563;26863;27178;24229;28704;38984;24962;24044;29896;28429;26587;33241;32547;35630;35935;36771;42550;52414;62178;62140;51219;64509;64264;70330;74686;69483;74475;92263;137716;161414;161203.5;232404;258665;284982;334743;370458;484930;462516;513374.56;504969;407602;391440;373534.97;451231.27;444855;355922;472399.07;633480.96;624765.57 -5000;'001;World;1864;Wood fuel;5916;Export quantity;m3;1493800;1573500;1955766;1537400;1227200;926300;1069800;1108267;1295000;1366200;1053100;889600;1109300;1025400;796200;539300;781426;385400;483400;563000;326600;381800;395300;418600;299600;322100;410400;373500;383300;494700;588200;1173214;1711587;2231208;2090386;2435120;3726571;4564103;3436827;3627857;3881896;3715591;4356566;3965512;4328232.2;4545139;4717593;4860068;6228336;6863820;8055238;8195270;8603920;9105194;9575513;9411103;8474609;7903579;7615308;6241941;7869529.64;7353924;6827326 -5000;'001;World;1864;Wood fuel;5922;Export value;1000 USD;12238;13449;17333;14623;11482;9122;8484;8865;10992;12681;9565;10835;15352;24934;17342;17787;18837;9751;15123;25446;13421;16851;11602;10410;6463;9261;13422;15652;14920;21975;26034;50716;62246;79800;85075;91176;119657;131411;105282;80733;89809;99944;136730;145697;169979.4;214196;247469;297735;361608;417204;525141;497057.45;551032.22;573627;492647;482168;496114.14;564842.86;514304;464604;631365.7;759723;704567 -5000;'001;World;1627;Wood fuel, coniferous;5516;Production;m3;245517893;242640132;245062435;253460641;250621180;253590993;251006903;249184278;248148448;248742450;249666122;253334388;250762483;257017929;256359429;262571930;260774591;260342707;265911392;269103068;273099903;279004964;275182490;276601373;273816628;271484079;270444724;264207912;264452329;267438727;266282562;235864688;223834790;217057329;219248163;218618532;227127788;217570993;213717408;204243861;206057561;206306536;210764289;210958640;206713922;210779324;209666145;208763246;209434951;212846493;209659227;211971014;214096666;212391252;214172278;214159688;217217818;242556259;237538544;229457567;237354048;238106010;233172031 -5000;'001;World;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2253016;2506137;2135270;1684009;2366291.36;2140969.28;2593682.19 -5000;'001;World;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;152147.3;180186.58;162442;130499;159584.84;179074.91;206608.52 -5000;'001;World;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3270423;3115326;3025703;2580047;3053798.99;2905913;2602601 -5000;'001;World;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;161568.57;170209.01;146663;149549;174498.74;204227;185372 -5000;'001;World;1628;Wood fuel, non-coniferous;5516;Production;m3;1253092573;1248328350;1256136430;1259917537;1263435459;1272756288;1277542279;1281746778;1280473144;1293645051;1300731931;1310887959;1314239234;1327917625;1335328176;1352172687;1362065852;1372620222;1396158462;1413259572;1430952897;1465680351;1471803819;1490728290;1497652676;1509053807;1504993397;1528246369;1537111126;1565644273;1603586169;1605596561;1586121408;1585062387;1589693964;1577051934;1589136047;1592989753;1602067163;1591199286;1596699360;1614503334;1622313849;1626256774;1618332648;1625148708;1631463789;1639868130;1630722676;1651348220;1660307396;1673719743;1682224202;1690707622;1686315701;1713480093;1712745298;1703169590;1699595220;1697311009;1712535539;1727126106;1727975042 -5000;'001;World;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2831762;3173665;3448443;2501689;3286305.43;3471511.08;2943086.08 -5000;'001;World;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;221387.67;271044.69;282413;225423;312814.22;454406.06;418157.06 -5000;'001;World;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5204186;4788253;4589605;3661894;4815730.65;4448011;4224725 -5000;'001;World;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;334545.57;394633.85;367641;315055;456866.95;555496;519195 -5000;'001;World;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;1815200;1875450;2335000;2418100;1705300;1541700;1318400;1223500;1318100;1110200;997200;865600;1399700;1541200;1416800;1274200;1356641;1050400;1078100;1059100;611500;716400;1021000;1099100;1027500;923200;869500;890200;994900;838700;1005300;1334001;1755582;1434302;1123643;1493077;1317297;1677155;1761127;2085290;2065733;2543406;3284780;3246511;3411700.7;3955672;3526396;3633230;4815548;5162314.5;5940014.17;5957838.16;6585883.58;6763723;6130562;5991772;;;;;;; -5000;'001;World;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;16281;18459;21450;22481;15342;14064;12880;11233;16350;12763;11948;9678;17771;30237;29563;26863;27178;24229;28704;38984;24962;24044;29896;28429;26587;33241;32547;35630;35935;36771;42550;52414;62178;62140;51219;64509;64264;70330;74686;69483;74475;92263;137716;161414;161203.5;232404;258665;284982;334743;370458;484930;462516;513374.56;504969;407602;391440;;;;;;; -5000;'001;World;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;1493800;1573500;1955766;1537400;1227200;926300;1069800;1108267;1295000;1366200;1053100;889600;1109300;1025400;796200;539300;781426;385400;483400;563000;326600;381800;395300;418600;299600;322100;410400;373500;383300;494700;588200;1173214;1711587;2231208;2090386;2435120;3726571;4564103;3436827;3627857;3881896;3715591;4356566;3965512;4328232.2;4545139;4717593;4860068;6228336;6863820;8055238;8195270;8603920;9105194;9575513;9411103;;;;;;; -5000;'001;World;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;12238;13449;17333;14623;11482;9122;8484;8865;10992;12681;9565;10835;15352;24934;17342;17787;18837;9751;15123;25446;13421;16851;11602;10410;6463;9261;13422;15652;14920;21975;26034;50716;62246;79800;85075;91176;119657;131411;105282;80733;89809;99944;136730;145697;169979.4;214196;247469;297735;361608;417204;525141;497057.45;551032.22;573627;492647;482168;;;;;;; -5000;'001;World;1865;Industrial roundwood;5516;Production;m3;1017364423;1035863939;1049489415;1110708115;1131339547;1153130939;1182101523;1206451615;1234495039;1276505807;1296484731;1290042563;1359475631;1350826331;1294215807;1369769723;1378428323;1421939415;1458015423;1446712209;1412402938;1372677942;1455937099;1521429471;1523890091;1592833549;1653670149;1673623822;1703108915;1706588466;1566219068;1504042638;1482972913;1483270296;1524775381;1505588867;1556974753;1536667907;1583599380;1682288953;1602562238;1643151713;1684938735;1742213538;1796091322;1745189850;1773730601;1651100418;1557423443;1722018182;1797128742;1793403954;1835549375;1859126749;1852648497;1922613894;1952230362;2056105891;1985355891;1983789352;2037706672;2012111313;1924601496 -5000;'001;World;1865;Industrial roundwood;5616;Import quantity;m3;37705900;38857600;41245803;45150701;48955450;53977400;60475000;68742600;74076308;84503916;82635904;86065804;99265808;96782016;82536200;93172818;96464366;98374608;103182012;95349812;84615900;81421100;86218100;87110300;89886000;90015773;99043976;100255553;97460713;82571200;84316268;83604764;76471630;88011996;94932145;82900075;91242602;91605786;105636024;115265724;115624513;117999387;121106021;124488682;133238924.2;131513612;138448750;119124414;90123305;110899963;122616592;114238468;128260393.1;134877200.2;128153388;134017930;132049526;144065787;140184195;137097954;142121228;118344173;102679216 -5000;'001;World;1865;Industrial roundwood;5622;Import value;1000 USD;900619;942921;1041513;1179980;1300390;1484200;1703027;2020491;2275855;2615310;2630200;2860034;5170656;5879193;4585657;5959378;6663202;7167462;11013739;11118721;7908104;7587606;6916135;6991651;6609310;7098615;9384958;9650065;10624325;10135269;9909880;10047168;11030149;11224207;12091543;10486231;9647128;8125266;9256437;10024642;9142490;9204431;10265683;11912732;12680768.3;13714242.3;17102980.3;15573357;11053189;14686272.95;18310360.23;16330901.76;19484948.36;22257832.3;16206927;16148556;17868968.89;19775271.09;17200612;15212722;20762093;18698144;14585235 -5000;'001;World;1865;Industrial roundwood;5916;Export quantity;m3;38108050;38069600;42694800;47147400;50497300;55570600;60567200;69138600;75291600;85718100;82470200;85394300;101166000;94222208;83183150;95692421;96923390;97552800;98827708;92594100;79137250;79636304;81732196;83150600;86759765;86494148;95450288;99188231;97656600;83367601;90101954;86201337;73033574;77838476;88724196;77987647;84037275;85875593;98809828;114401729;110836724;116511846;115281147;117525126;129332543;130334609;133483975;113809661;91600462;107314419;118176334;110923870;126088821;132194273;123567181;126190319;128378323;137769912;135521328;137961565;134339087;110511673;96665712 -5000;'001;World;1865;Industrial roundwood;5922;Export value;1000 USD;687612;715283;789611;871267;970437;1059019;1177184;1431654;1585087;1791894;1808503;2057278;3769207;4153646;3345642;4383993;4842625;5255751;7644339;7861088;5739765;5588460;5327017;4832256;4911566;5210414;6566712;7556886;7694486;8084993;7732828;8339653;8305173;8393425;9059642;8062005;7604510;6292869;7244351;8206126;7435517;7493235;7939652;8871305;10777182;11527068;14507166;14000947;9763696;12877152.87;15738124.73;14277603.52;17286346.6;19525565.41;14356309;14191376;16429873.42;17814778.27;15030738;13563188;17316110;15191178;12563497 -5000;'001;World;1866;Industrial roundwood, coniferous;5516;Production;m3;754812523;767068631;769626307;812601815;821442031;831386431;849189223;866395015;879817323;910130299;923472031;909223739;955354923;951048623;915048799;965023307;968229207;990744407;1015804515;989312215;962665939;933878239;998197015;1049168731;1055338915;1101413323;1145547923;1157081455;1167244405;1158402638;1023693311;935336442;912832248;915483956;947230049;914966051;963948845;937344189;972547730;1037958521;984239560;1010527222;1022896650;1073391075;1117792440;1066074569;1053360665;923883271;835902516;959310016;996980972;984890567;1033735641;1046280523;1066768522;1101475535;1121736689;1178757178;1148071984;1142081845;1194847298;1148025637;1068786392 -5000;'001;World;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41932581;45049676;43409102;41902876;46800788;50445648;46099333;49943233;49078369;60260861;68137401;70260715;74368758;76465753;78786538;84094719;84334302;88439896;74524890;60913522;73321953;81626356;72773349;84698325;86627683.1;84387028;89683053;87688024;97931344;97315663;99360105;102502122;80924048;71763509 -5000;'001;World;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4935317;4635041;4685795;5291086;5269070;5842364;5276760;4849396;3780345;4527938;4687937;4434604;4777494;5123511;6169635;6509058.2;7206445;8857584.3;7445481;5893024.4;7797236.65;9982750.49;8302263;10281136;10639384;7843220;8629996;9374389.81;10756533.64;9967956;9451361;13469549;10837395;8712902 -5000;'001;World;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42604417;48261340;44115938;43587048;44450161;48118961;44347304;47472876;47739213;58958378;68298297;68752744;72910939;72438728;73860449;81171419;81815135;82624925;69418128;61609732;69873098;79319671;71795740;84342458;86368085;80646845;83886377;85344963;94666290;96413208;101136667;95658206;77872894;67878961 -5000;'001;World;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3966796;3851568;3934032;4408312;4221300;4591585;4217449;3804549;3030650;3570747;3835891;3507024;3906823;4043699;4826045;5494457;5934976;7408910;6367597;4852847;6213646;7977148.3;6777524;8692671.2;8804511.41;6873728;7118740;8638709.03;9721679.04;8553587;8454143;10853871;8727073;7085206 -5000;'001;World;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41932581;45049676;43409102;41902876;46800788;50445648;46099333;49943233;49078369;60260861;68137401;70260715;74368758;76465753;78786538;84094719;84334302;88439896;74524890;60913522;73321953;81626356;72773349;84698325;86627683.1;84387028;89683053;87688024;97931344;97315663;99360105;102502122;80924048;71763509 -5000;'001;World;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4935317;4635041;4685795;5291086;5269070;5842364;5276760;4849396;3780345;4527938;4687937;4434604;4777494;5123511;6169635;6509058.2;7206445;8857584.3;7445481;5893024.4;7797236.65;9982750.49;8302263;10281136;10639384;7843220;8629996;9374389.81;10756533.64;9967956;9451361;13469549;10837395;8712902 -5000;'001;World;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42604417;48261340;44115938;43587048;44450161;48118961;44347304;47472876;47739213;58958378;68298297;68752744;72910939;72438728;73860449;81171419;81815135;82624925;69418128;61609732;69873098;79319671;71795740;84342458;86368085;80646845;83886377;85344963;94666290;96413208;101136667;95658206;77872894;67878961 -5000;'001;World;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3966796;3851568;3934032;4408312;4221300;4591585;4217449;3804549;3030650;3570747;3835891;3507024;3906823;4043699;4826045;5494457;5934976;7408910;6367597;4852847;6213646;7977148.3;6777524;8692671.2;8804511.41;6873728;7118740;8638709.03;9721679.04;8553587;8454143;10853871;8727073;7085206 -5000;'001;World;1867;Industrial roundwood, non-coniferous;5516;Production;m3;262551900;268795308;279863108;298106300;309897516;321744508;332912300;340056600;354677716;366375508;373012700;380818824;404120708;399777708;379167008;404746416;410199116;431195008;442210908;457399994;449736999;438799703;457740084;472260740;468551176;491420226;508122226;516542367;535864510;548185828;542525757;568706196;570140665;567786340;577545332;590622816;593025908;599323718;611051650;644330432;618322678;632624491;662042085;668822463;678298882;679115281;720369936;727217147;721520927;762708166;800147770;808513387;801813734;812846226;785879975;821138359;830493673;877348713;837283907;841707507;842859374;864085676;855815104 -5000;'001;World;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40638619;39266592;40195662;34568754;41211208;44486497;36800742;41299369;42527417;45375163;47128323;45363798;43630629;44640268;45702144;49144205.2;47179310;50008854;44599524;29209783;37578010;40990236;41465119;43562068.13;48249517.13;43766360;44334877;44361502;46134443;42868532;37737849;39619106;37420125;30915707 -5000;'001;World;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5199952;5274839;5361373;5739063;5955137;6249179;5209471;4797732;4344921;4728499;5336705;4707886;4426937;5142172;5743097;6171710.1;6507797.3;8245396;8127876;5160164.6;6889036.3;8327609.74;8028638.76;9203812.36;11618448.3;8363707;7518560;8494579.09;9018737.45;7232656;5761361;7292544;7860749;5872333 -5000;'001;World;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40763184;41840614;42085399;29446526;33388315;40605235;33640343;36564399;38136380;39851450;46103432;42083980;43600907;42842419;43664677;48161124;48519474;50859050;44391533;29990730;37441321;38856663;39128130;41746363;45826188;42920336;42303942;43033360;43103622;39108120;36824898;38680881;32638779;28786751 -5000;'001;World;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4118197;3881260;4405621;3896861;4172125;4468057;3844556;3799961;3262219;3673604;4370235;3928493;3586412;3895953;4045260;5282725;5592092;7098256;7633350;4910849;6663506.87;7760976.43;7500079.52;8593675.4;10721054;7482581;7072636;7791164.4;8093099.23;6477151;5109045;6462239;6464105;5478291 -5000;'001;World;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25056093;23254901;22608998;18186819;18526815;17398739;17420301;17504419;14738782;18072753;18276269;17334863;15830434;16000431;16071098;15174868;14854322;15978925;14728732;12399729;14817657;15603135;15908658;16869443;19534930;18617268;17826028;17659407;16921622;14672322;12255311;11970865;10846348;10203799 -5000;'001;World;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3763782;3846633;3685232;4307910;4067859;3701296;3468767;2749213;2259865;2794989;3076383;2756394;2486705;2796765;3225108;3209956;3448200;4390236;4390697;3320051.6;4417343.2;5417544.38;5483216.76;6428059.38;8386428.58;5766513;4848766;5372789.01;5154303.5;4127608;2923482;3647350;3143965;2634801 -5000;'001;World;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25396396;26756865;25960896;16986006;18238274;17200006;16761449;17211009;13704766;15690271;18210533;15342803;15595676;14477485;14070446;16358667;15348890;16840969;15433464;13175493;15315837;15578058;15667084;16481047;19488964;18645057;18091620;17618005;17075437;14596340;11501731;13217435;11848261;10934141 -5000;'001;World;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2816780;2661283;3028208;2761990;2971353;2649565;2371982;2235967;1459297;1909552;2451539;2253608;1897623;1948043;1795505;2868087;2938355;3653767;4165972;3151538;4239487;4991879.43;4947858;5924077;7812581;5341326;4692901;4962478.79;4951790;3836440;2593009;3465419;2947557;2686229 -5000;'001;World;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15582526;16011691;17586664;16381935;22684393;27087758;19380441;23794950;27788635;27302410;28852054;28028935;27800195;28639837;29631046;33969337.2;32324988;34029929;29870792;16810054;22760353;25387101;25556461;26692625.13;28714587.13;25149092;26508849;26702095;29212821;28196210;25482538;27648241;26573777;20711908 -5000;'001;World;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1436170;1428206;1676141;1431153;1887278;2547883;1740704;2048519;2085056;1933510;2260322;1951492;1940232;2345407;2517989;2961754.1;3059597.3;3855160;3737179;1840113;2471693.1;2910065.35;2545422;2775752.97;3232019.72;2597194;2669794;3121790.08;3864433.95;3105048;2837879;3645194;4716784;3237532 -5000;'001;World;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15366788;15083749;16124503;12460520;15150041;23405229;16878894;19353390;24431614;24161179;27892899;26741177;28005231;28364934;29594231;31802457;33170584;34018081;28958069;16815237;22125484;23278605;23461046;25265316;26337224;24275279;24212322;25415355;26028185;24511780;25323167;25463446;20790518;17852610 -5000;'001;World;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1301417;1219977;1377413;1134871;1200772;1818492;1472574;1563994;1802922;1764052;1918696;1674885;1688789;1947910;2249755;2414638;2653737;3444489;3467378;1759311;2424019.87;2769097;2552221.52;2669598.4;2908473;2141255;2379735;2828685.61;3141309.23;2640711;2516036;2996820;3516548;2792062 -5000;'001;World;1868;Sawlogs and veneer logs;5516;Production;m3;636496415;655811923;663610215;705954607;681099423;687393215;705349015;730284915;738310423;759682007;784336115;786373239;830181323;791946015;765327507;840232415;860548915;890405015;901233315;873955539;834958173;804357931;875487323;919492439;920459223;963188934;1008485323;1019738454;1027836664;1049705966;924299641;915474273;905774760;919616113;947887605;949993184;972905142;942742468;972761139;1046703286;982617347;1014296609;1031022319;1081543264;1116188024;1070941140;1074575023;957744770;875344167;952447748;984087777;982741326;1032231255;1049112675;1052206806;1087840543;1110047695;1167879004;1114411951;1128148406;1160613235;1126275116;1069597123 -5000;'001;World;1868;Sawlogs and veneer logs;5616;Import quantity;m3;20063100;22027300;25787503;28930601;31985550;37378000;43575800;51513700;55448508;61785716;62058304;68294904;78899708;72125116;59935800;71799008;75159785;77474408;79769612;70244812;58684000;59058100;63296900;61673600;62807200;62227973;67923476;70168053;68888013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5000;'001;World;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;632148;693939;823299;930749;1030036;1219851;1440755;1760807;1996501;2236416;2269557;2548718;4768827;5216642;3821708;5315130;5947741;6448460;10147466;9943122;6751188;6647886;6099806;6164017;5764699;6069196;8137851;8332360;9169429;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5000;'001;World;1868;Sawlogs and veneer logs;5916;Export quantity;m3;20228350;20988800;26589200;29782700;32753500;37280800;42008700;51140900;55442900;63072700;62497300;68096600;80627200;71079708;60075250;73716881;75645190;78062300;77735408;70016800;55702650;59780904;61842096;60677700;62686465;61501552;68710230;71964931;71323300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5000;'001;World;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;449088;486627;589383;644710;727153;808541;929531;1192898;1317903;1468833;1496092;1772676;3384731;3561317;2642153;3758300;4198450;4614689;6911230;6908671;4772215;4829219;4623160;4086876;4113310;4287802;5483294;6421955;6577455;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5000;'001;World;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;477948515;493849615;496909107;527687707;501143715;503202807;512412015;533240815;535179015;549282999;569565215;564014723;589639915;565186615;549965799;603691307;619101207;637048407;644415015;611593215;580657615;561941223;623936415;661131915;668061407;697338415;729944815;732423847;735540289;743979376;624237574;602054952;592798821;606915940;629359629;623687552;644544184;619237037;657106882;721819080;679802643;702637304;705771123;746631795;781030782;739795066;730793005;616503562;545983913;609681295;635818053;628614664;663598523;680101383;691578690;707143063;726320275;770616574;745385367;751471062;784479548;753559814;710821718 -5000;'001;World;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;6425600;7426800;9001103;10040501;11940550;13671800;17860200;22713300;22297900;25668408;23111100;26455200;29877600;26868508;24305200;27658008;29236317;29795800;31471408;27988904;23780200;26339000;30300200;30992000;32963300;32835032;36091313;37306776;37170532;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5000;'001;World;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;160410;185376;227158;267843;318990;386801;537025;728539;760659;911130;803544;982317;1758566;1885175;1699859;1928873;2264245;2407693;3534977;3536942;2420483;2465281;2494532;2526896;2654447;2755011;3468544;3794681;4555569;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5000;'001;World;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;5925100;6369300;8669200;9874900;11603500;13505300;16792700;20988500;20408100;24414900;21617000;25474900;28749400;26179900;23809400;28340470;28597810;29769400;31736208;27896100;22497500;26328600;29388300;30885800;32586508;32626377;35697790;38797756;37499276;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5000;'001;World;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;110105;128788;139862;168053;210003;249678;318870;439429;456428;575385;529262;683142;1318182;1383075;1217958;1468866;1683262;1851340;2644297;2490254;1820695;1917379;1852370;1931612;1996581;2128777;2630936;3393528;3402195;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5000;'001;World;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;158547900;161962308;166701108;178266900;179955708;184190408;192937000;197044100;203131408;210399008;214770900;222358516;240541408;226759400;215361708;236541108;241447708;253356608;256818300;262362324;254300558;242416708;251550908;258360524;252397816;265850519;278540508;287314607;292296375;305726590;300062067;313419321;312975939;312700173;318527976;326305632;328360958;323505431;315654257;324884206;302814704;311659305;325251196;334911469;335157242;331146074;343782018;341241208;329360254;342766453;348269724;354126662;368632732;369011292;360628116;380697480;383727420;397262430;369026584;376677344;376133687;372715302;358775405 -5000;'001;World;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;13637500;14600500;16786400;18890100;20045000;23706200;25715600;28800400;33150608;36117308;38947204;41839704;49022108;45256608;35630600;44141000;45923468;47678608;48298204;42255908;34903800;32719100;32996700;30681600;29843900;29392941;31832163;32861277;31717481;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5000;'001;World;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;471738;508563;596141;662906;711046;833050;903730;1032268;1235842;1325286;1466013;1566401;3010261;3331467;2121849;3386257;3683496;4040767;6612489;6406180;4330705;4182605;3605274;3637121;3110252;3314185;4669307;4537679;4613860;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5000;'001;World;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;14303250;14619500;17920000;19907800;21150000;23775500;25216000;30152400;35034800;38657800;40880300;42621700;51877800;44899808;36265850;45376411;47047380;48292900;45999200;42120700;33205150;33452304;32453796;29791900;30099957;28875175;33012440;33167175;33824024;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5000;'001;World;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;338983;357839;449521;476657;517150;558863;610661;753469;861475;893448;966830;1089534;2066549;2178242;1424195;2289434;2515188;2763349;4266933;4418417;2951520;2911840;2770790;2155264;2116729;2159025;2852358;3028427;3175260;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5000;'001;World;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;463458490;477286740;500445219;485201719;495031844;514800232;522488042;539606571;533419527;555243662;545682555;526689782;601863808;637113323;632677239;648027590;642512211;654484414;685223540;691909836;728332781;711067362;696552612;715145468;723868523;695298160 -5000;'001;World;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;270691587;265981815;268058971;253247184;257992214;267011617;277366834;286267015;274870143;281101665;269402410;253231621;312568268;323484242;320916607;339289432;333652727;336639481;356350661;356403106;365243497;359094546;346848805;365482597;348761087;314266464 -5000;'001;World;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;192766903;211304925;232386248;231954535;237039630;247788615;245121208;253339556;258549384;274141997;276280145;273458161;289295540;313629081;311760632;308738158;308859484;317844933;328872879;335506730;363089284;351972816;349703807;349662871;375107436;381031696 -5000;'001;World;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5616;Import quantity;m3;13532500;12800900;11547900;12413100;13029700;13186600;13503900;13777700;14856100;18358500;15811300;12945000;15113700;18723000;18192800;17115900;17078000;16341100;18981800;20614400;21458900;18522000;19117300;21524500;22754700;23473000;26118300;25221100;23544900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5000;'001;World;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5622;Import value;1000 USD;187596;169240;143171;172904;189307;188236;190448;188601;199800;286393;258860;210059;278590;472409;558883;466981;480852;468495;600387;879176;860709;682617;576206;607741;673019;828097;1026949;1074005;1139956;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5000;'001;World;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5916;Export quantity;m3;12881300;12208300;11589300;13174000;13773700;14219000;14713000;14090900;15844800;18632800;16330200;13836100;16828800;18825800;18242100;17718400;16818600;15741500;17723500;18919100;19546200;16215000;16890700;19729400;21423800;22727496;24496258;25474800;24436900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5000;'001;World;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5922;Export value;1000 USD;153358;141770;122986;148479;163307;160060;163828;155836;176975;226306;221025;190556;258835;414069;488744;441106;430356;398901;497479;686042;683455;529505;498624;568758;623170;748247;894426;988939;941560;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5000;'001;World;1870;Pulpwood and particles (1961-1997);5516;Production;m3;213621008;214854008;212529200;229144008;237675016;249634216;267425008;263941000;290902116;314315100;309245016;303680024;326345008;358375016;322875000;323719008;314282008;330396000;357285008;370255400;372523916;359289908;368621900;382557916;380036560;401596908;414499008;423854000;442534916;426481263;420452985;408065147;404862065;411864523;423955279;405467534;412850512;;;;;;;;;;;;;;;;;;;;;;;;;; -5000;'001;World;1870;Pulpwood and particles (1961-1997);5616;Import quantity;m3;13532500;12800900;11547900;12413100;13029700;13186600;13503900;13777700;14856100;18358500;15811300;12945000;15113700;18723000;18192800;17115900;17078000;16341100;18981800;20614400;21458900;18522000;19117300;21524500;22754700;23473000;26118300;25221100;23544900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5000;'001;World;1870;Pulpwood and particles (1961-1997);5622;Import value;1000 USD;187596;169240;143171;172904;189307;188236;190448;188601;199800;286393;258860;210059;278590;472409;558883;466981;480852;468495;600387;879176;860709;682617;576206;607741;673019;828097;1026949;1074005;1139956;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5000;'001;World;1870;Pulpwood and particles (1961-1997);5916;Export quantity;m3;12881300;12208300;11589300;13174000;13773700;14219000;14713000;14090900;15844800;18632800;16330200;13836100;16828800;18825800;18242100;17718400;16818600;15741500;17723500;18919100;19546200;16215000;16890700;19729400;21423800;22727496;24496258;25474800;24436900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5000;'001;World;1870;Pulpwood and particles (1961-1997);5922;Export value;1000 USD;153358;141770;122986;148479;163307;160060;163828;155836;176975;226306;221025;190556;258835;414069;488744;441106;430356;398901;497479;686042;683455;529505;498624;568758;623170;748247;894426;988939;941560;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5000;'001;World;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;175450008;171713008;166608200;177646008;182788008;190790216;202454008;198846000;216899108;234659100;228594016;222224016;240964008;263024008;237263000;235464000;224043000;231089000;250401000;254990000;259383016;248223008;249488000;259412008;257234000;270942008;280818000;286696000;293544008;279835474;270117055;255195765;248531743;248930201;261350056;236401680;244867047;;;;;;;;;;;;;;;;;;;;;;;;;; -5000;'001;World;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;38171000;43141000;45921000;51498000;54887008;58844000;64971000;65095000;74003008;79656000;80651000;81456008;85381000;95351008;85612000;88255008;90239008;99307000;106884008;115265400;113140900;111066900;119133900;123145908;122802560;130654900;133681008;137158000;148990908;146645789;150335930;152869382;156330322;162934322;162605223;169065854;167983465;;;;;;;;;;;;;;;;;;;;;;;;;; -5000;'001;World;1871;Other industrial roundwood;5516;Production;m3;167247000;165198008;173350000;175609500;212565108;216103508;209327500;212225700;205282500;202508700;202903600;199989300;202949300;200505300;206013300;205818300;203597400;201138400;199497100;202501270;204920849;209030103;211827876;219379116;223394308;228047707;230685818;230031368;232737335;230401237;221466442;180503218;172336088;151789660;152932497;150128149;171219099;130466949;133551501;135140448;134743172;133823260;139116184;138182232;140296727;140829183;143911916;147673093;155389494;167706626;175927642;177985389;155290530;167501863;145957277;149549811;150272831;159894106;159876578;159088334;161947969;161967674;159706213 -5000;'001;World;1871;Other industrial roundwood;5616;Import quantity;m3;4110300;4029400;3910400;3807000;3940200;3412800;3395300;3451200;3771700;4359700;4766300;4825900;5252400;5933900;4407600;4257910;4226581;4559100;4430600;4490600;4473000;3841000;3803900;3912200;4324100;4314800;5002200;4866400;5027800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5000;'001;World;1871;Other industrial roundwood;5622;Import value;1000 USD;80875;79742;75043;76327;81047;76113;71824;71083;79554;92501;101783;101257;123239;190142;205066;177267;234609;250507;265886;296423;296207;257103;240123;219893;171592;201322;220158;243700;314940;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5000;'001;World;1871;Other industrial roundwood;5916;Export quantity;m3;4998400;4872500;4516300;4190700;3970100;4070800;3845500;3906800;4003900;4012600;3642700;3461600;3710000;4316700;4865800;4257140;4459600;3749000;3368800;3658200;3888400;3640400;2999400;2743500;2649500;2265100;2243800;1748500;1896400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5000;'001;World;1871;Other industrial roundwood;5922;Export value;1000 USD;85166;86886;77242;78078;79977;90418;83825;82920;90209;96755;91386;94046;125641;178260;214745;184587;213819;242161;235630;266375;284095;229736;205233;176622;175086;174365;188992;145992;175471;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5000;'001;World;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;101414000;101506008;106109000;107268100;137510308;137393408;134323200;134308200;127739200;126188200;125312800;122985000;124751000;122838000;127820000;125868000;125085000;122607000;120988500;122729000;122625308;123714008;124772600;128624808;130043508;133132900;134785108;137961608;138160108;134587788;129338682;78085725;71501684;59637815;56520364;54876819;74537614;47415565;49459033;48080470;51189733;49897704;50113910;49392446;50494643;51409360;41465995;37977299;36686982;37060453;37678677;35359296;30847686;32526413;38550351;37981811;39013308;42897107;43592071;43761978;44885153;45704736;43698210 -5000;'001;World;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;65833000;63692000;67241000;68341400;75054800;78710100;75004300;77917500;77543300;76320500;77590800;77004300;78198300;77667300;78193300;79950300;78512400;78531400;78508600;79772270;82295541;85316095;87055276;90754308;93350800;94914807;95900710;92069760;94577227;95813449;92127760;102417493;100834404;92151845;96412133;95251330;96681485;83051384;84092468;87059978;83553439;83925556;89002274;88789786;89802084;89419823;102445921;109695794;118702512;130646173;138248965;142626093;124442844;134975450;107406926;111568000;111259523;116996999;116284507;115326356;117062816;116262938;116008003 -5000;'001;World;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;4110300;4029400;3910400;3807000;3940200;3412800;3395300;3451200;3771700;4359700;4766300;4825900;5252400;5933900;4407600;4257910;4226581;4559100;4430600;4490600;4473000;3841000;3803900;3912200;4324100;4314800;5002200;4866400;5027800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5000;'001;World;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;80875;79742;75043;76327;81047;76113;71824;71083;79554;92501;101783;101257;123239;190142;205066;177267;234609;250507;265886;296423;296207;257103;240123;219893;171592;201322;220158;243700;314940;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5000;'001;World;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;4998400;4872500;4516300;4190700;3970100;4070800;3845500;3906800;4003900;4012600;3642700;3461600;3710000;4316700;4865800;4257140;4459600;3749000;3368800;3658200;3888400;3640400;2999400;2743500;2649500;2265100;2243800;1748500;1896400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5000;'001;World;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;85166;86886;77242;78078;79977;90418;83825;82920;90209;96755;91386;94046;125641;178260;214745;184587;213819;242161;235630;266375;284095;229736;205233;176622;175086;174365;188992;145992;175471;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5000;'001;World;1630;Wood charcoal;5510;Production;t;16450614;16668433;16791879;17341958;17650825;18014882;18368615;18782530;19162486;19601941;20055071;20797891;21172785;21996391;22382885;23010036;23590525;24389109;24976997;25896079;26496268;27212732;28158498;28971134;29701375;30515355;31240272;32231812;29177371;28609785;29742156;29308573;29959604;35084101;35743279;35488284;34740562;36007384;37102579;36720927;37889920;40015839;42386668;43080717;43910867;44771801;46837187;46933875;45520176;46464359;47664518;49166674;50791555;51580932;51202189;50757420;51596795;53192778;53485506;54005858;55757654;57805678;58792117 -5000;'001;World;1630;Wood charcoal;5610;Import quantity;t;295400;271500;247258;246200;261500;219600;206300;212600;234333;254658;261100;236800;268400;272800;263600;272490;289393;285700;304600;341900;319700;406600;420900;471800;511700;494800;497800;433300;579700;610023;465186;670700;639491;626815;688946;704372;759949;884492;808780;930790;1010191;1022834;1189067;1234606;1446851;1490710;1547099;1826485;1939472.2;2162427;2313241;2364346.25;2460364.26;2596524.26;2550476.29;2482840;2570866;3185656;3138463;2857199;3067167.54;3413853.97;3377000.97 -5000;'001;World;1630;Wood charcoal;5622;Import value;1000 USD;15184;13563;11498;11506;12199;10772;11573;12159;13748;14963;18287;18242;22912;34278;37384;38323;42589;48124;57231;83492;79502;76407;74589;89429;90337;97037;105179;106256;133054;155619;125989;194117;179783;173718;209373;235681;251456;245781;244740;266884;283944;290954;369999;428942;494259;526531;590893;709703;767958;818667;952648;1006957.38;1101363.88;1177878.49;1151004.35;1160085.1;1231582.46;1477528.03;1496221;1426607;1562167.98;1887896.25;1784956.25 -5000;'001;World;1630;Wood charcoal;5910;Export quantity;t;185000;169850;174300;182900;197300;179100;183800;176300;204100;242200;221500;174800;200000;254800;257200;279920;291893;270500;311500;374000;323300;335300;379000;374500;306600;299500;295500;305200;425200;365100;435000;600567;600383;620640;624415;733648;675821;625520;671109;907697;1021516;1041534;1257219;1415631;1510992;1761645;1557711;1736752;1910425;1954004;2085079;2024338;1987128;2252425.1;2344548.1;2279980;2482305;2937316;2789036;2625766;2762922.94;3081378.65;3284433.65 -5000;'001;World;1630;Wood charcoal;5922;Export value;1000 USD;7064;6450;6823;6835;7302;7178;7891;8019;8616;11131;11397;9896;11712;19653;26765;29801;31355;29613;45030;69644;62691;52250;57501;58802;48857;51246;56192;60254;70720;89822;92815;154930;158958;166184;171552;219093;201335;172996;176209;226173;249440;248362;318763;356038;372651;429948;438626;519056;622330;618449;730464;776852;872107;955351;1039213;1037808;1136553.66;1339356.81;1296710;1347407;1496600.53;1620261.19;1744512.19 -5000;'001;World;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;286641361;325883368;329969797;323208818;340598393;371922067;404576079;438021886;449025546;442242102;457962139;434945407;474635175;483283527;497312925;476834449;483761083;493615912;500365242;493404447;515368295;511274417;498761296;509115459;522327165;503242954 -5000;'001;World;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37888432;36808772;41282266;40737670;41034539;42254909;48903910;54027941;53241533;61522175;65366508;61909531;77677132.7;72610138.06;69514003.63;72804133.47;74793071.92;74204748.95;74577797.85;65822925.85;70474822.85;70973619.82;63365454.82;67712315.38;70312081.33;61823497.82 -5000;'001;World;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2651358;2603628;2592257;2559787;2403984;2731725;3273240;3713239;4028448;4927334;6162432;4961088.2;6512362.4;6908727.65;5844159;5803933.84;5911660.8;5798590.1;5650383.66;5517167.66;6398458.38;6597297.66;5583696.66;5787145.32;8414128.86;7365919.84 -5000;'001;World;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45019650;42821136;47470429;44865201;45579716;46722005;51839505;57630814;58681381;65392233;69967706;60956369.46;76185402.88;80098791.06;64834590.34;66598914.42;71938073.22;73005150;72776408;75106300;81026198;77412113;69204069;79658632.97;79934501.95;73416755.95 -5000;'001;World;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1816256;1787023;1887715;1785080;1814049;2078578;2541734;2988838;3090881;3958775;4807800;4116436;5249804;5285277.08;4317409.9;4571808.6;4692193.15;4608049;4426957.45;4512290.9;5102265.87;5383354;4394236;4979048.17;6538680.63;6014190.63 -5000;'001;World;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;196654913;223114320;232480235;226609389;238172613;258954571;276493077;274545437;278951866;277396894;268709640;245902388;265385230;271377216;279918770;242900755;251266380;263112219;276569893;267505793;275483927;273379509;262988537;260706983;269791134;252403263 -5000;'001;World;1619;Wood chips and particles;5616;Import quantity;m3;;;;1326394;1292194;1721094;2860194;5359294;5937494;7245794;5284994;7084894;10260694;11497694;10025594;11525994;16531694;15249294;17343794;19346994;16641594;14448394;14918594;16199594;15596394;17264494;18462894;21542794;18792394;20059294;22368094;22265735;23049877;27094298;30821647;30357778;30729290;31832672;30321939;34400718;33412309;33241836;34439620;38098291;40461715;39602466;44037098;45669554;43164270;54695434.7;58347430.06;55943494.63;61136642.2;62227497;62375226.03;65377409.03;58324351.03;63016865.03;62420382;54848498;58707110.18;61757015.47;55278445 -5000;'001;World;1619;Wood chips and particles;5622;Import value;1000 USD;;;;9687;12136;17595;37413;65471;72178;94364;115524;165225;271556;409634;454757;506875;591440;589734;679538;1112389;903133;762277;914531;790321;751243;885330;1036856;1306877;1587300;1691941;1963456;1909214;1908964;2210194;2905508;2723882;2566661;2435394;2357675;2361803;2305949;2110875;2319505;2733206;3022209;3119792;3776606;4657758;3510780.2;4597289.4;5416093.65;5198875;5199209.44;5248110.74;5240410.04;5274819;5218533.19;6034343.63;6226653;5218188;5401025.42;7900285.11;6894855.18 -5000;'001;World;1619;Wood chips and particles;5916;Export quantity;m3;;;;1219100;1156400;1453700;2572100;3860300;4795600;5765600;5198700;6658500;9313900;10761900;10005400;11816300;14018003;13201100;14790400;17469400;15629200;13942700;13817200;14721600;14642100;15577913;17700590;22918540;25435645;23645467;26088567;25000159;24892359;28746776;34035807;31267097;32262338;36291762;35970530;40516546;37592619;38003233;38253346;41957830;45031605;45119382;49876977;53957581;43499858.46;55434731.88;62940449.06;58202380.34;58347659.51;62419674.77;63829091;64981735;68432978;75201411;71383021;63668114;73223906.88;73920404.94;67436425.94 -5000;'001;World;1619;Wood chips and particles;5922;Export value;1000 USD;;;;8209;9323;13233;25091;40527;50490;59747;79887;114304;195124;264894;244662;274167;326946;340099;394939;684976;791481;567728;464367;488010;478164;554871;713008;1007937;1177955;1216110;1394777;1359370;1350810;1486052;1954506;1912037;1778844;1632795;1556964;1650296;1522703;1508320;1647295;1992819;2257226;2269605;2752524;3411805;2464601;3336717;3940775.08;3783609.9;3908406.6;3986512.15;3984787;3917175.45;4118292.81;4746100.92;5026356;4105941;4655497.47;6181074.16;5603249.16 -5000;'001;World;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;7700;6400;7300;7300;7300;7700;7300;6400;6300;6300000;6600000;6600000;6300000;6902000;6910000;7430000;7503000;23257000;49853500;63985500;69807500;79014300;73869800;89938600;89986448;102769048;97489562;96599429;102425780;112967496;128083002;163476449;170073680;164845208;189252499;189043019;209249945;211906311;217394155;233933694;232494703;230503693;223795349;225898654;239884368;237894908;235772759;248408476;252536031;250839691 -5000;'001;World;1620;Wood residues;5616;Import quantity;m3;303700;309300;316200;1221300;1663100;1971900;2248600;2318600;2081500;2442300;2644000;2861200;3399100;3615300;3133100;3753558;3181644;2718900;2809100;3020700;3188800;3428500;3570800;3728400;3741400;4085300;4457900;3844000;4175200;3404900;3767600;4509824;4508161;4981790;4742578;4710363;4875540;6055760;6486833;6881548;7325361;7792703;7815289;10805619;13566226;13639067;17485077;19696954;18745261;22981698;14262708;13570509;11667491.27;12565574.92;11829522.92;9200388.82;7498574.82;7457957.82;8553237.82;8516956.82;9005205.2;8555065.86;6545052.82 -5000;'001;World;1620;Wood residues;5622;Import value;1000 USD;340;342;732;10902;14912;16672;18804;18214;16533;22437;26377;29537;41297;58517;59770;67341;54171;47697;54854;72350;71546;74081;69064;66212;69312;90196;116442;112494;117486;152131;136668;188022;145129;159123;180262;183808;187678;215964;245953;230454;253838;293109;412220;540034;691030;908656;1150728;1504674;1450308;1915073;1492634;645284;604724.4;663550.06;558180.06;375564.66;298634.47;364114.74;370644.66;365508.66;386119.91;513843.75;471064.66 -5000;'001;World;1620;Wood residues;5916;Export quantity;m3;330800;445300;515100;1378700;1871300;2157700;2239300;2326500;1912000;2175500;2559400;2553500;3052800;3384800;3575200;4254575;4285085;3673400;3310300;3526200;3659100;3510100;3482700;3693900;3674600;4094000;3959500;3112600;3649700;3368200;4343300;4876744;5000286;5535113;5102858;6307251;5335388;8727888;6850606;6953883;7272582;7576483;8468659;9881675;12599209;13561999;15515256;16010125;17456511;20750671;17158342;6632210;8251254.91;9518398.45;9176059;7794673;6673322;5824787;6029092;5535955;6434726.09;6014097.01;5980330.01 -5000;'001;World;1620;Wood residues;5922;Export value;1000 USD;628;1220;1650;9565;12187;14405;15606;16207;14992;21884;23044;22859;35512;52010;63315;69521;69846;65930;63826;80563;81072;74214;65860;70287;74642;97136;111020;103958;106164;134469;157236;219521;159543;170313;189280;232445;205098;183461;230059;237419;262377;305729;431283;548915;731612;821276;1206251;1395995;1651835;1913087;1344502;533800;663402;705681;623262;509782;393998.08;356164.95;356998;288295;323550.69;357606.47;410941.47 -5000;'001;World;1605;Sawdust (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3949763;2553793 -5000;'001;World;1605;Sawdust (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;262928;208109 -5000;'001;World;1605;Sawdust (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2168091;1951501 -5000;'001;World;1605;Sawdust (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;168298;186400 -5000;'001;World;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30674987;30657307;33701459;35219821;35348940;38053371;40834998 -5000;'001;World;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2803669;3382805;3658086;3496884;3860432;3474676;3096543 -5000;'001;World;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110965.72;127423;131134;121547;154668;206059;212300 -5000;'001;World;1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2376506;2511417;2452261;2694146;2927747;2312308;2210835 -5000;'001;World;1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;138091.44;145113;147037;154042;186132;159294;172417 -5000;'001;World;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21106962;24524251;28639342;30601557;32865044;36934915;41677038;46656180;47119115;49696447;51762051;50754722 -5000;'001;World;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10022190;13234820.7;15808596;16852559;17457901;20798251;25033164;27043369;27575815;30943359.82;31221579.72;30005786.93 -5000;'001;World;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1904935;2618441.3;3140673;2882488;2901343;3420930.37;4539826.8;4815178;4749438;5559290.13;7128704.5;6924951.06 -5000;'001;World;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11127091;14043204;16569014;17439551;18888358;22332387;26924767;29622049;31642000;33169676.65;34699914.26;32739941.64 -5000;'001;World;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1917850.64;2564113;2992155;2688239;2657537;3161799.95;4223250.68;4548550;4745357;5058635.67;7048363.38;6367187.13 -5000;'001;World;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18053589;21199020;25093777;27381663;29304248;33410286;37627758;41975705;42988148;44971052;48070887;46944090 -5000;'001;World;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8822216;12082222;14606388;15685705;16388479;18740585;22722397;24804705;25394072;28639357.55;28847760.17;27561495.6 -5000;'001;World;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1697170;2409198;2913928;2703606;2731590;3142923.56;4184976.34;4483052;4428540;5177380.9;6624165.76;6424857.76 -5000;'001;World;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9711993;12566988;15102127;16156964;17435188;20042958;24520140;27070893;29314172;30638235.02;32106494.82;30185059.82 -5000;'001;World;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1668648.64;2277919;2700244;2453509;2437194;2817231.89;3817917.68;4150657;4380029;4622681.7;6526637.76;5915944.76 -5000;'001;World;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3053373;3325231;3545565;3219894;3560796;3524629;4049280;4680475;4130967;4725395;3691164;3810632 -5000;'001;World;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1199974;1152598.7;1202208;1166854;1069422;2057666;2310767;2238664;2181743;2304002.28;2373819.55;2444291.33 -5000;'001;World;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;207765;209243.3;226745;178882;169753;278006.81;354850.47;332126;320898;381909.22;504538.74;500093.3 -5000;'001;World;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1415098;1476216;1466887;1282587;1453170;2289429;2404627;2551156;2327828;2531441.63;2593419.45;2554881.83 -5000;'001;World;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;249202;286194;291911;234730;220343;344568.06;405333;397893;365328;435953.97;521725.62;451242.36 -5000;'001;World;1872;Sawnwood;5516;Production;m3;323487599;326018920;334953862;354259463;358274265;359035522;363785149;374854643;384833778;389090028;401470902;404785577;413429143;398127315;381849352;406905862;417002963;426150225;428491374;420867512;402783969;394435693;417295813;426163218;432774687;447353843;465614781;470499077;469481122;460808817;415999568;401017529;392216052;393646837;388502421;391328898;391000973;385813601;394735480;391906891;389657206;401623850;407889930;431942462;443224366;459101633;453840500;406682719;364558795;393442239;407104953;422143423;438118431;451515144;465258660;480525771;500667025;500641345;483941239;482097630;496241479;462563224;444597483 -5000;'001;World;1872;Sawnwood;5616;Import quantity;m3;38208438;39546794;42024515;46036252;46004669;44458315;45316827;50087904;50739414;52719908;53747794;59536494;66269219;58539244;48221574;60212814;65999154;69789099;74652830;71701620;64727255;65411868;72811589;74999314;76608989;77708852;82698441;83922208;89394762;84535911;77575941;84095721;88564311;97492853;95986969;97284615;105371028;101940955;108996420;115769126;112765477;117788296;121247120;135036278;135832070;134121610;134138329;111801070;94549059;108891799;115945161;113497956;122255066;128713655;133034618;144157527;151684228;152813197;152920865;147031253;149010948;136629389;127249974 -5000;'001;World;1872;Sawnwood;5622;Import value;1000 USD;1841260;1841748;1955052;2266028;2363339;2300801;2263964;2610572;2876994;3026967;3284557;4017698;6179446;7118408;5623114;7571270;8901341;10653470;13101471;13965883;11393614;11021718;11736723;11453947;11220067;12719321;15823474;17362755;19080619;20429105;19036249;21624876;22077885;26198713;27075789;26470324;28489138;23291513;25305654;25683381;23458707;24041118;25724705;31549034;31971133;33330870;37193010.3;31545913.1;24182890;30102084;33683985;32722613;36301310;39500918;35445408;36758749;40659977.23;43723766.74;38451976;38801639;55971897;51796605;38344678 -5000;'001;World;1872;Sawnwood;5916;Export quantity;m3;37762159;39193110;42002471;45903904;45127145;44560787;44457936;49216857;49809410;51708867;53578634;58895162;64229262;55332758;47121472;61187196;64824889;69117270;73217221;70244159;63588676;64318300;72809294;74616770;73988503;75350490;81104790;85879295;85072368;78158655;75552104;82953098;88233247;92437429;96902431;96913561;99318426;98275263;106319434;114197916;113374086;120837030;126159335;135935624;137965538;136834817;133010180;117990079;100969141;112502419;118644152;119289933;125770404;133678403;137480481;147679476;155822168;160775722;159347523;155778537;156770072;142685307;130414005 -5000;'001;World;1872;Sawnwood;5922;Export value;1000 USD;1627916;1666648;1783834;2021192;2075018;2050806;2002556;2286697;2524547;2686039;2955653;3755220;5668811;6310264;4970963;6932356;7999753;9173453;12033483;12344596;10200345;9407391;10795538;10600228;10124237;11637100;13715645;15617588;17126951;17222333;16683758;18864305;21269110;23663908;24743456;24895583;25541095;22017814;24116183;24095869;22328249;23162519;25136073;31104524;31283811;33093969;36620763;31651031;24315039.3;29722649.5;32460977;31924821.5;36109808;39087083;34540192;35731020;39578911.83;42267964.8;37029869;37960724;57397905;51695448;37768923 -5000;'001;World;1632;Sawnwood, coniferous;5516;Production;m3;245545849;246866962;253805562;268432805;271580265;269229512;272432098;281359047;286062777;290551531;301061698;304834627;309934743;295784564;283172001;302274010;311889162;316180374;316017614;305234199;289913869;284723143;304249463;310055018;315102947;326321204;338791050;342662171;341494999;327296637;285107420;270146249;263714832;268977787;265808391;265978368;269776943;265818175;278402897;278926979;277377232;285649167;292133693;309206426;316778935;321776717;315903007;275874898;247322993;267451032;277985123;285222534;297679720;308504746;318558426;331285039;345064093;349927438;342009088;344148090;353474210;332138970;319021651 -5000;'001;World;1632;Sawnwood, coniferous;5616;Import quantity;m3;33697838;35086644;37270665;40461802;40198869;38611615;39362627;43373304;43560664;45524208;46524794;51294944;55266419;48435144;39533611;49375414;54325654;57636299;60860530;58432720;52910705;54100318;60500039;62414914;63904284;64844934;66962503;67730477;71279876;68389669;62062401;66032764;70934667;78787256;76543112;78240983;84877588;83266969;88325132;91808462;89356743;92844799;97440780;108429255;110173964;110228278;110599787;92097875;79475575;90173458;95809212;94707905;102930900;105945443;110767893;120328699;124877790;125913231;127019143;123271873;123759275;112240401;103305562 -5000;'001;World;1632;Sawnwood, coniferous;5622;Import value;1000 USD;1530363;1538273;1631722;1872631;1945909;1867955;1839608;2142116;2344179;2463912;2703557;3287955;4885062;5588682;4325853;5561829;6846175;8129943;9678068;10280649;8353302;8160030;8742736;8484587;8330092;9510851;11271628;12323540;13382296;14348352;12984252;14893263;15320968;18447318;18381280;18771261;20189769;16754522;18127778;17664605;16000541;16542525;17658745;22020856;22318307;23381667;26047999;21577938;16972162;21235889;23705039;23081878;26098931;27444529;24169218;25693671;28108942.45;30520681.32;26801502;28472289;44472980;39387709;27696725 -5000;'001;World;1632;Sawnwood, coniferous;5916;Export quantity;m3;33017059;34435560;37078071;40132354;39248795;38342037;38331786;42469657;42519060;44029617;45855884;50051512;53147062;45821158;38522724;49239701;53211717;56679895;59278846;57057559;52138176;52969050;59961694;61606470;61754105;62226063;65841174;68089883;67594629;62970906;60458355;65826262;71250467;76101948;79556135;80495242;83009433;82787742;87913420;93379847;92280585;97785809;101938376;109627308;113975603;114151335;110579519;98003189;84976966;93096360;98479125;99428076;105497317;110829007;113942746;123281755;128362786;134001444;134456795;132786508;131463956;117375186;107237446 -5000;'001;World;1632;Sawnwood, coniferous;5922;Export value;1000 USD;1359303;1386427;1494477;1678157;1714099;1670804;1629537;1881100;2065265;2194607;2460299;3058103;4518603;5067448;3890062;5343264;6251955;7152610;9085500;9171768;7709658;7056563;8084792;8027667;7757286;8704194;10148386;11368503;12318112;12613248;11915937;13071644;15035447;17145388;17967176;18466030;19238473;16558517;17944997;17306051;15715944;16313243;17588160;22087721;22516645;23979354;27005097;22378143;17574048.3;21548093.5;23423685.9;23010040.5;26045207;27523247;23521990;24720655;27419147.3;29892103.98;26324982;28303419;45789715;39647869;27359835 -5000;'001;World;1633;Sawnwood, non-coniferous;5516;Production;m3;77941750;79151958;81148300;85826658;86694000;89806010;91353051;93495596;98771001;98538497;100409204;99950950;103494400;102342751;98677351;104631852;105113801;109969851;112473760;115633313;112870100;109712550;113046350;116108200;117671740;121032639;126823731;127836906;127986123;133512180;130892148;130871280;128501220;124669050;122694030;125350530;121224030;119995426;116332583;112979912;112279974;115974683;115756237;122736036;126445431;137324916;137937493;130807821;117235802;125991207;129119830;136920889;140438711;143010398;146700234;149240732;155602932;150713907;141932151;137949540;142767269;130424254;125575832 -5000;'001;World;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;4510600;4460150;4753850;5574450;5805800;5846700;5954200;6714600;7178750;7195700;7223000;8241550;11002800;10104100;8687963;10837400;11673500;12152800;13792300;13268900;11816550;11311550;12311550;12584400;12704705;12863918;15735938;16191731;18114886;16146242;15513540;18062957;17629644;18705597;19443857;19043632;20493440;18673986;20671288;23960664;23408734;24943497;23806340;26607023;25658106;23893332;23538542;19703195;15073484;18718341;20135949;18790051;19324166;22768212;22266725;23828828;26806438;26899966;25901722;23759380;25251673;24388988;23944412 -5000;'001;World;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;310897;303475;323330;393397;417430;432846;424356;468456;532815;563055;581000;729743;1294384;1529726;1297261;2009441;2055166;2523527;3423403;3685234;3040312;2861688;2993987;2969360;2889975;3208470;4551846;5039215;5698323;6080753;6051997;6731613;6756917;7751395;8694509;7699063;8299369;6536991;7177876;8018776;7458166;7498593;8065960;9528178;9652826;9949203;11145011.3;9967975.1;7210728;8866195;9978946;9640735;10202379;12056389;11276190;11065078;12551034.78;13203085.42;11650474;10329350;11498917;12408896;10647953 -5000;'001;World;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;4745100;4757550;4924400;5771550;5878350;6218750;6126150;6747200;7290350;7679250;7722750;8843650;11082200;9511600;8598748;11947495;11613172;12437375;13938375;13186600;11450500;11349250;12847600;13010300;12234398;13124427;15263616;17789412;17477739;15187749;15093749;17126836;16982780;16335481;17346296;16418319;16308993;15487521;18406014;20818069;21093501;23051221;24220959;26308316;23989935;22683482;22430661;19986890;15992175;19406059;20165027;19861857;20273087;22849396;23537735;24397721;27459382;26774278;24890728;22992029;25306116;25310121;23176559 -5000;'001;World;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;268613;280221;289357;343035;360919;380002;373019;405597;459282;491432;495354;697117;1150208;1242816;1080901;1589092;1747798;2020843;2947983;3172828;2490687;2350828;2710746;2572561;2366951;2932906;3567259;4249085;4808839;4609085;4767821;5792661;6233663;6518520;6776280;6429553;6302622;5459297;6171186;6789818;6612305;6849276;7547913;9016803;8767166;9114615;9615666;9272888;6740991;8174556;9037291.1;8914781;10064601;11563836;11018202;11010365;12159764.53;12375860.82;10704887;9657305;11608190;12047579;10409088 -5000;'001;World;1634;Veneer sheets;5516;Production;m3;1149800;1468200;1588100;1815000;2027900;2138600;2744000;2745000;2779400;3201000;3290600;3422400;3687400;3748800;3682900;3965406;4098404;4136404;4260804;4450904;4528104;4629154;5033404;5112404;5085704;5044804;4782404;4806654;4944404;5216304;5112304;5296554;6206719;6369708;6170290;6474983;6617975;6823240;7244263;8194524;8431840;8933930;11324920;11586020;12823490;12978692;12627120;13004929;12318149;12292812;12812394;12553557;12867178;13276613;13479407;13958818;15934608;17310268;17536498;16419582;18054592;17849509;17700798 -5000;'001;World;1634;Veneer sheets;5616;Import quantity;m3;439201;494577;552759;662416;779070;797400;803500;984200;988200;996700;1185600;1481900;1610200;1486700;1180100;1364550;1434241;1562900;1684300;1719000;1717600;1856900;1970600;1989900;1902900;1823873;1980597;2257452;2187608;2460033;2425583;2755021;2907645;3495677;3375695;3004720;3789379;4003258;3941322;4345965;4098392;4348752;4050792;4460868;3414243;3166356;3556439;2892132;2253701;2611722;2966802;3105518;3619884.4;4320753;4224417;4266533;4288806;5022447;5448489;5573845;8190658;7112512;6974544 -5000;'001;World;1634;Veneer sheets;5622;Import value;1000 USD;103655;113593;124116;144491;169170;177204;168505;196142;227314;232823;259866;333540;491835;500808;421647;513850;610109;757047;907018;1007950;886601;841839;888106;913624;875790;987144;1185041;1294303;1472281;1632254;1556586;1666323;1632454;2060418;2242800;2173738;2461985;2358203;2397486;2677466;2409450;2575772;2850253;3307959;3409716;3793838;4043803;3543306;2438391;2833929;3173385;2956283;2980318;3490868;3068217;3217991;3384875.2;3773071.02;3638370;3602251;4868888;5123687;4551190 -5000;'001;World;1634;Veneer sheets;5916;Export quantity;m3;320500;364900;428100;560200;623200;713200;701800;864500;884400;864700;1076100;1291700;1299600;1308100;987600;1167800;1304690;1534300;1302900;1423000;1396500;1292100;2010400;2009100;1780000;1842663;1959787;1819985;1665873;2139626;1925151;2281739;2436951;2664295;2808541;2932587;3245611;3766182;4200562;4292354;3894089;4393613;4095731;4564287;3962328;3703893;3548784;3237271;2506675.3;2602225;2885596.4;3003046;3530573;4370584;4546183;4540752;4726726;5073718;4768981;4709428;6634621;6351324;5949619 -5000;'001;World;1634;Veneer sheets;5922;Export value;1000 USD;90489;100040;113288;139273;160069;168132;161712;195354;216424;219985;234724;303058;442185;433974;360694;439732;480941;610198;763066;880429;714824;654214;793657;809863;741564;784135;948695;1113245;1171219;1347375;1255850;1509000;1546200;1852273;2030206;1983837;2231559;2205222;2277504;2364694;2187739;2494253;2697021;3210878;3343002;3406375;3676573;3494577;2534802;2821975;2928585.9;2764807.25;2749138;2979986;2920347;2995311;3213521.71;3615873.96;3527524;3309225;4487905;4773178;4289543 -5000;'001;World;1873;Wood-based panels;5516;Production;m3;25131100;28109900;32532400;35953000;39905700;48947582;51726868;58325850;62536617;66573265;75015459;84215993;91879567;84550939;81008348;91790459;97421009;100227701;101421301;96906292;96199239;91264224;101304198;104902708;108247650;115110423;121254888;127340458;129258850;123789235;120482527;124153908;127757150;130520208;141210382;141573210;152391315;151452236;164909976;178163524;178067567;195022241;218786933;239260925;252004373;266675003;281682240;268499243;263797680;283547668;301450899;313705348;337578554;342492963;344619077;355740160;357974209;358660766;366232364;363250065;388025855;376249206;381449444 -5000;'001;World;1873;Wood-based panels;5616;Import quantity;m3;2658807;3067349;3454356;4192229;4657137;5422185;6071962;7300125;8241303;8989543;9372295;11604181;14438416;12257794;11215424;13236940;13097356;14277696;15083285;13886025;14875885;13660685;14969905;16338705;17353018;18893055;22283777;24447697;27634259;27917835;27378520;30588186;32093886;35435249;38383457;41590226;45488822;45960320;50367631;55235333;56659653;62386768;65793921;74656646;76133058;79758107;79552554;69367884;56511662;64709598.18;68707280.31;70730566.31;72826013.4;75774576.4;77623132.27;82257464;89879868.27;92652369.27;90987978;90127327;101850276.6;92170927.07;84054309.09 -5000;'001;World;1873;Wood-based panels;5622;Import value;1000 USD;327270;378657;423449;512462;554337;593047;642352;762804;888220;950811;1054772;1350084;2106173;2092570;1883814;2428837;2722348;3267288;4048892;4214563;4229488;3747832;3887031;3806531;3801612;4540867;6175981;7396305;8107198;9435672;8909918;10274969;11386144;12865413;14004369;14389104;14472260;13037044;14452266;14758231;14341983;15558908;18551886;23979569;24911919;26939274;29267177;28476609;22168570;25341829.78;29063839;30357943;31799994.03;33669002.68;30731064;30916915;33168798.16;36323142.33;32398924;31904125;45036372.79;45777878.97;37546358.46 -5000;'001;World;1873;Wood-based panels;5916;Export quantity;m3;2757348;3108548;3510368;4246571;4720267;5887449;6423338;7682912;8439035;9105475;9919561;11425338;13366376;11557385;11363853;13276543;13672374;14873204;15345800;14893800;15348500;14157600;15364530;16407630;17583266;19416886;22201122;24970002;27405949;28511810;28284149;30992723;33820334;36434933;39674176;43162282;46689960;47241641;48819689;52602395;56446767;61585516;61769738;73070706;76945324;81168236;82954865;71590866;60928741;66842113.4;70183438.2;72855733.14;75025570.14;78290211.95;80420742.19;85259359;90623719;93079715;88446091;87603173;98985536.05;89281582.22;84801745.53 -5000;'001;World;1873;Wood-based panels;5922;Export value;1000 USD;316044;358368;400537;486551;531124;575673;624128;748162;859024;926510;1049534;1373533;1997972;1969906;1879602;2395022;2679797;3129066;3950271;4279753;4208689;3676647;3858198;3706203;4100173;4704428;6400055;7386722;8227141;8832616;9054618;9913262;11686684;12738742;14357791;14718031;14764989;13323859;14169031;14133488;13787657;15219839;18039309;23489020;24633926;27602647;32274707;30113952;23427896;27110684;30416997.3;30537046.52;32161957.4;34612224.28;31491092.05;31316980;32952332.3;36549099.17;32341340;31975061;46142366.18;45283188.82;37891881.72 -5000;'001;World;1640;Plywood and LVL;5516;Production;m3;16519900;18255600;20384800;22274200;24322800;25648900;26732900;29881000;30946700;33411700;36849200;40416400;42561000;36459400;34660100;39415400;41450708;42029200;42773200;39430191;40280838;38856823;44057931;44079681;44799873;47434556;50532881;51791731;50724823;48162008;46499100;48473608;49119550;50516322;55134686;52579814;56067237;50086550;54372894;58432653;58095010;67772752;78363758;82243352;86840843;88494324;97376344;93010547;91655753;99695122;107208950;110396519;117283145;114290987;111777279;111203408;110687097;106792709;108461676;109770592;112480658;111305735;109856834 -5000;'001;World;1640;Plywood and LVL;5616;Import quantity;m3;1525533;1766269;1964899;2405115;2568369;2797527;3116843;3885500;4344100;4924700;5075300;6283550;7642600;5759300;5546300;6548877;6263737;6938000;7137200;6048500;7031000;6402100;7209000;7814100;8118132;9106272;11459186;12649000;14813725;14930355;15013776;16562089;17129620;18178688;19014471;19160872;18639800;16773517;18792454;18924235;19596665;21030686;21874079;24549760;24644852;26617321;25885418;24071890;18736236;22757115;24270879;25509526;25273529;25475130;26554846;28579420;30755840;31834748;29497075;29827349;36282615;32941800;29166613 -5000;'001;World;1640;Plywood and LVL;5622;Import value;1000 USD;228367;267061;293523;352788;374242;411005;445403;545244;637791;670311;729200;933639;1467937;1363724;1200695;1597066;1796313;2152206;2694152;2623305;2800164;2463388;2619114;2536078;2469957;2861664;4003414;4896142;5377510;6177593;5788161;6696324;7750902;8368111;8662763;8799076;8589857;6294102;7199183;7291441;6961769;7291975;7918752;10078458;10405257;12102990;12600215;12699183;9203511;10817679;12838554;13911561;14212468;15573828;14434675;14276446;15123058.3;16881051.22;14325841;13637699;18903460;19784269;15668963 -5000;'001;World;1640;Plywood and LVL;5916;Export quantity;m3;1500848;1698048;1872168;2362771;2539367;3116794;3311394;4200548;4539748;4989400;5282100;5987300;6726909;5069600;5436900;6467200;6508905;7182909;6984800;6630900;7303900;6866200;7843800;8067100;8849200;9972030;11969132;13218543;15136543;15652655;15351322;17330522;18158278;18355160;19519322;20426659;20006551;17902515;17670101;17684093;19459288;20176257;18216637;24140753;25798947;28514200;28921509;24352502;20769464;23446899;25219357.2;25315130;26273443;26222510.51;27540981;28498981;30554232;30769578;28352468;27724898;32623787;30805808;28464318 -5000;'001;World;1640;Plywood and LVL;5922;Export value;1000 USD;215652;249662;273708;335849;358117;400310;436657;540181;613809;650470;732901;954298;1401864;1263275;1206235;1617369;1793281;2098818;2613195;2706562;2765097;2405417;2636823;2468788;2792379;3039629;4293540;4935504;5527898;5795460;6008046;6470986;8032597;8218208;8849118;8947438;8559009;6116497;6563361;6625348;6230553;6621015;7365369;9648345;10112183;12125865;13727210;13287842;9932866;11894292;13943133.3;13809467;14608432;16291476.22;15303093;14749242;15088404.81;17120458.54;14708106;13878338;19494430;20210387;16191554 -5000;'001;World;1607;Laminated Veneer Lumber (LVL);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4293668;3896074 -5000;'001;World;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1102325;1167198 -5000;'001;World;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;703309;647353 -5000;'001;World;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1212159;1174064 -5000;'001;World;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;781506;691575 -5000;'001;World;1646;Particle board and OSB (1961-1994);5516;Production;m3;3940300;4866600;6727900;7602800;9223400;10956500;12551100;14822700;17328600;19139700;22749400;27380700;31909500;31613600;30602400;34795600;38169600;40206500;40450900;40496700;39383300;37904600;40736740;43896300;45372050;48272040;51079530;55244100;57718800;55405100;54002900;57306900;59282200;60053386;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5000;'001;World;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;382200;461600;534600;702240;1020800;1137000;1292300;1512000;1824840;2020600;2227200;2839200;4220900;4126800;3881900;4645000;4885360;5195638;5861480;5767980;5703180;5350680;5639400;6408800;6939004;7115228;7824853;8775120;9874958;9602289;9126003;10052802;10767060;12184982;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5000;'001;World;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;23932;28339;33017;44016;63313;69304;80101;93978;118434;137338;162626;221966;388650;455347;440375;546408;624052;756606;953001;1099520;962855;882439;843332;892678;934380;1172646;1539202;1775914;1953055;2254413;2110219;2320143;2285780;2797845;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5000;'001;World;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;399900;498900;597000;742800;1038000;1134400;1305700;1517400;1798200;2056300;2477500;3080600;4072700;4197100;4074200;4632000;4948100;5396600;6031000;5951400;5663500;5209300;5339200;6080200;6452436;6886736;7488411;8605476;8925784;9349167;9212205;9657086;11251239;12779326;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5000;'001;World;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;23635;27718;32961;41952;60261;66897;77475;89532;112522;137271;163105;231896;358416;434188;436632;505535;584494;712824;958205;1091029;969790;860489;808103;830192;904036;1169164;1485054;1675175;1807183;2027352;1997791;2228036;2292551;2839516;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5000;'001;World;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52625796;52925456;55526412;56416856;60742084;64252021;63663092;63586010;67462418;75402624;74592820;80043173;81810880;80137330;75899685;77147322;78443536;76259604;83323591;86903962;87264003;94200451;97104319;100789255;100330798;96781304;111350673;109281569;116607927 -5000;'001;World;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10496678;10871859;11698625;12155210;12132855;12919806;13619856;14350266;14997483;17350145;17437606;18150826;19486757;18360582;14397194;15797945;17088850;16523813.16;18006171;19784486.13;19808322;20762386;23207988;23219777;23366976;22430350;24907245.6;22306514;21356315 -5000;'001;World;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2788394;2690022;2699515;2842916;2701439;2566186;2530191;2514678;2963718;3709116;3940386;4325760;5278446;5283239;3918832;4411257;5036736;4860454;5204436;5606153.68;4926352;5034937;5530869.05;5889649.79;5648501;5317557;7304445.17;7784911;7135775 -5000;'001;World;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11067199;11725143;12841514;13111995;12864527;14169231;14618265;15159187;15942885;18583738;18335138;19546815;19692609;20708612;15272216;16445575;16341243;17713488;17783392;19701811;19788501;21425179;22935019;24613408;23054858;22501448;24735274.67;20939835.77;20988233.77 -5000;'001;World;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2924876;2934990;2946936;3060330;2801085;2688672;2672122;2721218;3149276;3975524;4106212;4759814;5703833;5835849;4089011;4622353;4957339;4995137.4;5102316;5583458;4904336;5007988;5501155;5931075.62;5551802;5257590;7523816.01;7546652.61;7053755.08 -5000;'001;World;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13051000;14534000;15972000;17143107;19106816;21338112;20680820;22563000;25010000;25481600;28536000;29055700;29383207;23396449;18840980;19036939;19914258;21545065;23714333;25123087;26990333;29093486;31407326;32870091;34960592;34686617;37789880;38123206;41734329 -5000;'001;World;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3111000;4782800;5905600;6756405;7744532;8138861;8576571;9696315;10064055;11302665;11740679;12170304;9530178;6491619;5468294;5993068;6392697;7040113;8009339;8634209;9076985;10028540;11297647;11466293;10999014;11293970;11928351.56;11448308.04;10734323.04 -5000;'001;World;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;584258;735131;765662;1273207;1780759;1574632;1280210;1453415;2414409;3528571;3336576;2745855;2183890;1670227;1287793;1720281;1834869;2035668;2593680;2374433;2098330;2459992;2897861.84;3361201.01;2588700;3301969;6379979.42;5164147.9;3543936.9 -5000;'001;World;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3172340;4375300;5206200;6747710;7604452;8107602;8410619;9237252;9767271;10500870;11273119;11454265;9883919;6509456;5612059;6028946;6858098;7311637;8212251;8643113;9247063;10800103;11743965;12133397;11325285;11613269;12489647.7;11294457.59;10608300.59 -5000;'001;World;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;611190;757586;769797;1343600;1816871;1630798;1321803;1468886;2367839;3511081;3313665;2713997;2173985;1686215;1280036;1748651;1822861;2011743;2596034;2300585;2038124;2456187;2856897.08;3345786.27;2572548;3305923;6561971.6;5085423.72;3546979.72 -5000;'001;World;1874;Fibreboard;5516;Production;m3;4670900;4987700;5419700;6076000;6359500;12342182;12442868;13622150;14261317;14021865;15416859;16418893;17409067;16477939;15745848;17579459;17800701;17992001;18197201;16979401;16535101;14502801;16509527;16926727;18075727;19403827;19642477;20304627;20815227;20222127;19980527;18373400;19355400;19950500;20398900;21533940;24825666;27805723;30688182;34140738;35628645;41100479;47950757;56133349;62034710;69081806;73111809;71954917;77401262;87668285;95884155;105504160;113257485;116174927;118587462;121242815;118775467;118208711;122479298;122011552;126404644;117538696;113250354 -5000;'001;World;1874;Fibreboard;5616;Import quantity;m3;751074;839480;954857;1084874;1067968;1487658;1662819;1902625;2072363;2044243;2069795;2481431;2574916;2371694;1787224;2043063;1948259;2144058;2084605;2069545;2141705;1907905;2121505;2115805;2295882;2671555;2999738;3023577;2945576;3385191;3238741;3973295;4197206;5071579;5761308;6774695;9244797;10275188;11697790;15252431;14866561;17309501;18858304;21454076;22309921;22819656;24650201;20443793;17909938;20161470.18;20954854.31;21657114.15;21536974.4;21880751.27;22182979.27;22887118;24618393.27;26131551.27;27124913;26575658;28732064.4;25474305.03;22797058.05 -5000;'001;World;1874;Fibreboard;5622;Import value;1000 USD;74971;83257;96909;115658;116782;112738;116848;123582;131995;143162;162946;194479;249586;273499;242744;285363;301983;358476;401739;491738;466469;402005;424585;377775;397275;506557;633365;724249;776633;1003666;1011538;1258502;1349462;1699457;1968954;2164875;2417226;2626819;2770885;3325972;3569813;4298840;5255007;6663424;7229700;7764669;9204626;8823960;7758434;8392612.78;9353680;9550260;9789410.03;10114588;9271707;9145540;9617008.97;10191240.3;9835882;9646900;12448488.2;13044551.07;11197683.57 -5000;'001;World;1874;Fibreboard;5916;Export quantity;m3;856600;911600;1041200;1141000;1142900;1636255;1806244;1964964;2101087;2059775;2159961;2357438;2566767;2290685;1852753;2177343;2215369;2293695;2330000;2311500;2381100;2082100;2181530;2260330;2281630;2558120;2743579;3145983;3343622;3509988;3720622;4005115;4410817;5300447;5915315;6635180;8635695;9479421;10680609;12641469;13958595;17012820;17842945;19845345;21538120;21652956;24456828;20020296;19275002;20920693.4;21764740;22515478.14;22756484.14;23722777.43;23844197.19;24535096;25390503;25563332;25713480;25763558;29136826.68;26241480.86;24740893.16 -5000;'001;World;1874;Fibreboard;5922;Export value;1000 USD;76757;80988;93868;108750;112746;108466;109996;118449;132693;138769;153528;187339;237692;272443;236735;272118;302022;317424;378871;482162;473802;410741;413272;407223;403758;495635;621461;776043;892060;1009804;1048781;1214240;1361536;1681018;1972607;2078017;2489247;2803432;2987714;3188670;3563179;4408720;5156825;6354070;7101866;8002971;10669679;9304046;8125983;8845388;9693664;9720699.12;9855175.4;10436705.06;9245539.05;9103563;9505875.41;10151778.74;9508884;9533210;12562148.56;12440725.49;11099592.92 -5000;'001;World;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6756100;6939440;7073830;7118216;8008782;8984112;6156133;5906201;6340161;6557425;7225277;8169424;7551188;6796680;7179780;7651372;8709460;10402664;11947394;9290829;9142488;8621878;6785274;6697290;7176417;7094411;7715768;7622081;7415990 -5000;'001;World;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1759261;1941947;2286090;2681886;2823536;3467528;3752112;4575716;5230725;5743630;6362834;6442194;5743409;4487173;3456425;3850851;3759300;3858969.25;3897486;3805926;3553391;3674784;3660834;3763751;3536116;3598611;3818217.87;3491501.05;2934320.05 -5000;'001;World;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;769109;869546;958322;1057679;1027703;1254683;1509847;2014690;2621481;3309219;3649019;3807086;3407605;2956946;2452725;2439001;2605343;2373428;2375428;2358239;1940999;1886211;1973057.39;1947183.57;1761400;1797187;2273502.3;2383514.57;2197834.57 -5000;'001;World;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2038480;2237972;2367939;2292519;2492032;2744814;3039987;3338096;3602603;3856213;4056437;4943730;3688097;3127582;2408211;2384476;2346630;2640046.14;2556741.14;2536445.14;2081319.14;2042648;1954783;2158363;2433926;3110849;3404195.93;2895864.52;2365426.52 -5000;'001;World;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;690642;755061;805157;790599;786153;898048;1085929;1318221;1581368;1867045;2023406;2793829;2382779;1900477;1488288;1470015;1518612;1450710.12;1374450;1348381;975307;924567;914450.55;1010643.97;1013802;1385515;1849054.97;1963897.44;1646303.44 -5000;'001;World;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8124300;9445300;12757336;15145607;17133500;19375633;23608202;28671018;35209943;42597504;48422533;54399582;58577295;58743151;61798524;71164023;78300123;86141202;91888916;97629367;101018347;104144932;103468877;104003801;108133061;107352798;110316750;101778883;98378250 -5000;'001;World;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2606508;3251930;4625782;5120454;6203151;8659374;7853464;9588848;10576791;12694390;12780317;13321356;15037894;12876523;11689826;13592811.18;14308910;14830753.3;14684750;15391537;15986913;16483490;17924686;19236640;20083459;19211225;21048243.34;18571804;16905543 -5000;'001;World;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;966814;1047388;1170571;1237940;1390900;1702178;1698625;1889782;2196250;2828385;2995732;3352550;4926026;5073318;4600149;5199430.78;5872960;6336286;6579927;6976500;6657335;6595724;6962392.31;7507584.33;7381062;7117354;9337354.65;9800474;8209733 -5000;'001;World;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2928199;3431875;4998369;5979254;7031154;8410094;9221448;11660216;12205526;13673510;15225059;14641307;17388650;14846605;14480160;15959043.4;16796595;16948405;17075216;17987111;18539870;19225932;20455222;20317058;20228412;19166563;22159497.13;19785742.61;19321182.61 -5000;'001;World;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1079929;1112234;1443193;1724368;1977833;2070173;2240260;2779810;3232687;4065394;4605851;4727151;7380461;6893865;5998709;6598454;7396794;7526940;7664039.4;8202198;7507246;7462057;7932162.75;8417106.02;7861030;7448319;9908273.07;9537749.47;8646492.47 -5000;'001;World;1650;Other fibreboard;5516;Production;m3;1743200;1757800;1855700;1982000;2043600;7725200;7662200;8338800;8529800;8026100;8894000;9377200;9452600;8529500;8284200;9313400;9277800;9212200;9447000;7404000;6919400;5399700;6036000;6385000;7191000;8089000;7745500;7770100;7887800;7431600;7286300;5928900;5662000;5456500;5518500;5149200;4994500;5541900;5545900;5780993;5864310;6523260;6400653;6978420;6386900;6512800;6983326;6415086;8422958;8852890;8874572;8960294;9421175;9254731;8426627;8476005;8521316;7507620;7169820;7564343;8372126;8137732;7456114 -5000;'001;World;1650;Other fibreboard;5616;Import quantity;m3;113600;121800;133000;171000;166100;562200;654200;812000;894900;848500;793300;1057700;1026300;963600;687800;753353;681724;763596;647840;725940;813000;741700;774700;842700;974100;1173899;1449011;1267027;960002;1102505;840895;944530;987629;937230;1395539;1580818;2332925;2472848;2671103;3125529;3260985;3144937;3050788;3016056;3166770;3056106;3868898;3080097;2763687;2717808;2886644.31;2967391.6;2954738.4;2683288.27;2642675.27;2728844;3032873.27;3131160.27;3505338;3765822;3865603.19;3410999.98;2957195 -5000;'001;World;1650;Other fibreboard;5622;Import value;1000 USD;12709;13604;15279;21173;22023;21536;21733;24379;27495;28275;31156;47569;50340;44070;48281;52213;48351;62320;66476;85340;90160;78403;81877;80896;87800;122656;177565;167235;155156;180768;157796;221437;210456;223080;233031;247941;288333;331200;352282;369111;361341;394368;437276;525820;584949;605033;870995;793696;705560;754181;875377;840546;834055.03;779849;673373;663605;681559.27;736472.4;693420;732359;837631.25;860562.51;790116 -5000;'001;World;1650;Other fibreboard;5916;Export quantity;m3;168700;157400;174900;187500;179600;652400;769600;818100;863300;802000;816700;828200;924600;883000;637600;790732;778600;853600;878500;837700;905400;739000;785100;833800;879500;989579;969744;1066049;1151304;1016155;977055;762369;737919;774327;948636;965333;1269387;1207648;1157423;1486561;1697160;2014508;2034816;2315622;2256624;2067919;3380081;2046109;2386631;2577174;2621515;2927027;3124527;3199221.29;3223008.05;3266516;2980498;3087911;3051142;3486146;3573133.62;3559873.73;3054284.03 -5000;'001;World;1650;Other fibreboard;5922;Export value;1000 USD;19192;18499;20098;22574;22355;24370;24400;24869;28239;25856;29370;30843;41418;51796;40217;51811;59129;67655;87243;94050;96396;82638;85427;89328;93974;114418;132350;165147;204831;235448;199598;213126;193270;194931;202036;210722;240897;288465;223728;220449;236990;310689;342770;421631;472609;481991;906439;509704;638986;776919;778258;743049;816686;886126.06;762986.05;716939;659262.11;724028.74;634052;699376;804820.53;939078.59;806797.02 -5000;'001;World;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;2927700;3229900;3564000;4094000;4315900;4616982;4780668;5283350;5731517;5995765;6522859;7041693;7956467;7948439;7461648;8266059;8522901;8779801;8750201;9575401;9615701;9103101;10473527;10541727;10884727;11314827;11896977;12534527;12927427;12790527;12694227;12444500;13693400;14494000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5000;'001;World;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;637474;717680;821857;913874;901868;925458;1008619;1090625;1177463;1195743;1276495;1423731;1548616;1408094;1099424;1289710;1266535;1380462;1436765;1343605;1328705;1166205;1346805;1273105;1321782;1497656;1550727;1756550;1985574;2282686;2397846;3028765;3209577;4134349;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5000;'001;World;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;62262;69653;81630;94485;94759;91202;95115;99203;104500;114887;131790;146910;199246;229429;194463;233150;253632;296156;335263;406398;376309;323602;342708;296879;309475;383901;455800;557014;621477;822898;853742;1037065;1139006;1476377;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5000;'001;World;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;687900;754200;866300;953500;963300;983855;1036644;1146864;1237787;1257775;1343261;1529238;1642167;1407685;1215153;1386611;1436769;1440095;1451500;1473800;1475700;1343100;1396430;1426530;1402130;1568541;1773835;2079934;2192318;2493833;2743567;3242746;3672898;4526120;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5000;'001;World;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;57565;62489;73770;86176;90391;84096;85596;93580;104454;112913;124158;156496;196274;220647;196518;220307;242893;249769;291628;388112;377406;328103;327845;317895;309784;381217;489111;610896;687229;774356;849183;1001114;1168266;1486087;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5000;'001;World;1879;Total fibre furnish;5510;Production;t;77231800;79539000;84121500;91083800;95560100;103171200;105446000;113551300;121072700;133308200;133765900;142251200;152843600;156497100;137943273;153001900;157214000;165340100;172824809;178677117;179277325;174168117;185364308;198459908;201488700;212528116;226160416;238537516;248655508;249867778;256247753;258490032;262716053;286146356;297493317;285628335;298729757;299372123;308654697;326913586;319172347;331331748;339968774;352712563;362574614;378358700;393533764;395650500;378416565;397669941;403428164;401342139;400796710;411531743;412542123;417260250;422486165;428574315;423871721;419563211;438056150;437980056;427148199 -5000;'001;World;1879;Total fibre furnish;5610;Import quantity;t;1384200;1373400;1700000;2003700;2039100;2323400;2155100;13359640;14656940;16992600;14788000;17006100;19206700;20993863;16263508;19179955;19401280;21997474;24003888;24958719;23812952;22712104;25690674;27942841;28352886;31100502;33878075;35890837;37397034;37180145;39611434;41834771;40827623;46557737;49076454;48917532;51685069;54857924;58857534;63751240;67395438;68448244;72796897;79361680;82011894;90059117;94969464;96873714;97507043.56;99783038.48;105256948;110392395.3;109360959;109102439.8;112266709;116216250;118934895.1;117687072.1;112104548;108739806;108044734.4;105655101.5;112240099.1 -5000;'001;World;1879;Total fibre furnish;5622;Import value;1000 USD;112975;112735;147988;187970;196855;243761;229834;1707332;1978305;2477948;2273183;2530633;3355285;5813797;5449854;6025361;5882700;5896583;7917850;9967185;9748542;8586128;8316618;9890435;8879068;10188008;13849355;16983547;19625431;18685441;16376206;15907629;12366784;17025512;26860715;19071360;17861164;17373700;18536725;25561519;20326178;19779593;22808418;26639652;27834360;31072824;37944810;41555464;31432099.6;45919994;51229668;45631965.16;45723355.84;45939272.89;45002513;42441455;48942216.65;57307729.77;47371968;39892832;52633793.35;60996924.86;53820204.81 -5000;'001;World;1879;Total fibre furnish;5910;Export quantity;t;1297500;1251000;1331300;1555300;1621000;1609900;1435500;13260200;14447200;16881500;14764300;16576100;19190400;20773702;16128039;19126099;19405342;21482771;23634172;25234225;23930591;22552060;26602805;27909890;29156080;30409651;32270416;37604909;36440966;37143161;38070294;40688960;40527891;45928564;48790246;47751714;50932407;52314690;56647728;61604714;62813699;66604038;72318013;77936074;83401868;90213346;97838433;99880428;103194143;104295837;110978281.4;111493707.7;108933764.1;109851941.3;112116674;116650761;117153489;117795047;112661425;107809510;109373085.2;110412022.4;111138888 -5000;'001;World;1879;Total fibre furnish;5922;Export value;1000 USD;86385;83075;87489;107180;125785;127221;113333;1533907;1764698;2249420;2051551;2270115;3109879;5279005;5011564;5528626;5229471;5284492;7340230;9503066;9037911;7660914;7669227;9271611;8034203;9437429;12823158;15966704;18029297;16480543;14037899;14526362;11546169;15603351;24479358;17163088;16565457;15657085;16963928;23310392;17759611;17967807;20751690;23464987;24708961;28660167;35311399;39424680;29879384.3;43045853.4;46680723.6;41781164.75;41773146.05;41659474.03;40094242.79;38839288;43682675.58;51410676.59;43063899;36315489;47406614.12;53245127.75;46838097.33 -5000;'001;World;1878;Pulp for paper;5510;Production;t;61848600;63859000;68272500;73715800;77939100;83764200;85706000;92421300;98643700;102555200;102451900;107972200;114182600;117184100;102869273;112526900;114140000;120214100;125674809;128141117;127863325;122343117;130068308;138486908;140437700;146921108;156195416;162389508;166636700;165614700;166810845;165554384;165642853;178443256;183081717;168415735;177925357;175625665;177199729;183495612;175437164;180032179;182754605;187675841;188605215;190339857;196160077;192277538;173883745;184936684;186920615;182396880;180670863;183752272;183937642;186341944;188041806;196047046;193010979;191224062;195889746;198371466;194751609 -5000;'001;World;1878;Pulp for paper;5610;Import quantity;t;1384200;1373400;1700000;2003700;2039100;2323400;2155100;13359640;14656940;15202600;13167000;14955100;16627100;17428100;13606200;15495249;15465130;17515300;18732400;19269400;18480700;17302500;19577700;20528600;20779400;22292245;24027002;24697829;24891244;24141742;25327964;27037431;27400962;30007026;30501536;31211838;32986456;33517462;35399716;36567634;37945548;39093894;39542184;42644836;43711474;44823064;44730386;45389192;44261763.5;46631406.1;48624237.03;51582029.3;52499222.87;53292301.65;54663697;57783022;60137932;61821432;61613670;62839136;61761681.41;62696963.53;65312642.13 -5000;'001;World;1878;Pulp for paper;5622;Import value;1000 USD;112975;112735;147988;187970;196855;243761;229834;1707332;1978305;2367799;2180653;2414804;3150083;5300929;5160103;5625662;5460492;5450390;7221429;9085448;9050175;7946425;7600761;8951528;8000131;9116782;12402814;15096677;17455619;16596574;14366240;13997444;11050596;14813206;22947630;16698007;15822725;15287697;16230006;21655167;17251636;16498632;18502270;21616937;22481450;24868948;29140319;32447108;23863426.6;34513247;36934195;33709479.16;34375150.2;35007562.25;34687680;32162121;36445522.37;46169881.87;39184045;33132863;41736962.92;49994434.86;45861023.81 -5000;'001;World;1878;Pulp for paper;5910;Export quantity;t;1297500;1251000;1331300;1555300;1621000;1609900;1435500;13260200;14447200;15102500;13181300;14750100;16805400;17358300;13635700;15501156;15558540;17457540;18665140;19709640;18627340;17314240;19785900;20340000;20620400;22120600;23455700;24625100;24981600;23775000;25481900;27944232;28555309;30581841;32267471;32442771;33615140;33700057;35738888;36954170;37501672;39592305;40341764;41172395;41733838;44832935;46455999;46951373;46578711;49285880;51172296.42;52087892.65;52783575.05;54162959.3;54850630;58497253;59920141;61563805;63174807;62938792;62071995.49;64576635.13;65635283.73 -5000;'001;World;1878;Pulp for paper;5922;Export value;1000 USD;86385;83075;87489;107180;125785;127221;113333;1533907;1764698;2152665;1970396;2173856;2940311;4850868;4792049;5201194;4881329;4922672;6751172;8759146;8440442;7115342;7052026;8448629;7280477;8543201;11720175;14537752;16515429;14907500;12585663;13069391;10476726;14047220;22152141;15468625;14942756;14086007;15140866;20362906;15604132;15301135;17226515;19161067;19772998;22974203;27277165;30198133;22750041.1;33079861;34538746.6;31494111.75;32268555.05;32379277.04;31280776.79;29833421;33507803.45;41946402.55;36020159;30117333;37449375.58;43560619.24;39536267.82 -5000;'001;World;1875;Wood pulp;5510;Production;t;61540400;63688900;68214900;73566500;77556900;82818000;84780600;91593000;97854400;101656800;101395500;107183900;113345800;116591400;101742073;110992200;112500800;118216300;123139600;125646108;125296416;119528608;127069608;135077708;134318500;140148008;146497116;151444908;156085100;154803300;155465333;152875922;151235675;161910768;161571317;156441635;162503657;159756665;163433779;171114970;163993414;167163548;169908698;174648265;173849097;175614862;180969754;177284468;160349084;170828720;173946182;171617872;172410158;176181139;176854398;181553773;183766430;191784957;189889308;188700389;193779568;196296263;192648976 -5000;'001;World;1875;Wood pulp;5610;Import quantity;t;2378700;2447900;2921700;3208000;3258563;3598400;3401900;14701740;16074340;16573300;14527000;16278000;17945800;18777000;14659700;16621247;16626756;18571400;19948100;20580900;19505000;18240100;20532800;21434100;21708300;23306015;25104734;25678161;26057320;25233277;26447733;28183173;28549632;31052951;31942439;32447804;34268710;34820237;36594245;37781234;39138380;40344279;40796737;43991465;45088947.7;46364611.24;46291506;47241059;46147108.3;49007098.1;51400210.3;54903067.35;56116025.94;57295042.65;58825180;62037076;64695227;66540871;66568544;67987520;67351314.71;68281784.64;71337902.27 -5000;'001;World;1875;Wood pulp;5622;Import value;1000 USD;285128;294992;351869;399766;416189;471598;449079;1951512;2242292;2643929;2460488;2683896;3441406;5763030;5572321;6033479;5933522;5882036;7757425;9766430;9601470;8460529;8079800;9385346;8456109;9589266;12996474;15745565;18397270;17430030;15152004;14753814;11800292;15554138;24141479;17708362;16699083;16162325;16923475;22428248;18027841;17194086.1;19289681;22545095;23488466.6;26000667.76;30610689;34370211;25463927;37411171;41141028.1;37557473.16;38223733.37;38949721.25;38452745;36077148;40786391.09;50675070.99;43493490;36636957;46788838.95;55544744.59;51561009.79 -5000;'001;World;1875;Wood pulp;5910;Export quantity;t;2770100;2815200;2989800;3295100;3229800;3147600;3089300;14959800;16190300;16916000;14905000;16452700;18489200;19133000;15053700;16894272;17036140;18992640;20126640;21141940;20053740;18532740;21056100;21537600;21781400;23324136;24646391;25984008;26161474;24956605;26586805;29142683;29631154;31688107;33616402;33767599;34978696;35005113;37098364;38315217;38705045;40811967;41774486;42812815;43074662;46367258;48064102;48709175;48493584;51267944;53619115;55279816.65;56533629.05;58108406.3;58809531;62206684;64077899;65750425;68199415;68190024;67537754.1;70102627.87;71619641.47 -5000;'001;World;1875;Wood pulp;5922;Export value;1000 USD;341921;339863;357586;406694;405463;389866;395274;1820324;2067927;2498282;2308320;2517350;3302177;5451943;5341338;5768155;5460386;5505540;7433755;9533029;9246115;7773200;7689065;9061448;7838649;9154220;12421017;15484981;17483404;15797901;13345329;13793714;11112920;14697997;23128245;16503789;15904392;14990508;15950134;21208410;16309277;15907967;17972606;20014343;20645290;23956030;28562440;31835102;24231505.1;35044028;37603090.6;35067698.75;36123361.05;36159877.03;34583540;33000316;37074001.37;45560161.58;39487682;33518443;41927295.97;48576867.78;44551901.36 -5000;'001;World;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33373094;33855643;32863403;29592337;28851755;27881269;25304764 -5000;'001;World;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3970563;3995173;3964276;4018123;4123665.22;3922373;3341688 -5000;'001;World;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2058739.26;2385390.04;2079327;1880544;2174398.07;2492026;2010775 -5000;'001;World;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4209815;4206827;4256632;4157232;4316836.36;4148891.74;3488788.54 -5000;'001;World;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2122442.32;2415010.5;1985525;1780694;2108997.73;2702164.77;1861746.77 -5000;'001;World;1654;Mechanical wood pulp (1961-2016);5510;Production;t;17340900;17404300;17914600;19070200;19888300;20785200;20522300;21714600;23156800;23748100;23145600;23968100;25394600;25948600;22229600;23939000;24255200;25522400;25897600;26590700;27291400;25901000;27458400;30079400;30198400;31267300;32503600;34245200;35757200;36917000;36125600;34156400;34045400;35027800;36529400;34187700;35389400;34505674;35053770;36888032;34859551;34802109;35323089;36186371;35763444;35432604;34876038;33390601;28978542;30724065;29487952;27802568;26707696;25109720;25209630;25721527;;;;;;; -5000;'001;World;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;1355400;1295700;1359400;1499000;1535300;1467900;1280900;1357900;1421800;1345400;1091500;1201600;1267800;1488800;1022800;1142717;1172062;1229700;1381700;1269800;1051900;1001900;1236100;1564600;1336700;1380744;1304999;1500647;1469622;1416744;1357344;1248796;1165473;1313900;1320548;1308905;1302507;1451775;1388038;1449639;1417252;1369786;1184149;1200713;1152286;1233294;1177883;1125281;891976.1;1005253;974001.03;870641;772814.06;642695;582873;513948;;;;;;; -5000;'001;World;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;109469;103131;106678;119132;126963;121672;109483;114290;121472;126564;110675;117448;152486;292811;246767;252971;256712;252884;343788;387399;345071;328305;367856;487058;404380;442721;487291;620867;690070;643202;571064;477234;395232;482374;602979;519427;468128;492122;470074;561717;500371;460064;452018;483340;470437;533865;590313;614687;424618;556875;553457;468980;427291.2;339677;268712;217824;;;;;;; -5000;'001;World;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;1276200;1209900;1279600;1416200;1422100;1369900;1218600;1273800;1290900;1336000;1019400;1139800;1244100;1465000;981200;1101256;1147540;1195240;1288440;1215340;1073040;999740;1155800;1411400;1330100;1433300;1455100;1335800;1288500;1302600;1289200;1114144;1154506;1281250;1317366;1166271;1123085;1065714;1088734;1177633;1170963;1258681;1137590;1185382;1106443;945379;1131784;1127402;1078167;877415;831247.3;683782.05;618037.05;706255.45;721987;679596;;;;;;; -5000;'001;World;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;84606;79719;83132;92250;98044;93927;82479;87778;90168;102155;80657;89005;120859;237350;214893;222999;209710;205822;278635;300896;259818;240707;262761;355419;325422;388569;474861;478947;506481;495301;478374;375010;346254;431234;560333;387928;366690;297392;305163;393330;336162;349305;364042;402472;387040;368905;526866;585746;477709.1;445064;416151.3;306282.05;293147.05;327543;303191;270537;;;;;;; -5000;'001;World;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;3189200;3604200;3878200;4381600;4793300;5167200;5564900;6312700;7137200;7200900;7413600;7939100;8334800;8312600;6853173;7497500;7348500;7631900;8194500;7626800;7260900;6723900;6903200;7281700;7127900;7379700;7536500;7815200;8023200;8000800;7784100;7206400;6762400;7328900;6732900;6469900;6603900;6287848;7705000;8732197;8425949;8506500;8632401;8909477;8939130;8444034;9189206;8910180;8328454;8399493;8613799;8985480;9132016;8988699;8658761;9035112;;;;;;; -5000;'001;World;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;16200;15000;58000;64900;70200;83900;82000;86700;113100;110800;134200;123600;144600;174600;119200;146000;138200;128200;148300;149200;138400;121800;121200;158100;144600;172000;163900;215900;430300;533600;499204;742750;959737;1092264;1118010;1190836;1226871;1139365;1231047;1362861;1541616;1689386;1932155;2149654;2392859;2585438;2522718;2548007;2558609;2905310;2940322;2987981;3129159;3134438;3156842;3237085;;;;;;; -5000;'001;World;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;1926;1596;5412;5978;6510;6881;6634;6569;9690;10537;15354;13278;19829;49117;41874;46119;41250;38493;48381;51425;54239;42482;38337;55803;47455;60036;69743;102970;209937;257306;206097;289780;313791;422837;656694;493467;473393;429364;490127;680798;631976;654290;825948;962070;1052986;1269660;1390737;1742067;1276506;1821760;1743724;1686336;1751791;1747314.25;1574636;1442912;;;;;;; -5000;'001;World;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;16200;31400;37400;69300;74700;79400;89700;96200;119200;140600;120500;127900;146600;146300;95300;96900;87300;91700;112500;109400;102700;96000;92200;119300;122500;118800;133900;496300;817600;867600;874900;1176306;1235518;1463834;1618322;1699202;1813100;1804284;1945094;2067410;1799720;2222950;2476900;2664328;2252146;2686324;2679113;2712627;2611938;3400328;3082022.5;3672993;3383163;3283696;3266277;3334182;;;;;;; -5000;'001;World;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;1179;2206;2657;5157;5763;5932;7051;7274;8722;13349;11094;11552;15667;27025;23991;22814;18606;18847;28057;33145;30281;28228;22330;30402;29956;33758;50210;222632;381616;386522;329923;440198;394600;564177;988863;630044;618412;609576;727596;1039824;712263;850668;1037077;1166393;1020201;1337979;1475122;1669967;1265590;2071077;1726457.1;1946645;1823450;1744040;1471630;1426097;;;;;;; -5000;'001;World;1656;Chemical wood pulp;5510;Production;t;37397300;38828900;42357600;45803000;48496900;52537300;54236900;58847900;62707300;65778500;65934400;70254200;74611800;76915200;67833300;74891700;76198100;80196000;84202000;86675608;86207116;82818708;88441008;93415608;92467200;96800008;101844016;104630508;107596700;105418800;107293433;107576922;106677875;115990068;114858017;112517035;117252357;116151743;117945709;122724533;118158914;121268376;123057208;126589487;126109523;128389424;133536203;131565728;119493015;127529439;131111359;129584525;130371675;135610634;136730565;139616628;142855312;150453903;148786204;150709965;155907874;159381529;158197108 -5000;'001;World;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;11743440;12970440;13605000;11822500;13484400;15081300;15599200;12304600;13985800;13966900;15948200;16990700;17653900;17097700;15953900;17961600;18478000;18940900;20377000;22159200;22631700;22697200;21901053;23181716;24670274;24983453;27300944;27731225;28389398;30110109;30611159;32466072;33368964;34577058;35675407;36011184;38787866;39652949;40445694;40487399;41215531;40294592.2;42204586.1;44228081;47225084;48150098.81;48967753.65;50451907;53637323;55715024;57359567;57207685;58375905;57162957.68;58300809.02;61476396.65 -5000;'001;World;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;1559184;1821950;2203513;2029681;2257404;2942081;4885145;4789764;5232953;5087182;5060302;6716545;8519999;8525927;7437864;7054471;8216023;7356638;8396314;11592927;14124123;16319910;15448553;13346862;12937367;10118479;13672508;21369172;15380079;14583179;14091429;14978548;20053683;15735813;15040248;16848131;19704382;20480681;22509186;26537768;29380512;21536733;31433760;33817600;30851342.16;31559081;32224707;32256432;29972213;33759826;43107589.63;36460503;30625782;38849332.13;46630151.1;43065471.3 -5000;'001;World;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;11764700;12860400;13487200;11910500;13308100;15271000;15549200;12389000;14056900;14097600;15959700;17013700;18170700;17268300;16063800;18386000;18664900;18994500;20349800;21611600;22449400;22540800;21371100;23124900;25404512;25926740;27663647;29129271;29381463;30412587;30579588;32391017;33374541;34129956;35758161;36390903;36975398;37938161;40734824;42104346;42589064;42428375;44514424;46663082.2;47259828.6;48341369;49646947.85;50426197;54081071;55266714;56930467;58556740;58394576;57340432.8;60041300.13;61776560.92 -5000;'001;World;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;1415991;1638869;2008639;1852762;2045809;2767140;4525714;4497750;4890041;4583603;4620511;6331152;8286724;8029171;6737148;6659249;7958338;6809643;8004313;11053020;13623363;15380461;13831913;11614286;12025993;9540034;12878474;20377801;14227436;13703542;12933828;13836552;18626834;14240747;13801160;15503477;17241035;17952486;20782014;24681395;27297827;20501682;29925005;31564780.2;28668179.7;29641596;29715228.04;28981763;27633173;30817108.03;38971453.08;33506451;27775225;34709230.91;40164038.01;37057173.59 -5000;'001;World;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;10621500;11049200;12847200;20348000;21016500;22756500;23955200;25749300;26951700;28177900;28143400;29103200;30843200;31896000;27825000;31188000;31862000;32754000;34101400;34089000;33881008;31388000;33903008;35494008;35194200;35475000;36829008;37344008;37811000;35630500;35333500;34389508;33402500;36876500;35959000;34361000;35481500;33532198;34441000;34305616;32951646;33450376;33290547;33918714;33639362;33282870;33800784;32334434;29792387;30732487;32386840;31762659;31810483;34958030;35332623;35727213;37048170;37627797;37718415;40282890;41291697;41355323;39275748 -5000;'001;World;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;1672700;1746300;1758900;1391200;1703100;2097600;2041800;1492700;1640100;1596800;1662700;1620300;1734900;1568500;1393900;1476700;1341100;1297600;1369200;1571700;1568500;1272700;1372200;1364300;1143384;1051701;1397250;1326209;1291762;1472740;1289969;1485554;1442969;1824930;2064462;1950766;1774607;1895685;1927401;2069122;1794203;1682794;1592435;1681147;1872130;1832538.23;1908094;1837509;2015702;2028777;2198813;2159516;2171348;2432639.16;5253270.85;2749475.65 -5000;'001;World;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;193282;210108;244252;205183;240156;355513;579955;494676;503309;455092;428746;537417;698498;623489;503680;491444;495460;442622;473132;661770;799849;660843;753243;756211;533436;390997;610760;869951;669448;638013;514297;576441;729839;679719;728132;744010;753076;850207;940397;1257310;1027051;820301;1041462;1210008;1145584;1133122;1261228;1057795;1070579;1140054.91;1616836;1365505;1199424;1746333.36;4113808.15;1794229.3 -5000;'001;World;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;2061200;1977100;1881400;1693500;1916700;2399200;2177800;1919000;2092700;2220248;2461400;2480500;2365900;2387000;2143700;2543400;2467900;2360600;2543600;2551100;2119200;2091300;1898900;1890600;1362327;1406692;1628346;1592600;1475700;1495200;1342897;1539555;1487137;1816466;1945711;1667713;1621911;1688504;1846000;1925706;1688570;1811823;1595619;1664418;1659421;1729824;1745712;1694724;1815148;1809798;1991100;2075563;2200734;2577245.21;2774265.57;2293613.57 -5000;'001;World;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;210338;202827;229561;224178;243773;368812;550750;550193;555853;536291;577509;775264;896612;906854;779627;854725;966735;833861;948679;1124344;1110287;1108754;933550;888994;565051;478582;625787;914736;585752;563124;457669;501861;590107;538976;593755;558072;612401;657768;784016;1033254;903941;757868;933252;1041582;885925;981810;1090873;944021;939095;1022226.23;1487300;1171891;1077547;1714278.3;1965460.7;1364763.7 -5000;'001;World;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;5957100;6497700;6562500;10677500;13405700;15250700;16670300;19750700;22289900;23571900;24524200;28128700;30400500;31478000;28076300;31278700;32353300;35530600;38103600;40444808;40463108;40662608;43466600;46340600;46970000;51086008;54638008;56715000;59070200;61012300;64083933;66026614;66797375;72780568;72548517;72270035;75530857;76786819;78230093;83100023;80232596;82692772;84659373;87700950;87283560;90002733;94711887;94744381;86191996;92814875;94425742;93942195;95423062;98565024;99553238;101982627;103489237;109530062;108246203;107559165;111619893;115162623;115841945 -5000;'001;World;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;6256100;7321300;7797800;7040800;8268300;9037500;9432600;7698600;9004600;9144700;10931000;11854800;12367200;12005600;11329000;13038600;13475800;13870700;15523300;16728400;17307800;18038800;17911136;19243293;21328177;21997906;24028630;24552150;25180068;26745954;27278380;28937457;30141679;31042366;31932685;32339582;35236081;36087530;37082071;37079958;38121509;37545662;39390563;41324045;44311112;45315857;46288149.3;47916079;50865095;52912279;54367957;54364512;55519359;53843000.13;51926400;58039313 -5000;'001;World;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;842362;1045980;1281804;1226114;1399530;1795348;3001886;3098555;3481767;3470480;3506454;4749930;6112008;6111072;5353238;5144060;6147185;5433443;6469532;8996478;11157366;13225940;12682521;10980879;11149696;8832131;12079569;19221829;13706767;13037501;12577062;13391019;18213574;14215258;13527289;15209331;17960122;18675416;20677401;24310559;27304438;20014774;29414479;31564216;28884474;29641631;30350555;30699724;28394533;32111952.6;40914152.88;34616118;28968687;36551395.14;41827524;40698054 -5000;'001;World;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;6340000;7368500;8051000;7318500;8292200;9421100;9950400;7938200;9174700;9183600;11093500;11676700;13388500;12378000;12140500;13781700;14079700;14637400;15672300;16957900;18271900;18410200;17524100;19256300;21934404;22422996;23922381;25287349;25840055;27042977;27586373;29216403;30313110;30788786;32090424;33014155;33752835;34754700;37531011;38948060;39862790;39638428;41876973;44038509;44870579;45997770;47334727.67;48171789;51713117;53005634;54480479;56034296;55872373;54413186.59;56872523.63;59109278.24 -5000;'001;World;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;802562;982326;1239133;1165101;1316523;1756740;2978704;3029455;3370502;3160550;3307557;4473282;6267234;5945117;5160415;4991291;6098964;5219542;6172140;8840748;11254198;12878764;11575245;9519522;10372028;8210719;11210222;17911741;12682973;12304842;11738886;12654538;17164329;13023368;12496937;14177377;15813134;16477465;19211735;22841478;25611221;19154381;28211170;29792920;27219542;28192642;28211308.04;27685069;26344468;29518797.13;37191999;32053614;26385514;32620401.61;37754654.93;35275039.89 -5000;'001;World;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2317905;3296044;2821586;2867910;2996284;2863583;3079415 -5000;'001;World;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;773968;792797;683657;685198;887318.38;1121138.16;687608 -5000;'001;World;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;507818.49;576600.74;478880;457671;551603.63;688818.95;573188 -5000;'001;World;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;451282;458888;446881;321469;350001;394510.92;373669.12 -5000;'001;World;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;276084.67;292154.08;280946;312164;374551;443922.38;417370 -5000;'001;World;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;1138100;1092700;1113500;5144700;7067500;7089300;6883200;6649800;6813800;7141800;6758000;6747500;6946500;6915200;6141000;6306000;6021000;6029400;5900400;5845900;5781000;5308100;5428400;5609000;5291000;4986000;5169000;5224000;5403000;3225000;2489000;2150800;1861000;1506000;1638500;1409000;1608000;1456100;1331800;1195428;1051624;1149079;1140940;1059651;1079875;979688;928703;954162;541353;700643;690549;661576;514310;357330;474838;455768;;;;;;; -5000;'001;World;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;876640;843540;812300;638400;695900;865600;918800;553500;554800;475800;506400;518900;596300;549900;437900;519400;529900;580600;567100;636400;524600;451400;219317;191900;164199;134911;155916;167895;154058;129638;180129;157884;127695;194417;139276;169844;164524;137671;110510;122583;80278;57819.2;53873.1;56189;52978;54481.51;56229.35;55420;45905;;;;;;; -5000;'001;World;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;108565;108788;119800;99845;110119;152888;251977;191200;184617;150951;150126;192049;263993;236435;187514;194852;210217;212222;216678;272234;244658;274925;147504;102175;80375;53762;65993;85004;74717;56914;74035;65762;60887;78427;51762;78865;69710;58759;51245;82625;65859;34596;42256;44445;31215;34467;38885;38802;26575;;;;;;; -5000;'001;World;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;924500;1080800;1080800;853400;882200;1044200;1035100;682800;623000;569452;656100;672200;677700;481800;485100;484600;472000;459000;443100;421500;344600;321400;222400;198000;131867;163306;142923;216200;117400;105700;147808;152572;173185;114080;136835;274881;222254;100587;64743;75370;26565;28131;26989;34353;33737;42844;36086;28936;36436;;;;;;; -5000;'001;World;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;96913;124430;146081;125671;131079;178259;249379;214882;187315;169129;184807;218082;251873;195359;193461;182595;182569;169188;170439;173438;178451;173463;131241;117010;59811;64821;52842;112600;42500;36639;45053;48207;64703;37051;39522;82104;71251;33060;25143;31774;16838;11242;11751;14938;15989;20250;16228;12235;14288;;;;;;; -5000;'001;World;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;2206900;2183300;2275700;5237300;5819300;6144000;6094300;5993000;5911100;6140300;5733400;5669600;5814400;6010000;5110000;5395000;5146000;4917000;5012600;5227900;4979000;4392000;4569000;4827000;4679000;4862000;4800000;4923000;4896000;5551000;5387000;5010000;4617000;4827000;4712000;4477000;4632000;4376626;3942816;4123466;3923048;3976149;3966348;3910172;4106726;4124133;4094829;3532751;2967279;3281434;3608228;3218095;2623820;1730250;1369866;1451020;;;;;;; -5000;'001;World;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;2523500;2592800;2674300;2183400;2265300;2541000;2583200;1954600;2173000;2184300;2239700;2324300;2223200;2275000;2124100;2254300;2352300;2320100;2478400;2648900;2702400;2531400;2398400;2382223;2034514;1798935;1719148;1684971;1763510;1761777;1862681;1885177;1656621;1515345;1538984;1550992;1612654;1532063;1325712;1215736;1219541;1008317;1167715;1166700;988864;947222.06;715281;642899;710621;;;;;;; -5000;'001;World;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;360744;391482;466982;406992;411157;531474;870360;812075;856701;831191;763697;983928;1124132;1203562;1069170;967517;1082195;965077;1105478;1439779;1732698;1960521;1865285;1507597;1173860;841589;916186;1192388;929147;850751;926035;945326;1049383;762409;733065;815925;921474;896299;840143;887274;983164;667062;935563;998931;790069.16;749861;574039;460111;480526;;;;;;; -5000;'001;World;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;2098100;2054100;2131700;1680200;1801600;2122400;2138900;1784700;2105900;2083200;1710200;2148200;1710100;2000400;1285300;1536600;1608100;1498000;1667200;1659500;1695100;1698300;1725700;1780000;1975914;1933746;1969997;2033122;1948308;1768710;1502510;1482487;1401109;1410624;1585191;1434154;1378398;1394370;1293070;1155210;1011139;949993;1014843;925802.2;696091.6;570931;530422.19;530748;516370;;;;;;; -5000;'001;World;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;267516;282140;342953;283048;296549;413031;695826;687471;761683;707607;541312;855698;858380;972832;599857;615663;694103;571454;703273;898817;1069845;1204457;1191877;1088760;1029103;785912;989623;1438724;916211;798937;692220;631946;807695;641352;670946;685924;744249;784193;761120;774889;765827;578191;768832;715340.2;546723.7;446894;396819;340438;335322;;;;;;; -5000;'001;World;1667;Dissolving wood pulp;5510;Production;t;3613000;3851500;4064500;4311700;4378400;4328300;4456500;4717800;4853100;4929300;4901900;5022500;5004600;5415000;4826000;4664000;4699000;4866000;4845500;4753000;4537000;4085000;4267000;4301000;4525000;4701000;4613000;4754000;4708000;4466700;4262200;3936200;3750000;3564000;3451000;3267000;3258000;2811400;2729300;2770208;2549000;2586563;2896000;2962930;3037000;3348800;3368307;3417959;3549073;4175723;4733072;5245299;6198771;6472086;6255442;7180506;7538024;7475411;8239701;8398087;9019939;9033465;9147104 -5000;'001;World;1667;Dissolving wood pulp;5610;Import quantity;t;994500;1074500;1222700;1314500;1353063;1430800;1394000;1513700;1569000;1512100;1478800;1468400;1452100;1514400;1213100;1346730;1349594;1265300;1427400;1508000;1217000;1162500;1213900;1233400;1286100;1376271;1476635;1329914;1460198;1381880;1409469;1521353;1440969;1345843;1772656;1558665;1629223;1617938;1509088;1599770;1602454;1609700;1669249;1853232;1890853.7;2100185.24;2103506;2352240;2401931;2891949;3257806.27;3819361.35;4063954.08;4550156;4633558;4648720;5009640;5186131;5396583;5593492;6064691.81;6058602.63;6519817.63 -5000;'001;World;1667;Dissolving wood pulp;5622;Import value;1000 USD;172153;182257;204498;229481;241072;253788;243263;271469;289180;303315;304778;295766;327010;535957;493916;501436;548378;530357;648711;807607;676233;651878;619136;626462;647636;690195;846513;897605;1177353;1080969;1027981;1049433;972790;976419;1512634;1315389;1174383;1149410;984726;1132050;1159681;1039484.1;1163584;1395303;1484362.6;1687956.76;2091871;2632945;2226070;3598776;5026247.1;4550815;4485570.17;4638023;4352965;4444199;4967825.82;5182091.32;4953660;4130631;5765108.74;6422567.49;6484763.49 -5000;'001;World;1667;Dissolving wood pulp;5910;Export quantity;t;1477700;1573900;1672800;1809600;1733000;1698300;1781000;1825100;1919800;1952200;1854600;1876900;1827500;1972500;1588200;1639216;1703700;1746000;1712000;1646500;1609700;1373200;1422100;1342000;1334300;1422236;1445791;1702508;1514574;1415305;1297805;1447721;1314390;1279376;1551443;1520663;1629924;1555527;1673519;1695633;1604406;1572175;1769093;1987707;1777912;2000731;2148859;2280082;2375104;2475777;3042763;3663213;4191060;4471507;4395070;4111835;4601370;4613131;5386043;5638216;5880484.95;5912436;6354292 -5000;'001;World;1667;Dissolving wood pulp;5922;Export value;1000 USD;256136;257938;271797;309287;301656;290007;305744;309281;330168;374139;363807;370984;398511;661854;604704;632301;648467;660360;795911;912264;926845;767117;744725;717289;673628;727580;842926;1160039;1214846;1084165;922746;952513;832032;824112;1201248;1258381;1215748;1149712;1080823;1148422;1020105;906834;1068010;1204443;1285563;1467132;1879057;2281562;1986524;2602882;3895702;4146592;4365168;4373066;3826956;3670509;4134451.01;4173698;3995706;3962524;5109067.33;5710665;5632981 -5000;'001;World;1668;Pulp from fibres other than wood;5510;Production;t;3921200;4021600;4122100;4461000;4760600;5274500;5381900;5546100;5642400;5827700;5958300;5810800;5841400;6007700;5953200;6198700;6338200;6863800;7380709;7248009;7103909;6899509;7265700;7710200;10644200;11474100;14311300;15698600;15259600;15278100;15607712;16614662;18157178;20096488;24961400;15241100;18679700;18680400;16495250;15150850;13992750;15455194;15741907;15990506;17793118;18073795;18558630;18411029;17083734;18283687;17707505;16024307;14459476;14043219;13338686;11968677;11813400;11737500;11361372;10921760;11130117;11108668;11249737 -5000;'001;World;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;1000;110200;133600;155800;147200;171600;151600;141400;118800;145500;133400;165500;159600;220732;187968;209200;211700;196500;192700;224900;258800;327900;357200;362501;398903;349582;294122;290345;289700;375611;292299;299918;331753;322699;346969;315163;314559;386170;409622;359315;414696;506603;513380;558638;542386;500373;516586.2;516257;481833;498323.3;447151;547415;472075;394666;452345;466692;441709;445108;475058.51;473781.51;494557.48 -5000;'001;World;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;617;17685;21738;25951;24018;27289;25193;27185;24943;26674;35687;73856;81698;93619;75348;98711;112715;126625;124938;137774;140097;192644;191658;217711;252853;248717;235702;247513;242217;293063;223094;235487;318785;305034;298025;274782;291257;358969;383476;344030;376173;467145;477346;556237;621501;709842;625569.6;700852;819414;702821;636987;695864;587900;529172;626957.1;676902.21;644215;626537;713232.71;872257.76;784777.52 -5000;'001;World;1668;Pulp from fibres other than wood;5910;Export quantity;t;5100;9700;14300;69800;124200;160600;127200;125500;176700;138700;130900;174300;143700;197800;170200;246100;226100;210900;250500;214200;183300;154700;151900;144400;173300;218700;255100;343600;334700;233700;192900;249270;238545;173110;202512;195835;266368;250471;314043;334586;401033;352513;336371;347287;437088;466408;540756;522280;460231;493713;595944.42;471289;441006;526060;436169;402404;443612;426511;361435;386984;414726.34;386443.27;369934.27 -5000;'001;World;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;600;1150;1700;9773;21978;27362;23803;22864;26939;28522;25883;27490;36645;60779;55415;65340;69410;77492;113328;138381;121172;109259;107686;104470;115456;116561;142084;212810;246871;193764;163080;228190;195838;173335;225144;223217;254112;245211;271555;302918;314960;300002;321919;351167;413271;485305;593782;644593;505060;638715;831358;573005;510362;592466;524192.79;503614;568253.1;559938.97;528183;561414;631146.94;694416.46;617347.46 -5000;'001;World;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;143312;224446;225590;180310;121328;123482;179782;159899;142790;143085;170723;158576;266045.4;299468.05;399726;376500.1;330307.2;222270;192499;214581;509970;1181585;2180834;3010666.03;3473697.48;5110104.24 -5000;'001;World;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82774;105707;111606;67102;40097;47021;65804;67841;67158;83583;108595;102642.2;202731.1;211197.58;201119;191387;162500;133557;111126;129467.47;257370.35;447638;673425;1258081.16;1533112.41;1462691.69 -5000;'001;World;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;164900;172512;355483;261608;200461;211715;137255;151874;196348;188091;204588;258634;362734.3;367461.4;435480;316114.51;295360.2;270878.3;215407;223218;439673;1216609;2741723;3322278.58;4030902.53;5100933.53 -5000;'001;World;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96210;95433;124122;122080;74590;53334;49148;66406;79862;92873;107937;112836;160997.6;161425.6;209516;206051.86;182268;154696;116808;125650.12;201811.95;427286;778018;1331851.65;1434525.61;1365938.61 -5000;'001;World;1669;Recovered paper;5510;Production;t;15383200;15680000;15849000;17368000;17621000;19407000;19740000;21130000;22429000;30753000;31314000;34279000;38661000;39313000;35074000;40475000;43074000;45126000;47150000;50536000;51414000;51825000;55296000;59973000;61051000;65607008;69965000;76148008;82018808;84253078;89436908;92935648;97073200;107703100;114411600;117212600;120804400;123746458;131454968;143417974;143735183;151299569;157214169;165036722;173969399;188018843;197373687;203372962;204532820;212733257;216507549;218945259;220125847;227779471;228604481;230918306;234444359;232527269;230860742;228339149;242166404;239608590;232396590 -5000;'001;World;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;1790000;1621000;2051000;2579600;3565763;2657308;3684706;3936150;4482174;5271488;5689319;5332252;5409604;6112974;7414241;7573486;8808257;9851073;11193008;12505790;13038403;14283470;14797340;13426661;16550711;18574918;17705694;18698613;21340462;23457818;27183606;29449890;29354350;33254713;36716844;38300420;45236053;50239078;51484522;53245280.06;53151632.38;56632711;58810366;56861736.12;55810138.12;57603012;58433228;58796963.12;55865640.12;50490878;45900670;46283053;42958138;46927457 -5000;'001;World;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;110149;92530;115829;205202;512868;289751;399699;422208;446193;696421;881737;698367;639703;715857;938907;878937;1071226;1446541;1886870;2169812;2088867;2009966;1910185;1316188;2212306;3913085;2373353;2038439;2086003;2306719;3906352;3074542;3280961;4306148;5022715;5352910;6203876;8804491;9108356;7568673;11406747;14295473;11922486;11348205.64;10931710.64;10314833;10279334;12496694.29;11137847.89;8187923;6759969;10896830.43;11002490;7959181 -5000;'001;World;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;1779000;1583000;1826000;2385000;3415402;2492339;3624943;3846802;4025231;4969032;5524585;5303251;5237820;6816905;7569890;8535680;8289051;8814716;12979809;11459366;13368161;12588394;12744728;11972582;15346723;16522775;15308943;17317267;18614633;20908840;24650544;25312027;27011733;31976249;36763679;41668030;45380411;51382434;52929055;56615432;55009957;59805985;59405815;56150189;55688982;57266044;58153508;57233348;56231242;49486618;44870718;47301089.71;45835387.25;45503604.25 -5000;'001;World;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;96755;81155;96259;169568;428137;219515;327432;348142;361820;589058;743920;597469;545572;617201;822982;753726;894228;1102983;1428952;1513868;1573043;1452236;1456971;1069443;1556131;2327217;1694463;1622701;1571078;1823062;2947486;2155479;2666672;3525175;4303920;4935963;5685964;8034234;9226547;7129343.2;9965992.4;12141977;10287053;9504591;9280197;8813466;9005867;10174872.13;9464274.05;7043740;6198156;9957238.54;9684508.5;7301829.5 -5000;'001;World;1876;Paper and paperboard;5510;Production;t;77074896;80388200;85272124;91183700;96622304;103835696;105014096;113111996;122067408;125630735;127507010;136674800;146921100;149239208;129768325;146208008;151186800;158973600;167829108;169343196;169154443;166523612;176695987;189332165;192330455;202640143;213988510;226877328;232547818;240360643;244252392;247035355;252781475;269092434;282690193;284509382;301497552;302058042;315930625;324585703;318808299;329493114;338763265;355676569;365158762;381761853;392482393;390223182;370958484;392387211;400098026;398902919;396581405;403701389;406708842;409320915;415334579;409219315;404220362;399235467;419055979;413570358;400885054 -5000;'001;World;1876;Paper and paperboard;5610;Import quantity;t;12786170;12823027;13403516;15139897;16101900;17807170;17973420;19597210;22078000;22788320;23838400;25167100;27081490;29138358;23150201;26700518;28014824;30511260;32201800;33834900;34255900;33889100;35688900;39345250;40365415;43678663;47441268;50312545;53537349;55718787;57246117;61900420;63343505;69621611;69678760;74580585;85728916;86997975;95030933;98399448;94886467;96787270;103297395;109869269;112109094;115031136;118990503;114558443;101117298;108272442;108909188.5;106228359.8;107259451;109856228;108747431;110853994;115638345;116628422;114700051;113192353;114602219.4;111643274.5;104172762.4 -5000;'001;World;1876;Paper and paperboard;5622;Import value;1000 USD;2240899;2272025;2368786;2654256;2871422;3224728;3359540;3645018;4223144;4583960;5083295;5702241;7259503;11188121;10281278;11574382;13296219;14761924;17761888;20960140;21113400;21741835;20178815;22480426;23589258;28573671;33894978;40448107;44007445;49296462;48440444;49977313;45655510;50768482;65863481;66216312;67093285;64819783;67115353;70873124;67615911;66820060;76871105;85328869;88615794;94640709;105295473;112711649;92344423;101529769;111709683;103000271;104140077;107293664;94500114;93158007;97974037.98;107040770.7;100674312;91172729;104524064;123127093.5;106125426.7 -5000;'001;World;1876;Paper and paperboard;5910;Export quantity;t;12694758;12732450;13614682;15354256;16439556;18148620;18227400;19860100;22328900;23296070;23562870;25286170;27479400;29970700;22983900;26981000;28138820;30032050;33130050;34915950;35188700;33500200;36225498;39584800;40827600;43281483;46946935;50880428;52250995;55615415;58581800;62083649;64799502;72232661;74958070;76115747;86661456;89652790;93197692;98028951;93427231;97716963;102811187;111204170;113246280;114953511;118426898;113926050;103177378.5;109715761.4;109983170.7;108126538.8;110514991.1;112525766.7;112220103;113119855.7;115828706;117274157;114771847;112168136.5;116009665.6;111907239;103684792.9 -5000;'001;World;1876;Paper and paperboard;5922;Export value;1000 USD;2068723;2061139;2209295;2489690;2687085;3003102;3105804;3380767;3870662;4283740;4567509;5221166;6715459;10427699;9444756;10929651;11815486;13616551;16732738;19945298;19941915;18661862;18438452;20604218;21516985;25695260;32200237;38946091;41117542;45848011;46974284;48606447;43473525;49909217;69152896;64021947;64059397;66063904;65194143;69628402;64136304;64778238;74290399;84310814;88193881;94182814;103757877;110792806;91233067;99126483;109080259;100320152.3;103567829.5;104577991.6;93997857;91924102;96788087.96;105926797.9;98519857;88979148;104154551.6;119139346.1;102008803 -5000;'001;World;2042;Graphic papers;5510;Production;t;29958100;30811800;32725620;34854900;36622800;40079100;40306900;42936000;46366100;48055237;48103802;51223300;55186200;56599600;48581717;54673500;57134300;61330900;64716300;66642396;67719500;66430900;71216300;77239600;78529500;83045950;88958840;95789640;98836746;102255918;102979387;104002148;104669449;113142916;116385747;117427369;125725176;125139908;132411626;138339157;132991553;136246057;139461997;147417949;147090057;151492274;153707594;150532680;135117885;143332217;141076047;136604151;132862220;129390803;125634391;122642535;121001011;116376230;108773728;94161313;95717203;92298856;84253037 -5000;'001;World;2042;Graphic papers;5610;Import quantity;t;8929900;8761617;8891734;9930817;10551200;11576200;11458000;12124000;13521000;13911400;14235200;14909200;15885890;17023800;13876000;15548418;16638600;18123660;18775500;19422500;20192600;19821200;20510800;23470900;24310443;25594226;27786246;29740032;30519373;31750786;32781478;35434993;37047956;40846470;39670104;39946774;47059853;48515105;53831673;56873048;54818370;55242377;59822732;63506168;66225800;67645175;67550481;65117006;55379301;58829659;58737122.5;55987841.84;54760240;54327582;51739078;50960100;52032964;50026069;47613653;40021275;40350938.75;38431903.07;33091918 -5000;'001;World;2042;Graphic papers;5622;Import value;1000 USD;1386760;1375120;1397467;1549803;1656788;1837157;1870955;2008817;2297859;2444574;2621245;2900090;3655493;5666921;5353192;6051616;7242134;8114563;9623625;11031984;11624805;12561435;11021455;12682910;13525635;15686892;18745078;23329742;24065739;27587596;27361893;27835899;25985563;28830395;36514605;33933240;34759540;35704954;37247709;41156702;39867024;38543455;43625077;47973481;51277547;53926196;58448813;62063079;50111713;52825884;56917163;52338259;50342880;49983212;42190717;39949062;40965650.08;43340937.08;40713833;31872798;34368928.86;42640068.81;36872867 -5000;'001;World;2042;Graphic papers;5910;Export quantity;t;8903500;8742300;9097300;10082100;10811700;11741000;11606500;12372600;13748600;14184000;14039300;15062300;16145200;17248600;13745900;15453900;16352070;17983000;18984700;19548500;20417900;19145500;20476400;22983000;23848900;24564983;26881435;29829528;30516595;31655015;32503600;34885584;37911658;42310231;43506121;41933604;49231740;50355492;53864005;57170859;54605875;57127139;60639279;66178012;67434147;68982116;69129011;66704104;58169165;61682630.42;60689706.66;57818434.75;56991490.78;56642939.71;54060870.05;53271527.71;52467660.01;50974734.01;48018225.01;40415081.53;41438357.97;39098511.77;33624006.45 -5000;'001;World;2042;Graphic papers;5922;Export value;1000 USD;1275394;1237678;1277117;1438587;1543497;1709061;1773586;1938904;2204441;2401932;2528448;2863979;3570178;5556827;5068289;5977667;6607211;7695614;9129451;10691942;11245478;10634121;10231734;11774224;12454266;14460921;18066049;22876190;23334252;25344966;25982144;26721863;24780542;28471062;39113494;35605030;36064473;36681060;37607412;40594110;38107259;38398171;43103623;49536707;52230839;55130993;59293700;63103158;50663359;53741786;57214305;51454684.29;50277035.46;49743131;41733946;39816354;39866457.23;43076556.98;39827590;31256994;34642276.28;42033972.05;34895877.84 -5000;'001;World;1671;Newsprint;5510;Production;t;14362000;14582500;15343320;16234700;17017100;18325300;18385500;19156500;20825500;21487535;21099400;21853100;22603700;22639300;20436317;21953500;22312100;23402600;24532000;25415281;26518500;24961700;25997000;27789600;28251900;29223950;30370640;31712940;32048040;32765667;32507087;32210185;32710945;33870257;35429784;34814109;36161756;36198092;38067068;39476946;38240967;37059881;37766762;39552784;38863803;38513548;38229351;37315964;32440749;33114287;31850852;30509098;28959197;26627859;24504456;23340326;21586025;20206239;17858088;13816499;13773571;12695180;11433024 -5000;'001;World;1671;Newsprint;5610;Import quantity;t;7866200;7723700;7740619;8516317;8899000;9725200;9260500;9580100;10594300;10558000;10730000;11183700;11593890;12014800;9805550;10846318;11223150;12158000;12241000;12605900;12934100;12187900;12289100;13466400;14183013;14523126;15420404;15027349;15824630;15461125;15222915;15227918;16330151;17320795;16963637;16823361;18666061;18119683;18657069;18899388;18244661;17522422;17760350;18073228;18047020;17657929;17143263;16584974;13121279;14035668;13843873;12656870;12393141;11851001;10982716;10640732;10262403;9336631;8354511;6700751;6360992.62;6042702.07;5413665 -5000;'001;World;1671;Newsprint;5622;Import value;1000 USD;1128031;1114478;1112331;1214483;1253383;1385107;1348587;1404388;1586505;1619164;1718431;1857710;2140455;3110312;3118275;3491549;4042117;4377393;4983557;5769540;6178035;6942518;5564572;6073310;6538486;7107142;8312715;9196870;9538592;9921424;9654381;8824139;8309136;8593029;11728955;11879710;10474527;10139129;9741660;10046260;10453880;8944694;9009083;9858722;10481990;10936014;11078477;11603424;8525391;8472884;9506427;8467156;8009336;7562925;6063718;5579631;5402362.99;5701592.94;4970710;3340119;3424621.99;4609361.81;3951588 -5000;'001;World;1671;Newsprint;5910;Export quantity;t;7732300;7572000;7791900;8549200;8985100;9750200;9440700;9726900;10568600;10640800;10314300;10794900;11150800;11501400;9364400;10206800;10515470;11557300;12125400;12298600;12897300;11493500;12141800;13127100;13932900;14222488;14707174;14489585;14392112;15335738;15044538;15396665;16868980;17558193;17834300;17158084;18772170;18380657;18496072;18657263;17838123;18003486;18264475;18409136;17842617;17401881;16531933;16185428;13100160;14085908.19;13815545;12824925.48;12597768;11960949;10948044;10653275;9997673;9591193;8346955;6811069;6505234.62;6098237.64;5663450.05 -5000;'001;World;1671;Newsprint;5922;Export value;1000 USD;1001246;967377;984200;1084035;1125426;1230466;1227636;1285558;1426667;1493359;1511606;1665934;1883250;2684819;2727549;3010810;3372147;3916181;4533370;5281848;5854613;5275676;5061464;5581650;6042911;6677491;7747754;8745331;8449055;9235173;9240043;8409983;8166227;8242217;11757076;11407663;10120158;9968390;9370961;9593881;9689621;8462533;8799549;9517574;10054082;10558758;10263874;11214921;8076997;8189280;9419294;8187205;7764677;7352055;5593032;5296010;5009795.53;5723287.49;4670125;3258796;3674743.19;4841290.72;3997475.72 -5000;'001;World;1674;Printing and writing papers;5510;Production;t;15596100;16229300;17382300;18620200;19605700;21753800;21921400;23779500;25540600;26567702;27004402;29370200;32582500;33960300;28145400;32720000;34822200;37928300;40184300;41227115;41201000;41469200;45219300;49450000;50277600;53822000;58588200;64076700;66788706;69490251;70472300;71791963;71958504;79272659;80955963;82613260;89563420;88941816;94344558;98862211;94750586;99186176;101695235;107865165;108226254;112978726;115478243;113216716;102677136;110217930;109225195;106095053;103903023;102762944;101129935;99302209;99414986;96169991;90915640;80344814;81943632;79603676;72820013 -5000;'001;World;1674;Printing and writing papers;5610;Import quantity;t;1063700;1037917;1151115;1414500;1652200;1851000;2197500;2543900;2926700;3353400;3505200;3725500;4292000;5009000;4070450;4702100;5415450;5965660;6534500;6816600;7258500;7633300;8221700;10004500;10127430;11071100;12365842;14712683;14694743;16289661;17558563;20207075;20717805;23525675;22706467;23123413;28393792;30395422;35174604;37973660;36573709;37719955;42062382;45432940;48178780;49987246;50407218;48532032;42258022;44793991;44893249.5;43330971.84;42367099;42476581;40756362;40319368;41770561;40689438;39259142;33320524;33989946.14;32389201;27678253 -5000;'001;World;1674;Printing and writing papers;5622;Import value;1000 USD;258729;260642;285136;335320;403405;452050;522368;604429;711354;825410;902814;1042380;1515038;2556609;2234917;2560067;3200017;3737170;4640068;5262444;5446770;5618917;5456883;6609600;6987149;8579750;10432363;14132872;14527147;17666172;17707512;19011760;17676427;20237366;24785650;22053530;24285013;25565825;27506049;31110442;29413144;29598761;34615994;38114759;40795557;42990182;47370336;50459655;41586322;44353000;47410736;43871103;42333544;42420287;36126999;34369431;35563287.1;37639344.13;35743123;28532679;30944306.87;38030707;32921279 -5000;'001;World;1674;Printing and writing papers;5910;Export quantity;t;1171200;1170300;1305400;1532900;1826600;1990800;2165800;2645700;3180000;3543200;3725000;4267400;4994400;5747200;4381500;5247100;5836600;6425700;6859300;7249900;7520600;7652000;8334600;9855900;9916000;10342495;12174261;15339943;16124483;16319277;17459062;19488919;21042678;24752038;25671821;24775520;30459570;31974835;35367933;38513596;36767752;39123653;42374804;47768876;49591530;51580235;52597078;50518676;45069005;47596722.24;46874161.66;44993509.27;44393722.78;44681990.72;43112826.04;42618252.71;42469987.01;41383541.01;39671270.01;33604012.53;34933123.36;33000274.13;27960556.4 -5000;'001;World;1674;Printing and writing papers;5922;Export value;1000 USD;274148;270301;292917;354552;418071;478595;545950;653346;777774;908573;1016842;1198045;1686928;2872008;2340740;2966857;3235064;3779433;4596081;5410094;5390865;5358445;5170270;6192574;6411355;7783430;10318295;14130859;14885197;16109793;16742101;18311880;16614315;20228845;27356418;24197367;25944315;26712670;28236451;31000229;28417638;29935638;34304074;40019133;42176757;44572235;49029826;51888237;42586362;45552506;47795011;43267479.29;42512358.46;42391076;36140914;34520344;34856661.7;37353269.49;35157465;27998198;30967533.09;37192681.33;30898402.12 -5000;'001;World;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20088950;19859231;20905593;21205079;24201089;24850939;26055253;26528349;28728344;30260730;31718314;30409583;31907588;32777897;31868468;30919623;30102699;30376603;30125652;29840823;29561496;28203548;26680182;26648080;25997230;25609268 -5000;'001;World;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5665622;7099946;7687886;8074311;8182897;8693550;9626150;9599363;9813150;10468383;10233247;8737011;8659323;8004283;7436980;7335011;6964020;6321821;6173705;6269582;6231153;5434089;4710997;4653006.68;4680724;3894358 -5000;'001;World;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4104032;5007163;5187720;5684629;5448178;5855767;6710079;6952999;7262714;8253781;8854995;7384327;6835650;6865103;6355767;6119128;5826834;4636690;4169512;4253247.7;4638803.04;4152078;3336684;3430563.48;4370880;3872675 -5000;'001;World;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6602969;7493987;8150923;8171352;8331388;8908183;10133040;10311943;10631621;11178545;11319844;9436385;9343507;8710916.6;8128146.27;7863191.51;7313235.3;6981934;6909228;6570483;6548188;5738765;4758562;5146119.74;4867751.6;3942437.1 -5000;'001;World;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4739661;5142782;5114798;5457972;5364176;5828176;6919896;7321565;7763765;8565873;9572253;7848462;7219321;7313122;6626812.05;6272715.96;5754989;4639523;4262640;4211385.71;4582778.16;4168920;3223349;3518862.82;4506176.11;3775443.01 -5000;'001;World;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33578318;35684911;36317263;34871616;34532463;34994815;36325207;35771145;36270261;36355253;34323673;31438776;33097856;32392148;31288727;31376277;31964948;31498474;31408827;31887942;31206431;30224744;27353886;28261206;27668557;25499695 -5000;'001;World;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7261837;9066104;9459451;9374241;10606134;12251378;13260988;14779866;14681505;14568144;13857045;13115638;14056474;14976063.5;14837276.4;14487038;15232729;14545890;14749377;16016018;15456173;16131649;14157774;14389439.11;13312708;12024401 -5000;'001;World;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6161185;7124603;8323173;8228499;8987307;10737242;11670554;12717488;13038797;14661338;15554100;13774932;15432685;17289457;16388994;15768932;16357432;14133017;14080942;15017778.04;15728836.72;15674615;12836194;13640916.32;16337603;15068712 -5000;'001;World;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7505228;8498020;8389270;8353353;10848146;11816708;13094292;13792747;14797426;14688462;13989135;13857929;13937914.24;14533019;15292871;15502912.88;16037576.88;15409061.81;15623678.48;16035674.48;15504202.48;15700509.48;14478558;14424385.73;13843593;12416191 -5000;'001;World;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6538610;6967159;7893880;7228561;9069473;10374523;11772390;12532597;13800377;15594901;16383592;14266300;15329433;16606956;16189851.24;16302004.5;16535597;14360295;14064826;14599488.65;15611303.05;15078401;12657149;13517105.13;16041077;14066177 -5000;'001;World;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35274548;38800416;41639355;38673891;40452624;41849481;45484705;45926760;47980121;48862260;47174729;40828777;45212486;44055150;42937858;41607123;40695297;39254858;37767730;37686221;35402064;32487348;26310746;27034346;25937889;21711050 -5000;'001;World;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17467963;19008554;20826323;19125157;18930924;21117454;22545802;23799551;25492591;25370691;24441740;20405373;22078194;21912903;21056715.44;20545050;20279832;19888651;19396286;19484961;19002112;17693404;14451753;14947500.34;14395769;11759494 -5000;'001;World;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15300608;15374283;17599549;15500016;15163276;18022985;19734126;21125070;22688671;24455217;26050560;20427063;22084665;23256176;21126342;20445484;20236021;17357292;16118977;16292261.36;17271704.37;15916430;12359801;13872827.07;17322224;13979892 -5000;'001;World;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17866638;19375926;21973403;20243047;19944119;21649913;24541544;25486840;26151188;26730071;25209697;21774691;24315301;23630226.06;21572492;21027618.38;21331178.53;20721830.23;20085346.23;19863829.53;19331150.53;18231995.53;14366892.53;15362617.88;14288929.53;11601928.3 -5000;'001;World;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15434399;16126510;17991551;15731105;15501989;18101375;21326847;22322595;23008093;24869052;25932392;20471600;23003752;23874933;20450816;19937638;20100490;17141096;16192878;16045787.34;17159188.28;15910144;12117700;13931565.14;16645428.21;13056782.11 -5000;'001;World;1675;Other paper and paperboard;5510;Production;t;47116796;49576400;52546504;56328800;59999504;63756596;64707196;70175996;75701308;77575498;79403208;85451500;91734900;92639608;81186608;91534508;94052500;97642700;103112808;102700800;101434943;100092712;105479687;112092565;113800955;119594193;125029670;131087688;133711072;138104725;141273005;143033207;148112026;155949518;166304446;167082013;175772376;176918134;183518999;186246546;185816746;193247057;199301268;208258620;218068705;230269579;238774799;239690502;235840599;249054994;259021979;262298768;263719185;274310586;281074451;286678380;294333568;292843085;295446634;305074154;323338776;321271502;316632017 -5000;'001;World;1675;Other paper and paperboard;5610;Import quantity;t;3856270;4061410;4511782;5209080;5550700;6230970;6515420;7473210;8557000;8876920;9603200;10257900;11195600;12114558;9274201;11152100;11376224;12387600;13426300;14412400;14063300;14067900;15178100;15874350;16054972;18084437;19655022;20572513;23017976;23968001;24464639;26465427;26295549;28775141;30008656;34633811;38669063;38482870;41199260;41526400;40068097;41544893;43474663;46363101;45883294;47385961;51440022;49441437;45737997;49442783;50172066;50240518;52499211;55528646;57008353;59893894;63605381;66602353;67086398;73171078;74251280.63;73211371.37;71080844.37 -5000;'001;World;1675;Other paper and paperboard;5622;Import value;1000 USD;854139;896905;971319;1104453;1214634;1387571;1488585;1636201;1925285;2139386;2462050;2802151;3604010;5521200;4928086;5522766;6054085;6647361;8138263;9928156;9488595;9180400;9157360;9797516;10063623;12886779;15149900;17118365;19941706;21708866;21078551;22141414;19669947;21938087;29348876;32283072;32333745;29114829;29867644;29716422;27748887;28276605;33246028;37355388;37338247;40714513;46846660;50648570;42232710;48703885;54792520;50662012;53797197;57310452;52309397;53208945;57008387.9;63699833.57;59960479;59299931;70155135.12;80487024.7;69252559.7 -5000;'001;World;1675;Other paper and paperboard;5910;Export quantity;t;3791258;3990150;4517382;5272156;5627856;6407620;6620900;7487500;8580300;9112070;9523570;10223870;11334200;12722100;9238000;11527100;11786750;12049050;14145350;15367450;14770800;14354700;15749098;16601800;16978700;18716500;20065500;21050900;21734400;23960400;26078200;27198065;26887844;29922430;31451949;34182143;37429716;39297298;39333687;40858092;38821356;40589824;42171908;45026158;45812133;45971395;49297887;47221946;45008213.45;48033131;49293464;50308104;53523500.3;55882827;58159233;59848328;63361046;66299423;66753622;71753055;74571307.58;72808727.26;70060786.49 -5000;'001;World;1675;Other paper and paperboard;5922;Export value;1000 USD;793329;823461;932178;1051103;1143588;1294041;1332218;1441863;1666221;1881808;2039061;2357187;3145281;4870872;4376467;4951984;5208275;5920937;7603287;9253356;8696437;8027741;8206718;8829994;9062719;11234339;14134188;16069901;17783290;20503045;20992140;21884584;18692983;21438155;30039402;28416917;27994924;29382844;27586731;29034292;26029045;26380067;31186776;34774107;35963042;39051821;44464177;47689648;40569708;45384697;51865954;48865468;53290794;54834860.6;52263911;52107748;56921630.73;62850240.9;58692267;57722154;69512275.33;77105374.06;67112925.2 -5000;'001;World;1676;Household and sanitary papers;5510;Production;t;2481700;2643500;2962700;3180400;3818800;4313700;4903800;5214200;5635900;5933852;6230700;6646000;6958900;7224900;7018200;7392200;7618700;7885200;8615700;8744806;8977700;9002000;9740900;10686100;11286700;11790700;11947000;12875900;13328200;13945141;14493841;14910626;14576107;16353464;17220286;18011811;19285258;19473567;20176699;20815481;21666369;22569589;22789544;23877903;25311364;25842591;26460351;27110077;27600476;28346086;29891361;30419172;31136109;32032881;32864113;34004503;35252631;35457624;36041534;37693689;37789839;37753684;39101565 -5000;'001;World;1676;Household and sanitary papers;5610;Import quantity;t;30300;32300;39500;41200;43100;50400;55700;128300;151500;292880;224100;263900;327940;326158;285901;248400;173700;229900;350600;402000;342900;341500;347700;377200;408800;446300;459700;583200;733200;805400;1013400;1033229;945277;952577;1165415;1336764;1406328;1313622;1491376;1327654;1578823;1720128;1872213;2071478;2060965;1953945;1973309;2240908;2064280;2302745;2404535;2461077;2474331;2610514;3269303;3446593;3801566;3766353;3812706;4196501;3400260.6;3466636;3655265 -5000;'001;World;1676;Household and sanitary papers;5622;Import value;1000 USD;15659;16796;18712;20078;21959;29849;31112;61426;80169;122700;113427;147966;194491;251631;260368;230694;164781;204339;330902;484001;376782;350079;319607;312282;341715;460849;551314;778228;982245;1172338;1472169;1448878;1244261;1304267;1797082;2106350;1951328;1488947;1662286;1376862;1693269;1830873;2227112;2472532;2654535;2540821;2871668;3238182;2807289;3192815;3410839;3341184;3738905;3999313;4625707;4551207;4922531.01;5152159.25;5237610;5117761;4195071.94;5607836;5546369 -5000;'001;World;1676;Household and sanitary papers;5910;Export quantity;t;53400;54500;61200;71700;79800;88700;104700;186900;212900;248800;222300;282300;375200;403300;320000;316900;283100;346700;398100;403300;409500;380800;449300;466200;528300;525500;531300;699900;811200;865300;1012400;916800;936909;1073846;1157962;1222951;1420933;1462567;1460208;1412623;1590150;1636815;1675504;1923792;1749331;2233887;2230555;2259368;2241089.45;2052977;2103123;2264381;2467563.3;2505873;3171276;3424009;3711413;3892926;3998544;4181308;3309016.05;3475387.12;3582361.12 -5000;'001;World;1676;Household and sanitary papers;5922;Export value;1000 USD;27352;26511;27327;31186;36246;41029;50000;76659;88111;104506;100923;137673;199789;283951;261451;251447;198072;257987;326541;407388;409750;379057;394410;402002;448768;529003;581327;938197;1085583;1233913;1419185;1129094;1071863;1235001;1680387;1686658;1738117;1520148;1555785;1564063;1734550;1782643;1948670;2397607;2249543;3168403;3530975;3864375;3445872;3168721;3189887;3179406;3530623;3684146;4648146;4653667;4956680.59;5460974.34;5555664;5348185;4094840.86;5329674.71;5154942.42 -5000;'001;World;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;141737344;146955817;150748177;148536893;154955361;160329120;169683787;175490118;186130576;193674436;194882519;191445882;203414674;211011657;214067868;215300045;226206594;231766626;235987450;242401504;241569519;242632112;248879031;266043842;264319681;258741455 -5000;'001;World;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27633742;30009721;34124313;33220596;35198766;37332404;39974342;40111651;41875048;45689360;43659478;40921827;45026780;45755781;45842146;48109518;51108147;51961117;54250527;57884475;61021029;61535468;67353021;69205644.12;68061451.37;65984388.37 -5000;'001;World;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19338876;20352117;22239676;20660689;21831884;26118425;29597229;29713900;32454627;38414846;41573401;34971296;41551046;46994624;43169144;45934400;49063854;44010062;44423233;48418385.95;54799751.92;50934527;50522083;61898386.06;70549964.7;59624919.7 -5000;'001;World;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33415867;34007997;35331408;33640106;35958943;37887393;40930884;41841011;40764868;45415008;42850532;41382429;44678142;45521159;46268724;49439564;51889641;53279674;54663371;57800037;60607867;61045813;65962995;69595591.17;67656603.52;64783908.37 -5000;'001;World;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22497906;21535206;22564647;20035503;21638219;25933531;29047378;30029816;30307463;38364462;39838276;34641417;39862184;45354094;42248894;46374505;47995959;44296729;44144511;48470934.89;53961156.5;49746209;49119721;61548184.12;67835186.71;56967416.77 -5000;'001;World;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;24092296;25255400;26528104;30302800;37392504;42820096;44658396;50265696;51834408;52566305;53377008;57938500;61834100;64267808;54498008;63758508;66180000;68683500;71954408;71249530;69727208;68154400;75200300;78653800;82512708;86916708;91163008;99346300;102244808;105385315;108781323;111074322;112470114;119869389;132494531;135232397;142164996;;;;;;;;;;;;;;;;;;;;;;;;;; -5000;'001;World;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;1615270;1730050;2038350;2374200;2421690;2866240;3200630;5030490;5720800;5725200;5924900;6325900;6908900;7342500;5457300;6532300;6919300;7172100;7580400;8649700;8943600;8825300;9591400;9936050;10014055;10427616;10928300;10829326;12803289;14543720;16150300;17630456;18918691;21379380;21904675;24348100;26180036;;;;;;;;;;;;;;;;;;;;;;;;;; -5000;'001;World;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;308776;333539;378019;431567;459051;557782;636497;896969;1053930;1121077;1176881;1338031;1749799;2783713;2406750;2533126;2796511;2998017;3469409;4887697;4967690;4819041;4601686;4773827;4844890;5796495;6750006;7296013;8930474;11023631;12401742;13773157;12952424;14731936;19704021;20832796;19917629;;;;;;;;;;;;;;;;;;;;;;;;;; -5000;'001;World;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;1883398;2026100;2292122;2556206;2628736;3020830;4385080;5711100;6536900;6869700;7049200;7544700;8441800;9218100;6537800;8171200;8591000;8420200;10443900;11599500;10945000;10689700;11655000;11770900;12057200;13478400;14316600;15369200;15889500;17732600;20887600;21536209;23253928;25889131;26972463;29451269;31240014;;;;;;;;;;;;;;;;;;;;;;;;;; -5000;'001;World;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;368397;381762;435721;487209;514052;585420;810056;987164;1103536;1230906;1249117;1424888;1916476;2896246;2531762;2835124;2962236;3401154;4654606;5874179;5561840;5122359;5288725;5305514;5515071;7139221;8770897;9848976;10879196;13417668;15256839;15664793;14258332;16858655;23872714;22639742;20756755;;;;;;;;;;;;;;;;;;;;;;;;;; -5000;'001;World;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76677133;83322944;94640689;93779939;98106384;101568437;108530238;112812469;119779668;121509244;124023678;126169048;134809142;139624161;141860755;145305595;151478719;155779121;159309996;164418327;163339694;164694131;171951856;185661817;182869363;180853514 -5000;'001;World;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13280952;13978161;16167546;15633401;16675033;17343981;18049406;18956554;19270031;19918768;20467637;19551448;21253176;21259222;21686249;23017855;24171418;24957289;25017909;28222065;30529270;31537837;36056611;36311338.32;35379383;37170845 -5000;'001;World;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6663522;6846878;7353688;6801576;6807872;7764083;8766695;9065499;10041765;11866535;12855821;9831175;12995849;14971053;13542460;14997202;15772058;14326462;13544850;16260039.4;19731214.29;17444585;17771649;23515201.24;26794079;21788184 -5000;'001;World;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16318404;16346723;16741645;16527371;17146094;18399906;19747097;20195138;19243238;21032612;20519660;20296147;21477926;21614144;22174261;23473823;24896933;25490575;26242842;27866467;30226541;31005800;35397522;36551231.01;35008054.53;35806013.38 -5000;'001;World;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7568694;6989709;7427395;6594789;6671773;7612436;8837872;8889695;9222751;11866307;12088504;10481370;12132500;13706107;12286444;14094180;15264934;13758042;13459775;15801941.04;19043588.62;16266890;16667978;23010738.01;25054734.09;20282887.15 -5000;'001;World;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22023319;23859450;27137686;27418757;29661986;31146236;32563025;33622914;36596103;41758272;40105830;36816320;42263732;41874030;42686758;42500980;48736555;49464235;50095010;51122893;46344729;46297028;46377117;49363162;48018441;47492798 -5000;'001;World;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8088139;8896073;10144382;9924213;9727015;11039079;12274333;11307634;13102354;15631714;13435554;12633937;14038184;14620682;15077382;15697363;16687967;16715179;18140252;17952836;18186458;18030757;18538523;19318035.64;19753001;17463237 -5000;'001;World;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7444120;7758297;8745482;8039148;8314288;10679075;12342962;11794661;13394726;16114946;17156698;15704788;17693097;19921506;19549199;20475153;22046904;19503666;20415258;20800747.52;22089096.9;21177998;21099633;24221132.7;27675293;24106535 -5000;'001;World;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9084711;9458339;9008558;8934839;10206429;10603945;11264022;11476417;11178251;13567056;13303086;12624847;14117825;14672953;15275872;16737632;17165263;17816886;18121730;19205157;19206642;19165532;19054026;20650519.11;21102367;18577859 -5000;'001;World;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8315452;8164694;8191091;7807767;8514244;10325142;11798044;12337803;11803834;15956954;17342913;15719404;17891164;20656289;20075866;21930064;22111925;20478790;20770616;21742228.35;22603589.87;21726639;21257053;24683321.19;27376341;23998866 -5000;'001;World;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26761162;26605206;15313518;14353928;14410248;14527969;14957223;15707142;16244568;16190673;16742500;16078987;17298311;17620791;18202720;18644684;17514876;17884953;17766345;18273473;19241939;18940531;17861536;19538492;19741281;19057438 -5000;'001;World;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4728067;5530136;6474227;6375774;7228299;7367484;7783031;7976814;7711292;8232875;8145330;7356119;8368339;8359636;7562088;7772582;8575462;8572550;9300331;9704620;10302269;9989231;10233089;10904585.54;10367631;9060226 -5000;'001;World;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4337413;4849248;5459768;5208446;5930691;6773907;7446231;7819726;7946600;9244261;10311947;8387473;9876646;10835224;8898749;9192877;9982973;9001340;9275531;9974130.37;11571638.67;11002206;10214921;12272996.05;14004397;11985111 -5000;'001;World;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5184912;5679983;6315674;5603333;6002453;6090024;6978406;7211608;7465920;7559261;7377635;6753885;7427143;7601023;7157931;7462098;7999120;8145780;8399144;8667810;9138652;8793701;9393383;9912546.4;9292568;8295768 -5000;'001;World;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4693485;4756766;5285341;4366251;4956732;6356174;6589022;6911451;7483628;8399434;9174462;7473826;8772163;9698826;8651963;8969492;9198729;8641949;8592292;9475035.6;10799322.52;10179785;9686438;11849883.92;13181318;10991037 -5000;'001;World;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16275730;13168217;13656284;12984269;12776743;13086478;13633301;13347593;13510237;14216247;14010511;12381527;9043489;11892675;11317635;8848786;8476444;8638317;8816099;8586811;12643157;12700422;12688522;11480371;13690596;11337705 -5000;'001;World;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1536584;1605351;1338158;1287208;1568419;1581860;1867572;1870649;1791371;1906003;1610957;1380323;1367081;1516241;1516427;1621718;1673300;1716099;1792035;2004954;2003032;1977643;2524798;2671684.62;2561436.37;2290080.37 -5000;'001;World;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;893821;897694;680738;611519;779033;901360;1041341;1034014;1071536;1189104;1248935;1047860;985454;1266841;1178736;1269168;1261919;1178594;1187594;1383468.65;1407802.06;1309738;1435880;1889056.07;2076195.7;1745089.7 -5000;'001;World;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2827840;2522952;3265531;2574563;2603967;2793518;2941359;2957848;2877459;3256079;1650151;1707550;1655248;1633039;1660660;1766011;1828325;1826433;1899655;2060603;2036032;2080780;2118064;2481294.64;2253613.99;2104267.99 -5000;'001;World;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1920275;1624037;1660820;1266696;1495470;1639779;1822440;1890867;1797250;2141767;1232397;966817;1066357;1292872;1234621;1380769;1420371;1417948;1321828;1451729.9;1514655.5;1572895;1508252;2004240.99;2222793.62;1694626.62 -5000;'001;World;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;3058900;3179000;3323700;3555200;6779000;8290900;8435300;8493100;11892300;11976941;12250600;12896700;14435500;12827500;10987700;11255900;10891400;11450400;12335100;12172364;12015635;11928312;8922987;10302165;12339647;12959285;13847662;18289488;18117064;18774269;17997841;17048259;21065805;19726665;16589629;13837805;14322122;15707223;16386483;14682888;15613484;15722107;16182604;14696930;17267223;18296412;18640012;17697906;16794241;17294234;18118961;17811728;17283031;16071111;16443712;16686427;16679433;15815942;16772988;18501434;19505095;19198137;18788997 -5000;'001;World;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;380800;406360;485332;548750;603910;760330;937990;1603220;2066100;2320640;2916200;3121100;3470260;3933200;2927600;3787500;3659200;4295200;4762700;4221400;4269200;4521700;4767000;5165800;5029615;6045156;8139658;9050258;9394192;8500411;7199200;7701717;6296348;6357438;6853125;8853542;10986249;9535506;9698163;6074433;5268678;4625999;4270046;4317281;3710678;3556968;3777353;3541051;2751890;2113258;2011750;1937295;1915362;1809985;1777933;2196774;1919340;1814971;1738224;1621556;1645375.9;1683284;1441191 -5000;'001;World;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;115958;121891;141667;158722;184269;246642;300372;494947;641863;757958;1026614;1161257;1493096;2251790;1898003;2446148;2714015;3030869;3874522;3680940;3703660;3680497;3817125;4361382;4361890;5596714;7728803;8934885;9928801;9415169;7108019;6839404;5370664;5822255;7762426;9248082;10366632;8287006;7853241;6099884;5394929;4613848;4900491;5285627;4969812;5719065;5560146;5836987;4454125;3960024;4387057;4151684;4123892;4247285;3673628;4234505;3667470.94;3747922.4;3788342;3660087;4061677.11;4329224;4081271 -5000;'001;World;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;482460;512700;574630;627930;639900;755670;911520;1186200;1348000;1454370;1714470;1780370;2374500;2978400;2283700;2979200;2858550;3240550;3258650;3326250;3380000;3245100;3609298;4232600;4184000;4442100;5216500;4980700;5032600;5361400;4177100;4604084;2645140;2957033;3319416;3499102;4758194;4418864;3865482;4114061;3591100;2994066;2609011;2171482;2221791;2972640;1652324;2112046;1384695;1302012;1669182;1774999;1616373;1487313;1708283;1760948;1849596;1798630;1709265;1608752;1666700.37;1676736.62;1694517 -5000;'001;World;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;109032;113336;126804;138442;147801;176239;250486;308425;395733;461829;603542;691270;1001498;1656937;1561309;1845392;2024914;2243258;2601482;2952456;2705872;2505562;2506191;3054830;2989517;3423772;4781130;5281894;5817677;5850630;4315282;4978598;3328264;3343060;4484690;4084899;5494427;5364790;4495740;4905582;4258992;2959205;3304575;3329122;3683683;5575955;2568740;3986997;2482419;2353792;3321973;3437168;3385666;3154755.6;3319036;3309570;3494015.24;3428110.05;3390394;3254248;3869250.35;3940512.64;4990566 -5000;'001;World;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102204729.5;109052097.9;107622235;105662947;133944264;143058192;121533774 -5000;'001;World;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107453578.3;114047724.1;111802327;113312489;142231115;143221642;132094743 -5000;'001;World;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4852703.82;5028392.79;4852406;4765590;6497349;6972969;4975600 -5000;'001;World;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4551349.5;4770224.85;4602947;4509094;5794063;5909991;4722325 -5000;'001;World;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2350314.76;2487182.92;2339589;2510430;3621756;3922232;2630685 -5000;'001;World;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1908626.47;1984022.53;1930476;2116801;2962235;2941402;2237490 -5000;'001;World;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2502389.06;2541209.87;2512817;2255160;2875593;3050737;2344915 -5000;'001;World;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2642723.04;2786202.32;2672471;2392293;2831828;2968589;2484835 -5000;'001;World;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4076002.26;4539570.71;4526415;4204138;5937938;7245575;6263876 -5000;'001;World;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4339688.05;4943858.83;4894394;4671625;6554243;8021120;6903067 -5000;'001;World;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3692054.93;3965861.02;3948782;3592991;4742104;5010204;4151702 -5000;'001;World;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3435985.91;3830805.19;3787595;3754448;4874711;4793641;4293784 -5000;'001;World;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13423736.78;14316309.78;14172557;13820356;17374484;18543417;16264273 -5000;'001;World;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13351280.79;13714333.95;13651605;13735376;17703945;17752608;15618055 -5000;'001;World;1636;Glue-laminated timber (glulam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7382805;7088880 -5000;'001;World;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2182509;1839102 -5000;'001;World;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2067379;1412813 -5000;'001;World;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2740971;2602828 -5000;'001;World;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2270409;1703411 -5000;'001;World;1688;Cross-laminated timber (CLT or X-lam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1721814;1210154 -5000;'001;World;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;313884;347428 -5000;'001;World;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;314031;305702 -5000;'001;World;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;536497;550229 -5000;'001;World;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;432921;419636 -5000;'001;World;1684;I-beams (I-joists);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1147843;1045527 -5000;'001;World;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;333859;301973 -5000;'001;World;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;531172;447693 -5000;'001;World;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;353004;294467 -5000;'001;World;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;529049;446920 -5000;'001;World;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68408283.93;72713232.32;71630477;70427839;88337855;93634638;79892974 -5000;'001;World;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73566737.41;77522853.69;75819431;77474379;95188908;94643997;89973788 -5000;'001;World;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1524753.19;1606622.05;1609268;1474622;1864542;2148836;1905643 -5000;'001;World;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1736109.2;1915822.62;1877338;1711486;2274721;2419885;2053231 -5000;'001;World;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6227194.59;6882109.18;6882330;7377411;9189992;9502553;8079706 -5000;'001;World;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6472427.39;7349824.98;7169017;7456081;9840524;9680400;8530493 -5000;'001;World;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64273514.03;69436352.74;69200873;66869862;76043769;85623865;82240726 -5000;'001;World;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65016057.88;70647727.76;71965036;70103859;80425909;89448278;86284570 -5000;'001;World;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;728151.63;782812.53;745329;670868;812835;984546;777145 -5000;'001;World;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;800344.82;862180.22;803981;711872;771795;880360;719476 -5000;'001;World;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10023828.33;10918739.92;10582042;9831142;11675320;13151338;11764603 -5000;'001;World;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9034305.96;9945208.29;9855047;9384318;11378505;12647084;11281720 -5000;'001;World;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10772282.83;11481557.2;11352949;12410745;11645647;13487472;14359368 -5000;'001;World;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11089718.58;11796961.09;12394794;12371858;11492521;13535666;14807518 -5000;'001;World;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22051188.93;24052228.11;24525311;23707717;28331407;31489438;29850186 -5000;'001;World;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23355193.62;25617101.26;26193000;26324184;31657981;33765086;31660865 -5000;'001;World;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20698062.31;22201014.98;21995242;20249390;23578560;26511071;25489424 -5000;'001;World;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20736494.89;22426276.9;22718214;21311627;25125107;28620082;27814991 -5100;'002;Africa;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13195818;14765850;14536731;13145141;14833188.39;17515940.86;16223698.46 -5100;'002;Africa;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7913413.9;8496465;7008375;6079693;7397307.94;8084870.14;7879457.87 -5100;'002;Africa;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;220373;206820;223154;251526;275687;288762;288081;286965;342832;429898;442133;403056;627383;1187944;1087522;1021275;1361926;1361000;1327995;1781253;2361169;2012243;2116191;2027935;2113072;2180756;2123470;2559528;3333016;3953657;2939749;2488875;2258931;2654849;3150215;2795105;3025154;2835607;3031025;2578274;2842749;2730016;3531787;4155079;4470049.1;4714582.76;6239533.3;7190508;6857646.1;8265233.6;8490646.69;8434988.54;8977355.63;10325872.98;8580154.59;8375424;8780262;9984024;9907209;8994821;10224778.39;12276016.86;10973995.46 -5100;'002;Africa;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;210421;206003;243492;288503;275446;279265;283494;346784;413221;386542;396419;473115;830608;864373;637484;839989;898579;1011947;1180100;1570655;1153386;1034208;961131;979949;1022911;1235546;1343833;1708360;1394554;2072778;1578362;2235991;2131153;2615052;2573684;2854813;2428360;2265322;2508633;2822394;2928680;2857644;3212188;3580007;4375351;4398188;5282771;5538970;4213339.3;5089123.8;5515901.08;5222394.13;5145639.76;6194744.46;5884912;5815612;6461138;6688277;5599654;4809668;5836543.94;6418113.14;6161680.87 -5100;'002;Africa;1861;Roundwood;5516;Production;m3;276962385;281672967;292737272;294092171;301278184;314406329;320492466;326719206;335000212;340670176;345576968;348574552;354721152;356720304;364486951;370958103;377665140;388029614;395684495;406451748;416719058;424805070;435591258;445973861;457577388;465081700;475587104;485176355;496324313;506242881;515517496;529806074;545446174;565290318;580116736;589920958;597881649;601379111;605483491;622595544;631089103;637085752;648916835;658268100;674530387;687476749;693101800;702469662;707586578;715387955;722625655;729685024;735953683;744762370;754379982;761416521;768063038;778122942;783959579;789832260;798611255;807584278;820170163 -5100;'002;Africa;1861;Roundwood;5616;Import quantity;m3;295200;326800;333501;331501;424200;452400;398700;351000;414600;539500;557400;442100;454900;644300;558600;485700;698800;590900;618100;809200;795400;877800;1031200;940800;1013500;785966;845399;1173267;732370;290657;500376;730275;474507;889158;928904;698614;759581;475570;922116;787395;793357;661333;760068;1168387;1108770.7;822431;804135;942641;438098;940874;998046;878553;813395;1158215;1160364;1296068;1542865;1776925;1972061;1521261;2139796.94;2501513.67;3392500.58 -5100;'002;Africa;1861;Roundwood;5622;Import value;1000 USD;7011;9459;10298;12843;16440;18882;16285;14314;18369;20437;21142;21045;26536;57372;65655;53602;85486;85296;88754;124904;122513;129794;131314;125720;134490;130245;149911;171355;152043;43409;78332;112449;76422;139886;136387;101703;114869;79953;117947;98035;122165;89818;96410;113260;114990.5;102483;130187;176949;98552.3;141560.6;143336.35;118255;117367.24;129195;95060;98267;141321;187469;173247;157900;157429.39;184091.39;173634 -5100;'002;Africa;1861;Roundwood;5916;Export quantity;m3;4755500;4511900;5209300;6124400;5741600;5703700;5732400;6645300;8001900;6931100;7152600;7280800;8379200;6759100;5203450;6601347;6731500;6529300;6503000;6182300;4925200;5062400;4876200;5398400;4547900;3796991;3902433;4622261;4508194;4149211;4058862;3995195;4273274;4795572;4343931;5381392;6223888;5082901;5065501;6103202;5352794;4839434;4700022;4232470;4438712;4698580;5263247;4897749;3916932;4460314;4234078;4626286;4426591;6274662;7583077;8694086;8339313;7770334;6087771;4176138;6176873.27;5743569;5868599 -5100;'002;Africa;1861;Roundwood;5922;Export value;1000 USD;127134;119455;155478;182426;165587;162931;167042;197105;251184;212316;222286;278836;524504;523902;339502;488761;511769;556771;677287;923683;591511;478098;437196;427539;400702;434466;381420;494115;498715;950231;637728;840875;788731;918716;719242;683890;716664;597688;712288;914099;1014742;851302;743772;697069;1268882;1344570;1773666;1722043;1305015;1586654.4;1492571;1620173;1704301.4;2468394.2;2220748;2168793;2487308;2392359;1795137;1132369;1607960.38;1172728;1098356 -5100;'002;Africa;1862;Roundwood, coniferous;5516;Production;m3;7387995;7511773;8501394;8743897;9602323;10753825;10736410;10929346;11600778;11937249;12884163;12830687;13159545;13952082;14412866;14443775;14422463;15412667;15128980;16095555;16683232;16827895;16838193;16886244;17968650;17306723;18249896;19962316;20334808;20350858;21018467;21028735;24918277;25666159;26757778;27549554;28153069;27059221;26213987;26644568;26788921;26852365;26664584;25951262;27981018;28167421;28382077;29857643;28689004;28216020;28953519;29988373;30359299;29662906;29916591;29910597;29433940;30978084;29892792;31198853;31808944;32023518;31932742 -5100;'002;Africa;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;813758;981044;1005648;688165;1100176.78;1172078.68;1066246.58 -5100;'002;Africa;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80438;113315;98190;76585;92572.04;100343.39;78293 -5100;'002;Africa;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;866262;835089;850782;620009;1073818.33;1356901;1336203 -5100;'002;Africa;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63706;76927;69559;79866;153970.36;110752;90397 -5100;'002;Africa;1863;Roundwood, non-coniferous;5516;Production;m3;269574390;274161194;284235878;285348274;291675861;303652504;309756056;315789860;323399434;328732927;332692805;335743865;341561607;342768222;350074085;356514328;363242677;372616947;380555515;390356193;400035826;407977175;418753065;429087617;439608738;447774977;457337208;465214039;475989505;485892023;494499029;508777339;520527897;539624159;553358958;562371404;569728580;574319890;579269504;595950976;604300182;610233387;622252251;632316838;646549369;659309328;664719723;672612019;678897574;687171935;693672136;699696651;705594384;715099464;724463391;731505924;738629098;747144858;754066787;758633407;766802311;775560760;788237421 -5100;'002;Africa;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;729107;795881;966413;833096;1039620.16;1329435;2326254 -5100;'002;Africa;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60883;74154;75057;81315;64857.35;83748;95341 -5100;'002;Africa;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7473051;6935245;5236989;3556129;5103054.94;4386668;4532396 -5100;'002;Africa;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2423602;2315432;1725578;1052503;1453990.02;1061976;1007959 -5100;'002;Africa;1864;Wood fuel;5516;Production;m3;252388385;255881967;260210272;264975171;269634184;281670329;286933466;291659906;296562212;301564576;304760568;307551252;311615952;315358804;322712151;327475603;333417240;341878614;348507295;356346248;365707608;374181470;383875658;394533061;403341988;411205889;419176996;427141906;436215808;445047414;455269325;469628129;484033833;499239789;513120894;521444084;527343636;530917006;536615603;551284119;561314378;566499758;575280165;584258222;599843755;610627772;618358867;627444190;635187512;643631836;652909846;657260358;664136893;671269729;679491866;686439535;693120688;700071542;706068834;712632803;720103036;727874516;740734694 -5100;'002;Africa;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;40300;43300;33200;33400;33100;33100;33100;38200;35500;2700;14665;7503;7453;45246;48446;11399;7182;4276;4712;1072;930;1053;1302;1619.7;1192;1560;2836;2691;398720;459844;367059;367189;557372;752206;862032;892504;961424;1164990;940002;1526259.94;1694440.68;1579798.58 -5100;'002;Africa;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;756;896;669;641;653;653;653;951;858;148;540;270;350;2500;2588;418;270;193;298;224;142;210;628;677.5;562;833;725;737;20439;18670;14503;14806.24;18111;23852;36537;31549;35808;39014;31717;57403.39;64346.39;58893 -5100;'002;Africa;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;276;6061;1061;1327;327;10571;1873;1764;1562;4283;7731;10038;12977;14401;36785;51699;410673;517524;477820;326783;342702;667497;1084484;936315;952337;1163659;982009;1622259.27;1768043;1603172 -5100;'002;Africa;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;336;70;85;30;323;63;55;88;514;709;881;912;1325;2460;6510;22460;20203;19428;16038;18820;24084;37771;33291;36623;41096;37130;68717.38;73265;62826 -5100;'002;Africa;1627;Wood fuel, coniferous;5516;Production;m3;4748995;4816773;4909394;5010897;5128323;5807825;5908410;6015046;6126778;6236649;6404763;6427387;6539345;6653582;6804766;6901275;7027563;7143867;7292180;7479855;7687732;7869595;8042793;8282444;8513650;8713923;8909996;9160116;9368008;9611058;9918467;10204335;13067477;13398259;13651878;13861254;14164769;12859621;13072487;13287968;13466421;13648465;13834184;14024662;15751680;15897616;16149168;16311506;16476535;16648670;16783405;17435160;17586862;17755353;17907160;18024452;18261048;18380941;18500016;18702510;19176599;19352487;19480748 -5100;'002;Africa;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;383407;418278;505229;336737;643435.78;663735.67;657844.58 -5100;'002;Africa;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13505;14787;14261;9803;20295.04;21998.39;17926 -5100;'002;Africa;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;424690;406727;505689;378943;773370.33;775587;712238 -5100;'002;Africa;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14703;12836;14572;14618;30859.37;34174;21531 -5100;'002;Africa;1628;Wood fuel, non-coniferous;5516;Production;m3;247639390;251065194;255300878;259964274;264505861;275862504;281025056;285644860;290435434;295327927;298355805;301123865;305076607;308705222;315907385;320574328;326389677;334734747;341215115;348866393;358019876;366311875;375832865;386250617;394828338;402491966;410267000;417981790;426847800;435436356;445350858;459423794;470966356;485841530;499469016;507582830;513178867;518057385;523543116;537996151;547847957;552851293;561445981;570233560;584092075;594730156;602209699;611132684;618710977;626983166;636126441;639825198;646550031;653514376;661584706;668415083;674859640;681690601;687568818;693930293;700926437;708522029;721253946 -5100;'002;Africa;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;509097;543146;659761;603265;882824.16;1030705;921954 -5100;'002;Africa;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18044;21021;24753;21914;37108.35;42348;40967 -5100;'002;Africa;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;511625;545610;657970;603066;848888.94;992456;890934 -5100;'002;Africa;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18588;23787;26524;22512;37858.02;39091;41295 -5100;'002;Africa;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;40300;43300;33200;33400;33100;33100;33100;38200;35500;2700;14665;7503;7453;45246;48446;11399;7182;4276;4712;1072;930;1053;1302;1619.7;1192;1560;2836;2691;398720;459844;367059;367189;557372;752206;862032;;;;;;; -5100;'002;Africa;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;756;896;669;641;653;653;653;951;858;148;540;270;350;2500;2588;418;270;193;298;224;142;210;628;677.5;562;833;725;737;20439;18670;14503;14806.24;18111;23852;36537;;;;;;; -5100;'002;Africa;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;276;6061;1061;1327;327;10571;1873;1764;1562;4283;7731;10038;12977;14401;36785;51699;410673;517524;477820;326783;342702;667497;1084484;;;;;;; -5100;'002;Africa;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;336;70;85;30;323;63;55;88;514;709;881;912;1325;2460;6510;22460;20203;19428;16038;18820;24084;37771;;;;;;; -5100;'002;Africa;1865;Industrial roundwood;5516;Production;m3;24574000;25791000;32527000;29117000;31644000;32736000;33559000;35059300;38438000;39105600;40816400;41023300;43105200;41361500;41774800;43482500;44247900;46151000;47177200;50105500;51011450;50623600;51715600;51440800;54235400;53875811;56410108;58034449;60108505;61195467;60248171;60177945;61412341;66050529;66995842;68476874;70538013;70462105;68867888;71311425;69774725;70585994;73636670;74009878;74686632;76848977;74742933;75025472;72399066;71756119;69715809;72424666;71816790;73492641;74888116;74976986;74942350;78051400;77890745;77199457;78508219;79709762;79435469 -5100;'002;Africa;1865;Industrial roundwood;5616;Import quantity;m3;292800;321700;327501;325801;418100;446600;395700;348700;412100;537600;554800;439500;450800;640100;552800;479900;692500;586400;611700;808500;795100;837500;987900;907600;980100;752866;812299;1140167;694170;255157;497676;715610;467004;881705;883658;650168;748182;468388;917840;782683;792285;660403;759015;1167085;1107151;821239;802575;939805;435407;542154;538202;511494;446206;600843;408158;434036;650361;815501;807071;581259;613537;807073;1812702 -5100;'002;Africa;1865;Industrial roundwood;5622;Import value;1000 USD;6982;9401;10204;12767;16363;18803;16237;14271;18327;20398;21078;20992;26434;57244;65486;53380;85190;85071;88524;124877;122502;129038;130418;125051;133849;129592;149258;170702;151092;42551;78184;111909;76152;139536;133887;99115;114451;79683;117754;97737;121941;89676;96200;112632;114313;101921;129354;176224;97815.3;121121.6;124666.35;103752;102561;111084;71208;61730;109772;151661;134233;126183;100026;119745;114741 -5100;'002;Africa;1865;Industrial roundwood;5916;Export quantity;m3;4755500;4511900;5209300;6124400;5741600;5703700;5732400;6645300;8001900;6931100;7152600;7280800;8379200;6759100;5203450;6601347;6731500;6529300;6503000;6182300;4925200;5062400;4876200;5398400;4547900;3796991;3902433;4622261;4508194;4149211;4058862;3995195;4273274;4795296;4337870;5380331;6222561;5082574;5054930;6101329;5351030;4837872;4695739;4224739;4428674;4685603;5248846;4860964;3865233;4049641;3716554;4148466;4099808;5931960;6915580;7609602;7402998;6817997;4924112;3194129;4554614;3975526;4265427 -5100;'002;Africa;1865;Industrial roundwood;5922;Export value;1000 USD;127134;119455;155478;182426;165587;162931;167042;197105;251184;212316;222286;278836;524504;523902;339502;488761;511769;556771;677287;923683;591511;478098;437196;427539;400702;434466;381420;494115;498715;950231;637728;840875;788731;918704;718906;683820;716579;597658;711965;914036;1014687;851214;743258;696360;1268001;1343658;1772341;1719583;1298505;1564194.4;1472368;1600745;1688263.4;2449574.2;2196664;2131022;2454017;2355736;1754041;1095239;1539243;1099463;1035530 -5100;'002;Africa;1866;Industrial roundwood, coniferous;5516;Production;m3;2639000;2695000;3592000;3733000;4474000;4946000;4828000;4914300;5474000;5700600;6479400;6403300;6620200;7298500;7608100;7542500;7394900;8268800;7836800;8615700;8995500;8958300;8795400;8603800;9455000;8592800;9339900;10802200;10966800;10739800;11100000;10824400;11850800;12267900;13105900;13688300;13988300;14199600;13141500;13356600;13322500;13203900;12830400;11926600;12229338;12269805;12232909;13546137;12212469;11567350;12170114;12553213;12772437;11907553;12009431;11886145;11172892;12597143;11392776;12496343;12632345;12671031;12451994 -5100;'002;Africa;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;139734;118337;202409;83017;169267;149423;163151;257269;220171;282962;242898;176188;163395;258219;343230;288936;322566;273614;301216;256804;244297;232267;221073;228759;431576;229648;210864;430351;562766;500419;351428;456741;508343;408402 -5100;'002;Africa;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24035;17854;32655;13177;32434;25603;24708;45920;27674;28622;26822;17848;17013;19434;21473;25256;35376;31952;46148;35534.3;33718.3;32842;39454;36891;62671;35610;27250;66933;98528;83929;66782;72277;78345;60367 -5100;'002;Africa;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67100;119884;110061;232018;245892;152601;281562;152714;194388;308895;194465;75422;101498;167574;200519;137692;93658;79277;49406;41668;30742;46189;37061;85555;166051;123770;146895;441572;428362;345093;241066;300448;581314;623965 -5100;'002;Africa;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5210;10438;7932;14570;20113;14854;27146;13686;13370;18332;12217;3429;4586;10781;10645;7371;5248;4666;3011;3455;4447;5037;3854;12571;20846.2;16607;11826;49003;64091;54987;65248;123111;76578;68866 -5100;'002;Africa;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;139734;118337;202409;83017;169267;149423;163151;257269;220171;282962;242898;176188;163395;258219;343230;288936;322566;273614;301216;256804;244297;232267;221073;228759;431576;229648;210864;430351;562766;500419;351428;456741;508343;408402 -5100;'002;Africa;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24035;17854;32655;13177;32434;25603;24708;45920;27674;28622;26822;17848;17013;19434;21473;25256;35376;31952;46148;35534.3;33718.3;32842;39454;36891;62671;35610;27250;66933;98528;83929;66782;72277;78345;60367 -5100;'002;Africa;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67100;119884;110061;232018;245892;152601;281562;152714;194388;308895;194465;75422;101498;167574;200519;137692;93658;79277;49406;41668;30742;46189;37061;85555;166051;123770;146895;441572;428362;345093;241066;300448;581314;623965 -5100;'002;Africa;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5210;10438;7932;14570;20113;14854;27146;13686;13370;18332;12217;3429;4586;10781;10645;7371;5248;4666;3011;3455;4447;5037;3854;12571;20846.2;16607;11826;49003;64091;54987;65248;123111;76578;68866 -5100;'002;Africa;1867;Industrial roundwood, non-coniferous;5516;Production;m3;21935000;23096000;28935000;25384000;27170000;27790000;28731000;30145000;32964000;33405000;34337000;34620000;36485000;34063000;34166700;35940000;36853000;37882200;39340400;41489800;42015950;41665300;42920200;42837000;44780400;45283011;47070208;47232249;49141705;50455667;49148171;49353545;49561541;53782629;53889942;54788574;56549713;56262505;55726388;57954825;56452225;57382094;60806270;62083278;62457294;64579172;62510024;61479335;60186597;60188769;57545695;59871453;59044353;61585088;62878685;63090841;63769458;65454257;66497969;64703114;65875874;67038731;66983475 -5100;'002;Africa;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115423;379339;513201;383987;712438;734235;487017;490913;248217;634878;539785;616097;497008;500796;823855;818215;498673;528961;638589;178603;297857;305935;290421;217447;169267;178510;223172;220010;252735;306652;229831;156796;298730;1404300 -5100;'002;Africa;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18516;60330;79254;62975;107102;108284;74407;68531;52009;89132;70915;104093;72663;76766;91159;89057;66545;97402;130076;62281;87403.3;91824.35;64298;65670;48413;35598;34480;42839;53133;50304;59401;27749;41400;54374 -5100;'002;Africa;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4082111;3938978;3885134;4041256;4549404;4185269;5098769;6069847;4888186;4746035;5906864;5275608;4736374;4528165;4024220;4290982;4591945;5169569;4811558;3823565;4018899;3670365;4111405;4014253;5765909;6791810;7462707;6961426;6389635;4579019;2953063;4254166;3394212;3641462 -5100;'002;Africa;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;945021;627290;832943;774161;898591;704052;656674;702893;584288;693633;901819;1011258;846628;732477;685715;1260630;1338410;1767675;1716572;1295050;1559747.4;1467331;1596891;1675692.4;2428728;2180057;2119196;2405014;2291645;1699054;1029991;1416132;1022885;966664 -5100;'002;Africa;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26918;134945;271427;273673;289420;157266;139666;144508;118416;244512;182881;261656;176372;174441;284605;278731;141763;154676;131906;58249;60925;60072;41659;74424;61707;22343;36241;35593;47026;41537;30181;29964;29530;677049 -5100;'002;Africa;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5828;30680;50406;50050;64619;45279;35942;34369;32955;58755;44742;72883;41069;45883;48288;47366;34175;53728;41335;22616;24093.2;20010;13333;26642;13944;10250;10052;12414;13945;10019;6921;5168;5434;6628 -5100;'002;Africa;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4067901;3882673;3832327;3781815;4341318;4069547;4968266;5967508;4757739;4565349;5692946;5110648;4354561;4262347;3631052;3942633;4282543;4958333;4582197;3595751;3739470;3295542;3943046;3879186;5548400;6624245;7335167;6708853;6161708;4389747;2805616;4023865;3089490;3022895 -5100;'002;Africa;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;942587;623266;824888;733404;872456;672677;625099;686653;562529;664267;857247;973843;796190;681929;631035;1210044;1303963;1740748;1694033;1273877;1515678;1386444;1571137;1662228;2404643;2164320;2108640;2387472;2269281;1684435;1016181;1389745;987362;940583 -5100;'002;Africa;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88505;244394;241774;110314;423018;576969;347351;346405;129801;390366;356904;354441;320636;326355;539250;539484;356910;374285;506683;120354;236932;245863;248762;143023;107560;156167;186931;184417;205709;265115;199650;126832;269200;727251 -5100;'002;Africa;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12688;29650;28848;12925;42483;63005;38465;34162;19054;30377;26173;31210;31594;30883;42871;41691;32370;43674;88741;39665;63310.1;71814.35;50965;39028;34469;25348;24428;30425;39188;40285;52480;22581;35966;47746 -5100;'002;Africa;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14210;56305;52807;259441;208086;115722;130503;102339;130447;180686;213918;164960;381813;265818;393168;348349;309402;211236;229361;227814;279429;374823;168359;135067;217509;167565;127540;252573;227927;189272;147447;230301;304722;618567 -5100;'002;Africa;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2434;4024;8055;40757;26135;31375;31575;16240;21759;29366;44572;37415;50438;50548;54680;50586;34447;26927;22539;21173;44069.4;80887;25754;13464.4;24085;15737;10556;17542;22364;14619;13810;26387;35523;26081 -5100;'002;Africa;1868;Sawlogs and veneer logs;5516;Production;m3;11227000;11488000;17270000;13418000;14399000;14530000;14941000;15997300;18647000;18693600;19591400;19359300;21027200;18610500;18117800;19192500;20068900;20925300;21528500;23141900;22989850;21930200;21094100;21958100;22170300;21414811;21249308;21680599;22683305;24543067;22805371;22888245;23739941;25769629;26540342;27703224;29228313;28589855;27057988;27871625;27873825;27886194;28031670;26618264;27576240;29070335;29627479;29965295;27918179;28101589;28878264;30440138;31843837;34219752;35264056;35812091;36367252;37844541;35225425;37304670;38510054;39771317;39244280 -5100;'002;Africa;1868;Sawlogs and veneer logs;5616;Import quantity;m3;93400;79100;76601;172001;248200;258700;223000;216500;279900;362200;328000;301700;324900;411200;272700;310800;411200;312400;371500;563700;488100;578900;744200;682400;757600;481266;599599;590167;392270;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5100;'002;Africa;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;3074;2917;2746;6823;10338;9949;8988;9381;13210;14354;13856;14677;18150;38258;27592;36092;49462;44385;53961;89290;84454;95155;103911;101718;111629;100043;127456;125597;108194;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5100;'002;Africa;1868;Sawlogs and veneer logs;5916;Export quantity;m3;4726000;4476600;5174900;6063100;5632200;5590900;5609200;6502400;7871600;6796800;7046600;7188400;8276000;6595000;5033950;6352007;6480400;6280400;6232300;5996900;4627200;4752500;4554800;5094100;4249600;3676091;3519433;4047161;3970894;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5100;'002;Africa;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;126815;119115;155178;181948;164601;162001;165975;196147;250255;211350;221509;277913;522340;522542;337261;485959;508152;550472;671050;918912;584683;471842;428661;420281;394023;429599;365796;467163;474897;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5100;'002;Africa;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;1963000;2237000;2322000;2473000;2752000;2793000;2915000;2874300;3295000;3432600;3720400;3815300;3885200;4156500;4093100;4072500;3969900;4451800;4467300;5047700;5090700;5002800;4542300;4782500;4870000;4384400;4477600;5031100;5375700;5369100;5542900;5301400;5846200;6669700;7769300;8372100;8678800;8538400;7423800;7105200;7026700;6950200;7509200;6739822;7162040;7164105;7176621;7839145;6901550;6453714;6666811;7563222;7875691;8000528;8018986;7902264;7337863;8759374;6825423;9201819;9287821;9376507;9157470 -5100;'002;Africa;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;12900;8400;7201;34101;58200;44000;29800;29300;59500;69600;67500;64700;55200;37100;61900;99800;94900;63000;106900;171800;201200;295900;399100;338800;409700;163399;266810;235346;123374;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5100;'002;Africa;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;478;296;261;1576;2666;2040;1392;1362;2733;3431;3129;3235;3681;4601;7452;14454;17529;15063;16436;30017;39412;51350;59328;55481;66085;35011;62047;54425;56298;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5100;'002;Africa;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;;;;;200;400;300;43700;47900;47900;63400;18100;16700;16700;19400;32900;38400;64200;54400;24400;27400;23900;23500;21200;2500;10069;5190;14425;1081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5100;'002;Africa;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;;;;;7;22;15;166;290;301;422;147;194;249;313;813;1295;4356;4374;2043;2290;2019;796;1274;250;843;707;1307;127;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5100;'002;Africa;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;9264000;9251000;14948000;10945000;11647000;11737000;12026000;13123000;15352000;15261000;15871000;15544000;17142000;14454000;14024700;15120000;16099000;16473500;17061200;18094200;17899150;16927400;16551800;17175600;17300300;17030411;16771708;16649499;17307605;19173967;17262471;17586845;17893741;19099929;18771042;19331124;20549513;20051455;19634188;20766425;20847125;20935994;20522470;19878442;20414200;21906230;22450858;22126150;21016629;21647875;22211453;22876916;23968146;26219224;27245070;27909827;29029389;29085167;28400002;28102851;29222233;30394810;30086810 -5100;'002;Africa;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;80500;70700;69400;137900;190000;214700;193200;187200;220400;292600;260500;237000;269700;374100;210800;211000;316300;249400;264600;391900;286900;283000;345100;343600;347900;317867;332789;354821;268896;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5100;'002;Africa;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;2596;2621;2485;5247;7672;7909;7596;8019;10477;10923;10727;11442;14469;33657;20140;21638;31933;29322;37525;59273;45042;43805;44583;46237;45544;65032;65409;71172;51896;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5100;'002;Africa;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;4726000;4476600;5174900;6063100;5632000;5590500;5608900;6458700;7823700;6748900;6983200;7170300;8259300;6578300;5014550;6319107;6442000;6216200;6177900;5972500;4599800;4728600;4531300;5072900;4247100;3666022;3514243;4032736;3969813;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5100;'002;Africa;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;126815;119115;155178;181948;164594;161979;165960;195981;249965;211049;221087;277766;522146;522293;336948;485146;506857;546116;666676;916869;582393;469823;427865;419007;393773;428756;365089;465856;474770;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5100;'002;Africa;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11898000;11730400;14127900;14356600;14001500;16915300;18192057;18450054;19022040;16004187;16105484;15063306;13685120;12476412;14078240;11954135;10751471;11372582;10745676;10173727;12022433;14454533;12091967;12195345;12135625;12388369 -5100;'002;Africa;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4423000;4519900;5310400;5431000;5323500;4661700;4436559;4398386;4487528;4428825;5096132;4640900;4356480;4750344;4345941;4252696;3263185;3343185;3332885;3203913;3361693;4068735;2722168;2772168;2722168;2722168 -5100;'002;Africa;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7475000;7210500;8817500;8925600;8678000;12253600;13755498;14051668;14534512;11575362;11009352;10422406;9328640;7726068;9732299;7701439;7488286;8029397;7412791;6969814;8660740;10385798;9369799;9423177;9413457;9666201 -5100;'002;Africa;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;34000;43500;60300;53800;37500;59200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5100;'002;Africa;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;4011;8251;7121;5160;4551;7731;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5100;'002;Africa;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;238900;500000;465800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5100;'002;Africa;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;10403;22169;20611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5100;'002;Africa;1870;Pulpwood and particles (1961-1997);5516;Production;m3;1114000;1560000;2236000;2193000;3083000;3500000;3680000;3668000;3933000;4177000;4532000;4534000;4863000;5396000;5909000;6217000;6032000;6608000;6384000;7018000;7599000;7474000;8322000;6998000;8265000;8209000;10223000;11650000;11494000;10812000;11601000;11263000;10903000;12498000;11238600;10414100;10448900;;;;;;;;;;;;;;;;;;;;;;;;;; -5100;'002;Africa;1870;Pulpwood and particles (1961-1997);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;34000;43500;60300;53800;37500;59200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5100;'002;Africa;1870;Pulpwood and particles (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;4011;8251;7121;5160;4551;7731;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5100;'002;Africa;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;238900;500000;465800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5100;'002;Africa;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;10403;22169;20611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5100;'002;Africa;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;551000;330000;1138000;1117000;1491000;1751000;1705000;1826000;1957000;2047000;2525000;2350000;2487000;2887000;3233000;3181000;3153000;3533000;3106000;3283000;3600000;3623000;3880000;3428000;4060000;3591000;4132000;5064000;4862000;4637000;4831000;4785000;4903000;4507000;4177500;4039200;4037400;;;;;;;;;;;;;;;;;;;;;;;;;; -5100;'002;Africa;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;563000;1230000;1098000;1076000;1592000;1749000;1975000;1842000;1976000;2130000;2007000;2184000;2376000;2509000;2676000;3036000;2879000;3075000;3278000;3735000;3999000;3851000;4442000;3570000;4205000;4618000;6091000;6586000;6632000;6175000;6770000;6478000;6000000;7991000;7061100;6374900;6411500;;;;;;;;;;;;;;;;;;;;;;;;;; -5100;'002;Africa;1871;Other industrial roundwood;5516;Production;m3;12233000;12743000;13021000;13506000;14162000;14706000;14938000;15394000;15858000;16235000;16693000;17130000;17215000;17355000;17748000;18073000;18147000;18617700;19264700;19945600;20422600;21219400;22299500;22484700;23800100;24252000;24937800;24703850;25931200;25840400;25841800;26026700;26769400;27782900;29216900;30359550;30860800;29974250;30079500;29311900;27544300;28698300;28689700;29199557;28660338;28756602;29111267;28954693;29417581;29969410;28361133;27906288;28018818;28521418;28251478;28419219;28401371;28184426;28210787;27802820;27802820;27802820;27802820 -5100;'002;Africa;1871;Other industrial roundwood;5616;Import quantity;m3;199400;242600;250900;153800;169900;187900;172700;132200;132200;175400;226800;137800;125900;228900;280100;169100;281300;274000;240200;244800;273000;215100;183400;171400;185000;212400;212700;550000;301900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5100;'002;Africa;1871;Other industrial roundwood;5622;Import value;1000 USD;3908;6484;7458;5944;6025;8854;7249;4890;5117;6044;7222;6315;8284;18986;37894;17288;35728;40686;34563;35587;34037;25632;19386;18173;17669;21818;21802;45105;42898;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5100;'002;Africa;1871;Other industrial roundwood;5916;Export quantity;m3;29500;35300;34400;61300;109400;112800;123200;119100;106500;131800;104600;91400;101600;96600;99500;122340;151400;174100;158700;101300;124700;136600;148100;131000;125000;120900;144100;75100;71500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5100;'002;Africa;1871;Other industrial roundwood;5922;Export value;1000 USD;319;340;300;478;986;930;1067;906;877;948;761;912;2146;1301;2132;2402;3124;5844;5810;4299;5258;4686;6965;5688;5109;4867;5221;4783;3207;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5100;'002;Africa;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;125000;128000;132000;143000;231000;402000;208000;214000;222000;221000;234000;238000;248000;255000;282000;289000;272000;284000;263500;285000;304800;332500;373100;393300;525000;617400;730300;707100;729100;733700;726100;738000;1101600;1091200;1159100;1277000;1272100;1238200;1197800;941000;864800;930200;659500;750219;668912;618172;627463;610860;670019;757156;752959;644050;644050;643840;647260;650996;631116;476076;498618;572356;572356;572356;572356 -5100;'002;Africa;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;12108000;12615000;12889000;13363000;13931000;14304000;14730000;15180000;15636000;16014000;16459000;16892000;16967000;17100000;17466000;17784000;17875000;18333700;19001200;19660600;20117800;20886900;21926400;22091400;23275100;23634600;24207500;23996750;25202100;25106700;25115700;25288700;25667800;26691700;28057800;29082550;29588700;28736050;28881700;28370900;26679500;27768100;28030200;28449338;27991426;28138430;28483804;28343833;28747562;29212254;27608174;27262238;27374768;27877578;27604218;27768223;27770255;27708350;27712169;27230464;27230464;27230464;27230464 -5100;'002;Africa;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;199400;242600;250900;153800;169900;187900;172700;132200;132200;175400;226800;137800;125900;228900;280100;169100;281300;274000;240200;244800;273000;215100;183400;171400;185000;212400;212700;550000;301900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5100;'002;Africa;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;3908;6484;7458;5944;6025;8854;7249;4890;5117;6044;7222;6315;8284;18986;37894;17288;35728;40686;34563;35587;34037;25632;19386;18173;17669;21818;21802;45105;42898;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5100;'002;Africa;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;29500;35300;34400;61300;109400;112800;123200;119100;106500;131800;104600;91400;101600;96600;99500;122340;151400;174100;158700;101300;124700;136600;148100;131000;125000;120900;144100;75100;71500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5100;'002;Africa;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;319;340;300;478;986;930;1067;906;877;948;761;912;2146;1301;2132;2402;3124;5844;5810;4299;5258;4686;6965;5688;5109;4867;5221;4783;3207;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5100;'002;Africa;1630;Wood charcoal;5510;Production;t;5578797;5739283;5904263;6369096;6561862;6725983;6937854;7125540;7364934;7549214;7744907;7934456;8213754;8425585;8686267;8931086;9237550;9562088;9901605;10297487;10660660;11084515;11596548;12151241;12658921;13143748;13583251;14055889;14521402;15080654;15820550;15480551;16080089;16877420;18287412;19157969;19193954;19726535;19868904;20169275;21205036;21990993;22884681;23677578;24421214;25089930;25867503;26699380;27411976;28461298;28933674;29538581;30757535;31436918;32147361;32774318;33488041;34241030;34500326;35064614;36381340;37807824;38178926 -5100;'002;Africa;1630;Wood charcoal;5610;Import quantity;t;9300;2800;2400;4500;20000;17600;23200;16500;15700;15800;12100;12300;5200;3700;4300;100;100;100;100;100;100;200;200;200;200;200;0;0;0;0;0;69958;49755;57294;59089;10299;12025;12329;11275;14054;15032;3761;9525;10314;16524;14164;14270;15794;6348;74920;72985;71141.25;95134.26;103267.26;97599.29;92314;89527;110759;132953;111437;137937.83;267603;309026 -5100;'002;Africa;1630;Wood charcoal;5622;Import value;1000 USD;551;160;160;233;482;437;529;472;493;547;402;501;247;222;693;24;24;24;24;24;211;345;345;345;345;345;0;0;0;0;0;3351;3669;3196;3567;1592;1968;1875;1728;1996;1898;1080;2126;3101;3500;3199;3786;4344;5096;15918;15176;15566.38;18709.58;20273.39;18112.25;15707;17123;26976;31138;24634;34157.46;75284;51704 -5100;'002;Africa;1630;Wood charcoal;5910;Export quantity;t;31200;5400;5100;8200;21600;18700;23400;23400;35700;47500;58200;11000;27600;25100;8800;12400;15700;20300;27700;30900;7000;16900;9600;12800;12800;12800;12800;12800;12800;12800;12800;43384;53531;92944;78309;99015;93652;75853;90702;182757;205666;190062;245700;298104;329063;363821;316878;363679;421915;467622;538647;483202;354313;439329.1;439138.1;454907;467604;516363;460496;370802;393608.99;462304;459879 -5100;'002;Africa;1630;Wood charcoal;5922;Export value;1000 USD;965;193;218;258;429;375;413;561;1122;1531;2203;318;925;1082;386;811;1225;1779;2774;3555;822;1964;1110;1536;1536;1536;1536;1536;1536;1536;1536;16508;19190;25256;17331;29170;27005;19323;22067;34905;39828;43123;55577;66377;73483;78858;81661;68760;103305;109626;125428;119169;98334;112901;107555;113317;129838;148273;154642;126829;139222.85;169682;181390 -5100;'002;Africa;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1670450;1673050;1677050;1677050;1688550;4516480;4528295;7942650;13620950;13614050;13776894;5152423;4283568;2683985;3213702;3059680;3362844;3442442;3500129;3765701;3976701;3921993;4040637;4072504;4070227;4070227 -5100;'002;Africa;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5976;4567;9804;10306;9895;4810;18751;18582;12013;13713;19178;17749;67612;62833.06;71511.2;33595;31754;35998.03;36690.03;47817.03;170900.03;178375;84993;68085.93;66916.47;157596 -5100;'002;Africa;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;924;596;845;842;787;580;1751;1480;1586;2234;4499;3772.2;7459;8436.65;10388;5638.34;7424.34;5934.34;5437;4690;5956;15821;10099;8989.48;8322.11;7572.18 -5100;'002;Africa;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2779374;2930280;3982668;3980262;5017554;6370935;6206027;7171885;5912129;5141824;4991431;3682516.46;3840797.88;4169638.06;3026813.34;2156749;2260727.08;2514085;2640730;2532914;2566650;1826337;1442575;2076590.95;2414199;1808617 -5100;'002;Africa;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;139689;136426;151271;172101;186621;247518;267642;335804;297648;273339;338106;224234;272603;297170.08;212015.19;191584;205850.04;224937;213938;239464;236059;187275;133041;191635.82;226724;178319 -5100;'002;Africa;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1223950;1223950;1223950;1223950;1234750;3928450;3936950;7317350;12993550;12989350;12989350;4637350;3737850;2137350;2637150;2399737;2243639;2343418;2266552;2411802;2486802;2432094;2424256;2456123;2453846;2453846 -5100;'002;Africa;1619;Wood chips and particles;5616;Import quantity;m3;;;;1994;1994;1994;1994;1994;1994;1994;1994;1994;1994;1994;1994;1994;1994;1994;1994;1994;1994;1994;1994;1994;1994;1994;1994;1994;1994;1994;1994;2054;6136;2012;5571;7819;5987;2886;1931;7069;7334;6938;1967;7042;6889;4146;5794;7273;5474;46565;48149.06;59228.2;24573;21646;25657.03;26581.03;39404.03;161186.03;139203;60477;52612.48;63935.47;151692 -5100;'002;Africa;1619;Wood chips and particles;5622;Import value;1000 USD;;;;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;89;232;148;1551;1644;403;691;422;650;661;596;331;1221;950;1038;1598;2542;2013.2;5281;5181.65;7997;3616.04;4550.04;3786.04;3602;3435;4309;14062;8743;8127.48;7732.11;6896.18 -5100;'002;Africa;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;527313;564790;1678440;491745;465267;465267;855207;1085014;1678170;2136512;2086012;2154412;2778712;2929580;3981645;3979089;5011727;6342898;6191175;7153715;5902718;5139612;4931755;3625979.46;3777487.88;4019226.06;2981465.34;2135472;2233395.08;2500978;2624280;2514821;2558171;1785834;1399845;2044365.53;2382044;1777418 -5100;'002;Africa;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;41511;44113;89680;41954;42748;42748;73443;100478;124136;108964;157301;172260;139654;136370;151197;172030;185811;241534;265306;333088;296852;272802;335201;215197;264338;283112.08;204603.19;187429;200763.04;221936;210901;235951;234095;185909;131002;189761.82;224108;175696 -5100;'002;Africa;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;10000;30000;53000;50000;65500;73500;1653500;1773500;1773500;1783500;446500;449100;453100;453100;453800;588030;591345;625300;627400;624700;787544;515073;545718;546635;576552;659943;1119205;1099024;1233577;1353899;1489899;1489899;1616381;1616381;1616381;1616381 -5100;'002;Africa;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10423;10365;7363;7178;3404;3236;3090;2636;2735;2972;2957;2843;11709;11693;7867;7919;11905;12275;21047;14684;12283;9022;10108;10341;10109;8413;9714;39172;24516;15473.44;2981;5904 -5100;'002;Africa;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;463;395;336;351;223;315;233;174;195;181;191;249;530;530;548;636;1957;1759;2178;3255;2391;2022.3;2874.3;2148.3;1835;1255;1647;1759;1356;862;590;676 -5100;'002;Africa;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9451;5345;5667;10796;4122;4078;662;700;1023;1173;5827;28037;14852;18170;9411;2212;59676;56537;63310;150412;45348;21277;27332;13107;16450;18093;8479;40503;42730;32225.42;32155;31199 -5100;'002;Africa;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;334;184;192;509;295;289;35;56;74;71;810;5984;2336;2716;796;537;2905;9037;8265;14058;7412;4155;5087;3001;3037;3513;1964;1366;2039;1874;2616;2623 -5100;'002;Africa;1605;Sawdust (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;90 -5100;'002;Africa;1605;Sawdust (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;53 -5100;'002;Africa;1605;Sawdust (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -5100;'002;Africa;1605;Sawdust (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -5100;'002;Africa;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;670;440 -5100;'002;Africa;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;121 -5100;'002;Africa;1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -5100;'002;Africa;1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -5100;'002;Africa;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100000;45000;46000;43000;51000;89000;102000;111000;111000;111000;113260;113200 -5100;'002;Africa;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37220;29436.7;19470;22801;20532;26271;19767;11585;15077;20826.19;23928.2;20928.71 -5100;'002;Africa;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;787;800.3;917;707;1080;2114;1730;3243;3119;3299.79;4047.12;4060.49 -5100;'002;Africa;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88516;29511;31450;31842;29490;38753;39118;36469;22248;21436.45;38206.04;41330.82 -5100;'002;Africa;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12188;5537;6211;4676;4357;6265;6688;8386;12547;5872.81;9743.4;11026.33 -5100;'002;Africa;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90000;35000;36000;33000;36000;62000;68000;68000;68000;68000;68000;68000 -5100;'002;Africa;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37207;28236;19152;21685;17749;19696;15252;3901;2341;2002;2374.87;2495.6 -5100;'002;Africa;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;773;634;767;586;518;1043;834;991;1004;426;513.95;319.76 -5100;'002;Africa;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82682;23677;26745;23656;22108;28743;28726;16670;6967;4139.52;8089;14932 -5100;'002;Africa;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11339;4688;5392;3618;3281;4348;4331;3076;1431;599;1708;3203 -5100;'002;Africa;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;10000;10000;10000;15000;27000;34000;43000;43000;43000;45260;45200 -5100;'002;Africa;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;1200.7;318;1116;2783;6575;4515;7684;12736;18824.19;21553.33;18433.11 -5100;'002;Africa;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;166.3;150;121;562;1071;896;2252;2115;2873.79;3533.17;3740.73 -5100;'002;Africa;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5834;5834;4705;8186;7382;10010;10392;19799;15281;17296.93;30117.04;26398.82 -5100;'002;Africa;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;849;849;819;1058;1076;1917;2357;5310;11116;5273.81;8035.39;7823.33 -5100;'002;Africa;1872;Sawnwood;5516;Production;m3;2921600;2697600;2837800;3048000;3395700;4458600;4092600;4467300;4293700;4579201;4891700;4772600;5264201;5651401;5910400;5809501;6125401;6854701;6937101;7538901;7963300;7539700;7316500;7355500;8187950;8002100;8613450;8678200;8516050;8259200;7958930;8109790;7857630;8489920;8243100;7867100;7504600;7422800;7414800;7886900;7564400;7438500;8081650;8152550;7953068;8037874;8160375;8521682;8435363;8652531;9014104;9156759;9662579;10290474;10487528;10655158;11124292;11445611;12248148;12001149;11821404;12437120;12378256 -5100;'002;Africa;1872;Sawnwood;5616;Import quantity;m3;1597350;1444450;1564350;1859650;1760950;1740700;1747950;1333850;1640400;2177250;2129400;2173150;2169050;2710060;2392501;2016250;2990450;2345000;2251200;3171500;3577400;3833700;4376750;4494050;4527358;3825450;3126947;3455613;3634447;3473811;3946733;3676984;3100828;4524875;5156879;4329016;5018554;4590994;5058745;4550701;5022251;4159760;5527447;5858462;6757737;7590703;7826410;10452720;9250340;10160532;8854736;9275653;9688184;11863741;10541981;9112496;8694665;9053080;7717787;8203400;7822112;7085798;7366764 -5100;'002;Africa;1872;Sawnwood;5622;Import value;1000 USD;78191;68458;72585;94964;93435;91085;89734;77910;89239;127524;130906;132282;209823;388062;346083;291338;496455;424356;405944;526062;807613;726736;782225;763852;816540;766414;762437;907442;1458836;1541979;1327870;876123;775860;911069;1194417;1031612;1107646;959216;889536;823131;883284;759865;1021878;1076384;1316599;1485365;2017480.3;2199947;2113441;2516913;2264459;2567669;2495057;3061301;2362446;1941535;1952791;2249707;1886662;1601709;2114234;1811248;1664094 -5100;'002;Africa;1872;Sawnwood;5916;Export quantity;m3;669850;702950;687800;831400;859250;894050;873850;929400;940000;976500;909800;959200;1174100;1044800;884400;978700;987550;1025500;1050300;896500;717400;719800;726500;790100;890300;888771;922120;1043886;1015105;1346259;1272659;1369344;1314101;1476259;1417413;1428073;1545508;1543210;1733277;2077186;1763540;1633530;1565929;1855839;1918867;1885970;2031260;2344665;1638873;1993405;2268936;2209389;2067702;2277919;2201873;2418855;2837161;3176226;3649650;3637706;3743380;4504055;4179519 -5100;'002;Africa;1872;Sawnwood;5922;Export value;1000 USD;39320;40020;39752;49362;51604;51983;50091;54017;60660;63850;55617;64183;113727;121464;102790;126888;137566;157233;171913;206711;144469;125720;127973;126412;145306;174812;231981;260854;250462;430367;315749;504378;531797;607376;562456;631435;569949;555930;597791;702070;580130;632603;694571;853387;971531;969327;1048069;1266317;819336;987974;1276489;1274304;1302561;1463783;1453485;1365578;1475279;1667629;1516253;1399267;1541649;1773338;1823826 -5100;'002;Africa;1632;Sawnwood, coniferous;5516;Production;m3;985100;865550;970100;1094350;1233900;1531100;1502450;1568100;1430700;1574150;1727300;1807450;1912601;2100701;2163400;2124100;2067900;2008700;2023000;2036900;2209800;1956300;1932650;1999900;1889500;2117650;2152650;2298575;2330375;2451900;2381100;2388600;2286500;2603200;2686700;2625200;2524200;2442900;2462900;2410900;2311900;2283600;2968500;3005800;2854100;2834500;2668945;2760670;2644971;2392333;2320258;2273238;2543145;2854317;2957478;3098880;3169887;3161251;3380091;3471668;3516975;3468646;3395492 -5100;'002;Africa;1632;Sawnwood, coniferous;5616;Import quantity;m3;1230200;1073250;1138050;1374400;1318900;1359650;1323800;865400;1145150;1629600;1625550;1697550;1581500;1977060;1736701;1477650;2469750;1636900;1785900;2559800;2929150;3242850;3664550;3821350;3925408;3393089;2709488;2881222;3071942;2936007;3480379;2867686;2646696;3396213;4170985;3247147;4008591;3765509;3965443;3615138;3800994;3153102;4430739;4652696;5251737;6325221;6324868;8669853;7977635;8383985;7349974;7908244;8408017;10340800;9379326;8001559;7555687;8036571;6247265;6845295;6099857;5610506;5891176 -5100;'002;Africa;1632;Sawnwood, coniferous;5622;Import value;1000 USD;60699;51490;52634;67565;67131;69500;66307;51365;59762;92973;100676;102132;153515;286517;265761;215206;405302;288191;317310;380373;657262;591096;630727;624170;681616;672933;661295;751183;1206465;1095382;893903;596361;642687;603721;853026;714826;800816;687465;623245;562739;548090;514230;714486;718646;903244;1122168;1526525;1693217;1649209;1970332;1774087;2081415;1968125;2484602;1879083;1532349;1551057;1840267;1447947;1220282;1665982;1414431;1256439 -5100;'002;Africa;1632;Sawnwood, coniferous;5916;Export quantity;m3;38500;39200;40850;41850;44500;48650;86200;92450;97300;115650;120800;99300;131400;134100;117300;127000;168550;181400;227900;181300;148000;127050;110900;106600;106600;113990;98219;181670;176849;220148;234348;267900;169103;109508;128121;189339;212650;228282;222094;242946;101179;101418;196913;188248;83220;91335;150831;171837;208481;137601;109749;225625;191995;229831;254076;292403;382468;425211;554372;654123;726560;640242;521696 -5100;'002;Africa;1632;Sawnwood, coniferous;5922;Export value;1000 USD;1671;1707;1778;1942;1980;2071;3577;3705;4021;5061;5540;4151;7823;8156;7737;9111;12309;14964;23713;24215;19570;16105;13271;12395;12159;16743;17307;31598;34186;42424;41735;42712;26532;20654;24595;39543;43741;41292;39903;63564;16352;13992;27503;31992;15460;17825;29152;36671;36862;39132;31319;57359;48522;63434;78741;67484;102293;113074;98751;125133;202528;182749;165713 -5100;'002;Africa;1633;Sawnwood, non-coniferous;5516;Production;m3;1936500;1832050;1867700;1953650;2161800;2927500;2590150;2899200;2863000;3005051;3164400;2965150;3351600;3550700;3747000;3685401;4057501;4846001;4914101;5502001;5753500;5583400;5383850;5355600;6298450;5884450;6460800;6379625;6185675;5807300;5577830;5721190;5571130;5886720;5556400;5241900;4980400;4979900;4951900;5476000;5252500;5154900;5113150;5146750;5098968;5203374;5491430;5761012;5790392;6260198;6693846;6883521;7119434;7436157;7530050;7556278;7954405;8284360;8868057;8529481;8304429;8968474;8982764 -5100;'002;Africa;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;367150;371200;426300;485250;442050;381050;424150;468450;495250;547650;503850;475600;587550;733000;655800;538600;520700;708100;465300;611700;648250;590850;712200;672700;601950;432361;417459;574391;562505;537804;466354;809298;454132;1128662;985894;1081869;1009963;825485;1093302;935563;1221257;1006658;1096708;1205766;1506000;1265482;1501542;1782867;1272705;1776547;1504762;1367409;1280167;1522941;1162655;1110937;1138978;1016509;1470522;1358105;1722255;1475292;1475588 -5100;'002;Africa;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;17492;16968;19951;27399;26304;21585;23427;26545;29477;34551;30230;30150;56308;101545;80322;76132;91153;136165;88634;145689;150351;135640;151498;139682;134924;93481;101142;156259;252371;446597;433967;279762;133173;307348;341391;316786;306830;271751;266291;260392;335194;245635;307392;357738;413355;363197;490955.3;506730;464232;546581;490372;486254;526932;576699;483363;409186;401734;409440;438715;381427;448252;396817;407655 -5100;'002;Africa;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;631350;663750;646950;789550;814750;845400;787650;836950;842700;860850;789000;859900;1042700;910700;767100;851700;819000;844100;822400;715200;569400;592750;615600;683500;783700;774781;823901;862216;838256;1126111;1038311;1101444;1144998;1366751;1289292;1238734;1332858;1314928;1511183;1834240;1662361;1532112;1369016;1667591;1835647;1794635;1880429;2172828;1430392;1855804;2159187;1983764;1875707;2048088;1947797;2126452;2454693;2751015;3095278;2983583;3016820;3863813;3657823 -5100;'002;Africa;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;37649;38313;37974;47420;49624;49912;46514;50312;56639;58789;50077;60032;105904;113308;95053;117777;125257;142269;148200;182496;124899;109615;114702;114017;133147;158069;214674;229256;216276;387943;274014;461666;505265;586722;537861;591892;526208;514638;557888;638506;563778;618611;667068;821395;956071;951502;1018917;1229646;782474;948842;1245170;1216945;1254039;1400349;1374744;1298094;1372986;1554555;1417502;1274134;1339121;1590589;1658113 -5100;'002;Africa;1634;Veneer sheets;5516;Production;m3;75700;79600;109500;126400;151800;177600;196100;206300;211500;232900;261000;302800;344300;341100;247800;292200;358900;392500;439900;512300;484500;465350;497100;461900;512300;529300;527900;537600;558800;562300;435700;390000;407650;495800;468700;487900;572600;692600;766600;855600;946600;912700;840400;884000;954431;949913;1095622;1111250;1024111;1193006;1198102;1057530;1049635;1020099;1088993;1172781;1120389;1251920;1501288;1260175;1474238;1476847;1635621 -5100;'002;Africa;1634;Veneer sheets;5616;Import quantity;m3;21600;17500;22200;31400;50450;34400;31200;33500;46000;37300;31300;37100;68100;68800;41600;40700;33900;41600;39000;41200;34500;35400;36600;42500;42400;32790;31628;39723;29137;21559;8809;47664;34672;50047;70365;62348;51278;56585;56289;66705;70524;77058;90727;97766;102242;75012;91507;82565;65520;103331;137797;111025;200705;170083;100531;110559;92317;80681;80113;71680;98200;131522;85729 -5100;'002;Africa;1634;Veneer sheets;5622;Import value;1000 USD;4076;3327;4117;5052;5751;4385;3914;4387;6863;6227;5048;9106;13863;17601;11832;16594;11628;21033;24112;29825;31020;29624;29719;35439;35388;35672;32494;37403;45233;60164;8888;43922;36537;37412;51090;47262;42540;40611;45494;40037;45232;53965;73734;78844;89855;66120;101215;113457;79408;111388;149417;111374;149830;135606;107654;108721;102015;96537;92758;83427;109960;167241;126872 -5100;'002;Africa;1634;Veneer sheets;5916;Export quantity;m3;57300;56700;57900;106500;113800;122200;117000;147600;172900;167200;180000;198000;182000;179600;111000;142600;156200;179100;186500;203400;201600;182400;181100;187200;191300;185037;188346;213863;164270;249807;180907;164600;200762;237675;231147;285020;331054;402591;496575;436631;381031;450675;367092;484501;539713;361212;408022;333917;195631;221134;293896.4;289552;251772;251364;268699;325926;298039;337673;509665;450308;615842;764685;831717 -5100;'002;Africa;1634;Veneer sheets;5922;Export value;1000 USD;4441;5390;5450;7707;8760;9670;9850;11073;13329;16990;17750;25354;35546;35079;21542;30099;37765;44574;54171;81911;65913;56565;52854;47585;47849;62330;83916;144210;99578;161765;118566;144674;105362;146468;161825;147781;136119;180949;247201;187045;213255;243058;270919;357312;412064;326973;433282;411794;246657;296304;313764.9;265810.25;263858;255970;243062;259636;257029;301949;387202;339103;397307;491125;476042 -5100;'002;Africa;1873;Wood-based panels;5516;Production;m3;207000;252700;310700;338700;369200;371416;404563;419863;527093;605605;748384;895478;856651;816868;794305;828674;842174;859874;942274;1008765;1009112;1110597;1147723;1178773;1240473;1156688;1178403;1199823;1129923;1043300;1021700;1088500;863860;1183160;1286260;1275560;1421860;1384660;1388160;1334868;1791850;1897604;1835962;1848378;1532552;1712293;1813392;2025172;1621666;1592960;1712046;1996772;1950284;2246413;2396613;2798409;2821212;2848407;2940244;3025721;3241062;3641367;3674660 -5100;'002;Africa;1873;Wood-based panels;5616;Import quantity;m3;84482;76300;76018;94900;126700;136641;119536;144701;157758;174163;219257;186474;211221;322333;281748;285765;409135;347605;390205;495105;542405;458405;550605;448305;503598;389112;323471;436993;342180;296795;349955;430913;343169;561767;552206;576074;635370;708136;910902;581313;709814;775650;1362233;1281238;1442248;1619209;1537450;1602508;1748100;2201799;2181787;2200168.55;2665019;2667561;2420935;2862722;2837016;2890395;4131239;3921910;4607690.67;3699705.77;3987300 -5100;'002;Africa;1873;Wood-based panels;5622;Import value;1000 USD;12239;10401;10913;14547;17807;19654;16664;16076;19598;26993;32610;29238;38184;78673;72346;78582;141092;136100;136371;201329;235477;188810;224484;174917;197810;170652;119795;168399;236921;340273;155313;160786;169409;210735;182845;190986;209279;204863;200864;171661;199390;185360;299064;329271;392143;459477;570851;759211;790541;866379;1009718;1132627;1177602;1361637;1207190;1223787;1163287;1359011;1442436;1372165;1782019.08;1771990.05;1781450 -5100;'002;Africa;1873;Wood-based panels;5916;Export quantity;m3;135448;163248;173406;158181;152248;165353;167353;183353;204253;207205;210905;245066;246805;177821;160026;153600;152650;119550;92700;128600;120100;110900;123330;121730;125566;271183;323902;328418;222108;190636;180136;129396;123695;141506;139441;146082;193248;195262;234265;280268;284199;296462;281009;425566;451100;384861;381085;360567;252964;323333.4;345453.2;356305.14;308494.14;396239.66;425226.14;488663;554816;587218;643300;636962;751542.98;821740.77;928402.07 -5100;'002;Africa;1873;Wood-based panels;5922;Export value;1000 USD;14698;17006;17541;18698;18623;18854;20700;23240;23117;23760;21457;24523;42280;39672;35240;35307;45019;40830;29351;52525;45665;45569;52161;50553;40169;88206;109034;106271;85375;76322;68956;59849;63286;67553;72698;76514;74103;76592;90922;94095;91691;118825;121000;156362;167484;167783;182533;220625;136768;194407;220160;276003.4;199174.4;199903.22;182253;199654;224931;262185;225749;221358;295157.62;357453.45;346838.88 -5100;'002;Africa;1640;Plywood and LVL;5516;Production;m3;124600;162100;201100;193900;242700;210400;225300;236400;282400;304200;352200;400000;400500;407800;375300;402700;404300;438400;452600;509991;470338;521623;528623;551773;622473;583248;592473;611823;528023;491100;500900;458600;419460;393160;430160;418960;537760;710460;696260;644768;680250;714104;679362;634678;736452;754493;856446;880403;805018;847133;953197;899928;843277;898578;953810;1027665;1005041;1007196;1098633;1185110;1292289;1492814;1502492 -5100;'002;Africa;1640;Plywood and LVL;5616;Import quantity;m3;56482;52600;49618;63100;86200;93800;76400;66500;74400;97700;118800;115700;140600;220500;165100;176500;255300;217100;215800;265500;344700;337900;464100;409000;448443;331817;273907;371999;314989;267823;320883;271381;243133;453783;364179;365246;390576;458654;404029;287329;348337;329628;712702;468755;564833;617006;653491;846541;901601;1156075;1231807;1262284;1397379;1282485;1184093;1510022;1349545;1340541;1566333;1523118;1992868;1491955;1502418 -5100;'002;Africa;1640;Plywood and LVL;5622;Import value;1000 USD;9288;7697;7912;10633;13661;15113;12418;11315;13836;18529;20672;19436;26383;56840;45381;48527;86393;83282;76997;107982;147928;131478;184354;162717;183036;155951;106704;149109;225827;330652;145929;119177;142078;180083;134285;143314;159653;150448;139219;114709;128226;111199;185203;169634;218064;250240;321631;486922;481457;495389;590175;694877;644206;732547;602459;635845;538194;686268;636688;588373;778345;658721;670695 -5100;'002;Africa;1640;Plywood and LVL;5916;Export quantity;m3;84248;101248;103306;104581;108248;107648;99648;114048;127048;128300;99600;119800;132500;112500;97900;92100;106000;91600;64700;94100;96000;92400;107000;105800;106800;152097;169089;182919;144916;117717;107217;64070;75274;73570;81908;112898;168662;164879;184257;233986;197110;207503;201214;298269;316931;284413;316187;296061;147301;221620;193696.2;204464;166649;179584.51;205553;228277;265979;273851;318667;362863;444827;503090;476389 -5100;'002;Africa;1640;Plywood and LVL;5922;Export value;1000 USD;11195;13198;13279;14277;14673;14525;15908;17068;16674;18697;14959;17145;33483;32998;29214;28276;39643;37431;25164;48652;42626;40955;48150;47288;36078;65814;77687;74365;70293;61976;54610;43691;47759;48321;56482;66416;68651;69611;82108;86481;78577;103394;105525;126892;121428;135424;161225;187003;102139;145826;147579;205618;137196;114627.22;108932;116824;130180;134570;131316;141855;182528;243543;221013 -5100;'002;Africa;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1516;1723 -5100;'002;Africa;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;715;1092 -5100;'002;Africa;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;354;230 -5100;'002;Africa;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;130;173 -5100;'002;Africa;1646;Particle board and OSB (1961-1994);5516;Production;m3;14400;20600;29600;50800;49500;53200;68500;72700;119400;167900;233300;300900;291900;242500;246700;252300;329900;335300;403000;398800;438700;469900;500200;505000;495500;454140;460930;454500;467400;459400;429600;533200;347200;717300;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5100;'002;Africa;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;10700;8300;9200;9700;19600;13100;15300;12000;13800;17800;33000;26300;23700;33800;44100;38300;49500;30100;78200;96700;64900;25100;18000;12600;14050;19676;27061;42388;14848;18559;18759;52443;42752;40501;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5100;'002;Africa;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;892;682;816;857;1448;1315;1398;1376;2015;2559;4231;4090;3517;6373;8081;6774;9083;7356;13272;18497;17426;8333;6190;5200;5474;6883;8924;15171;8010;6841;6678;15221;11927;10490;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5100;'002;Africa;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;12200;15900;7200;2500;1700;1200;2100;2300;5100;8400;5800;7100;6200;7600;4300;6400;4700;3500;10200;2500;2300;1600;2300;4600;4536;74200;114995;113170;62347;57198;57198;45381;24039;40524;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5100;'002;Africa;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;1022;1149;606;299;151;120;182;456;308;501;507;796;691;1543;937;1718;1240;951;2467;736;625;407;502;633;645;10527;20464;22205;10941;9763;9763;8905;6737;10216;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5100;'002;Africa;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;778400;778400;787900;448000;461700;459700;879600;954200;954200;954200;585800;749900;755705;946754;639233;583085;591107;809102;735107;860935;901526;1224362;1246671;1261711;1262011;1261011;1246598;1244321;1235805 -5100;'002;Africa;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82057;91092;69392;82743;111159;82800;76133;90296;165024;214148;233301;269789;225993;223893;280765;257250;257449;180477;254949;387481;339452;356929;389912;387468;746521;643183;799669.95;839025;945263 -5100;'002;Africa;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23244;24299;18491;18042;18673;17289;20435;19360;35249;47268;46888;62976;77721;80313;106204;103009;97798;74929;99415;139707;113447;114840;125109;131957;184602;157273;239353.43;370439;372814 -5100;'002;Africa;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49253;26404;18005;24489;15809;16631;16319;23953;23377;54490;46366;50131;27751;31885;71778;50656;74326;75878;73930;142878;152971;169667;184430;175158;215050;171668;192450.61;175077.3;294278.3 -5100;'002;Africa;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14918;9502;4924;6286;4001;3838;3319;4357;4019;10085;9681;12174;8661;15681;19272;24538;28475;27863.4;23940;41692;40100;43128;53642;66018;50626;40508;61111.28;57135.52;65741.52 -5100;'002;Africa;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -5100;'002;Africa;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2391;94;94;143;646;2970;4045;10287;14346;15435;4879;6513;7853;4892;6836;8516;10010;11393;13282;11143;12649;13253;20773.24;13943;20565 -5100;'002;Africa;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;17;17;72;238;502;737;2894;4218;6824;2273;3356;3829;2595;3237;5013;5578;4466;5285;5101;5255;4603;9284.78;6763;7431 -5100;'002;Africa;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;14;457;479;397;242;238;235;492;1063;1302;887;170;1331;1651;1309;1407;1343 -5100;'002;Africa;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;14;260;138;276;212;158;172;276;465;664;571;141;570;618;655;511;468 -5100;'002;Africa;1874;Fibreboard;5516;Production;m3;68000;70000;80000;94000;77000;107816;110763;110763;125293;133505;162884;194578;164251;166568;172305;173674;107974;86174;86674;99974;100074;119074;118900;122000;122500;119300;125000;133500;134500;92800;91200;96700;97200;72700;77700;78200;96200;226200;230200;230400;232000;229300;202400;259500;210300;207900;201241;198015;177415;162742;167742;287742;371900;486900;541277;546382;569500;579500;579600;579600;702175;904232;936363 -5100;'002;Africa;1874;Fibreboard;5616;Import quantity;m3;17300;15400;17200;22100;20900;29741;27836;66201;69558;58663;67457;44474;46921;68033;72548;70965;104335;100405;96205;132905;132805;95405;68505;26705;41105;37619;22503;22606;12343;10413;10313;107089;57284;67483;105970;119736;175402;166739;393323;211090;285250;355583;483861;595365;640069;722127;643620;516639;560855;781961;684678;752515.55;1005855;989079;887380;984378;1084277;1151243;1805736;1742356;1794379.48;1354782.77;1519054 -5100;'002;Africa;1874;Fibreboard;5622;Import value;1000 USD;2059;2022;2185;3057;2698;3226;2848;3385;3747;5905;7707;5712;8284;15460;18884;23281;45616;45462;46102;74850;70123;48999;33940;7000;9300;7818;4167;4119;3084;2780;2706;26388;15404;20162;25316;23373;31135;36373;42948;39646;50712;54729;78374;111867;126454;143367;167281;185152;200607;264625;317916;360226;430744;484370;485706;468636;494699;535685;615891;621916;755035.87;736067.05;730510 -5100;'002;Africa;1874;Fibreboard;5916;Export quantity;m3;39000;46100;62900;51100;42300;56505;65605;67005;72105;70505;105505;118166;108105;57721;57826;55100;41950;24450;17800;32000;21800;16900;14030;11330;14230;44886;39818;32329;14845;15721;15721;19945;24382;27412;8280;6780;6581;5894;34199;29651;70770;65006;56418;72807;87803;50316;37133;32164;33406;50660.4;77189;75725.14;67680.14;73285.14;65639.14;89417;103520;138039;108252;100780;112956.37;142166.47;156391.78 -5100;'002;Africa;1874;Fibreboard;5922;Export value;1000 USD;2481;2659;3656;4122;3799;4209;4610;5716;6135;4562;5991;6582;8106;5131;5089;5313;4136;2448;1720;3137;2414;4207;3509;2632;3446;11865;10883;9701;4141;4583;4583;7253;8790;9016;1298;596;528;695;4813;3776;9795;11074;11456;19385;36375;20182;12633;17681;15219;23767;43894;42364;37866.4;43308;32756;39038;40538;61456;43237;38377;50863.33;56263.93;59616.36 -5100;'002;Africa;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60200;60200;78200;178200;182200;182400;184000;181300;154400;151500;116900;115000;108341;105115;84415;69742;69742;69742;100900;143900;153150;145382;142500;142500;142200;142200;264775;302593;310215 -5100;'002;Africa;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40446;36600;42800;65331;173393;113980;110904;111015;166606;150214;159379;200396;178847;112851;97427;105690;126657;150533.25;153445;162585;148221;139487;130653;134740;216713;218489;192723.06;124433;144806 -5100;'002;Africa;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13078;11098;14135;17827;19861;26037;29341;27496;41621;53118;59534;69230;72328;54023;52364;64628;75855;84852;88839;94235;84126;71682;69103;77118;109111;90298;107221.54;81928;89888 -5100;'002;Africa;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30;30;23;23284;18684;48585;46591;40789;33919;52202;36340;17829;15723;16030;23586;29918;31303.14;30703.14;19446.14;15485.14;14602;14378;39189;13866;14713;14402.69;11197.78;17517.78 -5100;'002;Africa;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;52;52;13;3585;2517;7279;9434;9167;12015;28186;17654;8520;9190;9316;13631;22819;23076;20463;16509;12983;10002;8995;21761;7032;5928;6551.72;7607.36;7438.36 -5100;'002;Africa;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;60000;60000;60000;60000;60000;93000;93000;98000;218000;271000;343000;388127;401000;427000;437000;437400;437400;437400;601639;626148 -5100;'002;Africa;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15715;13166;28769;50564;150298;40580;68194;121294;170031;318277;309146;329953;331552;309303;375181;620577;464031;542767.3;735428;737278;691089;768818;876220;959538;1508940;1422384;1515538.97;1147138;1309973 -5100;'002;Africa;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5407;4018;8878;12091;16623;6142;7606;12499;19943;42223;42046;47551;70166;101933;122013;173228;204499;242233;292075;340660;375120;361818;405129;437709;483167;507552;622868.89;626336;619726 -5100;'002;Africa;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;3;5;23;3;563;1914;1914;1620;13956;10335;15609;24572.4;45781;39461;33157;50381;42801;61965;80396;88135;81893;78059;92599.86;107247;131959 -5100;'002;Africa;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;5;10;13;5;705;481;481;439;3035;4928;5200;9258;20208;16301;15129.4;24915;17427;24101;29337;37312;34112;30851;42572.67;45421;50509 -5100;'002;Africa;1650;Other fibreboard;5516;Production;m3;13000;14000;8000;10000;8000;32000;36000;36000;40000;44000;44000;48000;48000;48000;48000;48000;31000;33000;33000;33000;33000;33000;31000;31000;31000;29000;29500;28100;28800;9100;8500;11500;14000;11500;17500;18000;18000;48000;48000;48000;48000;48000;48000;48000;33400;32900;32900;32900;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -5100;'002;Africa;1650;Other fibreboard;5616;Import quantity;m3;;;;2100;1300;3200;6800;35600;37600;10000;7200;2400;1600;1600;11200;11400;5000;4500;3200;3200;14800;7500;8600;8800;11000;14500;12500;13400;3280;3200;3200;61438;13552;20858;49809;69970;103833;50844;69632;56530;106152;123274;147224;126874;171544;191778;133221;94485;88247;55694;93990;59215;116982;89216;48070;76073;77404;56965;80083;101483;86117.45;83211.77;64275 -5100;'002;Africa;1650;Other fibreboard;5622;Import value;1000 USD;;;;527;361;335;378;340;381;258;200;104;106;92;152;194;156;73;291;73;1891;913;851;814;795;857;696;969;302;291;291;11759;2902;6507;6831;8257;8122;6455;6464;7467;13765;14734;16810;16526;24874;26586;24787;29196;26230;26769;37562;33141;49830;49475;26460;35136;20467;20858;23613;24066;24945.44;27803.06;20896 -5100;'002;Africa;1650;Other fibreboard;5916;Export quantity;m3;;;;2500;2400;10400;23600;23200;16000;14800;18800;3600;400;400;400;800;700;3000;1700;3600;2100;1900;600;1800;1800;3279;6544;4049;1104;855;855;4316;5354;4259;8250;6750;6551;5866;10912;10962;22162;18412;15066;36974;33687;12356;5348;6106;1767;2502;1490;4961;3820;3458;7353;12850;8746;10715;12493;8008;5953.83;23721.69;6915 -5100;'002;Africa;1650;Other fibreboard;5922;Export value;1000 USD;;;;369;496;529;802;742;682;658;843;221;33;33;33;69;61;275;162;347;199;191;59;179;179;314;724;720;245;259;259;1388;1266;871;1246;544;476;676;1223;1249;2503;1635;1584;6889;7708;2089;1078;3563;703;878;867;2987;2274;1884;2346;4935;2206;2383;2093;1598;1738.94;3235.57;1669 -5100;'002;Africa;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;55000;56000;72000;84000;69000;75816;74763;74763;85293;89505;118884;146578;116251;118568;124305;125674;76974;53174;53674;66974;67074;86074;87900;91000;91500;90300;95500;105400;105700;83700;82700;85200;83200;61200;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5100;'002;Africa;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;17300;15400;17200;20000;19600;26541;21036;30601;31958;48663;60257;42074;45321;66433;61348;59565;99335;95905;93005;129705;118005;87905;59905;17905;30105;23119;10003;9206;9063;7213;7113;45651;43732;46625;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5100;'002;Africa;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;2059;2022;2185;2530;2337;2891;2470;3045;3366;5647;7507;5608;8178;15368;18732;23087;45460;45389;45811;74777;68232;48086;33089;6186;8505;6961;3471;3150;2782;2489;2415;14629;12502;13655;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5100;'002;Africa;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;39000;46100;62900;48600;39900;46105;42005;43805;56105;55705;86705;114566;107705;57321;57426;54300;41250;21450;16100;28400;19700;15000;13430;9530;12430;41607;33274;28280;13741;14866;14866;15629;19028;23153;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5100;'002;Africa;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;2481;2659;3656;3753;3303;3680;3808;4974;5453;3904;5148;6361;8073;5098;5056;5244;4075;2173;1558;2790;2215;4016;3450;2453;3267;11551;10159;8981;3896;4324;4324;5865;7524;8145;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5100;'002;Africa;1879;Total fibre furnish;5510;Production;t;270600;363000;521700;616400;652100;670200;716700;736400;718100;1040300;1075400;1177800;1306800;1336000;1249073;1317400;1404300;1464300;1621400;1698300;1814300;2011300;1946000;1859600;1989800;2035800;2102800;2251800;2973800;2815770;2845800;2939040;2952300;2605700;3023500;3079700;3354100;3245500;3172000;3697900;3754700;3903300;3952500;3923400;3908000;3996500;4175200;4330764;3780800;3864281;3820047;3976115;4023565;3712587;3761059;3934341;3847489;3817313;3646542;3421780;3445694;3592575;3521090 -5100;'002;Africa;1879;Total fibre furnish;5610;Import quantity;t;11600;7300;8000;7500;4400;17800;10000;112600;147700;172500;148700;152300;205500;219431;224531;318385;288230;280918;268544;381371;387818;311418;530200;425000;310345;271994;288785;348577;400210;380762;342762;378182;300490;308318;357434;404926;334012;392535;309392;381407;336045;376711;431802;505432;472286;357963;427598;466356;375931.5;391553;404551.03;498136;801157.3;818794.3;874272;998899;971330;846178;1022062;868747;944766.48;1193039.13;1117789.13 -5100;'002;Africa;1879;Total fibre furnish;5622;Import value;1000 USD;966;623;1319;320;270;2097;1243;14521;19772;26614;23189;22860;39100;80900;86241;101501;83847;89904;101573;152124;171924;127508;161632;174161;121570;109061;124013;162821;191079;201995;156677;173143;102373;132954;216647;174549;135982;136397;118317;164491;146816;163618;194351;215145;179677;154788;239653;397795;274475.6;285698;293976;292049.16;502946;513731.25;511199;498094;529248;670590;661582;543696;749097.51;1068492.81;928786.81 -5100;'002;Africa;1879;Total fibre furnish;5910;Export quantity;t;;;;8900;11600;19700;19700;246400;270600;265400;298700;320000;351100;351339;275059;379062;358000;441600;477100;419800;291200;312200;320900;355100;345500;363608;388773;422237;415586;410596;396996;472642;538527;662094;600335;759979;549565;577261;645178;641075;499226;565163;718846;544571;596339;581976;574939;539552;628917;532869;596824.5;514647;424190;433804;418582;509655;634619;522336;494899;479508;417987.28;630894.64;615920.64 -5100;'002;Africa;1879;Total fibre furnish;5922;Export value;1000 USD;;;;1501;2048;3430;3485;26132;27292;32184;40551;39587;51889;60415;49291;71944;63860;79818;106599;122895;97607;100695;102206;127812;119230;129903;157178;187311;187897;182068;165338;223199;207523;283348;402605;452903;216655;201068;234202;254848;180987;209594;263258;221626;226302;235510;285928;274802;253886.3;302987.4;301970.1;206357;136307;120819;140459;142497;210082;184223;136063;109331;105985.14;244918.97;145911.97 -5100;'002;Africa;1878;Pulp for paper;5510;Production;t;270600;363000;520700;615400;651100;669200;715700;735400;717100;742300;777400;842800;927800;951000;886073;897400;969300;1029300;1162400;1217300;1257300;1354300;1280000;1142600;1267800;1290800;1331800;1368800;2081800;2080800;2074900;2068200;2090300;1716800;2113700;2133900;2418400;2421100;2349900;2390200;2347000;2494600;2390800;2357700;2343300;2432800;2609500;2658064;2112100;2106100;2072100;2029100;2024369;1745890;1671288;1611804;1614799;1490400;1442476;1298316;1298316;1298316;1298316 -5100;'002;Africa;1878;Pulp for paper;5610;Import quantity;t;11600;7300;8000;7500;4400;17800;10000;112600;147700;150500;133700;135300;182500;193200;206100;297300;265300;264700;246800;349500;348600;262100;482600;392800;272000;225600;226804;264681;341200;317404;286204;313804;220601;242984;268156;320142;251347;284425;252134;308514;282578;300022;336833;371066;334231;246636;335610;366045;295198.5;317623;332214.03;384267;697309.3;672804.3;717740;781163;749494;678594;816845;725227;766418.73;889382.13;916375.13 -5100;'002;Africa;1878;Pulp for paper;5622;Import value;1000 USD;966;623;1319;320;270;2097;1243;14521;19772;25122;22410;21867;37210;72951;83386;98335;80503;87569;97951;145113;165137;117885;153215;169158;116208;101642;114478;143592;181361;185872;142091;161595;92565;122861;193539;158718;123452;123498;110093;151436;138018;148757;176366;198024;161436;130932;217689;371888;256049.6;266542;277071;270559.16;482827;483594.25;482290;459748;489876;641589;617242;515435;708041.35;986247.81;879603.81 -5100;'002;Africa;1878;Pulp for paper;5910;Export quantity;t;;;;8900;11600;19700;19700;246400;270600;265400;298700;320000;351100;351200;270400;376500;354200;437600;472100;413800;286700;309200;317600;353700;344100;354100;384300;408400;411300;404200;390600;461395;528865;651504;581179;753580;544581;553277;630942;621481;479205;545622;678076;487265;504579;507410;497294;452860;533005;370427;406182.5;277072;154163;194015;171820;185777;230889;183431;190547;201325;54588.19;184738.39;149991.39 -5100;'002;Africa;1878;Pulp for paper;5922;Export value;1000 USD;;;;1501;2048;3430;3485;26132;27292;32184;40551;39587;51889;60405;48940;71751;63436;79378;106064;121655;96673;100055;101495;127483;118901;128901;156329;184828;186824;180912;164182;220770;206021;281094;398857;451424;215752;198939;232811;253061;179335;207165;257709;215299;216461;228272;277827;261345;239278.1;277105;257614.1;169005;92355;84164;106456;97607;145858;129354;98383;80422;33611.14;157648.46;82566.46 -5100;'002;Africa;1875;Wood pulp;5510;Production;t;305600;418000;589900;682900;711700;725500;781500;814600;812900;841500;880700;944200;1027800;1153000;1183573;1112400;1188300;1277300;1358400;1407300;1452300;1537300;1451000;1355600;1626800;1647800;1688800;1717800;2244800;2255800;2289200;2380200;2425300;2038800;2404700;2424900;2779700;2750700;2669500;2793800;2562600;2712200;2719400;2621300;2616900;2778200;2950100;2971401;2555700;2654700;2647675;2617700;2629669;2529162;2510892;2412247;2440857;2329000;2410549;2184386;2184386;2184386;2184386 -5100;'002;Africa;1875;Wood pulp;5610;Import quantity;t;27100;25500;18000;21900;21700;29800;24300;126100;158800;157000;139100;141000;186400;195000;143300;208100;213200;218000;218800;313900;300100;227200;427900;329500;196900;179616;171224;213457;289671;267005;230305;255169;239155;240970;269770;317579;249594;286101;255150;297338;251864;268907;307060;333116;329883.7;243891.24;331957;361090;285992.3;311339;324720.3;384011.35;706578.38;692539.3;748818;794149;755697;679752;814879;722774;764685.55;892257.79;921109.79 -5100;'002;Africa;1875;Wood pulp;5622;Import value;1000 USD;3164;3204;2737;2346;2724;3799;3271;16436;21434;25739;23027;22533;37120;73525;54447;65054;62975;65232;87326;129027;141523;99763;131319;134295;80339;68536;73170;105099;142697;148176;108096;129001;101132;121807;198595;157163;122137;124116;112244;143359;114755;125252;153128;163728;158293.6;128270.76;215086;366184;248304;264110;270179.1;275495.16;472360.17;486949.25;495769;472807;496703;641041;614203;511769;704295.35;987755.72;883237.72 -5100;'002;Africa;1875;Wood pulp;5910;Export quantity;t;84100;106300;125000;110500;135900;154700;162300;413500;443600;450900;506400;543600;586400;696300;674300;691700;685700;757200;671900;636500;509900;532400;557000;551900;540000;569936;559191;698808;565074;575405;561705;654262;706597;779456;734629;1075505;866536;872083;1110790;1101229;867653;953970;1200201;1201739;1022644;1050175;1035327;955414;1155305;1088583;1095815.5;991751;885247;1101744;1072059;1036995;1142308;1131360;1144786;1062115;985807.41;1130287.12;1206853.12 -5100;'002;Africa;1875;Wood pulp;5922;Export value;1000 USD;13369;13648;15260;15244;16823;18387;19354;44412;48854;53598;64550;66201;87423;113888;112351;119289;114006;139325;173309;214230;201712;204959;214414;234306;224486;228346;250301;375993;310141;314332;297489;351215;326742;367159;488039;715140;479495;430014;463649;483981;394882;396446;530122;509422;538052;557244;665992;647787;607893.1;862664;1032975.1;768356;706338;794687;798056;824556;923332;883553;553401;762647;818732.7;1196862;1125535 -5100;'002;Africa;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400911;336000;407176;273416;273416;273416;273416 -5100;'002;Africa;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8995;11738;9430;5784;12846.89;14113;9932 -5100;'002;Africa;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6100;7065;5041;3501;10779.54;10595;7498 -5100;'002;Africa;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;23;109;1134;1818;3078;5893 -5100;'002;Africa;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;16;113;1121;1327;1890;3610 -5100;'002;Africa;1654;Mechanical wood pulp (1961-2016);5510;Production;t;91000;121700;132400;140700;155900;123000;123000;146800;145800;153900;162400;177700;186600;184500;181200;208800;200700;187700;170700;219700;271700;334700;297000;174800;279200;275900;284700;285700;396700;401100;399300;317300;319400;286900;398800;399000;398400;298400;298200;313400;303400;313400;310400;311400;311400;291400;275400;352164;237400;211400;293400;210400;262337;211319;223429;226507;;;;;;; -5100;'002;Africa;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;11600;7300;8000;7500;4400;5600;3200;5200;5900;8900;6000;8400;7500;11700;9200;7200;10500;7300;5500;6900;9000;9400;10000;8400;8300;8200;12204;31081;29600;28204;10804;20625;6883;6577;18420;7103;10797;10895;21302;34704;26404;19336;20763;21353;21051;19518;23186;4690;11358.1;12334;26849.03;46356;23488;15539;4904;6686;;;;;;; -5100;'002;Africa;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;966;623;1319;320;270;317;294;519;577;987;737;863;840;3162;3131;2215;3104;2241;1853;2744;3920;3715;3540;2947;2886;2860;5200;17014;19887;19987;5511;7980;3010;2807;13722;3536;5550;4908;7880;15231;12150;8358;10207;8963;8376;7729;11565;5495;19930;20430;26304;29240;22425;12167;2853;3175;;;;;;; -5100;'002;Africa;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3113;3352;1586;200;600;600;0;0;0;0;0;0;5;5;5;10;2144;1594;1595;1940;2911;2896;54;15;16;;;;;;; -5100;'002;Africa;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1208;1169;812;139;712;712;0;0;0;0;0;0;1;1;1;15;994;702.1;741;1203;1827;1856;24;8;9;;;;;;; -5100;'002;Africa;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;13000;7000;26100;52100;77500;107500;108373;76600;127600;116600;92600;93600;91600;113600;93000;130800;140400;154900;158100;163100;163100;165700;164900;123900;111900;144900;188900;188900;28300;31300;31300;31300;202300;186300;179300;168300;168300;170300;175300;175300;145300;131300;109300;194300;347825;166397;175933;171409;;;;;;; -5100;'002;Africa;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;800;2000;1600;1600;1600;1900;2900;4500;6600;1800;1800;1800;900;900;900;1800;1100;1100;1100;1100;0;0;0;0;4267;5260;4731;7399;4499;4299;5975;5475;4980;6113;8637;11855;12060;70218;33848;34027;33984;27415;8888;10661;12849;10506;6382;4615;7014;;;;;;; -5100;'002;Africa;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;107;270;220;220;220;850;1214;3054;2949;1668;1668;1668;549;549;549;1668;913;913;913;913;0;0;0;0;2058;2507;2197;4226;2063;1563;2690;2403;2250;3036;6869;8240;6408;39968;24888;22800;142873;84116;5913;6896;7492;5808;4309.25;2687;3649;;;;;;; -5100;'002;Africa;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1124;;0;0;0;0;0;0;0;0;0;1971;1788;1123;1551;1551;7354;3854;1791;6368.5;6174;6215;120;117;120;;;;;;; -5100;'002;Africa;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;448;;0;0;0;0;0;0;0;0;0;918;703;424;930;930;5272;2761;584;3860.1;3760;3801;45;40;42;;;;;;; -5100;'002;Africa;1656;Chemical wood pulp;5510;Production;t;129600;186300;330500;402200;411800;446500;487500;474800;441100;463600;453200;469400;505700;501000;475000;499000;512000;568000;675100;674000;669000;703000;692000;644000;626200;636000;665000;688000;1295000;1289000;1325000;1441000;1473000;1086000;1327000;1347000;1763000;1865000;1794000;1822100;1589900;1722500;1624700;1532600;1520200;1690700;1886400;1858200;1514000;1534000;1440000;1406000;1202819;1156786;1060538;1002500;1002500;973000;853900;843500;843500;843500;843500 -5100;'002;Africa;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;106600;139800;137300;122300;121900;167500;170900;129100;193800;200400;208800;211200;306000;289800;216500;415700;319600;186900;170300;157500;181600;259600;237200;217900;212754;201629;225191;232479;300803;231224;261628;222770;254851;217484;239371;271480;295932;236582;189984;274007;320981;246237.2;285585;284824;315751;640195.3;633456.3;705786;763714;736570;663333;801576;713194;747512.44;868925.65;901933.65 -5100;'002;Africa;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;13895;18925;22800;20338;19669;33520;65539;48152;59780;58093;61299;83684;125697;136789;95262;125910;130235;76293;64755;66885;87578;122474;126885;101281;110191;83760;114575;169988;147929;113173;112612;98768;124248;98358;108606;132719;146628;108255;95002;179774;216143;143031;228789;233341;224336.16;421865;441562;472728;448672;479443;629555;605961;505349;689597.99;966398.3;864140.3 -5100;'002;Africa;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;228200;249800;246900;279600;303100;335400;336600;255800;363700;338000;419100;457800;399500;273900;299400;305000;346500;334600;344600;374800;392600;404600;396600;382900;437899;500785;642913;573329;743105;534136;543083;619790;610229;470153;538170;659621;465776;483755;489073;474220;422747;516034;353581;378846;261969;141094;191160;168087;182320;228753;182893;189849;199912;51908.93;180742.12;142966.12 -5100;'002;Africa;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;22903;23757;28595;36925;36275;47511;56342;44542;66098;56974;71700;98352;113943;89955;94684;94805;123387;113486;123486;150914;173645;180278;172337;155494;205069;191176;273225;388240;438879;203234;188425;221542;241874;170125;199469;240892;195871;197312;212853;261975;237205;228082;265240;240484;157311;82548;79955;104063;93598;143544;127886;97560;79140;32021.14;155443;78499 -5100;'002;Africa;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;64000;101000;169000;308000;315000;324000;399000;329000;281600;296600;285200;316200;338000;321000;300000;324000;335000;372000;418000;413000;414000;429000;448000;411000;385200;394000;409000;407000;790000;781000;826000;799000;865000;461000;638000;658000;630000;647000;780000;763100;734900;756500;675700;735600;724200;736700;775400;747200;496000;503000;326000;417000;347172;393595;361513;341500;341500;341000;291900;285500;285500;285500;285500 -5100;'002;Africa;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;700;5500;8800;500;700;1500;7700;21600;5200;6600;5300;23200;50500;38900;47500;83900;34200;59800;51700;31400;36600;48200;46500;46800;35356;29628;54349;37967;36200;26898;28127;21027;25107;20609;20772;19656;20031;18929;18033;18892;70331;32710;55499;40431;32167;26802.23;20595;45688;42951;31687;28370;49956;25670;21031.94;42023.65;33585.65 -5100;'002;Africa;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;65;447;1208;60;92;214;2422;7906;2069;2053;1569;10350;28961;21610;23738;32494;13498;21405;17124;11245;14974;21972;22975;17962;16779;13113;20892;21239;13696;9172;8942;7121;9971;7578;7737;7290;7709;6920;6515;8037;28930;10501;26489;25118;16623;11964;14545;22570;22175;18973;19655;27061;20357;20209.31;38238.3;25098.3 -5100;'002;Africa;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;75800;94200;73400;103500;115300;134200;134200;224200;321500;304000;365000;391000;325200;214700;243700;242000;279900;274000;284000;294000;294000;319400;314400;314400;213400;261624;324040;236800;271300;271300;233800;235900;235900;235900;224700;206076;211073;167900;221207;217776;200685;216041;18585;179;353;705;531;604;2742;2742;593;6448;622;572;789;789 -5100;'002;Africa;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;6619;5781;5227;12759;13463;15454;15454;32454;51366;46778;58073;74665;80855;67843;77643;77272;100580;99000;109000;111000;112000;121376;122376;122376;88817;87517;109628;124725;93645;93645;66278;67934;67934;67934;74070;73135;81501;69615;77426;121334;92012;87768;10663;122;210;406;326;311;1615;1613;354;4517;366;342;416;442 -5100;'002;Africa;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;36000;53600;60000;94200;96800;122500;88500;145800;159500;167000;168000;153200;167700;177000;163000;160000;162000;173000;210000;211000;203000;221000;191000;176000;189000;189000;202000;226000;449000;452000;441000;567000;518000;562000;623000;623000;907000;978000;948000;993000;789000;900000;883000;797000;796000;954000;1111000;1111000;1018000;1031000;952000;963000;855647;763191;699025;661000;661000;632000;562000;558000;558000;558000;558000 -5100;'002;Africa;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;23000;43700;46600;49500;66900;93500;85700;70600;133600;143700;152400;135800;200100;205000;132500;306800;251000;92900;81800;87300;105800;171700;170800;139200;146527;148837;145290;168599;243310;180791;207592;188964;214162;183993;199278;225213;232032;185468;147133;180105;176728;191216;203971;215803;249308;563620;563983.3;602354;650797;646454;618440;736080;672342;716035.69;809725;857505 -5100;'002;Africa;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;2591;5309;7440;7581;9694;16681;33270;26282;39831;41221;44369;53562;69543;92838;54818;82337;101849;40283;32937;42833;59040;86656;93500;67762;75227;59703;79050;130103;120521;90828;89523;85257;103947;82977;91540;111254;117566;84587;75186;116200;128577;113333;178139;179002;180409;373042;390265;408781;383706;424679;597449;566221;473906;658255.37;914347;824841 -5100;'002;Africa;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;400;400;600;600;700;700;47800;31600;42200;34000;54100;66800;74300;59200;55700;63000;66600;60600;60600;80800;98600;85200;82200;68500;224476;239138;317314;336305;469205;259958;301705;374462;364870;225844;302168;426326;221726;282124;245839;250088;217742;287405;333640;363297;260947;139685;190356;166836;179446;225989;182021;183151;199025;51083.93;179668;141926 -5100;'002;Africa;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;52;63;107;107;158;158;14798;12088;14732;10196;13627;23687;33088;22112;17041;17533;22807;14486;14486;39914;61645;58902;49961;33118;116236;103643;162009;263252;343658;107925;119391;150281;170599;98726;120914;156611;97356;106359;121317;136732;141653;134753;253768;233500;156695;81658;79299;103311;91897;141914;127005;92539;78270;31169.14;154483;77552 -5100;'002;Africa;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -5100;'002;Africa;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58429;16523;15540;15182;10444.81;17177;10843 -5100;'002;Africa;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35791;12451;12679;11086;11133.31;13813;14201 -5100;'002;Africa;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;279;250;265;253;285.12;251.12 -5100;'002;Africa;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;527;504;504;510;544;505 -5100;'002;Africa;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;5000;100;29000;30000;31000;31000;32000;27000;28000;29000;29000;30000;30000;31000;55000;65000;46000;48000;48000;208000;222000;48000;48000;48000;48000;48000;0;0;0;0;0;0;0;0;26000;0;0;0;0;;;;;;; -5100;'002;Africa;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;16300;19700;10000;8600;8500;15500;24400;9100;14300;13200;13900;8100;6700;4200;5300;4400;4700;3200;3200;3900;3200;4000;5200;9200;4918;4133;4374;1302;449;438;1138;0;0;0;0;34;41;64;54;1377;2732;1114.2;2029;7372;664;1920;805;1127;410;;;;;;; -5100;'002;Africa;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;2059;2752;1454;1376;1441;2955;7743;2888;4818;4170;4184;3096;3605;2805;2504;1759;1995;1314;1314;2278;2016;2828;3100;4922;2959;2033;1807;916;216;162;493;0;0;0;0;31;33;38;35;959;1880;1707;1986;7298;594;2386;724;1687;353;;;;;;; -5100;'002;Africa;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;8000;20989;15828;4127;5377;31;31;11955;668;14759;32;55;79;561;96;;;;;;; -5100;'002;Africa;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;2964;7737;6462;1789;2678;19;19;5203;387;6510;14;84;162;369;66;;;;;;; -5100;'002;Africa;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;162000;0;0;0;0;0;;;;;;; -5100;'002;Africa;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;5900;7900;16000;13600;10100;21700;27100;16400;16500;13100;13600;17500;22800;13900;6600;2200;6200;7900;7900;6800;7400;10200;14700;22700;25953;19031;21178;24611;20844;23097;24771;12779;15582;12882;19321;26577;43828;32121;24764;73633;71190;21197;24086;21218;33612;47853.07;48073;56617;69556;;;;;;; -5100;'002;Africa;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;723;1089;2669;2334;1754;4500;9236;6910;5550;4074;4257;7627;11080;5832;2246;892;2960;2920;3018;2676;3090;4441;7310;10635;15226;8911;12826;17730;13496;13011;13654;6390;10330;7803;9329;14144;21320;16710;13266;54578;56756;17490;22175;21923;26710.16;34473;36028;39690;42438;;;;;;; -5100;'002;Africa;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;1559;224;2600;2878;7578;9428;9459;8409;3302;6230;17149;29604;16650;6325;4289;633;688;611;637;649;194;86;36;;;;;;; -5100;'002;Africa;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;1588;263;1576;1664;2756;3327;3341;3465;1521;3409;10552;19549;11432;3890;3521;358;422;352;392;400;168;72;20;;;;;;; -5100;'002;Africa;1667;Dissolving wood pulp;5510;Production;t;85000;110000;127000;140000;144000;156000;171000;193000;213000;217000;239000;245000;258000;360000;419000;328000;348000;405000;420000;420000;420000;386000;369000;406000;581000;581000;581000;581000;390000;400000;400000;498000;521000;521000;490000;490000;590000;556000;546000;627000;467000;490000;605000;609000;617000;625800;613000;585737;659000;778000;804975;807000;816688;994660;1050992;1011831;1037446;1020000;1149473;1067470;1067470;1067470;1067470 -5100;'002;Africa;1667;Dissolving wood pulp;5610;Import quantity;t;15500;18200;10000;14400;17300;12000;14300;13500;11100;9200;9200;9100;9500;9500;500;500;500;100;300;100;400;400;400;400;600;16;420;776;471;1601;1601;17523;25383;4471;11472;5174;3274;7603;5603;2803;1863;1563;2962;3771;2032.7;541.24;737;1435;982;4532;2386.27;9055.35;32389.08;37162;33513;16735;10132;4681;3873;3796;4326.22;9219.15;9244.15 -5100;'002;Africa;1667;Dissolving wood pulp;5622;Import value;1000 USD;2198;2581;1418;2026;2454;1702;2028;1915;1662;1732;1732;1781;1910;3610;110;110;110;24;121;37;265;237;201;200;247;8;172;507;336;1304;1304;8772;11855;2228;10659;3635;1851;3906;3193;1630;1211;1419;1962;1729;1694.6;651.76;947;1673;1227;8978;3638.1;14427;22262.17;28911;17501;17311;11160;4421;3201;2919;3917.83;10762.42;11599.42 -5100;'002;Africa;1667;Dissolving wood pulp;5910;Export quantity;t;84100;106300;125000;110500;135900;154700;162300;185300;193800;204000;226800;240500;251000;359700;418500;328000;347700;338100;214100;237000;236000;233000;252000;205400;205400;225336;184391;306208;160474;178805;178805;212126;202460;134957;161100;331800;331800;329000;491000;491000;397500;415800;538609;734170;537761;559546;559546;523169;633823;731616;708661;720697;735042;910410;903840;854539;913536;948444;954828;861069;932080.48;946467;1057994 -5100;'002;Africa;1667;Dissolving wood pulp;5922;Export value;1000 USD;13369;13648;15260;15244;16823;18387;19354;21509;25097;25003;27625;29926;39912;57546;67809;53191;57032;67625;74957;100287;111757;110275;119609;110919;111000;104860;99387;202348;129863;141995;141995;144490;134397;93122;99660;275549;275549;241589;242107;242107;224757;196977;288312;312847;340315;343460;403072;404316;376348;596099;787428;605458;618133;714663;693945;730907;779756;755651;455728;682386;785384.56;1039529;1043426 -5100;'002;Africa;1668;Pulp from fibres other than wood;5510;Production;t;50000;55000;57800;72500;83400;99700;105200;113800;117200;117800;135700;143600;158000;158000;121500;113000;129000;157000;224000;230000;225000;203000;198000;193000;222000;224000;224000;232000;227000;225000;185700;186000;186000;199000;199000;199000;228700;226400;226400;223400;251400;272400;276400;345400;343400;280400;272400;272400;215400;229400;229400;218400;211388;211388;211388;211388;211388;181400;181400;181400;181400;181400;181400 -5100;'002;Africa;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;2700;3800;3400;5600;7700;63300;89700;52600;46800;28300;35700;48900;35300;55100;63700;75700;46000;56000;52000;52000;52000;57500;76158;6829;6485;9858;7737;5027;5927;2587;13979;32577;32678;32735;41721;6380;3286;4390;6390;10188.2;10816;9880;9311;23120;17427;2435;3749;3929;3523;5839;6249;6059.41;6343.49;4509.48 -5100;'002;Africa;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;1115;1115;1115;2000;3036;29049;33391;17638;22361;10746;16123;23879;18359;22097;35063;36116;33114;41480;39000;39000;39000;35299;41366;3288;3282;5603;5190;3166;3288;1042;9707;24474;24924;25200;36025;4837;3313;3550;7377;8972.6;11410;10530;9491;32729;25556;4022;4252;4333;4969;6240;6585;7663.82;9254.52;7965.52 -5100;'002;Africa;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;8900;11600;19700;19700;18200;20800;18500;19100;16900;15700;14600;14600;12800;16200;18500;14300;14300;12800;9800;12600;7200;9500;9500;9500;15800;6700;7600;7700;19259;24728;7005;7650;9875;9845;10194;11152;11252;9052;7452;16484;19696;19696;16781;21513;20615;11523;13460;19028;6018;3958;2681;3601;3321;2117;515;589;279;861.27;918.27;1132.27 -5100;'002;Africa;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;1501;2048;3430;3485;3229;3535;3589;3626;3312;4378;4063;4398;5653;6462;7678;7712;7712;6718;5371;6690;4096;5415;5415;5415;11183;6546;8575;8688;14045;13676;7057;10478;11833;11806;10514;11269;11187;9210;7696;15899;18724;18724;14488;14907;17874;7733;10540;12067;6107;4150;4140;2345;3958;2282;1452;710;161;263;315.46;457.46 -5100;'002;Africa;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;0;1365;326;325;483;238;2749;1100;1101;1070.05;1470;1310.1;3795.2;1370;1835;2668;3960;8388;5498;18438.89;20590.66;10982 -5100;'002;Africa;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;0;596;261;260;200;192;1980;679;1603;1089.58;1755;2408;3852;1627;1832;2349;2855;2683;2300;5959;28004.4;13139.56 -5100;'002;Africa;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;32;32;223;14873;13146;7293;8600;14657;15239;13115;11200;7512;5160;9285;14305;12477;26353;9082.48;19404.14;6894.14 -5100;'002;Africa;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;5;5;29;2741;3997;1903;3665;6637;5277;2844;1775;1454;799;1824;2824;2438;6239;2238.1;4249.68;1317.68 -5100;'002;Africa;1669;Recovered paper;5510;Production;t;;;1000;1000;1000;1000;1000;1000;1000;298000;298000;335000;379000;385000;363000;420000;435000;435000;459000;481000;557000;657000;666000;717000;722000;745000;771000;883000;892000;734970;770900;870840;862000;888900;909800;945800;935700;824400;822100;1307700;1407700;1408700;1561700;1565700;1564700;1563700;1565700;1672700;1668700;1758181;1747947;1947015;1999196;1966697;2089771;2322537;2232690;2326913;2204066;2123464;2147378;2294259;2222774 -5100;'002;Africa;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;22000;15000;17000;23000;26231;18431;21085;22930;16218;21744;31871;39218;49318;47600;32200;38345;46394;61981;83896;59010;63358;56558;64378;79889;65334;89278;84784;82665;108110;57258;72893;53467;76689;94969;134366;138055;111327;91988;100311;80733;73930;72337;113869;103848;145990;156532;217736;221836;167584;205217;143520;178347.74;303657;201414 -5100;'002;Africa;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;1492;779;993;1890;7949;2855;3166;3344;2335;3622;7011;6787;9623;8417;5003;5362;7419;9535;19229;9718;16123;14586;11548;9808;10093;23108;15831;12530;12899;8224;13055;8798;14861;17985;17121;18241;23856;21964;25907;18426;19156;16905;21490;20119;30137;28909;38346;39372;29001;44340;28261;41056.17;82245;49183 -5100;'002;Africa;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;139;4659;2562;3800;4000;5000;6000;4500;3000;3300;1400;1400;9508;4473;13837;4286;6396;6396;11247;9662;10590;19156;6399;4984;23984;14236;19594;20021;19541;40770;57306;91760;74566;77645;86692;95912;162442;190642;237575;270027;239789;246762;323878;403730;338905;304352;278183;363399.09;446156.25;465929.25 -5100;'002;Africa;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;10;351;193;424;440;535;1240;934;640;711;329;329;1002;849;2483;1073;1156;1156;2429;1502;2254;3748;1479;903;2129;1391;1787;1652;2429;5549;6327;9841;7238;8101;13457;14608.2;25882.4;44356;37352;43952;36655;34003;44890;64224;54869;37680;28909;72374;87270.5;63345.5 -5100;'002;Africa;1876;Paper and paperboard;5510;Production;t;347400;402000;479720;504300;597000;660400;718200;805600;848100;897200;925700;1053200;1105400;1102400;1096417;1148900;1372500;1436500;1629500;1763100;1913735;1951212;2119487;2085165;2246847;2412535;2430702;2634828;2810904;2781629;2745121;2691740;2619625;2514895;2681826;2654263;2905180;3015882;2922604;3481373;3627920;3678373;3737352;4051196;3725137;3879537;4094937;4087837;3378463;3675577;3335577;3580763;3589236;3514522;3531056;3585665;3312551;3505705;3440624;3180731;3285052;3277464;3273252 -5100;'002;Africa;1876;Paper and paperboard;5610;Import quantity;t;511100;480900;495800;519730;578200;586900;599000;596700;685100;822800;814200;636000;787290;1002400;759300;707900;798510;817160;801700;930700;1169200;1021700;1034300;1075450;1192592;1159168;1143271;1309040;1083086;1249424;1380450;1438332;1456764;1514221;1394053;1397833;1657397;1915947;2396663;1708927;2063285;2019536;2602183;3208803;3220788;3211977;3665650;3619047;3868291;4001769;4441536;4167048.44;4630358;5042061;4894911;5179858;5433305;5566556;6232005;6200340;5663678.57;6128641.07;5570964 -5100;'002;Africa;1876;Paper and paperboard;5622;Import value;1000 USD;115141;111811;122344;121455;138962;150434;157598;157284;186750;219738;227018;186157;297634;561418;504476;479438;543198;604177;571010;746862;992060;809103;786185;753215;806596;968273;934562;1111515;1248482;1764447;1211279;1109777;1082179;1216885;1352701;1241899;1410301;1407862;1653350;1276448;1441908;1474104;1841086;2335333;2369850;2440713;3172988;3530653;3490454;4309337;4601400;4170091;4484735;5063025;4252724;4463653;4854164;5378772;5594438;5192853;5255714.84;7146482.55;6210962 -5100;'002;Africa;1876;Paper and paperboard;5910;Export quantity;t;44300;40100;40652;62036;45836;56900;53400;62500;56000;45900;34800;46500;105000;98700;83400;144400;190650;191750;177850;158350;163800;202800;167800;195800;296500;369538;393991;334179;149982;126713;126713;384676;337346;583531;539198;488529;345191;579533;604325;633735;850561;720557;996472;1116528;1068594;906665;1136860;1132907;876282;864875.24;668992.66;641651.27;635976.1;689211.78;707231.48;744642.48;788518.48;814052.48;729394.48;805501;909081.79;888724.11;855112.48 -5100;'002;Africa;1876;Paper and paperboard;5922;Export value;1000 USD;10494;10291;9793;13307;11572;13635;12559;13147;11420;10908;8930;10388;21825;25213;20924;32988;44343;63317;63048;79088;95642;115322;68022;87593;157119;197922;235268;222035;99174;85746;85746;228241;180205;348885;428394;399975;239767;252494;225629;241954;411189;375541;527252;647380;579481;634030;798480;828210;745887;738804;694283;625639.29;623005.96;644475;612338;616136;649362;730437;730781;647198;764130.66;928621.65;855227.01 -5100;'002;Africa;2042;Graphic papers;5510;Production;t;85000;116400;133220;146100;160000;190900;209900;267500;305500;318700;337700;366100;427900;419600;396017;434200;509200;526200;588200;589200;677200;714400;816000;752600;784400;870850;846040;954240;1028340;1031250;998470;919320;1020120;997220;983070;975700;976700;1018100;1029830;1164860;1225860;1235860;1254832;1360492;1132692;1278392;1401792;1334692;1168232;1233232;1067232;1067486;1007925;985764;906493;851821;688822;740788;713459;587913;652810;604786;646022 -5100;'002;Africa;2042;Graphic papers;5610;Import quantity;t;274200;224500;232300;245200;279000;294600;249700;225800;278400;372300;357000;259400;321790;433400;332500;364900;374510;386560;349300;427000;526000;445300;422700;460200;491000;461834;377102;590118;455213;534443;585689;628452;645906;645929;478353;511461;771569;970138;1068118;899709;1032572;932581;1113638;1478609;1478719;1572665;1690119;1698690;1934550;1897984;2061534;1977043.44;2142620;2284557;2013779;2154161;2421318;2466536;2755823;2468011;2380829.85;2388576.07;2100851 -5100;'002;Africa;2042;Graphic papers;5622;Import value;1000 USD;55995;47004;49711;49340;60944;67112;58016;54721;70996;93770;93788;72229;122559;249237;226056;247429;243169;265664;221166;329151;430755;311945;290359;331321;372019;399314;338172;556707;606099;1001392;517244;505894;481385;502058;499842;484331;665614;689150;723389;680396;716001;640378;772640;1062041;1073714;1160079;1465498;1654788;1726754;2002519;2069688;1955407;2009887;2111247;1772899;1815240;2156266;2364539;2481855;2073962;1983796.26;2825493.56;2572553 -5100;'002;Africa;2042;Graphic papers;5910;Export quantity;t;3700;3500;3400;4700;4400;4200;5300;4000;3800;3700;3700;15900;63300;40700;21700;73100;111900;126400;115300;92700;119600;166700;142700;164300;261300;340538;357191;304779;120582;97313;97313;153212;128357;257791;194576;140857;150578;203625;156063;164216;239539;256731;305663;390792;360757;402446;533977;612660;348239;366887.24;228147.66;188625.27;188325.1;214831.78;152326.48;155716.48;154401.48;215310.48;155942.48;110761;157903.94;135961.15;148792.15 -5100;'002;Africa;2042;Graphic papers;5922;Export value;1000 USD;1292;1185;1138;1402;1336;1441;1840;1434;1475;1350;1372;3304;12020;9632;5594;15028;24275;46215;40456;42052;68825;93791;51736;72835;136747;179569;214817;203627;80766;67338;67338;86379;76126;115980;151849;123706;135167;70486;56109;60423;143793;149284;188305;274478;250155;276175;385120;434120;290978;330576;246133;202580.29;181128.96;193545;139231;133593;136211;183069;203022;103275;153733.41;161450.73;166578.73 -5100;'002;Africa;1671;Newsprint;5510;Production;t;19000;35300;44020;44800;59000;87000;90000;144000;166900;170300;177600;176500;229500;213000;222817;227500;269500;234500;241500;243500;323500;381700;410000;318600;350800;378850;335240;410440;413540;421350;411270;388320;392320;405220;479170;480400;373800;388200;382100;386100;382100;386100;373100;376160;387160;369160;368560;364460;336000;347000;333000;315854;257722;239409;234310;224275;195965;129150;122024;72249;95705;90435;82826 -5100;'002;Africa;1671;Newsprint;5610;Import quantity;t;157800;133500;135800;140900;136400;126300;92200;69700;101000;135000;131800;112700;93690;125600;113150;134400;139950;159200;142000;149400;184600;168000;175300;133000;118000;136942;126375;167421;142174;147601;171391;153917;167727;158373;210485;191308;203394;261260;289514;277424;414582;359742;303579;379329;375260;425813;467523;435821;488722;456852;505059;489300;463304;491032;441541;425865;425441;386753;415726;297159;246603.31;216056.07;232108 -5100;'002;Africa;1671;Newsprint;5622;Import value;1000 USD;25820;21354;21369;20841;19615;16418;14322;10780;14893;21529;23204;21442;21594;54195;54958;64623;63413;69914;44116;75733;94529;89347;79396;59141;69460;97668;92051;120263;162336;220582;105188;91386;83925;81686;156603;119956;115915;134497;138958;152043;224774;184037;148843;189928;190359;200700;288032;288209;324133;363143;366056;379512;359567;375583;287664;250138;242871;279541;280724;175677;156408.54;211314.55;219713 -5100;'002;Africa;1671;Newsprint;5910;Export quantity;t;;;100;1300;1300;;;;0;0;0;11700;57400;29900;14500;63400;99000;96000;86000;70000;106000;153000;135000;147000;205000;223892;234599;186447;93408;75562;75562;118638;77506;228630;183281;128652;103666;193671;146808;146859;106172;131759;96959;82363;72289;70663;72633;61349;63798;84775;80528;53799;50434;46523;49911;54912;42312;87916;25098;17023;19797.53;19389.05;19096.05 -5100;'002;Africa;1671;Newsprint;5922;Export value;1000 USD;;;10;248;248;;;;;;;1813;9371;4872;2393;10584;17890;30481;25267;29623;55454;80200;43231;54156;76000;99786;121952;107575;55758;45014;45014;58225;36977;91227;139927;110732;100741;61237;48458;48423;51639;52647;44877;42635;39244;38677;40639;37492;44227;69043;72823;40877;37308;34290;33781;32009;24369;36154;15793;10824;13502.7;20595.72;22448.72 -5100;'002;Africa;1674;Printing and writing papers;5510;Production;t;66000;81100;89200;101300;101000;103900;119900;123500;138600;148400;160100;189600;198400;206600;173200;206700;239700;291700;346700;345700;353700;332700;406000;434000;433600;492000;510800;543800;614800;609900;587200;531000;627800;592000;503900;495300;602900;629900;647730;778760;843760;849760;881732;984332;745532;909232;1033232;970232;832232;886232;734232;751632;750203;746355;672183;627546;492857;611638;591435;515664;557105;514351;563196 -5100;'002;Africa;1674;Printing and writing papers;5610;Import quantity;t;116400;91000;96500;104300;142600;168300;157500;156100;177400;237300;225200;146700;228100;307800;219350;230500;234560;227360;207300;277600;341400;277300;247400;327200;373000;324892;250727;422697;313039;386842;414298;474535;478179;487556;267868;320153;568175;708878;778604;622285;617990;572839;810059;1099280;1103459;1146852;1222596;1262869;1445828;1441132;1556475;1487743.44;1679316;1793525;1572238;1728296;1995877;2079783;2340097;2170852;2134226.54;2172520;1868743 -5100;'002;Africa;1674;Printing and writing papers;5622;Import value;1000 USD;30175;25650;28342;28499;41329;50694;43694;43941;56103;72241;70584;50787;100965;195042;171098;182806;179756;195750;177050;253418;336226;222598;210963;272180;302559;301646;246121;436444;443763;780810;412056;414508;397460;420372;343239;364375;549699;554653;584431;528353;491227;456341;623797;872113;883355;959379;1177466;1366579;1402621;1639376;1703632;1575895;1650320;1735664;1485235;1565102;1913395;2084998;2201131;1898285;1827387.72;2614179;2352840 -5100;'002;Africa;1674;Printing and writing papers;5910;Export quantity;t;3700;3500;3300;3400;3100;4200;5300;4000;3800;3700;3700;4200;5900;10800;7200;9700;12900;30400;29300;22700;13600;13700;7700;17300;56300;116646;122592;118332;27174;21751;21751;34574;50851;29161;11295;12205;46912;9954;9255;17357;133367;124972;208704;308429;288468;331783;461344;551311;284441;282112.24;147619.66;134826.27;137891.1;168308.78;102415.48;100804.48;112089.48;127394.48;130844.48;93738;138106.41;116572.1;129696.1 -5100;'002;Africa;1674;Printing and writing papers;5922;Export value;1000 USD;1292;1185;1128;1154;1088;1441;1840;1434;1475;1350;1372;1491;2649;4760;3201;4444;6385;15734;15189;12429;13371;13591;8505;18679;60747;79783;92865;96052;25008;22324;22324;28154;39149;24753;11922;12974;34426;9249;7651;12000;92154;96637;143428;231843;210911;237498;344481;396628;246751;261533;173310;161703.29;143820.96;159255;105450;101584;111842;146915;187229;92451;140230.72;140855.01;144130.01 -5100;'002;Africa;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65500;66000;159000;167000;149000;159200;165200;60100;59800;59800;59800;56800;72800;72800;68200;64200;64200;63000;63000;63000;63000;63000;63000;63000;63000;63000 -5100;'002;Africa;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81090;81917;47617;53939;76009;107785;131461;129531;185520;179417;162816;126152;137688;137849;159920;159086;154870;164133;134012;143869;204601;154531;83109;112189.83;116828;91527 -5100;'002;Africa;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55778;54233;40190;43513;59427;74768;97066;97362;133245;152736;143841;115359;121850;128051;151431;146707;145838;146250;119196;132775;215501;131584;72137;104022.37;134942;103449 -5100;'002;Africa;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4783;2605;3419;86975;61775;79215;108666;108668;65524;62347;49081;34184;60029;19766.6;10961.27;16183.07;15964.3;16228;17039;15061;17549;15314;11878;11399.69;13467.1;12524.1 -5100;'002;Africa;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4013;2235;2899;51479;38877;53832;85775;85780;65303;69245;48730;30492;53680;21952;11996.05;15309.96;17101;16129;16258;16785;22827;22316;12244;14856.05;17177.01;15572.01 -5100;'002;Africa;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;390400;405730;453760;516760;524760;538532;628132;599432;764432;888432;833432;722432;740432;598432;621432;628077;624229;551257;547546;412857;531638;511435;435664;477105;434351;483196 -5100;'002;Africa;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;350750;400367;296769;300745;253552;410772;541271;544433;467076;517997;586022;818518;786253;867784;816949;927539;1043383;860572;1034463;1296795;1263077;1572733;1500222;1404097.77;1428190;1352465 -5100;'002;Africa;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;245205;275749;230862;239308;197583;301049;422679;428671;403692;515016;679993;777718;939684;963266;864133;915028;992736;829865;945709;1276573;1272631;1488104;1330078;1137934.82;1709654;1710823 -5100;'002;Africa;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4071;4655;8261;22646;32856;74042;148321;159512;246890;383855;484284;237637;192210.24;112640;112704;107110.88;134002.48;72026.48;71001.48;75790.48;79821.48;81717.48;59055;97461.28;66953;96594 -5100;'002;Africa;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4046;3253;5633;17221;32895;53629;110417;106114;154452;260812;328053;200541;188440;133290;135188.24;111910;118184;72812;68641;72093;94380;83463;55765;93640.72;85397;97545 -5100;'002;Africa;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;174000;176000;166000;160000;176000;184000;191000;86000;85000;85000;77000;53000;73000;63000;62000;57926;57926;57926;17000;17000;17000;17000;17000;17000;17000;17000 -5100;'002;Africa;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;277038;296320;277899;263306;243278;291502;426548;429495;494256;525182;514031;501158;517191;550842;510874.44;592691;595272;547533;559821;555213;612105;612833;587521;617938.94;627502;424751 -5100;'002;Africa;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;253670;254449;257301;208406;199331;247980;352368;357322;422442;509714;542745;509544;577842;612315;560331;588585;597090;509120;500197;504047;596866;581443;496070;585430.52;769583;538568 -5100;'002;Africa;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1100;1995;5677;23746;30341;55447;51442;20288;19369;15142;17946;12620;29873;15213.06;11161;14597.15;18342;14161;12764;21238;30024;33813;22805;29245.43;36152;20578 -5100;'002;Africa;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1190;2163;3468;23454;24865;35967;35651;19017;17743;14424;19845;15718;19413;18068;14519;16601;23970;16509;16685;22964;29708;81450;24442;31733.95;38281;31013 -5100;'002;Africa;1675;Other paper and paperboard;5510;Production;t;262400;285600;346500;358200;437000;469500;508300;538100;542600;578500;588000;687100;677500;682800;700400;714700;863300;910300;1041300;1173900;1236535;1236812;1303487;1332565;1462447;1541685;1584662;1680588;1782564;1750379;1746651;1772420;1599505;1517675;1698756;1678563;1928480;1997782;1892774;2316513;2402060;2442513;2482520;2690704;2592445;2601145;2693145;2753145;2210231;2442345;2268345;2513277;2581311;2528758;2624563;2733844;2623729;2764917;2727165;2592818;2632242;2672678;2627230 -5100;'002;Africa;1675;Other paper and paperboard;5610;Import quantity;t;236900;256400;263500;274530;299200;292300;349300;370900;406700;450500;457200;376600;465500;569000;426800;343000;424000;430600;452400;503700;643200;576400;611600;615250;701592;697334;766169;718922;627873;714981;794761;809880;810858;868292;915700;886372;885828;945809;1328545;809218;1030713;1086955;1488545;1730194;1742069;1639312;1975531;1920357;1933741;2103785;2380002;2190005;2487738;2757504;2881132;3025697;3011987;3100020;3476182;3732329;3282848.72;3740065;3470113 -5100;'002;Africa;1675;Other paper and paperboard;5622;Import value;1000 USD;59146;64807;72633;72115;78018;83322;99582;102563;115754;125968;133230;113928;175075;312181;278420;232009;300029;338513;349844;417711;561305;497158;495826;421894;434577;568959;596390;554808;642383;763055;694035;603883;600794;714827;852859;757568;744687;718712;929961;596052;725907;833726;1068446;1273292;1296136;1280634;1707490;1875865;1763700;2306818;2531712;2214684;2474848;2951778;2479825;2648413;2697898;3014233;3112583;3118891;3271918.58;4320989;3638409 -5100;'002;Africa;1675;Other paper and paperboard;5910;Export quantity;t;40600;36600;37252;57336;41436;52700;48100;58500;52200;42200;31100;30600;41700;58000;61700;71300;78750;65350;62550;65650;44200;36100;25100;31500;35200;29000;36800;29400;29400;29400;29400;231464;208989;325740;344622;347672;194613;375908;448262;469519;611022;463826;690809;725736;707837;504219;602883;520247;528043;497988;440845;453026;447651;474380;554905;588926;634117;598742;573452;694740;751177.85;752762.96;706320.33 -5100;'002;Africa;1675;Other paper and paperboard;5922;Export value;1000 USD;9202;9106;8655;11905;10236;12194;10719;11713;9945;9558;7558;7084;9805;15581;15330;17960;20068;17102;22592;37036;26817;21531;16286;14758;20372;18353;20451;18408;18408;18408;18408;141862;104079;232905;276545;276269;104600;182008;169520;181531;267396;226257;338947;372902;329326;357855;413360;394090;454909;408228;448150;423059;441877;450930;473107;482543;513151;547368;527759;543923;610397.24;767170.91;688648.28 -5100;'002;Africa;1676;Household and sanitary papers;5510;Production;t;;;;;11000;12000;13000;14000;15000;30000;35000;38000;38000;38000;38000;38000;51000;61000;72000;83700;87000;87200;93900;91100;103100;109100;112100;121500;125900;125000;147000;144000;125000;161000;178000;176000;202000;194028;218091;238066;268066;273066;276060;334060;411060;429060;340060;365060;361060;361060;363060;359837;394716;428466;411876;431137;427686;487904;496848;482442;521979;551372;561981 -5100;'002;Africa;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;5900;6400;3800;6100;13400;14700;9800;5000;3000;3700;4300;4200;5400;5400;6500;7200;8500;8700;8700;8700;8700;8700;8700;9700;9600;11600;13000;12900;3000;10129;21581;13802;27377;25980;35608;41365;41077;44637;54383;57436;58370;90561;71549;84931;98641;99591;112260;118666;154955;126524;155272;180971;176502.59;161969;198454 -5100;'002;Africa;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;3081;2526;1667;2390;5634;9290;8050;3785;2912;3915;5539;7226;7900;7351;8069;8055;7383;7627;7627;7650;7650;7650;7650;10750;11650;13418;14725;12977;2800;11378;19648;14606;24027;33854;37594;48484;48973;54769;68639;82329;73827;122418;106442;121066;144813;144501;161484;147995;179775;156445;188561;202122;213125.73;247092;282295 -5100;'002;Africa;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;1500;800;1100;1200;900;1800;1800;2100;1300;1800;5800;16000;7700;4600;1600;2500;3000;3000;3000;3000;3000;3000;3000;30000;40000;8200;14000;14000;14000;16240;13646;16803;17202;16044;24481;28946;26307;23082;29210;23876;61923;32211;29331;24932;36865;58658;81479;75810;136242;153198;155849;154850;189390.39;205313.03;198381.03 -5100;'002;Africa;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;594;304;394;400;440;909;901;1076;651;992;3249;12819;6530;3889;1336;2059;2100;2100;2100;2100;2100;2100;2100;20000;26000;8280;14089;14089;13000;12994;12512;19187;20402;15643;22574;28488;26662;21514;43633;42546;96475;44910;41614;35790;48639;74904;96681;82798;143348;178493;179882;158822;178833.64;271397.99;255294.99 -5100;'002;Africa;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1689930;1590920;2006520;2029220;2064820;2065870;2209070;2043770;2037470;2221470;2264470;1749070;2004070;1765070;2003078;2022441;1939081;2056140;2108161;2004698;2088692;2108092;1920260;1879045;1987745;2012090 -5100;'002;Africa;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;736610;1126710;655123;782920;824287;1256533;1439384;1454122;1389170;1701179;1713842;1737721;1872711;2164660;2011907;2290202;2492322;2654535;2742271;2782538;2921761;3261485;3482975;3031637.9;3500784;3205529 -5100;'002;Africa;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;504483;702627;414722;458249;492208;782182;940459;961855;935582;1330293;1489939;1390984;1874532;2092658;1920675;2138828;2447872;2120001;2162292;2349782;2710513;2739861;2732538;2836315.5;3820318;3127089 -5100;'002;Africa;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;339971;402895;419341;568769;426577;638086;643116;629858;429458;530436;480679;458138;450836;401609;422469;404892;408502;463933;506349;494041;440456;413578;535154;554902.22;542895.3;502095.3 -5100;'002;Africa;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;147558;116462;125088;229682;194776;294404;289743;249816;276660;316799;326851;336243;337532;381658;374214;381035;363147;357305;385847;360576;354018;332838;371305;414843.45;480795.28;409833.28 -5100;'002;Africa;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;2900;207000;290500;392300;411800;411100;426400;433000;533100;559100;567100;573600;581200;690200;703200;763200;880500;966600;951500;1033300;1061000;1164700;1233700;1284300;1374300;1460300;1439000;1432000;1436000;1254000;1069000;1276200;1278788;1606800;;;;;;;;;;;;;;;;;;;;;;;;;; -5100;'002;Africa;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;63000;81200;71700;76100;87300;118000;112200;135400;206600;233300;240900;176500;212800;232200;171100;150800;197900;229300;254100;316000;426400;380300;393400;438750;469955;342400;437900;412426;342889;379120;459100;440477;504627;673320;710837;683700;699836;;;;;;;;;;;;;;;;;;;;;;;;;; -5100;'002;Africa;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;14169;20071;16577;16731;19565;27050;23655;29208;45823;52221;56933;45035;75430;125309;101664;78683;113963;160178;151210;194630;286934;247307;245893;257811;238114;232253;292737;273265;239373;347219;345691;289058;336920;501060;611454;519111;536594;;;;;;;;;;;;;;;;;;;;;;;;;; -5100;'002;Africa;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;100;52;36;36;100;200;200;21000;11200;10200;13100;26700;33500;42200;45300;62100;51800;51700;43000;29000;25600;15300;14900;18200;17600;17500;17600;17600;17600;17600;146766;116134;175916;200767;201569;111729;;;;;;;;;;;;;;;;;;;;;;;;;; -5100;'002;Africa;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;25;13;9;9;15;46;69;2596;2474;1985;1833;5194;7817;7011;9497;14920;12908;18092;19113;13999;13246;10242;5262;10803;11030;10479;10997;10997;10997;10997;79090;34138;108951;147087;145042;40831;;;;;;;;;;;;;;;;;;;;;;;;;; -5100;'002;Africa;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;955600;901300;1043800;1159800;1181800;1224400;1353400;1336400;1340400;1523400;1552400;1146400;1382400;1240400;1463400;1499231;1450703;1572224;1584109;1478211;1595158;1565332;1468271;1420286;1526365;1468180 -5100;'002;Africa;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;207685;254561;303753;379656;399381;544266;563623;562840;557979;635448;741106;757548;735116;867025;782031;920117;954967;1083443;1137937;1364609;1402550;1719458;1787067;1470256.36;1677750;1750429 -5100;'002;Africa;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107689;123561;133644;146621;149987;230926;309705;311465;285486;373403;469907;405123;574786;590708;585228;642186;646963;664817;641781;827567;969455;997562;940705;1021801.57;1442637;1186299 -5100;'002;Africa;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;148886;173433;179278;244658;238506;434863;412570;512568;353048;429556;407976;372495;346892;321585;335240;305943;328738;382463;426565;394182;368591;325482;429220;427336.55;418967.32;375245.32 -5100;'002;Africa;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57563;44089;47632;84875;91867;179969;162333;168953;204265;234110;239289;230911;230202;273555;254183;250194;260377;258993;280849;253120;245998;212009;243733;279811.83;320062.66;255585.66 -5100;'002;Africa;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77009;70609;191700;213000;213300;196000;191600;204600;201600;195600;209600;181000;192000;116000;117087;175129;149984;144641;143027;145963;148809;198417;111785;111785;111785;111785 -5100;'002;Africa;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;234387;357771;164261;164742;156700;258707;419464;434239;412146;537385;458315;520912;627768;672963;760055;879108;894821;960082;964038;702253;769793;863865;975791;821215.1;1090261;815642 -5100;'002;Africa;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;206418;261652;151922;152557;149265;224147;308709;333874;342937;512436;509412;545941;748451;844354;835325;992315;1134441;883992;969524;876780;1004625;1059652;1149932;1098454.36;1474653;1189734 -5100;'002;Africa;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;178420;211677;213392;297243;159737;161209;168668;52058;29260;26226;21928;20801;31233;23524;42225;50618;35813;34138;29300;26091;31367;29226;25408;45458.22;43969;38568 -5100;'002;Africa;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82513;65128;67251;128870;86413;90585;90570;30777;30996;34610;33694;36692;43420;43672;71555;79473;52172;48919;47238;45992;57354;54689;57052;64409.58;82009;77782 -5100;'002;Africa;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;403291;405991;522000;400400;389700;371900;384200;398500;391500;398500;398500;410500;418500;397500;411421;336911;327224;328105;369209;368708;332909;332527;328388;335158;337779;420309 -5100;'002;Africa;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;276886;495906;168307;201170;238128;392993;402702;405122;379506;495244;480880;443862;487057;608738;450135;466856;611729;593525;620164;678199;708969;642290;673082;696026.21;684376;585528 -5100;'002;Africa;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;180934;308061;119071;129523;163687;279861;288776;284998;282942;422424;486426;426151;532664;644907;480302;480716;640930;553065;534178;617283;709155;657783;609889;682852.08;857675;704652 -5100;'002;Africa;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12506;17785;26639;25843;27034;37761;55684;59038;43982;71027;48169;61334;68804;55004;44125;47607;42608;46244;49408;70901;37857;55055;77497;72698.6;69445;77304 -5100;'002;Africa;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7445;7245;10134;14366;14857;20958;32299;45545;38683;45059;49595;65977;61189;62674;47681;50680;49400;46785;55151;58162;47545;62808;67558;63810.51;69672;67780 -5100;'002;Africa;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;254030;213020;249020;256020;280020;273570;279870;104270;103970;103970;103970;11170;11170;11170;11170;11170;11170;11170;11816;11816;11816;11816;11816;11816;11816;11816 -5100;'002;Africa;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17652;18472;18802;37352;30078;60567;53595;51921;39539;33102;33541;15399;22770;15934;19686;24121;30805;17485;20132;37477;40449;35872;47035;44140.23;48397;53930 -5100;'002;Africa;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9442;9353;10085;29548;29269;47248;33269;31518;24217;22030;24194;13769;18631;12689;19820;23611;25538;18127;16809;28152;27278;24864;32012;33207.5;45353;46404 -5100;'002;Africa;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;159;0;32;1025;1300;4253;6194;6194;3168;3627;2606;3508;3907;1496;879;724;1343;1088;1076;2867;2641;3815;3029;9408.85;10513.99;10977.99 -5100;'002;Africa;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;0;71;1571;1639;2892;4541;4541;2716;3020;4273;2663;2721;1757;795;688;1198;2608;2609;3302;3121;3332;2962;6811.54;9051.62;8685.62 -5100;'002;Africa;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;3500;72500;95500;29500;30600;27600;27700;28900;24900;29200;29100;28600;27100;45700;56700;112700;112300;126235;128412;121087;128265;131647;136885;118262;116788;196364;186379;167651;192420;220505;287675;244556;223775;119680;113824;83763;71927;104774;104627;140590;147574;137615;134615;131615;123615;100101;77215;140215;150362;164154;161211;156547;194546;191345;188321;122225;190116;231218;133561;53159 -5100;'002;Africa;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;40600;43900;52400;46900;59300;50900;65100;84200;146600;182900;186900;159700;206300;288700;216900;156500;186800;164700;165000;144900;177100;156700;178200;138000;177100;277500;264000;231157;236500;255800;276700;323047;248237;143571;150617;148204;148545;199070;180254;140293;220416;236688;196404;249445;246870;205505;219969;149079;137650;140513;143793;93167;98895;165591;114337;164760;74494;51735;59425;68383;74708.22;77312;66130 -5100;'002;Africa;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;11228;13289;15025;13899;18462;17448;22583;27695;48860;62951;65272;54734;81845;159553;151976;131673;155076;148539;169353;179208;232322;210288;209231;126474;144932;249910;239866;213091;354468;356280;290873;270512;210246;159395;182172;181150;166239;202851;207686;166724;243631;307664;248670;284349;285308;290283;308558;303597;298889;309868;332612;172943;191207;359405;198340;338126;168341;147275;184161;184231;222477.35;253579;229025 -5100;'002;Africa;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;15200;14400;14200;10700;3800;3900;1400;1800;10900;11500;5200;3400;4400;13000;9800;19600;11050;11750;5050;6650;7500;5900;8200;14100;14000;8400;16300;8800;8800;8800;8800;54048;52585;141409;129785;132048;67678;19697;31721;33375;25051;21205;28242;53674;51672;51679;43237;15692;7982;14941;9905;5625;5894;7220;9493;6767;3834;5088;4025;4736;6885.23;4554.62;5844 -5100;'002;Africa;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;2753;2684;2635;2260;1728;1748;165;417;2490;2252;1527;1123;1324;4008;5050;5885;2995;3202;1251;5104;6288;4396;4708;7437;7469;5223;7872;5311;5311;5311;5311;42101;43408;115524;115305;117079;50049;21456;40546;37256;17312;15838;21969;54671;52848;59681;52928;24693;22191;25786;24878;13055;12203;12879;19121;13898;9227;14857;15039;13796;16720.16;14977.64;23520 -5100;'002;Africa;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1750168;1901726;1908122;1533496;1765734;1995223;1974994 -5100;'002;Africa;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;656365.9;757012;610949;512391;634886;639869;708458 -5100;'002;Africa;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64540;48704;43749;34100;39585;45829;41107 -5100;'002;Africa;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43322;47954;38836;35978;37940;49665;60289 -5100;'002;Africa;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22050;21691;20970;19265;20311;21928;20614 -5100;'002;Africa;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23479;21493;9529;6624;11336;14782;15214 -5100;'002;Africa;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42490;27013;22779;14835;19274;23901;20493 -5100;'002;Africa;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19843;26461;29307;29354;26604;34883;45075 -5100;'002;Africa;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66318;78925;74169;73221;81448;79735;81527 -5100;'002;Africa;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37179;46648;29785;32024;40522;51291;56329 -5100;'002;Africa;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36534;41871;53058;32892;45598;33086;32464 -5100;'002;Africa;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18912;32262;21173;18010;23953;18670;24911 -5100;'002;Africa;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;221843;299355;252501;207566;260810;264732;299732 -5100;'002;Africa;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70249.9;85166;115568;75255;105076;110928;122992 -5100;'002;Africa;1636;Glue-laminated timber (glulam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;14000 -5100;'002;Africa;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1527;1727 -5100;'002;Africa;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1789;2778 -5100;'002;Africa;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4757;19930 -5100;'002;Africa;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5507;25317 -5100;'002;Africa;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;213;133 -5100;'002;Africa;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;292;173 -5100;'002;Africa;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117;126 -5100;'002;Africa;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;152;133 -5100;'002;Africa;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;842;916 -5100;'002;Africa;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1266;1423 -5100;'002;Africa;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;321 -5100;'002;Africa;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97;275 -5100;'002;Africa;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1255584;1311613;1346080;1072267;1221699;1424151;1364762 -5100;'002;Africa;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;462715;464080;362416;313910;349662;318120;345781 -5100;'002;Africa;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30508;25569;18554;14430;10009;17393;16889 -5100;'002;Africa;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1657;2732;1657;840;1859;2303;2461 -5100;'002;Africa;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74841;95689;120011;99020;106585;130297;138513 -5100;'002;Africa;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22331;78170;41514;36374;75874;88892;95695 -5100;'002;Africa;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2665388;2880100;2721400;2616824;2842676;3244701;3274709 -5100;'002;Africa;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;795910;1051176;797772;757634;925878;1026888;1009319 -5100;'002;Africa;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16587;25633;17864;16285;18179;29236;16368 -5100;'002;Africa;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3255;3256;2736;2907;4288;5499;2849 -5100;'002;Africa;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;503104;485359;452184;438177;486465;547636;531092 -5100;'002;Africa;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16869;19008;15664;15307;19144;27106;27014 -5100;'002;Africa;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;330227;352734;253720;247637;264405;256548;291576 -5100;'002;Africa;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;176639;157345;148052;146249;162738;165426;172807 -5100;'002;Africa;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;939038;1093161;1138438;1163969;1235222;1339327;1326558 -5100;'002;Africa;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;369721;564877;423188;405701;519176;568273;559638 -5100;'002;Africa;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;876432;923213;859194;750756;838405;1071954;1109115 -5100;'002;Africa;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;229426;306690;208132;187470;220532;260584;247011 -5101;'014;Eastern Africa;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2039548;2353351;2419123;1981978;2367239.92;2858326.57;2659548.78 -5101;'014;Eastern Africa;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;765851;939338;758366;576313;745826.43;734614.36;644468.36 -5101;'014;Eastern Africa;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;28030;27971;29220;36859;45331;50854;52814;59053;65811;67889;78169;71533;88829;139289;116070;99301;118997;125175;147177;183513;169478;143182;138475;120232;127850;138714;180883;176701;169553;189520;196241;210160;176735;175456;219350;242637;207366;256208;299657;256801;255409;223976;367609;460108;484096.1;485447;626095;787146;685494.6;916825;963305.65;907583.16;1073812.08;1308693.06;1161179.05;1118911;1148390;1381405;1484654;1198696;1483615.92;1741076.57;1586680.78 -5101;'014;Eastern Africa;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;10020;8332;9360;15238;15874;14255;13959;15753;18550;18209;17526;13935;18342;20824;20157;27232;26420;24886;29975;30086;26001;25798;17417;13427;16500;12347;16531;13681;10364;22983;20876;43586;20392;25961;41395;62504;76646;71811;71629;105276;87918;76749;123246;150039;136236;141386;260809;285504;277268.2;335575;348873;440704.8;462451;668409.22;575949;570810;626082;563160;572172;430091;583816.43;540123.36;459772.36 -5101;'014;Eastern Africa;1861;Roundwood;5516;Production;m3;105117071;107820660;110413915;113428896;116277588;119941581;123488781;126473925;129332375;132565945;134764562;134097955;135482373;138113344;142822313;146276815;150268754;154933466;158124573;162460392;166344036;170735041;173742507;179643867;185731602;189158290;192229263;196189355;201823210;206463902;212671662;219565778;223246477;230077599;234138353;238002097;242700272;245202750;247014734;256627222;262313802;264906864;269442260;273313764;281474918;288344696;291739833;296316028;299489500;303235193;308331083;311521399;314460134;317682204;321166757;324103585;327823989;330700288;333522073;334848766;337651163;341198109;344362283 -5101;'014;Eastern Africa;1861;Roundwood;5616;Import quantity;m3;14700;14300;11801;9701;10800;11300;8300;23300;25700;31900;70600;19100;13300;34300;7700;7600;11400;7400;17500;17700;18000;15800;17400;17300;17700;18290;16110;16053;27700;2526;24612;31833;9479;10512;7457;13920;8574;9116;36811;22236;14489;9830;17372;54158;54155.7;52049;44201;55615;57361;53856;49111;63861;74293;131925;34875;26381;51063;91867;192351;129297;110312;220797.58;219772.58 -5101;'014;Eastern Africa;1861;Roundwood;5622;Import value;1000 USD;317;448;292;317;424;392;452;563;589;562;1110;536;487;3107;429;1082;2660;1355;3113;3679;3169;2687;2826;2654;2613;3767;3411;2614;5023;802;3543;4112;3148;1922;1539;5062;2232;2218;3628;2363;1950;2033;4852;4606;4609.5;5327;8599;16466;10233;11661;14102;21230;26335.24;47040;13799;8831;15280;18607;30910;27047;13956;22226;21059 -5101;'014;Eastern Africa;1861;Roundwood;5916;Export quantity;m3;20400;25300;20200;28300;57500;62600;58500;57700;53400;58900;57300;40000;35400;34800;36350;12840;19200;17200;16100;16400;18300;39900;22600;19500;12500;8600;32500;9251;3854;25327;35657;30831;35311;39920;41403;27133;63514;178122;221776;141092;131288;100950;144169;239727;249571;224225;288274;222355;184294;278605;281544;381495;406111;842176;1323076;1363653;1158462;840461;657358;420412;983347;680951;385015 -5101;'014;Eastern Africa;1861;Roundwood;5922;Export value;1000 USD;489;324;354;685;806;762;721;776;832;917;1138;1010;1140;1420;1278;1026;1795;1724;2624;4013;3986;3725;1973;2362;1256;1594;2381;3006;706;6970;5100;7966;3619;4631;6510;7330;16776;14333;20805;33142;26577;27533;39307;44063;44587;29619;115769;93655;80138;113610;111917;165265;199288.4;425584;371973;397118;428923;335966;304076;155195;253033;178066;95846 -5101;'014;Eastern Africa;1862;Roundwood, coniferous;5516;Production;m3;2160961;2218835;2261462;2360855;2462032;2465122;2601102;2653222;2725594;2818737;2902180;2896586;2941535;3004440;3103803;3302512;3570155;3919476;3942643;3892500;3902755;4012015;3921797;4220665;4432192;4616991;4881388;5048995;5174292;5361248;5697346;6138862;8961259;9581928;9841630;9906969;10186779;10255920;10418203;10425817;10458672;10531202;10670054;10718472;12663602;12774636;13051148;13120890;13018489;13134515;13267462;13418303;13911625;14017923;14155597;14292189;14648121;15039088;15126438;15040679;15185412;15104294;15213489 -5101;'014;Eastern Africa;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30944;50134;101236;72259;54759;131421.58;111578.58 -5101;'014;Eastern Africa;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8245;9453;18043;14825;10135;12622;9816 -5101;'014;Eastern Africa;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15571;12451;75766;134733;144966;98404;26118 -5101;'014;Eastern Africa;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3654;2011;11822;19104;21189;18820;3728 -5101;'014;Eastern Africa;1863;Roundwood, non-coniferous;5516;Production;m3;102956110;105601825;108152453;111068041;113815556;117476459;120887679;123820703;126606781;129747208;131862382;131201369;132540838;135108904;139718510;142974303;146698599;151013990;154181930;158567892;162441281;166723026;169820710;175423202;181299410;184541299;187347875;191140360;196648918;201102654;206974316;213426916;214285218;220495671;224296723;228095128;232513493;234946830;236596531;246201405;251855130;254375662;258772206;262595292;268811316;275570060;278688685;283195138;286471011;290100678;295063621;298103096;300548509;303664281;307011160;309811396;313175868;315661200;318395635;319808087;322465751;326093815;329148794 -5101;'014;Eastern Africa;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20119;41733;91115;57038;55553;89376;108194 -5101;'014;Eastern Africa;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7035;9154;12867;12222;3821;9604;11243 -5101;'014;Eastern Africa;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1142891;828010;581592;285679;838381;582547;358897 -5101;'014;Eastern Africa;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;425269;333955;292254;136091;231844;159246;92118 -5101;'014;Eastern Africa;1864;Wood fuel;5516;Production;m3;100102071;102727660;105005915;107768896;110330588;113846581;117032781;119651625;122352375;125119345;127054162;126981655;128580173;131585844;135808513;139122315;142346854;146608766;149445973;153548992;157347936;161392241;164545707;170103367;175612902;178778490;181344523;185069065;190043910;194586122;200515682;206786728;209908127;215951599;218911394;222518366;226856904;229500321;230991169;240725608;246711127;249189599;253032115;256647339;265419385;271769398;274789785;278595638;281792394;285350848;290246666;293361082;295770905;298263841;301505593;304167925;306879051;309645427;312467212;313856905;316592131;319687534;322852001 -5101;'014;Eastern Africa;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;115;128;128;306;126;3477;3447;36;36;168;103;45.7;228;575;1095;1257;3643;3148;499;315;3227;461;1748;164;365;571;1196;465;515.58;1293.58 -5101;'014;Eastern Africa;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;11;12;12;20;12;76;76;2;2;35;253;251.5;203;495;201;270;1587;1568;331;243.24;764;303;502;66;121;180;573;176;349;1265 -5101;'014;Eastern Africa;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;237;237;37;37;9487;75;75;75;2544;2544;2544;1647;2825;2600;2600;4551;1897;3515;6662;10840;6785;6222;7;5631;32881;86240;102692;66216;10609 -5101;'014;Eastern Africa;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;26;26;2;2;294;6;6;6;354;354;354;170;318;322;322;1810;345;1039;1486;2834;1767;1416;1;169;2972;6946;9494;6109;1400 -5101;'014;Eastern Africa;1627;Wood fuel, coniferous;5516;Production;m3;1782961;1818835;1855462;1892855;1936032;1952122;1992102;2036922;2085594;2131137;2153780;2178286;2198335;2249940;2324703;2376012;2426255;2486976;2532143;2578900;2637355;2711115;2753697;2877365;3001492;3046191;3076488;3169795;3267992;3350448;3496346;3625462;6293459;6458828;6592630;6674669;6820679;6894320;7017603;7141517;7243872;7348202;7454554;7563972;9208202;9289438;9475200;9570600;9667476;9767297;9860483;9954524;10049824;10148700;10248496;10336328;10423014;10511058;10598408;10543649;10634380;10726576;10820808 -5101;'014;Eastern Africa;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;475;686;439;328.58;382.58 -5101;'014;Eastern Africa;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;133;298;154;152;140 -5101;'014;Eastern Africa;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5327;32544;85903;102355;64611;10027 -5101;'014;Eastern Africa;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;2870;6844;9392;5297;930 -5101;'014;Eastern Africa;1628;Wood fuel, non-coniferous;5516;Production;m3;98319110;100908825;103150453;105876041;108394556;111894459;115040679;117614703;120266781;122988208;124900382;124803369;126381838;129335904;133483810;136746303;139920599;144121790;146913830;150970092;154710581;158681126;161792010;167226002;172611410;175732299;178268035;181899270;186775918;191235674;197019336;203161266;203614668;209492771;212318764;215843697;220036225;222606001;223973566;233584091;239467255;241841397;245577561;249083367;256211183;262479960;265314585;269025038;272124918;275583551;280386183;283406558;285721081;288115141;291257097;293831597;296456037;299134369;301868804;303313256;305957751;308960958;312031193 -5101;'014;Eastern Africa;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;164;365;96;510;26;187;911 -5101;'014;Eastern Africa;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;121;47;275;22;197;1125 -5101;'014;Eastern Africa;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;304;337;337;337;1605;582 -5101;'014;Eastern Africa;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;84;102;102;102;812;470 -5101;'014;Eastern Africa;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;115;128;128;306;126;3477;3447;36;36;168;103;45.7;228;575;1095;1257;3643;3148;499;315;3227;461;1748;;;;;;; -5101;'014;Eastern Africa;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;11;12;12;20;12;76;76;2;2;35;253;251.5;203;495;201;270;1587;1568;331;243.24;764;303;502;;;;;;; -5101;'014;Eastern Africa;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;237;237;37;37;9487;75;75;75;2544;2544;2544;1647;2825;2600;2600;4551;1897;3515;6662;10840;6785;6222;;;;;;; -5101;'014;Eastern Africa;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;26;26;2;2;294;6;6;6;354;354;354;170;318;322;322;1810;345;1039;1486;2834;1767;1416;;;;;;; -5101;'014;Eastern Africa;1865;Industrial roundwood;5516;Production;m3;5015000;5093000;5408000;5660000;5947000;6095000;6456000;6822300;6980000;7446600;7710400;7116300;6902200;6527500;7013800;7154500;7921900;8324700;8678600;8911400;8996100;9342800;9196800;9540500;10118700;10379800;10884740;11120290;11779300;11877780;12155980;12779050;13338350;14126000;15226959;15483731;15843368;15702429;16023565;15901614;15602675;15717265;16410145;16666425;16055533;16575298;16950048;17720390;17697106;17884345;18084417;18160317;18689229;19418363;19661164;19935660;20944938;21054861;21054861;20991861;21059032;21510575;21510282 -5101;'014;Eastern Africa;1865;Industrial roundwood;5616;Import quantity;m3;14700;14300;11801;9701;10800;11300;8300;23300;25700;31900;70600;19100;13300;34300;7700;7600;11400;7400;17500;17700;18000;15800;17400;17300;17700;18290;16110;16053;27700;2526;24612;31833;9407;10397;7329;13792;8268;8990;33334;18789;14453;9794;17204;54055;54110;51821;43626;54520;56104;50213;45963;63362;73978;128698;34414;24633;50899;91502;191780;128101;109847;220282;218479 -5101;'014;Eastern Africa;1865;Industrial roundwood;5622;Import value;1000 USD;317;448;292;317;424;392;452;563;589;562;1110;536;487;3107;429;1082;2660;1355;3113;3679;3169;2687;2826;2654;2613;3767;3411;2614;5023;802;3543;4112;3145;1911;1527;5050;2212;2206;3552;2287;1948;2031;4817;4353;4358;5124;8104;16265;9963;10074;12534;20899;26092;46276;13496;8329;15214;18486;30730;26474;13780;21877;19794 -5101;'014;Eastern Africa;1865;Industrial roundwood;5916;Export quantity;m3;20400;25300;20200;28300;57500;62600;58500;57700;53400;58900;57300;40000;35400;34800;36350;12840;19200;17200;16100;16400;18300;39900;22600;19500;12500;8600;32500;9251;3854;25327;35657;30831;35311;39920;41166;26896;63477;178085;212289;141017;131213;100875;141625;237183;247027;222578;285449;219755;181694;274054;279647;377980;399449;831336;1316291;1357431;1158455;834830;624477;334172;880655;614735;374406 -5101;'014;Eastern Africa;1865;Industrial roundwood;5922;Export value;1000 USD;489;324;354;685;806;762;721;776;832;917;1138;1010;1140;1420;1278;1026;1795;1724;2624;4013;3986;3725;1973;2362;1256;1594;2381;3006;706;6970;5100;7966;3619;4631;6484;7304;16774;14331;20511;33136;26571;27527;38953;43709;44233;29449;115451;93333;79816;111800;111572;164226;197802.4;422750;370206;395702;428922;335797;301104;148249;243539;171957;94446 -5101;'014;Eastern Africa;1866;Industrial roundwood, coniferous;5516;Production;m3;378000;400000;406000;468000;526000;513000;609000;616300;640000;687600;748400;718300;743200;754500;779100;926500;1143900;1432500;1410500;1313600;1265400;1300900;1168100;1343300;1430700;1570800;1804900;1879200;1906300;2010800;2201000;2513400;2667800;3123100;3249000;3232300;3366100;3361600;3400600;3284300;3214800;3183000;3215500;3154500;3455400;3485198;3575948;3550290;3351013;3367218;3406979;3463779;3861801;3869223;3907101;3955861;4225107;4528030;4528030;4497030;4551032;4377718;4392681 -5101;'014;Eastern Africa;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;418;1655;864;743;949;5330;5130;5803;16258;1980;1654;1687;6736;24961;24961;30221;30507;35668;36417;12894;13186;22496;13465;52278;19793;8261;30944;50134;100761;71573;54320;131093;111196 -5101;'014;Eastern Africa;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;179;121;90;139;157;1571;1539;1319;1316;387;230;254;1460;1578;1578;2100;2494;2725;2391;1392;1477;5999;3487;20902;6818;3027;8245;9453;17910;14527;9981;12470;9676 -5101;'014;Eastern Africa;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1107;5231;5004;21720;24180;19131;1011;963;99737;124544;10096;9896;13515;40693;10554;20398;45183;26351;31801;23552;15699;18279;18295;9852;26815;15176;13063;15571;7124;43222;48830;42611;33793;16091 -5101;'014;Eastern Africa;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;544;510;1563;1679;1783;122;114;5195;6839;723;729;853;2094;481;1005;2404;1695;1933;1953;1212;2170;1240;2486;4558;4974;4667;3654;1926;8952;12260;11797;13523;2798 -5101;'014;Eastern Africa;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;418;1655;864;743;949;5330;5130;5803;16258;1980;1654;1687;6736;24961;24961;30221;30507;35668;36417;12894;13186;22496;13465;52278;19793;8261;30944;50134;100761;71573;54320;131093;111196 -5101;'014;Eastern Africa;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;179;121;90;139;157;1571;1539;1319;1316;387;230;254;1460;1578;1578;2100;2494;2725;2391;1392;1477;5999;3487;20902;6818;3027;8245;9453;17910;14527;9981;12470;9676 -5101;'014;Eastern Africa;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1107;5231;5004;21720;24180;19131;1011;963;99737;124544;10096;9896;13515;40693;10554;20398;45183;26351;31801;23552;15699;18279;18295;9852;26815;15176;13063;15571;7124;43222;48830;42611;33793;16091 -5101;'014;Eastern Africa;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;544;510;1563;1679;1783;122;114;5195;6839;723;729;853;2094;481;1005;2404;1695;1933;1953;1212;2170;1240;2486;4558;4974;4667;3654;1926;8952;12260;11797;13523;2798 -5101;'014;Eastern Africa;1867;Industrial roundwood, non-coniferous;5516;Production;m3;4637000;4693000;5002000;5192000;5421000;5582000;5847000;6206000;6340000;6759000;6962000;6398000;6159000;5773000;6234700;6228000;6778000;6892200;7268100;7597800;7730700;8041900;8028700;8197200;8688000;8809000;9079840;9241090;9873000;9866980;9954980;10265650;10670550;11002900;11977959;12251431;12477268;12340829;12622965;12617314;12387875;12534265;13194645;13511925;12600133;13090100;13374100;14170100;14346093;14517127;14677438;14696538;14827428;15549140;15754063;15979799;16719831;16526831;16526831;16494831;16508000;17132857;17117601 -5101;'014;Eastern Africa;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2452;24194;30178;8543;9654;6380;8462;3138;3187;17076;16809;12799;8107;10468;29094;29149;21600;13119;18852;19687;37319;32777;40866;60513;76420;14621;16372;19955;41368;91019;56528;55527;89189;107283 -5101;'014;Eastern Africa;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;771;3364;3991;3055;1772;1370;3479;673;887;2236;1900;1718;1777;3357;2775;2780;3024;5610;13540;7572;8682;11057;14900;22605;25374;6678;5302;6969;9033;12820;11947;3799;9407;10118 -5101;'014;Eastern Africa;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24220;30426;25827;13591;15740;22035;25885;62514;78348;87745;130921;121317;87360;100932;226629;226629;177395;259098;187954;158142;258355;261368;359685;389597;804521;1301115;1344368;1142884;827706;581255;285342;838044;580942;358315 -5101;'014;Eastern Africa;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6890;4556;7456;2056;2952;4701;7182;16660;9136;13672;32413;25842;26674;36859;43228;43228;27045;113756;91400;77863;110588;109402;162986;195316.4;418192;365232;391035;425268;333871;292152;135989;231742;158434;91648 -5101;'014;Eastern Africa;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23144;24150;4500;2200;2666;2466;175;2481;12491;13649;8949;6849;7627;8449;8504;9241;3247;2461;5879;10919;12555;17139;43396;46227;6669;10058;8131;25960;24852;7129;8337;17422;5929 -5101;'014;Eastern Africa;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3127;3323;2487;1461;684;1462;159;696;1350;1203;1029;1629;2431;1390;1395;1422;1666;1653;2636;2566;2079;3661;11829;8004;3576;3872;3332;5726;3926;3275;1931;3318;820 -5101;'014;Eastern Africa;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24220;30426;25827;13591;15740;12533;16515;56919;75720;43464;58431;56280;19564;25437;48668;48668;54169;246427;172032;142173;244470;255426;337459;384849;797783;1301115;1344368;1142884;827706;581255;285342;838044;572169;358315 -5101;'014;Eastern Africa;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6890;4556;7456;2056;2952;3515;6030;13976;8011;2644;7372;5832;3318;4967;6890;6890;8361;105137;84712;72491;105197;107324;153290;191072;412161;365232;391035;425268;333871;292152;135989;231742;154984;90604 -5101;'014;Eastern Africa;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2452;1050;6028;4043;7454;3714;5996;2963;706;4585;3160;3850;1258;2841;20645;20645;12359;9872;16391;13808;26400;20222;23727;17117;30193;7952;6314;11824;15408;66167;49399;47190;71767;101354 -5101;'014;Eastern Africa;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;771;237;668;568;311;686;2017;514;191;886;697;689;148;926;1385;1385;1602;3944;11887;4936;6116;8978;11239;10776;17370;3102;1430;3637;3307;8894;8672;1868;6089;9298 -5101;'014;Eastern Africa;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9502;9370;5595;2628;44281;72490;65037;67796;75495;177961;177961;123226;12671;15922;15969;13885;5942;22226;4748;6738;0;0;0;0;0;0;0;8773;0 -5101;'014;Eastern Africa;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1186;1152;2684;1125;11028;25041;20010;23356;31892;36338;36338;18684;8619;6688;5372;5391;2078;9696;4244.4;6031;0;0;0;0;0;0;0;3450;1044 -5101;'014;Eastern Africa;1868;Sawlogs and veneer logs;5516;Production;m3;1447000;1447000;1687000;1841000;1994000;2019000;2154000;2403300;2447000;2801600;2958400;2249300;1921200;1679500;1936800;1884500;2226900;2226000;2185900;2392800;2289500;2139900;1887900;2011400;2162200;2223400;2323540;2408040;2441200;2566980;2662780;2867950;2947650;3517800;3759059;3745381;3931968;3900079;3986265;3829314;3739375;3742865;3874845;3902125;4200233;4280298;4656148;5438090;5411806;5608511;5805872;6789972;7270554;7618088;7786556;7985810;8982395;8951018;8951018;8923018;8984811;9436074;9431037 -5101;'014;Eastern Africa;1868;Sawlogs and veneer logs;5616;Import quantity;m3;6400;5200;4501;5001;6400;6400;6200;6000;6400;7900;7500;7600;7800;23300;7000;6100;10200;5800;14400;12900;13100;12000;13900;14000;13800;14590;12110;13153;22000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5101;'014;Eastern Africa;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;112;111;89;107;143;151;156;144;159;270;288;331;353;2841;379;845;2222;888;2306;2695;1618;1406;1494;1544;1421;2079;1739;1621;4147;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5101;'014;Eastern Africa;1868;Sawlogs and veneer logs;5916;Export quantity;m3;4900;3000;3800;11200;6700;5500;5500;7300;11100;13800;16500;10400;10000;8900;8850;9900;9500;8600;10900;12000;8900;5400;2300;5800;4800;5000;5700;8251;2854;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5101;'014;Eastern Africa;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;357;163;230;554;457;341;323;392;524;584;830;702;915;1124;875;961;1123;1080;2017;3447;2824;1810;425;1367;840;1420;1853;2916;616;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5101;'014;Eastern Africa;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;361000;383000;389000;445000;503000;486000;572000;579300;603000;650600;706400;676300;703200;670500;615100;757500;894900;942500;913000;942600;876600;913400;739000;840000;889700;952400;1090600;1120100;1130700;1227100;1390900;1495400;1653200;2161900;2223500;2187000;2350800;2349600;2383600;2264300;2113300;2108900;2215000;2120200;2384000;2409698;2501548;2487490;2289013;2295318;2344979;2703079;3129101;3136733;3171191;3216215;3474800;3636423;3636423;3613423;3667425;3494111;3509074 -5101;'014;Eastern Africa;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;100;200;1;1;200;200;200;0;0;0;0;0;0;7600;100;1400;4700;2200;9800;2400;8700;8500;8500;8500;8500;11086;8410;8400;8400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5101;'014;Eastern Africa;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;2;4;1;2;4;4;4;0;0;0;0;0;0;1619;42;336;1134;361;1331;510;1119;1058;1058;1058;1058;1513;1021;1019;1019;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5101;'014;Eastern Africa;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;1086000;1064000;1298000;1396000;1491000;1533000;1582000;1824000;1844000;2151000;2252000;1573000;1218000;1009000;1321700;1127000;1332000;1283500;1272900;1450200;1412900;1226500;1148900;1171400;1272500;1271000;1232940;1287940;1310500;1339880;1271880;1372550;1294450;1355900;1535559;1558381;1581168;1550479;1602665;1565014;1626075;1633965;1659845;1781925;1816233;1870600;2154600;2950600;3122793;3313193;3460893;4086893;4141453;4481355;4615365;4769595;5507595;5314595;5314595;5309595;5317386;5941963;5921963 -5101;'014;Eastern Africa;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;6300;5000;4500;5000;6200;6200;6000;6000;6400;7900;7500;7600;7800;15700;6900;4700;5500;3600;4600;10500;4400;3500;5400;5500;5300;3504;3700;4753;13600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5101;'014;Eastern Africa;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;110;107;88;105;139;147;152;144;159;270;288;331;353;1222;337;509;1088;527;975;2185;499;348;436;486;363;566;718;602;3128;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5101;'014;Eastern Africa;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;4900;3000;3800;11200;6700;5500;5500;7300;11100;13800;16500;10400;10000;8900;8850;9900;9500;8600;10900;12000;8900;5400;2300;5800;4800;5000;5700;8251;2854;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5101;'014;Eastern Africa;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;357;163;230;554;457;341;323;392;524;584;830;702;915;1124;875;961;1123;1080;2017;3447;2824;1810;425;1367;840;1420;1853;2916;616;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5101;'014;Eastern Africa;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;646000;646000;633000;737000;718000;626000;668000;716000;713900;712900;701300;701300;628400;628400;431600;404400;404400;404400;404400;544660;691000;691000;684000;689378;689658;694402 -5101;'014;Eastern Africa;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;577000;570000;563000;645000;618000;534000;568000;600000;602900;601900;590300;590300;537400;537400;341400;313400;313400;313400;313400;453660;600000;600000;593000;593000;593000;593000 -5101;'014;Eastern Africa;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69000;76000;70000;92000;100000;92000;100000;116000;111000;111000;111000;111000;91000;91000;90200;91000;91000;91000;91000;91000;91000;91000;91000;96378;96658;101402 -5101;'014;Eastern Africa;1870;Pulpwood and particles (1961-1997);5516;Production;m3;;;;;;;;;;;;;;46000;126000;163000;227000;467000;496000;346000;358000;362000;386000;453000;428000;408000;592000;605000;621000;621000;659000;895000;748000;616000;667500;662000;631000;;;;;;;;;;;;;;;;;;;;;;;;;; -5101;'014;Eastern Africa;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;;;;;;46000;126000;131000;211000;451000;463000;330000;343000;325000;362000;424000;391000;377000;379000;419000;435000;435000;451000;649000;634000;565000;608500;605000;578000;;;;;;;;;;;;;;;;;;;;;;;;;; -5101;'014;Eastern Africa;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;32000;16000;16000;33000;16000;15000;37000;24000;29000;37000;31000;213000;186000;186000;186000;208000;246000;114000;51000;59000;57000;53000;;;;;;;;;;;;;;;;;;;;;;;;;; -5101;'014;Eastern Africa;1871;Other industrial roundwood;5516;Production;m3;3568000;3646000;3721000;3819000;3953000;4076000;4302000;4419000;4533000;4645000;4752000;4867000;4981000;4802000;4951000;5107000;5468000;5631700;5996700;6172600;6348600;6840900;6922900;7076100;7528500;7748400;7969200;8107250;8717100;8689800;8834200;9016100;9642700;9992200;10800400;11076350;11280400;11156350;11391300;11439300;11126300;11256400;11909300;12096300;11139300;11581100;11581000;11581000;11584000;11647434;11650145;10938745;11014275;11395875;11470208;11545450;11417883;11412843;11412843;11384843;11384843;11384843;11384843 -5101;'014;Eastern Africa;1871;Other industrial roundwood;5616;Import quantity;m3;8300;9100;7300;4700;4400;4900;2100;17300;19300;24000;63100;11500;5500;11000;700;1500;1200;1600;3100;4800;4900;3800;3500;3300;3900;3700;4000;2900;5700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5101;'014;Eastern Africa;1871;Other industrial roundwood;5622;Import value;1000 USD;205;337;203;210;281;241;296;419;430;292;822;205;134;266;50;237;438;467;807;984;1551;1281;1332;1110;1192;1688;1672;993;876;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5101;'014;Eastern Africa;1871;Other industrial roundwood;5916;Export quantity;m3;15500;22300;16400;17100;50800;57100;53000;50400;42300;45100;40800;29600;25400;25900;27500;2940;9700;8600;5200;4400;9400;34500;20300;13700;7700;3600;26800;1000;1000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5101;'014;Eastern Africa;1871;Other industrial roundwood;5922;Export value;1000 USD;132;161;124;131;349;421;398;384;308;333;308;308;225;296;403;65;672;644;607;566;1162;1915;1548;995;416;174;528;90;90;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5101;'014;Eastern Africa;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;17000;17000;17000;23000;23000;27000;37000;37000;37000;37000;42000;42000;40000;38000;38000;38000;38000;39000;34500;41000;45800;62500;67100;79300;150000;241400;335300;340100;340600;348700;359100;369000;380600;396200;417000;440300;437300;435000;447000;457000;456500;456100;466500;466300;471400;472600;472500;472500;471700;534500;524600;419300;419300;419090;422510;426246;296647;291607;291607;290607;290607;290607;290607 -5101;'014;Eastern Africa;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;3551000;3629000;3704000;3796000;3930000;4049000;4265000;4382000;4496000;4608000;4710000;4825000;4941000;4764000;4913000;5069000;5430000;5592700;5962200;6131600;6302800;6778400;6855800;6996800;7378500;7507000;7633900;7767150;8376500;8341100;8475100;8647100;9262100;9596000;10383400;10636050;10843100;10721350;10944300;10982300;10669800;10800300;11442800;11630000;10667900;11108500;11108500;11108500;11112300;11112934;11125545;10519445;10594975;10976785;11047698;11119204;11121236;11121236;11121236;11094236;11094236;11094236;11094236 -5101;'014;Eastern Africa;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;8300;9100;7300;4700;4400;4900;2100;17300;19300;24000;63100;11500;5500;11000;700;1500;1200;1600;3100;4800;4900;3800;3500;3300;3900;3700;4000;2900;5700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5101;'014;Eastern Africa;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;205;337;203;210;281;241;296;419;430;292;822;205;134;266;50;237;438;467;807;984;1551;1281;1332;1110;1192;1688;1672;993;876;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5101;'014;Eastern Africa;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;15500;22300;16400;17100;50800;57100;53000;50400;42300;45100;40800;29600;25400;25900;27500;2940;9700;8600;5200;4400;9400;34500;20300;13700;7700;3600;26800;1000;1000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5101;'014;Eastern Africa;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;132;161;124;131;349;421;398;384;308;333;308;308;225;296;403;65;672;644;607;566;1162;1915;1548;995;416;174;528;90;90;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5101;'014;Eastern Africa;1630;Wood charcoal;5510;Production;t;2106822;2176354;2245398;2614585;2708352;2767068;2874032;2947061;3074570;3144072;3234409;3279353;3410290;3541205;3625320;3739692;3919613;4081100;4233202;4415425;4597262;4801700;4971387;5253726;5539090;5747451;5888817;6110898;6361072;6576719;6876887;6345930;6473026;6821121;7890565;8109558;8319777;8507881;8375389;8371915;8568766;9014258;9344523;9631318;9931853;10275914;10536935;10939198;11245606;11685391;11985886;12470793;13451803;13779065;13987935;14258998;14540078;14832355;15031928;15259758;15835148;16826800;17085996 -5101;'014;Eastern Africa;1630;Wood charcoal;5610;Import quantity;t;1200;700;300;2200;17700;15300;20900;14200;13400;11700;7800;6800;2400;900;100;100;100;100;100;100;100;200;200;200;200;200;0;0;0;0;0;260;315;503;676;676;1968;1716;1718;1697;675;675;689;689;689;707;909;990;937;6143;1865;1241;1991.01;2073.01;2047.03;1255;2123;1413;2105;1170;2564.93;2431;1310 -5101;'014;Eastern Africa;1630;Wood charcoal;5622;Import value;1000 USD;55;43;43;60;309;264;356;299;320;278;189;176;72;47;24;24;24;24;24;24;211;345;345;345;345;345;0;0;0;0;0;164;192;282;204;204;461;271;272;258;203;203;218;218;218;223;255;339;446;1191;438;566;808.2;1525.02;1129.01;694;1046;792;964;546;1203;892;661 -5101;'014;Eastern Africa;1630;Wood charcoal;5910;Export quantity;t;31000;5400;5100;8200;21600;18700;23400;23400;35700;47500;58200;11000;27600;25100;7700;7700;7700;7700;7700;;;;;;;;;;;;;1133;5067;15356;128;34728;32094;17202;17777;80232;113269;114988;160676;154417;154684;193770;139426;192363;224911;227929;299208;217560;10699;101263.1;64210.1;58336;48564;11713;11002;5462;5588;7583;8094 -5101;'014;Eastern Africa;1630;Wood charcoal;5922;Export value;1000 USD;952;193;218;258;429;375;413;561;1122;1531;2203;318;925;1082;294;338;385;385;442;;;;;;;;;;;;;388;1342;3615;52;8211;6084;3093;3250;14363;24145;23938;30175;25533;25980;36196;31463;29688;37817;36514;44793;37460;2563;19695;16065;19526;15753;2934;2695;1698;1705;2178;2264 -5101;'014;Eastern Africa;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85700;88300;92300;92300;102800;98330;106945;136900;150300;145600;147000;143460;144852;143532;142952;137904;136150;139110;138587;198051;273051;273051;271051;302918;300641;300641 -5101;'014;Eastern Africa;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3181;2438;1888;2138;1838;2138;7941;7591;6709;6412;6225;6958;3413;3803.06;3286.2;3168;4496;3618;4062;3798;3852;5876;6252;2694;2351;5109 -5101;'014;Eastern Africa;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;451;225;91;147;75;136;331;316;369;453;543;1341;1073;1297.65;979;998.34;1729.04;810.04;869;1127;810;1302;1107;827;709;794 -5101;'014;Eastern Africa;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;6080;45;45;47;1181;8613;8613;3565;1379;2996;1642;3294;4812;2595;85281;96078;79718;2580;65533;1649;1623;1363;2010.64;2547;3563 -5101;'014;Eastern Africa;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;176;1;1;2;95;425;425;129;221;348;311;538;1699;405;9919;11632;9295;659;3968;435;450;286;264;183;674 -5101;'014;Eastern Africa;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10200;10200;10200;10200;21000;21000;29500;25500;36800;32600;32600;30600;31100;30600;30400;25652;24298;27258;26580;83586;158586;158586;158586;190453;188176;188176 -5101;'014;Eastern Africa;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;582;582;582;582;2082;1343;793;1043;743;1031;1532;1182;1262;1009;1244;1884;1489;1473.06;1567.2;1307;1645;1381;1318;1490;784;2363;4398;1009;943;927 -5101;'014;Eastern Africa;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;25;25;25;25;402;178;44;100;28;48;77;62;77;174;265;993;716;659.65;627;558.04;1079.04;550.04;530;784;196;530;665;586;459;467 -5101;'014;Eastern Africa;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;12;12;12;6080;45;45;47;661;8268;8268;2883;627;1876;324;1719;2827;2206;82975;90517;79162;1160;63157;814;788;1209;1856.64;1755;2939 -5101;'014;Eastern Africa;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;176;1;1;2;51;406;406;101;103;219;105;335;1399;307;9130;10972;9132;249;3562;213;228;193;171;153;545 -5101;'014;Eastern Africa;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;10000;30000;53000;50000;65500;73500;73500;73500;73500;73500;75500;78100;82100;82100;81800;77330;77445;111400;113500;113000;114400;112860;113752;112932;112552;112252;111852;111852;112007;114465;114465;114465;112465;112465;112465;112465 -5101;'014;Eastern Africa;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;722;2658;1990;1156;1116;1134;1099;1095;1095;1095;1095;1107;6409;6409;5447;5403;4981;5074;1924;2330;1719;1861;2851;2237;2744;2308;3068;3513;1854;1685;1408;4182 -5101;'014;Eastern Africa;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;93;66;50;49;50;49;47;47;47;47;88;254;254;292;279;278;348;357;638;352;440.3;650;260;339;343;614;772;442;241;250;327 -5101;'014;Eastern Africa;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;516;182;182;431;401;401;16;0;0;0;0;520;345;345;682;752;1120;1318;1575;1985;389;2306;5561;556;1420;2376;835;835;154;154;792;624 -5101;'014;Eastern Africa;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;6;6;18;17;17;2;0;0;0;0;44;19;19;28;118;129;206;203;300;98;789;660;163;410;406;222;222;93;93;30;129 -5101;'014;Eastern Africa;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;35000;46000;46000;46000;46000;46000;46000 -5101;'014;Eastern Africa;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;541.7;929;83;475;475;475;1046;1075;1888;2975.38;1754.11 -5101;'014;Eastern Africa;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;182.3;340;30;205;205;205;399;303;494;788.91;921.73 -5101;'014;Eastern Africa;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;295;99;98;330.82;532.82 -5101;'014;Eastern Africa;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;12;12;55.33;120.33 -5101;'014;Eastern Africa;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;23000;29000;29000;29000;29000;29000;29000 -5101;'014;Eastern Africa;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;536;910;66;0;0;0;202;213;249;367.27;384 -5101;'014;Eastern Africa;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;173;311;17;0;0;0;19;27;36;157.19;125 -5101;'014;Eastern Africa;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;63;63;234;441 -5101;'014;Eastern Africa;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;41;106 -5101;'014;Eastern Africa;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;12000;17000;17000;17000;17000;17000;17000 -5101;'014;Eastern Africa;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;5.7;19;17;475;475;475;844;862;1639;2608.11;1370.11 -5101;'014;Eastern Africa;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;9.3;29;13;205;205;205;380;276;458;631.73;796.73 -5101;'014;Eastern Africa;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;232;36;35;96.82;91.82 -5101;'014;Eastern Africa;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;2;2;14.33;14.33 -5101;'014;Eastern Africa;1872;Sawnwood;5516;Production;m3;507200;545500;581200;644200;693700;1387000;1231300;1279800;820300;844800;885700;856000;841200;745400;956500;936100;1037700;954700;978800;983900;939800;884700;805500;870000;877150;905900;986650;1013000;1030750;1025000;1082430;1058790;1227030;1378670;1456100;1402600;1408600;1374200;1483200;1382300;1283800;1231300;1248750;1252050;1060250;1045850;1060050;1154400;1260450;1244390;1539220;1608141;1773055;1914268;1950377;1927069;2230805;2242548;2296188;2285188;2372587;2411896;2343032 -5101;'014;Eastern Africa;1872;Sawnwood;5616;Import quantity;m3;189150;190500;161150;180850;200850;238750;238250;262350;296850;266850;303450;250700;225850;192410;185550;98900;87000;81200;94300;91300;105800;88300;83600;75800;89288;93744;106432;142328;176912;159379;134379;160497;119141;109632;125420;168344;133838;157819;159806;153512;163024;142179;143421;195139;196227;187746;226118;210129;191935;221311;208887;298099;376524;432865;511033;452127;333299;516641;656157;621636;937262;827640;778576 -5101;'014;Eastern Africa;1872;Sawnwood;5622;Import value;1000 USD;8268;8188;8040;9400;9499;10890;11749;12873;15546;14016;16034;13668;14685;18451;19403;13882;15904;14595;18858;19713;25498;19388;18624;16000;18627;22495;25867;38033;35917;39584;39623;51303;40828;47510;55705;66384;54930;57952;58936;54838;55358;53643;56469;66782;65992;66577;88729;80114;76954;82070;78978;98627;124462;144375;186135;127543;118234;167195;191348;170494;209001;187820;156841 -5101;'014;Eastern Africa;1872;Sawnwood;5916;Export quantity;m3;166050;163950;183500;252200;256550;225350;207150;220500;225200;218700;190800;167200;181500;167000;148100;147400;143350;132900;112500;49200;48500;34000;22700;16400;23700;24600;29359;18733;13377;34046;51146;91529;25088;65573;112331;168535;177376;183445;166011;149742;69582;56464;169377;167190;76590;112917;179353;260604;324964;307354;330872;287194;303677;331341;240311;197637;223114;262822;365943;420845;443228;406290;414667 -5101;'014;Eastern Africa;1872;Sawnwood;5922;Export value;1000 USD;8140;7278;8155;12007;12166;10606;10416;11676;13365;12619;11216;10245;13628;15279;14301;16635;14902;13324;13285;12637;12268;9127;5065;3143;4960;4028;4945;4057;3848;9728;9597;16660;7937;14412;24278;31632;38087;38842;31707;35285;16930;11183;26886;33458;18592;30498;50025;77615;80460;108693;122803;123698;136771;146588;98631;72411;80127;98385;114361;112825;127601;139062;142833 -5101;'014;Eastern Africa;1632;Sawnwood, coniferous;5516;Production;m3;163100;187650;199450;221550;239850;585150;515100;516250;280750;283250;325350;335050;344000;339200;390500;454700;501000;441300;453100;450000;433400;413900;358250;434500;419100;445250;530250;547175;548975;565000;622000;590000;855300;1034300;1033800;972300;923300;885000;905000;853000;754000;725700;730000;734300;654500;638300;638700;697500;706800;615800;669600;711124;899247;899524;907115;880858;927665;914329;934659;1034659;1079266;1030937;957783 -5101;'014;Eastern Africa;1632;Sawnwood, coniferous;5616;Import quantity;m3;103450;108300;82050;88000;97100;119600;118650;132800;167350;150050;177300;152450;140450;96060;109050;33350;23650;21850;26500;31900;25550;24600;21000;25600;20988;21972;10059;28405;29012;31498;32998;44937;35113;27410;32408;73343;54945;48969;56300;59480;62098;45904;51496;85379;86234;73026;73171;95145;97266;86330;85762;184882;238971;263245;345746;316832;202348;363695;415433;384074;419593;350633;341079 -5101;'014;Eastern Africa;1632;Sawnwood, coniferous;5622;Import value;1000 USD;3900;4122;3383;3709;4090;4681;5530;6030;8818;7801;8947;8277;9184;8141;11169;5470;4527;3607;4755;5353;5267;4514;4174;5035;4334;4821;2118;6908;10033;7991;7420;11452;8479;9049;8695;17814;12747;12676;13298;13772;13563;10975;13480;19534;18852;18829;26294;28873;29996;25842;24093;45129;58052;66558;99008;66498;53233;91255;98232;79753;110844;94369;79585 -5101;'014;Eastern Africa;1632;Sawnwood, coniferous;5916;Export quantity;m3;17800;22100;23750;27800;30400;30950;32100;40350;42500;42450;33300;18400;21200;24200;23100;32600;37150;32100;20500;19000;22100;9250;6800;5400;5400;2900;12459;6370;5840;21351;35551;70388;8822;51553;79479;151239;152968;150756;112182;114361;31103;24817;118089;125235;34635;46511;89396;123750;182807;96276;66561;71513;49413;64396;90692;69291;72176;61781;104578;224582;206138;128718;124030 -5101;'014;Eastern Africa;1632;Sawnwood, coniferous;5922;Export value;1000 USD;809;989;1060;1437;1433;1336;1465;1721;1891;1973;1710;948;1294;1581;1533;3202;3973;3136;2881;4072;3936;2225;1165;884;648;329;1470;850;763;3900;3211;8070;1611;8887;15369;26088;30676;29342;22971;24786;6661;3025;14519;20637;5771;8201;17027;26419;27150;22902;14954;17246;12433;16190;22185;14187;11350;8505;18627;48258;53860;41619;37873 -5101;'014;Eastern Africa;1633;Sawnwood, non-coniferous;5516;Production;m3;344100;357850;381750;422650;453850;801850;716200;763550;539550;561550;560350;520950;497200;406200;566000;481400;536700;513400;525700;533900;506400;470800;447250;435500;458050;460650;456400;465825;481775;460000;460430;468790;371730;344370;422300;430300;485300;489200;578200;529300;529800;505600;518750;517750;405750;407550;421350;456900;553650;628590;869620;897017;873808;1014744;1043262;1046211;1303140;1328219;1361529;1250529;1293321;1380959;1385249 -5101;'014;Eastern Africa;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;85700;82200;79100;92850;103750;119150;119600;129550;129500;116800;126150;98250;85400;96350;76500;65550;63350;59350;67800;59400;80250;63700;62600;50200;68300;71772;96373;113923;147900;127881;101381;115560;84028;82222;93012;95001;78893;108850;103506;94032;100926;96275;91925;109760;109993;114720;152947;114984;94669;134981;123125;113217;137553;169620;165287;135295;130951;152946;240724;237562;517669;477007;437497 -5101;'014;Eastern Africa;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;4368;4066;4657;5691;5409;6209;6219;6843;6728;6215;7087;5391;5501;10310;8234;8412;11377;10988;14103;14360;20231;14874;14450;10965;14293;17674;23749;31125;25884;31593;32203;39851;32349;38461;47010;48570;42183;45276;45638;41066;41795;42668;42989;47248;47140;47748;62435;51241;46958;56228;54885;53498;66410;77817;87127;61045;65001;75940;93116;90741;98157;93451;77256 -5101;'014;Eastern Africa;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;148250;141850;159750;224400;226150;194400;175050;180150;182700;176250;157500;148800;160300;142800;125000;114800;106200;100800;92000;30200;26400;24750;15900;11000;18300;21700;16900;12363;7537;12695;15595;21141;16266;14020;32852;17296;24408;32689;53829;35381;38479;31647;51288;41955;41955;66406;89957;136854;142157;211078;264311;215681;254264;266945;149619;128346;150938;201041;261365;196263;237090;277572;290637 -5101;'014;Eastern Africa;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;7331;6289;7095;10570;10733;9270;8951;9955;11474;10646;9506;9297;12334;13698;12768;13433;10929;10188;10404;8565;8332;6902;3900;2259;4312;3699;3475;3207;3085;5828;6386;8590;6326;5525;8909;5544;7411;9500;8736;10499;10269;8158;12367;12821;12821;22297;32998;51196;53310;85791;107849;106452;124338;130398;76446;58224;68777;89880;95734;64567;73741;97443;104960 -5101;'014;Eastern Africa;1634;Veneer sheets;5516;Production;m3;;1700;1700;2300;2600;2800;4100;4600;1600;1800;1100;1100;1100;1100;7100;4400;5000;5600;7300;7300;9700;10700;8600;7800;18100;18300;27500;29600;27200;34200;47000;18400;18150;14400;14400;14800;15500;15800;15800;15800;15800;109600;69600;69600;85600;84600;84600;84600;84600;84600;84600;84600;84600;96778;121023;137222;131600;141790;153790;168790;198790;181385;319159 -5101;'014;Eastern Africa;1634;Veneer sheets;5616;Import quantity;m3;400;300;500;600;1300;1300;1400;2300;1700;1700;1800;3100;2800;3400;6400;7000;3500;6800;3000;5300;5000;5000;4800;4700;4700;2436;2301;2330;2309;2749;2749;3573;503;476;6811;6904;9383;9943;9150;6971;6934;6910;8476;8038;8200;7312;7539;11051;7753;7880;8945;8876;12684;11458;10048;7836;8826;9588;8708;6531;6126;7997;6924 -5101;'014;Eastern Africa;1634;Veneer sheets;5622;Import value;1000 USD;132;94;124;165;316;316;365;408;399;400;450;516;546;889;1487;1993;1237;2339;1762;3119;4334;3858;3345;3259;3259;1317;1260;1269;1282;1437;1437;2975;415;480;4140;4115;5188;5266;4841;4507;4633;4405;5211;5400;5534;4657;5490;9771;5451;6453;6817;6888;10104;9168;6488;5578;5539;6146;5699;5490;6241;8798;5044 -5101;'014;Eastern Africa;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108;300;3;207;207;857;2542;2393;2497;297;297;432;574;574;548;804;640;496;688;1398;1277;2527;2046;2517;6854;7473;6950;17954;31077;58511;105121;226089 -5101;'014;Eastern Africa;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105;183;10;210;210;519;1171;1168;1345;327;327;423;456;456;568;920;719;711;745;907;1346;1120;696;702;1207;1336;1444;1952;5408;13301;34371;57306 -5101;'014;Eastern Africa;1873;Wood-based panels;5516;Production;m3;5800;7400;7600;12100;15100;20100;20600;22600;29700;36600;38348;48864;56474;62991;56528;58697;77974;79474;84874;100965;89212;97697;89823;91573;106573;103288;115703;121023;142023;139500;180500;161500;151160;142760;141660;141160;152660;169160;185060;182768;231750;215204;235462;232578;221418;217932;214132;214332;170393;209014;216886;219063;227316;244211;265508;321534;367449;414800;464800;522003;695165;1044066;1072359 -5101;'014;Eastern Africa;1873;Wood-based panels;5616;Import quantity;m3;13200;14600;17200;23200;25400;35220;44242;79669;78288;61663;69010;45189;38193;46935;50554;37605;30705;38305;30805;27805;32305;28405;30705;32305;34772;37278;52577;50435;42577;45733;46293;56240;43701;84389;70243;74897;69397;90958;222941;105109;143577;147800;183956;201113;196687;203168;185957;164050;189478;244358;259543;291655;328458;388315;393495;487520;550763;543903;648074;611719;676360.01;717787.77;790282 -5101;'014;Eastern Africa;1873;Wood-based panels;5622;Import value;1000 USD;1787;2184;2316;3614;3648;4658;5639;6020;6568;8204;9869;6447;8021;11050;8721;7443;8401;11686;11224;11417;9216;9781;9575;9522;8781;8232;15025;17860;17809;21141;21540;26331;25102;26113;24545;29184;25951;30691;34202;33092;35972;34348;45641;49056;49962;62289;66893;96868;95562;105708;128744;143948;171619;215631;220202;213577;219517;237508;243154;225521;261162.59;289388.05;285705 -5101;'014;Eastern Africa;1873;Wood-based panels;5916;Export quantity;m3;1048;1348;2006;5481;8148;7153;6453;8353;9553;8005;6305;4705;5105;5021;4626;9000;6250;6050;4800;2700;4600;5900;6030;8830;8666;4930;5150;4200;2908;2311;2111;13613;12724;3882;14341;20511;20523;20694;29221;28616;12315;14676;23836;45371;45371;43688;42242;44251;33024;45846;37725;42647;51508;50294.51;53839;87309;107044;136634;161802;199538;281350.94;288580.3;311649.3 -5101;'014;Eastern Africa;1873;Wood-based panels;5922;Export value;1000 USD;233;280;410;929;1350;1631;1497;1805;2192;2043;1904;1200;1395;1405;1159;2966;2361;2431;2211;1829;2599;2755;2342;3162;3067;1752;1971;1553;898;1029;923;5552;5502;1561;4892;6635;6640;6702;6141;5977;2042;2787;7293;11629;11629;15227;17834;23307;16540;23376;18297;26891;25862;20123.22;20140;30130;36767;54264;59053;72664;90613.64;88405.52;90560.52 -5101;'014;Eastern Africa;1640;Plywood and LVL;5516;Production;m3;5800;7400;7600;10100;13100;15600;15600;17000;22100;24100;25700;31300;36900;41100;35600;35100;42800;46900;50200;49991;49238;46223;38423;39373;43073;40348;38273;51523;60623;58800;102600;87500;77160;64760;64760;64360;66360;69060;67260;66768;110750;97604;114762;114778;114118;110632;110632;110632;117432;142932;143932;142932;143185;143080;165000;202921;203409;225720;275720;333923;398923;548044;552722 -5101;'014;Eastern Africa;1640;Plywood and LVL;5616;Import quantity;m3;5100;6900;10000;13200;14300;20000;27600;26900;29900;38200;34200;33600;26900;31600;32300;19700;21100;30000;24600;21700;14400;17300;18800;21000;21017;20559;37774;35331;37708;38262;38622;41383;29053;70036;48258;47128;43430;53887;53119;52426;64227;60942;73901;56482;57007;82266;76201;72042;79134;101953;124886;130444;151892;164877;160703;223870;223160;284583;288806;317135;377189;429066;451632 -5101;'014;Eastern Africa;1640;Plywood and LVL;5622;Import value;1000 USD;937;1348;1522;2462;2448;3169;3993;4075;4840;6437;6298;4885;6170;7830;7191;5628;6834;10178;9887;10124;6114;7512;7609;7972;7057;6540;13199;15979;16767;18775;19337;20932;20311;20426;17997;22908;19250;22504;22395;22204;22977;21936;25185;22675;24066;34944;35437;55660;52084;46133;59669;64543;82940;101758;97299;107635;90794;118643;119918;122241;142461;162187;161185 -5101;'014;Eastern Africa;1640;Plywood and LVL;5916;Export quantity;m3;1048;1348;2006;5481;8148;7048;5848;7348;8248;6500;5100;3600;3900;3500;3600;5900;4500;4400;3100;1600;3100;5200;5200;6000;5900;3700;4450;3500;2308;1711;1511;10127;10508;1555;10234;11904;11911;12024;3713;6276;2075;4252;6205;10493;10493;13355;17295;24599;13543;25824;17656;17102;16968;13751.51;14968;39605;35707;60234;100463;141597;215683;196459;193784 -5101;'014;Eastern Africa;1640;Plywood and LVL;5922;Export value;1000 USD;233;280;410;929;1350;1587;1424;1715;2072;1919;1767;1040;1176;1053;1015;1969;1593;1833;1557;1352;1924;2355;1986;2592;2505;1361;1800;1350;737;868;762;4493;4924;916;3327;3994;3996;4041;2105;2895;909;1615;4084;3595;3595;6219;12033;16798;9048;12096;9615;13824;10602;6918.22;6546;14319;12984;24961;33025;48678;62867;56005;54222 -5101;'014;Eastern Africa;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;663 -5101;'014;Eastern Africa;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;294 -5101;'014;Eastern Africa;1646;Particle board and OSB (1961-1994);5516;Production;m3;;;;2000;2000;4500;5000;5600;7600;8500;7700;8300;10100;10100;8400;9700;23200;20400;22000;34000;22900;36400;36500;34200;45000;47640;56430;50000;60900;60900;58700;52300;53800;60300;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5101;'014;Eastern Africa;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;4100;3500;3100;1200;1500;2500;2700;5500;4700;4300;2800;1100;1100;1000;1500;1400;1600;1200;1300;1100;800;1400;1100;900;1150;1200;1600;1600;1489;4092;4292;8481;5933;6075;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5101;'014;Eastern Africa;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;360;308;281;104;143;196;204;329;347;314;294;236;196;207;346;410;521;488;588;581;394;631;390;304;497;645;983;895;729;2050;1887;3513;2422;2274;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5101;'014;Eastern Africa;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;500;900;1200;1400;1100;1000;1100;1100;500;2600;1500;1400;1600;1000;800;200;400;2400;2336;800;200;200;100;100;100;188;192;302;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5101;'014;Eastern Africa;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;41;63;93;97;107;139;192;254;88;861;585;420;607;430;319;102;89;303;295;124;67;99;57;57;57;83;84;151;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5101;'014;Eastern Africa;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61200;60600;70100;86900;100600;98600;102000;101300;101300;101300;90800;90800;90800;90800;40061;53182;55054;56231;56231;76231;76231;76231;98540;113580;113880;112880;98467;96190;87674 -5101;'014;Eastern Africa;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11083;11532;9343;12750;39422;20959;26643;23657;44949;52828;59303;45489;28907;31721;37100;58147;51718;57930;81991;75190;72414;78557;74556;74556;91958;78493;107694.29;111493;133123 -5101;'014;Eastern Africa;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3569;3765;3316;3791;5393;5233;6610;5368;10214;9700;11331;11401;8133;12909;16617;22752;24603;24478;34821;32977;26836;27811;28093;28093;28105;24890;42495.3;48774;44752 -5101;'014;Eastern Africa;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4107;8607;8612;8630;2160;3592;3592;3776;8000;22360;22360;18951;17570;12889;12760;13204;11470;6776;6158;2953;8373;9371;8864;8864;2366;6574;7324.29;2281.3;14740.3 -5101;'014;Eastern Africa;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1565;2641;2644;2645;450;564;515;554;1362;3781;3781;5027;3432;3794;4340;7455;4081;2871;2860;1573;2854;2837;2583;2583;552;1789;1666;794.52;2495.52 -5101;'014;Eastern Africa;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -5101;'014;Eastern Africa;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1104;13;13;36;358;1603;1818;4510;8596;4396;2553;3523;3491;2292;2026;1867;1493;1246;1493;1077;1204;1865;3744.18;2265;1751 -5101;'014;Eastern Africa;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;3;3;8;164;263;298;1504;2787;1787;1014;1916;1736;1241;1064;1500;1466;859;598;639;433;801;1380.19;1097;715 -5101;'014;Eastern Africa;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;14;2;2;2;110;108;108;15;4;4;0;57;51;53;12;53;71 -5101;'014;Eastern Africa;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;14;8;8;8;96;89;89;18;4;4;0;64;58;56;4;11;12 -5101;'014;Eastern Africa;1874;Fibreboard;5516;Production;m3;;;;;;;;;;4000;4948;9264;9474;11791;12528;13897;11974;12174;12674;16974;17074;15074;14900;18000;18500;15300;21000;19500;20500;19800;19200;21700;20200;17700;15700;16200;16200;13200;17200;17400;19000;16300;19400;16500;16500;16500;12700;12900;12900;12900;17900;19900;27900;24900;24277;42382;65500;75500;75200;75200;197775;399832;431963 -5101;'014;Eastern Africa;1874;Fibreboard;5616;Import quantity;m3;4000;4200;4100;8800;9600;12720;13942;47269;43688;19163;32010;10489;10193;14335;16754;16505;8005;7105;4905;5005;17105;9705;10805;10405;12605;15519;13203;13504;3380;3379;3379;6376;8715;8278;10902;16237;16624;24321;129296;31711;52694;63165;64748;90200;78559;70903;72253;55891;70691;80735;79448;100989;92549;146381;158885;183847;251554;183687;266106;214226;187732.54;174963.77;203776 -5101;'014;Eastern Africa;1874;Fibreboard;5622;Import value;1000 USD;490;528;513;1048;1057;1293;1442;1616;1381;1453;3277;1326;1655;3013;1184;1405;1046;1020;749;712;2708;1638;1576;1246;1227;1047;843;986;313;316;316;1886;2369;3413;2979;2511;3385;4396;6403;5652;6382;7036;10078;16418;14267;14440;20536;26512;25847;34907;42736;53686;52794;79396;94601;77272;100032;90133;94698;77589;74826.1;77330.05;79053 -5101;'014;Eastern Africa;1874;Fibreboard;5916;Export quantity;m3;;;;;;105;105;105;105;105;105;105;105;421;526;500;250;250;100;100;700;500;430;430;430;430;500;500;500;500;500;3298;2024;2025;0;0;0;40;23348;18748;6648;6648;9631;12518;12518;11381;7363;6761;6719;6816;8489;18661;28274;33575;30494;38329;62473;67479;58922;51314;58331.65;89787;103054 -5101;'014;Eastern Africa;1874;Fibreboard;5922;Export value;1000 USD;;;;;;44;32;27;27;27;30;21;27;98;56;136;183;178;47;47;356;298;267;267;267;267;104;104;104;104;104;976;494;494;0;0;0;16;3586;2518;618;618;1847;4253;4253;3978;2355;2707;3144;3817;4505;10107;12311;11614;10736;12970;21200;26656;25418;22141;26076.64;31595;33831 -5101;'014;Eastern Africa;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13200;13200;13200;13200;17200;17400;19000;16300;19400;16500;16500;16500;12700;12900;12900;12900;12900;12900;12900;12900;12150;14382;11500;11500;11200;11200;133775;171593;179215 -5101;'014;Eastern Africa;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;560;200;585;2076;73191;8816;10632;5541;9571;10261;9271;13332;13103;6973;7648;20298;17629;22939;14085;13477;13370;17536;10567;11214;12414;11371;8502.62;11617;10430 -5101;'014;Eastern Africa;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;270;80;604;939;2250;1826;2196;1440;3189;4555;4277;5327;5964;3534;3997;10321;10648;12790;9353;10058;10522;9131;5611;5653;5797;4961;4286;5923;5661 -5101;'014;Eastern Africa;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;23;23284;18684;6584;6584;7766;9026;9026;8326;4401;2295;2717;2264;1857;3362;10142;3759;2636;1821;4218;5778;8846;12643;12397.69;8786;15372 -5101;'014;Eastern Africa;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;13;3585;2517;617;617;1097;3620;3620;3352;1658;880;1429;1618;1446;3529;4584;1907;1318;822;1763;2674;3864;5054;5558.72;5094;5184 -5101;'014;Eastern Africa;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;5000;7000;15000;12000;12127;28000;54000;64000;64000;64000;64000;228239;252748 -5101;'014;Eastern Africa;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1732;1130;1395;2585;29983;12505;13769;26627;18144;41804;28352;24320;13279;34016;47687;46670;49342;63957;62191;116191;127172;148834;205460;159799;228285;177073;168454.95;150997;184154 -5101;'014;Eastern Africa;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;903;338;665;1052;1420;1339;1563;2883;2609;6974;4886;4902;6139;16256;16583;17949;25188;32808;38140;62799;78392;64003;87233;81280;84020;68205;67917.54;67721;71512 -5101;'014;Eastern Africa;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;178;982;982;688;617;3831;3799;4315;6521;15063;17490;29580;27650;36443;58024;61586;49432;37858;45109.96;65139;85326 -5101;'014;Eastern Africa;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;632;236;236;194;191;1544;1521;1968;2961;6364;7350;9480;9207;12057;19233;23871;21313;16828;20271.92;24546;28232 -5101;'014;Eastern Africa;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;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 -5101;'014;Eastern Africa;1650;Other fibreboard;5616;Import quantity;m3;;;;400;500;400;3200;32000;32000;4000;4000;800;400;1200;10800;10800;4500;4500;3200;3200;14800;7500;8600;8800;11000;14500;12500;13400;3280;3200;3200;4960;6238;5497;8610;14907;14644;19660;26122;10390;28293;30997;37033;38135;40936;33251;45871;14902;15356;13767;12477;14093;16273;16713;18343;17477;35527;12674;25407;25782;10774.97;12349.77;9192 -5101;'014;Eastern Africa;1650;Other fibreboard;5622;Import value;1000 USD;;;;61;210;207;246;193;193;40;45;12;23;26;57;57;73;73;291;73;1891;913;851;814;795;857;696;969;302;291;291;1226;884;1236;1806;2093;2116;2405;2733;2487;2623;2713;4280;4889;5104;4211;8433;6722;5267;6637;6900;8088;5301;6539;5687;4138;7188;3200;4881;4423;2622.55;3686.05;1880 -5101;'014;Eastern Africa;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;15;64;64;64;64;1687;2510;2510;2367;2345;635;203;237;111;236;642;236;208;65;231;115;644;813;824;15862;2356 -5101;'014;Eastern Africa;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;2;1;1;1;1;118;397;397;432;506;283;194;231;98;214;377;227;211;91;204;111;241;259;246;1955;415 -5101;'014;Eastern Africa;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;;;;;;;;;;;948;1264;1474;3791;4528;5897;3974;4174;4674;8974;9074;7074;8900;12000;12500;11300;16500;16400;16700;16700;16700;19200;17200;15200;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5101;'014;Eastern Africa;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;4000;4200;4100;8400;9100;12320;10742;15269;11688;15163;28010;9689;9793;13135;5954;5705;3505;2605;1705;1805;2305;2205;2205;1605;1605;1019;703;104;100;179;179;1416;2477;2781;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5101;'014;Eastern Africa;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;490;528;513;987;847;1086;1196;1423;1188;1413;3232;1314;1632;2987;1127;1348;973;947;458;639;817;725;725;432;432;190;147;17;11;25;25;660;1485;2177;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5101;'014;Eastern Africa;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;105;105;105;105;105;105;105;105;421;526;500;250;250;100;100;700;500;430;430;430;430;500;500;500;500;500;3298;2024;2025;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5101;'014;Eastern Africa;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;44;32;27;27;27;30;21;27;98;56;136;183;178;47;47;356;298;267;267;267;267;104;104;104;104;104;976;494;494;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5101;'014;Eastern Africa;1879;Total fibre furnish;5510;Production;t;4000;2700;4400;5700;5900;6000;6000;9800;10800;14900;19500;21700;25100;28000;36573;67400;68300;77300;111300;117300;116300;126300;132000;186600;180200;129200;177200;199200;203200;212170;211500;235440;254700;234100;237900;238100;247100;283500;281000;300800;292800;313800;312800;339800;332800;350800;350800;350800;237800;190800;191800;193800;192700;193600;194900;195687;196270;196270;196270;199270;204270;204270;204270 -5101;'014;Eastern Africa;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;4100;4100;6800;7900;7500;9700;11800;4700;19200;21100;30100;32500;32900;38800;36100;27300;30800;32945;38270;38702;32126;25514;11174;11174;24341;23796;15935;33512;35373;35787;46050;42081;44187;47315;42402;50180;55859;55050;52423;42423;30644;19248.2;26363;30251;29006;47490;38347;33745;39147;25785;29574;73504;53680;77991.35;76206.43;76141.43 -5101;'014;Eastern Africa;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;471;471;1586;1586;1586;2471;3507;890;4948;4867;7497;8870;10981;12472;13068;11697;12913;12550;12427;9568;7332;4768;3292;3292;7138;6791;4814;13222;10847;9670;11719;11410;17825;16834;13872;17170;16009;15931;17892;14141;15568;9206.6;14236;15979;16713.16;26158;22570;21630;19921;12181;14731;35796;36344;56522.19;62945.41;73952.41 -5101;'014;Eastern Africa;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;383;4576;2518;2688;2107;361;324;742;895;1390;1573;5202;14585;15366;12306;14139;11782;12864;21633;27961;38952;34688;38370;38514;40664;51921;53686;34587;30610;51981.74;55199.12;26976.12 -5101;'014;Eastern Africa;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;;;;;220;478;621;746;691;66;382;406;213;241;381;1108;3195;3287;1567;1847;2436;2531.2;6207;5668;9676;7137;6769;6605;5751;7822;7640;3601;2769;6783.53;8295;4458 -5101;'014;Eastern Africa;1878;Pulp for paper;5510;Production;t;4000;2700;3400;4700;4900;5000;5000;8800;9800;11900;16500;18700;21100;25000;33573;37400;38300;46300;78300;83300;85300;85300;88000;98600;90200;88200;129200;133200;134200;156200;155600;172600;187700;160200;163100;163300;172400;172100;171900;172100;172100;193100;192100;219100;212100;230100;230100;230100;117100;70100;70100;70100;68100;68100;68100;68100;67400;67400;67400;67400;67400;67400;67400 -5101;'014;Eastern Africa;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;4100;4100;6800;7900;7500;9700;11800;4700;19200;21100;27200;28900;27700;29600;24900;19200;29500;28000;28300;30000;26500;23400;3500;3500;11877;14137;6173;13803;13571;14846;23436;21122;22292;26221;22710;25604;28029;27153;26272;19931;18568;9990.2;13565;13666;14627;31294;25154;20078;23719;13503;16014;34798;34792;49101.24;38868.43;45377.43 -5101;'014;Eastern Africa;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;471;471;1586;1586;1586;2471;3507;890;4948;4867;7208;8498;10270;11466;10305;8937;12622;11772;10158;8137;6262;4381;2284;2284;5509;5027;2951;8915;6973;6539;9783;8978;14861;14034;11302;13364;12524;12428;12576;10688;12754;6680.6;11168;11696;12053.16;22312;18811;17769;16192;9265;11458;25675;31242;49823.55;51857.41;62217.41 -5101;'014;Eastern Africa;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;28;13;132;108;36;211;211;111;85;105;517;2905;2905;650;668;849;1997;4483;2679;4445;3068;1540;2903;938;1395;1088;861;764;841;1244.12;1509.12 -5101;'014;Eastern Africa;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;29;22;138;119;31;377;377;147;135;117;477;1990;1990;347;383;666;928;3925;1470;3871;2453;1715;1221;483;925;820;599;447;603;860;1265 -5101;'014;Eastern Africa;1875;Wood pulp;5510;Production;t;4000;2700;3400;4700;4900;5000;5000;8800;9800;11900;16500;16800;19100;23000;31573;35400;36300;44300;76300;81300;83300;83300;86000;96600;88200;86200;127200;131200;132200;154200;153600;170600;185700;158200;161100;161300;160700;160700;160500;160700;160700;160700;158700;182700;177700;189700;189700;189700;103700;56700;56700;56700;56700;56700;56700;56700;56000;56000;56000;56000;56000;56000;56000 -5101;'014;Eastern Africa;1875;Wood pulp;5610;Import quantity;t;;;;;;;;4100;4100;4100;4100;4100;4100;4100;4100;18600;20500;20300;23300;22100;24000;20800;15100;21400;21000;23600;26000;26500;23400;3500;3500;11877;14027;6063;13739;13460;14245;21737;19355;20525;25915;22404;25371;27823;26919.7;26076;19721;17623;9296;12274;11970;13695;30785;24121;20246;24061;13937;16741;33649;34522;49713.18;44662.19;51177.19 -5101;'014;Eastern Africa;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;471;471;471;471;471;471;471;471;4529;4448;4620;6449;8221;9417;7669;6301;7737;8175;8166;5657;6262;4381;2284;2284;5509;4925;2849;8863;6870;6279;9112;8211;14094;13808;11076;12952;12285;12194.6;12291;10498;11505;5698;9203;9415;10860.16;22236;17351;17377;16249;9195;11475;24393;30802;49800.36;58653.78;70255.78 -5101;'014;Eastern Africa;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;28;10;129;105;33;59;59;59;33;53;103;570;570;618;636;694;780;1597;1330;877;1075;845;842;603;1017;1010;782;755;832;1209.12;1586.12 -5101;'014;Eastern Africa;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;29;19;135;116;28;40;40;40;28;35;70;258;258;290;326;391;435;453;435;447;556;409;384;332;687;672;448;412;562;808;1345 -5101;'014;Eastern Africa;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12000;12000;12000;12000;12000;12000;12000 -5101;'014;Eastern Africa;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;742;307;744;755;1073.66;978;1355 -5101;'014;Eastern Africa;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;481;253;855;734;1460;2180;2214 -5101;'014;Eastern Africa;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;0;0;0;0;1;1 -5101;'014;Eastern Africa;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;0;0;0;0;0;6 -5101;'014;Eastern Africa;1654;Mechanical wood pulp (1961-2016);5510;Production;t;4000;2700;3400;4700;4900;5000;5000;8800;9800;11900;12400;12700;14600;15500;15200;14800;15700;17700;18700;19700;21700;21700;24000;26800;24200;20900;29700;30700;30700;31100;29300;29300;29400;28900;28800;29000;28400;28400;28200;28400;28400;28400;33400;36400;36400;37400;37400;37400;28400;12400;12400;12400;12400;12400;12400;12400;;;;;;; -5101;'014;Eastern Africa;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3283;101;2000;2000;1803;1203;1001;1002;1002;1002;1002;569;620;643;620;629;691;691;447;498;595;690;304;49;157;;;;;;; -5101;'014;Eastern Africa;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;867;22;873;873;662;689;273;274;274;274;274;287;290;310;290;293;329;329;343;441;411;888;177;47;81;;;;;;; -5101;'014;Eastern Africa;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;10;10;10;6;6;7;6;0;0;0;;;;;;; -5101;'014;Eastern Africa;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;15;15;15;15;15;15;15;0;0;0;;;;;;; -5101;'014;Eastern Africa;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;4100;4100;4500;4500;4373;5600;5600;8600;10600;11600;9600;8600;9000;12800;12000;12300;15500;20500;20500;23100;22300;22300;22300;22300;22300;22300;22300;22300;22300;22300;22300;22300;15300;15300;15300;31300;31300;31300;31300;300;300;300;300;300;300;300;;;;;;; -5101;'014;Eastern Africa;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;22;0;0;0;0;0;0;5;5;22;21;206;206;317;853;708;525;1920;5355;2750;949;504;642;702;;;;;;; -5101;'014;Eastern Africa;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;13;0;0;0;0;0;0;2;2;7;19;91;91;159;635;496;347;1650;3825;1982;609;365;500;367;;;;;;; -5101;'014;Eastern Africa;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;5;5;840;587;70;70;2;0;0;;;;;;; -5101;'014;Eastern Africa;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;32;32;71;60;36;36;2;0;0;;;;;;; -5101;'014;Eastern Africa;1656;Chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;3000;12000;15000;15000;18000;47000;50000;52000;53000;53000;57000;52000;53000;82000;80000;81000;100000;102000;119000;134000;107000;110000;110000;110000;110000;110000;110000;110000;110000;110000;131000;126000;121000;121000;121000;44000;44000;44000;44000;44000;44000;44000;44000;44000;44000;44000;44000;44000;44000;44000 -5101;'014;Eastern Africa;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;4100;4100;4100;4100;4100;4100;4100;4100;18600;20500;20300;23300;22100;24000;20800;15100;21400;21000;23600;26000;26500;23400;3500;3500;8583;13904;4063;11692;11657;13042;20687;18350;19515;24845;21317;24620;26739;25903;25026;18161;16145;8046;9871;6057;10207;28791;23151;18841;22397;12262;15295;31950;32779;46731.3;36451.15;42734.15 -5101;'014;Eastern Africa;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;471;471;471;471;471;471;471;471;4529;4448;4620;6449;8221;9417;7669;6301;7737;8175;8166;5657;6262;4381;2284;2284;4633;4890;1976;7939;6208;5590;8796;7930;13811;13470;10733;12536;11736;11669;11755;9475;10585;4974;7142;5065;8292.16;19920;16525;16229;15101;8091;10637;22938;29330;46359.28;47279.13;57970.13 -5101;'014;Eastern Africa;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;28;10;129;105;33;59;59;59;33;53;103;554;554;606;619;647;733;714;700;763;962;806;809;570;977;977;749;722;803;1203.12;1475.12 -5101;'014;Eastern Africa;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;29;19;135;116;28;40;40;40;28;35;70;250;250;285;307;336;380;358;351;387;496;398;378;326;666;666;442;406;556;805;1227 -5101;'014;Eastern Africa;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;15000;15000;15000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;97000;93000;90000;90000;90000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000 -5101;'014;Eastern Africa;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1171;2700;1398;0;400;1280;1280;1142;1226;2756;981;981;842;953;686;1181;1226;810;469;656;3806;2475;1318;1318;1236;1971;1663.67;910.15;1389.15 -5101;'014;Eastern Africa;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;781;1359;651;0;111;639;639;439;564;1376;388;393;394;397;375;631;805;482;432;828;1838;1506;760;760;927;1399;1948.4;1175.13;1257.13 -5101;'014;Eastern Africa;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;10;10;10;10;10;10;10;3;3;202;201;206;323;323;323;393;382;276;347;401 -5101;'014;Eastern Africa;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;3;3;3;3;3;3;3;10;10;119;111;115;185;183;183;223;222;162;208;270 -5101;'014;Eastern Africa;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;13000;10000;10000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;34000;33000;31000;31000;31000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000 -5101;'014;Eastern Africa;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4730;6477;1003;6799;6646;9014;19883;17339;15629;22560;19999;21982;21489;21303;23306;16430;14276;6984;8109;4221;7735;26531;21898;13559;19007;10934;13469;27907;30016;44347.62;35487;41303 -5101;'014;Eastern Africa;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2349;1984;513;4919;3627;4057;8466;7640;10983;11966;10158;11001;9149;9078;10811;8345;9450;4318;5939;3677;6479;17238;15105;12365;12871;7266;9740;20226;27088;43939.87;46018;56659 -5101;'014;Eastern Africa;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;105;105;10;36;36;36;10;30;30;466;466;466;469;500;557;538;534;622;622;573;598;247;654;654;356;340;527;856;1074 -5101;'014;Eastern Africa;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;116;116;19;31;31;31;19;26;26;201;201;201;204;237;278;256;239;286;286;255;262;141;483;483;219;184;393;596;956 -5101;'014;Eastern Africa;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;508;2807;792;720;54;42 -5101;'014;Eastern Africa;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;137;1785;843;471;86;54 -5101;'014;Eastern Africa;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0.12;0.12 -5101;'014;Eastern Africa;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;1;1;1 -5101;'014;Eastern Africa;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;;;;;;; -5101;'014;Eastern Africa;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;93;0;0;0;0;0;0;0;23;23;46;31;31;76;76;76;73;73;1335;310;976;408;;;;;;; -5101;'014;Eastern Africa;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;21;0;0;0;0;0;0;0;17;17;22;19;19;25;25;25;28;28;1856;331;1572;345;;;;;;; -5101;'014;Eastern Africa;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;31;31;31;60;60;57;32;32;32;5;0;;;;;;; -5101;'014;Eastern Africa;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;19;19;19;22;22;25;14;14;32;1;0;;;;;;; -5101;'014;Eastern Africa;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;;;;;;; -5101;'014;Eastern Africa;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3500;3500;3853;7427;3060;3629;2311;2630;804;611;2606;1005;176;1389;2471;3573;708;858;840;300;505;537;1589;456;287;500;507;;;;;;; -5101;'014;Eastern Africa;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2284;2284;2284;2906;1463;2218;1222;882;330;179;2189;865;136;954;1194;2181;532;717;713;256;547;555;1303.16;394;261;454;379;;;;;;; -5101;'014;Eastern Africa;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;0;24;0;23;23;23;23;23;23;73;78;78;99;109;106;106;106;106;106;106;0;0;0;;;;;;; -5101;'014;Eastern Africa;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;0;19;0;9;9;9;9;9;9;44;46;46;62;81;77;77;77;77;77;77;0;0;0;;;;;;; -5101;'014;Eastern Africa;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -5101;'014;Eastern Africa;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;0;0;49;3;3;63;63;161;258;167.7;113;78;79;34;36;60;143;355;162;714;805;933;1139;955;988;1908.22;7233.05;7088.05 -5101;'014;Eastern Africa;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;0;0;43;7;7;62;62;110;168;124.6;87;95;95;48;68;84;175;819;284;601;700;623;585;600;738;1981.09;9194.65;10071.65 -5101;'014;Eastern Africa;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;5;5;32;32;37;37;37;37;37;33;33;33;33;33;33;29;5;110 -5101;'014;Eastern Africa;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;3;3;8;8;9;9;9;9;9;6;6;6;6;6;6;6;3;112 -5101;'014;Eastern Africa;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;11700;11400;11400;11400;11400;32400;33400;36400;34400;40400;40400;40400;13400;13400;13400;13400;11400;11400;11400;11400;11400;11400;11400;11400;11400;11400;11400 -5101;'014;Eastern Africa;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;8100;7000;4700;4000;0;0;0;0;0;110;110;111;111;601;1748;1770;1770;369;369;394;464;401;309;288;1024;728.2;1327;1756;1075;864;1195;546;463;499;412;2104;1258;1296.28;1439.28;1288.28 -5101;'014;Eastern Africa;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;4885;3597;1992;2480;0;0;0;0;0;102;102;103;103;260;714;774;774;288;288;522;407;358;372;285;1344;1030.6;2033;2365;1368;895;1744;993;643;693;568;1882;1178;2004.28;2398.28;2033.28 -5101;'014;Eastern Africa;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;152;152;52;52;52;414;2344;2344;37;37;187;1249;2923;1386;3605;2030;732;2094;368;411;111;112;42;38;40;33 -5101;'014;Eastern Africa;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;337;337;107;107;82;407;1738;1738;60;60;283;501;3481;1044;3433;1906;1315;843;157;244;154;157;41;47;55;32 -5101;'014;Eastern Africa;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1356;36;36;326;92;496;167;104;124;46;163;136;415;371;336;547;431;837;193;291.66;198 -5101;'014;Eastern Africa;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;594;29;29;76;69;309;108;79;88;57;764;268;261;200;180;321;248;491;210;251.55;209 -5101;'014;Eastern Africa;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;32;32;223;221;241;241;60;60;60;51;51;102;102;225;225;258;247;235;335.14;377.14 -5101;'014;Eastern Africa;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;5;5;29;31;41;41;17;17;17;17;17;59;59;76;76;77;79;79;62.68;65.68 -5101;'014;Eastern Africa;1669;Recovered paper;5510;Production;t;;;1000;1000;1000;1000;1000;1000;1000;3000;3000;3000;4000;3000;3000;30000;30000;31000;33000;34000;31000;41000;44000;88000;90000;41000;48000;66000;69000;55970;55900;62840;67000;73900;74800;74800;74700;111400;109100;128700;120700;120700;120700;120700;120700;120700;120700;120700;120700;120700;121700;123700;124600;125500;126800;127587;128870;128870;128870;131870;136870;136870;136870 -5101;'014;Eastern Africa;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;2900;3600;5200;9200;11200;8100;1300;4945;9970;8702;5626;2114;7674;7674;12464;9659;9762;19709;21802;20941;22614;20959;21895;21094;19692;24576;27830;27897;26151;22492;12076;9258;12798;16585;14379;16196;13193;13667;15428;12282;13560;38706;18888;28890.1;37338;30764 -5101;'014;Eastern Africa;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;289;372;711;1006;2763;2760;291;778;2269;1431;1070;387;1008;1008;1629;1764;1863;4307;3874;3131;1936;2432;2964;2800;2570;3806;3485;3503;5316;3453;2814;2526;3068;4283;4660;3846;3759;3861;3729;2916;3273;10121;5102;6698.64;11088;11735 -5101;'014;Eastern Africa;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;365;4548;2505;2556;1999;325;113;531;784;1305;1468;4685;11680;12461;11656;13471;10933;10867;17150;25282;34507;31620;36830;35611;39726;50526;52598;33726;29846;51140.74;53955;25467 -5101;'014;Eastern Africa;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;;;;;210;449;599;608;572;35;5;29;66;106;264;631;1205;1297;1220;1464;1770;1603.2;2282;4198;5805;4684;5054;5384;5268;6897;6820;3002;2322;6180.53;7435;3193 -5101;'014;Eastern Africa;1876;Paper and paperboard;5510;Production;t;10700;9700;15420;19400;25600;25200;29800;33800;39300;47100;52700;54400;57400;63200;86717;101600;115600;130600;136600;143100;156435;168212;167787;170265;214747;217435;247602;236728;246804;229629;224621;306240;300525;241095;243226;257775;262180;247882;249804;260873;203923;216523;278339;339899;451199;439199;339599;334499;106125;132239;132239;132239;220371;189351;205192;154993;154809;154809;154809;154809;154809;154809;154809 -5101;'014;Eastern Africa;1876;Paper and paperboard;5610;Import quantity;t;67300;64200;68100;82500;106600;114400;121600;128400;142100;151000;165000;151400;173000;185500;136200;97800;119400;119400;132100;153200;118700;108300;111200;92600;106737;113308;126067;124784;114500;121281;124871;130474;118460;108525;120494;126336;120667;194126;261498;193282;206977;171074;328814;447140;461808;507908;511444;557612;545061;725125;739278;671396.44;727890;904831;799790;898111;937003;999156;1120059;913615;960609.15;925866;996630 -5101;'014;Eastern Africa;1876;Paper and paperboard;5622;Import value;1000 USD;17471;17014;18405;23303;31135;34334;34253;38419;41918;42843;48931;48604;62547;102238;85116;69929;85904;87679;103326;134580;114578;94055;92063;75539;81675;90131;125752;109593;104754;123264;126806;118090;100165;94244;119869;126767;108859;147597;186136;143820;140250;115335;237208;317509;341380;327950;441371;567073;486145;694286;716778;618376;711562;865763;710094;740793;774458;934505;974234;730615;932018.05;1158063;1031422 -5101;'014;Eastern Africa;1876;Paper and paperboard;5910;Export quantity;t;1000;1100;1052;4236;4936;3700;3800;3800;4200;4100;4200;4400;4300;5300;9200;16900;14700;15300;23400;20800;10800;18800;11100;13800;12900;6500;14300;6900;6801;6955;6955;19228;1809;1525;5981;9808;10756;9735;9520;19508;25102;14349;26354;46831;46831;37726;102842;67863;66220;45524;41195;54534.2;63055.05;41090;54974;49931;64406;54165;71362;71947;96378.65;81902.13;63000.13 -5101;'014;Eastern Africa;1876;Paper and paperboard;5922;Export value;1000 USD;206;257;223;1359;1123;881;912;935;1039;1099;1065;1162;1254;1638;3125;6267;6977;7022;11413;11607;7148;10191;8037;4760;7217;4973;7234;5065;4912;5256;5256;12677;1324;1104;4688;7777;8456;7285;7976;14950;17655;10598;17950;31269;31269;27550;42696;57687;58711;45866;42763;75937.8;79764.6;37296;52473;43943;51304;62010;85856;79149;90418.26;89441.84;65532.84 -5101;'014;Eastern Africa;2042;Graphic papers;5510;Production;t;;2300;8020;8800;9000;8000;11000;11100;13100;14200;16500;16500;18300;20600;32517;39200;45200;47200;49200;50200;51200;53400;58000;68600;71400;75850;83040;86240;89340;80250;78470;89320;88120;71220;71570;71700;74700;71100;68830;71860;61860;60860;65832;67492;74792;54792;48192;46092;22632;53632;53632;53632;53632;53632;52850;52273;51638;51638;51638;51638;51638;51638;51638 -5101;'014;Eastern Africa;2042;Graphic papers;5610;Import quantity;t;29700;28400;25500;32600;40000;44100;43400;43800;44300;48600;53200;50400;51400;60100;47900;38300;44200;44800;51000;64000;52100;47900;45200;39700;39000;42109;39842;51959;50000;51043;54233;60703;53562;54456;51808;53894;66819;109162;152579;104810;106205;88950;176498;271561;277727;313254;304684;315554;288754;387517;379930;362800.44;381613;459704;415908;469178;454124;466588;554832;380617;378778.82;402319;439061 -5101;'014;Eastern Africa;2042;Graphic papers;5622;Import value;1000 USD;7409;7170;6867;8830;12593;13297;12793;13632;13752;14000;15401;15050;18654;34732;28402;25285;28466;28406;36581;52211;48367;41241;36491;32949;32158;37559;45562;51873;44245;55003;58730;57364;48676;48965;51358;52691;54387;75480;96335;78912;77530;64672;128662;193139;211506;201825;277374;328958;266261;367143;365840;337642;368471;450156;387257;394084;383996;449660;514465;331169;373901.91;488787;466345 -5101;'014;Eastern Africa;2042;Graphic papers;5910;Export quantity;t;;;100;1200;1300;;;;;100;100;100;200;200;400;3400;2900;2900;10300;8300;2800;3300;600;500;300;100;100;100;1;155;155;951;544;333;674;2340;2513;1746;2920;2888;4688;4528;5052;15949;15949;12637;14186;13205;11335;7048;7578;7116.2;9690.05;4827;7287;7113;9979;7329;11726;9481;11038.55;11414.1;19348.1 -5101;'014;Eastern Africa;2042;Graphic papers;5922;Export value;1000 USD;;;10;231;248;;;;;22;22;22;174;155;228;1685;1982;1982;5374;4355;1100;1806;723;571;347;122;285;159;6;350;350;816;397;335;689;2498;2598;1172;2202;2284;4510;4375;3849;9760;9760;8124;10214;12473;10924;11394;6665;6368.8;10384.6;4355;6012;7665;8255;8685;9416;9594;11138.43;14771.01;22808.01 -5101;'014;Eastern Africa;1671;Newsprint;5510;Production;t;;2300;4020;4800;5000;5000;6000;8000;8900;10300;12600;12500;12500;13000;12817;15500;15500;16500;17500;19500;21500;19700;25000;25600;25800;27850;30240;36440;34540;35350;40270;45320;39320;38220;39170;40400;41800;41200;40100;42100;40100;37100;34100;38160;41160;24160;17560;15460;11000;14000;14000;14000;14000;14000;14450;13873;13238;13238;13238;13238;13238;13238;13238 -5101;'014;Eastern Africa;1671;Newsprint;5610;Import quantity;t;12700;9700;7200;9800;10600;10200;12200;13200;10100;13500;15800;16100;15900;15500;18300;14900;16300;19300;20600;21500;19800;18600;18900;15300;16200;15753;18645;21818;17071;16888;16878;18260;16374;13533;28916;22832;32003;59205;62869;41785;33987;36366;64795;88756;84423;133084;107863;115746;103946;143156;132380;140703;146025;144458;158230;138794;109209;111539;109737;78426;69726.95;75394;91743 -5101;'014;Eastern Africa;1671;Newsprint;5622;Import value;1000 USD;2100;1657;1303;1799;2039;1709;2072;2276;1642;2528;2861;3357;4092;6694;8121;6198;7058;8562;9472;10587;11204;10128;10345;7880;9058;8551;15148;13022;10398;10905;10806;13258;12952;9249;23720;17204;18390;31194;34806;26180;22136;21295;35936;48153;48186;48676;79119;93147;72052;107623;101212;108309;107254;109929;109923;84328;66923;84433;69591;50374;49093.34;76611;79544 -5101;'014;Eastern Africa;1671;Newsprint;5910;Export quantity;t;;;100;1200;1300;;;;;;;;;;;;;;;;;;;;;;0;;;;;425;37;49;181;152;152;157;414;414;414;414;1476;8522;8522;6401;8835;8457;7702;3902;3211;2550;2404;2788;4610;4274;4110;3528;3542;1863;2810.15;2034;2275 -5101;'014;Eastern Africa;1671;Newsprint;5922;Export value;1000 USD;;;10;231;248;;;;;;;;;;;;;;;;;;;;;;0;;;;;268;18;34;99;74;74;79;218;218;218;218;827;4026;4026;3198;5350;6475;6047;2454;2364;1842;1648;1930;3484;3823;2945;3343;1415;897;1795;2383;1843 -5101;'014;Eastern Africa;1674;Printing and writing papers;5510;Production;t;;;4000;4000;4000;3000;5000;3100;4200;3900;3900;4000;5800;7600;19700;23700;29700;30700;31700;30700;29700;33700;33000;43000;45600;48000;52800;49800;54800;44900;38200;44000;48800;33000;32400;31300;32900;29900;28730;29760;21760;23760;31732;29332;33632;30632;30632;30632;11632;39632;39632;39632;39632;39632;38400;38400;38400;38400;38400;38400;38400;38400;38400 -5101;'014;Eastern Africa;1674;Printing and writing papers;5610;Import quantity;t;17000;18700;18300;22800;29400;33900;31200;30600;34200;35100;37400;34300;35500;44600;29600;23400;27900;25500;30400;42500;32300;29300;26300;24400;22800;26356;21197;30141;32929;34155;37355;42443;37188;40923;22892;31062;34816;49957;89710;63025;72218;52584;111703;182805;193304;180170;196821;199808;184808;244361;247550;222097.44;235588;315246;257678;330384;344915;355049;445095;302191;309051.87;326925;347318 -5101;'014;Eastern Africa;1674;Printing and writing papers;5622;Import value;1000 USD;5309;5513;5564;7031;10554;11588;10721;11356;12110;11472;12540;11693;14562;28038;20281;19087;21408;19844;27109;41624;37163;31113;26146;25069;23100;29008;30414;38851;33847;44098;47924;44106;35724;39716;27638;35487;35997;44286;61529;52732;55394;43377;92726;144986;163320;153149;198255;235811;194209;259520;264628;229333;261217;340227;277334;309756;317073;365227;444874;280795;324808.57;412176;386801 -5101;'014;Eastern Africa;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;526;507;284;493;2188;2361;1589;2506;2474;4274;4114;3576;7427;7427;6236;5351;4748;3633;3146;4367;4566.2;7286.05;2039;2677;2839;5869;3801;8184;7618;8228.39;9380.1;17073.1 -5101;'014;Eastern Africa;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;548;379;301;590;2424;2524;1093;1984;2066;4292;4157;3022;5734;5734;4926;4864;5998;4877;8940;4301;4526.8;8736.6;2425;2528;3842;5310;5342;8001;8697;9343.43;12388.01;20965.01 -5101;'014;Eastern Africa;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5500;4000;5000;5000;4000;4200;4200;4200;4200;4200;4200;1200;17200;17200;17200;17200;17200;16000;16000;16000;16000;16000;16000;16000;16000;16000 -5101;'014;Eastern Africa;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8109;9053;7426;3737;4532;10545;25426;23423;27279;19626;22143;24493;25824;28283;29869;31375;21136;21706;26063;39031;37742;52426;17599;23678.06;15176;21058 -5101;'014;Eastern Africa;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7167;7291;6293;2333;3483;7102;20031;20397;20057;18513;22462;25382;27068;32138;30057;32615;24503;25446;25816;34723;34103;36961;21465;24689.86;20594;29077 -5101;'014;Eastern Africa;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;35;35;35;35;272;213;213;73;136;487;663;643;1441;954.2;4669.05;363;263;136;185;185;232;175;102;68.1;888.1 -5101;'014;Eastern Africa;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30;30;30;348;164;164;69;196;559;836;563;835;878.8;3672.6;400;304;198;478;478;295;183;173;220.01;1014.01 -5101;'014;Eastern Africa;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16400;16730;16760;10760;12760;19532;17132;17432;15432;15432;15432;6432;6432;6432;6432;6432;6432;6400;6400;6400;6400;6400;6400;6400;6400;6400 -5101;'014;Eastern Africa;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28555;64554;34936;45516;32799;65909;101036;112473;96743;114627;115345;114299;152794;162113;124019;133107;213849;170095;215106;222757;247689;312133;214971;220178.94;242164;262778 -5101;'014;Eastern Africa;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27755;41871;31761;35540;27722;57256;79927;95336;86851;119854;142987;117412;161264;167325;121654;149809;222006;180426;196566;201468;252262;315921;193414;216749.6;291361;267896 -5101;'014;Eastern Africa;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1557;2118;2084;3855;3698;3047;6056;6056;5265;3830;2742;1833;1203;1868;2784;1832;1043;1083;1947;2459;2453;7069;4917;6859.8;6824;11167 -5101;'014;Eastern Africa;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1067;1428;1495;3685;3567;2467;4681;4681;4064;3453;3696;2852;6707;2045;2428;4054;1068;918;2689;2934;3268;6264;5425;7262.87;9113;14126 -5101;'014;Eastern Africa;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8000;8000;8000;6000;7000;8000;8000;12000;11000;11000;11000;4000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000 -5101;'014;Eastern Africa;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13293;16103;20663;22965;15253;35249;56343;57408;56148;62568;62320;46016;65743;57154;68209.44;71106;80261;65877;89215;83127;69618;80536;69621;65194.88;69585;63482 -5101;'014;Eastern Africa;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9364;12367;14678;17521;12172;28368;45028;47587;46241;59888;70362;51415;71188;65165;77622;78793;93718;71462;87374;80882;78862;91992;65916;83369.12;100221;89828 -5101;'014;Eastern Africa;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;353;355;384;381;257;1158;1158;898;1385;1519;1137;1300;1058;828;785;633;1331;756;3225;1163;883;2526;1266.59;2488;5018 -5101;'014;Eastern Africa;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;526;541;577;560;207;889;889;793;1215;1743;1189;1670;1421;1220;1010;957;1306;955;1898;1596;1442;3089;1907.56;3055;5825 -5101;'014;Eastern Africa;1675;Other paper and paperboard;5510;Production;t;10700;7400;7400;10600;16600;17200;18800;22700;26200;32900;36200;37900;39100;42600;54200;62400;70400;83400;87400;92900;105235;114812;109787;101665;143347;141585;164562;150488;157464;149379;146151;216920;212405;169875;171656;186075;187480;176782;180974;189013;142063;155663;212507;272407;376407;384407;291407;288407;83493;78607;78607;78607;166739;135719;152342;102720;103171;103171;103171;103171;103171;103171;103171 -5101;'014;Eastern Africa;1675;Other paper and paperboard;5610;Import quantity;t;37600;35800;42600;49900;66600;70300;78200;84600;97800;102400;111800;101000;121600;125400;88300;59500;75200;74600;81100;89200;66600;60400;66000;52900;67737;71199;86225;72825;64500;70238;70638;69771;64898;54069;68686;72442;53848;84964;108919;88472;100772;82124;152316;175579;184081;194654;206760;242058;256307;337608;359348;308596;346277;445127;383882;428933;482879;532568;565227;532998;581830.34;523547;557569 -5101;'014;Eastern Africa;1675;Other paper and paperboard;5622;Import value;1000 USD;10062;9844;11538;14473;18542;21037;21460;24787;28166;28843;33530;33554;43893;67506;56714;44644;57438;59273;66745;82369;66211;52814;55572;42590;49517;52572;80190;57720;60509;68261;68076;60726;51489;45279;68511;74076;54472;72117;89801;64908;62720;50663;108546;124370;129874;126125;163997;238115;219884;327143;350938;280734;343091;415607;322837;346709;390462;484845;459769;399446;558116.14;669276;565077 -5101;'014;Eastern Africa;1675;Other paper and paperboard;5910;Export quantity;t;1000;1100;952;3036;3636;3700;3800;3800;4200;4000;4100;4300;4100;5100;8800;13500;11800;12400;13100;12500;8000;15500;10500;13300;12600;6400;14200;6800;6800;6800;6800;18277;1265;1192;5307;7468;8243;7989;6600;16620;20414;9821;21302;30882;30882;25089;88656;54658;54885;38476;33617;47418;53365;36263;47687;42818;54427;46836;59636;62466;85340.11;70488.03;43652.03 -5101;'014;Eastern Africa;1675;Other paper and paperboard;5922;Export value;1000 USD;206;257;213;1128;875;881;912;935;1039;1077;1043;1140;1080;1483;2897;4582;4995;5040;6039;7252;6048;8385;7314;4189;6870;4851;6949;4906;4906;4906;4906;11861;927;769;3999;5279;5858;6113;5774;12666;13145;6223;14101;21509;21509;19426;32482;45214;47787;34472;36098;69569;69380;32941;46461;36278;43049;53325;76440;69555;79279.83;74670.82;42724.82 -5101;'014;Eastern Africa;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;6028;6091;6066;9066;10066;12060;10060;91060;111060;18060;18060;10060;17060;17060;17060;17060;17060;17172;17165;17695;17695;17695;17695;17695;17695;17695 -5101;'014;Eastern Africa;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;100;200;200;100;500;500;500;500;400;400;500;500;500;300;300;200;500;700;700;700;700;700;700;700;600;0;0;0;0;3095;4778;5321;5712;4601;9234;10902;12802;9624;16396;16922;23118;39507;21832;24309;37713;43004;42927;47076;52675;56252;63300;64968;73165.82;67971;80138 -5101;'014;Eastern Africa;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;86;185;173;165;469;456;456;442;368;368;521;587;587;458;370;268;483;727;727;750;750;750;750;750;650;0;0;0;0;5516;6445;4778;4825;4549;9211;12170;13657;10953;18425;22823;26799;53585;36360;33126;57119;60933;55726;57995;58638;67113;67766;62897;89569.14;99474;107261 -5101;'014;Eastern Africa;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140;443;490;90;90;1686;2202;2202;2096;2724;2595;1177;2301;2605;3116;2518;2086;2567;3146;3878;3690;3110;2377;4124.54;3408.03;3701.03 -5101;'014;Eastern Africa;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;271;880;936;82;82;1172;2423;2423;2175;2648;2727;1299;2846;2320;4958;3121;2588;3046;3302;3886;3557;3260;2620;3488.05;3211.99;4440.99 -5101;'014;Eastern Africa;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106930;105120;145020;83320;96120;150970;200870;232870;220870;220870;220870;55470;54470;54470;54470;142602;111582;128093;78478;79399;79399;79399;79399;79399;79399;79399 -5101;'014;Eastern Africa;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19450;47420;45882;65740;51635;110400;138880;151675;170767;169492;206925;221415;276845;311527;262830;296054;387609;333097;369049;422222;469019;493874;458900;496612.58;447081;468462 -5101;'014;Eastern Africa;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14985;31755;27527;33660;25033;64644;86964;94268;93977;112845;174831;164809;222556;260030;212862;255064;320925;252601;263352;313472;397508;368698;317083;444910.59;490759;427880 -5101;'014;Eastern Africa;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2766;861;2454;6848;4924;14321;25140;25140;21390;84229;47805;52075;32876;29543;43476;50193;32318;41236;39317;50158;42645;55899;59571;80917.57;66931;39723 -5101;'014;Eastern Africa;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2556;1748;3268;5782;4358;9331;15177;15177;12928;25821;38521;42473;26174;30511;62600;64524;28048;33271;32304;38125;46658;68082;64516;73810.78;70477.83;37258.83 -5101;'014;Eastern Africa;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;800;1800;1900;5000;5300;5300;5300;5300;5300;5300;5300;5300;5300;6600;47700;44600;43400;38100;64600;64600;81600;68600;73600;64000;63000;134000;134000;87000;90000;106300;105800;;;;;;;;;;;;;;;;;;;;;;;;;; -5101;'014;Eastern Africa;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;10500;11500;14800;16200;22500;25200;27700;27000;37000;43000;50300;49000;52900;55900;34900;19900;22400;27400;33000;30500;23600;20800;16500;15200;22800;20100;34700;36400;28000;30000;30000;20086;23367;24959;22032;30500;12800;;;;;;;;;;;;;;;;;;;;;;;;;; -5101;'014;Eastern Africa;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;1493;2239;2690;3197;4460;5157;5737;6189;8162;9988;12284;12906;14857;26923;20066;10893;12417;19965;23416;21009;17302;11984;9048;9138;13001;10933;20408;24770;20836;23894;22908;17692;18976;20276;19352;24841;9962;;;;;;;;;;;;;;;;;;;;;;;;;; -5101;'014;Eastern Africa;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;9509;1009;955;1767;1669;1629;;;;;;;;;;;;;;;;;;;;;;;;;; -5101;'014;Eastern Africa;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;7158;455;606;1038;948;919;;;;;;;;;;;;;;;;;;;;;;;;;; -5101;'014;Eastern Africa;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;300;38800;41800;41800;41400;86400;86400;73400;73400;73400;2400;1400;1400;1400;33532;28512;51238;1297;1640;1640;1640;1640;1640;1640;1640 -5101;'014;Eastern Africa;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10121;16989;18427;33313;38236;58212;50728;71131;90938;78836;120453;131775;156133;170438;160296;185845;217236;207882;199486;263230;279207;314016;288233;308729.13;264919;295042 -5101;'014;Eastern Africa;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7193;9694;7188;11615;13406;26444;30877;40261;38040;44290;82785;74922;101208;116472;104833;129905;148801;139081;121653;169312;203766;186044;156387;233680.66;249358;218529 -5101;'014;Eastern Africa;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2038;840;923;2523;2529;5597;9090;9090;10532;48346;34004;34138;17141;16416;14788;22836;20067;29130;29120;30405;21702;29176;30540;58573.08;46370.01;28063.01 -5101;'014;Eastern Africa;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2220;1733;1770;1569;1571;2637;5486;5486;6029;10524;24203;23715;11974;12990;11565;17460;15765;22026;20728;19381;14064;22790;20795;47354.03;42283.21;19188.21 -5101;'014;Eastern Africa;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1900;1000;2700;7000;7300;7000;8600;12600;12600;12600;12600;1000;1000;1000;1000;57000;31000;24785;24785;24785;24785;24785;24785;24785;24785;24785 -5101;'014;Eastern Africa;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6261;15994;13429;11357;6417;12410;35930;35891;31646;34202;36404;31531;50141;60377;50270;42879;75711;58243;72654;61993;70552;66160;60452;79340.46;81452;76409 -5101;'014;Eastern Africa;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4877;11455;10592;8486;5503;11685;23035;24858;24231;26842;40131;40512;59147;62884;59473;60678;83868;48135;67122;61177;79485;70377;62942;99277.01;118008;98492 -5101;'014;Eastern Africa;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;659;19;1525;1919;1931;2435;4115;4115;1628;2356;1896;3028;1674;3104;18324;15283;1235;1326;1404;1985;8167;1634;960;1411;2082;1817 -5101;'014;Eastern Africa;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;291;13;1494;2518;2530;3183;2491;2491;1405;1842;2424;4769;3662;8916;40695;36296;2214;1663;2033;2626;16559;11977;11218;3531;5362;4142 -5101;'014;Eastern Africa;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104400;103800;103500;29500;29000;29000;28000;31000;32000;32000;32000;42000;42000;42000;42000;42000;42000;42000;41680;42258;42258;42258;42258;42258;42258;42258 -5101;'014;Eastern Africa;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2861;14122;13664;18622;6528;34500;45821;39676;45310;54055;48717;54435;66134;76775;47924;63547;91844;63865;93863;93057;115402;108566;107165;105603.73;98681;94320 -5101;'014;Eastern Africa;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2718;10266;9564;12683;5398;23460;29072;26029;29780;40096;50625;46958;59290;77967;45167;60119;86350;61853;72489;79570;112006;109231;94106;109310.93;121264;108492 -5101;'014;Eastern Africa;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;2;6;2106;164;3422;8612;8612;7742;31612;11701;12604;11786;9913;10228;11915;10857;10602;8617;17036;12044;24363;27842;20589.49;18106;9425 -5101;'014;Eastern Africa;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;2;4;1556;118;2257;5200;5200;4603;12318;11585;12760;9351;8485;10206;10617;9911;7825;7777;14200;14117;31417;30752;21144.74;21063;12052 -5101;'014;Eastern Africa;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;20;20;5020;18020;73570;77870;102870;102870;102870;102870;10070;10070;10070;10070;10070;10070;10070;10716;10716;10716;10716;10716;10716;10716;10716 -5101;'014;Eastern Africa;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;207;315;362;2448;454;5278;6401;4977;2873;2399;1351;3674;4437;3937;4340;3783;2818;3107;3046;3942;3858;5132;3050;2939.25;2029;2691 -5101;'014;Eastern Africa;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;197;340;183;876;726;3055;3980;3120;1926;1617;1290;2417;2911;2707;3389;4362;1906;3532;2088;3413;2251;3046;3648;2642;2129;2367 -5101;'014;Eastern Africa;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;300;2867;3323;3323;1488;1915;204;2305;2275;110;136;159;159;178;176;732;732;726;229;344;372.99;417.99 -5101;'014;Eastern Africa;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;139;139;1254;2000;2000;891;1137;309;1229;1187;120;134;151;158;1757;1766;1918;1918;1898;1751;1781;1769.62;1876.62 -5101;'014;Eastern Africa;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;100;100;200;200;200;200;200;200;200;200;200;200;400;9335;9512;10187;9365;10747;10985;8962;9488;77064;79379;76151;74920;70405;77875;75656;73775;75680;63824;69763;37927;49677;49477;49477;61477;52477;52477;52477;49477;17963;7077;7077;7077;7077;7077;7077;7077;6077;6077;6077;6077;6077;6077;6077 -5101;'014;Eastern Africa;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;16300;19100;19400;22400;26800;27900;28300;33200;36800;52400;53400;43300;60200;58700;44600;36800;41800;38900;41400;41100;31100;30100;39700;29100;30000;27900;35200;19657;23900;23000;22200;34387;18267;18530;34826;34259;32100;62419;56721;37269;29320;25888;32682;25797;19604;14263;20872;18211;11774;21256;25989;21457;12510;14514;7858;12808;7982;7297;8053;9130;12051.94;8495;8969 -5101;'014;Eastern Africa;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;5095;5967;6265;7313;8755;9364;9333;11306;12193;16527;17701;16810;25132;32326;29128;31661;35469;32143;37304;42978;34245;31862;36990;27317;25264;20966;39046;20077;27854;29780;28099;28639;13927;15974;36312;39991;34139;51616;51601;32603;24235;21081;34691;25236;21949;21195;32727;40461;28276;51002;54548;34746;30908;33749;14510;25362;18352;20224;23305;19466;23636.41;79043;29936 -5101;'014;Eastern Africa;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;10500;1100;1700;4200;1500;700;1900;4100;9400;9400;3800;11700;4200;4200;4200;4200;8502;107;109;3485;5748;5878;5083;5296;13676;13476;4807;5295;3540;3540;1603;1703;4258;1633;3299;1469;826;654;1859;3884;355;391;501;627;518;298;149;228 -5101;'014;Eastern Africa;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;3410;312;357;763;933;710;1130;1503;3867;3867;1621;4270;1709;1709;1709;1709;4248;89;77;2910;4275;4426;3286;3146;8462;7281;1783;3598;3909;3909;4323;4013;3966;4015;5452;3267;2011;1735;2305;10144;672;1038;3110;5098;2419;1981;981;1025 -5101;'014;Eastern Africa;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;363366;399850;393699;319009;346593;420645;378863 -5101;'014;Eastern Africa;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33670;93098;66283;33696;37853;43622;42020 -5101;'014;Eastern Africa;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20963;5742;5630;2544;3081;3541;3624 -5101;'014;Eastern Africa;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3917;4339;5503;4581;5006;3609;3446 -5101;'014;Eastern Africa;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1465;1024;1299;689;1126;1200;743 -5101;'014;Eastern Africa;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1410;1116;1428;917;1294;1035;1004 -5101;'014;Eastern Africa;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19498;4718;4331;1855;1955;2341;2881 -5101;'014;Eastern Africa;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2507;3223;4075;3664;3712;2574;2442 -5101;'014;Eastern Africa;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9775;12603;9756;9051;11039;11961;11205 -5101;'014;Eastern Africa;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1171;12986;2438;3791;3804;3950;3513 -5101;'014;Eastern Africa;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6406;8790;9590;6341;6370;6074;6246 -5101;'014;Eastern Africa;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5078;18866;7325;6388;6004;4332;4608 -5101;'014;Eastern Africa;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42821;49766;50490;38565;39672;44789;49065 -5101;'014;Eastern Africa;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2403;6188;37046;6157;6676;11569;8362 -5101;'014;Eastern Africa;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;220;51 -5101;'014;Eastern Africa;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;294;402 -5101;'014;Eastern Africa;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;154;78 -5101;'014;Eastern Africa;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;194;78 -5101;'014;Eastern Africa;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;296;85 -5101;'014;Eastern Africa;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;645;263 -5101;'014;Eastern Africa;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74 -5101;'014;Eastern Africa;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65 -5101;'014;Eastern Africa;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;268139;296659;294985;227370;246767;317166;271949 -5101;'014;Eastern Africa;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18683;32789;9334;10069;13672;17448;15255 -5101;'014;Eastern Africa;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3893;12718;3018;4597;3700;5652;4581 -5101;'014;Eastern Africa;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;206;14;66;205;240;728;1412 -5101;'014;Eastern Africa;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11369;13572;20230;30541;35964;31462;32193 -5101;'014;Eastern Africa;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2212;17916;4571;2505;2451;1986;5424 -5101;'014;Eastern Africa;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;527792;572096;540770;464273;537031;696605;694005 -5101;'014;Eastern Africa;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106099;283080;119911;112526;124157;150869;142676 -5101;'014;Eastern Africa;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1227;1536;1485;1283;2195;2450;1531 -5101;'014;Eastern Africa;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;728;305;320;299;298;246;345 -5101;'014;Eastern Africa;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45341;53189;51578;50634;65929;81357;75187 -5101;'014;Eastern Africa;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;931;2148;1519;1730;1926;2035;2123 -5101;'014;Eastern Africa;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50308;48869;45748;39198;43658;51121;62210 -5101;'014;Eastern Africa;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3278;4073;4723;4881;6522;9486;8703 -5101;'014;Eastern Africa;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;181452;219468;189929;169920;190550;265506;257995 -5101;'014;Eastern Africa;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54970;186279;62520;65302;63727;81280;85494 -5101;'014;Eastern Africa;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;249464;249034;252030;203238;234699;296171;297082 -5101;'014;Eastern Africa;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46192;90275;50829;40314;51684;57822;46011 -5102;'017;Middle Africa;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;571756;546867;545820;449301;544640.07;792999.14;903707.12 -5102;'017;Middle Africa;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2419524;2721875;2370520;1873830;2231469;2407599.45;2523164.45 -5102;'017;Middle Africa;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;4508;5172;7952;6456;7218;11238;11477;12810;13887;11234;15743;19791;21081;20663;26971;28134;30521;26490;27795;26997;23629;25306;21744;21395;40622;79353;96171;83707;64403;87480;93272;45888;35176;42049;40564;43982;38925;37729;33668;31319;45204;64931;88414;105747;83607;83289;110675.3;161454;138995.3;170970.3;211277;190372;219366;252434;178792;136160;203192;166885;218758;188517;236189.07;286944.14;318139.12 -5102;'017;Middle Africa;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;71925;75050;82292;95776;91602;95507;92515;109391;126054;127585;121584;145926;232624;286703;160912;204835;225500;292730;358883;477073;355723;297585;284472;291247;299024;341520;352366;420984;459254;842594;579402;827679;759966;913324;821988;820960;925983;823658;1001713;1068176;1168120;992806;1026256;1119258;1785662;2020347;2424091;2412111;1780353;2037896;2144548;2047436;1974784;2157878;2243248;2196797;2397294;2665982;2329237;1842034;2156220;2310912.45;2398580.45 -5102;'017;Middle Africa;1861;Roundwood;5516;Production;m3;37766424;38370908;39406915;40422026;41335847;42401991;43384102;44841835;46399861;47583890;48277628;49111818;49806899;49868954;50117177;51611087;53044767;54756872;56139284;57589234;58526123;60013045;61586573;63402147;64980020;66239710;68011948;70046653;72291017;75238813;77321488;81506378;86728298;90865802;93955616;95482281;97925471;97938633;98114019;100192196;101350936;103243205;105976152;107784090;110256638;112542749;114674668;115145320;115141962;116119991;117630129;119309317;121531948;123738485;125830513;127765537;129831302;131168330;132288752;133747350;135349514;136830143;142668301 -5102;'017;Middle Africa;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;611;51;51;436;827;827;1453;784;410;841;628;662;857;3677;3677;9126;8830;15970;14201;5841;12952;8059;5989;5159;3470;813;9954;34315;21976;11604;3682;4970;4220 -5102;'017;Middle Africa;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;21;8;8;38;97;97;124;87;37;151;180;178;178;270;270;1644;1259;4624;3986.3;1919.3;2219;1833;911;1573;425;219;2174;2180;1950;1158;884;863;556 -5102;'017;Middle Africa;1861;Roundwood;5916;Export quantity;m3;2162800;2113500;2352900;2710800;2555700;2700100;2566200;2899900;3286200;3388400;3062700;2828700;3198900;2582700;1830200;2138907;2374100;2870100;2368000;2314400;2011500;2048000;1926100;2536300;2392800;2040900;2511200;2927200;2963300;2893688;2911534;2837121;2851459;3258550;3546611;4502224;5623548;4447834;4170638;4594789;4076650;3187029;3566064;2998639;3272553;3639024;3983466;3817704;2974572;2756836;2280985;2372759;2171095;2636026;2635300;3340589;3969438;3798224;2804441;1714541;2213179;1952921;2116483 -5102;'017;Middle Africa;1861;Roundwood;5922;Export value;1000 USD;54580;56624;63133;75632;70571;73021;70361;83091;94187;93517;88510;101257;173768;223851;110187;143151;147920;201046;269227;325938;238496;195585;187995;197933;212506;230930;215051;275367;325766;654448;417835;644332;598248;667242;582885;546471;632120;518757;621812;611648;714173;438742;465419;464027;1027169;1152124;1428082;1354741;1024930;1136175;978538;914284;846290;938771;982910;970385;1105662;1205476;890353;527188;746612;600778;678265 -5102;'017;Middle Africa;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;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;6200;6200;6200;3200;3200;3200;3200;3200;3200;3200;3200;3200 -5102;'017;Middle Africa;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9071;34203;15770;9277;2014;1300;1114 -5102;'017;Middle Africa;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2064;2150;922;905;392;234;189 -5102;'017;Middle Africa;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;286;427;2128;1157;224;535;713 -5102;'017;Middle Africa;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;129;57;1422;749;309;322;305 -5102;'017;Middle Africa;1863;Roundwood, non-coniferous;5516;Production;m3;37766424;38370908;39406915;40422026;41335847;42401991;43384102;44841835;46399861;47583890;48277628;49111818;49806899;49868954;50117177;51611087;53044767;54756872;56139284;57589234;58526123;60013045;61586573;63402147;64980020;66239710;68011948;70046653;72291017;75238813;77321488;81506378;86728298;90865802;93955616;95482281;97925471;97935433;98110819;100188996;101347736;103240005;105972952;107780890;110253438;112539549;114671468;115142120;115138762;116116791;117626929;119303117;121525748;123732285;125827313;127762337;129828102;131165130;132285552;133744150;135346314;136826943;142665101 -5102;'017;Middle Africa;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;883;112;6206;2327;1668;3670;3106 -5102;'017;Middle Africa;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110;30;1028;253;492;629;367 -5102;'017;Middle Africa;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3969152;3797797;2802313;1713384;2212955;1952386;2115770 -5102;'017;Middle Africa;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1105533;1205419;888931;526439;746303;600456;677960 -5102;'017;Middle Africa;1864;Wood fuel;5516;Production;m3;31777424;32442908;33152915;33878026;34633847;35400991;36205102;37026835;37911861;38780890;39352628;40227818;40771899;41449954;42682177;44234087;45264767;46617872;48070284;49166234;50211373;51690545;52913573;54128147;55437020;56603710;58088948;59612653;61483017;63795813;66657488;70410978;75171298;78321802;80590716;81850381;83403571;84797533;85672919;87274096;88735836;90231105;92307052;94098990;95601136;96823652;98207922;99623237;101069392;102547596;103995034;105465937;106978635;108524660;110109852;111409086;112735388;114089416;115471236;116883359;118333448;119814077;125652235 -5102;'017;Middle Africa;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;143;143;143;143;11;11;11;36;12;17;11;16;29;21;21;39;39;39;;15;15;9;9;0;23 -5102;'017;Middle Africa;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;3;3;3;3;2;2;2;3;8;9;3;18;14;5;10;19;19;19;;9;9;9;9;0;17 -5102;'017;Middle Africa;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;24;24;24;24;24;24;24;24;78;78;78;78;78;78;78;106;106;106;106;72;90;82;;18;1;18;18;55;195 -5102;'017;Middle Africa;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;1;1;1;1;1;1;1;43;43;43;43;43;43;43;57;57;57;57;64;83;64;;2;0;2;2;106;435 -5102;'017;Middle Africa;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 -5102;'017;Middle Africa;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0 -5102;'017;Middle Africa;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0 -5102;'017;Middle Africa;1628;Wood fuel, non-coniferous;5516;Production;m3;31777424;32442908;33152915;33878026;34633847;35400991;36205102;37026835;37911861;38780890;39352628;40227818;40771899;41449954;42682177;44234087;45264767;46617872;48070284;49166234;50211373;51690545;52913573;54128147;55437020;56603710;58088948;59612653;61483017;63795813;66657488;70410978;75171298;78321802;80590716;81850381;83403571;84797533;85672919;87274096;88735836;90231105;92307052;94098990;95601136;96823652;98207922;99623237;101069392;102547596;103995034;105465937;106978635;108524660;110109852;111409086;112735388;114089416;115471236;116883359;118333448;119814077;125652235 -5102;'017;Middle Africa;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;9;9;0;23 -5102;'017;Middle Africa;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;0;17 -5102;'017;Middle Africa;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;1;18;18;55;195 -5102;'017;Middle Africa;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;2;2;106;435 -5102;'017;Middle Africa;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;143;143;143;143;11;11;11;36;12;17;11;16;29;21;21;39;39;39;;;;;;; -5102;'017;Middle Africa;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;3;3;3;3;2;2;2;3;8;9;3;18;14;5;10;19;19;19;;;;;;; -5102;'017;Middle Africa;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;24;24;24;24;24;24;24;24;78;78;78;78;78;78;78;106;106;106;106;72;90;82;;;;;;; -5102;'017;Middle Africa;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;1;1;1;1;1;1;1;43;43;43;43;43;43;43;57;57;57;57;64;83;64;;;;;;; -5102;'017;Middle Africa;1865;Industrial roundwood;5516;Production;m3;5989000;5928000;6254000;6544000;6702000;7001000;7179000;7815000;8488000;8803000;8925000;8884000;9035000;8419000;7435000;7377000;7780000;8139000;8069000;8423000;8314750;8322500;8673000;9274000;9543000;9636000;9923000;10434000;10808000;11443000;10664000;11095400;11557000;12544000;13364900;13631900;14521900;13141100;12441100;12918100;12615100;13012100;13669100;13685100;14655502;15719097;16466746;15522083;14072570;13572395;13635095;13843380;14553313;15213825;15720661;16356451;17095914;17078914;16817516;16863991;17016066;17016066;17016066 -5102;'017;Middle Africa;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;611;51;51;436;827;827;1453;784;267;698;485;519;846;3666;3666;9090;8818;15953;14190;5825;12923;8038;5968;5120;3431;774;9954;34300;21961;11595;3673;4970;4197 -5102;'017;Middle Africa;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;21;8;8;38;97;97;124;87;34;148;177;175;176;268;268;1641;1251;4615;3983.3;1901.3;2205;1828;901;1554;406;200;2174;2171;1941;1149;875;863;539 -5102;'017;Middle Africa;1865;Industrial roundwood;5916;Export quantity;m3;2162800;2113500;2352900;2710800;2555700;2700100;2566200;2899900;3286200;3388400;3062700;2828700;3198900;2582700;1830200;2138907;2374100;2870100;2368000;2314400;2011500;2048000;1926100;2536300;2392800;2040900;2511200;2927200;2963300;2893688;2911534;2837121;2851459;3258550;3546587;4502200;5623524;4447810;4170614;4594765;4076626;3187005;3565986;2998561;3272475;3638946;3983388;3817626;2974494;2756730;2280879;2372653;2170989;2635954;2635210;3340507;3969438;3798206;2804440;1714523;2213161;1952866;2116288 -5102;'017;Middle Africa;1865;Industrial roundwood;5922;Export value;1000 USD;54580;56624;63133;75632;70571;73021;70361;83091;94187;93517;88510;101257;173768;223851;110187;143151;147920;201046;269227;325938;238496;195585;187995;197933;212506;230930;215051;275367;325766;654448;417835;644332;598248;667242;582884;546470;632119;518756;621811;611647;714172;438741;465376;463984;1027126;1152081;1428039;1354698;1024887;1136118;978481;914227;846233;938707;982827;970321;1105662;1205474;890353;527186;746610;600672;677830 -5102;'017;Middle Africa;1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;6200;6200;6200;3200;3200;3200;3200;3200;3200;3200;3200;3200 -5102;'017;Middle Africa;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;0;0;0;40;40;51;67;87;461;224;250;148;268;268;1129;2575;2949;1932;2906;2070;2433;4317;2344;2974;339;9071;34203;15770;9277;2014;1300;1114 -5102;'017;Middle Africa;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;0;0;0;3;3;6;5;9;88;135;137;12;16;16;68;159;189;202.3;555.3;201;324;403;231;330;95;2064;2150;922;905;392;234;189 -5102;'017;Middle Africa;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61413;97004;96900;96887;19448;12800;0;0;0;0;0;0;293;0;572;572;572;572;4194;5453;3092;3800;1216;5189;1553;726;943;286;427;2128;1157;224;535;713 -5102;'017;Middle Africa;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4011;5814;5782;5781;1083;831;0;0;0;0;0;0;137;0;30;30;30;30;224;412;1794;705;865;2354;503;236;113;129;57;1422;749;309;322;305 -5102;'017;Middle Africa;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;0;0;0;40;40;51;67;87;461;224;250;148;268;268;1129;2575;2949;1932;2906;2070;2433;4317;2344;2974;339;9071;34203;15770;9277;2014;1300;1114 -5102;'017;Middle Africa;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;0;0;0;3;3;6;5;9;88;135;137;12;16;16;68;159;189;202.3;555.3;201;324;403;231;330;95;2064;2150;922;905;392;234;189 -5102;'017;Middle Africa;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61413;97004;96900;96887;19448;12800;0;0;0;0;0;0;293;0;572;572;572;572;4194;5453;3092;3800;1216;5189;1553;726;943;286;427;2128;1157;224;535;713 -5102;'017;Middle Africa;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4011;5814;5782;5781;1083;831;0;0;0;0;0;0;137;0;30;30;30;30;224;412;1794;705;865;2354;503;236;113;129;57;1422;749;309;322;305 -5102;'017;Middle Africa;1867;Industrial roundwood, non-coniferous;5516;Production;m3;5989000;5928000;6254000;6544000;6702000;7001000;7179000;7815000;8488000;8803000;8925000;8884000;9035000;8419000;7435000;7377000;7780000;8139000;8069000;8423000;8314750;8322500;8673000;9274000;9543000;9636000;9923000;10434000;10808000;11443000;10664000;11095400;11557000;12544000;13364900;13631900;14521900;13137900;12437900;12914900;12611900;13008900;13665900;13681900;14652302;15715897;16463546;15518883;14069370;13569195;13631895;13837180;14547113;15207625;15717461;16353251;17092714;17075714;16814316;16860791;17012866;17012866;17012866 -5102;'017;Middle Africa;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;11;51;51;436;787;787;1402;717;180;237;261;269;698;3398;3398;7961;6243;13004;12258;2919;10853;5605;1651;2776;457;435;883;97;6191;2318;1659;3670;3083 -5102;'017;Middle Africa;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;8;8;38;94;94;118;82;25;60;42;38;164;252;252;1573;1092;4426;3781;1346;2004;1504;498;1323;76;105;110;21;1019;244;483;629;350 -5102;'017;Middle Africa;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2832275;2814530;2740221;2754572;3239102;3533787;4502200;5623524;4447810;4170614;4594765;4076626;3186712;3565986;2997989;3271903;3638374;3982816;3813432;2969041;2753638;2277079;2371437;2165800;2634401;2634484;3339564;3969152;3797779;2802312;1713366;2212937;1952331;2115575 -5102;'017;Middle Africa;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;650437;412021;638550;592467;666159;582053;546470;632119;518756;621811;611647;714172;438604;465376;463954;1027096;1152051;1428009;1354474;1024475;1134324;977776;913362;843879;938204;982591;970208;1105533;1205417;888931;526437;746301;600350;677525 -5102;'017;Middle Africa;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;1345;547;33;33;33;42;42;281;281;5973;5598;11653;11896;1702;8191;1617;974;1209;141;390;880;2;50;378;126;685;21 -5102;'017;Middle Africa;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;78;27;10;10;10;13;13;46;46;1198;741;3466;3434;770;1534;371;279;509;40;74;110;1;89;52;31;320;6 -5102;'017;Middle Africa;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2832275;2814530;2740221;2754572;3239102;3503000;4476500;5606450;4431717;4153809;4576379;4059738;3169556;3549153;2972121;3245687;3620688;3955171;3812147;2967113;2751193;2273782;2368250;2164791;2634313;2634484;3336083;3969152;3797779;2802312;1713366;2212937;1948368;2115575 -5102;'017;Middle Africa;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;650437;412021;638550;592467;666159;571529;537926;626914;514102;616886;605812;709049;433465;460371;458669;1021617;1146567;1420574;1353415;1022948;1132974;976744;912302;843222;938180;982591;970176;1105533;1205417;888931;526437;746301;598651;677525 -5102;'017;Middle Africa;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;11;51;51;436;787;787;57;170;147;204;228;227;656;3117;3117;1988;645;1351;362;1217;2662;3988;677;1567;316;45;3;95;6141;1940;1533;2985;3062 -5102;'017;Middle Africa;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;8;8;38;94;94;40;55;15;50;32;25;151;206;206;375;351;960;347;576;470;1133;219;814;36;31;0;20;930;192;452;309;344 -5102;'017;Middle Africa;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30787;25700;17074;16093;16805;18386;16888;17156;16833;25868;26216;17686;27645;1285;1928;2445;3297;3187;1009;88;0;3481;0;0;0;0;0;3963;0 -5102;'017;Middle Africa;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10524;8544;5205;4654;4925;5835;5123;5139;5005;5285;5479;5484;7435;1059;1527;1350;1032;1060;657;24;0;32;0;0;0;0;0;1699;0 -5102;'017;Middle Africa;1868;Sawlogs and veneer logs;5516;Production;m3;3549000;3384000;3615000;3816000;3918000;4169000;4262000;4825000;5394000;5628000;5677000;5561000;5665000;4968000;3898000;3746000;4053000;4310000;4133000;4377000;4156750;4168500;4397000;4889000;5029000;4991000;4915000;5020000;5271000;5730000;4919000;5071400;5326000;6045000;6618900;7086900;7547900;6758900;6053900;6489900;6103900;6433900;6783900;6585900;7438302;8565761;9086898;7831408;6615063;6110671;6266682;6371057;7055990;7716502;8223338;8859128;9598591;9581591;9320193;9366668;9518743;9518743;9518743 -5102;'017;Middle Africa;1868;Sawlogs and veneer logs;5916;Export quantity;m3;2162800;2113500;2352900;2710800;2555700;2700100;2566200;2899900;3286200;3388400;3062700;2828700;3198900;2582700;1830200;2138907;2374100;2870100;2368000;2314400;2011500;2048000;1926100;2536300;2392800;2040900;2272300;2427200;2497500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5102;'017;Middle Africa;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;54580;56624;63133;75632;70571;73021;70361;83091;94187;93517;88510;101257;173768;223851;110187;143151;147920;201046;269227;325938;238496;195585;187995;197933;212506;230930;204648;253198;305155;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5102;'017;Middle Africa;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;3000;3000;0;0;0;0;0;0;0;0;0 -5102;'017;Middle Africa;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;3549000;3384000;3615000;3816000;3918000;4169000;4262000;4825000;5394000;5628000;5677000;5561000;5665000;4968000;3898000;3746000;4053000;4310000;4133000;4377000;4156750;4168500;4397000;4889000;5029000;4991000;4915000;5020000;5271000;5730000;4919000;5071400;5326000;6045000;6618900;7086900;7547900;6758900;6053900;6489900;6103900;6433900;6783900;6585900;7438302;8565761;9086898;7831408;6615063;6110671;6266682;6368057;7052990;7713502;8223338;8859128;9598591;9581591;9320193;9366668;9518743;9518743;9518743 -5102;'017;Middle Africa;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;2162800;2113500;2352900;2710800;2555700;2700100;2566200;2899900;3286200;3388400;3062700;2828700;3198900;2582700;1830200;2138907;2374100;2870100;2368000;2314400;2011500;2048000;1926100;2536300;2392800;2040900;2272300;2427200;2497500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5102;'017;Middle Africa;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;54580;56624;63133;75632;70571;73021;70361;83091;94187;93517;88510;101257;173768;223851;110187;143151;147920;201046;269227;325938;238496;195585;187995;197933;212506;230930;204648;253198;305155;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5102;'017;Middle Africa;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 -5102;'017;Middle Africa;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 -5102;'017;Middle Africa;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;238900;500000;465800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5102;'017;Middle Africa;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;10403;22169;20611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5102;'017;Middle Africa;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;;;;228000;494000;465000;477000;309000;391000;391000;454000;505000;120000;373000;;;;;;;;;;;;;;;;;;;;;;;;;; -5102;'017;Middle Africa;1870;Pulpwood and particles (1961-1997);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;238900;500000;465800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5102;'017;Middle Africa;1870;Pulpwood and particles (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;10403;22169;20611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5102;'017;Middle Africa;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;;;;228000;494000;465000;477000;309000;391000;391000;454000;505000;120000;373000;;;;;;;;;;;;;;;;;;;;;;;;;; -5102;'017;Middle Africa;1871;Other industrial roundwood;5516;Production;m3;2440000;2494000;2549000;2608000;2669000;2732000;2797000;2865000;2934000;3005000;3078000;3153000;3230000;3311000;3397000;3491000;3587000;3689000;3796000;3906000;4018000;4138000;4260000;4385000;4514000;4645000;4780000;4920000;5072000;5236000;5436000;5633000;5840000;6045000;6241000;6425000;6601000;5901200;6026200;6067200;6150200;6217200;6524200;6738200;6856200;6980200;7110200;7110200;7110200;7110200;7110200;7235200;7260200;7260200;7260200;7260200;7260200;7260200;7260200;7260200;7260200;7260200;7260200 -5102;'017;Middle Africa;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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 -5102;'017;Middle Africa;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;2440000;2494000;2549000;2608000;2669000;2732000;2797000;2865000;2934000;3005000;3078000;3153000;3230000;3311000;3397000;3491000;3587000;3689000;3796000;3906000;4018000;4138000;4260000;4385000;4514000;4645000;4780000;4920000;5072000;5236000;5436000;5633000;5840000;6045000;6241000;6425000;6601000;5898000;6023000;6064000;6147000;6214000;6521000;6735000;6853000;6977000;7107000;7107000;7107000;7107000;7107000;7232000;7257000;7257000;7257000;7257000;7257000;7257000;7257000;7257000;7257000;7257000;7257000 -5102;'017;Middle Africa;1630;Wood charcoal;5510;Production;t;498233;516316;535083;554560;574778;595765;617550;640164;663643;688020;704376;728579;745040;763171;802199;845999;872115;907471;956359;989880;1016517;1055256;1082598;1110172;1137031;1172595;1218623;1262547;1317866;1391693;1479943;1593940;1762438;1877502;1955145;2055634;1828222;1892094;1950576;2019738;2412162;2493383;2575109;2657904;2745402;2833041;3084924;3181463;3278139;3384621;3488709;3596116;3706950;3821320;3939346;4048829;4161252;4277371;4396505;4519305;4644911;4774143;4907104 -5102;'017;Middle Africa;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;30;30;30;0;2;4;21;21;21;24;6;6;6;20;114;135;229;138;148;141;147;326;153;167;170;101;151;213;295;164;427 -5102;'017;Middle Africa;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;7;7;7;0;2;4;13;13;13;14;8;8;8;20;77;81;1152;189;109;123;114;213;169;118;108;155;184;253;192;189;695 -5102;'017;Middle Africa;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;97;97;97;97;97;97;131;131;131;131;131;151;157;199;192;217;162;219;537;133;242;362;353;806;212;311;1859 -5102;'017;Middle Africa;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;14;14;14;14;14;14;133;133;133;133;133;144;141;172;150;205;207;181;214;65;77;130;175;198;54;70;852 -5102;'017;Middle Africa;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 -5102;'017;Middle Africa;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;149;159;224;224;224;224;2429;2429;263;316;2194;845;2273;2126;1691;495;3019;2974;2872;1075;329;222;220;213;176;767 -5102;'017;Middle Africa;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;11;11;11;11;94;94;18;29;287;217;379;276;313;432;1322;1406;1237;410;198;90;153;133;179.01;155 -5102;'017;Middle Africa;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;600;600;600;600;25;794;794;794;44;251110;523223;671643;671649;543031;147709;38884;36312;36261;36904;52436;193;107;107;62;5417 -5102;'017;Middle Africa;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;31;31;31;31;31;34;34;34;13;19835;30115;39095;39113;31330;6886;2498;1985;1463;5043;2565;153;112;112;109;8113 -5102;'017;Middle Africa;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;41;47;67;67;67;67;77;142;142;142;142;142;142;142;187;2016;539;2079;1968;1488;195;2797;2706;2710;952;183;168;104;137;49;716 -5102;'017;Middle Africa;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;2;2;2;2;2;2;2;6;6;6;6;6;6;6;10;164;41;180;184;138;204;1131;1095;1099;325;94;54;59;89;80.01;93 -5102;'017;Middle Africa;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;251017;523016;671456;671456;542838;147512;38677;36105;36068;36851;52398;155;69;69;24;5367 -5102;'017;Middle Africa;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;19780;30042;39032;39032;31252;6804;2418;1905;1367;4734;2462;50;9;9;6;8011 -5102;'017;Middle Africa;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 -5102;'017;Middle Africa;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3465;568;104;104;80;15;82;82;82;82;82;82;2287;2287;121;129;178;306;194;158;203;300;222;268;162;123;146;54;116;76;127;51 -5102;'017;Middle Africa;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;156;22;4;4;3;1;5;5;5;5;5;5;88;88;12;19;123;176;199;92;175;228;191;311;138;85;104;36;94;44;99;62 -5102;'017;Middle Africa;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4096;750;1121;200;600;600;600;600;600;600;600;25;794;794;794;15;93;207;187;193;193;197;207;207;193;53;38;38;38;38;38;50 -5102;'017;Middle Africa;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;147;30;37;9;31;31;31;31;31;31;31;31;34;34;34;4;55;73;63;81;78;82;80;80;96;309;103;103;103;103;103;102 -5102;'017;Middle Africa;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;13;253.22;117 -5102;'017;Middle Africa;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;30;204.45;148 -5102;'017;Middle Africa;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;913 -5102;'017;Middle Africa;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;411 -5102;'017;Middle Africa;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;13;18;20 -5102;'017;Middle Africa;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;30;57;12 -5102;'017;Middle Africa;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;177 -5102;'017;Middle Africa;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46 -5102;'017;Middle Africa;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;235.22;97 -5102;'017;Middle Africa;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;147.45;136 -5102;'017;Middle Africa;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;736 -5102;'017;Middle Africa;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;365 -5102;'017;Middle Africa;1872;Sawnwood;5516;Production;m3;487400;434300;426000;456300;486300;492400;515600;661400;776000;820200;944300;785600;807300;836300;804900;740300;711900;943200;805500;794300;850300;828000;888000;788000;832000;942000;884500;794000;776400;881400;891600;977800;968450;1041650;989600;956600;832600;908600;937600;1493600;1214600;1146700;1201800;1188600;1278918;1285215;1535250;1584413;1569225;1650043;1944389;2040913;2098400;2230799;2301392;2289878;2413837;2612087;2944984;2760297;2895997;3381700;3391700 -5102;'017;Middle Africa;1872;Sawnwood;5616;Import quantity;m3;8500;7000;7000;9600;9400;7000;6500;9600;6450;9250;10500;9200;8200;7800;6300;6300;11700;11700;10700;11800;14500;14500;11600;8800;8720;8367;4885;10622;11060;10728;15100;27091;2066;11060;19850;21079;23997;20666;25661;19316;18901;19269;26784;22087;24717;31826;24682;12981;14327;29030;17744;13226;14882;8896;6235;15877;14633;5133;18120;28494;29291;16802;10386 -5102;'017;Middle Africa;1872;Sawnwood;5622;Import value;1000 USD;435;358;358;423;412;338;316;477;429;721;808;837;759;664;733;747;1759;1775;1685;1765;2228;2248;1908;1508;2093;2156;1749;2730;2931;3032;3853;8204;698;2015;2667;1882;1984;1941;1776;1201;1169;1441;1614;2136;3038;4958;3775.3;5670;5982;9009;9495;7768;9020;5847;3289;3559;3159;2093;3364;3186;6894;1680;1292 -5102;'017;Middle Africa;1872;Sawnwood;5916;Export quantity;m3;104300;115200;106000;120900;114700;148000;136300;142600;150200;158500;189500;206300;247500;241500;177200;228200;208300;247700;229400;278400;195400;197900;159300;188800;202100;156112;160214;180200;184200;283300;317600;309974;313969;421507;332914;448500;473675;435918;641533;1004055;895898;827921;817283;982899;1069874;1072970;1181469;1215537;879628;1078159;1461229;1363051;1273447;1365223;1477130;1601786;1785762;2090903;2300700;2237816;2347697;2967262;2753042 -5102;'017;Middle Africa;1872;Sawnwood;5922;Export value;1000 USD;6238;6561;6627;6149;6179;7260;7039;7962;8377;8557;10002;13922;18343;21961;20216;30482;29596;36212;40709;64933;40768;33840;28167;30662;37488;32100;41277;45989;37631;90655;76165;112975;103007;163763;151110;188113;222053;196393;268020;361843;342050;405969;418392;445519;537236;635939;669642;732496;508214;602186;835862;854055;881511;980716;1061837;1005696;1063953;1198138;1096404;1011231;1054232;1238028;1296953 -5102;'017;Middle Africa;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;10000;22000;22000;22000;27490;27490;28490;29190;29700;31600;32300;32300;32300 -5102;'017;Middle Africa;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;3153;1419;10047;19022;19730;23025;20151;20541;19248;18876;17765;21089;20107;20111;19853;21686;6887;11178;6464;3740;3309;3007;2512;1257;1112;1253;1734;1023;1189;2900;5747;6218 -5102;'017;Middle Africa;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;1131;324;1456;2268;1381;1631;1674;1500;1187;1164;1128;1168;1529;1528;1580;2024;1483;3391;1778;1281;1022;1015;1042;368;428;226;503;182;168;230;402;392 -5102;'017;Middle Africa;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;0;212;114;0;0;0;0;0;0;715;500;0;95;46;46;46;46;1110;729;920;920;920;670;731;731;7998;10235;22648;17625;4485;13122;11676;3616;4102;4058;3412;6222;5159;4604 -5102;'017;Middle Africa;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;0;64;28;0;0;0;0;0;0;251;254;0;27;13;13;13;13;567;360;357;357;357;315;364;364;2910;3074;7680;5761;1708;3509;3312;1244;1351;1752;1208;3230;2441;1307 -5102;'017;Middle Africa;1633;Sawnwood, non-coniferous;5516;Production;m3;487400;434300;426000;456300;486300;492400;515600;661400;776000;820200;944300;785600;807300;836300;804900;740300;711900;943200;805500;794300;850300;828000;888000;788000;832000;942000;884500;794000;776400;881400;891600;977800;968450;1041650;989600;956600;832600;908600;937600;1493600;1214600;1146700;1201800;1188600;1278918;1285215;1535250;1584413;1569225;1640043;1934389;2018913;2076400;2208799;2273902;2262388;2385347;2582897;2915284;2728697;2863697;3349400;3359400 -5102;'017;Middle Africa;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;7500;6000;6000;8600;8600;6000;5900;7900;6300;9100;9400;8800;8100;7700;6200;6200;11600;11600;10600;11700;14400;14400;11500;8700;7500;7500;2000;10100;10100;10100;10100;23938;647;1013;828;1349;972;515;5120;68;25;1504;5695;1980;4606;11973;2996;6094;3149;22566;14004;9917;11875;6384;4978;14765;13380;3399;17097;27305;26391;11055;4168 -5102;'017;Middle Africa;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;1751;1767;1677;1757;2220;2240;1900;1500;1912;1912;500;2600;2600;2600;2600;7073;374;559;399;501;353;267;276;14;5;313;446;607;1510;3378;1751.3;4187;2591;7231;8214;6746;8005;4805;2921;3131;2933;1590;3182;3018;6664;1278;900 -5102;'017;Middle Africa;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;104300;115200;106000;120900;114700;148000;136300;142600;150200;158500;189500;206300;247500;241500;177200;228200;208300;247700;229400;278400;195400;197900;159300;188800;202100;155900;160100;180200;184200;283300;317600;309974;313969;420792;332414;448500;473580;435872;641487;1004009;895852;826811;816554;981979;1068954;1072050;1180799;1214806;878897;1070161;1450994;1340403;1255822;1360738;1464008;1590110;1782146;2086801;2296642;2234404;2341475;2962103;2748438 -5102;'017;Middle Africa;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;6238;6561;6627;6149;6179;7260;7039;7962;8377;8557;10002;13922;18343;21961;20216;30482;29596;36212;40709;64933;40768;33840;28167;30662;37488;32036;41249;45989;37631;90655;76165;112975;103007;163512;150856;188113;222026;196380;268007;361830;342037;405402;418032;445162;536879;635582;669327;732132;507850;599276;832788;846375;875750;979008;1058328;1002384;1062709;1196787;1094652;1010023;1051002;1235587;1295646 -5102;'017;Middle Africa;1634;Veneer sheets;5516;Production;m3;70800;72700;96100;112200;129600;125000;144200;150500;161300;169000;183800;227300;245700;221700;168700;183500;193500;218600;256500;254800;234300;226950;243600;210900;207500;200200;179800;176000;180300;183200;105200;97800;90700;97600;100500;106300;157300;213000;222000;188000;196000;147700;157000;200600;288331;299213;416986;336537;234000;404964;409460;418710;410733;393147;401570;415548;430349;550690;641765;516727;615849;636863;637863 -5102;'017;Middle Africa;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;707;82;17;302;330;78;103;214;33;33;10084;6468;8707;2315;822;1461;953;1052;2712;5707;5904;2838;2968;2804;2626;1650;764;681;951;628;124;1042 -5102;'017;Middle Africa;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;621;305;72;200;251;63;53;138;16;16;6777;3203;4433;1310;705;1393;1232;1257;2139;6064;5457;4114;3165;2183;2802;1923;2737;580;2162;1654;920;534 -5102;'017;Middle Africa;1634;Veneer sheets;5916;Export quantity;m3;55500;54200;55400;95600;102000;112000;97100;109000;143100;138900;122700;144000;111600;105800;73500;96300;107500;127600;123600;132000;137400;123100;110200;107200;97000;83500;83900;79600;81700;102800;71300;68902;61090;82729;84981;109000;101662;145259;199755;181522;123022;165917;115148;193803;215095;130294;153461;151190;94986;117892;192842;168061;159287;151430;160225;197930;215419;254609;426165;369175;497928;586990;510769 -5102;'017;Middle Africa;1634;Veneer sheets;5922;Export value;1000 USD;3922;4839;4902;6210;7002;8032;7053;7425;10960;12225;12378;18396;22392;23269;14146;20262;26268;33397;40002;57649;49690;41617;37800;30666;29452;32930;39648;45119;41686;54470;38054;50480;45294;63779;67358;62634;47561;73133;69430;58108;87085;110668;105348;166723;187025;193104;269921;240411;160796;189998;228308;185613;178606;176632;154500;174263;183131;225451;312271;277691;314426;379888;326959 -5102;'017;Middle Africa;1873;Wood-based panels;5516;Production;m3;67500;79900;111000;104100;115500;79600;86500;96100;105200;108900;113400;130900;131900;126300;109000;97700;77800;104100;103800;151200;136900;184300;204300;229800;264400;225900;219200;209300;190200;159600;154300;93100;88500;84000;91400;94600;139400;227400;242000;155000;130000;156700;157800;96100;187434;179261;139121;184705;133863;130000;140000;123119;126642;122517;121920;120701;119656;99500;91237;91064;114947;191881;196881 -5102;'017;Middle Africa;1873;Wood-based panels;5616;Import quantity;m3;1300;1500;1700;2000;2400;2600;2200;2600;2700;3200;2500;2500;2500;2800;2800;3500;2500;2500;4200;4300;3300;4300;4400;6900;3226;4135;5390;4827;3291;3700;4000;9904;1273;3010;3381;4587;2912;3448;10180;1915;6382;4508;19674;27363;19764;21362;21390;40474;31869;89156;95927;101582;124417;93344;38643;15972;24359;25878;29121;25592;32928.3;48581;64389 -5102;'017;Middle Africa;1873;Wood-based panels;5622;Import value;1000 USD;202;290;376;416;483;583;560;726;729;832;703;750;749;880;884;1560;1140;1142;1716;1860;1477;1826;1803;1728;1482;1847;2447;2177;1553;2093;2210;4135;684;2465;2868;2472;1507;1424;709;576;784;904;21488;26786;7177;6634;16670;35040;29920;33059;48536;48562;56870;64660;26186;10940;14406;15384;14832;14213;16542.68;26702;29383 -5102;'017;Middle Africa;1873;Wood-based panels;5916;Export quantity;m3;60600;63900;66000;62300;62100;62400;64000;74400;72000;66800;46100;57200;45900;47800;58800;34400;47900;47900;21500;53600;61500;56100;63800;65100;59700;101300;124500;134500;113900;84800;83900;18194;16926;26349;23831;35831;72690;101459;109549;113951;79782;47737;42437;43132;53922;58414;69743;58988;56659;64623;58467;58559;65734;61111;49024;55470;41376;38292;42295;33565;60777;139572;135955 -5102;'017;Middle Africa;1873;Wood-based panels;5922;Export value;1000 USD;7185;7026;7630;7785;7691;6964;7715;8009;9049;9069;6454;7914;12874;13884;16363;10940;21716;22075;8945;28553;26769;26543;30510;31986;19578;45560;56390;54509;54171;43021;47348;14342;13088;18204;20606;23691;23419;34738;41909;36052;24287;36893;36223;41855;33098;38044;55053;59212;46080;53756;47005;44734;51011;49628;37269;39396;32504;27997;27185;23236;38635;89248;84974 -5102;'017;Middle Africa;1640;Plywood and LVL;5516;Production;m3;67500;79900;111000;104100;115500;79600;86500;94100;101200;104900;109400;126900;131400;125800;108800;97700;77300;103600;103300;151200;136900;184300;204300;229800;264400;225900;219200;209300;190200;159600;154300;93100;88500;84000;91400;94600;139400;227400;242000;155000;130000;156700;157800;96100;187434;179261;139121;184705;133863;130000;140000;123119;126642;122517;121920;120701;119656;99500;91237;91064;114947;191881;196881 -5102;'017;Middle Africa;1640;Plywood and LVL;5616;Import quantity;m3;1300;1500;1700;2000;2400;2600;2200;2600;2700;3200;2500;2500;2500;2800;2800;3500;2500;2500;4200;4300;3300;4300;4400;6900;3226;4135;5390;4827;3291;3700;4000;1640;686;1562;1690;2311;1550;2003;1235;857;2568;3328;15912;21688;15125;19602;17428;33243;24532;82336;79575;92185;113554;79642;28702;11691;15812;16440;19737;17820;19228;25163;14038 -5102;'017;Middle Africa;1640;Plywood and LVL;5622;Import value;1000 USD;202;290;376;416;483;583;560;726;729;832;703;750;749;880;884;1560;1140;1142;1716;1860;1477;1826;1803;1728;1482;1847;2447;2177;1553;2093;2210;1132;450;949;1327;1519;1019;1093;420;386;433;630;20267;25500;6205;5994;13294;28319;23118;25321;32709;36776;45049;49729;17043;6054;6563;7610;8525;7862;7615;12839;7043 -5102;'017;Middle Africa;1640;Plywood and LVL;5916;Export quantity;m3;60600;63900;66000;62300;62100;62400;64000;74400;72000;66800;46100;57200;45900;47800;58800;34400;47900;47900;21500;53600;61500;56100;63800;65100;59700;101300;124500;134500;113900;84800;83900;18145;16895;26318;23800;35800;72600;101400;109400;113802;79633;47588;42288;42902;52898;58072;69401;58503;56432;64405;58249;58331;65565;60790;48560;55006;41052;37971;41965;33318;60492;139301;134703 -5102;'017;Middle Africa;1640;Plywood and LVL;5922;Export value;1000 USD;7185;7026;7630;7785;7691;6964;7715;8009;9049;9069;6454;7914;12874;13884;16363;10940;21716;22075;8945;28553;26769;26543;30510;31986;19578;45560;56390;54509;54171;43021;47348;14303;13073;18189;20591;23676;23347;34681;41835;35978;24213;36819;36149;41631;32869;37951;54960;58631;45932;53562;46811;44610;50844;49429;36976;39103;32332;27817;27003;23090;38485;89117;84570 -5102;'017;Middle Africa;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5102;'017;Middle Africa;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1441;301;287;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5102;'017;Middle Africa;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;351;88;178;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5102;'017;Middle Africa;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;31;31;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5102;'017;Middle Africa;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;15;15;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5102;'017;Middle Africa;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 -5102;'017;Middle Africa;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;265;1711;818;320;1909;27;2791;11;82;1872;1872;814;934;1843;992;1328;5105;1730;1896;2158;2710;467;2141;2141;2674;2033;2006.63;4924;16282 -5102;'017;Middle Africa;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;169;404;274;165;75;11;117;9;117;342;342;359;800;1863;1163;1821;4184;2068;1750;2341;1565;808;1992;1992;1639;1431;2079.09;3535;4297 -5102;'017;Middle Africa;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;31;90;59;149;149;149;149;149;230;1024;342;342;485;227;218;218;228;169;321;464;464;273;273;282;199;237;223;547 -5102;'017;Middle Africa;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;72;57;74;74;74;74;74;224;229;93;93;581;148;194;194;124;167;199;293;293;150;150;152;116;120;101;78 -5102;'017;Middle Africa;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;4;95;97;97;22;196;488;495;179;140;174;341;582;352;207;141;59;288;254;741.02;907;2811 -5102;'017;Middle Africa;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;32;31;30;30;18;100;225;412;255;141;221;219;469;319;168;69;51;85;155;235;269;576 -5102;'017;Middle Africa;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;48;48;48;48;48;48 -5102;'017;Middle Africa;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;30;30;30;30;30;30 -5102;'017;Middle Africa;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6823;286;1161;1426;565;544;1125;7036;1013;1005;1165;3585;3706;2670;924;2832;4900;5850;5313;11107;7493;8626;10962;6879;3607;6265;7238;6422;5485;10952.65;17587;31258 -5102;'017;Middle Africa;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2652;146;1338;1372;549;214;166;214;176;231;233;1073;914;600;263;2476;4633;5227;5662;11502;9497;9852;12121;7259;3910;5782;5731;4583;4765;6613.59;10059;17467 -5102;'017;Middle Africa;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;657 -5102;'017;Middle Africa;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;296 -5102;'017;Middle Africa;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;131;52;5835;600;640;666;600;1401;613;326;501;1237;1351;999;5257;1645;1391;1787;298;219;826;793;206;165;1022.81;1203;1748 -5102;'017;Middle Africa;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110;34;135;117;197;184;333;515;284;131;302;1087;971;627;4000;1260;1023;2191;244;234;545;522;119;119;1055.93;722;1301 -5102;'017;Middle Africa;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;13;13;32;20;14;14;14;690;1050;941;291;1263;1995;2568;3158;4711;4815;6267;7951;5409;2880;4136;4414;4951;4859;8970.99;13584;24796 -5102;'017;Middle Africa;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;7;7;16;7;7;7;7;86;192;167;56;1336;1691;2376;3195;5092;6693;7551;9310;6456;3393;4125;3685;3828;4143;5141.66;8865;14584 -5102;'017;Middle Africa;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;381 -5102;'017;Middle Africa;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;246 -5102;'017;Middle Africa;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6755;259;1133;1417;552;400;1041;1181;399;351;485;2295;1255;1116;307;1068;1668;1931;1156;1139;1033;968;1224;1172;508;1303;2031;1265;461;958.84;2800;4714 -5102;'017;Middle Africa;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2568;126;1326;1366;542;97;116;72;52;27;42;654;207;149;76;838;1855;1880;1840;2410;1544;1278;620;559;283;1112;1524;636;503;416;472;1582 -5102;'017;Middle Africa;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;276 -5102;'017;Middle Africa;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50 -5102;'017;Middle Africa;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;27;28;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5102;'017;Middle Africa;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;20;12;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5102;'017;Middle Africa;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5102;'017;Middle Africa;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5102;'017;Middle Africa;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 -5102;'017;Middle Africa;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;922;549;491;340;486;1349;1596;1043;1054;2341;2547;2088;7372;7372;2305;3106;4520;5504;5426;7607;7620;11290;12902;2707;6041;12103;16187;18703;25195;28975.66;23883;33905 -5102;'017;Middle Africa;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;382;284;208;294;317;434;435;287;298;1326;906;1017;1640;1640;1408;2281;3026;3693;3367;4661;5099;8545;8617;6601;3581;7063;11832;15528;19730;28063.09;27327;31594 -5102;'017;Middle Africa;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;27100;31700;33900;31900;30900;33300;18600;;;;;;;;;;;;;;;;;;;0;0;0;0;503;503;681;681;681;685;888;980;980;887;1402;2075;2155;2649;2261;2431;1776;1411;1174;1276;1932;1932;1079;1528;2717;2128;2128 -5102;'017;Middle Africa;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;2607;3213;3877;3987;4085;4768;3259;;;;;;;;;;;;;;;;;;;0;0;0;0;244;244;327;327;327;328;422;444;444;417;593;1162;1190;1443;1245;1273;1035;856;830;847;1285;1285;770;790;787;1031;1033 -5102;'017;Middle Africa;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 -5102;'017;Middle Africa;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;344;412;258;237;289;579;433;380;391;1591;961;1263;1346;1346;1732;2459;3311;4543;4393;6261;6397;10441;10378;1993;4579;10011;13987;12684;20332;21662.81;18905;30814 -5102;'017;Middle Africa;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;269;255;173;254;287;386;376;240;251;1102;604;798;886;886;1239;2048;2657;3478;3045;4284;4748;8231;7358;6278;3093;6629;11330;13268;17288;25380.03;25473;30844 -5102;'017;Middle Africa;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;27100;31700;33900;31900;30900;33300;18600;;;;;;;;;;;;;;;;;;;0;0;0;0;503;503;681;681;681;685;860;942;942;849;849;1377;1377;1132;1132;1156;1182;901;901;901;1290;1290;736;736;736;736;736 -5102;'017;Middle Africa;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;2607;3213;3877;3987;4085;4768;3259;;;;;;;;;;;;;;;;;;;0;0;0;0;244;244;327;327;327;328;418;439;439;412;412;956;956;886;886;899;920;771;771;771;1140;1140;697;697;697;698;700 -5102;'017;Middle Africa;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 -5102;'017;Middle Africa;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;1500;100;1800;1800;1800;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;344;412;258;231;283;573;420;367;378;1578;948;1237;1314;1314;1700;2428;3220;4432;4283;6087;5934;10260;10294;1898;4442;9902;13896;12635;20251;21560.81;18893;30763 -5102;'017;Middle Africa;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;269;255;173;246;279;378;364;228;239;1090;592;767;837;837;1092;1910;2518;3277;2939;4136;4600;8085;7280;6146;2842;6486;11239;13238;17246;25317.03;25496;30848 -5102;'017;Middle Africa;1875;Wood pulp;5910;Export quantity;t;;;;;;;;27100;31700;33900;31900;30900;33300;18600;;;;;;;;;;;;;;;;;;;0;0;0;0;503;503;681;681;681;685;859;941;941;848;848;1376;1376;1128;1128;1152;1178;897;897;897;1286;1286;732;732;732;732;731 -5102;'017;Middle Africa;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;2607;3213;3877;3987;4085;4768;3259;;;;;;;;;;;;;;;;;;;0;0;0;0;244;244;327;327;327;328;407;428;428;401;401;945;945;829;829;842;863;714;714;714;1083;1083;640;640;640;641;642 -5102;'017;Middle Africa;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;368;1;1;0;1;1 -5102;'017;Middle Africa;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;459;10;10;1;1;1 -5102;'017;Middle Africa;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;95;95;95;100;110;110;110;112;112;135;104;100;100;;;;;;; -5102;'017;Middle Africa;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;30;30;30;32;159;159;159;169;169;198;44;35;32;;;;;;; -5102;'017;Middle Africa;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;24;24;24;24;0;0;0;0;0;7;4;4;4;4;534;534;534;534;534;534;44;46;6;;;;;;; -5102;'017;Middle Africa;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;10;10;10;10;0;0;0;0;0;5;2;2;2;2;301;301;301;301;301;301;67;49;15;;;;;;; -5102;'017;Middle Africa;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108;108;108;108;108;108;108;108;108;108;108;108;108;;;;;;; -5102;'017;Middle Africa;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;;;;;;; -5102;'017;Middle Africa;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 -5102;'017;Middle Africa;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;312;293;234;207;259;549;420;367;378;1578;948;1183;1214;1214;1600;2323;2575;3787;3623;5425;5272;9574;10129;1735;4319;9862;13470;12574;20242;21559.81;18831;30666 -5102;'017;Middle Africa;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;251;201;163;236;269;368;364;228;239;1090;592;748;804;804;1059;1875;2057;2816;2466;3653;4117;7573;7156;6049;2782;6446;10725;13173;17230;25311.03;25440;30758 -5102;'017;Middle Africa;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;27100;31700;33900;31900;30900;33300;18600;;;;;;;;;;;;;;;;;;;0;0;0;0;503;503;681;681;681;685;859;833;833;740;740;1268;1268;1020;1020;1044;1070;789;789;789;1286;1286;732;732;732;732;731 -5102;'017;Middle Africa;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;2607;3213;3877;3987;4085;4768;3259;;;;;;;;;;;;;;;;;;;0;0;0;0;244;244;327;327;327;328;407;388;388;361;361;905;905;789;789;802;823;674;674;674;1083;1083;640;640;640;641;642 -5102;'017;Middle Africa;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 -5102;'017;Middle Africa;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;32;32;32;32;32;34;4;4;22;22;22;70;75;54;1080;706 -5102;'017;Middle Africa;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;13;13;13;13;13;20;9;9;22;22;22;61;62;49;915;471 -5102;'017;Middle Africa;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 -5102;'017;Middle Africa;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 -5102;'017;Middle Africa;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 -5102;'017;Middle Africa;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;267;225;203;120;120;430;301;301;312;1512;712;1100;1016;1016;1278;1956;2199;3500;3114;4916;4911;9243;10076;1528;4251;9793;13448;12503;20112;21450.81;17696;29905 -5102;'017;Middle Africa;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;198;143;136;163;163;277;273;182;193;1044;443;687;627;627;756;1552;1719;2551;1891;3078;3726;7205;7105;5873;2706;6368;10703;13110;17129;25223.03;24486;30248 -5102;'017;Middle Africa;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;248;248;426;426;426;430;604;578;578;485;485;1013;1013;765;765;789;789;789;789;789;1286;1286;732;732;732;732;731 -5102;'017;Middle Africa;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;116;116;199;199;199;200;279;260;260;233;233;777;777;661;661;674;674;674;674;674;1083;1083;640;640;640;641;642 -5102;'017;Middle Africa;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;0;1;55;55;55;55 -5102;'017;Middle Africa;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;0;2;39;39;39;39 -5102;'017;Middle Africa;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;0;0;0;;;;;;; -5102;'017;Middle Africa;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;0;0;0;;;;;;; -5102;'017;Middle Africa;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;68;31;87;139;119;119;66;66;66;236;83;198;198;322;367;344;255;477;477;329;289;49;203;46;;;;;;; -5102;'017;Middle Africa;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;58;27;73;106;91;91;46;46;46;149;61;177;177;303;323;325;252;562;562;378;340;42;167;54;;;;;;; -5102;'017;Middle Africa;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;281;0;0;0;;;;;;; -5102;'017;Middle Africa;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;149;0;0;0;;;;;;; -5102;'017;Middle Africa;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;1;1;1;1;1;1;16;16;16;17;17;17;17;17;58;60;8;1;61;96 -5102;'017;Middle Africa;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;1;1;1;1;1;1;13;13;13;13;13;13;13;13;55;55;6;5;55;89 -5102;'017;Middle Africa;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 -5102;'017;Middle Africa;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;6;6;6;13;13;13;13;13;26;33;33;33;32;92;112;126;190;479;198;101;112;154;126;149;109;89;103;73;147 -5102;'017;Middle Africa;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;8;8;8;12;12;12;12;12;31;50;50;148;139;140;202;119;161;161;159;91;145;264;156;146;85;48;68;32;85 -5102;'017;Middle Africa;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;4;4;4;4;4;4;4;4;4;4;4;4;4;5 -5102;'017;Middle Africa;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;11;11;11;11;57;57;57;57;57;57;57;57;57;57;57;57;57;58 -5102;'017;Middle Africa;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;16;16;16;16;20;66;81;80;88;106;129;129;129;129;129;100;96;73;276.08;522.08 -5102;'017;Middle Africa;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;12;12;12;12;16;36;62;111;175;270;293;293;293;293;293;93;76;73;84.12;442.12 -5102;'017;Middle Africa;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;578;137;233;103;197;770;1163;663;663;750;1586;825;6026;6026;573;647;1209;961;1033;1346;1223;849;2524;714;1462;2092;2200;6019;4863;7312.84;4978;3091 -5102;'017;Middle Africa;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113;29;35;40;30;48;59;47;47;224;302;219;754;754;169;233;369;215;322;377;351;314;1259;323;488;434;502;2260;2442;2683.06;1854;750 -5102;'017;Middle Africa;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;28;38;38;38;553;698;778;1517;1129;1275;594;510;273;375;642;642;343;792;1981;1392;1392 -5102;'017;Middle Africa;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;4;5;5;5;181;206;234;557;359;374;115;85;59;76;145;145;73;93;90;333;333 -5102;'017;Middle Africa;1876;Paper and paperboard;5510;Production;t;1900;3600;3100;4100;3500;4600;5600;11000;12100;15300;16600;17300;21100;19500;19500;19500;19500;19500;19500;19500;19500;20000;8000;7000;7000;8000;8000;7000;6000;6000;6000;8000;8000;8000;8000;8000;3000;3000;3000;3000;3000;3000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000 -5102;'017;Middle Africa;1876;Paper and paperboard;5610;Import quantity;t;8100;10300;13200;14100;16200;25500;23200;26100;28000;28900;34300;32800;33890;37500;40400;37100;33500;29400;29900;27400;22800;23000;19900;20400;40200;61300;101900;93200;64100;63800;64300;41554;51138;47496;36107;46964;43844;40226;45409;42894;61336;60441;68103;86083;86116;71573;86934;116215;92223;99468;115969;111140;124437;134089;135743;120471;190620;131917;157928;145755;162377.61;185002.07;214240 -5102;'017;Middle Africa;1876;Paper and paperboard;5622;Import value;1000 USD;3871;4524;7218;5617;6323;10317;10601;11607;12729;9681;14232;18204;19573;19119;24986;25778;27009;22960;23781;22672;18854;20162;16963;17089;35977;74280;90905;77730;58849;81285;86118;32374;33166;37238;34425;38958;34808;33778;30701;29053;41705;54700;60893;70367;70057;67889;85178;111477;92751;120834;139793;121029;139077;166731;138227;113398;173643;131958;182058;147556;181718.3;228740.55;253251 -5102;'017;Middle Africa;1876;Paper and paperboard;5910;Export quantity;t;;;;;600;800;1300;1000;1900;1200;900;1000;1800;1800;;;;;;;;;;;;;0;;;;;8164;432;432;16;16;1049;407;240;238;238;240;347;550;550;645;691;4845;4154;10262;9814;12348;8158;9426;4297;5409;4964;4635;2689;2057;1712;1967.3;1458.3 -5102;'017;Middle Africa;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;159;230;347;297;268;340;253;352;479;479;;;;;;;;;;;;;;;;;;5403;299;299;20;20;541;348;170;153;153;161;288;523;523;552;654;4110;8887;15071;14327;15942;9238;8596;3703;4682;5639;4940;1926;1588;1362;1760.45;1020.45 -5102;'017;Middle Africa;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;;;;;;;;;;;;;;;;;;;;;;;;;; -5102;'017;Middle Africa;2042;Graphic papers;5610;Import quantity;t;1500;2500;3300;3100;4500;4200;5300;5000;3900;4700;11600;7600;7990;10600;19000;11600;11600;10100;11800;11300;9000;10500;8900;9800;16400;24100;15300;18400;14000;12100;15600;12832;20201;20070;8144;19443;17849;19154;20099;18246;17915;28713;35551;42625;42658;34061;37693;56160;45672;49251;59466;63265;64564;69801;58495;65494;89888;65484;74879;57561;68659.79;74208.07;90346 -5102;'017;Middle Africa;2042;Graphic papers;5622;Import value;1000 USD;435;1192;1859;1160;1445;1402;1596;1622;1452;1809;4105;7545;7738;6863;15805;11172;11061;8339;9745;9806;7644;8587;7127;7841;15315;25433;18586;20073;17846;20782;22977;13336;17108;17824;10094;19902;18869;19182;15643;14658;15535;29223;30573;34883;34573;33830;40996;58435;53537;62784;78697;75542;77963;84783;63887;59206;84327;73135;78243;54062;72945.63;90922.55;124783 -5102;'017;Middle Africa;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;0;0;0;0;0;0;;;;;;;;;;;;;0;;;;;;94;94;16;16;49;340;156;154;154;142;123;149;149;148;142;2773;2887;6275;5823;9195;5431;5938;3207;4062;917;866;918;763;680;740;432 -5102;'017;Middle Africa;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;0;;;;;;;;;;;;;;;;;;;;82;82;20;20;54;317;117;100;100;96;106;126;126;128;129;2597;6181;8777;8110;11259;5342;4394;2004;3329;1010;605;516;560;490;643;301 -5102;'017;Middle Africa;1671;Newsprint;5610;Import quantity;t;600;400;1100;500;1900;1200;2100;1800;800;700;1900;1200;1490;3100;2100;3000;3000;2500;3500;3000;2500;3000;3100;3400;3600;3000;3600;2200;2100;4900;3800;1518;3503;1021;1499;4427;2570;2928;4182;2005;2405;6244;5093;4532;4565;3810;8066;4306;8455;9276;7870;7992;8825;11184;8518;4822;13460;3578;7936;6312;4657.46;3187.07;4770 -5102;'017;Middle Africa;1671;Newsprint;5622;Import value;1000 USD;107;126;364;136;421;220;405;412;252;227;359;415;471;1043;680;2069;1540;1365;1922;1682;1414;1657;1697;1538;1856;1882;2455;1304;1459;4297;2897;638;1652;688;1282;2478;1054;1264;1690;974;1314;2934;2946;3015;3023;2772;5232;2997;5853;8723;9339;11123;11733;15506;7831;3123;9067;3110;6186;4040;3380.23;4029.56;4359 -5102;'017;Middle Africa;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;164;107;107;266;266;181;165;165;379;380;363;369;366;363;363 -5102;'017;Middle Africa;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1550;1507;1507;1614;1614;109;109;109;229;230;224;227;227;220;220 -5102;'017;Middle Africa;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;;;;;;;;;;;;;;;;;;;;;;;;;; -5102;'017;Middle Africa;1674;Printing and writing papers;5610;Import quantity;t;900;2100;2200;2600;2600;3000;3200;3200;3100;4000;9700;6400;6500;7500;16900;8600;8600;7600;8300;8300;6500;7500;5800;6400;12800;21100;11700;16200;11900;7200;11800;11314;16698;19049;6645;15016;15279;16226;15917;16241;15510;22469;30458;38093;38093;30251;29627;51854;37217;39975;51596;55273;55739;58617;49977;60672;76428;61906;66943;51249;64002.33;71021;85576 -5102;'017;Middle Africa;1674;Printing and writing papers;5622;Import value;1000 USD;328;1066;1495;1024;1024;1182;1191;1210;1200;1582;3746;7130;7267;5820;15125;9103;9521;6974;7823;8124;6230;6930;5430;6303;13459;23551;16131;18769;16387;16485;20080;12698;15456;17136;8812;17424;17815;17918;13953;13684;14221;26289;27627;31868;31550;31058;35764;55438;47684;54061;69358;64419;66230;69277;56056;56083;75260;70025;72057;50022;69565.4;86893;120424 -5102;'017;Middle Africa;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94;94;16;16;49;340;156;154;154;142;123;149;149;148;142;2773;2723;6168;5716;8929;5165;5757;3042;3897;538;486;555;394;314;377;69 -5102;'017;Middle Africa;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;82;20;20;54;317;117;100;100;96;106;126;126;128;129;2597;4631;7270;6603;9645;3728;4285;1895;3220;781;375;292;333;263;423;81 -5102;'017;Middle Africa;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8148;8243;7951;4990;11113;7842;8291;8291;9963;8891;2216;2893;2083;1989;3661;3980;3837;9961;3382;3259;4795;3260;2125;4845.93;9225;4398 -5102;'017;Middle Africa;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7514;5893;5443;4132;13664;8138;8708;8390;9300;9396;3237;3416;3098;3300;5500;7936;5951;9370;4275;3917;7893;6320;3602;10442.98;14526;7896 -5102;'017;Middle Africa;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;82;82;82;82;805;805;805;874;1656;2546;3168;2551;3374;127;127;355;109;83;157;14 -5102;'017;Middle Africa;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;64;64;64;64;675;675;675;702;1015;1406;1867;1547;2490;74;74;93;89;67;146;14 -5102;'017;Middle Africa;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4373;4326;5009;6289;4318;15243;20618;20618;11645;11049;39301;23851;28253;39409;40754;40704;41400;28964;47145;55348;47554;50599;36638;49009.19;49702;70389 -5102;'017;Middle Africa;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6022;4800;5186;6642;4689;10869;12865;12865;10449;13354;37645;30688;38005;52561;44727;43981;46822;31547;40939;51972;48164;48953;33061;48129.77;55581;93266 -5102;'017;Middle Africa;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;21;21;21;9;9;17;17;16;16;902;919;4533;4561;5719;2128;2168;226;247;208;136;57;131;60;67;52 -5102;'017;Middle Africa;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;14;14;14;10;10;16;16;18;18;903;921;5452;5480;6615;2051;2065;127;510;520;82;65;109;47;80;62 -5102;'017;Middle Africa;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3705;3348;3281;4231;7038;7373;9184;9184;8643;9687;10337;10473;9639;10198;10858;11055;13380;11052;10145;17821;9557;13084;12486;10147.21;12094;10789 -5102;'017;Middle Africa;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4382;3260;3055;3447;7936;8620;10295;10295;11309;13014;14556;13580;12958;13497;14192;14313;16504;15139;10869;19371;13968;16784;13359;10992.65;16786;19262 -5102;'017;Middle Africa;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;314;135;133;133;133;32;50;50;50;44;1066;999;830;281;1554;491;421;265;276;203;223;143;154;171;153;3 -5102;'017;Middle Africa;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;291;103;86;86;86;32;46;46;46;47;1019;3035;1143;421;2015;271;353;221;220;187;219;134;135;149;197;5 -5102;'017;Middle Africa;1675;Other paper and paperboard;5510;Production;t;1900;3600;3100;4100;3500;4600;4700;10100;10700;13800;14400;14700;17600;16500;16500;16500;16500;16500;16500;16500;16500;17000;8000;7000;7000;8000;8000;7000;6000;6000;6000;8000;8000;8000;8000;8000;3000;3000;3000;3000;3000;3000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000 -5102;'017;Middle Africa;1675;Other paper and paperboard;5610;Import quantity;t;6600;7800;9900;11000;11700;21300;17900;21100;24100;24200;22700;25200;25900;26900;21400;25500;21900;19300;18100;16100;13800;12500;11000;10600;23800;37200;86600;74800;50100;51700;48700;28722;30937;27426;27963;27521;25995;21072;25310;24648;43421;31728;32552;43458;43458;37512;49241;60055;46551;50217;56503;47875;59873;64288;77248;54977;100732;66433;83049;88194;93717.82;110794;123894 -5102;'017;Middle Africa;1675;Other paper and paperboard;5622;Import value;1000 USD;3436;3332;5359;4457;4878;8915;9005;9985;11277;7872;10127;10659;11835;12256;9181;14606;15948;14621;14036;12866;11210;11575;9836;9248;20662;48847;72319;57657;41003;60503;63141;19038;16058;19414;24331;19056;15939;14596;15058;14395;26170;25477;30320;35484;35484;34059;44182;53042;39214;58050;61096;45487;61114;81948;74340;54192;89316;58823;103815;93494;108772.66;137818;128468 -5102;'017;Middle Africa;1675;Other paper and paperboard;5910;Export quantity;t;;;;;600;800;1300;1000;1900;1200;900;1000;1800;1800;;;;;;;;;;;;;;;;;;8164;338;338;0;0;1000;67;84;84;84;98;224;401;401;497;549;2072;1267;3987;3991;3153;2727;3488;1090;1347;4047;3769;1771;1294;1032;1227.3;1026.3 -5102;'017;Middle Africa;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;159;230;347;297;268;340;253;352;479;479;;;;;;;;;;;;;;;;;;5403;217;217;0;0;487;31;53;53;53;65;182;397;397;424;525;1513;2706;6294;6217;4683;3896;4202;1699;1353;4629;4335;1410;1028;872;1117.45;719.45 -5102;'017;Middle Africa;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 -5102;'017;Middle Africa;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;177;17;3301;3519;4798;5090;5090;5944;6779;6699;5450;7317;6297;5649;9900;9179;16057;12611;14748;9939;19282;14464;15563.73;15328;14814 -5102;'017;Middle Africa;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;159;9;3355;5265;7478;7808;7808;9105;10759;9611;7345;12459;10432;8750;15363;15145;31249;14214;18781;12672;35909;21008;23012.6;28730;24792 -5102;'017;Middle Africa;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;0;0;0;0;0;3;9;46;42;42;48;78;161;157;267;125;122;74 -5102;'017;Middle Africa;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;0;0;0;0;0;23;35;109;98;98;111;125;214;266;314;170;171;99 -5102;'017;Middle Africa;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19102;24412;24066;35274;24544;24736;31246;31246;26780;36477;44057;36895;37908;44833;39456;46693;46792;58573;35448;84943;54783;62037;72116;76741.08;92578;107674 -5102;'017;Middle Africa;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12810;13859;13770;19226;15656;16872;20673;20673;18975;25271;32107;23805;34751;40130;31891;37258;42466;39555;25967;66926;42932;63522;68606;81431.66;103348;97126 -5102;'017;Middle Africa;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;17;17;17;31;102;230;230;339;413;1796;1181;3748;3766;2915;2505;3176;778;1169;3837;3476;1547;922;863;871.3;788.3 -5102;'017;Middle Africa;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;22;22;22;34;73;150;150;177;261;1115;2374;5363;5366;3786;3423;3080;577;962;4221;3838;988;540;568;499.45;439.45 -5102;'017;Middle Africa;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;;;;;;;;;;;;;;;;;;;;;;;;;; -5102;'017;Middle Africa;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;34800;39700;38700;39200;36200;18889;26051;22022;23633;25200;22500;;;;;;;;;;;;;;;;;;;;;;;;;; -5102;'017;Middle Africa;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;38725;29698;28698;46645;48384;8675;12103;14933;20266;16250;12872;;;;;;;;;;;;;;;;;;;;;;;;;; -5102;'017;Middle Africa;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7992;255;255;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;; -5102;'017;Middle Africa;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5324;156;156;0;0;0;;;;;;;;;;;;;;;;;;;;;;;;;; -5102;'017;Middle Africa;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12224;14923;14704;21705;11470;10715;11158;11158;10925;21862;26790;21062;26064;28763;24906;30042;30803;27595;20193;61175;40045;39828;44783;46542.36;58481;82816 -5102;'017;Middle Africa;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7164;7319;7181;9536;6594;6811;7192;7192;7129;11848;14767;9760;18051;20549;17526;20244;21151;19017;10153;40916;25867;29661;27940;39688.35;52739;49542 -5102;'017;Middle Africa;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;32;160;160;291;291;1509;808;2061;2061;1575;1291;1237;281;261;261;261;414;556;531;537.3;537.3 -5102;'017;Middle Africa;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;13;90;90;124;124;781;2003;2993;2993;2000;1837;785;166;140;140;140;190;214;291;208.45;208.45 -5102;'017;Middle Africa;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3098;3936;3941;5805;5909;5685;8190;8190;6345;7253;8578;9410;5140;5803;7492;6210;5623;7569;6715;8552;6185;10680;18254;17424.33;22880;13356 -5102;'017;Middle Africa;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2734;3034;2985;4558;4347;4688;5830;5830;5752;7472;7286;7922;7958;7988;6750;6784;7758;8259;7838;11196;8414;21992;32218;27659.41;37090;30865 -5102;'017;Middle Africa;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2;2;2;4;47;47;47;25;7;158;221;169;172;131;129;222;218;629;655;294;175;211;214;171;97 -5102;'017;Middle Africa;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;1;1;8;32;32;32;25;12;182;197;652;648;600;589;120;110;521;544;161;96;173;180;140;72 -5102;'017;Middle Africa;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3545;5260;5128;7243;6944;8053;11536;11536;9311;7128;8548;6331;6620;9899;6320;9857;10030;22627;8089;12936;5664;9849;7694;11497.39;9216;7145 -5102;'017;Middle Africa;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2350;2974;3072;4319;4248;4855;7093;7093;5646;5353;9657;6015;8584;11154;6511;9679;12816;9924;7380;12728;6425;10264;7021;12698.9;10915;10036 -5102;'017;Middle Africa;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;15;15;15;23;23;23;23;115;129;152;1518;1533;1204;1080;1713;229;229;2871;2871;908;105;68;113;104 -5102;'017;Middle Africa;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;21;21;21;28;28;28;28;125;152;174;1718;1725;1180;991;2172;260;260;3496;3496;661;112;56;110;118 -5102;'017;Middle Africa;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;235;293;293;521;221;283;362;362;199;234;141;92;84;368;738;584;336;782;451;2280;2889;1680;1385;1277;2001;4357 -5102;'017;Middle Africa;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;562;532;532;813;467;518;558;558;448;598;397;108;158;439;1104;551;741;2355;596;2086;2226;1605;1427;1385;2604;6683 -5102;'017;Middle Africa;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;4;50;50;50;50;50;50;50;50;50 -5102;'017;Middle Africa;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;3;41;41;41;41;41;41;41;41;41 -5102;'017;Middle Africa;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 -5102;'017;Middle Africa;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;1400;2100;1600;1600;1900;2600;2800;2600;2600;6100;3500;3900;4200;4800;3800;4000;3700;3700;3700;3700;3200;3400;3400;3400;8200;8500;37900;22900;8400;9300;9000;6700;2000;3100;3100;600;2400;1970;721;565;4846;3665;3018;7122;7122;4788;5985;9299;4206;4992;5373;2770;3280;8317;2618;6918;1041;1711;1730;1614;1413;2888;1406 -5102;'017;Middle Africa;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;584;780;605;623;746;1707;1387;2179;2179;3199;2583;2795;3406;3760;2840;2887;2648;2648;2648;2648;2140;2340;2340;2340;5836;5988;23671;17051;7975;8801;8800;7200;1341;2027;2027;385;1917;1786;1040;616;3589;4556;5970;7003;7003;5979;8152;11324;8064;10840;10534;4846;8493;24337;3536;14011;3609;3219;4384;3880;4328.4;5740;6550 -5102;'017;Middle Africa;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;67;67;67;67;67;122;166;166;158;136;276;86;239;222;229;176;270;270;130;132;132;67;105;44;234;164 -5102;'017;Middle Africa;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;487;31;31;31;31;31;109;242;242;247;264;398;332;931;828;862;364;1024;1024;280;283;283;156;174;134;447;181 -5102;'017;Middle Africa;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;145053;165731;145052;107712;117232;205728;210746 -5102;'017;Middle Africa;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10737;51085;29769;27031;70858;91008;123501 -5102;'017;Middle Africa;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;645;1097;877;602;339;421;1306 -5102;'017;Middle Africa;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3129;4309;4303;4670;7692;18489;28138 -5102;'017;Middle Africa;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;237;102;298;271;10;128;296 -5102;'017;Middle Africa;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;220;143;390;390;390;774;743 -5102;'017;Middle Africa;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;408;995;579;331;329;293;1010 -5102;'017;Middle Africa;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2909;4166;3913;4280;7302;17715;27395 -5102;'017;Middle Africa;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4579;4400;4324;3717;3775;3440;3854 -5102;'017;Middle Africa;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;612;14;158;81;77;73;69 -5102;'017;Middle Africa;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1751;1578;1786;1226;1849;1638;3871 -5102;'017;Middle Africa;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98;70;85;221;1289;1781;1131 -5102;'017;Middle Africa;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13069;20372;15341;10611;14050;13107;19484 -5102;'017;Middle Africa;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;222;185;1851;1358;6347;11780;36217 -5102;'017;Middle Africa;1636;Glue-laminated timber (glulam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;14000 -5102;'017;Middle Africa;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;25 -5102;'017;Middle Africa;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;35 -5102;'017;Middle Africa;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2374;17985 -5102;'017;Middle Africa;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2256;22195 -5102;'017;Middle Africa;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1 -5102;'017;Middle Africa;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2 -5102;'017;Middle Africa;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45 -5102;'017;Middle Africa;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42 -5102;'017;Middle Africa;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;45 -5102;'017;Middle Africa;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;60 -5102;'017;Middle Africa;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;180 -5102;'017;Middle Africa;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93 -5102;'017;Middle Africa;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;122762;134643;116145;85676;92683;181105;173871 -5102;'017;Middle Africa;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2414;1535;1563;1822;3027;3958;1814 -5102;'017;Middle Africa;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;499;1141;3460;1382;1775;1011 -5102;'017;Middle Africa;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;33;33;41 -5102;'017;Middle Africa;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2247;3142;5438;2420;3154;4242;7349 -5102;'017;Middle Africa;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4262;44972;21809;18879;52393;54894;56091 -5102;'017;Middle Africa;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;223511;214251;182010;153072;191219;300327;374822 -5102;'017;Middle Africa;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11493;4808;11514;4765;4391;5679;1083 -5102;'017;Middle Africa;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1072;4826;1578;655;509;1390;438 -5102;'017;Middle Africa;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89;89;89;89;45;45;17 -5102;'017;Middle Africa;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30065;28148;26125;17664;34119;42059;56214 -5102;'017;Middle Africa;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;58;68;47;43;111;64 -5102;'017;Middle Africa;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29311;25129;21687;18987;18463;23874;33980 -5102;'017;Middle Africa;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2873;1978;3389;1847;1417;2302;121 -5102;'017;Middle Africa;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85298;69973;60720;50320;64244;80103;97742 -5102;'017;Middle Africa;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6238;1460;6373;1083;1011;1952;573 -5102;'017;Middle Africa;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77765;86175;71900;65446;73884;152901;186448 -5102;'017;Middle Africa;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2248;1223;1595;1699;1875;1269;308 -5103;'015;Northern Africa;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6674350;7723342;7606892;6835637;7667917.41;8795107;8051604 -5103;'015;Northern Africa;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;992286;1005944;890470;848958;1043919.73;1294898;1260979 -5103;'015;Northern Africa;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;114062;103310;98823;109276;110631;133210;119990;106315;124237;173950;182571;193194;288402;612146;572875;513587;840397;787229;734932;938980;1349470;1246517;1339314;1406508;1470519;1561487;1452480;1722353;2701146;3221749;2206505;1602962;1540021;1749644;2145063;1794636;2056072;1753797;1861703;1454119;1847431;1668632;2122974;2448073;2684684;2743326.76;3814057;4375054;4250821;5018756;5017889;5272197.14;5370288.14;6301818.14;5067465;5000197;5013521;5759449;5699484;5130253;5845232.41;6888108;6075964 -5103;'015;Northern Africa;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;8179;8068;7958;9102;9346;10907;9175;11286;12743;15411;14832;12449;12507;26883;22826;22834;20211;22575;33859;42696;31664;25229;27554;31103;24511;22925;48353;75852;68472;59911;43140;86392;96760;108367;121785;84214;95509;74941;103055;148639;130266;139629;188503;217701;217499;215525;249802;233848;224375;332760;285219;192215;156105;179479;184713;202149;299161;297992;294431;266661;386509.73;596074;511533 -5103;'015;Northern Africa;1861;Roundwood;5516;Production;m3;30734956;31206199;31631969;32057768;32484792;32931545;33372933;33853454;34369423;34804645;35369136;36017682;37062461;37528056;37593080;37357563;37489887;38412582;39490659;40118104;41033720;41215483;41995019;43123680;44285324;44839833;45702374;46487728;47242938;47969039;49295406;49511291;49940586;51058669;51423836;52083848;52019111;53026059;53143720;53323915;53836474;54258467;54617446;55168485;55654138;56092045;56556415;56948579;57306123;57677583;56619634;53986263;54438616;54912836;55245937;55388688;55418746;55599115;55709200;55607225;55819834;56097669;55306636 -5103;'015;Northern Africa;1861;Roundwood;5616;Import quantity;m3;256500;288600;298400;295600;281600;310200;290900;221200;277300;364700;380700;354000;349900;503300;450000;392600;601200;493200;481800;645600;604000;663000;836000;754300;837300;638300;698700;1043700;606500;249403;464024;593368;387626;730190;764290;540136;708236;431118;727489;646528;649526;531635;616234;1006977;943454;658450;651504;755300;284066;423098;414550;378525;270145;272247;298739;377004;458967;494308;327731;233550;174661;218330;233276 -5103;'015;Northern Africa;1861;Roundwood;5622;Import value;1000 USD;6138;8456;9383;11817;10620;14396;11576;9002;12204;14236;16013;17483;20451;44956;57581;45561;75211;75420;72339;102199;103163;114998;118601;112317;122759;122497;141803;164128;142857;41484;73755;95555;62829;119413;120196;84028;106318;70984;80224;71332;93304;64636;67540;89712;91116;80982;107551;138427;72554;96882;95730;66044;44645;38236;39539;43088;64085;87057;51118;56954;32715;52909;41837 -5103;'015;Northern Africa;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1335;1012;1274;452;451;590;590;100;100;300;85;85;256;8310;3785;3785;1438;6049;7214;9946;13164;10745;13367;8350;10478;41267;28090;42878;13217;4698;2796;6908;11020;12936 -5103;'015;Northern Africa;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;168;127;154;46;57;134;134;72;43;109;19;19;136;115;448;448;272;1036;3864;5415;7875;1813;2478;1632;1896;18774;11541;20027;6634;595;452;1179;569;3051 -5103;'015;Northern Africa;1862;Roundwood, coniferous;5516;Production;m3;3075034;3127938;3191932;3238042;3324291;3409703;3437308;3523124;3585184;3640512;3790983;3787101;3879010;4035642;4072063;4082263;4179308;4209191;4295337;4375055;4508477;4577880;4665396;4772579;4860458;5003732;5139508;5247321;5420516;5510610;5752121;5793873;5961018;6200231;6302048;6463385;6364890;6562101;6601684;6498251;6596349;6726063;6648030;6759890;6892578;6923178;7011968;7027906;7103059;7178373;7212922;7829636;7983038;8029024;8062600;8053765;8077270;8109119;8123314;8101861;8217219;8462911;8262940 -5103;'015;Northern Africa;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;324150;319968;184346;118663;137404;126736;76539 -5103;'015;Northern Africa;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44047;55244;26022;15943;22797;29528;13074 -5103;'015;Northern Africa;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1628;437;2331;948;1710;896;7865 -5103;'015;Northern Africa;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;155;53;123;197;299;165;1758 -5103;'015;Northern Africa;1863;Roundwood, non-coniferous;5516;Production;m3;27659922;28078261;28440037;28819726;29160501;29521842;29935625;30330330;30784239;31164133;31578153;32230581;33183451;33492414;33521017;33275300;33310579;34203391;35195322;35743049;36525243;36637603;37329623;38351101;39424866;39836101;40562866;41240407;41822422;42458429;43543285;43717418;43979568;44858438;45121788;45620463;45654221;46463958;46542036;46825664;47240125;47532404;47969416;48408595;48761560;49168867;49544447;49920673;50203064;50499210;49406712;46156627;46455578;46883812;47183337;47334923;47341476;47489996;47585886;47505364;47602615;47634758;47043696 -5103;'015;Northern Africa;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;134817;174340;143385;114887;37257;91594;156737 -5103;'015;Northern Africa;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20038;31813;25096;41011;9918;23381;28763 -5103;'015;Northern Africa;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41250;12780;2367;1848;5198;10124;5071 -5103;'015;Northern Africa;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19872;6581;472;255;880;404;1293 -5103;'015;Northern Africa;1864;Wood fuel;5516;Production;m3;29322956;29702199;30088969;30482768;30881792;31287545;31706933;32130454;32558423;32995645;33462136;34070682;35036461;35342056;35437080;35206563;35260887;36006282;37105059;37719404;38554020;38654083;39326719;40273180;41235024;41901833;42707374;43646728;44072438;44931039;45693406;46100291;46689286;47222269;47701436;48106048;48476311;48885259;49351920;49822115;50282674;50753667;51235346;51727985;52231838;52643245;53063815;53493979;53933423;54385883;54680934;51936663;52241016;52510236;52785337;52956088;53130146;53310515;53440600;53514625;53593234;53673069;52868036 -5103;'015;Northern Africa;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;5417;7263;5218;4818;8118;8218;6800;200;200;0;93;93;95;95;96;193;466;466;1309;1040;814;1027;727;21017;21419;0;163;221;222;233;212;716 -5103;'015;Northern Africa;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;165;260;161;152;245;245;186;11;11;0;4;4;120;120;120;155;244;244;256;176;123;150;101;3157;3191;0;21;22;22;23;48;131 -5103;'015;Northern Africa;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;38;38;38;114;114;114;138;132;132;132;313;2312;9257;7564;8447;5342;5312;2689;1060;2008;1978;4752;2074;9574 -5103;'015;Northern Africa;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;5;5;5;8;8;8;28;27;27;27;138;215;1227;1125;1146;644;596;177;603;220;209;510;343;1549 -5103;'015;Northern Africa;1627;Wood fuel, coniferous;5516;Production;m3;2904034;2956938;3010932;3066042;3122291;3179703;3238308;3298124;3359184;3421512;3564983;3561101;3651010;3711642;3786063;3829263;3903308;3956891;4020037;4120955;4230377;4298480;4389096;4465079;4532158;4647732;4773508;4890321;4960016;5080610;5202121;5318873;5474018;5599431;5679248;5766585;5884090;5965301;6054884;6146451;6222549;6300263;6379630;6460690;6543478;6608178;6673968;6740906;6809059;6881373;6922922;7480636;7537038;7583024;7629600;7660765;7692270;7724119;7756314;7788861;7822219;7855911;7889940 -5103;'015;Northern Africa;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -5103;'015;Northern Africa;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -5103;'015;Northern Africa;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;131;378;378;716;5678 -5103;'015;Northern Africa;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;52;52;114;810 -5103;'015;Northern Africa;1628;Wood fuel, non-coniferous;5516;Production;m3;26418922;26745261;27078037;27416726;27759501;28107842;28468625;28832330;29199239;29574133;29897153;30509581;31385451;31630414;31651017;31377300;31357579;32049391;33085022;33598449;34323643;34355603;34937623;35808101;36702866;37254101;37933866;38756407;39112422;39850429;40491285;40781418;41215268;41622838;42022188;42339463;42592221;42919958;43297036;43675664;44060125;44453404;44855716;45267295;45688360;46035067;46389847;46753073;47124364;47504510;47758012;44456027;44703978;44927212;45155737;45295323;45437876;45586396;45684286;45725764;45771015;45817158;44978096 -5103;'015;Northern Africa;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;163;221;222;233;212;716 -5103;'015;Northern Africa;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;21;22;22;23;48;131 -5103;'015;Northern Africa;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2689;1060;1877;1600;4374;1358;3896 -5103;'015;Northern Africa;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;177;603;204;157;458;229;739 -5103;'015;Northern Africa;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;5417;7263;5218;4818;8118;8218;6800;200;200;0;93;93;95;95;96;193;466;466;1309;1040;814;1027;727;21017;21419;;;;;;; -5103;'015;Northern Africa;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;165;260;161;152;245;245;186;11;11;0;4;4;120;120;120;155;244;244;256;176;123;150;101;3157;3191;;;;;;; -5103;'015;Northern Africa;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;38;38;38;114;114;114;138;132;132;132;313;2312;9257;7564;8447;5342;5312;;;;;;; -5103;'015;Northern Africa;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;5;5;5;8;8;8;28;27;27;27;138;215;1227;1125;1146;644;596;;;;;;; -5103;'015;Northern Africa;1865;Industrial roundwood;5516;Production;m3;1412000;1504000;1543000;1575000;1603000;1644000;1666000;1723000;1811000;1809000;1907000;1947000;2026000;2186000;2156000;2151000;2229000;2406300;2385600;2398700;2479700;2561400;2668300;2850500;3050300;2938000;2995000;2841000;3170500;3038000;3602000;3411000;3251300;3836400;3722400;3977800;3542800;4140800;3791800;3501800;3553800;3504800;3382100;3440500;3422300;3448800;3492600;3454600;3372700;3291700;1938700;2049600;2197600;2402600;2460600;2432600;2288600;2288600;2268600;2092600;2226600;2424600;2438600 -5103;'015;Northern Africa;1865;Industrial roundwood;5616;Import quantity;m3;254100;283500;292400;289900;275500;304400;287900;218900;274800;362800;378100;351400;345800;499100;444200;386800;594900;488700;475400;644900;603700;662700;835700;753900;836900;638200;698600;1043600;601300;246903;463024;587951;380363;724972;759472;532018;700018;424318;727289;646328;649526;531542;616141;1006882;943359;658354;651311;754834;283600;421789;413510;377711;269118;271520;277722;355585;458967;494145;327510;233328;174428;218118;232560 -5103;'015;Northern Africa;1865;Industrial roundwood;5622;Import value;1000 USD;6109;8398;9289;11741;10543;14317;11528;8959;12162;14197;15949;17430;20349;44828;57412;45339;74915;75195;72109;102172;103152;114987;118590;112263;122743;122469;141775;164100;142531;41251;73735;95390;62569;119252;120044;83783;106073;70798;80213;71321;93304;64632;67536;89592;90996;80862;107396;138183;72310;96626;95554;65921;44495;38135;36382;39897;64085;87036;51096;56932;32692;52861;41706 -5103;'015;Northern Africa;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1335;1012;1274;452;451;590;590;100;100;300;47;47;218;8196;3671;3671;1300;5917;7082;9814;12851;8433;4110;786;2031;35925;22778;40189;12157;2690;818;2156;8946;3362 -5103;'015;Northern Africa;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;168;127;154;46;57;134;134;72;43;109;14;14;131;107;440;440;244;1009;3837;5388;7737;1598;1251;507;750;18130;10945;19850;6031;375;243;669;226;1502 -5103;'015;Northern Africa;1866;Industrial roundwood, coniferous;5516;Production;m3;171000;171000;181000;172000;202000;230000;199000;225000;226000;219000;226000;226000;228000;324000;286000;253000;276000;252300;275300;254100;278100;279400;276300;307500;328300;356000;366000;357000;460500;430000;550000;475000;487000;600800;622800;696800;480800;596800;546800;351800;373800;425800;268400;299200;349100;315000;338000;287000;294000;297000;290000;349000;446000;446000;433000;393000;385000;385000;367000;313000;395000;607000;373000 -5103;'015;Northern Africa;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;138467;109339;165067;80349;166254;138154;156400;250000;210900;254746;227717;163630;152340;241686;304546;245074;273287;215414;223327;187019;198890;197890;174291;187498;217571;189224;191035;324150;319968;184346;118663;137404;126736;76539 -5103;'015;Northern Africa;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23906;16981;28537;12826;31958;24068;22924;44055;25897;25972;24789;15876;15151;16620;18298;21581;31367;26685;37841;29892;27969;29308;30339;29513;26788;24675;22389;44047;55244;26022;15943;22797;29528;13074 -5103;'015;Northern Africa;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1236;181;9;9;161;200;200;0;0;0;0;0;0;490;520;520;227;3326;3173;3998;916;5722;3009;291;507;1137;874;1628;437;2200;570;1332;180;2187 -5103;'015;Northern Africa;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;153;15;1;1;16;28;28;0;0;0;0;0;0;26;27;27;12;185;169;250;71;452;265;61;108;139;74;155;53;107;145;247;51;948 -5103;'015;Northern Africa;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;138467;109339;165067;80349;166254;138154;156400;250000;210900;254746;227717;163630;152340;241686;304546;245074;273287;215414;223327;187019;198890;197890;174291;187498;217571;189224;191035;324150;319968;184346;118663;137404;126736;76539 -5103;'015;Northern Africa;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23906;16981;28537;12826;31958;24068;22924;44055;25897;25972;24789;15876;15151;16620;18298;21581;31367;26685;37841;29892;27969;29308;30339;29513;26788;24675;22389;44047;55244;26022;15943;22797;29528;13074 -5103;'015;Northern Africa;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1236;181;9;9;161;200;200;0;0;0;0;0;0;490;520;520;227;3326;3173;3998;916;5722;3009;291;507;1137;874;1628;437;2200;570;1332;180;2187 -5103;'015;Northern Africa;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;153;15;1;1;16;28;28;0;0;0;0;0;0;26;27;27;12;185;169;250;71;452;265;61;108;139;74;155;53;107;145;247;51;948 -5103;'015;Northern Africa;1867;Industrial roundwood, non-coniferous;5516;Production;m3;1241000;1333000;1362000;1403000;1401000;1414000;1467000;1498000;1585000;1590000;1681000;1721000;1798000;1862000;1870000;1898000;1953000;2154000;2110300;2144600;2201600;2282000;2392000;2543000;2722000;2582000;2629000;2484000;2710000;2608000;3052000;2936000;2764300;3235600;3099600;3281000;3062000;3544000;3245000;3150000;3180000;3079000;3113700;3141300;3073200;3133800;3154600;3167600;3078700;2994700;1648700;1700600;1751600;1956600;2027600;2039600;1903600;1903600;1901600;1779600;1831600;1817600;2065600 -5103;'015;Northern Africa;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108436;353685;422884;300014;558718;621318;375618;450018;213418;472543;418611;485896;379202;374455;702336;698285;385067;435897;531507;96581;222899;215620;203420;81620;53949;88498;164550;134817;174177;143164;114665;37024;91382;156021 -5103;'015;Northern Africa;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17345;56754;66853;49743;87294;95976;60859;62018;44901;54241;46532;77428;49481;50916;71294;69415;49495;80711;100342;42418;68657;66246;35582;14982;11347;11707;17508;20038;31792;25074;40989;9895;23333;28632 -5103;'015;Northern Africa;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;831;1265;443;290;390;390;100;100;300;47;47;218;7706;3151;3151;1073;2591;3909;5816;11935;2711;1101;495;1524;34788;21904;38561;11720;490;248;824;8766;1175 -5103;'015;Northern Africa;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;112;153;45;41;106;106;72;43;109;14;14;131;81;413;413;232;824;3668;5138;7666;1146;986;446;642;17991;10871;19695;5978;268;98;422;175;554 -5103;'015;Northern Africa;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23200;111218;190057;195653;163400;121900;106400;111800;92000;90300;68700;150700;75000;70585;218131;218106;87468;116108;94802;19337;40090;29276;6309;2203;5088;4800;1751;2557;5040;2870;425;443;2194;1433 -5103;'015;Northern Africa;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5585;27501;39209;37685;47233;39393;29718;28957;26888;25286;21718;49684;20697;24895;35788;35781;24009;46392;30565;12416;16971;11510;2074;1125;1753;1958;711;1074;1131;1235;237;147;651;448 -5103;'015;Northern Africa;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;290;290;290;0;0;0;47;47;154;7680;2418;2418;543;706;2788;5549;9950;306;305;305;1343;34603;19866;34994;11023;481;119;766;60;608 -5103;'015;Northern Africa;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;41;41;0;0;0;14;14;69;60;370;370;184;386;3350;5014;6237;253;235;235;610;17963;10503;19092;5791;263;66;287;41;263 -5103;'015;Northern Africa;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85236;242467;232827;104361;395318;499418;269218;338218;121418;382243;349911;335196;304202;303870;484205;480179;297599;319789;436705;77244;182809;186344;197111;79417;48861;83698;162799;132260;169137;140294;114240;36581;89188;154588 -5103;'015;Northern Africa;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11760;29253;27644;12058;40061;56583;31141;33061;18013;28955;24814;27744;28784;26021;35506;33634;25486;34319;69777;30002;51686;54736;33508;13857;9594;9749;16797;18964;30661;23839;40752;9748;22682;28184 -5103;'015;Northern Africa;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;831;1265;443;0;100;100;100;100;300;0;0;64;26;733;733;530;1885;1121;267;1985;2405;796;190;181;185;2038;3567;697;9;129;58;8706;567 -5103;'015;Northern Africa;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;112;153;45;0;65;65;72;43;109;0;0;62;21;43;43;48;438;318;124;1429;893;751;211;32;28;368;603;187;5;32;135;134;291 -5103;'015;Northern Africa;1868;Sawlogs and veneer logs;5516;Production;m3;136000;135000;138000;154000;163000;165000;155000;169000;199000;145000;195000;190000;228000;266000;242000;146000;193000;200300;191600;169700;184700;180400;176300;174500;212300;235000;231000;218000;295000;252000;349000;276000;256300;482400;480400;670800;454800;636800;584800;547800;541800;593800;500800;525000;604000;560000;583000;529000;535100;487100;513100;543000;610000;815000;802000;762000;754000;754000;736000;682000;718000;976000;742000 -5103;'015;Northern Africa;1868;Sawlogs and veneer logs;5616;Import quantity;m3;63000;50000;48800;140800;131100;129600;128100;116900;180800;254000;243200;243000;242700;300000;184200;235700;331600;234700;255900;447200;375200;488000;672200;605500;691800;443800;563400;551500;342700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5103;'015;Northern Africa;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;2406;2251;2034;6007;5930;6146;5217;5240;8566;9979;10289;11539;12525;26501;19994;28536;39876;35295;38709;68539;67493;84061;94556;90896;102571;95464;122501;120814;101290;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5103;'015;Northern Africa;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;72000;70000;77000;67000;94000;119000;85000;102000;98000;83000;84000;83000;84000;161000;128000;92000;110000;86300;76300;51100;70100;72400;71300;72500;104300;126000;125000;115000;193000;152000;257000;191000;147000;280800;285800;346800;128800;295800;240800;223800;217800;269800;176800;201600;277000;233000;256000;197000;207000;154000;145000;186000;252000;252000;239000;199000;191000;191000;173000;119000;151000;413000;179000 -5103;'015;Northern Africa;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;12800;8200;7200;33800;38500;35100;23800;23900;53300;65000;63700;62500;54800;27700;61300;97400;89600;59900;96900;169100;191600;284900;387100;327500;398400;151400;258400;225300;114800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5103;'015;Northern Africa;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;476;292;260;1557;1786;1673;1092;1087;2360;3106;2829;2956;3643;2818;7321;14015;16329;14538;15073;29458;38048;49967;57909;53974;64578;33396;61026;53243;55263;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5103;'015;Northern Africa;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;64000;65000;61000;87000;69000;46000;70000;67000;101000;62000;111000;107000;144000;105000;114000;54000;83000;114000;115300;118600;114600;108000;105000;102000;108000;109000;106000;103000;102000;100000;92000;85000;109300;201600;194600;324000;326000;341000;344000;324000;324000;324000;324000;323400;327000;327000;327000;332000;328100;333100;368100;357000;358000;563000;563000;563000;563000;563000;563000;563000;567000;563000;563000 -5103;'015;Northern Africa;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;50200;41800;41600;107000;92600;94500;104300;93000;127500;189000;179500;180500;187900;272300;122900;138300;242000;174800;159000;278100;183600;203100;285100;278000;293400;292400;305000;326200;227900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5103;'015;Northern Africa;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;1930;1959;1774;4450;4144;4473;4125;4153;6206;6873;7460;8583;8882;23683;12673;14521;23547;20757;23636;39081;29445;34094;36647;36922;37993;62068;61475;67571;46027;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5103;'015;Northern Africa;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;905000;554000;463000;475000;374000;452000;467900;413200;482200;503000;519000;431000;398000;609000;654000;735000;735000;806000;818000;682000;682000;680000;558000;656000;596000;844000 -5103;'015;Northern Africa;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84000;84000;25000;25000;25000;25000;20000;20000;20000;20000;28000;25000;72000;74000;92000;123000;123000;123000;123000;123000;123000;123000;123000;173000;123000;123000 -5103;'015;Northern Africa;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;821000;470000;438000;450000;349000;427000;447900;393200;462200;483000;491000;406000;326000;535000;562000;612000;612000;683000;695000;559000;559000;557000;435000;483000;473000;721000 -5103;'015;Northern Africa;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;34000;43500;60300;53800;37500;59200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5103;'015;Northern Africa;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;4011;8251;7121;5160;4551;7731;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5103;'015;Northern Africa;1870;Pulpwood and particles (1961-1997);5516;Production;m3;63000;130000;138000;127000;117000;125000;125000;135000;158000;172000;179000;181000;175000;252000;196000;235000;213000;328000;255000;235000;242000;267000;315000;436000;544000;355000;362000;168000;363000;211000;725000;563000;354000;658000;493000;503000;225000;;;;;;;;;;;;;;;;;;;;;;;;;; -5103;'015;Northern Africa;1870;Pulpwood and particles (1961-1997);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;34000;43500;60300;53800;37500;59200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5103;'015;Northern Africa;1870;Pulpwood and particles (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;4011;8251;7121;5160;4551;7731;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5103;'015;Northern Africa;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;5000;8000;12000;14000;12000;6000;22000;12000;12000;13000;10000;34000;34000;34000;26000;15000;36000;24000;29000;36000;35000;54000;53000;66000;59000;94000;68000;80000;88000;84000;;;;;;;;;;;;;;;;;;;;;;;;;; -5103;'015;Northern Africa;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;63000;130000;138000;127000;117000;125000;125000;130000;150000;160000;165000;169000;169000;230000;184000;223000;200000;318000;221000;201000;208000;241000;300000;400000;520000;326000;326000;133000;309000;158000;659000;504000;260000;590000;413000;415000;141000;;;;;;;;;;;;;;;;;;;;;;;;;; -5103;'015;Northern Africa;1871;Other industrial roundwood;5516;Production;m3;1213000;1239000;1267000;1294000;1323000;1354000;1386000;1419000;1454000;1492000;1533000;1576000;1623000;1668000;1718000;1770000;1823000;1878000;1939000;1994000;2053000;2114000;2177000;2240000;2294000;2348000;2402000;2455000;2512500;2575000;2528000;2572000;2641000;2696000;2749000;2804000;2863000;2599000;2653000;2491000;2537000;2537000;2429300;2447600;2405100;2406600;2406600;2406600;2406600;2406600;816600;852600;852600;852600;852600;852600;852600;852600;852600;852600;852600;852600;852600 -5103;'015;Northern Africa;1871;Other industrial roundwood;5616;Import quantity;m3;191100;233500;243600;149100;144400;174800;159800;102000;94000;108800;134900;108400;103100;199100;260000;151100;263300;254000;219500;197700;194500;131200;103200;94600;107600;135200;135200;492100;258600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5103;'015;Northern Africa;1871;Other industrial roundwood;5622;Import value;1000 USD;3703;6147;7255;5734;4613;8171;6311;3719;3596;4218;5660;5891;7824;18327;37418;16803;35039;39900;33400;33633;31648;22675;16913;16207;15621;19274;19274;43286;41241;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5103;'015;Northern Africa;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;99000;101000;104000;105000;108000;111000;114000;118000;120000;124000;128000;131000;138000;141000;146000;149000;153000;156000;165000;169000;174000;181000;190000;199000;200000;201000;205000;207000;213500;225000;227000;225000;246000;252000;257000;262000;268000;217000;222000;103000;131000;131000;66600;77600;52100;62000;62000;62000;62000;71000;71000;71000;71000;71000;71000;71000;71000;71000;71000;71000;71000;71000;71000 -5103;'015;Northern Africa;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;1114000;1138000;1163000;1189000;1215000;1243000;1272000;1301000;1334000;1368000;1405000;1445000;1485000;1527000;1572000;1621000;1670000;1722000;1774000;1825000;1879000;1933000;1987000;2041000;2094000;2147000;2197000;2248000;2299000;2350000;2301000;2347000;2395000;2444000;2492000;2542000;2595000;2382000;2431000;2388000;2406000;2406000;2362700;2370000;2353000;2344600;2344600;2344600;2344600;2335600;745600;781600;781600;781600;781600;781600;781600;781600;781600;781600;781600;781600;781600 -5103;'015;Northern Africa;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;191100;233500;243600;149100;144400;174800;159800;102000;94000;108800;134900;108400;103100;199100;260000;151100;263300;254000;219500;197700;194500;131200;103200;94600;107600;135200;135200;492100;258600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5103;'015;Northern Africa;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;3703;6147;7255;5734;4613;8171;6311;3719;3596;4218;5660;5891;7824;18327;37418;16803;35039;39900;33400;33633;31648;22675;16913;16207;15621;19274;19274;43286;41241;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5103;'015;Northern Africa;1630;Wood charcoal;5510;Production;t;1248949;1268924;1291176;1310316;1330064;1352739;1371907;1397472;1416759;1435272;1470837;1499413;1549299;1560376;1568593;1582248;1610299;1613837;1681894;1724489;1760358;1781074;1820900;1878490;1938116;2005137;2071354;2148714;2200685;2274031;2345876;2341071;2425774;2518397;2604664;2664819;2680982;2757530;2819845;2865395;2925441;2986944;3049949;3114495;3180627;3240179;3300989;3363258;3426909;3491965;3323091;3088776;3118726;3143938;3169414;3190137;3211032;3232100;3253342;3274761;3311184;3332327;3353639 -5103;'015;Northern Africa;1630;Wood charcoal;5610;Import quantity;t;7600;2100;2100;2300;2300;2300;2300;2300;2300;4100;4300;5500;2800;2800;4200;;;;;;;;;;;;;;;;;67027;49005;48840;48751;51;51;450;616;616;616;642;672;20;20;416;756;1942;1353;1044;1194;1614;2008;2155;2323;2195;2564;8506;10563;5642;6732.84;5270;10716 -5103;'015;Northern Africa;1630;Wood charcoal;5622;Import value;1000 USD;353;117;117;173;173;173;173;173;173;269;213;325;175;175;669;;;;;;;;;;;;;;;;;2289;3373;1958;1957;23;23;75;92;92;92;201;329;781;781;876;1364;1687;1388;1818;1166;2177.14;3632.14;4226.14;3668;3322;3351;9745;11278;8464;11234.93;9742;12121 -5103;'015;Northern Africa;1630;Wood charcoal;5910;Export quantity;t;200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5932;3116;29400;40000;13500;13300;7100;13000;4832;4432;4473;6853;10564;18039;8201;9195;30883;27032;26192;9491;24489;61907;62968;55454;51924;22294;38538;30998;31065;64135;82948;88220 -5103;'015;Northern Africa;1630;Wood charcoal;5922;Export value;1000 USD;13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;799;1072;3006;4403;1859;2877;1766;1891;1087;589;384;1239;3883;3048;2946;3330;6013;4996;7784;9026;10493;9964;11914;10350;9166;7381;5339;12996;13773;24436;33127;35544 -5103;'015;Northern Africa;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6750;6750;6750;6750;6750;6750;6750;6750;6750;6750;6750;6750;6750;6750;24750;328750;510750;510750;510750;510750;510750;510750;510750;510750;510750;510750 -5103;'015;Northern Africa;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;519;393;5893;5893;5803;597;4595;4595;2153;3953;3416;2661;41370;48723;46456;1782;3206;1389.03;1880.03;584.03;930.03;3164;2941;6943.27;1950;5815 -5103;'015;Northern Africa;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;16;351;351;369;124;224;224;234;454;1007;665;3505;4435;5133;1013;1259;731;842;461;359;621;584;636;440;766 -5103;'015;Northern Africa;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;38;50;50;73;43;1292;10250;16273;41174;18694;15248;14856;10560;11646;13648;6184;6249;3986;1721;997;7291 -5103;'015;Northern Africa;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;13;13;13;15;18;123;1822;7161;6250;3422;2997;3155;1968;1980;2374;1023;404;290;137;107;685 -5103;'015;Northern Africa;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6750;6750;6750;6750;6750;6750;6750;6750;6750;6750;6750;6750;6750;6750;6750;207750;389750;389750;389750;389750;389750;389750;389750;389750;389750;389750 -5103;'015;Northern Africa;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4094;883;4422;5070;1570;70;144;5644;5644;5541;306;2948;2948;1212;2927;2670;2071;40142;43000;40377;564;265;244.03;454.03;170.03;257.03;2586;1512;3332;1875;5235 -5103;'015;Northern Africa;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;208;55;1417;1474;115;3;6;341;341;355;83;155;155;120;232;826;333;3114;3250;4022;411;97;249;366;225;181;445;400;380;342;595 -5103;'015;Northern Africa;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;36;36;36;41;1289;1745;1699;22577;251;1045;1196;3761;1692;843;700;3128;3233;951;700;5888 -5103;'015;Northern Africa;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;12;12;116;256;4495;2859;25;126;235;552;153;138;98;201;210;53;60;489 -5103;'015;Northern Africa;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18000;121000;121000;121000;121000;121000;121000;121000;121000;121000;121000;121000 -5103;'015;Northern Africa;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2594;687;690;852;1408;949;449;249;249;249;262;291;1647;1647;941;1026;746;590;1228;5723;6079;1218;2941;1145;1426;414;673;578;1429;3611.27;75;580 -5103;'015;Northern Africa;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103;32;23;28;54;36;26;10;10;10;14;41;69;69;114;222;181;332;391;1185;1111;602;1162;482;476;236;178;176;184;256;98;171 -5103;'015;Northern Africa;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;22;66;22;0;0;0;0;0;0;2;14;14;37;2;3;8505;14574;18597;18443;14203;13660;6799;9954;12805;5484;3121;753;770;297;1403 -5103;'015;Northern Africa;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;5;2;0;0;0;0;0;0;1;1;1;3;6;7;1566;2666;3391;3397;2871;2920;1416;1827;2236;925;203;80;84;47;196 -5103;'015;Northern Africa;1605;Sawdust (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;90 -5103;'015;Northern Africa;1605;Sawdust (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;53 -5103;'015;Northern Africa;1605;Sawdust (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -5103;'015;Northern Africa;1605;Sawdust (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -5103;'015;Northern Africa;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;670;440 -5103;'015;Northern Africa;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;121 -5103;'015;Northern Africa;1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -5103;'015;Northern Africa;1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -5103;'015;Northern Africa;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15000;20000;26000;28000;36000;39000;39000;39000;39000;39000;39000;39000 -5103;'015;Northern Africa;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;6;59;269;701;1647;1394;1357;487;938;1611;1776 -5103;'015;Northern Africa;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;2;29;112;217;518;483;463;164;302;537;472 -5103;'015;Northern Africa;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12471;17259;21444;18841;21950;31690;32025;15676;5183;2435.06;17046;19766 -5103;'015;Northern Africa;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2491;3629;4542;3014;3442;4884;5012;2908;908;461;4912;6218 -5103;'015;Northern Africa;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15000;20000;26000;28000;31000;34000;34000;34000;34000;34000;34000;34000 -5103;'015;Northern Africa;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;6;59;269;23;28;37;28;117;54;11;114 -5103;'015;Northern Africa;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;2;29;112;13;27;29;15;54;13;5;34 -5103;'015;Northern Africa;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12471;17259;21444;18841;20114;28258;28258;12890;4597;2063.06;4867;10648 -5103;'015;Northern Africa;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2491;3629;4542;3014;3103;4226;4226;2415;802;394;1325;2601 -5103;'015;Northern Africa;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;5000;5000;5000;5000;5000;5000;5000 -5103;'015;Northern Africa;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;678;1619;1357;1329;370;884;1600;1662 -5103;'015;Northern Africa;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;204;491;454;448;110;289;532;438 -5103;'015;Northern Africa;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1836;3432;3767;2786;586;372;12179;9118 -5103;'015;Northern Africa;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;339;658;786;493;106;67;3587;3617 -5103;'015;Northern Africa;1872;Sawnwood;5516;Production;m3;107400;109600;73400;96000;84500;81000;112300;111400;124300;109000;106300;115300;127800;158900;123300;96800;133500;130600;129600;180800;167200;202200;189300;180300;162300;155300;147300;121300;152100;147200;147900;137700;150850;191900;191900;191900;191900;200900;201900;201900;199900;200900;200900;232900;209900;209900;209900;209900;203900;247100;244500;203400;186800;169800;169800;176432;176432;176432;176432;145629;145629;145629;145629 -5103;'015;Northern Africa;1872;Sawnwood;5616;Import quantity;m3;911000;837850;871700;1086900;1004100;1107100;1074200;616000;837200;1342000;1328400;1497900;1390200;1970300;1663051;1531900;2664800;2005500;1964800;2669900;3068300;3403400;3849150;4068750;4108350;3580027;2879014;3076030;3312254;3132182;3616332;2897353;2864417;3780481;4516995;3599900;4346707;3962300;4266096;3744000;4209100;3463852;4730213;5112809;5902987;6692880;6885396;9575558;8591019;9351692;8095272;8606393;8765885;10875939;9626674;8243773;7888664;8032176;6172575;6766459;6094510;5543514;5944774 -5103;'015;Northern Africa;1872;Sawnwood;5622;Import value;1000 USD;48617;41948;41735;56526;55372;60552;56709;41368;45407;79582;86369;94593;142746;310769;273357;232279;450307;370945;354500;412925;698519;633811;669460;675803;721314;713827;700694;807122;1387300;1461839;1241460;641309;695285;733525;996393;846654;931048;751354;678889;615294;685133;581482;831947;865948;1075717;1233968;1691590;1887736;1858913;2226243;1964280;2313524;2160536;2712315;2010739;1633038;1647221;1878960;1481728;1248624;1656235;1410455;1313524 -5103;'015;Northern Africa;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2947;4699;2750;3117;2272;580;1400;2250;19350;50;1941;3372;5184;5276;3979;3231;2201;3299;4309;6712;2752;2398;4234;3315;5605;20857;18800;6025;6291;2998;3438;15545 -5103;'015;Northern Africa;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2337;3988;1721;1426;1004;480;394;289;22030;30;241;914;1464;1459;1820;1199;1709;1805;2878;3363;1408;1339;1456;1658;2583;12989;13544;3485;2537;1565;1427;7960 -5103;'015;Northern Africa;1632;Sawnwood, coniferous;5516;Production;m3;73500;73900;42150;58800;53550;57450;70350;69850;68450;70400;67450;76400;49900;87900;83400;64900;58900;51900;53900;43900;76900;107900;93900;84900;76900;69900;61900;48900;73900;69900;59100;56600;60200;59900;59900;59900;59900;59900;59900;59900;59900;59900;59900;92900;70900;70900;70900;70900;70900;67500;70900;81400;81400;81400;81400;88032;88032;88032;88032;87709;87709;87709;87709 -5103;'015;Northern Africa;1632;Sawnwood, coniferous;5616;Import quantity;m3;872650;781150;815900;1049150;955150;1056900;1018250;565950;783700;1281450;1298900;1428100;1330450;1751900;1478401;1369600;2408700;1578600;1722850;2470050;2845150;3157300;3573800;3744500;3853600;3318827;2656914;2803980;3000804;2847482;3378582;2628553;2596868;3284027;4028555;3071500;3774100;3475200;3667261;3302200;3462400;2873043;4143462;4407584;4987311;6068214;6082423;8383765;7734816;8125037;7112401;7531779;7988353;9873772;8816760;7480652;7150496;7380032;5376762;6060382;5299209;4888212;5233042 -5103;'015;Northern Africa;1632;Sawnwood, coniferous;5622;Import value;1000 USD;46265;39552;39641;54179;51803;57405;53200;37646;41451;75048;84237;88703;137309;265159;237436;200582;395449;279447;305272;364137;641964;576112;613307;610662;669271;660185;651797;736161;1189472;1077563;876490;550771;631281;580178;823603;679644;750737;598469;542794;479795;474802;446984;659968;669283;850963;1068532;1466608;1622272;1573904;1892684;1689294;1981372;1861259;2363339;1718234;1407081;1423496;1657205;1251704;1048096;1413857;1188126;1056629 -5103;'015;Northern Africa;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;789;492;1703;2100;1700;100;0;0;19000;0;1626;2367;1175;847;334;602;454;1777;2781;6068;1935;1812;3118;142;213;741;906;1239;1515;1280;2722;14057 -5103;'015;Northern Africa;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;322;220;727;609;508;35;0;0;21901;0;168;558;244;152;78;206;140;934;2150;2822;816;772;971;52;58;169;217;352;246;499;903;6020 -5103;'015;Northern Africa;1633;Sawnwood, non-coniferous;5516;Production;m3;33900;35700;31250;37200;30950;23550;41950;41550;55850;38600;38850;38900;77900;71000;39900;31900;74600;78700;75700;136900;90300;94300;95400;95400;85400;85400;85400;72400;78200;77300;88800;81100;90650;132000;132000;132000;132000;141000;142000;142000;140000;141000;141000;140000;139000;139000;139000;139000;133000;179600;173600;122000;105400;88400;88400;88400;88400;88400;88400;57920;57920;57920;57920 -5103;'015;Northern Africa;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;38350;56700;55800;37750;48950;50200;55950;50050;53500;60550;29500;69800;59750;218400;184650;162300;256100;426900;241950;199850;223150;246100;275350;324250;254750;261200;222100;272050;311450;284700;237750;268800;267549;496454;488440;528400;572607;487100;598835;441800;746700;590809;586751;705225;915676;624666;802973;1191793;856203;1226655;982871;1074614;777532;1002167;809914;763121;738168;652144;795813;706077;795301;655302;711732 -5103;'015;Northern Africa;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;2352;2396;2094;2347;3569;3147;3509;3722;3956;4534;2132;5890;5437;45610;35921;31697;54858;91498;49228;48788;56555;57699;56153;65141;52043;53642;48897;70961;197828;384276;364970;90538;64004;153347;172790;167010;180311;152885;136095;135499;210331;134498;171979;196665;224754;165436;224982;265464;285009;333559;274986;332152;299277;348976;292505;225957;223725;221755;230024;200528;242378;222329;256895 -5103;'015;Northern Africa;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2158;4207;1047;1017;572;480;1400;2250;350;50;315;1005;4009;4429;3645;2629;1747;1522;1528;644;817;586;1116;3173;5392;20116;17894;4786;4776;1718;716;1488 -5103;'015;Northern Africa;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2015;3768;994;817;496;445;394;289;129;30;73;356;1220;1307;1742;993;1569;871;728;541;592;567;485;1606;2525;12820;13327;3133;2291;1066;524;1940 -5103;'015;Northern Africa;1634;Veneer sheets;5516;Production;m3;400;400;400;600;1300;1200;1000;1100;3900;4600;5100;5700;6100;7900;8100;29100;56700;55700;30200;29200;29500;31700;30900;32200;40700;44800;48600;44000;53300;59300;38500;40800;40800;40800;40800;37800;37800;24800;34800;34800;22800;19800;19800;19800;19800;19800;19800;19800;19800;20300;20300;16300;16300;16300;20000;20000;20000;20000;20000;19958;19899;19899;24899 -5103;'015;Northern Africa;1634;Veneer sheets;5616;Import quantity;m3;7300;4100;4100;3000;2800;3600;1800;3000;4300;4500;3300;3800;17000;12400;9200;12800;9900;15900;15600;15700;13900;18900;19300;29400;29300;19906;18182;22339;22897;15153;2403;33118;23781;30467;41865;41362;26562;31200;30300;42422;45122;33622;43373;51528;53556;37982;53873;50559;38423;62026;77870;76213;161388;139302;55490;54875;55650;50966;57810;52017;58868;112562;65358 -5103;'015;Northern Africa;1634;Veneer sheets;5622;Import value;1000 USD;1906;1081;1114;881;893;1258;677;845;1358;1462;1159;1590;5474;7401;6616;8898;6097;14204;15893;17001;16308;19141;18940;25377;25326;24709;19385;22215;38806;53604;2328;32578;29073;25544;33920;31572;24401;23229;25746;20558;24582;20130;40245;45830;50666;34203;66474;73540;52002;75424;90123;77402;102495;102798;78268;75259;76298;70419;73734;64873;83874;147113;100709 -5103;'015;Northern Africa;1634;Veneer sheets;5916;Export quantity;m3;500;400;400;400;900;900;400;600;400;300;300;300;300;200;200;1100;1300;1000;1700;2300;1600;1600;1000;4600;2300;1000;1000;1000;1000;1000;1000;1395;887;740;578;1100;439;1100;1100;0;9800;3500;355;2240;2198;2501;2051;2485;1040;823;305;569;685;1039;385;317;704;1120;797;421;162;72;2864 -5103;'015;Northern Africa;1634;Veneer sheets;5922;Export value;1000 USD;406;320;279;279;508;515;446;490;580;472;409;433;433;514;248;732;825;614;1100;2002;893;921;584;2114;1042;705;705;705;705;705;705;2678;707;538;499;788;370;829;1036;0;13708;3952;484;1745;1868;1752;1743;13673;3962;2055;194;264;547;1148;472;520;699;1193;1165;1169;994;584;2057 -5103;'015;Northern Africa;1873;Wood-based panels;5516;Production;m3;10500;18400;28800;42300;41000;36400;45100;41100;89000;104200;115700;137700;120600;125700;140000;139000;161100;171800;231600;216100;227600;250300;274100;278900;320500;312500;327500;345500;285500;271500;221900;244900;243400;230000;228200;231800;231800;260100;285100;285100;255100;270100;230100;225100;228100;228100;228100;228100;228100;285100;283600;243600;243600;243600;282100;298100;314100;314100;324100;314100;314100;314100;314100 -5103;'015;Northern Africa;1873;Wood-based panels;5616;Import quantity;m3;50100;41800;39700;50000;68900;76072;51803;43720;43158;61407;107854;99492;110559;214414;150141;166338;233400;176800;222200;277700;327900;277600;381000;360600;411700;303350;227192;340815;272698;223876;282276;258619;259246;428311;346937;349368;473544;519819;488175;324345;376245;427280;941124;796287;903957;940202;812196;1044753;1191171;1391481;1081587;1307034;1516530;1492333;1316862;1645744;1558292;1640220;2520406;2260938;2640943.66;2037244;2074127 -5103;'015;Northern Africa;1873;Wood-based panels;5622;Import value;1000 USD;7530;4919;5594;7268;9793;10915;7425;6596;7759;10933;15787;15590;17094;50357;38511;37474;66679;60953;57359;88496;130455;104810;151356;144383;166491;142433;83086;130886;206410;304960;122956;90350;127241;158340;117848;120363;149507;140789;129266;102327;122107;108028;175166;186529;246587;255605;293441;437714;508831;499613;513377;589109;608145;721318;621811;695933;615723;809164;825996;779889;1040070.41;1042790;998252 -5103;'015;Northern Africa;1873;Wood-based panels;5916;Export quantity;m3;0;400;300;300;300;1400;600;300;3600;8700;3400;5000;5000;7500;3000;600;3200;3700;3500;2500;3400;2700;4500;3600;7800;2900;2900;2900;2900;;;21118;38630;37770;39088;36108;33669;19000;18000;19200;24100;21737;26852;139740;140993;49961;27173;28955;15982;41735;58187;45604;29743;31454;27630;61960;70127;47415;51193;53100;54891.95;51582;43881 -5103;'015;Northern Africa;1873;Wood-based panels;5922;Export value;1000 USD;0;57;37;62;62;234;118;8;227;813;643;1044;1044;3156;1198;211;1375;1865;2330;1975;1694;1394;2245;1584;3066;1817;1817;1817;1817;;;14628;22766;24002;27194;25895;24091;21219;21730;22198;28473;28655;24737;43581;43549;31082;22522;24856;11487;28987;35292;28564;18294;25202;17733;32368;39361;35414;37254;31955;47039.43;62012;53446 -5103;'015;Northern Africa;1640;Plywood and LVL;5516;Production;m3;10500;15800;15700;13200;14500;11700;16200;12300;40000;47000;52400;58100;56300;62800;65400;60400;74400;73400;74100;88800;91300;102300;98900;103600;140000;140000;157000;165000;103000;100000;76000;85000;85000;85000;85000;88000;88000;138000;163000;163000;133000;148000;108000;103000;106000;106000;106000;106000;106000;163000;163000;137000;137000;137000;163000;165000;181000;181000;191000;181000;181000;181000;181000 -5103;'015;Northern Africa;1640;Plywood and LVL;5616;Import quantity;m3;41500;35100;29000;37800;56700;61300;36800;28100;24100;33700;63000;58300;70700;148400;92800;109100;150700;115400;113600;158300;241000;233500;356500;343400;383200;273715;200591;308326;257901;208894;267494;178939;196123;365351;257002;254200;308400;371600;318760;206513;251813;228820;570621;353289;437397;413429;416040;582075;677478;731960;701048;764139;830107;724525;704104;937660;716543;723208;803280;709037;744337;421962;350215 -5103;'015;Northern Africa;1640;Plywood and LVL;5622;Import value;1000 USD;6655;4260;4512;5974;8520;9381;6021;4814;5344;7321;10378;10155;12288;38689;27418;27247;52788;49229;38918;65498;107639;91881;145322;139858;159977;135003;75173;118582;198990;299883;117947;73580;111069;142406;95689;98462;119895;109837;101820;79599;91183;71975;115673;100385;159565;154919;187572;299659;331074;303577;323130;358737;370825;401472;320064;378717;263865;392496;305264;262468;326930;206112;165521 -5103;'015;Northern Africa;1640;Plywood and LVL;5916;Export quantity;m3;0;400;300;300;300;1400;500;;400;2500;3100;5000;5000;7500;3000;600;3200;3700;3500;2500;3400;2700;4500;3600;7800;2900;2900;2900;2900;;;16926;24171;26095;24105;24125;29339;18300;17300;19200;24100;21734;26838;119974;121227;27894;21618;23505;8371;28161;25478;23597;15983;13665;23887;43224;55730;33026;35661;27886;38779;44449;36483 -5103;'015;Northern Africa;1640;Plywood and LVL;5922;Export value;1000 USD;0;57;37;62;62;234;114;;80;479;627;1044;1044;3156;1198;211;1375;1865;2330;1975;1694;1394;2245;1584;3066;1817;1817;1817;1817;;;13509;18208;20053;20718;20550;22996;20894;21405;22198;28473;28653;24684;39547;39515;27082;20328;22138;8339;22549;19569;19315;11097;10679;14611;21304;29790;27400;30876;27580;40017;56399;47645 -5103;'015;Northern Africa;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1290;50 -5103;'015;Northern Africa;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;498;65 -5103;'015;Northern Africa;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;350;20 -5103;'015;Northern Africa;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116;25 -5103;'015;Northern Africa;1646;Particle board and OSB (1961-1994);5516;Production;m3;;2600;13100;29100;26500;24700;28900;28800;49000;57200;63300;79600;64300;62900;69600;73600;81700;93400;152500;122300;131300;143000;170200;170300;175500;167500;165500;165500;167500;156500;130900;141900;138400;125000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5103;'015;Northern Africa;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;3500;2800;3200;4100;5200;6300;9000;5300;6000;7700;25900;21500;20700;27800;32100;32000;44000;25200;73300;87500;55800;15000;11500;4700;4800;11635;18101;26489;9597;9882;9882;14478;26564;21820;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5103;'015;Northern Africa;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;293;240;299;353;475;565;827;920;1358;1816;3609;3552;3005;5329;6835;5388;7014;4878;10648;14076;13094;3561;3364;1605;1604;3519;5356;10430;5680;3428;3428;4356;6995;5583;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5103;'015;Northern Africa;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;100;300;3200;6200;300;;;;;;;;;;;;;;;;;;;;;1171;8374;8450;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5103;'015;Northern Africa;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;4;8;147;334;16;;;;;;;;;;;;;;;;;;;;;299;3003;3428;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5103;'015;Northern Africa;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;123200;123800;123800;89100;89100;89100;89100;89100;89100;89100;89100;89100;89100;89100;89100;89100;87600;55600;55600;55600;41100;40100;40100;40100;40100;40100;40100;40100;40100 -5103;'015;Northern Africa;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25082;22100;33057;49100;50472;30301;20301;37364;95239;113899;137461;127899;106023;115722;160588;129649;94717;65750;102429;223447;164435;176637;248718;248863;559667;410206;554608.31;627019;670498 -5103;'015;Northern Africa;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8511;8667;9385;10075;9391;6229;8969;9746;19709;27618;28496;29655;33290;40308;59314;47074;39344;23718;34550;70956;50602;54925;67441;75321;122728;97514;142589.24;273260;278066 -5103;'015;Northern Africa;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14754;11754;4300;700;700;0;0;3;8;16464;16464;18791;2216;3014;4510;8931;8353;7113;5031;5076;564;1038;4186;3980;5337;14801;4009.33;725;2805 -5103;'015;Northern Africa;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6356;5225;1043;325;325;0;0;2;25;2924;2924;2892;1009;1472;1415;3229;2590;2969;3125;3357;540;979;2140;2199;1277;581;1036;533;1321 -5103;'015;Northern Africa;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;35;35;35;930;930;4485;4448;4588;781;689;1450;903;457;1751;1708;3083;5539;4568;4302;4561;5863.42;4367;10571 -5103;'015;Northern Africa;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;153;153;927;921;2162;436;422;965;412;248;909;1471;1064;2116;1593;1181;1310;2441;1793;3730 -5103;'015;Northern Africa;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116;73;73;73;163;0;0;240;453;3;13;3 -5103;'015;Northern Africa;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;28;28;28;35;0;0;60;109;1;26;1 -5103;'015;Northern Africa;1874;Fibreboard;5516;Production;m3;;;;;;;;;;;;;;;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;15000;15000;15000;15000;18000;20000;20000;20000;20000;20000;33000;33000;33000;33000;33000;33000;33000;33000;33000;33000;33000;33000;33000;33000;51000;51000;51000;78000;93000;93000;93000;93000;93000;93000;93000;93000 -5103;'015;Northern Africa;1874;Fibreboard;5616;Import quantity;m3;5100;3900;7500;8100;7000;8472;6003;10320;13058;20007;18954;19692;19159;38214;25241;25238;38700;36200;35300;31900;31100;29100;13000;12500;23700;18000;8500;6000;5200;5100;4900;65202;36559;41140;64853;73068;132087;99119;118943;87496;104096;161061;275229;328169;328169;394389;285685;342368;352324;529183;284372;476242;583537;542610;446615;528364;587492;663581;1153157;1137134;1336134.93;983896;1042843 -5103;'015;Northern Africa;1874;Fibreboard;5622;Import value;1000 USD;582;419;783;941;798;969;577;862;1057;1796;1800;1883;1801;6339;4258;4839;6877;6846;7793;8922;9722;9368;2670;2920;4910;3911;2557;1874;1740;1649;1581;12414;9177;10351;13648;13234;20227;20877;18055;16493;21949;26301;39778;58373;58373;70104;71658;95585;118007;148540;149938;206242;202522;247981;249674;261227;282301;339754;396823;418597;568110.17;561625;550935 -5103;'015;Northern Africa;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3021;6085;3225;229;229;30;0;0;0;0;0;6;3302;3302;3276;3339;2436;3101;4643;24356;14778;8656;12640;3106;17535;10211;10409;9955;9960;12100.61;6395;4590 -5103;'015;Northern Africa;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;820;1555;521;120;120;52;0;0;0;0;0;28;1110;1110;1108;1185;1246;1733;3209;13133;6229;4044;11138;2554;10050;7431;5815;5041;3685;5985.43;5054;4479 -5103;'015;Northern Africa;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15000;15000;15000;15000;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 -5103;'015;Northern Africa;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25859;26300;29615;38315;62709;61450;42750;46247;81463;80052;80052;108746;71005;61782;52265;45941;27920;54270;29316;62624;52990;57387;67022;75090;139983;105447;112787.15;68422;81279 -5103;'015;Northern Africa;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7609;7605;9268;9869;9938;12372;12865;12135;19137;27538;27538;32932;29325;26017;26253;23606;18123;29844;19441;36183;29444;29643;34250;44386;67546;39926;65703.86;49885;56025 -5103;'015;Northern Africa;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30;30;0;0;0;0;0;3;2133;2133;2133;2244;2263;2461;157;159;63;250;87;46;117;117;117;314;373;428;708;644 -5103;'015;Northern Africa;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;52;52;0;0;0;0;0;12;872;872;872;950;966;1055;132;122;50;144;407;87;680;680;680;669;35;47;1357;1322 -5103;'015;Northern Africa;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33000;33000;33000;51000;51000;51000;78000;93000;93000;93000;93000;93000;93000;93000;93000 -5103;'015;Northern Africa;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12866;6115;20415;36400;45030;11766;33666;80587;133197;208445;208445;242052;188080;222102;250769;459485;192999;389223;487563;457168;385141;456519;509099;571098;992496;984354;1173221.53;867166;932197 -5103;'015;Northern Africa;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3953;1566;5974;8131;6609;2437;3901;7756;14268;25280;25280;31547;35731;59113;80572;116718;110188;158044;162436;198697;215693;225687;244115;287757;318782;363993;485974.43;493272;482163 -5103;'015;Northern Africa;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;636;636;636;636;155;585;4202;23943;14131;7685;11020;2958;12705;9487;9409;9348;9246;11503.79;5601;3803 -5103;'015;Northern Africa;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;154;154;154;154;218;439;2857;12773;5764;3434;10149;2053;6596;6460;4628;4322;3635;5740.43;3669;3101 -5103;'015;Northern Africa;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 -5103;'015;Northern Africa;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43545;5053;4931;26128;40653;82057;24404;11204;14280;27680;34227;60569;39672;39672;43591;26600;58484;49290;23757;63453;32749;66658;22818;8484;14458;11371;17393;20678;47333;50126.25;48308;29367 -5103;'015;Northern Africa;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5764;1215;1256;2086;4063;4985;2877;1508;1684;5183;6410;6373;5555;5555;5625;6602;10455;11182;8216;21627;18354;20645;13101;4537;5897;3936;7611;10495;14678;16431.89;18468;12747 -5103;'015;Northern Africa;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2765;4350;3199;199;199;0;0;0;0;0;0;1;533;533;507;459;18;55;284;254;584;721;1533;102;4713;607;883;293;341;168.83;86;143 -5103;'015;Northern Africa;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;647;955;512;68;68;0;0;0;0;0;0;13;84;84;82;81;62;239;220;238;415;466;582;414;2774;291;507;50;15;198;28;56 -5103;'015;Northern Africa;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;;;;;;;;;;;;;;;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;5000;15000;15000;15000;15000;15000;15000;15000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5103;'015;Northern Africa;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;5100;3900;7500;8100;7000;8472;6003;10320;13058;20007;18954;19692;19159;38214;25241;25238;38700;36200;35300;31900;31100;29100;13000;12500;23700;18000;8500;6000;5200;5100;4900;21657;31506;36209;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5103;'015;Northern Africa;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;582;419;783;941;798;969;577;862;1057;1796;1800;1883;1801;6339;4258;4839;6877;6846;7793;8922;9722;9368;2670;2920;4910;3911;2557;1874;1740;1649;1581;6650;7962;9095;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5103;'015;Northern Africa;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;256;1735;26;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5103;'015;Northern Africa;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;173;600;9;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5103;'015;Northern Africa;1879;Total fibre furnish;5510;Production;t;45000;52100;61300;75200;91300;104200;108700;124600;131900;253900;261000;269000;305700;291000;254500;229000;241000;260000;331000;323000;355000;428000;434000;436000;447000;496000;514000;562000;543000;379000;351700;384000;368000;412000;428000;464000;469000;322000;316000;688000;719000;719000;719000;719000;719000;719000;817000;817000;812000;834283;825738;930000;949000;800268;800275;815000;847000;829000;850000;850000;850000;871000;871000 -5103;'015;Northern Africa;1879;Total fibre furnish;5610;Import quantity;t;3800;4000;4000;3500;2400;14800;8900;72300;79400;93600;70900;60300;87100;93321;113467;169294;139051;117199;99144;130771;159618;145918;206100;188700;214600;170600;169200;232000;250600;250400;212200;285837;171450;206229;228896;254357;183561;249643;166671;235992;205567;232295;275557;325834;283212;212418;225795;260596;215784;207303;219152;281677;526178;481907;563768;602469;568641;442402;621725;470601;537844.09;659870;694246 -5103;'015;Northern Africa;1879;Total fibre furnish;5622;Import value;1000 USD;305;324;349;288;230;2005;1146;9964;11625;14317;10866;9268;16668;33377;42947;56684;41865;43004;37914;61807;68138;58053;69853;80996;86595;74000;88237;128597;141968;157015;111635;140644;69878;92385;147200;114643;77040;84041;65876;105203;92877;105749;129685;144379;105639;91180;137381;281129;202170;171827;175156;176742;348074;339041;355479;329702;352905;429574;443645;324417;471015.56;650285;550824 -5103;'015;Northern Africa;1879;Total fibre furnish;5910;Export quantity;t;;;;8900;11600;19700;19700;53100;60300;59500;62700;48100;46900;61700;45500;54700;49600;67900;77700;83300;72000;65500;75600;73800;70100;70100;90300;114400;91900;89800;76200;90251;81654;118159;81101;81230;114005;84305;135155;127827;72947;123372;233927;127745;132053;147612;144738;120083;149987;188052;150052;163174;103367;104837;122445;140336;188746;94493;142737;122618;134376.42;199302;237711 -5103;'015;Northern Africa;1879;Total fibre furnish;5922;Export value;1000 USD;;;;1501;2048;3430;3485;6979;8235;9589;10304;7612;8678;18703;16328;20317;16501;20052;30385;38675;28830;22412;24223;26903;19901;19901;45329;72828;65448;58536;41806;50818;44429;62684;74937;45031;54636;37510;59451;80135;29930;56828;101272;56535;57082;73964;86339;73154;64675;118789;92699;79054;27343;20810;18908;24176;31605;19011;19658;16260;33405.49;48059;38387 -5103;'015;Northern Africa;1878;Pulp for paper;5510;Production;t;45000;52100;61300;75200;91300;104200;108700;124600;131900;133900;150000;147000;163700;165000;138500;119000;131000;151000;218000;225000;212000;195000;196000;186000;202000;204000;204000;239000;234000;224000;175700;188000;177000;201000;197000;197000;212000;213000;207000;222000;226000;226000;226000;226000;226000;226000;324000;324000;319000;329000;329000;321000;321000;170000;170000;170000;170000;170000;170000;170000;170000;170000;170000 -5103;'015;Northern Africa;1878;Pulp for paper;5610;Import quantity;t;3800;4000;4000;3500;2400;14800;8900;72300;79400;71600;55900;43300;64100;68000;95700;149200;117200;104900;82000;106400;132100;109800;167800;160100;183500;136900;134700;176900;206200;204400;173200;260586;145821;173581;185889;203357;133061;179661;139759;195859;184859;188310;224729;244030;203483;156973;186520;216394;183466;187581;203972;254423;497820;462641;531443;553313;510206;394960;535930;437199;477967.54;515694;616961 -5103;'015;Northern Africa;1878;Pulp for paper;5622;Import value;1000 USD;305;324;349;288;230;2005;1146;9964;11625;12825;10087;8275;14778;25569;40218;53706;38669;41118;34855;56193;62814;51953;64578;76815;82312;69317;82698;113817;134526;143326;99545;134664;64785;86209;133566;104614;69300;76687;61255;96729;88503;95195;118876;134556;95885;79341;125992;267223;193202;166032;169580;168994;340604;333394;349478;320470;341642;421450;424821;317125;449852.04;601153;528026 -5103;'015;Northern Africa;1878;Pulp for paper;5910;Export quantity;t;;;;8900;11600;19700;19700;53100;60300;59500;62700;48100;46900;61700;45500;54700;49600;67900;77700;83300;72000;65500;75600;73800;70100;70100;90300;114400;91900;89800;76200;89033;80357;117859;80201;78030;111700;83100;134650;125150;71800;122700;225192;115090;115090;136012;134086;96089;113738;130762;100528;112844;21581;2108;2758;3067;2048;1157;1005;2389;2513;3618;3608 -5103;'015;Northern Africa;1878;Pulp for paper;5922;Export value;1000 USD;;;;1501;2048;3430;3485;6979;8235;9589;10304;7612;8678;18703;16328;20317;16501;20052;30385;38675;28830;22412;24223;26903;19901;19901;45329;72828;65448;58536;41806;50582;44182;62633;74699;44429;54193;37363;59395;79815;29809;56763;100655;55530;55530;72479;84784;69055;57810;108637;72677;70898;14659;3685;2505;3834;2299;1856;1138;2222;2456.35;4578;4667 -5103;'015;Northern Africa;1875;Wood pulp;5510;Production;t;20000;22100;28500;28700;33900;30500;29500;38800;43000;45000;46000;37000;48700;50000;53000;42000;55000;66000;82000;83000;75000;80000;86000;83000;81000;81000;81000;108000;108000;100000;91000;103000;162000;173000;169000;169000;180000;183000;177000;195000;159000;159000;159000;159000;159000;159000;257000;257000;252000;262000;262000;262000;262000;111000;111000;111000;111000;111000;111000;111000;111000;111000;111000 -5103;'015;Northern Africa;1875;Wood pulp;5610;Import quantity;t;19300;22200;14000;17600;19600;26700;23100;85700;89200;80600;64900;52300;73100;77000;33000;60100;65200;65000;59300;76300;88800;78600;116800;104500;114800;95600;82700;124900;154200;152400;115700;200111;163091;171642;190750;204057;135061;182161;142759;185259;154659;157509;194879;207151;202673;155892.24;184531;215300;180183;189683;204657;262271;507794;482990;561903;567063;518573;397372;537599;438090;478242.54;515705;617002 -5103;'015;Northern Africa;1875;Wood pulp;5622;Import value;1000 USD;2503;2905;1767;2287;2669;3692;3159;11864;13125;14525;11787;10025;16578;29069;11588;20734;21450;21345;26158;42119;40984;36230;45117;46637;49793;38195;43698;74817;95526;104326;64246;101159;72771;85281;140850;105255;70338;78344;63001;88905;65690;71654;95370;101168;95228;78549.76;125059;266046;190914;171850;171210;181525;330745;338436;363608;334108;351498;424054;426737;318034;449962.04;600891;527624 -5103;'015;Northern Africa;1875;Wood pulp;5910;Export quantity;t;;;;;;;;34900;39500;41000;43600;31200;31200;47100;30900;41900;33400;49400;63400;69000;59200;55700;63000;66600;60600;60600;80800;98600;85200;82200;68500;82081;127757;114303;74300;68500;102200;73400;124150;114450;63300;115500;216321;109645;109645;128976;127050;88565;110441;128277;99503;112408;21638;2683;1281;151;721;1059;994;2456;2580;3616;3440 -5103;'015;Northern Africa;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;3750;4700;6000;6678;4300;4300;14640;11930;14664;10039;12374;22673;30963;22112;17041;17533;22807;14486;14486;39914;61645;58902;49961;33118;42410;56278;56750;65533;32917;42708;27504;48964;69236;21226;49274;88879;44000;44000;60320;72625;55537;52448;104773;70110;70021;14233;2774;1090;130;554;1060;1068;2303;2537.35;4576;4455 -5103;'015;Northern Africa;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3658;3779;1258;105;1521;1018;1571 -5103;'015;Northern Africa;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3656;2114;612;49;918;725;1048 -5103;'015;Northern Africa;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108;1120;1120;1578;1120 -5103;'015;Northern Africa;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113;1121;1121;1504;1121 -5103;'015;Northern Africa;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;3800;4000;4000;3500;2400;2600;2100;3600;4400;6300;4500;5100;5100;6500;4200;6300;8300;5200;3400;4300;6700;7100;7700;6200;6200;6200;8500;27100;27600;26200;8800;17305;6701;4445;16100;4600;9300;8400;3600;17000;8600;2510;4070;4315;4232;2723;6376;1312;8300;9349;23655;42554;15644;5489;2745;6036;;;;;;; -5103;'015;Northern Africa;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;305;324;349;288;230;225;197;349;438;685;576;526;526;1592;1431;1908;2288;1469;1080;1709;2690;2485;2310;1815;1790;1790;3654;15185;18817;18913;4437;7093;2956;1830;12652;2251;4715;4109;1451;8797;5543;2200;3942;2569;2129;1504;5334;3397;18263;18614;24261;26841;13288;5969;1482;2865;;;;;;; -5103;'015;Northern Africa;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;518;518;1783;2745;2745;15;15;15;;;;;;; -5103;'015;Northern Africa;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;128;128;1096;1732;1732;8;8;8;;;;;;; -5103;'015;Northern Africa;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;456;1229;4679;4057;3657;3457;2757;2357;1857;1857;3497;7259;9106;66046;28100;27740;28234;24170;4221;3022;5229;3611;5178;3632;3629;;;;;;; -5103;'015;Northern Africa;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;228;538;2174;2195;1842;1342;905;713;558;582;1971;3636;4261;37109;21113;18546;138453;81527;2117;1480;3045;1967;3489;2003;1903;;;;;;; -5103;'015;Northern Africa;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1271;978;978;741;741;741;741;789;5673;5996;5996;0;0;0;;;;;;; -5103;'015;Northern Africa;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;619;363;363;389;389;389;389;428;3760;3684;3684;0;0;0;;;;;;; -5103;'015;Northern Africa;1656;Chemical wood pulp;5510;Production;t;20000;22100;28500;28700;33900;30500;29500;38800;43000;45000;46000;37000;48700;50000;53000;42000;55000;66000;82000;83000;75000;80000;86000;83000;81000;81000;81000;108000;108000;100000;91000;103000;92000;103000;99000;99000;110000;113000;107000;125000;89000;89000;89000;89000;89000;89000;187000;187000;182000;192000;192000;192000;192000;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000 -5103;'015;Northern Africa;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;68700;75000;65300;51400;38200;59000;61500;28800;53800;56900;59800;55900;72000;82100;71500;109100;98300;108600;89400;74200;97800;126600;126200;106900;166702;131253;158218;159493;190900;119304;167704;133002;165002;142402;150302;181399;190562;132292;125055;150211;185477;147377;172379;176560;206418;457683;436727;524538;542541;505787;391056;534272;436677;476088.54;514209;614953 -5103;'015;Northern Africa;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;9615;11187;12140;9511;7749;14252;23977;10157;18826;19162;19876;25078;40410;38294;33745;42807;44822;48003;36405;40044;59632;76709;85413;59809;86004;58184;79135;115649;97815;62718;71423;58841;78666;58416;66683;86957;93549;55917;55922;101012;124014;90918;143343;143220;138666;295023;301369;344270;314530;337341;419045;423903;316768;448523.04;599827;526237 -5103;'015;Northern Africa;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;34900;39500;41000;43600;31200;31200;47100;30900;41900;33400;49400;63400;69000;59200;55700;63000;66600;60600;60600;80800;98600;85200;82200;68500;82081;75757;111203;72900;68500;102200;73400;124150;114450;63300;115500;213352;106969;106969;128128;126202;87695;109064;126852;90151;101709;10939;710;1255;125;710;989;816;1266;1390;2037;2319 -5103;'015;Northern Africa;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;3750;4700;6000;6678;4300;4300;14640;11930;14664;10039;12374;22673;30963;22112;17041;17533;22807;14486;14486;39914;61645;58902;49961;33118;42410;38813;55775;64420;32917;42708;27504;48964;69236;21226;49274;87573;42950;42950;59873;72178;55044;51852;104138;63349;62874;7086;1035;1061;101;533;972;867;1094;1328.35;3067;3329 -5103;'015;Northern Africa;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;6400;2600;5000;6300;5100;23000;50300;38700;47300;83700;33100;46300;38200;17900;23100;34700;33000;33300;34776;27549;46353;33596;30600;22600;21900;16100;19300;17600;18000;17550;16709;16709;16709;17846;44308;14613;22730;29262;27257;23488;9723;28896;22572;13037;13435;21940;766;1639.24;19586;14287 -5103;'015;Northern Africa;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;2104;1265;2023;1991;1546;10316;28927;21576;23704;32432;13169;18643;14362;8483;12212;19210;20213;15200;16594;12488;17897;18005;11125;7309;6882;5417;7739;6332;6700;6383;5931;5931;5931;7521;16322;6058;15668;18075;11980;9445;6950;13346;9738;7452;7774;10927;583;1333.51;14021;8742 -5103;'015;Northern Africa;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;40;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;62;62;62;62;62;64;64;2;2;2;56;56;2 -5103;'015;Northern Africa;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;45;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;48;48;48;48;48;49;49;4;4;4;40;37;1 -5103;'015;Northern Africa;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;28700;33900;30500;29500;38800;43000;45000;46000;37000;48700;50000;53000;42000;55000;66000;82000;83000;75000;80000;86000;83000;81000;81000;81000;108000;108000;100000;91000;103000;92000;103000;99000;99000;110000;113000;107000;125000;89000;89000;89000;89000;89000;89000;187000;187000;182000;192000;192000;192000;192000;41000;41000;41000;41000;41000;41000;41000;41000;41000;41000 -5103;'015;Northern Africa;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;8900;2100;1000;17700;21400;17000;33400;35700;39400;23200;13900;37400;17100;20000;59400;57400;46300;51800;70300;83900;83000;51400;108802;89776;96593;108236;142800;77200;123400;107200;135200;115100;126600;156185;152810;94540;91308;110596;120724;115332;130786;131586;161295;416041;409566;479774;502862;481459;366146;502471;426060;466738.49;488464;592277 -5103;'015;Northern Africa;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;1670;162;162;4039;7065;5602;11414;12314;13566;10922;7083;12914;6708;8137;29192;27352;19937;28833;44540;52456;59300;33562;55673;38868;52416;84669;75392;44234;52408;48522;64116;46767;57040;75889;77662;40030;41935;76733;89078;69939;110662;109758;111571;271142;279973;317725;292271;321900;403055;404556;309267;438692.36;577673;506312 -5103;'015;Northern Africa;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;47100;30900;41900;33400;49400;63400;69000;59200;55700;63000;66600;60600;60600;80800;98600;85200;82200;68500;82076;75728;109604;72700;68300;102000;73000;124000;114300;63300;115500;213206;103521;103521;124082;122156;87686;109060;126752;90017;101572;10802;648;1107;61;626;737;564;1014;1084;1731;2067 -5103;'015;Northern Africa;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;14640;11930;14664;10039;12374;22673;30963;22112;17041;17533;22807;14486;14486;39914;61645;58902;49961;33118;42404;38781;54142;64176;32712;42552;27125;48828;69100;21226;49274;87492;41512;41512;57315;69620;55008;51830;104047;63229;62742;6954;987;941;52;469;467;362;589;787.35;2529;2827 -5103;'015;Northern Africa;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11291;11475;9861;9851;7710.81;6159;8389 -5103;'015;Northern Africa;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7989;8216;8420;6918;8497.17;8133;11183 -5103;'015;Northern Africa;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;250;250;250;250;250;250 -5103;'015;Northern Africa;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;501;501;501;501;501;501 -5103;'015;Northern Africa;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;13000;16800;7500;5500;6700;8800;10100;7100;13300;13000;13700;7800;6400;4200;5300;4400;4700;3200;3200;3900;3200;4000;5200;9200;4461;3676;3478;1060;300;200;100;0;0;0;0;6;13;13;13;1346;2584;1027;967;323;448;448;483;150;0;;;;;;; -5103;'015;Northern Africa;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;1725;2414;1104;894;1180;1860;2881;2260;4449;4115;4140;2980;3484;2805;2504;1759;1995;1314;1314;2278;2016;2828;3100;4922;2857;1931;1603;830;151;80;70;0;0;0;0;6;8;8;8;940;1561;1675;1340;237;354;354;360;112;0;;;;;;; -5103;'015;Northern Africa;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;1900;2600;3700;3700;5500;2100;2100;1900;1600;1900;1400;1800;1800;1000;1100;1700;1700;600;1200;4000;5000;13000;18663;10252;11794;16601;17200;19304;22304;9702;10502;9702;5702;7658;21030;21030;17025;20423;17861;16405;17896;15389;17418;17706;16955;15718;17107;;;;;;; -5103;'015;Northern Africa;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;378;509;760;760;2256;1030;940;742;624;860;916;999;829;479;466;694;792;450;864;2215;2800;6125;10880;4897;7219;12145;11147;11095;12063;4902;6811;5317;2943;4679;9948;9948;8048;15818;17053;13246;15673;15150;14761;14082;14086;13087;12521;;;;;;; -5103;'015;Northern Africa;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;1559;200;200;200;400;150;150;0;0;146;3448;3448;4046;4046;9;4;100;72;75;75;0;86;0;;;;;;; -5103;'015;Northern Africa;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;1588;244;205;156;379;136;136;0;0;81;1438;1438;2558;2558;36;22;91;72;84;84;0;72;0;;;;;;; -5103;'015;Northern Africa;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;70000;70000 -5103;'015;Northern Africa;1667;Dissolving wood pulp;5610;Import quantity;t;15500;18200;10000;14100;17200;11900;14200;13400;9800;9000;9000;9000;9000;9000;;;;;;;;;;;;;;;;;;15648;23908;4300;11100;4900;3000;3300;3800;1400;1800;1200;2151;3168;103;14.24;204;277;336;3734;1420;8070;30856;35596;30988;14857;9128;2537;2069;1308;633;478;478 -5103;'015;Northern Africa;1667;Dissolving wood pulp;5622;Import value;1000 USD;2198;2581;1418;1999;2439;1687;2013;1900;1500;1700;1700;1750;1800;3500;;;;;;;;;;;;;;;;;;7834;11093;2142;10354;3347;1563;1907;1996;884;1149;800;835;789;73;10.76;167;182;206;7776;2249;12973;20467;27609;15853;14810;10501;2895;2222;1217;521;339;339 -5103;'015;Northern Africa;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;52000;3100;1400;0;0;0;0;0;0;0;1698;1698;1698;107;107;129;118;118;1896;1958;1958;1958;11;11;11;70;70;70;70;1;1 -5103;'015;Northern Africa;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;17465;975;1113;0;0;0;0;0;0;0;687;687;687;58;58;104;79;79;1905;1731;1731;1731;21;21;21;88;88;88;88;5;5 -5103;'015;Northern Africa;1668;Pulp from fibres other than wood;5510;Production;t;25000;30000;32800;46500;57400;73700;79200;85800;88900;88900;104000;110000;115000;115000;85500;77000;76000;85000;136000;142000;137000;115000;110000;103000;121000;123000;123000;131000;126000;124000;84700;85000;85000;98000;98000;98000;102000;100000;100000;97000;137000;137000;137000;137000;137000;137000;137000;137000;137000;137000;137000;129000;129000;129000;129000;129000;129000;129000;129000;129000;129000;129000;129000 -5103;'015;Northern Africa;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;76123;6638;6239;6239;4200;1000;800;800;12000;32000;32001;32001;40047;913;1095;2193;1371;3619;1632;735;222;20882;15247;528;1107;761;125;400;417;358;467;437 -5103;'015;Northern Africa;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;41339;3107;3070;3070;2706;525;250;250;8708;23962;24341;24341;34177;730;802;1100;1359;2494;1958;619;442;30326;22567;1723;1172;645;291;306;308;411;601;741 -5103;'015;Northern Africa;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;8900;11600;19700;19700;18200;20800;18500;19100;16900;15700;14600;14600;12800;16200;18500;14300;14300;12800;9800;12600;7200;9500;9500;9500;15800;6700;7600;7700;6952;4600;6656;7301;9530;9500;9700;10500;10700;8500;7200;10569;7143;7143;7143;7143;7653;3415;2603;2921;2394;1901;1383;1488;2927;1338;168;81;3;3;3;169 -5103;'015;Northern Africa;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;1501;2048;3430;3485;3229;3535;3589;3626;3312;4378;4063;4398;5653;6462;7678;7712;7712;6718;5371;6690;4096;5415;5415;5415;11183;6546;8575;8688;8172;5369;6858;10279;11512;11485;9859;10431;10579;8583;7489;12463;12217;12217;12217;12217;13622;5441;3943;4472;2608;2157;2642;1436;3725;1766;884;158;7;7;7;217 -5103;'015;Northern Africa;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;273;273;141;129;437;530;578;227;840;367;186;359;228;1068;101;433;127;158;29;285 -5103;'015;Northern Africa;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;219;219;112;108;295;335;1188;575;1050;610;561;677;536;1087;100;288;133;155;25;370 -5103;'015;Northern Africa;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;205;205;614;756;647;638;627;627;427;602;605;403;406;405;402;130 -5103;'015;Northern Africa;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126;130;130;595;299;234;208;206;206;80;190;192;80;82;82;80;168 -5103;'015;Northern Africa;1669;Recovered paper;5510;Production;t;;;;;;;;;;120000;111000;122000;142000;126000;116000;110000;110000;109000;113000;98000;143000;233000;238000;250000;245000;292000;310000;323000;309000;155000;176000;196000;191000;211000;231000;267000;257000;109000;109000;466000;493000;493000;493000;493000;493000;493000;493000;493000;493000;505283;496738;609000;628000;630268;630275;645000;677000;659000;680000;680000;680000;701000;701000 -5103;'015;Northern Africa;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;22000;15000;17000;23000;25321;17767;20094;21851;12299;17144;24371;27518;36118;38300;28600;31100;33700;34500;55100;44400;46000;39000;25251;25629;32648;43007;51000;50500;69982;26912;40133;20708;43985;50828;81804;79729;55445;39275;44202;32318;19722;15180;27254;28358;19266;32325;49156;58435;47442;85795;33402;59876.55;144176;77285 -5103;'015;Northern Africa;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;1492;779;993;1890;7808;2729;2978;3196;1886;3059;5614;5324;6100;5275;4181;4283;4683;5539;14780;7442;13689;12090;5980;5093;6176;13634;10029;7740;7354;4621;8474;4374;10554;10809;9823;9754;11839;11389;13906;8968;5795;5576;7748;7470;5647;6001;9232;11263;8124;18824;7292;21163.53;49132;22798 -5103;'015;Northern Africa;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1218;1297;300;900;3200;2305;1205;505;2677;1147;672;8735;12655;16963;11600;10652;23994;36249;57290;49524;50330;81786;102729;119687;137269;186698;93336;141732;120229;131863.42;195684;234103 -5103;'015;Northern Africa;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;236;247;51;238;602;443;147;56;320;121;65;617;1005;1552;1485;1555;4099;6865;10152;20022;8156;12684;17125;16403;20342;29306;17155;18520;14038;30949.14;43481;33720 -5103;'015;Northern Africa;1876;Paper and paperboard;5510;Production;t;135800;162700;177200;184800;183900;185600;207800;207800;216700;224800;231400;237500;225900;208700;214200;221800;258400;263400;353400;391500;436800;403000;414700;469900;496100;517100;527100;538100;614100;599000;581500;556500;596100;578800;554100;516300;592000;660000;628800;745500;794900;786700;757900;775200;773400;773100;973100;971100;971100;971100;971100;968500;993500;1010500;1020500;1020500;1020500;1070500;1070500;1077500;1077500;1102500;1102500 -5103;'015;Northern Africa;1876;Paper and paperboard;5610;Import quantity;t;219100;201500;186600;147700;152200;190700;179100;168100;182400;211300;216200;225200;229700;296600;253500;244400;352500;362400;372000;410800;537700;501400;537700;654250;670955;665714;584578;629180;606347;676490;830947;795022;821498;861289;754111;716700;988100;1089942;1455121;816176;1189808;1139476;1335424;1720413;1720413;1522714;1880519;1758784;1905405;1869308;2058624;2087824;2207107;2363463;2431654;2575219;2549367;2624643;3170668;3232527;2869029.67;3107789;2761280 -5103;'015;Northern Africa;1876;Paper and paperboard;5622;Import value;1000 USD;47015;43884;39113;30324;31111;42224;40271;36467;44211;51451;50464;52595;83994;161611;153194;132691;200238;222703;196927;256552;332887;315704;311104;367632;348034;484021;419275;469405;783805;1202847;654371;592300;541009;616259;715750;592478;766021;681389;879598;538078;827836;787237;877103;1113662;1113662;1046156;1515527;1553337;1553757;1934480;2170798;2028024;2080669;2354426;1940588;2203450;2241371;2470693;2808391;2644934;2548473.51;3573422;3056629 -5103;'015;Northern Africa;1876;Paper and paperboard;5910;Export quantity;t;33900;33100;32900;28500;21600;21000;18400;17200;15700;18500;13400;10900;6900;13500;8300;4400;4350;50;50;50;200;600;600;600;600;600;600;600;600;600;600;18648;6990;15091;11775;11695;17504;17010;24545;37287;62670;64033;71090;119535;119535;111428;119507;91354;102416;157919;109752;57280;97407;117661;101342;112499;187400;183650;201822;206053;328289.97;402818;347925 -5103;'015;Northern Africa;1876;Paper and paperboard;5922;Export value;1000 USD;7760;7691;7642;7260;6728;6728;5126;3809;3701;4537;3476;3360;2352;4510;5052;1574;1510;44;44;44;247;502;502;502;502;502;502;502;502;502;502;14978;6285;15382;12074;9501;12983;13180;18549;23170;57517;49433;59042;109345;109345;103616;133431;110222;130004;156557;134378;62076;88421;107419;111609;116272;179630;210542;215798;199147;277122.81;445192;364012 -5103;'015;Northern Africa;2042;Graphic papers;5510;Production;t;32000;45100;48200;57300;51000;48900;58000;58500;66000;73000;84000;92000;94100;74000;73500;75000;89000;97000;134000;135000;139000;114000;113000;131000;132000;139000;143000;144000;165000;170000;154000;152000;179000;179000;168000;162000;146000;121000;127000;150000;200000;180000;175000;173000;172900;172600;222600;222600;222600;222600;222600;218000;214000;214000;214000;214000;214000;214000;214000;214000;214000;214000;214000 -5103;'015;Northern Africa;2042;Graphic papers;5610;Import quantity;t;119500;87500;85100;68500;68600;102400;81700;54300;59600;76800;75600;94100;79100;112500;114500;128500;160000;165200;159500;174000;212600;203800;220600;250800;254600;253014;214278;265354;260458;292470;340847;338564;377754;362432;238540;245200;465000;556799;599898;450242;606501;508565;499206;744017;744017;667765;785622;720200;878007;769338;845222;898732;889243;946148;806563;910244;971780;976458;1188535;1139303;1144202.45;1082939;854439 -5103;'015;Northern Africa;2042;Graphic papers;5622;Import value;1000 USD;23359;15665;15435;12996;12752;21424;15622;10285;16299;19831;17369;21440;23931;64322;69072;67618;87982;89516;62151;101031;123486;114709;117399;143354;158678;191965;162197;217413;394096;730989;248696;252945;243248;230231;218655;193213;373128;334064;350467;305802;405794;328176;312257;481563;481563;450431;617093;606289;713659;769877;849492;880480;806954;846184;689045;784139;859258;904661;1087332;936790;892976.39;1222563;1128281 -5103;'015;Northern Africa;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;997;3490;4281;2071;1091;2600;3901;4032;7151;29401;25551;33903;36017;36017;30292;36589;37445;17966;85007;47242;19513;29977;39855;14858;10429;12944;16397;20432;10454;18963;18640;17386 -5103;'015;Northern Africa;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;970;3037;4357;2337;1310;2723;4545;3295;4047;25788;20049;24837;29341;29341;24053;34652;34678;17670;73844;54885;22207;24933;26217;17310;14068;13369;20510;21569;11396;22152;29408;24044 -5103;'015;Northern Africa;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 -5103;'015;Northern Africa;1671;Newsprint;5610;Import quantity;t;76500;68500;72200;46100;46800;57900;53700;30200;33600;45700;49400;61400;43800;63200;58300;78900;91500;97900;91800;92200;123900;122000;128200;92400;76100;111297;92969;128847;114825;113165;135265;126705;134763;128138;149600;134200;143700;167900;191847;205446;344000;274991;189906;233790;233790;220431;269591;256304;279347;214526;275190;265927;219369;244663;193769;209975;193188;163380;196334;136430;100394.82;69916;94509 -5103;'015;Northern Africa;1671;Newsprint;5622;Import value;1000 USD;13094;11364;11773;7093;7214;8882;8445;4717;5238;7251;8677;10715;9065;30257;29111;36176;36900;38348;17394;39832;54692;60450;50072;33619;35970;82945;66976;97513;144424;197480;83418;74373;63726;64677;110026;83150;84291;87013;89054;112246;184499;141450;88978;111204;111204;107868;151104;148444;184321;167162;188208;194324;171461;186401;120485;118575;103213;113712;140160;78100;63488.05;72412;94589 -5103;'015;Northern Africa;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;181;800;500;500;0;0;0;0;1000;159;147;147;147;183;2220;3920;19444;20120;5582;5508;5552;5886;827;469;209;267;285;975;235;490 -5103;'015;Northern Africa;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;187;966;658;658;0;0;0;0;573;124;69;69;69;95;1480;3955;24900;25312;4753;4722;4723;4848;557;318;74;218;238;583;194;388 -5103;'015;Northern Africa;1674;Printing and writing papers;5510;Production;t;32000;45100;48200;57300;51000;48900;58000;58500;66000;73000;84000;92000;94100;74000;73500;75000;89000;97000;134000;135000;139000;114000;113000;131000;132000;139000;143000;144000;165000;170000;154000;152000;179000;179000;168000;162000;146000;121000;113000;139000;186000;169000;172000;171000;170900;170600;220600;220600;220600;220600;220600;216000;212000;212000;212000;212000;212000;212000;212000;212000;212000;212000;212000 -5103;'015;Northern Africa;1674;Printing and writing papers;5610;Import quantity;t;43000;19000;12900;22400;21800;44500;28000;24100;26000;31100;26200;32700;35300;49300;56200;49600;68500;67300;67700;81800;88700;81800;92400;158400;178500;141717;121309;136507;145633;179305;205582;211859;242991;234294;88940;111000;321300;388899;408051;244796;262501;233574;309300;510227;510227;447334;516031;463896;598660;554812;570032;632805;669874;701485;612794;700269;778592;813078;992201;1002873;1043807.62;1013023;759930 -5103;'015;Northern Africa;1674;Printing and writing papers;5622;Import value;1000 USD;10265;4301;3662;5903;5538;12542;7177;5568;11061;12580;8692;10725;14866;34065;39961;31442;51082;51168;44757;61199;68794;54259;67327;109735;122708;109020;95221;119900;249672;533509;165278;178572;179522;165554;108629;110063;288837;247051;261413;193556;221295;186726;223279;370359;370359;342563;465989;457845;529338;602715;661284;686156;635493;659783;568560;665564;756045;790949;947172;858690;829488.34;1150151;1033692 -5103;'015;Northern Africa;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;997;3471;4100;1271;591;2100;3901;4032;7151;29401;24551;33744;35870;35870;30145;36406;35225;14046;65563;27122;13931;24469;34303;8972;9602;12475;16188;20165;10169;17988;18405;16896 -5103;'015;Northern Africa;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;970;3033;4170;1371;652;2065;4545;3295;4047;25788;19476;24713;29272;29272;23984;34557;33198;13715;48944;29573;17454;20211;21494;12462;13511;13051;20436;21351;11158;21569;29214;23656 -5103;'015;Northern Africa;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60000;62000;62000;71000;54000;57000;56000;55900;55600;55600;55600;55600;55600;55600;51000;47000;47000;47000;47000;47000;47000;47000;47000;47000;47000;47000 -5103;'015;Northern Africa;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48074;47622;16365;27401;29268;44246;46925;46925;39460;53714;43358;23761;16564;14450;13550;15060;26885;31152;24669;24393;22408;24948;16589;15977.92;14214;18437 -5103;'015;Northern Africa;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27357;28115;15278;25299;26166;31785;36208;36208;31428;46981;35900;19270;18852;15142;13311;15707;28034;24533;19248;20790;20005;24243;14361;14314.04;16671;18316 -5103;'015;Northern Africa;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1022;216;1030;2330;2330;2330;2339;2339;2353;2595;2398;114;21511;6090;997;3785;1091;669;157;288;328;564;1152;643;444;676 -5103;'015;Northern Africa;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1214;239;903;1746;1746;1746;1752;1752;1755;2070;1868;162;18085;7134;1065;3061;1790;829;258;194;336;432;1020;1272;519;826 -5103;'015;Northern Africa;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60000;50000;76000;114000;114000;114000;114000;114000;114000;164000;164000;164000;164000;164000;164000;164000;164000;164000;164000;164000;164000;164000;164000;164000;164000;164000 -5103;'015;Northern Africa;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;241043;256250;157865;147100;119073;188179;276760;276760;227345;264719;251418;369533;349550;369250;438605;448009;457991;372314;464592;519487;523928;666350;667645;740670.45;672307;519084 -5103;'015;Northern Africa;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;147316;160359;110141;124920;93902;126002;199141;199141;177388;243372;262448;327784;378316;441736;477344;428742;422436;353022;466783;539421;527507;651511;586254;558147.87;727767;732698 -5103;'015;Northern Africa;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2367;2459;1101;9151;7501;13740;20394;20394;16824;29915;28308;11776;35818;15213;9628;17774;30805;6962;7453;8405;11099;7514;3877;6609;8733;10085 -5103;'015;Northern Africa;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2810;1762;564;7316;6621;10705;15969;15969;13321;28398;27077;11169;26362;16711;12602;13193;16488;9714;10385;8592;13358;7788;3897;7573;12687;11750 -5103;'015;Northern Africa;1616;Printing and writing papers, coated;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;1000;1000 -5103;'015;Northern Africa;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99782;104179;70566;88000;85233;76875;186542;186542;180529;197598;169120;205366;188698;186332;180650;206805;216609;209328;211008;234712;266742;300903;318639;287159.26;326502;222409 -5103;'015;Northern Africa;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72378;72939;68137;71076;66658;65492;135010;135010;133747;175636;159497;182284;205547;204406;195501;191044;209313;191005;179533;195834;243437;271418;258075;257026.43;405713;282678 -5103;'015;Northern Africa;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;512;1357;5020;17920;14720;17674;13137;13137;10968;3896;4519;2156;8234;5819;3306;2910;2407;1341;1992;3782;4761;12087;5140;10736;9228;6135 -5103;'015;Northern Africa;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;521;1294;2580;16726;11109;12262;11551;11551;8908;4089;4253;2384;4497;5728;3787;3957;3216;1919;2868;4265;6742;13131;6241;12724;16008;11080 -5103;'015;Northern Africa;1675;Other paper and paperboard;5510;Production;t;103800;117600;129000;127500;132900;136700;149800;149300;150700;151800;147400;145500;131800;134700;140700;146800;169400;166400;219400;256500;297800;289000;301700;338900;364100;378100;384100;394100;449100;429000;427500;404500;417100;399800;386100;354300;446000;539000;501800;595500;594900;606700;582900;602200;600500;600500;750500;748500;748500;748500;748500;750500;779500;796500;806500;806500;806500;856500;856500;863500;863500;888500;888500 -5103;'015;Northern Africa;1675;Other paper and paperboard;5610;Import quantity;t;99600;114000;101500;79200;83600;88300;97400;113800;122800;134500;140600;131100;150600;184100;139000;115900;192500;197200;212500;236800;325100;297600;317100;403450;416355;412700;370300;363826;345889;384020;490100;456458;443744;498857;515571;471500;523100;533143;855223;365934;583307;630911;836218;976396;976396;854949;1094897;1038584;1027398;1099970;1213402;1189092;1317864;1417315;1625091;1664975;1577587;1648185;1982133;2093224;1724827.22;2024850;1906841 -5103;'015;Northern Africa;1675;Other paper and paperboard;5622;Import value;1000 USD;23656;28219;23678;17328;18359;20800;24649;26182;27912;31620;33095;31155;60063;97289;84122;65073;112256;133187;134776;155521;209401;200995;193705;224278;189356;292056;257078;251992;389709;471858;405675;339355;297761;386028;497095;399265;392893;347325;529131;232276;422042;459061;564846;632099;632099;595725;898434;947048;840098;1164603;1321306;1147544;1273715;1508242;1251543;1419311;1382113;1566032;1721059;1708144;1655497.11;2350859;1928348 -5103;'015;Northern Africa;1675;Other paper and paperboard;5910;Export quantity;t;33900;33100;32900;28500;21600;21000;18400;17200;15700;18500;13400;10900;6900;13500;8300;4400;4350;50;50;50;200;600;600;600;600;600;600;600;600;600;600;17651;3500;10810;9704;10604;14904;13109;20513;30136;33269;38482;37187;83518;83518;81136;82918;53909;84450;72912;62510;37767;67430;77806;86484;102070;174456;167253;181390;195599;309326.97;384178;330539 -5103;'015;Northern Africa;1675;Other paper and paperboard;5922;Export value;1000 USD;7760;7691;7642;7260;6728;6728;5126;3809;3701;4537;3476;3360;2352;4510;5052;1574;1510;44;44;44;247;502;502;502;502;502;502;502;502;502;502;14008;3248;11025;9737;8191;10260;8635;15254;19123;31729;29384;34205;80004;80004;79563;98779;75544;112334;82713;79493;39869;63488;81202;94299;102204;166261;190032;194229;187751;254970.81;415784;339968 -5103;'015;Northern Africa;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;2700;3000;3200;3900;4100;5100;5100;5100;5100;4100;4000;20000;19000;18000;59000;65000;63000;51000;66000;67000;88000;99000;99000;99000;114000;114000;114000;114000;114000;114000;114000;114000;114000;143000;158000;168000;168000;168000;218000;218000;225000;225000;250000;250000 -5103;'015;Northern Africa;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1600;2000;1900;1000;5000;13100;2701;3760;5660;11718;11037;11037;16602;18000;20696;12403;20136;14205;21990;24034;17670;26029;21095;22541;16311;27070;29017;29774.62;31186;45477 -5103;'015;Northern Africa;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2418;3725;1977;900;4507;10135;3930;5662;5510;11669;13034;13034;21139;23888;30832;17500;25696;20003;30927;33355;24904;37230;32170;30837;21455;35898;36213;39130.47;50985;68655 -5103;'015;Northern Africa;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3108;5108;3942;8823;14450;14450;14115;19644;19103;57129;26156;23256;18001;27807;45978;66229;60399;116622;129382;137490;132574;150356.69;184851;175945 -5103;'015;Northern Africa;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;6606;11105;7022;10164;15899;15899;15563;37229;36856;68434;37084;34460;25497;37576;59841;79462;66190;124095;156650;162041;138709;135662;247855;228815 -5103;'015;Northern Africa;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;426000;423800;476500;454900;466700;442900;447200;445500;445500;595500;595500;595500;595500;595500;595500;595500;595500;595500;595500;595500;595500;595500;595500;595500;595500;595500 -5103;'015;Northern Africa;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;448943;777323;304658;427747;469636;723328;804538;804538;697255;927235;934063;933186;995356;1132868;1121179;1239806;1326797;1556428;1567001;1509385;1611130;1927090;2029248;1656559.85;1949673;1824564 -5103;'015;Northern Africa;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;256288;443388;164578;233551;257574;422679;459058;459058;401386;696543;745225;659219;969015;1123444;1043605;1155150;1340486;1167273;1216581;1262971;1487973;1596128;1579240;1493865.73;2203083;1734455 -5103;'015;Northern Africa;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10205;10995;24012;17461;24340;18788;26392;26392;21160;25973;26294;23270;38338;33796;18054;38068;30674;18962;37827;57262;36209;42982;61774;155833.28;197931;151461 -5103;'015;Northern Africa;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6103;5678;11479;11135;14687;16376;20078;20078;17053;20991;27041;34804;33037;32174;11664;24712;19780;13751;30196;41762;31536;31320;46731;113423.81;163467;104065 -5103;'015;Northern Africa;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;2900;3000;62500;74500;74000;74200;76400;77700;77800;103800;106800;113300;120900;142900;139900;145900;169900;205900;194900;203900;227900;245100;255100;277700;290700;336700;323000;321000;301000;302000;264000;255200;244300;354000;;;;;;;;;;;;;;;;;;;;;;;;;; -5103;'015;Northern Africa;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;48700;63800;47300;45700;47000;60700;56700;81800;89200;96900;100500;85600;92300;113000;89000;77900;129200;146300;162100;186600;268400;240000;252000;328750;317855;207600;228400;221626;181689;192520;276300;239658;281222;441136;460271;414700;472200;;;;;;;;;;;;;;;;;;;;;;;;;; -5103;'015;Northern Africa;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;11590;15583;10399;9923;10073;13597;11738;18148;19652;21796;22399;19941;40470;64308;49534;36459;68112;91695;82112;101685;153497;139868;136901;168321;129436;116901;142961;139053;128630;204610;201702;163329;162713;301898;408635;317818;319956;;;;;;;;;;;;;;;;;;;;;;;;;; -5103;'015;Northern Africa;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12146;1019;7506;5400;6300;10100;;;;;;;;;;;;;;;;;;;;;;;;;; -5103;'015;Northern Africa;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9196;927;7474;5041;3086;5121;;;;;;;;;;;;;;;;;;;;;;;;;; -5103;'015;Northern Africa;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42000;42000;42000;45000;67000;79000;79000;79000;79000;229000;229000;229000;229000;229000;229000;229000;229000;229000;229000;229000;229000;229000;229000;229000;229000;229000 -5103;'015;Northern Africa;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89961;101839;151394;209000;234446;324157;302228;302228;267682;321238;358102;362648;326062;361254;357084;445847;450669;588556;582108;694523;746042;1033497;1034281;783438.51;987754;1045107 -5103;'015;Northern Africa;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37695;44024;59240;76327;83256;133215;157546;157546;129463;182847;217107;170092;240653;244005;241281;316527;311198;339787;313889;404001;484495;578053;531751;512570.65;817359;695814 -5103;'015;Northern Africa;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5196;3195;8954;6803;12036;6209;2377;2377;1234;3458;1728;6126;10587;15785;5837;10436;13311;2728;6678;20908;19679;17681;26839;98921.19;142824;99983 -5103;'015;Northern Africa;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3060;1312;4816;3415;4686;2699;1425;1425;611;2749;931;2994;5930;8342;3475;5919;5249;1445;3638;10641;12140;8504;10870;63570.72;100066;47080 -5103;'015;Northern Africa;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75109;69609;76000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000;87000 -5103;'015;Northern Africa;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120322;238646;47419;68637;67376;124303;227997;227997;195346;277244;236328;292342;361539;364154;480695;524199;526127;613740;617992;426533;459891;547758;642135;488802.44;589207;461154 -5103;'015;Northern Africa;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74195;142209;34342;57346;62668;94042;134988;134988;121518;243794;213451;241788;409863;463013;497813;562054;660190;495431;595848;518832;610232;666089;727513;625019.78;915357;650692 -5103;'015;Northern Africa;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4061;3960;3940;7200;5478;6270;11764;11764;6984;6880;7395;2791;4186;3085;5597;8861;8458;3562;2673;5225;5295;7013;9490;25247.6;21962;19206 -5103;'015;Northern Africa;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2618;2646;2663;4863;5929;9267;9688;9688;6973;6936;11454;7457;9898;6880;3614;5229;6709;2783;5073;7284;5871;7855;15498;23944.13;33124;29162 -5103;'015;Northern Africa;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;298891;302191;320500;282900;272700;276900;281200;279500;279500;279500;279500;279500;279500;279500;279500;279500;279500;279500;279500;279500;279500;279500;279500;279500;279500;279500 -5103;'015;Northern Africa;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;230936;427830;96563;124362;146463;229794;237328;237328;208561;308607;317994;272095;296366;400797;277510;259090;332084;346816;355641;373323;386013;326106;321924;352525.51;341325;283534 -5103;'015;Northern Africa;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140928;253166;66113;76151;89697;158777;147340;147340;138412;259635;302550;241293;309329;410447;299106;267048;355429;326033;297519;329434;380874;337848;300564;332549.46;440283;358828 -5103;'015;Northern Africa;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;789;3840;11088;2758;5826;5224;9628;9628;11512;14203;15153;13307;22077;13752;6172;18333;8194;11998;27858;29233;9544;15373;22801;22754.65;23232;21846 -5103;'015;Northern Africa;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;388;1720;3940;1439;2572;2837;6485;6485;7709;9534;11005;23130;15814;15650;4233;13170;7223;8892;20897;22789;12517;13701;19291;21039.43;23197;21119 -5103;'015;Northern Africa;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;10000;38000;40000;40000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -5103;'015;Northern Africa;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7724;9008;9282;25748;21351;45074;36985;36985;25666;20146;21639;6101;11389;6663;5890;10670;17917;7316;11260;15006;19184;19729;30908;31793.39;31387;34769 -5103;'015;Northern Africa;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3470;3989;4883;23727;21953;36645;19184;19184;11993;10267;12117;6046;9170;5979;5405;9521;13669;6022;9325;10704;12372;14138;19412;23725.84;30084;29121 -5103;'015;Northern Africa;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;159;0;30;700;1000;1085;2623;2623;1430;1432;2018;1046;1488;1174;448;438;711;674;618;1896;1691;2915;2644;8909.85;9913;10426 -5103;'015;Northern Africa;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;0;60;1418;1500;1573;2480;2480;1760;1772;3651;1223;1395;1302;342;394;599;631;588;1048;1008;1260;1072;4869.54;7080;6704 -5103;'015;Northern Africa;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;3500;3500;24500;24500;24500;22500;22500;23700;23700;28000;27900;27400;25900;26500;26500;73500;83900;88900;90900;93900;106900;113900;117900;101300;98300;108300;102000;86500;84500;97100;76800;65900;47000;41000;47000;11000;31000;41000;41000;41000;41000;41000;41000;41000;39000;39000;39000;39000;41000;41000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000 -5103;'015;Northern Africa;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;21500;20800;27300;16700;21200;8700;21400;32000;33600;37600;40100;45500;58300;71100;50000;38000;63300;50900;50400;50200;56700;57600;65100;74700;98500;205100;141900;142200;164200;191500;213800;216800;162522;56121;53300;54900;49900;79200;64800;58575;151800;155615;101172;160821;160821;141092;149662;83825;81809;84478;66329;45923;54024;72848;42634;76879;45661;20744;27973;34959;38492.75;43991;36800 -5103;'015;Northern Africa;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;4842;5344;6387;3571;4610;1759;7015;8034;8260;9824;10696;11214;19593;32981;34588;28614;44144;41492;52664;53836;55904;61127;56804;55957;59920;175155;114117;112939;261079;267248;203973;176026;135048;81712;84735;79470;72037;86530;75608;63768;182829;195977;130498;160007;160007;173200;178003;170991;163379;169892;177859;73012;85210;142852;47040;170560;88305;56604;89033;92691;122500.92;96791;125238 -5103;'015;Northern Africa;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;15200;14400;14200;10700;3800;3800;1200;1600;2400;4600;3300;2600;2600;9200;4000;100;50;50;50;50;200;600;600;600;600;600;600;600;600;600;600;5505;2477;3300;4300;4300;4800;2904;9515;3016;10700;10200;9576;42676;42676;45861;37301;8512;4051;8418;5458;1712;1555;1154;1293;3844;572;1662;918;1251;3137;1396;3133 -5103;'015;Northern Africa;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;2753;2684;2635;2260;1728;1728;126;380;570;1215;943;850;850;3008;3550;72;8;44;44;44;247;502;502;502;502;502;502;502;502;502;502;4812;2318;3548;4693;5102;5136;2532;9574;1038;9489;7675;7665;44027;44027;46947;40559;11647;9096;12592;12859;2708;1200;1581;1086;5818;404;1846;868;2311;5885;4462;7088 -5103;'015;Northern Africa;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;683319;695206;718754;556158;652507;716511;781525 -5103;'015;Northern Africa;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;348675;346121;277679;252683;275975;258216;310156 -5103;'015;Northern Africa;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7975;8840;8613;6486;8415;11521;9162 -5103;'015;Northern Africa;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3301;9301;2986;2711;920;668;846 -5103;'015;Northern Africa;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2996;4064;3034;2339;2645;4259;3354 -5103;'015;Northern Africa;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;760;1193;891;833;651;632;698 -5103;'015;Northern Africa;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4979;4776;5579;4147;5770;7262;5808 -5103;'015;Northern Africa;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2541;8108;2095;1878;269;36;148 -5103;'015;Northern Africa;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12747;16475;20061;17815;18377;17749;17855 -5103;'015;Northern Africa;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10440;3267;3608;4718;7469;16881;23009 -5103;'015;Northern Africa;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10090;10656;10643;10276;14521;8912;8834 -5103;'015;Northern Africa;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3408;3459;3292;2529;2659;3764;10148 -5103;'015;Northern Africa;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87471;142234;108244;85612;121092;117231;141104 -5103;'015;Northern Africa;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7958;13397;12287;16051;22084;29526;25989 -5103;'015;Northern Africa;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1111;1274 -5103;'015;Northern Africa;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1064;1845 -5103;'015;Northern Africa;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;455;125 -5103;'015;Northern Africa;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1058;407 -5103;'015;Northern Africa;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;8 -5103;'015;Northern Africa;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;23 -5103;'015;Northern Africa;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -5103;'015;Northern Africa;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -5103;'015;Northern Africa;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;240;237 -5103;'015;Northern Africa;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;171;240 -5103;'015;Northern Africa;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;10 -5103;'015;Northern Africa;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;4 -5103;'015;Northern Africa;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;503722;466124;525795;393211;450836;491372;534188 -5103;'015;Northern Africa;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;321650;314568;253302;224909;239723;193108;234621 -5103;'015;Northern Africa;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25890;9182;9227;3696;3296;7312;6432 -5103;'015;Northern Africa;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;401;98;223;806;672;317 -5103;'015;Northern Africa;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35424;41695;36171;39062;35970;62414;63950 -5103;'015;Northern Africa;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1865;1728;2106;1542;2314;13597;15226 -5103;'015;Northern Africa;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;977510;1268687;1188654;1149226;1170178;1190488;1194115 -5103;'015;Northern Africa;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;344450;361831;318360;329614;381435;440608;439290 -5103;'015;Northern Africa;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6728;13635;10617;10495;11220;19310;9908 -5103;'015;Northern Africa;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;457;704;315;350;1103;2111;164 -5103;'015;Northern Africa;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;168834;233275;230058;225534;233543;251754;252931 -5103;'015;Northern Africa;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4845;5863;5498;5844;8239;12148;13254 -5103;'015;Northern Africa;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;162634;185785;96798;87897;97963;86914;94166 -5103;'015;Northern Africa;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;114827;96380;83376;81979;78153;79676;72742 -5103;'015;Northern Africa;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;416555;495748;569816;597917;585650;547588;534563 -5103;'015;Northern Africa;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;138972;164761;165674;167073;212807;243988;253766 -5103;'015;Northern Africa;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;222759;340244;281365;227383;241802;284922;302547 -5103;'015;Northern Africa;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85349;94123;63497;74368;81133;102685;99364 -5104;'018;Southern Africa;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2036728;2302486;2116758;1684735;2124297.78;2464565.94;2119550.94 -5104;'018;Southern Africa;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2355901;2485395;1875814;1954737;2365963.13;2798702.1;2662116.46 -5104;'018;Southern Africa;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;62184;56821;70850;81859;87540;66920;78285;84097;108301;129786;113959;70274;150030;274441;195855;157716;129988;156719;167360;329999;311460;229284;257375;251960;240860;228016;224831;323229;228494;250984;249693;466386;346804;513283;592070;559992;517043;532082;501824;524035;387598;479067;590969;687454;761013;933101;1086241;1012534;899321;1130917;1268427.94;1220596;1296753.17;1371649;1288874;1215260;1271827;1442496;1306323;1036710;1319516.78;1659185.94;1357694.94 -5104;'018;Southern Africa;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;21099;21334;22533;25560;25959;30530;34333;55670;57680;58552;70351;75954;117395;132424;130224;152180;167173;215013;246966;298527;303965;325905;287620;322611;387963;506586;550234;710265;449935;455592;460209;663449;656802;863329;1024506;1319638;897358;841676;857619;876888;949313;936525;1250362;1356953;1403250;1382609;1582992;1658834;1344807.1;1631225;1862241.18;1516416.44;1478460;1669598.04;1666212;1715847;1886339;1979171;1433784;1589016;1903459.13;2299236.1;2177534.46 -5104;'018;Southern Africa;1861;Roundwood;5516;Production;m3;7920510;8656836;9524429;9839292;11540432;17856852;17965560;18049561;18882858;19280460;20207211;20295695;20389716;21250966;21883846;21893582;20966413;21739942;22121795;24067920;25898351;26220473;27866227;26734228;29000576;28929738;31154026;32876385;33625118;32490251;32893256;32341753;32673193;35105812;35684486;36865525;37777034;35482631;34822183;36461315;36088257;36113351;38750131;39574117;40389673;40627799;37466217;38035707;37090782;35444353;34438200;36313759;33969248;33131641;33948851;33524590;32087656;35065727;35998354;35688010;36173484;36541895;36078198 -5104;'018;Southern Africa;1861;Roundwood;5616;Import quantity;m3;;;;17600;125600;121400;83300;82000;85100;109600;72600;59600;65300;78300;71800;56500;48000;55300;62200;92500;120200;148700;147500;134600;132000;108676;106789;90714;72170;38355;10480;102404;58583;74635;131300;114800;12200;15800;13400;15060;13751;17737;23707;42764;46414;59804;61956;69480;48739;421404;477175;387322;390190;557300;766346;862841;990331;1096840;1368461;1086331;1798117.94;2016526;1892420 -5104;'018;Southern Africa;1861;Roundwood;5622;Import value;1000 USD;;;;620;5316;3739;3698;3836;4611;4516;2884;2543;4122;7504;5569;4725;4114;5370;8060;13398;10541;6909;6381;6000;5511;1657;1612;1735;1647;1052;915;12199;8007;9374;11199;8923;2238;3751;2873;3325;3591;4979;5976;7848;8044;6959;7033;7127;5054;23448;22007.35;19966;25039;22605;28796;41166;50741;61517;69120;53301;91045.39;88022;86949 -5104;'018;Southern Africa;1861;Roundwood;5916;Export quantity;m3;14000;13000;18000;44900;61400;59100;76300;143900;137000;138200;130800;83100;99500;159600;165200;289600;288300;309400;322800;206800;317000;299900;325200;312300;293200;132705;143405;97065;75793;16104;70586;57306;371523;409454;210500;384800;246400;207400;301000;301780;139233;386296;304559;375446;259941;203260;204436;246604;251194;578882;682529;584053;508285;642263;926352;1330843;1626887;1592429;1608594;1230839;2012020.17;2493353;2832410 -5104;'018;Southern Africa;1861;Roundwood;5922;Export value;1000 USD;187;179;176;385;734;624;892;1023;933;965;953;832;2238;1411;2231;3859;4526;10405;10253;6376;8048;6416;7837;7575;6523;6386;5957;7077;4169;3049;7666;9227;47794;43322;37121;53460;28571;25030;24472;24500;13311;25876;22856;24705;16781;12185;12614;15297;16163;32462;32376;27524;31309;43077;48294;53281;95881;121443;98491;102568;197955.38;156651;149817 -5104;'018;Southern Africa;1862;Roundwood, coniferous;5516;Production;m3;2152000;2165000;3048000;3145000;3816000;4879000;4698000;4753000;5290000;5478000;6191000;6147000;6339000;6912000;7237000;7059000;6673000;7284000;6891000;7828000;8272000;8238000;8251000;7893000;8676000;7686000;8229000;9666000;9740000;9479000;9569000;9096000;9996000;9884000;10614100;11179200;11601400;10238000;9190900;9717300;9730700;9591900;9343300;8469700;8421638;8466407;8315761;9705647;8564256;7849932;8419935;8683234;8407436;7558759;7644194;7510443;6654349;7775677;6588840;8002113;8352113;8402113;8402113 -5104;'018;Southern Africa;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;426885;531266;651768;431851;860032.78;880573;845659 -5104;'018;Southern Africa;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20432;33646;36123;26592;44408.04;40952;38076 -5104;'018;Southern Africa;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;844341;815917;766560;463451;919026.33;1241136;1287925 -5104;'018;Southern Africa;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58254;73433;54536;55585;129342.37;89817;82881 -5104;'018;Southern Africa;1863;Roundwood, non-coniferous;5516;Production;m3;5768510;6491836;6476429;6694292;7724432;12977852;13267560;13296561;13592858;13802460;14016211;14148695;14050716;14338966;14646846;14834582;14293413;14455942;15230795;16239920;17626351;17982473;19615227;18841228;20324576;21243738;22925026;23210385;23885118;23011251;23324256;23245753;22677193;25221812;25070386;25686325;26175634;25244631;25631283;26744015;26357557;26521451;29406831;31104417;31968035;32161392;29150456;28330060;28526526;27594421;26018265;27630525;25561812;25572882;26304657;26014147;25433307;27290050;29409514;27685897;27821371;28139782;27676085 -5104;'018;Southern Africa;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;563446;565574;716693;654480;938085.16;1135953;1046761 -5104;'018;Southern Africa;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30309;27871;32997;26709;46637.35;47070;48873 -5104;'018;Southern Africa;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;782546;776512;842034;767388;1092993.84;1252217;1544485 -5104;'018;Southern Africa;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37627;48010;43955;46983;68613.02;66834;66936 -5104;'018;Southern Africa;1864;Wood fuel;5516;Production;m3;3158510;2935836;2983429;3114292;3318432;9249852;9291560;9333561;9375858;9418460;9460211;9478695;9458716;9483966;9605846;9646582;9671413;9696942;10153795;10622520;11699951;12129073;12621827;13067828;13521176;13976738;14416026;14827385;15242118;15060251;15550256;16015753;16496193;16961812;17429586;17902625;18374134;15829631;16267883;16463115;16495757;16507851;16551731;16758204;16786614;16824717;16915415;17129418;17164202;17416784;17492813;17368400;17312610;17358798;17625897;18066851;18101854;18256010;18647946;18427899;18913373;19281784;18818087 -5104;'018;Southern Africa;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;40000;43000;32800;33000;33000;33000;33000;33000;33000;1700;9248;48;2000;40300;40200;2500;200;400;866;837;602;538;785;1160;579;585;556;307;393196;454872;364316;361165;540460;717946;826497;892340;960881;1164183;938575;1525551.94;1693608;1577467 -5104;'018;Southern Africa;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;745;885;615;625;625;625;625;625;625;128;375;2;173;2336;2331;137;55;86;191;202;116;142;223;274;213;149;169;114;18486;16776;13775;13680;16239;19442;31851;31482;35657;38802;31112;57194.39;63890;57362 -5104;'018;Southern Africa;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;276;5800;800;1000;0;0;676;567;332;345;3810;6117;9929;9956;29575;30223;395787;504753;441757;291206;291713;647233;1067157;933058;938894;1116942;890989;1511069.17;1698497;1581362 -5104;'018;Southern Africa;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;309;43;55;0;0;23;15;46;50;235;407;602;793;1704;2062;19179;18481;15881;11446;11307;19877;35005;32867;33931;36264;28562;57145.38;66583;58993 -5104;'018;Southern Africa;1627;Wood fuel, coniferous;5516;Production;m3;62000;41000;43000;52000;70000;676000;678000;680000;682000;684000;686000;688000;690000;692000;694000;696000;698000;700000;740000;780000;820000;860000;900000;940000;980000;1020000;1060000;1100000;1140000;1180000;1220000;1260000;1300000;1340000;1380000;1420000;1460000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;23629;29064;27359;145764;145764;145294;370000;720000;770000;770000 -5104;'018;Southern Africa;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;383407;418278;504754;336051;642995.78;663302;657331 -5104;'018;Southern Africa;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13505;14787;14128;9505;20141.04;21788;17742 -5104;'018;Southern Africa;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;424690;401400;472855;292503;670478.33;710101;695582 -5104;'018;Southern Africa;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14703;12751;11674;7709;21402.37;28750;19431 -5104;'018;Southern Africa;1628;Wood fuel, non-coniferous;5516;Production;m3;3096510;2894836;2940429;3062292;3248432;8573852;8613560;8653561;8693858;8734460;8774211;8790695;8768716;8791966;8911846;8950582;8973413;8996942;9413795;9842520;10879951;11269073;11721827;12127828;12541176;12956738;13356026;13727385;14102118;13880251;14330256;14755753;15196193;15621812;16049586;16482625;16914134;15829631;16267883;16463115;16495757;16507851;16551731;16758204;16786614;16824717;16915415;17129418;17164202;17416784;17492813;17368400;17312610;17335169;17596833;18039492;17956090;18110246;18502652;18057899;18193373;18511784;18048087 -5104;'018;Southern Africa;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;508933;542603;659429;602524;882556.16;1030306;920136 -5104;'018;Southern Africa;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17977;20870;24674;21607;37053.35;42102;39620 -5104;'018;Southern Africa;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;508368;537494;644087;598486;840590.84;988396;885780 -5104;'018;Southern Africa;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18164;21180;24590;20853;35743.02;37833;39562 -5104;'018;Southern Africa;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;40000;43000;32800;33000;33000;33000;33000;33000;33000;1700;9248;48;2000;40300;40200;2500;200;400;866;837;602;538;785;1160;579;585;556;307;393196;454872;364316;361165;540460;717946;826497;;;;;;; -5104;'018;Southern Africa;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;745;885;615;625;625;625;625;625;625;128;375;2;173;2336;2331;137;55;86;191;202;116;142;223;274;213;149;169;114;18486;16776;13775;13680;16239;19442;31851;;;;;;; -5104;'018;Southern Africa;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;276;5800;800;1000;0;0;676;567;332;345;3810;6117;9929;9956;29575;30223;395787;504753;441757;291206;291713;647233;1067157;;;;;;; -5104;'018;Southern Africa;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;309;43;55;0;0;23;15;46;50;235;407;602;793;1704;2062;19179;18481;15881;11446;11307;19877;35005;;;;;;; -5104;'018;Southern Africa;1865;Industrial roundwood;5516;Production;m3;4762000;5721000;6541000;6725000;8222000;8607000;8674000;8716000;9507000;9862000;10747000;10817000;10931000;11767000;12278000;12247000;11295000;12043000;11968000;13445400;14198400;14091400;15244400;13666400;15479400;14953000;16738000;18049000;18383000;17430000;17343000;16326000;16177000;18144000;18254900;18962900;19402900;19653000;18554300;19998200;19592500;19605500;22198400;22815913;23603059;23803082;20550802;20906289;19926580;18027569;16945387;18945359;16656638;15772843;16322954;15457739;13985802;16809717;17350408;17260111;17260111;17260111;17260111 -5104;'018;Southern Africa;1865;Industrial roundwood;5616;Import quantity;m3;;;;17600;125600;121400;83300;82000;85100;109600;72600;59600;65300;78300;71800;56500;48000;55300;62200;92500;120200;108700;104500;101800;99000;75676;73789;57714;39170;5355;8780;93156;58535;72635;91000;74600;9700;15600;13000;14194;12914;17135;23169;41979;45254;59225;61371;68924;48432;28208;22303;23006;29025;16840;48400;36344;97991;135959;204278;147756;272566;322918;314953 -5104;'018;Southern Africa;1865;Industrial roundwood;5622;Import value;1000 USD;;;;620;5316;3739;3698;3836;4611;4516;2884;2543;4122;7504;5569;4725;4114;5370;8060;13398;10541;6164;5496;5385;4886;1032;987;1110;1022;427;787;11824;8005;9201;8863;6592;2101;3696;2787;3134;3389;4863;5834;7625;7770;6746;6884;6958;4940;4962;5231.35;6191;11359;6366;9354;9315;19259;25860;30318;22189;33851;24132;29587 -5104;'018;Southern Africa;1865;Industrial roundwood;5916;Export quantity;m3;14000;13000;18000;44900;61400;59100;76300;143900;137000;138200;130800;83100;99500;159600;165200;289600;288300;309400;322800;206800;317000;299900;325200;312300;293200;132705;143405;97065;75793;16104;70586;57306;371523;409178;204700;384000;245400;207400;301000;301104;138666;385964;304214;371636;253824;193331;194480;217029;220971;183095;177776;142296;217079;350550;279119;263686;693829;653535;491652;339850;500951;794856;1251048 -5104;'018;Southern Africa;1865;Industrial roundwood;5922;Export value;1000 USD;187;179;176;385;734;624;892;1023;933;965;953;832;2238;1411;2231;3859;4526;10405;10253;6376;8048;6416;7837;7575;6523;6386;5957;7077;4169;3049;7666;9227;47794;43310;36812;53417;28516;25030;24472;24477;13296;25830;22806;24470;16374;11583;11821;13593;14101;13283;13895;11643;19863;31770;28417;18276;63014;87512;62227;74006;140810;90068;90824 -5104;'018;Southern Africa;1866;Industrial roundwood, coniferous;5516;Production;m3;2090000;2124000;3005000;3093000;3746000;4203000;4020000;4073000;4608000;4794000;5505000;5459000;5649000;6220000;6543000;6363000;5975000;6584000;6151000;7048000;7452000;7378000;7351000;6953000;7696000;6666000;7169000;8566000;8600000;8299000;8349000;7836000;8696000;8544000;9234100;9759200;10141400;10238000;9190900;9717300;9730700;9591900;9343300;8469700;8421638;8466407;8315761;9705647;8564256;7849932;8419935;8683234;8407436;7535130;7615130;7483084;6508585;7629913;6443546;7632113;7632113;7632113;7632113 -5104;'018;Southern Africa;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;996;7627;34065;211;755;8800;100;100;1400;2700;3364;883;1463;1777;3707;8662;8515;12218;10238;10957;16766;12554;9969;6304;4647;5929;4105;43478;112988;147014;95800;217037;217271;188328 -5104;'018;Southern Africa;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;633;3688;17;49;1084;15;15;141;162;350;243;210;196;326;780;600;1115;1001;1434;2094;1277;1532;740;588;633;462;6927;18859;21995;17087;24267;19164;20334 -5104;'018;Southern Africa;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1993;15112;5764;112525;201092;119300;278600;150000;92900;182000;182018;63175;87134;125716;188317;115579;46553;46553;7583;6106;5840;16726;10520;62266;132480;103966;130334;419651;414517;293705;170948;248548;531035;592343 -5104;'018;Southern Africa;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;630;3754;1325;7082;17175;12033;26424;13000;7603;11290;11291;2497;3505;8546;10016;6126;2465;2465;357;590;523;1243;790;6499;15109;10715;6806;43551;60682;42862;47876;107940;61067;63450 -5104;'018;Southern Africa;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;996;7627;34065;211;755;8800;100;100;1400;2700;3364;883;1463;1777;3707;8662;8515;12218;10238;10957;16766;12554;9969;6304;4647;5929;4105;43478;112988;147014;95800;217037;217271;188328 -5104;'018;Southern Africa;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;633;3688;17;49;1084;15;15;141;162;350;243;210;196;326;780;600;1115;1001;1434;2094;1277;1532;740;588;633;462;6927;18859;21995;17087;24267;19164;20334 -5104;'018;Southern Africa;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1993;15112;5764;112525;201092;119300;278600;150000;92900;182000;182018;63175;87134;125716;188317;115579;46553;46553;7583;6106;5840;16726;10520;62266;132480;103966;130334;419651;414517;293705;170948;248548;531035;592343 -5104;'018;Southern Africa;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;630;3754;1325;7082;17175;12033;26424;13000;7603;11290;11291;2497;3505;8546;10016;6126;2465;2465;357;590;523;1243;790;6499;15109;10715;6806;43551;60682;42862;47876;107940;61067;63450 -5104;'018;Southern Africa;1867;Industrial roundwood, non-coniferous;5516;Production;m3;2672000;3597000;3536000;3632000;4476000;4404000;4654000;4643000;4899000;5068000;5242000;5358000;5282000;5547000;5735000;5884000;5320000;5459000;5817000;6397400;6746400;6713400;7893400;6713400;7783400;8287000;9569000;9483000;9783000;9131000;8994000;8490000;7481000;9600000;9020800;9203700;9261500;9415000;9363400;10280900;9861800;10013600;12855100;14346213;15181421;15336675;12235041;11200642;11362324;10177637;8525452;10262125;8249202;8237713;8707824;7974655;7477217;9179804;10906862;9627998;9627998;9627998;9627998 -5104;'018;Southern Africa;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4359;1153;59091;58324;71880;82200;74500;9600;14200;10300;10830;12031;15672;21392;38272;36592;50710;49153;58686;37475;11442;9749;13037;22721;12193;42471;32239;54513;22971;57264;51956;55529;105647;126625 -5104;'018;Southern Africa;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;358;154;8136;7988;9152;7779;6577;2086;3555;2625;2784;3146;4653;5638;7299;6990;6146;5769;5957;3506;2868;3954.35;4659;10619;5778;8721;8853;12332;7001;8323;5102;9584;4968;9253 -5104;'018;Southern Africa;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14111;55474;51542;258998;208086;85400;105400;95400;114500;119000;119086;75491;298830;178498;183319;138245;146778;147927;209446;214865;177255;161050;131776;154813;218070;175153;133352;274178;239018;197947;168902;252403;263821;658705 -5104;'018;Southern Africa;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2419;3912;7902;40712;26135;24779;26993;15516;17427;13182;13186;10799;22325;14260;14454;10248;9118;9356;13236;13511;12760;12652;10853;13364;16661;17702;11470;19463;26830;19365;26130;32870;29001;27374 -5104;'018;Southern Africa;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3718;583;57220;57220;57220;14300;6600;6600;7500;7200;7411;8674;12281;14898;24615;18675;20912;20831;13969;15605;5631;7379;11783;15387;6291;9103;17445;18822;9782;8032;22191;20252;7613;7317 -5104;'018;Southern Africa;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;243;52;7874;7874;7874;2932;1730;1730;2872;2178;2247;2583;4101;3985;4110;3109;3514;3502;2489;2501;2440;3714;3928;6218;2071;4228;3449;5896;4143;2488;3307;2664;464;603 -5104;'018;Southern Africa;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25400;25400;25400;7500;4000;4004;416;10027;18102;22998;22925;5043;5043;6641;13252;3840;12346;11776;34786;21254;7773;11331;25172;11788;8684;21611;22160;7726;40705 -5104;'018;Southern Africa;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9269;9269;9269;2493;1008;1009;36;1969;3204;3360;3348;607;607;969;1615;2520;3766;3863;6282;2798;1993;1314;2524;4653;4751;12366;6618;1319;2628 -5104;'018;Southern Africa;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;641;570;1871;1104;14660;67900;67900;3000;6700;3100;3419;3357;3391;6494;13657;17917;29798;28322;44717;21870;5811;2370;1254;7334;5902;33368;14794;35691;13189;49232;29765;35277;98034;119308 -5104;'018;Southern Africa;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115;102;262;114;1278;4847;4847;356;683;447;537;563;552;1653;3189;3881;2632;2267;3468;1005;428;240.35;731;4401;3707;4493;5404;6436;2858;5835;1795;6920;4504;8650 -5104;'018;Southern Africa;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14111;55474;51542;258998;208086;60000;80000;70000;107000;115000;115082;75075;288803;160396;160321;115320;141735;142884;202805;201613;173415;148704;120000;120027;196816;167380;122021;249006;227230;189263;147291;230243;256095;618000 -5104;'018;Southern Africa;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2419;3912;7902;40712;26135;15510;17724;6247;14934;12174;12177;10763;20356;11056;11094;6900;8511;8749;12267;11896;10240;8886;6990;7082;13863;15709;10156;16939;22177;14614;13764;26252;27682;24746 -5104;'018;Southern Africa;1868;Sawlogs and veneer logs;5516;Production;m3;1700000;2100000;2212000;2325000;2531000;2497000;2583000;2521000;3007000;3109000;3393000;3498000;3523000;3771000;3776000;3613000;3445000;3963000;4087000;4626400;4763400;4641400;4287400;4448400;4455400;3818000;3778000;4357000;4669000;4601000;4488000;4280000;4415000;4634000;5692000;6320300;6712300;6262000;5191600;4993600;5078800;4944000;5495900;4822999;4992167;4970276;4627396;5353387;4634800;4223897;4439100;4745599;4634783;4936652;4936652;4710343;3704896;4976445;3060494;5583730;5583730;5583730;5583730 -5104;'018;Southern Africa;1868;Sawlogs and veneer logs;5616;Import quantity;m3;;;;17600;104500;113200;72500;69100;66200;67000;43800;41700;48000;59500;52400;40000;31200;36900;44600;50200;46600;28600;27800;28300;25500;2176;289;2714;1570;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5104;'018;Southern Africa;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;;;;620;4185;3297;3056;3084;3520;2982;2144;2324;3796;7111;5143;4477;3863;5051;7704;12428;9703;4488;4355;4529;4030;176;131;284;241;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5104;'018;Southern Africa;1868;Sawlogs and veneer logs;5916;Export quantity;m3;;;;700;2800;3400;6100;51400;49000;49000;65600;20300;21700;21400;23200;43200;46900;69100;57300;25800;28400;24500;24100;21700;2600;15405;26105;22965;5293;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5104;'018;Southern Africa;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;;;;38;97;115;223;449;312;332;484;217;299;347;393;1122;1581;4750;4623;2171;2382;2075;850;1312;260;1693;1264;2384;1052;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5104;'018;Southern Africa;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;1530000;1784000;1856000;1961000;2155000;2188000;2258000;2193000;2594000;2699000;2930000;3056000;3098000;3325000;3350000;3223000;2965000;3423000;3478000;4054000;4144000;4017000;3732000;3870000;3876000;3306000;3262000;3796000;4052000;3990000;3895000;3615000;4046000;4227000;5260000;5838300;6199200;5893000;4799400;4617100;4695600;4571500;5117400;4418022;4501040;4521407;4419073;5154655;4405537;4004396;4176832;4671143;4491590;4608795;4608795;4487049;3672063;4931951;3016000;5469396;5469396;5469396;5469396 -5104;'018;Southern Africa;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;;;;300;19500;8700;5800;5400;6200;4600;3800;2200;400;1800;500;1000;600;900;200;300;900;2500;3500;2800;2800;913;0;1646;174;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5104;'018;Southern Africa;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;;;;17;876;363;296;275;373;325;300;279;38;164;89;103;66;164;32;49;245;325;361;449;449;102;0;163;16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5104;'018;Southern Africa;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;;;;;200;400;300;43700;47900;47900;63400;18100;16700;16700;19400;32900;38400;64200;54400;24400;27400;23900;23500;21200;2500;10069;5190;14425;1081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5104;'018;Southern Africa;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;;;;;7;22;15;166;290;301;422;147;194;249;313;813;1295;4356;4374;2043;2290;2019;796;1274;250;843;707;1307;127;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5104;'018;Southern Africa;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;170000;316000;356000;364000;376000;309000;325000;328000;413000;410000;463000;442000;425000;446000;426000;390000;480000;540000;609000;572400;619400;624400;555400;578400;579400;512000;516000;561000;617000;611000;593000;665000;369000;407000;432000;482000;513100;369000;392200;376500;383200;372500;378500;404977;491127;448869;208323;198732;229263;219501;262268;74456;143193;327857;327857;223294;32833;44494;44494;114334;114334;114334;114334 -5104;'018;Southern Africa;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;;;;17300;85000;104500;66700;63700;60000;62400;40000;39500;47600;57700;51900;39000;30600;36000;44400;49900;45700;26100;24300;25500;22700;1263;289;1068;1396;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5104;'018;Southern Africa;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;;;;603;3309;2934;2760;2809;3147;2657;1844;2045;3758;6947;5054;4374;3797;4887;7672;12379;9458;4163;3994;4080;3581;74;131;121;225;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5104;'018;Southern Africa;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;;;;700;2600;3000;5800;7700;1100;1100;2200;2200;5000;4700;3800;10300;8500;4900;2900;1400;1000;600;600;500;100;5336;20915;8540;4212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5104;'018;Southern Africa;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;;;;38;90;93;208;283;22;31;62;70;105;98;80;309;286;394;249;128;92;56;54;38;10;850;557;1077;925;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5104;'018;Southern Africa;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9827000;10130400;12631900;12744600;12509500;15437300;16656157;16920854;17613804;14479639;14265709;13544699;12268196;10941799;12716517;10538612;9352948;9903059;9264153;8687944;10390310;12824410;10590844;10590844;10590844;10590844 -5104;'018;Southern Africa;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3762000;3865900;4722400;4761000;4680500;4102700;3848559;3778386;3864628;3806925;4477832;4025600;3747080;4138944;3912541;3816296;2826785;2906785;2896485;2627253;2638693;3345735;2006168;2006168;2006168;2006168 -5104;'018;Southern Africa;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6065000;6264500;7909500;7983600;7829000;11334600;12807598;13142468;13749176;10672714;9787877;9519099;8521116;6802855;8803976;6722316;6526163;6996274;6367668;6060691;7751617;9478675;8584676;8584676;8584676;8584676 -5104;'018;Southern Africa;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5104;'018;Southern Africa;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5104;'018;Southern Africa;1870;Pulpwood and particles (1961-1997);5516;Production;m3;1051000;1380000;2008000;1946000;2851000;3275000;3435000;3408000;3615000;3835000;4183000;4183000;4548000;4958000;5447000;5679000;5452000;5673000;5493000;6297000;6859000;6829000;7605000;6109000;7293000;7446000;9041000;10383000;10045000;9503000;9908000;9414000;9410000;10770000;9573100;9129100;9219900;;;;;;;;;;;;;;;;;;;;;;;;;; -5104;'018;Southern Africa;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5104;'018;Southern Africa;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5104;'018;Southern Africa;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;551000;330000;1138000;1117000;1491000;1751000;1705000;1821000;1949000;2035000;2511000;2338000;2481000;2819000;3095000;3038000;2929000;3072000;2609000;2919000;3223000;3272000;3503000;2968000;3645000;3185000;3717000;4610000;4373000;4149000;4314000;4077000;4175000;3874000;3489000;3346200;3375400;;;;;;;;;;;;;;;;;;;;;;;;;; -5104;'018;Southern Africa;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;500000;1050000;870000;829000;1360000;1524000;1730000;1587000;1666000;1800000;1672000;1845000;2067000;2139000;2352000;2641000;2523000;2601000;2884000;3378000;3636000;3557000;4102000;3141000;3648000;4261000;5324000;5773000;5672000;5354000;5594000;5337000;5235000;6896000;6084100;5782900;5844500;;;;;;;;;;;;;;;;;;;;;;;;;; -5104;'018;Southern Africa;1871;Other industrial roundwood;5516;Production;m3;2011000;2241000;2321000;2454000;2840000;2835000;2656000;2787000;2885000;2918000;3171000;3136000;2860000;3038000;3055000;2955000;2398000;2407000;2388000;2522000;2576000;2621000;3352000;3109000;3731000;3689000;3919000;3309000;3669000;3326000;2947000;2632000;2352000;2740000;2989800;3513500;3470700;3564000;3232300;2372700;1769100;2152000;1265200;1336757;1690038;1219002;1443767;1287193;1747081;1535476;1564488;1483243;1483243;1483243;1483243;1483243;1592962;1442962;1465504;1085537;1085537;1085537;1085537 -5104;'018;Southern Africa;1871;Other industrial roundwood;5616;Import quantity;m3;;;;;21100;8200;10800;12900;18900;42600;28800;17900;17300;18800;19400;16500;16800;18400;17600;42300;73600;80100;76700;73500;73500;73500;73500;55000;37600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5104;'018;Southern Africa;1871;Other industrial roundwood;5622;Import value;1000 USD;;;;;1131;442;642;752;1091;1534;740;219;326;393;426;248;251;319;356;970;838;1676;1141;856;856;856;856;826;781;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5104;'018;Southern Africa;1871;Other industrial roundwood;5916;Export quantity;m3;14000;13000;18000;44200;58600;55700;70200;68700;64200;86700;63800;61800;76200;70700;72000;119400;141700;165500;153500;96900;115300;102100;127800;117300;117300;117300;117300;74100;70500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5104;'018;Southern Africa;1871;Other industrial roundwood;5922;Export value;1000 USD;187;179;176;347;637;509;669;522;569;615;453;604;1921;1005;1729;2337;2452;5200;5203;3733;4096;2771;5417;4693;4693;4693;4693;4693;3117;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5104;'018;Southern Africa;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;9000;10000;11000;15000;100000;264000;57000;59000;65000;60000;64000;65000;70000;76000;98000;102000;81000;89000;64000;75000;85000;89000;116000;115000;175000;175000;190000;160000;175000;160000;140000;144000;475000;443000;485100;574700;566800;583000;525600;377800;274100;339900;123200;203119;142212;80372;89763;73160;133119;98456;104159;99550;99550;99550;99550;99550;209269;59269;81811;156549;156549;156549;156549 -5104;'018;Southern Africa;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;2002000;2231000;2310000;2439000;2740000;2571000;2599000;2728000;2820000;2858000;3107000;3071000;2790000;2962000;2957000;2853000;2317000;2318000;2324000;2447000;2491000;2532000;3236000;2994000;3556000;3514000;3729000;3149000;3494000;3166000;2807000;2488000;1877000;2297000;2504700;2938800;2903900;2981000;2706700;1994900;1495000;1812100;1142000;1133638;1547826;1138630;1354004;1214033;1613962;1437020;1460329;1383693;1383693;1383693;1383693;1383693;1383693;1383693;1383693;928988;928988;928988;928988 -5104;'018;Southern Africa;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;21100;8200;10800;12900;18900;42600;28800;17900;17300;18800;19400;16500;16800;18400;17600;42300;73600;80100;76700;73500;73500;73500;73500;55000;37600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5104;'018;Southern Africa;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;1131;442;642;752;1091;1534;740;219;326;393;426;248;251;319;356;970;838;1676;1141;856;856;856;856;826;781;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5104;'018;Southern Africa;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;14000;13000;18000;44200;58600;55700;70200;68700;64200;86700;63800;61800;76200;70700;72000;119400;141700;165500;153500;96900;115300;102100;127800;117300;117300;117300;117300;74100;70500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5104;'018;Southern Africa;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;187;179;176;347;637;509;669;522;569;615;453;604;1921;1005;1729;2337;2452;5200;5203;3733;4096;2771;5417;4693;4693;4693;4693;4693;3117;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5104;'018;Southern Africa;1630;Wood charcoal;5510;Production;t;73891;75138;76413;77719;79056;80424;81827;83262;84731;86238;87417;87766;86280;87147;93727;99374;103085;108556;119174;134546;114657;129228;128629;135221;140114;145444;150001;153365;157347;164138;170201;188879;207032;196572;209395;214097;219480;240089;247457;279946;284395;287354;454227;415287;481561;487420;502172;536276;540532;542439;540208;551837;546373;559639;579119;582635;613572;716313;691979;562842;585821;639308;642264 -5104;'018;Southern Africa;1630;Wood charcoal;5610;Import quantity;t;500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2607;359;7900;9600;9540;9600;9500;7800;10800;12800;1500;7855;9275;15485;12707;12101;12101;3142;66813;69540;65185;82400;90449;89133;82515;80690;96366;115089;101893;117746.06;135753;147845 -5104;'018;Southern Africa;1630;Wood charcoal;5622;Import value;1000 USD;143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;881;85;939;1385;1351;1394;1377;1125;1443;1400;472;1473;1899;2298;1934;1760;1758;1652;12014;13113;11510;12058;12487;11750;9819;11351;14836;17450;13943;19988.53;21159;20052 -5104;'018;Southern Africa;1630;Wood charcoal;5910;Export quantity;t;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1100;4700;8000;12600;20000;30900;7000;16900;9600;12800;12800;12800;12800;12800;12800;12800;12800;25815;31442;26263;33700;32900;29200;30300;44500;68955;64942;52771;47566;86262;99269;86111;72720;110444;77225;119116;99803;104220;104888;114291;126492;124422;140150;153826;156854;177275;184809.99;235839;229485 -5104;'018;Southern Africa;1630;Wood charcoal;5922;Export value;1000 USD;0;0;0;0;0;0;0;0;0;0;0;0;0;0;92;473;840;1394;2332;3555;822;1964;1110;1536;1536;1536;1536;1536;1536;1536;1536;12375;13686;12052;11479;15399;13732;9267;12644;13075;10274;14894;15996;23912;28003;17553;16939;24173;28128;36885;28795;29343;28774;32298;30304;26573;34535;43779;52316;57649;66954.85;79697;85859 -5104;'018;Southern Africa;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1567000;1567000;1567000;1567000;1567000;4396400;4396400;7780800;13445700;13445700;13607144;4986213;4115966;2517703;3030000;2577026;2251944;2376582;2303592;2464700;2464700;2409992;2530636;2530636;2530636;2530636 -5104;'018;Southern Africa;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;1450;1671;1823;1802;1623;1748;1929;2314;2435;1306;6825;19900;7545;12721;25658;18809;25616;26486;41687;164611;150882;67313;48448.66;52057;137874 -5104;'018;Southern Africa;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;406;317;361;300;299;284;987;731;894;1205;1451;1381;2244;1949;1655;2539;2457;2345;2042;2438;4070;6272;4746;2901.48;2223;2366 -5104;'018;Southern Africa;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2778700;2923600;3981672;3979586;5016876;6369428;6196275;7162133;5907216;5139884;4734830;3080492.46;3086207.88;3216357.06;2114874.34;1731390;2002493.08;2327494;2523329;2355706;2502193;1813602;1410544;2048676.31;2380099;1756347 -5104;'018;Southern Africa;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;139653;136219;151224;172068;186587;247222;266994;335156;297344;272963;317403;187246;217773;235674.08;160747.19;165143;177069.04;203722;199709;219045;229961;184314;130141;189299.82;224047;166043 -5104;'018;Southern Africa;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1207000;1207000;1207000;1207000;1207000;3900700;3900700;7285100;12950000;12950000;12950000;4600000;3700000;2100000;2600000;2166335;1829591;1926410;1850222;1938466;1938466;1883758;1875920;1875920;1875920;1875920 -5104;'018;Southern Africa;1619;Wood chips and particles;5616;Import quantity;m3;;;;1994;1994;1994;1994;1994;1994;1994;1994;1994;1994;1994;1994;1994;1994;1994;1994;1994;1994;1994;1994;1994;1994;1994;1994;1994;1994;1994;1994;1994;1994;500;500;2100;2150;600;300;423;438;445;457;570;767;1150;1284;939;781;2445;1282;8847;20747;15252;19395;21090;36330;159260;116275;46558;38532.48;50970;136904 -5104;'018;Southern Africa;1619;Wood chips and particles;5622;Import value;1000 USD;;;;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;86;21;66;107;143;168;267;219;242;197;190;181;885;629;782;1106;1195;545;1096;717;1056;2018;1838;1522;1327;1983;3599;5743;4274;2641.48;2123;2296 -5104;'018;Southern Africa;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;527313;564790;1678440;491745;465267;465267;855207;1085002;1678158;2136500;2086000;2154400;2778700;2923500;3981569;3979013;5011649;6342170;6182840;7145380;5899768;5138884;4676830;3034455.46;3039900.88;3090977.06;2112784.34;1729122;1997446.08;2322483;2519534;2353900;2500862;1777406;1391490;2039175.89;2377156;1755310 -5104;'018;Southern Africa;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;41511;44113;89680;41954;42748;42748;73443;100477;124135;108963;157300;172259;139653;136194;151195;172028;185808;241470;264887;332669;296738;272677;314816;180183;212601;225855.08;160605.19;164863;175841.04;202533;199135;218602;229572;183652;129781;189086.82;223652;165888 -5104;'018;Southern Africa;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1580000;1700000;1700000;1700000;360000;360000;360000;360000;360000;495700;495700;495700;495700;495700;657144;386213;415966;417703;430000;410691;422353;450172;453370;526234;526234;526234;654716;654716;654716;654716 -5104;'018;Southern Africa;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;755;2542;669;1300;800;700;1400;1150;1248;1385;1357;1166;1178;1162;1164;1151;367;6044;17455;6263;3874;4911;3557;6221;5396;5357;5351;34607;20755;9916.17;1087;970 -5104;'018;Southern Africa;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;97;92;123;117;118;139;98;119;103;109;103;102;102;112;99;256;836;1148;1232;599;521;619;823;715;455;471;529;472;260;100;70 -5104;'018;Southern Africa;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4839;3375;4243;10000;3000;3000;0;100;103;573;5227;27258;13435;16753;7448;1000;58000;46037;46307;125380;2090;2268;5047;5011;3795;1806;1331;36196;19054;9500.42;2943;1037 -5104;'018;Southern Africa;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;169;111;140;470;238;238;0;25;29;40;779;5752;2107;2487;606;286;2587;7063;5172;9819;142;280;1228;1189;574;443;389;662;360;213;395;155 -5104;'018;Southern Africa;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85000;25000;20000;15000;15000;15000;15000;15000;15000;15000;16260;16200 -5104;'018;Southern Africa;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37150;28889;18482;22303;19226;20754;16198;8230;12248;16871.66;18577;16328 -5104;'018;Southern Africa;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;744;616;548;510;616;756;697;1909;2152;2120.79;2202;2196 -5104;'018;Southern Africa;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76045;12112;9914;12809;7424;6847;4888;10696;12694;11340.39;11163.22;13479 -5104;'018;Southern Africa;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9697;1843;1632;1618;897;1346;948;2066;7990;2711.81;1781.07;2099 -5104;'018;Southern Africa;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75000;15000;10000;5000;5000;5000;5000;5000;5000;5000;5000;5000 -5104;'018;Southern Africa;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37150;27694;18183;21204;17597;17676;14114;2944;1626;1526;1804;1764 -5104;'018;Southern Africa;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;744;459;427;402;465;535;521;636;617;145;85;94 -5104;'018;Southern Africa;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70211;6278;5209;4623;1878;269;252;2856;1916;1622.46;2550;3228 -5104;'018;Southern Africa;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8848;994;813;560;160;87;70;354;517;93;227;335 -5104;'018;Southern Africa;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;10000;10000;10000;10000;10000;10000;10000;10000;10000;11260;11200 -5104;'018;Southern Africa;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1195;299;1099;1629;3078;2084;5286;10622;15345.66;16773;14564 -5104;'018;Southern Africa;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;157;121;108;151;221;176;1273;1535;1975.79;2117;2102 -5104;'018;Southern Africa;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5834;5834;4705;8186;5546;6578;4636;7840;10778;9717.93;8613.22;10251 -5104;'018;Southern Africa;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;849;849;819;1058;737;1259;878;1712;7473;2618.81;1554.07;1764 -5104;'018;Southern Africa;1872;Sawnwood;5516;Production;m3;799000;672000;797000;876000;999000;968000;993000;1065000;1226000;1374000;1526000;1554000;1668000;1836000;1895000;1809000;1649000;1662000;1668000;1713000;1878000;1666000;1723000;1738000;1613000;1837000;1795000;1947000;1952000;2013000;1867000;1893000;1458000;1579000;1664000;1674000;1676000;1600000;1600000;1600000;1600000;1600000;2273300;2313400;2318500;2193100;2096975;2157769;1977588;2002498;1698795;1575105;1684675;1987958;2088739;2283758;2289991;2389317;2587317;2443000;2443000;2442702;2442702 -5104;'018;Southern Africa;1872;Sawnwood;5616;Import quantity;m3;470200;391100;496200;567400;510400;357000;405700;414200;464800;520200;452200;385800;509300;509500;501300;336300;171600;194800;139900;313100;300100;267600;378300;300200;260500;87512;72649;159803;65380;106602;114802;530869;60943;579300;447500;491300;456800;394900;525300;541884;470198;405554;504198;396789;504928;526453;566720;526229;355333;456196;432333;283056;447283;456930;334676;318359;366662;390286;507108;483107;446479;400962;311090 -5104;'018;Southern Africa;1872;Sawnwood;5622;Import value;1000 USD;20069;17179;20475;27547;25745;17356;19619;21551;26236;31576;26132;21524;49456;55858;48657;39379;21502;30597;24842;80740;69492;56789;78844;64265;64847;17940;22061;48527;20471;24885;23731;163298;30316;119867;130351;108024;107940;134260;128509;132006;112768;96937;103214;110843;141838;146615;161041;145574;111104;138906;153548;88143;131789;136116;119399;131232;133141;139736;138643;119370;174557;153861;131734 -5104;'018;Southern Africa;1872;Sawnwood;5916;Export quantity;m3;43900;38000;22200;22900;19900;21100;56700;54200;59500;75600;89900;81600;111000;110700;95300;95500;146600;157300;215100;170600;127400;119200;104600;101300;101300;119053;93248;190348;173304;203746;203746;191663;160601;66778;57000;47500;73600;91000;134100;134314;108018;110176;123665;85579;64821;63832;80779;59444;21726;51106;49864;151433;154273;188789;177089;292816;350402;392681;477825;479360;525538;519360;404928 -5104;'018;Southern Africa;1872;Sawnwood;5922;Export value;1000 USD;1453;1320;884;713;715;861;2219;2078;2345;3210;3943;3249;6583;6629;6280;6055;9474;12439;21432;21396;15869;14107;12184;11537;11537;18082;17967;35110;34258;40103;40103;33905;25911;17285;11443;15503;16158;13042;20140;20191;15338;14568;25118;18195;14521;14977;17938;13198;10448;29926;34141;56028;55105;73684;72092;86046;103684;112254;86123;86989;147977;142671;127721 -5104;'018;Southern Africa;1632;Sawnwood, coniferous;5516;Production;m3;748500;604000;728500;814000;940500;888500;917000;982000;1081500;1220500;1334500;1396000;1512500;1667500;1683500;1598500;1502000;1509500;1510000;1537000;1693500;1428500;1474500;1474500;1387500;1596500;1554500;1696500;1701500;1811000;1694000;1714000;1326000;1445000;1529000;1539000;1541000;1498000;1498000;1498000;1498000;1498000;2178600;2178600;2116700;2113300;1947345;1980270;1855271;1685733;1553758;1440714;1521498;1832393;1920673;2082000;2107000;2109000;2307000;2295000;2295000;2295000;2295000 -5104;'018;Southern Africa;1632;Sawnwood, coniferous;5616;Import quantity;m3;245700;174900;224200;231350;259450;177550;182900;156300;184200;189450;141050;113900;104600;125750;143500;69250;30500;29850;28950;35150;38350;48450;57250;43250;42100;40123;30147;38951;30052;48136;56336;181158;4466;66500;84800;74900;144600;212000;214700;227699;219855;203701;202170;115702;133881;147030;128905;169967;127318;152164;132643;176824;157987;179773;198112;172568;166144;240749;361048;346396;330805;311547;231235 -5104;'018;Southern Africa;1632;Sawnwood, coniferous;5622;Import value;1000 USD;10255;7527;8458;9254;10717;7110;7325;7072;8963;9629;7009;4949;6655;12930;16282;8210;3779;3791;5806;8399;8358;8255;10978;7503;6934;6367;4999;6740;5015;8273;7119;31535;1238;11178;16544;14540;32346;72488;64193;66799;54535;53447;37584;24754;28182;30258;26616;35139;37997;44581;54603;50036;37496;47407;57208;51388;66188;78312;83775;80977;128968;117542;101802 -5104;'018;Southern Africa;1632;Sawnwood, coniferous;5916;Export quantity;m3;20700;17100;17100;14050;14100;17700;54100;52100;54800;73200;87500;80900;110200;109900;94200;94400;131400;149300;207400;162300;125900;117800;104100;101200;101200;110878;85646;175300;171009;198797;198797;183939;155093;50000;44600;31400;57500;75000;108000;108133;67957;65156;73438;57722;38153;31982;51179;39256;17235;25711;20825;121699;115486;148648;145040;206634;284880;342461;443552;419041;509000;499004;376004 -5104;'018;Southern Africa;1632;Sawnwood, coniferous;5922;Export value;1000 USD;862;718;718;505;547;735;2112;1984;2130;3088;3830;3203;6529;6575;6204;5909;8336;11828;20832;20143;15634;13880;12106;11511;11511;16350;15809;30748;33423;38524;38524;30844;23555;9349;7915;11418;12073;11031;16284;16321;8836;7290;11281;9725;6417;5405;8940;7077;6896;9572;8018;28124;26668;40880;51222;48670;84863;98905;77622;73567;143173;136759;119640 -5104;'018;Southern Africa;1633;Sawnwood, non-coniferous;5516;Production;m3;50500;68000;68500;62000;58500;79500;76000;83000;144500;153500;191500;158000;155500;168500;211500;210500;147000;152500;158000;176000;184500;237500;248500;263500;225500;240500;240500;250500;250500;202000;173000;179000;132000;134000;135000;135000;135000;102000;102000;102000;102000;102000;94700;134800;201800;79800;149630;177499;122317;316765;145037;134391;163177;155565;168066;201758;182991;280317;280317;148000;148000;147702;147702 -5104;'018;Southern Africa;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;224500;216200;272000;336050;250950;179450;222800;257900;280600;330750;311150;271900;404700;383750;357800;267050;141100;164950;110950;277950;261750;219150;321050;256950;218400;47389;42502;120852;35328;58466;58466;349711;56477;512800;362700;416400;312200;182900;310600;314185;250343;201853;302028;281087;371047;379423;437815;356262;228015;304032;299690;106232;289296;277157;136564;145791;200518;149537;146060;136711;115674;89415;79855 -5104;'018;Southern Africa;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;9814;9652;12017;18293;15028;10246;12294;14479;17273;21947;19123;16575;42801;42928;32375;31169;17723;26806;19036;72341;61134;48534;67866;56762;57913;11573;17062;41787;15456;16612;16612;131763;29078;108689;113807;93484;75594;61772;64316;65207;58233;43490;65630;86089;113656;116357;134425;110435;73107;94325;98945;38107;94293;88709;62191;79844;66953;61424;54868;38393;45589;36319;29932 -5104;'018;Southern Africa;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;23200;20900;5100;8850;5800;3400;2600;2100;4700;2400;2400;700;800;800;1100;1100;15200;8000;7700;8300;1500;1400;500;100;100;8175;7602;15048;2295;4949;4949;7724;5508;16778;12400;16100;16100;16000;26100;26181;40061;45020;50227;27857;26668;31850;29600;20188;4491;25395;29039;29734;38787;40141;32049;86182;65522;50220;34273;60319;16538;20356;28924 -5104;'018;Southern Africa;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;591;602;166;208;168;126;107;94;215;122;113;46;54;54;76;146;1138;611;600;1253;235;227;78;26;26;1732;2158;4362;835;1579;1579;3061;2356;7936;3528;4085;4085;2011;3856;3870;6502;7278;13837;8470;8104;9572;8998;6121;3552;20354;26123;27904;28437;32804;20870;37376;18821;13349;8501;13422;4804;5912;8081 -5104;'018;Southern Africa;1634;Veneer sheets;5516;Production;m3;500;600;700;400;7000;12000;13000;13000;14000;15000;16000;17000;17600;22000;22000;22000;41000;53000;75000;72000;73000;70000;70000;70000;70000;70000;70000;70000;70000;28600;34000;8000;25000;28000;35000;35000;35000;75000;75000;75000;157000;123600;87000;87000;16200;67400;19536;22113;9511;6307;6307;4720;14802;13674;13000;13000;21000;21000;21000;28000;28000;28000;28000 -5104;'018;Southern Africa;1634;Veneer sheets;5616;Import quantity;m3;12700;12300;15000;25100;44000;29100;27700;27900;39300;30100;25600;30000;47000;52000;24000;19000;14500;12200;15000;14800;10200;6100;7100;7900;7900;9948;10645;15020;3930;3655;3655;10108;10133;18600;20800;12200;14600;14800;15100;15483;16571;24445;30327;28662;35613;26681;26685;16330;15071;26872;30801;12521;16654;9195;10849;10335;10728;6806;4046;3586;3051;4970;3267 -5104;'018;Southern Africa;1634;Veneer sheets;5622;Import value;1000 USD;1855;2028;2495;3591;4172;2745;2810;3071;5060;4286;3395;6969;7713;9178;3466;5449;3498;3144;5111;8359;9032;5279;6088;6382;6382;9225;11428;13885;5140;5113;5113;7351;6423;11065;12555;10864;12588;11877;13828;13941;15116;21672;23978;22541;29142;25199;25625;26847;18408;24955;41625;18374;30489;16326;16089;16591;13561;13254;9735;8119;9065;7566;10933 -5104;'018;Southern Africa;1634;Veneer sheets;5916;Export quantity;m3;0;0;0;200;600;1000;2800;1200;4100;2300;4000;4000;6000;7800;4800;5200;5700;6000;7500;11500;6600;7000;6200;4500;4500;5337;6846;6863;2770;3207;3207;3570;2727;2631;4000;5900;5900;13200;39000;29000;12300;12304;21979;21089;40020;24011;37617;4652;2114;1362;3097;873;2464;2482;3255;2428;2677;2471;1385;992;1050;1190;645 -5104;'018;Southern Africa;1634;Veneer sheets;5922;Export value;1000 USD;0;0;0;67;92;156;524;225;543;587;888;1105;2376;3088;1904;2075;2271;2420;3056;4675;2693;2896;2582;1919;1919;5565;7479;7577;3826;5717;5717;6434;4825;4079;8221;8698;8698;15050;45913;45913;17783;17786;29773;28301;34257;20223;31702;22401;5873;5141;4227;4693.25;11054;6855;5169;4645;4234;4466;3409;3485;3922;3546;3570 -5104;'018;Southern Africa;1873;Wood-based panels;5516;Production;m3;94400;98000;106500;124000;137800;173216;191363;191663;231193;276405;365636;443014;402677;345277;345277;345277;325500;295500;303000;312900;313500;336000;336000;336000;336000;336000;336000;336000;336000;291700;282000;400000;197000;553000;626000;626000;626000;409000;409000;409000;847000;942600;942600;1002600;564600;726700;832339;958435;673937;584789;611127;1027700;980936;1182195;1271195;1567031;1567031;1567031;1567431;1600431;1600431;1600431;1600431 -5104;'018;Southern Africa;1873;Wood-based panels;5616;Import quantity;m3;3100;1900;2700;4900;13200;8500;8300;8500;19000;26800;19300;12600;32100;27400;29200;10600;7600;6500;3700;8400;12800;10400;10200;12700;12700;6249;9729;10422;1867;5407;5407;65056;9456;22970;93400;99000;49100;52800;52700;65152;62277;80802;125214;176902;240725;341776;335306;175817;187968;235678;376986;180307.25;223367;322195;254587;302110;278845;237957;302250;322095;353320.29;343207;327321 -5104;'018;Southern Africa;1873;Wood-based panels;5622;Import value;1000 USD;348;369;431;1113;1308;966;957;1073;2353;3516;2770;1873;5408;6694;4454;1866;1375;1373;1885;4464;6542;5183;4899;5389;5389;2353;3558;4589;744;2074;2074;23446;3015;13414;24197;22935;16034;14826;11931;16425;17111;20058;30552;45423;66381;97641;119661;85507;75404;99155;135726;124603;122907;159105;117163;130415;119979;115985;121628;102949;144744.98;150325;119702 -5104;'018;Southern Africa;1873;Wood-based panels;5916;Export quantity;m3;51500;62200;70200;53800;44300;58100;68000;70100;74700;74400;108900;123961;119100;66500;61200;72400;64800;33000;39000;52100;36600;28400;26200;23900;26800;132253;165152;157468;82630;77725;77725;63557;36192;61019;42900;17100;16100;21200;24000;24085;79586;82754;68123;77242;83027;51025;35482;38133;78435;70362.4;99705.2;102516;96068;163323;208065;218379;261511;281298;310496;285941;266590.09;257705.7;363582 -5104;'018;Southern Africa;1873;Wood-based panels;5922;Export value;1000 USD;3562;3844;4285;4463;4033;4726;5209;6220;6506;5137;6546;7438;10103;6711;6198;9753;9815;4713;7131;10581;7752;7335;6832;5885;6719;26197;34414;35986;18120;16924;16924;16806;12688;18475;10091;4039;3584;4050;4537;4593;13272;16047;16675;21589;37669;22739;15257;25552;24470;29947;46443;46411;42438;59614;66464;62923;77461;113657;72086;69528;88780.54;88238.57;95344 -5104;'018;Southern Africa;1640;Plywood and LVL;5516;Production;m3;12000;10000;10000;10300;39800;41400;46600;46900;50900;51900;53700;53700;35900;26500;26500;26500;21500;24500;32000;32900;33500;35000;35000;35000;35000;35000;35000;35000;35000;31700;23000;47000;28000;29000;33000;33000;33000;35000;35000;35000;56500;76800;76800;76800;45900;46300;148993;87466;80350;75144;93832;161587;112660;90091;96000;96000;96000;96000;96000;129000;129000;129000;129000 -5104;'018;Southern Africa;1640;Plywood and LVL;5616;Import quantity;m3;1300;600;1100;2700;6500;4100;4200;4500;12500;17400;14300;10000;30000;23900;18900;6300;5600;6200;3300;5300;9700;6900;7800;8800;8800;3708;7969;7009;938;2427;2427;33478;1330;4749;42500;42500;17000;10200;7600;9617;10157;19960;22141;23290;39756;64642;77770;78907;49105;83510;99184;49879;51367;120976;111123;109166;115422;99505;119350;73707;94816;142685;93414 -5104;'018;Southern Africa;1640;Plywood and LVL;5622;Import value;1000 USD;242;113;200;550;774;666;711;806;2058;2990;2409;1634;5111;6170;3520;1427;1130;1178;1640;3429;5507;3945;4059;3839;3839;1729;3162;3696;371;1166;1166;15237;986;9237;10678;10678;8504;5617;4508;5228;5941;9629;11936;15545;22140;34979;44876;42034;30261;42844;55099;54588;28853;60279;52161;46971;49368;50489;49334;31854;45636;64120;43543 -5104;'018;Southern Africa;1640;Plywood and LVL;5916;Export quantity;m3;300;200;100;200;300;500;1000;2300;2400;3800;3400;4800;8200;5900;3000;16900;21400;8000;14000;18700;14000;10600;10700;10800;10800;14397;11039;12669;6038;5406;5406;5981;4533;7172;4600;4600;4600;300;400;413;3007;4492;6775;5892;5599;5280;3409;5891;6011;5925;6222.2;2734;4077;2959;33265;30596;65146;74922;83300;100456;46153;41481;41540 -5104;'018;Southern Africa;1640;Plywood and LVL;5922;Export value;1000 USD;59;36;23;42;83;441;494;450;369;590;576;713;1730;1178;1029;4432;5602;2320;4006;7185;5388;3121;3177;3190;3190;4196;3238;4283;3199;2739;2739;2875;2332;3872;1953;1953;1953;126;171;178;1408;1907;4713;4845;4344;3940;2539;6453;4142;3688;4211;3405;3919;3225;11224;9918;19356;29100;19403;22063;13822;14632;14627 -5104;'018;Southern Africa;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;226;823 -5104;'018;Southern Africa;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;217;656 -5104;'018;Southern Africa;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;210 -5104;'018;Southern Africa;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;148 -5104;'018;Southern Africa;1646;Particle board and OSB (1961-1994);5516;Production;m3;14400;18000;16500;19700;21000;24000;34000;34000;55000;95000;154000;204000;212000;164000;164000;164000;213000;202000;202000;202000;202000;202000;202000;202000;202000;202000;202000;202000;202000;202000;202000;296000;112000;489000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5104;'018;Southern Africa;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;400;5800;1500;300;300;500;2600;1100;700;500;2800;8800;3700;1500;300;400;3100;3100;3500;2400;3900;3900;2541;1760;3413;929;2980;2980;25431;6553;9185;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5104;'018;Southern Africa;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;56;330;121;37;62;29;187;86;76;98;365;510;302;162;195;245;1035;1035;1238;840;1550;1550;624;396;893;373;908;908;6133;1515;1631;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5104;'018;Southern Africa;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;12200;15900;7200;2500;1700;1200;1500;900;300;200;100;1100;2900;3300;900;900;1700;800;7300;1500;1500;1400;1900;2200;2200;73400;114795;112970;62247;57098;57098;43994;15389;31688;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5104;'018;Southern Africa;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;1022;1149;606;299;151;120;137;81;29;12;9;164;294;500;136;144;260;123;1452;306;306;305;413;330;350;10403;20397;22106;10884;9706;9706;8504;3616;6603;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5104;'018;Southern Africa;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;551000;551000;551000;224000;224000;224000;640500;715800;715800;715800;357900;522000;527805;718854;462072;392803;400453;649271;575276;681104;736195;1060031;1060031;1060031;1060031;1060031;1060031;1060031;1060031 -5104;'018;Southern Africa;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42200;46000;21600;16500;12300;20104;11312;15065;20654;36957;26073;75936;59140;33908;35995;27985;72636;33657;48097;62508;75998;81498;51104;51104;64993;121325;108620.61;73654;95104 -5104;'018;Southern Africa;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9981;8677;3950;2417;1904;3712;2157;1849;3902;7721;4832;17401;25124;11078;13266;15450;17352;15723;19310;21646;23560;23138;21669;21669;22655;21931;37646.61;29452;28940 -5104;'018;Southern Africa;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30300;6000;5000;15100;12800;12870;12558;20005;15044;15060;6142;10808;6373;9616;48815;25319;51061;59128;62467;134179;143235;155271;166344;147690;188917;147026;178593.98;170696;274956 -5104;'018;Southern Africa;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6969;1619;1164;3259;3152;3196;2726;3723;2499;3060;2651;4044;3980;5498;10015;10125;17174;17792;17711;36327;36123;37323;46540;56195;40256;35309;56317.28;54323;60278 -5104;'018;Southern Africa;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;860;1059;1059;1833;889;1323;1486;1282;3191;3640;5667;3698;4141;3768;4351;5228;10079.62;5648;4808 -5104;'018;Southern Africa;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;378;378;858;285;415;434;462;1231;1305;1557;1232;1875;1977;2685;2019;4101.59;2527;1687 -5104;'018;Southern Africa;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;455;477;394;131;14;54;402;955;1135;836;26;952;1057;1206;1187;1115 -5104;'018;Southern Africa;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;252;130;232;80;18;55;219;422;625;549;28;403;404;601;380;361 -5104;'018;Southern Africa;1874;Fibreboard;5516;Production;m3;68000;70000;80000;94000;77000;107816;110763;110763;125293;129505;157936;185314;154777;154777;154777;154777;91000;69000;69000;78000;78000;99000;99000;99000;99000;99000;99000;99000;99000;58000;57000;57000;57000;35000;42000;42000;42000;150000;150000;150000;150000;150000;150000;210000;160800;158400;155541;152115;131515;116842;116842;216842;293000;411000;439000;411000;411000;411000;411400;411400;411400;411400;411400 -5104;'018;Southern Africa;1874;Fibreboard;5616;Import quantity;m3;1800;1300;1600;1800;900;2900;3800;3700;6000;6800;3900;1900;1600;700;1500;600;500;;;;;;;;;;;;;;;6147;1573;9036;8700;10500;10500;26100;32800;35431;40808;45777;82419;116655;174036;200139;197337;61169;101979;122860;203680;95489.25;120712;135071;61799;107748;108178;83580;113556;121835;139804.05;121220;133995 -5104;'018;Southern Africa;1874;Fibreboard;5622;Import value;1000 USD;106;256;231;507;204;179;209;205;266;339;275;163;199;159;424;137;83;;;;;;;;;;;;;;;2076;514;2546;3538;3580;3580;6792;5519;7485;9013;8580;14714;22157;39209;44883;49283;31537;31592;40446;62841;53830;73513;75875;39885;59074;47067;41850;46954;47145;57360.78;54226;45532 -5104;'018;Southern Africa;1874;Fibreboard;5916;Export quantity;m3;39000;46100;62900;51100;42300;56400;65500;66900;72000;70400;105400;118061;108000;57300;57300;54600;41700;24200;17700;31900;21100;16400;13600;10900;13800;44456;39318;31829;14345;15221;15221;13582;16270;22159;8000;6500;6500;5800;10800;10802;64021;58257;46304;56290;71286;34937;25700;22171;23132;38724.4;42291;40640;29470;25783;30610;31377;29185;58660;37327;37402;40637.11;44341.69;45971 -5104;'018;Southern Africa;1874;Fibreboard;5922;Export value;1000 USD;2481;2659;3656;4122;3799;4165;4578;5689;6108;4535;5961;6561;8079;5033;5033;5177;3953;2270;1673;3090;2058;3909;3242;2365;3179;11598;10779;9597;4037;4479;4479;5427;6740;8000;1169;467;467;665;1214;1219;9138;10417;9463;13684;30674;14755;8738;13349;10183;15902;24978;25196;20753;19843;18695;15057;11016;28334;12024;11752;18040.26;18903.57;20078 -5104;'018;Southern Africa;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32000;32000;32000;120000;120000;120000;120000;120000;120000;120000;85400;83500;80641;77215;71515;56842;56842;56842;88000;131000;141000;131000;131000;131000;131000;131000;131000;131000;131000 -5104;'018;Southern Africa;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6000;2700;2700;14000;8500;9168;13916;18541;30501;21608;32551;38738;30621;15179;21496;17695;26992;26280.25;26954;42053;34009;36765;36652;27990;35186;51877;38489.48;36930;37899 -5104;'018;Southern Africa;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2641;1128;1128;3527;2336;3448;3627;3937;7511;9200;16125;19256;18298;10304;12533;13672;18700;17656;19034;24640;20401;20758;19525;18051;22702;25180;21533.75;21216;20302 -5104;'018;Southern Africa;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;42001;40007;33001;22601;40884;25697;11000;10981;10827;21140;27127;27067;19525;14814;12017;11115;9182;32421;3833;824;739;866;664 -5104;'018;Southern Africa;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;6662;8817;8033;7330;23501;13234;5716;7148;6829;11878;20875;19098;15339;13799;11182;7934;6095;18008;2100;440;566;776;552 -5104;'018;Southern Africa;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60000;60000;60000;60000;60000;60000;60000;60000;160000;205000;280000;298000;280000;280000;280000;280400;280400;280400;280400;280400 -5104;'018;Southern Africa;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1100;5900;5900;10500;14500;15360;13928;7177;15718;58164;62594;58886;122240;35227;63214;91373;163288;60511;63748;48356;12282;32094;46201;37556;55018;57142;88514.2;69814;83625 -5104;'018;Southern Africa;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;531;2093;2093;2760;2067;2240;1761;1460;2665;8125;10061;10130;23793;15920;14497;22699;40176;33277;33821;24937;6561;16663;21655;18979;19130;19739;32801.03;30002;22836 -5104;'018;Southern Africa;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;20;0;38;0;0;0;12400;5981;10896;15703.4;14164;9573;7629;9421;11678;12325;12211;16633;22603;29897;35109.11;35874;41340 -5104;'018;Southern Africa;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;8;0;13;0;0;0;2586;3038;3119;3632;3719;3894;4137;5123;5941;5213;3279;8609;8283;10054;16244.31;16940;18448 -5104;'018;Southern Africa;1650;Other fibreboard;5516;Production;m3;13000;14000;8000;10000;8000;32000;36000;36000;40000;40000;40000;40000;40000;40000;40000;40000;23000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;25000;6000;6000;6000;6000;4000;10000;10000;10000;30000;30000;30000;30000;30000;30000;30000;15400;14900;14900;14900;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -5104;'018;Southern Africa;1650;Other fibreboard;5616;Import quantity;m3;;;;1700;800;2800;3600;3600;5600;6000;3200;1600;1200;400;400;600;500;;;;;;;;;;;;;;;957;232;7993;1600;1900;1900;1600;9800;10903;12964;20059;36200;36883;78891;102515;44476;10763;17269;13792;13400;8698;30010;44662;15508;38889;25325;18034;23352;12816;12800.38;14476;12471 -5104;'018;Southern Africa;1650;Other fibreboard;5622;Import value;1000 USD;;;;466;151;128;132;147;188;218;155;92;83;66;95;137;83;;;;;;;;;;;;;;;297;53;2118;366;359;359;505;1116;1797;3625;3183;4538;4832;13023;15497;7192;5313;4562;4075;3965;2897;20658;26298;12923;21653;5887;4820;5122;2226;3026;3008;2394 -5104;'018;Southern Africa;1650;Other fibreboard;5916;Export quantity;m3;;;;2500;2400;10400;23600;23200;16000;14800;18800;3600;400;400;400;800;700;3000;1700;3600;2100;1900;600;1800;1800;3279;6544;4049;1104;855;855;1528;1001;1057;8000;6500;6500;5800;10800;10800;22000;18250;13265;33689;30402;9240;2300;5209;1409;1881;1000;4000;2316;1548;6915;7937;7792;9606;10891;6681;4789;7601.69;3967 -5104;'018;Southern Africa;1650;Other fibreboard;5922;Export value;1000 USD;;;;369;496;529;802;742;682;658;843;221;33;33;33;69;61;275;162;347;199;191;59;179;179;314;724;720;245;259;259;731;310;358;1169;467;467;665;1214;1214;2468;1600;1417;6354;7173;1521;436;3163;235;392;384;2204;1277;921;1572;1910;1642;1717;1641;1258;1229.94;1187.57;1078 -5104;'018;Southern Africa;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;55000;56000;72000;84000;69000;75816;74763;74763;85293;89505;117936;145314;114777;114777;114777;114777;68000;44000;44000;53000;53000;74000;74000;74000;74000;74000;74000;74000;74000;52000;51000;51000;51000;31000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5104;'018;Southern Africa;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;1800;1300;1600;100;100;100;200;100;400;800;700;300;400;300;1100;;;;;;;;;;;;;;;;;5190;1341;1043;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5104;'018;Southern Africa;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;106;256;231;41;53;51;77;58;78;121;120;71;116;93;329;;;;;;;;;;;;;;;;;1779;461;428;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5104;'018;Southern Africa;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;39000;46100;62900;48600;39900;46000;41900;43700;56000;55600;86600;114461;107600;56900;56900;53800;41000;21200;16000;28300;19000;14500;13000;9100;12000;41177;32774;27780;13241;14366;14366;12054;15269;21102;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5104;'018;Southern Africa;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;2481;2659;3656;3753;3303;3636;3776;4947;5426;3877;5118;6340;8046;5000;5000;5108;3892;1995;1511;2743;1859;3718;3183;2186;3000;11284;10055;8877;3792;4220;4220;4696;6430;7642;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5104;'018;Southern Africa;1879;Total fibre furnish;5510;Production;t;221600;293600;435000;510000;530000;533000;576000;572000;539000;733000;760000;850000;933000;974000;917000;980000;1054000;1079000;1133100;1212000;1297000;1411000;1369000;1224000;1337000;1382000;1382000;1460000;2207000;2204000;2262000;2299000;2309000;1939000;2337000;2357000;2609000;2603000;2538000;2672100;2705900;2833500;2883700;2827600;2819200;2889700;2970400;3125964;2694000;2800198;2742509;2795315;2810565;2575919;2636284;2793554;2673519;2661343;2469572;2236810;2317724;2432605;2361120 -5104;'018;Southern Africa;1879;Total fibre furnish;5610;Import quantity;t;7800;3300;4000;4000;2000;3000;1100;34500;61500;65700;63500;78100;104400;106700;92400;116600;120100;125700;129000;210000;181800;121800;288800;199400;56100;56819;74583;78851;116996;115488;115488;58137;95355;79016;82336;101454;101454;82500;71300;71309;53997;68166;71107;71505;81790;54512;124933;116355;98133.3;100807;105515.03;145223;178341.3;219642.3;212559;223825;225006;260024;240822;211602;218782.4;293702.5;188690.5 -5104;'018;Southern Africa;1879;Total fibre furnish;5622;Import value;1000 USD;661;299;970;32;40;92;97;3883;7322;9921;9947;11216;18005;39935;35161;33700;32559;34662;49717;73532;85239;50170;74906;75762;18074;18224;21752;23382;40342;40342;40342;22374;22647;33708;50981;43214;43214;33806;30014;30027;25845;30465;32235;37486;40836;27940;72526;70118;45627;62620;71615;67000;91140;116288;104962;104610;106371;159459;125441;92513;126764.58;218518.17;123679.16 -5104;'018;Southern Africa;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;166200;178600;172000;204100;241000;270900;271039;229559;324362;308400;373700;399400;336500;219200;246700;245300;281300;275400;293508;298473;307837;323686;320796;320796;379262;450482;539602;515846;676042;432942;491042;507400;510333;422869;438401;475364;394852;441531;414994;408407;385147;448638;304222;398698.5;287296;250234;269963;242777;316498;382639;367154;306836;317299;219959.24;360606.27;333083.27 -5104;'018;Southern Africa;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;16546;15844;18718;26260;27890;38443;38453;32963;51627;47359;59766;76214;84220;68777;78283;77983;100909;99329;110002;111849;114483;122449;123532;123532;171661;162370;219797;326746;406889;161297;162591;173264;173359;149675;151533;159516;160412;164449;158526;196094;194070;182630.1;172466;198071.1;110943;88227;88401;110959;109397;166984;155033;110515;88419;63417.13;185883.46;99243.46 -5104;'018;Southern Africa;1878;Pulp for paper;5510;Production;t;221600;293600;435000;510000;530000;533000;576000;572000;539000;558000;576000;640000;700000;724000;677000;704000;763000;795000;829100;872000;923000;1037000;994000;854000;962000;982000;982000;980000;1707000;1694000;1737000;1701000;1719000;1349000;1747000;1767000;2019000;2013000;1948000;1973100;1925900;2052500;1949700;1889600;1882200;1953700;2032400;2080964;1653000;1684000;1650000;1615000;1612269;1484790;1410188;1350704;1354399;1230000;1182076;1037916;1037916;1037916;1037916 -5104;'018;Southern Africa;1878;Pulp for paper;5610;Import quantity;t;7800;3300;4000;4000;2000;3000;1100;34500;61500;65700;63500;78100;104400;106700;92400;116600;120100;125700;129000;208700;180200;120700;288500;198000;55300;55200;56904;57181;107500;107504;107504;38198;55753;60752;61336;95054;95054;72500;68600;68604;50739;63304;59378;68701;73289;33993;104413;84554;67018.3;66597;72033.03;82555;125742.3;147169.3;142444;165487;166433;205404;190921;155187;150362.55;222584.5;128185.5 -5104;'018;Southern Africa;1878;Pulp for paper;5622;Import value;1000 USD;661;299;970;32;40;92;97;3883;7322;9921;9947;11216;18005;39935;35161;33700;32559;34662;49717;73114;84951;49721;74835;75542;17945;17988;19464;20247;39188;39192;39192;19759;20757;32470;46995;42298;42298;30869;29678;29686;25560;29880;30614;37051;39230;23576;68161;63963;41169;55146;66738;60500;84298;104667;94360;96929;99451;153398;119662;87972;119730.58;210574.17;116513.16 -5104;'018;Southern Africa;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;166200;178600;172000;204100;241000;270900;270900;224900;321800;304600;369700;394400;330500;214700;243700;242000;279900;274000;284000;294000;294000;319400;314400;314400;372344;448480;533632;500846;675042;431942;469042;494200;494200;405300;421000;450095;367643;384957;369214;361006;352792;414140;232248;301074.5;157104;125104;187825;163637;179923;225245;178985;187034;196525;49587.19;177618.27;142592.27 -5104;'018;Southern Africa;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;16546;15844;18718;26260;27890;38443;38443;32612;51434;46935;59326;75679;82980;67843;77643;77272;100580;99000;109000;111000;112000;121376;122376;122376;170178;161810;218439;324020;406622;161030;160689;171958;171958;148250;149433;155420;156966;158128;154660;191874;189731;178647.1;162642;182102.1;92360;72333;76897;100876;91936;140923;124967;95378;76485;29283.79;150680.46;75068.46 -5104;'018;Southern Africa;1875;Wood pulp;5510;Production;t;281600;378600;537000;625000;649000;664000;722000;738000;725000;748000;785000;855000;919000;1045000;1064000;1000000;1062000;1132000;1165100;1208000;1259000;1339000;1279000;1174000;1444000;1464000;1464000;1462000;1998000;1995000;2038000;2100000;2071000;1701000;2068000;2088000;2424000;2384000;2309000;2415100;2219900;2369500;2378700;2256600;2257200;2406500;2480400;2501701;2177000;2313000;2305975;2276000;2287969;2338462;2320192;2221547;2250857;2139000;2220549;1994386;1994386;1994386;1994386 -5104;'018;Southern Africa;1875;Wood pulp;5610;Import quantity;t;7800;3300;4000;4300;2100;3100;1200;34600;62800;65900;63700;78200;104900;107200;92900;117100;120600;125800;129300;208800;180600;121100;288900;198400;55900;55216;57324;57957;107971;109105;109105;39963;57072;60767;61351;95100;95100;76600;70000;70003;50739;63504;59928;68336;70485;33025;103458;81701;62236.3;59897;65857.3;76364.35;126080.38;147827.3;143273;165538;165468;205335;189381;152830;148248.29;220605.6;127937.6 -5104;'018;Southern Africa;1875;Wood pulp;5622;Import value;1000 USD;661;299;970;59;55;107;112;3898;7484;9953;9979;11247;18115;40045;35271;33810;32669;34686;49838;73151;85216;49958;75036;75742;18192;17996;19636;20754;39524;40496;40496;20625;21395;32443;46968;42354;42354;32657;30417;30424;25560;30366;31560;36827;37423;22534;67215;60930;37322;49497;60907;54661;84147.17;104642;94458;97757;98420;153033;118281;86329;118315.92;208767.94;115654.94 -5104;'018;Southern Africa;1875;Wood pulp;5910;Export quantity;t;84100;106300;125000;110500;135900;154700;162300;351500;372400;376000;430900;481500;521900;630600;643400;649800;652300;707800;608500;567500;450700;476700;494000;485300;479400;509336;478391;600208;479874;493205;493205;572163;578812;665143;660200;1006500;763400;797700;984700;984700;802300;836600;981506;1089898;910803;919048;906108;863028;1040957;955781;993100.5;875806;858143;1095693;1067433;1034413;1138388;1127109;1141382;1057276;980767.41;1123229;1199571 -5104;'018;Southern Africa;1875;Wood pulp;5922;Export value;1000 USD;13369;13648;15260;15244;16823;18387;19354;38055;40941;43721;53885;57816;78355;95989;100421;104625;103967;126951;150636;183267;179600;187918;196881;211499;210000;213860;210387;314348;251239;264371;264371;308795;270435;310390;422371;681853;436261;401960;413564;413564;372487;346285;440027;464362;492992;495859;592266;589981;553132.1;755598;961131.1;696078;688705;789703;794794;822808;920453;880183;550690;758737;814438.35;1190020;1118242 -5104;'018;Southern Africa;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;379911;315000;386176;252416;252416;252416;252416 -5104;'018;Southern Africa;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3529;5185;5129;3887;7409.9;8452;4687 -5104;'018;Southern Africa;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1451;2420;2541;1811;3929.54;6058;3189 -5104;'018;Southern Africa;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;23;1;14;698;1499;4772 -5104;'018;Southern Africa;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;16;0;0;206;386;2483 -5104;'018;Southern Africa;1654;Mechanical wood pulp (1961-2016);5510;Production;t;87000;119000;129000;136000;151000;118000;118000;138000;136000;142000;150000;165000;172000;169000;166000;194000;185000;170000;152000;200000;250000;313000;273000;148000;255000;255000;255000;255000;366000;370000;370000;288000;290000;258000;370000;370000;370000;270000;270000;285000;275000;285000;277000;275000;275000;254000;238000;314764;209000;199000;281000;198000;249937;198919;211029;214107;;;;;;; -5104;'018;Southern Africa;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;7800;3300;4000;4000;2000;3000;1100;1600;1500;2600;1500;3300;2400;5200;3500;800;400;300;300;600;300;300;300;200;100;0;1704;1981;0;4;4;5;49;132;200;200;200;1400;1200;1202;1302;301;301;547;305;304;305;341;34.1;41;197.03;52;26;2377;1721;65;;;;;;; -5104;'018;Southern Africa;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;661;299;970;32;40;92;97;170;139;302;161;337;314;1570;1332;258;203;159;160;335;160;160;160;62;26;0;476;759;0;4;4;2;14;104;104;104;104;484;473;478;651;196;194;304;137;135;136;472;42;23;142;36;25;1680;1128;43;;;;;;; -5104;'018;Southern Africa;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3113;3352;1586;200;600;600;0;0;0;0;0;0;0;0;0;0;1068;0;5;131;139;125;39;0;1;;;;;;; -5104;'018;Southern Africa;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1208;1169;812;139;712;712;0;0;0;0;0;0;0;0;0;0;420;0.1;39;74;62;91;16;0;1;;;;;;; -5104;'018;Southern Africa;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;13000;7000;22000;48000;73000;103000;104000;71000;122000;108000;82000;82000;82000;105000;84000;117000;126000;140000;140000;140000;140000;140000;140000;99000;87000;120000;164000;164000;0;0;0;0;171000;155000;155000;144000;144000;130000;135000;135000;105000;122000;100000;185000;338525;157097;166633;162109;;;;;;; -5104;'018;Southern Africa;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3800;3900;10;3300;800;800;3200;3100;3100;4233;5100;4541;2717;3935;5400;5403;4481;2089;2142;1679;1701;3868;233;79;847;;;;;;; -5104;'018;Southern Africa;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1821;1911;6;2014;204;204;1778;1683;1683;2445;4884;4566;2040;2752;3600;3603;3609;1784;1776;1221;1201;2262;155;34;369;;;;;;; -5104;'018;Southern Africa;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1124;;0;0;0;0;0;0;0;0;0;700;700;35;700;700;6500;3000;54;0.5;0;41;1;0;3;;;;;;; -5104;'018;Southern Africa;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;448;;0;0;0;0;0;0;0;0;0;299;299;20;500;500;4811;2300;45;0.1;0;41;3;0;2;;;;;;; -5104;'018;Southern Africa;1656;Chemical wood pulp;5510;Production;t;109600;149600;281000;349000;354000;390000;433000;407000;363000;382000;374000;397000;416000;413000;375000;407000;407000;449000;511100;506000;507000;535000;553000;503000;482000;488000;488000;486000;1102000;1085000;1128000;1215000;1243000;872000;1114000;1134000;1534000;1628000;1563000;1573100;1376900;1509500;1411700;1298600;1291200;1466700;1564400;1536200;1274000;1284000;1190000;1156000;952819;1057786;961538;903500;903500;874000;754900;744500;744500;744500;744500 -5104;'018;Southern Africa;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;32900;60000;63100;62000;74800;102000;101500;88900;115800;119700;125400;128700;208100;179900;120400;288200;197800;55200;55200;55200;55200;107500;107500;107500;34358;51723;60474;57700;94000;94000;67900;64300;64301;45204;57803;54436;64728;64484;26908;97296;76283;59546.2;57014;63186;73821;121194.3;144143.3;140118;163812;161936;199442;183710;148772;140655.39;212139.5;122863.5 -5104;'018;Southern Africa;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;3713;7183;9619;9786;10879;17691;38365;33829;33442;32356;34503;49557;72779;84791;49561;74675;75480;17919;17988;18988;19488;39188;39188;39188;17909;18753;32250;44767;41929;41929;28607;27522;27524;22464;24729;25783;33712;33038;18246;62792;55884;34580;46594;58304;52189;81008;102008;92511;95675;96961;149973;115606;84465;114281.38;202669.17;112155.16 -5104;'018;Southern Africa;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;166200;178600;172000;204100;241000;270900;270900;224900;321800;304600;369700;394400;330500;214700;243700;242000;279900;274000;284000;294000;294000;319400;314400;314400;355800;425000;531700;500300;674100;431000;468700;493700;493700;404800;420800;443895;356735;374714;358914;345974;332452;404284;224261;286241;156965;124930;187238;163637;179914;224884;178745;186656;196296;48087.93;175269;136916 -5104;'018;Southern Africa;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;16546;15844;18718;26260;27890;38443;38443;32612;51434;46935;59326;75679;82980;67843;77643;77272;100580;99000;109000;111000;112000;121376;122376;122376;162649;152334;217431;323685;405592;160000;160371;171457;171457;147730;149308;152103;151909;153350;151960;188755;180546;174571;159503;175543;92298;72180;76761;100876;91925;140707;124610;95056;76445;28941.79;150113;72450 -5104;'018;Southern Africa;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;64000;101000;169000;308000;315000;324000;399000;325000;278000;295000;284000;315000;336000;319000;298000;322000;333000;370000;416000;411000;412000;427000;448000;410000;374000;380000;380000;378000;771000;750000;795000;768000;834000;430000;607000;627000;594000;606000;739000;722100;693900;715500;634700;624600;617200;632700;671400;643200;455000;462000;285000;376000;306172;352595;320513;300500;300500;300000;250900;244500;244500;244500;244500 -5104;'018;Southern Africa;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;700;5500;8800;500;700;1500;1300;19000;200;300;200;200;200;200;200;200;1100;13500;13500;13500;13500;13500;13500;13500;481;481;7996;3200;2900;2900;6200;4500;4500;1702;1603;851;399;1072;176;37;43;642;1910;806;68;135.23;6631;7949;6545;5878;5878;20056;8001;1961.18;3160.5;7124.5 -5104;'018;Southern Africa;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;65;447;1208;60;92;214;318;6641;46;62;23;34;34;34;34;62;329;2762;2762;2762;2762;2762;2762;2762;143;143;2995;2453;1212;1212;2050;1583;1583;597;588;333;292;491;81;12;33;368;1129;1249;185;87;4170;4541;3529;3377;3377;8998;5345;1570.53;2945.16;4915.16 -5104;'018;Southern Africa;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;75800;94200;73400;103500;115300;134200;134200;224200;321500;304000;365000;391000;325200;214700;243700;242000;279900;274000;284000;294000;294000;319400;314400;314400;213400;261600;324000;236800;271300;271300;233800;235900;235900;235900;224700;206076;211063;167890;221197;217766;200675;216031;18575;114;50;203;30;98;2117;2117;30;5815;0;2;148;148 -5104;'018;Southern Africa;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;6619;5781;5227;12759;13463;15454;15454;32454;51366;46778;58073;74665;80855;67843;77643;77272;100580;99000;109000;111000;112000;121376;122376;122376;88817;87491;109583;124725;93645;93645;66278;67934;67934;67934;74070;73135;81498;69612;77423;121331;92009;87765;10660;64;12;99;27;8;1241;1241;27;4150;0;0;31;31 -5104;'018;Southern Africa;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;36000;39000;39000;41000;39000;66000;34000;82000;85000;87000;90000;82000;80000;94000;77000;85000;74000;74000;95000;95000;95000;108000;105000;93000;108000;108000;108000;108000;331000;335000;333000;447000;409000;442000;507000;507000;780000;848000;824000;851000;683000;794000;777000;674000;674000;834000;893000;893000;819000;822000;743000;754000;646647;705191;641025;603000;603000;574000;504000;500000;500000;500000;500000 -5104;'018;Southern Africa;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;23000;43700;37700;47400;65900;75800;64300;53600;100200;108000;113000;112600;186200;167600;115400;286800;191600;35500;35500;35500;35500;87800;87800;87800;30452;49718;45663;50300;90000;90000;59300;57400;57400;41800;43400;36895;45181;57073;20874;46092;26243;55303;49918;51297;60228;91911;107189.3;92325;106044;111504;190071;161538;139171;137030.54;206930;113693 -5104;'018;Southern Africa;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;2591;5309;5770;7419;9532;12642;26205;20680;28417;28907;30803;42640;62460;79924;48110;74200;72657;12931;13000;14000;14500;34200;34200;34200;15958;17620;25063;39117;39793;39793;25065;24676;24676;20648;18396;17578;24043;28767;14385;25646;18843;31272;40607;45232;42618;62097;76755;62340;63211;68196;143466;104758;77733;110929.71;197091;104750 -5104;'018;Southern Africa;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;400;400;600;600;700;700;700;700;300;600;4700;3400;5300;;;;;;;;;;;;142400;163400;207700;263500;400400;157300;228000;249600;249600;161600;185700;211978;116653;177051;120298;126470;128035;176267;205028;271424;156891;124694;186989;162983;177691;222765;178686;180841;196281;48082.93;175086;136767 -5104;'018;Southern Africa;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;52;63;107;107;158;158;158;158;68;157;1253;1014;2125;;;;;;;;;;;;73832;64843;107848;198960;310576;64984;91853;100969;100969;76982;71114;68514;55083;64086;63268;66375;85331;81568;148426;168993;92257;71995;76450;100500;90615;139464;124557;90903;76442;28933.79;150040;72416 -5104;'018;Southern Africa;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -5104;'018;Southern Africa;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44554;3493;2116;1600;1663.67;2049;2046 -5104;'018;Southern Africa;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25388;3130;1850;1387;1781.14;2633;2490 -5104;'018;Southern Africa;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;29;0;15;3;35;1 -5104;'018;Southern Africa;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;26;3;3;8;42;3 -5104;'018;Southern Africa;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;5000;100;;;;;;;;;;;;;;;0;0;0;160000;174000;0;0;0;0;0;0;0;0;0;0;0;0;0;26000;0;0;0;0;;;;;;; -5104;'018;Southern Africa;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;3300;2900;2500;3100;1800;6700;14300;2000;1000;200;200;300;300;;;;;;;;;;;;457;457;847;100;100;100;900;0;0;0;0;5;5;5;10;0;72;1.2;976;6966;126;20;12;1;2;;;;;;; -5104;'018;Southern Africa;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;334;338;350;482;261;1095;4862;628;369;55;44;116;121;;;;;;;;;;;;102;102;190;51;51;51;392;0;0;0;0;8;8;8;8;0;294;4;618;7030;209;83;33;3;8;;;;;;; -5104;'018;Southern Africa;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8000;20989;15828;4127;5346;0;0;11895;608;14702;0;23;47;556;70;;;;;;; -5104;'018;Southern Africa;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2964;7737;6462;1789;2659;0;0;5181;365;6485;0;70;130;368;51;;;;;;; -5104;'018;Southern Africa;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;162000;0;0;0;0;0;;;;;;; -5104;'018;Southern Africa;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;5900;7900;14100;11000;6400;18000;21600;14300;14400;11200;12000;15600;21400;12100;4800;1200;5100;6200;6200;6200;6200;6200;6200;6200;2968;1067;5968;4100;1000;1000;1500;2400;2401;1702;12800;16685;19143;6334;5848;51167;49925;3600;4210;4117;13399;29128.06;30311;39843;51221;;;;;;; -5104;'018;Southern Africa;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;723;1089;2291;1825;994;3740;6980;5880;4610;3332;3633;6767;10164;4833;1417;413;2494;2226;2226;2226;2226;2226;2226;2226;1706;888;4002;3146;873;873;1100;1263;1265;1219;5745;7864;9369;3772;3772;37134;36714;2936;4240;4793;9177;18741;21050;25627;28927;;;;;;; -5104;'018;Southern Africa;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2400;2400;6900;8200;8200;7300;2400;4852;13191;25646;12073;1738;3742;91;50;1;24;10;172;0;36;;;;;;; -5104;'018;Southern Africa;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1371;1371;2240;2554;2554;2814;1160;2717;8866;17863;8610;1049;3206;57;52;1;29;16;154;0;18;;;;;;; -5104;'018;Southern Africa;1667;Dissolving wood pulp;5510;Production;t;85000;110000;127000;140000;144000;156000;171000;193000;213000;217000;239000;245000;258000;360000;419000;328000;348000;405000;420000;420000;420000;386000;369000;406000;581000;581000;581000;581000;390000;400000;400000;498000;451000;451000;420000;420000;520000;486000;476000;557000;397000;420000;535000;539000;547000;555800;543000;515737;589000;708000;734975;737000;746688;924660;980992;941831;967446;950000;1079473;997470;997470;997470;997470 -5104;'018;Southern Africa;1667;Dissolving wood pulp;5610;Import quantity;t;;;;300;100;100;100;100;1300;200;200;100;500;500;500;500;500;100;300;100;400;400;400;400;600;16;420;776;471;1601;1601;1800;1400;151;151;100;100;4100;1400;1400;0;300;650;344;1761;413;454;596;567;700;795.27;790.35;992.08;1074;1355;814;3;708;542;171;183;14.1;387.1 -5104;'018;Southern Africa;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;27;15;15;15;15;162;32;32;31;110;110;110;110;110;24;121;37;265;237;201;200;247;8;172;507;336;1304;1304;893;717;83;83;117;117;1788;739;739;0;557;1017;771;1496;553;684;965;916;1104;1240;1235;852.17;799;785;1670;8;640;134;53;105;40.77;310.77 -5104;'018;Southern Africa;1667;Dissolving wood pulp;5910;Export quantity;t;84100;106300;125000;110500;135900;154700;162300;185300;193800;204000;226800;240500;251000;359700;418500;328000;347700;338100;214100;237000;236000;233000;252000;205400;205400;225336;184391;306208;160474;178805;178805;212126;150460;131857;159700;331800;331800;329000;491000;491000;397500;415800;536911;732463;536054;559434;559434;523008;633673;731461;706728;718702;733047;908415;903796;854495;913492;948341;954725;860966;931981.48;946461;1057883 -5104;'018;Southern Africa;1667;Dissolving wood pulp;5922;Export value;1000 USD;13369;13648;15260;15244;16823;18387;19354;21509;25097;25003;27625;29926;39912;57546;67809;53191;57032;67625;74957;100287;111757;110275;119609;110919;111000;104860;99387;202348;129863;141995;141995;144490;116932;92147;98547;275549;275549;241589;242107;242107;224757;196977;287625;312154;339622;343399;403011;404204;376261;596011;785514;603718;616393;712923;693918;730880;779729;755557;455634;682292;785290.56;1039521;1043309 -5104;'018;Southern Africa;1668;Pulp from fibres other than wood;5510;Production;t;25000;25000;25000;25000;25000;25000;25000;27000;27000;27000;30000;30000;39000;39000;32000;32000;49000;68000;84000;84000;84000;84000;84000;86000;99000;99000;99000;99000;99000;99000;99000;99000;99000;99000;99000;99000;115000;115000;115000;115000;103000;103000;106000;172000;172000;103000;95000;95000;65000;79000;79000;76000;70988;70988;70988;70988;70988;41000;41000;41000;41000;41000;41000 -5104;'018;Southern Africa;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;81;136;136;54;54;0;0;1;0;100;100;709;4565;1381;1409;3449;5349;7400;6971;6981;654;416;526;763;968;777;2082;2528;2297.26;1993;635 -5104;'018;Southern Africa;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;79;110;110;61;61;0;0;1;0;71;71;995;3303;1595;1630;3998;4763;6753;7071;7074;1003;824;687;842;1039;1005;1515;1696;1519.66;1847;1169 -5104;'018;Southern Africa;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12307;20128;346;346;342;342;342;500;500;500;200;5500;10208;10208;9600;14332;12772;6856;7928;14702;0;8;547;0;5;349;217;377;215;801.27;850.27;904.27 -5104;'018;Southern Africa;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5873;8307;196;196;318;318;318;501;501;520;125;3018;4758;4758;2200;2619;3954;1776;3055;6485;0;21;117;0;8;199;341;322;40;136;181.46;135.46 -5104;'018;Southern Africa;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;0;0;1;0;0;1;508;178;264;292.05;74;211.1;2345.2;226;178;170;202;177;98;218;185;1088 -5104;'018;Southern Africa;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;0;0;1;0;0;3;511;91;217;142.58;144;163;1981;165;224;211;238;156;99;120;203;978 -5104;'018;Southern Africa;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14452;12700;6847;7926;13841;14532;12426;10522;6783;4631;8397;13411;11742;25626;8368.48;18648;6368 -5104;'018;Southern Africa;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2584;3826;1732;3053;6321;5026;2619;1552;1189;660;1523;2520;2245;6042;2041.1;4104;1081 -5104;'018;Southern Africa;1669;Recovered paper;5510;Production;t;;;;;;;;;;175000;184000;210000;233000;250000;240000;276000;291000;284000;304000;340000;374000;374000;375000;370000;375000;400000;400000;480000;500000;510000;525000;598000;590000;590000;590000;590000;590000;590000;590000;699000;780000;781000;934000;938000;937000;936000;938000;1045000;1041000;1116198;1092509;1180315;1198296;1091129;1226096;1442850;1319120;1431343;1287496;1198894;1279808;1394689;1323204 -5104;'018;Southern Africa;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;1300;1600;1100;300;1400;800;1619;17679;21670;9496;7984;7984;19939;39602;18264;21000;6400;6400;10000;2700;2705;3258;4862;11729;2804;8501;20519;20520;31801;31115;34210;33482;62668;52599;72473;70115;58338;58573;54620;49901;56415;68419.85;71118;60505 -5104;'018;Southern Africa;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;418;288;449;71;220;129;236;2288;3135;1154;1150;1150;2615;1890;1238;3986;916;916;2937;336;341;285;585;1621;435;1606;4364;4365;6155;4458;7474;4877;6500;6842;11621;10602;7681;6920;6061;5779;4541;7034;7944;7166 -5104;'018;Southern Africa;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;139;4659;2562;3800;4000;5000;6000;4500;3000;3300;1400;1400;9508;4473;13837;4286;6396;6396;6918;2002;5970;15000;1000;1000;22000;13200;16133;17569;17401;25269;27209;56574;45780;47401;32355;34498;71974;97624;130192;125130;82138;79140;136575;157394;188169;119802;120774;170372.05;182988;190491 -5104;'018;Southern Africa;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;10;351;193;424;440;535;1240;934;640;711;329;329;1002;849;2483;1073;1156;1156;1483;560;1358;2726;267;267;1902;1306;1401;1425;2100;4096;3446;6321;3866;4220;4339;3983;9824;15969;18583;15894;11504;10083;17461;26061;30066;15137;11934;34133.34;35203;24175 -5104;'018;Southern Africa;1876;Paper and paperboard;5510;Production;t;199000;226000;284000;296000;384000;445000;475000;553000;580000;610000;625000;744000;801000;811000;776000;806000;979000;1023000;1120000;1197000;1290000;1350000;1520000;1422000;1489000;1611000;1600000;1800000;1899000;1904000;1904000;1800000;1710000;1684000;1871000;1871000;2047000;2105000;2041000;2472000;2626000;2672000;2695000;2930000;2493000;2660000;2775000;2775000;2294000;2565000;2225000;2471486;2367183;2306489;2297182;2401990;2129060;2272214;2207133;1940240;2044561;2011973;2007761 -5104;'018;Southern Africa;1876;Paper and paperboard;5610;Import quantity;t;182200;170400;182800;215400;220000;155700;187800;193800;239900;293400;243900;108900;182600;270100;147900;110500;91300;99300;89300;172800;163100;150800;119200;118600;172100;174359;160493;214834;149202;167285;167285;270580;260907;290028;327500;337300;291300;283901;293899;310486;241852;273970;396871;430938;428602;605909;629648;572716;674616;685187;705318;776507;782008;768677;787654;759780;816079;841613;785325;692779;746583.37;977416;720173 -5104;'018;Southern Africa;1876;Paper and paperboard;5622;Import value;1000 USD;39108;36946;46479;48843;50858;41921;51003;50582;62471;75853;68713;26032;65130;155076;98352;72401;66744;81463;77538;149383;130263;104631;85970;93876;140324;178523;164162;230518;159728;176128;176128;235831;275476;324675;361089;364304;333232;329991;312488;325768;211464;303628;392240;459655;470247;625366;696703;672676;639684;766254;827462;887222;879161;902937;886910;776875;833270;932064;815835;639465;748104.03;1015066;858795 -5104;'018;Southern Africa;1876;Paper and paperboard;5910;Export quantity;t;9400;5900;6700;29300;18700;31300;29700;40300;34200;22100;16300;30200;92000;78100;65900;123100;171600;176400;154400;137500;152800;183400;156100;181400;283000;362438;379091;326679;142581;119158;119158;338291;327797;566228;521200;466900;315100;552000;568900;573938;757294;636672;891620;941673;893739;747803;904341;956439;691572;634687.24;497343.06;509705;458464.03;501799.68;533877.48;564062.48;519178.48;557242.48;432985.48;505816;430825.27;357963;413567 -5104;'018;Southern Africa;1876;Paper and paperboard;5922;Export value;1000 USD;2528;2343;1928;4688;3562;5776;6135;8069;6412;4932;4136;5514;17740;18586;12747;25147;35856;56251;51591;67437;88247;104629;59483;82331;149400;192447;227532;216468;93760;79988;79988;194939;172008;331897;411425;382563;217272;231404;198323;201926;332835;312257;445581;500691;432792;495663;613890;638710;511856;507561;490679;462286;435555;472493;432483;440836;401917;439553;366585;353913;355108.94;373096;403448 -5104;'018;Southern Africa;2042;Graphic papers;5510;Production;t;53000;69000;77000;80000;100000;134000;140000;197000;225000;230000;235000;255000;312000;322000;287000;317000;372000;379000;402000;401000;484000;544000;645000;553000;581000;640000;600000;700000;745000;750000;745000;665000;750000;747000;741000;741000;755000;826000;834000;943000;964000;995000;1014000;1120000;885000;1051000;1131000;1066000;923000;957000;791000;795854;740293;718132;639643;585548;423184;475150;447821;322275;387172;339148;380384 -5104;'018;Southern Africa;2042;Graphic papers;5610;Import quantity;t;101000;84100;93500;105200;121000;88400;81800;86400;131200;183000;145100;57600;113900;159100;74300;79900;65900;60000;49300;92600;104300;96600;64800;73000;84100;86359;72493;126834;61202;69285;69285;116633;107437;128230;137800;142100;125100;130800;143699;146152;114879;115113;186020;179908;173819;317848;332727;325927;421625;374286;363105;397969;374793;342303;360441;347779;429501;442214;378839;261753;328824.84;366425;237453 -5104;'018;Southern Africa;2042;Graphic papers;5622;Import value;1000 USD;20559;17752;20377;19920;25583;22587;20326;20680;28365;41274;35678;11707;41209;84447;45050;42600;38078;40178;30172;73137;78195;58279;42417;49371;57078;95077;80516;146672;75582;88182;88182;110469;108800;134118;180027;179068;136082;146659;142444;145360;98187;105871;165032;184619;178235;299458;348114;358291;346361;398767;382187;420080;379232;339698;330039;311988;396517;452633;351333;219240;282244.2;404646;267611 -5104;'018;Southern Africa;2042;Graphic papers;5910;Export quantity;t;3700;3500;3300;3500;3100;4200;5300;4000;3800;3600;3600;15800;63100;40500;21300;69700;109000;123500;105000;84400;116800;163400;142100;163800;261000;340438;357091;304679;120581;97158;97158;151172;123946;252828;191600;137300;145100;197500;148100;153116;202589;223835;263563;335746;305711;355416;479433;555591;312439;265671.24;164267.06;150308;140261.03;157626.68;123753.48;131184.48;127050.48;187082.48;120317.48;88365;120032.41;88242;105740 -5104;'018;Southern Africa;2042;Graphic papers;5922;Export value;1000 USD;1292;1185;1128;1171;1088;1441;1840;1434;1475;1328;1350;3282;11846;9477;5366;13343;22293;44233;35082;37697;67725;91985;51013;72264;136400;179447;214532;203468;80760;66988;66988;84527;72408;111003;148626;119764;129481;64301;50025;53556;111764;123150;157450;233215;208892;241074;337080;380562;251908;233784;173214;159629;137316;152146;111159;106323;110663;149376;122370;80354;118071.98;112624;115165 -5104;'018;Southern Africa;1671;Newsprint;5510;Production;t;19000;33000;40000;40000;54000;82000;84000;136000;158000;160000;165000;164000;217000;200000;210000;212000;254000;218000;224000;224000;302000;362000;385000;293000;325000;335000;285000;350000;350000;355000;350000;330000;350000;367000;440000;440000;332000;347000;328000;333000;328000;338000;336000;336000;344000;343000;349000;347000;323000;331000;317000;299854;241722;223409;217860;208402;180727;113912;106786;57011;80467;75197;67588 -5104;'018;Southern Africa;1671;Newsprint;5610;Import quantity;t;59100;42800;42800;65400;50200;18800;7200;12800;41500;52500;33500;10700;9000;8600;300;;;;;;500;300;100;400;100;0;13;628;476;51;51;1700;1400;5503;4100;4100;3100;2400;1000;1317;759;1425;7281;10789;11020;22814;24410;4230;20516;25328;24091;13200;27207;23957;35530;16414;57377;64165;51114;32193;44874.85;47404;19995 -5104;'018;Southern Africa;1671;Newsprint;5622;Import value;1000 USD;8959;6352;6276;9505;7354;2734;1010;1614;5294;6976;4267;1386;1317;2429;124;;;;;;210;169;49;141;78;0;10;402;417;119;119;621;586;2564;3068;3068;1858;1724;498;860;561;962;3755;6273;6663;14759;15795;3087;14197;19174;20045;14616;19961;17190;22258;11770;34225;44830;31651;15052;22238.96;38646;16126 -5104;'018;Southern Africa;1671;Newsprint;5910;Export quantity;t;;;;100;0;;;;;;;11700;57400;29900;14500;63400;99000;96000;86000;70000;106000;153000;135000;147000;205000;223892;234599;186447;93408;75562;75562;118195;77450;228400;182300;128000;103000;193500;145600;145600;104913;129500;94500;72470;62396;62393;62393;48842;51356;60099;55987;44639;41780;37048;38303;49157;37068;83469;20626;14270;15345.38;15860;15224 -5104;'018;Southern Africa;1671;Newsprint;5922;Export value;1000 USD;;;;17;0;;;;;;;1813;9371;4872;2393;10584;17890;30481;25267;29623;55454;80200;43231;54156;76000;99786;121952;107575;55758;45014;45014;57946;36955;91006;138862;110000;100000;61149;47813;47813;51029;51464;43445;37734;34343;34340;34340;28283;31969;39305;42730;31992;28830;26817;24629;27206;20652;32245;13733;9336;10672.7;16824;19195 -5104;'018;Southern Africa;1674;Printing and writing papers;5510;Production;t;34000;36000;37000;40000;46000;52000;56000;61000;67000;70000;70000;91000;95000;122000;77000;105000;118000;161000;178000;177000;182000;182000;260000;260000;256000;305000;315000;350000;395000;395000;395000;335000;400000;380000;301000;301000;423000;479000;506000;610000;636000;657000;678000;784000;541000;708000;782000;719000;600000;626000;474000;496000;498571;494723;421783;377146;242457;361238;341035;265264;306705;263951;312796 -5104;'018;Southern Africa;1674;Printing and writing papers;5610;Import quantity;t;41900;41300;50700;39800;70800;69600;74600;73600;89700;130500;111600;46900;104900;150500;74000;79900;65900;60000;49300;92600;103800;96300;64700;72600;84000;86359;72480;126206;60726;69234;69234;114933;106037;122727;133700;138000;122000;128400;142699;144835;114120;113688;178739;169119;162799;295034;308317;321697;401109;348958;339014;384769;347586;318346;324911;331365;372124;378049;327725;229560;283949.98;319021;217458 -5104;'018;Southern Africa;1674;Printing and writing papers;5622;Import value;1000 USD;11600;11400;14101;10415;18229;19853;19316;19066;23071;34298;31411;10321;39892;82018;44926;42600;38078;40178;30172;73137;77985;58110;42368;49230;57000;95077;80506;146270;75165;88063;88063;109848;108214;131554;176959;176000;134224;144935;141946;144500;97626;104909;161277;178346;171572;284699;332319;355204;332164;379593;362142;405464;359271;322508;307781;300218;362292;407803;319682;204188;260005.24;366000;251485 -5104;'018;Southern Africa;1674;Printing and writing papers;5910;Export quantity;t;3700;3500;3300;3400;3100;4200;5300;4000;3800;3600;3600;4100;5700;10600;6800;6300;10000;27500;19000;14400;10800;10400;7100;16800;56000;116546;122492;118232;27173;21596;21596;32977;46496;24428;9300;9300;42100;4000;2500;7516;97676;94335;169063;263276;243315;293023;417040;506749;261083;205572.24;108280.06;105669;98481.03;120578.68;85450.48;82027.48;89982.48;103613.48;99691.48;74095;104687.03;72382;90516 -5104;'018;Southern Africa;1674;Printing and writing papers;5922;Export value;1000 USD;1292;1185;1128;1154;1088;1441;1840;1434;1475;1328;1350;1469;2475;4605;2973;2759;4403;13752;9815;8074;12271;11785;7782;18108;60400;79661;92580;95893;25002;21974;21974;26581;35453;19997;9764;9764;29481;3152;2212;5743;60735;71686;114005;195481;174549;206734;302740;352279;219939;194479;130484;127637;108486;125329;86530;79117;90011;117131;108637;71018;107399.29;95800;95970 -5104;'018;Southern Africa;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;92000;91000;91000;98000;105000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -5104;'018;Southern Africa;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1756;1951;2292;1618;1767;5156;13816;13889;72595;79436;81404;64566;78264;77277;100940;84648;84968;87460;66962;70204;134777;68128;40592;60344.92;74955;40709 -5104;'018;Southern Africa;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1526;1495;1826;1111;1380;3465;9411;9659;50696;65455;69736;56643;60816;64214;83545;68910;72149;74481;58017;66088;145625;57701;27443;46571.17;78457;41369 -5104;'018;Southern Africa;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3751;2345;2345;84501;59300;76520;106017;106019;63001;59519;45368;32412;36780;11187;7163;5050;11235.2;12611;12930;14185;16631;13846;10262;10397.69;10877;9006 -5104;'018;Southern Africa;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2792;1959;1959;49680;37076;51663;83781;83786;63401;66901;45595;28609;34035;13120;8341;6536;12960;13328;13161;15678;21574;21205;10732;13137.05;14948;12284 -5104;'018;Southern Africa;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;314000;339000;361000;392000;398000;405000;497000;468000;635000;709000;654000;552000;570000;428000;451000;457645;453797;380857;377146;242457;361238;341035;265264;306705;263951;312796 -5104;'018;Southern Africa;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;468;520;648;4111;11145;35519;31553;23278;22795;26403;20367;139134;49253;52708;66351;70839;53759;52914;83712;132019;75585;85064;55452;71550.61;71249;85831 -5104;'018;Southern Africa;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;849;831;1033;5203;12656;35315;47815;38398;43772;53828;45865;64736;74663;58184;83271;85027;65840;64845;75409;136413;91702;94760;63501;74059.23;99432;100896 -5104;'018;Southern Africa;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;11;5008;7972;20034;55608;120355;131546;223303;348721;451648;221775;149952.24;90118;93589;83963.88;95668.48;62252.48;60394.48;63567.48;64812.48;66217.48;49435;81093.53;49508;72476 -5104;'018;Southern Africa;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;18;3528;5097;21607;39329;88711;84408;136009;227999;295313;184066;149226;108178;112327;91563;94038;60522;53871;59190;76837;68629;45740;77818.85;62362;70267 -5104;'018;Southern Africa;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;165000;167000;157000;153000;168000;175000;182000;73000;73000;73000;65000;48000;56000;46000;45000;40926;40926;40926;0;0;0;0;0;0;0;0 -5104;'018;Southern Africa;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126176;140228;141895;108391;100776;138064;123750;125632;199644;202478;219926;197409;221441;209029;217478;192099;179619;184537;180691;169901;167687;174533;133516;152054.45;172817;90918 -5104;'018;Southern Africa;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;142560;139620;141641;91312;90873;122497;121120;123515;190231;213036;239603;210785;244114;239744;238648;205334;184519;168455;166792;159791;170476;167221;113244;139374.85;188111;109220 -5104;'018;Southern Africa;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;231;144;163;5203;15001;36935;36904;5750;6719;8800;9733;6896;18840;6975.06;4917;9467.15;13675;10587;8703;12230;22170;19628;14398;13195.82;11997;9034 -5104;'018;Southern Africa;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;335;235;256;5958;13003;23013;22989;6355;7324;7840;11371;7264;11218;9186;6969;10387;18331;12680;12085;15143;18720;18803;14546;16443.39;18490;13419 -5104;'018;Southern Africa;1675;Other paper and paperboard;5510;Production;t;146000;157000;207000;216000;284000;311000;335000;356000;355000;380000;390000;489000;489000;489000;489000;489000;607000;644000;718000;796000;806000;806000;875000;869000;908000;971000;1000000;1100000;1154000;1154000;1159000;1135000;960000;937000;1130000;1130000;1292000;1279000;1207000;1529000;1662000;1677000;1681000;1810000;1608000;1609000;1644000;1709000;1371000;1608000;1434000;1675632;1626890;1588357;1657539;1816442;1705876;1797064;1759312;1617965;1657389;1672825;1627377 -5104;'018;Southern Africa;1675;Other paper and paperboard;5610;Import quantity;t;81200;86300;89300;110200;99000;67300;106000;107400;108700;110400;98800;51300;68700;111000;73600;30600;25400;39300;40000;80200;58800;54200;54400;45600;88000;88000;88000;88000;88000;98000;98000;153947;153470;161798;189700;195200;166200;153101;150200;164334;126973;158857;210851;251030;254783;288061;296921;246789;252991;310901;342213;378538;407215;426374;427213;412001;386578;399399;406486;431026;417758.54;610991;482720 -5104;'018;Southern Africa;1675;Other paper and paperboard;5622;Import value;1000 USD;18549;19194;26102;28923;25275;19334;30677;29902;34106;34579;33035;14325;23921;70629;53302;29801;28666;41285;47366;76246;52068;46352;43553;44505;83246;83446;83646;83846;84146;87946;87946;125362;166676;190557;181062;185236;197150;183332;170044;180408;113277;197757;227208;275036;292012;325908;348589;314385;293323;367487;445275;467142;499929;563239;556871;464887;436753;479431;464502;420225;465859.83;610420;591184 -5104;'018;Southern Africa;1675;Other paper and paperboard;5910;Export quantity;t;5700;2400;3400;25800;15600;27100;24400;36300;30400;18500;12700;14400;28900;37600;44600;53400;62600;52900;49400;53100;36000;20000;14000;17600;22000;22000;22000;22000;22000;22000;22000;187119;203851;313400;329600;329600;170000;354500;420800;420822;554705;412837;628057;605927;588028;392387;424908;400848;379133;369016;333076;359397;318203;344173;410124;432878;392128;370160;312668;417451;310792.86;269721;307827 -5104;'018;Southern Africa;1675;Other paper and paperboard;5922;Export value;1000 USD;1236;1158;800;3517;2474;4335;4295;6635;4937;3604;2786;2232;5894;9109;7381;11804;13563;12018;16509;29740;20522;12644;8470;10067;13000;13000;13000;13000;13000;13000;13000;110412;99600;220894;262799;262799;87791;167103;148298;148370;221071;189107;288131;267476;223900;254589;276810;258148;259948;273777;317465;302657;298239;320347;321324;334513;291254;290177;244215;273559;237036.95;260472;288283 -5104;'018;Southern Africa;1676;Household and sanitary papers;5510;Production;t;;;;;11000;12000;13000;14000;15000;30000;35000;38000;38000;38000;38000;38000;51000;61000;72000;81000;81000;81000;86000;83000;91000;97000;100000;110000;115000;115000;120000;117000;99000;97000;107000;107000;145000;122000;145000;144000;160000;164000;162000;207000;203000;201000;205000;230000;234000;227000;229000;225777;231656;250406;223704;242972;238991;249209;258153;236747;276284;280677;291286 -5104;'018;Southern Africa;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;5800;6200;3600;6000;12900;14200;9300;4500;2600;3300;3800;3700;4900;5100;6200;7000;8000;8000;8000;8000;8000;8000;8000;9000;9000;10000;11000;11000;2000;2000;2200;4282;8987;5858;3779;5789;3601;5047;5203;4200;7200;11677;14650;17284;12383;12301;13595;22187;40180;19267;21345;15563;13767.29;16785;27211 -5104;'018;Southern Africa;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;2995;2341;1494;2225;5165;8834;7594;3343;2544;3547;5018;6639;7313;6893;7699;7787;6900;6900;6900;6900;6900;6900;6900;10000;11000;11000;11000;11000;1900;1322;1590;4313;4625;12980;3677;6368;5370;5533;5910;5714;9350;15925;19807;23750;19067;18737;19639;25855;44117;25676;23418;17489;16796.31;20725;35707 -5104;'018;Southern Africa;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;1500;800;1100;1200;900;1800;1800;2100;1300;1800;5800;16000;7700;4600;1600;2500;3000;3000;3000;3000;3000;3000;3000;30000;40000;8200;14000;14000;14000;16100;13200;13205;12004;12005;13946;12263;9624;6845;6803;1859;2555;3635;3360;3654;5906;9484;10813;10771;12933;15249;11385;16173;16006.52;14973;16326 -5104;'018;Southern Africa;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;594;304;394;400;440;909;901;1076;651;992;3249;12819;6530;3889;1336;2059;2100;2100;2100;2100;2100;2100;2100;20000;26000;8280;14089;14089;13000;12723;11630;11645;9215;8528;11213;10136;8310;3753;3705;2333;3381;4812;4638;5081;7053;11198;12261;11334;12261;14082;11457;14319;18416.2;18211;20756 -5104;'018;Southern Africa;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1157000;1062000;1385000;1491000;1502000;1472000;1561000;1364000;1370000;1404000;1447000;1097000;1353000;1114000;1352008;1283239;1230899;1331447;1433083;1328699;1412693;1432093;1244261;1203046;1311746;1336091 -5104;'018;Southern Africa;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;138101;116000;127481;104392;119459;175068;222538;224861;254961;264444;225623;232076;288546;313788;348493;376588;363023;362446;340126;331863;367818;374842;403031;389375.63;579984;443103 -5104;'018;Southern Africa;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;151218;114385;121398;95367;117298;168346;213812;227540;259376;282486;278462;253376;324764;387801;398120;432347;429924;422529;351332;358223;418042;403331;372219;415365.46;552573;521202 -5104;'018;Southern Africa;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;327000;391000;391008;541900;394716;601107;586661;573403;381740;414303;398019;375073;362914;327361;353376;309269;331691;395841;420116;377072;352548;299016;398766;291577.11;252256;289354 -5104;'018;Southern Africa;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;138899;108999;109025;211370;174295;266472;251151;211224;243133;265382;252233;249310;263085;305642;290808;282797;301902;302631;316470;271948;266974;224109;250987;210857.59;234053;253245 -5104;'018;Southern Africa;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;204000;228000;317000;336000;335000;345000;350000;450000;450000;450000;450000;450000;537000;553000;607000;687000;697000;697000;772000;774000;810000;866000;892000;981000;1029000;1035000;1035000;988000;811000;710000;923000;923000;1147000;;;;;;;;;;;;;;;;;;;;;;;;;; -5104;'018;Southern Africa;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;;50300;60400;47800;10500;18300;11400;5700;5600;4400;17200;19500;54100;42600;41600;37900;25900;49000;49000;49000;49000;49000;63000;63000;114547;114070;117498;137200;137200;119000;;;;;;;;;;;;;;;;;;;;;;;;;; -5104;'018;Southern Africa;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;;;12501;13346;11729;2003;4273;8208;5385;4767;4091;13599;14235;33852;27635;21805;20194;17333;32800;32900;33000;33100;33200;43000;43000;72316;111630;128250;115128;115128;146278;;;;;;;;;;;;;;;;;;;;;;;;;; -5104;'018;Southern Africa;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;;20400;10800;9700;12400;26200;32000;37000;42300;51400;41100;42800;32000;21700;12000;8900;11000;15000;15000;15000;15000;15000;15000;15000;117119;113851;167200;193600;193600;100000;;;;;;;;;;;;;;;;;;;;;;;;;; -5104;'018;Southern Africa;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;;2423;2263;1808;1559;4980;7200;4980;8325;10237;8225;12816;12794;8661;5991;4431;4940;7800;7800;7800;7800;7800;7800;7800;57412;32600;100715;141008;141008;34791;;;;;;;;;;;;;;;;;;;;;;;;;; -5104;'018;Southern Africa;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;913000;859000;963000;1073000;1073000;1104000;1188000;1171000;1188000;1221000;1250000;915000;1152000;1010000;1233000;1236699;1193191;1291986;1353812;1247571;1364518;1334692;1237631;1189646;1295725;1237540 -5104;'018;Southern Africa;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21804;18550;24588;20379;12081;21279;41638;20452;31924;19345;18967;46596;71283;83050;73919;79359;56229;54808;45473;54444;68937;74668;84781;91182.83;116503;134013 -5104;'018;Southern Africa;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18025;12238;16113;12734;8806;14783;22765;15141;19545;14405;13944;25852;45265;75026;68456;63706;43211;39828;32545;41909;58307;57061;52056;68092.23;103630;96666 -5104;'018;Southern Africa;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;141652;169376;169379;234710;223307;422037;400006;500004;340001;376400;368890;329543;310077;285967;311739;269980;291660;347933;386266;339715;324488;274609;364273;251767.1;209815;231386 -5104;'018;Southern Africa;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52283;41029;41031;79558;85272;174160;154886;161506;197001;220000;211709;200547;205133;247960;236145;223449;236076;233201;253773;221342;217990;178834;208679;158715.8;171930;181367 -5104;'018;Southern Africa;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;113000;119000;119000;102000;96000;105000;102000;96000;110000;93000;104000;28000;29087;31129;31984;32856;31242;34178;37024;86632;0;0;0;0 -5104;'018;Southern Africa;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90186;75571;75890;60520;61622;83413;103422;118616;134496;155562;131997;117762;137746;153331;181114;191487;184541;183006;180587;156835;177131;185146;190760;177227.48;325358;193759 -5104;'018;Southern Africa;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110952;85090;85827;65229;63863;90985;108291;131269;152694;179437;176289;157535;183773;215040;226690;257974;261267;256721;216450;205607;231713;227889;215938;242408.84;294636;303687 -5104;'018;Southern Africa;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;173700;207696;207697;287801;152003;152047;152111;35501;20036;15701;11099;13276;23770;15986;16961;24286;23845;26942;22562;17236;16149;14493;12302;16182.63;18359;16061 -5104;'018;Southern Africa;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79604;62468;62469;121103;77561;77654;77773;17980;22024;24461;17248;22007;26611;25542;25056;35611;41247;42575;37885;34462;33540;32984;29190;35797.45;41232;42304 -5104;'018;Southern Africa;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;98000;88000;88000;66000;75000;88000;80000;87000;87000;89000;97000;76000;89921;15411;5724;6605;48029;46950;11151;10769;6630;13400;16021;98551 -5104;'018;Southern Africa;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19208;16095;21218;18893;41554;65113;70532;79097;80932;81898;68280;63510;75585;74148;89413;101970;116771;119046;109879;112326;111485;108074;118086;114289.74;127731;105706 -5104;'018;Southern Africa;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18264;14007;16402;15095;40356;57710;74612;73877;78825;80270;80849;65775;91836;95329;99411;107560;120311;120787;98393;105030;120743;113940;98728;100888.72;146364;114770 -5104;'018;Southern Africa;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11648;13928;13930;19364;19406;27023;34544;37898;21703;22202;17937;32177;28984;25262;24454;14952;15827;20904;11177;20053;11864;9864;22154;23591.39;23952;41871 -5104;'018;Southern Africa;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7012;5502;5514;10695;11462;14658;18492;31738;24108;20921;23092;26626;31267;31881;29373;23677;24254;26797;24710;15961;15397;12225;13080;16284.34;20749;29529 -5104;'018;Southern Africa;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;244000;203000;211000;211000;222000;200000;202000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -5104;'018;Southern Africa;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6903;5784;5785;4600;4202;5263;6946;6696;7609;7639;6379;4208;3932;3259;4047;3772;5482;5586;4187;8258;10265;6954;9404;6675.59;10392;9625 -5104;'018;Southern Africa;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3977;3050;3056;2309;4273;4868;8144;7253;8312;8374;7380;4214;3890;2406;3563;3107;5135;5193;3944;5677;7279;4441;5497;3975.66;7943;6079 -5104;'018;Southern Africa;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;25;0;0;0;0;0;0;93;77;83;146;222;51;359;62;111;68;47;50;37;36;130;36 -5104;'018;Southern Africa;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;14;0;0;0;0;0;0;184;130;74;259;234;60;325;58;102;183;47;66;38;60;142;45 -5104;'018;Southern Africa;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;69000;71000;5000;6000;5000;5000;5000;1000;1000;1000;1000;1000;19000;30000;39000;28000;28000;28000;17000;12000;7000;8000;8000;9000;10000;4000;4000;30000;50000;130000;100000;100000;0;0;0;0;11000;11000;47000;42000;41000;38000;35000;32000;40000;28000;91000;97847;111995;107052;102388;140387;138186;135162;69066;136957;178059;80402;0 -5104;'018;Southern Africa;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;52300;43500;47100;34500;37200;85200;58400;20200;18000;18400;16200;21900;10800;7000;9800;9900;24000;24000;24000;24000;24000;20000;20000;23400;23400;24000;30000;30000;34000;13000;32000;32571;13594;33540;32004;22703;26321;28053;27274;16966;13715;10678;13775;12761;18244;51050;51172;49688;14535;12314;10299;12432;14615.62;14222;12406 -5104;'018;Southern Africa;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;18294;18576;19496;9781;14167;53413;40108;21434;21598;23706;27563;35195;16560;17094;15100;14638;35500;35600;35700;35800;36000;30000;30000;35000;36000;36000;40000;40000;35000;30792;54069;54697;13285;67479;55185;54856;59102;60999;60193;30209;30597;26798;37667;45272;48515;114578;114703;87700;34413;35713;37753;30517;33698.06;37122;34275 -5104;'018;Southern Africa;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;8500;6900;1900;800;1800;3800;5800;9000;9900;10000;800;5100;6600;3400;3500;4100;4000;4000;4000;4000;4000;4000;4000;40000;50000;138000;122000;122000;56000;11400;16600;16609;801;6116;13004;7003;5001;3802;3802;970;1505;2467;2355;2367;3028;2998;3470;1991;2123;2363;2267;2512;3209.23;2492;2147 -5104;'018;Southern Africa;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;1920;1037;584;273;474;1000;1500;2403;2675;2801;444;4127;5331;2764;2703;3068;3100;3100;3100;3100;3100;3100;3100;33000;41000;111899;107702;107702;40000;15481;27669;27700;486;6284;10446;6189;4366;7703;7723;3582;7257;5880;7185;6768;8389;7247;6432;6709;7045;9121;8649;8253;7763.16;8208;14282 -5104;'018;Southern Africa;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;362836;403168;375995;289047;374424;327915;298239 -5104;'018;Southern Africa;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;222062;228393;202468;162727;215384;212224;192121 -5104;'018;Southern Africa;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23289;20985;15738;11597;15303;17645;15053 -5104;'018;Southern Africa;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7509;6810;6874;5417;7485;7036;7609 -5104;'018;Southern Africa;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6081;5023;4958;4116;4975;4767;4645 -5104;'018;Southern Africa;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4363;3967;3823;3407;4182;4173;4732 -5104;'018;Southern Africa;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17208;15962;10780;7481;10328;12878;10408 -5104;'018;Southern Africa;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3146;2843;3051;2010;3303;2863;2877 -5104;'018;Southern Africa;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33055;37494;34880;32107;39020;34576;37288 -5104;'018;Southern Africa;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23919;27802;20943;20289;26601;27895;26487 -5104;'018;Southern Africa;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13257;14133;12467;9723;16943;13241;10676 -5104;'018;Southern Africa;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8016;8402;8458;7048;12319;7884;7713 -5104;'018;Southern Africa;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53056;57066;45120;35506;48465;45026;42874 -5104;'018;Southern Africa;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57613;62775;59719;46266;63090;52420;45122 -5104;'018;Southern Africa;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;179 -5104;'018;Southern Africa;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;111 -5104;'018;Southern Africa;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;88 -5104;'018;Southern Africa;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;110 -5104;'018;Southern Africa;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;45 -5104;'018;Southern Africa;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;69 -5104;'018;Southern Africa;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117;81 -5104;'018;Southern Africa;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;152;91 -5104;'018;Southern Africa;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;35 -5104;'018;Southern Africa;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;58 -5104;'018;Southern Africa;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;57 -5104;'018;Southern Africa;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97;113 -5104;'018;Southern Africa;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;219218;249037;243225;182114;233487;196985;173422 -5104;'018;Southern Africa;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111780;109241;93468;72208;89122;99615;87921 -5104;'018;Southern Africa;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;284;1709;1003;1245;433;1231;753 -5104;'018;Southern Africa;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1398;2263;1482;401;769;838;627 -5104;'018;Southern Africa;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20677;22744;23562;16755;20773;19211;18173 -5104;'018;Southern Africa;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11827;11100;11524;11098;15998;16536;16642 -5104;'018;Southern Africa;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;402065;456822;434440;358978;430357;477465;463617 -5104;'018;Southern Africa;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;247500;277831;239562;202994;247120;287242;292461 -5104;'018;Southern Africa;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3612;4439;3375;2519;2965;4333;3600 -5104;'018;Southern Africa;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;180;346;215;370;1043;1257;542 -5104;'018;Southern Africa;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115818;129405;121227;102536;120934;137111;116759 -5104;'018;Southern Africa;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10548;10406;8008;7364;8474;12264;10935 -5104;'018;Southern Africa;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54462;56387;56272;53680;64144;56016;57676 -5104;'018;Southern Africa;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47971;47281;48105;48172;53907;59948;71669 -5104;'018;Southern Africa;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94258;120962;113358;102574;120353;144361;158953 -5104;'018;Southern Africa;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101369;111996;101250;84787;107899;125178;120933 -5104;'018;Southern Africa;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;133915;145629;140208;97669;121961;135644;126629 -5104;'018;Southern Africa;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87432;107802;81984;62301;75797;88595;88382 -5105;'011;Western Africa;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1873436;1839804;1848138;2193490;2129093.21;2604942.21;2489287.61 -5105;'011;Western Africa;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1379851.9;1343913;1113205;825855;1010129.65;849056.23;788729.59 -5105;'011;Western Africa;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;11589;13546;16309;17076;24967;26540;25515;24690;30596;47039;51691;48264;79041;141405;175751;222537;242023;265387;250731;301764;507132;367954;359283;227840;233221;173186;169105;253538;169420;203924;194038;163479;160195;174417;153168;153858;205748;255791;334173;312000;307107;293410;361821;453697;456649;469419;602465;854320;883014.2;1027765.3;1029747.1;844240.24;1017136.24;1091278.79;883844.54;904896;1143332;1233789;1197990;1440645;1340224.21;1700702.21;1635516.61 -5105;'011;Western Africa;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;99198;93219;121349;142827;132665;128066;133512;154684;198194;166785;172126;224851;449740;397539;303365;432908;459275;456743;510417;722273;436033;359691;344068;321561;294913;352168;376349;487578;406529;691698;474735;614885;597233;704071;564010;567497;432864;453236;474617;623415;593063;711935;623821;736056;832704;638321;765077;948673;586536;751667.8;875019.9;1025621.89;1073839.76;1519380.2;1214790;1130009;1252262;1181972;970030;681866;806538.65;671767.23;614260.59 -5105;'011;Western Africa;1861;Roundwood;5516;Production;m3;95423424;95618364;101760044;98344189;99639525;101274360;102281090;103500431;106015695;106435236;106958431;109051402;111979703;109958984;112070535;113819056;115895319;118186752;119808184;122216098;124916828;126621028;130400932;133069939;133579866;135914129;138489493;139576234;141342030;144080876;143335684;146880874;152857620;158182436;164914445;167487207;167459761;169729038;172388835;175990896;177499634;178563865;180130846;182427644;186755020;189869460;192664667;196024028;198558211;202910835;205606609;208554286;211553737;215297204;218187924;220634121;222901345;225589482;226441200;229940909;233617260;236916462;241754745 -5105;'011;Western Africa;1861;Roundwood;5616;Import quantity;m3;24000;23900;23300;8600;6200;9500;16200;24500;26500;33300;33500;9400;26400;28400;29100;29000;38200;35000;56600;53400;53200;50300;30300;34600;26500;20700;23800;22800;26000;373;649;2619;18768;73385;25030;28931;29118;18752;144006;102730;114963;101469;101898;60811;61070;43002;37644;46276;33731;36675;44258;40786;72778;191584;56934;29029;32550;59595;61542;60479;53024;40890.09;1042812 -5105;'011;Western Africa;1861;Roundwood;5622;Import value;1000 USD;556;555;623;89;80;355;559;913;965;1123;1135;483;1476;1805;2076;2234;3501;3151;5242;5628;5640;5200;3506;4749;3607;2324;3085;2878;2516;71;98;575;2430;9139;3356;3593;3957;2913;31185;20864;23140;17992;17864;10824;10951;7571;5745;10305;6725;7650.3;9278;9182;20437;19741;12501;4963;9041;18108;20149;19440;18829;20071.39;23233 -5105;'011;Western Africa;1861;Roundwood;5916;Export quantity;m3;2558300;2360100;2818200;3340400;3067000;2881900;3031400;3543800;4525300;3345600;3901800;4329000;5045400;3982000;3171700;4160000;4049900;3332600;3796100;3644700;2578400;2674600;2602300;2530300;1849400;1614786;1215328;1588745;1465247;1212757;1040073;1068663;1014529;1087197;544827;466645;290326;249445;371787;1065456;1005538;1164903;676920;614873;652862;630633;781022;603872;496926;832827;978275;1274612;1332750;2143719;2657082;2630911;1541648;1526003;1012680;807550;961419.1;605324;521755 -5105;'011;Western Africa;1861;Roundwood;5922;Export value;1000 USD;71878;62328;91815;105724;93476;88524;95068;112215;155232;116917;131685;175737;347358;297220;225806;340725;357528;343596;395183;587356;340981;272372;239391;219669;180417;195556;158031;208665;168074;285596;207000;179196;139024;203464;92592;76495;39125;39525;45090;244790;260662;359015;216075;163826;179897;150370;216165;254486;178369;296532.4;367927;510622;625782;1059066.2;798797;736468;836815;722840;501622;346966;409181;236664;171377 -5105;'011;Western Africa;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;50000;50000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000 -5105;'011;Western Africa;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22708;45473;52528;56115;45967;32048.09;31356 -5105;'011;Western Africa;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5650;12822;17080;18320;14840;17007.39;17138 -5105;'011;Western Africa;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4436;5857;3997;19720;7892;15930;13582 -5105;'011;Western Africa;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1514;1373;1656;4231;2831;1628;1725 -5105;'011;Western Africa;1863;Roundwood, non-coniferous;5516;Production;m3;95423424;95618364;101760044;98344189;99639525;101274360;102281090;103500431;106015695;106435236;106958431;109051402;111979703;109958984;112070535;113819056;115895319;118186752;119808184;122216098;124916828;126621028;130400932;133069939;133579866;135914129;138489493;139576234;141342030;144080876;143335684;146880874;152857620;158182436;164914445;167487207;167459761;169729038;172388835;175990896;177499634;178563865;180130846;182427644;186755020;189869460;192664667;196024028;198558211;202860835;205556609;208503286;211502737;215246204;218136924;220583121;222850345;225538482;226390200;229889909;233566260;236865462;241703745 -5105;'011;Western Africa;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9842;14122;9014;4364;7057;8842;1011456 -5105;'011;Western Africa;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3391;5286;3069;1120;3989;3064;6095 -5105;'011;Western Africa;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1537212;1520146;1008683;787830;953527.1;589394;508173 -5105;'011;Western Africa;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;835301;721467;499966;342735;406350;235036;169652 -5105;'011;Western Africa;1864;Wood fuel;5516;Production;m3;88027424;88073364;88979044;89731189;90469525;91885360;92697090;93517431;94363695;95250236;95431431;96792402;97768703;97496984;99178535;99266056;100873319;102948752;103732184;105289098;107894328;110315528;114467832;116960539;117535866;119945118;122620125;123986075;125374325;126674189;126852493;130314379;135768929;140782307;148487762;151066664;150232716;151904262;154331712;156999185;159088984;159817536;162153921;165025704;169804782;172566760;175381930;178601918;181228101;183930725;186494399;189128276;191833727;194612194;197465187;199839585;202274249;204770174;206041840;209950015;212670850;215418052;220544335 -5105;'011;Western Africa;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120;120;0;0;375;56;56;56;56;56;243;308;308;253;195;702;650;556;755;1409;4661;12919;12743;12329;0;0;0;0;1;105.09;299 -5105;'011;Western Africa;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;0;0;16;17;17;17;17;17;27;30;30;23;26;102;106;92;136;269;723;988;931;974;1;0;1;1;1;59.39;118 -5105;'011;Western Africa;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;266;266;1060;1060;1060;1093;1202;1185;1185;1185;1410;4400;18666;9916;8456;23185;21245;31630;8047;5711;561;6734;11827;2784;3728.1;1201;1432 -5105;'011;Western Africa;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;27;27;28;28;28;30;59;69;69;69;144;364;4056;1276;1105;1224;1924;3469;1713;690;246;1918;1640;1411;1566;124;449 -5105;'011;Western Africa;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 -5105;'011;Western Africa;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;105.09;131 -5105;'011;Western Africa;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;58.39;44 -5105;'011;Western Africa;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;159;159;159;159;951 -5105;'011;Western Africa;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;13;13;13;360 -5105;'011;Western Africa;1628;Wood fuel, non-coniferous;5516;Production;m3;88027424;88073364;88979044;89731189;90469525;91885360;92697090;93517431;94363695;95250236;95431431;96792402;97768703;97496984;99178535;99266056;100873319;102948752;103732184;105289098;107894328;110315528;114467832;116960539;117535866;119945118;122620125;123986075;125374325;126674189;126852493;130314379;135768929;140782307;148487762;151066664;150232716;151904262;154331712;156999185;159088984;159817536;162153921;165025704;169804782;172566760;175381930;178601918;181228101;183930725;186494399;189128276;191833727;194612194;197465187;199839585;202274249;204770174;206041840;209950015;212670850;215418052;220544335 -5105;'011;Western Africa;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;168 -5105;'011;Western Africa;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;1;1;1;1;74 -5105;'011;Western Africa;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;561;6734;11668;2625;3569.1;1042;481 -5105;'011;Western Africa;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;246;1918;1628;1398;1553;111;89 -5105;'011;Western Africa;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120;120;0;0;375;56;56;56;56;56;243;308;308;253;195;702;650;556;755;1409;4661;12919;12743;12329;;;;;;; -5105;'011;Western Africa;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;0;0;16;17;17;17;17;17;27;30;30;23;26;102;106;92;136;269;723;988;931;974;;;;;;; -5105;'011;Western Africa;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;266;266;1060;1060;1060;1093;1202;1185;1185;1185;1410;4400;18666;9916;8456;23185;21245;31630;8047;5711;;;;;;; -5105;'011;Western Africa;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;27;27;28;28;28;30;59;69;69;69;144;364;4056;1276;1105;1224;1924;3469;1713;690;;;;;;; -5105;'011;Western Africa;1865;Industrial roundwood;5516;Production;m3;7396000;7545000;12781000;8613000;9170000;9389000;9584000;9983000;11652000;11185000;11527000;12259000;14211000;12462000;12892000;14553000;15022000;15238000;16076000;16927000;17022500;16305500;15933100;16109400;16044000;15969011;15869368;15590159;15967705;17406687;16483191;16566495;17088691;17400129;16426683;16420543;17227045;17824776;18057123;18991711;18410650;18746329;17976925;17401940;16950238;17302700;17282737;17422110;17330110;18980110;19112210;19426010;19720010;20685010;20722737;20794536;20627096;20819308;20399360;19990894;20946410;21498410;21210410 -5105;'011;Western Africa;1865;Industrial roundwood;5616;Import quantity;m3;24000;23900;23300;8600;6200;9500;16200;24500;26500;33300;33500;9400;26400;28400;29100;29000;38200;35000;56600;53400;53200;50300;30300;34600;26500;20700;23800;22800;26000;373;649;2619;18648;73265;25030;28931;28743;18696;143950;102674;114907;101413;101655;60503;60762;42749;37449;45574;33081;36119;43503;39377;68117;178665;44191;16700;32550;59595;61542;60479;53023;40785;1042513 -5105;'011;Western Africa;1865;Industrial roundwood;5622;Import value;1000 USD;556;555;623;89;80;355;559;913;965;1123;1135;483;1476;1805;2076;2234;3501;3151;5242;5628;5640;5200;3506;4749;3607;2324;3085;2878;2516;71;98;575;2425;9134;3356;3593;3941;2896;31168;20847;23123;17975;17837;10794;10921;7548;5719;10203;6619;7558.3;9142;8913;19714;18753;11570;3989;9040;18108;20148;19439;18828;20012;23115 -5105;'011;Western Africa;1865;Industrial roundwood;5916;Export quantity;m3;2558300;2360100;2818200;3340400;3067000;2881900;3031400;3543800;4525300;3345600;3901800;4329000;5045400;3982000;3171700;4160000;4049900;3332600;3796100;3644700;2578400;2674600;2602300;2530300;1849400;1614786;1215328;1588745;1465247;1212757;1040073;1068663;1014529;1087197;544827;466645;290060;249179;370727;1064396;1004478;1163810;675718;613688;651677;629448;779612;599472;478260;822911;969819;1251427;1311505;2112089;2649035;2625200;1541087;1519269;1000853;804766;957691;604123;520323 -5105;'011;Western Africa;1865;Industrial roundwood;5922;Export value;1000 USD;71878;62328;91815;105724;93476;88524;95068;112215;155232;116917;131685;175737;347358;297220;225806;340725;357528;343596;395183;587356;340981;272372;239391;219669;180417;195556;158031;208665;168074;285596;207000;179196;139024;203464;92592;76495;39098;39498;45062;244762;260634;358985;216016;163757;179828;150301;216021;254122;174313;295256.4;366822;509398;623858;1055597.2;797084;735778;836569;720922;499982;345555;407615;236540;170928 -5105;'011;Western Africa;1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50000;50000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000 -5105;'011;Western Africa;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;197;353;1622;1593;1515;1480;1281;1988;2001;9171;9376;9797;7655;7872;9748;9971;9414;12900;29034;20479;12841;6567;11884;17175;154736;11728;7124;22708;45473;52528;56115;45966;31943;31225 -5105;'011;Western Africa;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;41;309;244;288;291;195;305;312;1163;1208;1364;1261;1146;1255;1301;1241;1499;4392;1615;1708;579;1260;2748;14162;3154;1277;5650;12822;17080;18320;14840;16949;17094 -5105;'011;Western Africa;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1351;2356;2384;877;1011;1170;1751;1751;1751;2351;2351;2351;556;675;556;623;1123;2475;2655;2559;5195;1662;4021;7957;4696;2765;1681;4436;5857;3838;19561;7733;15771;12631 -5105;'011;Western Africa;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;336;311;314;143;160;179;572;572;572;203;203;203;91;115;91;183;337;291;328;250;847;467;694;1171;568.2;543;166;1514;1373;1644;4218;2818;1615;1365 -5105;'011;Western Africa;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;197;353;1622;1593;1515;1480;1281;1988;2001;9171;9376;9797;7655;7872;9748;9971;9414;12900;29034;20479;12841;6567;11884;17175;154736;11728;7124;22708;45473;52528;56115;45966;31943;31225 -5105;'011;Western Africa;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;41;309;244;288;291;195;305;312;1163;1208;1364;1261;1146;1255;1301;1241;1499;4392;1615;1708;579;1260;2748;14162;3154;1277;5650;12822;17080;18320;14840;16949;17094 -5105;'011;Western Africa;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1351;2356;2384;877;1011;1170;1751;1751;1751;2351;2351;2351;556;675;556;623;1123;2475;2655;2559;5195;1662;4021;7957;4696;2765;1681;4436;5857;3838;19561;7733;15771;12631 -5105;'011;Western Africa;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;336;311;314;143;160;179;572;572;572;203;203;203;91;115;91;183;337;291;328;250;847;467;694;1171;568.2;543;166;1514;1373;1644;4218;2818;1615;1365 -5105;'011;Western Africa;1867;Industrial roundwood, non-coniferous;5516;Production;m3;7396000;7545000;12781000;8613000;9170000;9389000;9584000;9983000;11652000;11185000;11527000;12259000;14211000;12462000;12892000;14553000;15022000;15238000;16076000;16927000;17022500;16305500;15933100;16109400;16044000;15969011;15869368;15590159;15967705;17406687;16483191;16566495;17088691;17400129;16426683;16420543;17227045;17824776;18057123;18991711;18410650;18746329;17976925;17401940;16950238;17302700;17282737;17422110;17330110;18930110;19062210;19375010;19669010;20634010;20671737;20743536;20576096;20768308;20348360;19939894;20895410;21447410;21159410 -5105;'011;Western Africa;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;176;296;997;17055;71750;23550;27650;26755;16695;134779;93298;105110;93758;93783;50755;50791;33335;24549;16540;12602;23278;36936;27493;50942;23929;32463;9576;9842;14122;9014;4364;7057;8842;1011288 -5105;'011;Western Africa;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;57;266;2181;8846;3065;3398;3636;2584;30005;19639;21759;16714;16691;9539;9620;6307;4220;5811;5004;5850.3;8563;7653;16966;4591;8416;2712;3390;5286;3068;1119;3988;3063;6021 -5105;'011;Western Africa;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1211406;1037717;1066279;1013652;1086186;543657;464894;288309;247428;368376;1062045;1002127;1163254;675043;613132;651054;628325;777137;596817;475701;817716;968157;1247406;1303548;2107393;2646270;2623519;1536651;1513412;997015;785205;949958;588352;507692 -5105;'011;Western Africa;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;285260;206689;178882;138881;203304;92413;75923;38526;38926;44859;244559;260431;358894;215901;163666;179645;149964;215730;253794;174063;294409.4;366355;508704;622687;1055029;796541;735612;835055;719549;498338;341337;404797;234925;169563 -5105;'011;Western Africa;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16300;66600;18400;24200;24588;15888;134488;93088;93300;82200;81289;33129;33165;18169;8892;9021;5532;2583;2671;4811;12464;2892;1630;6597;5203;6242;5733;58;806;1616;662349 -5105;'011;Western Africa;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2004;8051;2270;3032;3445;2472;29931;19564;19577;14629;14559;6954;7035;4032;1427;3162;1629;1346.2;1173;3299;7191;1607;448;1946;2002;2944;2281;50;395;681;4751 -5105;'011;Western Africa;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1211406;1037717;1066279;1013652;1086186;528324;449561;278739;242802;364076;1054085;994167;1155260;661975;584847;622935;602100;750986;588589;467664;730017;753682;1225256;1294455;2093707;2646270;2623519;1536651;1513412;997015;785178;949958;561167;507692 -5105;'011;Western Africa;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;285260;206689;178882;138881;203304;88323;71833;36494;37923;43729;243040;258912;357369;213327;161746;177819;148244;214044;251587;171809;268750;298357;501447;621417;1050894;796541;735612;835055;719549;498338;341323;404797;232367;169563 -5105;'011;Western Africa;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;176;296;997;755;5150;5150;3450;2167;807;291;210;11810;11558;12494;17626;17626;15166;15657;7519;7070;20695;34265;22682;38478;21037;30833;2979;4639;7880;3281;4306;6251;7226;348939 -5105;'011;Western Africa;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;57;266;177;795;795;366;191;112;74;75;2182;2085;2132;2585;2585;2275;2793;2649;3375;4504.1;7390;4354;9775;2984;7968;766;1388;2342;787;1069;3593;2382;1270 -5105;'011;Western Africa;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15333;15333;9570;4626;4300;7960;7960;7994;13068;28285;28119;26225;26151;8228;8037;87699;214475;22150;9093;13686;0;0;0;0;0;27;0;27185;0 -5105;'011;Western Africa;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4090;4090;2032;1003;1130;1519;1519;1525;2574;1920;1826;1720;1686;2207;2254;25659.4;67998;7257;1270;4135;0;0;0;0;0;14;0;2558;0 -5105;'011;Western Africa;1868;Sawlogs and veneer logs;5516;Production;m3;4395000;4422000;9618000;5282000;5793000;5680000;5787000;6079000;7600000;7010000;7368000;7861000;9690000;7926000;8265000;9803000;10151000;10226000;10931000;11576000;11595500;10800000;10345500;10434800;10311400;10147411;10001768;9677559;10007105;11393087;10386591;10392895;10794991;11090429;9989983;9879843;10581345;11032076;11241423;12011011;12409950;12171629;11376225;10782240;10341538;10694000;10674037;10813410;10721410;11671410;11853510;11990510;12272510;13133510;13515510;13494810;13327370;13581487;13157720;12749254;13704770;14256770;13968770 -5105;'011;Western Africa;1868;Sawlogs and veneer logs;5616;Import quantity;m3;24000;23900;23300;8600;6200;9500;16200;24500;26500;33300;33500;9400;26400;28400;29100;29000;38200;35000;56600;53400;53200;50300;30300;34600;26500;20700;23800;22800;26000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5105;'011;Western Africa;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;556;555;623;89;80;355;559;913;965;1123;1135;483;1476;1805;2076;2234;3501;3151;5242;5628;5640;5200;3506;4749;3607;2324;3085;2878;2516;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5105;'011;Western Africa;1868;Sawlogs and veneer logs;5916;Export quantity;m3;2558300;2360100;2818200;3340400;3067000;2881900;3031400;3543800;4525300;3345600;3901800;4329000;5045400;3982000;3171700;4160000;4049900;3332600;3796100;3644700;2578400;2674600;2602300;2530300;1849400;1614786;1215328;1588745;1465247;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5105;'011;Western Africa;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;71878;62328;91815;105724;93476;88524;95068;112215;155232;116917;131685;175737;347358;297220;225806;340725;357528;343596;395183;587356;340981;272372;239391;219669;180417;195556;158031;208665;168074;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5105;'011;Western Africa;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5105;'011;Western Africa;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5105;'011;Western Africa;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;4395000;4422000;9618000;5282000;5793000;5680000;5787000;6079000;7600000;7010000;7368000;7861000;9690000;7926000;8265000;9803000;10151000;10226000;10931000;11576000;11595500;10800000;10345500;10434800;10311400;10147411;10001768;9677559;10007105;11393087;10386591;10392895;10794991;11090429;9989983;9879843;10581345;11032076;11241423;12011011;12409950;12171629;11376225;10782240;10341538;10694000;10674037;10813410;10721410;11671410;11853510;11990510;12272510;13133510;13515510;13494810;13327370;13581487;13157720;12749254;13704770;14256770;13968770 -5105;'011;Western Africa;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;24000;23900;23300;8600;6200;9500;16200;24500;26500;33300;33500;9400;26400;28400;29100;29000;38200;35000;56600;53400;53200;50300;30300;34600;26500;20700;23800;22800;26000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5105;'011;Western Africa;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;556;555;623;89;80;355;559;913;965;1123;1135;483;1476;1805;2076;2234;3501;3151;5242;5628;5640;5200;3506;4749;3607;2324;3085;2878;2516;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5105;'011;Western Africa;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;2558300;2360100;2818200;3340400;3067000;2881900;3031400;3543800;4525300;3345600;3901800;4329000;5045400;3982000;3171700;4160000;4049900;3332600;3796100;3644700;2578400;2674600;2602300;2530300;1849400;1614786;1215328;1588745;1465247;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5105;'011;Western Africa;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;71878;62328;91815;105724;93476;88524;95068;112215;155232;116917;131685;175737;347358;297220;225806;340725;357528;343596;395183;587356;340981;272372;239391;219669;180417;195556;158031;208665;168074;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5105;'011;Western Africa;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000 -5105;'011;Western Africa;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000 -5105;'011;Western Africa;1871;Other industrial roundwood;5516;Production;m3;3001000;3123000;3163000;3331000;3377000;3709000;3797000;3904000;4052000;4175000;4159000;4398000;4521000;4536000;4627000;4750000;4871000;5012000;5145000;5351000;5427000;5505500;5587600;5674600;5732600;5821600;5867600;5912600;5960600;6013600;6096600;6173600;6293700;6309700;6436700;6540700;6645700;6753700;6776700;6941700;5961700;6535700;6561700;6580700;6569700;6569700;6569700;6569700;6569700;7269700;7219700;7396500;7408500;7529500;7185227;7277726;7277726;7215821;7219640;7219640;7219640;7219640;7219640 -5105;'011;Western Africa;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50000;50000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000;51000 -5105;'011;Western Africa;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;3001000;3123000;3163000;3331000;3377000;3709000;3797000;3904000;4052000;4175000;4159000;4398000;4521000;4536000;4627000;4750000;4871000;5012000;5145000;5351000;5427000;5505500;5587600;5674600;5732600;5821600;5867600;5912600;5960600;6013600;6096600;6173600;6293700;6309700;6436700;6540700;6645700;6753700;6776700;6941700;5961700;6535700;6561700;6580700;6569700;6569700;6569700;6569700;6569700;7219700;7169700;7345500;7357500;7478500;7134227;7226726;7226726;7164821;7168640;7168640;7168640;7168640;7168640 -5105;'011;Western Africa;1630;Wood charcoal;5510;Production;t;1650902;1702551;1756193;1811916;1869612;1929987;1992538;2057581;2125231;2195612;2247868;2339345;2422845;2473686;2596428;2663773;2732438;2851124;2910976;3033147;3171866;3317257;3593034;3773632;3904570;4073121;4254456;4380365;4484432;4674073;4947643;5010731;5211819;5463828;5627643;6113861;6145493;6328941;6475637;6632281;7014272;7209054;7460873;7858574;8081771;8253376;8442483;8679185;8920790;9356882;9595780;9831059;9933683;10132956;10471547;10693719;10962107;11182891;11126572;11447948;12004276;12235246;12189923 -5105;'011;Western Africa;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;46;21;32;32;404;659;1120;920;920;920;303;324;324;314;390;626;687;782;238;2960.25;8588.25;8264.25;3943.25;6182;3980;4373;5045;2519;10599;123985;148728 -5105;'011;Western Africa;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;10;14;14;88;148;226;190;190;190;98;195;195;146;330;479;458;706;350;1190.24;2097.24;1822.24;1396.24;1754;1267;1448;1262;1428;1539;43302;18175 -5105;'011;Western Africa;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10504;13906;21925;4481;17887;18961;21154;15328;28641;22926;17733;30474;46730;56940;75608;95406;29838;92590;94186;129953;136716;176657;160588;192445;220092;256354;311924;261289;156194;138864;135623;132221 -5105;'011;Western Africa;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2946;3090;6583;1397;3701;4298;5183;4268;6366;4806;3893;8034;12916;16319;22030;29796;8742;32223;28271;42664;41668;56826;48813;50622;57987;72092;96091;86460;53511;46073;54610;56871 -5105;'011;Western Africa;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2200;2200;2200;;;;;;;;448000;400000;531200;576200;712200;712200;712200;712200;712200;712200 -5105;'011;Western Africa;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;127;127;128;228;228;228;2038;2038;574;597;6037;460;656;636;7357;2492;2224;2401;1390;673;1178;18231;8267;9787;10382.47;8031 -5105;'011;Western Africa;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;31;31;33;33;25;115;115;71;93;1211;168.2;258;479;2308;656;657.3;642.3;447;254;519;7536;3509;4492;4771.1;3491.18 -5105;'011;Western Africa;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;0;351;31;31;263;295;295;481;474;1203;66909;63380;235646;347619;177121;108416;60001;66914;61123;4188;4670;26575;24076;30494;35999 -5105;'011;Western Africa;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;15;1;1;157;176;176;126;124;397;4740;8036;14434;16111;6639;11496;7967;10127;9034;2075;1954;2212;1823;2278;2804 -5105;'011;Western Africa;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1618;67;67;67;67;67;31;1850;1850;380;387;404;199;410;426;6949;1760;1687;1931;1009;462;702;17811;7905;9602;10098.47;7910 -5105;'011;Western Africa;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;17;17;17;17;17;13;98;98;53;76;92;101.2;175;371;2154;425;405;370;280;118;239;7290;3345;4431;4728.1;3445.18 -5105;'011;Western Africa;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;31;31;31;31;31;31;31;31;743;66439;62713;231389;323386;174818;105559;59467;65826;60070;3397;4357;3844;2313;2409;7914 -5105;'011;Western Africa;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;1;1;1;1;1;1;1;1;270;4611;7875;13967;12414;6506;11297;7814;9997;8915;1750;1778;809;442;237;763 -5105;'011;Western Africa;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2200;2200;2200;;;;;;;;448000;400000;531200;576200;712200;712200;712200;712200;712200;712200 -5105;'011;Western Africa;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2887;3910;3910;3766;0;438;60;60;61;161;161;197;188;188;194;210;5633;261;246;210;408;732;537;470;381;211;476;420;362;185;284;121 -5105;'011;Western Africa;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;130;151;151;146;0;110;14;14;14;16;16;12;17;17;18;17;1119;67;83;108;154;231;252.3;272.3;167;136;280;246;164;61;43;46 -5105;'011;Western Africa;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1016;99;99;99;77;46;0;320;0;0;232;264;264;450;443;460;470;667;4257;24233;2303;2857;534;1088;1053;791;313;22731;21763;28085;28085 -5105;'011;Western Africa;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;7;7;7;3;2;0;14;0;0;156;175;175;125;123;127;129;161;467;3697;133;199;153;130;119;325;176;1403;1381;2041;2041 -5105;'011;Western Africa;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;11000;11000;11000;12000;12000 -5105;'011;Western Africa;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;146;130;3395;1700;938;1253;1115.53;511.6;953.6 -5105;'011;Western Africa;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;42;635;345;448;476;353;314.76;322.76 -5105;'011;Western Africa;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140;92;192;116;216;2205;9802;4272;7563;9666;6640 -5105;'011;Western Africa;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;37;44;18;35;728;3367;3637;2688;2995;2178 -5105;'011;Western Africa;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;146;129;1992;1101;713;371;160;174.6;213.6 -5105;'011;Western Africa;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;40;481;284;297;282;202;209.76;54.76 -5105;'011;Western Africa;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140;92;192;116;216;216;861;391;391;438;438 -5105;'011;Western Africa;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;37;44;18;35;35;297;102;102;115;115 -5105;'011;Western Africa;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;11000;11000;11000;12000;12000 -5105;'011;Western Africa;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1403;599;225;882;955.53;337;740 -5105;'011;Western Africa;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;154;61;151;194;151;105;268 -5105;'011;Western Africa;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1989;8941;3881;7172;9228;6202 -5105;'011;Western Africa;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;693;3070;3535;2586;2880;2063 -5105;'011;Western Africa;1872;Sawnwood;5516;Production;m3;1020600;936200;960200;975500;1132200;1530200;1240400;1349700;1347100;1431201;1429400;1461700;1819901;2074801;2130700;2227301;2593301;3164201;3355201;3866901;4128000;3958800;3710700;3779200;4703500;4161900;4800000;4802900;4604800;4192600;3970000;4042500;4053300;4298700;3941500;3642000;3395500;3339100;3192100;3209100;3266100;3259600;3156900;3165600;3085500;3303809;3258200;3415200;3424200;3508500;3587200;3729200;3919649;3987649;3977220;3978021;4013227;4025227;4243227;4367035;3964191;4055193;4055193 -5105;'011;Western Africa;1872;Sawnwood;5616;Import quantity;m3;18500;18000;28300;14900;36200;30850;23300;31700;35100;38950;34850;29550;35500;30050;36300;42850;55350;51800;41500;85400;88700;59900;54100;40500;60500;55800;63967;66830;68841;64920;66120;61174;54261;44402;47114;48393;57212;55309;81882;91989;161028;128906;122831;131638;128878;151798;123494;127823;97726;102303;100500;74879;83610;89111;63363;82360;91407;108844;363827;303704;314570;296880;321938 -5105;'011;Western Africa;1872;Sawnwood;5622;Import value;1000 USD;802;785;1977;1068;2407;1949;1341;1641;1621;1629;1563;1660;2177;2320;3933;5051;6983;6444;6059;10919;11876;14500;13389;6276;9659;9996;12066;11030;12217;12639;19203;12009;8733;8152;9301;8668;11744;13709;21426;19792;28856;26362;28634;30675;30014;33247;72345;80853;60488;60685;58158;59607;69250;62648;42884;46163;51036;61723;71579;60035;67547;57432;60703 -5105;'011;Western Africa;1872;Sawnwood;5916;Export quantity;m3;355600;385800;376100;435400;468100;499600;473700;512100;505100;523700;439600;504100;634100;525600;463800;507600;489300;487600;493300;398300;346100;368700;439900;483600;563200;589006;639299;654605;644224;825167;700167;773231;809744;919651;912051;761266;820277;831447;789383;769725;689992;637028;452232;614987;702306;632272;586428;806879;409256;552477;420259;404959;333907;388332;304028;321011;457026;411020;499157;493394;423919;607705;591337 -5105;'011;Western Africa;1872;Sawnwood;5922;Export value;1000 USD;23489;24861;24086;30493;32544;33256;30417;32301;36573;39464;30456;36767;75173;77595;61993;73716;83594;95258;96487;107745;75564;68646;82557;81070;91321;120602;167792;175698;174725;289881;189884;338501;390954;410195;374199;395183;293171;307259;277635;262721;205782;200642;223261;354751;399723;286093;309265;441299;218409;244291;280320;239115;227835;261339;219267;198842;214526;245308;215880;185685;210274;252150;248359 -5105;'011;Western Africa;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;6201;6101;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;28000;45000;64000;64000;54000;0;0;0;0;0;0;0;0;12000;12000;12000;12000;12000;13300;16000;18000;19000;19000;20800;20500;18700;20700;20700;22700;22700;22700;22700 -5105;'011;Western Africa;1632;Sawnwood, coniferous;5616;Import quantity;m3;7400;7900;14900;4900;6400;4600;3400;8650;9750;8500;7200;2700;5900;3250;5650;5350;6800;6500;7500;22600;20000;12400;12400;7900;7500;11300;9483;9364;11114;8263;7463;9885;8830;8229;6200;7674;11921;9189;6641;6511;37765;12689;12522;23924;24200;17098;18683;14089;7057;13990;15428;11450;19699;21498;17451;30395;35446;50361;92999;53254;47350;54367;79602 -5105;'011;Western Africa;1632;Sawnwood, coniferous;5622;Import value;1000 USD;221;231;1094;365;474;254;224;508;522;487;429;182;359;279;866;936;1539;1338;1469;2476;1665;2207;2260;962;896;1316;1132;1244;1614;1123;1621;1472;1365;1860;1916;1447;3355;2158;1460;1186;4026;1696;2286;3546;3719;2969;4983;5450;3921;5447;4816;3856;10303;6256;4265;6954;7914;12992;14054;11288;12083;13992;18031 -5105;'011;Western Africa;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12784;4696;5537;1442;5000;1987;2480;1866;1406;2073;8709;2290;3196;8665;11588;8984;7646;5931;4835;6060;7830;7659;9184;5080;4589;21055;15961;945;5573;3920;4639;3001 -5105;'011;Western Africa;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3476;1146;1440;448;1529;930;906;635;543;842;2942;785;1029;2763;3784;2664;2671;1518;1598;2451;3493;2888;3685;1773;1257;4667;4096;398;1854;1766;1027;873 -5105;'011;Western Africa;1633;Sawnwood, non-coniferous;5516;Production;m3;1020600;936200;960200;975500;1132200;1530200;1240400;1349700;1347100;1431201;1429400;1461700;1813700;2068700;2124700;2221301;2587301;3158201;3349201;3860901;4122000;3952800;3704700;3773200;4697500;4155900;4794000;4796900;4598800;4186600;3964000;4014500;4008300;4234700;3877500;3588000;3395500;3339100;3192100;3209100;3266100;3259600;3156900;3165600;3073500;3291809;3246200;3403200;3412200;3495200;3571200;3711200;3900649;3968649;3956420;3957521;3994527;4004527;4222527;4344335;3941491;4032493;4032493 -5105;'011;Western Africa;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;11100;10100;13400;10000;29800;26250;19900;23050;25350;30450;27650;26850;29600;26800;30650;37500;48550;45300;34000;62800;68700;47500;41700;32600;53000;44500;54484;57466;57727;56657;58657;51289;45431;36173;40914;40719;45291;46120;75241;85478;123263;116217;110309;107714;104678;134700;104811;113734;90669;88313;85072;63429;63911;67613;45912;51965;55961;58483;270828;250450;267220;242513;242336 -5105;'011;Western Africa;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;581;554;883;703;1933;1695;1117;1133;1099;1142;1134;1478;1818;2041;3067;4115;5444;5106;4590;8443;10211;12293;11129;5314;8763;8680;10934;9786;10603;11516;17582;10537;7368;6292;7385;7221;8389;11551;19966;18606;24830;24666;26348;27129;26295;30278;67362;75403;56567;55238;53342;55751;58947;56392;38619;39209;43122;48731;57525;48747;55464;43440;42672 -5105;'011;Western Africa;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;355600;385800;376100;435400;468100;499600;473700;512100;505100;523700;439600;504100;634100;525600;463800;507600;489300;487600;493300;398300;346100;368700;439900;483600;563200;589006;639299;654605;644224;825167;700167;760447;805048;914114;910609;756266;818290;828967;787517;768319;687919;628319;449942;611791;693641;620684;577444;799233;403325;547642;414199;397129;326248;379148;298948;316422;435971;395059;498212;487821;419999;603066;588336 -5105;'011;Western Africa;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;23489;24861;24086;30493;32544;33256;30417;32301;36573;39464;30456;36767;75173;77595;61993;73716;83594;95258;96487;107745;75564;68646;82557;81070;91321;120602;167792;175698;174725;289881;189884;335025;389808;408755;373751;393654;292241;306353;277000;262178;204940;197700;222476;353722;396960;282309;306601;438628;216891;242693;277869;235622;224947;257654;217494;197585;209859;241212;215482;183831;208508;251123;247486 -5105;'011;Western Africa;1634;Veneer sheets;5516;Production;m3;4000;4200;10600;10900;11300;36600;33800;37100;30700;42500;55000;51700;73800;88400;41900;53200;62700;59600;70900;149000;138000;126000;144000;141000;176000;196000;202000;218000;228000;257000;211000;225000;233000;315000;278000;294000;327000;364000;419000;542000;555000;512000;507000;507000;544500;478900;554700;648200;676200;676835;677435;533200;523200;500200;533400;587011;517440;518440;664733;526700;611700;610700;625700 -5105;'011;Western Africa;1634;Veneer sheets;5616;Import quantity;m3;1200;800;2600;2700;2350;400;300;300;700;1000;600;200;1300;1000;2000;1900;6000;6700;5400;5400;5400;5400;5400;500;500;500;500;34;1;2;2;158;173;487;587;1552;655;539;1525;1796;1864;1997;2083;831;2558;2215;1949;3672;3221;3841;14474;7511;7141;7160;21340;34887;15463;12557;8868;8595;29527;5869;9138 -5105;'011;Western Africa;1634;Veneer sheets;5622;Import value;1000 USD;183;124;384;415;370;66;62;63;46;79;44;31;130;133;263;254;796;1346;1346;1346;1346;1346;1346;421;421;421;421;34;5;10;10;397;321;251;275;460;300;186;941;1015;885;981;1097;640;3203;1356;2233;2067;2290;2417;4788;3253;2628;4149;4626;8491;4694;3981;3010;2783;9126;2844;9652 -5105;'011;Western Africa;1634;Veneer sheets;5916;Export quantity;m3;1300;2100;2100;10300;10300;8300;16700;36800;25300;25700;53000;49700;64100;65800;32500;40000;41700;44500;53700;57600;56000;50700;63700;70900;87500;95200;96600;126400;78800;142800;105400;90625;135758;151572;141381;168813;222196;240490;254327;223612;235612;268657;229178;266795;281826;203858;214089;174950;96995;100369;96254.4;118772;86809;94367;102317;118397;71766;72523;63364;48643;58191;71312;91350 -5105;'011;Western Africa;1634;Veneer sheets;5922;Export value;1000 USD;113;231;269;1151;1158;967;1827;2933;1246;3706;4075;5420;10345;8208;5244;7030;8401;8143;10013;17585;12637;11131;11888;12886;15436;23130;36084;90809;53361;100873;74090;84977;54353;78062;85537;75451;78971;90766;129654;81679;94352;110325;134891;160087;188458;111326;128996;134590;75315;98365;80128.9;73894;72531;70639;82219;79001;67629;69395;68405;51350;64664;72736;86150 -5105;'011;Western Africa;1873;Wood-based panels;5516;Production;m3;28800;49000;56800;56200;59800;62100;61000;68400;72000;79500;115300;135000;145000;156600;143500;188000;199800;209000;219000;227600;241900;242300;243500;242500;213000;179000;180000;188000;176200;181000;183000;189000;183800;173400;199000;182000;272000;319000;267000;303000;328000;313000;270000;292000;331000;360300;399700;439600;415373;384057;460433;383290;371790;453890;455890;491043;452976;452976;492676;498123;516419;490889;490889 -5105;'011;Western Africa;1873;Wood-based panels;5616;Import quantity;m3;16782;16500;14718;14800;16800;14249;12991;10212;14612;21093;20593;26693;27869;30784;49053;67722;134930;123500;129300;176900;166100;137700;124300;35800;41200;38100;28583;30494;21747;18079;11979;41094;29493;23087;38245;48222;40417;41111;136906;84792;121333;115260;92265;79573;81115;112701;182601;177414;147614;241126;367744;319590.3;472247;371374;417348;411376;424757;442437;631388;701566;904138.41;552886;731181 -5105;'011;Western Africa;1873;Wood-based panels;5622;Import value;1000 USD;2372;2639;2196;2136;2575;2532;2083;1661;2189;3508;3481;4578;6912;9692;19776;30239;63497;60946;64187;95092;87787;67210;56851;13895;15667;15787;15679;12887;10405;10005;6533;16524;13367;10403;13387;16032;16280;17133;24756;19241;23416;22022;26217;21477;22036;37308;74186;104082;80824;128844;183335;226405;218061;200923;221828;172922;193662;180970;236826;249593;319498.41;262785;348408 -5105;'011;Western Africa;1873;Wood-based panels;5916;Export quantity;m3;22300;35400;34900;36300;37400;36300;28300;30200;44400;49300;46200;54200;71700;51000;32400;37200;30500;28900;23900;17700;14000;17800;22800;20300;22600;29800;26200;29350;19770;25800;16400;12914;19223;12486;19281;36532;50266;32909;53495;94416;88416;129558;119761;120081;127787;181773;206445;190240;68864;100767;91369;106979.14;65441.14;90057.14;86668.14;65545;74758;83579;77514;64818;87933;84300.78;73334.78 -5105;'011;Western Africa;1873;Wood-based panels;5922;Export value;1000 USD;3718;5799;5179;5459;5487;5299;6161;7198;5143;6698;5910;6927;16864;14516;10322;11437;9752;9746;8734;9587;6851;7542;10232;7936;7739;12880;14442;12406;10369;15348;3761;8521;9242;5311;9915;16254;16369;9883;16605;25275;23617;34443;36072;37708;41539;60691;71867;87698;38191;58341;73123;129403.4;61569.4;45336;40647;34837;38838;30853;30171;23975;30089;29549.36;22514.37 -5105;'011;Western Africa;1640;Plywood and LVL;5516;Production;m3;28800;49000;56800;56200;59800;62100;60400;66100;68200;76300;111000;130000;140000;151600;139000;183000;188300;190000;193000;187100;159400;153800;152000;144000;140000;142000;143000;151000;139200;141000;145000;146000;140800;130400;156000;139000;211000;241000;189000;225000;250000;235000;222000;244000;283000;312300;351700;391600;367373;336057;412433;335290;323790;405890;407890;443043;404976;404976;444676;450123;468419;442889;442889 -5105;'011;Western Africa;1640;Plywood and LVL;5616;Import quantity;m3;7282;8500;7818;7400;6300;5800;5600;4400;5200;5200;4800;11300;10500;13800;18300;37900;75400;63000;70100;75900;76300;75900;76600;28900;32200;29700;22183;16506;15151;14540;8340;15941;15941;12085;14729;19107;20196;20964;23315;17916;19572;16578;30127;14006;15548;37067;66052;80274;71352;156316;227114;225637;250459;192465;179461;227635;278608;216805;335160;405419;757298;473079;593119 -5105;'011;Western Africa;1640;Plywood and LVL;5622;Import value;1000 USD;1252;1686;1302;1231;1436;1314;1133;894;865;949;884;2012;2065;3271;6368;12665;24501;21555;24836;27071;27191;26314;25561;9320;10681;10832;12723;8675;8146;8735;5269;8296;9262;7065;8594;9747;10985;11397;10076;7292;7692;7029;12142;5529;6088;19404;40452;61250;44920;77514;119568;180233;116539;119309;115892;96468;127604;117030;153647;163948;255703;213463;293403 -5105;'011;Western Africa;1640;Plywood and LVL;5916;Export quantity;m3;22300;35400;34900;36300;37400;36300;28300;30000;44000;48700;41900;49200;69500;47800;29500;34300;29000;27600;22600;17700;14000;17800;22800;20300;22600;29800;26200;29350;19770;25800;16400;12891;19167;12430;19169;36469;50212;32855;53444;94295;88295;129437;119108;119008;126714;179812;204464;183563;62944;97305;86091;102700;64056;88419;84873;59846;68344;67698;57278;59606;83720;81400;69879 -5105;'011;Western Africa;1640;Plywood and LVL;5922;Export value;1000 USD;3718;5799;5179;5459;5487;5299;6161;6894;5104;6640;5535;6434;16659;13727;9609;10724;9357;9338;8326;9587;6851;7542;10232;7936;7739;12880;14442;12406;10369;15348;3761;8511;9222;5291;9893;16243;16359;9869;16592;25232;23574;34400;35895;37274;41105;60232;71365;82983;34678;53931;67373;124464;60734;44376;39575;32180;35718;25292;21009;20444;27337;27390;19949 -5105;'011;Western Africa;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;187 -5105;'011;Western Africa;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77 -5105;'011;Western Africa;1646;Particle board and OSB (1961-1994);5516;Production;m3;;;;;;;600;2300;3800;3200;4300;5000;5000;5000;4500;5000;11500;19000;26000;40500;82500;88500;91500;98500;73000;37000;37000;37000;37000;40000;38000;43000;43000;43000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5105;'011;Western Africa;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;3100;2000;2900;4000;7100;2800;3300;900;2600;3200;3200;3000;1400;2200;1700;1200;2400;3400;3200;5000;5200;5200;3000;3100;4200;4300;5600;10886;2833;1605;1605;2612;3401;3134;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5105;'011;Western Africa;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;239;134;236;344;500;433;330;65;281;242;242;226;218;472;390;674;1386;1795;1791;2805;2903;2903;1596;1741;1823;2095;2189;2953;1228;455;455;868;907;824;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5105;'011;Western Africa;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5105;'011;Western Africa;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5105;'011;Western Africa;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43000;43000;43000;48000;48000;48000;48000;48000;48000;48000;48000;48000;48000;48000;48000;48000;48000;48000;48000;48000;48000;48000;48000;48000;48000;48000;48000;48000;48000 -5105;'011;Western Africa;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3427;9749;4574;4073;7056;11409;15086;14199;4100;8592;8592;19651;30989;40699;46090;40141;33273;21410;20536;24178;23895;19770;13393;10804;27229;31126;26740.1;21935;30256 -5105;'011;Western Africa;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1014;2786;1566;1594;1910;2104;2582;2388;1307;1887;1887;4160;10374;14155;15844;15912;12315;8942;8984;11787;10884;8158;5914;4882;9475;11507;14543.18;15418;16759 -5105;'011;Western Africa;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;12;3;0;0;20;20;20;176;376;376;1239;1250;5881;5466;2984;3224;2633;105;349;335;3523;4763;14351;18148;3068;2286;1152;1230 -5105;'011;Western Africa;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;2;1;0;0;4;4;4;59;96;96;118;147;4336;3354;3535;4436;4107.4;77;236;290;1696;2229;4891;8389;2713;1972;1384;1569 -5105;'011;Western Africa;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1287;28;28;68;158;340;340;211;47;4130;161;799;1286;241;821;676;790;3159;1968;1671;2504;1345;345;756;624 -5105;'011;Western Africa;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;5;5;26;37;56;56;67;32;1792;126;348;553;259;475;830;765;1143;627;841;871;318;1127;1077;723 -5105;'011;Western Africa;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;1;0;0;2;31;0;0;39;40;40;40;106;106 -5105;'011;Western Africa;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;36;36;0;0;11;11;0;0;19;19;19;19;64;64 -5105;'011;Western Africa;1874;Fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;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 -5105;'011;Western Africa;1874;Fibreboard;5616;Import quantity;m3;6400;6000;4000;3400;3400;5649;4091;4912;6812;12693;12593;12393;15969;14784;29053;28622;57130;57100;56000;96000;84600;56600;44700;3800;4800;4100;800;3102;3763;1934;2034;22541;10151;7868;20089;19366;15647;16074;105248;55439;86647;84415;57880;56635;56635;55772;85513;52311;30011;43870;106071;72302.3;200431;154055;213202;160812;130788;213157;266495;263676;119755.3;57116;107182 -5105;'011;Western Africa;1874;Fibreboard;5622;Import value;1000 USD;881;819;658;561;639;785;620;702;1043;2317;2355;2340;4629;5949;13018;16900;37610;37596;37560;65216;57693;37993;29694;2834;3163;2860;767;1259;1031;815;809;7360;3198;2514;3779;3499;3729;4142;12757;9840;13137;12579;12731;14005;14005;13677;23328;26885;19934;35070;50899;36971;92063;68997;94287;67153;59517;58217;72833;73820;48125.23;32827;37523 -5105;'011;Western Africa;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;3;3;51;51;51;54;51;101;101;101;477;697;697;722;731;796;454;477;2053;1646.14;1280.14;1287.14;1429.14;2176;1651;1491;2048;2104;1887;1642.78;2119.78 -5105;'011;Western Africa;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;1;1;9;9;9;14;13;39;39;39;118;338;338;341;355;379;159;839;1278;832;758.4;713;771;961;891;651;754;799;761;711.37;932.37 -5105;'011;Western Africa;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;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 -5105;'011;Western Africa;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8027;7400;9769;10888;23158;33946;42966;40020;44471;36892;36892;39254;63617;27680;14667;20757;48859;45399;81699;42644;47554;27580;15586;19653;28924;49629;31921;6261;13450 -5105;'011;Western Africa;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2558;2285;3025;3458;5202;8274;10456;9800;11451;11310;11310;11584;18439;13081;8610;16402;24384;23302;39988;21163;23515;11916;9172;8506;12947;20112;14642;4182;6599 -5105;'011;Western Africa;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;159;159;184;184;184;25;25;775;811.14;786.14;786.14;786.14;1549;861;873;873;873;838;837.78;837.78 -5105;'011;Western Africa;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;193;193;196;196;196;3;3;376;399;396;396;396;566;457;399;399;399;380;380.37;380.37 -5105;'011;Western Africa;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 -5105;'011;Western Africa;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;1046;1047;60765;935;6817;6889;2282;8814;8814;4404;6690;15963;10943;19891;53691;24261.3;115659;107612;161085;128491;111324;186671;228190;198956;76377.3;45577;85201 -5105;'011;Western Africa;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;139;132;6520;119;374;393;315;1652;1652;916;3167;8953;7985;12667;23855;11411;50127;44917;68018;52072;48001;46008;57407;51472;31034.23;26476;28631 -5105;'011;Western Africa;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;345;296;296;296;303;368;329;352;1153;694;353;360;515;492;674;507;510;1058;877;633;1109 -5105;'011;Western Africa;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;57;91;91;91;104;128;121;801;755;279;208.4;163;226;235;365;204;194;334;316;266;482 -5105;'011;Western Africa;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5221;1770;1304;12054;11958;4832;4139;21325;20558;36864;37506;11127;10929;10929;12114;15206;8668;4401;3222;3521;2642;3073;3799;4563;4741;3878;6833;9381;15091;11457;5278;8531 -5105;'011;Western Africa;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1904;624;571;1207;1200;565;552;1035;1447;2307;2386;965;1043;1043;1177;1722;4851;3339;6001;2660;2258;1948;2917;2754;3165;2344;3703;2479;2236;2449;2169;2293 -5105;'011;Western Africa;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;3;3;51;51;51;51;48;98;98;98;113;242;242;242;244;244;100;100;125;141;141;141;128;135;116;111;665;173;172;172;173 -5105;'011;Western Africa;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;1;1;9;9;9;9;8;34;34;34;36;54;54;54;55;55;35;35;147;154;154;154;149;160;69;48;161;66;65;65;70 -5105;'011;Western Africa;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;6400;6000;4000;3400;3400;5649;4091;4912;6812;12693;12593;12393;15969;14784;29053;28622;57130;57100;56000;96000;84600;56600;44700;3800;4800;4100;800;3102;3763;1934;2034;17320;8381;6564;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5105;'011;Western Africa;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;881;819;658;561;639;785;620;702;1043;2317;2355;2340;4629;5949;13018;16900;37610;37596;37560;65216;57693;37993;29694;2834;3163;2860;767;1259;1031;815;809;5456;2574;1943;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5105;'011;Western Africa;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;6000;4000;4000;4000;11000;9000;9000;9000;9000;9000;11000;25600;28600;29600;30600;20600;20600;20600;20600;20600;20600;20600;20600;29000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;37000;39000;60000;57000;71300;142800;129600;130100;130700;130700;130700;135700;73700;84700;84700 -5105;'011;Western Africa;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;1700;2700;6400;6400;6400;4300;7610;12464;13191;6179;6119;6100;5700;5600;5600;6000;4100;4700;4305;4300;3600;5100;1700;1900;8945;9340;6647;12350;13256;11861;12746;28297;28865;26825;31301;32870;44862;44862;36305;31341;54241;37262;51654;42026;34610;37858;65996;61493;127417;139795;97991;67308;107669;81172.99;139377.2;124806.2 -5105;'011;Western Africa;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;203;354;790;790;790;1956;4081;6875;6120;3943;4128;4459;5104;5005;5147;4106;3420;3281;3340;3386;2440;2931;276;338;2605;2773;1839;4950;5528;5624;6396;10730;11138;9934;12626;14244;15631;15631;16368;13324;27954;13779;33648;26565;26495;29029;27215.25;22527;40280;50728;54994;41172;70692;66732.1;109417.24;148737.24 -5105;'011;Western Africa;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2746;1815;1815;700;600;1754;1087;1200;1339;1339;1132;3465;6409;6409;6177;6253;20465;15273;16313;17852;22794;34125;19223;13672;10881;9381;5071;9660;7453;8952.88;13659.25;16022.25 -5105;'011;Western Africa;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;246;246;176;292;412;341;754;814;814;524;940;1040;1040;1036;1055;3980;2860;4082.4;4287;5411;12565;3983;3157;2326;2386;1254;1519;1093;1592;1650.5;2790.5 -5105;'011;Western Africa;1878;Pulp for paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;2000;13600;16600;16600;16600;6600;6600;6600;6600;6600;6600;6600;6600;15000;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 -5105;'011;Western Africa;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;1700;2700;6400;6400;6400;4300;6700;11800;12200;5100;5100;5100;4700;4700;4700;5100;3200;3200;3200;3200;2100;2100;0;0;2799;4478;2220;6891;7871;7807;8395;22273;21368;19168;24737;25859;28960;28960;27666;22287;43218;30181;45487;36282;26265;32012;27462;21782;34065;49341;48229;42512;77717;67324.59;93330.2;95037.2 -5105;'011;Western Africa;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;203;354;790;790;790;1956;3940;6749;5932;3795;3968;4268;4836;4836;4836;3795;3109;3109;3109;3109;2196;2196;0;0;1394;1741;1058;3809;4546;4929;5783;9942;9909;8819;11776;12714;13007;13007;14200;10800;25291;11520;31151;24773;24264;27382;19364.25;14405;23064;32889;43953;33816;61808;63255.15;97190.24;142003.24 -5105;'011;Western Africa;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;400;400;421;1200;1339;1339;1132;1412;685;685;685;685;1753;1753;1802;769;1523;3228;1641;1621;948;911;911;911;911;911;1522;1546 -5105;'011;Western Africa;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;254;254;266;754;814;814;524;739;374;374;374;374;937;937;1015;479;977;1990;1096;1083;583;571;571;571;571;571;832;866 -5105;'011;Western Africa;1875;Wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;2000;13600;16600;16600;16600;6600;6600;6600;6600;6600;6600;6600;6600;15000;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 -5105;'011;Western Africa;1875;Wood pulp;5610;Import quantity;t;;;;;;;;1700;2700;6400;6400;6400;4300;6700;11800;12200;5100;5100;5100;4700;4700;4700;5100;3200;3200;3200;3200;2100;2100;0;0;2874;4553;2240;3699;4679;4615;5183;22669;21173;18973;24542;25645;28492;28492;27198;21819;43246;29845;45202;36149;25747;31659;27307;21498;33045;47817;46408;41615;77081;66920.73;92392;94230 -5105;'011;Western Africa;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;203;354;790;790;790;1956;3940;6749;5932;3795;3968;4268;4836;4836;4836;3795;3109;3109;3109;3109;2196;2196;0;0;1439;1786;1061;1668;2405;2788;3639;10387;9697;8607;11564;12479;12611;12611;13804;10404;25185;11093;30621;24511.1;23849;27147;19240.25;14180;21851;31104;41240;31554;59358;60900.01;93947;138855 -5105;'011;Western Africa;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;400;400;421;1200;1339;1339;1132;1412;685;685;685;685;1751;1751;1800;754;1508;3213;1626;1606;931;896;896;896;896;896;1501;1525 -5105;'011;Western Africa;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;254;254;266;754;814;814;524;739;374;374;374;374;933;933;1011;470;968;1981;1087;1074;572;555;555;555;555;555;817;851 -5105;'011;Western Africa;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9000;9000;9000;9000;9000;9000;9000 -5105;'011;Western Africa;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1043;2099;2298;1036;2842.32;3664;2318 -5105;'011;Western Africa;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;485;1819;1023;897;4471;1631;1046 -5105;'011;Western Africa;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -5105;'011;Western Africa;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -5105;'011;Western Africa;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;120;500;94;94;15500;15500;15500;15523;15776;15776;15776;15776;15776;2236;2223;2387;2387;3043;6993;7265;289;328;;;;;;; -5105;'011;Western Africa;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;93;519;42;42;5682;5682;5682;5688;5770;5770;5770;5770;5770;1138;1137;1291;1291;1783;8026;4297;161;154;;;;;;; -5105;'011;Western Africa;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1066;1066;1066;20;20;20;0;0;0;;;;;;; -5105;'011;Western Africa;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;559;559;559;18;18;18;0;0;0;;;;;;; -5105;'011;Western Africa;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;1000;2400;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;2600;6000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;;;;;;; -5105;'011;Western Africa;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;800;2000;1600;1600;1600;1900;2900;4500;6600;1800;1800;1800;900;900;900;1800;1100;1100;1100;1100;0;0;0;0;0;22;18;18;18;18;18;18;18;18;18;27;27;27;27;27;27;97;71;71;2635;1544;423;216;1830;;;;;;; -5105;'011;Western Africa;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;107;270;220;220;220;850;1214;3054;2949;1668;1668;1668;549;549;549;1668;913;913;913;913;0;0;0;0;0;9;7;7;7;7;7;7;7;7;7;14;14;14;14;14;14;157;69;69;963;669;233.25;101;995;;;;;;; -5105;'011;Western Africa;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;;;;;;; -5105;'011;Western Africa;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;;;;;;; -5105;'011;Western Africa;1656;Chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;1000;11200;14000;14000;14000;4000;4000;4000;4000;4000;4000;4000;4000;9000;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 -5105;'011;Western Africa;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;900;700;4800;4800;4800;2400;3800;7300;5600;3300;3300;3300;3800;3800;3800;3300;2100;2100;2100;2100;2100;2100;;;2799;4456;2202;3387;3987;4329;4917;6751;5655;3455;9001;9842;12689;12689;11395;6016;40501;27481;42698;33596;20033;22953;19306;20554;30645;46723;44070;39070;74724;62477.4;87295;90717 -5105;'011;Western Africa;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;96;84;570;570;570;1106;2726;3695;2983;2127;2300;2600;4287;4287;4287;2127;2196;2196;2196;2196;2196;2196;;;1394;1732;1051;1397;1708;2568;3422;4247;4008;2918;5869;6695;6827;6827;8020;4620;23603;9743;29244;23099;21072;18341;14504;13669;20584;30604;39175;30341;57556;55123.27;91183;137020 -5105;'011;Western Africa;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;400;400;421;1200;1339;1339;1132;1412;685;685;685;685;685;685;734;734;1488;3193;1617;1597;922;896;896;896;896;896;1501;1525 -5105;'011;Western Africa;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;254;254;266;754;814;814;524;739;374;374;374;374;374;374;452;452;950;1963;1087;1074;572;555;555;555;555;555;817;851 -5105;'011;Western Africa;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;1000;11200;14000;14000;14000;4000;4000;4000;4000;4000;4000;4000;4000;9000;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 -5105;'011;Western Africa;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;1598;0;0;0;0;27;27;27;27;27;29;167;167;167;167;24995;16737;29646;9105;4000;2676;3581;5033;11337;11432;7717;6654;14857;15713.85;17287;10079 -5105;'011;Western Africa;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;482;0;0;0;0;10;10;10;10;10;10;110;110;110;110;12165;3687;9048;4976;3963;1980;2588;2836;7380;7362;7722;6148;12968;15307.87;19182;9713 -5105;'011;Western Africa;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;238;238;238;238;238;238;238;238;238;238;238;238 -5105;'011;Western Africa;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140;140;140;140;140;140;140;140;140;140;140;140 -5105;'011;Western Africa;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2276;2641;1828;3144;3744;4147;4708;6724;5621;3021;8567;9051;11536;11536;10367;5031;13286;10097;12044;23783;15139;19894;15254;15168;18633;32764;35306;31661;56983;46468.23;61148;80327 -5105;'011;Western Africa;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1049;1088;922;1235;1546;2467;3311;4237;3979;2552;5503;6099;6085;6085;7299;3924;9487;5253;19040;17257;16015;15360;11327;10478;12647;20949;30485;23571;42689;39470.4;69079;126872 -5105;'011;Western Africa;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;400;400;421;400;508;508;508;508;508;508;508;508;508;508;557;557;1073;2778;1357;1359;658;658;658;658;658;658;1263;1287 -5105;'011;Western Africa;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;254;254;266;254;300;300;300;300;300;300;300;300;300;300;378;378;736;1749;933;934;415;415;415;415;415;415;677;711 -5105;'011;Western Africa;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2527;1047;755;2884;295.33;8860;311 -5105;'011;Western Africa;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2293;968;622;1899;345;2922;435 -5105;'011;Western Africa;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;49;49;138;138;0;0;0;0;0;0;0;0;0;0;10;10;10;17;109;0;0;0;;;;;;; -5105;'011;Western Africa;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;31;31;0;0;0;0;0;0;0;0;0;0;3;3;3;3;85;0;0;0;;;;;;; -5105;'011;Western Africa;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;;;;;;; -5105;'011;Western Africa;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;;;;;;; -5105;'011;Western Africa;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;424;217;325;194;194;44;44;0;7;407;407;762;986;986;861;818;2220;637;998;698;877;274;471;353;675;;;;;;; -5105;'011;Western Africa;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;303;162;115;148;148;70;70;0;19;356;356;586;632;632;611;586;1951;800;1153;863;1091;916;589;355;557;;;;;;; -5105;'011;Western Africa;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;800;831;831;624;904;177;177;177;177;177;177;177;177;177;177;22;0;0;;;;;;; -5105;'011;Western Africa;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;514;514;224;439;74;74;74;74;74;74;74;74;74;74;14;0;2;;;;;;; -5105;'011;Western Africa;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;75;20;174;174;174;154;400;0;0;0;0;0;0;0;0;482;44;46;95;36;169;313;439;242;51;239;247;1321;1601;1433;1195 -5105;'011;Western Africa;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;45;3;171;171;171;168;451;0;0;0;0;0;0;0;0;430;56;17;52.1;31;111;206;249;118;15;246;190;905;1305.74;1133;789 -5105;'011;Western Africa;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;3366;3366;3366;3366;4;195;195;195;214;468;468;468;468;454;380;331;228;554;522;468;723;1262;1575;2060;1144;1957;2004.86;2371.2;2002.2 -5105;'011;Western Africa;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;2312;2312;2312;2312;6;212;212;212;235;396;396;396;396;536;483;547;314;446;346;330;474;1331;1800;2959;2452;3355;3660.89;4376.24;3937.24 -5105;'011;Western Africa;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;2;2;2;15;15;15;15;15;17;15;15;15;15;15;21;21 -5105;'011;Western Africa;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;4;4;4;9;9;9;9;9;11;16;16;16;16;16;15;15 -5105;'011;Western Africa;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1288;159;74;347;422;463;999;241;929;965;2981;7247;4340;17796.89;19808.92;8888.92 -5105;'011;Western Africa;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;849;109;57;173;329;601;749;231;579;578;1903;1898;1501;5401;27440.72;11140.43 -5105;'011;Western Africa;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;64;74;74;74;19;19 -5105;'011;Western Africa;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;36;36;36;36;3;3 -5105;'011;Western Africa;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;6000;4000;4000;4000;11000;9000;9000;9000;9000;9000;9000;12000;12000;13000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;16000;37000;34000;48300;119800;106600;107100;107700;107700;107700;112700;50700;61700;61700 -5105;'011;Western Africa;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;910;664;991;1079;1019;1000;1000;900;900;900;900;1500;1105;1100;1500;3000;1700;1900;6146;4862;4427;5459;5385;4054;4351;6024;7497;7657;6564;7011;15902;15902;8639;9054;11023;7081;6167;5744;8345;5846;38534;39711;93352;90454;49762;24796;29952;13848.4;46047;29769 -5105;'011;Western Africa;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;141;126;188;148;160;191;268;169;311;311;311;172;231;277;244;735;276;338;1211;1032;781;1141;982;695;613;788;1229;1115;850;1530;2624;2624;2168;2524;2663;2259;2497;1792;2231;1647;7851;8122;17216;17839;11041;7356;8884;3476.95;12227;6734 -5105;'011;Western Africa;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2746;1815;1815;700;200;1354;666;0;0;0;0;2053;5724;5724;5492;5568;18712;13520;14511;17083;21271;30897;17582;12051;9933;8470;4160;8749;6542;8041.88;12137.25;14476.25 -5105;'011;Western Africa;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;246;246;176;38;158;75;0;0;0;0;201;666;666;662;681;3043;1923;3067.4;3808;4434;10575;2887;2074;1743;1815;683;948;522;1021;818.5;1924.5 -5105;'011;Western Africa;1876;Paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;12000;11000;10000;9000;16000;40000;59000;48000;53000;45000;43000;29000;21000;5000;3000;5500;1188;1000;0;0;0;97;150;113;97;1538;1238;1238;1238;1238;1238;1238;2538;2182;2182;2182;2182;2182;2182;2182;2182;2182;2182;2182 -5105;'011;Western Africa;1876;Paper and paperboard;5610;Import quantity;t;34400;34500;45100;60030;83200;100600;87300;80300;92700;138200;154800;117700;168100;212700;181300;218100;201810;206660;178400;166500;326900;238200;246300;189600;202600;144487;170233;247042;148937;220568;193047;200702;204761;206883;155841;170533;213486;307752;340736;346089;363312;374575;472971;524229;523849;503873;557105;613720;650986;622681;822347;520181;788916;871001;740070;826277;940236;969227;998025;1215664;925078.76;932568;878641 -5105;'011;Western Africa;1876;Paper and paperboard;5622;Import value;1000 USD;7676;9443;11129;13368;19535;21638;21470;20209;25421;39910;44678;40722;66390;123374;142828;178639;163303;189372;169438;183675;395478;274551;280085;199079;200586;141318;134468;224269;141346;180923;167856;131182;132363;144469;121568;119392;167381;215107;244427;239729;220653;213204;273642;374140;374504;373352;434209;626090;718117;793483;746569;515440;674266;773168;576905;629137;831422;909552;813920;1030283;845400.96;1171191;1010865 -5105;'011;Western Africa;1876;Paper and paperboard;5910;Export quantity;t;;;;;;100;200;200;;;;;;;;;;;;;;;;;;;0;;;;;345;318;255;226;110;782;381;1120;2764;5257;5263;7061;7939;7939;9063;9479;12406;11920;16483;10888.6;7784.07;8892.02;19235.1;12741;12741;12570;14360;20536;19628;51875.89;44073.67;29162.05 -5105;'011;Western Africa;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;20;39;37;;;;;;;;;;;;;;;;;;;0;;;;;244;289;203;187;114;515;277;611;1755;3029;3092;4391;5552;5552;6649;7809;17481;36429;13749;12136;9397.49;10027.36;18671;12070;10403;10872;13392;60616;13401;40118.65;19131.36;21213.72 -5105;'011;Western Africa;2042;Graphic papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;16000;20000;24000;29000;31000;21000;13000;3000;0;2500;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 -5105;'011;Western Africa;2042;Graphic papers;5610;Import quantity;t;22500;22000;24900;35800;44900;55500;37500;36300;39400;59200;71500;49700;69400;91100;76800;106600;92810;106460;77700;85100;148000;86500;83200;86900;96900;56252;35189;127571;69553;109545;105724;99720;86952;80741;42061;50824;96801;154223;151843;180259;187072;191240;216363;240498;240498;239737;229393;280849;300492;317592;413811;254277;432407;466601;372372;361466;476025;515792;558738;628777;460363.96;462685;479552 -5105;'011;Western Africa;2042;Graphic papers;5622;Import value;1000 USD;4233;5225;5173;6434;8571;8402;7679;8502;11128;16856;21235;16487;31027;58873;67727;100754;77582;99225;82517;92966;173063;89129;86925;97806;108790;49280;31311;120676;74330;106436;98659;71780;63553;70920;39708;39457;83148;113765;118500;135664;118955;112436;136116;167837;167837;174535;181921;302815;346936;403948;393472;241663;377267;390426;302671;265823;432168;484450;450482;532701;361728.13;618575;585533 -5105;'011;Western Africa;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92;283;255;215;110;316;138;855;907;2707;2675;3022;2931;2931;3953;3627;3646;3612;2886;3237.6;2493.07;2966.02;6585.1;3221;2928;3511;3636;2549;1698;7189.98;16925.05;5886.05 -5105;'011;Western Africa;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;202;203;177;114;311;151;470;436;1631;1614;2063;2036;2036;2796;3045;3810;4295;2777;3259;3116.49;3153.36;6433;2746;2208;2914;3893;49151;1371;1881;4004.72;4260.72 -5105;'011;Western Africa;1671;Newsprint;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;16000;20000;24000;29000;31000;21000;13000;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 -5105;'011;Western Africa;1671;Newsprint;5610;Import quantity;t;8900;12100;12500;19100;26900;38200;17000;11700;15000;22600;31200;23300;23500;35200;34150;37600;29150;39500;26100;32700;37900;24100;25000;21500;22000;6892;11148;13928;7702;12597;15397;5734;11687;10178;26370;25749;22021;28827;29616;26871;33431;40716;36504;41462;41462;45674;57593;55235;76458;64566;65528;61478;61878;66770;45494;55860;52207;44091;50605;43798;26949.23;20155;21091 -5105;'011;Western Africa;1671;Newsprint;5622;Import value;1000 USD;1560;1855;1653;2308;2587;2873;2390;1761;2467;4547;7040;5569;6649;13772;16922;20180;17915;21639;15328;23632;27009;16943;17233;15963;22498;4290;7462;8022;5638;7781;7948;2496;5009;4508;18507;14056;10322;13302;12910;11783;16264;17396;17228;21283;21283;26625;36782;40534;47710;60461;47252;51140;49158;46557;27167;32342;29443;33456;33136;28111;18207.96;19616;25095 -5105;'011;Western Africa;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;;0;0;0;14;14;794;845;845;845;824;1224;1224;1722;1222;1830;656;1223;1103;762;476;954;947;489;286;330;300;236;301;897.05;744.05 -5105;'011;Western Africa;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;;0;0;0;9;9;427;392;392;392;481;806;806;1070;854;1254;706;877;910;676;494;711;711;314;225;262;203;126;225;974.72;802.72 -5105;'011;Western Africa;1674;Printing and writing papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2500;1000;1000;;;;;;;;;;;;;;;;;;;;;;;;;; -5105;'011;Western Africa;1674;Printing and writing papers;5610;Import quantity;t;13600;9900;12400;16700;18000;17300;20500;24600;24400;36600;40300;26400;45900;55900;42650;69000;63660;66960;51600;52400;110100;62400;58200;65400;74900;49360;24041;113643;61851;96948;90327;93986;75265;70563;15691;25075;74780;125396;122227;153388;153641;150524;179859;199036;199036;194063;171800;225614;224034;253026;348283;192799;370529;399831;326878;305606;423818;471701;508133;584979;433414.73;442530;458461 -5105;'011;Western Africa;1674;Printing and writing papers;5622;Import value;1000 USD;2673;3370;3520;4126;5984;5529;5289;6741;8661;12309;14195;10918;24378;45101;50805;80574;59667;77586;67189;69334;146054;72186;69692;81843;86292;44990;23849;112654;68692;98655;90711;69284;58544;66412;21201;25401;72826;100463;105590;123881;102691;95040;118888;146554;146554;147910;145139;262281;299226;343487;346220;190523;328109;343869;275504;233481;402725;450994;417346;504590;343520.17;598959;560438 -5105;'011;Western Africa;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;283;255;215;110;302;124;61;62;1862;1830;2198;1707;1707;2231;2405;1816;2956;1663;2134.6;1731.07;2490.02;5631.1;2274;2439;3225;3306;2249;1462;6888.98;16028;5142 -5105;'011;Western Africa;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;202;203;177;114;302;142;43;44;1239;1222;1582;1230;1230;1726;2191;2556;3589;1900;2349;2440.49;2659.36;5722;2035;1894;2689;3631;48948;1245;1656;3030;3458 -5105;'011;Western Africa;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15003;15048;13583;16193;29329;39996;37003;37003;36223;17750;13695;10439;14953;15850;11900;24023;18044;13854;12936;6982;4879;5769;6204;7343;3258;6925 -5105;'011;Western Africa;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12214;11439;11350;10638;14734;24278;22708;22708;21764;12391;12506;10648;12016;13257;19018;21539;15201;12420;11840;7257;7875;6359;5266;8004.33;4694;6791 -5105;'011;Western Africa;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;109;110;11;15;15;15;15;23;190;290;174.6;191.07;133.02;107.1;134;442;276;278;317;180;174;1921;1940 -5105;'011;Western Africa;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;23;25;11;14;14;14;14;33;210;322;161;696.25;634.36;84;121;151;361;365;291;220;207;1344;1434 -5105;'011;Western Africa;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76311;74717;98311;97729;86217;105922;111304;111304;108548;101199;159591;171701;206403;244304;147220;234880;276384;236285;223908;367184;368321;458587;525516;322688.59;392768;414383 -5105;'011;Western Africa;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63263;67888;82741;67003;58614;71607;82931;82931;85232;84608;191048;237098;287436;243460;137137;207469;235632;200025;166012;347299;352996;376959;453848;240848.37;535513;516067 -5105;'011;Western Africa;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103;46;47;1647;1614;1638;1499;1499;1482;1373;684;1334;704;880;984;1413;4318;1503;960;1151;1321;860;695;2838.95;1821;2814 -5105;'011;Western Africa;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118;31;32;1109;1090;1118;1040;1040;1040;944;1064;1533;693;876;1216.24;1049;4525;1531;1186;857;835;717;594;939;1155;1340 -5105;'011;Western Africa;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34082;32462;41494;39719;34978;33941;50729;50729;49292;52851;52328;41894;31670;88129;33679;111626;105403;76739;68762;49652;98501;43777;53259;103383.14;46504;37153 -5105;'011;Western Africa;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24986;26263;29790;25050;21692;23003;40915;40915;40914;48140;58727;51480;44035;89503;34368;99101;93036;63059;55629;48169;90123;34028;45476;94667.47;58752;37580 -5105;'011;Western Africa;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;6;6;106;106;549;193;193;734;1017;1109;1432;669;1080;556;944;1206;637;1037;1798;1707;1072;587;3876.03;12286;388 -5105;'011;Western Africa;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;5;5;107;107;453;176;176;672;1233;1459;1846;885;1312;528;976;1113;383;557;1471;2431;47940;431;510;531;684 -5105;'011;Western Africa;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;12000;11000;10000;9000;16000;40000;43000;28000;29000;16000;12000;8000;8000;2000;3000;3000;188;0;;;;97;150;113;97;1538;1238;1238;1238;1238;1238;1238;2538;2182;2182;2182;2182;2182;2182;2182;2182;2182;2182;2182 -5105;'011;Western Africa;1675;Other paper and paperboard;5610;Import quantity;t;11900;12500;20200;24230;38300;45100;49800;44000;53300;79000;83300;68000;98700;121600;104500;111500;109000;100200;100700;81400;178900;151700;163100;102700;105700;88235;135044;119471;79384;111023;87323;100982;117809;126142;113780;119709;116685;153529;188893;165830;176240;183335;256608;283731;283351;264136;327712;332871;350494;305089;408536;265904;356509;404400;367698;464811;464211;453435;439287;586887;464714.8;469883;399089 -5105;'011;Western Africa;1675;Other paper and paperboard;5622;Import value;1000 USD;3443;4218;5956;6934;10964;13236;13791;11707;14293;23054;23443;24235;35363;64501;75101;77885;85721;90147;86921;90709;222415;185422;193160;101273;91796;92038;103157;103593;67016;74487;69197;59402;68810;73549;81860;79935;84233;101342;125927;104065;101698;100768;137526;206303;206667;198817;252288;323275;371181;389535;353097;273777;296999;382742;274234;363314;399254;425102;363438;497582;483672.83;552616;425332 -5105;'011;Western Africa;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;100;200;200;;;;;;;;;;;;;;;;;;;0;;;;;253;35;0;11;0;466;243;265;1857;2550;2588;4039;5008;5008;5110;5852;8760;8308;13597;7651;5291;5926;12650;9520;9813;9059;10724;17987;17930;44685.91;27148.62;23276 -5105;'011;Western Africa;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;20;39;37;;;;;;;;;;;;;;;;;;;0;;;;;178;87;0;10;0;204;126;141;1319;1398;1478;2328;3516;3516;3853;4764;13671;32134;10972;8877;6281;6874;12238;9324;8195;7958;9499;11465;12030;38237.65;15126.64;16953 -5105;'011;Western Africa;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;34;1326;1481;5617;6342;6079;8547;8547;7420;8005;8919;10199;11924;14565;15699;14611;17437;13652;15697;24811;24755;24275;56959;44231.13;30699;30814 -5105;'011;Western Africa;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;33;1319;1576;5560;5550;5559;9104;9104;8039;9657;13349;12833;14753;19840;24513;19909;24782;17640;17761;27402;29529;25570;64515;44617.2;47178;45880 -5105;'011;Western Africa;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;26;26;26;26;39;319;1062;119;107;152;588;1068;1828;1446;2731;4716;3707;3459;18777.64;1959;2335 -5105;'011;Western Africa;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;25;25;25;23;51;630;23361;168;173;219;780;1179;1814;1861;2981;3990;2858;2860;21097.38;1949;1184 -5105;'011;Western Africa;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 -5105;'011;Western Africa;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111014;161555;153036;149767;159013;223001;242182;241802;239407;303531;303174;314149;274056;361644;239949;331061;368101;343991;430647;434125;419011;403642;519680;412348.75;431468;361726 -5105;'011;Western Africa;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69182;99240;87449;76445;76647;109641;159952;160316;161868;213148;259314;289775;323446;281253;234197;259009;314071;238043;305060;348190;364058;308182;395390;400742.08;470555;346426 -5105;'011;Western Africa;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;22;1850;2543;2566;3768;4693;4693;4829;5518;6765;6539;12960;7143;4648;4857;10643;7116;7920;5712;5578;14134;14121;25711.26;24906;20769 -5105;'011;Western Africa;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;15;1294;1373;1402;2152;3187;3187;3369;4344;7941;7282;9873;7965;5356;5579;10337;7075;5915;4520;5012;8339;8531;16183.27;12298;14825 -5105;'011;Western Africa;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;;;;;;;;;;;;;;12000;11000;10000;9000;16000;40000;43000;28000;29000;16000;12000;8000;8000;2000;3000;3000;188;0;;;;;;;;;;;;;;;;;;;;;;;;;; -5105;'011;Western Africa;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;2400;3000;5800;8700;12100;19100;23300;21600;25100;28000;33300;25000;41800;43900;38000;46300;40700;37200;38300;43600;91200;77000;86100;68000;76300;58700;91000;65700;45500;54400;53600;47297;59917;67705;67701;76100;73336;;;;;;;;;;;;;;;;;;;;;;;;;; -5105;'011;Western Africa;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;661;1051;1446;1952;3259;4130;4529;3726;4363;5946;6321;6813;11878;21790;24754;25384;28554;34130;30658;37295;88000;72950;79050;62319;60877;67519;57643;46644;28009;29070;29697;27046;31498;35703;48073;45074;47526;;;;;;;;;;;;;;;;;;;;;;;;;; -5105;'011;Western Africa;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73575;102260;94640;95259;103148;129903;157871;157871;156510;194167;216794;195467;155574;223520;165826;179024;200030;204602;290677;291237;268319;257449;334989;240363.53;250093;193451 -5105;'011;Western Africa;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37612;50286;43922;36409;37925;49673;91325;91325;91309;120013;141304;124497;169609;134656;153132;111804;122602;127104;163541;171429;197020;146743;172571;167769.68;219551;125748 -5105;'011;Western Africa;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;22;22;622;622;988;937;937;990;1061;1845;1880;7026;1356;1301;1400;2463;2391;4240;2893;2461;3602;7012;17544.18;19421;15276 -5105;'011;Western Africa;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;15;15;333;333;460;446;446;500;713;1665;1652;4172;1270;998;1529;2502;2155;2570;1616;1664;1691;3175;9880.27;5575;7742 -5105;'011;Western Africa;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14520;23624;23582;18423;15376;32896;43925;43545;44313;63124;45008;69867;73202;89298;40484;114333;102819;97524;86090;48340;56034;54121;64190;58420.38;71364;70964 -5105;'011;Western Africa;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13660;19864;18176;16938;12884;22747;36565;36929;38742;54891;72255;98184;87710;95429;44599;104825;121358;75446;82266;79968;74781;73305;111321;104089.32;109562;105998 -5105;'011;Western Africa;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;228;321;321;410;631;631;587;1282;1380;1485;1434;1177;1212;2059;2053;2090;2032;990;1462;5911;2445;2403;1395;1387 -5105;'011;Western Africa;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;624;385;385;449;586;586;569;1359;2386;2262;2597;1686;1590;1748;1882;1788;1726;1076;1223;1777;973;957;2151;2102 -5105;'011;Western Africa;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20336;32599;31734;32050;36639;55533;37485;37485;35392;43556;37341;47491;42352;47119;28968;32392;61000;41171;52692;86557;90405;89695;118213;112109.85;107423;94823 -5105;'011;Western Africa;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16674;27648;23920;21275;23988;35059;30659;30659;30279;37070;42745;66110;63625;50010;30107;36310;66024;34468;58397;90521;89107;86500;109470;127404.08;138849;112526 -5105;'011;Western Africa;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1600;1600;1623;2069;2877;2877;3002;2895;3249;3094;4439;4544;2067;1327;6017;2511;1527;1708;1534;4547;4595;5695.08;4042;4058 -5105;'011;Western Africa;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;655;655;684;1178;2094;2094;2235;2161;3761;3287;3039;4933;2689;2225;5840;3011;1507;1716;2018;4804;4323;5286;4553;4962 -5105;'011;Western Africa;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 -5105;'011;Western Africa;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2583;3072;3080;4035;3850;4669;2901;2901;3192;2684;4031;1324;2928;1707;4671;5312;4252;694;1188;7991;4253;2377;2288;1455;2588;2488 -5105;'011;Western Africa;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1236;1442;1431;1823;1850;2162;1403;1403;1538;1174;3010;984;2502;1158;6359;6070;4087;1025;856;6272;3150;1634;2028;1479;2593;2154 -5105;'011;Western Africa;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;301;248;248;250;280;291;80;61;66;68;71;110;124;121;121;121;74;69;69;48;48 -5105;'011;Western Africa;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65;61;61;65;111;129;81;65;76;79;77;113;121;112;112;107;67;60;60;19;19 -5105;'011;Western Africa;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97;150;113;97;138;138;138;138;138;138;138;1438;1082;1082;1082;1082;1082;1082;1082;1082;1082;1082;1082 -5105;'011;Western Africa;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;1400;1900;4100;6200;9400;11700;12600;16400;21300;43300;42800;32500;46400;68900;60100;57500;60000;52800;53300;28000;75300;58600;60200;20900;16400;12000;25000;22400;16000;12000;11700;41760;42048;41820;29391;28445;30145;42481;26012;11313;20856;17980;27528;33002;33002;17309;16176;20778;26146;19109;32327;10256;10837;18862;10055;18467;5275;9669;11370;10248;8134.92;7716;6549 -5105;'011;Western Africa;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;707;1198;1768;2392;4351;4618;4848;6176;7934;14825;14796;14134;19547;37073;45312;47077;51217;48550;49174;44551;123473;97865;97997;26222;18412;12201;27332;27224;21560;20451;20001;23647;23930;23682;19098;21304;23146;32127;25368;15040;19693;18571;22326;37247;37247;28910;29483;50612;68573;51336;52004;15067;18081;43889;18551;40493;23662;31515;29686;37677;38313.56;34883;33026 -5105;'011;Western Africa;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;100;200;200;;;;;;;;;;;;;;;;;;;;;;;;41;1;0;0;0;0;243;243;7;7;15;245;289;289;255;295;1676;707;518;401;491;481;939;576;447;616;430;146;350;197;283.62;172 -5105;'011;Western Africa;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;20;39;37;;;;;;;;;;;;;;;;;;;;;;;;41;1;0;0;0;0;126;126;25;25;65;151;304;304;461;369;5100;1491;931;739;706;515;722;435;419;457;497;268;639;957;879.64;944 -5105;'011;Western Africa;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;195594;237771;274622;261570;274978;324424;305621 -5105;'011;Western Africa;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41221.9;38315;34750;36254;34816;34799;40660 -5105;'011;Western Africa;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11668;12040;12891;12871;12447;12701;11962 -5105;'011;Western Africa;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25466;23195;19170;18599;16837;19863;20250 -5105;'011;Western Africa;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11271;11478;11381;11850;11555;11574;11576 -5105;'011;Western Africa;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16726;15074;2997;1077;4819;8168;8037 -5105;'011;Western Africa;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;397;562;1510;1021;892;1127;386 -5105;'011;Western Africa;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8740;8121;16173;17522;12018;11695;12213 -5105;'011;Western Africa;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6162;7953;5148;10531;9237;12009;11325 -5105;'011;Western Africa;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1037;2579;2638;3145;2571;2492;3251 -5105;'011;Western Africa;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5030;6714;18572;5326;5915;3221;2837 -5105;'011;Western Africa;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2312;1465;2013;1824;1682;909;1311 -5105;'011;Western Africa;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25426;29917;33306;37272;37531;44579;47205 -5105;'011;Western Africa;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2053.9;2621;4665;5423;6879;5633;7302 -5105;'011;Western Africa;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;198 -5105;'011;Western Africa;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;353;385 -5105;'011;Western Africa;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1863;1732 -5105;'011;Western Africa;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2167;2605 -5105;'011;Western Africa;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1 -5105;'011;Western Africa;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1 -5105;'011;Western Africa;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;248;514 -5105;'011;Western Africa;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;357;802 -5105;'011;Western Africa;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;141743;165150;165930;183896;197926;237523;211332 -5105;'011;Western Africa;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8188;5947;4749;4902;4118;3991;6170 -5105;'011;Western Africa;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;441;1461;4165;1432;1198;1423;4112 -5105;'011;Western Africa;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;54;11;11;11;32;64 -5105;'011;Western Africa;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5124;14536;34610;10242;10724;12968;16848 -5105;'011;Western Africa;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2165;2454;1504;2350;2718;1879;2312 -5105;'011;Western Africa;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;534510;368244;375526;491275;513891;579816;548150 -5105;'011;Western Africa;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86368;123626;108425;107735;168775;142490;133809 -5105;'011;Western Africa;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3948;1197;809;1333;1290;1753;891 -5105;'011;Western Africa;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1801;1812;1797;1799;1799;1840;1781 -5105;'011;Western Africa;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;143046;41342;23196;41809;31940;35355;30001 -5105;'011;Western Africa;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;533;571;322;462;548;638 -5105;'011;Western Africa;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33512;36564;33215;47875;40177;38623;43544 -5105;'011;Western Africa;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7690;7633;8459;9370;22739;14014;19572 -5105;'011;Western Africa;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;161475;187010;204615;243238;274425;301769;277305 -5105;'011;Western Africa;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68172;100381;87371;87456;133732;115875;98872 -5105;'011;Western Africa;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;192529;102131;113691;157020;166059;202316;196409 -5105;'011;Western Africa;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8205;13267;10227;8788;10043;10213;12946 -5200;'019;Americas;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90779053.5;97454349.4;91211827.66;89472700.66;120070014.1;136230996.2;106998817.4 -5200;'019;Americas;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90195902.3;98798847;87548315;81513072;105665535.6;113247766.6;96025032.29 -5200;'019;Americas;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;1623696;1691114;1697092;1860038;1988288;2194305;2158915;2937210;3246510;3136368;3566407;4301782;5238725;6306746;5826728;7032403;8143812;9871106;10759794;11081346;11434488;11556525;12113118;13751011;13949791;14653573;17011365;19063633;20027987;19738711;17771518;20596715;22148293;25348393;31420413;31731615;34342830;31613287;34535311;37238995;34366352;33391128.1;35467391;44260636;45666771;46927883;43522186.3;42440460;31432030.9;37000630.84;38118618.47;39117329.38;41736823.09;43669020.18;41367917.86;41134268.76;42824704.94;46191720.4;41722812.66;40686054.66;58069998.08;64104233.24;47538322.43 -5200;'019;Americas;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;1800598;1838909;1972310;2229701;2375244;2554815;2661383;3735725;4189888;4629188;4704519;5641628;7490733;9709738;8972472;10938974;11819443;13104062;16935091;19552951;18865164;16756130;17680153;19425117;18434130;20595948;25925392;31955780;34177653;34071802;33033013;35933444;36539983;41136696;52576085;48024182;47660497;43614140;46022296;50575794;44072870;43025460;45629239;54665627;56243260;57501125;59847901;60243495;48061229;59403268.1;64664562.73;62795556.72;67086703.43;68457572.89;64331205.79;63744014.45;69561198.47;77350838;65945457;60749337;80364016.63;84641663.61;69280093.29 -5200;'019;Americas;1861;Roundwood;5516;Production;m3;585751415;598896128;598114091;624778459;638177365;650988154;649282925;675913260;687204166;699457469;709345050;712367946;739289640;737533898;691196800;753363798;773963080;830866396;872411240;857531952;842831820;830601415;903829250;953065409;951562913;1003500488;1029631831;1033414992;1043056403;1028961896;1016617433;1028000420;1023530967;1045316752;1056123913;1047094210;1056922929;1052456974;1080492691;1093721537;1047339926;1068626050;1076655117;1116031456;1110089176;1079628365;1041211554;969754531;894237554;972857390;1022081236;1030002874;1043454082;1047814142;1040816321;1099385268;1113794358;1149327688;1109797791;1091026975;1138165603;1158087609;1104711049 -5200;'019;Americas;1861;Roundwood;5616;Import quantity;m3;5559600;5846900;5538400;4622600;5070000;4793400;4903400;4974300;4578900;5022600;4907500;5914300;5290400;5665500;4761600;5035100;4799100;5089600;5718000;5208600;4622300;4277800;5127500;5721600;5858600;6210000;6734900;6541300;5844100;1962331;2678574;5732485;5519013;6824611;7871194;7051492;7741009;8756747;8413324;9256340;10368689;9992186;9589469;8982831;10423014;9291799;7852755;6470997;5679774;5895309.5;5647339.17;6091055.16;6276304.71;5734059.23;6156922;7750545;5653702;7272218;6099840;6110989;4746952;4546499.08;4326228.08 -5200;'019;Americas;1861;Roundwood;5622;Import value;1000 USD;62740;62095;60769;57302;69707;67947;70031;69305;68905;80969;73326;87876;87425;119033;111584;107469;114158;129883;164817;166237;162601;155135;182994;193936;187431;193540;217528;242337;249395;220831;243860;266642;281785;380175;498345;405627;457336;509183;546721;630686;622895;623129;613537;692455;785651;776022;632430.3;475230;419802.7;415440.35;389737.47;444845.38;470130.42;480383.3;479786;427250;422789.85;518892;477503;499708;607853;665536.06;660780.06 -5200;'019;Americas;1861;Roundwood;5916;Export quantity;m3;6859000;7082900;8590700;9573900;10340700;11680900;13965000;16203100;15193100;17726300;14296600;17244800;17431900;15805700;15127900;17797900;17436200;18806200;21503208;19318700;15059300;18168200;20780800;21602100;22710957;22206255;26051086;30083959;27825408;25877593;24391200;22239214;17028046;17422073;19590617;16800115;15818498;17466289;16434974;17876900;17928999;18845221;17953594;17177828;18291610;17297279;16608102;14593274;13353340;17072416;21389212;20076780;23314635;22590106;19523663;22037459;22700250;25804216;20154321;18688026;22237598.28;18003551;14966865 -5200;'019;Americas;1861;Roundwood;5922;Export value;1000 USD;108271;115295;129723;147982;189737;206438;269670;351869;365341;447755;361325;489928;875783;805564;803149;1006166;1078085;1305509;1908414;1787079;1245601;1429258;1383397;1443034;1479149;1521756;2040615;2715411;2755605;2769153;2448045;2590104;2848545;2626574;2740075;2464234;2038043;1686834;1751159;1899145;1683881;1762625;1751043;1974907;2103877;2130740;2312308;2116747;1739344;2451380;3169085.43;2883477;3563556.42;3573657.08;2771654;3045873;3754739.02;4020453;2936256;2645300;3970928.36;3563082;3005321 -5200;'019;Americas;1862;Roundwood, coniferous;5516;Production;m3;319374677;336578842;332473868;353367117;363798371;375383504;373992368;395262530;401811952;408437233;415581817;411976149;433786691;426608752;392533330;443338109;455078889;485409683;505528338;475846626;457807225;434927997;495103268;531798176;534608603;565986605;599263888;598165195;598168153;563090286;527674887;547942151;531235259;542393449;549386625;540144578;552992759;538262188;562429644;568251150;536393094;553424136;553142544;594817618;592803287;567954667;528135422;469007056;413815345;493070610;514824221;512141001;523525980;520089093;530517858;550799118;560834989;589269412;570214339;565759433;596162585;585304341;543404661 -5200;'019;Americas;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3540790;5267351;4164352;4453575;3056837;2846466;2855470 -5200;'019;Americas;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;249019.46;339386;300490;353860;407939;457731;494475 -5200;'019;Americas;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17620000;20857118;15652810;14128807;15845328.07;11432558;9735451 -5200;'019;Americas;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2391290.47;2535533;1774544;1584706;2401111.42;1890278;1544874 -5200;'019;Americas;1863;Roundwood, non-coniferous;5516;Production;m3;266376738;262317286;265640223;271411342;274378994;275604650;275290557;280650730;285392214;291020236;293763233;300391797;305502949;310925146;298663470;310025689;318884191;345456713;366882902;381685326;385024595;395673418;408725982;421267233;416954310;437513883;430367943;435249797;444888250;465871610;488942546;480058269;492295708;502923303;506737288;506949632;503930170;514194786;518063047;525470387;510946832;515201914;523512573;521213838;517285889;511673698;513076132;500747475;480422209;479786780;507257015;517861873;519928102;527725049;510298463;548586150;552959369;560058276;539583452;525267542;542003018;572783268;561306388 -5200;'019;Americas;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2112912;2004867;1935488;1657414;1690115;1700033.08;1470758.08 -5200;'019;Americas;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;173770.4;179506;177013;145848;199914;207805.06;166305.06 -5200;'019;Americas;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5080250;4947098;4501511;4559219;6392270.2;6570993;5231414 -5200;'019;Americas;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1363448.55;1484920;1161712;1060594;1569816.93;1672804;1460447 -5200;'019;Americas;1864;Wood fuel;5516;Production;m3;217140092;209478305;208863476;212149544;211056234;208199931;211468610;215134653;214271135;220647562;222157735;224102415;224631241;229482791;230814493;232614591;242606073;257448597;271557125;283158667;291764164;318902813;319542167;329860278;326798198;331947550;317563406;320301051;320440437;324265903;349907293;330319827;321011360;318741833;318503694;315298133;312210816;311321900;311332441;314350228;315558115;314293159;316941833;320527089;299523830;296795456;301834114;300317933;289386432;290481991;298419470;305939297;310301028;316220364;307318138;331844270;330859378;340577307;338531498;327279746;345760500;351239763;344221473 -5200;'019;Americas;1864;Wood fuel;5616;Import quantity;m3;10000;8800;13500;7300;3900;1100;700;1400;400;500;6000;5900;3500;1300;700;900;900;900;1000;1000;2600;1100;1100;2900;2800;2800;2800;2800;2800;12200;11600;257178;495843;561023;357402;258515;264214;192050;161690;157355;176947;226085;214010;220911;261686;267713;191019;256457;198479;179457.5;210967.17;210352.16;213663.58;243128;185171;156510;47907;165247;92616;105631;127997;86574.08;96516.08 -5200;'019;Americas;1864;Wood fuel;5622;Import value;1000 USD;106;118;159;89;28;11;13;14;6;7;29;24;14;73;56;94;94;94;131;131;568;120;121;117;100;100;100;100;100;590;595;10358;17431;24482;16406;14017;14707;7644;11709;6309;7139;9325;8418;10536;11587;12496;12842;17493;13646;14310;16004;19707;16696.32;18710;16239;19189;12597;12865;19840;24066;31462;24308.06;30232.06 -5200;'019;Americas;1864;Wood fuel;5916;Export quantity;m3;1800;1100;1300;500;400;300;300;;;;;;;;500;100;100;600;2100;1400;1600;2700;1000;4700;2800;2800;2800;2800;2800;8400;3800;257607;452210;548362;334378;370358;235558;299795;220085;358334;375095;404236;400842;283126;470530;361969;382636;341406;308063;317922;644193;624734;507420;445621;462223;383015;416863;425169;187307;94172;123894.28;129005;135910 -5200;'019;Americas;1864;Wood fuel;5922;Export value;1000 USD;6;4;17;6;2;3;1;;;;;;;;44;2;15;100;370;250;291;251;87;88;33;33;33;33;33;348;188;12227;18967;27288;25047;27608;20464;10452;8186;8911;9320;10006;11025;10346;17093;13582;19773;18094;16352;23673;42194;44303;31986.22;27604;33978;27294;28314;28818;11517;9697;11112.36;16819;14181 -5200;'019;Americas;1627;Wood fuel, coniferous;5516;Production;m3;35008154;32800227;31113261;31573902;31492556;32968489;33367353;33424023;33038837;34161334;34123002;34535734;34371992;35380653;35541631;35838310;37549590;40149984;44069331;46038619;47627210;52868090;52882361;54855969;54339396;55298882;52459381;52783964;52905922;53284055;55836656;52245866;51788168;51118742;50301826;49801679;49023751;48151188;48980544;49747050;50121666;49918585;52547965;52783850;46915037;47749617;48575508;49254465;48529189;48583617;46560656;44855251;46640325;47073357;47065865;49135270;49978033;69932278;70617143;63834757;71573649;70318037;69510377 -5200;'019;Americas;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47858;161792;53122;23202;34357;33220;36100 -5200;'019;Americas;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12590;12475;11380;5985;8710;9157;9624 -5200;'019;Americas;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;395035;398434;142746;68201;89304.07;88664;84726 -5200;'019;Americas;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25970;25438;7075;7126;7681.43;12255;8221 -5200;'019;Americas;1628;Wood fuel, non-coniferous;5516;Production;m3;182131938;176678078;177750215;180575642;179563678;175231442;178101257;181710630;181232298;186486228;188034733;189566681;190259249;194102138;195272862;196776281;205056483;217298613;227487794;237120048;244136954;266034723;266659806;275004309;272458802;276648668;265104025;267517087;267534515;270981848;294070637;278073961;269223192;267623091;268201868;265496454;263187065;263170712;262351897;264603178;265436449;264374574;264393868;267743239;252608793;249045839;253258606;251063468;240857243;241898374;251858814;261084046;263660703;269147007;260252273;282709000;280881345;270645029;267914355;263444989;274186851;280921726;274711096 -5200;'019;Americas;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;3455;39494;82429;93640;53354.08;60416.08 -5200;'019;Americas;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;390;8460;18081;22752;15151.06;20608.06 -5200;'019;Americas;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21828;26735;44561;25971;34590.2;40341;51184 -5200;'019;Americas;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2344;3380;4442;2571;3430.93;4564;5960 -5200;'019;Americas;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;10000;8800;13500;7300;3900;1100;700;1400;400;500;6000;5900;3500;1300;700;900;900;900;1000;1000;2600;1100;1100;2900;2800;2800;2800;2800;2800;12200;11600;257178;495843;561023;357402;258515;264214;192050;161690;157355;176947;226085;214010;220911;261686;267713;191019;256457;198479;179457.5;210967.17;210352.16;213663.58;243128;185171;156510;;;;;;; -5200;'019;Americas;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;106;118;159;89;28;11;13;14;6;7;29;24;14;73;56;94;94;94;131;131;568;120;121;117;100;100;100;100;100;590;595;10358;17431;24482;16406;14017;14707;7644;11709;6309;7139;9325;8418;10536;11587;12496;12842;17493;13646;14310;16004;19707;16696.32;18710;16239;19189;;;;;;; -5200;'019;Americas;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;1800;1100;1300;500;400;300;300;;;;;;;;500;100;100;600;2100;1400;1600;2700;1000;4700;2800;2800;2800;2800;2800;8400;3800;257607;452210;548362;334378;370358;235558;299795;220085;358334;375095;404236;400842;283126;470530;361969;382636;341406;308063;317922;644193;624734;507420;445621;462223;383015;;;;;;; -5200;'019;Americas;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;6;4;17;6;2;3;1;;;;;;;;44;2;15;100;370;250;291;251;87;88;33;33;33;33;33;348;188;12227;18967;27288;25047;27608;20464;10452;8186;8911;9320;10006;11025;10346;17093;13582;19773;18094;16352;23673;42194;44303;31986.22;27604;33978;27294;;;;;;; -5200;'019;Americas;1865;Industrial roundwood;5516;Production;m3;368611323;389417823;389250615;412628915;427121131;442788223;437814315;460778607;472933031;478809907;487187315;488265531;514658399;508051107;460382307;520749207;531357007;573417799;600854115;574373285;551067656;511698602;584287083;623205131;624764715;671552938;712068425;713113941;722615966;704695993;666710140;697680593;702519607;726574919;737620219;731796077;744712113;741135074;769160250;779371309;731781811;754332891;759713284;795504367;810565346;782832909;739377440;669436598;604851122;682375399;723661766;724063577;733153054;731593778;733498183;767540998;782934980;808750381;771266293;763747229;792405103;806847846;760489576 -5200;'019;Americas;1865;Industrial roundwood;5616;Import quantity;m3;5549600;5838100;5524900;4615300;5066100;4792300;4902700;4972900;4578500;5022100;4901500;5908400;5286900;5664200;4760900;5034200;4798200;5088700;5717000;5207600;4619700;4276700;5126400;5718700;5855800;6207200;6732100;6538500;5841300;1950131;2666974;5475307;5023170;6263588;7513792;6792977;7476795;8564697;8251634;9098985;10191742;9766101;9375459;8761920;10161328;9024086;7661736;6214540;5481295;5715852;5436372;5880703;6062641.13;5490931.23;5971751;7594035;5605795;7106971;6007224;6005358;4618955;4459925;4229712 -5200;'019;Americas;1865;Industrial roundwood;5622;Import value;1000 USD;62634;61977;60610;57213;69679;67936;70018;69291;68899;80962;73297;87852;87411;118960;111528;107375;114064;129789;164686;166106;162033;155015;182873;193819;187331;193440;217428;242237;249295;220241;243265;256284;264354;355693;481939;391610;442629;501539;535012;624377;615756;613804;605119;681919;774064;763526;619588.3;457737;406156.7;401130.35;373733.47;425138.38;453434.1;461673.3;463547;408061;410192.85;506027;457663;475642;576391;641228;630548 -5200;'019;Americas;1865;Industrial roundwood;5916;Export quantity;m3;6857200;7081800;8589400;9573400;10340300;11680600;13964700;16203100;15193100;17726300;14296600;17244800;17431900;15805700;15127400;17797800;17436100;18805600;21501108;19317300;15057700;18165500;20779800;21597400;22708157;22203455;26048286;30081159;27822608;25869193;24387400;21981607;16575836;16873711;19256239;16429757;15582940;17166494;16214889;17518566;17553904;18440985;17552752;16894702;17821080;16935310;16225466;14251868;13045277;16754494;20745019;19452046;22807215;22144485;19061440;21654444;22283387;25379047;19967014;18593854;22113704;17874546;14830955 -5200;'019;Americas;1865;Industrial roundwood;5922;Export value;1000 USD;108265;115291;129706;147976;189735;206435;269669;351869;365341;447755;361325;489928;875783;805564;803105;1006164;1078070;1305409;1908044;1786829;1245310;1429007;1383310;1442946;1479116;1521723;2040582;2715378;2755572;2768805;2447857;2577877;2829578;2599286;2715028;2436626;2017579;1676382;1742973;1890234;1674561;1752619;1740018;1964561;2086784;2117158;2292535;2098653;1722992;2427707;3126891.43;2839174;3531570.2;3546053.08;2737676;3018579;3726425.02;3991635;2924739;2635603;3959816;3546263;2991140 -5200;'019;Americas;1866;Industrial roundwood, coniferous;5516;Production;m3;284366523;303778615;301360607;321793215;332305815;342415015;340625015;361838507;368773115;374275899;381458815;377440415;399414699;391228099;356991699;407499799;417529299;445259699;461459007;429808007;410180015;382059907;442220907;476942207;480269207;510687723;546804507;545381231;545262231;509806231;471838231;495696285;479447091;491274707;499084799;490342899;503969008;490111000;513449100;518504100;486271428;503505551;500594579;542033768;545888250;520205050;479559914;419752591;365286156;444486993;468263565;467285750;476885655;473015736;483451993;501663848;510856956;519337134;499597196;501924676;524588936;514986304;473894284 -5200;'019;Americas;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1201704;1626984;4381963;3951893;4551717;5814385;5241931;5364431;6603553;6101234;6740599;7500661;6804802;6883193;5920187;7623915;6751594;5809701;4299389;3795033;3599417;3361961;3569051;3945133;3278220.1;3680066;5273547;3492932;5105559;4111230;4430373;3022480;2813246;2819370 -5200;'019;Americas;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;143769;162630;163828;166375;230462;322876;242592;269597;311935;333024;391087;381283;383785;360213;387737;506929;527230;420803.3;275278;252978.1;232093.35;229253.09;262907;279054;257098;276306;233089;236429.46;326911;289110;347875;399229;448574;484851 -5200;'019;Americas;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23035203;21762221;19492463;14746686;14261556;15390326;13330626;11832852;13146072;12522977;12717570;12913055;13113871;12615777;11172838;12674072;11895550;11134798;10487010;10049735;13290025;17576666;16100375;19607746;18198927;15447507;17432123;17224965;20458684;15510064;14060606;15756024;11343894;9650725 -5200;'019;Americas;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2414275;2118834;2246100;2514869;2228105;2284182;2056028;1546563;1198508;1267010;1317138;1110356;1130144;1090849;1212089;1331146;1293089;1232910;1183194;1049514;1495911;2187414;1910775;2579953.2;2472523.08;1813324;1878347;2365320.47;2510095;1767469;1577580;2393430;1878023;1536653 -5200;'019;Americas;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1201704;1626984;4381963;3951893;4551717;5814385;5241931;5364431;6603553;6101234;6740599;7500661;6804802;6883193;5920187;7623915;6751594;5809701;4299389;3795033;3599417;3361961;3569051;3945133;3278220.1;3680066;5273547;3492932;5105559;4111230;4430373;3022480;2813246;2819370 -5200;'019;Americas;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;143769;162630;163828;166375;230462;322876;242592;269597;311935;333024;391087;381283;383785;360213;387737;506929;527230;420803.3;275278;252978.1;232093.35;229253.09;262907;279054;257098;276306;233089;236429.46;326911;289110;347875;399229;448574;484851 -5200;'019;Americas;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23035203;21762221;19492463;14746686;14261556;15390326;13330626;11832852;13146072;12522977;12717570;12913055;13113871;12615777;11172838;12674072;11895550;11134798;10487010;10049735;13290025;17576666;16100375;19607746;18198927;15447507;17432123;17224965;20458684;15510064;14060606;15756024;11343894;9650725 -5200;'019;Americas;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2414275;2118834;2246100;2514869;2228105;2284182;2056028;1546563;1198508;1267010;1317138;1110356;1130144;1090849;1212089;1331146;1293089;1232910;1183194;1049514;1495911;2187414;1910775;2579953.2;2472523.08;1813324;1878347;2365320.47;2510095;1767469;1577580;2393430;1878023;1536653 -5200;'019;Americas;1867;Industrial roundwood, non-coniferous;5516;Production;m3;84244800;85639208;87890008;90835700;94815316;100373208;97189300;98940100;104159916;104534008;105728500;110825116;115243700;116823008;103390608;113249408;113827708;128158100;139395108;144565278;140887641;129638695;142066176;146262924;144495508;160865215;165263918;167732710;177353735;194889762;194871909;201984308;223072516;235300212;238535420;241453178;240743105;251024074;255711150;260867209;245510383;250827340;259118705;253470599;264677096;262627859;259817526;249684007;239564966;237888406;255398201;256777827;256267399;258578042;250046190;265877150;272078024;289413247;271669097;261822553;267816167;291861542;286595292 -5200;'019;Americas;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;748427;1039990;1093344;1071277;1711871;1699407;1551046;2112364;1961144;2150400;2358386;2691081;2961299;2492266;2841733;2537413;2272492;1852035;1915151;1686262;2116435;2074411;2311652;2117508.13;2212711.13;2291685;2320488;2112863;2001412;1895994;1574985;1596475;1646679;1410342 -5200;'019;Americas;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76472;80635;92456;97979;125231;159063;149018;173032;189604;201988;233290;234473;230019;244906;294182;267135;236296;198785;182459;153178.6;169037;144480.38;162231.38;174380.1;204575.3;187241;174972;173763.4;179116;168553;127767;177162;192654;145697 -5200;'019;Americas;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2833990;2625179;2489144;1829150;2612155;3865913;3099131;3750088;4020422;3691912;4800996;4640849;5327114;4936975;5721864;5147008;5039760;5090668;3764858;2995542;3464469;3168353;3351671;3199469;3945558;3613933;4222321;5058422;4920363;4456950;4533248;6357680;6530652;5180230 -5200;'019;Americas;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;354530;329023;331777;314709;371181;430846;380598;471016;477874;475963;573096;564205;622475;649169;752472;755638;824069;1059625;915459;673478;931796;939477.43;928399;951617;1073530;924352;1140232;1361104.55;1481540;1157270;1058023;1566386;1668240;1454487 -5200;'019;Americas;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52699;50333;39154;27803;21565;9657;5486;16982;11169;24552;21749;12572;25941;23066;24467;33353;26815;14896;27311;29280;28377;40676;47519;85308;101742;54200;89847;68854;61125;34642;26741;55185;67239;54687 -5200;'019;Americas;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12216;10358;11006;6250;6253;5865;4838;8675;6955;13109;4913;2003;4055;2804;4026;5531;5645;3061;5813;7359.6;5678;12426.38;10205.38;26191.38;36701.58;16495;15272;22242.9;13938;11536;5393;17142;24847;17680 -5200;'019;Americas;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56388;64307;26910;87300;101088;61612;171430;240487;143527;251190;205198;256576;193862;214977;402165;276273;378376;473302;433391;342940;503984;719230;760187;695953;1018868;1157610;1212937;1518148;1833104;2027680;2284070;3695268;3633051;2861509 -5200;'019;Americas;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8491;9413;3873;16769;18959;7696;21250;34376;13652;16822;13000;15209;19891;21321;34946;42873;69352;91799;93166;84016;128530;190409.43;152157;199372;247587;387232;349026;436788.1;515261;430604;383000;671778;616163;611515 -5200;'019;Americas;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;695728;989657;1054190;1043474;1690306;1689750;1545560;2095382;1949975;2125848;2336637;2678509;2935358;2469200;2817266;2504060;2245677;1837139;1887840;1656982;2088058;2033735;2264133;2032200.13;2110969.13;2237485;2230641;2044009;1940287;1861352;1548244;1541290;1579440;1355655 -5200;'019;Americas;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64256;70277;81450;91729;118978;153198;144180;164357;182649;188879;228377;232470;225964;242102;290156;261604;230651;195724;176646;145819;163359;132054;152026;148188.72;167873.72;170746;159700;151520.5;165178;157017;122374;160020;167807;128017 -5200;'019;Americas;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2777602;2560872;2462234;1741850;2511067;3804301;2927701;3509601;3876895;3440722;4595798;4384273;5133252;4721998;5319699;4870735;4661384;4617366;3331467;2652602;2960485;2449123;2591484;2503516;2926690;2456323;3009384;3540274;3087259;2429270;2249178;2662412;2897601;2318721 -5200;'019;Americas;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;346039;319610;327904;297940;352222;423150;359348;436640;464222;459141;560096;548996;602584;627848;717526;712765;754717;967826;822293;589462;803266;749068;776242;752245;825943;537120;791206;924316.45;966279;726666;675023;894608;1052077;842972 -5200;'019;Americas;1868;Sawlogs and veneer logs;5516;Production;m3;235197315;255999815;259719415;274375907;280765115;285414707;282997007;301969307;297831615;300319507;319868507;315742215;332769099;311912799;295402007;346055899;363032599;387665799;394884207;360586315;336710907;308685599;372903507;403081607;409016815;440189723;474491407;473433931;469917631;458994639;419011086;445491907;448412791;468458807;477602207;477924177;487786513;467221574;492651550;493723609;461149783;479735914;471642223;510508467;520073927;492466969;451703382;388205026;323135422;349528699;371691417;372949777;384152342;385708918;388039651;401533556;413286984;435140365;415096532;412532403;429933403;427084302;403422290 -5200;'019;Americas;1868;Sawlogs and veneer logs;5616;Import quantity;m3;1534000;1766100;1709000;1968700;2430700;2117900;2195700;2339000;2199100;2504000;2444200;3041500;2572300;2383600;2185900;2431500;2562500;2593400;3082900;2806600;2279500;2303400;3301300;3616900;3542200;3602700;3608000;3812600;3439000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5200;'019;Americas;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;25819;27750;28605;31889;41547;37646;38691;38753;40266;47121;45405;55654;55939;70158;64402;63185;73595;81869;111051;109181;103316;106690;136069;137107;137443;134830;157764;177108;176803;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5200;'019;Americas;1868;Sawlogs and veneer logs;5916;Export quantity;m3;3020200;3076600;5123900;5670300;6252400;7509900;10176600;12749800;11751000;14130900;11504500;14830100;15355900;12953000;12595800;15401300;15058400;16835400;19548108;17062300;12869500;16735400;19227800;20172200;21239257;20296555;23413286;26671559;24874908;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5200;'019;Americas;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;64468;70874;91461;102980;140531;156878;222702;307964;321146;396656;321256;451271;838628;754019;753058;954402;1026911;1240636;1841558;1706559;1166692;1376201;1322145;1386011;1425031;1454222;1941839;2587796;2629339;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5200;'019;Americas;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;186936515;204795607;206984407;220179207;224344807;228771799;227813007;247686507;242701007;243973799;262786807;256034407;271774699;254049099;241330699;288063799;302496299;322850699;325057007;288110007;267361007;250417899;307280907;336026199;342870207;365472715;396581207;394243231;390845231;364273231;326964231;344836207;336259091;346598707;351730799;351138899;359706008;341627000;371442100;372044100;348133100;365899023;356525818;391966568;399087750;374998950;343527114;288797719;239211156;269885043;287724322;285150750;294110084;296005383;301602650;307686558;316703591;326643485;310970905;319966288;330888117;329824713;314441373 -5200;'019;Americas;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;1029400;1246000;1240600;1210700;1569600;1249900;1300500;1577000;1521300;1803400;1806000;2403500;1979400;1763400;1734200;2067300;2199900;2079300;2511300;2273600;1829600;1934100;2842800;2956200;2884300;2885100;2774800;3124800;2601300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5200;'019;Americas;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;13077;15504;16936;14055;18940;14132;14748;17967;20368;25823;25122;35325;34221;47007;42859;45195;56605;55537;82960;80565;74328;80033;104474;90870;95731;89882;101056;125356;110637;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5200;'019;Americas;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;2323100;2277900;4359100;4879500;5272700;6436300;9260700;11852500;10940600;13400800;10861900;14112900;14261100;12126800;12211400;14864700;14529000;16253900;18832308;16163100;12053000;16174700;18418400;19343100;20590908;19478500;22483296;25020396;23170800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5200;'019;Americas;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;39219;42219;60665;71628;87176;111429;172790;249612;264775;347058;279787;400019;766544;692616;703365;879925;948266;1130890;1692099;1561636;1064454;1280846;1209986;1271686;1324412;1344937;1804769;2373174;2346012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5200;'019;Americas;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;48260800;51204208;52735008;54196700;56420308;56642908;55184000;54282800;55130608;56345708;57081700;59707808;60994400;57863700;54071308;57992100;60536300;64815100;69827200;72476308;69349900;58267700;65622600;67055408;66146608;74717008;77910200;79190700;79072400;94721408;92046855;100655700;112153700;121860100;125871408;126785278;128080505;125594574;121209450;121679509;113016683;113836891;115116405;118541899;120986177;117468019;108176268;99407307;83924266;79643656;83967095;87799027;90042258;89703535;86437001;93846998;96583393;108496880;104125627;92566115;99045286;97259589;88980917 -5200;'019;Americas;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;504600;520100;468400;758000;861100;868000;895200;762000;677800;700600;638200;638000;592900;620200;451700;364200;362600;514100;571600;533000;449900;369300;458500;660700;657900;717600;833200;687800;837700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5200;'019;Americas;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;12742;12246;11669;17834;22607;23514;23943;20786;19898;21298;20283;20329;21718;23151;21543;17990;16990;26332;28091;28616;28988;26657;31595;46237;41712;44948;56708;51752;66166;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5200;'019;Americas;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;697100;798700;764800;790800;979700;1073600;915900;897300;810400;730100;642600;717200;1094800;826200;384400;536600;529400;581500;715800;899200;816500;560700;809400;829100;648349;818055;929990;1651163;1704108;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5200;'019;Americas;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;25249;28655;30796;31352;53355;45449;49912;58352;56371;49598;41469;51252;72084;61403;49693;74477;78645;109746;149459;144923;102238;95355;112159;114325;100619;109285;137070;214622;283327;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5200;'019;Americas;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;252616000;255235000;263446000;247150328;252682277;263915661;261630000;265716000;265935040;264797558;259704000;259266000;308978000;323127663;320457000;316298449;314384468;315550312;337824317;341440481;344598966;327146687;322085975;331997144;347022036;325992215 -5200;'019;Americas;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;142027000;134887000;139322000;126436328;127546328;136421661;142593000;138751000;136820000;128165000;123530000;118718000;167114039;172714803;173894000;174965920;169413948;166762920;180207957;180302648;177723161;173773193;166856396;178017358;167316130;142985309 -5200;'019;Americas;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110589000;120348000;124124000;120714000;125135949;127494000;119037000;126965000;129115040;136632558;136174000;140548000;141863961;150412860;146563000;141332529;144970520;148787392;157616360;161137833;166875805;153373494;155229579;153979786;179705906;183006906 -5200;'019;Americas;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5616;Import quantity;m3;3426800;3394400;3084000;1844700;1832900;1980000;1861400;1653600;1406300;1368900;1055500;1096400;898600;1394800;1162300;1116600;1082100;1247400;1347900;1094200;968100;861500;800900;906400;646300;899500;780400;882900;909000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5200;'019;Americas;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5622;Import value;1000 USD;28250;25920;23803;18029;18034;19914;19846;19280;16786;17519;13900;14828;11512;19137;18200;18239;20037;25956;29409;30462;28820;23802;21202;22461;15778;25284;18794;24855;29020;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5200;'019;Americas;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5916;Export quantity;m3;3415800;3531200;3122600;3549700;3777200;3876700;3400500;3002400;3076900;3215600;2474500;2081000;1738500;1829900;1479500;1376500;1245500;1352600;1357300;1460100;1277400;525300;884200;864800;950800;1520900;2296900;3170200;2631000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5200;'019;Americas;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5922;Export value;1000 USD;32430;32654;28372;32336;36716;36119;32129;29918;29965;33670;27176;23753;18644;22534;19029;20668;20786;21685;24258;31660;30468;14096;18170;18980;23149;35872;62937;96960;79481;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5200;'019;Americas;1870;Pulpwood and particles (1961-1997);5516;Production;m3;109393008;114579008;111325200;119520008;126974016;134308216;132404008;135092000;151796116;158663100;146670008;151576016;158546000;175035008;144690000;152904008;148872008;164844000;183955008;192507000;193699508;182461508;190823500;197522516;192338500;207212508;212343008;214429000;227386008;219701008;224905808;229397286;227626200;230679612;231517812;226012700;228914400;;;;;;;;;;;;;;;;;;;;;;;;;; -5200;'019;Americas;1870;Pulpwood and particles (1961-1997);5616;Import quantity;m3;3426800;3394400;3084000;1844700;1832900;1980000;1861400;1653600;1406300;1368900;1055500;1096400;898600;1394800;1162300;1116600;1082100;1247400;1347900;1094200;968100;861500;800900;906400;646300;899500;780400;882900;909000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5200;'019;Americas;1870;Pulpwood and particles (1961-1997);5622;Import value;1000 USD;28250;25920;23803;18029;18034;19914;19846;19280;16786;17519;13900;14828;11512;19137;18200;18239;20037;25956;29409;30462;28820;23802;21202;22461;15778;25284;18794;24855;29020;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5200;'019;Americas;1870;Pulpwood and particles (1961-1997);5916;Export quantity;m3;3415800;3531200;3122600;3549700;3777200;3876700;3400500;3002400;3076900;3215600;2474500;2081000;1738500;1829900;1479500;1376500;1245500;1352600;1357300;1460100;1277400;525300;884200;864800;950800;1520900;2296900;3170200;2631000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5200;'019;Americas;1870;Pulpwood and particles (1961-1997);5922;Export value;1000 USD;32430;32654;28372;32336;36716;36119;32129;29918;29965;33670;27176;23753;18644;22534;19029;20668;20786;21685;24258;31660;30468;14096;18170;18980;23149;35872;62937;96960;79481;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5200;'019;Americas;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;87018008;90043008;85958200;92929008;99190008;103702216;102667008;104111000;116105108;121888100;110006008;112724008;117513000;128657000;107547000;110661000;106373000;112951000;126420000;132004000;133349008;122359008;125675000;131002008;126928000;134487008;138693000;139708000;143407000;135179000;134876000;141010078;132960000;133689000;136809000;128875000;133816000;;;;;;;;;;;;;;;;;;;;;;;;;; -5200;'019;Americas;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;22375000;24536000;25367000;26591000;27784008;30606000;29737000;30981000;35691008;36775000;36664000;38852008;41033000;46378008;37143000;42243008;42499008;51893000;57535008;60503000;60350500;60102500;65148500;66520508;65410500;72725500;73650008;74721000;83979008;84522008;90029808;88387208;94666200;96990612;94708812;97137700;95098400;;;;;;;;;;;;;;;;;;;;;;;;;; -5200;'019;Americas;1871;Other industrial roundwood;5516;Production;m3;24021000;18839000;18206000;18733000;19382000;23065300;22413300;23717300;23305300;19827300;20648800;20947300;23343300;21103300;20290300;21789300;19452400;20908000;22014900;21279970;20657241;20551495;20560076;22601008;23409400;24150707;25234010;25251010;25312327;26000346;22793246;22791400;26480616;27436500;28500200;27859200;28011200;21297500;21273700;22201700;23481700;21914700;24155400;23365900;24775419;24430900;22876500;21527572;22449700;23868700;28842686;30656800;32702263;31500392;29908220;28183125;28207515;29011050;29023074;29128851;30474556;32741508;31075071 -5200;'019;Americas;1871;Other industrial roundwood;5616;Import quantity;m3;588800;677600;731900;801900;802500;694400;845600;980300;973100;1149200;1401800;1770500;1816000;1885800;1412700;1486100;1153600;1247900;1286200;1306800;1372100;1111800;1024200;1195400;1667300;1705000;2343700;1843000;1493300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5200;'019;Americas;1871;Other industrial roundwood;5622;Import value;1000 USD;8565;8307;8202;7295;10098;10376;11481;11258;11847;16322;13992;17370;19960;29665;28926;25951;20432;21964;24226;26463;29897;24523;25602;34251;34110;33326;40870;40274;43472;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5200;'019;Americas;1871;Other industrial roundwood;5916;Export quantity;m3;421200;474000;342900;353400;310700;294000;387600;450900;365200;379800;317600;333700;337500;1022800;1052100;1020000;1132200;617600;595700;794900;910800;904800;667800;560400;518100;386000;338100;239400;316700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5200;'019;Americas;1871;Other industrial roundwood;5922;Export value;1000 USD;11367;11763;9873;12660;12488;13438;14838;13987;14230;17429;12893;14904;18511;29011;31018;31094;30373;43088;42228;48610;48150;38710;42995;37955;30936;31629;35806;30622;46752;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5200;'019;Americas;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;10412000;8940000;8418000;8685000;8771000;9941000;10145000;10041000;9967000;8414000;8666000;8682000;10127000;8522000;8114000;8775000;8660000;9458000;9982000;9694000;9470000;9283000;9265000;9914000;10471000;10728000;11530300;11430000;11010000;10354000;9998000;9850000;10228000;10987000;10545000;10329000;10447000;6457000;7120000;7138000;11702000;10060200;7647100;7474200;8049500;8386100;7867800;7424872;7357000;7487911;7824440;8241000;7809651;7596405;15086423;13769333;13850717;14970488;14853098;15101992;15683461;17845461;16467602 -5200;'019;Americas;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;13609000;9899000;9788000;10048000;10611000;13124300;12268300;13676300;13338300;11413300;11982800;12265300;13216300;12581300;12176300;13014300;10792400;11450000;12032900;11585970;11187241;11268495;11295076;12687008;12938400;13422707;13703710;13821010;14302327;15646346;12795246;12941400;16252616;16449500;17955200;17530200;17564200;14840500;14153700;15063700;11779700;11854500;16508300;15891700;16725919;16044800;15008700;14102700;15092700;16380789;21018246;22415800;24892612;23903987;14821797;14413792;14356798;14040562;14169976;14026859;14791095;14896047;14607469 -5200;'019;Americas;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;588800;677600;731900;801900;802500;694400;845600;980300;973100;1149200;1401800;1770500;1816000;1885800;1412700;1486100;1153600;1247900;1286200;1306800;1372100;1111800;1024200;1195400;1667300;1705000;2343700;1843000;1493300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5200;'019;Americas;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;8565;8307;8202;7295;10098;10376;11481;11258;11847;16322;13992;17370;19960;29665;28926;25951;20432;21964;24226;26463;29897;24523;25602;34251;34110;33326;40870;40274;43472;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5200;'019;Americas;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;421200;474000;342900;353400;310700;294000;387600;450900;365200;379800;317600;333700;337500;1022800;1052100;1020000;1132200;617600;595700;794900;910800;904800;667800;560400;518100;386000;338100;239400;316700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5200;'019;Americas;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;11367;11763;9873;12660;12488;13438;14838;13987;14230;17429;12893;14904;18511;29011;31018;31094;30373;43088;42228;48610;48150;38710;42995;37955;30936;31629;35806;30622;46752;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5200;'019;Americas;1630;Wood charcoal;5510;Production;t;6711398;6683459;6570586;6652880;6694545;6811397;6887959;7034414;7102021;7315246;7523147;7946948;7985589;8437773;8459084;8699705;8983790;9422823;9532994;9915711;10089853;10353214;10800760;11042870;11325417;11561276;11848038;12257981;8561346;7454635;7518086;7280903;7302975;11557159;10913661;9816525;9071153;9782997;10270783;9669852;9771427;9874148;11111725;11002260;10934144;10757837;11649220;10973853;8895035;8861131;9390899;10112571;10448884;10476880;9384420;8294789;8315193;9198554;9222930;9361536;10119526;10422502;9993143 -5200;'019;Americas;1630;Wood charcoal;5610;Import quantity;t;24800;24200;14800;19700;16000;19900;17800;20200;25200;30200;35800;32100;27500;34900;35200;30500;50800;59000;63200;45100;23300;19100;19100;26900;27100;26200;27100;29200;31800;57900;34700;32871;34021;38194;38914;36224;44763;45582;43090;57924;56409;61208;92049;88203;91511;109384;147788;206173;218145;264154;264161;227488;194475;200130;183475;193192;195103;222680;210578;311956;477956.28;319271;271066 -5200;'019;Americas;1630;Wood charcoal;5622;Import value;1000 USD;2856;2980;1038;1303;1207;1588;1721;1920;2150;2677;3541;3691;3092;5196;6365;4480;7783;9385;8539;8040;7645;5324;5601;6461;6015;4910;5075;6194;8398;18193;9955;8415;8416;8073;8499;7555;8958;8564;8828;9087;10416;12670;21374;25925;30541;37165;45319;58265;58042;59124;70433;72686;75605.3;80949.1;88213.1;89633.1;96665.85;99516.1;105765;134749;182559.66;134429;147625 -5200;'019;Americas;1630;Wood charcoal;5910;Export quantity;t;12000;11100;8700;17600;13600;17000;17600;21500;16700;19100;17000;18100;22500;21400;37800;31200;52100;54900;50600;38100;29500;17400;23300;22500;22200;20900;19900;24600;39100;67100;77000;85275;100695;78776;96776;148376;128525;112728;110862;133029;141057;194211;230238;325220;370270;455762;385698;442292;510162;497327;493112;422047;420751;428530;407675;412397;400862;419449;433719;461776;548307.48;493159.66;490270.66 -5200;'019;Americas;1630;Wood charcoal;5922;Export value;1000 USD;917;754;789;1046;1201;1603;1728;2212;1651;1924;1564;1747;2260;2503;5041;4849;6459;6520;9443;6558;10726;5969;7027;4010;3909;3646;3924;5120;6312;14363;17791;21190;24243;22774;21267;28723;26475;25911;22099;22767;26439;27532;32530;44875;51618;63644;65770;105975;123641;118368;135750;130017;153633;152799;153764;157398;155016.15;167375;172933;187540;224921.16;203706.19;218478.19 -5200;'019;Americas;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;162274691;179899001;182072906;174599120;176456120;174170360;180300390;207051470;206128131;203728233;189693297;166371587;176941446;177969869;187066928;142396397;145261675;153900588;158453837;142779814;144000730;142046117;135173686;138699371;149148815;138718683 -5200;'019;Americas;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3125349;2231757;3450401;3364290;3015486;3223598;4361013;4467498;4647966;5656025;5398081;3936273;3925107.7;3600246;3069984.43;4044931.47;3822957.92;3669658.92;3362190.82;4150760.82;3373152.82;3287455.82;3172019.82;2953179.11;2534415.86;2170818.82 -5200;'019;Americas;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;138723;130255;159298;153074;144975;183631;220574;234821;258102;306689;300917;226940;234659.4;207762;132728;140159.5;141717.46;145600.76;125907.66;137383.42;174840.66;145685.66;142034.66;137196.56;140913.75;163787.66 -5200;'019;Americas;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14590262;15844749;14482434;12424407;10000989;10067889;11282593;13519842;12693032;14942259;18313704;14904283;18001935;18650526;15000587;13591339.42;14504126.14;15471569;16702734;16467437;17881190;14498151;12344873;13272137.01;11221996.95;10347233.95 -5200;'019;Americas;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;763808;750696;740847;648316;510504;516218;608520;737342;646283;943036;1269301;1025337;1272707;1382341;960371.72;877805.6;903074.11;865466;931322.45;918192.31;1013800;933054;745080;777784.1;849283.63;853881.63 -5200;'019;Americas;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;138175691;148077601;150212488;144133000;145545000;145113000;150352000;154461000;153678000;153658000;146736000;132388900;139195500;139893500;142350200;94519500;96665329;102987337;106845383;90909253;91158781;88432623;83502341;84080923;93788791;83370759 -5200;'019;Americas;1619;Wood chips and particles;5616;Import quantity;m3;;;;1128800;783500;929900;1195400;1146800;703700;881100;646000;686000;800000;651900;449500;672000;919100;1100800;1082600;1089000;1078100;872900;1186300;868900;816200;1327900;737100;1333700;1742100;1542800;1534000;1302493;1639163;1660340;2377951;1927392;2535441;2501709;1475605;2614530;2235783;1962253;2500692;3344969;3077142;3008924;3710541;3481677;2238822;2523987.7;2334888;2270106.43;3317127.2;2900649;2719078;2456694;2947640;2833918;2943677;2805768;2310005.03;1915549;1660682 -5200;'019;Americas;1619;Wood chips and particles;5622;Import value;1000 USD;;;;7714;6134;7156;9918;9571;5900;9015;12180;11763;15700;14298;14107;21517;29500;36966;36670;46334;47400;39957;56567;43371;33612;38210;24647;50501;42925;37187;40761;38924;46792;69023;86299;73848;88476;90371;75492;93358;68897;63562;78925;104631;108219;110945;152216;148537;86020;112915.4;87940;90070;102735.4;100717.7;103356;86012;98027.79;122307;123547;115143;103501.53;102140;122362 -5200;'019;Americas;1619;Wood chips and particles;5916;Export quantity;m3;;;;1135800;1009700;1385500;2288300;3539800;4144500;4485900;3724200;4417200;5847200;6257000;5129000;6503000;6876000;6482000;7820600;7986300;6596600;5405400;5187300;4687300;4599500;4826400;5364600;8130200;12220400;12979200;13999500;13286877;10987096;12445147;14455801;12527300;12452600;13906200;14435630;13579594;11610089;9224613;9306830;9911489;11020879;11420909;12901420;15964738;11915928;14746149;15578647;14597604;13285677.51;14151622.69;15102467;16239774;16051868;17604467;14271999;12182946;13082774.78;11031499.94;10128229.94 -5200;'019;Americas;1619;Wood chips and particles;5922;Export value;1000 USD;;;;7760;8413;12196;22110;37189;43728;46939;57769;69767;101320;128230;129527;174218;192643;200062;243344;455656;518390;310545;243767;230009;229742;228798;256876;424779;612112;641632;738993;737847;670117;724159;894760;843562;759476;710116;672883;649280;554418;417304;396842;443704;546346;612938;698976;973860;662439;841189;971557;902998.72;830544.6;848273.11;808038;876480.45;860435.31;975066;900984;715672;741813.1;805961.16;809905.16 -5200;'019;Americas;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50000;16007000;19579000;21369000;22102000;22342000;22661700;23395400;24099000;31821400;31860418;30466120;30911120;29057360;29948390;52590470;52450131;50070233;42957297;33982687;37745946;38076369;44716728;47876897;48596346;50913251;51608454;51870561;52841949;53613494;51671345;54618448;55360024;55347924 -5200;'019;Americas;1620;Wood residues;5616;Import quantity;m3;279800;277300;252100;254300;327600;457100;478800;438600;327000;302000;294000;299000;164000;140000;246700;250000;271700;168000;93800;99200;323400;282000;437900;405700;522100;584300;631000;368100;209800;137200;187300;270311;367654;509271;570144;608900;595313;623640;756152;835871;1128507;1053233;722906;1016044;1390356;1639042;1945484;1916404;1697451;1401120;1265358;799878;727804.27;922308.92;950580.92;905496.82;1203120.82;539234.82;343778.82;366251.82;643174.08;618866.86;510136.82 -5200;'019;Americas;1620;Wood residues;5622;Import value;1000 USD;90;52;87;267;229;338;397;426;375;645;572;900;860;1429;1641;1726;1803;1836;1100;2300;7440;6500;10100;9300;11560;11630;13400;17320;21918;23925;25275;41203;35951;35387;44827;45346;46069;48352;54763;65940;84177;81413;104706;115943;126602;147157;154473;152380;140920;121744;119822;42658;37424.1;40999.76;42244.76;39895.66;39355.64;52533.66;22138.66;26891.66;33695.04;38773.75;41425.66 -5200;'019;Americas;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;393775;694573;611251;596369;611277;642024;684062;1409119;902840;814318;776376;761059;1371104;2498963;1272123;2040839;2348966;2988355;3255786;3071879;402983;305661.91;352503.45;369102;462960;415569;276723;226152;161927;189362.23;190497.01;219004.01 -5200;'019;Americas;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;40295;37176;41494;47591;49134;61296;53692;77813;91567;93898;93200;119376;164816;190996;33345;244060;295441;362898;431518;410784;57373;47261;54801;57428;54842;57757;38734;32070;29408;35971;43322.47;43976.47 -5200;'019;Americas;1605;Sawdust (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119208;86705 -5200;'019;Americas;1605;Sawdust (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3417;3720 -5200;'019;Americas;1605;Sawdust (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7150;8232 -5200;'019;Americas;1605;Sawdust (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3916;4469 -5200;'019;Americas;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4386;6444;23444 -5200;'019;Americas;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4622;9118;9118;9118;84840;84840 -5200;'019;Americas;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;884;2202;2202;2202;25336;25336 -5200;'019;Americas;1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2380;0 -5200;'019;Americas;1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1476;0 -5200;'019;Americas;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5298000;6862000;8164382;8955675;9921620;10828349;11796148;13137126;13633926;14061107;15051545;15102734 -5200;'019;Americas;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;254537;280621;374124;359434;347835;451537;353612;452560;411816;438700.91;418612.3;425257 -5200;'019;Americas;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65671;72844;96325;94622;78253;84159.15;72223;102042;104984;116611.56;115881.81;120064 -5200;'019;Americas;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3445832;4605053;5809365;6418139;7282447;7785189;9177426;9922603;10751684;11302697.62;13201895;13556254 -5200;'019;Americas;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;512442.64;651749;812091;941798;951492;1054536.63;1277914;1414606;1496530;1607268.7;2235929;2404038 -5200;'019;Americas;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5096000;6648000;7961382;8757675;9487853;10390344;11257687;12543997;13079206;13493957;14482370;14533559 -5200;'019;Americas;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;131533;176517;251903;238211;227429;234442;247577;243941;240236;237123.44;235011.3;238849 -5200;'019;Americas;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26828;36171;52073;56850;42746;49341.17;51681;53854;56765;60927;63239.81;68952 -5200;'019;Americas;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3283374;4543860;5660601;6333499;7126375;7496956;8905573;9727689;10576805;11095400.78;13005493;13386608 -5200;'019;Americas;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;469586.64;627727;772957;911695;928142;991034.15;1226692;1358222;1444589;1543979.73;2172840;2350260 -5200;'019;Americas;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;202000;214000;203000;198000;433767;438005;538461;593129;554720;567150;569175;569175 -5200;'019;Americas;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;123004;104104;122221;121223;120406;217095;106035;208619;171580;201577.48;183601;186408 -5200;'019;Americas;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38843;36673;44252;37772;35507;34817.98;20542;48188;48219;55684.56;52642;51112 -5200;'019;Americas;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;162458;61193;148764;84640;156072;288233;271853;194914;174879;207296.84;196402;169646 -5200;'019;Americas;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42856;24022;39134;30103;23350;63502.48;51222;56384;51941;63288.97;63089;53778 -5200;'019;Americas;1872;Sawnwood;5516;Production;m3;84872067;88529500;92394662;97782439;99289145;99476808;97520137;101434935;103791682;99257011;105868290;109089577;113033334;103658506;98644536;115077253;124123258;129028820;132787769;123952499;115089061;104577939;125822617;131146622;135505943;146157966;159327554;158273700;155337830;151314020;144827111;153640282;154707373;161889328;161168832;167480909;171699184;171747476;179365064;178038907;176898100;185325076;182963762;195563690;199035732;194468468;180117973;153018402;119918030;132955703;135411601;142151941;146568240;149442888;153293322;157696846;159760428;161343578;157449701;151780852;156206715;152884179;145921592 -5200;'019;Americas;1872;Sawnwood;5616;Import quantity;m3;9389588;10242681;10783715;10921752;11300269;11358715;11159577;13150554;13508964;13034308;15657744;18897194;19369219;16051684;14019923;17635814;21718214;24530599;23510430;21564370;20861205;19195518;24645189;27178914;29007563;28647288;29747838;27108443;29588452;25726466;23487440;26218854;29933781;32343517;33698624;35026074;35983158;36932781;37904466;38993306;39538336;41854987;42177381;50626294;50814646;47119434;40050465;26933702;18973805;20805209;20846854;21551236;24620470;26420922;28963258;33148323;32554288;31070219;30610212;30840024;34045600;32937892;30749317 -5200;'019;Americas;1872;Sawnwood;5622;Import value;1000 USD;417315;430018;441420;462543;496576;512943;498636;704978;799218;655897;923135;1351549;1725338;1401082;1297147;1654364;2260188;3312440;3217954;2619845;2522566;2193358;3390755;3300488;3458924;3622320;4002961;3933216;3754149;3674068;3412678;4595899;5876219;7357195;6793822;7966761;8720573;7824441;8890625;8225509;7841135;7658200;7069389;10479372;10342399;9751822;7958358;5770858;3627873;4646375;4654041;5193453;6417619;7188328;6904771;8261475;8746582.17;8687651;7438141;9540052;16072210;14626803;9438193 -5200;'019;Americas;1872;Sawnwood;5916;Export quantity;m3;11868059;12451660;14006671;14946254;15049895;14823737;15124086;16807957;16053010;17180267;18946034;21822362;23199562;19322458;16088872;21579238;26332503;28522320;29523271;28533859;26610176;25766950;30835044;33086720;33381153;34075648;38364848;40533124;39390205;38070715;36368272;38525369;40329602;42438374;45047387;46310626;45987792;44037992;46007294;46854941;46308918;48303210;49576518;53396463;53915400;51400839;45319208;34920686;27384027;32088746;35095494;36232587;40011518;42531758;42327444;46962619;46677759;46517329;42487701;39819864;43003827;39030810;35892474 -5200;'019;Americas;1872;Sawnwood;5922;Export value;1000 USD;519383;546750;614786;674718;692118;694060;697407;877547;960167;963747;1135326;1627688;2298673;2025375;1603960;2430200;3052183;3645876;4756223;4409371;3855647;3525890;4493560;4483737;4433517;4900111;6192484;6705486;7215454;7326461;7271878;8628013;10405583;11661439;11488675;12555702;13053966;10839842;12197974;11454417;10331023;9922963;9518729;12805170;12620302;12427689;11150419;8683696;6179972;8574240.5;9482385.9;9935429.5;12063097;13263853;11707765;12913521;14164237.35;14343357;11324331;12600059;19887074;17435622;11508238 -5200;'019;Americas;1632;Sawnwood, coniferous;5516;Production;m3;62914617;65417450;68608562;72251431;73290145;72529999;70949936;75069089;74087531;72681015;79536640;83399527;86371084;76888755;73719035;87600902;95562658;99898070;101806360;91210787;83216411;78021289;97062117;100263122;105063743;111486450;122511096;121559342;119362622;108109820;102436703;107897032;108197523;112911378;111631882;115909959;120408734;120494526;128331664;128133307;129123500;136601676;136599462;147510410;149416232;145092808;132757833;110229422;90450530;99489580;103346170;109762805;114779892;116876857;120136585;125055483;127149570;129328409;126005947;126292061;129995348;126414757;122773087 -5200;'019;Americas;1632;Sawnwood, coniferous;5616;Import quantity;m3;8448888;9160281;9734765;9740952;10078469;9952615;9821027;11884654;11924314;11769658;14297644;17208144;17351819;13829334;12089160;15817814;19774014;22350099;21083930;19016020;18514655;17487468;22688089;24971314;26877458;26365404;27003977;25217927;27535388;24016126;21750036;24413647;27840791;29941277;31171757;32523988;32768886;33303045;34135878;34816840;36019384;37820550;38596998;45293774;46095944;42957783;36679101;24113135;17386800;18743350;18416309;19653335;22591589;24142540;26657965;31025612;30307467;28672792;28180188;28789450;31728074;30449658;28691644 -5200;'019;Americas;1632;Sawnwood, coniferous;5622;Import value;1000 USD;353839;355750;370883;382105;410650;408840;405832;610364;680720;556458;818142;1209151;1535351;1114184;1056458;1440419;2015972;2979246;2778135;2184109;2125712;1892882;3003314;2885007;3073174;3193686;3417444;3346705;3272517;3216644;2942702;4079760;5271715;6586055;5978149;7093149;7697973;6778914;7820676;7061835;6874896;6635154;5980446;8825460;8905619;8293319;6607144;4567946;2897974;3735861;3714611;4323602;5429788;6073117;5806760;7223495;7611921;7547660;6236811;8484131;14723364;13014735;8234600 -5200;'019;Americas;1632;Sawnwood, coniferous;5916;Export quantity;m3;10989559;11549260;13111121;13896004;13952695;13555387;13946936;15724307;14773160;15886367;17582784;20163912;21233762;17700708;14556774;20082647;24615253;26410270;27241821;26027759;24255326;23739250;28568394;30673870;31235305;31734823;35283006;36217825;36037277;34610678;32776535;34543226;36213153;37700214;39430905;40886692;40107261;38918726;40375914;40766040;40514119;42090276;43258106;46450867;47121479;44893236;39266171;30034904;23702883;27723056;30627532;31464425;35035918;36857104;37265515;41566708;40428996;40199947;36943936;34562640;37218633;33338086;31227955 -5200;'019;Americas;1632;Sawnwood, coniferous;5922;Export value;1000 USD;464127;488732;557698;607541;616649;605256;612505;797298;865487;865910;1041487;1458298;2129834;1827916;1416646;2206696;2760082;3312127;4241793;3812293;3267320;3028396;3914259;3898141;3915323;4285954;5351376;5611357;6213627;6129912;6022794;7038777;8756853;9742123;9379215;10513160;10743063;8780124;9963208;9130100;8276597;7776750;7238911;9967630;9800902;9450381;8346165;6406997;4537596;6400513.5;7236703.9;7647740.5;9459724;10052494;8866836;9815253;10540376.2;10687634;8235098;9670084;16303455;13730960;8809865 -5200;'019;Americas;1633;Sawnwood, non-coniferous;5516;Production;m3;21957450;23112050;23786100;25531008;25999000;26946809;26570201;26365846;29704151;26575996;26331650;25690050;26662250;26769751;24925501;27476351;28560600;29130750;30981409;32741712;31872650;26556650;28760500;30883500;30442200;34671516;36816458;36714358;35975208;43204200;42390408;45743250;46509850;48977950;49536950;51570950;51290450;51252950;51033400;49905600;47774600;48723400;46364300;48053280;49619500;49375660;47360140;42788980;29467500;33466123;32065431;32389136;31788348;32566031;33156737;32641363;32610858;32015169;31443754;25488791;26211367;26469422;23148505 -5200;'019;Americas;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;940700;1082400;1048950;1180800;1221800;1406100;1338550;1265900;1584650;1264650;1360100;1689050;2017400;2222350;1930763;1818000;1944200;2180500;2426500;2548350;2346550;1708050;1957100;2207600;2130105;2281884;2743861;1890516;2053064;1710340;1737404;1805207;2092990;2402240;2526867;2502086;3214272;3629736;3768588;4176466;3518952;4034437;3580383;5332520;4718702;4161651;3371364;2820567;1587005;2061859;2430545;1897901;2028881;2278382;2305293;2122711;2246821;2397427;2430024;2050574;2317526;2488234;2057673 -5200;'019;Americas;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;63476;74268;70537;80438;85926;104103;92804;94614;118498;99439;104993;142398;189987;286898;240689;213945;244216;333194;439819;435736;396854;300476;387441;415481;385750;428634;585517;586511;481632;457424;469976;516139;604504;771140;815673;873612;1022600;1045527;1069949;1163674;966239;1023046;1088943;1653912;1436780;1458503;1351214;1202912;729899;910514;939430;869851;987831;1115211;1098011;1037980;1134661.17;1139991;1201330;1055921;1348846;1612068;1203593 -5200;'019;Americas;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;878500;902400;895550;1050250;1097200;1268350;1177150;1083650;1279850;1293900;1363250;1658450;1965800;1621750;1532098;1496591;1717250;2112050;2281450;2506100;2354850;2027700;2266650;2412850;2145848;2340825;3081842;4315299;3352928;3460037;3591737;3982143;4116449;4738160;5616482;5423934;5880531;5119266;5631380;6088901;5794799;6212934;6318412;6945596;6793921;6507603;6053037;4885782;3681144;4365690;4467962;4768162;4975600;5674654;5061929;5395911;6248763;6317382;5543765;5257224;5785194;5692724;4664519 -5200;'019;Americas;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;55256;58018;57088;67177;75469;88804;84902;80249;94680;97837;93839;169390;168839;197459;187314;223504;292101;333749;514430;597078;588327;497494;579301;585596;518194;614157;841108;1094129;1001827;1196549;1249084;1589236;1648730;1919316;2109460;2042542;2310903;2059718;2234766;2324317;2054426;2146213;2279818;2837540;2819400;2977308;2804254;2276699;1642376;2173727;2245682;2287689;2603373;3211359;2840929;3098268;3623861.14;3655723;3089233;2929975;3583619;3704662;2698373 -5200;'019;Americas;1634;Veneer sheets;5516;Production;m3;130500;168000;206600;217500;213800;321700;313500;329300;302900;352400;323200;399400;425800;444600;545600;693900;745800;772600;794800;846900;872500;1040900;1113400;1095700;1074300;1123600;865000;868150;868700;1014900;1047600;1214150;1304630;1372100;1412900;1463300;1759100;1977700;2013850;2226350;2410040;2296310;2250700;2491000;3422290;3569410;2979830;3029490;2764600;2150780;2208343;2280589;2332206;2286371;2444817;2480674;4267144;4422477;4390497;4437979;4373951;4568169;4545958 -5200;'019;Americas;1634;Veneer sheets;5616;Import quantity;m3;227900;304050;346425;410475;456500;477200;468200;551700;497400;456600;564700;774200;731200;570500;399200;512700;552200;548900;558500;522400;529800;493200;574700;542000;520800;572400;587600;581700;392241;672993;641693;669455;744979;848489;780482;767441;964639;1324738;1662970;1649573;1627496;1729220;1600837;2042542;859195;804884;735306;532162;394099;396524;430731;489918;502892.4;625216;535100;431591;448762;901142;866255;801972;924877;934908;883538 -5200;'019;Americas;1634;Veneer sheets;5622;Import value;1000 USD;30115;37532;43393;49514;52983;57489;54387;64337;63903;54769;67274;98371;118659;104987;77678;99994;112528;142283;156363;148150;157679;129604;181164;180258;163183;174729;207855;233903;250775;252478;216343;283047;323764;378464;332798;320466;413477;524735;597969;675468;632753;684551;681473;821407;851512;844795;791069;653784;447315;494771;505570;560057;586503;886290;585556;597543;611375.26;675901;575573;539344;783450;871072;720887 -5200;'019;Americas;1634;Veneer sheets;5916;Export quantity;m3;91400;108600;123700;147300;175100;183700;189500;228400;238500;239900;319900;356400;392800;317900;338000;489200;591000;742400;509100;572700;600600;545400;613300;575800;503100;552400;651900;696500;504500;863100;687700;819492;923297;1100142;1128622;1136262;1254262;1720470;1941254;2045180;1954905;2105396;2106831;2445740;1713164;1576188;1353135;956390;677871.3;456947;493481;475136;768941;804628;899564;909705;1046722;1085585;1018620;1039911;1148711;1205593;1002601 -5200;'019;Americas;1634;Veneer sheets;5922;Export value;1000 USD;20993;24476;28842;35678;41761;43214;40373;50811;60226;58603;66270;92765;121259;107332;107763;127795;142248;190004;242419;248761;220697;219864;256541;249418;207499;225096;273587;325784;346150;388654;383755;453589;520813;619373;624692;635019;772267;741221;797222;901037;806522;876004;875136;1046173;1042911;1020321;950033;756126;527681;586184;579864;604056;629258;654433;646123;645038;667399.67;749642;633885;612404;839246;923010;736064 -5200;'019;Americas;1873;Wood-based panels;5516;Production;m3;12761100;14086700;15597300;17411200;19338500;24237149;24501660;27506523;27633445;27553711;32600543;36589000;38368505;33206652;30973144;36281200;39888108;40026000;38775300;34671600;35914900;31237000;38756908;40839808;42703950;45745108;48527658;48629208;48709500;47309208;44700100;48598808;50373900;51839386;51619596;55041696;57404378;61140165;67585362;68696610;63637651;66118209;69894215;73472774;75409010;76160586;72757296;62496396;56532418;57052742;57292132;58033236;61482924;64062443;64469796;65775873;67030184;65657016;66183553;64348927;69206423;65657328;62268755 -5200;'019;Americas;1873;Wood-based panels;5616;Import quantity;m3;683044;864407;982265;1177634;1289474;1475813;1504804;2246122;2678098;2384923;3080413;4042061;3559034;2859916;2921792;3322696;3229729;3712381;3177480;2347080;2820080;2272880;3272100;3408600;3801311;4043576;4181036;4470202;4790705;4562408;4072609;5150823;6249204;7258296;8056053;10363846;11706917;12055605;14053108;15413559;16370190;18392943;20328945;23425036;24850069;25309221;20410183;15574217;11533739;13617923;13848802.31;14530532.76;14436035.4;16249526.4;18345316.27;19797671;21667974.27;22934479.27;21079671;22394556;27467885.33;25952313.26;21596716.05 -5200;'019;Americas;1873;Wood-based panels;5622;Import value;1000 USD;98896;132077;143475;164137;170484;194838;188858;273655;322045;263856;339780;449440;533527;475552;428241;546631;636303;834234;835024;649515;768842;566116;901862;802041;829745;917547;1170718;1170704;1200101;1195083;1097846;1523420;1881028;2182300;2210624;2341006;2458566;2795838;3678279;3742595;3691856;4160212;5575950;7779069;7952347;7828215;6253922;5349782;4289958;4951168;4964084;6174814;6882464.03;7109615.68;7453095;7857634;8407330.25;9077829;7430573;8172092;13760697.71;13847613.02;8969232.57 -5200;'019;Americas;1873;Wood-based panels;5916;Export quantity;m3;215800;277800;316500;451590;476100;614834;693645;767711;899761;812995;880464;1135238;1461475;1466131;1422667;1405425;1559700;1804900;2031600;2364500;2526300;2139200;2371900;2754800;2915300;3286400;3624600;4884500;5241100;5641300;5123400;6534074;7660822;8412794;10022293;11074742;12372476;12067233;13937291;14636797;15502432;16645602;18736964;20450342;20932077;20020979;17284249;12506343;9805075;9888968;10838847;11042874;11782651;12658994;13248231;14954576;16136199;18646773;16557497;15666512;16591227.44;16730826.38;15044564.38 -5200;'019;Americas;1873;Wood-based panels;5922;Export value;1000 USD;29605;36789;45174;58359;62577;69147;78091;87056;108350;93251;96304;145810;208903;259545;272194;299349;289427;347908;429173;512578;594777;476791;538863;538172;574847;628600;754907;997978;1052409;1146088;1045633;1491529;1878699;2154124;2551968;2527049;2717138;2781085;3614631;3489390;3164297;3364618;4607589;6466735;6024901;5295181;4724330;3846961;3007286;3473263;3488716.3;3793233.12;4246439;4220142.06;4221574;4491531;4981838.13;5555909;4867833;5232447;8789249.58;8385171.56;6019249.56 -5200;'019;Americas;1640;Plywood and LVL;5516;Production;m3;10058800;11092700;12280300;13568000;14989200;15529700;15518800;17095200;16296400;16654400;19093400;21005700;21642200;18359400;17751300;20396000;21862908;21104800;20985100;18699200;19994800;18236400;21959408;22005708;22228300;23707008;25141008;24870008;23661600;22515908;19955700;20866908;21061300;21770900;21251000;21129200;21582100;21790200;22851480;22809734;20953570;21313260;21580710;22749525;23078945;22162985;20656855;18004090;15352955;16003615;15871979;16047236;16202311;17635703;17826791;18712939;19460312;17821031;17382336;16796301;17894861;17216503;16606752 -5200;'019;Americas;1640;Plywood and LVL;5616;Import quantity;m3;545970;695070;766260;940760;1015906;1213706;1247343;1811800;2116700;1982800;2527400;3220200;2647300;2002600;2423800;2602400;2320300;2533000;2077800;1272500;1693200;1242900;1807900;1555700;1787665;2031164;2149967;2222123;2335305;2033140;1994805;2310988;2462463;2384426;2537461;2685735;2805744;2813161;3363206;3462991;4265268;5059237;5619214;7043778;7694941;8011402;7237454;6373831;4247063;5686616;5428836;6027720;5513823;5570465;7023453;7553537;8140353;8599970;7511392;9134936;11645686;10877939;8749085 -5200;'019;Americas;1640;Plywood and LVL;5622;Import value;1000 USD;85066;115086;121753;140668;142650;171432;166722;245037;288873;238231;303529;395846;462347;400560;381624;478321;526341;676182;684929;499761;596311;421738;675499;541333;550822;633569;850110;832911;771178;800601;746596;954157;1082176;1073432;1055171;1036444;1055916;943175;1212367;1270571;1360550;1606043;1831024;2613972;2753301;3260423;2791683;2480766;1890323;2235439;2262462;2952113;3084945;3336240;3705213;3782449;3959253.93;4437082;3422967;3589759;5650992;5809817;3872151 -5200;'019;Americas;1640;Plywood and LVL;5916;Export quantity;m3;156300;217900;234700;346190;344900;398100;492200;521700;578400;544400;512200;658900;868700;804000;890200;827700;714800;852900;915900;1028000;1039800;859200;995300;969300;966300;1205100;1341700;1889400;2156300;2314000;2020100;2522549;2712441;2740544;3158078;3103676;3297675;2340952;3110572;3391073;3503209;3902115;4512063;5157883;6057667;5336118;5039606;4286800;3329669;3544594;3598995;3332248;3468636;3662030;3975062;4213951;5089109;5400865;5346436;5047470;5046820;5035448;4400661 -5200;'019;Americas;1640;Plywood and LVL;5922;Export value;1000 USD;21455;28350;33973;44439;45324;51582;60959;67451;82807;69546;65348;103426;150031;180264;207502;221418;183385;231876;282566;317466;368639;280734;331720;273056;280556;321716;394940;537271;536423;576427;523469;697457;860815;868540;1073193;984564;1105212;787761;1063914;1087397;1040508;1098159;1364685;1945156;1816375;1689896;1771491;1676431;1186492;1460628;1489682.3;1463552;1487951;1590413;1682646;1607645;1823926.55;2116852;1993516;1815043;2786766;2737197;2106384 -5200;'019;Americas;1607;Laminated Veneer Lumber (LVL);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2229316;1974465 -5200;'019;Americas;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;221713;206164 -5200;'019;Americas;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;193412;189265 -5200;'019;Americas;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;160903;108879 -5200;'019;Americas;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102547;93091 -5200;'019;Americas;1646;Particle board and OSB (1961-1994);5516;Production;m3;685700;861400;1043200;1368500;1784500;2394700;2583700;3137500;3760200;3792400;5214200;6641600;7598600;6784100;5614700;7032300;9040200;9936000;8847700;8265400;8369100;7510600;9695500;11521400;12416250;13874900;15116000;15626200;16527900;16540100;16591000;19155700;20603600;21070686;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5200;'019;Americas;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;5600;4300;5300;7300;12200;12300;23900;34000;88000;62900;135300;209100;247300;297700;258300;391000;451380;559080;636380;702880;711480;650880;853100;1271300;1374646;1305512;1385121;1564827;1887341;1895230;1585146;2326951;3176988;3911584;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5200;'019;Americas;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;466;289;429;681;1471;837;1607;2283;5025;3512;6524;10322;17283;21590;16934;28208;59210;72443;82016;87162;95256;78693;106888;152701;166549;164990;180091;195720;282403;256371;234140;423974;597244;837420;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5200;'019;Americas;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;15400;16500;20500;23200;28800;22200;19900;24500;49300;34900;54900;109600;180700;257300;192600;195700;421000;470200;661800;811300;813300;693300;718700;1098600;1270100;1267600;1443200;2051000;2008100;2354400;2104700;2744544;3602120;4097677;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5200;'019;Americas;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;821;859;1183;1275;1553;1425;1790;1721;3379;2454;4060;7269;12556;19970;14564;17363;35954;45348;71889;97411;109780;99660;101252;151655;176301;174369;193912;252965;283436;314903;272737;474845;657945;854085;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5200;'019;Americas;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9328896;11290656;11800712;13307656;16191784;15356605;13709176;13517120;13776988;14646315;13760800;13923650;12717410;11475020;11184340;12253025;12306410;10853000;11623679;11405910;11093600;11338200;11332751;11588909;11227241;10913763;12535799;11864863;11031220 -5200;'019;Americas;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1618373;1853440;1698313;1867789;1879792;2217437;1962418;2339122;2474351;2380610;2354402;2552511;1972455;1634215;1579188;1310782;1753746;1389624.16;1673535;2637812.13;2636185;2701689;2941986;3009083;3043422;3130346;3508944.37;3147374;2666837 -5200;'019;Americas;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;350990;297421;262287;372199;357263;427643;349112;366537;410808;451117;420718;465076;442673;434462;332730;399447;430914;482668;568641;628580.68;626722;667605;751536.45;778558;838591;790703;1059297.28;1208793;861044 -5200;'019;Americas;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2001358;1872749;2054449;1782928;1740606;2076206;2062235;2188719;2513178;2524796;2047528;1777937;1643251;1415243;1236107;865687;1237438;1479026;1656188;1780594;1630828;2089448;2107791;3629491;2179653;2116332;2353682.35;2326146;2143877 -5200;'019;Americas;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;403981;360355;403591;331262;335927;418237;399204;375197;414562;471869;416981;427346;448735;406851;338823;383730;394448;443719;527845;585604;562987;601942;645052.41;658719;692529;644814;846280.21;966199;830183 -5200;'019;Americas;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12598000;13942000;15255000;16210107;17970816;19753112;19047820;20305000;22467000;22715500;25189000;25520700;25480000;19545000;14999490;13923375;14880990;15970000;17786420;18875580;19323255;19820484;20555247;21285510;22045800;21008513;21700710;21488910;20338000 -5200;'019;Americas;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3111000;4746000;5812000;5810700;6636000;6864705;7279007;7640712;8159183;8935112;9473657;9165491;6203155;3427708;2645307;2732642;2808165;3263074;3754771;4313025;4846217;5436810;6009127;6163793;5883230;5458530;6705682.06;6524729;6060826 -5200;'019;Americas;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;584258;729131;753762;1053634;1514324;1302880;1044631;1110465;2020650;2912644;2736126;1990265;1075927;649991;477268;683931;596152;868345;1203382;1029798;1031047;1337332;1574821.85;1781216;1186774;1825888;4303384.52;3372106;2007959 -5200;'019;Americas;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3172340;4275000;5017000;6041300;6887000;7090898;7455836;7650155;8065484;8728050;9139062;9192342;6862146;3984709;2875468;3036420;3444383;3687710;4239206;4764466;5125816;5880318;6286230;6654332;6102444;5692662;6130771.26;6198100;5848610 -5200;'019;Americas;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;611190;716589;700801;1145913;1620783;1405472;1130394;1169506;2006580;2951257;2713656;2064713;1282352;794848;537209;794316;744944;979649;1347319;1141310;1097354;1407333;1636376.14;1853487;1264500;1886821;3977040.44;3229158;1995894 -5200;'019;Americas;1874;Fibreboard;5516;Production;m3;2016600;2132600;2273800;2474700;2564800;6312749;6399160;7273823;7576845;7106911;8292943;8941700;9127705;8063152;7607144;8852900;8985000;8985200;8942500;7707000;7551000;5490000;7102000;7312700;8059400;8163200;8270650;8133000;8520000;8253200;8153400;8576200;8709000;8997800;8441700;8679840;8766566;9832202;10571282;10777159;9927085;10982829;12069517;13361434;13380265;14553251;13903031;13472286;14995633;14872727;14232753;15163000;15870514;16145250;16226150;15904250;15681874;14961566;15528176;15630350;17075053;15087052;14292783 -5200;'019;Americas;1874;Fibreboard;5616;Import quantity;m3;131474;165037;210705;229574;261368;249807;233561;400322;473398;339223;417713;612761;664434;559616;239692;329296;458049;620301;463300;371700;415400;379100;611100;581600;639000;706900;645948;683252;568059;634038;492658;512884;609753;962286;789219;1078671;1390860;1563955;2174110;2868426;2863497;3353872;4076197;5065536;5327069;5579817;4997119;4138463;3062181;3887883;3858055.31;3850114.6;3493906.4;3728224.27;3839461.27;4105635;4576508.27;5161633.27;4641627;4670744;5607572.9;5402271.26;4119968.05 -5200;'019;Americas;1874;Fibreboard;5622;Import value;1000 USD;13364;16702;21293;22788;26363;22569;20529;26335;28147;22113;29727;43272;53897;53402;29683;40102;50752;85609;68079;62592;77275;65685;119475;108007;112374;118988;140517;142073;146520;138111;117110;145289;201608;271448;220205;278010;386601;426830;594325;741501;937563;1077167;1313468;1801336;2042202;2112451;1943639;1784563;1589637;1632351;1674556;1871688;2025496.03;2114997;2090113;2070248;2121718.02;2080973;1982241;1965742;2747023.9;3456897.02;2228078.57 -5200;'019;Americas;1874;Fibreboard;5916;Export quantity;m3;44100;43400;61300;82200;102400;194534;181545;221511;272061;233695;313364;366738;412075;404831;339867;382025;423900;481800;453900;525200;673200;586700;657900;686900;678900;813700;839700;944100;1076700;972900;998600;1266981;1346261;1574573;1690517;1823317;2003352;1902053;2199113;2078620;2481152;2904613;3646239;4039613;3687820;3714582;3739246;2819591;2363831;2442267;2558031;2543890;2418621;2451904;2516525;2770859;2653069;2962085;2928964;2810048;3059953.82;3171132.38;2651416.38 -5200;'019;Americas;1874;Fibreboard;5922;Export value;1000 USD;7329;7580;10018;12645;15700;16140;15342;17884;22164;21251;26896;35115;46316;59311;50128;60568;70088;70684;74718;97701;116358;96397;105891;113461;117990;132515;166055;207742;232550;254758;249427;319227;359939;431499;463604;465541;507534;516149;594007;578284;594191;721756;821762;1098453;1077889;1113226;1221752;968831;944762;834589;859642;906313.12;883324;902815.06;878587;874611;876483.03;926851;917288;885769;1179162.93;1452617.56;1086788.56 -5200;'019;Americas;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2450700;2656840;2463530;2199508;2204282;2274019;2012773;1947601;2338764;2168061;2305655;2643492;2294179;2173960;1927095;1996070;1297000;1177000;1161000;1152800;1152500;1082000;978906;936236;904674;802670;897035;879738;882738 -5200;'019;Americas;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;366261;460860;510306;395528;521827;630714;886667;1362306;1442032;1693728;2000650;2049560;1594763;1142325;621320;623431;502185;515468;527940;468692;424838;510074;487788;489538;417740;444408;541465.78;458377.05;297036.05 -5200;'019;Americas;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;127306;165661;191825;136612;155374;169618;410565;597493;736878;1022125;1229819;1238382;914535;703197;533768;398705;383506;387243;365737;325002;243951;249102;300549.77;290837;261647;278274;399988.22;388839.57;240228.57 -5200;'019;Americas;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;910900;977700;1010400;676200;697200;705567;874127;886815;1141378;1206560;1167056;1255124;1130651;862003;713946;547841;449736;421930;433807;382435;381098;440968;396865;481181;475869;527107;563788.45;494783.74;365752.74 -5200;'019;Americas;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;272652;278517;283003;192869;206848;203251;248051;297946;319340;444113;479187;464827;439433;386291;320554;267632;203605;221788.12;181671;163406;153616;170114;196811.03;191424;195008;216239;270277.93;272224.07;173643.07 -5200;'019;Americas;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2398000;2725000;3285036;3895694;4630000;4766140;5092312;5793228;6488753;7941373;7861610;8696759;8395852;8085326;8177188;7985307;8044403;9076000;9800164;10083100;10164300;9912900;10359968;10712902;11311074;11515252;12865590;10894886;10097617 -5200;'019;Americas;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;234289;409067;665276;906107;1338487;1896073;1533140;1569092;2073510;2741005;2590832;2603486;2335638;2127279;1947268;2806317;2863211;2714427;2454471;2770431;2970498;3278597;3792847;4200203;3823231;3839072;4661452.66;4581517;3563418 -5200;'019;Americas;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65271;84045;162351;237009;373411;500345;443077;393022;470356;637027;639570;671960;767616;858431;918932;1097286;1155702;1313888;1510242;1615865;1708907;1712099;1732366.92;1681539;1620856;1596631;2254503.08;2945272;1896679 -5200;'019;Americas;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;526517;604817;745500;953100;1239000;1254523;1273540;1501369;2030336;2208240;2053832;1908980;1409711;1499145;1397523;1668971;1829079;1765533;1667039;1768922;1840302;2044494;2032502;2206453;2194737;2000797;2205582.67;2270951.61;1965423.61 -5200;'019;Americas;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;143509;144740;184958;246054;315695;334798;288854;312542;398815;538260;482839;526400;424913;461257;560433;511462;583035;586037;623971;657138;652055;639560;626309.54;658996;651255;602356;833498;1062166.47;822805.47 -5200;'019;Americas;1650;Other fibreboard;5516;Production;m3;1146800;1156000;1215100;1298500;1327200;5019400;5109200;5731000;5862000;5318400;6169400;6558000;6576400;5539100;5276400;6091000;6039200;6059200;6081000;4151000;3914000;2349000;2912000;3218000;3946000;4041000;4048000;3910000;4045000;3731000;3634000;3721000;3506000;3623000;3593000;3298000;3018000;3737000;3737000;3737000;2822000;3242000;3242000;3252000;3213000;3213000;3213000;3213000;4891350;4891350;4891350;4910000;4909350;4909350;4909350;4909350;4343000;3312428;3312428;3312428;3312428;3312428;3312428 -5200;'019;Americas;1650;Other fibreboard;5616;Import quantity;m3;14500;8000;10800;16900;15600;34600;23800;145600;213200;158000;153200;231600;275200;281200;100400;132200;209800;264600;118700;123500;144000;156500;191900;239100;316200;379600;278648;366352;213559;300358;113058;155773;152374;157541;188669;208744;215278;262320;313796;341639;443690;422474;560655;630803;735587;926771;1066718;868859;493593;458135;492659.31;620219.6;511495.4;489101.27;444125.27;316964;295873.27;471892.27;400656;387264;404654.46;362377.21;259514 -5200;'019;Americas;1650;Other fibreboard;5622;Import value;1000 USD;1713;1072;1618;2138;1907;2312;1692;3768;5425;5127;5231;9196;12498;12509;7246;8578;10380;16838;9201;9957;12850;13074;23087;25922;28926;34164;31536;45028;35263;30744;19839;25497;17435;19729;27628;28304;32425;53209;65540;71538;83921;86652;106234;142184;172813;202109;261488;222935;136937;136360;135348;170557;149517.03;174130;137255;109047;88801.33;108597;99738;90837;92532.61;122785.45;91171 -5200;'019;Americas;1650;Other fibreboard;5916;Export quantity;m3;24900;24900;31400;37600;29100;135600;113600;132400;172000;112800;154400;160000;184400;178400;138900;160600;185600;223900;210600;228000;338000;264800;323000;352300;355000;475300;421700;477800;557000;364900;362000;252593;259142;251353;253100;240800;247452;272753;262913;118530;333485;516429;474525;624813;466932;550478;1198884;458443;252362;225455;279216;356427;317775;300547;295125;285397;223702;274451;258358;282144;290582.7;405397.03;320240.03 -5200;'019;Americas;1650;Other fibreboard;5922;Export value;1000 USD;4811;5032;6006;6805;5834;8009;6772;7039;9620;5948;8435;8524;10994;15061;11573;13625;14552;18238;18340;19857;23585;21332;24549;28917;30782;40685;35423;49597;66009;76436;67734;53907;50100;50980;47443;42284;39573;77226;71464;40235;57286;111268;103607;116080;115863;121999;357406;121283;63775;55495;73002;98488;77682;82271.06;72916;64937;53362.46;76431;71025;67174;75387;118227.02;90340.02 -5200;'019;Americas;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;869800;976600;1058700;1176200;1237600;1293349;1289960;1542823;1714845;1788511;2123543;2383700;2551305;2524052;2330744;2761900;2945800;2926000;2861500;3556000;3637000;3141000;4190000;4094700;4113400;4122200;4222650;4223000;4475000;4522200;4519400;4855200;5203000;5374800;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5200;'019;Americas;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;116974;157037;199905;212674;245768;215207;209761;254722;260198;181223;264513;381161;389234;278416;139292;197096;248249;355701;344600;248200;271400;222600;419200;342500;322800;327300;367300;316900;354500;333680;379600;357111;457379;804745;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5200;'019;Americas;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;11651;15630;19675;20650;24456;20257;18837;22567;22722;16986;24496;34076;41399;40893;22437;31524;40372;68771;58878;52635;64425;52611;96388;82085;83448;84824;108981;97045;111257;107367;97271;119792;184173;251719;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5200;'019;Americas;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;19200;18500;29900;44600;73300;58934;67945;89111;100061;120895;158964;206738;227675;226431;200967;221425;238300;257900;243300;297200;335200;321900;334900;334600;323900;338400;418000;466300;519700;608000;636600;1014388;1087119;1323220;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5200;'019;Americas;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;2518;2548;4012;5840;9866;8131;8570;10845;12544;15303;18461;26591;35322;44250;38555;46943;55536;52446;56378;77844;92773;75065;81342;84544;87208;91830;130632;158145;166541;178322;181693;265320;309839;380519;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5200;'019;Americas;1879;Total fibre furnish;5510;Production;t;41601100;43049300;44935400;48557400;50861100;55953400;55952800;60780300;64046300;67920100;68462300;73236500;77447100;79482900;67797200;77168800;79889100;83828000;86012000;90755108;91074216;86002708;91864408;98278408;96377700;103117616;108861416;113088016;116757008;117775908;122243008;125305416;127226800;141193400;140276700;139098400;141592800;140791446;142756000;147102803;139357900;141044669;144162989;147712863;149567820;152897628;157253552;154441446;145540518;150155059;151318716;147778078;148832509;152622221;153982796;156099306;156961294;162718011;156430463;151561379;154516857;155738663;149875073 -5200;'019;Americas;1879;Total fibre furnish;5610;Import quantity;t;325100;335100;334500;362200;377200;405600;337100;3471600;3939600;3831300;3803700;4226800;4505400;5052130;3713165;4421770;4583869;5172091;5630548;5537400;5402600;4911400;5511400;6313900;6159500;6706750;7356700;7197800;7201766;7227753;7492320;7976818;8447165;9724722;11733548;9624256;10959269;11319704;11855893;13060670;12572051;12843634;12657284;13304721;12757959;13076000;13811017;12941029;10177458.06;11504266.48;11270014;10694414;10996000.69;11405064.47;11051596;11406834;11131129.12;11791615.12;11118969;11476630;12614330.64;13043477.47;12343778 -5200;'019;Americas;1879;Total fibre furnish;5622;Import value;1000 USD;27073;26520;24903;29799;31266;40344;34912;453762;527658;556855;562235;599790;799803;1422846;1272673;1429613;1378796;1395717;1846260;2139201;2236852;1952871;1883014;2378004;2031874;2125358;2768137;3376014;3983970;3790674;3008016;3201615;2793775;3555669;5786596;3812262;3764570;3537481;3801185;4976459;3909973;3690053;4047665;4631390;4776412;4858323;5673094;6259684;4105194;6202193;6262164;5228092;5323016.84;5703072.64;5481383;4900073;5094355.57;5932366.64;5409550;4718190;6328242.28;7598192.32;6185570 -5200;'019;Americas;1879;Total fibre furnish;5910;Export quantity;t;221200;245600;233300;273800;356900;302800;256600;5478900;6346400;7539300;6788300;7404500;8217300;9775356;7878957;9379168;9705874;10427215;12088206;13717537;12702000;12043034;14538800;14762185;15979000;16541500;17678900;22018300;20594000;21793300;22149700;23972949;23905926;27025549;28281325;26787627;28614840;28268486;30378351;33113916;32465098;34323612;36983211;38914846;40475832;43101763;47071199;48413330;49906614;51106591;55374443.92;54196621.65;54043958.05;55836605.85;57923753;60196058;59055788;60276583;57191080;54906031;56114608.43;58685091.57;55411243.57 -5200;'019;Americas;1879;Total fibre furnish;5922;Export value;1000 USD;15823;17324;16326;19389;34072;34025;28590;683139;821813;1061134;965933;1048279;1394260;2651288;2573844;2915019;2839754;2735558;3966691;5426959;5255404;4414299;4303625;5216179;4381910;5247079;7279081;9350102;10667240;9654741;8259329;8924879;7363543;9531465;15186583;10321124;10096749;9241195;10278288;13662394;10202773;10064312;11433418;12852140;13363433;15129802;18709505;21038579;16369901;22902102;24689596.5;22092916.75;22813142.05;22973163.04;23018430.79;22012442;24018141.79;28907008;24539999;20560745;25106583.22;28648458.07;25410652.7 -5200;'019;Americas;1878;Pulp for paper;5510;Production;t;33197100;34645300;37008400;40228400;42532100;46501400;46734800;51014300;54237300;54714100;54839300;58529500;61318100;62752900;53539200;60440800;62150100;65502000;68354000;70908108;71491216;66973708;71220408;75870408;74039700;78467608;82695416;84911008;86312000;86570900;89027700;89742008;89163300;98763900;95309200;93220900;94929400;93193535;94077000;95571803;89757503;91010689;92356994;94799620;94932373;93025595;96018717;93112546;86503218;89815755;89579816;88430964;88540930;91015148;91730916;93524687;93695137;99086178;96408402;94290339;94227470;95007619;93929372 -5200;'019;Americas;1878;Pulp for paper;5610;Import quantity;t;325100;335100;334500;362200;377200;405600;337100;3471600;3939600;3585300;3527700;3891800;4161400;4378200;3250400;3806200;3854000;4050200;4508600;4282500;4341200;3998900;4290000;4851600;4881200;4993950;5487000;5374300;5265700;5180053;5365020;5702838;6250871;6518443;7062319;6477797;7107545;6933763;7636288;8193584;8339317;8379316;8161402;8163044;8144435;8684220;8438402;8167594;6568432;7527926.1;7477572;7067165;7565915.57;7841623.35;7592718;7803195;7530774;7662899;7354683;7816215;8053968.33;8748303.47;7855187 -5200;'019;Americas;1878;Pulp for paper;5622;Import value;1000 USD;27073;26520;24903;29799;31266;40344;34912;453762;527658;541507;544752;579556;769910;1339914;1211559;1353290;1296928;1291101;1716318;1976747;2102976;1843130;1720908;2171524;1857481;1906693;2471877;3006550;3542450;3421302;2707241;2843615;2504998;3078328;4938082;3406182;3306314;3044633;3283805;4228481;3409917;3149574;3448366;3875399;4049251;4231327;4805254;5346166;3496434;5253558;5276615;4463010;4613398.2;4936016;4786237;4196965;4288767.8;5083936;4683137;4008853;5243899.98;6335197.32;5303956 -5200;'019;Americas;1878;Pulp for paper;5910;Export quantity;t;221200;245600;233300;273800;356900;302800;256600;5478900;6346400;6980300;6271300;6893500;7485300;8393600;7003700;8044900;8163300;8845500;9929100;11155600;10544800;9832700;10994600;11142700;11321500;12442300;13352800;14275300;14686100;14168200;15883200;17804072;18263929;19651255;21142542;20292000;20980300;20201646;21779592;22243510;22303163;23207960;23378313;24594694;24398884;25749357;27215190;28246597;28618997;29714255;31334470.92;30672890.65;31915506.05;33565651.85;34924796;36922841;37220013;38352923;38413376;38513872;37476928.76;40802306.57;39757717.57 -5200;'019;Americas;1878;Pulp for paper;5922;Export value;1000 USD;15823;17324;16326;19389;34072;34025;28590;683139;821813;1031620;935771;1018959;1338697;2487228;2488584;2778263;2685982;2573285;3691678;5077075;4961173;4142370;3979469;4787937;4015332;4761984;6661548;8616099;9842499;8825140;7494751;8229339;6791902;8917003;14314735;9540364;9254317;8406044;9306997;12320942;9240391;8895967;9936068;11176835;11459752;12859462;15670090;17719347;13542190;19245098;20423796.5;18222122.75;19199893.05;19394217.04;19516519.79;18427817;20318621.94;25192560;21556391;17859403;21420369.68;24985045.07;22564358.7 -5200;'019;Americas;1875;Wood pulp;5510;Production;t;34005600;35596300;37882500;41168000;43464800;47354400;47541300;52032300;55208800;55628000;55655500;59285600;61946300;63526300;54022600;60733200;62469000;65895000;68692900;71159608;71629016;67005108;71496808;76118408;74286600;78743108;83059216;85257508;86639500;86840400;89496200;90235508;89696800;99312900;95649200;93739900;95401600;93751535;94571000;95933911;90203503;91466689;92790494;95281820;95193573;93518095;96371417;93692466;87254918;90674448;90792027;89752090;90166784;92522809;93034842;94843268;95172993;100730941;98093635;95957225;96376756;97143433;96329021 -5200;'019;Americas;1875;Wood pulp;5610;Import quantity;t;541900;624400;623000;676600;691100;737900;645600;3826400;4305400;3910100;3874500;4151200;4369000;4614600;3451400;4030500;4044600;4297000;4723200;4575700;4620500;4217100;4531200;5031900;5037900;5243750;5629300;5504200;5548200;5407477;5549230;5893902;6389763;6612730;7266386;6569718;7219953;7004059;7702824;8256767;8368086;8386873;8156287;8270704;8246789;8772666;8539989;8343466;6686738;7722183.1;7751814;7408444;7803117.57;8028462.35;7743796;7924228;7644373;7797746;7469936;7968852;8247270.35;8967435.44;8063084 -5200;'019;Americas;1875;Wood pulp;5622;Import value;1000 USD;65131;77665;77058;88594;92028;102344;94692;522554;598099;605541;611925;633339;819568;1425106;1290450;1437332;1375590;1382027;1797070;2112416;2232115;1943766;1825774;2249091;1921754;2002728;2547668;3097556;3753801;3579066;2823012;2960372;2593354;3146203;5074831;3498645;3393616;3106341;3333394;4285331;3439529;3161315.1;3467032;3932782;4111713;4319754;4923055;5535411;3643541;5452341;5669933;4862998;4990105.2;5193700;4992367;4373273;4441844.72;5261015;4862596;4184231;5437155.55;6554002.08;5503831 -5200;'019;Americas;1875;Wood pulp;5910;Export quantity;t;894400;1003300;1046300;1158400;1136100;1087100;1087600;6377900;7312200;8016200;7256600;7842100;8334500;9282200;7704500;8787100;8939300;9652800;10742400;11941000;11345400;10465900;11646400;11768800;11951800;13142400;14064100;15035200;15454800;14972200;16677400;18640097;18971292;20426876;22021042;20964700;21635500;20819469;22364061;22798246;22701426;23644121;23791412;25003121;24823778;26220890;27736330;28896966;29553789;30707265;32765518.5;32377853.65;33743208.05;35353026.85;36587906;38630327;39090235;40203429;40258930;40093089;39463746.55;42821930.57;42082336.57 -5200;'019;Americas;1875;Wood pulp;5922;Export value;1000 USD;140528;153019;161055;177983;173413;173045;180046;850832;996907;1239715;1141283;1213697;1519600;2796708;2778975;3089788;3008586;2904682;4062022;5500642;5410826;4480047;4310562;5110361;4318516;5123300;7064954;9117060;10434491;9381195;8005841;8748343;7240963;9408383;14955232;10137082;9774757;8884820;9723120;12780095;9544306;9179735;10215821;11469935;11768382;13219618;16102342;18397643;14422854;20314402;22229637.5;20211787.75;21182914.05;21275502.04;21025772;19927171;21952914.78;26859928;23079387;19027192;23224734.84;26998544.07;24642878.7 -5200;'019;Americas;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13755043;13898626;13728588;11376683;11210263;10853304;10227247 -5200;'019;Americas;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;130743;210705;184397;163269;200896.55;295002;172607 -5200;'019;Americas;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56490.24;91987;88842;68195;86607.67;170244;91081 -5200;'019;Americas;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2221022;2244986;2254404;2265941;2211812.43;2164187.2;1938098 -5200;'019;Americas;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1179711.5;1375787;1060994;998217;1099765.8;1349071;1037139 -5200;'019;Americas;1654;Mechanical wood pulp (1961-2016);5510;Production;t;8526900;8617300;8775800;9420100;9790400;10439500;10270900;10651900;11430200;11341600;11214100;11630300;12251700;12535400;10528000;11547400;11659800;12151700;11820900;12161000;12899700;11908300;12898400;14289600;13929200;14732400;15413900;16175500;16726500;17032400;17180100;16777500;16930800;17619900;17918200;17136900;17698000;16608674;17314000;18404432;16786441;16938760;17166487;17358790;17255000;16421571;15931014;14767213;12830456;13594301;12493714;12262268;12064268;10945568;10611824;10506368;;;;;;; -5200;'019;Americas;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;325100;335100;334500;359100;358600;310200;272900;249100;278800;199600;191900;212200;191100;207500;153700;164500;160800;168200;191000;193800;216300;191100;245800;316800;173400;95650;127400;247200;215400;162200;147700;145527;171492;232479;247716;153383;146439;116102;144940;126047;139214;173518;159881;138904;120028;128097;100551;77053;39521;42108;37734;37279;43755.06;45837;38827;33236;;;;;;; -5200;'019;Americas;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;27073;26520;24903;28968;28711;25633;24927;20032;20394;15503;15324;16618;18475;35664;28978;30150;32243;35150;47181;49728;74483;63747;80459;96529;51969;28264;43753;89433;90401;69289;67440;61398;59945;90710;89554;49353;46805;40318;47699;49076;45910;49709;48642;41181;41177;50084;43429;37989;15503;21989;20515;18654;18676.2;20098;17076;13511;;;;;;; -5200;'019;Americas;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;221200;245600;233300;267000;301900;245700;217000;218400;253600;288400;239600;269200;271400;285000;233200;354800;352000;302200;346900;326900;280300;285500;361300;543900;469500;543300;546100;364500;361500;332800;408400;338872;383562;426671;450903;396300;389000;297500;426900;391262;377602;345574;333604;275451;190001;132843;139100;183033;279547;157743;132348.3;68063.05;62127.05;89534;118616;125968;;;;;;; -5200;'019;Americas;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;15823;17324;16326;17787;20442;17184;14614;14026;16047;19136;16502;17867;21005;36260;44282;69793;68388;53086;71680;73446;67616;72315;90367;159523;133497;155513;189474;128263;142390;130144;179996;126137;130529;157627;182218;125483;138812;94796;132200;141132;126349;109551;108856;85791;64112;53541;63730;102422;133906;88077;60677.3;31421.05;28560.05;43505;53751;51300;;;;;;; -5200;'019;Americas;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;2299900;2505000;2607100;2723300;2994600;3119500;3203200;3497400;3663600;3410800;3618300;3977400;4078400;3980400;3323800;3700900;3729900;4127300;4747800;4250600;4167800;3850800;4074400;4336800;4243400;4393700;4526300;4593000;4778000;4743000;4608100;4498000;4209000;4664000;4226000;4085000;4234600;4236948;4355000;4487897;4026449;4050900;3918553;4205361;4339330;3954034;4379629;4135878;3811394;3866672;3972281;4201636;4213729;4102842;3955983;3895650;;;;;;; -5200;'019;Americas;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;800;1000;1100;400;6200;5800;11300;7700;4300;11100;17100;7800;11300;12600;9300;13900;6500;9500;7500;3000;3200;9000;161900;178100;168604;220679;320869;318594;284224;298646;340546;304340;323767;362617;308732;285361;294883;340303;393103;296690;268926;321489;341859;450500;416650;329943;295261;287585;218104;163642;;;;;;; -5200;'019;Americas;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;86;126;140;55;947;907;1631;2781;2011;3841;6813;2665;4287;5898;4499;5199;2469;3938;2781;1310;1753;5837;75949;81972;61113;82688;105855;115706;149598;127060;134961;107975;110102;153748;117156;110229;121476;143409;159363;126742;129153;172828;159209;249085;231384;168928;146732;122608;105068;70625;;;;;;; -5200;'019;Americas;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;900;1000;;1600;;;;;8700;500;;;;;;;;;;;18700;335100;613800;651900;643400;894667;991610;1209205;1338620;1454600;1544700;1604100;1745300;1781166;1491159;1923629;2167822;2377023;1960023;2002528;1988192;2017023;1977104;2621725;2287259;2608045;2346429;2241091;2184821;2046236;;;;;;; -5200;'019;Americas;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;394;438;;700;;;;;3808;219;;;;;;;;;;;9112;151757;278358;275635;231813;318887;309833;471287;822277;529911;527738;538241;653461;891459;585767;736840;907685;1040477;898959;1017089;1110546;1276218;1003510;1636173;1314907;1412212;1278096;1204759;1002504;874464;;;;;;; -5200;'019;Americas;1656;Chemical wood pulp;5510;Production;t;21756200;22889100;24864800;27294600;28904600;32015100;32355400;35930300;38136000;38910600;38909100;41799900;43833200;45009500;38445800;43884900;45492300;47934000;50353200;52982008;52975516;49969008;53120008;56114008;54764000;58192008;61612016;62900008;63491000;63582000;66176000;67389008;67219000;75637000;72212000;71040000;72068000;71525913;71558000;71800474;68113613;69198029;70420454;72432669;72459243;71909490;74814774;73398375;69065068;71545475;72410032;71264186;71552787;74991759;76209995;78185250;79000950;84386761;81908033;82167209;82362493;83534315;83064302 -5200;'019;Americas;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;3189500;3634000;3360900;3299900;3645400;3924600;4108600;3066300;3601000;3627000;3827900;4257500;4048500;4088800;3768600;4022700;4475800;4627500;4839400;5255600;4991500;4870800;4821353;5035216;5311427;5726582;5929468;6493623;5967038;6556766;6447578;7119768;7656994;7823976;7849570;7633329;7603644;7533502;8169239;7974530;7673541;6108706;6965191.1;6959599;6656663;7196988.51;7475017.35;7293326;7555976;7343746;7394348;7106216;7592036;7769912.94;8365665.44;7609674 -5200;'019;Americas;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;429658;503306;522014;523446;557504;744403;1288397;1170624;1309086;1247623;1238095;1644997;1906686;2008663;1761553;1628534;2041881;1772250;1850007;2380952;2852313;3360239;3252899;2567551;2676987;2318892;2846199;4670961;3191372;3084812;2860667;3085076;3984953;3201124;2945704;3232206;3633152;3775727;3996519;4572811;5057281;3259661;4913197;4943450;4216271;4411058;4754499;4625164;4064625;4164877.07;4929653;4541978;3873156;5081866.66;6065869.08;5121311 -5200;'019;Americas;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;5216100;6042800;6635700;5988000;6570100;7186800;8039200;6706400;7621800;7735300;8453800;9453800;10681900;10132700;9434000;10521700;10503500;10736400;11737900;12604800;13331900;13496500;13036900;14716600;16447878;16758226;17911300;19232419;18317000;18871000;18164346;19441138;19869622;20176151;20757940;20734330;21815806;22085174;23466000;24940013;25900887;26254335;26800746;28741114.2;27888625.6;29424107;31127729.85;32521251;34641669;34863521;35967956;36040575;36126242;35144261.17;38528655.37;37729606.57 -5200;'019;Americas;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;655372;791001;995738;905806;986019;1297126;2411291;2406203;2670634;2573160;2467581;3540788;4904922;4802262;3988529;3810097;4555670;3800833;4524771;6362596;8184710;9260319;8291780;6978432;7679805;6258405;8198197;13192119;8775354;8450248;7645414;8374630;11125821;8353945;7910173;8802787;9937661;10353211;11638028;14328958;16160107;12285306;17354580;18820246.2;16611009.7;17770352;18010304.04;18341262;17377135;18994280.06;23670456;20372283;16740306;20217702.38;23511422.08;21430060.7 -5200;'019;Americas;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;9524600;9908100;11505000;12803500;14411700;15696500;15980500;17543700;18194500;18504100;18362200;18396500;19090000;18978000;16147000;18708000;19540000;19965000;20999000;21533000;21861008;19450000;21236008;22326008;21476000;21814000;22711008;22996008;22902000;23178000;23358000;23368008;22770000;26718000;24782000;24212000;24500000;22563698;22766000;22570216;21397806;21605576;21565062;22040515;21933762;21556559;22162610;21038379;19728297;20157063;20186153;19367995;19495653;22613547;22820302;22986955;23809993;25468672;25576255;26457600;27476000;27558000;26661000 -5200;'019;Americas;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;378800;402100;375300;363500;428400;470300;451200;215200;292300;278900;240400;241400;206800;224300;193700;222600;228600;208500;204300;302600;212000;144600;322500;340300;164030;163227;216963;184409;176461;249961;224541;210241;212349;307172;391373;275893;215477;159607;191477;265608;200788;108681;122430;131042;261343;258096;272549;323093;347557;383388;357609;283635;175480;208832.09;218959.44;167044 -5200;'019;Americas;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;45016;48933;52446;52404;54650;87154;132680;84779;99819;83394;71245;86360;88962;101190;79214;81473;88602;75120;75470;91459;110978;81084;181078;185386;77143;57451;105018;118449;88244;106612;87678;75248;91001;87843;96516;85383;81844;72985;79770;130397;107221;53715;81835;97201;159419;147242;136274;134456;122584;134737.75;145365;135944;98343;147085.74;147812.08;100654 -5200;'019;Americas;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;462300;503600;570000;490600;569900;750900;721000;617900;560600;634500;644600;670300;630600;769900;610400;898000;833900;805700;893200;887300;476200;477800;580300;571500;586497;564925;691000;750300;593700;591600;523404;611104;542318;851674;836825;632164;630709;694709;755763;812911;629709;798769;732375;830794;814110;938248;918259;865751;869426;880145;948527;989725;1004663;1180671.71;1269568.57;910401.57 -5200;'019;Americas;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;47022;53436;71476;62204;66257;116839;212574;177693;144998;142349;139700;206295;238814;291321;200307;264158;320042;240753;298784;404821;261052;232440;249451;232834;231650;183633;276092;405553;219603;220715;181732;205404;232067;245778;248416;218775;247309;277086;333258;441035;352444;341544;445528;530281;448913;544774;595097;505326;472640;522146.11;753577;583324;519472;817989.7;929849.7;565970.7 -5200;'019;Americas;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;4966500;5405000;5301000;9227200;9189700;10681300;11314100;13587400;15119500;15543600;16134300;19020000;20301000;21227000;18392800;20883900;21754500;23939600;25336000;27344208;26997508;27155008;28550000;30338000;29978000;33162008;35705008;36587000;37430000;37372000;40206000;41603000;42051000;46559000;44998000;44514000;45243000;47044802;46831000;47439764;45170935;46082071;47367261;48913219;49064209;49012910;51312626;51062136;48198642;50107396;50668925;50271151;50618034;51913212;52961693;54764473;54747358;58463153;55843712;55166509;54345493;55485941;55907928 -5200;'019;Americas;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;2045000;2410600;2193900;2302100;2555000;2694500;2744100;2238600;2619900;2659500;2884500;3195400;3096100;3054600;2881400;3142100;3346500;3468800;3940100;4168400;4116100;4139700;4137136;4353593;4832341;5211243;5432422;6003599;5463709;6022586;5939156;6586871;7092871;7232521;7144016;7024396;7082633;7072920;7661273;7441056;7210887;5837956;6603340;6580968;6138214;6691847;6956271;6745741;6967245;6673980;6740602;6529509;7133364;7082329.56;7431488;7086571 -5200;'019;Americas;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;282609;340205;348250;370966;397055;515343;869038;879008;975853;943215;933542;1248693;1483535;1506338;1332649;1285675;1585308;1333793;1515582;1971309;2416069;2894271;2823159;2180875;2419908;2081269;2597758;4343685;2934436;2850295;2641999;2870151;3699284;2980012;2719611;2997656;3398653;3541373;3754024;4286475;4764931;3109086;4653035;4690867;3896799;4114706;4476941;4383279;3828098;3914351.12;4666357;4282751;3647924;4763277.88;5668121;4806159 -5200;'019;Americas;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;3841700;4576200;4993200;4689300;5198700;5670300;6363900;5047600;5878600;5899400;7025400;7533700;9230400;8193100;8225600;9021700;9042600;9336300;10089800;10903800;12039400;12212000;11639300;13383100;14961185;15361924;16416300;17455419;16856600;17604500;17099710;18359084;18825486;18939135;19334775;19541046;20687100;21003766;22325294;23691939;24917882;25130501;25708681;27573010;26777754;28211151;29928873.67;31349417;33386212;33666177;34704963;34742947;34976931;33771654.45;37014520;36607069 -5200;'019;Americas;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;495085;610546;763226;720792;802082;1042136;1899123;1855865;2124224;2040195;2086508;2868964;4285976;3964388;3516318;3298269;3961402;3328744;3937188;5568019;7466503;8516541;7531031;6332323;7009324;5719718;7538902;12168742;8179817;7950283;7237970;7978509;10639372;7935448;7442681;8361848;9471209;9866253;11098558;13615557;15561593;11756325;16655559;18077742;15980688;17070819;17264857.04;17692551;16711380;18336743.84;22786654;19656769;16076740;19205543.68;22326496;20641348 -5200;'019;Americas;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;443599;454936;488066;543100;541000;490374;495374 -5200;'019;Americas;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;286378;296137;293072;283192;478751.28;715218;356059 -5200;'019;Americas;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115788.21;117931;123283;126889;171503.04;249936;214498 -5200;'019;Americas;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;317199;314466;307903;144648;191935;244566.8;212136 -5200;'019;Americas;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;135390.11;130225;132190;144094;194169;255076.38;222742 -5200;'019;Americas;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;545400;497700;504000;3117200;2309000;2473000;2299100;2174700;2320600;2352800;2094700;2108200;2180000;2327500;1838000;2120000;2064000;2167400;2254200;2262800;2247000;1838000;1724000;1765000;1734000;1464000;1530000;1560000;1440000;1335000;930000;731000;731000;680000;783000;732000;794000;675000;758000;639128;450824;413085;364140;333380;330575;214788;216803;208262;166650;188178;183803;168970;169000;0;0;0;;;;;;; -5200;'019;Americas;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;101700;121800;121500;103800;95500;144100;116200;55300;70200;51800;65800;103900;102800;85300;48700;51000;61400;106200;126000;145200;48000;40100;28717;25300;17878;10986;13179;25193;29400;20200;17970;38900;34868;2334;18611;26845;23312;7944;5671;8808;4672;1328;1314.1;1916;5126;7571.51;6649.35;1626;1428;;;;;;; -5200;'019;Americas;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;12014;15021;16195;14100;12935;25815;33390;17410;19860;15005;18495;35533;40816;36935;21134;19715;27032;36706;41318;47207;21421;23062;15519;10863;6702;4091;6027;12343;14957;9077;7461;16563;15051;1114;9150;11444;9191;1787;2242;2290;2522;1543;1661;2500;3031;3766;5049;1780;1880;;;;;;; -5200;'019;Americas;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;129800;155800;201200;129600;107200;114300;162300;110800;102500;89000;101800;138900;132400;98000;110600;62000;71600;73300;73100;75300;74600;73500;59100;34200;41324;21538;31800;62000;65000;42000;94232;107850;97919;39403;66429;180911;145107;54496;33225;53847;17200;8000;12730;12852;21000;18555;20350;13218;23396;;;;;;; -5200;'019;Americas;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;13793;17673;26710;17592;13632;19471;49345;35363;28022;24028;25299;43462;51916;40654;42930;22661;27349;27666;24481;25754;28302;30179;26798;13005;17173;8321;10882;17461;17202;10439;24757;29836;32432;11377;17721;51380;42916;16550;11964;23982;11499;3044;4701;5198;9159;6116;7850;4455;8705;;;;;;; -5200;'019;Americas;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;1850200;1893100;2003800;2024200;2859600;2924800;2728200;2566900;2433600;2509600;2317600;2275000;2262000;2470000;2058000;2163000;2124000;1847000;1747000;1823000;1853000;1509000;1591000;1664000;1576000;1752000;1666000;1757000;1719000;1697000;1682000;1687000;1667000;1680000;1649000;1582000;1531000;1242413;1203000;1151366;1094048;1097297;1123991;1145555;1130697;1125233;1122735;1089598;971479;1092838;1371151;1456070;1270100;465000;428000;433822;;;;;;; -5200;'019;Americas;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;451500;451300;382700;310200;320600;369900;460000;299900;343900;426300;389000;449400;295800;329300;269300;242500;372300;309500;346700;342600;343600;366300;333000;316023;297178;341126;266904;280422;297468;264019;265911;283756;316906;281949;295570;306195;282222;293031;310818;259058;257194;160741;238107;245673;251980;239474;239548;222866;239746;;;;;;; -5200;'019;Americas;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;65003;67526;61395;50868;50484;72284;151463;111611;118554;142574;129402;177970;143541;168162;133265;112507;175124;136778;141393;169201;210518;254667;233143;190427;173234;176081;137396;196484;153735;118828;123529;123114;179617;132155;120427;137723;143464;159582;160483;153649;182607;95317;176666;152882;157022;145344;136235;105649;112063;;;;;;; -5200;'019;Americas;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;664100;686000;766000;569200;573500;651300;792000;930100;1080100;1112400;682000;1110900;688500;1071700;487400;540000;555400;521100;681800;738400;741700;733200;758200;727800;858872;809839;772200;964700;801700;632900;447000;363100;403899;345939;519911;380209;352890;332203;351718;381316;336096;317065;346960;324458.2;275761.6;256153;260247.18;292865;362635;;;;;;; -5200;'019;Americas;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;86198;94041;117922;88227;86701;118680;250249;337282;373390;366588;216074;422067;328216;505899;228974;225009;246877;203670;264318;364002;428853;481159;484500;400270;421658;346733;372321;600363;358732;268811;200955;160881;221950;161342;201355;170784;176227;193322;194248;248384;234571;184393;248792;207025.2;172249.7;148643;142500;138930;184410;;;;;;; -5200;'019;Americas;1667;Dissolving wood pulp;5510;Production;t;1422600;1584900;1634800;1730000;1775200;1780300;1711800;1952700;1979000;1965000;1914000;1878000;1783000;2001000;1725000;1600000;1587000;1682000;1771000;1766000;1586000;1277000;1404000;1378000;1350000;1425000;1507000;1589000;1644000;1483000;1532000;1571000;1338000;1392000;1293000;1478000;1401000;1380000;1344000;1241108;1277000;1279000;1285000;1285000;1140000;1233000;1246000;1391000;1548000;1668000;1916000;2024000;2336000;2482640;2257040;2256000;2417000;2445554;2457014;2413333;2804000;2755814;3037472 -5200;'019;Americas;1667;Dissolving wood pulp;5610;Import quantity;t;216800;289300;288500;317500;332500;356500;332800;386800;391500;349200;376500;287800;242000;290800;227100;253900;239700;293100;263400;320800;306100;243500;256200;229800;229500;305700;243100;256500;300100;245824;197710;216269;170820;132189;240823;150651;176202;136039;114349;111109;96164;78424;68194;187853;200156;178640;195982;271383;196652;264384;337831;384559;267113;220023;193539;171374;169884;192693;179323;213547;276460.86;306768;280803 -5200;'019;Americas;1667;Dissolving wood pulp;5622;Import value;1000 USD;38058;51145;52155;59626;63317;65317;63221;72738;74259;67969;72208;58310;55059;98264;88837;94255;88911;106117;100605;150104;144470;113267;114312;106743;94754;123147;121210;149973;227212;174906;126908;139299;108662;93588;164718;130860;127038;97381;90517;97554;75339;55673.1;64708;115040;135446;146409;177662;267313;209168;268070;474584;459145;413639;296495;245059;224512;220477.42;239375;231776;242880;268681.22;317889;291439 -5200;'019;Americas;1667;Dissolving wood pulp;5910;Export quantity;t;673200;757700;813000;891400;834200;841400;869700;942400;1015800;1090500;1029000;1002800;876300;958000;756200;810000;852000;896800;941700;932200;932400;746400;763400;721400;745900;861200;894500;1003700;983000;950600;909000;958680;837894;879700;999100;796800;830800;753523;750723;756196;656514;616978;555656;534841;588580;619519;669025;796023;1042803;1127051;1604797;1813120;1910545;1894672;1763218;1816454;2005692;1990487;1963951;1700906;2107672.95;2129088;2414632 -5200;'019;Americas;1667;Dissolving wood pulp;5922;Export value;1000 USD;124705;135695;144729;160196;152971;155861;165038;180996;189859;224141;218975;209811;201469;349157;324682;349142;367038;384015;449554;522274;540948;419203;410098;395168;384186;443016;503772;652330;753424;683636;615600;623514;542196;581272;758618;706334;657959;606369;562829;621683;478245;423171;396493;406006;452100;510960;599108;858896;1000132;1235572;2033807;2157145;2105906;2016934;1628255;1624272;1778923.21;1813685;1646110;1288669;1907266.66;2138051;2175679 -5200;'019;Americas;1668;Pulp from fibres other than wood;5510;Production;t;614100;633900;760700;790400;842500;927300;905300;934700;1007500;1051100;1097800;1121900;1154800;1227600;1241600;1307600;1268100;1289000;1432100;1514500;1448200;1245600;1127600;1130000;1103100;1149500;1143200;1242500;1316500;1213500;1063500;1077500;804500;843000;953000;959000;928800;822000;850000;879000;831000;823000;851500;802800;878800;740500;893300;811080;796300;809307;703789;702874;710146;974979;953114;937419;939144;800791;771781;746447;654714;620000;637823 -5200;'019;Americas;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;3100;18600;24200;24300;32000;25700;24400;29700;28400;34400;54400;26100;29600;49100;46300;48800;27600;26800;25300;15000;49500;72800;55900;100800;126600;17600;18400;13500;25205;31928;37902;36756;58730;63794;65743;47813;47926;67395;70867;73309;80193;97802;90194;94395;95511;78346;70127;63589;43280;29911;33184;42461;50341;56285;57846;64070;60910;83158.84;87636.03;72906 -5200;'019;Americas;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;831;2555;3317;3441;3946;3818;3935;5035;4527;5401;13072;9946;10213;10249;15191;19853;14435;15331;12631;9446;29176;30481;27112;45419;58967;15861;17142;11137;22542;20306;25713;27969;38397;39736;35673;40928;40704;45727;43932;46042;57657;72984;57982;59861;78068;62061;69287;81266;59157;36932;38811;38929;48204;67400.49;62296;52317;67502;75425.65;99084.24;91564 -5200;'019;Americas;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;6800;55000;57100;38700;43400;50000;54600;43700;54200;27100;69400;55400;67800;76000;89500;128400;146800;131800;113200;111600;95300;115600;161100;183200;243800;214300;146600;114800;122655;130531;104079;120600;124100;175600;135700;166254;201460;258251;180817;142557;126414;163686;147986;147885;145654;108011;134041;173749.42;108157;82843;107297;100108;108968;135470;139981;118397;121689;120855.16;109464;90013 -5200;'019;Americas;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;1602;13630;16841;13582;13303;14765;16046;13463;15073;20566;39677;34291;37617;44434;52618;79210;98707;91295;81526;79005;72744;81002;81700;100366;151369;161432;127581;104510;104510;93135;89892;118121;109616;137519;127593;146706;162530;174330;139403;116740;112906;143470;150804;166856;180600;119468;166268;227966;167480;122885;135649;119002.79;124918;144630.38;146317;123114;120880;102901.49;124552;97159 -5200;'019;Americas;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110500;89001;81041;34177;19001;20034;28470;33335;25470;24515;31576;17342;27045.4;33517;42976;50996;42302;37743;26323;27465;25419;68384;146603;264588.84;173570.81;167456.25 -5200;'019;Americas;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69640;62862;61546;12869;7307;8629;10440;14709;11936;8570;10299;6036.2;12985.1;12163;21596;30023;25535;22549;14672;14758.33;13218;34666;24216;45156.65;59444.01;24226.13 -5200;'019;Americas;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90200;75858;91704;37306;25945;49396;43074;42074;31694;35638;41989;78717;115256.3;93508.4;127944;124174.2;116398.2;96188.3;58197;57108;50243;283479;361424;474653;547376.39;203622.39 -5200;'019;Americas;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32310;28810;41708;15663;11435;20384;17739;19739;17117;15457;18780;34646;64514.6;47288.6;81757;88363.86;84544;67304;35953;36888.53;29851;121172;145620;250187;291773.93;77880.93 -5200;'019;Americas;1669;Recovered paper;5510;Production;t;8404000;8404000;7927000;8329000;8329000;9452000;9218000;9766000;9809000;13206000;13623000;14707000;16129000;16730000;14258000;16728000;17739000;18326000;17658000;19847000;19583000;19029000;20644000;22408000;22338000;24650008;26166000;28177008;30445008;31205008;33215308;35563408;38063500;42429500;44967500;45877500;46663400;47597911;48679000;51531000;49600397;50033980;51805995;52913243;54635447;59872033;61234835;61328900;59037300;60339304;61738900;59347114;60291579;61607073;62251880;62574619;63266157;63631833;60022061;57271040;60289387;60731044;55945701 -5200;'019;Americas;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;246000;276000;335000;344000;673930;462765;615570;729869;1121891;1121948;1254900;1061400;912500;1221400;1462300;1278300;1712800;1869700;1823500;1936066;2047700;2127300;2273980;2196294;3206279;4671229;3146459;3851724;4385941;4219605;4867086;4232734;4464318;4495882;5141677;4613524;4391780;5372615;4773435;3609026.06;3976340.38;3792442;3627249;3430085.12;3563441.12;3458878;3603639;3600355.12;4128716.12;3764286;3660415;4560362.32;4295174;4488591 -5200;'019;Americas;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;15348;17483;20234;29893;82932;61114;76323;81868;104616;129942;162454;133876;109741;162106;206480;174393;218665;296260;369464;441520;369372;300775;358000;288777;477341;848514;406080;458256;492848;517380;747978;500056;540479;599299;755991;727161;626996;867840;913518;608760;948635;985549;765082;709618.64;767056.64;695146;703108;805587.78;848430.64;726413;709337;1084342.3;1262995;881614 -5200;'019;Americas;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;559000;517000;511000;732000;1381756;875257;1334268;1542574;1581715;2159106;2561937;2157200;2210334;3544200;3619485;4657500;4099200;4326100;7743000;5907900;7625100;6266500;6168877;5641997;7374294;7138783;6495627;7634540;8066840;8598759;10870406;10161935;11115652;13604898;14320152;16076948;17352406;19856009;20166733;21287617;21392336;24039973;23523731;22128452;22270954;22998957;23273217;21835775;21923660;18777704;16392159;18637679.67;17882785;15653526 -5200;'019;Americas;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;29514;30162;29320;55563;164060;85260;136756;153772;162273;275013;349884;294231;271929;324156;428242;366578;485095;617533;734003;824741;829601;764578;695540;571641;614462;871848;780760;842432;835151;971291;1341452;962382;1168345;1497350;1675305;1903681;2270340;3039415;3319232;2827711;3657004;4265800;3870794;3613249;3578946;3501911;3584625;3699519.86;3714448;2983608;2701342;3686213.55;3663413;2846294 -5200;'019;Americas;1876;Paper and paperboard;5510;Production;t;40499696;42250600;43912904;47020000;50147504;54023296;53614796;57520096;61456608;60696808;62072708;67046700;70247000;70952308;60098608;68853308;71116200;74695600;77909808;77945300;77995308;75298900;80416200;85627000;84785708;89924008;94307808;97788900;97504814;99545800;100743308;103071516;105879308;111047500;116993100;115203800;121367400;118980321;123429399;122002877;116386685;117471081;116828463;120046948;121730272;121128503;120067317;115430746;103563651;108435112;108677961;105472523;103326710;104516661;103996799;103611253;104155613;103482070;99948977;96664755;99727010;97324754;92038630 -5200;'019;Americas;1876;Paper and paperboard;5610;Import quantity;t;6155900;6104630;5988215;6673500;7115700;8013200;7680700;7813000;8277300;8444700;8646900;8997300;9393500;9878500;7937600;8860618;9373600;10277300;10088300;10718100;10217700;9826800;10387000;12183500;12823615;13532557;14519687;14830672;14826081;14858087;14163615;15498444;16256539;17669155;18545646;19289054;22324853;22096248;23956406;26709675;24517322;24222002;25590114;28026482;27707611;27733753;26473112;25903521;20209202;21465284;20857008.5;20951176.4;21868419;22121989;21204686;21085359;21489741;21975240;20925442;18431868;19980260.7;20914778;17312452 -5200;'019;Americas;1876;Paper and paperboard;5622;Import value;1000 USD;946553;948695;929852;1027833;1096385;1246345;1236834;1286518;1382097;1443716;1512156;1640092;1899262;2664059;2528455;3072354;3513842;3902245;4392462;5151620;5378993;6394393;5386749;6730409;7132693;7442182;8479834;9883471;10289144;10351366;9589876;10498251;10791901;11288519;15493885;16627884;18257767;16107301;16728070;18660793;17416042;16354358;17201035;19484964;20542933;22415094;21675073;23294328;18041702;19715845;20578080;20764242;21324819;21660309;19867283;18557316;18988827.66;20699024;19769336;16565603;19765137.45;25701123.28;20791182.02 -5200;'019;Americas;1876;Paper and paperboard;5910;Export quantity;t;6874158;6764200;7004000;7917300;8478800;9298800;9161700;9626400;10547400;10627470;10693370;11095670;11457000;12487200;9877800;11140600;11449100;11327800;12675400;14119200;13619700;12341500;13494300;14227500;14153600;15478100;16412300;17527000;17531600;18463800;19678600;21079452;21411413;23217735;24218429;25522073;26748215;25387396;24860418;26521998;24563521;25604190;26366945;28199799;28366421;27115787;26487512;25931160;21912672.45;23125747.19;23878730;23144255;23466877.97;23508308.93;22428154.56;21626947.23;22246431.53;22463938.53;20533577.53;19504209.53;19623260.23;19758319.26;17667351.88 -5200;'019;Americas;1876;Paper and paperboard;5922;Export value;1000 USD;980609;961534;991649;1124303;1192156;1337922;1357968;1464473;1638338;1730570;1799339;1953813;2284004;3378211;3149763;3628442;3848248;4285636;4926388;6179103;6617646;5947597;6035935;6857164;6730625;7388653;8606927;10759900;10752559;11425560;12235887;12422484;12249068;13174022;18261856;17893301;17477128;16895565;16018588;17742406;16715711;16062296;16477699;18443362;19827037;20259388;20377935;21548434;18053289;18724937;19655728;19644711;19893753.5;19802882.6;18309072;16935172;18031285.69;19471844;17355278;15234943;17003507.85;19966100.23;16870610.29 -5200;'019;Americas;2042;Graphic papers;5510;Production;t;15334500;15767300;16253300;17420000;18473400;20392900;20204500;21200000;22628000;22546500;22643000;24185000;25690500;26223000;22017100;25459300;26714800;28283600;29649800;30553200;31396800;30331500;32737800;35179000;35530100;37775100;39619400;41549400;41331406;42229500;42161300;42685908;44882908;47237100;47472700;46555800;49413400;47381400;49166400;49746559;45735338;45487898;45165389;46683436;45620684;44358418;43784470;40519175;33222602;35205867;33213682;31124875;30002809;29019117;27477682;26783070;25252402;23351896;20939805;15971586;16144202;16111817;13632605 -5200;'019;Americas;2042;Graphic papers;5610;Import quantity;t;5736900;5662530;5545215;6110300;6526500;7239900;6980900;6939300;7447100;7512400;7641100;7820000;8142500;8447300;6761500;7618818;8177900;8888600;8637200;8770900;8619300;8180400;8709400;10355600;10865543;11398880;12154897;12151519;11247153;10996354;10999854;11820830;12258486;13125574;13059153;12454424;14000229;15025949;16021241;17287532;16072297;16188082;17427731;18747851;18504001;18535501;17235438;16432450;12662730;13284117;12643775.5;12241214.4;12344010;12187214;11041443;10230449;9969934;10035147;9282185;6780781;7378673.91;8304114;5965899 -5200;'019;Americas;2042;Graphic papers;5622;Import value;1000 USD;835786;830763;811807;881782;938562;1053930;1048949;1073313;1188095;1210499;1264154;1345202;1523423;2087378;1985733;2452598;2854819;3129475;3478947;3828128;4216361;5202090;4320897;5325758;5627215;5762378;6530904;7551224;7196169;7092367;7182979;7628951;8023213;8143798;10873597;9494284;9664737;10659175;10709595;12195708;11854461;10532839;11001399;12284602;13173675;14362200;13326851;14183246;10766722;11301911;11501343;11483673;11202308;10858224;9521695;8090256;7756259.86;8494270;8007446;5556212;6300352.07;9532702.26;7143468 -5200;'019;Americas;2042;Graphic papers;5910;Export quantity;t;6007700;5841900;5924300;6522100;6880300;7513200;7187900;7251200;8046900;8028500;7794900;8079800;8369700;8914500;7245100;7985300;8284200;8899200;8953000;9046500;9391200;8471300;9010500;9714200;9860800;10405700;10910400;11585800;11638600;12117300;12361300;13309438;13951239;14736714;14978925;14668328;15417899;14865592;14450773;15636906;14830891;15522013;16051709;16759000;16742311;15391739;15214373;14720475;11856880;12464907.19;11978910;10927441;11149133.67;10585868.93;9518740.56;8888489.23;8681458.53;8394473.53;7716353.53;6449251.53;6523351.73;6387371.23;5642193 -5200;'019;Americas;2042;Graphic papers;5922;Export value;1000 USD;798237;765171;765414;852356;877915;994245;1000844;1049799;1208001;1265678;1295764;1400363;1584043;2206882;2195815;2526613;2780030;3126970;3394002;3938364;4537075;4174284;4220259;4846434;4908260;5266624;5962423;7278743;7324261;7606533;8036948;8017968;8173454;8522059;11446063;11048736;10371812;10153185;9653661;10708679;10392420;9601787;9874363;10828187;11821688;11589141;11520491;12348065;9418149;9854707;10048033;9328651;9117380.5;8537279;7324277;6344929;6210025.02;6578987;6013608;4613303;4993466.01;6087886.08;5343123.08 -5200;'019;Americas;1671;Newsprint;5510;Production;t;8108800;8106400;8223500;8872900;9219200;10119200;10040300;10367600;11409900;11409600;11146600;11641400;12009500;12213000;10632600;11770000;12011300;12600000;12871000;13342000;14199000;13166000;13769000;14723000;14755100;15381100;15953000;16466000;16239000;16093000;16206000;16237000;16382000;16462100;16516700;16248800;16668400;16084400;16613400;16826173;15084972;14611436;14537246;14159253;13648457;12842651;12037982;11094547;8232534;8555654;8218411;7545654;7061905;6510104;5718185;5357885;4731798;4434380;3798438;2696831;2581766;2478786;2319220 -5200;'019;Americas;1671;Newsprint;5610;Import quantity;t;5561200;5519200;5419300;5947900;6313600;6970900;6622900;6570200;6980200;6848600;6985300;7150300;7448300;7535000;6057200;6691518;6939000;7583700;7315500;7440500;7354700;6741800;6985700;7814500;8266713;8525841;8918923;8524134;8598820;8186868;7647968;7427095;8005585;8278388;8143466;7231745;7749233;7747187;7975433;8143735;7297238;7246510;7377515;6965675;6570627;6230755;5555681;5273105;3574500;3707383;3550404;3323494;3288951;3272546;2876737;2610867;2416654;2125865;1756325;1337512;1371628.14;1316544;1020422 -5200;'019;Americas;1671;Newsprint;5622;Import value;1000 USD;784741;786281;771539;839294;881684;988037;964543;974508;1069608;1068161;1117179;1187183;1330256;1749879;1733057;2072364;2301437;2460726;2695540;3066743;3390734;4236035;3181174;3693231;4020177;4041711;4520910;4884942;4993442;4833164;4454856;4192186;4251249;4071259;5382040;4696674;4246113;4484659;4139775;4470704;4279923;3548301;3490413;3608491;3764346;3874448;3236104;3438204;2233894;2251464;2353202;2211323;2090938;1988812;1682552;1391136;1282490;1211596;1046961;664996;743205.57;902182.26;729979 -5200;'019;Americas;1671;Newsprint;5910;Export quantity;t;5872300;5702100;5773600;6329000;6660400;7250200;6919600;6963400;7658400;7548200;7288500;7517000;7752100;8142200;6577400;7206400;7475100;8029300;7923300;7929100;8275700;7413600;7845200;8354800;8690500;9094900;9234800;9103200;8975600;9439100;9389200;9774597;10144905;10463524;10365005;9811239;9950605;8686344;9186501;9508152;8711436;9058526;9153484;8536114;8247695;7563741;6965484;6900684;4729186;5216735.19;5241028;4405542;4561404;4474365;3833985;3477385;3221922;3138984;2704728;2126651;2139579.9;2006233;1957528 -5200;'019;Americas;1671;Newsprint;5922;Export value;1000 USD;757673;722917;721707;796612;827154;914356;903384;939923;1065684;1093220;1102972;1194212;1310308;1799015;1791946;2039797;2312663;2619796;2814637;3260246;3773082;3479230;3414429;3855245;4143706;4332453;4833260;5422784;5266772;5454108;5584741;5314457;5302181;5152275;6803483;6418455;5508022;5089116;4868234;5349980;5082632;4464539;4456231;4533000;4870673;4844250;4290199;4786062;2928105;3148270;3505965;2896812;2845258;2726308;2114613;1852817;1712292.89;1926357;1561762;1025972;1164044.47;1475337;1341520 -5200;'019;Americas;1674;Printing and writing papers;5510;Production;t;7225700;7660900;8029800;8547100;9254200;10273700;10164200;10832400;11218100;11136900;11496400;12543600;13681000;14010000;11384500;13689300;14703500;15683600;16778800;17211200;17197800;17165500;18968800;20456000;20775000;22394000;23666400;25083400;25092406;26136500;25955300;26448908;28500908;30775000;30956000;30307000;32745000;31297000;32553000;32920386;30650366;30876462;30628143;32524183;31972227;31515767;31746488;29424628;24990068;26650213;24995271;23579221;22940904;22509013;21759497;21425185;20520604;18917516;17141367;13274755;13562436;13633031;11313385 -5200;'019;Americas;1674;Printing and writing papers;5610;Import quantity;t;175700;143330;125915;162400;212900;269000;358000;369100;466900;663800;655800;669700;694200;912300;704300;927300;1238900;1304900;1321700;1330400;1264600;1438600;1723700;2541100;2598830;2873039;3235974;3627385;2648333;2809486;3351886;4393735;4252901;4847186;4915687;5222679;6250996;7278762;8045808;9143797;8775059;8941572;10050216;11782176;11933374;12304746;11679757;11159345;9088230;9576734;9093371.5;8917720.4;9055059;8914668;8164706;7619582;7553280;7909282;7525860;5443269;6007045.77;6987570;4945477 -5200;'019;Americas;1674;Printing and writing papers;5622;Import value;1000 USD;51045;44482;40268;42488;56878;65893;84406;98805;118487;142338;146975;158019;193167;337499;252676;380234;553382;668749;783407;761385;825627;966055;1139723;1632527;1607038;1720667;2009994;2666282;2202727;2259203;2728123;3436765;3771964;4072539;5491557;4797610;5418624;6174516;6569820;7725004;7574538;6984538;7510986;8676111;9409329;10487752;10090747;10745042;8532828;9050447;9148141;9272350;9111370;8869412;7839143;6699120;6473769.86;7282674;6960485;4891216;5557146.5;8630520;6413489 -5200;'019;Americas;1674;Printing and writing papers;5910;Export quantity;t;135400;139800;150700;193100;219900;263000;268300;287800;388500;480300;506400;562800;617600;772300;667700;778900;809100;869900;1029700;1117400;1115500;1057700;1165300;1359400;1170300;1310800;1675600;2482600;2663000;2678200;2972100;3534841;3806334;4273190;4613920;4857089;5467294;6179248;5264272;6128754;6119455;6463487;6898225;8222886;8494616;7827998;8248889;7819791;7127694;7248172;6737882;6521899;6587729.67;6111503.93;5684755.56;5411104.23;5459536.53;5255489.53;5011625.53;4322600.53;4383771.83;4381138.23;3684665 -5200;'019;Americas;1674;Printing and writing papers;5922;Export value;1000 USD;40564;42254;43707;55744;50761;79889;97460;109876;142317;172458;192792;206151;273735;407867;403869;486816;467367;507174;579365;678118;763993;695054;805830;991189;764554;934171;1129163;1855959;2057489;2152425;2452207;2703511;2871273;3369784;4642580;4630281;4863790;5064069;4785427;5358699;5309788;5137248;5418132;6295187;6951015;6744891;7230292;7562003;6490044;6706437;6542068;6431839;6272122.5;5810971;5209664;4492112;4497732.13;4652630;4451846;3587331;3829421.55;4612549.08;4001603.08 -5200;'019;Americas;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4638372;4999331;5204329;4990821;5253176;5179495;5747704;6011848;5831514;6154321;5984467;4970115;4829400;4533094;3694400;3825122;3611767;3491830;3305645;2970742;2834432;2310719;1763330;1889930;1949185;1762413 -5200;'019;Americas;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2523904;2754641;3176779;3235902;3568425;3797636;4347904;4239740;4332780;4278216;3917119;3265282;3021080;2762331;2350929;2600620;2440315;2073945;1920288;1839824;1868944;1571779;1215721;1346259.26;1373135;985671 -5200;'019;Americas;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1845313;1984305;2246319;2413609;2356918;2391705;2761517;2953292;3133685;3161051;3239271;2658127;2301214;2270039;2025299;2173939;2006023;1592452;1191163;1132531.11;1267628;1176330;841512;908047.6;1194642;971407 -5200;'019;Americas;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2254649;2232066;2522888;2643117;2897107;3021180;3622601;3726567;3453206;3708732;3610939;3141048;2842912;2488470;2146490;2307142.44;2159993;1867386;1653355;1628727;1623812;1341799;1109289;1172263;1241247;913480 -5200;'019;Americas;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1683911;1656178;1850544;1995703;2010430;1976261;2477267;2770645;2648321;2867142;3151256;2610389;2262024;2104327;1825762;1895769;1738678;1383620;1029105;1012462.44;1160549;1039761;801050;867021.3;1151927;910031 -5200;'019;Americas;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16366291;17044469;16982272;15817251;15632139;15706706;16086873;15570290;14706509;14518808;13639560;11940528;12544513;12119891;11710617;11369628;11348765;11251638;11164418;10912951;9962712;9367755;7567636;7834939;7795558;7072124 -5200;'019;Americas;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1764321;1997706;2261155;2077801;1877993;2237796;2458075;2680753;2586213;2508626;2509328;2186465;2459164;2425892.5;2495814.4;2581467;2782803;2469544;2329896;2300596;2385813;2713185;1873348;2081363.13;2462582;1844762 -5200;'019;Americas;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1477031;1628554;1978817;1951208;1592148;1786391;1987216;2274389;2357772;2437947;2669936;2284163;2685826;2740971;2905091;2887094;3033893;2623957;2373029;2290062.7;2516091;2625846;1826586;2069425.04;3225136;2555411 -5200;'019;Americas;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1853824;1775803;1649904;1592247;1814496;2197277;2424434;2742160;2348219;2364740;2328708;2255735;2463116;2453891;2400631;2380838;2180028.4;2114680.33;2118808;2197504;2097042;2021751;1761713;1688700.37;1620172;1498797 -5200;'019;Americas;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1590320;1585379;1695297;1637421;1627565;1832897;2014709;2364801;2236209;2430795;2544701;2280442;2617135;2700288;2539778;2407863.5;2247701;2107679;1959191;2001589.25;2060847;1958560;1543266;1573865.88;1850890;1720507 -5200;'019;Americas;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10292337;10509200;10733785;9842294;9991147;9741942;10689606;10390089;10977744;11073359;9800601;8079425;9276300;8342286;8174204;7746154;7548481;7016029;6955122;6636911;6120372;5462893;3943789;3837567;3888288;2478848 -5200;'019;Americas;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2990537;3293461;3705863;3461356;3495154;4014784;4976197;5012881;5385753;4892915;4732898;3636483;4096490;3905148;4070977;3872972;3691550;3621217;3369398;3412860;3654525;3240896;2354200;2579423.38;3151853;2115044 -5200;'019;Americas;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2852172;2956961;3499868;3209721;3035472;3332890;3927378;4181648;4996295;4491749;4835835;3590538;4063407;4137131;4341960;4050337;3829496;3622734;3134928;3051176.05;3498955;3158309;2223118;2579673.86;4210742;2886671 -5200;'019;Americas;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2070775;1256403;1955962;1884091;1751884;1679768;2175851;2025889;2026573;2175417;1880144;1730911;1942144;1795521;1974778;1899749.23;1771482.53;1702689.23;1638941.23;1633305.53;1534635.53;1648075.53;1451598.53;1522808.46;1519719.23;1272388 -5200;'019;Americas;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1789838;1543870;1812858;1676664;1499253;1608974;1803211;1815569;1860361;1932355;1866046;1599213;1827278;1737453;2066299;1968490;1824592;1718365;1503816;1483680.44;1431234;1453525;1243015;1388534.37;1609732.08;1371065.08 -5200;'019;Americas;1675;Other paper and paperboard;5510;Production;t;25165196;26483300;27659604;29600000;31674104;33630396;33410296;36320096;38828608;38150308;39429708;42861700;44556500;44729308;38081508;43394008;44401400;46412000;48260008;47392100;46598508;44967400;47678400;50448000;49255608;52148908;54688408;56239500;56173408;57316300;58582008;60385608;60996400;63810400;69520400;68648000;71954000;71598921;74262999;72256318;70651347;71983183;71663074;73363512;76109588;76770085;76282847;74911571;70341049;73229245;75464279;74347648;73323901;75497544;76519117;76828183;78903211;80130174;79009172;80693169;83582808;81212937;78406025 -5200;'019;Americas;1675;Other paper and paperboard;5610;Import quantity;t;419000;442100;443000;563200;589200;773300;699800;873700;830200;932300;1005800;1177300;1251000;1431200;1176100;1241800;1195700;1388700;1451100;1947200;1598400;1646400;1677600;1827900;1958072;2133677;2364790;2679153;3578928;3861733;3163761;3677614;3998053;4543581;5486493;6834630;8324624;7070299;7935165;9422143;8445025;8033920;8162383;9278631;9203610;9198252;9237674;9471071;7546472;8181167;8213233;8709962;9524409;9934775;10163243;10854910;11519807;11940093;11643257;11651087;12601586.8;12610664;11346553 -5200;'019;Americas;1675;Other paper and paperboard;5622;Import value;1000 USD;110767;117932;118045;146051;157823;192415;187885;213205;194002;233217;248002;294890;375839;576681;542722;619756;659023;772770;913515;1323492;1162632;1192303;1065852;1404651;1505478;1679804;1948930;2332247;3092975;3258999;2406897;2869300;2768688;3144721;4620288;7133600;8593030;5448126;6018475;6465085;5561581;5821519;6199636;7200362;7369258;8052894;8348222;9111082;7274980;8413934;9076737;9280569;10122511;10802085;10345588;10467060;11232567.8;12204754;11761890;11009391;13464785.37;16168421.02;13647714.02 -5200;'019;Americas;1675;Other paper and paperboard;5910;Export quantity;t;866458;922300;1079700;1395200;1598500;1785600;1973800;2375200;2500500;2598970;2898470;3015870;3087300;3572700;2632700;3155300;3164900;2428600;3722400;5072700;4228500;3870200;4483800;4513300;4292800;5072400;5501900;5941200;5893000;6346500;7317300;7770014;7460174;8481021;9239504;10853745;11330316;10521804;10409645;10885092;9732630;10082177;10315236;11440799;11624110;11724048;11273139;11210685;10055792.45;10660840;11899820;12216814;12317744.3;12922440;12909414;12738458;13564973;14069465;12817224;13054958;13099908.49;13370948.03;12025158.88 -5200;'019;Americas;1675;Other paper and paperboard;5922;Export value;1000 USD;182372;196363;226235;271947;314241;343677;357124;414674;430337;464892;503575;553450;699961;1171329;953948;1101829;1068218;1158666;1532386;2240739;2080571;1773313;1815676;2010730;1822365;2122029;2644504;3481157;3428298;3819027;4198939;4404516;4075614;4651963;6815793;6844565;7105316;6742380;6364927;7033727;6323291;6460509;6603336;7615175;8005349;8670247;8857444;9200369;8635140;8870230;9607695;10316060;10776373;11265603.6;10984795;10590243;11821260.67;12892857;11341670;10621640;12010041.84;13878214.15;11527487.21 -5200;'019;Americas;1676;Household and sanitary papers;5510;Production;t;2145400;2240500;2380200;2539600;2874600;3111000;3259100;3471900;3722900;3806200;3969800;4142300;4306200;4394900;4229200;4531200;4679700;4716200;5038600;4993300;5214000;5219000;5555000;5737000;5831600;6046600;6335200;6652800;6726700;6951400;6940300;7058900;7353300;7568300;7764300;7874000;8241000;8453000;8787000;8906000;9081644;9282711;9250974;9531491;9912314;9986698;10014516;10030612;10112058;10298172;10337622;10437565;10815087;10771966;10940475;11069581;11404369;11577595;11729425;12373725;12364773;11415506;12272389 -5200;'019;Americas;1676;Household and sanitary papers;5610;Import quantity;t;700;900;1000;1600;1900;3100;4600;15200;16100;14200;17500;33000;36100;43700;51300;37200;23500;26400;33000;36900;34900;25100;27600;28200;23900;25800;27400;31200;133200;145500;104100;108708;130377;160277;195715;255064;282228;289147;370965;329699;389055;467155;478416;525861;555441;563867;545161;569137;470428;543408;595332;556840;571047;583936;676851;677938;738679;768465;789427;860854;711497.48;758598;802694 -5200;'019;Americas;1676;Household and sanitary papers;5622;Import value;1000 USD;431;540;555;816;927;1392;1987;10062;10825;11441;12944;22401;24045;31328;39663;37047;31367;35537;48691;57297;58108;38022;37135;37341;31209;31645;30288;34332;141296;150918;112004;109140;123343;152508;205572;255929;277292;258386;348984;329010;384712;449159;442507;475972;532969;555313;572516;645724;591887;681493;768223;751480;793844;815561;920779;848452;888949.16;985542;1014886;1028331;946962.05;1198251;1201467 -5200;'019;Americas;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;200;16300;35600;33000;34800;26500;34700;39700;35900;35500;29600;57700;74400;88100;108700;97000;60000;74500;94000;114100;111000;127100;118600;114600;137700;155200;173600;180809;261646;244162;282951;326333;369260;373027;354497;409707;433042;416731;441894;439445;442785;428537;447195;401046.45;430760;434666;446222;411870.3;426524;505351;458507;510801;544671;481601;481819;471930.05;501541.81;448776.81 -5200;'019;Americas;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;75;7175;12730;12677;13174;9837;13445;16311;22173;22187;20948;34933;51222;64830;99374;97016;63818;72090;85554;96660;101870;113958;107634;117529;145086;168117;184772;187586;278666;306970;315281;395402;375249;371658;369894;440067;481871;365334;444700;481015;484974;502271;552687;484798;567519;587794;609554;569784;579654;653742;579287;637635.68;693407;639642;597871;607883.64;759944.71;671739.72 -5200;'019;Americas;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58342921;60463999;58647318;56861703;57729383;57601593;60616903;60859038;61479147;61263464;59839228;55268418;57897685;60342092;60024997;58656068;62183879;62973441;63158183;64893595;66346216;64981653;65194169;69080546;67701279;64398447 -5200;'019;Americas;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5490428;6273398;6820671;7160046;6693938;6955220;7874516;7752730;7802147;7828104;8196102;6732907;7263226;7284991;7848452;8670105;9089981;9273388;9921857;10532942;10964073;10687375;10634276;11700098.87;11659276;10408663 -5200;'019;Americas;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4012605;4535225;4865298;4407812;4595133;5100966;5972299;5965936;6602354;6881729;7717552;6237070;7276999;7806499;7927127;8768075;9398461;8919378;9098687;9847081.99;10741488;10237647;9445682;11846375.78;14203492.02;11811915.02 -5200;'019;Americas;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9396781;9284462;9640436;9081958;9166618;9472988;10537595;10712084;10768552;10561740;10459080;9459848;10049624;11166273;11304356;11498805;12085858;11945813;11831020;12588138;13030187;11917998;12252400;12264202.89;12463151.22;11318503.07 -5200;'019;Americas;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5920029;5541282;6098111;5640664;5650058;5904556;6814214;7158557;7731796;8005567;8259638;7879382;8068804;8652610;9176273;9760300;10226048;9853942;9567033;10744018.77;11715738;10251244;9657736;10969862.79;12646271.43;10504046.49 -5200;'019;Americas;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;19273296;20305600;21144304;22557800;25425204;27551396;27603696;30420396;30140608;29552208;30322808;33143700;34569700;34906108;29413408;33991008;34874500;36557000;38002508;37924400;37246208;35964000;38924000;41220600;39805508;42253408;44445108;44984200;45181208;45518700;47378708;48576708;48958100;51127100;57008100;57991000;60819000;;;;;;;;;;;;;;;;;;;;;;;;;; -5200;'019;Americas;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;37700;53500;90700;156900;171300;242700;297000;530100;511500;594100;610100;702200;802100;782800;631200;830400;746200;819800;820000;1090900;1012400;981900;930500;953400;1061500;989716;1134900;1267400;1893200;2073000;1984100;2081348;3172518;3642740;4318537;5364900;6105500;;;;;;;;;;;;;;;;;;;;;;;;;; -5200;'019;Americas;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;11467;13707;19318;28236;32965;46790;63841;94616;94624;113426;116690;139558;187651;250362;201204;306905;314560;359118;417936;673747;630446;640671;506066;550425;603457;559230;695670;817611;1292786;1397244;1538410;1472020;1984717;2316317;3394695;5199651;5778776;;;;;;;;;;;;;;;;;;;;;;;;;; -5200;'019;Americas;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;58;900;1300;1200;3100;3100;1441600;2162100;2241600;2347600;2615300;2678400;2685900;3084800;2181200;2636200;2672600;1924900;2945300;4115000;3389800;3134500;3637900;3416600;3122300;3816100;4264900;4642600;4387600;4732500;5791700;5904776;6860220;7772580;8565851;9794300;9625385;;;;;;;;;;;;;;;;;;;;;;;;;; -5200;'019;Americas;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;35;252;434;360;950;651;228870;318247;335857;359371;397418;429350;529088;904315;709888;828158;792435;859400;1022469;1638339;1505608;1290761;1363468;1445497;1202001;1532408;1971518;2380819;2169138;2633265;3113905;2930672;3362677;4038767;6109558;6146892;5095829;;;;;;;;;;;;;;;;;;;;;;;;;; -5200;'019;Americas;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35202169;40624833;39306000;38113094;39439529;39233153;41672880;41934594;42226532;38721095;38174885;38132499;40369978;40597724;40577697;41555877;42273830;43343038;43834361;45376177;46938112;45725680;46894948;49523643;48011933;46426581 -5200;'019;Americas;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2428802;2967141;3195611;3208462;3191346;3215555;3441822;3513562;3627448;3052611;3552984;2957342;3228719;3021303;3457640;3989506;4317934;4414197;4579505;5228026;5497090;5450707;5550142;6034607.55;5791692;5391141 -5200;'019;Americas;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1197132;1451113;1591897;1505436;1501887;1577442;1794706;1806330;2063767;1868421;2291841;1783089;2286760;2296536;2466591;2909806;3153541;3029198;2795126;3410696.42;3901210;3739062;3453878;4647699.51;5351915;4274471 -5200;'019;Americas;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5255951;4991946;5242839;4854015;4655549;4785379;4989305;5260710;5294295;4692099;5846758;5234305;5477981;6000604;5924409;5956674;6455987;6421852;6646783;7184806;7532316;6789433;7258930;7013460.05;7304024.22;6959688.07 -5200;'019;Americas;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2155426;1885200;2405872;2072168;1955906;1959861;2192783;2388798;2607137;2386159;3181213;3322139;2895002;3413232;3343113;3707108;4001787;3855860;3680156;4362988.11;5253124;4304582;4166473;4879093.28;5911441.43;4825878.49 -5200;'019;Americas;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8344054;8399612;8388318;8151234;8145194;8164201;8108086;8078930;8406652;12082214;11133504;7909481;11248176;9218910;9049808;9096825;14061664;13950675;13875811;14226576;9569953;9640154;9357709;11606915;9753717;10429046 -5200;'019;Americas;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1716825;1682942;1966229;2210559;1549066;1848579;2028176;1883584;1871711;2299899;2291449;1911505;2060208;2189553;2792801;2938589;3010341;2984636;3037307;3202487;3088792;2923180;2949906;3227837.14;3537840;2987028 -5200;'019;Americas;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1351150;1382662;1465757;1224147;1132238;1437416;1620370;1546516;1734772;2047490;2296159;2024700;2242776;2587999;3637472;3881928;4161754;3755331;3902647;4129190.06;4110910;3866590;3698932;4322571.47;5538022;4690397 -5200;'019;Americas;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1757057;1745415;1659583;1702019;2204704;2269428;2259678;2365374;2496203;2581928;2732103;2518643;2933983;3035469;3806513;3798633;3804644;3825243;3401675;3488474;3474523;3287860;3144436;3303879.44;3248493;2721155 -5200;'019;Americas;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1641938;1494536;1365914;1399810;1521873;1845760;1816682;2005827;2255465;2469221;2752625;2583424;3022320;3339469;4336626;4344076;4437731;4367998;4211277;4549516.43;4377284;4026142;3742494;4014955.92;4391251;3746057 -5200;'019;Americas;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3088250;3404963;3214000;3075522;2676807;2570401;2820033;2898277;2789747;2511034;2620839;2314435;2556907;4071768;4219225;4302070;2954965;2892722;2686314;2709456;3735035;3602887;2913882;3808518;3729137;3635964 -5200;'019;Americas;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1030844;1249228;1285304;1423826;1543616;1482326;1868070;1889182;1871136;2082857;2128709;1668617;1832192;1943565;1452983;1596107;1646041;1672322;2045102;1808019;2065841;2025451;1854096;2114573.61;2016024;1716044 -5200;'019;Americas;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1270533;1476721;1581849;1492922;1727007;1851128;2233814;2326366;2507753;2681919;2977457;2300588;2638889;2813088;1706666;1863216;1981687;1964504;2207408;2088111.51;2475908;2413805;2103451;2599887.22;2976938;2571543 -5200;'019;Americas;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1191620;1351106;1366543;1218115;1209813;1216376;1764499;1589464;1528778;1584954;1734080;1583660;1527904;2028628;1459389;1634671;1746956;1601866;1626272;1744653;1832002;1688186;1698571;1765815.26;1695963;1457158 -5200;'019;Americas;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1287999;1349613;1433431;1325366;1321128;1342340;1837637;1754243;1859696;1954719;2231069;1892420;2071292;1818082;1415675;1634117;1729548;1560284;1573168;1716907.55;1946268;1810413;1649339;1930025.85;2139101;1782804 -5200;'019;Americas;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11708448;8034591;7739000;7521853;7467853;7633838;8015904;7947237;8056216;7949121;7910000;6912003;3722624;6453690;6178267;3701296;2893420;2787006;2761697;2581386;6103116;6012932;6027630;4141470;6206492;3906856 -5200;'019;Americas;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;313957;374087;373527;317199;409910;408760;536448;466402;431852;392737;222960;195443;142107;130570;145028;145903;115665;202233;259943;294410;312350;288037;280132;323080.57;313720;314450 -5200;'019;Americas;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;193790;224729;225795;185307;234001;234980;323409;286724;296062;283899;152095;128693;108574;108876;116398;113125;101479;170345;193506;219084;253460;218190;189421;276217.58;336617.02;275504.02 -5200;'019;Americas;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1192153;1195995;1371471;1307809;1096552;1201805;1524113;1496536;1449276;1702759;146139;123240;109756;101572;114045;108827;78271;96852;156290;170205;191346;152519;150463;181048.13;214671;180502 -5200;'019;Americas;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;834666;811933;892894;843320;851151;756595;967112;1009689;1009498;1195468;94731;81399;80190;81827;80859;74999;56982;69800;102432;114606.68;139062;110107;99430;145787.73;204478;149307 -5200;'019;Americas;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;1344400;1373000;1402000;1471900;2326700;1851100;1957600;2206700;4722700;4545900;4851400;5284000;5382500;5329800;4345800;4778700;4807600;5096900;5177000;4432500;4096400;3783900;3198900;3489900;3618000;3848400;3906100;4600500;4263500;4846200;4263000;4750000;4685000;5115000;4748000;2783000;2894000;4803000;5012000;4703000;4708000;4971089;4810507;3215118;5338236;5304240;5004867;5041731;4960573;5033388;4784565;3885086;3852746;2541699;2605201;2600419;2605247;2206363;2298094;3125275;2137489;2096152;1735189 -5200;'019;Americas;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;16700;18900;26900;39700;43100;60300;115200;249800;251000;275300;335200;412500;386900;580600;471200;349000;399500;515200;570200;791500;521500;622400;702500;833700;856115;1102256;1180258;1370101;1537192;1631011;1060500;1467388;675745;731536;958455;1205497;1929423;1290724;1290802;2271773;895924;872827;728747;878254;895439;832238;864409;705832;343137;374533;332910;304670;283257;260858;213004;255115;248186;207555;166455;155957;189990.46;192790;135196 -5200;'019;Americas;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;5321;6050;7837;11599;13184;20428;45794;92249;77935;98034;108900;126733;156337;286761;293596;263497;299985;363551;431474;576582;456291;499550;508576;806754;857902;1076257;1206495;1468285;1637563;1700170;745319;1274019;648056;669570;1009049;1671800;2530283;1177135;1134266;1270777;769057;777227;656163;752091;870353;895227;893977;747806;446023;455442;502015;601962;560592;588063;505431;519921;496536.65;477724;509357;535378;671447.55;766678;634332 -5200;'019;Americas;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;300;300;500;600;400;5800;157000;176400;217000;207270;250570;281870;311300;410300;406000;471500;430000;425100;684400;845000;737100;672500;770600;1001700;1055500;1144400;1109900;1180000;1390800;1476300;1370400;1608766;369889;446509;429208;776035;1378239;755763;752156;890159;240965;482517;425517;461310;472581;512711;282862;304410;194898;180456;298881;466236;407069;410058;458250;448931;466034;494607;417625;320739;363775.56;406255;257879 -5200;'019;Americas;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;57;47;101;128;83;1606;67873;83401;80626;90906;95503;106868;143844;227115;218510;248839;238241;245728;442046;499976;474168;416173;379600;478905;522635;486682;559028;992704;1141631;1040676;916917;1225045;492415;334372;399109;381977;1613828;447102;451987;565722;242560;328580;333446;356261;365777;453477;349606;388044;270960;233907;367291;530233;446289;459901.6;477111;443923;439606.22;483712;450784;366033;432295.42;471998;351701 -5200;'019;Americas;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32067257.25;34320364;32706837;32710997;43763787;50580555;39097129 -5200;'019;Americas;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10077950.53;10565276;10750745;10290364;13633496;15576824;13859526 -5200;'019;Americas;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1755734.5;1772383;1721024;1634829;2398263;3065120;2090538 -5200;'019;Americas;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1408193.32;1429299;1477285;1413774;1947670;2259677;1664531 -5200;'019;Americas;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1132224.75;1129763;1146320;1180109;1745566;2224059;1405697 -5200;'019;Americas;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;763365.04;733774;732482;790383;1173492;1323562;950910 -5200;'019;Americas;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;623509.74;642620;574704;454720;652697;841061;684841 -5200;'019;Americas;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;644828.28;695525;744803;623391;774178;936115;713621 -5200;'019;Americas;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;653183.81;697369;737621;652622;759192;985853;932020 -5200;'019;Americas;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;613643.46;682322;719965;638771;747468;974311;949371 -5200;'019;Americas;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1361123;1463446;1406729;1272403;1783121;1853508;1391155 -5200;'019;Americas;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;170123;147494;142504;129044;177799;183420;141459 -5200;'019;Americas;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2628418.35;2786846;2784740;2909419;3975494;4721230;3923296 -5200;'019;Americas;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2024019.68;2080396;2158879;2309900;3171974;3529666;2988546 -5200;'019;Americas;1636;Glue-laminated timber (glulam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;462364;423019 -5200;'019;Americas;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25187;36273 -5200;'019;Americas;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49127;57064 -5200;'019;Americas;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20735;25524 -5200;'019;Americas;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38407;43408 -5200;'019;Americas;1688;Cross-laminated timber (CLT or X-lam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50000;51221 -5200;'019;Americas;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27773;25627 -5200;'019;Americas;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25146;25093 -5200;'019;Americas;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39168;22529 -5200;'019;Americas;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22226;17725 -5200;'019;Americas;1684;I-beams (I-joists);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;850808;757171 -5200;'019;Americas;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;234178;223802 -5200;'019;Americas;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;388837;338269 -5200;'019;Americas;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;234998;224279 -5200;'019;Americas;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;409433;352253 -5200;'019;Americas;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24112707.11;25775707;24282658;24388346;32210546;37071114;28378229 -5200;'019;Americas;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5154778.43;5393800;5360992;4938797;6509855;7424102;6998647 -5200;'019;Americas;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;179837;158582;185998;147507;192377;277481;292173 -5200;'019;Americas;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115214;121072;157355;103400;126409;186936;199894 -5200;'019;Americas;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1376253.49;1666031;1588067;1705871;2444794;2606249;2089718 -5200;'019;Americas;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;591978.62;710893;733765;756678;952321;1018712;917078 -5200;'019;Americas;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15887091.32;16942265;16782178;16075649;18236229;21546208;20363366 -5200;'019;Americas;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10556753.3;10882733;10852113;10473371;11668023;13029279;12885413 -5200;'019;Americas;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;123704.69;125474;125723;119264;142959;209416;151532 -5200;'019;Americas;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92376.52;106805;104142;83013;81949;93457;79401 -5200;'019;Americas;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2130921.35;2315694;2336427;2099106;2423097;2990997;2717216 -5200;'019;Americas;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1485932.58;1539658;1567440;1435028;1702702;1908467;1840061 -5200;'019;Americas;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2764042.31;2903005;2890544;3278591;3024373;3393783;3631387 -5200;'019;Americas;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1946457.3;1963438;1984813;2163535;2075410;2311038;2555069 -5200;'019;Americas;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5453942.33;5807946;5749659;5528251;6788698;7753060;6985990 -5200;'019;Americas;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3856469.89;4033391;4064997;3929364;4548156;5110224;4879928 -5200;'019;Americas;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5414480.64;5790146;5679825;5050437;5857102;7198952;6877241 -5200;'019;Americas;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3175517;3239441;3130721;2862431;3259806;3606093;3530954 -5203;'021;Northern America;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70385593.11;75504118;69891604;71315764;95891020.22;108081076;82975176 -5203;'021;Northern America;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65017522.3;68712988;60001798;56661008;73890667;77841466;64325646 -5203;'021;Northern America;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;1335401;1424918;1452168;1563714;1650401;1806492;1768498;2419250;2673018;2473250;2903657;3607950;4415375;4815193;4584600;5721523;6612487;8326695;8939337;8364868;8637585;8787335;9904963;11633623;11847897;12379684;14488828;16376700;17289465;17002895;14744342;16682831;18383112;21049154;25464498;26361334;28140411;25408866;28252358;30049299;28199258;27408186;28830632;36205308;37041486;36848307;32642397;29696758;21525154;24482131;24381534;25685231;27949677;29688124;28546187;28943338;30052599.54;32217551;28353677;29300049;42617501.23;45719699;32879545 -5203;'021;Northern America;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;1705708;1753868;1888561;2118057;2247289;2411277;2525648;3553693;3969047;4403387;4460865;5363975;7089600;9174678;8502854;10474133;11247401;12402914;15769800;17948320;17290593;15442611;16275310;17747099;16995772;19018734;23926532;29029878;31372426;31271783;30058445;32252024;32731745;36406663;46053412;42639965;42048798;38372574;40589178;44267619;38463830;37139913;38232520;45390088;46460301;46721536;46853189;45281048;36252105;44184326;48001522;47353703;50650147;51556298;47028631;46692511;50720152.47;54049388;45455782;43160740;58016196;59611721;46714614 -5203;'021;Northern America;1861;Roundwood;5516;Production;m3;383250024;392881024;391594024;414084024;424051032;440073524;434381016;455143508;463083032;470099008;474892016;475877032;500974000;495350008;439743008;494158008;508483008;557041000;579168008;553795016;538285008;522689008;588016008;631061024;624115016;669510024;688467000;686291000;685857000;671446000;651428000;653698000;646918992;656331008;658262000;650961000;655289008;646692000;663203000;668394000;634967000;646077000;628155255;669812180;670468950;640979600;589728360;519745444;448834276;518585276;543319426;535695600;548894489;552157722;555020552;593376600;597502978;620921566;600813643;571872171;599089074;601972761;543210573 -5203;'021;Northern America;1861;Roundwood;5616;Import quantity;m3;5157300;5520000;5245900;4327800;4618800;4394800;4521500;4691800;4300300;4695400;4614600;5666700;5083000;5453300;4546000;4860800;4660500;4909200;5536800;4939400;4368000;4033400;4884400;5537000;5699800;6047200;6578500;6404600;5740000;1795283;2500367;5608116;5375025;6591811;7600056;6860956;7526256;8488256;8171991;9112151;10157536;9847953;9374668;8615834;10099952;8969613;7527194;6291476;5529369;5740042;5440674;5867197;6007719;5408621;5993612;7590187;5498498;7076637;5782755;5793035;4382691;4199619;4017523 -5203;'021;Northern America;1861;Roundwood;5622;Import value;1000 USD;51491;53058;52566;48616;54415;53249;54819;58112;56665;64000;59991;76092;73816;102989;93155;90018;99827;113175;140465;119775;118915;119223;144149;165327;164295;170838;195855;218804;235523;206352;227185;250298;261897;346806;443755;362187;419696;474877;514937;606549;592535;599548;580351;621294;729607;721498;574891;433062;390926;389980;353761;403161;411783;417581;438312;399078;372627.85;467695;397649;431521;504554;560092;556272 -5203;'021;Northern America;1861;Roundwood;5916;Export quantity;m3;6137600;6259900;7904900;8674400;9408300;10720300;13190400;15401900;14354400;16945300;13591200;16598000;16575400;15367700;14907300;17570100;17116500;18000600;20391008;18120600;14566400;17158700;19668400;20601900;21366708;20845600;24018196;26754096;25144200;22862696;22056332;19632951;14653720;14008031;14331831;13256331;11792431;14612031;14163726;15204704;15614303;15935351;15685690;14576081;15870203;14630908;13884342;13371899;12641649;15908976;20092135;18906700;22189598;21052517;18061093;20571057;19996037;21164528;15627591;13421595;13730221;11389966;9971531 -5203;'021;Northern America;1861;Roundwood;5922;Export value;1000 USD;92758;99393;115929;129790;167443;182196;249394;332737;344379;428391;344167;474916;852303;790562;791957;993129;1062336;1273287;1862471;1713597;1213415;1380003;1341180;1405999;1431134;1471717;1959978;2558664;2613419;2612431;2324855;2427977;2654106;2425874;2440971;2259369;1781234;1517517;1608325;1762192;1576581;1639262;1646768;1851623;1980443;1967451;2098024;1961125;1618521;2260046;2890759;2567152;3244582;3238770;2334755;2658228;3159803.02;3140191;2221099;1982863;2673572;2498416;2100439 -5203;'021;Northern America;1862;Roundwood, coniferous;5516;Production;m3;283880024;299399016;295664008;314631016;324209016;333817516;331545016;350985008;356095016;360679000;367092016;362752016;384977000;376770000;339075000;386149000;394745000;424262000;435958000;402781008;384881008;361084008;417964008;450526008;450770008;481232016;512593000;509555000;504018000;469899000;432800000;449676000;430554992;438849008;441677000;436984000;447924008;435648000;452289000;455073000;431629000;445544000;430697003;472636591;474606426;448617000;405953006;348503673;294561339;374048068;390369764;384671000;393092089;394628075;407220460;424550148;426269910;455740135;441631745;435273916;456952904;446860904;410179867 -5203;'021;Northern America;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3469388;5157648;3935925;4233592;2799036;2661081;2664475 -5203;'021;Northern America;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;226029.46;309350;247048;305361;342844;402036;421124 -5203;'021;Northern America;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16598284;18232452;13235324;11214515;11255019;8850402;7903328 -5203;'021;Northern America;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2263528.47;2205786;1498057;1311413;1799453;1545004;1289649 -5203;'021;Northern America;1863;Roundwood, non-coniferous;5516;Production;m3;99370000;93482008;95930016;99453008;99842016;106256008;102836000;104158500;106988016;109420008;107800000;113125016;115997000;118580008;100668008;108009008;113738008;132779000;143210008;151014008;153404000;161605000;170052000;180535016;173345008;188278008;175874000;176736000;181839000;201547000;218628000;204022000;216364000;217482000;216585000;213977000;207365000;211044000;210914000;213321000;203338000;200533000;197458252;197175589;195862524;192362600;183775354;171241771;154272937;144537208;152949662;151024600;155802400;157529647;147800092;168826452;171233068;165181431;159181898;136598255;142136170;155111857;133030706 -5203;'021;Northern America;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2029110;1918989;1846830;1559443;1583655;1538538;1353048 -5203;'021;Northern America;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;146598.4;158345;150601;126160;161710;158056;135148 -5203;'021;Northern America;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3397753;2932076;2392267;2207080;2475202;2539564;2068203 -5203;'021;Northern America;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;896274.55;934405;723042;671450;874119;953412;810790 -5203;'021;Northern America;1864;Wood fuel;5516;Production;m3;48314000;39393000;36475008;37634008;34615000;36858500;37440000;38200500;35434000;39954000;38566000;39346000;38242000;40745000;39434000;38814000;46224000;58226000;67177000;75916000;82015000;105994000;102501000;109340000;104515000;106946000;89569000;88437000;86853000;88288000;109641000;87091000;75629000;68204000;66201000;59907000;53338000;49254000;48917000;48857000;48810000;45908000;45743255;46408180;46765950;47835600;49567360;46754444;43437276;43648276;41880100;41878600;46206216;46520429;48984580;64206600;65904600;72782918;73150983;61884447;72686650;73855650;67487680 -5203;'021;Northern America;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;244855;484828;538800;339000;247000;262000;172800;159035;150460;169372;218710;207361;217361;256178;260357;184779;252740;196897;178636;207249;204972;209754;237134;182962;152626;47862;165242;91783;103589;126253;80630;83333 -5203;'021;Northern America;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9941;16703;22992;15057;13319;14578;7208;11528;6088;6872;9066;8193;10321;11272;12158;12544;17113;13333;14158;15542;18463;15400;17329;15858;18660;12592;12859;19569;23630;31061;22529;27336 -5203;'021;Northern America;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;253951;448720;540000;328000;356000;227000;293100;211695;349744;367405;396853;393211;275539;462943;353207;374856;332814;300108;307476;631417;585300;467072;394048;440121;352196;394717;400791;158932;73306;95842;104968;110267 -5203;'021;Northern America;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12002;18738;26521;24315;26680;19631;9847;7640;8540;8988;9690;10599;9919;16666;13103;19389;17261;15486;22958;41315;42143;28958;24168;31044;23134;25826;25585;7434;5720;6939;12766;9204 -5203;'021;Northern America;1627;Wood fuel, coniferous;5516;Production;m3;12319000;9827000;7856000;8020000;7639000;8453500;8532000;8263000;7546000;8332000;7889000;8033000;7616000;8234000;7997000;7907000;9119000;11391000;13232000;14826000;15988000;20646000;19943000;21401000;20434000;20782000;17420000;17178000;16823000;16610000;20721000;16576000;14438000;12978000;12643000;11548000;10329000;9258000;9307000;9260000;9264000;8704000;8579003;8745591;8874426;9306000;9780006;9227673;8574339;8619068;8559544;8559000;9266523;9534114;9748440;12613148;12865202;33032534;33604834;26900426;34486409;32486409;31462442 -5203;'021;Northern America;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47858;161792;52690;22998;34142;28793;25526 -5203;'021;Northern America;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12590;12475;11244;5856;8573;8180;7573 -5203;'021;Northern America;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;394717;398121;132741;58039;75811;77490;75691 -5203;'021;Northern America;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25826;25295;5465;4204;4834;9181;5149 -5203;'021;Northern America;1628;Wood fuel, non-coniferous;5516;Production;m3;35995000;29566000;28619008;29614008;26976000;28405000;28908000;29937500;27888000;31622000;30677000;31313000;30626000;32511000;31437000;30907000;37105000;46835000;53945000;61090000;66027000;85348000;82558000;87939000;84081000;86164000;72149000;71259000;70030000;71678000;88920000;70515000;61191000;55226000;53558000;48359000;43009000;39996000;39610000;39597000;39546000;37204000;37164252;37662589;37891524;38529600;39787354;37526771;34862937;35029208;33320556;33319600;36939693;36986315;39236140;51593452;53039398;39750384;39546149;34984021;38200241;41369241;36025238 -5203;'021;Northern America;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;3450;39093;80591;92111;51837;57807 -5203;'021;Northern America;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;384;8325;17774;22488;14349;19763 -5203;'021;Northern America;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2670;26191;15267;20031;27478;34576 -5203;'021;Northern America;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;290;1969;1516;2105;3585;4055 -5203;'021;Northern America;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;244855;484828;538800;339000;247000;262000;172800;159035;150460;169372;218710;207361;217361;256178;260357;184779;252740;196897;178636;207249;204972;209754;237134;182962;152626;;;;;;; -5203;'021;Northern America;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9941;16703;22992;15057;13319;14578;7208;11528;6088;6872;9066;8193;10321;11272;12158;12544;17113;13333;14158;15542;18463;15400;17329;15858;18660;;;;;;; -5203;'021;Northern America;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;253951;448720;540000;328000;356000;227000;293100;211695;349744;367405;396853;393211;275539;462943;353207;374856;332814;300108;307476;631417;585300;467072;394048;440121;352196;;;;;;; -5203;'021;Northern America;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12002;18738;26521;24315;26680;19631;9847;7640;8540;8988;9690;10599;9919;16666;13103;19389;17261;15486;22958;41315;42143;28958;24168;31044;23134;;;;;;; -5203;'021;Northern America;1865;Industrial roundwood;5516;Production;m3;334936024;353488024;355119016;376450016;389436032;403215024;396941016;416943008;427649032;430145008;436326016;436531032;462732000;454605008;400309008;455344008;462259008;498815000;511991008;477879016;456270008;416695008;485515008;521721024;519600016;562564024;598898000;597854000;599004000;583158000;541787000;566607000;571289992;588127008;592061000;591054000;601951008;597438000;614286000;619537000;586157000;600169000;582412000;623404000;623703000;593144000;540161000;472991000;405397000;474937000;501439326;493817000;502688273;505637293;506035972;529170000;531598378;548138648;527662660;509987724;526402424;528117111;475722893 -5203;'021;Northern America;1865;Industrial roundwood;5616;Import quantity;m3;5157300;5520000;5245900;4327800;4618800;4394800;4521500;4691800;4300300;4695400;4614600;5666700;5083000;5453300;4546000;4860800;4660500;4909200;5536800;4939400;4368000;4033400;4884400;5537000;5699800;6047200;6578500;6404600;5740000;1795283;2500367;5363261;4890197;6053011;7261056;6613956;7264256;8315456;8012956;8961691;9988164;9629243;9167307;8398473;9843774;8709256;7342415;6038736;5332472;5561406;5233425;5662225;5797965;5171487;5810650;7437561;5450636;6911395;5690972;5689446;4256438;4118989;3934190 -5203;'021;Northern America;1865;Industrial roundwood;5622;Import value;1000 USD;51491;53058;52566;48616;54415;53249;54819;58112;56665;64000;59991;76092;73816;102989;93155;90018;99827;113175;140465;119775;118915;119223;144149;165327;164295;170838;195855;218804;235523;206352;227185;240357;245194;323814;428698;348868;405118;467669;503409;600461;585663;590482;572158;610973;718335;709340;562347;415949;377593;375822;338219;384698;396383;400252;422454;380418;360035.85;454836;378080;407891;473493;537563;528936 -5203;'021;Northern America;1865;Industrial roundwood;5916;Export quantity;m3;6137600;6259900;7904900;8674400;9408300;10720300;13190400;15401900;14354400;16945300;13591200;16598000;16575400;15367700;14907300;17570100;17116500;18000600;20391008;18120600;14566400;17158700;19668400;20601900;21366708;20845600;24018196;26754096;25144200;22862696;22056332;19379000;14205000;13468031;14003831;12900331;11565431;14318931;13952031;14854960;15246898;15538498;15292479;14300542;15407260;14277701;13509486;13039085;12341541;15601500;19460718;18321400;21722526;20658469;17620972;20218861;19601320;20763737;15468659;13348289;13634379;11284998;9861264 -5203;'021;Northern America;1865;Industrial roundwood;5922;Export value;1000 USD;92758;99393;115929;129790;167443;182196;249394;332737;344379;428391;344167;474916;852303;790562;791957;993129;1062336;1273287;1862471;1713597;1213415;1380003;1341180;1405999;1431134;1471717;1959978;2558664;2613419;2612431;2324855;2415975;2635368;2399353;2416656;2232689;1761603;1507670;1600685;1753652;1567593;1629572;1636169;1841704;1963777;1954348;2078635;1943864;1603035;2237088;2849444;2525009;3215624;3214602;2303711;2635094;3133977.02;3114606;2213665;1977143;2666633;2485650;2091235 -5203;'021;Northern America;1866;Industrial roundwood, coniferous;5516;Production;m3;271561024;289572016;287808008;306611016;316570016;325364016;323013016;342722008;348549016;352347000;359203016;354719016;377361000;368536000;331078000;378242000;385626000;412871000;422726000;387955008;368893008;340438008;398021008;429125008;430336008;460450016;495173000;492377000;487195000;453289000;412079000;433100000;416116992;425871008;429034000;425436000;437595008;426390000;442982000;445813000;422365000;436840000;422118000;463891000;465732000;439311000;396173000;339276000;285987000;365429000;381810220;376112000;383825566;385093961;397472020;411937000;413404708;422707601;408026911;408373490;422466495;414374495;378717425 -5203;'021;Northern America;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1097881;1497012;4331025;3861093;4395943;5675943;5151943;5223243;6471143;6003943;6658941;7437943;6703862;6718330;5679473;7396774;6527807;5576660;4208367;3738227;3527064;3269668;3463188;3831237;3128863;3594041;5217752;3421530;4995856;3883235;4210594;2764894;2632288;2638949 -5203;'021;Northern America;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;136262;153230;157468;154125;211673;299948;226827;249646;293367;317603;379210;368387;368108;335963;349143;468753;490183;385145;256756;244145;221355;216992;244145;262417;242883;258527;224262;213439.46;296875;235804;299505;334271;393856;413551 -5203;'021;Northern America;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21146912;20207932;17830000;13004000;11966031;12333031;11404331;9807431;12057531;11649031;11952846;12244102;12071426;12308944;10829033;12474464;11768474;10988730;10379166;9990341;13210500;17330224;16000400;19447355;17992474;15363934;17308334;16203567;17834331;13102583;11156476;11179208;8772912;7827637 -5203;'021;Northern America;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2331023;2049543;2153365;2370116;2095133;2101482;1945325;1411832;1139284;1217645;1281015;1086224;1094492;1072757;1192981;1316354;1282826;1218558;1171336;1045004;1482865;2156959;1889688;2563363;2446150;1803555;1865416;2237702.47;2180491;1492592;1307209;1794619;1535823;1284500 -5203;'021;Northern America;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1097881;1497012;4331025;3861093;4395943;5675943;5151943;5223243;6471143;6003943;6658941;7437943;6703862;6718330;5679473;7396774;6527807;5576660;4208367;3738227;3527064;3269668;3463188;3831237;3128863;3594041;5217752;3421530;4995856;3883235;4210594;2764894;2632288;2638949 -5203;'021;Northern America;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;136262;153230;157468;154125;211673;299948;226827;249646;293367;317603;379210;368387;368108;335963;349143;468753;490183;385145;256756;244145;221355;216992;244145;262417;242883;258527;224262;213439.46;296875;235804;299505;334271;393856;413551 -5203;'021;Northern America;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21146912;20207932;17830000;13004000;11966031;12333031;11404331;9807431;12057531;11649031;11952846;12244102;12071426;12308944;10829033;12474464;11768474;10988730;10379166;9990341;13210500;17330224;16000400;19447355;17992474;15363934;17308334;16203567;17834331;13102583;11156476;11179208;8772912;7827637 -5203;'021;Northern America;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2331023;2049543;2153365;2370116;2095133;2101482;1945325;1411832;1139284;1217645;1281015;1086224;1094492;1072757;1192981;1316354;1282826;1218558;1171336;1045004;1482865;2156959;1889688;2563363;2446150;1803555;1865416;2237702.47;2180491;1492592;1307209;1794619;1535823;1284500 -5203;'021;Northern America;1867;Industrial roundwood, non-coniferous;5516;Production;m3;63375000;63916008;67311008;69839000;72866016;77851008;73928000;74221000;79100016;77798008;77123000;81812016;85371000;86069008;69231008;77102008;76633008;85944000;89265008;89924008;87377000;76257000;87494000;92596016;89264008;102114008;103725000;105477000;111809000;129869000;129708000;133507000;155173000;162256000;163027000;165618000;164356000;171048000;171304000;173724000;163792000;163329000;160294000;159513000;157971000;153833000;143988000;133715000;119410000;109508000;119629106;117705000;118862707;120543332;108563952;117233000;118193670;125431047;119635749;101614234;103935929;113742616;97005468 -5203;'021;Northern America;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;697402;1003355;1032236;1029104;1657068;1585113;1462013;2041013;1844313;2009013;2302750;2550221;2925381;2448977;2719000;2447000;2181449;1765755;1830369;1594245;2034342;1963757;2199037;1966728;2042624;2216609;2219809;2029106;1915539;1807737;1478852;1491544;1486701;1295241 -5203;'021;Northern America;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70090;73955;82889;91069;112141;128750;122041;155472;174302;185806;221251;217276;222374;236195;261830;249582;219157;177202;159193;133448;154467;121227;140553;133966;157369;163927;156156;146596.4;157961;142276;108386;139222;143707;115385 -5203;'021;Northern America;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1715784;1848400;1549000;1201000;1502000;1670800;1496000;1758000;2261400;2303000;2902114;3002796;3467072;2983535;3471509;2932796;2509227;2520756;2659919;2351200;2391000;2130494;2321000;2275171;2665995;2257038;2910527;3397753;2929406;2366076;2191813;2455171;2512086;2033627 -5203;'021;Northern America;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;281408;275312;262610;265252;304220;315174;287364;349771;368386;383040;472637;481369;535080;563412;648723;647423;671522;860077;772528;558031;754223;692485;635321;652261;768452;500156;769678;896274.55;934115;721073;669934;872014;949827;806735 -5203;'021;Northern America;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25431;28267;17200;5568;6268;4013;4013;3013;1713;2623;3320;5473;5301;5564;8000;7279;3500;3793;6421;2241;1053;746;1225;6746;6987;6777;8519;9041;27276;6945;976;8865;26637;7709 -5203;'021;Northern America;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7931;6200;5230;2479;2658;4439;4439;4147;4782;7046;1555;1476;1927;1147;1415;1137;1247;1507;1570;1194;1091;474;598;2136;2194;2155;2681;2748.9;2643;2182;350;1499;5010;3747 -5203;'021;Northern America;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3200;17282;4000;2612;6266;6600;7000;8266;9696;8134;6999;5186;4211;1722;800;497;256;269;1709;4622;22456;8346;6674;7810;4184;3957 -5203;'021;Northern America;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;657;4030;805;468;1920;1081;2364;1955;1605;1872;1707;908;931;734;329;236;52;40;260;788.1;9998;4342;4074;3419;1624;1406 -5203;'021;Northern America;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;671971;975088;1015036;1023536;1650800;1581100;1458000;2038000;1842600;2006390;2299430;2544748;2920080;2443413;2711000;2439721;2177949;1761962;1823948;1592004;2033289;1963011;2197812;1959982;2035637;2209832;2211290;2020065;1888263;1800792;1477876;1482679;1460064;1287532 -5203;'021;Northern America;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62159;67755;77659;88590;109483;124311;117602;151325;169520;178760;219696;215800;220447;235048;260415;248445;217910;175695;157623;132254;153376;120753;139955;131830;155175;161772;153475;143847.5;155318;140094;108036;137723;138697;111638 -5203;'021;Northern America;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1715784;1848400;1549000;1201000;1502000;1670800;1496000;1758000;2258200;2285718;2898114;3000184;3460806;2976935;3464509;2924530;2499531;2512622;2652920;2346014;2386789;2128772;2320200;2274674;2665739;2256769;2908818;3393131;2906950;2357730;2185139;2447361;2507902;2029670 -5203;'021;Northern America;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;281408;275312;262610;265252;304220;315174;287364;349771;367729;379010;471832;480901;533160;562331;646359;645468;669917;858205;770821;557123;753292;691751;634992;652025;768400;500116;769418;895486.45;924117;716731;665860;868595;948203;805329 -5203;'021;Northern America;1868;Sawlogs and veneer logs;5516;Production;m3;209964016;229165016;235442016;248552008;254209016;258226008;254485008;271775008;266598016;266664008;284544008;280161016;296827000;275606000;254224008;301189000;315410000;340799000;340980000;301254016;278682000;250363000;312731008;341354008;345625016;375235016;407490000;406548000;400530000;389662000;348039000;371268000;374440992;386829008;391710000;391684000;398694008;380761000;409375000;409352000;384900000;398965000;376861000;421066000;426114000;396062000;358077000;299888000;236360000;260659000;276701777;268259000;279410861;283392674;289611850;302872000;307908378;324327822;309100000;304000000;310500000;313200000;291800000 -5203;'021;Northern America;1868;Sawlogs and veneer logs;5616;Import quantity;m3;1187200;1492000;1471700;1711900;2053900;1768800;1885000;2109200;1970600;2262500;2202100;2846000;2412600;2228500;2045700;2316600;2467700;2452400;2959300;2616600;2088900;2106900;3106800;3472300;3413000;3471300;3466700;3695500;3360000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5203;'021;Northern America;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;16490;20693;22588;24720;29644;25742;27901;30526;30809;35914;34636;46537;44984;57859;54063;52730;64690;69994;94697;76500;71581;76974;104728;113545;118816;117419;138401;156497;166802;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5203;'021;Northern America;1868;Sawlogs and veneer logs;5916;Export quantity;m3;2584500;2634300;4732600;5225400;5695400;6943100;9769700;12346200;11358300;13759400;11193600;14600700;14814400;12740500;12524000;15312000;14843200;16086400;18494608;15918900;12427400;15774600;18149500;19202300;19922008;19094700;22090296;24780296;23413000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5203;'021;Northern America;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;52715;59627;81122;89860;122793;137694;207049;293900;306688;384391;311117;443659;820465;743876;746134;945815;1015627;1212911;1800963;1638523;1139462;1331395;1283309;1352481;1380123;1410919;1883597;2481602;2539306;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5203;'021;Northern America;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;176604016;193511008;196765008;208765008;212519008;216540000;214821008;233713008;227771008;227734000;246119008;239159008;255355000;237674000;222099000;266239000;278564000;299891000;298253000;258814008;238866000;221378000;277241008;304279000;310119008;333100008;363672000;361351000;355646000;329298000;290407000;307650000;298840992;307032008;309958000;309286000;315691008;300032000;326917000;326439000;306158000;321695000;304960000;342215000;347212000;321731000;292168000;240726000;193442000;222628050;236722977;229761000;237537995;239657436;246547650;252671000;256475708;263720989;252000000;259000000;263000000;265000000;252000000 -5203;'021;Northern America;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;967000;1210000;1227300;1204200;1557300;1240300;1297600;1575600;1501400;1786000;1787300;2387100;1953900;1736700;1727600;2025300;2173600;2043200;2457800;2145600;1673700;1771900;2683300;2886900;2836600;2826100;2710000;3059200;2567000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5203;'021;Northern America;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;11312;14210;16444;13880;18311;13643;14633;17891;19657;25088;24395;34672;32106;42769;42180;42334;53563;51951;75298;59364;51733;58249;81242;80507;88730;81872;92621;116544;107776;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5203;'021;Northern America;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;2276500;2236300;4324600;4847700;5247200;6418600;9247400;11838600;10925900;13391200;10854400;14104100;14247600;12118300;12196200;14841900;14362100;15564700;17864808;15134500;11676300;15268700;17394900;18441400;19319708;18316100;21211696;23617496;22299000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5203;'021;Northern America;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;37526;40640;59230;70146;86069;110720;172239;248961;264066;346570;279400;399537;765494;691792;702002;878109;941927;1108703;1660487;1505222;1044964;1242635;1176124;1242182;1284417;1306187;1754632;2309613;2308564;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5203;'021;Northern America;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;33360000;35654008;38677008;39787000;41690008;41686008;39664000;38062000;38827008;38930008;38425000;41002008;41472000;37932000;32125008;34950000;36846000;40908000;42727000;42440008;39816000;28985000;35490000;37075008;35506008;42135008;43818000;45197000;44884000;60364000;57632000;63618000;75600000;79797000;81752000;82398000;83003000;80729000;82458000;82913000;78742000;77270000;71901000;78851000;78902000;74331000;65909000;59162000;42918000;38030950;39978800;38498000;41872866;43735238;43064200;50201000;51432670;60606833;57100000;45000000;47500000;48200000;39800000 -5203;'021;Northern America;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;220200;282000;244400;507700;496600;528500;587400;533600;469200;476500;414800;458900;458700;491800;318100;291300;294100;409200;501500;471000;415200;335000;423500;585400;576400;645200;756700;636300;793000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5203;'021;Northern America;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;5178;6483;6144;10840;11333;12099;13268;12635;11152;10826;10241;11865;12878;15090;11883;10396;11127;18043;19399;17136;19848;18725;23486;33038;30086;35547;45780;39953;59026;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5203;'021;Northern America;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;308000;398000;408000;377700;448200;524500;522300;507600;432400;368200;339200;496600;566800;622200;327800;470100;481100;521700;629800;784400;751100;505900;754600;760900;602300;778600;878600;1162800;1114000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5203;'021;Northern America;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;15189;18987;21892;19714;36724;26974;34810;44939;42622;37821;31717;44122;54971;52084;44132;67706;73700;104208;140476;133301;94498;88760;107185;110299;95706;104732;128965;171989;230742;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5203;'021;Northern America;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;204284000;193324000;198125000;186760000;188917000;193231000;189751000;184258000;184236000;170487000;162683000;158318000;203114000;209741663;210369000;206192449;205142806;199642312;211100000;208985000;208423863;203086801;190705205;200447150;196409150;167162329 -5203;'021;Northern America;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120971000;111194000;114488000;106463000;107266000;112201000;116670000;113022000;111980000;98992000;94073000;88004000;138235039;140543803;141808000;142134920;141333072;138841920;148466000;146197000;147211636;144286801;137505205;147447150;134645150;113394329 -5203;'021;Northern America;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83313000;82130000;83637000;80297000;81651000;81030000;73081000;71236000;72256000;71495000;68610000;70314000;64878961;69197860;68561000;64057529;63809734;60800392;62634000;62788000;61212227;58800000;53200000;53000000;61764000;53768000 -5203;'021;Northern America;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5616;Import quantity;m3;3426800;3394400;3084000;1844700;1832900;1980000;1861400;1653600;1406300;1368900;1055500;1096400;898600;1394800;1162300;1116600;1082100;1247400;1335000;1062800;948600;846800;786200;900300;640100;896000;778400;873900;900000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5203;'021;Northern America;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5622;Import value;1000 USD;28250;25920;23803;18029;18034;19914;19846;19280;16786;17519;13900;14828;11512;19137;18200;18239;20037;25956;26741;23290;23782;21203;18603;21316;14733;24811;18594;23945;28110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5203;'021;Northern America;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5916;Export quantity;m3;3173500;3195400;2880400;3140200;3439700;3518500;3069900;2639500;2658800;2835500;2101300;1699000;1455000;1646800;1380000;1277000;1193000;1352600;1357300;1460100;1277400;525300;884200;864800;950800;1382100;1620300;1775000;1500000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5203;'021;Northern America;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5922;Export value;1000 USD;29641;29051;25872;28052;33077;32079;28449;25888;24455;27626;20942;17407;14448;19819;17466;18678;19579;21685;24258;31660;30468;14096;18170;18980;23149;31917;44295;52000;40000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5203;'021;Northern America;1870;Pulpwood and particles (1961-1997);5516;Production;m3;106352008;110921008;107105000;114739008;121843016;127857016;126181008;127782000;144216016;150151000;137924008;142520016;149466000;165169008;133134000;139991008;135205008;145040000;157314008;163233000;164567008;153455008;159932000;165692016;158532000;171395008;174573000;174560000;181951000;176364000;179980000;181739000;179337000;182754000;181089000;180622000;184329000;;;;;;;;;;;;;;;;;;;;;;;;;; -5203;'021;Northern America;1870;Pulpwood and particles (1961-1997);5616;Import quantity;m3;3426800;3394400;3084000;1844700;1832900;1980000;1861400;1653600;1406300;1368900;1055500;1096400;898600;1394800;1162300;1116600;1082100;1247400;1335000;1062800;948600;846800;786200;900300;640100;896000;778400;873900;900000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5203;'021;Northern America;1870;Pulpwood and particles (1961-1997);5622;Import value;1000 USD;28250;25920;23803;18029;18034;19914;19846;19280;16786;17519;13900;14828;11512;19137;18200;18239;20037;25956;26741;23290;23782;21203;18603;21316;14733;24811;18594;23945;28110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5203;'021;Northern America;1870;Pulpwood and particles (1961-1997);5916;Export quantity;m3;3173500;3195400;2880400;3140200;3439700;3518500;3069900;2639500;2658800;2835500;2101300;1699000;1455000;1646800;1380000;1277000;1193000;1352600;1357300;1460100;1277400;525300;884200;864800;950800;1382100;1620300;1775000;1500000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5203;'021;Northern America;1870;Pulpwood and particles (1961-1997);5922;Export value;1000 USD;29641;29051;25872;28052;33077;32079;28449;25888;24455;27626;20942;17407;14448;19819;17466;18678;19579;21685;24258;31660;30468;14096;18170;18980;23149;31917;44295;52000;40000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5203;'021;Northern America;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;84975008;87587008;83144000;89785008;95907008;99480016;98573008;99552000;111447008;116805000;105031008;107515008;112477000;122979000;101551000;103928000;99100000;104252000;115307000;120280000;121537008;110714008;112459000;115919008;110749000;117617008;120981000;120620000;121526000;114616000;112632000;116557000;108025000;108834000;109621000;106867000;112621000;;;;;;;;;;;;;;;;;;;;;;;;;; -5203;'021;Northern America;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;21377000;23334000;23961000;24954000;25936008;28377000;27608000;28230000;32769008;33346000;32893000;35005008;36989000;42190008;31583000;36063008;36105008;40788000;42007008;42953000;43030000;42741000;47473000;49773008;47783000;53778000;53592000;53940000;60425000;61748000;67348000;65182000;71312000;73920000;71468000;73755000;71708000;;;;;;;;;;;;;;;;;;;;;;;;;; -5203;'021;Northern America;1871;Other industrial roundwood;5516;Production;m3;18620000;13402000;12572000;13159000;13384000;17132000;16275000;17386000;16835000;13330000;13858000;13850000;16439000;13830000;12951000;14164000;11644000;12976000;13697000;13392000;13021000;12877000;12852000;14675000;15443000;15934000;16835000;16746000;16523000;17132000;13768000;13600000;17512000;18544000;19262000;18748000;18928000;12393000;11587000;12060000;14497000;12287000;12320000;12587000;13331000;12846000;11597000;10420000;10719000;11164000;14995886;15189000;17084963;17101813;16781810;15198000;14705000;15386963;15475859;15282519;15455274;18507961;16760564 -5203;'021;Northern America;1871;Other industrial roundwood;5616;Import quantity;m3;543300;633600;690200;771200;732000;646000;775100;929000;923400;1064000;1357000;1724300;1771800;1830000;1338000;1427600;1110700;1209400;1242500;1260000;1330500;1079700;991400;1164400;1646700;1679900;2333400;1835200;1480000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5203;'021;Northern America;1871;Other industrial roundwood;5622;Import value;1000 USD;6751;6445;6175;5867;6737;7593;7072;8306;9070;10567;11455;14727;17320;25993;20892;19049;15100;17225;19027;19985;23552;21046;20818;30466;30746;28608;38860;38362;40611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5203;'021;Northern America;1871;Other industrial roundwood;5916;Export quantity;m3;379600;430200;291900;308800;273200;258700;350800;416200;337300;350400;296300;298300;306000;980400;1003300;981100;1080300;561600;539100;741600;861600;858800;634700;534800;493900;368800;307600;198800;231200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5203;'021;Northern America;1871;Other industrial roundwood;5922;Export value;1000 USD;10402;10715;8935;11878;11573;12423;13896;12949;13236;16374;12108;13850;17390;26867;28357;28636;27130;38691;37250;43414;43485;34512;39701;34538;27862;28881;32086;25062;34113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5203;'021;Northern America;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;9982000;8474000;7899000;8061000;8144000;9344000;9619000;9457000;9331000;7808000;8053000;8045000;9529000;7883000;7428000;8075000;7962000;8728000;9166000;8861000;8490000;8346000;8321000;8927000;9468000;9733000;10520000;10406000;10023000;9375000;9040000;8893000;9251000;10005000;9455000;9283000;9283000;5387000;4871000;4886000;9744000;7879000;4957000;5006000;5498000;5600000;5013000;4477000;4541000;4565911;4543440;4543000;4152651;4103453;12082450;10800000;10732000;11774976;11740110;11868285;12019345;14729345;13323096 -5203;'021;Northern America;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;8638000;4928000;4673000;5098000;5240000;7788000;6656000;7929000;7504000;5522000;5805000;5805000;6910000;5947000;5523000;6089000;3682000;4248000;4531000;4531000;4531000;4531000;4531000;5748000;5975000;6201000;6315000;6340000;6500000;7757000;4728000;4707000;8261000;8539000;9807000;9465000;9645000;7006000;6716000;7174000;4753000;4408000;7363000;7581000;7833000;7246000;6584000;5943000;6178000;6598089;10452446;10646000;12932312;12998360;4699360;4398000;3973000;3611987;3735749;3414234;3435929;3778616;3437468 -5203;'021;Northern America;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;543300;633600;690200;771200;732000;646000;775100;929000;923400;1064000;1357000;1724300;1771800;1830000;1338000;1427600;1110700;1209400;1242500;1260000;1330500;1079700;991400;1164400;1646700;1679900;2333400;1835200;1480000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5203;'021;Northern America;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;6751;6445;6175;5867;6737;7593;7072;8306;9070;10567;11455;14727;17320;25993;20892;19049;15100;17225;19027;19985;23552;21046;20818;30466;30746;28608;38860;38362;40611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5203;'021;Northern America;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;379600;430200;291900;308800;273200;258700;350800;416200;337300;350400;296300;298300;306000;980400;1003300;981100;1080300;561600;539100;741600;861600;858800;634700;534800;493900;368800;307600;198800;231200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5203;'021;Northern America;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;10402;10715;8935;11878;11573;12423;13896;12949;13236;16374;12108;13850;17390;26867;28357;28636;27130;38691;37250;43414;43485;34512;39701;34538;27862;28881;32086;25062;34113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5203;'021;Northern America;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;500000;734000;762000;747000;789000;802000;852900;870800;925100;909900;959400;982200;930300;940000;901800;901649;916524;923507;1070000;1038000;1039000;982260;982260;982260;852000;852000;852000;852000;852000;852000;852000;875911 -5203;'021;Northern America;1630;Wood charcoal;5610;Import quantity;t;14200;12600;13900;19000;15400;18400;17200;19400;24300;29300;34900;31100;26300;31800;34900;30200;50500;58700;62900;44700;22900;18800;18800;26800;26600;25700;26600;28700;31300;44700;34100;30591;30742;28900;28500;24600;31700;34000;30000;25403;26488;37760;65534;75014;74010;74012;70031;64021;70264;94867;109941;102033;104794;112562;122415;141625;136752;153453;131926;241601;353417;209527;161640 -5203;'021;Northern America;1630;Wood charcoal;5622;Import value;1000 USD;953;753;843;1180;1092;1312;1614;1787;1997;2500;3386;3547;2866;4573;6258;4378;7681;9283;8393;7846;7362;5124;5401;6404;5893;4788;4953;6072;8276;13776;9691;7549;7553;6779;7398;6508;7726;7762;7955;7348;8309;10469;17996;21111;24221;26550;27365;27806;34176;36383;43204;47115;52451;58126;67255;69399;72051.75;72352;74338;107138;131784;96906;109802 -5203;'021;Northern America;1630;Wood charcoal;5910;Export quantity;t;4300;3800;3800;8400;10200;14000;15200;20000;14000;17000;14000;15100;18700;18300;34300;27000;33300;28400;16300;10500;18000;14100;14100;15000;14800;13600;12600;17300;20900;18800;26000;34658;32877;31900;30600;31600;29200;29300;21000;17670;14376;15510;17388;17000;22165;20462;10700;12610;15800;14792;16844;19000;24970;22950;17946;29061;25961;20782;25164;24274;28742;20356;20428 -5203;'021;Northern America;1630;Wood charcoal;5922;Export value;1000 USD;544;527;605;803;1093;1507;1639;2155;1559;1834;1503;1678;2161;2426;4881;4548;5707;5672;7003;4566;9225;5609;5609;2882;2742;2515;2793;3989;4163;6089;8966;10473;9429;7753;7839;8622;6847;7327;6312;5558;4163;5003;6331;7107;8845;9899;7483;9239;11322;10638;12026;13906;16068;16654;12852;14486;13309.15;16054;18598;21576;27128;19769;20209 -5203;'021;Northern America;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;152891691;169743001;171918776;164089000;165768000;162123000;167020000;169648000;166328000;159858000;149660000;132164000;137885000;139483000;142668000;96160400;98298000;100453840;102126000;86866000;85408121;84874000;79874000;83474000;83989616;74733327 -5203;'021;Northern America;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3104215;2215984;3259045;3276293;2946285;3122411;4235315;4168953;4224685;5114500;4879711;3840870;3838720;3503197;3015807;4002075;3769322;3632975;3323371;4107808;3310899;3248970;3128630;2885317;2490810;2106730 -5203;'021;Northern America;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;136691;129130;154487;149503;141458;179680;215167;228105;251152;298768;286057;219951;226221;196308;122539;130262;129563;134758;114525;125671.76;162929;136126;132688;125472;128707;151875 -5203;'021;Northern America;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11194662;11634389;10176924;8101900;6296304;5245694;5524658;6440416;5056475;7898005;9120887;8138189;9093791;9609989;7599950;6504292;6681075;8441620;7486172;6919206;7391217;5704315;5146110;6387659;4787072;4901017 -5203;'021;Northern America;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;585606;565283;539305;442387;335511;313399;348364;407460;248585;535394;617675;564277;690862;697918;358111;311020;346399;377722;332018;313953.31;350133;274294;238251;287444;364983;392040 -5203;'021;Northern America;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;132470691;141549601;143549488;137355000;138715000;136868000;140683000;142546000;139552000;134238000;125477000;113684000;117354000;119055000;121566000;74188400;75724000;77879840;79552000;63817000;61816095;60800000;57900000;58400000;65700000;56300000 -5203;'021;Northern America;1619;Wood chips and particles;5616;Import quantity;m3;;;;1128800;783500;929900;1195400;1146800;703700;881100;646000;686000;800000;651900;449500;672000;919100;1100800;1075500;1087100;1075600;871300;1184700;867300;816000;1326600;735100;1294300;1553400;1426100;1400200;1236721;1636138;1657000;2372000;1922000;2515200;2486800;1466000;2434218;2169544;1916170;2408434;3245200;2963435;2893842;3592859;3302218;2189240;2485240;2301124;2259272;3311374;2893023;2710503;2449618;2940699;2810397;2925680;2783460;2291516;1902732;1641792 -5203;'021;Northern America;1619;Wood chips and particles;5622;Import value;1000 USD;;;;7714;6134;7156;9918;9571;5900;9015;12180;11763;15700;14298;14107;21517;29500;36966;35480;45697;46723;39664;56274;43078;33562;38166;24574;48434;35659;33223;36957;35790;46589;68834;85869;73489;87057;89177;75092;89690;66636;61931;76573;101351;104225;106810;147879;140429;82859;108393;81216;84073;96796;93562;96643;79075;90318.79;114817;115610;107691;93849;91460;112007 -5203;'021;Northern America;1619;Wood chips and particles;5916;Export quantity;m3;;;;1135800;1009700;1385500;2288300;3539800;4144500;4485900;3724200;4417200;5847200;6257000;5129000;6503000;6876000;6482000;7820600;7986300;6596600;5405400;5187300;4687300;4599500;4642400;4694400;6788200;9534600;9681200;10627100;9732000;7763000;8571000;9122000;8351000;8593000;10527000;10754093;9476325;7294862;5527304;4644304;4324000;4509000;4750466;5946974;6887400;5273800;5934343;6632323;7248500;6250803;6392262;8125899;7067315;6538852;7146133;5504158;5003349;6229347;4619982;4733762 -5203;'021;Northern America;1619;Wood chips and particles;5922;Export value;1000 USD;;;;7760;8413;12196;22110;37189;43728;46939;57769;69767;101320;128230;129527;174218;192643;200062;243344;455656;518390;310545;243767;230009;229742;225304;243857;391191;528265;532352;587493;570660;503437;516998;622164;630800;575213;532948;495414;454349;348814;242676;196450;189729;222319;225545;296077;332321;211528;265075;293329;302974;265692;294166;323256;280641;259893.31;314222;245794;211554;255775;326122;352749 -5203;'021;Northern America;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15952000;17489000;18947000;19778000;19961000;20073000;20291000;20421000;28193400;28369288;26734000;27053000;25255000;26337000;27102000;26776000;25620000;24183000;18480000;20531000;20428000;21102000;21972000;22574000;22574000;22574000;23049000;23592026;24074000;21974000;25074000;18289616;18433327 -5203;'021;Northern America;1620;Wood residues;5616;Import quantity;m3;279800;277300;252100;254300;327600;457100;478800;438600;327000;302000;294000;299000;164000;140000;246700;250000;271700;168000;93800;99200;323400;282000;437900;405700;520200;582400;628600;358300;200000;125000;185800;257148;341559;490115;547115;594115;584115;617415;749984;824827;1106749;1030115;713977;990115;1205518;1330843;1521641;1577493;1651630;1353480;1202073;756535;690701;876299;922472;873753;1167109;500502;323290;345170;593801;588078;464938 -5203;'021;Northern America;1620;Wood residues;5622;Import value;1000 USD;90;52;87;267;229;338;397;426;375;645;572;900;860;1429;1641;1726;1803;1836;1100;2300;7440;6500;10100;9300;11522;11500;13300;16800;21398;23400;25000;40698;34926;34675;43691;44392;44973;47514;54038;64797;82867;79527;103107;113816;123880;144342;150889;145628;137092;117828;115092;38466;33466;36001;38115;35450;35352.98;48112;20516;24997;31623;37247;39868 -5203;'021;Northern America;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;285167;307000;544000;559000;590151;631424;667662;880296;700599;807038;769000;601390;1200658;1931416;306009;1951031;2233487;2864389;3159448;2977666;351450;253489;288813;315721;418857;380354;245084;200157;142761;158312;167090;167255 -5203;'021;Northern America;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;21962;24378;34821;41886;45309;59818;52658;69869;84956;93573;92835;116949;158635;185141;23040;239317;285354;352749;425787;404589;55137;45328;52233;54466;51377;54060;35911;28500;26697;31669;38861;39291 -5203;'021;Northern America;1605;Sawdust (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119208;86705 -5203;'021;Northern America;1605;Sawdust (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3417;3720 -5203;'021;Northern America;1605;Sawdust (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7150;8232 -5203;'021;Northern America;1605;Sawdust (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3916;4469 -5203;'021;Northern America;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4622;9118;9118;9118;84840;84840 -5203;'021;Northern America;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;884;2202;2202;2202;25336;25336 -5203;'021;Northern America;1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2380;0 -5203;'021;Northern America;1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1476;0 -5203;'021;Northern America;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4974000;6504000;7847000;8617000;9449600;9973636;10778292;12054297;12503943;12540184;13635584;13532287 -5203;'021;Northern America;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;250225;274612;360247;350668;337585;429323;335872;438778;397489;423802;404487;399218 -5203;'021;Northern America;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57325;63869;84053;84838;69777;77984.15;66858;98609;101165;110875;111015;111572 -5203;'021;Northern America;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3429016;4583690;5784497;6381094;7237944;7662767;8919133;9673111;10316149;10854455;12678803;12969112 -5203;'021;Northern America;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;506670;647189;807009;934133;943470;1034054.63;1236141;1371249;1434954;1543691;2142135;2289815 -5203;'021;Northern America;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4974000;6504000;7847000;8617000;9281700;9805736;10516708;11792713;12242359;12278600;13374000;13270703 -5203;'021;Northern America;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;131002;175058;250097;236939;225106;231230;241025;238830;233505;225229;225213;216241 -5203;'021;Northern America;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26671;35729;51510;56445;42196;48564.17;50112;53096;55800;58432;61440;62821 -5203;'021;Northern America;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3267125;4522748;5642450;6296784;7082109;7375485;8668719;9492703;10157547;10675742;12507738;12803819 -5203;'021;Northern America;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;466544;623410;769479;905747;921461;972107.15;1187617;1319518;1387372;1488853;2088489;2237566 -5203;'021;Northern America;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;167900;167900;261584;261584;261584;261584;261584;261584 -5203;'021;Northern America;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119223;99554;110150;113729;112479;198093;94847;199948;163984;198573;179274;182977 -5203;'021;Northern America;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30654;28140;32543;28393;27581;29419.98;16746;45513;45365;52443;49575;48751 -5203;'021;Northern America;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;161891;60942;142047;84310;155835;287282;250414;180408;158602;178713;171065;165293 -5203;'021;Northern America;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40126;23779;37530;28386;22009;61947.48;48524;51731;47582;54838;53646;52249 -5203;'021;Northern America;1872;Sawnwood;5516;Production;m3;72528567;75384200;80231162;84978639;86274045;85653206;83461335;86629735;88317380;83421411;89579290;92874577;96931634;86882604;79342434;94100051;101466858;105650293;107968757;98091849;88634411;79092889;99357767;103421872;107221693;117456416;129281954;128268100;125759380;125885470;117957861;125288182;127008673;132140428;129584132;133227209;136570484;136176176;143026464;141540607;139722900;147123976;143050562;154019090;157206232;151612568;137661393;114416902;87095530;98680400;102053580;108038043;113928453;119184300;123476860;127888699;128235400;129601020;124232100;119497200;121780100;118895800;112947600 -5203;'021;Northern America;1872;Sawnwood;5616;Import quantity;m3;7939888;9015381;9704515;9460452;9683669;9649665;9663427;11308754;11611914;11129858;13747894;17111644;17598319;13623184;11431910;15611914;19614414;22065499;21225930;18313670;18192805;16883118;22226389;24546814;26844863;26315398;27603051;25062757;27616359;23770875;21328725;24224645;27585478;29671045;31388656;32644964;33370176;34087856;35398676;36132497;36664814;38913279;39438688;46154464;45742320;41664933;33817387;23910509;16594262;18004656;17700056;18682495;21789149;23548929;25746416;29607702;29203310;28067381;26817210;27594129;29250488;28432150;26467463 -5203;'021;Northern America;1872;Sawnwood;5622;Import value;1000 USD;345652;366315;387640;386565;411674;421922;416600;599679;671490;525845;792728;1231157;1568805;1153253;1037108;1462290;2047891;3037981;2913331;2156267;2098576;1824267;3040243;2962755;3162517;3272724;3654612;3596349;3445618;3310807;3001594;4137799;5379154;6774501;6212157;7378988;8069009;7142839;8321968;7623399;7301363;7101763;6520060;9776119;9540585;8885979;7022818;4907869;3005826;3889163;3832329;4373724;5553397;6278860;5939741;7264423;7746037.17;7807429;6385873;8546795;14529265;12997349;8065355 -5203;'021;Northern America;1872;Sawnwood;5916;Export quantity;m3;10231909;11118660;12679571;13231154;13233595;12817337;13247336;14466657;13936310;15054667;16662934;19477462;20793762;17349558;14341024;19889600;24058203;26311620;26712871;25677059;24269076;23762950;28799944;30954620;31476805;32150047;36133446;38212225;36989377;35643078;33724735;35669765;37751286;39062267;40706807;42331894;41352861;39741127;41304466;41584879;40898312;41876918;42348210;45517202;45564618;43590272;37318532;27921231;22604351;27334913;29929963;31238000;34612712;36446880;36602761;39906560;39032052;37561510;34016756;32165311;33427770;30733370;28656806 -5203;'021;Northern America;1872;Sawnwood;5922;Export value;1000 USD;450317;487802;557080;597805;609296;604636;613236;765488;833444;839608;996169;1480882;2085243;1789187;1371765;2237536;2793599;3400471;4340368;3934313;3436709;3177943;4126557;4135922;4129601;4585207;5786048;6252288;6733467;6800025;6743401;8014479;9775602;10787933;10408304;11657321;11915584;9809660;11131888;10386257;9249871;8684979;8145209;10995973;10672493;10418758;8958680;6774481;5004133;7124711;7949209;8511535;10506718;11363936;10020379;11087707;12120944.35;12033017;9300260;10463882;16994684;14370169;9361583 -5203;'021;Northern America;1632;Sawnwood, coniferous;5516;Production;m3;57366317;59478950;63255662;66485131;67292545;66082198;64446335;68077239;66862380;65131915;71929790;75507577;79035634;69195604;64422434;77690051;84829858;88337793;89429749;79290337;71442411;66630889;84837767;87359872;91740693;98427400;108577946;107588092;105489372;99381470;92851853;98026182;98105673;102084428;99147132;102577209;105763484;105106176;111703764;110525607;111394500;117662976;116321562;125563410;127656232;122615808;110652033;89852522;71582530;79875400;82890580;88034043;92475453;95694300;99153460;103787699;103892400;105696120;100800000;101800000;103600000;100400000;97700000 -5203;'021;Northern America;1632;Sawnwood, coniferous;5616;Import quantity;m3;7109288;8037431;8729315;8450452;8600969;8380915;8454677;10211604;10247664;10108958;12623194;15660494;15840019;12137484;10346510;14283664;18237964;20599249;19525380;16756370;16563555;15918068;20943789;23067164;25350613;24775548;25488351;23520157;26090159;22605175;20209025;22979514;26119712;28085222;29797433;31196141;31185653;31838233;32817853;33268473;34201907;36070337;36437772;42142244;42268949;38995059;31483454;21964795;15589896;16740426;16257895;17308848;20301343;21807585;24024055;28044434;27632963;26287216;25153110;26231273;27747250;26846677;25063321 -5203;'021;Northern America;1632;Sawnwood, coniferous;5622;Import value;1000 USD;289288;298910;321826;317287;335074;328069;333688;517006;570098;446054;706738;1108386;1399995;968595;904766;1296346;1860272;2772408;2568415;1862369;1808432;1628360;2749804;2643393;2852022;2942915;3164827;3087633;3056657;2945414;2650124;3746199;4922574;6238469;5672217;6791603;7336240;6438450;7528020;6728533;6495043;6266971;5613917;8399714;8393085;7755493;5981723;4008492;2502032;3244450;3180574;3749585;4831346;5455107;5126107;6506466;6892967;6948784;5483762;7785162;13550095;11818076;7195470 -5203;'021;Northern America;1632;Sawnwood, coniferous;5916;Export quantity;m3;9616509;10476510;12046621;12505704;12458095;11889087;12417736;13785257;13169510;14356717;15857684;18443062;19702562;16570458;13416124;19032400;23182403;24931170;25560471;24308209;22925426;22634250;27392444;29457170;30231305;30582947;33910946;34673725;34538677;33099778;31039835;32709447;34829286;35891207;37442747;38789834;37234601;36060667;37175406;37190199;36722571;37607370;38235210;41127202;41207100;39391861;33767085;25207975;20385351;24281913;26754354;27645000;30679625;31984107;32516639;35413602;33946164;32515872;29708662;28158792;29262394;26507829;25017302 -5203;'021;Northern America;1632;Sawnwood, coniferous;5922;Export value;1000 USD;407451;442601;511892;546393;551924;535953;548705;707984;767967;773456;935940;1350755;1982007;1685606;1281328;2107926;2640577;3173237;4048591;3585241;3098110;2887460;3763420;3768438;3810390;4164135;5188452;5392687;5945395;5846463;5745634;6746282;8487958;9398542;8901249;10052894;10072250;8180666;9339019;8506407;7628006;7045551;6438815;8920939;8672289;8328264;7172199;5390953;3928361;5602825;6309044;6726302;8395918;8741658;7667435;8538912;9170231.2;9069436;6924359;8289532;14331043;11645137;7235763 -5203;'021;Northern America;1633;Sawnwood, non-coniferous;5516;Production;m3;15162250;15905250;16975500;18493508;18981500;19571008;19015000;18552496;21455000;18289496;17649500;17367000;17896000;17687000;14920000;16410000;16637000;17312500;18539008;18801512;17192000;12462000;14520000;16062000;15481000;19029016;20704008;20680008;20270008;26504000;25106008;27262000;28903000;30056000;30437000;30650000;30807000;31070000;31322700;31015000;28328400;29461000;26729000;28455680;29550000;28996760;27009360;24564380;15513000;18805000;19163000;20004000;21453000;23490000;24323400;24101000;24343000;23904900;23432100;17697200;18180100;18495800;15247600 -5203;'021;Northern America;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;830600;977950;975200;1010000;1082700;1268750;1208750;1097150;1364250;1020900;1124700;1451150;1758300;1485700;1085400;1328250;1376450;1466250;1700550;1557300;1629250;965050;1282600;1479650;1494250;1539850;2114700;1542600;1526200;1165700;1119700;1245131;1465766;1585823;1591223;1448823;2184523;2249623;2580823;2864024;2462907;2842942;3000916;4012220;3473371;2669874;2333933;1945714;1004366;1264230;1442161;1373647;1487806;1741344;1722361;1563268;1570347;1780165;1664100;1362856;1503238;1585473;1404142 -5203;'021;Northern America;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;56364;67405;65814;69278;76600;93853;82912;82673;101392;79791;85990;122771;168810;184658;132342;165944;187619;265573;344916;293898;290144;195907;290439;319362;310495;329809;489785;508716;388961;365393;351470;391600;456580;536032;539940;587385;732769;704389;793948;894866;806320;834792;906143;1376405;1147500;1130486;1041095;899377;503794;644713;651755;624139;722051;823753;813634;757957;853070.17;858645;902111;761633;979170;1179273;869885 -5203;'021;Northern America;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;615400;642150;632950;725450;775500;928250;829600;681400;766800;697950;805250;1034400;1091200;779100;924900;857200;875800;1380450;1152400;1368850;1343650;1128700;1407500;1497450;1245500;1567100;2222500;3538500;2450700;2543300;2684900;2960318;2922000;3171060;3264060;3542060;4118260;3680460;4129060;4394680;4175741;4269548;4113000;4390000;4357518;4198411;3551447;2713256;2219000;3053000;3175609;3593000;3933087;4462773;4086122;4492958;5085888;5045638;4308094;4006519;4165376;4225541;3639504 -5203;'021;Northern America;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;42866;45201;45188;51412;57372;68683;64531;57504;65477;66152;60229;130127;103236;103581;90437;129610;153022;227234;291777;349072;338599;290483;363137;367484;319211;421072;597596;859601;788072;953562;997767;1268197;1287644;1389391;1507055;1604427;1843334;1628994;1792869;1879850;1621865;1639428;1706394;2075034;2000204;2090494;1786481;1383528;1075772;1521886;1640165;1785233;2110800;2622278;2352944;2548795;2950713.14;2963581;2375901;2174350;2663641;2725032;2125820 -5203;'021;Northern America;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;591000;581000;581000;581000;581000;581000;801000;801000;900000;1000000;1100000;1100000;1260000;1280000;1300000;1000000;900000;850000;850000;900000;950000;1000000;920000;1010000;1070000;2856000;2847760;2810972;2865501;2865501;2865501;2865501 -5203;'021;Northern America;1634;Veneer sheets;5616;Import quantity;m3;222300;298700;342100;406600;453400;473500;464900;546100;493100;449700;551800;761500;720600;558000;380700;494000;532000;509700;491200;398700;416500;392300;499300;461900;441700;501000;522000;536900;334200;625800;600200;612011;677039;784049;723049;701049;893049;1249949;1586651;1570202;1562020;1687021;1548023;1978529;800737;740097;669675;471718;348673;344364;374722;432730;442538;555179;460701;367255;390046;842733;802066;746215;854284;864241;800427 -5203;'021;Northern America;1634;Veneer sheets;5622;Import value;1000 USD;29338;36713;42761;48657;52073;56293;53425;62998;62659;52577;64478;95382;115100;100498;71165;94716;106959;131536;139128;117119;131800;105905;165387;166618;151691;158864;192583;219762;236182;237453;202641;252022;297436;345178;293052;281185;370805;474758;543811;616761;572548;627576;618669;736426;762578;740815;678794;539168;362779;390465;395185;444318;467578;760511;462187;489981;514150.26;566777;477111;447436;637319;744892;611594 -5203;'021;Northern America;1634;Veneer sheets;5916;Export quantity;m3;78800;94900;108200;131600;151100;154300;162400;190400;190300;192400;263400;282200;311800;258700;283400;422300;505100;647700;419500;456900;505900;407500;493800;454900;377000;463800;550300;603400;401000;774900;597200;685912;748000;896000;838000;782000;977000;1527100;1748696;1854347;1812000;1970000;1917000;2263899;1427612;1323294;1000709;793911;605305;392529;405284;391250;694684;709694;786102;793921;909618;912525;820407;764382;900594;883887;787968 -5203;'021;Northern America;1634;Veneer sheets;5922;Export value;1000 USD;20224;23109;27304;33939;38365;37363;35956;42391;41797;40218;46542;65979;86753;80558;80465;98850;107461;153367;202131;199655;172469;158136;200446;188102;143231;180754;229710;278146;295243;347061;343822;398740;437318;530809;505818;511168;635781;641766;724145;792347;736429;796733;800148;958075;937923;913926;825491;658234;469937;519553;503480;532002;565386;578576;570409;583180;601979.67;666796;569246;542739;772966;841516;682248 -5203;'021;Northern America;1873;Wood-based panels;5516;Production;m3;12231600;13543900;15024500;16741200;18584300;23298200;23461700;26331200;26343400;26094200;30880200;34446700;36078000;30812000;28385800;33386000;36800008;36814000;35362000;30725000;31864000;27275000;34674008;36643008;38596000;41460008;43956008;44060008;44200000;42897008;40119000;43682008;44797000;46052000;45933000;48837000;50882000;54447028;59600162;59863440;54566607;56042713;58129260;59873255;61090051;60691721;57548145;46996450;42392789;41238280;41264823;41189000;43713823;46387540;47037505;47969713;48580740;46540790;47167076;44117844;46585699;45097451;42531118 -5203;'021;Northern America;1873;Wood-based panels;5616;Import quantity;m3;631500;820400;936900;1126800;1232400;1395413;1426275;2147724;2565116;2273785;2929203;3904634;3426642;2686993;2766405;3151420;3013700;3446000;2844700;1979200;2434900;1890900;2866800;3086200;3514600;3766900;3870400;4145400;4403800;4120800;3536100;4547440;5524722;6492088;7306111;9407211;10630311;11026311;12870731;13904951;14972967;16961179;17923954;20714698;22104851;22228607;17639234;12415995;9383918;10708071;10765620;11320283;11179153;13048531;14859489;16200208;17886080;18793283;17135797;18428126;21815411;21153808;17264944 -5203;'021;Northern America;1873;Wood-based panels;5622;Import value;1000 USD;92181;125948;137231;156393;161233;183616;177234;259950;306801;248321;318172;430171;513411;448371;404933;513791;594372;773474;751597;544256;657788;452335;782537;698219;739269;827938;1063310;1063485;1089800;1068398;939679;1288427;1631705;1924382;1951963;2040085;2139693;2484414;3281838;3202779;3230820;3716488;4966098;7055325;7157826;6840381;5273485;4045973;3321743;3717267;3592343;4637791;5303620;5533368;5897942;6380695;6960237.25;7364918;5924537;6773943;11287964;11565204;7198042 -5203;'021;Northern America;1873;Wood-based panels;5916;Export quantity;m3;173400;234400;259800;381200;402700;536744;613024;681442;795237;691531;716119;942978;1246479;1259156;1223650;1144800;1269000;1413400;1633000;1854900;2026700;1680300;1906700;2212600;2377000;2695500;2996800;4094000;4431100;4825500;4295800;5546232;6331457;6819235;8103474;9152035;10525335;10557235;11683795;11818182;12643988;12894970;13467781;14058659;14121035;13882501;11489328;7857071;6005833;6085971;6895050;7535635;8098445;8585923;8818719;9892953;10258677;12148664;10022964;9171527;10134028;10330001;9359924 -5203;'021;Northern America;1873;Wood-based panels;5922;Export value;1000 USD;25137;32271;39257;51206;54636;60202;68627;76530;95609;78548;77126;122002;178449;220589;235187;247053;228493;256389;320217;357920;432149;344067;411308;397009;439332;481903;575205;749540;831187;910649;793909;1162826;1394040;1588353;1878665;1902105;2067878;2319701;2947053;2741340;2459489;2535843;3407918;4586770;4368996;3682395;2937597;2195150;1854242;2099544;2021985;2362147;2778475;2628836;2644083;2915972;3227671.13;3447494;2781058;3309131;5900028;5408744;3786380 -5203;'021;Northern America;1640;Plywood and LVL;5516;Production;m3;9683500;10714300;11899700;13142800;14512800;15011000;14926600;16467600;15639000;15929000;18250000;19948000;20505000;17257000;16630000;19168000;20641008;19863000;19638000;17195000;18386000;16653000;20439008;20475008;20752000;22188008;23310008;22997008;21865000;20742008;18213000;18947008;18917000;19214000;18971000;18789000;19347000;19517000;19779480;19514734;17442700;17482960;17075770;17177485;16771395;15903125;15040505;12600740;10744075;11401930;11159070;11317000;11472210;12960700;12900600;13443769;13853362;11846611;11847234;11171533;11403088;10709146;10385735 -5203;'021;Northern America;1640;Plywood and LVL;5616;Import quantity;m3;505300;664400;730800;903700;969800;1162900;1190000;1747400;2037900;1902600;2424400;3115200;2545600;1889500;2295600;2485000;2197500;2394200;1915500;1082100;1472400;1010300;1568500;1366100;1623300;1832800;1944300;1999900;2078400;1723500;1599800;1895166;1924044;1840209;2128209;2295209;2301209;2242609;2721209;2617931;3531956;4381934;4762251;6254523;6874458;7082103;6226421;5209581;3510296;4463370;4189999;4738136;4302058;4462106;5749698;6110494;6684880;7035921;6076080;7639625;9502617;9025351;7006365 -5203;'021;Northern America;1640;Plywood and LVL;5622;Import value;1000 USD;79904;110760;116774;134873;134840;162546;157346;234912;276905;225941;287682;380470;446255;380608;363742;455057;499738;637979;631958;426778;518022;340556;590152;461983;486787;562229;767612;749453;686090;703319;615513;770733;879911;875593;898758;883070;886105;761125;967309;928198;1075880;1351167;1523363;2261429;2358996;2775126;2292056;1850713;1468397;1686256;1673086;2281033;2443843;2670494;3018449;3121354;3336655.93;3682495;2841242;3024076;4694426;4941123;3078941 -5203;'021;Northern America;1640;Plywood and LVL;5916;Export quantity;m3;132100;193100;205600;315500;314400;364800;457500;477300;531000;483300;449200;584300;778700;740000;826600;731600;602500;698200;752200;795900;845500;704000;797000;714500;688100;934800;1086700;1459400;1781800;1953800;1662100;2030239;1977657;1856535;2213535;2256035;2459035;1587735;1668035;1614330;1560360;1578597;1528759;1552035;1621035;1441539;1407098;1089140;835435;1172135;1196568;1200535;1314206;1310149;1290314;1322718;1605879;1432668;1211389;1071333;1393214;1421716;1184117 -5203;'021;Northern America;1640;Plywood and LVL;5922;Export value;1000 USD;18210;24918;29855;39879;40520;46140;55377;60684;75126;59950;55152;90583;133505;162635;191526;196383;154936;183668;226166;233308;288043;217156;260453;188609;194722;237075;294599;374955;417239;456182;387440;512870;553788;512056;661960;624538;730747;518743;596877;577385;537906;559465;565560;660889;696259;672521;704455;528746;437473;575499;560574;595018;623843;627937;693460;658437;755905.55;714946;609057;589638;882677;903602;755441 -5203;'021;Northern America;1607;Laminated Veneer Lumber (LVL);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2228316;1973465 -5203;'021;Northern America;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;221015;204858 -5203;'021;Northern America;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;192652;188453 -5203;'021;Northern America;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;157891;105883 -5203;'021;Northern America;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100840;91647 -5203;'021;Northern America;1646;Particle board and OSB (1961-1994);5516;Production;m3;631900;790500;942700;1232600;1629300;2190600;2352500;2861300;3415400;3410000;4755000;6034000;6914000;6006000;4756000;6118000;8020000;8886000;7670000;6801000;6900000;5955000;8140000;9833000;10764000;12127000;13326000;13895000;14824000;14943000;14829000;17264000;18524000;19157000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5203;'021;Northern America;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;3500;1800;3400;4300;8400;3400;17500;26600;79700;51800;123100;193200;231900;268500;243900;349900;369100;461500;506100;588100;594700;556800;787400;1191700;1304500;1246500;1330100;1511100;1796800;1810400;1483300;2201135;3051545;3768790;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5203;'021;Northern America;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;288;124;249;403;1168;514;1153;1697;4347;2607;5484;8494;15307;18001;14241;21238;46618;56006;59656;66297;72215;59426;95129;142140;153606;152276;168817;182480;266246;238839;216522;392209;566693;799071;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5203;'021;Northern America;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;9300;1700;3700;13300;29900;21300;42600;95800;162600;240300;179300;169900;407000;445000;623200;766600;760300;645800;699700;1049900;1233300;1193900;1338700;1981700;1895700;2204500;1939700;2637643;3476200;3904000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5203;'021;Northern America;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;430;306;881;1050;2227;1618;3201;6292;10986;17633;12992;13424;34404;41796;61388;85215;93943;84561;96996;145759;171481;165364;180874;243651;266466;292887;245810;455710;629411;811681;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5203;'021;Northern America;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7139000;8797000;8962000;10475003;13132184;11772875;10340670;9954800;10012490;10501360;9875760;9807530;8319110;7019320;7056320;7219385;7228010;5369000;5829679;5839410;6023100;5890410;5874410;5968278;5660426;5269000;6378738;6112643;5596000 -5203;'021;Northern America;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1388390;1473390;1439390;1646890;1680390;1911749;1680469;2008938;1785878;1655477;1751437;1897346;1542206;1186871;1239288;888843;1255482;923152;1094040;1875892;1797708;1843269;1921719;1832658;1894090;1942646;2049872;1745165;1445073 -5203;'021;Northern America;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;285188;203186;199614;313650;307091;337041;288729;297636;300862;329653;306650;316914;311733;271848;201787;232783;228553;271042;308493;355698;354948;385911;432588.45;416568;460490;430967;510246;585152;498778 -5203;'021;Northern America;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1626799;1506000;1705000;1597300;1496000;1581888;1692694;1780542;1755738;1600000;1413000;1121609;1152957;1003343;814000;439568;773454;1076000;1167413;1201027;1061961;1284125;1162124;2594231;1270761;1122015;1241247;1192449;1053367 -5203;'021;Northern America;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;312160;276573;316513;289645;289501;329605;341283;319503;314850;319405;296362;281209;309893;281927;219093;249570;243538;295391;329737;373499;366981;369056;362044.41;356672;386831;342576;433384;496976;429772 -5203;'021;Northern America;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12598000;13942000;15255000;16210107;17970816;19753112;19027820;20243000;22371000;22609000;24812000;25101000;25126000;19221000;14741990;13537615;14445990;15512000;17323420;18389080;18829455;19323184;20082647;20817910;21489000;20329000;21040710;20861910;19782000 -5203;'021;Northern America;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3111000;4746000;5812000;5810700;6636000;6864705;7279007;7640675;8159080;8933112;9472000;9136000;6126193;3325540;2509901;2586135;2675343;3048000;3562026;4116004;4667000;5198955;5717238;5797504;5567977;5197294;6252849;6275530;5794529 -5203;'021;Northern America;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;584258;729131;753762;1053634;1514324;1302880;1044631;1110461;2020620;2912265;2735747;1981804;1055407;616413;442382;642175;559281;805334;1140554;972166;976108;1265085;1490620.85;1664508;1109800;1761436;4123140;3272920;1926130 -5203;'021;Northern America;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3172340;4275000;5017000;6041300;6887000;7090898;7455836;7650155;8065484;8728000;8926000;9083239;6756043;3940657;2829100;2972258;3367516;3611000;4167418;4679274;5025470;5748819;6101754;6464947;5886948;5455705;5891983;5965967;5638758 -5203;'021;Northern America;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;611190;716589;700801;1145913;1620783;1405472;1130394;1169506;2006580;2951249;2678400;2042073;1258242;784007;526488;776830;723638;959827;1326445;1117578;1073993;1378662;1592971.14;1805539;1221376;1843019;3910417;3162716;1937135 -5203;'021;Northern America;1874;Fibreboard;5516;Production;m3;1916200;2039100;2182100;2365800;2442200;6096600;6182600;7002300;7289000;6755200;7875200;8464700;8659000;7549000;6999800;8100000;8139000;8065000;8054000;6729000;6578000;4667000;6095000;6335000;7080000;7145000;7320000;7168000;7511000;7212000;7077000;7471000;7356000;7681000;7225000;7309000;7318000;8244918;8717682;8822719;7755417;8361953;8670000;9585410;9630896;9880066;9062530;8155390;9850404;9079350;8431753;8991000;9088514;9198350;9284350;9312350;8770321;7907991;8170416;7348311;7763163;7413752;6767383 -5203;'021;Northern America;1874;Fibreboard;5616;Import quantity;m3;122700;154200;202700;218800;254200;229113;218775;373724;447516;319385;381703;596234;649142;528993;226905;316520;447100;590300;423100;309000;367800;323800;510900;528400;586800;687600;596000;634400;528600;586900;453000;451139;549133;883089;678512;892612;1077712;1326112;1833132;2510566;2481535;2929632;3216745;3871586;4006956;4113158;3744414;2694003;2124433;2769723;2644796;2610995;2221029;2594529;2645083;3047490;3562243;4127200;3597650;3648561;4010073;4107762;3018977 -5203;'021;Northern America;1874;Fibreboard;5622;Import value;1000 USD;11989;15064;20208;21117;25225;20556;18735;23341;25549;19773;25006;41207;51849;49762;26950;37496;48016;79489;59983;51181;67551;52353;97256;94096;98876;113433;126881;131552;137464;126240;107644;125485;185101;249718;183759;224698;300212;356005;493114;634660;821580;957224;1121253;1551978;1756433;1766537;1614289;1306999;1209177;1156053;1131423;1280382;1410730;1535010;1548437;1608345;1700372.02;1601347;1513005;1557464;1960152;2766009;1694193 -5203;'021;Northern America;1874;Fibreboard;5916;Export quantity;m3;41300;41300;54200;65700;79000;170244;151824;190842;234337;186931;224319;262878;305179;278856;217750;243300;259500;270200;257600;292400;420900;330500;410000;448200;455600;566800;571400;652900;753600;667200;694000;878350;877600;1058700;1090800;1115000;1344300;1330900;1632760;1531066;1935098;1885676;2117800;2178624;2161000;2236114;2173230;1823931;1527298;1502010;1557512;1648100;1449408;1395473;1440974;1537291;1388920;1656818;1653866;1522474;1607584;1749869;1483682 -5203;'021;Northern America;1874;Fibreboard;5922;Export value;1000 USD;6927;7353;9402;11327;13686;13756;12369;14796;18256;16980;18773;25127;33958;40321;30669;37246;39153;30925;32663;39397;50163;42350;53859;62641;73129;79464;99732;130934;147482;161580;160659;194246;210841;264616;293355;284405;319817;365400;439892;428878;449906;487369;520928;655227;697975;686592;665007;600470;671188;497645;494235;511911;498450;509822;509649;509817;516750.03;570337;563794;533898;673550;845450;664032 -5203;'021;Northern America;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1612000;1812000;1670000;1376916;1360682;1378719;1153017;1047053;1469370;1290480;1416296;1402296;1113000;941000;816233;893000;204000;457000;457000;472000;474000;480000;433700;406000;372255;301738;301738;301738;301738 -5203;'021;Northern America;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;335000;418600;459200;341000;406698;506608;782801;1225571;1253159;1499000;1761000;1781990;1417923;877766;466809;490744;353888;349014;364269;300760;252067;354077;362046;346920;264609;304598;311139;301645;187722 -5203;'021;Northern America;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;114782;149103;173575;117120;121639;131704;368897;555189;662837;943277;1129613;1118340;828573;541167;436345;307389;277616;267103;248753;201508;131240;158432;224581.77;199376;164529;191074;211875;246586;146908 -5203;'021;Northern America;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;542700;632000;666300;376300;403000;434766;576326;513433;774044;691000;758000;839756;787474;580981;423000;365287;294281;278000;261502;183156;153427;218949;245533;301875;311324;331240;366738;333451;160293 -5203;'021;Northern America;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;157827;173693;177878;108253;118138;123932;166850;205142;227555;292063;323153;301905;303179;247420;208089;176558;131158;111914;97701;71440;60089;90157;137758.03;126402;125309;138328;184430;193502;97771 -5203;'021;Northern America;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2093000;2272000;2691000;3192002;3681000;3768000;3842400;4134900;4020630;5109930;5029600;5292770;4764530;4029390;4157821;3310000;3351403;3658000;3755164;3850000;3934000;3956000;4026621;4222563;4518733;3767145;4181997;3832586;3186217 -5203;'021;Northern America;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;191200;318000;468000;785900;1165121;1708596;1315000;1347000;1571878;1929664;1724944;1626207;1394468;1126207;1256615;1916970;1879399;1714172;1434111;1876036;2045403;2420004;2935290;3344039;2994053;3029158;3331685;3487599;2606331 -5203;'021;Northern America;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50088;55293;106890;203663;323337;447809;385724;332312;375337;491985;482557;476349;549177;592427;667920;746660;746180;872028;1046690;1186920;1306431;1357871;1400672.92;1306683;1268134;1303013;1670883;2417646;1475004 -5203;'021;Northern America;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;324300;271000;466000;723000;978000;988923;1025440;1009200;1063884;1216624;1155000;1142977;817756;817950;873298;925723;987555;1014900;873549;912127;998345;1035154;929849;1085856;1087540;912140;952424;1013745;1005561 -5203;'021;Northern America;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94164;74339;105921;186197;253566;267987;225782;222389;245768;314057;320176;328318;227786;247662;408414;272275;292303;302382;325010;356343;377834;355369;327826.54;368895;368293;330049;415073;535040;477412 -5203;'021;Northern America;1650;Other fibreboard;5516;Production;m3;1131800;1139000;1198100;1280500;1301600;4916600;5005200;5588200;5719200;5154800;6006200;6374400;6452800;5413500;5104800;5877000;5818000;5826000;5821000;3908000;3673000;2166000;2681000;2986000;3735000;3853000;3946000;3815000;3955000;3643000;3540000;3648000;3433000;3550000;3520000;3225000;2957000;3676000;3676000;3676000;2760000;3180000;3180000;3185000;3185000;3185000;3185000;3185000;4876350;4876350;4876350;4876000;4876350;4876350;4876350;4876350;4310000;3279428;3279428;3279428;3279428;3279428;3279428 -5203;'021;Northern America;1650;Other fibreboard;5616;Import quantity;m3;14500;8000;10800;16900;15600;26200;20600;140800;206800;152800;147200;228000;272800;278800;98000;129800;207400;262200;114400;99500;133200;154900;190300;237500;314600;378300;277300;365500;213500;300300;113000;133038;132035;136012;152312;156012;150512;199212;261313;295362;383734;357061;391708;442922;521012;704961;932023;690030;401009;362009;411509;547809;422649;417733;347613;273409;264907;436241;338988;314805;367249;318518;224924 -5203;'021;Northern America;1650;Other fibreboard;5622;Import value;1000 USD;1713;1072;1618;2138;1907;1927;1537;3498;5029;4830;4849;8988;12339;12350;7087;8419;10221;16679;8780;7504;11658;12855;22868;25703;28707;34020;31374;44915;35252;30731;19826;19091;14208;16606;18889;20302;19747;35222;48138;55147;66959;69723;83079;116716;144263;171848;236539;173405;104912;102004;107627;141251;115287;146582;110766;92042;75117.33;95288;80342;63377;77394;101777;72281 -5203;'021;Northern America;1650;Other fibreboard;5916;Export quantity;m3;24900;24900;31400;37600;29100;135600;113600;132400;172000;112800;154400;160000;184400;178400;138900;160600;185600;223900;210600;228000;338000;264800;323000;352300;355000;475300;421700;477800;557000;364900;362000;205122;228000;228000;223800;212000;212000;231600;251760;107377;333332;363043;279872;271000;248000;253381;568000;425000;231000;211000;275676;355200;314357;300190;289202;283188;213538;269087;255002;279094;288422;402673;317828 -5203;'021;Northern America;1650;Other fibreboard;5922;Export value;1000 USD;4811;5032;6006;6805;5834;8009;6772;7039;9620;5948;8435;8524;10994;15061;11573;13625;14552;18238;18340;19857;23585;21332;24549;28917;30782;40685;35423;49597;66009;76436;67734;40747;41304;43786;41364;36373;36018;70950;68188;36959;57274;59838;47605;49107;54646;56369;134042;105388;54685;48812;70774;97615;75739;82039;71726;64291;51165.46;75040;70192;65521;74047;116908;88849 -5203;'021;Northern America;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;784400;900100;984000;1085300;1140600;1180000;1177400;1414100;1569800;1600400;1869000;2090300;2206200;2135500;1895000;2223000;2321000;2239000;2233000;2821000;2905000;2501000;3414000;3349000;3345000;3292000;3374000;3353000;3556000;3569000;3537000;3823000;3923000;4131000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5203;'021;Northern America;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;108200;146200;191900;201900;238600;202913;198175;232924;240716;166585;234503;368234;376342;250193;128905;186720;239700;328100;308700;209500;234600;168900;320600;290900;272200;309300;318700;268900;315100;286600;340000;318101;417098;747077;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5203;'021;Northern America;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;10276;13992;18590;18979;23318;18629;17198;19843;20520;14943;20157;32219;39510;37412;19863;29077;37795;62810;51203;43677;55893;39498;74388;68393;70169;79413;95507;86637;102212;95509;87818;106394;170893;233112;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5203;'021;Northern America;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;16400;16400;22800;28100;49900;34644;38224;58442;62337;74131;69919;102878;120779;100456;78850;82700;73900;46300;47000;64400;82900;65700;87000;95900;100600;91500;149700;175100;196600;302300;332000;673228;649600;830700;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5203;'021;Northern America;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;2116;2321;3396;4522;7852;5747;5597;7757;8636;11032;10338;16603;22964;25260;19096;23621;24601;12687;14323;19540;26578;21018;29310;33724;42347;38779;64309;81337;81473;85144;92925;153499;169537;220830;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5203;'021;Northern America;1879;Total fibre furnish;5510;Production;t;40729600;42096400;43837800;47351600;49478200;54297900;54290700;58975900;62125000;64509000;64909000;69160000;73069000;74619000;62987000;71884000;74061000;77224000;78662000;82398008;82902016;77376008;83639008;89298008;87557000;93492016;98192016;102073016;105493008;106941008;110832008;112799016;114707000;128135000;126545000;124865000;127268000;126136046;126517000;129666803;122007541;122933563;124278709;126815497;127272083;126008155;128013472;122959753;114767272;119130039;119495622;115806830;113652219;114694078;114903587;115639150;115014466;118883107;114751806;108805130;110652000;109113859;103525582 -5203;'021;Northern America;1879;Total fibre furnish;5610;Import quantity;t;281100;297800;307400;318600;332400;305900;271400;2952400;3407100;3119000;3167800;3509900;3758700;3855600;2915700;3626800;3805000;4203500;4555800;4116000;4122800;3728600;4205400;4837400;4725300;4957500;5391900;5184400;5155500;5160700;5185300;5548040;6334153;7241013;8239013;7035013;8366213;8388713;8887413;9861518;9382067;9552616;9273949;9261754;9159357;9081352;9136444;8324888;6380935;7429792;7283663;6854492;7139880.35;7301865.35;7015271;7385913;7325662;7955234;7213779;7361458;8085038;8707941;7732826 -5203;'021;Northern America;1879;Total fibre furnish;5622;Import value;1000 USD;22655;22800;22401;24974;27044;26174;26066;385392;453856;452553;458894;483482;656110;1084115;1033624;1198197;1181150;1159421;1525573;1702967;1769466;1522964;1530273;1985570;1645455;1694704;2217286;2757796;3204461;3132577;2385623;2451060;2232993;2767627;4522608;3009652;2999023;2709540;2900066;3785801;2914421;2704294;2935142;3291368;3410690;3466446;4092192;4333947;2623864;4057982;4034854;3364504;3465280;3753693;3553746;3168894;3358628.93;3981906;3624145;3114419;4240503;5197256;4164364 -5203;'021;Northern America;1879;Total fibre furnish;5910;Export quantity;t;220800;241500;232900;263500;340300;284400;245600;5337600;6182600;7377100;6633000;7131600;7909100;9439000;7531633;8976500;9244500;9695800;11038100;12368200;11384700;10700100;12921200;13175385;14382400;14957100;16196600;20339900;18987300;20025300;19951200;20807601;20169344;23149900;24417000;22599000;24306300;23484000;24927204;27763524;26524004;28317136;29806444;30677405;31791017;33628431;35998547;35701900;35499981;37287836;40583726;39002245;37513611;37390304;38367166;38942034;37469412;37344710;34431775;31565338;32980934;32306688;28942877 -5203;'021;Northern America;1879;Total fibre furnish;5922;Export value;1000 USD;15797;17055;16300;17557;31526;30082;25723;665621;799364;1035589;942952;1016102;1347612;2533318;2480831;2816886;2731669;2564019;3612472;4855841;4676458;3951148;3811539;4593954;3876077;4691606;6579203;8357523;9599120;8650981;7273318;7538136;6084119;7895645;12722459;8486090;8337453;7449049;8176171;10793790;7981109;7978515;8668816;9736109;10011668;11121035;13185112;13837018;10602918;14941160;16029563;14208699;14057075;14240954;13539599;12881586;13892136.79;15474048;13109043;11521532;14294844;15995422;13151663 -5203;'021;Northern America;1878;Pulp for paper;5510;Production;t;32325600;33692400;35910800;39022600;41149200;44845900;45072700;49209900;52316000;52576000;52624000;56078000;58644000;59779000;50660000;57186000;58462000;61368000;63750000;65241008;65975016;61122008;65863008;69877008;68336000;72386008;75780016;77662008;78886000;79236000;81155000;80842008;80137000;89424000;85351000;82871000;84474000;82409535;82790000;83672803;77934144;78475583;78544714;80038954;79514336;76555122;77401637;72648853;65527972;68826939;68241622;66708530;65477100;65695770;65093940;65312200;64687516;68396107;67175806;63851130;62898000;61531859;59620582 -5203;'021;Northern America;1878;Pulp for paper;5610;Import quantity;t;281100;297800;307400;318600;332400;305900;271400;2952400;3407100;2978000;2969800;3255900;3517700;3581900;2711800;3270600;3392500;3522100;3856500;3528000;3562900;3245000;3644500;4085300;4068800;4150400;4489300;4418300;4539300;4470700;4561400;4699709;5106593;5394000;5661000;5361000;5973200;5690500;6296400;6829125;6912675;6850387;6561665;6377002;6452589;6598031;6466515;5911463;4765906;5660779;5569598;5162480;5606958.35;5892570.35;5565985;5816385;5628954;5813884;5607934;5904677;6268164;7150028;6263144 -5203;'021;Northern America;1878;Pulp for paper;5622;Import value;1000 USD;22655;22800;22401;24974;27044;26174;26066;385392;453856;444267;446647;468373;635073;1050017;1013006;1158982;1139730;1102472;1445879;1620100;1696778;1465109;1461050;1875803;1555673;1589754;2076899;2594218;3061730;2993513;2265770;2305688;2073437;2516138;4032702;2805384;2738832;2445953;2616200;3385161;2679282;2419189;2646066;2942285;3096193;3186260;3702325;3905922;2432491;3750084;3685333;3096750;3238634;3530559;3355962;2950409;3058316.8;3683027;3418882;2907178;3936840;4901298;3934573 -5203;'021;Northern America;1878;Pulp for paper;5910;Export quantity;t;220800;241500;232900;263500;340300;284400;245600;5337600;6182600;6823100;6125000;6627600;7185100;8075500;6671600;7665900;7721400;8131500;8906400;9838300;9261100;8531000;9428200;9611100;9790600;10916500;11927600;12642500;13119900;12435700;13726400;14698243;14585036;15850700;17389000;16251000;16809300;15556900;16659204;17235744;16575573;17421121;16506041;16830125;16107483;16703135;16646860;16179900;14738162;16608836;17483656;16517245;16492706;16181190;16436620;16612242;16657995;16324318;16246083;15667090;14954024;14996528;13933949 -5203;'021;Northern America;1878;Pulp for paper;5922;Export value;1000 USD;15797;17055;16300;17557;31526;30082;25723;665621;799364;1006292;913090;987107;1292411;2371297;2397243;2681953;2579575;2403446;3339322;4509644;4385842;3682866;3491526;4170684;3515338;4211594;5965948;7628025;8778328;7825390;6513578;6851337;5520548;7292196;11872627;7717886;7508468;6629221;7253036;9507794;7039493;6830158;7217851;8113311;8163072;8909744;10227448;10628689;7845624;11409399;11940687;10504707;10625044;10831414;10206534;9450658;10368647.94;11906293;10214672;8895270;10729118;12452974;10410828 -5203;'021;Northern America;1875;Wood pulp;5510;Production;t;33333200;34842300;37025600;40227600;42374400;46051200;46201500;50569600;53692000;53927000;53913000;57321000;59782000;61035000;51639000;57995000;59391000;62361000;64834000;66132008;66778016;61793008;66881008;70849008;69283000;73439008;76862016;78828008;80059000;80237000;82337000;82111008;81204000;90467000;86295000;83916000;85440000;83367535;83744000;84526911;78790144;79331583;79400714;80894954;80259336;77400122;78246637;73543853;66422972;69841939;69456622;68049530;67108100;67383640;66548210;66571430;66084516;70023456;68861820;65399116;64598000;63217673;61161531 -5203;'021;Northern America;1875;Wood pulp;5610;Import quantity;t;470300;563000;567300;583400;592200;567200;507800;3217000;3679000;3211700;3235600;3444400;3661600;3741700;2851300;3443600;3544500;3734900;4055300;3793600;3823500;3441900;3859300;4238600;4202800;4373600;4606000;4530500;4803100;4671000;4718500;4824669;5189853;5451000;5734000;5422000;6062200;5735900;6328930;6869925;6929427;6840979;6546038;6476208;6544201;6659385;6509850;6026686;4843488;5818374;5772053;5467480;5795613.35;6044831.35;5682736;5901762;5719871;5916474;5699720;6069510;6475785;7385440;6487222 -5203;'021;Northern America;1875;Wood pulp;5622;Import value;1000 USD;55126;69032;68765;73611;76747;74454;70662;435232;503844;488004;494873;505420;668841;1102841;1064600;1221077;1199831;1177485;1518569;1737843;1814150;1553234;1551175;1938488;1607680;1671180;2138264;2674584;3258945;3132210;2362485;2373919;2129048;2556504;4091454;2863963;2804168;2488400;2642957;3429871;2708549;2427420;2664976;3002760;3161584;3260323;3771036;4039049;2530959;3900401;4008256;3445862;3534173;3743853;3520996;3080251;3192900.73;3826395;3571211;3092022;4147103;5153666;4167051 -5203;'021;Northern America;1875;Wood pulp;5910;Export quantity;t;894000;999200;1045900;1154900;1127600;1080900;1085200;6247800;7164300;7871600;7114000;7580600;8038700;8968500;7376800;8412500;8506600;8948000;9728900;10635800;10073800;9182500;10098300;10255500;10439200;11634900;12657300;13420900;13908700;13243000;14523500;15537411;15296176;16611000;18244000;16850000;17349300;16070800;17148000;17695443;16896418;17779323;16820987;17141184;16428483;17098347;17092556;16681900;15318373;17189442;18517682;17825200;17902136;17555426;17667160;17702257;17886767;17584349;17525822;16649252;16000604;16104009;14923436 -5203;'021;Northern America;1875;Wood pulp;5922;Export value;1000 USD;140502;152750;161029;177753;172811;172578;179828;836164;978437;1217637;1119664;1183055;1474524;2681987;2688844;2994688;2906810;2739474;3714297;4939311;4841595;4029743;3831819;4502308;3827722;4582110;6378643;8138275;9382311;8385339;7028592;7373742;5974089;7778394;12495408;8273708;7965705;7052272;7618658;9902787;7300152;7069858;7447307;8353177;8414390;9225415;10604012;11197407;8495149;12170364;13383886;12122488;12254129;12337801;11475017;10595654;11582540.78;13181893;11400645;9728057;11874180;13757502;11486620 -5203;'021;Northern America;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12730217;12832750;12720740;10397683;10186000;9743485;9025685 -5203;'021;Northern America;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83884;167468;132007;133318;152654;247674;131563 -5203;'021;Northern America;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28837.24;61363;56334;51362;55388;134304;60271 -5203;'021;Northern America;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2207669;2241681;2250710;2261861;2190548;2153819;1923671 -5203;'021;Northern America;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1173186.5;1374275;1059363;996590;1088709;1342523;1028796 -5203;'021;Northern America;1654;Mechanical wood pulp (1961-2016);5510;Production;t;8300000;8380200;8500400;9118800;9446800;10085000;9916800;10280400;11062000;10945000;10828000;11243000;11834000;12212000;10214000;11222000;11301000;11809000;11444000;11679000;12457000;11457000;12390000;13798000;13314000;14099000;14787000;15460000;15973000;16309000;16440000;16110000;16175000;16884000;17143000;16348000;16756000;15771674;16331000;17486432;15886441;15865760;16086687;16283990;16182200;15323869;14829132;13682075;11835149;12664101;11524101;11265000;11140000;10101000;9797156;9693300;;;;;;; -5203;'021;Northern America;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;281100;297800;307400;315500;313800;281700;246300;223100;252900;161800;162700;179100;159000;163000;131300;142000;140500;146600;147400;134700;143900;130900;167600;233600;101100;47100;84000;206800;173300;141200;126600;119147;163658;224000;187000;117000;113000;106500;141000;121515;136382;171763;145200;110428;95000;113023;87473;62436;38461;40370;34656;35000;40795;43015;35034;30584;;;;;;; -5203;'021;Northern America;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;22655;22800;22401;24143;24489;22857;22539;17691;17872;11571;12209;12968;14253;24578;22801;23823;26897;29377;35601;33849;37422;32861;43669;70362;28690;13011;29096;75150;69204;61602;59767;51763;57971;88223;70993;39189;35815;36442;46215;47333;44499;48771;44859;36843;32947;44842;39113;31217;14555;20741;17691;17400;16602;17744;14999;11871;;;;;;; -5203;'021;Northern America;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;220800;241500;232900;263500;293400;239500;214600;214500;245500;276700;229400;262700;266400;284500;232000;353000;350300;300400;343100;324100;277100;280500;356200;534700;461600;531700;537700;347000;344500;320600;307300;326000;376000;415000;439000;379000;385300;296400;426000;391062;377402;344524;332304;275000;190000;132810;138892;183000;279514;157737;132247;68000;62074;89405;118604;125967;;;;;;; -5203;'021;Northern America;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;15797;17055;16300;17557;19840;16717;14396;13732;15505;18318;15791;17393;20561;36184;43976;69419;68060;52745;70902;72839;66887;71212;89482;157896;132079;153633;187832;119252;130150;122545;135196;121411;128476;152700;177078;117834;137912;94416;132029;141055;126320;109399;108656;85707;64112;53541;63667;102422;133906;88072;60632;31383;28500;43404;53728;51296;;;;;;; -5203;'021;Northern America;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;2251900;2434000;2525600;2635400;2889500;2996500;3082000;3389200;3544000;3286000;3452000;3772000;3854000;3738000;3137000;3513000;3525000;3949000;4549000;3994000;3894000;3608000;3799000;4051000;3941000;4071000;4205000;4288000;4538000;4478000;4344000;4232000;4074000;4472000;3965000;3878000;4072000;4088948;4194000;4149897;3703989;3744385;3553914;3794617;4000019;3617034;4008532;3827755;3551770;3601619;3774457;4000490;3993000;3787000;3727014;3669131;;;;;;; -5203;'021;Northern America;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;157500;174000;165100;179300;247183;233000;209000;238000;299200;258200;296400;336077;280092;221941;216337;225366;288000;158901;164892;217000;279681;402025;342998;272000;240077;245568;169736;82665;;;;;;; -5203;'021;Northern America;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;73105;80112;58465;64732;82140;82173;106905;102776;118944;91445;100442;144393;105955;81687;84417;90026;109615;71072;83517;123208;129158;214747;185770;133818;111226;94308;76471;29961;;;;;;; -5203;'021;Northern America;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;900;1000;;1600;;;;;8700;500;;;;;;;;;;;18700;335100;613800;651900;643400;893084;991000;1209000;1338000;1447000;1537000;1604100;1745000;1781166;1491159;1923629;2167822;2377000;1960000;2002505;1988169;2017000;1977081;2621718;2287252;2608000;2346411;2240834;2184470;2039057;;;;;;; -5203;'021;Northern America;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;394;438;;700;;;;;3808;219;;;;;;;;;;;9112;151757;278358;275635;231813;318038;309633;471181;821983;525712;523561;538241;653363;891459;585767;736840;907685;1040472;898954;1017084;1110541;1276213;1003505;1636158;1314892;1412183;1278081;1203957;1001586;869911;;;;;;; -5203;'021;Northern America;1656;Chemical wood pulp;5510;Production;t;21358700;22443200;24364800;26743400;28262900;31194400;31493900;34950300;37110000;37735000;37724000;40433000;42316000;43189000;36626000;41729000;43026000;44968000;47113000;48778008;48914016;45517008;49331008;51685008;50738000;53906008;56438016;57574008;57982000;58056000;60091000;60273008;59678000;67791000;63963000;62354000;63367000;62261913;61980000;61751474;58058714;58580438;58619113;59675347;59047117;57329219;58278973;54854023;49856053;52276219;52658064;51158040;50059100;51448000;51210000;51589999;51597299;55355152;54269066;53264100;52564000;51652374;50464374 -5203;'021;Northern America;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;2696700;3127500;2792000;2777300;3048400;3315200;3361900;2553700;3092600;3189700;3325000;3665000;3365000;3391300;3083200;3460800;3800100;3889900;4047100;4304500;4078600;4192800;4139500;4258600;4383666;4684362;4917000;5238000;4969000;5526000;5290600;5835000;6341268;6446398;6402395;6147764;5981477;6003589;6263677;6137077;5558027;4389335;5169311;5145821;4831480;5311648.35;5588194.35;5336760;5678492;5517488;5616816;5433259;5753560;6076010;6854460;6096499 -5203;'021;Northern America;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;363669;432041;428815;429516;450967;614477;1011781;980134;1123299;1097372;1056823;1393262;1572243;1644713;1418997;1408460;1775997;1494987;1549769;2002597;2455941;2905798;2837845;2139589;2174925;1925271;2332412;3836857;2641143;2567100;2307225;2452858;3171618;2504289;2264845;2493344;2783036;2920008;3042334;3539438;3700250;2253364;3475927;3438354;2924681;3099357;3406191;3249653;2891226;3002970.07;3596038;3335911;2829867;3855004;4733434;3846782 -5203;'021;Northern America;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;5089900;5903000;6502800;5856300;6315100;6896000;7726000;6379900;7249000;7304300;7750800;8444100;9379500;8864300;8155600;8978700;8999400;9231700;10242000;11206400;11735100;11967400;11319900;12663800;13362460;13102843;14126000;15496000;14302000;14712000;13521900;14323000;14864242;14450766;14973592;13864699;14053184;13794483;14425536;14382493;13848900;12380276;13704694;14895726;13734200;14002148;13745217;14036194;14339731;14316038;13944354;13877694;13287841;12644846;12735060;11921690 -5203;'021;Northern America;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;640998;773073;974478;885046;955851;1252494;2296646;2316378;2575908;2471712;2302714;3193841;4344198;4233760;3539328;3332239;3949244;3311457;3985461;5677927;7214936;8220379;7303523;6045983;6312174;4998057;6581885;10760851;6965660;6710004;5869811;6321627;8313980;6154898;5845510;6085739;6875163;7056974;7693751;8897766;9087231;6597562;9531901;10349737;8895601;9196544;9450349;9034903;8406304;9051800.06;10387040;9032810;7780227;9538994;10987046;9285801 -5203;'021;Northern America;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;9483000;9854900;11433500;12626400;14197600;15441200;15576100;17145600;17778000;17987000;17865000;17789000;18412000;18130000;15256000;17696000;18369000;18603000;19584000;19780000;20161008;17626000;19299008;20327008;19842000;20112000;20967008;21166008;20988000;21280000;21427000;21493008;20854000;24838000;22813000;22342000;22525000;20628698;20788000;20556216;19322806;19403576;19341062;19822515;19703762;19305559;19738610;18553379;17259297;17660442;17569109;16866000;16804000;19903000;19988000;20190737;21078285;22659892;22772000;23737000;24641000;24673000;24087000 -5203;'021;Northern America;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;273700;310200;277000;266400;324400;334000;310000;154300;225600;221900;181300;152400;130200;150200;120300;184300;179200;165700;151200;240900;150800;78700;85500;101700;73276;107163;163400;133000;140000;209000;180000;162000;162008;261531;346690;236562;173945;120000;148271;234988;158800;73034;83150;82920;217000;216349;220243;250141;290027;319527;301341;234276;135908;166061;186568;143336 -5203;'021;Northern America;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;31091;35491;35563;34935;37991;56817;83033;58404;77682;65907;53460;49689;53437;65266;48428;66407;69827;59965;55437;62095;82899;47280;46930;47548;34213;37275;80796;85124;69728;88413;69449;54049;66873;66432;76577;67636;62687;53923;60150;114798;82297;35267;55045;61683;129996;119461;97746;83961;84993;92090.75;100725;99243;72577;109499;116887;79141 -5203;'021;Northern America;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;462300;502000;557500;479000;447100;513100;513200;420800;365000;399000;311600;335100;312800;378600;320600;592100;586500;583100;614000;604900;265700;262100;308400;308700;269324;279488;332000;426000;288000;314000;205300;247000;234214;410570;441721;283060;275000;310000;409754;482202;311000;408976;426756;461536;399800;455341;477026;438263;439756;428161;460500;528476;570832;731393;774601;582353 -5203;'021;Northern America;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;47022;53211;69203;60336;55370;84502;146055;133646;107245;103683;78370;115715;133353;166348;128178;194017;235818;184830;216545;284466;142834;118752;135457;123634;104431;93011;139707;173120;99194;115435;73021;78848;76115;103756;110022;92471;106913;123775;173271;246595;183221;172669;240757;269441;213871;259792;296727;248217;227225;244328.11;343378;295339;286484;490219;540923;359449 -5203;'021;Northern America;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;4903400;5318900;5196400;9042100;8977400;10444200;11000900;13174800;14702000;15039000;15604000;18417000;19646000;20456000;17641000;19925000;20636000;22504000;23696000;25086008;24807008;24727008;26908000;28121000;27699000;30695008;32389008;33214000;33950000;33845000;36161000;36477000;36547000;40669000;38878000;37908000;38651000;39867802;39350000;39599764;37333154;37768475;37869022;38458897;37967083;36738639;37236825;35034784;31512627;33390761;33764001;32862000;31832000;31096000;30804000;30965440;30075415;32240324;31041000;29071000;27472000;26574000;25972000 -5203;'021;Northern America;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;1906900;2277500;2048200;2134300;2337900;2520800;2526800;2069800;2465000;2498000;2701500;2968200;2846400;2838700;2662700;2997600;3202100;3322700;3439900;3587200;3548000;3719100;3700200;3823400;4014956;4241614;4489600;4837000;4533000;5059000;4848500;5384000;5856440;5916701;5774926;5605248;5523296;5601000;5845551;5676793;5167000;4159699;4852815;4831185;4372000;4863541;5127612;4865313;5151363;4914246;5021955;4908383;5337200;5436385;5957368;5600675 -5203;'021;Northern America;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;260356;319372;322779;336826;355658;472206;766136;806433;913232;877750;860743;1134354;1340173;1381218;1224624;1216362;1511548;1267909;1319174;1729975;2148196;2587759;2546145;1894480;1973363;1716672;2118111;3567096;2419779;2365470;2118921;2278317;2930307;2314265;2076607;2292272;2581980;2718335;2837557;3287699;3459125;2127535;3249739;3237456;2648439;2845148;3174413;3062562;2697276;2799153.12;3381779;3117663;2635209;3581879;4374658;3559753 -5203;'021;Northern America;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;3836800;4569000;4985400;4683600;5192900;5619700;6260400;4918600;5702000;5705000;6657000;6861600;8247700;7319200;7242100;7787300;7789700;8061000;8880000;9793300;10661800;10908400;10199600;11599800;12205964;12000778;12994700;14052000;13156000;13727000;12822400;13649000;14159921;13673034;13963264;13040964;13283000;13099000;13632300;13466400;13185700;11646300;12918378;14097019;13037800;13272249;12987594;13291848;13513947;13570846;13169388;13041315;12572361;11721542;11716793;11128088 -5203;'021;Northern America;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;494390;609406;761702;719672;800977;1030245;1851459;1810233;2067451;1977781;1983470;2613631;3831615;3522482;3141356;2891439;3440638;2898043;3482385;5006250;6620000;7597209;6660075;5512423;5774380;4553292;6061260;9976162;6494402;6316914;5584572;6066257;7999967;5884634;5521575;5778034;6550021;6723897;7314742;8379204;8659145;6237555;9037780;9868296;8500481;8782126;9003274;8643301;7985971;8672188.84;9913438;8605284;7349652;8854669;10191559;8704082 -5203;'021;Northern America;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;443599;454936;456066;456100;451000;405374;405374 -5203;'021;Northern America;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;283715;293520;290600;280452;473564;710524;352488 -5203;'021;Northern America;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111726.21;113534;119005;122081;163626;241889;207888 -5203;'021;Northern America;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;317031;314466;307903;144648;191911;243666;211249 -5203;'021;Northern America;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;135283.11;130224;132187;144091;194106;254564;222270 -5203;'021;Northern America;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;514400;461800;462700;3076400;2261000;2416500;2221200;2092500;2229000;2273000;2027000;2043000;2109000;2232000;1767000;2049000;2000000;2103000;2188000;2182000;2173000;1757000;1634000;1674000;1666000;1407000;1477000;1501000;1385000;1280000;874000;674000;674000;665000;678000;576000;678000;562000;662000;499128;358706;363090;347038;314380;300575;214788;216803;208262;166650;188178;183803;168970;169000;0;0;0;;;;;;; -5203;'021;Northern America;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;92100;108300;108300;91000;87200;133200;110000;54500;69000;51100;61200;101200;99100;81800;44800;46300;56500;100600;119500;141500;46400;37700;26500;23200;15532;8064;11600;24000;29000;20000;16900;32000;31668;1234;17411;26359;22857;7589;3216;6227;2227;1043;1042;1263;4480;6598.35;5765.35;1607;1359;;;;;;; -5203;'021;Northern America;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;10655;13099;13969;12332;11480;23413;31070;16943;19393;14762;16874;34441;39127;35506;19573;18397;25266;34724;38809;45657;20751;22110;14716;10146;5869;3194;5340;12059;14874;8954;7092;12865;12929;509;8358;10941;8725;1418;1175;1160;1387;1173;1306;1763;2447;2942;4440;1768;1834;;;;;;; -5203;'021;Northern America;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;126700;146000;193900;124500;101600;112000;160500;110500;102000;88500;101000;138400;131700;97000;108400;61500;70900;69300;71800;74500;73900;72800;58400;33500;41324;21538;31800;62000;65000;42000;49100;64000;75208;23223;54696;164591;144184;54483;33225;53847;17200;8000;12730;12837;21000;18555;20350;13218;23395;;;;;;; -5203;'021;Northern America;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;13388;16415;25651;16811;12803;19099;48918;35252;27865;23868;25062;43297;51630;40213;42232;22519;27128;25925;24150;25437;27953;29830;26449;12656;17173;8321;10882;17461;17202;10439;12017;15681;20708;5981;13676;45808;42695;16549;11964;23982;11499;3044;4701;5134;9159;6116;7850;4455;8702;;;;;;; -5203;'021;Northern America;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;1820700;1865200;1977700;1998500;2826900;2892500;2695700;2537400;2401000;2436000;2228000;2184000;2149000;2371000;1962000;2059000;2021000;1758000;1645000;1730000;1773000;1407000;1490000;1563000;1531000;1692000;1605000;1693000;1659000;1651000;1629000;1629000;1603000;1619000;1594000;1528000;1513000;1203413;1180000;1096366;1044048;1045297;1061991;1079555;1075697;1070233;1086735;1057598;917479;1036838;1141151;1261070;1254100;449000;418000;433822;;;;;;; -5203;'021;Northern America;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;424000;431500;358500;285600;298900;327200;415100;275100;333000;418700;381000;443200;289300;320600;255400;232600;362300;300900;336500;334900;333400;357300;327300;310300;279902;327521;252400;244000;267000;238000;245200;257000;291152;266932;263368;279595;261379;275000;266639;219069;230000;155559;232304;230453;238000;225160;234574;219699;235743;;;;;;; -5203;'021;Northern America;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;61567;64079;56504;45423;45838;62041;131542;98354;112992;138953;125746;174778;139506;162723;126372;107294;169356;132389;136349;164870;204095;248649;230054;187415;161480;168130;128165;172578;136762;104263;111763;107627;161509;123083;103303;122495;129644;146332;143452;135781;157441;89389;169837;137452;143799;131806;129592;101362;107123;;;;;;; -5203;'021;Northern America;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;664100;686000;766000;569200;573500;651200;791900;930000;1080000;1111800;681200;1109000;687300;1069500;484500;537800;552300;518300;676200;733700;733700;724100;753500;721800;845848;801039;767500;956000;793000;629000;445100;363000;394899;343939;513911;376084;351000;331000;350257;380044;335000;317000;346830;324334;275600;256003;260247;292865;362633;;;;;;; -5203;'021;Northern America;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;86198;94041;117922;88227;86701;118648;250214;337247;373347;366380;215812;421198;327600;504717;227562;224264;245660;202659;262381;361774;424149;474588;481542;397270;416190;343433;370036;594108;354862;267216;200201;160841;217190;160527;200237;169426;175534;192753;193774;247985;233366;184294;248663;206866;172090;148510;142498;138930;184406;;;;;;; -5203;'021;Northern America;1667;Dissolving wood pulp;5510;Production;t;1422600;1584900;1634800;1730000;1775200;1775300;1708800;1949700;1976000;1961000;1909000;1873000;1778000;1896000;1662000;1531000;1539000;1635000;1728000;1681000;1513000;1211000;1361000;1315000;1290000;1363000;1432000;1506000;1566000;1394000;1462000;1496000;1277000;1320000;1224000;1336000;1245000;1245000;1239000;1139108;1141000;1141000;1141000;1141000;1030000;1130000;1130000;1180000;1180000;1300000;1500000;1626000;1916000;2047640;1814040;1619000;1757000;1835554;1872014;1737333;1848000;1821814;1671472 -5203;'021;Northern America;1667;Dissolving wood pulp;5610;Import quantity;t;189200;265200;259900;267900;278400;285500;260700;296600;297600;257600;295100;216000;177900;213700;165100;201000;200300;258000;237600;291900;285900;221100;228600;202400;206600;278700;217100;238300;279500;216300;168200;142556;94650;77000;100000;98000;124000;80600;56530;71065;66555;44880;36737;158937;157612;123784;120408;189223;136011;206668;248578;329000;203093;168054;141206;110021;118499;132190;134454;182632;247121;283306;259160 -5203;'021;Northern America;1667;Dissolving wood pulp;5622;Import value;1000 USD;32471;46232;46364;49468;52258;51597;48037;53786;53806;47572;53118;41359;39010;65641;61210;71155;69790;89411;87832;131036;131152;99596;98421;91399;82302;108170;106416;138918;210838;152651;104664;82499;63666;53696;76699;80855;82309;53288;43442;66527;53806;32117;42356;92855;99014;102075;108968;184374;133882;188986;366441;369963;306988;225610;179873;147193;161093.42;168994;178966;210793;236711;285928;259998 -5203;'021;Northern America;1667;Dissolving wood pulp;5910;Export quantity;t;673200;757700;813000;891400;834200;841400;869700;942400;1015800;1090500;1028300;1002800;876300;958000;756200;810000;852000;896800;941700;932200;932400;746400;763400;721400;745900;861200;894500;1003700;983000;950600;909000;955867;826333;861000;971000;722000;715000;648400;654000;658973;577091;537578;456162;436000;484000;537496;583002;633000;681502;705293;1202457;1415000;1491503;1479970;1327892;1197502;1363060;1398314;1397418;1099550;1165210;1215130;1078075 -5203;'021;Northern America;1667;Dissolving wood pulp;5922;Export value;1000 USD;124705;135695;144729;160196;152971;155861;165038;180996;189859;224141;218827;209811;201469;349157;324682;349142;367038;384015;449554;522274;540948;419203;410098;395168;384186;443016;503772;652330;753424;683636;615600;622119;537923;572628;735496;664502;594228;549804;511639;556293;433167;378109;345227;351835;394350;461039;532038;731541;760176;914233;1658625;1783321;1751004;1640091;1384800;1268143;1357554.21;1420578;1308472;951240;1246477;1427933;1172023 -5203;'021;Northern America;1668;Pulp from fibres other than wood;5510;Production;t;415000;435000;520000;525000;550000;570000;580000;590000;600000;610000;620000;630000;640000;640000;683000;722000;610000;642000;644000;790000;710000;540000;343000;343000;343000;310000;350000;340000;393000;393000;280000;227000;210000;277000;280000;291000;279000;287000;285000;285000;285000;285000;285000;285000;285000;285000;285000;285000;285000;285000;285000;285000;285000;359770;359770;359770;360000;208205;186000;189347;148000;136000;130523 -5203;'021;Northern America;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;3100;18600;24200;24300;32000;25700;23900;29300;27500;34000;53900;25600;28000;48300;45200;38800;26300;25300;24200;13800;49100;72600;55500;100400;126100;15700;16000;11100;17596;11390;20000;27000;37000;35000;35200;24000;30265;49803;54288;52364;59731;66000;62430;77073;74000;58429;49073;46123;24000;14438;15793;24455;24644;27582;29600;42668;17799;39500;47894;35082 -5203;'021;Northern America;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;831;2555;3317;3441;3946;3818;3835;4892;4312;5242;12817;9616;9060;9689;14398;15142;13293;13780;11471;8296;28714;30295;26744;45051;58552;13623;13954;7949;14268;8055;13330;17947;22276;16973;10841;16685;21817;24539;23886;23446;32380;33623;28012;40257;51247;35414;38669;43518;20851;11449;12316;14839;17351;26509.49;25626;26637;25949;26448;33560;27520 -5203;'021;Northern America;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;46900;44900;30100;32200;34100;42000;39300;49800;22700;65000;51000;63400;66800;80300;119200;134700;119700;94900;93300;77000;97300;142800;164800;225300;194200;143300;111900;116699;115193;100700;116000;123000;175000;134500;165204;199274;256246;179376;141216;124941;163000;142284;137306;131000;101291;124687;168431;107045;82073;105734;97352;107487;134288;138283;117679;117388;118630;107649;88588 -5203;'021;Northern America;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;11686;13365;10933;10453;10786;12796;12253;13863;19356;38467;33081;36407;39803;47987;74579;92607;85195;72326;69805;63544;71802;72500;91077;142080;149441;123687;100586;99714;84382;86430;112715;108680;136991;126753;146017;161300;172508;138409;115771;111969;143032;145368;155474;162823;110651;153268;215426;165540;121919;133704;116317;123147;143661.38;144978;122499;118453;101415;123405;96231 -5203;'021;Northern America;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57500;49000;41040;33156;17868;18631;27071;28818;18643;12720;17000;3136;13739;27851;36017;43436;33998;29175;20115;19541;17390;57187;136071;256494;165554;157981 -5203;'021;Northern America;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18444;18203;16887;12534;6906;7909;9751;12613;8953;3504;3587;2223;4437;8167;16818;24618;19928;17151;11199;10623.33;7556;27425;18039;39773;52200;14428 -5203;'021;Northern America;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90200;75858;91704;37306;25798;49322;43000;42000;31508;35452;41000;78010;112350;90136;127000;123279;115594;94737;57092;56040;48907;282273;360146;473085;545727;201690 -5203;'021;Northern America;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32310;28810;41708;15663;11428;20379;17734;19734;17109;15449;18528;34547;64014;46591;81390;87906;84148;66748;35623;36546.53;29514;120752;145049;249461;290957;76853 -5203;'021;Northern America;1669;Recovered paper;5510;Production;t;8404000;8404000;7927000;8329000;8329000;9452000;9218000;9766000;9809000;11933000;12285000;13082000;14425000;14840000;12327000;14698000;15599000;15856000;14912000;17157000;16927000;16254000;17776000;19421000;19221000;21106008;22412000;24411008;26607008;27705008;29677008;31957008;34570000;38711000;41194000;41994000;42794000;43726511;43727000;45994000;44073397;44457980;45733995;46776543;47757747;49453033;50611835;50310900;49239300;50303100;51254000;49098300;48175119;48998308;49809647;50326950;50326950;50487000;47576000;44954000;47754000;47582000;43905000 -5203;'021;Northern America;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;141000;198000;254000;241000;273700;203900;356200;412500;681400;699300;588000;559900;483600;560900;752100;656500;807100;902600;766100;616200;690000;623900;848331;1227560;1847013;2578013;1674013;2393013;2698213;2591013;3032393;2469392;2702229;2712284;2884752;2706768;2483321;2669929;2413425;1615029;1769013;1714065;1692012;1532922;1409295;1449286;1569528;1696708;2141350;1605845;1456781;1816874;1557913;1469682 -5203;'021;Northern America;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;8286;12247;15109;21037;34098;20618;39215;41420;56949;79694;82867;72688;57855;69223;109767;89782;104950;140387;163578;142731;139064;119853;145372;159556;251489;489906;204268;260191;263587;283866;400640;235139;285105;289076;349083;314497;280186;389867;428025;191373;307898;349521;267754;226646;223134;197784;218485;300312.14;298879;205263;207241;303663;295958;229791 -5203;'021;Northern America;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;554000;508000;504000;724000;1363500;860033;1310600;1523100;1564300;2131700;2529900;2123600;2169100;3493000;3564285;4591800;4040600;4269000;7697400;5867400;7589600;6224800;6109358;5584308;7299200;7028000;6348000;7497000;7927100;8268000;10527780;9948431;10896015;13300403;13847280;15683534;16925296;19351687;19522000;20761819;20679000;23100070;22485000;21020905;21209114;21930546;22329792;20811417;21020392;18185692;15898248;18026910;17310160;15008928 -5203;'021;Northern America;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;29297;29862;28995;55201;162021;83588;134933;152094;160573;273150;346197;290616;268282;320013;423270;360739;480012;613255;729498;820792;825591;759740;686799;563571;603449;849832;768204;828985;819828;923135;1285996;941616;1148357;1450965;1622798;1848596;2211291;2957664;3208329;2757294;3531761;4088876;3703992;3432031;3409540;3333065;3430928;3523488.86;3567755;2894371;2626262;3565726;3542448;2740835 -5203;'021;Northern America;1876;Paper and paperboard;5510;Production;t;38733096;40347800;41905204;44739000;47624504;51268196;50820996;54514696;58168008;57058008;58115008;62795000;65549000;65758008;55315008;63548008;65498000;68440000;70896008;70229000;71502008;67573000;72423000;76854000;75673008;79969008;83842008;86492000;86335016;88697000;89549008;92011016;95073008;99559000;104505000;102610000;107630000;105344000;108950000;107173159;101082828;101952072;100676166;102546368;103195335;102505937;101282965;95967382;84178455;88527845;88487822;85248000;82906298;83868000;82697000;81813239;82002539;81033067;77611836;74894400;76701280;74501564;68812776 -5203;'021;Northern America;1876;Paper and paperboard;5610;Import quantity;t;5243200;5268600;5187100;5705900;6065200;6763600;6401100;6266400;6629600;6538100;6918500;7201400;7613400;7747100;6305900;7116500;7201400;8393500;8219900;8313600;7772800;7537700;8434200;10381000;10973300;11622000;12494400;12785600;12755200;12646900;11569300;12027482;12538059;13744757;14359757;14940757;16910757;16712847;18216505;20089551;19161035;18766836;19505375;21223056;20502394;19419630;17288545;16194929;12891986;12585622;11747592;11832279;12403499;12664150;12181209;12123807;11852417;12086678;11160187;9960263;10673959.85;11294840;9160863 -5203;'021;Northern America;1876;Paper and paperboard;5622;Import value;1000 USD;760570;773047;762275;839880;884249;1004835;980388;987549;1059469;1070222;1140138;1234097;1429697;1840026;1861399;2263735;2473514;2973612;3336438;3537605;3668363;4611757;4072178;5504953;5851391;6091992;7015939;8310280;8801710;8824258;7811308;8136689;8427193;8726676;11827306;13083993;13920120;11906253;12491008;13968761;13363419;12467567;12962371;14385892;15076247;15804458;14561612;14934915;11429784;11581247;11558942;11847973;12169831;12426831;11770384;10828174;10653493.66;11549253;11026696;9413910;10771079.22;13954814;11610907 -5203;'021;Northern America;1876;Paper and paperboard;5910;Export quantity;t;6839900;6737800;6971100;7875900;8412000;9222100;9069900;9538800;10427900;10497600;10577100;10984400;11258300;12260200;9720800;10939200;11237800;11061600;12335600;13741600;13149100;11941000;12845500;13288200;13378000;14558400;15455100;16104900;16329900;17262600;18317200;19372975;19683445;21281148;22392148;23727148;24771048;23300848;23032148;24751761;22701122;23470138;23610719;25154856;25093997;23844467;23150275;22419115;18626990;19763543;20514183;19984787;20355328;20478525;19226414;18334744;18817352;19063855;17267515;16275801;16345374;16265797;14577698 -5203;'021;Northern America;1876;Paper and paperboard;5922;Export value;1000 USD;975934;957724;987065;1118731;1183308;1326885;1343517;1450153;1618893;1706995;1774096;1920818;2231488;3278118;3081010;3548977;3755097;4162658;4728798;5899886;6285502;5689243;5717466;6389828;6350981;6927519;8032747;9767317;9997750;10707045;11350979;11484652;11311393;12045849;16689810;16474679;16074762;15459834;14889552;16648829;15564971;14774530;14878325;16536498;17658389;17881339;17757921;18478057;15332032;15559565;16191366;16428770;16684724;16610925;15143151;13972098;14962199.69;16235422;14381711;12549523;14025901;16250201;13681361 -5203;'021;Northern America;2042;Graphic papers;5510;Production;t;14831800;15240100;15678100;16770100;17758300;19620000;19452500;20384100;21745000;21644000;21616000;23095000;24488000;24895000;20745000;23998000;25074000;26479000;27511000;28203000;29088000;28069000;30304000;32334000;32523000;34424000;36216000;37898000;37710008;38761000;38619000;39203008;41289008;43422000;43501000;42560000;45046000;42964000;44618000;45193159;41195607;40951792;40373976;41706892;40418627;39065228;38539606;35289291;28052220;30226000;28080116;26198000;25376577;24343000;22735000;22227388;20772341;19031932;16908648;12725000;12709040;12674366;10248743 -5203;'021;Northern America;2042;Graphic papers;5610;Import quantity;t;5004700;5021800;4968000;5487900;5848400;6492000;6170600;6022400;6408900;6313500;6609500;6793200;7122500;7212800;5783100;6597500;6725400;7769000;7597600;7568600;7277300;6981300;7664200;9420200;10000800;10379500;11067500;11174100;10265800;10005200;9715400;10076864;10474423;11239223;11570223;11082223;12016823;12541413;13324113;13916472;13371912;13728781;14831485;15770132;15236235;14490891;12940377;11672134;8855743;8667281;8237632;7745043;7975508;7971873;7335464;6827451;6482610;6617812;5978978;4654556;5088000;5643127;3770780 -5203;'021;Northern America;2042;Graphic papers;5622;Import value;1000 USD;700111;710056;704606;771352;812700;921780;903352;902806;996442;1001087;1062068;1130974;1282605;1619515;1604400;2000219;2201013;2624903;2950528;3088085;3340569;4281944;3612770;4746429;5046527;5115281;5820491;6835674;6500088;6415406;6322220;6433616;6903749;6925396;9491436;8347489;8196727;8748098;8779965;9871815;9679514;8681001;9232879;10057767;10616889;11147383;9922498;10025843;7278607;7028847;7109989;7082774;7016251;6894758;6181968;5189364;4847482.86;5354651;5147761;3718345;4206913;6107577;4357985 -5203;'021;Northern America;2042;Graphic papers;5910;Export quantity;t;5973900;5816800;5893400;6482600;6817300;7445900;7116300;7179100;7958200;7934600;7712300;8018100;8260500;8777700;7134600;7831200;8107800;8685000;8695700;8797000;9105100;8210800;8623000;9224800;9462800;9914900;10454300;10988400;11040900;11468700;11651000;12555046;13088297;13909000;14180000;13850000;14423000;13530400;13541000;14811720;14003796;14423778;14693653;15287120;15113228;13819529;13659387;13135464;10214413;10598361;10241442;9308000;9598440;9189999;8038433;7420107;7117364;6882997;6119372;5032994;5193345;5068872;4367144 -5203;'021;Northern America;2042;Graphic papers;5922;Export value;1000 USD;793687;761694;761468;847302;870263;985703;991328;1039933;1195929;1251707;1281692;1387362;1555311;2148896;2149485;2464449;2704535;3034458;3251414;3760615;4337067;4010376;4034093;4584904;4699052;5009513;5678103;6857144;6890414;7172931;7534275;7550610;7679672;8019337;10760453;10343409;9686169;9259273;9096494;10163690;9830942;8942669;9049759;9883847;10718219;10416171;10241148;10894323;8037899;8145018;8358986;7790583;7632003;7165606;5943735;5125163;4956175.02;5266399;4709277;3587571;3949984;4778526;4097402 -5203;'021;Northern America;1671;Newsprint;5510;Production;t;7958300;7954400;8046800;8664100;8981000;9868200;9790200;10114000;11158000;11139000;10886000;11396000;11742000;11942000;10358000;11451000;11666000;12230000;12394000;12863000;13699000;12691000;13173000;14043000;13914000;14397000;14960000;15397000;15201000;15070000;15183000;15355000;15584000;15655000;15577000;15318000;15749000;15158000;15717000;15888773;14143572;13703036;13635246;13276537;12661515;11862015;11104233;10186893;7369880;7750000;7345757;6748000;6442251;5939000;5158000;4827000;4250713;3959895;3410053;2400000;2349000;2227401;2057835 -5203;'021;Northern America;1671;Newsprint;5610;Import quantity;t;4956300;4969200;4910400;5401900;5735900;6342100;5986400;5862400;6159800;6019300;6242100;6441600;6722300;6712000;5305000;5959000;5950000;6787000;6552000;6593600;6329600;5924000;6277100;7161100;7685700;7790600;8142800;7794200;7953900;7529300;6796700;6691709;7076730;7160100;7097100;6311100;6521100;6560800;6832100;6880456;6234751;6316858;6409644;5923801;5450391;4973430;4197695;3685599;2471055;2385037;2341482;2144016;2191894;2296319;2035311;1892710;1755753;1552069;1304734;1073367;1080529;1020929;764865 -5203;'021;Northern America;1671;Newsprint;5622;Import value;1000 USD;686521;695751;687756;752531;789604;889592;863795;862675;938626;929626;988042;1056144;1184785;1484156;1456915;1779063;1913894;2140814;2379109;2637857;2824777;3748652;2817193;3369904;3720143;3682352;4116485;4461983;4650760;4459338;3979000;3784208;3781666;3523118;4558942;4068431;3592096;3790520;3538286;3811788;3620967;3063886;3025085;3009924;3116488;3108541;2421413;2420955;1480144;1420413;1507258;1393366;1349025;1362602;1168587;1004148;931534;898419;764812;525324;568818;662574;523605 -5203;'021;Northern America;1671;Newsprint;5910;Export quantity;t;5838500;5677000;5742700;6289700;6599000;7185500;6852500;6902100;7586100;7469600;7224600;7481200;7705300;8062700;6498600;7111800;7382700;7943100;7842800;7865400;8232100;7357100;7742600;8226800;8559900;8946800;9079800;8941500;8808400;9248900;9235300;9624237;9954297;10286000;10175000;9621000;9759000;8491200;8968000;9273836;8478820;8800747;8898699;8264314;7978315;7289365;6715364;6664657;4484392;4994567;5011881;4229000;4456688;4412829;3774809;3407377;3147399;3034831;2625262;2055836;2114571;1973969;1909595 -5203;'021;Northern America;1671;Newsprint;5922;Export value;1000 USD;753123;719440;717761;791590;819809;906430;894973;932684;1057215;1083544;1094430;1188890;1302768;1774861;1765739;2010645;2280934;2590019;2783359;3229783;3747740;3451564;3377051;3809163;4089572;4273239;4757277;5332695;5178197;5361398;5501641;5242052;5208503;5062635;6650232;6290655;5409314;4979048;4758510;5221441;4935278;4363610;4351705;4404167;4725277;4676442;4137165;4626877;2782781;3015627;3346257;2778287;2775222;2684912;2077992;1816201;1675601.89;1865519;1521664;998731;1148970;1448647;1309097 -5203;'021;Northern America;1674;Printing and writing papers;5510;Production;t;6873500;7285700;7631300;8106000;8777300;9751800;9662300;10270100;10587000;10505000;10730000;11699000;12746000;12953000;10387000;12547000;13408000;14249000;15117000;15340000;15389000;15378000;17131000;18291000;18609000;20027000;21256000;22501000;22509008;23691000;23436000;23848008;25705008;27767000;27924000;27242000;29297000;27806000;28901000;29304386;27052035;27248756;26738730;28430355;27757112;27203213;27435373;25102398;20682340;22476000;20734359;19450000;18934326;18404000;17577000;17400388;16521628;15072037;13498595;10325000;10360040;10446965;8190908 -5203;'021;Northern America;1674;Printing and writing papers;5610;Import quantity;t;48400;52600;57600;86000;112500;149900;184200;160000;249100;294200;367400;351600;400200;500800;478100;638500;775400;982000;1045600;975000;947700;1057300;1387100;2259100;2315100;2588900;2924700;3379900;2311900;2475900;2918700;3385155;3397693;4079123;4473123;4771123;5495723;5980613;6492013;7036016;7137161;7411923;8421841;9846331;9785844;9517461;8742682;7986535;6384688;6282244;5896150;5601027;5783614;5675554;5300153;4934741;4726857;5065743;4674244;3581189;4007471;4622198;3005915 -5203;'021;Northern America;1674;Printing and writing papers;5622;Import value;1000 USD;13590;14305;16850;18821;23096;32188;39557;40131;57816;71461;74026;74830;97820;135359;147485;221156;287119;484089;571419;450228;515792;533292;795577;1376525;1326384;1432929;1704006;2373691;1849328;1956068;2343220;2649408;3122083;3402278;4932494;4279058;4604631;4957578;5241679;6060027;6058547;5617115;6207794;7047843;7500401;8038842;7501085;7604888;5798463;5608434;5602731;5689408;5667226;5532156;5013381;4185216;3915948.86;4456232;4382949;3193021;3638095;5445003;3834380 -5203;'021;Northern America;1674;Printing and writing papers;5910;Export quantity;t;135400;139800;150700;192900;218300;260400;263800;277000;372100;465000;487700;536900;555200;715000;636000;719400;725100;741900;852900;931600;873000;853700;880400;998000;902900;968100;1374500;2046900;2232500;2219800;2415700;2930809;3134000;3623000;4005000;4229000;4664000;5039200;4573000;5537884;5524976;5623031;5794954;7022806;7134913;6530164;6944023;6470807;5730021;5603794;5229561;5079000;5141752;4777170;4263624;4012730;3969965;3848166;3494110;2977158;3078774;3094903;2457549 -5203;'021;Northern America;1674;Printing and writing papers;5922;Export value;1000 USD;40564;42254;43707;55712;50454;79273;96355;107249;138714;168163;187262;198472;252543;374035;383746;453804;423601;444439;468055;530832;589327;558812;657042;775741;609480;736274;920826;1524449;1712217;1811533;2032634;2308558;2471169;2956702;4110221;4052754;4276855;4280225;4337984;4942249;4895664;4579059;4698054;5479680;5992942;5739729;6103983;6267446;5255118;5129391;5012729;5012296;4856781;4480694;3865743;3308962;3280573.13;3400880;3187613;2588840;2801014;3329879;2788305 -5203;'021;Northern America;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4453000;4797000;5117329;4916821;5161176;5095495;5633104;5917448;5693714;6031821;5867167;4869915;4745000;4438094;3652000;3790222;3433000;3310000;3227615;2905412;2745302;2261389;1734000;1834600;1903855;1714083 -5203;'021;Northern America;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2398900;2604000;2863676;3021910;3385749;3575872;4082547;3971480;3954714;3970009;3679863;3061551;2797740;2552089;2152828;2341074;2196266;1870151;1745174;1639881;1639959;1362197;1085988;1241369;1277967;871275 -5203;'021;Northern America;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1749626;1876071;2043178;2239452;2223922;2229550;2583688;2749982;2884182;2923134;3021576;2454091;2088386;2059721;1827194;1931646;1782914;1409307;1049198;975858.11;1089848;1010529;743574;820517;1080119;837288 -5203;'021;Northern America;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2221400;2213000;2506277;2621714;2877300;3004074;3603107;3705625;3431807;3689666;3604234;3132227;2832720;2484603;2141000;2304245;2158983;1864611;1651739;1625800;1608035;1335831;1106336;1170423;1236529;911767 -5203;'021;Northern America;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1657921;1643126;1838963;1980600;1999840;1967250;2465099;2757689;2632604;2852762;3145309;2601061;2252857;2100469;1819382;1892560;1737235;1379989;1026929;1009627.44;1145346;1034384;797982;864919;1145080;907498 -5203;'021;Northern America;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13687000;14170000;14091272;12940920;12750433;12589293;12861645;12252675;11991755;11689193;10788630;8979000;9699000;9119031;8847000;8538816;8538000;8486000;8428401;8174511;7365654;6723367;5413000;5426510;5473422;4752030 -5203;'021;Northern America;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1377013;1532013;1513858;1582885;1321511;1555323;1763033;1848920;1633343;1429808;1358135;1136854;1251257;1219438;1235185;1313170;1486610;1330463;1198637;1070055;1125946;1231589;1012990;1150687;1349716;879849 -5203;'021;Northern America;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1120510;1246313;1512035;1516569;1106787;1269008;1394301;1531734;1537726;1462972;1526078;1236140;1392741;1381924;1504799;1501344;1652236;1478611;1270230;1136903.7;1220159;1382197;1077115;1236135;1728609;1228219 -5203;'021;Northern America;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1281500;1266000;1291071;1216778;1160443;1335856;1539037;1698064;1380598;1329757;1305000;1129827;1229285;1290971;1300000;1315773;1205108;1062292;1072425;1091164;1007135;911493;831810;789837;765894;643179 -5203;'021;Northern America;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1191382;1259672;1435335;1373975;1176447;1253258;1394803;1619550;1470987;1507799;1547336;1309466;1479642;1539228;1484569;1399163;1322630;1166752;1138775;1150368.25;1120765;1058679;915994;930800;1031491;912304 -5203;'021;Northern America;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9666000;9934000;10095785;9194294;9337147;9053942;9935606;9586989;9517744;9714359;8446601;6833425;8032000;7177234;6951000;6605288;6433000;5781000;5744372;5441705;4961081;4513839;3178000;3098930;3069688;1724795 -5203;'021;Northern America;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2204700;2356000;2658482;2532366;2704663;3290646;4000751;3965444;3929404;3342865;2948537;2186283;2233247;2124623;2213014;2129370;1992678;2099539;1990930;2016921;2299838;2080458;1482211;1615415;1994515;1254791 -5203;'021;Northern America;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2087442;2119295;2504814;2302526;2286406;2709236;3069854;3218685;3616934;3114979;3057234;2108232;2127307;2161086;2357415;2234236;2097006;2125463;1865788;1803187.05;2146225;1990223;1372332;1581443;2636275;1768873 -5203;'021;Northern America;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1536300;1094000;1740536;1686484;1585288;1455024;1880662;1731224;1717759;1924600;1561573;1467967;1541789;1453987;1638000;1521734;1413079;1336721;1288566;1253001;1232996;1246786;1039012;1118514;1092480;902603 -5203;'021;Northern America;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1430922;1435186;1667951;1541089;1402772;1477546;1619778;1615703;1636138;1743422;1574801;1344591;1396892;1373032;1708345;1565058;1420829;1319002;1143258;1120577.44;1134769;1094550;874864;1005295;1153308;968503 -5203;'021;Northern America;1675;Other paper and paperboard;5510;Production;t;23901296;25107700;26227104;27968900;29866204;31648196;31368496;34130596;36423008;35414008;36499008;39700000;41061000;40863008;34570008;39550008;40424000;41961000;43385008;42026000;42414008;39504000;42119000;44520000;43150008;45545008;47626008;48594000;48625008;49936000;50930008;52808008;53784000;56137000;61004000;60050000;62584000;62380000;64332000;61980000;59887221;61000280;60302190;60839476;62776708;63440709;62743359;60678091;56126235;58301845;60407706;59050000;57529721;59525000;59962000;59585851;61230198;62001135;60703188;62169400;63992240;61827198;58564033 -5203;'021;Northern America;1675;Other paper and paperboard;5610;Import quantity;t;238500;246800;219100;218000;216800;271600;230500;244000;220700;224600;309000;408200;490900;534300;522800;519000;476000;624500;622300;745000;495500;556400;770000;960800;972500;1242500;1426900;1611500;2489400;2641700;1853900;1950618;2063636;2505534;2789534;3858534;4893934;4171434;4892392;6173079;5789123;5038055;4673890;5452924;5266159;4928739;4348168;4522795;4036243;3918341;3509960;4087236;4427991;4692277;4845745;5296356;5369807;5468866;5181209;5305707;5585959.85;5651713;5390083 -5203;'021;Northern America;1675;Other paper and paperboard;5622;Import value;1000 USD;60459;62991;57669;68528;71549;83055;77036;84743;63027;69135;78070;103123;147092;220511;256999;263516;272501;348709;385910;449520;327794;329813;459408;758524;804864;976711;1195448;1474606;2301622;2408852;1489088;1703073;1523444;1801280;2335870;4736504;5723393;3158155;3711043;4096946;3683905;3786566;3729492;4328125;4459358;4657075;4639114;4909072;4151177;4552400;4448953;4765199;5153580;5532073;5588416;5638810;5806010.8;6194602;5878935;5695565;6564166.22;7847237;7252922 -5203;'021;Northern America;1675;Other paper and paperboard;5910;Export quantity;t;866000;921000;1077700;1393300;1594700;1776200;1953600;2359700;2469700;2563000;2864800;2966300;2997800;3482500;2586200;3108000;3130000;2376600;3639900;4944600;4044000;3730200;4222500;4063400;3915200;4643500;5000800;5116500;5289000;5793900;6666200;6817929;6595148;7372148;8212148;9877148;10348048;9770448;9491148;9940041;8697326;9046360;8917066;9867736;9980769;10024938;9490888;9283651;8412577;9165182;10272741;10676787;10756888;11288526;11187981;10914637;11699988;12180858;11148143;11242807;11152029;11196925;10210554 -5203;'021;Northern America;1675;Other paper and paperboard;5922;Export value;1000 USD;182247;196030;225597;271429;313045;341182;352189;410220;422964;455288;492404;533456;676177;1129222;931525;1084528;1050562;1128200;1477384;2139271;1948435;1678867;1683373;1804924;1651929;1918006;2354644;2910173;3107336;3534114;3816704;3934042;3631721;4026512;5929357;6131270;6388593;6200561;5793058;6485139;5734029;5831861;5828566;6652651;6940170;7465168;7516773;7583734;7294133;7414547;7832380;8638187;9052721;9445319;9199416;8846935;10006024.67;10969023;9672434;8961952;10075917;11471675;9583959 -5203;'021;Northern America;1676;Household and sanitary papers;5510;Production;t;2097500;2187300;2334200;2488400;2794400;3020400;3139600;3311800;3531000;3591000;3740000;3891000;3958000;4034000;3851000;4099000;4219000;4180000;4416000;4293000;4442000;4401000;4727000;4864000;4888000;5055000;5257000;5423000;5575000;5731000;5658000;5777000;5992000;6114000;6249000;6286000;6448000;6598000;6876000;6922000;7056125;7178472;7152535;7197957;7462297;7560664;7419959;7309633;7321642;7361000;7336342;7270000;7560209;7427000;7524000;7578300;7675314;7688944;7746561;8404000;8425170;8305109;8246992 -5203;'021;Northern America;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;124800;138100;96000;86400;107200;138000;137000;164000;200000;188100;240000;208279;260406;303039;327054;362167;392980;313825;301369;343217;296875;367085;389721;345087;377938;381839;466955;486660;482754;514463;495875;533027;372020.85;425185;476578 -5203;'021;Northern America;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;130299;143779;100623;81132;95483;122566;147701;163005;180408;166922;218629;213609;254113;291486;295152;307369;362826;326135;339328;408768;372571;438293;464233;441622;492769;499513;617003;600581;585095.16;656109;626957;639907;502559.04;673772;695845 -5203;'021;Northern America;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;16000;35400;32700;34300;26000;34100;39100;35200;34800;28000;56000;71100;82900;99500;85000;50600;65700;88400;109800;106800;121400;107800;82000;117900;133700;158600;163000;188000;180000;180000;198000;194700;212000;224798;256985;274874;245553;268953;281204;293857;287055;284001;274081;314000;283685;285000;266409;268480;341607;294998;327116;340572;306293;260521;265476;270371;265991 -5203;'021;Northern America;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;7089;12664;12585;13055;9719;13169;16035;21792;21806;19700;33616;48944;59962;87757;81806;52483;62636;79877;91556;96507;107876;97952;94732;131212;150517;169757;173577;212051;236825;219454;258475;221805;235464;288177;318766;347897;232731;302368;339985;356383;376451;385065;337989;421547;389376;397851;374051;379067;458109;390692;424456.68;454733;421149;348966;365679;432095;412613 -5203;'021;Northern America;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51469000;52929000;50871000;48670096;49492719;48939248;51027401;50597171;51176805;50905533;48892747;44568120;46694845;49022620;48662000;46932512;50352000;50664000;50248402;51799487;52950506;51482451;51467400;54244350;52214793;49397113 -5203;'021;Northern America;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3141200;3663000;3995514;4827381;4132272;3950719;4642391;4412057;4322869;3677602;3940218;3518510;3312134;2919354;3553122;3885505;4170485;4248851;4675976;4761287;4876380;4625903;4713167;5142931;5152034;4857574 -5203;'021;Northern America;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2357086;2727991;3010875;2948864;3076998;3164129;3748129;3734253;4079679;3975149;4280062;3575218;3899053;3759814;3928616;4312888;4697109;4642305;4732500;4909067.99;5235651;4927426;4732836;5639209.1;6652881;6128254 -5203;'021;Northern America;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8901700;8586000;8923116;8243503;8343913;8284125;9190977;9290705;9289795;8989519;8768602;7981384;8707455;9735191;9953879;10110019;10637765;10418897;10244498;10951495;11387906;10453763;10688387;10574398;10555062;9709773 -5203;'021;Northern America;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5617867;5172155;5722200;5230951;5231780;5343435;6103996;6336126;6775940;6899361;6943972;6771135;6838197;7199060;7786307;8300406;8687498;8338505;8114526;9210679.77;10098905;8871570;8316452;9370738;10657970;8904245 -5203;'021;Northern America;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;19042096;20012800;20817504;22202000;24967904;26973496;26585296;29198696;28843008;28037008;28625008;31312000;32487000;32264008;26807008;31205008;31909000;33278000;34407008;33988000;34421008;31934000;34774000;36767000;35429008;37471008;39322008;39357000;39652008;40201000;41432008;42822008;43530000;45471000;50610000;51545000;53855000;;;;;;;;;;;;;;;;;;;;;;;;;; -5203;'021;Northern America;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;67900;144300;140100;144000;190900;217400;313800;281300;218400;330000;247000;260300;256100;244300;205000;205600;278500;328400;337000;414200;504000;538700;1081400;1185400;1052700;853000;1800600;2059000;2260000;3198000;3650400;;;;;;;;;;;;;;;;;;;;;;;;;; -5203;'021;Northern America;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;;;;;;;13609;27905;26938;28453;34528;43338;72405;93707;70188;107210;88254;97546;102706;123453;115304;117758;154244;190892;197250;225074;282347;334620;804648;878091;995676;784353;1281891;1503655;1923120;3726478;4054054;;;;;;;;;;;;;;;;;;;;;;;;;; -5203;'021;Northern America;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;1439000;2160400;2237500;2342800;2608500;2670200;2675500;3064200;2167600;2623000;2658000;1904900;2909600;4069200;3356500;3095500;3585000;3367100;3067900;3766100;4089000;4440200;4232800;4620500;5240700;5144488;6179000;6953000;7797000;9073000;8979500;;;;;;;;;;;;;;;;;;;;;;;;;; -5203;'021;Northern America;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;228312;317747;334886;358041;395295;426991;526179;894978;705644;823820;786817;849908;1004624;1613131;1484316;1271039;1341016;1423501;1179918;1510491;1865824;2230322;2071867;2557432;2815652;2613626;3052036;3620282;5491730;5675561;4721674;;;;;;;;;;;;;;;;;;;;;;;;;; -5203;'021;Northern America;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30297000;35410000;33916000;32352725;33650870;33188323;34816500;34326860;34823743;33461706;32040489;30725049;32700845;32887598;32838000;33337265;33949000;34445000;34313551;35552980;36941662;35740000;36778000;38441000;36423000;35129000 -5203;'021;Northern America;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1323400;1593000;1749806;1884864;1795989;1589911;1620101;1652511;1760741;1092618;1516750;1381000;1183386;890188;1294012;1473089;1775217;1820860;1851165;2032533;2100625;1973791;2016441;2234791;2108310;2156504 -5203;'021;Northern America;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;631711;761012;891759;861547;856593;796577;880647;914978;1068946;759311;1048360;892117;998946;834403;936866;1141595;1355168;1335096;1185776;1391373.42;1561171;1451144;1404968;1797791;1929383;1856802 -5203;'021;Northern America;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4992200;4651000;4849014;4367327;4264988;4145482;4307959;4588644;4608375;4020366;5191907;4670919;5021802;5483655;5451000;5421778;5928282;5846848;6002374;6506389;6905718;6315124;6753628;6432892;6429950;6272511 -5203;'021;Northern America;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2037954;1746714;2238607;1904408;1795094;1740382;1935909;2128353;2309338;2068962;2838003;3065118;2640915;3097919;3074965;3379477;3673416;3519721;3346612;3986536.11;4842933;4019659;3895778;4479906;5188370;4385600 -5203;'021;Northern America;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7048000;7141000;7124000;6842518;6805686;6832808;6804521;6790821;6854521;8247045;7982845;6057294;9337000;7284927;7045000;7172024;12158000;12024000;11908039;12194392;7418936;7396834;7045000;9204180;7243082;8094411 -5203;'021;Northern America;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;854800;893000;1089561;1588308;938557;947751;1188059;999627;919921;977180;945227;914835;882308;818812;1456006;1514971;1525772;1537817;1628688;1768075;1611352;1530204;1709107;1837100;1970971;1717513 -5203;'021;Northern America;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;579842;650248;728263;692648;659608;695975;801078;737963;801073;941783;960295;888837;913063;895110;2043502;2105792;2250545;2197044;2181924;2346632.06;2231330;2079473;2118111;2393892;2957326;2657210 -5203;'021;Northern America;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1649600;1591000;1477211;1487516;1912739;1907723;1823862;1859487;1943030;1955561;2024149;1849154;2257465;2347220;3127000;3171266;3144380;3158029;2737447;2837842;2789664;2620237;2444390;2545903;2575631;2100634 -5203;'021;Northern America;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1540581;1374936;1229952;1236524;1341469;1613310;1493087;1596579;1759592;1860441;2017133;1909667;2242299;2432874;3413314;3432806;3470846;3428614;3309455;3644011.43;3478193;3218942;2939650;3123520;3512979;2871724 -5203;'021;Northern America;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2508000;2557000;2378000;2241000;1766310;1516279;1600476;1749253;1758325;1678661;1684413;1421774;1611000;3140304;3179000;3241743;1854000;1890000;1741108;1804022;2813861;2681154;1980400;2844330;2745449;2698276 -5203;'021;Northern America;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;679700;851000;846332;1062520;1008692;1037135;1348266;1344918;1264147;1266924;1302241;1067734;1141434;1114588;698099;793749;799914;804359;1101537;858429;1058574;1017628;895504;945049;962026;872300 -5203;'021;Northern America;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;975384;1127613;1207087;1224066;1341238;1458851;1769286;1822172;1945760;2019745;2153433;1697221;1906204;1950403;866092;988306;1032432;1037438;1288823;1086472.51;1358478;1313173;1141625;1339690.1;1647679;1505058 -5203;'021;Northern America;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1073800;1160000;1233233;1088998;1086068;1065947;1580436;1382463;1309647;1323267;1422546;1347161;1329590;1811630;1268079;1413653;1492373;1323666;1353829;1445991;1513843;1376763;1350287;1427801;1352800;1166486 -5203;'021;Northern America;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1210036;1247271;1364785;1251307;1251291;1247507;1724246;1620293;1707717;1779958;2001187;1720744;1881939;1595483;1222305;1417561;1491158;1325904;1360586;1471975.55;1648023;1530846;1389481;1633123;1769454;1507200 -5203;'021;Northern America;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11616000;7821000;7453000;7233853;7269853;7401838;7805904;7730237;7740216;7518121;7185000;6364003;3046000;5709791;5600000;3181480;2391000;2305000;2285704;2248093;5776047;5664463;5664000;3754840;5803262;3475426 -5203;'021;Northern America;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;283300;326000;309815;291689;389034;375922;485965;415001;378060;340880;176000;154941;105006;95766;105005;103696;69582;85815;94586;102250;105829;104280;92115;125991;110727;111257 -5203;'021;Northern America;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;170149;189118;183766;170603;219559;212726;297118;259140;263900;254310;117974;97043;80840;79898;82156;77195;58964;72727;75977;84590;84672;83636;68132;107836;118493;109184 -5203;'021;Northern America;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1186100;1184000;1363658;1299662;1080118;1164973;1478720;1460111;1428743;1690325;130000;114150;98598;92686;107800;103322;72730;90354;150848;161273;178681;141639;140082;167802;196681;170142 -5203;'021;Northern America;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;829296;803234;888856;838712;843926;742236;950754;990901;999293;1190000;87649;75606;73044;72784;75723;70562;52078;64266;97873;108156.68;129756;102123;91543;134189;187167;139721 -5203;'021;Northern America;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;1261900;1296400;1318200;1390700;2103900;1654300;1643600;1620100;4049000;3786000;4134000;4497000;4616000;4565000;3912000;4246000;4296000;4503000;4562000;3745000;3551000;3169000;2618000;2889000;2833000;3019000;3047000;3814000;3398000;4004000;3840000;4209000;4262000;4552000;4145000;2219000;2281000;4313000;4527000;4187000;4161000;4329089;4210407;2614118;4717240;4703240;4417867;4475711;4236473;4246000;4048744;3118000;3037000;1746000;1774000;1759149;1755397;1361685;1474176;2298000;1322720;1307296;919928 -5203;'021;Northern America;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;28500;90600;72200;73200;108700;172900;155000;219400;265200;162000;213000;347000;349500;484300;272300;343700;484100;624700;627400;817300;909600;1056800;1283200;1318200;705200;1010488;155200;308000;392000;496000;1043000;842134;989392;1969286;701336;602744;396117;448366;461122;292045;369197;239360;220858;239122;200885;189027;164548;139953;129939;133720;125766;78023;59431;59513;71008;74494;55931 -5203;'021;Northern America;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;15754;50023;29033;33755;35957;47766;60138;103742;157539;129395;162512;227574;253881;297649;178702;199294;293530;555836;595534;736595;896286;1121948;1366675;1386982;392789;836418;145063;174410;264400;846372;1488282;634147;764423;872462;480928;418082;270211;272627;362279;251261;324637;220242;203388;215054;224906;394961;347923;335451;329108;305729;311847.65;302842;324552;322822;422398.08;520584;428823 -5203;'021;Northern America;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;140000;163900;199500;185900;230300;262000;283200;383100;383800;457000;416000;400600;647400;775900;602500;584100;571800;607900;737500;770600;790400;568500;974200;1055500;1291800;1514830;253000;231000;235000;624000;1170400;674048;693148;792127;196838;427573;387388;407806;408860;441286;214314;231048;157112;143727;253865;437908;380460;382281;427477;375141;421377;452380;388087;293899;312155;371492;234790 -5203;'021;Northern America;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;63745;79809;75493;84192;87390;93296;133963;212452;204075;241008;230129;229348;412798;438383;382313;355345;279721;301546;380455;311008;380944;581899;940737;845470;850535;1150653;406047;194118;200741;236194;1408383;360889;385439;474762;184312;252184;252400;246287;264059;332845;240961;254697;185009;154803;243944;454029;378264;378754;402802;341717;370888.22;415385;379715;296534;339500;381610;267101 -5203;'021;Northern America;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29587305.25;31694949;30238449;30850932;40918692;47652542;36282720 -5203;'021;Northern America;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6378002.53;6499117;6501754;5851646;7347008;8910864;8367312 -5203;'021;Northern America;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1514522.5;1524894;1469332;1474650;2133351;2737566;1756958 -5203;'021;Northern America;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;442643.32;432358;426803;344642;485171;525056;517783 -5203;'021;Northern America;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1062259.75;1064512;1079042;1128347;1671250;2152420;1344263 -5203;'021;Northern America;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;178679.04;151290;136299;131373;161973;156510;140148 -5203;'021;Northern America;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;452262.74;460382;390290;346303;462101;585146;412695 -5203;'021;Northern America;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;263964.28;281068;290504;213269;323198;368546;377635 -5203;'021;Northern America;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;488571.81;504885;530274;476571;547145;685039;679682 -5203;'021;Northern America;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;454952.46;492192;517008;430313;528940;659851;736647 -5203;'021;Northern America;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1287326;1382709;1330242;1212004;1689106;1755628;1298275 -5203;'021;Northern America;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;124089;103903;93335;81626;102797;109770;104439 -5203;'021;Northern America;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2381704.35;2546189;2561600;2748733;3778635;4514534;3695722 -5203;'021;Northern America;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1498500.68;1544154;1603909;1634998;2226961;2576179;2227157 -5203;'021;Northern America;1636;Glue-laminated timber (glulam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;409102;369400 -5203;'021;Northern America;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24434;35508 -5203;'021;Northern America;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47641;55859 -5203;'021;Northern America;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17924;21394 -5203;'021;Northern America;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36715;40871 -5203;'021;Northern America;1688;Cross-laminated timber (CLT or X-lam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50000;50000 -5203;'021;Northern America;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27572;25190 -5203;'021;Northern America;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24888;24540 -5203;'021;Northern America;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39120;22521 -5203;'021;Northern America;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22204;17717 -5203;'021;Northern America;1684;I-beams (I-joists);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;850808;757171 -5203;'021;Northern America;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;233293;222691 -5203;'021;Northern America;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;386626;336459 -5203;'021;Northern America;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;234959;224125 -5203;'021;Northern America;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;409369;351994 -5203;'021;Northern America;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22539959.11;24087700;22739041;23221581;30343556;35340971;26683433 -5203;'021;Northern America;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3319293.43;3340822;3216133;2821140;3312788;4299742;4043162 -5203;'021;Northern America;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126618;129412;157593;126294;182079;246624;267821 -5203;'021;Northern America;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94690;97539;131025;80191;116928;152685;173424 -5203;'021;Northern America;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1248603.49;1519160;1450367;1591099;2244820;2372180;1900829 -5203;'021;Northern America;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;443833.62;488149;513541;458736;573423;587581;564700 -5203;'021;Northern America;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10745688.32;11591618;11299478;11164783;12354827;14708835;13812911 -5203;'021;Northern America;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7919367.3;8164483;8044262;7648622;8527463;9318881;9243720 -5203;'021;Northern America;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82842.69;79867;82008;79966;94352;138491;95364 -5203;'021;Northern America;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71503.52;99577;93306;67537;74839;89415;75096 -5203;'021;Northern America;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1300258.35;1435703;1454390;1348888;1511376;1831021;1648622 -5203;'021;Northern America;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1232557.58;1275443;1311747;1210847;1393711;1511654;1428858 -5203;'021;Northern America;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1989962.31;2111782;2056886;2472693;2170376;2446856;2603175 -5203;'021;Northern America;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1396842.3;1413513;1386320;1441087;1391401;1559194;1756208 -5203;'021;Northern America;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3568198.33;3835134;3697259;3652123;4451724;5122150;4575126 -5203;'021;Northern America;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2819981.89;2915080;2900406;2766775;3195398;3479815;3358353 -5203;'021;Northern America;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3804426.64;4129132;4008935;3611113;4126999;5170317;4890624 -5203;'021;Northern America;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2398482;2460870;2352483;2162376;2472114;2678803;2625205 -5204;'013;Central America;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11468445;12179242;11791470;10102913;13433223.49;15640534.34;13703413.57 -5204;'013;Central America;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4569577;4740235;4667571;4720466;6319925.53;6670149.12;6358044.8 -5204;'013;Central America;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;38005;43437;50175;61992;88713;110835;110108;115353;133035;171171;154092;156417;182376;348379;301021;424216;517180;384836;460203;923865;928105;917769;663713;549690;658440;705741;751652;894018;1007563;1008505;1119204;1684559;1594526;1741640;1912377;1824524;1959340;2075815;2741304;3434221;2726860;3001897.1;3506402;4147238;4501537;5190357;5401107.3;5962159;4469352.8;5716361.1;6048705;6180554;6439470.4;6685873.7;6454172;6481163;7066166;7620437;7160565;6088819;8455249.49;9982454.34;8085177.57 -5204;'013;Central America;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;17004;17133;17447;22611;21132;24176;23314;27115;31819;30786;40240;57842;66324;71026;76526;73557;80398;83132;90475;94602;93248;103095;111056;99174;90005;83557;178139;256148;255320;207736;188945;328220;225966;221217;404084;492715;549423;441333;396385;391842;327637;325013;414033;479432;487589;551681;542616;645680;488878;599807.6;749913.1;878111.22;920237.15;936521.65;985779.79;1033268;1087820;1064698;791983;709919;1089356.53;979127.12;881787.8 -5204;'013;Central America;1861;Roundwood;5516;Production;m3;52892745;54045296;54933306;56049117;56951875;57013633;58411540;59230852;60181130;61357234;62147488;63542540;64651969;65577328;67121364;68254412;69257052;67786915;69244043;69996667;70319071;71360437;71989718;72882193;74095434;74682913;76197389;77077745;78669365;78504305;79674564;79079913;79377840;80771841;82520002;83155437;85220154;85689471;86715554;87332342;87297480;86502291;86532552;87996276;88104225;88513369;89267400;89592600;88686486;89102016;89556225;90010011;90484347;90797600;91220776;91979730;94507173;94391285;94243020;94354254;96318013;96555437;96790172 -5204;'013;Central America;1861;Roundwood;5616;Import quantity;m3;41900;39000;36300;20200;58700;42500;47600;38100;33200;77700;36100;16800;17400;15800;27000;29100;17400;23400;59600;90300;56200;47000;37700;26700;20100;21800;18600;14800;18400;42184;36132;25165;55455;103394;101303;93003;93300;30791;42468;45496;61143;70586;119058;213752;167562;203021;175612;63090;39197;30375;37968;53140;40616;47012;27950;9669;21204;41695;81946;57570;67945;71545;70569 -5204;'013;Central America;1861;Roundwood;5622;Import value;1000 USD;917;1034;1299;677;2475;1949;2720;2059;1990;4986;1732;859;1289;1432;4551;5722;2753;3877;10404;18686;12093;5938;4689;3010;3394;3127;1559;1818;2167;4581;6791;3885;7930;16274;30401;25735;15237;7372;9667;9508;13985;10792;20694;55097;40291;39576;31647.3;16499;10903.6;8382;7737;13707;9106;7506;7814;2286;6893;10914;22313;17242;20810;24420;34737 -5204;'013;Central America;1861;Roundwood;5916;Export quantity;m3;83700;75300;49100;55400;44600;46100;23600;27600;24100;19800;15500;17400;26100;21400;23100;31600;32000;30200;28800;43200;29800;23500;25700;28500;8100;13600;31000;56100;97900;29441;22180;66746;81088;78158;100000;61700;67700;63151;71335;72210;52710;95946;180121;221327;200278;192507;243413;232884;189476;220287;361325;480688;398862;526073;488533;412108;416412;430696;397316;265897;472061.28;672027;572325 -5204;'013;Central America;1861;Roundwood;5922;Export value;1000 USD;3011;2604;2003;2254;1833;1636;971;1186;1186;979;926;989;1828;1712;1970;2827;3255;3872;4303;6768;4868;2843;1094;1292;1025;1340;3095;11115;18052;4312;4235;15641;15084;14554;17209;22411;17996;11702;10256;9607;7169;12691;17716;19014;18497;25753;34365;28780;40752;72522;126107;201300;158721;105098;173272;136918;185782;181838;149882;99694;217382.36;166624;238343 -5204;'013;Central America;1862;Roundwood, coniferous;5516;Production;m3;17052984;17779261;18444728;19081297;19561142;19378187;20010284;20340143;21019263;21463248;21580931;22499212;22929596;23239546;23977529;24599436;25155818;23645908;26164544;26654479;26774580;27357780;27330721;28101043;28901796;28850773;29682771;29921768;31403112;30963959;28708418;28633956;29316000;29919245;29094112;29603158;30506591;31413076;32235407;32416383;32044401;31154627;31206547;32187849;31420427;31949892;32450500;32461100;31435467;31674385;32192918;32567088;32790946;32971350;33210724;33796844;35590066;35456410;35392670;35638920;36665370;37725465;37921232 -5204;'013;Central America;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11912;33842;73030;49305;60729;60287;64923 -5204;'013;Central America;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5293;7697;18601;13773;17644;17479;31885 -5204;'013;Central America;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46514;63360;61966;40637;42434.07;53976;50341 -5204;'013;Central America;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12406;16217;13850;9448;12133.42;11980;12020 -5204;'013;Central America;1863;Roundwood, non-coniferous;5516;Production;m3;35839761;36266035;36488578;36967820;37390733;37635446;38401256;38890709;39161867;39893986;40566557;41043328;41722373;42337782;43143835;43654976;44101234;44141007;43079499;43342188;43544491;44002657;44658997;44781150;45193638;45832140;46514618;47155977;47266253;47540346;50966146;50445957;50061840;50852596;53425890;53552279;54713563;54276395;54480147;54915959;55253079;55347664;55326005;55808427;56683798;56563477;56816900;57131500;57251019;57427631;57363307;57442923;57693401;57826250;58010052;58182886;58917107;58934875;58850350;58715334;59652643;58829972;58868940 -5204;'013;Central America;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9292;7853;8916;8265;7216;11258;5646 -5204;'013;Central America;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1600;3217;3712;3469;3166;6941;2852 -5204;'013;Central America;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;369898;367336;335350;225260;429627.2;618051;521984 -5204;'013;Central America;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;173376;165621;136032;90246;205248.93;154644;226323 -5204;'013;Central America;1864;Wood fuel;5516;Production;m3;48020446;48560497;49093907;49665218;50238776;50821934;51411541;52004553;52613531;53222735;54046989;54643341;55165870;55850529;56636365;57346513;58033753;58559516;59351044;59878468;60396272;61533438;62707819;63354894;64073935;65244014;65977190;66943846;67659466;68372406;70023965;69710514;70547741;71224242;72987403;73379138;74265854;74756471;75375954;75998742;76498880;77013691;77171952;77741676;78326625;78715369;79123400;79542600;79974186;80416016;80707424;81013055;81330896;81660943;82003201;82141959;82291642;82452177;82623516;82805615;83004053;83213112;83432779 -5204;'013;Central America;1864;Wood fuel;5616;Import quantity;m3;8400;8000;12600;6600;3500;900;500;1300;300;400;6000;5900;3500;1100;500;700;700;700;700;700;2300;800;800;2600;2500;2500;2500;2500;2500;12000;11400;11000;5880;9084;7600;700;300;395;300;4700;1000;800;45;45;2003;2809;2809;2886;998;120;60;4443;2683;4860;563;816;1;1;140;119;119;438;437 -5204;'013;Central America;1864;Wood fuel;5622;Import value;1000 USD;97;113;154;86;25;10;12;13;5;6;29;24;14;19;11;49;49;49;49;49;485;36;36;31;14;14;14;14;14;530;525;300;498;814;657;29;37;89;16;139;53;45;0;0;100;139;139;147;91;48;15;1120;1121;1079;64;84;1;1;176;199;199;659;661 -5204;'013;Central America;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;500;100;100;600;2100;1400;1600;2700;1000;4700;2800;2800;2800;2800;2800;8400;3800;3435;1777;2684;700;5300;5700;4937;6608;8508;7608;7301;7353;7309;7309;8088;7464;8291;7759;9620;11424;38512;38764;50501;12333;21562;15796;18787;22530;15426;22612.28;17700;19549 -5204;'013;Central America;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;44;2;15;100;370;250;291;251;87;88;33;33;33;33;33;348;188;204;118;149;39;295;530;351;291;368;329;313;324;325;325;429;362;797;850;620;620;2035;2760;3165;2469;3653;2068;2982;3768;3644;3833.36;3548;4482 -5204;'013;Central America;1627;Wood fuel, coniferous;5516;Production;m3;13462485;13644662;13825329;14017098;14210343;14407388;14607285;14810644;15018264;15228449;15505132;15714813;15915897;16178447;16439830;16689637;16948519;17141009;19075545;19310880;19545581;19946881;20408822;20717844;21041597;21508074;21852772;22228069;22567413;22908260;21051719;21326257;22675301;23014546;22358413;22734459;22997891;23233376;23524707;23816683;24073701;24336727;24605847;24881149;25162727;25388892;25626500;25867100;26113167;26361385;26566918;26779626;26997566;27220795;27449375;27612995;27781068;27953623;28130693;28312315;28498807;28689914;28885681 -5204;'013;Central America;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;75;65;65;32;31 -5204;'013;Central America;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;83;99;99;45;45 -5204;'013;Central America;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;318;313;10005;10162;13493.07;10779;8639 -5204;'013;Central America;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;144;143;1610;2922;2847.43;2959;2956 -5204;'013;Central America;1628;Wood fuel, non-coniferous;5516;Production;m3;34557961;34915835;35268578;35648120;36028433;36414546;36804256;37193909;37595267;37994286;38541857;38928528;39249973;39672082;40196535;40656876;41085234;41418507;40275499;40567588;40850691;41586557;42298997;42637050;43032338;43735940;44124418;44715777;45092053;45464146;48972246;48384257;47872440;48209696;50628990;50644679;51267963;51523095;51851247;52182059;52425179;52676964;52566105;52860527;53163898;53326477;53496900;53675500;53861019;54054631;54140506;54233429;54333330;54440148;54553826;54528964;54510574;54498554;54492823;54493300;54505246;54523198;54547098 -5204;'013;Central America;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;65;54;54;406;406 -5204;'013;Central America;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;93;100;100;614;616 -5204;'013;Central America;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15478;18474;12525;5264;9119.2;6921;10910 -5204;'013;Central America;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1924;2839;2158;722;985.93;589;1526 -5204;'013;Central America;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;8400;8000;12600;6600;3500;900;500;1300;300;400;6000;5900;3500;1100;500;700;700;700;700;700;2300;800;800;2600;2500;2500;2500;2500;2500;12000;11400;11000;5880;9084;7600;700;300;395;300;4700;1000;800;45;45;2003;2809;2809;2886;998;120;60;4443;2683;4860;563;816;;;;;;; -5204;'013;Central America;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;97;113;154;86;25;10;12;13;5;6;29;24;14;19;11;49;49;49;49;49;485;36;36;31;14;14;14;14;14;530;525;300;498;814;657;29;37;89;16;139;53;45;0;0;100;139;139;147;91;48;15;1120;1121;1079;64;84;;;;;;; -5204;'013;Central America;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;500;100;100;600;2100;1400;1600;2700;1000;4700;2800;2800;2800;2800;2800;8400;3800;3435;1777;2684;700;5300;5700;4937;6608;8508;7608;7301;7353;7309;7309;8088;7464;8291;7759;9620;11424;38512;38764;50501;12333;21562;;;;;;; -5204;'013;Central America;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;44;2;15;100;370;250;291;251;87;88;33;33;33;33;33;348;188;204;118;149;39;295;530;351;291;368;329;313;324;325;325;429;362;797;850;620;620;2035;2760;3165;2469;3653;;;;;;; -5204;'013;Central America;1865;Industrial roundwood;5516;Production;m3;4872299;5484799;5839399;6383899;6713099;6191699;6999999;7226299;7567599;8134499;8100499;8899199;9486099;9726799;10484999;10907899;11223299;9227399;9892999;10118199;9922799;9826999;9281899;9527299;10021499;9438899;10220199;10133899;11009899;10131899;9650599;9369399;8830099;9547599;9532599;9776299;10954300;10933000;11339600;11333600;10798600;9488600;9360600;10254600;9777600;9798000;10144000;10050000;8712300;8686000;8848801;8996956;9153451;9136657;9217575;9837771;12215531;11939108;11619504;11548639;13313960;13342325;13357393 -5204;'013;Central America;1865;Industrial roundwood;5616;Import quantity;m3;33500;31000;23700;13600;55200;41600;47100;36800;32900;77300;30100;10900;13900;14700;26500;28400;16700;22700;58900;89600;53900;46200;36900;24100;17600;19300;16100;12300;15900;30184;24732;14165;49575;94310;93703;92303;93000;30396;42168;40796;60143;69786;119013;213707;165559;200212;172803;60204;38199;30255;37908;48697;37933;42152;27387;8853;21203;41694;81806;57451;67826;71107;70132 -5204;'013;Central America;1865;Industrial roundwood;5622;Import value;1000 USD;820;921;1145;591;2450;1939;2708;2046;1985;4980;1703;835;1275;1413;4540;5673;2704;3828;10355;18637;11608;5902;4653;2979;3380;3113;1545;1804;2153;4051;6266;3585;7432;15460;29744;25706;15200;7283;9651;9369;13932;10747;20694;55097;40191;39437;31508.3;16352;10812.6;8334;7722;12587;7985;6427;7750;2202;6892;10913;22137;17043;20611;23761;34076 -5204;'013;Central America;1865;Industrial roundwood;5916;Export quantity;m3;83700;75300;49100;55400;44600;46100;23600;27600;24100;19800;15500;17400;26100;21400;22600;31500;31900;29600;26700;41800;28200;20800;24700;23800;5300;10800;28200;53300;95100;21041;18380;63311;79311;75474;99300;56400;62000;58214;64727;63702;45102;88645;172768;214018;192969;184419;235949;224593;181717;210667;349901;442176;360098;475572;476200;390546;400616;411909;374786;250471;449449;654327;552776 -5204;'013;Central America;1865;Industrial roundwood;5922;Export value;1000 USD;3011;2604;2003;2254;1833;1636;971;1186;1186;979;926;989;1828;1712;1926;2825;3240;3772;3933;6518;4577;2592;1007;1204;992;1307;3062;11082;18019;3964;4047;15437;14966;14405;17170;22116;17466;11351;9965;9239;6840;12378;17392;18689;18172;25324;34003;27983;39902;71902;125487;199265;155961;101933;170803;133265;183714;178856;146114;96050;213549;163076;233861 -5204;'013;Central America;1866;Industrial roundwood, coniferous;5516;Production;m3;3590499;4134599;4619399;5064199;5350799;4970799;5402999;5529499;6000999;6234799;6075799;6784399;7013699;7061099;7537699;7909799;8207299;6504899;7088999;7343599;7228999;7410899;6921899;7383199;7860199;7342699;7829999;7693699;8835699;8055699;7656699;7307699;6640699;6904699;6735699;6868699;7508700;8179700;8710700;8599700;7970700;6817900;6600700;7306700;6257700;6561000;6824000;6594000;5322300;5313000;5626000;5787462;5793380;5750555;5761349;6183849;7808998;7502787;7261977;7326605;8166563;9035551;9035551 -5204;'013;Central America;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4510;13395;6422;39836;71325;58703;30203;50000;20567;19550;25878;21672;62772;106030;141027;134566;176512;133615;33496;21624;18167;28114;40125;29316;22579;21087;5157;11912;33842;72955;49240;60664;60255;64892 -5204;'013;Central America;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;615;3314;1462;4894;6354;8242;4414;4346;2869;2521;4160;3783;7828;17042;30559;30387;32110;17194.3;6026;4883;4191;4467;9577;4747;3419;6016;1241;5293;7697;18518;13674;17545;17434;31840 -5204;'013;Central America;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7483;6626;59148;72253;68183;92000;51400;56800;57120;63025;59400;33900;26588;80677;54561;55502;58985;77495;62035;37900;26986;41135;59277;68510;42269;40889;49918;46196;63047;51961;30475;28941;43197;41702 -5204;'013;Central America;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2229;1821;14842;13190;12558;15596;21534;16923;11231;9685;8854;5089;5352;8060;3991;4232;4307;7019;5582;2517;6774;11565;16927;6402;4555;4456;4660;12262;16074;12240;6526;9286;9021;9064 -5204;'013;Central America;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4510;13395;6422;39836;71325;58703;30203;50000;20567;19550;25878;21672;62772;106030;141027;134566;176512;133615;33496;21624;18167;28114;40125;29316;22579;21087;5157;11912;33842;72955;49240;60664;60255;64892 -5204;'013;Central America;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;615;3314;1462;4894;6354;8242;4414;4346;2869;2521;4160;3783;7828;17042;30559;30387;32110;17194.3;6026;4883;4191;4467;9577;4747;3419;6016;1241;5293;7697;18518;13674;17545;17434;31840 -5204;'013;Central America;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7483;6626;59148;72253;68183;92000;51400;56800;57120;63025;59400;33900;26588;80677;54561;55502;58985;77495;62035;37900;26986;41135;59277;68510;42269;40889;49918;46196;63047;51961;30475;28941;43197;41702 -5204;'013;Central America;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2229;1821;14842;13190;12558;15596;21534;16923;11231;9685;8854;5089;5352;8060;3991;4232;4307;7019;5582;2517;6774;11565;16927;6402;4555;4456;4660;12262;16074;12240;6526;9286;9021;9064 -5204;'013;Central America;1867;Industrial roundwood, non-coniferous;5516;Production;m3;1281800;1350200;1220000;1319700;1362300;1220900;1597000;1696800;1566600;1899700;2024700;2114800;2472400;2665700;2947300;2998100;3016000;2722500;2804000;2774600;2693800;2416100;2360000;2144100;2161300;2096200;2390200;2440200;2174200;2076200;1993900;2061700;2189400;2642900;2796900;2907600;3445600;2753300;2628900;2733900;2827900;2670700;2759900;2947900;3519900;3237000;3320000;3456000;3390000;3373000;3222801;3209494;3360071;3386102;3456226;3653922;4406533;4436321;4357527;4222034;5147397;4306774;4321842 -5204;'013;Central America;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25674;11337;7743;9739;22985;35000;62100;43000;9829;22618;14918;38471;7014;12983;72680;30993;23700;39188;26708;16575;12088;9794;8572;8617;19573;6300;3696;9291;7852;8851;8211;7162;10852;5240 -5204;'013;Central America;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3436;2952;2123;2538;9106;21502;21292;10854;4414;7130;5209;10149;2919;3652;24538;9804;7327;14314;10326;5929.6;4143;3255;3010;3238;3008;1734;961;1599;3216;3619;3369;3066;6327;2236 -5204;'013;Central America;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13558;11754;4163;7058;7291;7300;5000;5200;1094;1702;4302;11202;62057;92091;159457;137467;125434;158454;162558;143817;183681;308766;382899;291588;433303;435311;340628;354420;348862;322825;219996;420508;611130;511074 -5204;'013;Central America;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1735;2226;595;1776;1847;1574;582;543;120;280;385;1751;7026;9332;14698;13940;21017;26984;22401;37385;65128;113922;182338;149559;97378;166347;128605;171452;162782;133874;89524;204263;154055;224797 -5204;'013;Central America;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16811;5740;3293;3280;5200;1700;0;9400;3300;16500;4100;14;2922;912;1822;5184;4734;1279;2068;1104;1026;1438;670;576;786;733;2873;7623;2132;2093;3569;1612;1023;329 -5204;'013;Central America;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2246;1785;1206;1220;2028;732;0;3063;999;4986;1707;4;899;400;609;1604;531;416;907;419.6;413;617;402;340;324;262;631;734;633;759;1246;552;428;136 -5204;'013;Central America;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13558;11754;4163;7058;6491;200;300;800;400;1700;4300;7200;55771;49438;100840;56738;59811;96690;134397;140741;179293;296017;323049;252048;424469;435311;340628;354420;348862;322825;219951;420508;513910;511074 -5204;'013;Central America;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1735;2226;595;1776;1687;45;95;129;99;280;385;581;4904;5160;10305;7766;16054;22320;18435;36892;62773;100034;77235;77173;84468;166347;128605;171452;162782;133874;89454;204263;88414;224797 -5204;'013;Central America;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8863;5597;4450;6459;17785;33300;62100;33600;6529;6118;10818;38457;4092;12071;70858;25809;18966;37909;24640;15471;11062;8356;7902;8041;18787;5567;823;1668;5720;6758;4642;5550;9829;4911 -5204;'013;Central America;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1190;1167;917;1318;7078;20770;21292;7791;3415;2144;3502;10145;2020;3252;23929;8200;6796;13898;9419;5510;3730;2638;2608;2898;2684;1472;330;865;2583;2860;2123;2514;5899;2100 -5204;'013;Central America;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;800;7100;4700;4400;694;2;2;4002;6286;42653;58617;80729;65623;61764;28161;3076;4388;12749;59850;39540;8834;0;0;0;0;0;45;0;97220;0 -5204;'013;Central America;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;160;1529;487;414;21;0;0;1170;2122;4172;4393;6174;4963;4664;3966;493;2355;13888;105103;72386;12910;0;0;0;0;0;70;0;65641;0 -5204;'013;Central America;1868;Sawlogs and veneer logs;5516;Production;m3;4087299;4541799;4775399;5388899;5676099;4970699;5680999;5835299;6212599;6617499;6626499;7381199;7893099;7868799;8209999;8676899;8724299;6580399;6876999;6911699;6882399;6816499;6347399;6087499;6565699;5998099;6772599;6666599;8091599;7620599;7420299;7372099;7022699;7977899;7780899;7908599;8983600;9207600;9607600;9615600;9258600;8104600;7974600;8727600;8261600;8193000;8696000;8528000;7488300;7754000;7736801;7672956;7993451;8064835;8271459;8819655;10370294;10657992;10338388;10267523;12192844;12059209;12074277 -5204;'013;Central America;1868;Sawlogs and veneer logs;5616;Import quantity;m3;16500;11100;6400;5900;10100;14900;5600;3500;1900;7800;3900;4100;7900;3900;2000;8700;4100;4100;24200;36300;8600;9600;9600;9600;5400;6300;12100;1500;2100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5204;'013;Central America;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;284;204;186;154;256;405;234;124;104;471;341;333;696;677;410;2430;805;805;4650;8252;2308;947;947;947;1650;422;854;329;127;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5204;'013;Central America;1868;Sawlogs and veneer logs;5916;Export quantity;m3;83700;75300;49100;55400;44600;46100;23600;27600;24100;19800;15500;17400;25600;20900;22400;27800;28100;21800;20800;37100;23800;19300;21200;20300;3200;8900;12100;30300;25100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5204;'013;Central America;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;3011;2604;2003;2254;1833;1636;971;1186;1186;979;926;989;1800;1684;1909;2368;2774;2806;3120;5715;3864;2301;407;505;585;933;1357;7967;7719;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5204;'013;Central America;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;2957499;3345599;3688399;4226199;4479799;3923799;4272999;4347499;4860999;4945799;4884799;5516399;5732699;5538099;5564699;6007799;6065299;4207899;4544999;4676599;4777999;4970899;4582899;4604199;5066199;4567699;5050699;4910699;6566699;6155699;6026699;5887699;5446699;5878699;5655699;5765699;6439700;7113700;7628700;7518700;7012700;5940700;5869700;6412700;5285700;5607000;5902000;5655000;4640300;4870000;5059000;4998462;5166380;5121733;5312233;5666733;7024761;6964671;6723861;6788489;7612447;8444435;8444435 -5204;'013;Central America;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;8800;5900;3300;700;300;100;200;200;200;200;200;200;200;200;300;100;100;100;24200;36300;8600;9600;9600;9600;5400;6300;12100;1500;2100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5204;'013;Central America;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;142;102;89;18;17;5;9;9;9;9;9;9;9;9;48;17;17;17;4650;8252;2308;947;947;947;1650;422;854;329;127;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5204;'013;Central America;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5204;'013;Central America;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5204;'013;Central America;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;1129800;1196200;1087000;1162700;1196300;1046900;1408000;1487800;1351600;1671700;1741700;1864800;2160400;2330700;2645300;2669100;2659000;2372500;2332000;2235100;2104400;1845600;1764500;1483300;1499500;1430400;1721900;1755900;1524900;1464900;1393600;1484400;1576000;2099200;2125200;2142900;2543900;2093900;1978900;2096900;2245900;2163900;2104900;2314900;2975900;2586000;2794000;2873000;2848000;2884000;2677801;2674494;2827071;2943102;2959226;3152922;3345533;3693321;3614527;3479034;4580397;3614774;3629842 -5204;'013;Central America;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;7700;5200;3100;5200;9800;14800;5400;3300;1700;7600;3700;3900;7700;3700;1700;8600;4000;4000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5204;'013;Central America;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;142;102;97;136;239;400;225;115;95;462;332;324;687;668;362;2413;788;788;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5204;'013;Central America;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;37100;33700;14600;23600;19100;28400;10300;13700;9400;10200;8000;8600;12100;12400;7200;8000;7800;7100;7300;12300;6200;1700;20700;19800;2700;8400;11600;27100;14400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5204;'013;Central America;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;1318;1025;568;772;726;927;420;535;477;491;539;507;750;860;546;636;654;884;1578;2163;1685;122;343;441;521;869;1293;7248;5185;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5204;'013;Central America;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1210000;1234000;1249000;1059000;880000;942000;1044000;1065000;1089000;972000;1022000;718000;513000;507000;585000;504000;414000;490000;620000;1383000;835000;835000;835000;758000;691000;691000 -5204;'013;Central America;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;909000;927000;928000;800000;657000;587000;713000;810000;755000;764000;748000;499000;327000;356000;444000;365000;365000;340000;442000;696000;424000;424000;424000;485000;522000;522000 -5204;'013;Central America;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;301000;307000;321000;259000;223000;355000;331000;255000;334000;208000;274000;219000;186000;151000;141000;139000;49000;150000;178000;687000;411000;411000;411000;273000;169000;169000 -5204;'013;Central America;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;12900;31400;19500;14700;14700;6100;6200;3500;2000;9000;9000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5204;'013;Central America;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;2668;7172;5038;2599;2599;1145;1045;473;200;910;910;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5204;'013;Central America;1870;Pulpwood and particles (1961-1997);5516;Production;m3;613000;766000;885000;772000;804000;970000;1067000;1114000;1042000;1200000;1117000;1185000;1256000;1479000;1895000;1803000;2113000;2242000;2530000;2647000;2494500;2464500;2400500;2867500;2871500;2871500;2868000;2870000;2360000;1969000;1708000;1458000;1192000;1014000;1198000;1267000;1225000;;;;;;;;;;;;;;;;;;;;;;;;;; -5204;'013;Central America;1870;Pulpwood and particles (1961-1997);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;12900;31400;19500;14700;14700;6100;6200;3500;2000;9000;9000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5204;'013;Central America;1870;Pulpwood and particles (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;2668;7172;5038;2599;2599;1145;1045;473;200;910;910;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5204;'013;Central America;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;605000;759000;872000;761000;791000;956000;1055000;1107000;1035000;1185000;1094000;1152000;1173000;1397000;1829000;1754000;2009000;2138000;2310000;2427000;2247000;2236000;2139000;2547000;2557000;2557000;2557000;2557000;2090000;1739000;1500000;1300000;1064000;904000;946000;949000;921000;;;;;;;;;;;;;;;;;;;;;;;;;; -5204;'013;Central America;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;8000;7000;13000;11000;13000;14000;12000;7000;7000;15000;23000;33000;83000;82000;66000;49000;104000;104000;220000;220000;247500;228500;261500;320500;314500;314500;311000;313000;270000;230000;208000;158000;128000;110000;252000;318000;304000;;;;;;;;;;;;;;;;;;;;;;;;;; -5204;'013;Central America;1871;Other industrial roundwood;5516;Production;m3;172000;177000;179000;223000;233000;251000;252000;277000;313000;317000;357000;333000;337000;379000;380000;428000;386000;405000;486000;559500;545900;546000;534000;572300;584300;569300;579600;597300;558300;542300;522300;539300;615400;555700;553700;600700;745700;515400;498000;469000;481000;504000;444000;483000;451000;516000;476000;500000;506000;419000;605000;739000;656000;657822;456116;398116;462237;446116;446116;446116;363116;592116;592116 -5204;'013;Central America;1871;Other industrial roundwood;5616;Import quantity;m3;17000;19900;17300;7700;45100;26700;41500;33300;31000;69500;26200;6800;6000;10800;24500;19700;12600;18600;21800;21900;25800;21900;12600;8400;6000;9500;2000;1800;4800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5204;'013;Central America;1871;Other industrial roundwood;5622;Import value;1000 USD;536;717;959;437;2194;1534;2474;1922;1881;4509;1362;502;579;736;4130;3243;1899;3023;3037;3213;4262;2356;1107;887;685;2218;491;565;1116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5204;'013;Central America;1871;Other industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;500;500;200;3700;3800;7800;5900;4700;4400;1500;3500;3500;2100;1900;16100;23000;70000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5204;'013;Central America;1871;Other industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;28;28;17;457;466;966;813;803;713;291;600;699;407;374;1705;3115;10300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5204;'013;Central America;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;28000;30000;59000;77000;80000;91000;75000;75000;105000;104000;97000;116000;108000;126000;144000;148000;133000;159000;234000;240000;204000;204000;200000;232000;237000;218000;222300;226000;179000;161000;130000;120000;130000;122000;134000;154000;148000;157000;155000;153000;158000;220200;144000;181000;162000;199000;158000;191000;183000;116000;211000;345000;262000;263822;109116;75116;88237;114116;114116;114116;69116;69116;69116 -5204;'013;Central America;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;144000;147000;120000;146000;153000;160000;177000;202000;208000;213000;260000;217000;229000;253000;236000;280000;253000;246000;252000;319500;341900;342000;334000;340300;347300;351300;357300;371300;379300;381300;392300;419300;485400;433700;419700;446700;597700;358400;343000;316000;323000;283800;300000;302000;289000;317000;318000;309000;323000;303000;394000;394000;394000;394000;347000;323000;374000;332000;332000;332000;294000;523000;523000 -5204;'013;Central America;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;17000;19900;17300;7700;45100;26700;41500;33300;31000;69500;26200;6800;6000;10800;24500;19700;12600;18600;21800;21900;25800;21900;12600;8400;6000;9500;2000;1800;4800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5204;'013;Central America;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;536;717;959;437;2194;1534;2474;1922;1881;4509;1362;502;579;736;4130;3243;1899;3023;3037;3213;4262;2356;1107;887;685;2218;491;565;1116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5204;'013;Central America;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;;;;;;;;;;;;;500;500;200;3700;3800;7800;5900;4700;4400;1500;3500;3500;2100;1900;16100;23000;70000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5204;'013;Central America;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;;;;;;;;;;;;;28;28;17;457;466;966;813;803;713;291;600;699;407;374;1705;3115;10300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5204;'013;Central America;1630;Wood charcoal;5510;Production;t;73681;73189;85662;88402;91007;93382;95930;97550;100748;103224;106335;109201;112345;114970;119125;123404;127452;128413;134313;136383;139779;144214;152886;155386;159459;166318;170851;176573;181067;213374;229164;207013;212575;210879;180839;117691;110199;167479;260868;212256;221565;184685;132474;169046;452384;190742;174592;262800;256124;171720;178263;177071;180117;189186;191272;183894;191435;211590;215010;217460;159268;160847;175226 -5204;'013;Central America;1630;Wood charcoal;5610;Import quantity;t;9400;11400;600;300;100;400;100;300;300;300;300;100;400;300;300;300;300;300;300;400;400;300;300;100;500;500;500;500;500;13200;600;877;1756;1513;615;515;615;320;1623;8445;6545;1893;1906;1244;1241;1198;1250;1726;2281;2236;2347;2269;3094;2084;3125;4298;8903;6719;6804;4904;6073.76;3009;4101 -5204;'013;Central America;1630;Wood charcoal;5622;Import value;1000 USD;1808;2181;145;50;26;79;15;41;45;72;50;28;76;93;107;102;102;102;146;194;283;200;200;57;122;122;122;122;122;4417;264;420;415;641;335;278;296;193;319;847;1070;982;1004;1100;1077;1098;728;876;1016;853;797;765;1079;764;1714;1957;3856;2478;3059;3516;4405.58;1831;2727 -5204;'013;Central America;1630;Wood charcoal;5910;Export quantity;t;2900;2200;1600;1700;1700;1900;1600;800;1300;1000;500;500;1300;600;1000;1700;2100;300;2600;1600;2000;300;2400;700;600;600;600;600;600;41200;40500;14601;20865;12500;18900;21800;24000;12302;35900;38230;37952;37880;39531;50848;40706;39117;39496;35857;50777;58445;72806;77891;86397;92776;98418;103482;102814;99126;90539;124741;143432.54;102988;88834 -5204;'013;Central America;1630;Wood charcoal;5922;Export value;1000 USD;235;75;51;41;30;57;65;27;51;40;20;23;53;31;114;257;130;19;399;363;455;42;398;108;147;147;147;147;147;7452;7505;3056;3819;1945;2314;2814;2900;2756;4274;4316;5775;6142;6151;5966;7162;6966;8431;8037;11287;15122;19275;22299;27175;30923;34922;39798;41349;38701;35381;53027;67042.02;50496;47452 -5204;'013;Central America;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;537000;543000;543000;543000;543000;543000;543000;543000;543000;543000;543000;543000;543000;799000;1011000;1038000;1057785;1071085;1689387;1661065;1655670;1653020;1609029;1511878;1685619;1810962 -5204;'013;Central America;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13843;11433;162013;34067;34880;54865;72167;99409;87698;71448;43171;4462;5257;7689;11543;6620.3;10855;9413;13036;22995;23050;4063;3624;18628.77;9909.04;7834 -5204;'013;Central America;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1073;703;3274;1275;1614;1846;2024;2803;2864;2501;1894;819;1254;1311;1563;1683.4;1965.7;2194;2361;2187;2670;547;526;973.38;761.09;813 -5204;'013;Central America;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15900;531860;204060;7060;7017;9376;51788;58976;110491;90382;86660;77944;20875;24840;14841;19704.03;30362.61;30983;23561;26985;23395;18873;15430;31822.01;19633;21893 -5204;'013;Central America;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1077;8044;6723;310;315;472;3693;4615;7255;5439;5470;4510;2670;3189;1555.72;1123.1;1473.61;3268;4104;5003;3886;4813;4704;6878.17;6774;6637 -5204;'013;Central America;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;208000;252000;258000;258785;272085;442798;444954;615951;660382;676729;556511;706688;710856 -5204;'013;Central America;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;7100;1900;2500;1600;1600;1600;200;1300;2000;39400;188700;116700;133800;65105;1513;675;2973;1873;15373;9737;7243;153023;25950;25600;50173;56288;65219;50968;34928;7302;1670;3422;3754;3703;1178.3;1021;1018;1362;1282;1301;3670;3334;281;320;709 -5204;'013;Central America;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;1190;637;677;293;293;293;50;44;73;2067;7266;3964;3804;3085;99;47;265;144;816;487;178;2648;851;812;908;1006;1270;1249;864;192;158;215;199;351;283.4;312.7;556;390;563;554;442;449;439;327;300 -5204;'013;Central America;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1251;76997;80071;4900;1600;1200;200;3737;2237;37;0;1236;4093;4183;60218;60218;60220;60309;159;187;1185;272.03;808.61;5121;2694;2159;1844;1979;2924;4490.78;4397;3876 -5204;'013;Central America;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63;6615;8358;335;86;107;65;122;124;4;0;17;196;294;2147;2149;2149;2221;84;112;505.72;64.1;398.61;1700;2138;1940;1675;1746;2549;3059.17;2745;2506 -5204;'013;Central America;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107000;579000;537000;539000;539000;539000;539000;539000;539000;539000;539000;539000;539000;539000;539000;591000;759000;780000;799000;799000;1246589;1216111;1039719;992638;932300;955367;978931;1100106 -5204;'013;Central America;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;1900;1900;2400;9800;9800;12200;1500;6089;17734;14000;16240;9700;6600;4106;4190;8990;8117;9280;4692;15879;34190;36730;36520;35869;2792;1835;3935;7840;5442;9834;8395;11674;21713;21749;393;290;18347.77;9589.04;7125 -5204;'013;Central America;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;38;130;100;520;520;525;275;213;686;468;773;626;547;586;525;626;424;802;938;1018;1533;1615;1637;1702;661;1039;1112;1212;1400;1653;1638;1971;1624;2116;105;77;534.38;434.09;513 -5204;'013;Central America;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102014;381661;62550;32650;19700;10200;15700;528123;201823;7023;7017;8140;47695;54793;50273;30164;26440;17635;20716;24653;13656;19432;29554;25862;20867;24826;21551;16894;12506;27331.23;15236;18017 -5204;'013;Central America;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18081;12607;6524;5178;3260;1454;1012;7922;6599;306;315;455;3497;4321;5108;3290;3321;2289;2586;3077;1050;1059;1075;1568;1966;3063;2211;3067;2155;3819;4029;4131 -5204;'013;Central America;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4386;6444;6444 -5204;'013;Central America;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35000;38000;27922;27675;109260;111746;118490;140966;102557;109407;111763;111763 -5204;'013;Central America;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3021;3708;11069;6562;7308;14004;10655;6605;5842;3550.48;1408.3;1194 -5204;'013;Central America;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2568;2941;4853;4074;3304;3472;3059;1363;1173;2796.63;684.81;774 -5204;'013;Central America;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4335;6692;3466;3047;2142;2252;22436;13027;9753;21443.36;19285;755 -5204;'013;Central America;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1419.63;2200;878;433;293;297;1951;3835;2655;6591;7742;149 -5204;'013;Central America;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35000;38000;27922;27675;37393;30449;30421;30421;30421;26172;26172;26172 -5204;'013;Central America;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;172;47;41;61;242;36;43;416;1607;44.3;85 -5204;'013;Central America;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;136;52;46;31;94;45;15;111;994;70.81;105 -5204;'013;Central America;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4298;6640;3414;2995;2090;2200;1719;534;159;152;948;183 -5204;'013;Central America;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1276.63;2006;684;239;99;103;401;133;39;58;290;78 -5204;'013;Central America;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71867;81297;88069;110545;72136;83235;85591;85591 -5204;'013;Central America;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2943;3536;11022;6521;7247;13762;10619;6562;5426;1943.48;1364;1109 -5204;'013;Central America;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2533;2805;4801;4028;3273;3378;3014;1348;1062;1802.63;614;669 -5204;'013;Central America;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;52;52;52;52;52;20717;12493;9594;21291.36;18337;572 -5204;'013;Central America;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;143;194;194;194;194;194;1550;3702;2616;6533;7452;71 -5204;'013;Central America;1872;Sawnwood;5516;Production;m3;2100700;2125300;2543200;2779200;2833200;2814900;2861700;2977300;2965100;2883800;2940100;3477900;3895300;3812300;3877000;4118000;4414000;4430477;3733660;3681500;3678900;3186800;3035600;3250600;3516600;3360400;3733300;3739700;3578700;3355700;3646000;4151500;4306500;4371300;3911300;4284300;4733300;4603800;4357300;4551800;4294800;3928800;4111300;4342400;4043700;3912700;3999200;4065200;3513600;3494375;3434191;3490962;3536457;3598507;3676669;3884108;4659422;4675104;6664557;6784544;7540913;8007992;7897346 -5204;'013;Central America;1872;Sawnwood;5616;Import quantity;m3;66800;67800;75200;123500;148700;170300;157000;179300;169700;202000;203900;198100;214000;212100;276100;213500;86800;93300;198300;554200;439400;277900;273100;262200;295300;359900;457200;726900;372100;463900;649200;704799;869776;1055598;722599;802699;1016799;1466932;1180494;1632823;1638840;1877085;1801725;3403159;3946311;4317150;5147237;1927887;1421819;1634597;2030786;1792463;1787897;1700519;2068159;2390651;2412802;2026617;2559794;2048630;3241160;3269640;2897069 -5204;'013;Central America;1872;Sawnwood;5622;Import value;1000 USD;2448;2666;3090;5269;5595;6249;5883;8092;9328;11456;10597;11449;14157;16201;26134;25023;11494;12528;28680;69307;79828;39727;52314;38533;41423;64437;78758;113649;45893;120886;167375;239437;252680;234270;193388;214384;219438;273484;221835;314113;263252;308553;322313;448337;542322;563796;616708;485741;341476;402342;464633;477525;493237;534016;575506;618172;674984;537654;660806;604199;1009896;1129022;930671 -5204;'013;Central America;1872;Sawnwood;5916;Export quantity;m3;309700;294900;299300;339800;345400;481300;520850;596500;492900;459800;592000;870400;826200;680800;644948;606138;650500;578100;450600;306200;363500;402500;339600;288300;261000;253876;331660;388800;346378;244900;470500;826847;347994;392561;397300;566900;766400;673056;410186;414159;427800;376172;301506;317956;333070;357718;262302;214531;133564;151619;153896;141062;159575;195727;181493;246290;268185;185518;195566;148713;247979;220465;168472 -5204;'013;Central America;1872;Sawnwood;5922;Export value;1000 USD;12186;12186;12468;15780;14349;15264;16113;18438;20168;19348;28602;39275;50466;49968;58145;50466;49763;51158;47931;25972;32314;49481;43174;39084;38902;38099;51895;68948;121549;113034;84608;174347;90899;83323;144417;188323;239768;206061;115192;96893;99726;84321;74399;80947;83043;89947;84218;74693;47282;55229;62731;63294;65963;89282;66239;83276;79085;65624;63023;50801;77283;78182;65935 -5204;'013;Central America;1632;Sawnwood, coniferous;5516;Production;m3;1526100;1560400;1919350;2100350;2145350;2165550;2065350;2160150;2216550;2189400;2163550;2590450;2800150;2683150;2613000;2916500;3068500;3083477;2798510;2530000;2515050;2240050;2304400;2356400;2614400;2473200;2727100;2753000;2650000;2492500;2793000;2902000;2847000;3091800;2810800;3131800;3492300;3768300;3614300;3632300;2998300;3100300;3186300;3450300;2897800;2784800;2793800;2834800;2365300;2458752;2482090;2525262;2599157;2613220;2624501;2888217;3617292;3623075;5530552;5551022;6299172;6830401;6828175 -5204;'013;Central America;1632;Sawnwood, coniferous;5616;Import quantity;m3;64450;65600;70600;94450;148550;170100;155900;171950;162200;192900;199750;192300;208750;206350;226400;194900;73500;80150;198000;513400;398600;237100;238400;223700;269700;323100;420400;690400;338700;413100;572100;609320;738000;901512;542910;610310;682310;676160;468726;819094;1057272;1010739;1534539;2427865;3076316;3194797;4480148;1422094;1086011;1081771;1264163;1452367;1435124;1400156;1663626;1991292;1982592;1609672;2055789;1642317;2678586;2660515;2421612 -5204;'013;Central America;1632;Sawnwood, coniferous;5622;Import value;1000 USD;1957;2181;2460;3301;5578;6241;5846;7433;8534;10534;10101;10666;13380;15031;19777;21414;8724;9774;28647;62826;73347;33246;39891;30133;35791;43089;57410;94850;31734;102132;137524;191348;200765;177671;132963;142950;140841;135241;89426;150168;203544;192905;219448;264786;336688;347918;425598;338792;224255;258716;303405;347658;344732;360324;403987;452479;509676;369288;483762;434266;764972;845168;711844 -5204;'013;Central America;1632;Sawnwood, coniferous;5916;Export quantity;m3;246250;224100;236350;279400;290000;424150;463750;553650;453600;426350;563650;830150;782800;626500;591600;543197;591950;527250;406450;272950;323450;373100;322950;273800;240500;238076;312660;374600;325600;232000;445600;762922;292262;334550;340200;504000;709200;634639;372486;363315;389800;330497;254185;240207;265509;263549;193298;169342;107249;112127;101877;99210;109014;111518;139260;177236;200382;137214;149181;102189;170950;171431;132162 -5204;'013;Central America;1632;Sawnwood, coniferous;5922;Export value;1000 USD;8558;7558;8908;11818;10682;11383;12087;15538;17469;16822;26035;35645;46467;43934;48665;43250;43507;45311;41483;20581;25138;43463;39444;35500;34508;35649;47840;65362;117899;107739;76572;124749;65985;64875;122764;163758;217161;188693;101690;77529;82766;65442;56353;60054;60633;58669;55641;46521;27032;28715;27535;25479;24657;28958;34589;39308;34995;31439;31855;24978;46824;47109;36035 -5204;'013;Central America;1633;Sawnwood, non-coniferous;5516;Production;m3;574600;564900;623850;678850;687850;649350;796350;817150;748550;694400;776550;887450;1095150;1129150;1264000;1201500;1345500;1347000;935150;1151500;1163850;946750;731200;894200;902200;887200;1006200;986700;928700;863200;853000;1249500;1459500;1279500;1100500;1152500;1241000;835500;743000;919500;1296500;828500;925000;892100;1145900;1127900;1205400;1230400;1148300;1035623;952101;965700;937300;985287;1052168;995891;1042130;1052029;1134005;1233522;1241741;1177591;1069171 -5204;'013;Central America;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;2350;2200;4600;29050;150;200;1100;7350;7500;9100;4150;5800;5250;5750;49700;18600;13300;13150;300;40800;40800;40800;34700;38500;25600;36800;36800;36500;33400;50800;77100;95479;131776;154086;179689;192389;334489;790772;711768;813729;581568;866346;267186;975294;869995;1122353;667089;505793;335808;552826;766623;340096;352773;300363;404533;399359;430210;416945;504005;406313;562574;609125;475457 -5204;'013;Central America;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;491;485;630;1968;17;8;37;659;794;922;496;783;777;1170;6357;3609;2770;2754;33;6481;6481;6481;12423;8400;5632;21348;21348;18799;14159;18754;29851;48089;51915;56599;60425;71434;78597;138243;132409;163945;59708;115648;102865;183551;205634;215878;191110;146949;117221;143626;161228;129867;148505;173692;171519;165693;165308;168366;177044;169933;244924;283854;218827 -5204;'013;Central America;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;63450;70800;62950;60400;55400;57150;57100;42850;39300;33450;28350;40250;43400;54300;53348;62941;58550;50850;44150;33250;40050;29400;16650;14500;20500;15800;19000;14200;20778;12900;24900;63925;55732;58011;57100;62900;57200;38417;37700;50844;38000;45675;47321;77749;67561;94169;69004;45189;26315;39492;52019;41852;50561;84209;42233;69054;67803;48304;46385;46524;77029;49034;36310 -5204;'013;Central America;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;3628;4628;3560;3962;3667;3881;4026;2900;2699;2526;2567;3630;3999;6034;9480;7216;6256;5847;6448;5391;7176;6018;3730;3584;4394;2450;4055;3586;3650;5295;8036;49598;24914;18448;21653;24565;22607;17368;13502;19364;16960;18879;18046;20893;22410;31278;28577;28172;20250;26514;35196;37815;41306;60324;31650;43968;44090;34185;31168;25823;30459;31073;29900 -5204;'013;Central America;1634;Veneer sheets;5516;Production;m3;5700;6800;6300;7600;8500;9100;6300;5400;6500;3500;3500;4500;10000;12600;10600;14100;12100;32800;22600;15000;23000;18900;13400;9300;9300;8500;7500;11800;11800;18000;30000;45000;67000;87400;112600;124600;314600;346600;387600;443000;558600;391600;391600;390600;394600;393600;399600;397600;397600;376500;376500;376000;377000;377000;388210;387000;408231;561201;586038;564631;495108;673108;673108 -5204;'013;Central America;1634;Veneer sheets;5616;Import quantity;m3;100;100;100;100;100;300;200;700;500;600;500;600;900;700;600;2500;300;300;2900;13500;10700;6300;5900;6000;6300;5400;3500;8300;7900;4400;7400;9455;7460;9070;23824;11124;20924;29905;41601;42929;31350;12797;29981;37733;30639;33779;32510;26593;20749;28937;30756;32925;34480;42550;53073;45700;45695;41283;49887;42854;50241;55180;51850 -5204;'013;Central America;1634;Veneer sheets;5622;Import value;1000 USD;76;63;59;103;132;205;175;281;374;565;200;425;524;304;184;496;63;63;1043;4517;3982;1687;1183;1253;1292;3586;1951;2551;2367;2330;4185;8527;6136;8588;14451;7254;9148;13767;25960;32417;22267;30203;40611;56104;58864;66848;70355;62105;51453;62388;64367;69118;72690;72923;78681;69477;69310;79399;70742;65069;103747;92163;74115 -5204;'013;Central America;1634;Veneer sheets;5916;Export quantity;m3;3500;6300;4400;5700;7200;6600;1900;2500;3600;1100;1100;1100;3100;4500;2400;2900;2100;1800;4100;3400;8000;3900;3200;5500;6800;6600;5500;9500;6700;7500;8300;4810;9548;718;5600;2400;2900;3208;5842;12982;9082;15318;11859;7666;7331;7876;3502;2589;2040;1812;1659;791;1183;1273;562;583;1380;883;944;415;304;34;196 -5204;'013;Central America;1634;Veneer sheets;5922;Export value;1000 USD;342;579;414;498;555;591;81;97;128;102;93;75;791;689;828;1374;690;753;1961;1517;3108;1349;1558;1880;1855;1717;1383;2699;3482;2629;3089;2008;3363;840;3185;1290;1899;3555;6818;13416;7463;12232;10512;9476;9458;10822;6734;6067;4891;4164;3657;3486;3768;2644;1105;1032;2740;2135;1116;1204;1159;1038;1010 -5204;'013;Central America;1873;Wood-based panels;5516;Production;m3;89900;98000;104000;121300;126400;154300;172900;190100;210500;226100;241900;264000;294500;299800;334700;345500;469200;476700;540400;705500;762100;839200;758100;801300;826300;822000;837000;817200;708600;627200;726700;706700;683100;664400;545700;567300;579300;574100;828700;871000;632000;734000;805000;843000;756000;801500;847500;733500;640500;835267;882200;1023725;1164570;1178092;1245194;1223104;1213243;1215911;1178513;1160511;1128314;1144567;1144567 -5204;'013;Central America;1873;Wood-based panels;5616;Import quantity;m3;11100;11700;13030;16230;11443;17965;22082;24618;26954;25955;21754;24896;27149;58643;42343;52743;46528;43880;79180;79480;68980;42280;44500;50700;59100;37300;39200;69000;124000;160130;281100;270782;386875;344073;263121;329126;363726;419194;585801;955135;769483;770609;1589221;1724333;1600269;1756226;1452341;1550001;975996;1275770;1284875;1372122;1387314;1440840;1670744;1748108;1756045;1647368;1592375;1699157;2504992.69;2286467.05;2010126.05 -5204;'013;Central America;1873;Wood-based panels;5622;Import value;1000 USD;1115;1289;1515;2293;2471;3552;4224;4299;4447;4476;4424;5701;6005;10756;9185;11708;10446;10557;17617;25135;22214;10603;11696;14201;18007;13524;13760;23034;27228;37149;65409;124401;135518;124485;87492;99222;82061;106091;196214;353822;259226;253526;400914;473617;501685;558120;501174;611444;471915;558056;584306;673580;694913;717357;770169;759066;681611;765024;654855;602641;1073233.57;1065918.57;886781.57 -5204;'013;Central America;1873;Wood-based panels;5916;Export quantity;m3;8200;9900;14200;13100;11900;11637;12116;17253;24818;18569;21838;27233;28185;23264;21206;28301;36500;54100;39100;56500;32600;24400;35600;33400;33900;30900;25900;28400;26300;20300;22200;63966;52091;70116;195528;146926;140326;74906;104436;260288;92086;91248;212760;277891;184707;274944;126853;68543;88219;74424;81902;66080;87215;90277;62024;62208;109585;143144;142011;129436;171876.54;170091.05;139109.05 -5204;'013;Central America;1873;Wood-based panels;5922;Export value;1000 USD;1138;1390;1987;2005;1995;2282;2290;2512;3495;3026;3277;3594;4157;5140;4550;6524;9149;13561;11409;18326;10826;8305;16596;15600;16358;9744;7997;8583;8190;6784;7122;19978;17432;23228;55358;40861;37665;23293;33070;61725;24769;26155;39845;44114;42769;58964;36309;25629;30472;25738;29645;39405.12;63237;51660;40778;44003;44844;64867;66694;57195;91286.1;107778.38;74325.38 -5204;'013;Central America;1640;Plywood and LVL;5516;Production;m3;68400;68200;72700;83200;87900;102300;118900;115100;120200;144800;153100;170400;184500;173500;180500;211600;253900;258200;285200;328100;371500;386400;341400;338700;315300;319600;329500;271400;225800;207400;238900;221900;212700;208700;84800;84800;85800;68800;271800;231500;173500;214500;253500;315500;216500;207500;300500;233500;203500;161267;203200;188725;302570;331092;373194;353714;343734;345613;308375;292345;256994;275347;275347 -5204;'013;Central America;1640;Plywood and LVL;5616;Import quantity;m3;8700;8600;10030;12130;8543;13343;16243;19300;21000;20200;15600;17100;18200;31400;30300;31700;23500;25700;30700;33900;29500;18800;19300;25800;27500;15000;28900;51500;79600;116450;228100;183588;307548;261062;120794;120800;211000;268243;321068;549527;413363;391945;510394;530964;533867;546360;596189;652480;391731;627773;601486;587260;567787;575955;685833;895423;824321;873870;812618;895561;1304617;1217301;1079788 -5204;'013;Central America;1640;Plywood and LVL;5622;Import value;1000 USD;545;596;929;1314;1799;2785;3281;3460;3518;3566;3448;4003;4053;7235;6877;8207;6553;7663;10328;15569;13108;7623;8097;10760;10373;7088;10487;18781;22956;28870;58152;98819;118890;104151;43845;45021;47584;62145;120718;231808;169859;157589;203004;251800;282108;305554;299855;370269;246644;307844;320050;338684;332839;377057;404963;435826;371134;457635;331192;327780;539299;553033;486889 -5204;'013;Central America;1640;Plywood and LVL;5916;Export quantity;m3;7800;8500;9800;9800;9200;9900;11400;15500;17800;16700;17600;22600;22300;19500;18900;24200;32900;40600;28200;41600;24100;16700;29300;27200;27700;26400;19000;18400;16400;11400;10800;21404;14811;21739;39002;33200;24600;22277;38929;67452;35050;31409;33746;19749;23067;24277;15820;10981;11229;11592;13035;21822;37969;42044;30306;36706;34140;53836;50927;49888;55126;40660;32193 -5204;'013;Central America;1640;Plywood and LVL;5922;Export value;1000 USD;1103;1262;1539;1665;1702;2090;2197;2346;2811;2833;2898;3207;3743;4783;4204;5723;8486;11493;9255;15144;9001;6741;15199;14080;14838;8779;6800;6791;6261;4917;4531;9128;5836;9948;16628;17235;11042;10210;16190;17809;12537;12723;14185;8599;13671;15484;6786;6835;8199;6910;8583;16728;25419;28497;27224;32091;20412;34187;34359;32300;47267;41411;31923 -5204;'013;Central America;1607;Laminated Veneer Lumber (LVL);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -5204;'013;Central America;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;256;1056 -5204;'013;Central America;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;230;648 -5204;'013;Central America;1646;Particle board and OSB (1961-1994);5516;Production;m3;1500;9800;18900;22900;24500;35000;36000;54000;69300;60300;65600;70400;84700;108300;140500;108600;185300;192500;229200;351400;364600;426800;349700;397600;415000;423400;444500;459800;437800;380800;442800;449800;441400;431700;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5204;'013;Central America;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;100;400;300;200;100;200;1100;1000;900;700;1100;1900;4000;21400;7700;16700;19480;15280;44680;35980;30780;21380;22900;22900;29300;21600;9300;16800;43300;35700;52200;60600;48842;38212;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5204;'013;Central America;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;5;29;24;40;23;48;145;121;114;101;122;786;1057;2414;1453;2646;2932;1954;6060;6165;5955;2034;2571;2571;6615;6061;2900;3947;3871;5800;7018;16029;10927;11879;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5204;'013;Central America;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;11700;9100;14900;8500;7700;6300;6200;6200;4500;6900;10000;9900;8900;11400;30228;31203;42300;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5204;'013;Central America;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;1718;1804;3182;1825;1564;1397;1520;1520;965;1197;1792;1929;1867;2591;5008;9938;11622;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5204;'013;Central America;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;437500;444500;455500;465500;521500;593500;426500;486500;526500;516500;506500;559000;490000;435000;383000;620000;611000;767000;798000;783000;808000;805390;805509;806298;806138;804166;807320;805220;805220 -5204;'013;Central America;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91066;149966;64766;66370;64603;192424;146614;157953;467789;477958;336478;333352;139540;137045;50158;64303;81955;104962;113458;210050;229590;215785;277092;239404;217913;239193;309480.1;327559;289319 -5204;'013;Central America;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27227;38475;14441;16377;15902;60001;26427;29532;68672;73401;58305;60592;45747;48788;32713;31778;36049;64710;65898;71503;78700;80539;91899;92932;89359;82521;134756.73;170890;119707 -5204;'013;Central America;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;155726;101426;99726;39728;49606;175035;47135;44782;170808;251205;158867;248954;109228;55333;73166;60042;65434;39693;41998;38157;21004;16150;51047;42397;54867;34297;50378.09;56479;34167 -5204;'013;Central America;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38585;19440;21577;9001;10320;36971;9268;8979;23007;33330;28070;42863;28651;17888;20731;17606;19174;20093;33882;17467;6265;4625;15477;17956;17106;11008;17024.81;23040;14439 -5204;'013;Central America;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;49;1112;688;21168;20529;20688;72226;82336;80379;89537;90799;90350;60528;61900;87978;81825;103688;79449;98667.27;80342;64910 -5204;'013;Central America;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;21;195;157;5794;5805;5942;14303;18917;18349;23626;27945;23863;22242;25495;27465;26908;23921;19874;38893.45;35463;21341 -5204;'013;Central America;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;52;93;93;42;133;108;93;2436;4522;5867;4179;3817;5656;3740;7020;4030;4539.45;2266;3403 -5204;'013;Central America;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;17;28;158;8;34;59;35;687;1351;1775;1982;1702;1675;1692;1770;1133;2052.29;1210;1068 -5204;'013;Central America;1874;Fibreboard;5516;Production;m3;20000;20000;12400;15200;14000;17000;18000;21000;21000;21000;23200;23200;25300;18000;13700;25300;30000;26000;26000;26000;26000;26000;67000;65000;96000;79000;63000;86000;45000;39000;45000;35000;29000;24000;23400;38000;38000;39800;35400;46000;32000;33000;25000;11000;33000;35000;57000;65000;54000;54000;68000;68000;64000;64000;64000;64000;64000;64000;64000;64000;64000;64000;64000 -5204;'013;Central America;1874;Fibreboard;5616;Import quantity;m3;2300;2700;2700;3900;2800;4422;4739;4318;5054;5055;5054;5896;4949;5843;4343;4343;3548;2900;3800;9600;8700;2100;2300;2000;2300;700;1000;700;1100;7980;800;26594;30485;44799;51261;58360;87960;84581;200130;213184;209506;220711;610989;714299;729236;855346;696083;739788;461881;501358;521055;590363;615270;564485;694793;575000;566654;452269;458156;484954;792228.32;661265.05;576109.05 -5204;'013;Central America;1874;Fibreboard;5622;Import value;1000 USD;565;664;562;939;649;719;798;718;815;809;854;912;895;1107;855;855;961;940;1229;3401;3151;946;1028;870;1019;375;373;306;401;2479;239;9553;5701;8455;16420;15726;20036;27569;59594;62013;62940;66405;129217;148221;161115;186180;149767;186445;178255;199517;209858;246560;268231;244934;264264;217206;191113;187549;210383;172466;360284.4;306532.57;258844.57 -5204;'013;Central America;1874;Fibreboard;5916;Export quantity;m3;300;1300;3900;2500;1500;737;316;1053;6318;1369;2738;2633;1685;1264;2106;4001;3500;1800;1800;;;;;;;;;;;;;12334;6077;6077;800;12300;16000;12901;15901;17801;9901;15057;8206;6897;2721;1620;1712;2187;3691;2682;3340;2129;2726;4209;6535;5535;18742;43171;29197;41221;61833;70686.05;69346.05 -5204;'013;Central America;1874;Fibreboard;5922;Export value;1000 USD;29;122;366;234;152;62;36;76;609;129;240;279;202;166;310;786;648;350;350;;;;;;;;;;;;;5842;1658;1658;145;4186;5046;4082;6560;6945;2964;4453;2653;2178;1011;589;714;898;1508;1163;1853;1897.12;2585;3921;5307;5585;7280;11032;13459;12754;24942;42117.38;26895.38 -5204;'013;Central America;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23400;38000;38000;39800;35400;46000;32000;33000;25000;11000;20000;22000;24000;21000;27000;27000;34000;34000;35000;35000;35000;35000;35000;35000;35000;35000;35000;35000;35000 -5204;'013;Central America;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13661;16860;20760;19791;67931;76240;46400;46712;105573;102179;114593;114435;65397;106219;45778;38780;39425;45190;40463;32996;33738;35149;30210;36697;58405;52241;91805.66;57256.05;41091.05 -5204;'013;Central America;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5011;6082;7398;6547;17130;19971;19887;20310;48738;50734;60534;64926;33780;62300;31959;29694;30976;36499;30872;25693;26553;24327;21211;27143;37696;33731;81381.22;58048.57;41643.57 -5204;'013;Central America;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;10900;10700;1900;4900;6800;9900;15000;8067;6229;2121;1020;1153;1427;394;234;1617;714;1041;1141;242;261;527;327;257;320;349;520.05;519.05 -5204;'013;Central America;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3932;4521;818;3296;3681;2964;4444;2628;2037;866;446;438;496;122;261;983;458.12;744;631;236;241;597;306;223;194;249;243.38;244.38 -5204;'013;Central America;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20000;31000;27000;27000;34000;34000;29000;29000;29000;29000;29000;29000;29000;29000;29000;29000;29000 -5204;'013;Central America;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9700;15100;53500;49082;107591;113937;130206;137914;363297;459015;434613;544187;542244;541606;371396;417962;446617;512723;539187;496203;590646;514605;514152;396252;378779;408292;673942.67;571620;507944 -5204;'013;Central America;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4401;6137;9836;13806;31059;31091;31647;34382;61754;77291;77592;96174;102505;110288;133513;157653;170310;199512;226849;208661;221563;183900;162223;154507;167699;131383;268236.18;233131;202416 -5204;'013;Central America;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;29;62;484;500;451;371;524;1477;751;1029;1022;1305;2927;4455;4225;15017;41860;26491;40540;61353;70071;68679 -5204;'013;Central America;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;7;17;112;117;104;209;278;1034;402;597;1255;1704;3233;4647;5098;6041;10529;12777;12475;24628;41784;26516 -5204;'013;Central America;1650;Other fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13000;13000;13000;13000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -5204;'013;Central America;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9635;17572;19027;27900;26400;13700;15708;24608;23007;32900;36085;142119;153105;180030;196724;88442;91963;44707;44616;35013;32450;35620;35286;70409;25246;22292;19320;20972;24421;26480;32389;27074 -5204;'013;Central America;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2966;1610;1953;7008;3507;2802;7216;11405;10951;11406;11713;18725;20196;22989;25080;13482;13857;12783;12170;8572;10549;10510;10580;16148;8979;7679;5899;4988;7352;10667;15353;14785 -5204;'013;Central America;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4892;2777;2777;800;1400;5300;11001;11001;11001;1;28;77;184;100;149;188;236;1820;1697;694;393;380;141;1838;1049;3198;984;2449;361;131;95;148 -5204;'013;Central America;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1153;475;475;145;254;525;3264;3264;3264;0;2;8;29;28;39;67;124;352;500;273;184;137;57;424;246;642;197;459;85;65;90;135 -5204;'013;Central America;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;20000;20000;12400;15200;14000;17000;18000;21000;21000;21000;23200;23200;25300;18000;13700;25300;30000;26000;26000;26000;26000;26000;67000;65000;96000;79000;63000;86000;45000;39000;45000;35000;29000;24000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5204;'013;Central America;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;2300;2700;2700;3900;2800;4422;4739;4318;5054;5055;5054;5896;4949;5843;4343;4343;3548;2900;3800;9600;8700;2100;2300;2000;2300;700;1000;700;1100;7980;800;16959;12913;25772;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5204;'013;Central America;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;565;664;562;939;649;719;798;718;815;809;854;912;895;1107;855;855;961;940;1229;3401;3151;946;1028;870;1019;375;373;306;401;2479;239;6587;4091;6502;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5204;'013;Central America;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;300;1300;3900;2500;1500;737;316;1053;6318;1369;2738;2633;1685;1264;2106;4001;3500;1800;1800;;;;;;;;;;;;;7442;3300;3300;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5204;'013;Central America;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;29;122;366;234;152;62;36;76;609;129;240;279;202;166;310;786;648;350;350;;;;;;;;;;;;;4689;1183;1183;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5204;'013;Central America;1879;Total fibre furnish;5510;Production;t;216900;239800;264600;281000;337800;354000;380000;393000;427000;847000;944000;1025000;1038000;1160000;1207000;1285000;1411000;1671000;1843500;1548500;1650000;1770600;1734200;1800400;1908500;1852500;1843500;1988500;1861500;1810400;1723100;1578200;1362200;1317200;1440800;1536200;1478600;1638200;1572800;1603800;1419800;1520800;1542800;1372800;1370800;4771800;4785800;4822800;3399800;3404800;3466800;3673800;5375100;5527053;5557300;5550945;5282300;5448300;5259300;5290639;5255739;5317300;5140200 -5204;'013;Central America;1879;Total fibre furnish;5610;Import quantity;t;2200;3500;5600;9300;9800;12500;23300;62700;89800;180500;112000;115300;172500;423228;197012;228769;238822;397094;419800;756600;587700;483900;763500;838200;796600;1133400;1236800;1273600;1319400;1224000;1356100;1470017;1303775;1661250;2381225;1639463;1564919;1928907;1939038;2006642;2131198;2109991;2231842;2698144;2325908;2838601;3423504;3170801;2438152;2550182.1;2437541;2364183;2327510.16;2500522;2501203;2674927;2676072;2682688;2577774;2750180;3057803.5;2998377.44;3377504 -5204;'013;Central America;1879;Total fibre furnish;5622;Import value;1000 USD;143;249;386;672;675;1290;2233;7477;12651;23681;17016;18550;30803;108700;63159;84065;49961;81710;95869;179398;180237;151421;160275;181463;184722;228859;290090;336624;442926;351798;271873;353772;303514;459737;654251;370098;328305;395582;455054;603999;527037;524062;636301;755979;781362;832618;958565;1067538;813629;1187114;1163072;957822;943589;1020765;1003416;1003071;1098145;1220366;1024115;949549;1234560.43;1414390.08;1138127 -5204;'013;Central America;1879;Total fibre furnish;5910;Export quantity;t;;;;6800;8100;12200;8600;11200;15900;17600;9400;9400;8400;16253;11014;14719;20232;17761;22407;26787;23200;31734;31400;31000;27100;27100;35100;34900;36100;13900;19300;32583;29746;36168;66003;92900;74200;65822;259566;262471;159750;166619;257023;418912;304717;344978;393958;509381;368928;541228;742202.5;837673.65;896595.05;822180.85;808323;728862;777126;623753;395836;349170;424087.05;334164.8;358717 -5204;'013;Central America;1879;Total fibre furnish;5922;Export value;1000 USD;;;;1602;1944;3476;2649;2850;3979;3467;1410;1426;1441;2442;1702;1914;5363;5160;5687;7993;7404;10170;10202;11037;10590;10590;10439;11226;11434;2687;3601;6958;8453;8927;22194;15999;10319;7415;42585;54452;37716;38724;64677;69279;56995;60838;66374;89520;51255;95801;131709.5;131712.75;136044.05;126150.04;125945.79;123739;134323;95875;58222;49355;79995.91;73121.38;61375 -5204;'013;Central America;1878;Pulp for paper;5510;Production;t;216900;239800;264600;281000;337800;354000;380000;393000;427000;474000;474000;482000;513000;565000;551000;619000;672000;708000;723500;676500;748000;752600;750200;785400;831500;783500;794500;961500;825500;784400;713800;568800;352800;301800;425400;520800;463200;622800;554800;585800;401800;502800;524800;354800;345800;346800;345800;361800;211800;191800;177800;151800;168800;309800;326800;325800;313000;313000;311000;309900;275000;277000;273000 -5204;'013;Central America;1878;Pulp for paper;5610;Import quantity;t;2200;3500;5600;9300;9800;12500;23300;62700;89800;133500;95000;111300;138500;252100;141700;154800;83200;124000;155000;250200;244500;208100;249700;293700;340700;367800;443400;416800;265900;298900;351800;401961;620236;591422;767510;429948;358104;463851;536023;522696;677179;676586;778167;876445;856372;1267759;1198231;1310258;863693;883248.1;852474;858455;858779.16;881249;894582;996516;1060620;1063107;890668;977446;896228.17;688189.44;679630 -5204;'013;Central America;1878;Pulp for paper;5622;Import value;1000 USD;143;249;386;672;675;1290;2233;7477;12651;20113;15610;18338;28029;89129;57100;72517;33022;55511;70201;129506;147074;125470;91883;109368;125154;133706;161971;161603;192805;183221;163920;203557;210073;283150;399144;214956;174130;204957;259228;321857;328007;326815;388204;451889;470570;547959;583439;713502;491493;701087;681709;572751;573992;615259;603843;597788;668691;767245;621761;546609;628655.54;607831.08;567063 -5204;'013;Central America;1878;Pulp for paper;5910;Export quantity;t;;;;6800;8100;12200;8600;11200;15900;12600;4400;4400;4400;4400;4400;4400;9200;9200;9200;12100;12100;18300;18300;18300;18300;18300;18300;18300;18300;1500;1100;3073;3816;3282;9003;22500;9400;1214;2887;15168;37804;38634;39120;38782;21601;22101;1085;1555;935;869;935.5;1076.65;1010.05;1434.85;2127;8849;13988;4553;3732;399;348;1818.81;2471 -5204;'013;Central America;1878;Pulp for paper;5922;Export value;1000 USD;;;;1602;1944;3476;2649;2850;3979;3250;1210;1210;1210;1210;1210;1210;4631;4631;4631;6100;6100;9200;9200;9200;9200;9200;9200;9200;9200;940;970;3094;3612;3349;8687;10961;4959;594;1467;9018;26876;27198;27438;27153;13665;13880;441;952;479;513;594.5;662.75;595.05;1725.04;2227.79;6082;7152;2607;2044;385;427;1945.38;2357 -5204;'013;Central America;1875;Wood pulp;5510;Production;t;171200;179300;194400;199900;238000;244000;266000;279000;285000;320000;309000;327000;346000;362000;364000;411000;433000;472000;461500;446500;463000;480600;453200;507400;576500;550500;560500;660500;524500;523400;469800;321800;224800;177800;301400;359800;321400;433800;358800;375800;220800;342800;357800;237800;225800;223800;219800;223800;174800;154800;140800;141800;144800;117800;138800;137800;125000;125000;123000;121900;87000;89000;85000 -5204;'013;Central America;1875;Wood pulp;5610;Import quantity;t;18300;18900;24300;28000;34100;36800;56600;101200;135200;188500;130900;130700;153500;267100;156700;169800;87000;127800;158800;254000;248300;211900;253500;297500;344500;371600;447200;420600;269700;302700;355600;438067;664933;617123;881765;449748;375604;488379;576074;543047;680414;680542;779237;883765;864041;1279619;1242066;1364010;894880;918461.1;914263;893342;902289.16;913956;925798;1030545;1081697;1092555;917940;984581;901642.17;688613.44;679652 -5204;'013;Central America;1875;Wood pulp;5622;Import value;1000 USD;3476;3437;4257;4543;5469;6084;9126;15194;21751;31113;23705;22738;31479;92579;60550;75967;34737;57226;71916;131221;148789;127185;93598;111083;126869;135421;163686;163318;194520;184936;165635;232599;238478;305135;463524;239879;195201;229253;291773;339315;329839;328784.1;387386;457676;476513;555955;622501;766537;538270;754330;752310;637227;657013;665961;647945;650646;696676;806123;654385;552729;634125.54;603562.08;562395 -5204;'013;Central America;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;308;511;3;4903;22100;9300;2737;4210;17591;37027;37934;38419;38089;21607;22107;1091;1400;918;1081;996.5;993.65;953.05;1467.85;2178;8878;14317;4668;3746;258;260;1769.81;2367 -5204;'013;Central America;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;159;253;1;3814;10815;4915;1196;2023;10311;26328;26681;26920;26629;13656;13871;432;756;435;832;548.5;473.75;467.05;1669.04;2220;5795;7515;2661;2058;244;312;1674.38;2059 -5204;'013;Central America;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -5204;'013;Central America;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42445;38774;45482;19922;27624;28689;23465 -5204;'013;Central America;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24969;27481;27962;10714;17378.67;21590;16552 -5204;'013;Central America;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13152;3008;3011;12;12;4;7 -5204;'013;Central America;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6441;1336;1340;18;18;14;15 -5204;'013;Central America;1654;Mechanical wood pulp (1961-2016);5510;Production;t;48300;51600;49700;44400;56000;60000;64000;62000;59000;66000;62000;62000;61000;58000;51000;54000;54000;60000;64500;50500;53000;55600;58200;67400;105500;119500;114500;114500;110500;130400;110800;41800;15800;17800;22400;35800;12800;20800;48800;38800;48800;173800;180800;44800;45800;46800;46800;45800;36800;6800;2800;2800;19800;10800;2800;2800;;;;;;; -5204;'013;Central America;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;2200;3500;5600;9300;9800;7500;14600;15100;14000;24100;18200;25900;25800;37900;15400;17400;14000;16700;20500;26900;400;400;9600;9600;9600;9600;9600;9600;9600;9600;9600;18708;3097;661;53400;16083;22739;2800;1300;1100;100;123;10617;25195;22283;9821;9821;11408;196;187;1673;326;77;608;1579;44;;;;;;; -5204;'013;Central America;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;143;249;386;672;675;554;1053;1201;1377;2547;2003;2902;3333;8985;3906;4913;3693;4603;5563;7284;284;284;3635;3635;3635;3635;3635;3635;3635;3635;3635;7763;949;270;15692;4845;6628;1007;400;303;8;26;2579;3331;7415;3241;3241;5627;173;203;1707;327;153;645;699;79;;;;;;; -5204;'013;Central America;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;39;3;3;200;300;200;200;200;0;0;0;1;1;33;33;33;33;6;9.3;11.05;10.05;62;12;1;;;;;;; -5204;'013;Central America;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;20;1;1;93;111;77;77;77;0;0;0;0;0;0;0;0;0;5;19.3;18.05;27.05;63;23;4;;;;;;; -5204;'013;Central America;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5600;0;0;37000;30000;30000;32000;32000;32000;32000;32000;32000;0;0;0;0;0;0;0;0;;;;;;; -5204;'013;Central America;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;37216;64753;80173;52646;36146;36546;38340;21367;21340;20640;20479;26856;49146;56390;107044;81659;84444;45005;43728;48205;46061;42085;38366;41574;75411;;;;;;; -5204;'013;Central America;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;16043;20467;31406;32950;13815;14045;13275;7097;7100;7654;7557;11586;20520;25538;40441;34509;39657;21130;30980;33254;28097;27652;26148;24422;37973;;;;;;; -5204;'013;Central America;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7200;7200;0;0;0;0;0;0;23;23;23;23;23;23;7;7;7;18;257;351;7178;;;;;;; -5204;'013;Central America;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3986;3986;0;0;0;0;0;0;5;5;5;5;5;5;15;15;15;15;802;918;4552;;;;;;; -5204;'013;Central America;1656;Chemical wood pulp;5510;Production;t;122900;127700;144700;155500;182000;184000;202000;217000;226000;254000;247000;265000;285000;304000;313000;357000;379000;412000;397000;396000;410000;425000;395000;440000;471000;431000;446000;546000;414000;393000;359000;280000;209000;160000;279000;324000;303000;412000;309000;299000;141000;138000;144000;160000;147000;144000;140000;145000;137000;147000;138000;139000;125000;107000;136000;135000;125000;125000;123000;121900;87000;89000;85000 -5204;'013;Central America;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;47600;75800;109400;71400;81000;111400;209800;123600;134700;66500;105200;129900;214100;238600;201900;237300;278500;330200;357300;433500;406900;253600;288000;340200;342768;541557;502355;658519;364119;285019;410102;510045;497045;653397;653928;736649;799287;765231;1133700;1097532;1207226;812738;835596.1;796849;807061;813838.16;839734;847475;911719;1007281;1014617;843118;954732;863447.17;651075.44;647605 -5204;'013;Central America;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;6276;11274;17566;12726;14744;24255;78273;51793;66718;28443;50272;62866;117680;143795;122408;87045;103166;121080;129632;158094;157726;187170;178686;158485;177136;184550;248130;348209;189881;147144;185288;248481;311908;317395;316646;369209;424930;423793;488600;537328;661553;462732;664229;636485;535394;541847;584641;573746;551597;630375;728456;590390;531442;604275.87;568432.08;532458 -5204;'013;Central America;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;270;470;0;4900;14300;1600;814;2287;14168;37004;37934;38419;38042;21560;22028;1012;1321;738;725;781.2;897.6;847;964.85;1631;1515;697;1415;522;146;148;1665.81;2320 -5204;'013;Central America;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;134;227;0;3813;6367;708;366;1193;8377;26312;26681;26920;26618;13645;13860;421;745;304;303;332.2;395.7;380;645.03;1120;1080;513;1103;520;170;238;1604.38;2023 -5204;'013;Central America;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;82000;99100;103000;114000;120000;127000;158000;150000;152000;172000;179000;186000;219000;224000;217000;223000;160000;178000;182000;194000;181000;194000;190000;219000;249000;176000;165000;178000;97000;88000;74000;87000;101000;200000;114000;87000;70000;27000;45000;47000;47000;49000;47000;53000;50000;45000;45000;40000;39000;28000;9000;40000;41000;39000;39000;38000;37600;35000;32000;25000 -5204;'013;Central America;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8293;3298;3200;10619;6919;6019;7299;10199;12599;18699;18718;20004;15668;8363;13430;13654;7846;7197;9648;7118;7762;5157;5636;5494;5358;12720;12507;3820;3952;7936;230.44;168 -5204;'013;Central America;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3494;1084;1682;2627;3428;2956;2976;4444;3338;8519;8561;9032;6432;3485;5200;5916;3206;3346;5342;4431;4790;2744;4172;3899;3825;9098;8958;2697;2913;7649;199.08;110 -5204;'013;Central America;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;3000;7000;1100;104;104;104;104;104;104;709;709;709;709;709;609;609;609;697;660;4;4;4;44;44;4;19;19;179;179 -5204;'013;Central America;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;2135;3153;485;53;53;53;53;53;53;240;240;240;240;240;190;190;190;243;225;3;3;3;37;37;3;29;29;64;64 -5204;'013;Central America;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;66600;75900;74000;79000;86000;84000;85000;85000;94000;86000;106000;112000;123000;141000;176000;153000;224000;222000;232000;189000;247000;264000;239000;227000;297000;238000;228000;181000;183000;121000;86000;192000;223000;103000;297000;221000;228000;113000;92000;96000;112000;97000;96000;86000;94000;91000;101000;98000;100000;97000;98000;96000;94000;86000;86000;85000;84300;52000;57000;60000 -5204;'013;Central America;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;354400;432400;405900;252300;288000;340200;331078;534463;497846;633900;353200;276900;396900;494044;478944;623033;620840;706949;768303;742394;1078783;1044948;1174573;804544;825336;785591;797376;807492;833560;841615;906162;994368;1001951;838958;950608;855377.17;649944;646552 -5204;'013;Central America;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;128438;157438;156995;186167;178686;158485;171623;181477;245397;336102;184023;143064;178707;240074;303974;301954;300294;353617;408018;410299;468937;515972;637140;457856;657927;628753;528832;537864;579914;569408;547412;620967;719186;587200;528184;596366.87;567810;531978 -5204;'013;Central America;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;269;469;0;1900;7300;500;710;2183;14064;36900;37830;38239;37089;20689;20901;130;551;94;22;78;68;55;960.67;1627;1510;634;1371;518;127;128;1485;2139 -5204;'013;Central America;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;133;226;0;1678;3214;223;313;1140;8324;26259;26628;26813;26276;13276;13427;111;447;67;56;85;72;75;640.03;1117;1074;464;1065;514;138;204;1536;1950 -5204;'013;Central America;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -5204;'013;Central America;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;193;159;340;172;134;901;885 -5204;'013;Central America;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;310;312;493;345;260;423;370 -5204;'013;Central America;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;0;0;0;1;1.81;2 -5204;'013;Central America;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;1;3;3;5;4.38;9 -5204;'013;Central America;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;5100;4800;4000;4000;6000;8000;9000;10000;12000;11000;17000;7000;5000;5000;9000;11000;10000;8000;9000;10000;10000;11000;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -5204;'013;Central America;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;0;0;400;0;0;300;100;900;900;136;105;105;2105;2111;2111;118;105.1;472;224;251.16;0;8;0;;;;;;; -5204;'013;Central America;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;0;0;83;0;0;131;46;467;467;75;38;38;680;684;684;55;40;389;188;143;2;7;0;;;;;;; -5204;'013;Central America;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;1800;2200;3000;5000;5000;7000;2000;2000;7000;16000;2000;8000;10000;9000;10000;10000;2000;2000;2000;2000;2000;2000;2000;0;0;0;0;0;0;0;0;0;0;0;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;0;0;0;0;0;0;;;;;;; -5204;'013;Central America;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3397;3713;1309;14000;3600;2100;5903;5502;5402;10765;13470;9560;15211;14369;39382;36819;22696;879;507;3668;1699;938;538;358;199;;;;;;; -5204;'013;Central America;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2019;1971;1051;9480;2347;1124;3605;3832;4550;6455;7324;6485;10442;9971;13783;14756;20523;1475;920;2912;1584;1096;553;432;360;;;;;;; -5204;'013;Central America;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;244;162;418;173;61;35;94;94.2;132.6;132;0.19;0;1;;;;;;; -5204;'013;Central America;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;102;129;193;70;58;47;57;57.2;80.7;80;2;0;3;;;;;;; -5204;'013;Central America;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 -5204;'013;Central America;1667;Dissolving wood pulp;5610;Import quantity;t;16100;15400;18700;18700;24300;24300;33300;38500;45400;55000;35900;19400;15000;15000;15000;15000;3800;3800;3800;3800;3800;3800;3800;3800;3800;3800;3800;3800;3800;3800;3800;39375;55526;33934;117200;33400;31300;37137;43362;23562;6277;6012;5115;10137;20137;29054;53054;60932;36941;38950;67536;39894;46289;35248;35170;43371;31971;39164;29340;9927;10571;8849;8582 -5204;'013;Central America;1667;Dissolving wood pulp;5622;Import value;1000 USD;3333;3188;3871;3871;4794;4794;6893;7717;9100;11000;8095;4400;3450;3450;3450;3450;1715;1715;1715;1715;1715;1715;1715;1715;1715;1715;1715;1715;1715;1715;1715;31657;32512;25329;66673;31338;27384;29683;35795;20004;4782;4555.1;4012;8895;19767;23673;47423;59700;54235;58918;80864;73409;87361;54527;49078;60997;41332;50186;36033;10573;12471;13540;13385 -5204;'013;Central America;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;0;0;400;200;1723;1723;3223;23;0;0;23;23;23;23;23;124;343;199;78;78;184;184;184;468;245;213;100;100;100;40 -5204;'013;Central America;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;0;0;369;110;753;753;1857;16;0;0;6;6;6;6;6;126;509;182;45;45;159;159;159;561;222;198;56;56;56;21 -5204;'013;Central America;1668;Pulp from fibres other than wood;5510;Production;t;45700;60500;70200;81100;99800;110000;114000;114000;142000;154000;165000;155000;167000;203000;187000;208000;239000;236000;262000;230000;285000;272000;297000;278000;255000;233000;234000;301000;301000;261000;244000;247000;128000;124000;124000;161000;141800;190000;197000;211000;182000;161000;168000;118000;121000;124000;127000;139000;38000;38000;37000;10000;24000;192000;188000;188000;188000;188000;188000;188000;188000;188000;188000 -5204;'013;Central America;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3269;10829;8233;2945;13600;13800;12609;3311;3211;3042;2056;4045;2817;12468;17194;9219;7180;5754;3737;5747;5007;2779;2541;3954;9342;10894;9716;2068;2792;5157;8425;8560 -5204;'013;Central America;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2615;4107;3344;2293;6415;6313;5387;3250;2546;2950;2586;4830;3108;13824;15677;8361;6665;7458;5675;10263;8933;4340;3825;4976;8139;13347;11308;3409;4453;7001;17809;18053 -5204;'013;Central America;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;6800;8100;12200;8600;11200;15900;12600;4400;4400;4400;4400;4400;4400;9200;9200;9200;12100;12100;18300;18300;18300;18300;18300;18300;18300;18300;1500;1100;2767;3307;3279;4100;800;300;200;400;800;800;700;701;716;17;17;17;178;141;131;138;161;135;151;133;155;139;130;199;241;188;149;144 -5204;'013;Central America;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;1602;1944;3476;2649;2850;3979;3250;1210;1210;1210;1210;1210;1210;4631;4631;4631;6100;6100;9200;9200;9200;9200;9200;9200;9200;9200;940;970;2941;3365;3348;4873;515;154;151;197;564;564;517;518;530;15;15;15;202;170;190;228;234;173;215;166.79;446;198;168;184;197;171;327;319 -5204;'013;Central America;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1021;1133;1333;1329;4447;6757;11665;13079;13604;12476.4;4523;5663;5870;6688;7028;4533;5391;5887;9429;8577;6543.71;5996.61;6144 -5204;'013;Central America;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;335;401;715;684;2091;2978;5041;6090;3435.2;7872.1;2832;3449;3388;3829;3827;2102;2938;3371;6005;4880;3998;5366.79;6551 -5204;'013;Central America;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;147;74;74;74;186;186;316;292;86.3;92.4;287;227;59;446;667;721;1031;566;297;772;772.39;772.39 -5204;'013;Central America;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;5;5;5;8;8;140;54;40.6;48.6;90;169;57;107;123;205;212;135;188;371;374.93;374.93 -5204;'013;Central America;1669;Recovered paper;5510;Production;t;;;;;;;;;;373000;470000;543000;525000;595000;656000;666000;739000;963000;1120000;872000;902000;1018000;984000;1015000;1077000;1069000;1049000;1027000;1036000;1026000;1009300;1009400;1009400;1015400;1015400;1015400;1015400;1015400;1018000;1018000;1018000;1018000;1018000;1018000;1025000;4425000;4440000;4461000;3188000;3213000;3289000;3522000;5206300;5217253;5230500;5225145;4969300;5135300;4948300;4980739;4980739;5040300;4867200 -5204;'013;Central America;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;47000;17000;4000;34000;171128;55312;73969;155622;273094;264800;506400;343200;275800;513800;544500;455900;765600;793400;856800;1053500;925100;1004300;1068056;683539;1069828;1613715;1209515;1206815;1465056;1403015;1483946;1454019;1433405;1453675;1821699;1469536;1570842;2225273;1860543;1574459;1666934;1585067;1505728;1468731;1619273;1606621;1678411;1615452;1619581;1687106;1772734;2161575.34;2310188;2697874 -5204;'013;Central America;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;3568;1406;212;2774;19571;6059;11548;16939;26199;25668;49892;33163;25951;68392;72095;59568;95153;128119;175021;250121;168577;107953;150215;93441;176587;255107;155142;154175;190625;195826;282142;199030;197247;248097;304090;310792;284659;375126;354036;322136;486027;481363;385071;369597;405506;399573;405283;429454;453121;402354;402940;605904.9;806559;571064 -5204;'013;Central America;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;5000;5000;5000;4000;11853;6614;10319;11032;8561;13207;14687;11100;13434;13100;12700;8800;8800;16800;16600;17800;12400;18200;29510;25930;32886;57000;70400;64800;64608;256679;247303;121946;127985;217903;380130;283116;322877;392873;507826;367993;540359;741267;836597;895585;820746;806196;720013;763138;619200;392104;348771;423739.05;332346;356246 -5204;'013;Central America;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;217;200;216;231;1232;492;704;732;529;1056;1893;1304;970;1002;1837;1390;1390;1239;2026;2234;1747;2631;3864;4841;5578;13507;5038;5360;6821;41118;45434;10840;11526;37239;42126;43330;46958;65933;88568;50776;95288;131115;131050;135449;124425;123718;117657;127171;93268;56178;48970;79568.91;71176;59018 -5204;'013;Central America;1876;Paper and paperboard;5510;Production;t;395700;435800;478300;539700;605700;648000;699800;753900;836700;932000;946000;1028600;1160600;1298500;1224000;1398500;1503600;1657800;1757400;2055700;1035200;2013000;2107000;2329000;2448100;2546100;2650900;3451400;3371400;2959400;2982400;2911400;2533400;2608400;3232900;3284500;3714000;3875000;3985999;4079000;4270000;4231000;4393000;4933000;5090100;5125000;4831000;4705000;4810000;4964520;4942208;5036208;5076208;5330721;5787429;6146429;6226429;6427429;6252366;6248502;6733429;6920429;6641429 -5204;'013;Central America;1876;Paper and paperboard;5610;Import quantity;t;140800;168830;212115;268300;371900;509400;483700;511500;548500;731900;591000;606600;573400;633100;553900;668800;939300;579700;502100;876600;899800;868800;644500;467800;628400;533200;474800;560800;679400;755900;897600;1487157;1436236;1412571;1166032;1389100;1563200;1771142;2485395;3121389;2255153;2554661;2917115;3197980;3468504;4119329;4529999;4775054;3105229;3877715;4057326;4201564;4537373;4654111;4701601;4878718;5445659;5693992;5758273;4978395;5464556.1;5346881;4843940 -5204;'013;Central America;1876;Paper and paperboard;5622;Import value;1000 USD;28165;32767;39810;49057;72545;92717;87965;85387;95100;114935;111978;115005;126072;207443;194251;293650;440646;274284;303539;624276;627076;706185;431348;309165;407677;390197;363524;411918;477359;481140;597513;919162;855036;871801;864348;1075445;1276108;1248570;1795757;2096237;1633631;1867209;2077992;2345401;2551275;3098786;3166965;3650272;2720471;3429182;3678786;3907048;4129483;4267368;3957699;3958370;4481438;4945316;4680727;3829451;4988357.9;6234357;4996496 -5204;'013;Central America;1876;Paper and paperboard;5910;Export quantity;t;358;1200;1700;1500;1500;2900;3600;5800;8200;10600;13500;16400;18900;17300;14000;15500;18100;12400;23900;38700;30300;35900;43400;33300;32800;34000;160100;200700;138600;98900;79700;246107;138221;153949;199994;331823;304800;261407;280716;239609;202276;212793;220463;304593;345301;393278;441170;559351;304714;273124;290051;330000;369275;393900;425842;490519;490498;532578;351803;344958;482378.3;376423.22;262843.07 -5204;'013;Central America;1876;Paper and paperboard;5922;Export value;1000 USD;92;299;524;431;426;870;1145;2005;2812;3824;5912;12460;7588;11044;9217;10195;12048;8609;18785;33663;34273;30905;38034;30173;21128;21920;103183;153430;92466;70838;78785;88082;67688;73518;153894;217302;237205;184721;175393;142853;144693;144426;200256;246932;265039;291122;300732;407338;298249;328012;373369;413504;461792;528197;539551;599823;593631;609387;408684;391040;541311.97;486940.43;386165.49 -5204;'013;Central America;2042;Graphic papers;5510;Production;t;97300;108700;111600;121700;148600;153800;146000;158500;169000;168700;170800;190500;197500;242300;294600;360000;406300;447000;469500;656700;571000;522000;571000;719000;725100;829100;828000;1035000;1035000;936000;943000;844000;688000;620000;791500;809500;972000;977000;986000;960000;953000;962000;998000;1055000;1062100;1050000;967000;991000;944000;891089;889183;857183;744183;840368;876809;865809;817809;800809;661367;527398;493809;571809;568809 -5204;'013;Central America;2042;Graphic papers;5610;Import quantity;t;114000;128230;123215;141700;170700;206600;216700;215400;254300;418700;249500;248000;238700;271200;304400;338000;611300;229500;157600;264000;371900;328700;250000;155700;190900;171200;150600;143000;150400;200500;297400;737224;578246;516189;286895;288500;369000;709668;872908;1245032;928556;969449;1033565;1011851;1062765;1540906;1610181;1663457;1158042;1362775;1320079;1429287;1409395;1411280;1358801;1237664;1313655;1390256;1520223;942495;1111923.44;1134663;935112 -5204;'013;Central America;2042;Graphic papers;5622;Import value;1000 USD;19234;22009;22172;24358;35627;38808;35939;35803;43705;57614;46515;48103;50382;90803;112597;157952;301083;117290;84174;186795;249076;280520;224376;118581;169388;157455;156049;132447;137175;136661;198260;481903;339510;358735;275898;250161;314587;561135;645804;786282;774273;799383;707265;773536;898763;1152871;1126767;1223103;1082732;1314269;1328134;1395257;1340879;1336664;1173324;1067876;1096248;1229267;1130024;729059;933334.28;1515717;1148402 -5204;'013;Central America;2042;Graphic papers;5910;Export quantity;t;;;;;;200;600;2700;2700;4100;3700;4900;9100;4700;4900;6700;7900;1000;8700;13500;8600;5000;5800;3500;2300;900;900;900;900;1200;900;47841;27233;6474;37794;59023;52300;93835;57403;60939;61839;39339;31484;48878;56885;78736;63315;58752;39790;45484;38173;32786;27331;28459;33487;24870;36135;59834;52463;37031;25423.86;32780;26744 -5204;'013;Central America;2042;Graphic papers;5922;Export value;1000 USD;;;;;;54;264;942;978;1569;1468;1883;4213;4751;4602;5327;6031;790;7125;12614;10287;5577;5928;3623;2289;1378;1378;1272;1372;1378;1089;26475;13655;3661;32602;41437;33968;58210;34850;36586;44432;20278;22548;30718;42478;58870;45801;46135;54747;71078;59055;36464;38904;54624;52419;47031;51760;73984;51459;34669;34237.86;48668;39912 -5204;'013;Central America;1671;Newsprint;5510;Production;t;16900;23400;21800;15500;21700;23000;37000;37000;31000;40000;38000;40000;39000;40000;29600;56000;90300;84000;95000;116000;129000;125000;157000;199000;260100;367100;351000;420000;420000;398000;401000;289000;216000;214000;272500;286500;330000;334000;276000;272000;265000;212000;219000;278000;282000;297000;260000;273000;248000;218000;265000;236000;166000;179050;174731;177731;122731;115731;93731;85177;78731;77731;74731 -5204;'013;Central America;1671;Newsprint;5610;Import quantity;t;103300;117000;108300;125300;119800;135300;150900;145800;170000;163700;110000;102200;149400;187700;224300;229500;339500;114400;104300;166300;279100;189700;114500;78800;86200;78900;57900;70500;70600;117700;162400;206107;267878;315184;145500;136200;192800;222132;301183;338027;309430;309447;333546;315697;265257;362174;437475;499558;257454;327195;290568;311421;298539;288051;259577;231832;254265;250479;160881;108860;137436.09;135248;129433 -5204;'013;Central America;1671;Newsprint;5622;Import value;1000 USD;15257;17867;16783;18787;17935;19944;22889;21917;25905;26411;18434;18267;27769;56065;74252;93689;139534;47847;45596;90902;170124;113539;57503;40955;44437;37670;29531;37850;38349;61802;84526;113383;136017;153362;100338;91344;111690;132007;163025;180294;182480;175412;166129;166915;157459;186993;222250;255978;162706;201499;192145;216813;204836;193624;158914;129853;140196;121983;101978;58150;80072.54;107961;105412 -5204;'013;Central America;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;100;100;;;;;;;;;;;;;;;;2480;2075;5630;35400;31900;31900;61890;32200;37300;46800;24460;13848;19741;13038;10837;12068;13221;10549;11414;10777;10714;5236;2352;1887;400;1413;2682;856;2364;1969.17;1813;2531 -5204;'013;Central America;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;24;95;;;;;;;;;;;;;;;;1493;868;2515;29262;18656;15159;32177;13875;17091;30985;6984;6280;7350;6019;4783;5052;6310;5610;6296;6136;5993;3525;1597;1280;164;701;955;578;2206;2630.52;2605;3964 -5204;'013;Central America;1674;Printing and writing papers;5510;Production;t;80400;85300;89800;106200;126900;130800;109000;121500;138000;128700;132800;150500;158500;202300;265000;304000;316000;363000;374500;540700;442000;397000;414000;520000;465000;462000;477000;615000;615000;538000;542000;555000;472000;406000;519000;523000;642000;643000;710000;688000;688000;750000;779000;777000;780100;753000;707000;718000;696000;673089;624183;621183;578183;661318;702078;688078;695078;685078;567636;442221;415078;494078;494078 -5204;'013;Central America;1674;Printing and writing papers;5610;Import quantity;t;10700;11230;14915;16400;50900;71300;65800;69600;84300;255000;139500;145800;89300;83500;80100;108500;271800;115100;53300;97700;92800;139000;135500;76900;104700;92300;92700;72500;79800;82800;135000;531117;310368;201005;141395;152300;176200;487536;571725;907005;619126;660002;700019;696154;797508;1178732;1172706;1163899;900588;1035580;1029511;1117866;1110856;1123229;1099224;1005832;1059390;1139777;1359342;833635;974487.35;999415;805679 -5204;'013;Central America;1674;Printing and writing papers;5622;Import value;1000 USD;3977;4142;5389;5571;17692;18864;13050;13886;17800;31203;28081;29836;22613;34738;38345;64263;161549;69443;38578;95893;78952;166981;166873;77626;124951;119785;126518;94597;98826;74859;113734;368520;203493;205373;175560;158817;202897;429128;482779;605988;591793;623971;541136;606621;741304;965878;904517;967125;920026;1112770;1135989;1178444;1136043;1143040;1014410;938023;956052;1107284;1028046;670909;853261.74;1407756;1042990 -5204;'013;Central America;1674;Printing and writing papers;5910;Export quantity;t;;;;;;200;600;2700;2700;4100;3700;4900;9100;4700;4800;6600;7900;1000;8700;13500;8600;5000;5800;3500;2300;900;900;900;900;1200;900;45361;25158;844;2394;27123;20400;31945;25203;23639;15039;14879;17636;29137;43847;67899;51247;45531;29241;34070;27396;22072;22095;26107;31600;24470;34722;57152;51607;34667;23454.69;30967;24213 -5204;'013;Central America;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;54;264;942;978;1569;1468;1883;4213;4751;4578;5232;6031;790;7125;12614;10287;5577;5928;3623;2289;1378;1378;1272;1372;1378;1089;24982;12787;1146;3340;22781;18809;26033;20975;19495;13447;13294;16268;23368;36459;54087;40749;39825;49137;64782;52919;30471;35379;53027;51139;46867;51059;73029;50881;32463;31607.34;46063;35948 -5204;'013;Central America;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;7867;15330;15330;15330;15330;15330;15330;15330;15330;15330 -5204;'013;Central America;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38560;46486;121593;50253;52352;70773;103895;116180;193253;133981;89404;88340;102630;102726;99306;96789;90729;70387;78851;107430;133206;124120;66480;62038.9;47979;70151 -5204;'013;Central America;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23163;28147;53412;34644;36735;53696;71055;95675;109921;95760;71901;86916;96302;99515;96065;94084;86461;67583;69648;90067;104400;92205;46030;50563.78;59327;77266 -5204;'013;Central America;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;47;47;45;46;580;1580;4061;3587;1290;1514;1745;1190;2205;1239;693;2271;881;1401;12319;3768;1560;503;3068;734 -5204;'013;Central America;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;51;51;48;54;451;919;2534;2446;1188;2473;2665;1760;3406;1625;782;2842;1352;2013;12609;3674;1804;1050.3;4772;1284 -5204;'013;Central America;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;578500;638800;619000;619000;681000;708000;706000;706000;16000;16000;16000;16000;16089;15183;15183;15183;15258;15404;15404;15404;15404;5269;3202;3404;2404;2404 -5204;'013;Central America;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;166622;209112;474451;233088;267537;389190;289100;308828;416191;473182;471355;353059;370605;375183;436861;437709;464867;442525;423210;448077;443975;774680;407196;437365.04;484456;378803 -5204;'013;Central America;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;149499;165228;225032;205289;234517;256862;245987;291582;307924;371904;398400;343810;415446;420060;468445;457001;480976;391778;407176;412629;448204;483866;286416;333085.38;687578;525570 -5204;'013;Central America;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30855;22934;22534;13934;13863;15954;16563;24830;28765;41038;36551;19871;22246;17206;15856;15911;13617;15625;16723;25331;38002;27983;18010;16887.69;19609;18213 -5204;'013;Central America;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24564;18438;18206;12158;12149;13680;13722;20875;19811;32377;29945;19585;25896;21128;20175;19924;17973;16510;19354;27425;40728;28029;16199;20063.38;29557;26743 -5204;'013;Central America;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64500;71200;69000;69000;69000;71000;71000;74100;737000;691000;702000;680000;657000;609000;606000;563000;638193;671344;657344;664344;654344;547037;423689;396344;476344;476344 -5204;'013;Central America;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;282354;316127;310961;335785;340113;240056;303159;372500;569288;565543;603140;459189;562345;551602;581699;576358;567633;586312;503771;503883;562596;460542;359959;475083.41;466980;356725 -5204;'013;Central America;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;256466;289404;327544;351860;352719;230578;289579;354047;548033;436853;496824;489300;601022;616414;613934;584958;575603;555049;461199;453356;554680;451975;338463;469612.58;660851;440154 -5204;'013;Central America;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1079;2258;1058;1058;971;1636;11994;17437;35073;6622;7690;7856;10079;9000;4011;4945;11797;13704;6866;7990;6831;19856;15097;6064;8290;5266 -5204;'013;Central America;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1453;2521;1238;1238;1097;2534;9195;14665;31742;5926;8692;27079;36221;30031;6890;13830;34272;31787;26161;21621;19692;19178;14460;10493.66;11734;7921 -5204;'013;Central America;1675;Other paper and paperboard;5510;Production;t;298400;327100;366700;418000;457100;494200;553800;595400;667700;763300;775200;838100;963100;1056200;929400;1038500;1097300;1210800;1287900;1399000;464200;1491000;1536000;1610000;1723000;1717000;1822900;2416400;2336400;2023400;2039400;2067400;1845400;1988400;2441400;2475000;2742000;2898000;2999999;3119000;3317000;3269000;3395000;3878000;4028000;4075000;3864000;3714000;3866000;4073431;4053025;4179025;4332025;4490353;4910620;5280620;5408620;5626620;5590999;5721104;6239620;6348620;6072620 -5204;'013;Central America;1675;Other paper and paperboard;5610;Import quantity;t;26800;40600;88900;126600;201200;302800;267000;296100;294200;313200;341500;358600;334700;361900;249500;330800;328000;350200;344500;612600;527900;540100;394500;312100;437500;362000;324200;417800;529000;555400;600200;749933;857990;896382;879137;1100600;1194200;1061474;1612487;1876357;1326597;1585212;1883550;2186129;2405739;2578423;2919818;3111597;1947187;2514940;2737247;2772277;3127978;3242831;3342800;3641054;4132004;4303736;4238050;4035900;4352632.66;4212218;3908828 -5204;'013;Central America;1675;Other paper and paperboard;5622;Import value;1000 USD;8931;10758;17638;24699;36918;53909;52026;49584;51395;57321;65463;66902;75690;116640;81654;135698;139563;156994;219365;437481;378000;425665;206972;190584;238289;232742;207475;279471;340184;344479;399253;437259;515526;513066;588450;825284;961521;687435;1149953;1309955;859358;1067826;1370727;1571865;1652512;1945915;2040198;2427169;1637739;2114913;2350652;2511791;2788604;2930704;2784375;2890494;3385190;3716049;3550703;3100392;4055023.62;4718640;3848094 -5204;'013;Central America;1675;Other paper and paperboard;5910;Export quantity;t;358;1200;1700;1500;1500;2700;3000;3100;5500;6500;9800;11500;9800;12600;9100;8800;10200;11400;15200;25200;21700;30900;37600;29800;30500;33100;159200;199800;137700;97700;78800;198266;110988;147475;162200;272800;252500;167572;223313;178670;140437;173454;188979;255715;288416;314542;377855;500599;264924;227640;251878;297214;341944;365441;392355;465649;454363;472744;299340;307927;456954.44;343643.22;236099.07 -5204;'013;Central America;1675;Other paper and paperboard;5922;Export value;1000 USD;92;299;524;431;426;816;881;1063;1834;2255;4444;10577;3375;6293;4615;4868;6017;7819;11660;21049;23986;25328;32106;26550;18839;20542;101805;152158;91094;69460;77696;61607;54033;69857;121292;175865;203237;126511;140543;106267;100261;124148;177708;216214;222561;232252;254931;361203;243502;256934;314314;377040;422888;473573;487132;552792;541871;535403;357225;356371;507074.11;438272.43;346253.49 -5204;'013;Central America;1676;Household and sanitary papers;5510;Production;t;;;;2700;2700;2700;47700;51700;55700;61400;63500;77700;94700;107100;115500;147600;142400;162000;186400;210300;263000;290000;283000;310000;342000;354000;376200;471300;391300;433300;436300;440300;495300;522300;546300;543000;663000;672000;710000;753000;751000;820000;850000;904000;954000;942000;956000;945000;1052000;1129519;1141519;1153519;1189519;1195126;1229943;1296943;1315943;1348943;1350072;1368371;1351943;1369943;1406943 -5204;'013;Central America;1676;Household and sanitary papers;5610;Import quantity;t;300;500;600;1300;1600;2700;3800;5100;5400;4100;3300;5900;4800;5200;4000;2400;2800;4400;5600;6100;4600;7200;7400;7300;5500;4600;2700;3400;4500;4600;5300;7300;2400;1800;6300;27800;21800;40700;61701;80524;75118;109529;95858;89629;85753;158943;151120;139202;97468;86858;93538;99156;94940;96282;106113;92097;135346;138521;147348;165863;162911.41;130143;149442 -5204;'013;Central America;1676;Household and sanitary papers;5622;Import value;1000 USD;202;220;216;519;651;909;1285;2287;2056;2158;1931;3717;2709;3741;3087;3142;3749;5967;8577;10588;9491;13569;11717;12074;9150;7943;3729;4080;7744;4576;8621;7949;2567;3755;5339;30211;21666;37275;55530;77910;74468;102924;89477;90557;88952;131271;139628;128940;107457;108319;123672;140867;137470;139648;142298;118007;146398;174965;188444;205152;212111.9;211299;242096 -5204;'013;Central America;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;200;300;200;300;400;400;500;500;500;500;700;800;600;2800;6000;7200;5200;5100;2600;2400;2300;3700;4700;4700;2000;2000;;;200;0;56900;79500;85400;80200;99196;86019;98086;81367;78991;72594;70094;80697;107767;65277;62200;95307;99790;88018;102186;106594;98629;104156;129701;84785;121453;99421.74;98161;75679 -5204;'013;Central America;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;75;86;66;92;107;106;248;248;248;248;428;497;431;3104;7748;9349;6971;6700;3564;3372;3300;3610;4600;4600;2000;2000;;;261;0;46793;64827;69793;59313;61011;65872;79615;63101;64493;64527;49725;60122;94287;67804;73218;118111;126525;108104;117359;121035;110931;116438;145141;105038;137744;115286.08;146740;106500 -5204;'013;Central America;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2183000;2249999;2317000;2516000;2394000;2488000;2915000;3007000;3066000;2849000;2708000;2753000;2891624;2855867;2966867;3088867;3240543;3626002;3927002;4034002;4220002;4187252;4300558;4834002;4924002;4610002 -5204;'013;Central America;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;825005;1440418;1685739;1182755;1332149;1599736;1858271;2073118;2070984;2471725;2685568;1815923;2391350;2614123;2643166;2999454;3127590;3219291;3503316;3935693;4098947;4045662;3823705;4138452.87;4027756;3726129 -5204;'013;Central America;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;452246;962614;1052066;669880;767672;1079268;1268214;1312431;1473099;1662635;2030761;1439803;1916106;2150291;2309669;2587231;2731142;2587145;2702586;3176854;3479840;3303274;2836509;3766321.67;4423068;3552392 -5204;'013;Central America;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45779;132362;62773;44017;65004;91650;157887;185791;208073;266583;353366;187446;157449;153195;194905;251544;259923;276869;313928;325681;319080;209857;184248;350977.7;239431.22;155021.07 -5204;'013;Central America;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32041;65384;24525;23313;32804;67190;104786;127528;142786;160856;217460;152518;162396;180878;237894;306580;348038;356403;387785;408291;371034;239707;210262;369952.03;275009.43;225678.49 -5204;'013;Central America;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;444000;470000;506000;597000;602600;636700;743700;810700;757300;845300;905300;996200;1039300;1136500;145200;1144000;1191000;1236000;1317000;1310000;1394700;1870100;1870100;1549100;1562100;1592100;1347100;1466100;1867100;1881000;2035000;;;;;;;;;;;;;;;;;;;;;;;;;; -5204;'013;Central America;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;16800;27500;60700;88300;140000;183700;162400;204900;213700;237400;260900;267300;253300;289800;204600;263700;262400;288300;245100;470900;449600;459400;334300;265700;376100;217300;206000;301100;435400;425100;443400;557123;629053;780582;753337;818200;832600;;;;;;;;;;;;;;;;;;;;;;;;;; -5204;'013;Central America;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;5829;7290;12126;16809;25093;33185;32303;31720;34859;40430;43473;44813;53180;86607;58797;104208;104029;120965;138943;316882;298151;331858;157141;145813;186681;104844;107161;179624;246961;238749;236724;261613;297929;386407;448517;518138;595365;;;;;;;;;;;;;;;;;;;;;;;;;; -5204;'013;Central America;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;58;900;1200;1000;1200;1000;900;1400;3400;3800;6000;4800;7500;8300;5200;4400;4800;6400;8100;14100;5500;18700;21900;14900;20500;21400;148000;180600;119500;87800;68100;191471;102088;142689;149800;123400;73700;;;;;;;;;;;;;;;;;;;;;;;;;; -5204;'013;Central America;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;35;252;423;330;370;271;229;400;751;925;1594;1371;2042;3616;2269;2116;2565;4314;5067;8064;2754;9056;10517;6323;4937;5720;88516;130399;70557;57760;67451;55095;45418;63606;109571;56925;35302;;;;;;;;;;;;;;;;;;;;;;;;;; -5204;'013;Central America;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1609485;1658742;1708000;1920000;1824000;1895000;2344000;2395000;2466000;242000;830000;2161000;2277000;2218000;2331000;2466000;2612946;2956251;3214251;3316251;3465251;3420251;3493233;3975251;4032251;3836251 -5204;'013;Central America;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;470430;806655;927328;725172;748111;899213;1090106;1267904;1099164;1121595;1241244;839259;1221517;1304504;1369650;1661660;1754232;1722705;1891210;2226235;2326280;2362913;2283553;2407433.01;2362539;2309475 -5204;'013;Central America;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;195743;388473;421903;346133;352392;458210;572242;596348;602634;650056;755439;496506;757113;858207;984357;1141695;1198586;1085659;1068469;1370927;1513038;1503432;1276101;1771119.01;2146461;1662172 -5204;'013;Central America;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6665;18128;10026;10800;21514;22631;34121;35743;37351;49249;92819;53208;24499;21455;59117;78962;77525;93043;94882;75704;83503;24487;21715;27759.26;62672.22;42093.07 -5204;'013;Central America;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5090;9080;4945;5104;8909;9364;19327;20089;20813;26020;43184;28297;13901;12608;32021;46849;52110;56586;50287;42182;55112;15585;11265;21236.58;55647.43;26229.49 -5204;'013;Central America;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;334589;345294;356000;343000;329000;343000;222000;203000;362000;2548000;1748000;390000;441000;460000;456000;441000;469572;505900;537900;532900;563900;576150;605274;649900;670900;566900 -5204;'013;Central America;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;217863;376785;432881;249901;233744;441206;423967;445610;534220;762848;851635;570940;696218;732620;739977;770207;780944;799606;802856;884786;896224;846646;741996;781375.91;839725;705909 -5204;'013;Central America;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;155760;336619;357343;166466;161331;373925;388084;377509;483037;551957;690856;561160;693922;764293;774311;864317;899641;799218;916801;1008916;1056189;967507;843561;1028502.64;1296700;1079545 -5204;'013;Central America;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1863;1592;435;1701;1862;31969;56329;62883;72646;86603;92573;65525;83673;70859;84368;101042;130159;146694;167847;186598;157371;109132;87353;226852.88;127310;79260 -5204;'013;Central America;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4267;2527;1428;1715;1829;28848;42279;49259;55758;60944;70245;68045;94224;104841;150806;192130;233504;254513;284654;298908;230782;140919;124825;248187.15;145882;149375 -5204;'013;Central America;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;219926;226963;234000;234000;222000;231000;330000;390000;219000;40000;111000;183000;169000;173000;175000;177000;151701;157621;168621;178621;184621;184621;195821;202621;214621;200621 -5204;'013;Central America;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119875;220578;278202;190851;336466;240549;327859;343169;407709;556284;564960;376949;461990;567481;520886;551343;573827;607261;673269;673991;717466;683556;644654;795444.86;673098;539487 -5204;'013;Central America;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90920;211607;242725;146835;244563;235065;298019;327784;370259;445536;565785;361184;455059;519149;539903;566583;614446;626488;621141;690587;776692;718603;617196;831510.25;810885;671675 -5204;'013;Central America;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34960;103885;48164;26794;33218;33402;63288;79702;90468;128113;158637;65139;44609;56224;49684;70408;50177;34933;50051;60740;74591;74244;73213;93788.24;47972;31988 -5204;'013;Central America;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21059;47565;16343;14424;18958;27207;41095;54059;62863;73088;101056;53861;51602;60633;53828;66657;60901;43516;51668;65277;82275;81732;72625;98231.2;72042;48562 -5204;'013;Central America;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;6324;6230;6230;6230;6230;6230;6230;6230;6230;6230 -5204;'013;Central America;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16837;36400;47328;16831;13828;18768;16339;16435;29891;30998;27729;28775;11625;9518;12653;16244;18587;89719;135981;150681;158977;152547;153502;154199.1;152394;171258 -5204;'013;Central America;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9823;25915;30095;10446;9386;12068;9869;10790;17169;15086;18681;20953;10012;8642;11098;14636;18469;75780;96175;106424;133921;113732;99651;135189.77;169022;139000 -5204;'013;Central America;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2291;8757;4148;4722;8410;3648;4149;7463;7608;2618;9337;3574;4668;4657;1736;1132;2062;2199;1148;2639;3615;1994;1967;2577.32;1477;1680 -5204;'013;Central America;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1625;6212;1809;2070;3108;1771;2085;4121;3352;804;2975;2315;2669;2796;1239;944;1523;1788;1176;1924;2865;1471;1547;2297.09;1438;1512 -5204;'013;Central America;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;54000;65000;95000;103900;106600;119200;120200;133400;56600;45600;49600;52600;62200;52200;56000;57000;62000;64000;64000;53000;52000;75000;75000;41000;41000;35000;3000;0;28000;51000;44000;43000;40000;49000;50000;55000;57000;59000;67000;67000;59000;61000;61000;52288;55639;58639;53639;54684;54675;56675;58675;57675;53675;52175;53675;54675;55675 -5204;'013;Central America;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;6100;8800;14200;19000;21200;23200;26800;86100;75100;71700;77300;85400;76600;66900;40900;64700;62800;57500;93800;135600;73700;73500;52800;39100;55900;140100;115500;113300;89100;125700;151500;185510;226537;114000;119500;254600;339800;195769;110368;110094;68724;143534;187956;238229;246868;348496;296973;286827;33796;36732;29586;29955;33584;18959;17396;45641;60965;66268;45040;46332;51268.39;54319;33257 -5204;'013;Central America;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;1876;2153;3000;4266;5227;5773;6818;15577;14480;14733;20059;18372;19801;26292;19770;28348;31785;30062;71845;110011;70358;80238;38114;32697;42458;119955;96585;95767;85479;101154;153908;167697;215030;122904;134594;276935;344490;197914;131809;179979;115010;197230;201982;213094;251129;341545;237935;267468;90479;90488;76689;61255;63903;59914;54932;69901;61938;61244;58985;58731;76590.04;84273;53606 -5204;'013;Central America;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;300;300;500;500;300;1500;1800;1500;1800;2300;3400;6200;1800;3800;3400;3700;4600;4400;4300;5100;9000;7000;10600;12300;7600;9400;7500;14500;13500;7900;8700;6795;8900;4586;12400;92500;99300;36393;10751;16701;10401;10364;15962;18837;30031;36375;30575;39466;12201;7991;3376;2519;2382;3332;8892;53092;24526;23963;4698;2226;6555;6051;5399 -5204;'013;Central America;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;57;47;101;101;56;470;566;597;991;1223;2744;8958;1085;2429;2098;2324;2955;3074;3489;5237;11883;9301;14889;16663;10530;11522;9679;17159;15937;9700;8245;6512;8615;5990;11721;72147;103108;24677;15846;20731;11076;11729;47417;46935;30506;39741;33953;49456;23180;21320;15325;12621;8204;8176;9694;54076;17142;19228;12480;8365;21836;16523;14075 -5204;'013;Central America;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1073146;1156270;1138966;828635;1269314;1333463;1379848 -5204;'013;Central America;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1637710;1781248;1904246;1969450;3008239;3116905;2925359 -5204;'013;Central America;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;171918;178054;185889;111082;194295;246586;262880 -5204;'013;Central America;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97927;103447;100963;125259;200238;151816;130903 -5204;'013;Central America;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17260;13774;16579;12950;14641;7754;7936 -5204;'013;Central America;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88238;91998;89637;113205;197645;149416;124474 -5204;'013;Central America;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;154658;164280;169310;98132;179654;238832;254944 -5204;'013;Central America;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9689;11449;11326;12054;2593;2400;6429 -5204;'013;Central America;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87087;104834;121389;108822;130219;195281;150268 -5204;'013;Central America;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119052;131865;144426;155491;153917;225226;148607 -5204;'013;Central America;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23346;26215;24220;18617;33368;32122;33509 -5204;'013;Central America;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15122;14085;17909;19389;27420;33970;24736 -5204;'013;Central America;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62088;70127;65633;44753;54640;51487;59553 -5204;'013;Central America;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107629;110667;119426;157576;242413;226742;222242 -5204;'013;Central America;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;406;122 -5204;'013;Central America;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;911;67 -5204;'013;Central America;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;28 -5204;'013;Central America;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;105 -5204;'013;Central America;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113;115 -5204;'013;Central America;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;151;152 -5204;'013;Central America;1684;I-beams (I-joists);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -5204;'013;Central America;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;163;119 -5204;'013;Central America;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;472;213 -5204;'013;Central America;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1 -5204;'013;Central America;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5 -5204;'013;Central America;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;651215;707231;666880;494604;752905;673924;773361 -5204;'013;Central America;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1260591;1381422;1480373;1469960;2221114;2250672;2179423 -5204;'013;Central America;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21942;18234;19098;9476;5048;7690;5354 -5204;'013;Central America;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18884;18724;23653;19900;7823;27233;21503 -5204;'013;Central America;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55550;51575;55857;41281;98839;126373;94923 -5204;'013;Central America;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18505;21038;17496;21875;155314;201246;197945 -5204;'013;Central America;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3329133;3402535;3491939;3185459;3708660;4324617;4238388 -5204;'013;Central America;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1844047;1894289;1971342;2041097;2222330;2574117;2550898 -5204;'013;Central America;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25723;26659;27030;25750;29034;39961;34987 -5204;'013;Central America;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19807;6192;10196;14862;6456;3377;3373 -5204;'013;Central America;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;430383;449856;458485;401796;476181;615977;586550 -5204;'013;Central America;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81198;83013;83056;64613;84286;99342;97109 -5204;'013;Central America;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;459877;463547;497531;488581;504413;554362;638044 -5204;'013;Central America;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400256;411875;452467;561991;534294;543544;580248 -5204;'013;Central America;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1364240;1399589;1451307;1336406;1609814;1820009;1702898 -5204;'013;Central America;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;762267;825399;837506;861588;989472;1195945;1137714 -5204;'013;Central America;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1048910;1062884;1057586;932926;1089218;1294308;1275909 -5204;'013;Central America;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;580519;567810;588117;538043;607822;731909;732454 -5206;'029;Caribbean;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2088727.4;2098879.4;2227120.66;1932648.66;2450442.46;2794818.54;2663947.5 -5206;'029;Caribbean;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;262951;274222;295020;283642;319707.45;346591.87;328584.87 -5206;'029;Caribbean;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;48484;54136;42140;64934;60729;69079;69079;88285;97923;112345;120675;135632;154264;189334;191175;220406;255984;347602;319783;485326;509155;539485;545732;563819;509873;538527;559989;537118;573581;557013;561934;395969;439537;453871;522284;500620;595941;587646;577426;573304;593319;552198;574956;644244;668536;781007;814320;889932;703840;903076.35;987425.47;913322.38;891939.69;955310.28;986149.86;944864.76;967555.4;959033.4;1098966.66;1007556.66;1330167.46;1476761.54;1311492.5 -5206;'029;Caribbean;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;3188;3874;2859;4652;3927;4361;3930;4288;5804;6326;6552;6672;4630;3596;3901;4209;3986;3590;3344;4045;3906;4282;5394;5050;5604;7049;7582;4721;3974;4918;3687;10380;4136;6308;7688;5345;4091;4221;6742;8103;8862;12065;19948;23891;25527;15507;16015;21965;38726;47077.5;72793.2;77629.5;89495.42;116844.18;111636;97103.45;95606;78719;108039;103945;122688.45;137205.87;128163.87 -5206;'029;Caribbean;1861;Roundwood;5516;Production;m3;4214810;5140795;5075421;4884370;5276023;4004230;3922229;4742563;5271611;4901784;5166913;5038173;5157398;4968144;4931967;5001304;4810066;5078968;6003531;6062955;6146652;6218578;5989171;6119008;6406423;6502194;6505340;6578801;6464325;6983056;6979690;6954874;7054035;7211164;7215074;7327088;7393818;7255829;5391771;5692194;5565209;6506577;6365517;6234688;6321839;6649997;6259438;5985592;6447887;5851249;5858873;5841725;5924559;6032244;6114401;6084878;6098203;6126970;6166098;6121988;6259053;6270524;6249235 -5206;'029;Caribbean;1861;Roundwood;5616;Import quantity;m3;10500;14500;11800;12200;13500;15600;24700;14200;30400;30600;30200;29900;30400;30900;34400;30900;33200;21200;22300;84400;62500;47500;64400;70900;68000;61600;66800;77600;44100;99042;127820;46767;56494;97707;89130;67928;84280;99786;81651;62937;53399;53223;70027;119955;120810;82037;112355;81910;60067;80639.5;93623.17;96694.16;103344.71;162812.23;90784;59678;82685;52985;131004;203954;213753;185752.05;127827.05 -5206;'029;Caribbean;1861;Roundwood;5622;Import value;1000 USD;466;678;506;587;720;1031;1795;926;1189;1694;1683;2151;2121;2438;2666;2994;3683;1927;2332;13191;10651;6281;10415;10786;9409;9552;12408;13078;5283;8505;7558;5983;8852;13659;15670;13064;16732;15705;16399;11713;12574;10600;11010;12684;12392;10265;22015;21206;12688;13196.35;19194.47;20034.38;20749.42;27057.1;27234;18327;27284;12991;29127;40251;59439;63124.69;46048.69 -5206;'029;Caribbean;1861;Roundwood;5916;Export quantity;m3;246000;338400;252200;417300;347600;364300;336100;368600;419800;381700;374500;383300;285000;183400;99800;99800;52500;;;;;;;;;;;;;2306;3180;5410;2587;3360;1939;338;295;235;341;185;184;4759;7106;5208;5259;3580;3728;6607;3439;19886;14062;7694;4933;13350;4705;2318;664;4116;688;214;111;2173;1439 -5206;'029;Caribbean;1861;Roundwood;5922;Export value;1000 USD;3138;3827;2819;4604;3843;4212;3839;4203;5635;6169;6323;6442;4308;2746;1594;2021;1207;;;;;;;;;;;;;706;456;880;939;623;528;107;68;40;74;34;32;295;457;296;315;769;1786;2684;2071;3454;5861;4411;3464.42;3126.08;2223;868;333;1591;196;124;31;345;535 -5206;'029;Caribbean;1862;Roundwood, coniferous;5516;Production;m3;467527;549093;455861;627233;583807;580585;558967;582551;635239;601830;594608;604809;508049;407223;326164;418936;420308;420837;468819;468828;488895;486166;498611;511218;516933;466756;472854;479618;489303;473267;465036;471791;475469;481304;501657;498103;507862;407985;370789;508504;509068;499565;498943;500387;511568;512106;512114;500719;488325;461972;445162;425006;495283;498467;566254;518044;511982;500323;516604;496775;567134;557604;565555 -5206;'029;Caribbean;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34417;32809;100879;135107;160272;80341;75687 -5206;'029;Caribbean;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7644;6211;18502;27195;37153;25677;25859 -5206;'029;Caribbean;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;780;0;0;0;271;240 -5206;'029;Caribbean;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;502;0;18;0;148;134 -5206;'029;Caribbean;1863;Roundwood, non-coniferous;5516;Production;m3;3747283;4591702;4619560;4257137;4692216;3423645;3363262;4160012;4636372;4299954;4572305;4433364;4649349;4560921;4605803;4582368;4389758;4658131;5534712;5594127;5657757;5732412;5490560;5607790;5889490;6035438;6032486;6099183;5975022;6509789;6514654;6483083;6578566;6729860;6713417;6828985;6885956;6847844;5020982;5183690;5056141;6007012;5866574;5734301;5810271;6137891;5747324;5484873;5959562;5389277;5413711;5416719;5429276;5533777;5548147;5566834;5586221;5626647;5649494;5625213;5691919;5712920;5683680 -5206;'029;Caribbean;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48268;20176;30125;68847;53481;105411.05;52140.05 -5206;'029;Caribbean;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19640;6780;10625;13056;22286;37447.69;20189.69 -5206;'029;Caribbean;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;664;3336;688;214;111;1902;1199 -5206;'029;Caribbean;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;333;1089;196;106;31;197;401 -5206;'029;Caribbean;1864;Wood fuel;5516;Production;m3;3213810;3894795;3921221;3758370;3992023;2695730;2745929;3538263;3975211;3671384;3955113;3841873;4033098;3988844;4032667;4020004;3838366;4142368;5038431;5081055;5143752;5242878;4994171;5114008;5364423;5299694;5299140;5400101;5225925;5755656;5787690;5723174;5841635;5872964;5839974;6007888;6060518;6058929;4398771;4211194;4135739;5217514;5075517;5045746;5066199;5392587;5000402;4872968;5356523;4767793;4777306;4790171;4803210;4816615;4830195;4839945;4849953;4860191;4870669;4881389;4915524;4935065;4946896 -5206;'029;Caribbean;1864;Wood fuel;5616;Import quantity;m3;1600;800;900;700;400;200;200;100;100;100;;;;200;200;200;200;200;300;300;300;300;300;300;300;300;300;300;300;200;200;687;4283;11161;8824;10524;1855;1855;1955;1795;6575;6575;6575;3476;3476;4518;3402;802;555;558.5;789.17;711.16;993.58;894;1175;771;1;4;30;1076;1097;1089.05;1428.05 -5206;'029;Caribbean;1864;Wood fuel;5622;Import value;1000 USD;9;5;5;3;3;1;1;1;1;1;;;;54;45;45;45;45;82;82;83;84;85;86;86;86;86;86;86;60;70;93;194;551;567;648;85;122;159;76;214;214;214;204;204;188;148;222;211;81;168;95;140.32;272;264;73;1;5;26;130;133;150.69;219.69 -5206;'029;Caribbean;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;58;58;58;58;58;82;82;82;82;82;82;82;629;271;256;151;168;291;193;659;135;138;314;;;;;;71;71 -5206;'029;Caribbean;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;3;3;3;3;3;3;3;44;16;30;10;22;112;27;125.22;28;33;90;;;;;;10;10 -5206;'029;Caribbean;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;181341;190191;191092 -5206;'029;Caribbean;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;23;261 -5206;'029;Caribbean;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;8;37;69 -5206;'029;Caribbean;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1 -5206;'029;Caribbean;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4 -5206;'029;Caribbean;1628;Wood fuel, non-coniferous;5516;Production;m3;3113283;3793702;3819560;3656137;3889216;2592345;2641962;3433712;3870072;3565654;3849505;3735064;3925049;3880621;3922503;3910068;3727058;4030531;4926612;4969227;5029857;5126712;4876560;4994790;5243490;5176938;5174286;5273483;5097622;5625389;5654654;5583883;5699566;5725660;5687417;5853985;5904956;5903244;4242382;4054090;3978071;5059272;4916692;4886329;4906181;5231931;4839102;4710968;5193896;4604490;4613256;4625364;4637636;4650263;4663056;4672016;4681223;4690651;4700308;4710197;4734183;4744874;4755804 -5206;'029;Caribbean;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;4;29;1075;1096;1066.05;1167.05 -5206;'029;Caribbean;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;5;18;122;125;113.69;150.69 -5206;'029;Caribbean;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;70 -5206;'029;Caribbean;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6 -5206;'029;Caribbean;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;1600;800;900;700;400;200;200;100;100;100;;;;200;200;200;200;200;300;300;300;300;300;300;300;300;300;300;300;200;200;687;4283;11161;8824;10524;1855;1855;1955;1795;6575;6575;6575;3476;3476;4518;3402;802;555;558.5;789.17;711.16;993.58;894;1175;771;;;;;;; -5206;'029;Caribbean;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;9;5;5;3;3;1;1;1;1;1;;;;54;45;45;45;45;82;82;83;84;85;86;86;86;86;86;86;60;70;93;194;551;567;648;85;122;159;76;214;214;214;204;204;188;148;222;211;81;168;95;140.32;272;264;73;;;;;;; -5206;'029;Caribbean;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;58;58;58;58;58;82;82;82;82;82;82;82;629;271;256;151;168;291;193;659;135;138;314;;;;;;; -5206;'029;Caribbean;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;3;3;3;3;3;3;3;44;16;30;10;22;112;27;125.22;28;33;90;;;;;;; -5206;'029;Caribbean;1865;Industrial roundwood;5516;Production;m3;1001000;1246000;1154200;1126000;1284000;1308500;1176300;1204300;1296400;1230400;1211800;1196300;1124300;979300;899300;981300;971700;936600;965100;981900;1002900;975700;995000;1005000;1042000;1202500;1206200;1178700;1238400;1227400;1192000;1231700;1212400;1338200;1375100;1319200;1333300;1196900;993000;1481000;1429470;1289063;1290000;1188942;1255640;1257410;1259036;1112624;1091364;1083456;1081567;1051554;1121349;1215629;1284206;1244933;1248250;1266779;1295429;1240599;1343529;1335459;1302339 -5206;'029;Caribbean;1865;Industrial roundwood;5616;Import quantity;m3;8900;13700;10900;11500;13100;15400;24500;14100;30300;30500;30200;29900;30400;30700;34200;30700;33000;21000;22000;84100;62200;47200;64100;70600;67700;61300;66500;77300;43800;98842;127620;46080;52211;86546;80306;57404;82425;97931;79696;61142;46824;46648;63452;116479;117334;77519;108953;81108;59512;80081;92834;95983;102351.13;161918.23;89609;58907;82684;52981;130974;202878;212656;184663;126399 -5206;'029;Caribbean;1865;Industrial roundwood;5622;Import value;1000 USD;457;673;501;584;717;1030;1794;925;1188;1693;1683;2151;2121;2384;2621;2949;3638;1882;2250;13109;10568;6197;10330;10700;9323;9466;12322;12992;5197;8445;7488;5890;8658;13108;15103;12416;16647;15583;16240;11637;12360;10386;10796;12480;12188;10077;21867;20984;12477;13115.35;19026.47;19939.38;20609.1;26785.1;26970;18254;27283;12986;29101;40121;59306;62974;45829 -5206;'029;Caribbean;1865;Industrial roundwood;5916;Export quantity;m3;246000;338400;252200;417300;347600;364300;336100;368600;419800;381700;374500;383300;285000;183400;99800;99800;52500;;;;;;;;;;;;;2306;3180;5410;2529;3302;1881;280;237;177;259;103;102;4677;7024;5126;5177;2951;3457;6351;3288;19718;13771;7501;4274;13215;4567;2004;664;4116;688;214;111;2102;1368 -5206;'029;Caribbean;1865;Industrial roundwood;5922;Export value;1000 USD;3138;3827;2819;4604;3843;4212;3839;4203;5635;6169;6323;6442;4308;2746;1594;2021;1207;;;;;;;;;;;;;706;456;880;937;621;526;105;66;38;71;31;29;292;454;293;312;725;1770;2654;2061;3432;5749;4384;3339.2;3098.08;2190;778;333;1591;196;124;31;335;525 -5206;'029;Caribbean;1866;Industrial roundwood, coniferous;5516;Production;m3;367000;448000;354200;525000;481000;477200;455000;478000;530100;496100;489000;498000;400000;299000;216000;309000;309000;309000;357000;357000;375000;370000;381000;392000;396000;344000;348000;353000;361000;343000;332000;332500;333400;334000;349100;344200;352300;252300;214400;351400;351400;341323;340118;340970;351550;351450;350814;338719;325698;298669;281112;260199;329709;332115;399115;350115;343252;330783;346243;325583;385793;367413;374463 -5206;'029;Caribbean;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81815;110370;35463;41479;72626;68420;47166;70574;82429;67827;46466;33132;33732;51327;88201;88100;44862;87463;55025;34112;51952;43261;49679;66384;115037.1;54058;22830;34417;32809;100878;135106;160271;80318;75426 -5206;'029;Caribbean;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6140;5041;3516;6335;11290;11700;8878;12575;10724;12064;7269;8778;6796;6910;7432;7094;4441;16625;11867;3839;6374.35;4886.09;6918;9429;9659;10156;4321;7644;6211;18494;27187;37145;25640;25790 -5206;'029;Caribbean;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;36;36;0;0;0;0;0;0;0;4034;4034;4478;4478;2188;2857;621;1262;14696;3988;2177;241;2016;1336;588;0;780;0;0;0;270;239 -5206;'029;Caribbean;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;1;1;0;0;0;0;0;0;0;187;187;211;211;619;471;318;152;1309;311;116;5.2;108.08;117;43;0;502;0;18;0;144;130 -5206;'029;Caribbean;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81815;110370;35463;41479;72626;68420;47166;70574;82429;67827;46466;33132;33732;51327;88201;88100;44862;87463;55025;34112;51952;43261;49679;66384;115037.1;54058;22830;34417;32809;100878;135106;160271;80318;75426 -5206;'029;Caribbean;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6140;5041;3516;6335;11290;11700;8878;12575;10724;12064;7269;8778;6796;6910;7432;7094;4441;16625;11867;3839;6374.35;4886.09;6918;9429;9659;10156;4321;7644;6211;18494;27187;37145;25640;25790 -5206;'029;Caribbean;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;36;36;0;0;0;0;0;0;0;4034;4034;4478;4478;2188;2857;621;1262;14696;3988;2177;241;2016;1336;588;0;780;0;0;0;270;239 -5206;'029;Caribbean;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;1;1;0;0;0;0;0;0;0;187;187;211;211;619;471;318;152;1309;311;116;5.2;108.08;117;43;0;502;0;18;0;144;130 -5206;'029;Caribbean;1867;Industrial roundwood, non-coniferous;5516;Production;m3;634000;798000;800000;601000;803000;831300;721300;726300;766300;734300;722800;698300;724300;680300;683300;672300;662700;627600;608100;624900;627900;605700;614000;613000;646000;858500;858200;825700;877400;884400;860000;899200;879000;1004200;1026000;975000;981000;944600;778600;1129600;1078070;947740;949882;847972;904090;905960;908222;773905;765666;784787;800455;791355;791640;883514;885091;894818;904998;935996;949186;915016;957736;968046;927876 -5206;'029;Caribbean;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17027;17250;10617;10732;13920;11886;10238;11851;15502;11869;14676;13692;12916;12125;28278;29234;32657;21490;26083;25400;28129;49573;46304;35967.13;46881.13;35551;36077;48267;20172;30096;67772;52385;104345;50973 -5206;'029;Caribbean;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2305;2447;2374;2323;1818;3403;3538;4072;4859;4176;4368;3582;3590;3886;5048;5094;5636;5242;9117;8638;6741;14140.38;13021.38;11180.1;17126.1;16814;13933;19639;6775;10607;12934;22161;37334;20039 -5206;'029;Caribbean;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2306;3154;5384;2493;3266;1881;280;237;177;259;103;102;643;2990;648;699;763;600;5730;2026;5022;9783;5324;4033;11199;3231;1416;664;3336;688;214;111;1832;1129 -5206;'029;Caribbean;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;706;451;875;936;620;526;105;66;38;71;31;29;105;267;82;101;106;1299;2336;1909;2123;5438;4268;3334;2990;2073;735;333;1089;196;106;31;191;395 -5206;'029;Caribbean;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7106;12806;7446;4796;6487;2919;573;1969;1956;1729;4429;5729;4967;2364;4705;5661;4147;3026;4118;9053;16570;27489;25151;9220;26913;22314;20818;29755;3476;5480;3996;25064;30387;17571 -5206;'029;Caribbean;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1930;2020;1964;1257;905;504;182;362;347;385;623;467;578;569;1062;1108;1008;760;2218;4193;2763;9495.38;7930.38;4364.38;11219.38;11650;9629;13801;1390;1856;1551;11672;16198;10573 -5206;'029;Caribbean;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2306;3154;5384;2493;3266;1881;280;237;177;258;78;77;577;577;120;171;216;133;5639;1781;4899;7580;4642;3465;782;3231;1416;513;3321;688;214;111;1673;1129 -5206;'029;Caribbean;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;706;451;875;936;620;526;105;66;38;71;22;20;62;61;43;62;59;68;774;189;541;3597;2611;1744;811;2073;732;285;1085;196;106;31;145;395 -5206;'029;Caribbean;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9921;4444;3171;5936;7433;8967;9665;9882;13546;10140;10247;7963;7949;9761;23573;23573;28510;18464;21965;16347;11559;22084;21153;26747.13;19968.13;13237;15259;18512;16696;24616;63776;27321;73958;33402 -5206;'029;Caribbean;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;375;427;410;1066;913;2899;3356;3710;4512;3791;3745;3115;3012;3317;3986;3986;4628;4482;6899;4445;3978;4645;5091;6815.72;5906.72;5164;4304;5838;5385;8751;11383;10489;21136;9466 -5206;'029;Caribbean;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;1;25;25;66;2413;528;528;547;467;91;245;123;2203;682;568;10417;0;0;151;15;0;0;0;159;0 -5206;'029;Caribbean;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;9;9;43;206;39;39;47;1231;1562;1720;1582;1841;1657;1590;2179;0;3;48;4;0;0;0;46;0 -5206;'029;Caribbean;1868;Sawlogs and veneer logs;5516;Production;m3;652000;611000;613000;573000;555000;628000;469000;446000;482000;454000;468000;426000;445000;407000;426000;511000;502300;467600;496200;513200;532500;505100;515100;522100;532100;531600;571300;568800;615500;617500;593300;593800;575100;649900;687000;631100;645200;611200;546300;856300;852770;712363;713300;705242;724940;726710;728336;581924;560664;552756;550867;520854;593349;687629;756206;716933;720250;738779;767429;712599;815529;770609;739529 -5206;'029;Caribbean;1868;Sawlogs and veneer logs;5616;Import quantity;m3;;;;600;500;300;500;800;15700;18600;17300;8200;8200;7600;8600;8600;9500;9500;9500;70500;54800;43300;47200;58300;60800;52100;61500;72900;37600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5206;'029;Caribbean;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;;;;24;51;15;30;48;596;775;725;391;391;487;611;625;723;723;723;10382;8888;5255;6726;8000;6895;7129;10922;11824;3836;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5206;'029;Caribbean;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5206;'029;Caribbean;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5206;'029;Caribbean;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;125000;112000;112000;115000;113000;119000;124000;115000;112000;116000;116000;116000;116000;116000;116000;209000;209000;209000;257000;257000;275000;270000;281000;292000;296000;244000;248000;253000;261000;243000;232000;232500;233400;234000;249100;244200;252300;252300;214400;351400;351400;341323;340118;340970;351550;351450;350814;338719;325698;298669;281112;260199;329709;332115;399115;350115;343252;330783;346243;325583;385793;367413;355073 -5206;'029;Caribbean;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;;;;600;500;300;500;800;15700;12400;12400;3300;3300;2700;3700;3700;4600;4600;4600;65600;49900;38400;42300;27400;30400;40800;40800;52200;31900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5206;'029;Caribbean;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;;;;24;51;15;30;48;596;525;525;191;191;287;411;425;523;523;523;10182;8688;5055;6526;4636;3667;5904;5904;6806;2657;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5206;'029;Caribbean;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;527000;499000;501000;458000;442000;509000;345000;331000;370000;338000;352000;310000;329000;291000;310000;302000;293300;258600;239200;256200;257500;235100;234100;230100;236100;287600;323300;315800;354500;374500;361300;361300;341700;415900;437900;386900;392900;358900;331900;504900;501370;371040;373182;364272;373390;375260;377522;243205;234966;254087;269755;260655;263640;355514;357091;366818;376998;407996;421186;387016;429736;403196;384456 -5206;'029;Caribbean;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5206;'029;Caribbean;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5206;'029;Caribbean;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5206;'029;Caribbean;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5206;'029;Caribbean;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5206;'029;Caribbean;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5206;'029;Caribbean;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;;;;;;;;;;;;;;;;;;;;;;;;;; -5206;'029;Caribbean;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5206;'029;Caribbean;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5206;'029;Caribbean;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;;;;;;;;;;;;;;;;;;;;;;;;;; -5206;'029;Caribbean;1871;Other industrial roundwood;5516;Production;m3;107000;299000;299000;143000;391000;322300;376300;395300;396300;396300;370800;388300;395300;389300;373300;370300;369400;369000;368900;368700;370400;370600;379900;382900;409900;570900;534900;509900;522900;509900;498700;537900;537300;588300;588100;588100;588100;585700;446700;624700;576700;576700;576700;483700;530700;530700;530700;530700;530700;530700;530700;530700;528000;528000;528000;528000;528000;528000;528000;528000;528000;564850;562810 -5206;'029;Caribbean;1871;Other industrial roundwood;5616;Import quantity;m3;8900;13700;10900;10900;12600;15100;24000;13300;14600;11900;12900;21700;22200;23100;25600;22100;23500;11500;12500;13600;7400;3900;16900;12300;6900;9200;5000;4400;6200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5206;'029;Caribbean;1871;Other industrial roundwood;5622;Import value;1000 USD;457;673;501;560;666;1015;1764;877;592;918;958;1760;1730;1897;2010;2324;2915;1159;1527;2727;1680;942;3604;2700;2428;2337;1400;1168;1361;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5206;'029;Caribbean;1871;Other industrial roundwood;5916;Export quantity;m3;;;7100;4900;8600;4300;4300;4300;1200;1200;1200;1200;1200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5206;'029;Caribbean;1871;Other industrial roundwood;5922;Export value;1000 USD;;;69;70;120;63;63;72;81;81;81;81;81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5206;'029;Caribbean;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 -5206;'029;Caribbean;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;107000;299000;299000;143000;361000;322300;376300;395300;396300;396300;370800;388300;395300;389300;373300;370300;369400;369000;368900;368700;370400;370600;379900;382900;409900;570900;534900;509900;522900;509900;498700;537900;537300;588300;588100;588100;588100;585700;446700;624700;576700;576700;576700;483700;530700;530700;530700;530700;530700;530700;530700;530700;528000;528000;528000;528000;528000;528000;528000;528000;528000;564850;543420 -5206;'029;Caribbean;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;8900;13700;10900;10900;12600;15100;24000;13300;14600;11900;12900;21700;22200;23100;25600;22100;23500;11500;12500;13600;7400;3900;16900;12300;6900;9200;5000;4400;6200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5206;'029;Caribbean;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;457;673;501;560;666;1015;1764;877;592;918;958;1760;1730;1897;2010;2324;2915;1159;1527;2727;1680;942;3604;2700;2428;2337;1400;1168;1361;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5206;'029;Caribbean;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5206;'029;Caribbean;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5206;'029;Caribbean;1630;Wood charcoal;5510;Production;t;35742;35913;35995;36183;36383;36656;36875;37304;37638;37787;38011;37279;37570;38033;38539;39343;39937;39693;40077;107582;110959;111883;112982;113589;114305;115447;116708;117580;118514;119699;121659;124381;126813;128237;129886;130704;131634;132680;133440;174526;172186;168059;174743;176441;121052;132801;132878;140529;162434;136328;132216;150076;165953;176857;192766;193590;194427;195254;196113;196991;214090;204507;235451 -5206;'029;Caribbean;1630;Wood charcoal;5610;Import quantity;t;800;;;;;;;;100;100;100;400;;;;;;;;;;;;;;;;;;;;581;425;522;783;754;893;332;337;681;2181;425;1332;1619;4109;8601;17434;12779;28477;3157;2172;1935;1643;1948;2944;2171;2094;1735;2417;2904;2833.33;1997;2622 -5206;'029;Caribbean;1630;Wood charcoal;5622;Import value;1000 USD;28;;;;;;;;16;13;13;24;;;;;;;;;;;;;;;;;;;;211;207;249;254;244;262;116;141;218;322;159;500;592;1178;2183;6093;4209;9337;1032;899;1083;1016.3;1071.1;1261.1;1298.1;1163.1;1453.1;2396;3393;3888.23;1574;2010 -5206;'029;Caribbean;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;100;300;200;300;300;300;300;300;300;200;100;100;100;;;;;;;;;;;;;;0;0;0;9;10;46;13;13;13;13;13;13;13;989;1759;28230;33604;47974;66680;81099;96736;109755;105415;99662;102634;106373;100269;90193;93077;122091 -5206;'029;Caribbean;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;16;15;26;31;36;36;36;36;34;42;11;11;11;;;;;;;;;;;;;;0;0;0;8;8;10;9;9;9;9;9;9;9;143;272;5847;7087;16557;24871;35749;40954;45817;43995;41232;43159;45396;40719;37513;42659;57269 -5206;'029;Caribbean;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100;1100 -5206;'029;Caribbean;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6606;4035;3675;14575;14796;7167;20964;20964;8895;6388;6549;3870;8403;3778;6649;4067.67;5453.92;5983.92;5860.82;4286.82;6532.82;7752.82;7351.82;4980.82;10024.82;11848.82 -5206;'029;Caribbean;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;771;263;361;764;1098;810;1263;1263;889;1488;1658;1066;1419;1066;1658;1320.1;1596.76;1649.76;1059.66;763.66;814.66;860.66;1496.66;704.66;1219.66;1594.66 -5206;'029;Caribbean;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;90;90;90;90;515;515;184;202;232;172;237;209;210;272.48;272.08;197;170;206;194;371;294;268;263.89;2815.89 -5206;'029;Caribbean;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;8;8;8;8;27;27;17;22;23;74;136;92;94;64.5;66.5;63;43.45;37;34;53;102;89;52.16;314.16 -5206;'029;Caribbean;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;900;500;500;500;500;500;500;500;500;500;500;500;500;500;500 -5206;'029;Caribbean;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;220;1331;1120;1084;1593;4342;4772;2262;1989;1289;1383;3184;15821;15821;4921;1561;2002;1865;6548;2044;4847;2011.4;3065;3560;2412;2617;5000;6284;5517;2947;8487;9110 -5206;'029;Caribbean;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;93;71;72;115;577;688;191;170;165;329;362;885;885;534;482;770;512;912;538;791;742;932;1011;423;486;449;606;485;397;960;1244 -5206;'029;Caribbean;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;890;547;0;0;0;0;0;0;90;90;90;90;296;296;90;93;93;19;45;25;25;13.48;14.08;13;14;25;13;190;124;111;111.89;2231.89 -5206;'029;Caribbean;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;47;0;0;0;0;0;0;8;8;8;8;18;18;8;8;8;33;95;54;53;20.5;22.5;22;22.45;15;12;31;75;64;31.16;263.16 -5206;'029;Caribbean;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1100;600;600;600;600;600;600;600;600;600;600;600;600;600;600 -5206;'029;Caribbean;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1654;2883;1485;2192;2360;1613;1834;1773;1686;13286;13413;3983;5143;5143;3974;4827;4547;2005;1855;1734;1802;2056.27;2388.92;2423.92;3448.82;1669.82;1532.82;1468.82;1834.82;2033.82;1537.82;2738.82 -5206;'029;Caribbean;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;100;51;91;105;70;83;72;191;599;769;448;378;378;355;1006;888;554;507;528;867;578.1;664.76;638.76;636.66;277.66;365.66;254.66;1011.66;307.66;259.66;350.66 -5206;'029;Caribbean;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;26;26;0;0;0;0;0;0;0;219;219;94;109;139;153;192;184;185;259;258;184;156;181;181;181;170;157;152;584 -5206;'029;Caribbean;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;0;0;0;0;0;0;0;9;9;9;14;15;41;41;38;41;44;44;41;21;22;22;22;27;25;21;51 -5206;'029;Caribbean;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;129;470;825;946;927;1288;838;247;1392;1031 -5206;'029;Caribbean;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;92;196;339;374;387;401;228;238;691;451 -5206;'029;Caribbean;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;151;151;151;925;925 -5206;'029;Caribbean;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;16;16;16;225;225 -5206;'029;Caribbean;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;129;470;825;946;927;676;216;167;243;175 -5206;'029;Caribbean;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;92;196;339;374;387;197;56;70;111;69 -5206;'029;Caribbean;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;151;151;151;914;914 -5206;'029;Caribbean;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;16;16;16;214;214 -5206;'029;Caribbean;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;612;622;80;1149;856 -5206;'029;Caribbean;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;204;172;168;580;382 -5206;'029;Caribbean;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11 -5206;'029;Caribbean;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11 -5206;'029;Caribbean;1872;Sawnwood;5516;Production;m3;189200;199700;295900;223900;196000;219700;194600;171900;224100;210700;220900;194200;199500;200500;191500;186000;184200;178450;174250;186750;182150;176550;165550;176550;169550;172550;180500;200900;267250;240250;221250;233600;206200;268300;274400;240400;250400;239500;247400;294400;314400;273400;303400;304400;359400;425400;375200;318800;339100;283600;277400;256400;273400;277400;307000;277000;277000;277000;277000;264345;264345;264345;264345 -5206;'029;Caribbean;1872;Sawnwood;5616;Import quantity;m3;352800;436500;351000;500500;516200;581700;533450;720300;780250;826050;826050;974150;981250;1165550;1151850;1053600;1018700;1293100;801700;1243300;1235400;1202000;1330500;1583400;1215900;1172090;1048535;943519;1140052;1092129;1085593;710467;968701;953762;881208;785604;961376;815286;869589;770225;763013;746108;644346;692117;716626;733113;681693;768096;688930;862183;831094;786696;776305;865817;894308;922411;640374;682337;936900;853201;1225523;965252;1169046 -5206;'029;Caribbean;1872;Sawnwood;5622;Import value;1000 USD;19600;24925;19185;28934;29480;34935;31776;40223;45562;52355;51576;60581;85067;93956;91173;95711;108513;165630;108925;184643;198540;230863;205955;219226;195443;212922;192155;161684;206002;202074;208260;136381;154229;182386;200792;197223;253209;234732;228775;210951;197145;196948;174013;172740;190114;220052;229172;267213;202736;268705;253492;229671;266262;262576;290903;277857;229987;240241;286237;274077;402185;385391;340545 -5206;'029;Caribbean;1872;Sawnwood;5916;Export quantity;m3;800;800;600;800;1200;2500;1300;1500;1600;1600;1100;900;1100;1000;700;500;500;100;100;100;100;300;100;100;100;800;400;1300;8000;5000;100;2378;2278;3480;2960;3411;510;588;2921;3277;1874;646;864;3265;3729;4806;5395;7626;5549;3295;2386;3194;2960;5431;6686;3349;1874;4080;2897;1281;1073;3027;501 -5206;'029;Caribbean;1872;Sawnwood;5922;Export value;1000 USD;50;47;40;48;84;149;91;69;112;106;86;74;107;141;104;83;83;21;21;21;21;18;10;10;10;16;25;96;246;458;50;1024;492;953;716;797;119;237;789;1138;1541;321;467;898;1043;1098;1186;3302;2236;2284.5;2452.9;2037.5;1236;1885;3598;1348;1253;2785;1846;1094;818;1352;485 -5206;'029;Caribbean;1632;Sawnwood, coniferous;5516;Production;m3;42300;45200;68800;49300;49200;44450;32400;27200;49500;41300;41800;41800;41800;41800;41800;41800;41800;41800;30550;37450;33950;44850;46850;52850;55850;42850;48850;54850;67850;67850;67850;67850;78850;85850;85950;75950;80950;81050;86500;118500;120500;105500;124500;129500;153500;213500;209700;166800;192600;150800;130500;116500;128500;131500;164500;129500;129500;129500;129500;121130;121130;121130;121130 -5206;'029;Caribbean;1632;Sawnwood, coniferous;5616;Import quantity;m3;327400;401600;326350;435600;465550;518600;461800;634500;686550;712550;729350;866100;827600;1035200;1016400;866500;848550;1100450;621000;1025900;1060000;998350;1114600;1360350;1055045;989356;848026;838770;997329;967311;942511;640343;908595;878570;771267;665734;854120;706949;754596;664970;654425;627543;533276;561374;587498;616610;561913;606684;584121;746390;727140;702083;670940;735486;795002;827030;519660;563355;752388;717974;1070568;738926;1056231 -5206;'029;Caribbean;1632;Sawnwood, coniferous;5622;Import value;1000 USD;17681;22414;17409;24226;25537;29964;26257;33891;38480;43222;43977;52113;73603;83263;80049;76892;88535;141910;74689;140125;159962;182387;162902;175386;162603;179066;155267;132908;164468;164631;151168;111927;132185;151530;156590;142459;203558;184762;182279;167845;151398;149766;126786;128602;146224;164423;167852;186522;141617;191423;184097;173108;200037;199052;225861;218060;163304;170673;209621;214238;333152;280644;261940 -5206;'029;Caribbean;1632;Sawnwood, coniferous;5916;Export quantity;m3;200;100;200;100;100;1300;200;400;400;600;300;200;;;;;;;;;;;;;;;;;;;;799;1807;2470;2258;2758;160;320;1622;2021;421;137;200;2227;2158;4276;4894;4710;3073;1124;1304;1462;1880;2299;2562;2364;837;1862;1534;808;462;2306;76 -5206;'029;Caribbean;1632;Sawnwood, coniferous;5922;Export value;1000 USD;10;6;15;4;5;65;11;21;29;35;24;18;;;;;;;;;;;;;;;;;;;;185;271;559;529;622;46;88;286;363;85;59;138;552;474;827;924;1602;700;327.5;579.9;416.5;585;778;728;505;242;889;475;387;175;823;100 -5206;'029;Caribbean;1633;Sawnwood, non-coniferous;5516;Production;m3;146900;154500;227100;174600;146800;175250;162200;144700;174600;169400;179100;152400;157700;158700;149700;144200;142400;136650;143700;149300;148200;131700;118700;123700;113700;129700;131650;146050;199400;172400;153400;165750;127350;182450;188450;164450;169450;158450;160900;175900;193900;167900;178900;174900;205900;211900;165500;152000;146500;132800;146900;139900;144900;145900;142500;147500;147500;147500;147500;143215;143215;143215;143215 -5206;'029;Caribbean;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;25400;34900;24650;64900;50650;63100;71650;85800;93700;113500;96700;108050;153650;130350;135450;187100;170150;192650;180700;217400;175400;203650;215900;223050;160855;182734;200509;104749;142723;124818;143082;70124;60106;75192;109941;119870;107256;108337;114993;105255;108588;118565;111070;130743;129128;116503;119780;161412;104809;115793;103954;84613;105365;130331;99306;95381;120714;118982;184512;135227;154955;226326;112815 -5206;'029;Caribbean;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;1919;2511;1776;4708;3943;4971;5519;6332;7082;9133;7599;8468;11464;10693;11124;18819;19978;23720;34236;44518;38578;48476;43053;43840;32840;33856;36888;28776;41534;37443;57092;24454;22044;30856;44202;54764;49651;49970;46496;43106;45747;47182;47227;44138;43890;55629;61320;80691;61119;77282;69395;56563;66225;63524;65042;59797;66683;69568;76616;59839;69033;104747;78605 -5206;'029;Caribbean;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;600;700;400;700;1100;1200;1100;1100;1200;1000;800;700;1100;1000;700;500;500;100;100;100;100;300;100;100;100;800;400;1300;8000;5000;100;1579;471;1010;702;653;350;268;1299;1256;1453;509;664;1038;1571;530;501;2916;2476;2171;1082;1732;1080;3132;4124;985;1037;2218;1363;473;611;721;425 -5206;'029;Caribbean;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;40;41;25;44;79;84;80;48;83;71;62;56;107;141;104;83;83;21;21;21;21;18;10;10;10;16;25;96;246;458;50;839;221;394;187;175;73;149;503;775;1456;262;329;346;569;271;262;1700;1536;1957;1873;1621;651;1107;2870;843;1011;1896;1371;707;643;529;385 -5206;'029;Caribbean;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000;2000 -5206;'029;Caribbean;1634;Veneer sheets;5616;Import quantity;m3;400;250;525;475;200;200;200;200;400;500;400;500;300;300;300;600;600;700;800;900;900;1100;1000;500;500;500;500;500;500;500;500;2370;10067;2240;1966;1852;4550;4568;4952;3826;6340;2753;2555;3674;3768;2869;2562;4349;3243;2225;1778;1693;3514.4;3658;3656;2706;2060;2541;3950;3829;5214;1198;1725 -5206;'029;Caribbean;1634;Veneer sheets;5622;Import value;1000 USD;20;14;14;26;17;26;23;29;35;43;43;61;52;57;68;78;152;312;299;355;355;361;298;161;161;161;161;161;161;161;161;1042;1290;1081;2150;1688;3779;3975;3683;2906;20305;2297;2369;3255;3248;4147;3653;4337;2983;4992;4535;6115;5483;4872;5986;5355;3659;4229;4676;7985;16285;4829;4946 -5206;'029;Caribbean;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;103;62;62;62;62;62;216;209;209;209;271;574;704;608;570;545;481.3;65;16;18;17;101;4;14;41;8;1;10;98;0;31 -5206;'029;Caribbean;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;47;31;31;31;31;31;93;88;88;88;224;542;687;561;525;505;466;5;16;418;31;107;18;46;84;29;0;147;279;7;42 -5206;'029;Caribbean;1873;Wood-based panels;5516;Production;m3;;;;15000;16800;19700;21100;23800;13300;14000;11200;18700;16500;16600;14400;16500;9500;9500;9500;9500;9500;93800;101800;138800;126800;139000;139000;127000;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 -5206;'029;Caribbean;1873;Wood-based panels;5616;Import quantity;m3;29300;19400;21700;24000;33800;40449;42629;49870;62139;66207;94323;95018;89623;90312;85281;81312;103380;149780;163200;166400;190900;241400;306900;230800;207574;219319;241735;232323;233364;241744;214575;149021;185913;216386;212441;222669;234759;241448;274878;268914;307340;299915;364169;283805;269786;306408;302560;336800;239193;392758;329306.31;344618.76;333558.4;296324.4;368260.27;334002;384356.27;432073.27;438881;387802;467927.98;435726.21;485023 -5206;'029;Caribbean;1873;Wood-based panels;5622;Import value;1000 USD;3754;2921;2997;3785;4885;5111;5485;6742;8750;9506;13138;11795;12536;14437;11961;14695;20802;34720;41567;45641;53374;65281;79966;68002;61753;65085;81098;72203;69696;74670;76749;51741;64404;68219;76780;79150;82382;84673;97455;93120;102646;92189;104284;91868;88965;131744;139719;162518;115019;152745;144800;155966;161345.03;150825.68;173405;141584;162586;190213;169619;147468;220548.49;220474.45;214164 -5206;'029;Caribbean;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;9800;9400;22700;35000;15600;20900;20900;20900;1071;2319;2402;1862;662;715;692;760;1544;1544;1577;1612;2027;2488;785;754;559;5085;781;2920;2740;1589;899;3881;4113;2726;2997;2234;1475;5933.65;3353.72;5786.72 -5206;'029;Caribbean;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;502;820;2519;3574;1280;1847;1847;1847;148;255;285;247;159;84;76;85;188;188;207;237;805;1353;443;333;316;4173;939;1481.3;1715;833;1190;1263;1693;1347;1501;1048;844;1964;2356.71;2645.71 -5206;'029;Caribbean;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 -5206;'029;Caribbean;1640;Plywood and LVL;5616;Import quantity;m3;27000;17200;19800;20600;29800;29900;35900;40300;52000;53700;80800;78700;78800;77500;74500;70400;83000;86900;89700;109700;134700;168100;173500;126700;120142;166344;159026;151199;155011;170460;144375;129597;164907;194711;190606;186052;181761;192635;230855;219159;249905;219988;299926;187297;182660;241416;233321;254588;185611;338128;279534;292570;278459;248897;313561;279472;330520;369135;321001;301174;360773;315400;333025 -5206;'029;Caribbean;1640;Plywood and LVL;5622;Import value;1000 USD;3540;2762;2802;3487;4530;4487;4928;5926;7858;8246;11716;10230;11221;11600;9770;11785;15184;22080;25771;34302;41403;48705;52037;48127;43938;54313;61654;53479;49882;56499;60703;45028;56443;59241;68065;69122;69709;71334;85419;78862;85052;73685;86699;70395;67017;113740;113644;128395;92968;127771;117544;126662;129764;123753;141525;112165;130066;157418;130603;112441;169069;153026;140006 -5206;'029;Caribbean;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;59;139;139;139;40;40;108;91;91;123;137;567;1028;367;357;285;4661;385;2811;2499;1347;438;2152;2563;1868;2139;1276;589;4858;269;1416 -5206;'029;Caribbean;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;57;109;109;109;22;22;31;52;52;70;97;572;1120;386;274;166;3965;785;1397.3;1564;683;487;824;1238;943;1094;403;545;1445;1296;853 -5206;'029;Caribbean;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;442;211 -5206;'029;Caribbean;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;530;119 -5206;'029;Caribbean;1646;Particle board and OSB (1961-1994);5516;Production;m3;;;;15000;15000;17200;17300;21900;11400;12100;9200;16700;14500;14600;12400;14500;7500;7500;7500;7500;7500;47800;51800;88800;76800;89000;89000;63000;62000;62000;62000;62000;62000;62000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5206;'029;Caribbean;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;1700;1600;1300;2100;2700;7100;4200;4200;5400;8400;9100;12000;6400;6000;6000;5800;16400;39400;42300;28700;28900;22400;37400;54800;39432;35975;35409;34124;40353;32484;31700;10059;11728;12861;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5206;'029;Caribbean;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;160;117;144;207;237;208;258;367;483;725;826;952;602;850;850;1598;4347;8055;9790;6210;6935;4653;7133;7198;5700;5881;6488;8696;11244;8866;6906;3768;4788;5277;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5206;'029;Caribbean;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;9800;9400;22700;35000;15600;20900;20900;20900;990;2260;2263;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5206;'029;Caribbean;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;502;820;2519;3574;1280;1847;1847;1847;107;198;176;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5206;'029;Caribbean;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 -5206;'029;Caribbean;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11236;11006;10110;12851;12175;15679;12379;13901;13100;22502;23002;12384;15812;19084;9786;16042;11894;10474.16;7712;11915.13;7722;7693;8726;8757;25718;23154;34563.34;34828;42231 -5206;'029;Caribbean;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4936;5026;4445;5065;4733;5745;5194;5362;4960;5324;5727;4442;5847;8513;5024;6756;6228;5417;4574;5538.68;3855;3677;5045;5045;9931;9937;17185;23466;21629 -5206;'029;Caribbean;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1723;523;523;500;500;1300;1300;1301;1322;1302;1302;260;239;84;172;155;54;163;135;75;23;25;29;29;386;397;404.64;2047;806 -5206;'029;Caribbean;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;138;50;50;42;42;124;124;125;128;220;220;44;46;105;137;84;21;52;48;33;17;23;13;12;142;144;222;343;465 -5206;'029;Caribbean;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;38;70;70;166;86;130;313;1181;928;671;535;780;731;1230;1942;807;545;518;1304;837;1641 -5206;'029;Caribbean;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;5;12;12;70;140;159;244;860;511;340;266;436;333;512;948;489;161;171;532;523;538 -5206;'029;Caribbean;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;7;420 -5206;'029;Caribbean;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;6;58 -5206;'029;Caribbean;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 -5206;'029;Caribbean;1874;Fibreboard;5616;Import quantity;m3;600;600;600;1300;1300;3449;2529;5370;4739;4107;4423;4318;4423;6812;4781;5112;3980;23480;31200;28000;27300;50900;96000;49300;48000;17000;47300;47000;38000;38800;38500;9365;9278;8814;10599;25611;42888;35962;31848;34076;45056;65989;51105;73936;64054;52442;53341;62998;43483;37407;36950.31;40903.6;46852.4;34732.27;46246.27;45607;43168.27;53374.27;91617;62956;71287.65;84661.21;108126 -5206;'029;Caribbean;1874;Fibreboard;5622;Import value;1000 USD;54;42;51;91;118;416;299;449;409;535;596;613;713;1987;1341;1312;1271;4585;6006;5129;5036;11923;20796;12677;12115;4891;12956;10028;8570;9305;9140;2945;3173;3701;3779;5002;8228;8274;7303;8513;12400;13138;12620;16137;16209;13492;20088;25451;16783;17358;20517;23547;26741.03;21098;27692;25230;26527;27261;28924;24919;33762.49;43459.45;51991 -5206;'029;Caribbean;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;152;152;152;153;153;153;153;158;158;158;158;190;252;241;55;78;107;386;1706;1525;829;829;572;489;671;1030.72;3144.72 -5206;'029;Caribbean;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;12;12;12;12;12;12;12;13;13;13;13;45;71;70;63;99;102;670;422;432;391;395;503;155;297;711.71;1269.71 -5206;'029;Caribbean;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 -5206;'029;Caribbean;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9200;6800;11346;14437;15598;18166;19966;37223;20541;8886;9186;15752;14264;15893;9078;9430;4308;6378;9839;7945;9382;8701;8823;10885;11121;10987;11841;10461;7946 -5206;'029;Caribbean;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3221;2206;3692;4391;4583;5813;7755;8491;7503;4378;4701;4867;4184;5034;4463;2774;2756;4420;4806;5117;5122;3900;4078;5097;5230;4448;6086.23;7167;4231 -5206;'029;Caribbean;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;8;20;20;;20;20;282;1578;1036;314;314;44;351;70;25.69;240.69 -5206;'029;Caribbean;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;5;9;9;;34;34;606;338;265;219;223;308;82;26;31.7;112.69 -5206;'029;Caribbean;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;416;667;976;825;1275;4140;8734;9938;10829;39416;29234;20547;23881;25476;22695;15823;20159;24429;26942;18170;30965;32590;31866;39212;74175;47482;57511.65;70521;97949 -5206;'029;Caribbean;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;282;441;616;494;565;980;2376;2192;2435;8215;7536;5459;10347;11293;7293;8759;12189;14221;16244;11654;19456;19622;21244;21155;21647;19439;27078.26;34854;46584 -5206;'029;Caribbean;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;12;6;9;48;50;87;443;469;469;483;98;461;815;2710 -5206;'029;Caribbean;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;22;21;23;32;37;56;136;141;141;165;49;207;609;1091 -5206;'029;Caribbean;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;841;720;1355;983;18144;30566;20700;14975;11770;16356;18828;19735;25634;25634;16143;15196;21629;11710;12154;12483.31;10096.6;10071.4;8617.27;5899.27;4316;2479.27;3277.27;6321;4487;1935;3679.21;2231 -5206;'029;Caribbean;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;370;307;606;276;2355;3920;3389;2155;1720;2269;2455;2682;3544;3972;3166;5557;9124;5027;5825;5572;4906;5691.03;4327;3114;1708;1205;1009;2047;1032;598;1438.45;1176 -5206;'029;Caribbean;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;152;152;152;152;152;152;152;157;157;157;157;178;228;209;49;49;39;54;41;46;46;46;45;40;140;190.03;194.03 -5206;'029;Caribbean;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;12;12;12;12;12;12;12;13;13;13;13;38;60;39;42;42;36;27;28;31;31;31;30;24;64;71.02;66.02 -5206;'029;Caribbean;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;44000;48000;48000;48000;48000;48000;62000;85000;85000;85000;85000;85000;85000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5206;'029;Caribbean;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;600;600;600;1300;1300;3449;2529;5370;4739;4107;4423;4318;4423;6812;4781;5112;3980;23480;31200;28000;27300;50900;96000;49300;48000;17000;47300;47000;38000;38800;38500;8524;8558;7459;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5206;'029;Caribbean;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;54;42;51;91;118;416;299;449;409;535;596;613;713;1987;1341;1312;1271;4585;6006;5129;5036;11923;20796;12677;12115;4891;12956;10028;8570;9305;9140;2575;2866;3095;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5206;'029;Caribbean;1879;Total fibre furnish;5510;Production;t;23000;24900;27500;30700;27500;31800;35000;30000;32500;35700;47000;42000;53000;55000;62000;70000;58500;35400;62500;84900;94600;92400;88000;93000;102000;113000;101000;99000;109000;109000;109000;136000;135100;140100;145100;145100;149000;99000;101000;67000;65000;70000;66500;60800;70800;75500;80300;97080;110100;103100;116700;137700;138700;164700;161302;165417;186239;186287;186287;186287;186287;186287;186287 -5206;'029;Caribbean;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;43400;43300;35400;45000;37000;37000;46200;46200;49101;45247;41697;53848;80400;54600;64100;53900;56800;61700;55500;66600;58400;61066;61653;60820;32219;15673;14942;24525;20828;26534;23261;18239;22607;23183;19767;23591;30591;26639;22178;24786;27150;32934.06;55110.38;50881;73826;73912.18;53917.12;56235;54667;47600.12;45045.12;44891;45857;37618.73;38913.03;58575 -5206;'029;Caribbean;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;6040;6020;6300;8500;8000;5000;8534;9823;11878;11861;13549;19158;33096;21557;22851;20582;19517;21046;20945;26568;18851;21997;22273;22129;7635;5856;5003;10772;9073;9968;7714;6873;10619;11289;8906;8597;9385;10219;10292;10554;11780;19306;25327;27033;33035;37519.84;29814.64;27583;24434;22529.64;27062.64;30054;25675;26424.35;26771.24;37914 -5206;'029;Caribbean;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;4000;2000;4000;5503;7910;12349;8392;8804;14149;16300;19800;25100;34300;38800;40500;40400;33000;21900;15600;12800;13200;17340;19105;16798;21309;23027;27040;25932;30681;34824;31859;39653;36468;33262;41052;48674;48853;58732;74844;77676;82670;104964;104643;135405;127779;124856;147130;139714;105999;68186;99092.85;133361;126586 -5206;'029;Caribbean;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;100;109;131;640;1044;948;937;1162;798;1611;1907;2273;2562;2735;2971;2778;2247;1658;860;886;830;1544;1488;2031;3943;1960;1829;1709;2435;2373;2841;3718;3723;3237;3754;5120;6056;9247;8243;12512;16745;16563;24181;22521;17679;17326;26302;18936;14201;13053;24855;27414;19841 -5206;'029;Caribbean;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 -5206;'029;Caribbean;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;43400;43300;35400;45000;37000;37000;37200;37200;37300;37300;34500;42600;67900;49900;62000;50100;42000;46200;42000;53300;45300;46300;46553;45320;8115;6765;6972;11398;10400;11941;11292;9765;11463;13463;9986;11512;12347;12299;10002;8913;8742;21390;22818;27715;33042;50432.06;42282;38905;37933;32490;30924;27904;32224;24435.4;22906.03;42311 -5206;'029;Caribbean;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;6040;6020;6300;8500;8000;5000;6646;7935;9185;10185;12526;17070;29799;21094;22488;19471;16859;18164;18623;24558;16428;18091;18048;17948;4991;4027;3790;8827;7369;7561;5842;5493;8170;9132;6807;6192;7238;7237;6379;5730;5707;15406;17217;20061;23968;30898.2;26824;23885;21111;19223;24132;22064;21305;21549.15;23130.24;31479 -5206;'029;Caribbean;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1134;0;0;0;1;1;1;1;21;21;21;115;128;236;511;248;378;380;246;288;231;286;258;258;259;258;258;283;283 -5206;'029;Caribbean;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;711;0;0;0;1;1;1;1;16;16;16;52;85;190;337;206;295;295;206;170;168;196;182;182;187;182;182;200;200 -5206;'029;Caribbean;1875;Wood pulp;5610;Import quantity;t;;;;;;;;43400;43300;35400;45000;37000;37000;37200;37200;37300;37300;34500;42600;67900;49900;64600;55800;46800;51200;44000;55300;47300;48300;48577;47330;9920;8593;6680;10295;9172;10949;10360;8870;10515;9915;7065;6792;11789;11740;11439;10561;10447;23930;25345;30184;37635;54961.06;46874;43478;42506;37047;35481;30563;22614;12718.26;13431;33784 -5206;'029;Caribbean;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;6040;6020;6300;8500;8000;5000;6646;7935;9185;10185;12526;17070;29799;21094;23923;22924;19257;20625;19754;25534;17368;19042;19015;18904;5702;4791;3560;7814;6328;6645;4970;4652;7295;7117;5108;4672;6770;6766;6786;6345;6364;16623;18489;21294;26354;33148.2;29200;26245;23471;21562;26471;23593;15826;10819;13451;23527 -5206;'029;Caribbean;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1134;0;0;0;1;1;1;1;1;1;1;94;107;215;5013;3642;340;338;225;267;217;222;218;218;218;218;218;242;242 -5206;'029;Caribbean;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;711;0;0;0;1;1;1;1;1;1;1;50;83;188;4458;4771;289;289;204;168;169;172;170;170;170;170;170;186;186 -5206;'029;Caribbean;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;80;1192;1085;720;2735;743 -5206;'029;Caribbean;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;31;725;655;526;1965;528 -5206;'029;Caribbean;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;0;98;19;1900;1900;102;140;32;32;32;32;76;26;3;7;3;270;334;97;160;541.06;12;38;40;;;;;;; -5206;'029;Caribbean;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;0;28;3;883;883;48;53;11;11;11;11;24;15;5;13;7;126;127;28;39;237.2;37;78;46;;;;;;; -5206;'029;Caribbean;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;0;0;;;;;;; -5206;'029;Caribbean;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;;;;;;; -5206;'029;Caribbean;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;1100;500;300;1400;104;0;156;100;119;100;400;400;300;300;300;306;314;1028;1028;661;661;674;2304;2755;2860;2855;2068;0;2;0;;;;;;; -5206;'029;Caribbean;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;715;379;203;319;207;0;81;46;57;46;110;110;113;113;113;116;117;400;400;253;253;259;1493;1776;1826;1812;1418;1;1;0;;;;;;; -5206;'029;Caribbean;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;;;;;;; -5206;'029;Caribbean;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;;;;;;; -5206;'029;Caribbean;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;43400;43300;35400;45000;37000;37000;37200;37200;37300;37300;34500;42600;67900;49900;62000;50100;42000;46200;42000;52200;44800;46000;45153;45216;7855;6313;6467;10055;7170;8647;9856;8423;10181;9581;6725;6444;10664;10665;8910;7998;7875;18602;19508;24505;29788;47520;42030;38606;37634;32135;30569;26390;18548;9017.26;7715;30060 -5206;'029;Caribbean;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;6040;6020;6300;8500;8000;5000;6646;7935;9185;10185;12526;17070;29799;21094;22488;19471;16859;18164;18623;23843;16049;17888;17729;17741;4714;3703;3479;7723;5392;5645;4805;4470;7164;6986;4974;4537;6327;6332;5712;5241;5260;13518;15106;17985;21904;28894;26563;23567;20826;18932;23841;21070;13373;8495;9688;21201 -5206;'029;Caribbean;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1119;0;0;0;1;1;1;1;1;1;1;94;107;215;490;227;340;338;225;210;210;215;211;211;211;211;211;235;235 -5206;'029;Caribbean;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;706;0;0;0;1;1;1;1;1;1;1;50;83;188;335;204;289;289;204;166;166;169;167;167;167;167;167;183;183 -5206;'029;Caribbean;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;9300;12800;12800;12800;12800;10500;16100;12600;13900;22300;26200;21800;21800;21800;608;945;867;4142;1842;1342;1342;1342;2442;2442;2443;2443;2523;2523;63;63;45;110;110;110;545;1184;1186;645;640;650;650;650;698;1369.26;1351;1351 -5206;'029;Caribbean;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;325;590;466;3652;1704;899;899;899;1794;1794;1799;1799;1827;1827;26;26;18;42;42;42;261;585;577;340;338;346;346;346;377;1023;996;996 -5206;'029;Caribbean;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 -5206;'029;Caribbean;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 -5206;'029;Caribbean;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;20236;20093;2765;2887;4875;4599;4909;7186;8356;6827;7487;6887;3750;3499;6909;6910;8082;7022;7231;18083;19059;24062;28791;45870;40378;37708;35982;31482;29854;25728;17846;7643;6360;28706 -5206;'029;Caribbean;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;9790;9710;2015;1998;2632;2915;3396;4651;3803;3439;5231;5053;2545;2155;3572;3577;4970;4412;4531;12950;14624;17516;21120;27771;25602;23016;19704;18578;23304;20693;12979;7453;8672;20187 -5206;'029;Caribbean;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1119;0;0;0;1;1;1;1;1;1;1;92;92;200;200;202;315;313;200;200;200;205;201;201;201;201;201;225;225 -5206;'029;Caribbean;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;706;0;0;0;1;1;1;1;1;1;1;45;45;150;150;150;235;235;150;150;150;153;151;151;151;151;151;167;167 -5206;'029;Caribbean;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;65;12;4;5;4;3 -5206;'029;Caribbean;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;191;31;17;19;20;18 -5206;'029;Caribbean;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;3900;2000;2000;2900;2900;4100;4200;4800;5700;3000;1000;1900;1917;1900;1900;1992;50;193;0;0;0;100;100;100;200;250;250;250;350;470;334;160;160;160;160;176;275;0;0;;;;;;; -5206;'029;Caribbean;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;639;626;626;669;11;43;0;0;0;31;37;37;228;331;331;331;387;446;451;302;302;302;302;307;218;0;0;;;;;;; -5206;'029;Caribbean;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;1423;2582;489;675;1121;419;119;158;154;152;152;332;252;982;982;415;443;265;249;179;173;292;290;191;253;1012;;;;;;; -5206;'029;Caribbean;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;569;1748;446;370;1113;292;95;103;101;102;102;402;252;597;597;329;357;260;224;138;125;221;231;166;211;784;;;;;;; -5206;'029;Caribbean;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;15;15;15;15;15;15;15;0;0;0;;;;;;; -5206;'029;Caribbean;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;38;38;38;38;38;38;38;0;0;0;;;;;;; -5206;'029;Caribbean;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;2600;5700;4800;5000;2000;2000;2000;2000;2024;2010;2065;2124;15;102;2;2;2;7;2;2;2;2;21;21;1865;1895;1895;2754;2748;2722;4832;4832;4832;4832;4832;4832;4832;2981;2981;2981;2981;2981 -5206;'029;Caribbean;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;1435;3453;2398;2461;1131;976;940;951;967;956;988;1007;7;31;7;7;7;16;7;7;7;7;19;19;816;838;838;1486;1480;1455;2599;2599;2599;2599;2599;2599;2599;1798;1798;1798;1798;1798 -5206;'029;Caribbean;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4523;3415;0;0;0;0;7;7;7;7;7;7;7;7;7 -5206;'029;Caribbean;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4123;4567;0;0;0;0;3;3;3;3;3;3;3;3;3 -5206;'029;Caribbean;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 -5206;'029;Caribbean;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;260;296;307;1205;1230;994;934;902;950;3550;2923;4722;579;580;428;247;190;214;221;253;239;303;240;259;259;275;275;322;12591;14698.14;12456.03;11508 -5206;'029;Caribbean;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;277;243;237;1044;1048;923;879;857;882;2022;1706;1527;487;490;409;223;181;269;208;222;213;349;223;239;239;260;260;269;7277;12528.15;11477.24;9750 -5206;'029;Caribbean;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;20;20;20;21;21;21;21;21;38;42;21;21;21;71;47;47;48;47;47;48;48 -5206;'029;Caribbean;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;15;15;15;2;2;2;2;2;6;6;2;2;2;27;15;15;20;15;15;17;17 -5206;'029;Caribbean;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;108;21;36;129;224;103;238;170;171;199;185;83;97;150;54.2;89.25 -5206;'029;Caribbean;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;41;19;25;92;152;71;169;102;108;152;128;125;96;146;37.22;108.13 -5206;'029;Caribbean;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41;41;161;172;157;161;161;161;161;161;161;161;161;161;161 -5206;'029;Caribbean;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;25;44;28;30;30;30;30;30;30;30;30;30;30 -5206;'029;Caribbean;1669;Recovered paper;5510;Production;t;;;;;;;;;;2000;11000;7000;10000;12000;18000;26000;21000;21000;33000;55000;63000;59000;54000;55000;53000;54000;49000;57000;57000;57000;57000;84000;83100;88100;93100;93100;97000;96000;97000;64000;63000;69000;65000;60000;70000;75000;80000;97000;110000;103000;116600;137600;138600;164600;161202;165317;186139;186187;186187;186187;186187;186187;186187 -5206;'029;Caribbean;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;9000;9000;11801;7947;7197;11248;12500;4700;2100;3800;14800;15500;13500;13300;13100;14766;15100;15500;24104;8908;7970;13127;10428;14593;11969;8474;11144;9720;9781;12079;18244;14340;12176;15873;18408;11544.06;32292.38;23166;40784;23480.12;11635.12;17330;16734;15110.12;14121.12;16987;13633;13183.33;16007;16264 -5206;'029;Caribbean;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;1888;1888;2693;1676;1023;2088;3297;463;363;1111;2658;2882;2322;2010;2423;3906;4225;4181;2644;1829;1213;1945;1704;2407;1872;1380;2449;2157;2099;2405;2147;2982;3913;4824;6073;3900;8110;6972;9067;6621.64;2990.64;3698;3323;3306.64;2930.64;7990;4370;4875.2;3641;6435 -5206;'029;Caribbean;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;4000;2000;4000;5503;7910;12349;8392;8804;14149;16300;19800;25100;34300;38800;40500;40400;33000;21900;15600;12800;13200;17340;19105;16798;20175;23027;27040;25932;30680;34823;31858;39652;36447;33241;41031;48559;48725;58496;74333;77428;82292;104584;104397;135117;127548;124570;146872;139456;105740;67928;98834.85;133078;126303 -5206;'029;Caribbean;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;100;109;131;640;1044;948;937;1162;798;1611;1907;2273;2562;2735;2971;2778;2247;1658;860;886;830;1544;1488;2031;3232;1960;1829;1709;2434;2372;2840;3717;3707;3221;3738;5068;5971;9057;7906;12306;16450;16268;23975;22351;17511;17130;26120;18754;14014;12871;24673;27214;19641 -5206;'029;Caribbean;1876;Paper and paperboard;5510;Production;t;88000;91700;95300;99000;92900;99900;112300;94300;91300;88000;112500;112400;128500;130100;131600;131600;82900;90700;91700;91700;91700;138500;135800;149600;156600;170600;160900;152400;181300;136600;132600;74200;67000;67000;59000;74000;74000;183000;183000;173000;161000;154700;163400;149600;153800;154600;151800;153910;153400;151600;157000;167900;167600;173000;174500;172700;162600;162600;162600;162600;162600;162600;162600 -5206;'029;Caribbean;1876;Paper and paperboard;5610;Import quantity;t;116700;123000;90300;156900;123800;134300;143300;166500;172800;192000;201400;199200;182700;214400;206600;198200;228700;271500;294900;353800;340400;353200;355800;402700;383015;357341;389887;403972;400981;372187;368515;263120;294360;263246;246004;241122;295121;319083;350191;346254;336341;327349;348514;454718;457031;454704;503085;527781;396267;468099;502521.5;467306.4;450840;412218;437679;481724;535560;496227;522716;443852;543334.2;662517;491698 -5206;'029;Caribbean;1876;Paper and paperboard;5622;Import value;1000 USD;24616;25598;19438;31602;25627;27976;30000;34325;36351;42434;45722;53020;49488;69912;75484;95050;110973;131464;147502;208400;224678;212413;225063;243729;219600;228731;246623;270201;269491;248363;246121;191888;203499;183145;215672;199951;228955;239953;223821;243409;248267;239994;273366;352438;361138;400619;400768;416132;339200;434155;534859;463009;395557;474637;455231;471904;516458;478915;573673;505089;598510.73;770851.28;661913.02 -5206;'029;Caribbean;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;1000;500;300;100;200;200;1600;1600;1900;2900;3100;3100;1500;1300;1700;1500;1500;1400;1400;1400;1300;1300;700;6070;1086;2270;1971;1765;1664;2031;3708;4937;4905;8915;17259;23380;23561;6294;4755;5560;16802.45;15829.19;18651;20996;18910.97;26652.6;27547.23;28717.23;15215.53;7668.53;31269.53;31567.53;29124.56;36860.23;20659 -5206;'029;Caribbean;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;42;25;12;11;48;33;1123;1123;1717;2396;2514;2402;1978;1991;2822;1803;1803;1736;1736;1687;1021;1021;504;6706;867;2384;2222;2290;1952;2120;3256;4265;4155;7419;14823;18077;18339;7490;5964;5616;11479;16079;29563;27476;23908.5;46963.6;40941;31750;24984;10650;45250;47813;57090.45;62762;46774 -5206;'029;Caribbean;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;24000;24000;24000;24000;11000;11000;11000;11000;10600;10400;10800;10500;11300;11200;10400;10000;10400;10900;10800;10000;10800;10000;10000;10000;10000;10000;10000;10000 -5206;'029;Caribbean;2042;Graphic papers;5610;Import quantity;t;51400;61400;36300;60300;41700;52300;54800;54900;56200;63300;72600;75900;72900;92300;88700;90800;93200;91200;105700;114200;129200;123400;133600;145500;137143;126480;146997;142419;157753;145954;155354;85819;99509;99003;78228;85911;120516;104930;138389;128071;128445;129854;133380;202225;204577;198087;191220;241001;189643;257006;234617.5;218447.4;217171;174797;195142;203965;225079;189944;177021;135478;126887.63;166438;141682 -5206;'029;Caribbean;2042;Graphic papers;5622;Import value;1000 USD;9954;11918;7017;11407;8597;9930;11423;11558;11164;13477;15292;17963;17574;25784;26243;30702;40692;43426;52964;66978;80588;77248;84059;87496;81893;82965;89584;97566;102312;103455;114718;70231;76626;77346;76993;80921;108007;86766;88810;93613;99869;94798;95148;143250;149971;158466;169195;212920;165426;234102;230525;219540;197450;177532;186500;175389;200323;176426;195323;136794;140403.12;185895.26;206702 -5206;'029;Caribbean;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;491;265;701;635;468;696;517;1165;3142;2771;7444;15858;20023;20110;3677;2224;3211;6196;4968.19;4931;5205;4839.67;5900.6;7242.23;6094.23;4745.53;2805.53;4902.53;7727.53;7793.23;7484.23;3853 -5206;'029;Caribbean;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;520;298;726;590;445;724;627;931;2779;2513;6403;13504;15219;15329;3238;2895;3144;4270;6569;5775;11129;7804.5;8521;8228;6643;7639;2746;8057;11006;10297.5;9761;7689 -5206;'029;Caribbean;1671;Newsprint;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0 -5206;'029;Caribbean;1671;Newsprint;5610;Import quantity;t;39400;49000;30700;48100;32700;41000;40400;39300;39000;44400;49900;45900;45700;51200;50700;50700;53400;59200;56400;57100;70300;64600;73900;68100;73413;65341;72123;77434;97120;73668;77368;40195;44219;39385;48753;46259;61547;64256;86164;69327;76304;79319;81817;93575;95069;88398;84795;92121;74380;85657;82864;72704;87221;59927;66616;67021;57719;50155;45386;27399;25301.91;27238;23936 -5206;'029;Caribbean;1671;Newsprint;5622;Import value;1000 USD;6330;7801;4983;7665;5365;6160;6242;5969;5541;6977;7963;7972;7981;10359;12088;14742;17227;23070;20658;24592;33928;30623;37362;32133;36189;34350;39245;39337;40324;39579;44396;22723;26203;22118;35043;32123;33932;42440;41904;35424;47330;42794;43149;51631;57235;58625;61751;66623;52901;56748;58757;56883;60106;43742;43809;39180;32170;31449;29084;17218;17371.47;20324.26;21159 -5206;'029;Caribbean;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;30;2;2;2;2;51;1;16;16;19;718;852;886;895;300;1152;1341;645.19;1017;1370;1282;2746;1392;845;1124;1103;1137;1094;2196;2264;855 -5206;'029;Caribbean;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;18;1;1;1;1;34;0;8;8;10;298;362;439;467;237;383;725;417;876;1002;997;1911;839;589;601;543;914;536;1133.4;1214;777 -5206;'029;Caribbean;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;24000;24000;24000;24000;11000;11000;11000;11000;10600;10400;10800;10500;11300;11200;10400;10000;10400;10900;10800;10000;10800;10000;10000;10000;10000;10000;10000;10000 -5206;'029;Caribbean;1674;Printing and writing papers;5610;Import quantity;t;12000;12400;5600;12200;9000;11300;14400;15600;17200;18900;22700;30000;27200;41100;38000;40100;39800;32000;49300;57100;58900;58800;59700;77400;63730;61139;74874;64985;60633;72286;77986;45624;55290;59618;29475;39652;58969;40674;52225;58744;52141;50535;51563;108650;109508;109689;106425;148880;115263;171349;151753.5;145743.4;129950;114870;128526;136944;167360;139789;131635;108079;101585.72;139200;117746 -5206;'029;Caribbean;1674;Printing and writing papers;5622;Import value;1000 USD;3624;4117;2034;3742;3232;3770;5181;5589;5623;6500;7329;9991;9593;15425;14155;15960;23465;20356;32306;42386;46660;46625;46697;55363;45704;48615;50339;58229;61988;63876;70322;47508;50423;55228;41950;48798;74075;44326;46906;58189;52539;52004;51999;91619;92736;99841;107444;146297;112525;177354;171768;162657;137344;133790;142691;136209;168153;144977;166239;119576;123031.65;165571;185543 -5206;'029;Caribbean;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;453;235;699;633;466;694;466;1164;3126;2755;7425;15140;19171;19224;2782;1924;2059;4855;4323;3914;3835;3557.67;3154.6;5850.23;5249.23;3621.53;1702.53;3765.53;6633.53;5597.23;5220.23;2998 -5206;'029;Caribbean;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;509;280;725;589;444;723;593;931;2771;2505;6393;13206;14857;14890;2771;2658;2761;3545;6152;4899;10127;6807.5;6610;7389;6054;7038;2203;7143;10470;9164.1;8547;6912 -5206;'029;Caribbean;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 -5206;'029;Caribbean;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4960;5375;5785;3208;3512;3350;11465;11127;14278;12397;14151;10961;13456;12615;13968;16861;12979;13023;9873;11871;12099;8995;21358;6991;10964;8176 -5206;'029;Caribbean;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6517;5172;5541;4053;4147;4228;10880;11226;15770;15245;18263;16100;19111;19202;20066;21819;17411;18053;11644;12758;12595;14070;20971;10309.04;12913;17208 -5206;'029;Caribbean;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;12;12;12;18;13;402;402;177;226;243;542;1396;216;313;218.44;174;221;127;138;138;122;294;294;348;459 -5206;'029;Caribbean;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;24;24;24;38;25;323;323;184;226;229;747;1710;303;719;530;439;385;228;213;208;172;495;339;572;659 -5206;'029;Caribbean;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0 -5206;'029;Caribbean;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20189;28749;30454;27928;27145;29743;63413;62982;61700;60759;78345;60410;107730;100022.5;94018.4;69833;67056;82652;91707;102008;86630;91515;57332;66510.72;97671;83011 -5206;'029;Caribbean;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21751;24000;29234;26514;26362;27805;51394;51207;52237;58304;75323;55461;106344;105470;97475;68502;74969;82807;86138;100781;84479;104479;61645;76495.61;110028;117992 -5206;'029;Caribbean;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;355;794;2733;2443;7095;14922;18267;18279;2038;774;872;1092;1455;1467;2213;1908;2158.07;4924;4453;2656;893;1889;5608;4753;4338;2135 -5206;'029;Caribbean;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;492;593;2379;2204;6110;12957;14122;14143;2049;1522;1545;1694;2798;2041;8091;5099.5;5368;6168;4994;5250;1354;5617;8350;7177.1;7246;5323 -5206;'029;Caribbean;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 -5206;'029;Caribbean;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15525;18101;22505;21005;19878;18470;33772;35399;33711;33269;56384;43892;50163;39116;37757;43256;34835;32851;35364;53481;41060;31125;29389;28084;30565;26559 -5206;'029;Caribbean;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16058;17734;23414;21972;21495;19966;29345;30303;31834;33895;52711;40964;51899;47096;45116;47023;41410;41831;38427;54614;47903;47690;36960;36227;42630;50343 -5206;'029;Caribbean;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;358;381;300;312;205;502;543;567;924;944;3221;1472;2231;1309;1431.23;822.53;705.23;669.23;827.53;671.53;1754.53;731.53;550.23;534.23;404 -5206;'029;Caribbean;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;314;368;277;245;224;412;424;538;910;987;1104;1644;2555;1317;1178;803;836;832;1575;641;1354;1625;1648;729;930 -5206;'029;Caribbean;1675;Other paper and paperboard;5510;Production;t;73900;70600;78800;75900;74100;83600;93400;73400;71400;68000;87500;87700;101600;101600;101600;101600;51600;59400;60400;60400;60400;102000;102000;105600;97600;104600;103900;106400;121300;97600;95600;59200;53000;53000;45000;50000;50000;159000;159000;162000;150000;143700;152400;139000;143400;143800;141300;142610;142200;141200;147000;157500;156700;162200;164500;161900;152600;152600;152600;152600;152600;152600;152600 -5206;'029;Caribbean;1675;Other paper and paperboard;5610;Import quantity;t;65300;61600;54000;96600;82100;82000;88500;111600;116600;128700;128800;123300;109800;122100;117900;107400;135500;180300;189200;239600;211200;229800;222200;257200;245872;230861;242890;261553;243228;226233;213161;177301;194851;164243;167776;155211;174605;214153;211802;218183;207896;197495;215134;252493;252454;256617;311865;286780;206624;211093;267904;248859;233669;237421;242537;277759;310481;306283;345695;308374;416446.57;496079;350016 -5206;'029;Caribbean;1675;Other paper and paperboard;5622;Import value;1000 USD;14662;13680;12421;20195;17030;18046;18577;22767;25187;28957;30430;35057;31914;44128;49241;64348;70281;88038;94538;141422;144090;135165;141004;156233;137707;145766;157039;172635;167179;144908;131403;121657;126873;105799;138679;119030;120948;153187;135011;149796;148398;145196;178218;209188;211167;242153;231573;203212;173774;200053;304334;243469;198107;297105;268731;296515;316135;302489;378350;368295;458107.61;584956.02;455211.02 -5206;'029;Caribbean;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;1000;500;300;100;200;200;1600;1600;1900;2900;3100;3100;1500;1300;1700;1500;1500;1400;1400;1400;1300;1300;700;5579;821;1569;1336;1297;968;1514;2543;1795;2134;1471;1401;3357;3451;2617;2531;2349;10606.45;10861;13720;15791;14071.3;20752;20305;22623;10470;4863;26367;23840;21331.33;29376;16806 -5206;'029;Caribbean;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;42;25;12;11;48;33;1123;1123;1717;2396;2514;2402;1978;1991;2822;1803;1803;1736;1736;1687;1021;1021;504;6186;569;1658;1632;1845;1228;1493;2325;1486;1642;1016;1319;2858;3010;4252;3069;2472;7209;9510;23788;16347;16104;38442.6;32713;25107;17345;7904;37193;36807;46792.94;53001;39085 -5206;'029;Caribbean;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;3500;9000;10000;10000;10000;12000;13000;17000;15000;16000;14300;13800;14700;13000;13000;9600;8000;8000;0;1000;1000;63000;63000;67000;66000;65000;66100;67400;68100;68600;68900;67600;66400;67400;73000;77700;77900;77500;82500;82900;82700;82700;82700;82700;82700;82700;82700 -5206;'029;Caribbean;1676;Household and sanitary papers;5610;Import quantity;t;100;100;100;100;100;100;200;;1000;800;1000;2900;2900;4800;8000;7700;4000;4100;10000;13700;11900;10700;12700;13100;10200;10100;11300;11700;3800;2700;2700;11408;13677;16177;26515;27264;25628;22147;24614;23846;27781;24687;27400;28608;29956;36813;23908;22905;26309;28138;27186;30696;22508;22914;25558;30355;32697;40175;38613;53544;56695;87981;54917 -5206;'029;Caribbean;1676;Household and sanitary papers;5622;Import value;1000 USD;44;40;50;58;72;92;143;;330;348;409;2356;2478;4204;6983;6897;3940;4038;8848;15546;14476;11593;13685;13372;9880;8561;9645;12115;3154;2464;2661;10796;14194;15686;24644;24823;22512;19503;22904;19717;29753;25599;32163;34640;36587;44247;27835;29843;33279;39237;41875;38428;32070;35257;38844;38536;40688;49719;52654;54409;64728;111852;79447 -5206;'029;Caribbean;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;62;251;233;260;227;3;3;82;210;184;284;471;550;607;3852.45;3918;4458;11288;11159.3;10532;14384;14367;1445;1088;16015;14724;16206.33;15712;9910 -5206;'029;Caribbean;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;99;362;350;361;158;8;8;66;178;193;330;597;716;676;4512;5158;6454;12565;13215;13405;15199;15172;1793;1468;18478;16426;18433.94;20319;14079 -5206;'029;Caribbean;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83000;83000;82000;71000;64700;76200;71600;74300;74200;71400;73990;74700;72700;69000;73800;72800;73700;71000;68000;64200;64200;64200;64200;64200;64200;64200 -5206;'029;Caribbean;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140949;146394;155174;141544;135701;138295;156376;155637;168714;225433;208483;158895;160378;218699;199544;192555;188269;196311;221573;265034;252671;295561;240603;331538.92;382571;283146 -5206;'029;Caribbean;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96793;80742;96026;86520;83978;97397;112680;113257;130136;125660;109959;104349;125440;219467;168128;139846;211348;192972;213013;245625;234069;288678;248333;312125.93;404118.02;313568.02 -5206;'029;Caribbean;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;2059;1661;2005;1259;999;2084;2083;780;629;1159;5593;2539;7175;3525;2716;8793;4669;7628;8401;3192;8105;7202;4333;9845;6398 -5206;'029;Caribbean;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;1830;1139;1359;730;698;1320;1350;1298;668;1072;1556;2988;13659;3031;2398;10867;4624;8451;10645;3203;9494;8833;5804;11974;7232 -5206;'029;Caribbean;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;48000;54000;55600;51600;51600;53600;58600;61600;58600;57600;35600;32000;32000;32000;36000;36000;;;;;;;;;;;;;;;;;;;;;;;;;; -5206;'029;Caribbean;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;3800;3400;4400;3900;4000;13300;17000;13000;19400;26700;26400;34200;33200;29500;30400;50800;77800;129300;118500;140800;128100;130000;148100;167100;154500;167400;168700;160100;154500;140300;145000;77699;96183;93058;83800;71800;87500;;;;;;;;;;;;;;;;;;;;;;;;;; -5206;'029;Caribbean;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;556;501;640;734;908;3072;3814;3295;4890;6749;7659;12295;11031;11041;12437;29731;36564;58931;51090;71035;72493;65921;80055;86551;76209;86410;89073;83081;79134;69895;71465;46586;50600;48925;58380;40559;47478;;;;;;;;;;;;;;;;;;;;;;;;;; -5206;'029;Caribbean;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;;;;;;;;;;;;;;;;;;;;;;;;;; -5206;'029;Caribbean;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;;;;;;;;;;;;;;;;;;;;;;;;;; -5206;'029;Caribbean;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83000;83000;82000;71000;64700;67100;65800;67700;67000;65300;67390;68000;67800;68000;69400;68600;69900;68000;64300;63200;63200;63200;63200;63200;63200;63200 -5206;'029;Caribbean;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96887;112270;117020;111026;109346;106702;72274;72073;105762;130522;131834;129808;100269;128035;127941;134015;108637;118479;125820;156888;155107;176238;146197;236678;253753;184155 -5206;'029;Caribbean;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56419;55515;62453;60504;59462;58810;47788;47785;58934;57354;58178;57856;56944;84237;78224;80346;80863;84554;79020;96553;107699;116490;101815;159354;182135;138579 -5206;'029;Caribbean;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;0;581;888;747;529;404;409;113;117;374;310;302;144;374;148;406;407;672;904;598;915;1221;687;3106;2641 -5206;'029;Caribbean;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;0;257;409;273;231;171;179;57;73;127;386;387;137;381;128;624;519;564;530;327;948;837;557;2541;2215 -5206;'029;Caribbean;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 -5206;'029;Caribbean;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18062;7073;8320;3946;3376;2745;34190;34364;24722;23676;14299;12755;30869;46946;32091;24665;37737;39463;46312;52236;54776;57881;44731;44834.83;68240;46628 -5206;'029;Caribbean;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14313;7570;9493;3953;3949;3329;21287;21508;31631;31026;20388;23602;38482;79162;37648;25135;75660;64809;81261;90509;84115;110383;95352;93396.1;142651;110401 -5206;'029;Caribbean;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;198;389;302;44;16;1279;1279;153;43;67;4164;354;4349;1393;1357;6953;2751;6042;5688;1417;1341;1109;1073;1171;778 -5206;'029;Caribbean;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;139;295;207;68;36;774;774;632;36;72;158;267;4638;1111;932;8316;3097;6677;8199;1697;1550;1310;1762;2026;1269 -5206;'029;Caribbean;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2800;2400;2800;3100;2700;2500;3000;3300;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000 -5206;'029;Caribbean;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25374;26434;28204;24782;20758;26016;46629;45939;37892;70839;61995;15951;25773;42407;38634;32349;40096;36289;46794;48178;38855;58722;46673;46703.09;57618;49393 -5206;'029;Caribbean;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25669;17371;22953;20834;19092;32206;41553;41933;39143;36549;30585;22011;27888;54515;50097;32776;52425;41347;50195;53373;39211;59971;49046;57328.83;77059;61651 -5206;'029;Caribbean;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;1861;566;690;343;416;357;351;476;390;639;1002;1717;2193;1401;854;1082;1248;594;1484;852;5185;4420;2259;4616;2508 -5206;'029;Caribbean;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;1691;533;689;335;410;350;372;588;505;819;890;2074;5812;1027;826;1467;553;672;1435;670;6444;6115;2965;6524;3024 -5206;'029;Caribbean;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3400;3200;2800;2000;2700;0;0;0;0;0;0;0 -5206;'029;Caribbean;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;626;617;1630;1790;2221;2832;3283;3261;338;396;355;381;3467;1311;878;1526;1799;2080;2647;7732;3933;2720;3002;3323;2960;2970 -5206;'029;Caribbean;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;392;286;1127;1229;1475;3052;2052;2031;428;731;808;880;2126;1553;2159;1589;2400;2262;2537;5190;3044;1834;2120;2047;2273.02;2937.02 -5206;'029;Caribbean;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;125;125;125;38;44;44;38;79;79;117;166;489;357;357;352;263;320;325;325;664;452;314;952;471 -5206;'029;Caribbean;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;54;54;54;21;25;25;21;54;54;122;260;3072;512;512;460;455;538;481;509;552;571;520;883;724 -5206;'029;Caribbean;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;1000;1000;1000;1020;1100;1100;5000;6000;6000;11000;11000;11000;5700;5700;5700;5700;5700;5700;5700 -5206;'029;Caribbean;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;6300;5700;6800;13700;14000;15900;19300;29400;55300;59000;66100;64300;55300;71200;63900;31500;36000;29200;43000;67400;52200;83700;56000;71700;71915;38756;43458;81401;71392;73311;52700;70652;67801;47864;45994;47897;54923;51057;40794;39163;38571;37107;49439;67509;66861;51090;62524;55392;21420;22577;22019;18619;18606;26238;20668;25831;12750;13437;11521;14227;28212.64;25527;11953 -5206;'029;Caribbean;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;1315;1216;1480;2529;2801;4325;4623;6035;11581;13581;14537;15863;14097;24788;25897;20548;22801;18040;27321;47312;47945;53941;43554;52704;45513;39327;44078;67157;65203;63063;47294;53631;52136;37094;47225;48694;45615;36891;31365;34053;32125;35619;48658;61868;61323;67770;78078;63410;36146;35376;42992;36913;26191;50500;36915;44966;29822;18701;37018;65553;81253.68;68986;62196 -5206;'029;Caribbean;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;1000;500;300;100;200;200;1600;1600;1800;1400;1600;1600;1100;900;1400;1300;1300;1300;1300;1300;1200;1200;600;5415;606;450;388;335;239;1222;257;131;126;130;192;1089;1084;1366;1352;583;1161;4404;2087;978;196;1427;1252;628;624;583;2247;1914;792;3819;498 -5206;'029;Caribbean;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;42;25;12;11;48;33;1123;1123;1486;1045;1163;1051;1676;1689;2479;1636;1636;1636;1636;1636;953;953;436;5991;435;451;442;443;301;1097;337;339;275;220;443;1345;1330;2357;1685;724;1141;1364;3675;751;491;14170.6;12890;1484;4907;3233;9221;11548;22555;20708;17774 -5206;'029;Caribbean;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;550979;543598;513301;378189;458712;573009;626508 -5206;'029;Caribbean;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28409;49262;35110;18822;23610;23590;29382 -5206;'029;Caribbean;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61015;60578;58261;42708;61260;67181;61634 -5206;'029;Caribbean;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;981;412;259;216;201;268;554 -5206;'029;Caribbean;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49310;47935;46912;34913;54247;57699;48859 -5206;'029;Caribbean;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;726;125;94;101;48;138;206 -5206;'029;Caribbean;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11705;12643;11349;7795;7013;9482;12775 -5206;'029;Caribbean;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;255;287;165;115;153;130;348 -5206;'029;Caribbean;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15804;18097;22047;13544;16323;22040;28777 -5206;'029;Caribbean;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3760;3693;3258;2025;1681;1626;1757 -5206;'029;Caribbean;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17712;17699;16110;14777;13498;17880;22655 -5206;'029;Caribbean;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2153;2100;3388;487;641;893;1598 -5206;'029;Caribbean;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78295;99973;92253;69624;70623;85175;114410 -5206;'029;Caribbean;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5541;6981;6865;5475;6074;5218;6967 -5206;'029;Caribbean;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;158;450 -5206;'029;Caribbean;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;218;902 -5206;'029;Caribbean;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;242 -5206;'029;Caribbean;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;308 -5206;'029;Caribbean;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;170 -5206;'029;Caribbean;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;303 -5206;'029;Caribbean;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35 -5206;'029;Caribbean;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39 -5206;'029;Caribbean;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;330628;315355;297256;209578;274896;349318;365238 -5206;'029;Caribbean;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13918;32575;19227;9167;12981;13630;16875 -5206;'029;Caribbean;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27073;7709;5989;8355;2307;12029;10232 -5206;'029;Caribbean;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;964;964;964;967;968;1099;1089 -5206;'029;Caribbean;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20452;24187;21385;19603;19805;19386;23562 -5206;'029;Caribbean;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1092;2537;1149;485;1064;856;542 -5206;'029;Caribbean;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;570193;596248;614853;546903;661563;745048;725947 -5206;'029;Caribbean;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;138936;146241;151871;160875;173409;185796;171039 -5206;'029;Caribbean;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;372;585;415;600;2865;1634;1147 -5206;'029;Caribbean;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;393;398;402;399;408;422;406 -5206;'029;Caribbean;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39618;42842;51492;42077;46264;57940;51280 -5206;'029;Caribbean;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7061;7903;8056;8037;11877;10849;8618 -5206;'029;Caribbean;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;137729;146722;132592;124682;142873;146733;153621 -5206;'029;Caribbean;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32856;36494;38357;45611;40083;46375;46662 -5206;'029;Caribbean;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;172207;185379;198602;185355;234033;266718;241404 -5206;'029;Caribbean;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50426;52359;55526;58935;65659;69466;65610 -5206;'029;Caribbean;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;220267;220720;231752;194189;235528;272023;278495 -5206;'029;Caribbean;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48200;49087;49530;47893;55382;58684;49743 -5207;'005;South America;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6836288;7672110;7301633;6121375;8295327.9;9714567.36;7656280.36 -5207;'005;South America;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20345852;25071402;22583926;19847956;25135235.66;28389559.61;25012756.62 -5207;'005;South America;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;201806;168623;152609;169398;188445;207899;211230;314322;342534;379602;387983;401783;486710;953840;749932;666258;758161;811973;1040471;1307287;1359643;1311936;998710;1003879;933581;1029621;1210896;1255797;1157378;1170298;1346038;1833356;1731118;2103728;3521254;3045137;3647138;3540960;2964223;3182171;2846915;2428847;2555401;3263846;3455212;4108212;4664362;5891611;4733684.1;5899062.4;6700954;6338222;6455736;6339712.2;5381409;4764903;4738384;5394699;5109604;4289630;5667079.9;6925318.36;5262107.36 -5207;'005;South America;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;74698;64034;63443;84381;102896;115001;108491;150629;183218;188689;196862;213139;330179;460438;389191;387075;487658;614426;1071472;1505984;1477417;1206142;1288393;1573794;1342749;1486608;1813139;2665033;2545933;2587365;2781936;3342820;3578136;4502508;6110901;4886157;5058185;4796012;5029991;5908230;5272541;5548469;6962738;8772216;9269843;10212401;12436081;14294802;11281520;14572057;15840334.43;14486113;15426823.86;15847909.06;16205159;15921132;17657620;22158033;19589653;16774733;21135775.66;23913609.61;21555527.62 -5207;'005;South America;1861;Roundwood;5516;Production;m3;145393836;146829013;146511340;149760948;151898435;149896767;152568140;156796337;158668393;163099443;167138633;167910201;168506273;171638418;179400461;185950074;191412954;200959513;217995658;227677314;228081089;230333392;237834353;243003184;246946040;252805357;258462102;263467446;272065713;272028535;278535179;288267633;290180100;301002739;308126837;305650685;309019949;312819674;325182366;332303001;319510237;329540182;355601793;351988312;345194162;343485399;355956356;354430895;350268905;359318849;383346712;398455538;398150687;398826576;388460592;407944060;415686004;427887867;408575030;418678562;436499463;453288887;458461069 -5207;'005;South America;1861;Roundwood;5616;Import quantity;m3;349900;273400;244400;262400;379000;340500;309600;230200;215000;218900;226600;200900;159600;165500;154200;114300;88000;135800;99300;94500;135600;149900;141000;87000;70700;79400;71000;44300;41600;25822;14255;52437;32039;31699;80705;29605;37173;137914;117214;35756;96611;20424;25716;33290;34690;37128;37594;34521;51141;44253;75074;74024;124625;115614;44576;91011;51315;100901;104135;56430;82563;89583.03;110309.03 -5207;'005;South America;1861;Roundwood;5622;Import value;1000 USD;9866;7325;6398;7422;12097;11718;10697;8208;9061;10289;9920;8774;10199;12174;11212;8735;7895;10904;11616;14585;20942;23693;23741;14813;10333;10023;7706;8637;6422;1393;2326;6476;3106;3436;8519;4641;5671;11229;5718;2916;3801;2189;1482;3380;3361;4683;3877;4463;5285.1;3882;9045;7943;28492;28239.2;6426;7559;15985;27292;28414;10694;23050;17899.36;23722.36 -5207;'005;South America;1861;Roundwood;5916;Export quantity;m3;391700;409300;384500;426800;540200;550200;414900;405000;394800;379500;315400;246100;545400;233200;97700;96400;235200;775400;1083400;1154900;463100;986000;1086700;971700;1336149;1347055;2001890;3273763;2583308;2983150;2309508;2534107;2290651;3332524;5156847;3481746;3958072;2790872;2199572;2599801;2261802;2809165;2080677;2375212;2215870;2470284;2476619;981884;518776;923267;921690;681698;721242;998166;969332;1051976;2287137;4204876;4128726;5000320;8035205;5939385;4421570 -5207;'005;South America;1861;Roundwood;5922;Export value;1000 USD;9364;9471;8972;11334;16618;18394;15466;13743;14141;12216;9909;7581;17344;10544;7628;8189;11287;28350;41640;66714;27318;46412;41123;35743;46990;48699;77542;145632;124134;151704;118499;145606;178416;185523;281367;182347;238745;157575;132504;127312;100099;110377;86102;103974;104622;136767;178133;124158;78000;115358;146358.43;110614;156789;226663;261404;249859;408821;696833;565079;562619;1079943;897697;666004 -5207;'005;South America;1862;Roundwood, coniferous;5516;Production;m3;17974142;18851472;17909271;19027571;19444406;21607216;21878101;23354828;24062434;25693155;26314262;26120112;25372046;26191983;29154637;32170737;34757763;37080938;42936975;45942311;45662742;46000043;49309928;52659907;54419866;55437060;56515263;58208809;62257738;61754060;65701433;69160404;70888798;73143892;78113856;73059317;74054298;70793127;77534448;80253263;72210625;76225944;90740051;89492791;86264866;86875669;89219802;87541564;87330214;86886185;91816377;94477907;97147662;91991201;89520420;91934082;98463031;97572544;92673320;94349822;101977177;100160368;94738007 -5207;'005;South America;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25073;43052;54518;35571;36800;44757;50385 -5207;'005;South America;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10053;16128;16339;7531;10298;12539;15607 -5207;'005;South America;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;975202;2560526;2355520;2873655;4547875;2527909;1781542 -5207;'005;South America;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115356;313028;262637;263827;589525;333146;243071 -5207;'005;South America;1863;Roundwood, non-coniferous;5516;Production;m3;127419694;127977541;128602069;130733377;132454029;128289551;130690039;133441509;134605959;137406288;140824371;141790089;143134227;145446435;150245824;153779337;156655191;163878575;175058683;181735003;182418347;184333349;188524425;190343277;192526174;197368297;201946839;205258637;209807975;210274475;212833746;219107229;219291302;227858847;230012981;232591368;234965651;242026547;247647918;252049738;247299612;253314238;264861742;262495521;258929296;256609730;266736554;266889331;262938691;272432664;291530335;303977631;301003025;306835375;298940172;316009978;317222973;330315323;315901710;324328740;334522286;353128519;363723062 -5207;'005;South America;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26242;57849;49617;20859;45763;44826.03;59924.03 -5207;'005;South America;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5932;11164;12075;3163;12752;5360.36;8115.36 -5207;'005;South America;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1311935;1644350;1773206;2126665;3487330;3411476;2640028 -5207;'005;South America;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;293465;383805;302442;298792;490418;564551;422933 -5207;'005;South America;1864;Wood fuel;5516;Production;m3;117591836;117630013;119373340;121091948;122210435;117823767;119871140;121391337;122248393;123799443;125589633;126271201;127190273;128898418;130711461;132434074;134509954;136520713;139990650;142283144;144209140;146132497;149339177;152051376;152844840;154457842;156718076;159520104;160702046;161849841;164454638;167795139;168992984;173440627;173475317;176004107;178546444;181252500;182640716;185283292;186113496;186153954;188951109;191331487;169365056;164851900;168142952;169147921;160618447;161649906;171054640;178257471;177960706;183222377;171500162;180655766;177813183;180482021;177886330;177708295;185154273;189235936;188354118 -5207;'005;South America;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;636;852;1978;1978;291;59;17000;400;400;0;0;29;29;29;29;29;29;29;143;2869;226;233;240;471;2297;43;0;663;847;528;4417.03;11318.03 -5207;'005;South America;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;36;125;125;21;7;225;6;6;0;0;11;11;11;11;11;11;11;23;279;29;35;30;53;372;3;0;69;107;69;969.36;2015.36 -5207;'005;South America;1864;Wood fuel;5916;Export quantity;m3;1800;1100;1300;500;400;300;300;;;;;;;;;;;;;;;;;;;;;;;;;221;1655;5620;5620;9000;2800;1700;1700;0;0;0;196;196;196;45;45;45;45;658;1061;729;925;937;9631;8943;6350;5591;5845;5440;5440;6266;6023 -5207;'005;South America;1864;Wood fuel;5922;Export value;1000 USD;6;4;17;6;2;3;1;;;;;;;;;;;;;;;;;;;;;;;;;21;109;616;691;631;301;252;252;0;0;0;99;99;99;6;6;6;6;73;147;98;143;243;432;417;420;251;315;333;340;495;485 -5207;'005;South America;1627;Wood fuel, coniferous;5516;Production;m3;9126142;9227472;9330271;9434571;9540406;10004216;10124101;10245828;10369434;10495155;10623262;10681112;10732046;10859983;10994637;11131737;11370763;11506138;11649967;11789911;11979734;12159043;12412928;12617907;12742866;12886052;13061755;13251277;13387206;13635528;13930901;14204318;14532798;14978892;15147856;15365317;15541298;15504127;15992448;16513263;16626297;16719616;19204290;18997693;12717866;12894069;13007702;13997692;13679056;13439861;11270144;9351818;10210662;10152096;9700911;8741198;9163033;8776581;8711255;8450824;8407092;8951523;8971162 -5207;'005;South America;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;356;138;149;4372;10282 -5207;'005;South America;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;45;22;30;895;1937 -5207;'005;South America;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;394;395 -5207;'005;South America;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;111;112 -5207;'005;South America;1628;Wood fuel, non-coniferous;5516;Production;m3;108465694;108402541;110043069;111657377;112670029;107819551;109747039;111145509;111878959;113304288;114966371;115590089;116458227;118038435;119716824;121302337;123139191;125014575;128340683;130493233;132229406;133973454;136926249;139433469;140101974;141571790;143656321;146268827;147314840;148214313;150523737;153590821;154460186;158461735;158327461;160638790;163005146;165748373;166648268;168770029;169487199;169434338;169746819;172333794;156647190;151957831;155135250;155150229;146939391;148210045;159784496;168905653;167750044;173070281;161799251;171914568;168650150;171705440;169175075;169257471;176747181;180284413;179382956 -5207;'005;South America;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;0;307;709;379;45.03;1036.03 -5207;'005;South America;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;24;85;39;74.36;78.36 -5207;'005;South America;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6350;5591;5845;5440;5440;5872;5628 -5207;'005;South America;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;420;251;315;333;340;384;373 -5207;'005;South America;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;636;852;1978;1978;291;59;17000;400;400;0;0;29;29;29;29;29;29;29;143;2869;226;233;240;471;2297;;;;;;; -5207;'005;South America;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;36;125;125;21;7;225;6;6;0;0;11;11;11;11;11;11;11;23;279;29;35;30;53;372;;;;;;; -5207;'005;South America;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;1800;1100;1300;500;400;300;300;;;;;;;;;;;;;;;;;;;;;;;;;221;1655;5620;5620;9000;2800;1700;1700;0;0;0;196;196;196;45;45;45;45;658;1061;729;925;937;9631;8943;;;;;;; -5207;'005;South America;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;6;4;17;6;2;3;1;;;;;;;;;;;;;;;;;;;;;;;;;21;109;616;691;631;301;252;252;0;0;0;99;99;99;6;6;6;6;73;147;98;143;243;432;417;;;;;;; -5207;'005;South America;1865;Industrial roundwood;5516;Production;m3;27802000;29199000;27138000;28669000;29688000;32073000;32697000;35405000;36420000;39300000;41549000;41639000;41316000;42740000;48689000;53516000;56903000;64438800;78005008;85394170;83871949;84200895;88495176;90951808;94101200;98347515;101744026;103947342;111363667;110178694;114080541;120472494;121187116;127562112;134651520;129646578;130473505;131567174;142541650;147019709;133396741;143386228;166650684;160656825;175829106;178633499;187813404;185282974;189650458;197668943;212292072;220198067;220189981;215604199;216960430;227288294;237872821;247405846;230688700;240970267;251345190;264052951;270106951 -5207;'005;South America;1865;Industrial roundwood;5616;Import quantity;m3;349900;273400;244400;262400;379000;340500;309600;230200;215000;218900;226600;200900;159600;165500;154200;114300;88000;135800;99300;94500;135600;149900;141000;87000;70700;79400;71000;44300;41600;25822;14255;51801;31187;29721;78727;29314;37114;120914;116814;35356;96611;20424;25687;33261;34661;37099;37565;34492;51112;44110;72205;73798;124392;115374;44105;88714;51272;100901;103472;55583;82035;85166;98991 -5207;'005;South America;1865;Industrial roundwood;5622;Import value;1000 USD;9866;7325;6398;7422;12097;11718;10697;8208;9061;10289;9920;8774;10199;12174;11212;8735;7895;10904;11616;14585;20942;23693;23741;14813;10333;10023;7706;8637;6422;1393;2326;6452;3070;3311;8394;4620;5664;11004;5712;2910;3801;2189;1471;3369;3350;4672;3866;4452;5274.1;3859;8766;7914;28457;28209.2;6373;7187;15982;27292;28345;10587;22981;16930;21707 -5207;'005;South America;1865;Industrial roundwood;5916;Export quantity;m3;389900;408200;383200;426300;539800;549900;414600;405000;394800;379500;315400;246100;545400;233200;97700;96400;235200;775400;1083400;1154900;463100;986000;1086700;971700;1336149;1347055;2001890;3273763;2583308;2983150;2309508;2533886;2288996;3326904;5151227;3472746;3955272;2789172;2197872;2599801;2261802;2809165;2080481;2375016;2215674;2470239;2476574;981839;518731;922609;920629;680969;720317;997229;959701;1043033;2280787;4199285;4122881;4994880;8029765;5933119;4415547 -5207;'005;South America;1865;Industrial roundwood;5922;Export value;1000 USD;9358;9467;8955;11328;16616;18391;15465;13743;14141;12216;9909;7581;17344;10544;7628;8189;11287;28350;41640;66714;27318;46412;41123;35743;46990;48699;77542;145632;124134;151704;118499;145585;178307;184907;280676;181716;238444;157323;132252;127312;100099;110377;86003;103875;104523;136761;178127;124152;77994;115285;146211.43;110516;156646;226420;260972;249442;408401;696582;564764;562286;1079603;897202;665519 -5207;'005;South America;1866;Industrial roundwood, coniferous;5516;Production;m3;8848000;9624000;8579000;9593000;9904000;11603000;11754000;13109000;13693000;15198000;15691000;15439000;14640000;15332000;18160000;21039000;23387000;25574800;31287008;34152400;33683008;33841000;36897000;40042000;41677000;42551008;43453508;44957532;48870532;48118532;51770532;54956086;56356000;58165000;62966000;57694000;58513000;55289000;61542000;63740000;55584328;59506328;71535761;70495098;73547000;73981600;76212100;73543872;73651158;73446324;80546233;85126089;86937000;81839105;79819509;83192884;89299998;88795963;83962065;85898998;93570085;91208845;85766845 -5207;'005;South America;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17498;6207;9053;9485;11823;11319;12619;20614;29414;9914;9314;7914;4436;7506;11486;4475;2413;11963;2501;1070;2234;20918;16059;18196;11741;10880;27808;25073;43052;54162;35433;36651;40385;40103 -5207;'005;South America;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;752;1045;1382;1021;1145;2986;2473;3030;4975;836;448;335;1053;298;603;695;496;1839;629;111.1;173;2908;2267;2461;1137;1607;3265;10053;16128;16294;7509;10268;11644;13670 -5207;'005;South America;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1880808;1547637;1603289;1670397;2227306;2965295;1874895;1968621;1031421;810921;705324;635053;1011823;222122;284766;139628;65903;65716;45188;20232;37843;201319;38521;91640;162168;41348;73283;975202;2560526;2355520;2873655;4547875;2527515;1781147 -5207;'005;South America;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81023;67465;77888;131562;120413;167104;89169;117808;47993;39680;27269;19043;30113;9845;14906;10349;5337;6862;5958;1841;4963;18579;4044;10183;21710;5196;8228;115356;313028;262637;263827;589525;333035;242959 -5207;'005;South America;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17498;6207;9053;9485;11823;11319;12619;20614;29414;9914;9314;7914;4436;7506;11486;4475;2413;11963;2501;1070;2234;20918;16059;18196;11741;10880;27808;25073;43052;54162;35433;36651;40385;40103 -5207;'005;South America;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;752;1045;1382;1021;1145;2986;2473;3030;4975;836;448;335;1053;298;603;695;496;1839;629;111.1;173;2908;2267;2461;1137;1607;3265;10053;16128;16294;7509;10268;11644;13670 -5207;'005;South America;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1880808;1547637;1603289;1670397;2227306;2965295;1874895;1968621;1031421;810921;705324;635053;1011823;222122;284766;139628;65903;65716;45188;20232;37843;201319;38521;91640;162168;41348;73283;975202;2560526;2355520;2873655;4547875;2527515;1781147 -5207;'005;South America;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81023;67465;77888;131562;120413;167104;89169;117808;47993;39680;27269;19043;30113;9845;14906;10349;5337;6862;5958;1841;4963;18579;4044;10183;21710;5196;8228;115356;313028;262637;263827;589525;333035;242959 -5207;'005;South America;1867;Industrial roundwood, non-coniferous;5516;Production;m3;18954000;19575000;18559000;19076000;19784000;20470000;20943000;22296000;22727000;24102000;25858000;26200000;26676000;27408000;30529000;32477000;33516000;38864000;46718000;51241770;50188941;50359895;51598176;50909808;52424200;55796507;58290518;58989810;62493135;62060162;62310009;65516408;64831116;69397112;71685520;71952578;71960505;76278174;80999650;83279709;77812413;83879900;95114923;90161727;102282106;104651899;111601304;111739102;115999300;124222619;131745839;135071978;133252981;133765094;137140921;144095410;148572823;158609883;146726635;155071269;157775105;172844106;184340106 -5207;'005;South America;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8324;8048;42748;21702;17898;67408;16695;16500;91500;106900;26042;88697;15988;18181;21775;30186;34686;25602;31991;50042;41876;51287;57739;106196;103633;33225;60906;26199;57849;49310;20150;45384;44781;58888 -5207;'005;South America;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;641;1281;5070;2049;2166;5408;2147;2634;6029;4876;2462;3466;1136;1173;2766;2655;4176;2027;3823;5163;3686;5858;5647;25996;27072.2;4766;3922;5929;11164;12051;3078;12713;5286;8037 -5207;'005;South America;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1102342;761871;930597;618599;1099598;2185932;1597851;1986651;1757751;1386951;1894477;1626749;1797342;1858359;2090250;2076046;2404336;2410858;936651;498499;884766;719310;642448;628677;835061;918353;969750;1305585;1638759;1767361;2121225;3481890;3405604;2634400 -5207;'005;South America;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70681;51034;67697;46745;64494;113572;92547;120636;109330;92572;100043;81056;80264;76158;88969;94174;131424;171265;118194;76153;110322;127632.43;106472;146463;204710;255776;241214;293045;383554;302127;298459;490078;564167;422560 -5207;'005;South America;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3351;3520;11215;14159;3610;1025;900;2600;4200;3700;9900;1356;12751;14226;9940;15229;14434;6798;14704;16882;9728;11003;20473;68766;67056;24376;57637;22435;28241;20124;18200;19644;9192;29078 -5207;'005;South America;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109;353;2606;1294;662;190;217;1103;827;692;1028;56;651;688;940;1682;2859;378;1118;1553;1411;1840;1275;19351;22964.2;2428;2331;4959;9272;6739;2246;3419;3211;3224 -5207;'005;South America;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40524;49399;17363;77749;91331;59531;170850;239450;139750;231950;196820;246687;131248;158362;294205;211098;308653;368345;286356;195232;315581;413911;431696;439943;593361;718799;869184;1158593;1458465;1695821;2057231;3266839;3113284;2345349 -5207;'005;South America;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6050;6736;2403;14057;16652;7125;21050;34181;12858;12441;11788;14140;13005;15019;22234;33090;51634;67539;72250;46027;64285;86044.43;71982;120219;162256;218772;219429;264263;341396;292192;289366;464065;525980;384917 -5207;'005;South America;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4973;4528;31533;7543;14288;66383;15795;13900;87300;103200;16142;87341;3237;3955;11835;14957;20252;18804;17287;33160;32148;40284;37266;37430;36577;8849;3269;3764;29608;29186;1950;25740;35589;29810 -5207;'005;South America;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;532;928;2464;755;1504;5218;1930;1531;5202;4184;1434;3410;485;485;1826;973;1317;1649;2705;3610;2275;4018;4372;6645;4108;2338;1591;970;1892;5312;832;9294;2075;4813 -5207;'005;South America;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1061818;712472;913234;540850;1008267;2126401;1427001;1747201;1618001;1155001;1697657;1380062;1666094;1699997;1796045;1864948;2095683;2042513;650295;303267;569185;305399;210752;188734;241700;199554;100566;146992;180294;71540;63994;215051;292320;289051 -5207;'005;South America;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64631;44298;65294;32688;47842;106447;71497;86455;96472;80131;88255;66916;67259;61139;66735;61084;79790;103726;45944;30126;46037;41588;34490;26244;42454;37004;21785;28782;42158;9935;9093;26013;38187;37643 -5207;'005;South America;1868;Sawlogs and veneer logs;5516;Production;m3;20494000;21682000;18889000;19862000;20325000;21590000;22362000;23913000;24539000;26584000;28230000;27774000;27604000;28031000;32542000;35679000;38396000;39818800;46531008;51907400;50614008;51001000;53310000;55118000;56294000;58425008;59657508;59650532;60680532;61094540;62958487;66258008;66374000;73002000;77424308;77700478;79463705;76641774;73122650;73899709;66138413;71953951;86093323;80009625;84973387;87485259;84202046;79207102;78726458;80562943;86701972;96496967;96154681;93563780;89400136;89124968;94288062;99415772;94890715;97552281;106425030;101054484;98808484 -5207;'005;South America;1868;Sawlogs and veneer logs;5616;Import quantity;m3;330300;263000;230900;250300;366200;333900;304600;225500;210900;215100;220900;183200;143600;143600;129600;97600;81200;127400;89900;83200;127200;143600;137700;76700;63000;73000;67700;42700;39300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5207;'005;South America;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;9045;6853;5831;6991;11596;11484;10526;8055;8757;9961;9703;8393;9868;11135;9318;7400;7377;10347;10981;14047;20539;23514;23668;14615;10082;9860;7587;8458;6038;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5207;'005;South America;1868;Sawlogs and veneer logs;5916;Export quantity;m3;348300;364400;339300;386600;510900;518900;382100;374600;368100;351300;295300;211900;515600;191300;49100;61200;187100;727200;1032700;1106300;418300;941500;1057100;949600;1314049;1192955;1310890;1860963;1436808;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5207;'005;South America;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;8393;8419;8086;10616;15821;17439;14586;12777;13228;11242;9205;6608;16332;8428;4984;6188;8510;24919;37475;62321;23366;42505;38429;33025;44323;42370;56885;98227;82314;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5207;'005;South America;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;7250000;7827000;6419000;7073000;7233000;8189000;8595000;9511000;9957000;11178000;11667000;11243000;10571000;10721000;13551000;15608000;17658000;18542800;22002008;24362400;23442008;23799000;25176000;26851000;27389000;27561008;27610508;27728532;28371532;28576532;30298532;31066008;31738000;33454000;35868000;35843000;37323000;34229000;36682000;37735000;34611000;37922000;45356000;42997898;46238500;47309500;45106300;42078000;40803158;42088324;45661233;50131089;51076000;50894099;49343652;48998710;52859870;55627042;51900801;53852216;59889877;56012865;53641865 -5207;'005;South America;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;53600;30100;10000;5200;11500;9200;2200;400;4000;4800;6100;12900;22000;23800;2600;38200;21600;31400;24700;26100;97400;114200;107600;32300;11900;11900;11900;11900;300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5207;'005;South America;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;1623;1192;403;133;561;469;76;19;106;201;193;453;1915;3942;220;2419;2502;3046;2489;2767;11599;15782;15759;4780;1684;1684;1677;1677;77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5207;'005;South America;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;3000;146600;674500;954000;1003800;359100;888400;1023000;901200;1270700;1161900;1271100;1399700;861100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5207;'005;South America;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5207;'005;South America;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;13244000;13855000;12470000;12789000;13092000;13401000;13767000;14402000;14582000;15406000;16563000;16531000;17033000;17310000;18991000;20071000;20738000;21276000;24529000;27545000;27172000;27202000;28134000;28267000;28905000;30864000;32047000;31922000;32309000;32518008;32659955;35192000;34636000;39548000;41556308;41857478;42140705;42412774;36440650;36164709;31527413;34031951;40737323;37011727;38734887;40175759;39095746;37129102;37923300;38474619;41040739;46365878;45078681;42669681;40056484;40126258;41428192;43788730;42989914;43700065;46535153;45041619;45166619 -5207;'005;South America;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;276700;232900;220900;245100;354700;324700;302400;225100;206900;210300;214800;170300;121600;119800;127000;59400;59600;96000;65200;57100;29800;29400;30100;44400;51100;61100;55800;30800;39000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5207;'005;South America;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;7422;5661;5428;6858;11035;11015;10450;8036;8651;9760;9510;7940;7953;7193;9098;4981;4875;7301;8492;11280;8940;7732;7909;9835;8398;8176;5910;6781;5961;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5207;'005;South America;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;348300;364400;339300;386600;510900;518900;382100;374600;368100;351300;295300;211900;515600;191300;49100;58200;40500;52700;78700;102500;59200;53100;34100;48400;43349;31055;39790;461263;575708;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5207;'005;South America;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;8393;8419;8086;10616;15821;17439;14586;12777;13228;11242;9205;6608;16332;8428;4984;6104;4291;4654;7405;9459;6055;6473;4631;3585;4392;3684;6812;35385;47400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5207;'005;South America;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47122000;60677000;64072000;59331328;62885277;69742661;70835000;80393000;80610040;93338558;95999000;100230000;105351000;112879000;109503000;109602000;108827662;115418000;126104317;131072481;135340103;123224886;130545770;130791994;149921886;158138886 -5207;'005;South America;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20147000;22766000;23906000;19173328;19623328;23633661;25210000;24919000;24085000;28409000;28709000;30215000;28552000;31815000;31642000;32466000;27715876;27581000;31299957;33409648;30087525;29062392;28927191;30085208;32148980;29068980 -5207;'005;South America;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26975000;37911000;40166000;40158000;43261949;46109000;45625000;55474000;56525040;64929558;67290000;70015000;76799000;81064000;77861000;77136000;81111786;87837000;94804360;97662833;105252578;94162494;101618579;100706786;117772906;129069906 -5207;'005;South America;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;138800;676600;1395200;1131000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5207;'005;South America;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;3955;18642;44960;39481;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5207;'005;South America;1870;Pulpwood and particles (1961-1997);5516;Production;m3;2186000;2556000;3093000;3599000;3989000;5123000;4825000;5833000;6120000;6932000;7256000;7489000;7540000;8204000;9561000;11010000;11454000;17462000;24011000;26527000;26538000;26442000;28391000;28863000;30835000;32846000;34802008;36899000;42975008;41268008;43117808;46100286;46997200;46811612;49130812;44023700;43260400;;;;;;;;;;;;;;;;;;;;;;;;;; -5207;'005;South America;1870;Pulpwood and particles (1961-1997);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;138800;676600;1395200;1131000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5207;'005;South America;1870;Pulpwood and particles (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;3955;18642;44960;39481;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5207;'005;South America;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;1196000;1361000;1700000;1973000;2154000;2908000;2708000;3089000;3205000;3518000;3508000;3675000;3579000;4098000;4067000;4879000;5164000;6461000;8703000;9197000;9465000;9309000;10977000;12436000;13522000;14213000;15055000;16431000;19691000;18724000;20644000;23053078;23771000;23851000;26142000;20959000;20174000;;;;;;;;;;;;;;;;;;;;;;;;;; -5207;'005;South America;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;990000;1195000;1393000;1626000;1835000;2215000;2117000;2744000;2915000;3414000;3748000;3814000;3961000;4106000;5494000;6131000;6290000;11001000;15308000;17330000;17073000;17133000;17414000;16427000;17313000;18633000;19747008;20468000;23284008;22544008;22473808;23047208;23226200;22960612;22988812;23064700;23086400;;;;;;;;;;;;;;;;;;;;;;;;;; -5207;'005;South America;1871;Other industrial roundwood;5516;Production;m3;5122000;4961000;5156000;5208000;5374000;5360000;5510000;5659000;5761000;5784000;6063000;6376000;6172000;6505000;6586000;6827000;7053000;7158000;7463000;6959770;6719941;6757895;6794176;6970808;6972200;7076507;7284510;7397810;7708127;7816146;8004246;8114200;7815916;7748500;8096400;7922400;7749400;7803400;8742000;9048000;7927000;8547000;10814700;9812200;10462719;10538200;10272800;10076872;10694000;11755000;12711100;14198100;14433300;13212757;12142294;12059009;12512278;12649971;12573099;12872216;14128166;13076581;13159581 -5207;'005;South America;1871;Other industrial roundwood;5616;Import quantity;m3;19600;10400;13500;12100;12800;6600;5000;4700;4100;3800;5700;17700;16000;21900;24600;16700;6800;8400;9400;11300;8400;6300;3300;10300;7700;6400;3300;1600;2300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5207;'005;South America;1871;Other industrial roundwood;5622;Import value;1000 USD;821;472;567;431;501;234;171;153;304;328;217;381;331;1039;1894;1335;518;557;635;538;403;179;73;198;251;163;119;179;384;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5207;'005;South America;1871;Other industrial roundwood;5916;Export quantity;m3;41600;43800;43900;39700;28900;31000;32500;30400;26700;28200;20100;34200;29800;41900;48600;35200;48100;48200;50700;48600;44800;44500;29600;22100;22100;15300;14400;17600;15500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5207;'005;South America;1871;Other industrial roundwood;5922;Export value;1000 USD;965;1048;869;712;795;952;879;966;913;974;704;973;1012;2116;2644;2001;2777;3431;4165;4393;3952;3907;2694;2718;2667;2374;2015;2445;2339;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5207;'005;South America;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;402000;436000;460000;547000;517000;506000;451000;509000;531000;502000;516000;521000;490000;513000;542000;552000;565000;571000;582000;593000;776000;733000;744000;755000;766000;777000;788000;798000;808000;818000;828000;837000;847000;860000;956000;892000;1016000;913000;2094000;2099000;1800000;1961000;2546100;2287200;2389500;2587100;2696800;2756872;2633000;2806000;3070000;3353000;3395000;3229130;2894857;2894217;3030480;3081396;2998872;3119591;3595000;3047000;3056000 -5207;'005;South America;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;4720000;4525000;4696000;4661000;4857000;4854000;5059000;5150000;5230000;5282000;5547000;5855000;5682000;5992000;6044000;6275000;6488000;6587000;6881000;6366770;5943941;6024895;6050176;6215808;6206200;6299507;6496510;6599810;6900127;6998146;7176246;7277200;6968916;6888500;7140400;7030400;6733400;6890400;6648000;6949000;6127000;6586000;8268600;7525000;8073219;7951100;7576000;7320000;8061000;8949000;9641100;10845100;11038300;9983627;9247437;9164792;9481798;9568575;9574227;9752625;10533166;10029581;10103581 -5207;'005;South America;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;19600;10400;13500;12100;12800;6600;5000;4700;4100;3800;5700;17700;16000;21900;24600;16700;6800;8400;9400;11300;8400;6300;3300;10300;7700;6400;3300;1600;2300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5207;'005;South America;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;821;472;567;431;501;234;171;153;304;328;217;381;331;1039;1894;1335;518;557;635;538;403;179;73;198;251;163;119;179;384;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5207;'005;South America;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;41600;43800;43900;39700;28900;31000;32500;30400;26700;28200;20100;34200;29800;41900;48600;35200;48100;48200;50700;48600;44800;44500;29600;22100;22100;15300;14400;17600;15500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5207;'005;South America;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;965;1048;869;712;795;952;879;966;913;974;704;973;1012;2116;2644;2001;2777;3431;4165;4393;3952;3907;2694;2718;2667;2374;2015;2445;2339;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5207;'005;South America;1630;Wood charcoal;5510;Production;t;6601975;6574357;6448929;6528295;6567155;6681359;6755154;6899560;6963635;7174235;7378801;7300468;7335674;7784770;7801420;8036958;8316401;8754717;8858604;9171746;9339115;9597117;10034892;10273895;10551653;10779511;11060479;11463828;7761765;6621562;6667263;6449509;6229587;10456043;9855936;8779130;8027320;8629938;9005675;8357970;8467776;8562004;9822308;9726473;9420708;9532494;10440101;9654000;7552970;7483083;8042420;8746424;9120554;9128577;8018122;7065305;7077331;7939710;7959807;8095085;8894168;9205148;8706555 -5207;'005;South America;1630;Wood charcoal;5610;Import quantity;t;400;200;300;400;500;1100;500;500;500;500;500;500;800;2800;;;;;;;;;;;;;;;;;;822;1098;7259;9016;10355;11555;10930;11130;23395;21195;21130;23277;10326;12151;25573;59073;127647;117123;163894;149701;121251;84944;83536;54991;45098;47354;60773;69431;62547;115632.19;104738;102703 -5207;'005;South America;1630;Wood charcoal;5622;Import value;1000 USD;67;46;50;73;89;197;92;92;92;92;92;92;150;530;;;;;;;;;;;;;;;;;;235;241;404;512;525;674;493;413;674;715;1060;1874;3122;4065;7334;11133;25374;13513;20856;25533;23723;21059;20988;17983;16979;19595;23233;25972;20702;42481.84;34118;33086 -5207;'005;South America;1630;Wood charcoal;5910;Export quantity;t;4800;5100;3300;7500;1700;1100;800;600;1100;900;2200;2200;2200;2200;2200;2200;16500;26100;31600;25900;9500;3000;6800;6800;6800;6700;6700;6700;17600;7100;10500;36016;46953;34376;47276;94976;75316;71116;53916;77116;88716;140808;173306;257359;307386;396170;334513;392066;415355;390486;355488;258476;228285;216068;181556;174439;172425;196907;211643;212492;285939.94;276738.66;258917.65 -5207;'005;South America;1630;Wood charcoal;5922;Export value;1000 USD;138;152;133;202;78;39;24;14;26;24;10;10;10;10;10;10;580;818;2030;1618;1046;318;1020;1020;1020;984;984;984;2002;822;1320;7661;10995;13076;11114;17287;16720;15820;11503;12884;16492;16378;20039;31793;35602;46770;49713;88427;95185;85521;87892;68941;74641;64268;60173;59119;59126;69461;73558;72218;93238.14;90782.19;93548.19 -5207;'005;South America;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8846000;9613000;9611130;9967120;10145120;11504360;12737390;36860470;39257131;43327233;39490297;33662587;38512346;37686769;43386828;45196897;45904790;52374563;54637350;54251649;56935839;55517997;53689557;53712393;63472480;62173294 -5207;'005;South America;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;685;305;25668;39355;19525;39155;32567;178172;326688;463689;468650;87071;72727.7;85582;35985.43;32168.5;37327;21287;19923;15671;32671;26670;32414;44252.51;23672;44406 -5207;'005;South America;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;188;159;1176;1532;805;1295;2120;2650;3197;3932;11308;5104;5765.4;9077;6968;6894;8592;6999;7962;8761;8427;8152;7324;10046.53;10226;9505 -5207;'005;South America;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3379700;3678500;4101360;4315357;3697578;4812729;5705632;7019935;7525882;6953670;9105925;6687978;8887032;9015488;7385586;7067070.91;7792416.45;6998769;9192831;9521040;10466384;8774592;7183039;6852388;6415028.05;5421508.06 -5207;'005;South America;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;177125;177369;194811;205611;174670;202339;256436;325240;390426;402181;646133;456476;579039;681142;600611;565598;555135;484413;595157;599199;659747;653894;502023;483372.93;477474.47;454890.47 -5207;'005;South America;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5705000;6524000;6659000;6774000;6826000;8241000;9665000;11911000;14122000;19416000;21255000;18700000;21837000;20630000;20531700;20072600;20682044;24834912;26850085;26646799;28726235;26971741;24925112;25123912;27381603;26359403 -5207;'005;South America;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;447;181;1545;1894;1926;526;400;100;25300;39000;19100;38901;27660;32667;59193;81193;170155;46047;28777.7;27966;2284.43;2563.5;3540;3997;3302;3042;17220;8043;13457;15261.03;4010;9071 -5207;'005;South America;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;11;71;93;100;26;19;31;850;1245;490;1082;1389;1839;2352;2991;7146;2491;3395.4;5987;4855;4914;5911;5146;6124;6660;6487;6889;6518;8816.53;9393;8811 -5207;'005;South America;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;184000;670200;1342000;2685800;3298000;3372400;3552736;3146552;3794076;5328901;4174700;3858400;3379000;3677800;4100942;4315100;3697219;4661200;5583100;6507400;6610135;6894135;9017025;6581800;8811602;8946112;7347894;7034589;7758538;6971434;9169751;9510832;10456477;8765672;7176549;6848826;6407009.04;5388360.04 -5207;'005;South America;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;3494;13019;33588;83847;109280;151500;167049;160018;198803;272261;212676;184156;177103;177347;194799;205592;174620;200367;253761;323715;385238;400742;639382;448657;575935;678062;599466;564768;553686;483060;593679;598587;659157;653413;501494;482914.93;477063;454387 -5207;'005;South America;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50000;55000;2090000;2422000;2324000;2381000;2481700;2525400;3141000;3089000;2952130;3193120;3319120;3263360;3072390;24949470;25135131;23911233;18235297;14962587;16675346;17056769;22855128;25124297;25222746;27539651;27787265;27604850;28209604;28546256;28764445;28588481;36090877;35813891 -5207;'005;South America;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5420;5478;3671;4597;2725;2985;285;205;368;355;425;254;4907;145505;267495;382496;298495;41024;43950;57616;33701;29605;33787;17290;16621;12629;15451;18627;18957;28991.49;19662;35335 -5207;'005;South America;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;206;239;193;272;223;479;169;128;326;287;315;213;731;811;845;941;4162;2613;2370;3090;2113;1980;2681;1853;1838;2101;1940;1263;806;1230;833;694 -5207;'005;South America;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6594;5886;4675;4693;1400;400;700;700;418;257;359;151529;122532;512535;915747;59535;88900;106178;75430;69376;37692;32481.91;33878.45;27335;23080;10208;9907;8920;6490;3562;8019.01;33148.01 -5207;'005;South America;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;252;190;148;526;564;24;22;22;12;19;50;1972;2675;1525;5188;1439;6751;7819;3104;3080;1145;830;1449;1353;1478;612;590;481;529;458;411.47;503.47 -5207;'005;South America;1605;Sawdust (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -5207;'005;South America;1605;Sawdust (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -5207;'005;South America;1605;Sawdust (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -5207;'005;South America;1605;Sawdust (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -5207;'005;South America;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;17000 -5207;'005;South America;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;289000;320000;289460;311000;362760;742967;899366;941863;1027426;1411516;1304198;1458684 -5207;'005;South America;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1291;2291;2679;1734;2117;7264;6158;5889;7647;11101.44;11325;23814 -5207;'005;South America;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5778;6017;7327;5514;4833;2329;1919;1669;2418;2701.93;3491;7267 -5207;'005;South America;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12481;14671;21401;33997;42360;120169;235856;236314;425631;426648.26;502882;585462 -5207;'005;South America;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4353;2360;4203;7231;7728;20184;39821;39506;58905;56970.7;85827;113849 -5207;'005;South America;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87000;106000;86460;113000;168760;554159;710558;720863;806426;1189185;1082198;1236684 -5207;'005;South America;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;453;1277;1630;761;1437;2024;5589;4392;6099;10120.44;9511;22348 -5207;'005;South America;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;122;289;419;163;180;309;1137;546;798;1431;1618;5957 -5207;'005;South America;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11951;14472;14736;33719;42175;119270;235134;234301;418948;419355.78;495893;581692 -5207;'005;South America;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1766;2311;2793;5708;6581;18823;38673;38555;57162;55052.73;83847;112402 -5207;'005;South America;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;202000;214000;203000;198000;194000;188808;188808;221000;221000;222331;222000;222000 -5207;'005;South America;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;838;1014;1049;973;680;5240;569;1497;1548;981;1814;1466 -5207;'005;South America;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5656;5728;6908;5351;4653;2020;782;1123;1620;1270.93;1873;1310 -5207;'005;South America;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;530;199;6665;278;185;899;722;2013;6683;7292.48;6989;3770 -5207;'005;South America;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2587;49;1410;1523;1147;1361;1148;951;1743;1917.97;1980;1447 -5207;'005;South America;1872;Sawnwood;5516;Production;m3;10053600;10820300;9324400;9800700;9985900;10789002;11002502;11656000;12285102;12741100;13128000;12542900;12006900;12763102;15233602;16673202;18058200;18769600;20911102;21992400;22593600;22121700;23263700;24297600;24598100;25168600;26131800;26065000;25732500;21832600;23002000;23967000;23186000;25109300;27399000;29729000;30145000;30728000;31733900;31652100;32566000;33998900;35498500;36897800;37426400;38517800;38082180;34217500;28969800;30497328;29646430;30366536;28829930;26382681;25832793;25647039;26588606;26790454;26276044;25234763;26621357;25716042;24812301 -5207;'005;South America;1872;Sawnwood;5616;Import quantity;m3;1030100;723000;653000;837300;951700;957050;805700;942200;947100;876400;879900;613300;575650;1050850;1160063;756800;998300;1078700;1284500;1453200;993600;832500;815200;786500;651500;799900;639052;375267;459941;399562;423922;578943;509826;663112;706161;792807;634807;562707;455707;457761;471669;318515;292622;376554;409389;404238;404148;327210;268794;303773;284918;289582;267119;305657;254375;227559;297802;293884;296308;344064;328429;270850;215739 -5207;'005;South America;1872;Sawnwood;5622;Import value;1000 USD;49615;36112;31505;41775;49827;49837;44377;56984;72838;66241;68234;48362;57309;137672;142732;71340;92290;96301;167018;209628;145622;98501;92243;79974;59541;72237;77436;61534;56636;40301;35449;82282;90156;166038;187485;176166;178917;173386;118047;77046;79375;50936;53003;82176;69378;81995;89660;110035;77835;86165;103587;112533;104723;112876;98621;101023;95574;102327;105225;114981;130864;115041;101622 -5207;'005;South America;1872;Sawnwood;5916;Export quantity;m3;1325650;1037300;1027200;1374500;1469700;1522600;1354600;1743300;1622200;1664200;1690000;1473600;1578500;1291100;1102200;1083000;1623300;1632500;2359700;2550500;1977500;1601200;1695400;1843700;1643248;1670925;1899342;1930799;2046450;2177737;2172937;2026379;2228044;2980066;3940320;3408421;3868021;3623221;4289721;4852626;4980932;6049474;6925938;7558040;8013983;7448043;7732979;6777298;4640563;4598919;5009249;4850331;5236271;5883720;5536504;6806420;7375648;8766221;8272482;7504559;9327005;8073948;7066695 -5207;'005;South America;1872;Sawnwood;5922;Export value;1000 USD;56830;46715;45198;61085;68389;74011;67967;93552;106443;104685;110469;107457;162857;186079;173946;142115;208738;194226;367903;449065;386603;298448;323819;308721;265004;276789;354516;384154;360192;412944;443819;438163;538590;789230;935238;709261;898495;823884;950105;970129;979885;1153342;1298654;1727352;1863723;1917886;2106335;1831220;1126321;1392016;1467993;1358563;1489180;1808750;1617549;1741190;1962955;2241931;1959202;2084282;2814289;2985919;2080235 -5207;'005;South America;1632;Sawnwood, coniferous;5516;Production;m3;3979900;4332900;3364750;3616650;3803050;4237801;4405851;4804500;4959101;5318400;5401500;5259700;4493500;4968201;6641801;6952551;7622500;8435000;9547551;9353000;9225000;9105500;9873100;10494000;10652800;10543000;11157200;11163400;11155400;6168000;6724000;6901000;7166000;7649300;9588000;10125000;11072000;11539000;12927100;13856900;14610200;15732900;16967100;18367200;18708700;19478700;19102300;17375300;16310100;17004628;17843000;19087000;19576782;18437837;18194124;18250067;19510378;19879714;19545895;18819909;19975046;19063226;18123782 -5207;'005;South America;1632;Sawnwood, coniferous;5616;Import quantity;m3;947750;655650;608500;760450;863400;883000;748650;866600;827900;755250;745350;489250;475450;450300;499850;472750;614000;570250;739550;720350;492500;333950;391300;320100;202100;277400;247200;168600;109200;30540;26400;184470;74484;75973;60147;51803;46803;81703;94703;64303;105780;111931;91411;162291;163181;151317;153586;119562;126772;174763;167111;190037;184182;199313;175282;162856;172252;212549;218901;197886;231670;203540;150480 -5207;'005;South America;1632;Sawnwood, coniferous;5622;Import value;1000 USD;44913;32245;29188;37291;44461;44566;40041;52034;63608;56648;57326;37986;48373;47295;51866;45767;58441;55154;106384;118789;83971;48889;50717;36095;22758;28616;39940;31314;19658;4467;3886;30286;16191;18385;16379;16137;17334;20461;20951;15289;24911;25512;20295;32358;29622;25485;31971;34140;30070;41272;46535;53251;53673;58634;50805;46490;45974;58915;59666;50465;75145;70847;65346 -5207;'005;South America;1632;Sawnwood, coniferous;5916;Export quantity;m3;1126600;848550;827950;1110800;1204500;1240850;1065250;1385000;1149650;1102700;1161150;890500;748400;503750;549050;507050;840900;951850;1274900;1446600;1006450;731900;853000;942900;763500;913800;1059400;1169500;1173000;1278900;1291100;1070058;1089798;1471987;1645700;1590100;2163300;2223100;2826400;3210505;3401327;4152272;4768511;5081231;5646712;5233550;5300894;4652877;3207210;3327892;3769997;3718753;4245399;4759180;4607054;5973506;6281613;7544999;7084559;6300851;7784827;6656520;6078415 -5207;'005;South America;1632;Sawnwood, coniferous;5922;Export value;1000 USD;48108;38567;36883;49326;54038;57855;51702;73755;80022;75597;79488;71880;101360;98376;86653;55520;75998;93579;151719;206471;144072;97473;111395;94203;70425;86170;115084;153308;150333;175710;200588;167561;202639;278147;354673;295886;453606;410677;522213;545801;565740;665698;743605;986085;1067506;1062621;1117401;967921;581503;768646;899545;895543;1038564;1281100;1164084;1236528;1334908;1585870;1278409;1355187;1925413;2037891;1537967 -5207;'005;South America;1633;Sawnwood, non-coniferous;5516;Production;m3;6073700;6487400;5959650;6184050;6182850;6551201;6596651;6851500;7326001;7422700;7726500;7283200;7513400;7794901;8591801;9720651;10435700;10334600;11363551;12639400;13368600;13016200;13390600;13803600;13945300;14625600;14974600;14901600;14577100;15664600;16278000;17066000;16020000;17460000;17811000;19604000;19073000;19189000;18806800;17795200;17955800;18266000;18531400;18530600;18717700;19039100;18979880;16842200;12659700;13492700;11803430;11279536;9253148;7944844;7638669;7396972;7078228;6910740;6730149;6414854;6646311;6652816;6688519 -5207;'005;South America;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;82350;67350;44500;76850;88300;74050;57050;75600;119200;121150;134550;124050;100200;600550;660213;284050;384300;508450;544950;732850;501100;498550;423900;466400;449400;522500;391852;206667;350741;369022;397522;394473;435342;587139;646014;741004;588004;481004;361004;393458;365889;206584;201211;214263;246208;252921;250562;207648;142022;129010;117807;99545;82937;106344;79093;64703;125550;81335;77407;146178;96759;67310;65259 -5207;'005;South America;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;4702;3867;2317;4484;5366;5271;4336;4950;9230;9593;10908;10376;8936;90377;90866;25573;33849;41147;60634;90839;61651;49612;41526;43879;36783;43621;37496;30220;36978;35834;31563;51996;73965;147653;171106;160029;161583;152925;97096;61757;54464;25424;32708;49818;39756;56510;57689;75895;47765;44893;57052;59282;51050;54242;47816;54533;49600;43412;45559;64516;55719;44194;36276 -5207;'005;South America;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;199050;188750;199250;263700;265200;281750;289350;358300;472550;561500;528850;583100;830100;787350;553150;575950;782400;680650;1084800;1103900;971050;869300;842400;900800;879748;757125;839942;761299;873450;898837;881837;956321;1138246;1508079;2294620;1818321;1704721;1400121;1463321;1642121;1579605;1897202;2157427;2476809;2367271;2214493;2432085;2124421;1433353;1271027;1239252;1131578;990872;1124540;929450;832914;1094035;1221222;1187923;1203708;1542178;1417428;988280 -5207;'005;South America;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;8722;8148;8315;11759;14351;16156;16265;19797;26421;29088;30981;35577;61497;87703;87293;86595;132740;100647;216184;242594;242531;200975;212424;214518;194579;190619;239432;230846;209859;237234;243231;270602;335951;511083;580565;413375;444889;413207;427892;424328;414145;487644;555049;741267;796217;855265;988934;863299;544818;623370;568448;463020;450616;527650;453465;504662;628047;656061;680793;729095;888876;948028;542268 -5207;'005;South America;1634;Veneer sheets;5516;Production;m3;31600;39000;46200;46500;63700;80700;89800;96300;110400;128900;145700;185900;218800;206000;182000;205800;259700;265800;298200;357900;375500;372000;350000;386400;365000;365100;383500;382350;382900;495900;516600;578150;656630;703700;719300;757700;863500;830100;825250;883350;851440;804710;759100;838400;1745690;1873810;1578230;1729890;1515000;922280;929843;952589;953206;987371;1044607;1021674;1000913;1011516;991487;1005847;1011342;1027560;1005349 -5207;'005;South America;1634;Veneer sheets;5616;Import quantity;m3;5100;5000;3700;3300;2800;3200;2900;4700;3400;5800;12000;11600;9400;11500;17600;15600;19300;38200;63600;109300;101700;93500;68500;73600;72300;65500;61600;36000;49641;42293;33593;45619;50413;53130;31643;53416;46116;40316;29766;32616;27786;26649;20278;22606;24051;28139;30559;29502;21434;20998;23475;22570;22360;23829;17670;15930;10961;14585;10352;9074;15138;14289;29536 -5207;'005;South America;1634;Veneer sheets;5622;Import value;1000 USD;681;742;559;728;761;965;764;1029;835;1584;2553;2503;2983;4128;6261;4704;5354;10372;15893;26159;21542;21651;14296;12226;10039;12118;13160;11429;12065;12534;9356;21456;18902;23617;23145;30339;29745;32235;24515;23384;17633;24475;19824;25622;26822;32985;38267;48174;30100;36926;41483;40506;40752;47984;38702;32730;24256;25496;23044;18854;26099;29188;30232 -5207;'005;South America;1634;Veneer sheets;5916;Export quantity;m3;9100;7400;11100;10000;16800;22800;25200;35500;44600;46400;55400;73100;77900;54700;52200;64000;83800;92900;85500;112400;86700;134000;116300;115400;119300;82000;96100;83600;96800;80700;82200;128764;165646;203362;284960;351800;274300;190100;186500;177642;133614;119869;177701;173601;277517;244410;348354;159345;70045;62541;86522;83077;73057;93560;112896;115187;135683;172169;197268;275104;247715;321672;214406 -5207;'005;South America;1634;Veneer sheets;5922;Export value;1000 USD;427;788;1124;1241;2841;5260;4336;8323;18301;18283;19635;26711;33715;26085;26470;27571;34097;35884;38327;47589;45120;60379;54537;59436;62413;42625;42494;44939;47425;38964;36844;52838;80085;87693;115658;122530;134556;95869;66166;95186;62542;66951;64252;78080;94843;95012;117283;91320;52387;62462;72711;68150;60073;73106;74591;60780;62596;80682;63523;68314;64842;80449;52764 -5207;'005;South America;1873;Wood-based panels;5516;Production;m3;439600;444800;468800;533700;611000;764949;845960;961423;1066245;1219411;1467243;1859600;1979505;2078252;2238244;2533200;2609400;2725800;2863400;3231600;3279300;3029000;3223000;3256700;3154850;3324100;3595650;3625000;3651900;3636000;3705400;4061100;4744800;4973986;4991896;5488396;5794078;5970037;7007500;7813170;8290044;9192496;10810955;12607519;13413959;14518365;14212651;14617446;13350129;14830195;14996109;15671511;16455531;16347811;16038097;16434056;17087201;17751315;17688964;18921572;21343410;19266310;18444070 -5207;'005;South America;1873;Wood-based panels;5616;Import quantity;m3;11144;12907;10635;10604;11831;21986;13818;23910;23889;18976;35133;17513;15620;23968;27763;37221;66121;72721;90400;122000;125300;98300;53900;40900;20037;20057;29701;23479;29541;39734;40834;183580;151694;205749;274380;404840;478121;368652;321698;284559;320400;361240;451601;702200;875163;1017980;1016048;1271421;934632;1241324;1469001;1493509;1536010;1463831;1446823;1515353;1641493;2061755;1912618;1879471;2679553.65;2076312;1836623 -5207;'005;South America;1873;Wood-based panels;5622;Import value;1000 USD;1846;1919;1732;1666;1895;2559;1915;2664;2047;1553;4046;1773;1575;1988;2162;6437;10683;15483;24243;34483;35466;37897;27663;21619;10716;11000;12550;11982;13377;14866;16009;58851;49401;65214;94389;122549;154430;120660;102772;92874;99164;98009;104654;158259;203871;297970;339544;529847;381281;523100;642635;707477;722586;708065;611579;576289;602896;757674;681562;648040;1178951.65;996016;670245 -5207;'005;South America;1873;Wood-based panels;5916;Export quantity;m3;34200;33500;42500;57290;61500;66453;68505;69016;79706;102895;142507;165027;186811;183711;177811;232324;254200;337400;359500;453100;467000;434500;429600;499000;495000;537300;566900;746500;762800;774600;784500;922805;1274955;1521041;1721429;1775119;1706100;1434400;2148300;2556783;2764814;3657807;5054811;6111765;6623847;5862749;5667314;4580170;3705938;3727792;3858975;3438419;3595402;3981895;4363607;4995302;5765211;6351968;6390288;6364074;6279389.26;6227380.61;5539744.61 -5207;'005;South America;1873;Wood-based panels;5922;Export value;1000 USD;3330;3128;3930;5148;5946;6663;7174;8014;9246;11677;15901;20214;26297;33816;32457;45772;51785;77958;97547;136332;151802;124419;110959;125061;118337;134434;168131;238575;211185;226808;242755;308577;466972;542258;617698;583924;611511;438015;634423;686137;679851;802413;1159589;1835046;1611783;1553379;1750091;1625866;1118399;1347042;1435605;1389966;1403894;1538456.06;1535450;1529863;1707976;2042047;2019033;1865277;2795971.49;2866292.47;2155898.47 -5207;'005;South America;1640;Plywood and LVL;5516;Production;m3;306900;310200;307900;342000;386700;413900;469500;510600;535300;578700;688300;885300;950700;926900;938800;1014400;966000;981600;1059900;1174100;1235300;1195000;1177000;1190000;1159000;1197400;1499500;1599600;1568800;1564500;1501800;1696000;1929600;2346200;2193200;2253400;2147300;2202400;2798200;3061500;3335370;3613800;4249440;5254540;6089050;6050360;5313850;5167850;4403380;4438418;4507709;4539511;4425531;4341911;4550997;4913456;5261216;5626807;5224727;5330423;6232779;6230010;5943670 -5207;'005;South America;1640;Plywood and LVL;5616;Import quantity;m3;4970;4870;5630;4330;7763;7563;5200;4800;5800;6300;6600;9200;4700;4200;23400;15300;16300;26200;41900;46800;56600;45700;46600;37100;16723;17020;17741;19524;22294;22730;22530;102637;65964;88444;97852;83674;111774;109674;90074;76374;70044;65370;46643;70994;103956;141523;181523;257182;159425;257345;357817;409754;365519;283507;274361;268148;300632;321044;301693;298576;477679;319887;329907 -5207;'005;South America;1640;Plywood and LVL;5622;Import value;1000 USD;1077;968;1248;994;1481;1614;1167;739;592;478;683;1143;818;1117;1235;3272;4866;8460;16872;23112;23778;24854;25213;20463;9724;9939;10357;11198;12250;11913;12228;39577;26932;34447;44503;39231;52518;48571;38921;31703;29759;23602;17958;30348;45180;66003;86128;131389;82314;113568;151782;205734;178499;164936;140276;113104;121398;139534;119930;125462;248198;162635;166315 -5207;'005;South America;1640;Plywood and LVL;5916;Export quantity;m3;16400;16300;19300;20890;21300;23400;23300;28900;29600;44400;45400;52000;67700;44500;44700;71900;79400;114100;135500;190500;170200;138500;169000;227600;250500;243900;236000;411600;358100;348800;347200;470825;719914;862131;905402;814302;814000;730900;1403500;1709200;1907708;2291986;2949421;3585532;4412537;3869935;3616331;3186394;2478344;2360482;2386581;2107392;2115114;2309399;2652290;2851964;3447222;3912222;4082844;3925660;3593622;3572803;3182935 -5207;'005;South America;1640;Plywood and LVL;5922;Export value;1000 USD;2142;2170;2579;2895;3102;3352;3385;4421;4870;6763;7298;9636;12783;12846;11772;19312;19963;36715;47145;69014;71595;56837;56068;70367;70996;75862;93541;155525;112923;115328;131498;175418;301134;346427;394496;342682;363401;258786;450816;492151;490013;525901;784843;1275096;1105325;1001505;1059976;1140684;736855;877434;919128;850242;838006;933492;961138;915879;1046666;1366625;1349697;1192560;1855377;1790888;1318167 -5207;'005;South America;1607;Laminated Veneer Lumber (LVL);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000 -5207;'005;South America;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39 -5207;'005;South America;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45 -5207;'005;South America;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3012;2996 -5207;'005;South America;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1707;1444 -5207;'005;South America;1646;Particle board and OSB (1961-1994);5516;Production;m3;52300;61100;81600;98000;115700;151900;177900;200300;264100;310000;384400;520500;585400;655200;705800;791200;827400;850000;941000;1105500;1097000;1081000;1154000;1202000;1160450;1235500;1256500;1208400;1204100;1154300;1257200;1379900;1576200;1419986;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5207;'005;South America;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;300;500;300;700;1000;1600;1100;2200;2000;2000;2000;2000;5000;1800;700;18600;46400;42900;43300;50100;57100;50300;5400;1900;1414;1437;10312;2803;6888;16646;17946;55157;64873;91721;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5207;'005;South America;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;325;390;2726;5313;6428;6510;8490;10151;12580;2055;792;628;772;1886;597;1042;2866;3694;11968;14836;21193;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5207;'005;South America;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;15300;16400;20000;22400;18300;19500;15800;10500;18700;13100;10800;11800;13900;14500;13100;25700;13900;13500;29500;29800;44500;39800;12700;32700;21200;46500;62600;43700;81600;120100;132700;75683;92457;149114;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5207;'005;South America;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;815;853;1101;1169;982;989;852;581;1077;772;720;869;1358;2146;1536;3924;1535;1834;8697;9014;14012;13535;2859;3874;2480;5521;8267;6242;13194;18302;22489;14020;18398;30606;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5207;'005;South America;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1690396;1987156;2321212;2305153;2476100;2928230;2880006;3013820;3175998;3566455;3316540;3495120;3846300;3958700;3683020;4351640;4405400;4655000;4934000;4721500;4200500;4580400;4590832;4752333;4698677;4778597;5287741;4885000;4568000 -5207;'005;South America;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;127681;219078;184047;141678;122624;97585;122956;158330;207584;224673;243485;309429;274897;291215;279956;341594;404415;351036;458325;539955;601165;634942;734449;928264;905701;925353;1115028.92;1039822;890214 -5207;'005;South America;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33639;50734;43787;37107;29537;24856;28762;34007;36314;42739;50036;83128;79346;105313;93206;128130;160084;141499;189676;195841;189219;197478;222004;264013;278811;267278;397109.55;429285;220930 -5207;'005;South America;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;217110;264800;249200;145400;194500;317983;321106;362094;585310;672289;474359;407114;380827;356483;348769;365922;398496;363170;446642;541335;547840;789148;894591;992834;853639;959623;1061652.62;1075171;1055537 -5207;'005;South America;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53098;64292;65451;32574;36064;51537;48529;46590;76577;118914;92329;103230;110145;106931;98862;116470;131715;128183;164178;194605;189724;228238;267518;284079;288450;291086;395649.4;445840;385507 -5207;'005;South America;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;20000;62000;96000;106500;377000;419700;354000;324000;257500;385760;435000;458000;463000;486500;493800;497300;472600;467600;556800;679513;660000;627000;556000 -5207;'005;South America;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;818;899;8157;56347;81350;62867;62990;51515;124866;101411;105891;117958;174725;201969;283657;211020;181269;352861.79;168020;199746 -5207;'005;South America;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;172;210;2597;14575;27477;20339;21979;18011;39045;34617;33333;32364;46240;55788;89311;52892;44407;140819.08;63200;59950 -5207;'005;South America;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;213010;109010;106010;44010;46235;64054;76774;74274;67266;79325;96167;127682;178820;185645;208476;232927;234248.82;229860;206029 -5207;'005;South America;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;35239;22612;23952;10833;10687;17427;21271;19135;19523;21957;21379;26969;41730;46256;41354;42669;64571.15;65226;57633 -5207;'005;South America;1874;Fibreboard;5516;Production;m3;80400;73500;79300;93700;108600;199149;198560;250523;266845;330711;394543;453800;443405;496152;593644;727600;816000;894200;862500;952000;947000;753000;892000;864700;835400;891200;839650;817000;879000;917200;946400;985200;1239000;1207800;1108300;1247840;1325566;1462484;1733200;1823440;2054668;2502876;3289517;3680024;3631369;4553185;4698501;5166896;5006229;5654377;5648000;6019000;6633000;6797900;6792800;6442900;6762553;6904575;7208760;8133039;9162890;7524300;7376400 -5207;'005;South America;1874;Fibreboard;5616;Import quantity;m3;5874;7537;4705;5574;3068;12823;7518;16910;16089;10676;26533;6313;5920;17968;3663;3321;3421;3621;5200;25100;11600;2300;1900;1900;1900;1600;1648;1152;359;358;358;25786;20857;25584;48847;102088;182300;117300;109000;110600;127400;137540;197358;405715;526823;558871;503281;641674;432384;579395;655254;607853;610755;534478;453339;437538;404443;528790;494204;474273;733983.93;548583;416756 -5207;'005;South America;1874;Fibreboard;5622;Import value;1000 USD;756;932;472;641;371;878;697;1827;1374;996;3271;540;440;546;537;439;504;595;861;2881;1537;463;395;364;364;289;307;187;85;87;87;7306;7633;9574;16247;32584;58125;34982;34314;36315;40643;40400;50378;85000;108445;146242;159495;265668;185422;259423;312758;321199;319794;313955;249720;219467;203706;264816;229929;210893;392825.02;340896;223050 -5207;'005;South America;1874;Fibreboard;5916;Export quantity;m3;2500;800;3200;14000;21900;23553;29405;29616;31406;45395;86307;101227;105211;124711;120011;134724;160900;209800;194500;232800;252300;256200;247900;238700;223300;246900;268300;291200;323100;305700;304600;376297;462584;509796;598917;696017;642900;558100;550300;529600;536000;1003727;1520080;1853934;1523941;1476690;1564146;993283;832590;937334;997124;893583;966380;1051836;1067310;1226508;1244578;1261267;1245329;1245864;1389865.82;1349546.61;1095243.61 -5207;'005;South America;1874;Fibreboard;5922;Export value;1000 USD;373;105;250;1084;1862;2322;2937;3012;3299;4142;7883;9709;12156;18824;19149;22536;30287;39409;41705;58304;66195;54047;52032;50820;44861;53051;66323;76808;85068;93178;88768;119139;147440;165225;170104;176950;182659;146655;147543;142449;141309;229922;298169;441035;378890;426032;556018;367418;271995;335711;363491;392406;382187;388402.06;363209;358777;352062;345087;339532;338962;480373.93;564338.47;394591.47 -5207;'005;South America;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;730300;721840;670530;697792;723200;764300;742756;782548;759394;781581;784359;1134196;1072179;1126960;998862;991070;974000;601000;584000;560800;558500;482000;425206;410236;412419;380932;475297;458000;461000 -5207;'005;South America;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8400;18600;19000;20300;31600;29700;37500;52800;62759;83663;115871;137383;97179;142447;99655;84477;104564;114886;113369;126991;129651;112147;86709;95036;83605;76582;126680.13;89015;60277 -5207;'005;South America;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4292;8270;7160;8554;12022;12130;14026;13503;17800;23736;34971;50249;47998;94696;61001;58848;72158;79221;81306;92684;81036;62443;50679;59221;54192;49021;100645.78;77038;47446 -5207;'005;South America;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;368200;334800;333400;298000;289300;264000;287900;358381;359266;509330;406934;414347;342023;279587;290532;182300;153838;143196;171244;197856;225851;220722;150491;178665;164244;195196;196631.45;160787;204700 -5207;'005;South America;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;114825;100892;100604;83798;85414;75638;78237;88360;89157;150013;155168;162476;135816;138370;112334;90804;71464;109382;83192;90729;92953;79451;58237;64493;69168;77635;85572.93;78447;75515 -5207;'005;South America;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;305000;453000;594036;703692;949000;998140;1249912;1658328;2468123;2831443;2832010;3403989;3611322;4024936;3992367;4648307;4659000;5384000;6016000;6204100;6201300;5927900;6304347;6461339;6763341;7719107;8654593;7033300;6882400 -5207;'005;South America;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32973;75300;142800;70300;64500;69400;79200;74240;127506;312910;402041;412545;375045;433990;296562;455562;517036;463103;454231;380022;303484;311398;311539;420700;376224;354140;598313.34;451777;351194 -5207;'005;South America;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10500;22174;45009;19046;18450;20465;23330;24136;30830;59536;71885;93978;105587;144423;110206;184214;227023;228127;220459;208630;161457;150706;148227;199194;163376;142796;288305.63;259641;172675 -5207;'005;South America;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;202217;333817;279500;230100;261000;265600;248100;492140;966390;991132;898332;765552;591584;680667;522744;742485;840489;749602;792137;853818;837415;1004672;1087167;1078268;1080223;1048019;1191344.67;1186320.61;888473.61 -5207;'005;South America;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49345;70401;79037;59857;62129;66811;63072;90146;153030;224091;162546;197978;196918;213315;150983;238763;290114;282377;297225;297525;269518;278957;292301;279431;270020;259783;393590;484733.47;317786.47 -5207;'005;South America;1650;Other fibreboard;5516;Production;m3;15000;17000;17000;18000;25600;102800;104000;142800;142800;163600;163200;183600;123600;125600;171600;214000;221200;233200;260000;243000;241000;183000;231000;232000;211000;188000;102000;95000;90000;88000;94000;73000;73000;73000;73000;73000;61000;61000;61000;61000;62000;62000;62000;67000;15000;15000;15000;15000;15000;15000;15000;34000;33000;33000;33000;33000;33000;33000;33000;33000;33000;33000;33000 -5207;'005;South America;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;12259;2047;1147;7474;8188;20500;26700;12900;11500;10700;10500;7093;9142;8911;8943;31057;65237;36167;39356;33654;29864;43155;27465;20204;13993;6195;13054;34375;43551;8990.46;7791;5285 -5207;'005;South America;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;3070;1310;564;1455;2140;5956;7382;3842;3720;3287;2761;1748;1728;1589;2015;5910;26549;14215;16361;13577;13851;18029;12641;7227;6318;4800;6401;12361;19076;3873.61;4217;2929 -5207;'005;South America;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42579;28365;20576;28500;27400;30000;30000;0;0;0;153206;194424;353472;218675;296791;630539;33029;19314;12549;2797;785;2999;162;4044;1114;6920;4334;862;2649;1889.7;2439;2070 -5207;'005;South America;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12007;8321;6719;5934;5657;3018;3000;0;0;0;51416;55982;66931;61176;65578;223284;15733;8678;6144;1913;647;1770;148.06;738;369;1524;1163;344;1544;1211;1158;1290 -5207;'005;South America;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;65400;56500;62300;75700;83000;96349;94560;107723;124045;167111;231343;270200;319805;370552;422044;513600;594800;661000;602500;709000;706000;570000;661000;632700;624400;703200;737650;722000;789000;829200;852400;912200;1166000;1134800;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5207;'005;South America;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;5874;7537;4705;5574;3068;4423;4318;12110;9689;5476;20533;2713;3520;15568;1263;921;1021;1221;900;1100;800;700;300;300;300;300;300;300;300;300;300;13527;18810;24437;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5207;'005;South America;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;756;932;472;641;371;493;542;1557;978;699;2889;332;281;387;378;280;345;436;440;428;345;244;176;145;145;145;145;74;74;74;74;4236;6323;9010;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5207;'005;South America;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;2500;800;3200;14000;21900;23553;29405;29616;31406;45395;86307;101227;105211;124711;120011;134724;160900;209800;194500;232800;252300;256200;247900;238700;223300;246900;268300;291200;323100;305700;304600;333718;434219;489220;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5207;'005;South America;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;373;105;250;1084;1862;2322;2937;3012;3299;4142;7883;9709;12156;18824;19149;22536;30287;39409;41705;58304;66195;54047;52032;50820;44861;53051;66323;76808;85068;93178;88768;107132;139119;158506;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5207;'005;South America;1879;Total fibre furnish;5510;Production;t;631600;688200;805500;894100;1017600;1269700;1247100;1381400;1461800;2528400;2562300;3009500;3287100;3648900;3541200;3929800;4358600;4897600;5444000;6723700;6427600;6763700;6403200;7087000;6810200;7660100;8724900;8927500;9293500;8915500;9578900;10792200;11022500;11601100;12145800;12552100;12697200;12918200;14565200;15765200;15865559;16520306;18274980;19463766;20854137;22042173;24373980;26561813;27263346;27517120;28239594;28159748;29666490;32236390;33360607;34743794;36478289;38200317;36233070;37279323;38422831;41121217;41023004 -5207;'005;South America;1879;Total fibre furnish;5610;Import quantity;t;41800;33800;21500;34300;35000;87200;42400;413100;399400;496400;478900;564600;537200;727102;554253;517100;494800;529800;601100;584400;637500;634800;488600;581500;575900;560350;661400;681400;665800;781400;890100;926542;793564;807517;1088785;928952;1001603;978823;1011203;1169903;1035603;1161260;1127902;1314232;1246055;1133869;1226283;1418190;1325437;1469182;1497929;1401913;1454698;1548760;1478887;1291327;1081795;1108648;1282525;1319135;1433870.41;1298246;1174873 -5207;'005;South America;1879;Total fibre furnish;5622;Import value;1000 USD;4275;3471;2116;4153;3547;12880;6613;54853;55131;74321;77825;89758;107890;221497;166067;135473;135824;141037;205660;223740;265592;255635;171884;191454;180651;180850;234193;262743;314586;284026;328391;389148;251412;323302;598965;423439;427274;424645;439192;576040;457226;452791;467625;574658;574141;548967;611783;846419;648395;931770;1037205;872731;876628;898800;896638;703674;615052;703032;731236;628547;826754.49;959775;845165 -5207;'005;South America;1879;Total fibre furnish;5910;Export quantity;t;400;4100;400;3500;8500;6200;2400;130100;147900;144600;141900;261500;295800;314600;328400;375600;432750;704850;1013550;1306250;1274300;1286100;1551900;1517000;1529000;1516900;1414200;1621600;1555000;1741300;2166000;3115425;3687731;3822683;3777013;4072700;4207300;4692732;5160900;5053097;5749485;5800204;6883276;7785267;8339046;9079680;10629841;12143317;13962861;13199851;13965845.42;14251739;15529109;17488716;18620485;20400306;20662120;22168406;22257470;22923337;22610494.53;25910877.77;25983063.57 -5207;'005;South America;1879;Total fibre furnish;5922;Export value;1000 USD;26;269;26;230;602;467;218;14668;18470;22078;21471;30642;45076;114888;90267;95271;101785;165217;347734;561514;569635;450708;479322;608453;492272;542105;687192;979695;1055826;1000187;981580;1378241;1269483;1624862;2437987;1817075;1747148;1783022;2057097;2811779;2181107;2043355;2696202;3043515;3291016;3942809;5451963;7102794;5707485;7852629;8511579;7735942;8595842;8583538;9335207;8989791;9965380;13318149;11358533;8976805;10706888.31;12552500.69;12177773.7 -5207;'005;South America;1878;Pulp for paper;5510;Production;t;631600;688200;805500;894100;1017600;1269700;1247100;1381400;1461800;1630400;1705300;1934500;2118100;2365900;2284200;2591800;2978600;3411600;3851000;4960700;4736600;5065700;4573200;5170000;4823200;5239100;6068900;6245500;6548500;6498500;7106900;8279200;8621500;8986100;9480800;9777100;9940200;10158200;10728200;11310200;11419559;12031306;13285980;14405066;15071437;16123173;18270980;20101813;20763346;20796916;21160294;21570534;22894930;25009478;26310076;27886587;28694521;30376971;28921496;30129209;31054370;33198660;34035690 -5207;'005;South America;1878;Pulp for paper;5610;Import quantity;t;41800;33800;21500;34300;35000;87200;42400;413100;399400;438400;417900;487600;468200;507000;359700;343500;341000;369600;454500;436400;483900;483800;345700;430600;425500;433750;501000;493900;414200;363900;406500;593053;517277;526049;622411;676449;764300;768120;794100;830300;736000;842357;810058;897250;823175;808428;764743;937131;917443;961081;1027785;1013188;1049746;1025522;1093246;952361;808710;754984;828177;901868;865140.76;887180;870102 -5207;'005;South America;1878;Pulp for paper;5622;Import value;1000 USD;4275;3471;2116;4153;3547;12880;6613;54853;55131;70827;73995;84845;101808;194122;133518;112606;113991;120592;183168;197342;238030;230063;148504;169494;158490;164610;208449;234301;269824;226520;259603;329379;217461;275250;497409;378473;385791;387881;402884;513293;393496;396763;407904;473987;475251;490729;513760;721035;557044;785170;889512;769541;769874;763374;802547;627657;542537;609532;620430;533761;656855.29;802938;770841 -5207;'005;South America;1878;Pulp for paper;5910;Export quantity;t;400;4100;400;3500;8500;6200;2400;130100;147900;144600;141900;261500;295800;313700;327700;374600;432700;704800;1013500;1305200;1271600;1283400;1548100;1513300;1512600;1507500;1406900;1614500;1547900;1731000;2155700;3102756;3675077;3797273;3743405;4018500;4161600;4643532;5117500;4992597;5689785;5748204;6833131;7725766;8269779;9024006;10567117;12064906;13879389;13104302;13849501.42;14154189;15421544;17382739;18485818;20301464;20547772;22023794;22163302;22846125;22522298.76;25803676.77;25821014.57 -5207;'005;South America;1878;Pulp for paper;5922;Export value;1000 USD;26;269;26;230;602;467;218;14668;18470;22078;21471;30642;45076;114721;90131;95100;101776;165208;347725;561331;569231;450304;478743;608053;490794;541190;686400;978874;1054971;998810;980203;1374908;1267742;1621458;2432710;1811517;1740890;1776229;2052493;2804129;2174021;2038610;2690763;3036355;3282999;3935786;5442116;7089516;5695750;7834980;8482220;7716458;8574048;8560908;9307590;8970881;9942640;13283478;11339488;8963566;10690642.68;12529925.69;12150973.7 -5207;'005;South America;1875;Wood pulp;5510;Production;t;501200;574700;662500;740500;852400;1059200;1073800;1183700;1231800;1381000;1433500;1637600;1818300;2129300;2019600;2327200;2645000;3062000;3397400;4581100;4388000;4731500;4162600;4762000;4427100;4753600;5636700;5769000;6056000;6080000;6689400;7802700;8268000;8668100;9052800;9464100;9640200;9950200;10468200;11031200;11192559;11792306;13031980;14149066;14708437;15894173;17904980;19924813;20657146;20677709;21194605;21560760;22913884;25021369;26347832;28134038;28963477;30582485;29108815;30436209;31691756;33836760;35082490 -5207;'005;South America;1875;Wood pulp;5610;Import quantity;t;53300;42500;31400;65200;64800;133900;81200;464800;447900;474500;463000;539100;516900;568600;406200;379800;375800;399800;466500;460200;498800;498700;362600;449000;439400;454550;520800;505800;427100;385200;427800;621246;526384;537927;640326;688798;771200;769420;788950;833280;748330;858287;824220;898942;826807;822223;777512;942323;924440;960003;1035314;1009987;1050254;1022801;1091784;949415;805758;753236;821713;892147;857124.92;879951;862426 -5207;'005;South America;1875;Wood pulp;5622;Import value;1000 USD;6529;5196;4036;10440;9812;21806;14904;66088;66484;80124;84847;97181;114248;223040;157365;131103;130837;134790;189515;213553;248082;239424;158077;180263;166580;176373;220184;242286;281294;242905;275988;348152;221037;281004;512039;388475;387602;383718;394012;508850;394024;400003;409998;465576;466850;496690;523173;723461;557689;779121;888073;753555;765771;754686;797181;618905;530706;602026;613407;523654;645108.01;783323;750858 -5207;'005;South America;1875;Wood pulp;5910;Export quantity;t;400;4100;400;3500;8500;6200;2400;130100;147900;144600;142600;261500;295800;313700;327700;374600;432700;704800;1013500;1305200;1271600;1283400;1548100;1513300;1512600;1507500;1406800;1614300;1546100;1729200;2153900;3102378;3674605;3815873;3771005;4092600;4276900;4745932;5211850;5085211;5767980;5826863;6932005;7823847;8373687;9100342;10642576;12213451;14229485;13513100;14246500;14551322;15839894;17795866;18918351;20918970;21188933;22614194;22729144;23443361;23462664.55;26715909.77;27156291.57 -5207;'005;South America;1875;Wood pulp;5922;Export value;1000 USD;26;269;26;230;602;467;218;14668;18470;22078;21619;30642;45076;114721;90131;95100;101776;165208;347725;561331;569231;450304;478743;608053;490794;541190;686311;978785;1052180;995856;977249;1374442;1266621;1629988;2455299;1852559;1804137;1831352;2102438;2866996;2217825;2083195;2741593;3090128;3340335;3980282;5497815;7199292;5922812;8138435;8844914;8088537;8928114;8935864;9548366;9325550;10362689;13675204;11676514;9298721;11350072.84;13239181.69;13154013.7 -5207;'005;South America;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1024826;1065876;1007848;979000;1024263;1109819;1201562 -5207;'005;South America;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4334;4383;5716;8944;19898.55;15904;16836 -5207;'005;South America;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2653;3112;3821;5464;13315;12385;13730 -5207;'005;South America;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;201;297;683;4068;21252.43;10364.2;14420 -5207;'005;South America;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;176;291;1609;11038.8;6534;8328 -5207;'005;South America;1654;Mechanical wood pulp (1961-2016);5510;Production;t;178600;185500;225700;256900;287600;294500;290100;309500;309200;330600;324100;325300;356700;265400;263000;271400;304800;282700;312400;431500;389700;395700;450200;424200;509700;513900;512400;601000;643000;593000;629300;625700;740000;718100;752800;753100;929200;816200;934200;879200;851200;899200;899000;1030000;1027000;1050902;1055082;1039338;958507;923400;966813;994468;904468;833768;811868;810268;;;;;;; -5207;'005;South America;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;41800;33800;21500;34300;35000;21000;12000;10900;11900;13700;11000;7200;6300;6600;7000;5100;6300;4900;23100;32200;72000;59800;68600;73600;62700;38950;33800;30800;32500;11400;11500;7672;4737;7720;7297;18400;8800;6700;2500;3400;2700;1600;4032;3205;2719;5250;3250;3206;594;1217;1308;1793;2342;2202;2176;2568;;;;;;; -5207;'005;South America;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;4275;3471;2116;4153;3547;2222;1335;1140;1145;1385;1112;748;889;2101;2271;1414;1653;1170;6017;8595;36777;30602;33155;22532;19644;11618;11022;10648;17562;4052;4038;1872;1025;2189;2866;4436;3479;2821;1031;1429;1392;901;1193;983;800;1996;1062;1138;649;918;1089;888;1684;1672;1300;1515;;;;;;; -5207;'005;South America;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;17500;17000;12200;101100;12836;7523;11668;11900;17100;3400;900;700;0;200;1050;1300;450;0;0;175;0;0;0;92;52;43;10;0;0;;;;;;; -5207;'005;South America;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;9011;12240;7599;44800;4707;2033;4926;5139;7556;789;303;94;0;29;152;200;84;0;0;63;0;0;0;26;20;33;36;0;0;;;;;;; -5207;'005;South America;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;48000;71000;81500;87900;105100;123000;121200;108200;119600;124800;166300;205400;224400;242400;186800;187900;204900;178300;198800;256600;273800;242800;275400;285800;302400;322700;321300;305000;240000;265000;264100;266000;135000;192000;261000;207000;157000;148000;161000;301000;292460;276515;332639;378744;307311;305000;339097;276123;259624;265053;197824;201146;220729;315842;228969;226519;;;;;;; -5207;'005;South America;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;4163;8777;5321;22459;24400;4400;7400;5700;4900;7700;42635;51376;64763;47685;30084;21714;19371;14869;1992;22587;9027;11031;3651;6792;5566;;;;;;; -5207;'005;South America;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;1913;3167;2081;9686;10423;1862;3145;2450;2142;3434;20869;25356;32463;23810;14976;10874;9704;7428;1582;10534;5201;6436;2151;4174;2691;;;;;;; -5207;'005;South America;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1583;610;205;605;400;500;0;300;0;0;0;0;0;0;0;0;0;0;0;0;38;0;0;0;1;;;;;;; -5207;'005;South America;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;849;200;106;289;213;191;0;98;0;0;0;0;0;0;0;0;0;0;0;0;14;0;0;0;1;;;;;;; -5207;'005;South America;1656;Chemical wood pulp;5510;Production;t;274600;318200;355300;395700;459700;636700;659500;763000;800000;921600;938100;1101900;1232200;1516500;1506800;1798900;2087300;2554000;2843200;3808000;3651500;4027000;3394000;3989000;3555000;3855000;4728000;4780000;5095000;5133000;5726000;6836000;7332000;7686000;7970000;8362000;8398000;8852000;9269000;9750000;9913899;10479591;11657341;12597322;13265126;14436271;16395801;18399352;19072015;19122256;19613968;19967146;21368687;23436759;24863995;26460251;27278651;28906609;27515967;28781209;29711493;31792941;32514928 -5207;'005;South America;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;401800;387400;424100;406200;479000;461000;499700;351800;336400;333500;363200;420000;401500;409000;421500;274500;355200;361200;393000;465400;461200;378400;348700;391200;577138;494350;503646;587049;626749;737100;737020;766300;808500;714600;786522;742472;812216;754017;762952;731923;900413;888031;940776;992424;988334;1023982;1005059;1070485;928131;786842;732346;803449;865196;821438.51;852415;835510 -5207;'005;South America;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;53673;53971;69333;72704;83793;100671;191697;130762;109884;111623;118474;171799;186964;199061;197660;113558;145859;138019;151983;196418;222597;249383;218639;251736;320212;205368;262178;478172;354956;364923;363349;379267;494263;372454;359239;365116;418859;425594;459873;490804;690218;530047;757935;850626;734292;740960;737104;778198;600976;512600;581318;594607;498474;614091.79;754315;720870 -5207;'005;South America;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;126200;139800;132900;131700;255000;290800;313200;326500;372800;431000;703000;1009700;1302400;1268400;1278400;1543000;1504100;1504700;1495900;1398400;1596800;1529100;1717000;2052800;3085148;3654913;3785300;3730400;4000700;4157400;4641632;5115850;4991211;5688380;5746413;6831211;7724579;8269130;9018342;10556401;12050451;13872831;13095100;13844267;14153190;15420887;17381338;18483216;20300208;20546575;22021976;22162148;22838044;22499056.17;25791694.57;25805361.57 -5207;'005;South America;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;14374;17928;21260;20760;30168;44632;114645;89825;94726;101448;164867;346947;560724;568502;449201;477858;606426;489376;539310;684669;969774;1039940;988257;932449;1367497;1260121;1616312;2426749;1803327;1739536;1775237;2051809;2803463;2172734;2037981;2690127;3035879;3282591;3930367;5430688;7071943;5687105;7822172;8469888;7714724;8573224;8559144;9305073;8969582;9941800;13282146;11338786;8959742;10678303.38;12522588.7;12142053.7 -5207;'005;South America;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;41600;53200;71500;95100;115000;152300;290400;278100;289500;359100;347200;455500;506000;669000;705000;793000;947000;1145000;1192000;1593000;1522000;1642000;1743000;1818000;1440000;1512000;1525000;1581000;1738000;1733000;1753000;1778000;1828000;1806000;1882000;1769000;1775000;1821000;1891000;1944000;2048000;2157000;2177000;2171000;2181000;2204000;2371000;2435000;2424000;2451621;2577044;2462995;2663653;2701547;2792302;2755218;2692708;2769780;2766255;2683000;2800000;2853000;2549000 -5207;'005;South America;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;105100;91900;98300;97100;104000;136300;141200;60900;66700;57000;49800;76200;63800;61300;60600;27800;33300;30200;39200;39400;35000;44100;215200;216800;81853;51821;49496;36648;27700;33600;35900;36700;35300;24500;23522;16884;23341;28721;29713;16903;34097;28340;29522;40894;36036;35406;45484;66813;51532;50491;43111;44889;34922;33465.83;30810;22189 -5207;'005;South America;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;13925;13442;16883;17469;16659;30337;49647;26375;22137;17487;14615;31904;30758;31157;26019;12346;13120;10951;14809;20972;19883;26968;127312;131002;39111;18502;22074;27046;13384;14344;14354;15856;18996;11098;9579;6916;10898;13750;14394;9657;21700;15060;21406;31045;24372;24452;33779;46256;33428;33203;35336;33658;22476;28914.74;29730;20407 -5207;'005;South America;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;1600;12500;11600;122800;237800;207800;197100;195600;235500;333000;335200;317800;391300;289800;305900;247400;222600;279200;282400;210500;215700;271900;262800;317172;285436;359000;321300;298700;276500;318000;364000;308000;441000;395000;349000;355000;384000;345300;330000;318000;388909;305000;368639;413603;482237;441219;427474;429656;451930;487973;461235;433802;449249.71;494778.57;327859.57 -5207;'005;South America;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;225;2273;1868;10887;32337;66519;44047;37753;38666;61330;90580;105461;124973;72129;70141;84224;55923;82239;120355;118218;113688;113994;109200;127218;90621;136385;230298;117256;104795;108658;126503;155899;141969;138341;126251;140156;153071;159747;194200;168983;168538;204565;260634;234783;284741;298351;257090;245396;277765;410146;287966;232943;327725.7;388846.7;206441.7 -5207;'005;South America;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;63100;86100;104600;118500;136400;163100;234200;326600;333500;419600;445300;509000;569000;665000;639800;835900;977500;1259600;1487000;2034200;1968500;2196000;1453000;1970000;2015000;2228000;3089000;3076000;3242000;3299000;3864000;4943000;5383000;5804000;5928000;6383000;6489000;6880000;7260000;7612000;7724781;8221596;9402239;10342322;11000126;12178271;13989801;15933352;16595015;16615635;16806924;17309151;18689034;20719212;22061693;23705033;24585943;26136829;24717712;26011209;26821493;28854941;29875928 -5207;'005;South America;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;133700;126200;133600;159100;207700;153500;203700;132300;110300;120700;157300;189900;170400;173100;180400;103300;118500;111300;127700;125400;148100;150300;128700;169900;483542;432279;440101;528100;572600;679500;685400;702000;750000;685900;744500;708700;784125;722616;728857;712293;862083;855630;906130;940130;940047;974944;954721;1001105;873738;733884;686842;756440;827710;782924.4;817816;810638 -5207;'005;South America;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;21669;19880;23871;32641;39942;38520;98714;63663;49618;52972;63475;98736;103637;104378;94404;51251;61481;51142;59172;71748;105152;112664;88538;118200;272907;181122;231618;437572;327238;337110;340568;348321;459772;358740;340165;349612;405083;409162;442560;478392;664135;510745;730745;807142;698408;703923;697012;728293;563706;475653;542088;557195;471552;577579.01;716981;694241 -5207;'005;South America;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;4900;7200;7800;5700;5800;50600;103500;129000;176600;194400;368400;672100;982700;873900;983500;1234400;1252900;1275300;1209800;1110500;1377600;1303600;1439700;1783300;2754952;3360677;3421600;3400400;3693300;3877000;4276600;4707900;4651500;5229200;5333680;6461842;7367010;7884076;8672001;10225317;11731431;13483907;12790079;13475598;13739573;14938647;16940119;18055742;19870550;20094496;21534003;21700913;22404242;22049783.45;25296017;25476617 -5207;'005;South America;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;695;1140;1524;1120;1105;11891;47664;45632;56773;62414;103038;255333;454361;441906;374962;406830;520764;430701;454803;561769;846503;919332;870956;819900;1234811;1166200;1477642;2190196;1682201;1633146;1653085;1911111;2631080;2024554;1894477;2557000;2894911;3129079;3770344;5236197;6901851;5518553;7617573;8209126;7479900;8288468;8260793;9047983;8724182;9663940;12872000;11050820;8726799;10350519.68;12133234;11935149 -5207;'005;South America;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;32000;87000;90000;85000;90000 -5207;'005;South America;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2467;2393;2120;2564;5048.28;3789;2683 -5207;'005;South America;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3744;3894;3754;4446;7598.04;7604;6222 -5207;'005;South America;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;149;0;0;0;23;899;885 -5207;'005;South America;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;0;0;0;58;508;463 -5207;'005;South America;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;31000;35900;41300;35700;43200;52500;73900;76200;83600;70800;57700;53200;60000;78500;64000;66000;59000;55400;55200;70800;66000;72000;80000;81000;57000;57000;53000;59000;55000;55000;56000;57000;57000;15000;105000;156000;116000;113000;96000;140000;92118;49995;17102;19000;30000;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -5207;'005;South America;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;9600;13500;13200;12800;8300;10900;6200;800;1200;700;700;700;1700;600;1000;600;700;800;800;700;600;500;300;200;446;847;1529;1000;0;200;1070;6500;3000;100;100;100;100;0;0;0;0;7;7;21;262;546;609;11;69;;;;;;; -5207;'005;South America;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;1359;1922;2226;1768;1455;2402;2320;467;467;243;217;313;910;298;430;188;227;260;213;319;332;326;164;91;207;210;676;241;0;123;369;3536;2039;101;97;97;97;0;0;0;0;13;13;46;94;374;389;5;46;;;;;;; -5207;'005;South America;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;;;;;;; -5207;'005;South America;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;;;;;;; -5207;'005;South America;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;29500;27900;26100;23900;30500;29300;27500;24500;25600;71600;87600;84000;97000;97000;88000;94000;94000;79000;92000;91000;78000;100000;99000;99000;43000;58000;61000;64000;60000;46000;53000;58000;64000;61000;55000;54000;18000;38000;22000;54000;49000;51000;61000;65000;54000;54000;35000;31000;53000;55000;230000;195000;16000;16000;10000;0;;;;;;; -5207;'005;South America;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;27500;19800;24200;24600;21700;42700;44900;24800;10900;7600;5300;5400;5700;7900;7600;6100;6900;5600;7300;5700;8400;7800;4500;4300;11297;9403;12520;21301;26449;23800;14650;21100;20200;4100;18400;16788;4650;2680;4382;2727;4233;4054;5117;11379;11989;13086;4245;2556;2792;;;;;;; -5207;'005;South America;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;3436;3447;4891;5445;4646;10243;19921;13257;5562;3621;2642;2846;3689;5093;4609;3295;4459;3144;3689;3379;5730;5554;2625;2443;7987;5534;7810;13313;14334;13346;8058;11554;13456;2515;9398;8491;2781;2682;2919;2755;4383;4229;5771;12393;11418;12211;5924;3644;3796;;;;;;; -5207;'005;South America;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;13024;8800;4700;8700;8700;3900;1900;100;9000;2000;6000;4049;1646;1041;1041;1084;1020;15;21;15;14;3;0;0;1;;;;;;; -5207;'005;South America;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;5468;3300;2285;6255;3870;1595;754;40;4760;815;1118;1304;591;440;276;291;1109;14;34;64;41;15;0;0;1;;;;;;; -5207;'005;South America;1667;Dissolving wood pulp;5510;Production;t;;;;;;5000;3000;3000;3000;4000;5000;5000;5000;105000;63000;69000;48000;47000;43000;85000;73000;66000;43000;63000;60000;62000;75000;83000;78000;89000;70000;75000;61000;72000;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;676000;956000;934000;1366000 -5207;'005;South America;1667;Dissolving wood pulp;5610;Import quantity;t;11500;8700;9900;30900;29800;46700;38800;51700;48500;36600;45500;52400;49100;62100;47000;37900;35600;31300;22000;25100;16400;16000;18100;18800;14100;21200;20200;12400;14800;23700;23700;32273;18520;21240;23521;19249;20900;18300;14450;16480;23330;27530;26340;18758;22386;23937;20625;19333;20946;16018;18995;10833;12899;11889;12331;13150;14582;16507;12548;18007;15787.86;11632;10080 -5207;'005;South America;1667;Dissolving wood pulp;5622;Import value;1000 USD;2254;1725;1920;6287;6265;8926;8291;11235;11353;9397;10995;12551;12599;29173;24177;19650;17406;14991;11058;17353;11603;10521;10723;11231;8276;12131;12103;8400;13708;19573;19573;24155;11477;14556;21315;18660;17338;14403;11264;11016;16744;18994;18333;13271;16646;19845;20433;22401;19565;18686;25824;13174;16691;13759;13509;13723;15453;17596;14979;19716;17701.22;16623;16258 -5207;'005;South America;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;2811;11559;18700;28100;74400;115600;103400;95000;94000;79400;79400;99494;98818;104557;82000;86000;163000;356654;418000;402141;398042;418964;414518;435135;618761;642157;591921;566313;601249;942355.95;913851;1336510 -5207;'005;South America;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;1389;4267;8644;23122;41463;63621;55812;50437;63533;45062;45062;51266;54165;57744;49915;67064;127349;235707;316263;375000;373779;354857;376684;243293;355967;420805;392882;337437;337370;660730.66;710059;1003632 -5207;'005;South America;1668;Pulp from fibres other than wood;5510;Production;t;130400;113500;143000;153600;165200;215500;176300;200700;233000;253400;276800;301900;304800;341600;327600;333600;381600;396600;496600;464600;421600;400200;453600;471000;456100;547500;507200;559500;570500;507500;487500;551500;414500;390000;497000;455000;456000;342000;364000;380000;362000;376000;397000;399000;472000;331000;481000;387000;473200;486207;381689;407774;401046;423109;405244;389549;391044;404486;397681;369000;318614;295900;319200 -5207;'005;South America;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;500;400;900;400;500;500;1600;800;1100;10000;1300;1500;1100;1200;400;200;400;400;500;1900;2400;2400;4080;9413;9362;5606;6900;14000;17000;19600;13500;11000;11600;12178;17066;18754;10142;7856;14141;13949;17096;11466;14034;12391;14610;13793;16096;17534;18255;19012;27728;23803.7;18861;17756 -5207;'005;South America;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;100;143;215;159;255;330;1153;560;793;4711;1142;1551;1160;1150;462;186;368;368;415;2238;3188;3188;5382;7901;8802;6685;8658;15527;18566;20136;15459;16216;15754;16239;21682;25047;13884;11020;19975;18920;24735;27263;29160;20794;22447;18875;22475;27284;25102;22002;29823;29448.5;36238;36241 -5207;'005;South America;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;100;200;1800;1800;1800;3189;12031;100;500;300;300;1000;650;1386;1205;741;620;737;649;5664;10541;14455;6558;9202;5142.42;909;614;1391;2602;1255;996;1521;471;4013;1990.16;1618;1233 -5207;'005;South America;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;89;89;2791;2954;2954;1855;5388;114;533;421;374;689;492;666;1258;477;436;392;408;5419;11365;17573;8645;12808;12306;1700;791;1728;2517;1298;756;1156;411;2215;1300.49;803;592 -5207;'005;South America;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53000;40000;40000;0;0;70;70;70;70;70;1389;581;794;1014;1072;1587;1378;1370;1504;2334;1957;1685;1858;1401.13;1966;3242 -5207;'005;South America;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51196;44659;44659;0;0;5;5;5;5;5;581;359;651;1072;1177;1946;1609;1469;1263;1045;2163;1111;1201;1239.65;1840;3139 -5207;'005;South America;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;673;374;2779;3119;485;511.2;584.2;844.3;277;186;144;479;820;635;716;999 -5207;'005;South America;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112;31;446;624;233;260.86;309;419;177;107;95;255;353;325;412;623 -5207;'005;South America;1669;Recovered paper;5510;Production;t;;;;;;;;;;898000;857000;1075000;1169000;1283000;1257000;1338000;1380000;1486000;1593000;1763000;1691000;1698000;1830000;1917000;1987000;2421000;2656000;2682000;2745000;2417000;2472000;2513000;2401000;2615000;2665000;2775000;2757000;2760000;3837000;4455000;4446000;4489000;4989000;5058700;5782700;5919000;6103000;6460000;6500000;6720204;7079300;6589214;6771560;7226912;7050531;6857207;7783768;7823346;7311574;7150114;7368461;7922557;6987314 -5207;'005;South America;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;58000;61000;77000;69000;220102;194553;173600;153800;160200;146600;148000;153600;151000;142900;150900;150400;126600;160400;187500;251600;417500;483600;333489;276287;281468;466374;252503;237303;210703;217103;339603;299603;318903;317844;416982;422880;325441;461540;481059;407994;508101;470144;388725;404952;523238;385641;338966;273085;353664;454348;417267;568729.65;411066;304771 -5207;'005;South America;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;3494;3830;4913;6082;27375;32549;22867;21833;20445;22492;26398;27562;25572;23380;21960;22161;16240;25744;28442;44762;57506;68788;59769;33951;48052;101556;44966;41483;36764;36308;62747;63730;56028;59721;100671;98890;58238;98023;125384;91351;146600;147693;103190;106754;135426;94091;76017;72515;93500;110806;94786;169899.2;156837;74324 -5207;'005;South America;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;900;700;1000;50;50;50;1050;2700;2700;3800;3700;16400;9400;7300;7100;7100;10300;10300;12669;12654;25410;33608;54200;45700;49200;43400;60500;59700;52000;50145;59501;69267;55674;62724;78411;83472;95549;116344;97550;107565;105977;134667;98842;114348;144612;94168;77212;88195.78;107201;162049 -5207;'005;South America;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;167;136;171;9;9;9;183;404;404;579;400;1478;915;792;821;855;1377;1377;3333;1741;3404;5277;5558;6258;6793;4604;7650;7086;4745;5439;7160;8017;7023;9847;13278;11735;17649;29359;19484;21794;22630;27617;18910;22740;34671;19045;13239;16245.64;22575;26800 -5207;'005;South America;1876;Paper and paperboard;5510;Production;t;1282900;1375300;1434100;1642300;1824400;2007200;1981700;2157200;2360600;2618800;2899200;3110700;3408900;3765700;3428000;3775200;4031700;4507100;5164700;5568900;5366400;5574400;5750400;6294400;6508000;7238300;7654000;7693100;7617098;7752800;8079300;8074900;8205900;8813100;9196200;9235300;9949400;9578321;10310400;10577718;10872857;11133309;11595897;12417980;13291037;13342966;13801552;14604454;14421796;14791147;15090931;15020415;15176604;15144940;15337870;15478885;15764045;15858974;15922175;15359253;16129701;15740161;16421825 -5207;'005;South America;1876;Paper and paperboard;5610;Import quantity;t;655200;544200;498700;542400;554800;605900;652600;868600;926400;982700;936000;990100;1024000;1283900;871200;877118;1004200;1032600;1071400;1174100;1204700;1067100;952500;932000;838900;1020016;1160600;1080300;990500;1083100;1328200;1720685;1987884;2248581;2773853;2718075;3555775;3293176;2904315;3152481;2764793;2573156;2819110;3150728;3279682;3740090;4151483;4405757;3815720;4533848;4549569;4450027;4476707;4391510;3884197;3601110;3656105;3698343;3484266;3049358;3298410.55;3610540;2815951 -5207;'005;South America;1876;Paper and paperboard;5622;Import value;1000 USD;133202;117283;108329;107294;113964;120817;138481;179257;191177;216125;214318;237970;294005;546678;397321;419919;488709;522885;604983;781339;858876;864038;658160;672562;654025;731262;853748;891072;740584;797605;934934;1250512;1306173;1506897;2586559;2268495;2832584;2712525;2217484;2352386;2170725;1779588;1887306;2401233;2554273;3111231;3545728;4293009;3552247;4271261;4805493;4546212;4629948;4491473;3683969;3298868;3337438;3725540;3488240;2817153;3407189.59;4741101;3521866 -5207;'005;South America;1876;Paper and paperboard;5910;Export quantity;t;33900;25200;31200;39900;65300;73800;88200;81800;110300;118770;102470;94770;179600;209500;141400;184300;191300;250900;312800;335800;438800;363300;603700;904500;741300;884300;795700;1220000;1061800;1101000;1281000;1454300;1588661;1780368;1624316;1461337;1670703;1823110;1543846;1525691;1655218;1912344;2518504;2716970;2903562;2871748;2891312;2947134;2964166;3073251;3055845;2808472;2723364;2609231.33;2748351.33;2772967;2923366;2859837;2882990;2851883;2766383.37;3079238.81;2806151.81 -5207;'005;South America;1876;Paper and paperboard;5922;Export value;1000 USD;4583;3511;4060;5141;8422;10167;13306;12315;16591;19726;19319;20524;44880;89016;58413;68147;79386;111973;176291;243152;295893;225458;277613;435360;356713;437478;469261;837466;661322;646656;805619;843044;869120;1052271;1415930;1199030;1163209;1248890;950387;946459;1001892;1135921;1384295;1641855;1885270;2079437;2313318;2657423;2411529;2821281;3061430;2774961;2723329;2616797;2585429;2331501;2450471;2616385;2519633;2246567;2379204.44;3166196.8;2756309.8 -5207;'005;South America;2042;Graphic papers;5510;Production;t;391300;397400;447100;505100;547700;602800;587100;636500;694100;713800;831200;874800;978100;1057200;947500;1071300;1203200;1326300;1638000;1662200;1706500;1704000;1829000;2082000;2223000;2456000;2518400;2570400;2526398;2493500;2562300;2623900;2891900;3181100;3166200;3162300;3371400;3416400;3538400;3582400;3575731;3563106;3782413;3910944;4129557;4232390;4267364;4227584;4215182;4078378;4234383;4059292;3871149;3824949;3855873;3679073;3652252;3509155;3359790;2709188;2931353;2855642;2805053 -5207;'005;South America;2042;Graphic papers;5610;Import quantity;t;566800;451100;417700;420400;465700;489000;538800;646600;727700;716900;709500;702900;708400;871000;585300;592518;748000;798900;776300;824100;840900;747000;661600;634200;536700;721700;789800;692000;673200;644700;831700;920923;1106308;1271159;1123807;997790;1493890;1669938;1685831;1997957;1643384;1359998;1429301;1763643;2000424;2305617;2493660;2855858;2459302;2997055;2851447;2848437;2741936;2629264;2152036;1961369;1948590;1837135;1605963;1048252;1051862.83;1359886;1118325 -5207;'005;South America;2042;Graphic papers;5622;Import value;1000 USD;106487;86780;78012;74665;81638;83412;98235;123146;136784;138321;140279;148162;172862;351276;242493;263725;312031;343856;391281;486270;546128;562378;399692;373252;329407;406677;464780;485537;456594;436845;547781;643201;703328;782321;1029270;815713;1045416;1263176;1195016;1443998;1300805;957657;966107;1310049;1508052;1903480;2108391;2721380;2239957;2724693;2832695;2786102;2647728;2449270;1979903;1657627;1612206;1733926;1534338;972014;1019701.67;1723513;1430379 -5207;'005;South America;2042;Graphic papers;5910;Export quantity;t;33800;25100;30900;39500;63000;67100;71000;69400;86000;89800;78900;56800;100100;132100;105600;147400;168500;213200;248600;236000;277500;255500;381700;485900;395700;489900;455200;596500;596800;647400;709400;706060;835444;820539;760496;758837;941903;1240840;851205;761105;762485;1051452;1310714;1402979;1552088;1489797;1489447;1523048;1596481;1816094;1694364;1581450;1518523;1361510.33;1439578.33;1437418;1523214;1448837;1539616;1371499;1296789.65;1278235;1244452 -5207;'005;South America;2042;Graphic papers;5922;Export value;1000 USD;4550;3477;3946;5054;7652;8488;9252;8924;11094;12402;12604;11118;24519;53235;41728;56837;69464;91722;135463;165135;189721;158331;180238;257907;206919;255733;282942;420327;432475;432224;501584;440363;479829;498335;652418;663445;650951;835075;521386;505624;514533;632437;788552;898403;1045662;1110862;1230647;1404463;1321233;1632042;1624217;1490475;1438669;1308528;1319895;1166092;1194451;1235858;1244815;980057;998946.65;1250931.08;1198120.08 -5207;'005;South America;1671;Newsprint;5510;Production;t;133600;128600;154900;193300;216500;228000;213100;216600;220900;230600;222600;205400;228500;231000;245000;263000;255000;286000;382000;363000;371000;350000;439000;481000;581000;617000;642000;649000;618000;625000;622000;593000;582000;593100;667200;644300;589400;592400;620400;665400;676400;696400;683000;604716;704942;683636;673749;634654;614654;587654;607654;561654;453654;392054;385454;353154;358354;358754;294654;211654;154035;173654;186654 -5207;'005;South America;1671;Newsprint;5610;Import quantity;t;462200;384000;369900;372600;425200;452500;445200;522700;611400;621200;583300;560600;530900;584100;477200;452318;596100;623100;602800;623500;675700;563500;520200;506500;421400;591000;646100;582000;477200;466200;611500;489084;616758;763719;852113;738186;973786;899999;755986;855925;676753;540886;552508;632602;759910;806753;835716;995827;771611;909494;835490;795353;711297;628249;515233;419304;348917;273162;245324;127886;128361.14;133129;102188 -5207;'005;South America;1671;Newsprint;5622;Import value;1000 USD;76633;64862;62017;60311;68780;72341;71617;83947;99536;105147;102740;104800;109721;199299;189802;184870;230782;248995;250177;313392;361905;343221;269116;250239;219408;287339;335649;345772;264009;272445;346934;271872;307363;372661;687717;504776;508395;519692;396560;443198;429146;266209;256050;380021;433164;520289;530690;694648;538143;572804;595042;544261;476971;388844;311242;217955;178590;159745;151087;64304;76943.56;111323;79803 -5207;'005;South America;1671;Newsprint;5910;Export quantity;t;33800;25100;30900;39300;61400;64700;67100;61300;72300;78600;63900;35800;46800;79500;78700;94500;92400;86200;80500;63700;43600;56500;102600;128000;130600;148100;155000;161700;167200;190200;153900;147842;188503;171892;154603;158337;159703;133203;186300;197000;185800;233300;240219;251207;255456;262644;237752;221654;232904;210109;217353;164458;98198;56438;55897;68763;71986;100368;77473;67357;20843.74;28187;44547 -5207;'005;South America;1671;Newsprint;5922;Export value;1000 USD;4550;3477;3946;5022;7345;7926;8411;7239;8469;9676;8542;5322;7540;24154;26183;29057;31729;29777;31278;30463;25342;27666;37378;46082;54134;59214;75983;90089;88575;92710;83100;70901;92792;87124;123988;109143;83548;77857;95849;111440;116361;93935;97948;121121;138938;162558;147745;152492;138989;125930;152696;111530;65514;37888;34502;35863;35389;59340;38606;24499;11310.54;22871;27682 -5207;'005;South America;1674;Printing and writing papers;5510;Production;t;257700;268800;292200;311800;331200;374800;374000;419900;473200;483200;608600;669400;749600;826200;702500;808300;948200;1040300;1256000;1299200;1335500;1354000;1390000;1601000;1642000;1839000;1876400;1921400;1908398;1868500;1940300;2030900;2309900;2588000;2499000;2518000;2782000;2824000;2918000;2917000;2899331;2866706;3099413;3306228;3424615;3548754;3593615;3592930;3600528;3490724;3626729;3497638;3417495;3432895;3470419;3325919;3293898;3150401;3065136;2497534;2777318;2681988;2618399 -5207;'005;South America;1674;Printing and writing papers;5610;Import quantity;t;104600;67100;47800;47800;40500;36500;93600;123900;116300;95700;126200;142300;177500;286900;108100;140200;151900;175800;173500;200600;165200;183500;141400;127700;115300;130700;143700;110000;196000;178500;220200;431839;489550;507440;271694;259604;520104;769939;929845;1142032;966631;819112;876793;1131041;1240514;1498864;1657944;1860031;1687691;2087561;2015957;2053084;2030639;2001015;1636803;1542065;1599673;1563973;1360639;920366;923501.7;1226757;1016137 -5207;'005;South America;1674;Printing and writing papers;5622;Import value;1000 USD;29854;21918;15995;14354;12858;11071;26618;39199;37248;33174;37539;43362;63141;151977;52691;78855;81249;94861;141104;172878;184223;219157;130576;123013;109999;119338;129131;139765;192585;164400;200847;371329;395965;409660;341553;310937;537021;743484;798456;1000800;871659;691448;710057;930028;1074888;1383191;1577701;2026732;1701814;2151889;2237653;2241841;2170757;2060426;1668661;1439672;1433616;1574181;1383251;907710;942758.11;1612190;1350576 -5207;'005;South America;1674;Printing and writing papers;5910;Export quantity;t;;;0;200;1600;2400;3900;8100;13700;11200;15000;21000;53300;52600;26900;52900;76100;127000;168100;172300;233900;199000;279100;357900;265100;341800;300200;434800;429600;457200;555500;558218;646941;648647;605893;600500;782200;1107637;664905;564105;576685;818152;1070495;1151772;1296632;1227153;1251695;1301394;1363577;1605985;1477011;1416992;1420325;1305072.33;1383681.33;1368655;1451228;1348469;1462143;1304142;1275945.91;1250048;1199905 -5207;'005;South America;1674;Printing and writing papers;5922;Export value;1000 USD;;;0;32;307;562;841;1685;2625;2726;4062;5796;16979;29081;15545;27780;37735;61945;104185;134672;164379;130665;142860;211825;152785;196519;206959;330238;343900;339514;418484;369462;387037;411211;528430;554302;567403;757218;425537;394184;398172;538502;690604;777282;906724;948304;1082902;1251971;1182244;1506112;1471521;1378945;1373155;1270640;1285393;1130229;1159062;1176518;1206209;955558;987636.11;1228060.08;1170438.08 -5207;'005;South America;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;171372;188331;86000;73000;91000;83000;114000;94000;137000;122000;116000;99000;84000;95000;42000;34000;170100;166500;61900;50000;73800;34000;14000;40000;30000;33000 -5207;'005;South America;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81484;98780;185725;160531;126812;147641;149997;140953;170535;161829;133701;104430;107254;94901;84827;145896;140341;120384;86390;80642;83680;76467;41895;35860.36;36225;36069 -5207;'005;South America;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66007;74915;144188;135460;92114;104231;95894;96409;123812;126912;127531;101020;97415;91601;81974;126390;119237;97509;60673;53848;60785;59526;30937;26657.78;42283;39645 -5207;'005;South America;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33227;19043;16552;21344;19744;17047;18512;18960;17161;15253;5172;6765;7051;2461;2972;1440;143;283;608;1388;3320;2078;1099;1043;1302;520 -5207;'005;South America;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25951;13012;11506;15028;10504;8932;11394;11714;12999;11708;4530;6108;4792;1795;2255;1054;222;404;596;609;2386;1531;769;713;1503;590 -5207;'005;South America;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2100791;2235669;2272000;2257331;2200706;2409413;2519228;2611615;2698754;2813615;2834930;2945528;2829424;2985677;2848434;2815629;2795507;2750234;2720613;2723036;2581654;2639119;2151434;2405025;2319732;2317690 -5207;'005;South America;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200497;227832;242392;233900;261800;263540;342529;460023;474979;544877;601493;636142;729572;731249;729750;760755;764270;613904;616342;680456;729262;615401;395830;426800.36;530739;503099 -5207;'005;South America;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;185271;193013;212516;202836;224482;232716;295534;399866;459885;544767;670135;648752;771295;833517;834372;860247;825712;670761;609485;639749;763249;655304;401410;423709.05;698921;683630 -5207;'005;South America;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;541114;486075;333566;359092;633095;830545;850567;1000987;936818;993171;986285;1104945;1210130;1144247;1082562;1047246;959145.33;1031839.33;1025207;1078353;1051012;1080386;906285;877222.68;830331;835270 -5207;'005;South America;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;373882;306676;239377;249084;432859;553002;592062;710233;743362;889097;965875;949697;1108799;1137891;1026943;983677;901730;918249;796068;818546;898000;866235;602723;615825.39;782596;776137 -5207;'005;South America;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;551837;494000;559000;569000;575000;607000;673000;719000;713000;658000;642000;556000;577300;546052;607204;567866;467288;553685;543406;520862;494947;392017;332100;332293;332256;267709 -5207;'005;South America;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;487958;603233;713915;572200;430500;465612;638515;639538;853350;951238;1124837;947119;1250735;1189807;1238507;1123988;1096404;902515;839333;838575;751031;668771;482641;460840.97;659793;476969 -5207;'005;South America;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;492206;530528;644096;533363;374852;373110;538600;578613;799494;906022;1229066;952042;1283179;1312535;1325495;1184120;1115477;900391;769514;740019;750147;668421;475363;492391.28;870986;627301 -5207;'005;South America;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;533296;159787;213987;196249;165313;222903;282693;276685;273174;243271;309937;251867;388804;330303;331458;371639;345784;351559;342840;371487;294137;379679;396758;397680.23;418415;364115 -5207;'005;South America;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;357385;105849;143301;134060;95139;128670;173826;184777;191943;182097;281566;226439;392521;331835;349747;388424;368688;366740;333565;339907;276132;338443;352066;371097.72;443961.08;393711.08 -5207;'005;South America;1675;Other paper and paperboard;5510;Production;t;891600;977900;987000;1137200;1276700;1404400;1394600;1520700;1666500;1905000;2068000;2235900;2430800;2708500;2480500;2703900;2828500;3180800;3526700;3906700;3659900;3870400;3921400;4212400;4285000;4782300;5135600;5122700;5090700;5259300;5517000;5451000;5314000;5632000;6030000;6073000;6578000;6161921;6772000;6995318;7297126;7570203;7813484;8507036;9161480;9110576;9534188;10376870;10206614;10712769;10856548;10961123;11305455;11319991;11481997;11799812;12111793;12349819;12562385;12650065;13198348;12884519;13616772 -5207;'005;South America;1675;Other paper and paperboard;5610;Import quantity;t;88400;93100;81000;122000;89100;116900;113800;222000;198700;265800;226500;287200;315600;412900;285900;284600;256200;233700;295100;350000;363800;320100;290900;297800;302200;298316;370800;388300;317300;438400;496500;799762;881576;977422;1650046;1720285;2061885;1623238;1218484;1154524;1121409;1213158;1389809;1387085;1279258;1434473;1657823;1549899;1356418;1536793;1698122;1601590;1734771;1762246;1732161;1639741;1707515;1861208;1878303;2001106;2246547.72;2250654;1697626 -5207;'005;South America;1675;Other paper and paperboard;5622;Import value;1000 USD;26715;30503;30317;32629;32326;37405;40246;56111;54393;77804;74039;89808;121143;195402;154828;156194;176678;179029;213702;295069;312748;301660;258468;299310;324618;324585;388968;405535;283990;360760;387153;607311;602845;724576;1557289;1452782;1787168;1449349;1022468;908388;869920;821931;921199;1091184;1046221;1207751;1437337;1571629;1312290;1546568;1972798;1760110;1982220;2042203;1704066;1641241;1725232;1991614;1953902;1845139;2387487.92;3017588;2091487 -5207;'005;South America;1675;Other paper and paperboard;5910;Export quantity;t;100;100;300;400;2300;6700;17200;12400;24300;28970;23570;37970;79500;77400;35800;36900;22800;37700;64200;99800;161300;107800;222000;418600;345600;394400;340500;623500;465000;453600;571600;748240;753217;959829;863820;702500;728800;582270;692641;764586;892733;860892;1207790;1313991;1351474;1381951;1401865;1424086;1367685;1257157;1361481;1227022;1204841;1247721;1308773;1335549;1400152;1411000;1343374;1480384;1469593.73;1801003.81;1561699.81 -5207;'005;South America;1675;Other paper and paperboard;5922;Export value;1000 USD;33;34;114;87;770;1679;4054;3391;5497;7324;6715;9406;20361;35781;16685;11310;9922;20251;40828;78017;106172;67127;97375;177453;149794;181745;186319;417139;228847;214432;304035;402681;389291;553936;763512;535585;512258;413815;429001;440835;487359;503484;595743;743452;839608;968575;1082671;1252960;1090296;1189239;1437213;1284486;1284660;1308269;1265534;1165409;1256020;1380527;1274818;1266510;1380257.79;1915265.71;1558189.71 -5207;'005;South America;1676;Household and sanitary papers;5510;Production;t;47900;53200;46000;48500;77500;87900;71800;108400;136200;153800;166300;173600;253500;253800;262700;284600;314800;365200;426200;480000;499000;516000;532000;546000;586600;621600;687700;744700;745700;774100;833000;832000;858000;924000;969000;1044000;1129000;1120000;1138000;1164000;1208519;1219239;1182339;1362134;1427917;1415434;1569657;1708379;1672016;1740253;1786761;1936346;1987459;2072340;2104032;2111438;2330412;2457008;2550092;2518654;2504960;1657754;2535754 -5207;'005;South America;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;3600;7100;4300;25900;36000;34800;38200;44650;17050;25750;29900;28104;45457;46752;54286;68764;63813;49776;61327;84887;81901;75661;82901;78225;68826;87882;75306;107591;108420;119870.22;115289;121757 -5207;'005;South America;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;9263;11099;10501;27888;37890;52706;34686;51921;17774;26378;29150;25715;43406;44604;53660;65725;78173;78580;95644;138443;130563;131535;141143;122634;91328;116768;104749;146831;128863;167563.1;201328;184079 -5207;'005;South America;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;6100;27900;17800;19500;15000;17809;73409;64100;45800;48600;88900;80600;30500;66700;60000;89601;93766;85363;78363;60235;54820;57836;50642;51216;50144;46284;45326;42766;50513;78084;73310;74508;85121;90825.98;117297.81;97196.81 -5207;'005;South America;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;5082;18197;11874;15600;15015;14009;66267;70046;48672;71750;83290;76723;20698;55421;54293;69324;77646;76173;78269;64982;72659;74493;67596;73853;72613;74414;69823;59399;62492;94948;92065;94977;94735;108484.62;160790.71;138547.71 -5207;'005;South America;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4607921;5202000;5377318;5604607;5777964;6098145;6602902;7180567;7162142;7437531;8164491;7872598;8238516;8394605;8322330;8561889;8517636;8612439;8914779;8995906;9111508;9247750;9362011;9937994;10498284;10327132 -5207;'005;South America;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1383274;1023586;984244;1008366;1093816;1266470;1217478;1111918;1239580;1453344;1361833;1239579;1399364;1532815;1452620;1592591;1603637;1608935;1520992;1570928;1736075;1720249;1856801;2087176.08;2096915;1541814 -5207;'005;South America;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1106480;763878;706331;702548;666485;760172;843276;805995;919440;1118285;1296770;1117700;1336400;1676927;1520714;1728110;1758862;1496956;1450588;1515535;1791928;1718269;1628004;2128719.08;2723425;1817701 -5207;'005;South America;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;449270;564041;652886;792433;756442;1096214;1186647;1233505;1269904;1305009;1335953;1285425;1182181;1270712;1152047;1134526;1179377;1245378;1264966;1302561;1320009;1246273;1372563;1334494.19;1658813;1447311 -5207;'005;South America;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;270086;301913;350247;385041;384744;493233;604112;693553;811772;944682;1097134;954173;1065223;1259013;1149041;1150916;1179645;1154410;1056271;1114403;1242596;1130473;1122189;1223368.75;1701318;1366891 -5207;'005;South America;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;230300;290900;324900;353500;454400;571000;567200;745200;783600;910100;1087000;1186000;1330000;1822400;1840100;1931700;2051200;2273800;2547200;2790900;2671000;2838000;2905000;3162000;3007900;3420800;3674800;3698500;3597500;3710000;4327000;4127000;4049000;4158000;4499000;4529000;4893000;;;;;;;;;;;;;;;;;;;;;;;;;; -5207;'005;South America;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;17100;22600;25600;64700;27300;45700;49700;167900;138300;186000;131900;183300;201800;182200;177800;185900;159000;141900;200300;234900;229700;186900;169600;192200;193900;190816;256200;267500;221900;322200;343000;593526;646682;710100;1221400;1276900;1535000;;;;;;;;;;;;;;;;;;;;;;;;;; -5207;'005;South America;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;5082;5916;6552;10693;6964;10533;14115;31696;27937;37794;31030;39112;51035;59007;59782;65756;85713;81676;125197;162377;144498;125134;114626;127169;143317;142902;217089;220286;162043;210509;234545;379468;354297;377330;964678;914476;1081879;;;;;;;;;;;;;;;;;;;;;;;;;; -5207;'005;South America;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;100;200;1900;2100;1700;300;700;1000;800;3400;2900;12300;8400;8800;9700;12100;26100;30200;27400;19900;30700;34400;33700;28500;27800;21700;35200;24100;482800;568717;579032;675944;618300;597500;571900;;;;;;;;;;;;;;;;;;;;;;;;;; -5207;'005;South America;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;11;30;580;380;329;100;220;405;529;988;867;5721;1975;2222;2822;3827;11427;15793;18236;10364;11592;15506;16979;16097;17078;20047;26646;18005;230734;261883;265155;353854;507261;413720;338472;;;;;;;;;;;;;;;;;;;;;;;;;; -5207;'005;South America;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3212684;3473091;3600000;3769369;3899959;4082730;4446580;5145034;4869789;4952089;5237006;5178450;5324333;5424126;5339297;5684012;5641984;5873787;6242259;6443746;6467999;6502229;6560515;7044192;7493482;7398130 -5207;'005;South America;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;538085;455216;401457;487400;537900;619729;659341;521074;661781;707876;663156;607275;723547;698576;666037;720742;679848;752153;711310;812370;915078;937765;1103951;1155705.54;1067090;741007 -5207;'005;South America;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;313259;246113;215782;237252;233440;263845;294029;247219;333253;401700;429864;336610;473757;519689;467144;546170;518924;523889;461861;551843;719302;667996;670994;919435.49;1093936;616918 -5207;'005;South America;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;257076;322818;383218;475000;368300;616737;646821;635914;648456;622367;561658;509868;431378;495350;413918;455786;449774;481554;548855;601809;542497;448907;482366;552121.8;808296;642443 -5207;'005;South America;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112362;129406;162063;162247;151630;209884;237376;240177;276929;291104;299899;228338;239799;302568;235746;280654;275637;279034;282693;333740;354752;268390;258593;377393.7;664883;411834 -5207;'005;South America;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;961465;913318;908318;965716;1010508;982093;1078165;1081309;1186031;1283769;1398559;1458487;1468576;1473983;1548808;1483801;1434092;1420775;1429872;1499284;1587117;1667170;1707435;1752835;1839735;1767735 -5207;'005;South America;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;626100;406084;435467;368404;373389;456877;381960;403983;392848;536195;480288;412975;450813;591175;564727;628746;665888;607750;559451;497390;526440;488449;454072;564526.4;658904;516978 -5207;'005;South America;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;601235;388225;370658;361080;307350;364187;409921;409536;419031;522724;624620;551101;597309;849434;782011;886684;935908;694260;722661;683133;739276;709227;641908;806780.74;1141345;843241 -5207;'005;South America;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105594;152625;181548;212500;290059;329720;378208;441725;480374;539721;615314;599800;592491;613041;593752;524968;523152;517769;490339;458346;526071;557150;611584;530050.56;544381;540483 -5207;'005;South America;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97090;116934;134239;161364;178507;203566;280542;359215;439483;547800;665175;605554;685530;797116;771395;718208;725065;681774;610491;598398;666612;664731;676709;641486.77;730364;723689 -5207;'005;South America;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;360324;621000;602000;600522;688497;820322;887157;756224;809322;789673;822926;706661;773607;757464;864225;882327;948264;844101;775585;725813;735553;736112;736661;760567;768067;736067 -5207;'005;South America;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;205895;151216;132566;145673;177700;178626;145316;155156;161388;188810;199513;207983;202995;219089;195364;218666;232204;224413;223502;227421;250946;265545;267265;327376.66;323282;254864 -5207;'005;South America;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;178560;120130;109084;101187;122114;125006;124956;134477;152591;180089;227654;220172;249738;289021;250574;275551;282384;259231;247249;257679;301527;322058;295584;371358.04;441315;333159 -5207;'005;South America;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82838;85360;84580;101633;90184;116611;120418;126948;128187;133184;152258;170358;151988;158581;140225;149756;203324;242019;221798;236438;242716;231994;270651;241967.03;290575;256176 -5207;'005;South America;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56889;53086;51770;58946;50544;67216;71946;79519;88528;101168;128007;116925;135677;156154;138515;149073;176022;190311;160242;178220;215300;191391;181118;195706.65;291081;224018 -5207;'005;South America;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73448;194591;267000;269000;179000;213000;191000;198000;297000;412000;706000;529000;672000;739032;570000;511749;493296;473776;467063;327063;320839;342239;357400;380400;397000;425200 -5207;'005;South America;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13194;11070;14754;6889;4827;11238;30861;31705;23563;20463;18876;11346;22009;23975;26492;24437;25697;24619;26729;33747;43611;28490;31513;39567.47;47639;28965 -5207;'005;South America;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13426;9410;10807;3029;3581;7134;14370;14763;14565;13772;14632;9817;15596;18783;20985;19705;21646;19576;18817;22880;31823;18988;19518;31144.8;46829;24383 -5207;'005;South America;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3762;3238;3540;3300;7899;33146;41200;28918;12887;9737;6723;5399;6324;3740;4152;4016;3127;4036;3974;5968;8725;8222;7962;10354.81;15561;8209 -5207;'005;South America;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3745;2487;2175;2484;4063;12567;14248;14642;6832;4610;4053;3356;4217;3175;3385;2981;2921;3291;2845;4045;5932;5961;5769;8781.64;14990;7350 -5207;'005;South America;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;82500;76600;83800;81200;222800;196800;260000;521600;578700;656000;610800;667800;646300;631400;377200;487100;462000;541300;552800;635300;489400;515900;483900;503900;690000;739400;771100;677500;745500;775200;357000;492000;407000;550000;562000;500000;556000;434000;432000;454000;484000;573000;533000;542000;552996;533000;527000;504000;662000;734000;675182;702447;756107;730015;765526;773595;785475;781303;764543;769400;755394;728481;753886 -5207;'005;South America;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;4300;4400;5900;7000;7900;21200;40600;43700;48400;71400;83100;89900;100000;223100;101200;90800;87700;81500;83900;104200;123300;121500;109600;98200;100900;106100;111700;118600;93500;113800;151100;200738;226207;261672;400961;407000;491700;201764;150248;153230;87293;89442;95235;124150;120588;140607;135715;124253;67063;76102;80420;67069;66519;75708;45001;49923;48705;49827;50463;35885;39501.42;38450;34055 -5207;'005;South America;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;2130;2681;3357;4804;5156;10330;18599;20614;22841;35965;38347;44732;62301;131939;90390;85206;82887;87875;78427;121610;159286;166077;133378;165517;174397;180380;169546;183413;120206;148971;151328;216273;235827;335162;562830;499799;651896;308183;206669;184283;140994;126296;135312;204502;195622;234651;253327;196686;116010;114524;157428;108833;122575;142198;84476;99325;92929;94937;88802;88272;91205.74;92835;89707 -5207;'005;South America;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;100;100;4300;15200;11000;14700;18570;16570;13570;26100;23200;17200;9200;7600;18700;31100;62400;124500;80500;186800;380200;309100;363100;310700;595700;401900;411700;69300;81726;107383;210473;181420;59200;108300;44100;48000;81200;33600;44450;21975;33578;32606;33684;36621;33313;24424;24334;39553;24831;24031;23018;20629;20070;19507;17681;22593;22700;44273.56;24893;17192 -5207;'005;South America;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;27;27;1136;3562;2995;4100;5466;5357;4603;8748;12201;11214;4384;3671;12261;24596;55305;78296;49838;82511;159060;130014;162516;166769;392010;184004;184553;57701;61889;77318;133813;186205;73193;102036;60439;50365;69890;46897;64447;33186;61694;69882;78534;73007;83167;61630;56420;104347;62832;59330;58801;51725;46646;46669;45866;49368;49586;48404.42;53157;52751 -5207;'005;South America;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;855827;925547;816121;653241;1117069;1021541;808053 -5207;'005;South America;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2033829;2235649;2309635;2450446;3254639;3525465;2537473 -5207;'005;South America;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8279;8857;7542;6389;9357;13787;9066 -5207;'005;South America;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;866642;893082;949260;943657;1262060;1582537;1015291 -5207;'005;South America;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3395;3542;3787;3899;5428;6186;4639 -5207;'005;South America;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;495722;490361;506452;545704;813826;1017498;686082 -5207;'005;South America;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4884;5315;3755;2490;3929;7601;4427 -5207;'005;South America;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;370920;402721;442808;397953;448234;565039;329209 -5207;'005;South America;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61721;69553;63911;53685;65505;83493;73293 -5207;'005;South America;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35879;54572;55273;50942;62930;87608;62360 -5207;'005;South America;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32739;36823;36157;27005;47149;47878;36716 -5207;'005;South America;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28759;27406;27872;27542;46941;38787;10686 -5207;'005;South America;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106331;70557;65254;46309;71596;70034;53611 -5207;'005;South America;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;412349;418594;428679;511851;696526;721527;532180 -5207;'005;South America;1636;Glue-laminated timber (glulam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53262;53619 -5207;'005;South America;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;189;193 -5207;'005;South America;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;357;236 -5207;'005;South America;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2791;4102 -5207;'005;South America;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1614;2432 -5207;'005;South America;1688;Cross-laminated timber (CLT or X-lam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1221 -5207;'005;South America;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;80 -5207;'005;South America;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98;93 -5207;'005;South America;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;8 -5207;'005;South America;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;8 -5207;'005;South America;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;689;822 -5207;'005;South America;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1682;1294 -5207;'005;South America;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;118 -5207;'005;South America;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;215 -5207;'005;South America;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;590905;665421;579481;462583;839189;706901;556197 -5207;'005;South America;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;560976;638981;645259;638530;962972;860058;759187 -5207;'005;South America;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4204;3227;3318;3382;2943;11138;8766 -5207;'005;South America;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;676;3845;1713;2342;690;5919;3878 -5207;'005;South America;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51648;71109;60458;53888;81330;88310;70404 -5207;'005;South America;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;128548;199169;201579;275582;222520;229029;153891 -5207;'005;South America;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1242077;1351864;1375908;1178504;1511179;1767708;1586120 -5207;'005;South America;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;654403;677720;684638;622777;744821;950485;919756 -5207;'005;South America;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14767;18363;16270;12948;16708;29330;20034 -5207;'005;South America;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;673;638;238;215;246;243;526 -5207;'005;South America;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;360662;387293;372060;306345;389276;486059;430764 -5207;'005;South America;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;165116;173299;164581;151531;212828;286622;305476 -5207;'005;South America;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;176474;180954;203535;192635;206711;245832;236547 -5207;'005;South America;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116503;101556;107669;114846;109632;161925;171951 -5207;'005;South America;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;349297;387844;402491;354367;493127;544183;466562 -5207;'005;South America;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;223795;240553;271559;242066;297627;364998;318251 -5207;'005;South America;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;340877;377410;381552;312209;405357;462304;432213 -5207;'005;South America;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;148316;161674;140591;114119;124488;136697;123552 -5300;'142;Asia;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;138743726.4;150936708;138830410;125098262;151529232.8;161282269.2;144958021.5 -5300;'142;Asia;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111083935;118867554;116699745;115193160;140498613.5;151505730.8;138917099.9 -5300;'142;Asia;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;613426;696312;808776;947124;1037202;1322041;1654002;2093808;2336515;2841141;2914228;3318866;5930867;7337383;5927253;7699115;8861113;10069971;15148295;16532989;13292452;13419570;13209278;13709155;12969425;14839365;19924733;22688552;26991414;27600173;28745929;31472921;34477962;38655518;46114138;45396729;42293620;32935720;37169032;43316172;38655326;38554620;42450989;50479585;52634548.3;56927613.3;66675023;71030349.1;61090500;79858607.78;98159168.4;93045481.28;97566375;104297456;93999186;94360910;107361995.5;118339033;105753733;94532532;116335875.8;124791435.2;111051564.5 -5300;'142;Asia;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;387232;422562;496822;560105;607633;715820;776385;1003802;1138947;1282265;1455290;1757554;3060371;3301564;2573998;3843030;4212300;4649660;7163675;7156592;5831342;5626040;6014945;5337432;5739871;6192253;8001071;9222954;11400789;11298845;12740808;14272296;15192546;15946368;17794329;17278492;17027336;14613988;15627522;17797600;16080312;15712643;17414015;20678644;22776679.4;26570208;30026648;32445044;27288327.3;35006401;40013558.4;40220821.45;44173134;47892874.13;43792423.05;42849896;44867210.23;48931414;45736103;42641829;53152047.47;61431680.78;55222018.92 -5300;'142;Asia;1861;Roundwood;5516;Production;m3;970759968;962209727;966785754;986279826;993539499;1001251734;1012856547;1017360440;1023809323;1031367214;1042868228;1063671450;1081644400;1089126668;1094129699;1130251698;1128832992;1126297266;1137861305;1138596387;1128951283;1137594578;1136714687;1142344311;1136612605;1145676255;1154188802;1149602364;1150953675;1162419108;1161732496;1157697545;1146744171;1129998582;1122108109;1113212548;1102111507;1093736039;1082321356;1072729247;1055711670;1078785966;1084925672;1081830727;1077671978;1069568516;1082908325;1110207377;1123432466;1142586377;1147181244;1141424683;1159592361;1157805747;1136026049;1147517915;1140569540;1157127638;1132940310;1153013014;1141714716;1138840781;1131569742 -5300;'142;Asia;1861;Roundwood;5616;Import quantity;m3;10515500;12548150;15570302;17822200;20786300;26427700;32388000;39005900;41719608;48427316;48810104;53307604;60494108;55454016;47140300;55977408;59133916;63156508;65037112;54020512;46059200;46846200;50802600;48493700;49479700;50013693;55053485;54253386;52660479;50112206;46714331;44658033;42148703;40853514;40325486;40631553;40689143;31850013;41871581;45246318;45662338;51780754;54692681;56247819;57387681.2;59668479;65170974;55020154;46010165;54579070;64651327;59208234;66705572;73352552;68872184;72121071;75069940;77927014;77100968;72137639;78133355.42;57959935.6;49752713.6 -5300;'142;Asia;1861;Roundwood;5622;Import value;1000 USD;280223;354622;440168;484841;570929;757936;998702;1251997;1392531;1676907;1689898;1839450;3507248;3842136;2824457;3932865;4452977;4965185;8337219;7661938;5128013;5266678;4873642;4937397;4484128;4586652;6417766;6398663;7227007;6913688;6677987;6645219;8479077;7683308;7550047;7111750;5904252;3981658;4968770;5786171;5244528;5366837;5904351;6902634;7303042.3;8216708.3;10105221;9307261;7381623;10030874;12961627.4;11765217.28;14170955;16904861;11971175;11973173;13627665.72;14574308;12605355;10809802;15128172.58;12564300.52;9068352.52 -5300;'142;Asia;1861;Roundwood;5916;Export quantity;m3;7962000;8478200;11093766;12155700;13608200;16032000;17535500;21550767;25156100;29723000;31451400;32655300;39942300;34510008;28815000;36505404;37969600;39238500;36866700;32594500;25190900;25153704;24199796;20341000;21517408;20398734;24141200;21991956;22535876;20721974;22519061;21191428;12262205;11403082;10619987;9174092;8052908;7232080;8818969;10904424;8509097;8887628;7556835;7604448;9525059.2;7817867;7682065;6641501;6210991;7045422;6590746;6002770;6916508;7471994;6214437;5366293;4244763;3489872;3101220;2850454;2864916.09;2128023;2595720 -5300;'142;Asia;1861;Roundwood;5922;Export value;1000 USD;155133;178999;232438;232039;263921;317651;360624;463290;514090;583185;657252;709010;1368996;1436509;929176;1607274;1754315;1883500;3193676;3007900;2001169;2080524;1978491;1346733;1343361;1270325;1866399;1798693;1841631;1798336;1943024;2012952;1594446;1469224;1471612;1362577;1120135;772992;1078405;1434952;1119584;929170;927158;917877;1351825.4;1239593;1466764;1623284;1276242;1733041;2319723.3;2182930.45;2916761;3685926.13;1511561;1096674;984747.11;759242;645797;434861;693544.96;539210;461300 -5300;'142;Asia;1862;Roundwood, coniferous;5516;Production;m3;188235744;181899140;185573780;193719942;195247601;196915087;197752460;197604417;198882264;198984267;200534046;204581275;205899488;211870702;222227032;229963345;229528446;229701864;233253089;233789602;230336869;232480803;229830544;231984176;230461904;232761312;231737351;228802552;226280924;223238275;219190568;217245134;217779157;214593890;213641358;216076245;212066297;206798143;200459667;196642494;190911964;190684505;190874284;190909426;190455954;190217226;164656108;162233875;161028426;157857267;156725180;153553708;157268122;155862218;160273896;159872168;156923297;159815024;158921806;156373707;162608564;161646753;155919170 -5300;'142;Asia;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49688511;52697570;55225926;54445299;59132016.58;39513606.6;35561806.6 -5300;'142;Asia;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6637433.1;7358374;7062529;6569557;9628307.8;6782293.52;5146409.52 -5300;'142;Asia;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1043421;1307098;1374380;1586831;1682472.59;1495104;1665047 -5300;'142;Asia;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;137216.88;159153;175307;175404;228282.96;180678;182132 -5300;'142;Asia;1863;Roundwood, non-coniferous;5516;Production;m3;782524224;780310587;781211974;792559884;798291898;804336647;815104087;819756023;824927059;832382947;842334182;859090175;875744912;877255966;871902667;900288353;899304546;896595402;904608216;904806785;898614414;905113775;906884143;910360135;906150701;912914943;922451451;920799812;924672751;939180833;942541928;940452411;928965014;915404692;908466751;897136303;890045210;886937896;881861689;876086753;864799706;888101461;894051388;890921301;887216024;879351290;918252217;947973502;962404040;984729110;990456064;987870975;1002324239;1001943529;975752153;987645747;983646243;997312614;974018504;996639307;979106152;977194028;975650572 -5300;'142;Asia;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25381429;25229444;21875042;17692340;19001338.83;18446329;14190907 -5300;'142;Asia;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6990232.62;7215934;5542826;4240245;5499864.78;5782007;3921943 -5300;'142;Asia;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3201342;2182774;1726840;1263623;1182443.51;632919;930673 -5300;'142;Asia;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;847530.23;600089;470490;259457;465262;358532;279168 -5300;'142;Asia;1864;Wood fuel;5516;Production;m3;838840968;838658719;840261754;842963226;846278091;848410026;850386339;852568732;856745315;859683914;866333228;881337734;884508384;896102960;898309999;914142690;909997576;900891350;908635597;905874063;904554767;907426546;901871571;895584179;890263829;890717855;889351094;882649340;882072417;897050992;895651916;882806587;873196005;860073332;849087859;833852598;823745357;817324162;813831794;807815999;801298933;815746219;807844226;796390429;791870732;786129872;782466470;778052934;772470943;764349384;756322816;748275711;741574475;740680650;735164742;730356352;724822902;718512014;712501939;707982993;698410678;694924174;690309633 -5300;'142;Asia;1864;Wood fuel;5616;Import quantity;m3;178100;128950;96300;103400;78800;132300;169500;125400;90600;105900;93600;86900;58700;44000;38500;47100;63000;52200;72600;60400;46400;41300;40400;20500;14400;14500;14500;14500;16000;15900;20400;91404;332280;119395;73670;283419;193837;311293;241355;392743;138040;258059;345218;372016;420107;353041;356851;165428;108436;332192;258087;253499;140661;66112;128573;69481;125490;108491;136760;122044;144537.42;170471.6;164985.6 -5300;'142;Asia;1864;Wood fuel;5622;Import value;1000 USD;1910;1407;1277;1003;892;1211;1234;1129;863;1005;1474;1060;671;727;594;1024;1100;1867;1199;2164;1136;1182;1322;758;346;347;350;348;961;879;1303;4365;12995;10240;7646;12706;9671;13198;8166;13503;5889;9058;12188;19068;19786;23071;38064;16314;12452;28973;27374;33711;20081;11598;22558;12087;15697.56;18551;19104;14968;23110.58;35786.52;35338.52 -5300;'142;Asia;1864;Wood fuel;5916;Export quantity;m3;95000;72800;46966;76800;74700;50500;179500;259467;363800;470500;447900;234400;134800;92600;59900;66200;69200;29300;17000;27600;9600;11000;10100;4200;4200;2600;2600;2600;2600;2600;8500;46663;112472;38691;32807;15713;13197;14214;24314;17356;26491;8943;13601;20910;15306.2;28110;13030;24578;82382;53105;49804;33671;78716;45353;43250;28942;48130;46449;28818;21504;28761.09;29139;38057 -5300;'142;Asia;1864;Wood fuel;5922;Export value;1000 USD;766;654;476;595;663;509;705;1610;1821;2264;2218;2702;1188;1493;999;973;1525;1117;444;586;277;514;375;194;194;165;165;165;165;165;364;2345;4396;2747;2753;1663;1834;4521;7999;2370;2361;1443;1708;2227;1676.4;1717;1568;5070;9313;6891;8578;6118.45;7564;7133;8830;4403;4157;4198;3663;2968;3857.95;4643;5012 -5300;'142;Asia;1627;Wood fuel, coniferous;5516;Production;m3;124940744;125778132;126169780;129091842;130247293;131385679;132681252;134408209;136419056;137548467;138723246;142363267;142365480;146950694;147851032;153463345;151520438;150234856;150670881;150097094;149965961;148886279;146631336;142473960;138138696;137426812;135909843;134110536;134318466;134529167;132590588;128297676;124614899;120961140;118469108;116750795;114992247;112035605;110269443;108876661;107429398;106584429;105019764;103457729;102019490;101484772;99071563;97841213;96716873;94696619;93325738;91313017;90090803;90707472;89128589;88500470;87218074;85863220;84609378;83434523;82066536;81014159;80564808 -5300;'142;Asia;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13951;19813;17995;32876;49255.58;64422.6;49736.6 -5300;'142;Asia;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2268.61;3895;2323;3455;6022.8;12875.52;9938.52 -5300;'142;Asia;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3938;3355;4146;2895;6372.59;3840;4772 -5300;'142;Asia;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;829;966;761;430;726.95;1020;801 -5300;'142;Asia;1628;Wood fuel, non-coniferous;5516;Production;m3;713900224;712880587;714091974;713871384;716030798;717024347;717705087;718160523;720326259;722135447;727609982;738974467;742142904;749152266;750458967;760679345;758477138;750656494;757964716;755776969;754588806;758540267;755240235;753110219;752125133;753291043;753441251;748538804;747753951;762521825;763061328;754508911;748581106;739112192;730618751;717101803;708753110;705288557;703562351;698939338;693869535;709161790;702824462;692932700;689851242;684645100;683394907;680211721;675754070;669652765;662997078;656962694;651483672;649973178;646036153;641855882;637604828;632648794;627892561;624548470;616344142;613910015;609744825 -5300;'142;Asia;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111539;88678;118765;89168;95281.83;106049;115249 -5300;'142;Asia;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13428.95;14656;16781;11513;17087.78;22911;25400 -5300;'142;Asia;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44192;43094;24672;18609;22388.51;25299;33285 -5300;'142;Asia;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3328;3232;2902;2538;3131;3623;4211 -5300;'142;Asia;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;178100;128950;96300;103400;78800;132300;169500;125400;90600;105900;93600;86900;58700;44000;38500;47100;63000;52200;72600;60400;46400;41300;40400;20500;14400;14500;14500;14500;16000;15900;20400;91404;332280;119395;73670;283419;193837;311293;241355;392743;138040;258059;345218;372016;420107;353041;356851;165428;108436;332192;258087;253499;140661;66112;128573;69481;;;;;;; -5300;'142;Asia;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;1910;1407;1277;1003;892;1211;1234;1129;863;1005;1474;1060;671;727;594;1024;1100;1867;1199;2164;1136;1182;1322;758;346;347;350;348;961;879;1303;4365;12995;10240;7646;12706;9671;13198;8166;13503;5889;9058;12188;19068;19786;23071;38064;16314;12452;28973;27374;33711;20081;11598;22558;12087;;;;;;; -5300;'142;Asia;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;95000;72800;46966;76800;74700;50500;179500;259467;363800;470500;447900;234400;134800;92600;59900;66200;69200;29300;17000;27600;9600;11000;10100;4200;4200;2600;2600;2600;2600;2600;8500;46663;112472;38691;32807;15713;13197;14214;24314;17356;26491;8943;13601;20910;15306.2;28110;13030;24578;82382;53105;49804;33671;78716;45353;43250;28942;;;;;;; -5300;'142;Asia;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;766;654;476;595;663;509;705;1610;1821;2264;2218;2702;1188;1493;999;973;1525;1117;444;586;277;514;375;194;194;165;165;165;165;165;364;2345;4396;2747;2753;1663;1834;4521;7999;2370;2361;1443;1708;2227;1676.4;1717;1568;5070;9313;6891;8578;6118.45;7564;7133;8830;4403;;;;;;; -5300;'142;Asia;1865;Industrial roundwood;5516;Production;m3;131919000;123551008;126524000;143316600;147261408;152841708;162470208;164791708;167064008;171683300;176535000;182333716;197136016;193023708;195819700;216109008;218835416;225405916;229225708;232722324;224396516;230168032;234843116;246760132;246348776;254958400;264837708;266953024;268881258;265368116;266080580;274890958;273548166;269925250;273020250;279359950;278366150;276411877;268489562;264913248;254412737;263039747;277081446;285440298;285801246;283438644;300441855;332154443;350961523;378236993;390858428;393148972;418017886;417125097;400861307;417161563;415746638;438615624;420438371;445030021;443304038;443916607;441260109 -5300;'142;Asia;1865;Industrial roundwood;5616;Import quantity;m3;10337400;12419200;15474002;17718800;20707500;26295400;32218500;38880500;41629008;48321416;48716504;53220704;60435408;55410016;47101800;55930308;59070916;63104308;64964512;53960112;46012800;46804900;50762200;48473200;49465300;49999193;55038985;54238886;52644479;50096306;46693931;44566629;41816423;40734119;40251816;40348134;40495306;31538720;41630226;44853575;45524298;51522695;54347463;55875803;56967574.2;59315438;64814123;54854726;45901729;54246878;64393240;58954735;66564911;73286440;68743611;72051590;74944450;77818523;76964208;72015595;77988818;57789464;49587728 -5300;'142;Asia;1865;Industrial roundwood;5622;Import value;1000 USD;278313;353215;438891;483838;570037;756725;997468;1250868;1391668;1675902;1688424;1838390;3506577;3841409;2823863;3931841;4451877;4963318;8336020;7659774;5126877;5265496;4872320;4936639;4483782;4586305;6417416;6398315;7226046;6912809;6676684;6640854;8466082;7673068;7542401;7099044;5894581;3968460;4960604;5772668;5238639;5357779;5892163;6883566;7283256.3;8193637.3;10067157;9290947;7369171;10001901;12934253.4;11731506.28;14150874;16893263;11948617;11961086;13611968.16;14555757;12586251;10794834;15105062;12528514;9033014 -5300;'142;Asia;1865;Industrial roundwood;5916;Export quantity;m3;7867000;8405400;11046800;12078900;13533500;15981500;17356000;21291300;24792300;29252500;31003500;32420900;39807500;34417408;28755100;36439204;37900400;39209200;36849700;32566900;25181300;25142704;24189696;20336800;21513208;20396134;24138600;21989356;22533276;20719374;22510561;21144765;12149733;11364391;10587180;9158379;8039711;7217866;8794655;10887068;8482606;8878685;7543234;7583538;9509753;7789757;7669035;6616923;6128609;6992317;6540942;5969099;6837792;7426641;6171187;5337351;4196633;3443423;3072402;2828950;2836155;2098884;2557663 -5300;'142;Asia;1865;Industrial roundwood;5922;Export value;1000 USD;154367;178345;231962;231444;263258;317142;359919;461680;512269;580921;655034;706308;1367808;1435016;928177;1606301;1752790;1882383;3193232;3007314;2000892;2080010;1978116;1346539;1343167;1270160;1866234;1798528;1841466;1798171;1942660;2010607;1590050;1466477;1468859;1360914;1118301;768471;1070406;1432582;1117223;927727;925450;915650;1350149;1237876;1465196;1618214;1266929;1726150;2311145.3;2176812;2909197;3678793.13;1502731;1092271;980590.11;755044;642134;431893;689687;534567;456288 -5300;'142;Asia;1866;Industrial roundwood, coniferous;5516;Production;m3;63295000;56121008;59404000;64628100;65000308;65529408;65071208;63196208;62463208;61435800;61810800;62218008;63534008;64920008;74376000;76500000;78008008;79467008;82582208;83692508;80370908;83594524;83199208;89510216;92323208;95334500;95827508;94692016;91962458;88709108;86599980;88947458;93164258;93632750;95172250;99325450;97074050;94762538;90190224;87765833;83482566;84100076;85854520;87451697;88436464;88732454;65584545;64392662;64311553;63160648;63399442;62240691;67177319;65154746;71145307;71371698;69705223;73951804;74312428;72939184;80542028;80632594;75354362 -5300;'142;Asia;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26798014;24675437;23221370;23880799;22740411;23420591;23277523;23414275;17926469;24682308;26522171;28381474;34919445;35553870;36738248;37336897;39402047;42858487;35838921;31326635;36936919;45582642;39738152;46199726;49018806;46370640;48860784;49674560;52677757;55207931;54412423;59082761;39449184;35512070 -5300;'142;Asia;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3729297;3289701;3422999;4335182;3894649;4125168;3858448;3266184;2024913;2477707;2643675;2553844;2855978;2899840;3575375;3608530.2;4147823;5043213;4238059;3704935;5055855;6814687.4;5514152;7048085;7355617;5124677;5941181;6635164.49;7354479;7060206;6566102;9622285;6769418;5136471 -5300;'142;Asia;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;416952;739863;713557;748631;944985;747390;697556;572834;436876;432044;626162;251811;247117;341313;518058;422508;431341;439700;306859;253759;291968;263457;256916;378533;759766;883402;780567;1039483;1303743;1370234;1583936;1676100;1491264;1660275 -5300;'142;Asia;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42757;46997;51214;77001;125100;95376;66562;73194;39590;42255;49135;19801;20843;27223;40801;42678;39653;40200;44057;29474;35568;43921.3;42228;50620;95147.13;99403;87968;136387.88;158187;174546;174974;227556;179658;181331 -5300;'142;Asia;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26798014;24675437;23221370;23880799;22740411;23420591;23277523;23414275;17926469;24682308;26522171;28381474;34919445;35553870;36738248;37336897;39402047;42858487;35838921;31326635;36936919;45582642;39738152;46199726;49018806;46370640;48860784;49674560;52677757;55207931;54412423;59082761;39449184;35512070 -5300;'142;Asia;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3729297;3289701;3422999;4335182;3894649;4125168;3858448;3266184;2024913;2477707;2643675;2553844;2855978;2899840;3575375;3608530.2;4147823;5043213;4238059;3704935;5055855;6814687.4;5514152;7048085;7355617;5124677;5941181;6635164.49;7354479;7060206;6566102;9622285;6769418;5136471 -5300;'142;Asia;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;416952;739863;713557;748631;944985;747390;697556;572834;436876;432044;626162;251811;247117;341313;518058;422508;431341;439700;306859;253759;291968;263457;256916;378533;759766;883402;780567;1039483;1303743;1370234;1583936;1676100;1491264;1660275 -5300;'142;Asia;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42757;46997;51214;77001;125100;95376;66562;73194;39590;42255;49135;19801;20843;27223;40801;42678;39653;40200;44057;29474;35568;43921.3;42228;50620;95147.13;99403;87968;136387.88;158187;174546;174974;227556;179658;181331 -5300;'142;Asia;1867;Industrial roundwood, non-coniferous;5516;Production;m3;68624000;67430000;67120000;78688500;82261100;87312300;97399000;101595500;104600800;110247500;114724200;120115708;133602008;128103700;121443700;139609008;140827408;145938908;146643500;149029816;144025608;146573508;151643908;157249916;154025568;159623900;169010200;172261008;176918800;176659008;179480600;185943500;180383908;176292500;177848000;180034500;181292100;181649339;178299338;177147415;170930171;178939671;191226926;197988601;197364782;194706190;234857310;267761781;286649970;315076345;327458986;330908281;350840567;351970351;329716000;345789865;346041415;364663820;346125943;372090837;362762010;363284013;365905747 -5300;'142;Asia;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23298292;22018494;21345259;17935624;17993708;16831225;17070611;17081031;13612251;16947918;18331404;17142824;16603250;18793593;19137555;19630677.2;19913391;21955636;19015805;14575094;17309959;18810598;19216583;20365185;24267634;22372971;23190806;25269890;25140766;21756277;17603172;18906057;18340280;14075658 -5300;'142;Asia;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3183512;3386983;3217855;4130900;3778419;3417233;3240596;2628397;1943547;2482897;3128993;2684795;2501801;2992323;3308191;3674726.1;4045814.3;5023944;5052888;3664236;4946046;6119566;6217354.28;7102789;9537646;6823940;6019905;6976803.67;7201278;5526045;4228732;5482777;5759096;3896543 -5300;'142;Asia;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20302422;21770698;20431208;11401102;10419406;9839790;8460823;7466877;6780990;8362611;10260906;8230795;8631568;7201921;7065480;9087245;7358416;7229335;6310064;5874850;6700349;6277485;5712183;6459259;6666875;5287785;4556784;3157150;2139680;1702168;1245014;1160055;607620;897388 -5300;'142;Asia;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1755414;1895663;1959393;1513049;1341377;1373483;1294352;1045107;728881;1028151;1383447;1097422;906884;898227;874849;1307471;1198223;1424996;1574157;1237455;1690582;2267224;2134584;2858577;3583646;1403328;1004303;844202.22;596857;467588;256919;462131;354909;274957 -5300;'142;Asia;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21610081;20171236;19485322;15875574;16364281;15287667;15270600;14881836;11666734;14800919;15657221;14806626;13594602;14307804;14407535;13567547;13547852;14625667;13694038;11843031;14335287;15118664;15546868;16475124;19180142;18325348;17485024;17320965;16506729;14316096;11922163;11519139;10268114;8493356 -5300;'142;Asia;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2910345;3083557;2891339;3756858;3447555;3066458;2870665;2121347;1571252;2082256;2463128;2199612;1993742;2301786;2686621;2690868;2976674;3686096;3896011;3070448;4190569;5169465;5296076.28;6186112;8204473;5631230;4712399;5232105.52;5002976;4002298;2806197;3434074;2867757;2412928 -5300;'142;Asia;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19921750;21209633;19873700;10844720;9990832;9396798;8318407;7297629;6512563;8054208;9538310;7698007;8514962;7088566;6853433;8892415;7195794;7001132;6250846;5815491;6641833;6226435;5670322;6391460;6606214;5232697;4389985;3084609;2067325;1638607;1214471;1104647;531748;860874 -5300;'142;Asia;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1719195;1835920;1905410;1447152;1299281;1327853;1256487;1017837;690797;962161;1323819;1057722;883765;879251;843520;1279131;1164384;1324751;1549790;1219274;1665465;2245694;2109975;2826308;3554687;1383101;955135;817416;579589;448980;249720;452442;313502;261815 -5300;'142;Asia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1688211;1847258;1859937;2060050;1629427;1543558;1800011;2199195;1945517;2146999;2674183;2336198;3008648;4485789;4730020;6063130.2;6365539;7329969;5321767;2732063;2974672;3691934;3669715;3890061;5087492;4047623;5705782;7948925;8634037;7440181;5681009;7386918;8072166;5582302 -5300;'142;Asia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;273167;303426;326516;374042;330864;350775;369931;507050;372295;400641;665865;485183;508059;690537;621570;983858.1;1069140.3;1337848;1156877;593788;755477;950101;921278;916677;1333173;1192710;1307506;1744698.15;2198302;1523747;1422535;2048703;2891339;1483615 -5300;'142;Asia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;380672;561065;557508;556382;428574;442992;142416;169248;268427;308403;722596;532788;116606;113355;212047;194830;162622;228203;59218;59359;58516;51050;41861;67799;60661;55088;166799;72541;72355;63561;30543;55408;75872;36514 -5300;'142;Asia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36219;59743;53983;65897;42096;45630;37865;27270;38084;65990;59628;39700;23119;18976;31329;28340;33839;100245;24367;18181;25117;21530;24609;32269;28959;20227;49168;26786.22;17268;18608;7199;9689;41407;13142 -5300;'142;Asia;1868;Sawlogs and veneer logs;5516;Production;m3;83178000;80910008;79618000;94168100;97665308;101277508;108190008;110904308;111651808;113795900;117058200;123995716;138526016;130425708;134444700;152518008;153636416;160047216;161946208;162922924;154664108;158182624;160753716;167898724;164568708;170446000;179618700;184993016;185293350;177901408;179506880;186026958;182494066;177227650;179752350;187739950;185234050;183269266;176078083;169947264;157254529;164930459;176524911;182249796;181285355;177927320;181015732;193162117;205512999;215589478;213373578;209620136;241041763;234712709;233334451;244611459;240707177;240984685;220544539;241005691;234689674;233186911;227872643 -5300;'142;Asia;1868;Sawlogs and veneer logs;5616;Import quantity;m3;9736900;11710500;14831502;16968600;19966800;25201600;31083000;37811900;40539808;46973216;47225804;51754504;58862408;53749616;45810000;54387308;57033516;61337808;62575012;51838712;43069900;44486000;47596800;45676500;46713300;46556693;51683185;52694586;51053379;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5300;'142;Asia;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;264976;335926;425563;468050;554472;736889;975265;1225772;1366621;1642797;1648305;1797942;3456377;3788575;2763965;3861072;4338948;4868001;8194721;7473983;4937214;5110726;4696258;4788324;4375834;4453615;6280954;6297124;7082773;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5300;'142;Asia;1868;Sawlogs and veneer logs;5916;Export quantity;m3;7852800;8396300;11039900;12047100;13501300;15917200;17317700;21224400;24738900;29220100;30960500;32361400;39777300;34377608;28690800;36300804;37534300;38827100;36384000;32056400;24649300;24719404;23600596;19915600;21102908;20093634;23786700;21800656;22427976;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5300;'142;Asia;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;153767;177920;231644;231082;262666;315572;359208;460689;511256;580088;653805;704839;1366883;1433858;924609;1604944;1749157;1877556;3189035;2999817;1992287;2070740;1964283;1334251;1331010;1261245;1854227;1790477;1835218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5300;'142;Asia;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;41615000;40255008;42789000;46301000;46587008;46969008;46458008;44996008;44182008;42575600;42607000;43223008;44261008;43217008;52083000;53206000;53650008;54508008;56791208;56712008;52953400;54928016;53520708;57989708;58851700;59535000;59736000;58840508;55999950;52567600;50904480;52852658;55708458;56104650;58157650;60035850;58473650;56697197;54340783;53124714;50620389;50351109;51664102;52539266;53061339;53099164;38004654;36474611;36270666;36061772;35500511;34859726;40486911;38153306;42923855;43178257;40805668;42932357;43435021;41364531;45376179;45402599;41736160 -5300;'142;Asia;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;2821300;3502500;4986702;6076800;7573700;9279900;13262200;17664300;17353800;20235208;17968800;20434400;22333100;19061508;18456200;20280908;21164208;22596500;23584408;19387604;16280000;18950100;21945100;22711300;24314500;24681826;27377323;28072204;27855300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5300;'142;Asia;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;86084;108900;149847;191004;235506;301407;451158;637108;661145;799210;693668;850841;1531008;1554080;1449593;1620770;1888012;2037595;3075023;2946239;1924404;2015844;2059906;2122112;2235163;2308594;2902283;3154654;3882485;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5300;'142;Asia;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;48800;65100;98000;137200;132300;124400;167400;163200;143800;115700;152600;133300;125100;101100;436500;503900;474500;318900;428600;339300;347100;177800;177700;183400;75900;173740;36400;33011;137756;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5300;'142;Asia;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;1709;2154;3139;5458;5450;8887;10027;11970;9882;9575;17414;23429;26945;18937;30867;41253;43852;28252;60965;46983;48313;30419;28287;28544;12811;22533;9848;9122;21706;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5300;'142;Asia;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;41563000;40655000;36829000;47867100;51078300;54308500;61732000;65908300;67469800;71220300;74451200;80772708;94265008;87208700;82361700;99312008;99986408;105539208;105155000;106210916;101710708;103254608;107233008;109909016;105717008;110911000;119882700;126152508;129293400;125333808;128602400;133174300;126785608;121123000;121594700;127704100;126760400;126572069;121737300;116822550;106634140;114579350;124860809;129710530;128224016;124828156;143011078;156687506;169242333;179527706;177873067;174760410;200554852;196559403;190410596;201433202;199901509;198052328;177109518;199641160;189313495;187784312;186136483 -5300;'142;Asia;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;6915600;8208000;9844800;10891800;12393100;15921700;17820800;20147600;23186008;26738008;29257004;31320104;36529308;34688108;27353800;34106400;35869308;38741308;38990604;32451108;26789900;25535900;25651700;22965200;22398800;21874867;24305862;24622382;23198079;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5300;'142;Asia;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;178892;227026;275716;277046;318966;435482;524107;588664;705476;843587;954637;947101;1925369;2234495;1314372;2240302;2450936;2830406;5119698;4527744;3012810;3094882;2636352;2666212;2140671;2145021;3378671;3142470;3200288;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5300;'142;Asia;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;7804000;8331200;10941900;11909900;13369000;15792800;17150300;21061200;24595100;29104400;30807900;32228100;39652200;34276508;28254300;35796904;37059800;38508200;35955400;31717100;24302200;24541604;23422896;19732200;21027008;19919894;23750300;21767645;22290220;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5300;'142;Asia;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;152058;175766;228505;225624;257216;306685;349181;448719;501374;570513;636391;681410;1339938;1414921;893742;1563691;1705305;1849304;3128070;2952834;1943974;2040321;1935996;1305707;1318199;1238712;1844379;1781355;1813512;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5300;'142;Asia;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34418282;36666492;39768332;41911169;43409549;44827259;47664369;47992469;49087169;57670069;67635069;66716269;74960269;86543400;89580400;108059740;101182568;106023568;106413568;107802068;125191408;127653161;131747727;135482558;137120678;139265887 -5300;'142;Asia;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10058782;9664316;9507032;8663831;9669281;9735161;10357762;10887264;10993681;12088481;13228481;13129481;12888481;14142500;13909500;16883500;15770500;18306500;17916500;17448500;18628500;18543500;19143500;22211500;22454500;20722526 -5300;'142;Asia;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24359500;27002176;30261300;33247338;33740268;35092098;37306607;37105205;38093488;45581588;54406588;53586788;62071788;72400900;75670900;91176240;85412068;87717068;88497068;90353568;106562908;109109661;112604227;113271058;114666178;118543361 -5300;'142;Asia;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5616;Import quantity;m3;424800;528300;482700;607200;626400;989400;1022000;927200;872300;1108100;1142200;1186400;1393800;1378300;1073200;1299900;1775400;1525900;2132000;1793100;2543200;1903200;2763700;2470700;2573000;3219900;3171000;1394200;1215900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5300;'142;Asia;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5622;Import value;1000 USD;6211;10031;7342;10013;11215;16062;18129;18413;15281;20457;21637;22824;37072;34087;29875;29693;50802;45736;81165;106789;85543;58581;77240;76351;79004;95192;100278;67838;105946;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5300;'142;Asia;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;358300;517200;350400;343500;287500;345500;186900;103500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5300;'142;Asia;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;6248;9528;8196;8823;6503;10345;7758;5955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5300;'142;Asia;1870;Pulpwood and particles (1961-1997);5516;Production;m3;14394000;11042000;12168000;11648000;10777000;11528000;16926000;15986000;17286000;19673000;20741000;19520000;19519000;22404000;19036000;20120000;20140000;18697000;19237000;20772400;18763400;19053400;19608400;22168400;23083060;22798400;22145000;22729000;24252900;25856700;25633700;26609000;25786900;27137200;27470700;30459700;32096700;;;;;;;;;;;;;;;;;;;;;;;;;; -5300;'142;Asia;1870;Pulpwood and particles (1961-1997);5616;Import quantity;m3;424800;528300;482700;607200;626400;989400;1022000;927200;872300;1108100;1142200;1186400;1393800;1378300;1073200;1299900;1775400;1525900;2132000;1793100;2543200;1903200;2763700;2470700;2573000;3219900;3171000;1394200;1215900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5300;'142;Asia;1870;Pulpwood and particles (1961-1997);5622;Import value;1000 USD;6211;10031;7342;10013;11215;16062;18129;18413;15281;20457;21637;22824;37072;34087;29875;29693;50802;45736;81165;106789;85543;58581;77240;76351;79004;95192;100278;67838;105946;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5300;'142;Asia;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;358300;517200;350400;343500;287500;345500;186900;103500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5300;'142;Asia;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;6248;9528;8196;8823;6503;10345;7758;5955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5300;'142;Asia;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;8993000;5828000;5447000;5510000;5243000;5157000;5529000;4898000;5037000;5862000;6110000;5723000;5636000;7169000;6537000;7089000;7350000;7102000;7467000;8027000;7350000;7546000;7782000;8463000;9236000;9746000;9428000;9480000;9754000;10038000;10034000;10296300;10249200;10383500;10063000;10401000;10153000;;;;;;;;;;;;;;;;;;;;;;;;;; -5300;'142;Asia;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;5401000;5214000;6721000;6138000;5534000;6371000;11397000;11088000;12249000;13811000;14631000;13797000;13883000;15235000;12499000;13031000;12790000;11595000;11770000;12745400;11413400;11507400;11826400;13705400;13847060;13052400;12717000;13249000;14498900;15818700;15599700;16312700;15537700;16753700;17407700;20058700;21943700;;;;;;;;;;;;;;;;;;;;;;;;;; -5300;'142;Asia;1871;Other industrial roundwood;5516;Production;m3;34347000;31599000;34738000;37500500;38819100;40036200;37354200;37901400;38126200;38214400;38735800;38818000;39091000;40194000;42339000;43471000;45059000;46661700;48042500;49027000;50969008;52932008;54481000;56693008;58697008;61714000;63074008;59231008;59335008;61610008;60940000;62255000;65267200;65560400;65797200;61160300;61035400;58724329;55744987;55197652;55247039;54699739;55729276;55526133;56523422;56424155;61756054;71357257;78732255;87687246;90941450;93948436;68916383;81229820;61503288;66136536;67237393;72439531;72240671;72276603;73131806;73609018;74121579 -5300;'142;Asia;1871;Other industrial roundwood;5616;Import quantity;m3;175700;180400;159800;143000;114300;104400;113500;141400;216900;240100;348500;279800;179200;282100;218600;243100;262000;240600;257500;328300;399700;415700;401700;326000;179000;222600;184800;150100;375200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5300;'142;Asia;1871;Other industrial roundwood;5622;Import value;1000 USD;7126;7258;5986;5775;4350;3774;4074;6683;9766;12648;18482;17624;13128;18747;30023;41076;62127;49581;60134;79002;104120;96189;98822;71964;28944;37498;36184;33353;37327;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5300;'142;Asia;1871;Other industrial roundwood;5916;Export quantity;m3;14200;9100;6900;31800;32200;51000;30900;51900;44400;16400;17100;33200;7100;15500;40000;26100;48100;22100;14300;42300;63800;65000;71900;70800;66800;15000;6400;1800;1800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5300;'142;Asia;1871;Other industrial roundwood;5922;Export value;1000 USD;600;425;318;362;592;1261;569;841;923;673;829;669;235;435;2845;693;1722;2227;1055;2120;3228;3022;4305;4092;3334;2412;1662;293;293;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5300;'142;Asia;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;12687000;10038000;11168000;12817100;13170300;13403400;13084200;13302200;13244200;12998200;13093800;13272000;13637000;14534000;15756000;16205000;17008000;17857000;18324000;18953500;20067508;21120508;21896500;23057508;24235508;26053500;26663508;26371508;26208508;26103508;25661500;25798500;27206600;27144600;26951600;28888600;28447400;28006559;26185125;25134087;24198346;24079686;24455257;24554669;24487861;24639609;15491410;14689570;14911406;14210395;13756431;13471465;9806908;11230940;9914952;10276941;11451055;12390947;12333907;12431153;12954349;12775495;12895676 -5300;'142;Asia;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;21660000;21561000;23570000;24683400;25648800;26632800;24270000;24599200;24882000;25216200;25642000;25546000;25454000;25660000;26583000;27266000;28051000;28804700;29718500;30073500;30901500;31811500;32584500;33635500;34461500;35660500;36410500;32859500;33126500;35506500;35278500;36456500;38060600;38415800;38845600;32271700;32588000;30717770;29559862;30063565;31048693;30620053;31274019;30971464;32035561;31784546;46264644;56667687;63820849;73476851;77185019;80476971;59109475;69998880;51588336;55859595;55786338;60048584;59906764;59845450;60177457;60833523;61225903 -5300;'142;Asia;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;175700;180400;159800;143000;114300;104400;113500;141400;216900;240100;348500;279800;179200;282100;218600;243100;262000;240600;257500;328300;399700;415700;401700;326000;179000;222600;184800;150100;375200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5300;'142;Asia;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;7126;7258;5986;5775;4350;3774;4074;6683;9766;12648;18482;17624;13128;18747;30023;41076;62127;49581;60134;79002;104120;96189;98822;71964;28944;37498;36184;33353;37327;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5300;'142;Asia;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;14200;9100;6900;31800;32200;51000;30900;51900;44400;16400;17100;33200;7100;15500;40000;26100;48100;22100;14300;42300;63800;65000;71900;70800;66800;15000;6400;1800;1800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5300;'142;Asia;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;600;425;318;362;592;1261;569;841;923;673;829;669;235;435;2845;693;1722;2227;1055;2120;3228;3022;4305;4092;3334;2412;1662;293;293;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5300;'142;Asia;1630;Wood charcoal;5510;Production;t;3843479;3904520;3965806;3976887;4044672;4120729;4176737;4258966;4314821;4382518;4442599;4562698;4622032;4767434;4840795;5005319;4999126;5028860;5174420;5289700;5360752;5376126;5359215;5393260;5346647;5431684;5429707;5513555;5695627;5668481;5989475;5975712;6027524;6092254;6101055;6098482;6034917;6002633;6558860;6540188;6572978;7731303;7889945;7870097;8009474;8211506;8600663;8694308;8586783;8538741;8755658;8950101;9009080;9051019;9053708;9039765;9054119;9058311;9080941;8915288;8724002;8969502;10033688 -5300;'142;Asia;1630;Wood charcoal;5610;Import quantity;t;161400;158400;144800;139200;153400;120500;96900;103700;112900;114700;120600;121100;158700;124700;120100;114200;120800;108700;106100;122700;129500;181100;180400;199100;206600;213400;225800;196800;243300;224800;125600;263641;240186;229007;257844;293887;314323;326399;357718;435603;447212;460408;514644;501362;596853;651115;586498;797788;821772.2;910058;1033295;1099672;1193937;1282481;1209545;1151370;1172012;1529597;1579313;1293396;1307977.88;1725525;1744817 -5300;'142;Asia;1630;Wood charcoal;5622;Import value;1000 USD;5961;5005;4943;4834;5604;4397;4596;4727;5744;5270;5705;6420;10431;10640;9748;9738;10838;11156;12918;18858;18084;24342;25262;30991;29771;30448;33872;31144;41304;38739;25208;63173;60357;65340;82805;100709;111708;98022;110781;132042;138161;137463;156522;161636;179027;197080;199446;259314;280006;309274;387390;454464;502267;551893;561155;568157;588017.19;730333;743617;645140;674371.53;957266;882959 -5300;'142;Asia;1630;Wood charcoal;5910;Export quantity;t;70300;79650;75900;85100;92500;76800;65600;61000;57000;67800;76800;93900;104100;129200;132500;148620;138653;121400;153300;197400;195400;182000;187600;192200;141500;141900;134400;132200;217300;165900;225000;332321;317752;332909;336790;365557;298502;276001;293489;398871;413683;434560;426657;393453;397168;402455;478486;598225;585002;616201;648976;730146;817452;944318;1016766;863919;963655;1311610;1292538;1155675;1202725.09;1584633;1796392 -5300;'142;Asia;1630;Wood charcoal;5922;Export value;1000 USD;1434;1426;1233;1511;1802;1588;1829;1602;1210;1343;1888;2418;2748;5130;6423;7696;7204;5996;10782;23972;23951;15129;16394;20269;14060;13542;13997;15517;22153;30883;33706;64247;67183;72367;82424;102516;86055;79787;78785;113421;114804;111307;114788;103497;97497;108978;117792;145937;169176;182402;233017;295761;364868;413101;517484;472262;523217.24;653689;635958;632004;727720.52;868791;934320 -5300;'142;Asia;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22507000;26595378;30650901;31390466;37865606;61291610;72669925;71967869;75507756;75265173;112213034;126101578;145896368;151648620;158349402;175793154;174073216;171688821;178203551;180647595;195787523;188535967;186263321;194732290;194455994;194233710 -5300;'142;Asia;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21810279;22229223;23702076;22826847;22485343;23186513;24427972;25545108;24533809;26666172;28256217;28312076;35440491;38565218;40352771;44402969;45710788;46887768;48621446;39107227;41810409;39345088;33881217;38701516.6;44559103;41601963 -5300;'142;Asia;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2163408;2083200;2085805;1924615;1819686;1935704;2228660;2459705;2511645;2926680;3617085;2777717;3645134;4345588;4383611;4308665;4397157;4566699;4593917;4413606.93;5023207;5182583;4255233;4480311.91;6805142;5846239 -5300;'142;Asia;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3791898;4200452;4813308;5107425;4823998;4161552;4685649;5304426;5039309;5846511;6744923;7363377;12805849;18113331;19512203;20987848;21620786;21678568;19709918;19780613;21130889;23246933;21882370;29950336.14;33050482;32663670 -5300;'142;Asia;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;185652;194385;220477;239016;256739;250310;309928;341048;313001;314668;422753;426544;798618;1210583;1385271;1652491;1598423;1684703;1517330;1473949.5;1624474;2075081;1781348;2145747.5;3376310;2903284 -5300;'142;Asia;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9895000;12893030;12573507;13045909;13805505;26481509;33960567;22533511;19100511;21784511;23181200;25320610;36623600;44133252;52012645;63253289;66655151;69227251;69236391;70828229;75319365;68509185;67179864;74252819;73873959;72924962 -5300;'142;Asia;1619;Wood chips and particles;5616;Import quantity;m3;;;;8300;320100;596400;1387000;3880000;4879000;5966000;4179200;5772100;8770000;10028000;8514600;9823200;14011700;13308500;15202600;16136400;12735700;11564300;11758100;12608800;12239200;12859900;14455900;17194500;14096100;15388000;17777700;16892789;17259577;19143067;22031997;21947561;22119250;21630943;22008964;23495584;22734541;22369450;23079809;24242134;25335194;24378944;26492007;27322623;27970436;34980309;38147384;39949175;43958297;45251529;46405734;47986690;38923394;41650534;39108717;33738436;38554262.92;44389418;41382867 -5300;'142;Asia;1619;Wood chips and particles;5622;Import value;1000 USD;;;;130;4134;7800;24188;52093;61977;80006;95999;143836;244260;375603;406254;454715;503640;526267;604317;962227;711288;636394;786809;665869;642818;716106;854115;1114092;1409827;1515296;1792939;1693046;1744336;1953215;2571735;2401341;2272454;2134891;2069288;2070938;1915809;1809151;1923733;2209877;2438734;2491490;2903225;3542134;2740715;3589252;4282538;4332498;4256797;4328164;4505151;4526674;4387629.93;4995305;5162252;4240762;4464431.04;6782254;5807419 -5300;'142;Asia;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;286500;612900;479600;737000;731000;962000;906000;585000;715000;498000;282400;531600;562000;597900;601200;438000;581500;506200;773700;1016600;920200;1285200;1485700;1470326;1973453;2726639;4218594;4127285;4123551;3697275;4055231;4667208;4977071;4670668;3935565;4486428;5101801;4827556;5590007;6454849;7092999;12463145;17801626;19104285;20485449;20947240;20803864;18700079;19046196;21041630;23154406;21810261;29877834.7;32964456;32588566 -5300;'142;Asia;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;3185;4945;5004;10745;12831;21319;20953;7155;8866;6696;4300;9569;11250;11958;12193;9446;12822;13455;25634;33101;32045;45892;62132;71742;90245;114923;273964;258011;224141;180075;187067;212738;225713;237670;225476;285899;308976;277264;283905;390654;389975;753423;1157308;1309982;1569462;1494633;1577158;1414796;1405717;1614763;2068188;1774160;2137896.81;3367427;2895336 -5300;'142;Asia;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;7700;6400;7300;7300;7300;7700;7300;6400;6300;6300000;6600000;6600000;6300000;6900000;6900000;7400000;7400000;7200000;7944000;9376000;10152000;16472000;11855700;12578700;12612000;13702348;18077394;18344557;24060101;34810101;38709358;49434358;56407245;53480662;89031834;100780968;109272768;107515368;106336757;112539865;107418065;102461570;108967160;109819366;120468158;120026782;119083457;120479471;120582035;121308748 -5300;'142;Asia;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;307400;459700;571800;612200;572100;290100;432000;451000;453200;467400;409400;285800;272700;269500;282100;229200;78600;9100;7200;8100;10300;13400;340314;209517;180218;173210;181452;132200;179336;220259;206492;92306;115893;106704;185838;209914;154865;174165;933594;341640;460182;417834;403596;444672;459259;482034;634756;183833;159875;236371;142781;147253.67;169685;219096 -5300;'142;Asia;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;2650;3907;5569;6284;7141;4730;7085;7044;7115;8130;9411;6541;6071;5610;5775;4930;2552;1775;1374;1706;2020;2284;14997;9868;8045;8341;9317;10957;28517;13912;14867;8806;10535;11971;18783;20971;20155;23455;74951;37002;55882;63050;51113;51868;68993;61548;67243;25977;27902;20331;14471;15880.87;22888;38820 -5300;'142;Asia;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;2300;1700;2900;2900;7200;3800;4800;2200;2000;2500;23000;29400;28500;104900;204382;132668;90920;101782;214741;190600;94623;145221;146100;130354;153330;225987;199221;202625;211753;256504;290074;270378;342704;311705;407918;502399;673546;874704;1009839;734417;89259;92527;72109;72501.43;86026;75104 -5300;'142;Asia;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;116;108;203;203;731;219;302;188;142;347;1493;2242;1861;5190;12918;9344;5099;5820;12594;9881;5577;7318;7739;13303;19069;24834;24029;32072;35737;30763;32099;36569;45195;53275;75289;83029;103790;107545;102534;68232.5;9711;6893;7188;7850.69;8883;7948 -5300;'142;Asia;1605;Sawdust (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27676;33872 -5300;'142;Asia;1605;Sawdust (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8629;12605 -5300;'142;Asia;1605;Sawdust (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1700;5374 -5300;'142;Asia;1605;Sawdust (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;292;954 -5300;'142;Asia;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4124300;4060903;4428148;4732156;4993656;8107876;9443856 -5300;'142;Asia;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;925;1310;1616;5563;4889;4835 -5300;'142;Asia;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;54;111;181;372;292;319 -5300;'142;Asia;1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;776;976;8176;7077;6466 -5300;'142;Asia;1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;13;15;545;461;446 -5300;'142;Asia;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;378600;749200;1881200;2146500;2740800;3844848;5924579;5890877;6049676;6795676;8768476;8397476 -5300;'142;Asia;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;209899;585451;1989013;1788495;2229724;3255633;4831276;5017639;5461755;6889721.38;8860832;10214054 -5300;'142;Asia;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41816;103880;360804;244416;270631;425401.74;779346;711985;743066;1077525.07;1740705;1964100 -5300;'142;Asia;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;154914;426141;1439848;1356351;1920962;2673566;4589346;4413700;4490861;4828817.7;7020040.22;6527111.82 -5300;'142;Asia;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20204;87528;242222;181500;207311;318490.02;614445;507101;531929;607528.97;1149760.99;819597.8 -5300;'142;Asia;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;304300;620100;1721100;2041200;2585200;3519100;5579100;5515500;5674300;6420300;8393100;8022100 -5300;'142;Asia;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;204711;579168;1970741;1744132;2168824;3010223;4567024;4681280;5083932;6531642.11;8542148;9696666 -5300;'142;Asia;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39898;100841;354404;230349;250573;379590.02;727466;658409;682852;1011907.9;1657200;1847659 -5300;'142;Asia;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90552;305301;1304645;1265942;1781699;2380457;4313934;4137697;4252827;4501900.84;6745440.82;6220237.82 -5300;'142;Asia;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13126;45710;198904;141339;163261;256963;537713;438536;463515;526653.79;1078898.76;760228.76 -5300;'142;Asia;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74300;129100;160100;105300;155600;325748;345479;375377;375376;375376;375376;375376 -5300;'142;Asia;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5188;6283;18272;44363;60900;245410;264252;336359;377823;358079.27;318684;517388 -5300;'142;Asia;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1918;3039;6400;14067;20058;45811.72;51880;53576;60214;65617.17;83505;116441 -5300;'142;Asia;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64362;120840;135203;90409;139263;293109;275412;276003;238034;326916.86;274599.4;306874 -5300;'142;Asia;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7078;41818;43318;40161;44050;61527.02;76732;68565;68414;80875.18;70862.22;59369.04 -5300;'142;Asia;1872;Sawnwood;5516;Production;m3;49722516;49493204;53660500;58252316;59837612;63718804;68294604;71757108;74940200;77003708;76897604;80934200;83296408;80640608;78081216;84662108;87150504;93992604;94068904;94807812;91140808;95478404;95969596;97249996;99890304;100938604;105701804;107998404;107880904;102513208;97818738;94954260;99350760;95795200;94168100;96448300;87113700;79154590;77092950;67931740;69034360;72194220;75752659;80277953;83407455;97455350;99596317;98090657;99734399;103348771;111194609;122090228;130547941;135655311;141778779;146208761;154974239;148848570;132726375;141406369;146700978;122897211;121700352 -5300;'142;Asia;1872;Sawnwood;5616;Import quantity;m3;1520900;1720800;1860750;2211450;2250550;2561200;3329700;4231100;3804550;4700950;3782350;4368450;6103050;6353500;5495950;7483150;8438900;8550000;10469300;10897250;9072650;10343150;10375150;10326350;10055468;9709354;12748047;14429978;16968586;15710484;16479818;18651924;20985305;20776824;22380384;23874547;23526666;16514417;20014358;23489521;23440555;25485375;26670987;30329203;29680854;30001614;31373140;29618893;30529483;38606583;48615402;47448008;52513776;52103288;54670540;60667147;66131250;65305885;66575036;61036274;55548809;51858224;51081781 -5300;'142;Asia;1872;Sawnwood;5622;Import value;1000 USD;85047;95005;92024;112139;113190;132039;163704;210446;218154;276565;224153;299429;569659;724644;643746;944436;1163684;1249473;1961525;2280995;1732644;1897052;1801563;1803059;1747704;1904144;2945752;3566141;4329703;4258346;4589176;5854184;6762056;7284067;8270557;8136132;7781214;4310348;5422538;6408310;5900667;5894445;6333849;7241708;7328253;7787270;8758447;8693919.1;7720495;10719917;13886561;13705157;16000982;16723314;15245918;15392224;17908633.19;19010827;16950831;15036398;17028601;17432413;13881241 -5300;'142;Asia;1872;Sawnwood;5916;Export quantity;m3;1405950;1365700;1498200;1876650;1918300;2009400;2030500;2501600;2707800;2939000;3033500;3760100;4943700;4328100;4000600;6271574;6317300;6310200;8173300;7306700;6093700;6408850;7479050;6995850;6793350;7502130;8604992;9784108;10554671;8095522;8361227;9125281;8946476;7393916;7010814;6555391;5349027;4722516;5348346;7156291;8392139;9851345;11039057;11591647;9756087;8138251;7104912;6605721;6423039;7907496;7553202;7328662;8107831;8609377;9116266;9280521;10007105;9334855;8056269;7241133;7820857;7640239;8441302 -5300;'142;Asia;1872;Sawnwood;5922;Export value;1000 USD;80468;78624;87760;107302;112245;112689;117640;142512;167925;182334;191698;263652;528062;501204;440691;776291;809290;912847;1614615;1572676;1113612;1148366;1401402;1270737;1168806;1494437;1680533;2031638;2716584;1929292;2173520;2552832;3045607;2824190;2757518;2527065;2039528;1387411;1714233;2063066;2441555;2426474;2733617;3084764;2660249;2663345;2742354;2752251;2262974.3;2811866;2990585.1;2967575;3733088;4205320;4089762;3719127;3999317.84;3728511;3007215;2481483;2805854;2805533;2686436 -5300;'142;Asia;1632;Sawnwood, coniferous;5516;Production;m3;31349666;30846254;33551350;35426966;37230262;39483604;42220704;44220708;45802600;46276008;45475504;46783500;47208508;45041008;42880016;46482508;50133204;53110054;52016454;51450362;48841258;50178054;48712046;49746846;51126554;52465354;53706754;55262354;53763804;49776308;45089508;43472500;46657900;47695900;46250500;47284900;40967200;34968150;35244451;29368510;28301360;28115070;29264203;29321680;29820028;32790743;32966119;31674849;31256542;31901230;35010827;38922789;43699456;47413231;50550379;52593099;56495590;55330500;47984364;52475183;54275876;43345065;42389372 -5300;'142;Asia;1632;Sawnwood, coniferous;5616;Import quantity;m3;1306500;1452700;1566000;1678800;1641200;1984350;2602050;3220550;2871900;3722150;2762900;3086750;4256250;4343600;4003050;5351350;5804050;5808900;7106550;7699050;6007550;6944150;6728850;6614950;6307618;5851141;7358664;8035004;8871326;9069136;9631136;10553290;12442597;12255446;13237273;13994237;15050760;10683108;13156132;13731398;13206022;13872370;15760743;18767840;18540778;19952160;22005738;21549964;22889710;28671014;37491684;36521175;40835665;37769930;40560760;44973173;47967085;47864462;51162460;46528741;40897407;37501973;35976174 -5300;'142;Asia;1632;Sawnwood, coniferous;5622;Import value;1000 USD;70276;76783;74170;85511;84802;100970;125317;166701;166731;220510;163594;211339;428707;504634;480477;689015;827671;865180;1371271;1641003;1149679;1264598;1126311;1081192;1011955;1052808;1608552;1958227;2336915;2386071;2482120;3426048;3755616;4035364;4537710;4505679;4484251;2531084;3051843;3380003;2942012;2842020;3314271;3911846;3863510;4251821;5021759;5125852;4731853;6558567;8872608;8490435;10193694;9393866;8389071;8732856;9935215.69;10765913;10117874;9065365;10965890;11024001;8273864 -5300;'142;Asia;1632;Sawnwood, coniferous;5916;Export quantity;m3;128800;145550;162850;149900;168900;232200;200350;181650;165750;217150;257400;296100;297550;341100;391550;477187;740100;642750;762300;682600;440900;371500;340150;356400;386050;347850;531249;499288;541145;525371;812026;448400;426921;552777;702384;551075;579588;467070;285824;684048;822197;611726;633865;644365;787721;616070;614335;543548;468224;512847;461561;511153;582008;506636;505937;468745;422354;743442;696217;556023;840881;662943;437364 -5300;'142;Asia;1632;Sawnwood, coniferous;5922;Export value;1000 USD;6414;7453;9027;9781;11880;15405;17393;16914;19715;27376;36844;47003;42111;47856;60080;69502;86184;108386;166470;146585;100025;91727;80586;88943;82561;77172;125403;142191;190487;164411;183163;144100;171664;192798;245087;180502;182221;105006;89549;147023;168458;155074;178242;199480;214377;215642;234172;245297;216903.3;228653;226832;237631;253406;246441;215065;201194;185883.97;221869;220531;196118;295731;268179;185301 -5300;'142;Asia;1633;Sawnwood, non-coniferous;5516;Production;m3;18372850;18646950;20109150;22825350;22607350;24235200;26073900;27536400;29137600;30727700;31422100;34150700;36087900;35599600;35201200;38179600;37017300;40882550;42052450;43357450;42299550;45300350;47257550;47503150;48763750;48473250;51995050;52736050;54117100;52736900;52729230;51481760;52692860;48099300;47917600;49163400;46146500;44186440;41848499;38563230;40733000;44079150;46488456;50956273;53587427;64664607;66630198;66415808;68477857;71447541;76183782;83167439;86848485;88242080;91228400;93615662;98478649;93518070;84742011;88931186;92425102;79552146;79310980 -5300;'142;Asia;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;214400;268100;294750;532650;609350;576850;727650;1010550;932650;978800;1019450;1281700;1846800;2009900;1492900;2131800;2634850;2741100;3362750;3198200;3065100;3399000;3646300;3711400;3747850;3858213;5389383;6394974;8097260;6641348;6848682;8098634;8542708;8521378;9143111;9880310;8475906;5831309;6858226;9758123;10234533;11613005;10910244;11561363;11140076;10049454;9367402;8068929;7639773;9935569;11123718;10926833;11678111;14333358;14109780;15693974;18164165;17441423;15412576;14507533;14651402;14356251;15105607 -5300;'142;Asia;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;14771;18222;17854;26628;28388;31069;38387;43745;51423;56055;60559;88090;140952;220010;163269;255421;336013;384293;590254;639992;582965;632454;675252;721867;735749;851336;1337200;1607914;1992788;1872275;2107056;2428136;3006440;3248703;3732847;3630453;3296963;1779264;2370695;3028307;2958655;3052425;3019578;3329862;3464743;3535449;3736688;3568067.1;2988642;4161350;5013953;5214722;5807288;7329448;6856847;6659368;7973417.49;8244914;6832957;5971033;6062711;6408412;5607377 -5300;'142;Asia;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;1277150;1220150;1335350;1726750;1749400;1777200;1830150;2319950;2542050;2721850;2776100;3464000;4646150;3987000;3609050;5794387;5577200;5667450;7411000;6624100;5652800;6037350;7138900;6639450;6407300;7154280;8073743;9284820;10013526;7570151;7549201;8676881;8519555;6841139;6308430;6004316;4769439;4255446;5062522;6472243;7569942;9239619;10405192;10947282;8968366;7522181;6490577;6062173;5954815;7394649;7091641;6817509;7525823;8102741;8610329;8811776;9584751;8591413;7360052;6685110;6979976;6977296;8003938 -5300;'142;Asia;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;74054;71171;78733;97521;100365;97284;100247;125598;148210;154958;154854;216649;485951;453348;380611;706789;723106;804461;1448145;1426091;1013587;1056639;1320816;1181794;1086245;1417265;1555130;1889447;2526097;1764881;1990357;2408732;2873943;2631392;2512431;2346563;1857307;1282405;1624684;1916043;2273097;2271400;2555375;2885284;2445872;2447703;2508182;2506954;2046071;2583213;2763753.1;2729944;3479682;3958879;3874697;3517933;3813433.87;3506642;2786684;2285365;2510123;2537354;2501135 -5300;'142;Asia;1634;Veneer sheets;5516;Production;m3;70600;116700;115200;241600;302100;430500;611400;540600;503600;825400;892600;919600;887000;932300;871600;897806;953704;981004;1023104;1054404;1096104;1146904;1256904;1303804;1254104;1127504;1171204;1004304;1005304;1170504;1442904;1873304;2739904;2608204;2347600;2417100;1899100;2155400;2379500;2907000;2708000;3172700;5642700;5530000;5664500;5680100;5854000;6144400;6071388;6084571;6267379;6341511;6588680;6910077;6911245;7170383;6917056;7491268;7724231;7101514;7941225;7869579;7925091 -5300;'142;Asia;1634;Veneer sheets;5616;Import quantity;m3;4477;2767;2434;10341;41120;35400;44600;56100;61600;86700;129500;195700;216700;266000;312600;268600;250500;308500;337500;313700;414400;612700;619800;604100;533800;388046;543800;656100;689388;816600;955200;1336273;1421401;1623377;1672183;1312325;1819887;1472064;1123675;1588172;1373928;1469816;1242525;1109595;1047064;974409;1034626;929300;830849;1006690;1222343;1415881;1753225;2308869;2364239;2418016;2241852;2589654;3050496;3160569;5350123;4267802;4267083 -5300;'142;Asia;1634;Veneer sheets;5622;Import value;1000 USD;1312;1028;772;1388;3993;3305;3213;4921;6162;7174;8061;12930;24422;33161;44649;50202;47552;74652;95145;93014;118963;149122;144030;131953;117031;98386;144508;180371;217385;242554;321020;388913;422198;605945;631141;668206;787275;522469;527408;688591;538335;556929;556066;643484;649775;683559;800010;788169;610354;777531;934268;954973;946186;1094037;1110782;1157977;1201211.82;1373825;1452127;1346202;1812001;1737502;1646605 -5300;'142;Asia;1634;Veneer sheets;5916;Export quantity;m3;43000;71000;89800;129800;145500;202300;206000;260100;224500;219600;338500;496100;429500;547000;308700;265900;295600;286500;236500;253900;257100;287300;845100;831800;673300;668859;676880;434360;436128;506778;592000;893736;885843;820760;818572;882305;1059715;1035170;1119030;1080259;794787;987701;713691;667371;662933;626798;630464;757913;626567;754707;802149;992580;1248484;1776787;1884713;1730777;1511733;1627916;1185682;1430653;2761129;2249550;2193731 -5300;'142;Asia;1634;Veneer sheets;5922;Export value;1000 USD;3511;5898;7449;8985;10865;13854;11898;18432;16809;13670;17363;31825;43300;51142;28927;38293;44770;44914;63287;72085;65198;67341;173557;192030;153229;113247;124017;138340;131928;164562;190170;297196;364443;388799;379400;377824;439801;362980;402500;345363;261299;361875;357766;391728;407149;458939;504629;624710;506896;645083;605770;623563;620830;737908;857041;850696;824929.73;903901;879910;828767;1235336;1177073;1125991 -5300;'142;Asia;1873;Wood-based panels;5516;Production;m3;2440100;2944100;3570500;4167200;4577400;5790217;6752645;8245064;9965979;11876549;12669832;14141715;15909311;13516919;12766399;15015785;16005727;17608027;18967227;17970627;17513127;18036527;19892567;20068827;20860327;22529527;24587327;26559027;26626727;25770327;27904827;30479900;32581200;33932700;41894500;39189500;44251700;35216700;39601300;45863320;49898000;61620270;78572135;89915171;98457713;107591327;121830554;125679212;136772896;151496937;167014850;178499191;198067478;197899375;196090980;201721194;198539361;198242850;206183799;207606210;215065996;216352091;227168010 -5300;'142;Asia;1873;Wood-based panels;5616;Import quantity;m3;93030;111262;133052;168661;175863;246851;252843;235425;336589;772532;429339;663655;2070455;1379072;916988;1009306;1082237;1204500;1447200;1692100;2057900;2113300;1969200;2901600;2944700;3238042;5720123;6499327;8535269;9257151;9920739;11385089;12891928;13876245;15176453;15838148;15777564;12847086;14852965;17149286;16461560;18551513;18111601;21428260;20595569;21167158;20842891;19148210;16894228;19328461.18;21781152;23544032;23649155;23612380;23709251;24907427;27612031;27122427;26889517;25322901;28123333.66;25857522.05;25429109.05 -5300;'142;Asia;1873;Wood-based panels;5622;Import value;1000 USD;14141;14644;16534;22156;23066;29148;30752;31085;41165;70979;51776;81580;283220;230831;176637;252001;290982;341232;497803;614821;761289;754710;642710;759346;722721;787380;1516238;2050557;2684082;3085916;3217333;3749012;5202706;5660661;5853835;6221872;5939379;3669546;4385655;4771045;4422970;4688366;4705096;5945482;5978757;6826783;7478084;7780561;6520919;7796155.78;9721714;10481890;10477824;11022841;10033408;9652149;10157931.56;10640393;9658386;8736791;10753728;11524467.9;10051858.9 -5300;'142;Asia;1873;Wood-based panels;5916;Export quantity;m3;517300;591100;679262;922600;1033419;1550623;1579316;2290991;2471923;2884093;3224751;3673783;4021551;2792973;3165792;4083793;4190670;4595400;4243300;3765600;4503000;4207700;5052100;5501000;6170000;6907983;8755867;9389178;11017200;11565802;11860925;13422916;13953623;13859490;14659284;15437006;15148608;14213271;13033688;12536884;14753936;15113339;12406280;17881406;20732755;25024387;25885762;22834303;20230217;23090976;25579757;26392532;26958885;27442856.29;27637556.05;28325649;30049082;30138870;27777810;26967928;34304482.63;32757434.48;33637538.48 -5300;'142;Asia;1873;Wood-based panels;5922;Export value;1000 USD;81499;101552;109996;137763;143404;174830;189182;269679;302830;326588;399954;528610;796883;596229;570566;854346;989941;1166026;1453496;1357872;1493266;1273207;1487065;1419207;1805590;1800860;2795875;3254365;3767729;3824624;4281461;4543599;5988443;5948697;6198153;6348710;5983763;3825388;3950300;4053314;3819835;4015085;4164934;5454090;6187925;8320484;10062677;9764283;7892285;9744352;11537719;11950526;12376147;13867004;12984482.05;12234012;11970452.22;13171157;11057687;10596891;14918733.98;16056750.09;13354332.56 -5300;'142;Asia;1640;Plywood and LVL;5516;Production;m3;2037600;2461800;2964000;3429100;3829300;4600400;5556300;6927600;8472200;10303000;11038600;12296700;13670400;11486800;10658500;12548200;13248700;14678400;15524200;14459300;14174100;14652100;16258100;16084100;16502400;17432400;19153100;20535700;20596700;19911300;21535800;22534900;23074600;23797300;28514800;26067800;28816100;22022700;24847300;28610120;29974100;38932100;49101440;51364000;55106948;57503780;67589524;66587712;69453796;75432637;82360050;85326882;91776578;86882875;84026080;82018571;80328884;77863080;79807913;82033550;82487743;83725150;83056689 -5300;'142;Asia;1640;Plywood and LVL;5616;Import quantity;m3;62830;82019;93000;124021;119863;151421;168000;166000;243200;681400;347000;559650;1880200;1207500;724100;793577;883337;992000;1176800;1335700;1740700;1797200;1654400;2571300;2675300;2887765;5039898;5415703;7490210;7808301;8334797;9336344;10131425;10688541;11487393;11672316;10553508;8134625;9318927;9533313;9164648;9769539;9152140;10081355;9530263;10439038;9552038;8896659;7784872;9264576;10402414;11300693;11453215;11002838;10694346;11572542;12765046;12579729;11537343;10772390;12924148;11627684;11222093 -5300;'142;Asia;1640;Plywood and LVL;5622;Import value;1000 USD;10295;10914;11737;15939;16305;20690;23071;24355;34397;62472;43943;71957;262524;206700;149109;211384;254098;299125;442150;536639;684449;673419;564432;682056;659325;713057;1399956;1850467;2463186;2720511;2818472;3227779;4445942;4790077;4918011;5206629;4781028;2735682;3341072;3423046;3041141;3138860;3045934;3735154;3668212;4411678;4347771;4650733;3693695;4424534;5711363;6257593;6384176;6904296;6051703;5815759;5993200.65;6359046;5516047;4978705;6015845;6513025;5582839 -5300;'142;Asia;1640;Plywood and LVL;5916;Export quantity;m3;516000;588600;676562;913300;1021219;1540846;1571846;2277100;2456100;2857400;3194800;3629700;3965409;2733200;3115800;4027900;4121505;4515100;4159000;3684300;4389600;4098900;4930500;5197800;6001500;6656424;8432780;9098301;10691725;11214307;11442174;12880546;13055148;12826112;13498401;14108753;13283196;11686277;10128965;9687859;11232235;11351614;8509570;13074079;13862098;16903849;17611998;14340598;12702005;14429990;15802023;16169381;16806337;16057787;16766628;16896818;17696155;17331651;14994089;14696588;18675426;18293666;17507966 -5300;'142;Asia;1640;Plywood and LVL;5922;Export value;1000 USD;81369;101270;109716;136877;142651;173912;188435;268365;301298;323948;396690;523233;789356;586653;563871;845250;976866;1150640;1434778;1336008;1472917;1245232;1457084;1387827;1777591;1771176;2744211;3189697;3703662;3746062;4192411;4421028;5750406;5699944;5916775;6034546;5518931;3324046;3363931;3535481;3166326;3350031;3452041;4520476;4874734;6593388;7564461;7243568;5729289;6988350;8284235;8463089;8971044;10095341;9607383;9013628;8586020.17;9646392;7828792;7412415;10194689;11228479;8645533 -5300;'142;Asia;1607;Laminated Veneer Lumber (LVL);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;964000;951000 -5300;'142;Asia;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;536833;585579 -5300;'142;Asia;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;266303;238208 -5300;'142;Asia;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;674193;684574 -5300;'142;Asia;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;369820;295235 -5300;'142;Asia;1646;Particle board and OSB (1961-1994);5516;Production;m3;133800;175000;220300;278300;269600;334000;420100;488600;534900;603200;650400;835400;1103900;1057200;1192600;1467000;1662500;1740200;2070200;2057500;1919500;1739100;1873040;2245900;2411300;2626000;3049600;3260400;3253500;3231600;3592300;4715900;5569400;5789400;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5300;'142;Asia;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;3400;3100;4300;6440;16800;26600;28300;13200;35600;28300;17800;50900;112800;75900;116800;97600;115600;116400;165900;249600;209500;204000;214400;230100;166500;195025;380495;673261;726974;866147;905299;978122;1330349;1556000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5300;'142;Asia;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;573;467;574;705;1237;1587;1931;982;1615;1928;1811;4557;12758;11039;15606;16774;20680;21377;31870;51848;50382;53515;54668;52885;38112;45632;71269;120794;124308;159324;165560;191320;269324;320118;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5300;'142;Asia;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;1100;2000;1800;3200;7900;2200;2800;6400;7700;14800;18500;32500;33800;43100;36900;40000;40100;42600;45400;45700;57800;58600;69400;244300;104800;179919;230812;217790;275690;286970;301826;310670;538844;636556;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5300;'142;Asia;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;93;204;163;192;190;153;273;652;709;1450;1823;3793;3605;5170;3939;6020;7550;7575;10825;14520;11378;18244;19773;20985;17180;16879;33725;47004;48810;54588;55713;54655;95149;111980;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5300;'142;Asia;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9133500;8145400;8707800;7284900;7433500;8396100;9312700;9749800;11535020;15147900;15330220;17321020;17703660;20789800;22833600;21876200;22373700;23270100;29715400;32386700;32022700;38304423;40106377;42432958;43402310;42161458;47525803;50898640;59289700 -5300;'142;Asia;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1682241;1869025;2111215;1425608;1711974;2256329;2353261;2763349;2730000;4124413;3676613;3935387;3931576;4034050;3502923;3958924;4651247;4671118;4988483;5034007;4941354;5282820;6166400;6183419;6247149;6143541;6807212.98;6212566;6418745 -5300;'142;Asia;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;383041;442259;483624;307647;325545;410295;427104;456604;486279;692912;691379;770953;880646;962719;841233;996281;1215563;1161277;1165754;1200041;1106694;1129232;1313156.2;1317150;1274272;1208123;1716429.46;1813981;1564677 -5300;'142;Asia;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;671329;702102;681816;1153881;1128025;1279875;1226365;1155106;1191972;1741706;2370434;2714589;2648823;2768798;2586473;2784492;2851347;2903042;2833134;3384870;3234770;3724055;4212293;4566103;4473919;4334508;5359369.71;4525160.47;5067865.48 -5300;'142;Asia;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;127721;135956;130233;171292;165845;194630;177788;177214;179398;259365;309819;400273;466952;540572;421567;504127;576569;577876;560550;655115;608679;666929;776519.09;782552;733746;740218;1168680.52;1183435.09;1047718.56 -5300;'142;Asia;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;30000;190000;190000;225000;225000;275000;375000;850000;1725000;2035000;3485000;4035000;5845000;7215000;11615000 -5300;'142;Asia;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;215000;216683;328105;213208;342689;369224;536852;504021;552135;673131;624367;543493;643270;822419;782508;860329;950663;902061;1025764;1192228;1065077;1174025;1179940;1001876.26;902591.05;902960.05 -5300;'142;Asia;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55795;64071;68810;54330;75318;79837;147525;120288;147361;195147;203006;151327;204218;270788;240245;283901;304572;268900;263453;316333.47;326130;304123;303975;306358.11;326393.9;278228.9 -5300;'142;Asia;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5010;9030;14020;23000;26003;26458;13299;9803;12157;23160;25360;27584;33312;39237;44432;73072;134655;71277;137525;174038;228609;207097;246417;663885.44;255840;264504 -5300;'142;Asia;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1327;2310;3778;9208;9757;6541;3346;3232;2969;6066;8540;7612;8372;9381;10680;18280;33981;17182;28707;34698.5;56504;41196;52685;175449.17;67080;73057 -5300;'142;Asia;1874;Fibreboard;5516;Production;m3;268700;307300;386200;459800;478500;855817;776245;828864;958879;970349;980832;1009615;1135011;972919;915299;1000585;1094527;1189427;1372827;1453827;1419527;1645327;1761427;1738827;1946627;2471127;2384627;2762927;2776527;2627427;2776727;3229100;3937200;4346000;4246200;4976300;6727800;5909100;7320500;8857100;10611200;12938370;17935675;23403271;28020545;32766527;36537370;38301700;44455500;53998100;62091100;69677209;76350500;78354800;79667200;80548200;76379100;75911812;79488576;79376202;79207450;74513301;73206621 -5300;'142;Asia;1874;Fibreboard;5616;Import quantity;m3;26800;26143;35752;38200;39200;68830;56543;56225;57789;62832;64539;53105;77455;95672;76088;118129;83300;96100;104500;106800;107700;112100;100400;100200;102900;155252;299730;410363;318085;582703;680643;1070623;1430154;1631704;2006819;2296807;3112841;3071853;3605381;5031539;4730443;5675936;5860237;6685640;6884672;6240598;6686146;5593134;5062940;5461691.18;5905072;6789713;6347128;6624872;7171490;7026301;7488357;7294202;7931000;7227030;7390096.42;7114681;6885311 -5300;'142;Asia;1874;Fibreboard;5622;Import value;1000 USD;3273;3263;4223;5512;5524;6871;5750;5748;5153;6579;6022;5066;7938;13092;11922;23843;16204;20730;23783;26334;26458;27776;23610;24405;25284;28691;45013;79296;96588;206081;233301;329913;487440;550466;552783;572984;674727;570422;654967;868894;900395;1017584;1093046;1369891;1498878;1496791;2054520;1964103;1834664;2171122.78;2524000;2822775;2643993;2613932;2606111;2443705;2535241.23;2638067;2563944;2245988;2715095.43;2871068;2626114 -5300;'142;Asia;1874;Fibreboard;5916;Export quantity;m3;200;500;900;6100;4300;7577;4670;7491;8123;11893;11451;11583;22342;16673;13092;15893;29065;37700;38900;35600;55600;50200;52200;58900;63700;71640;92275;73087;49785;64525;116925;231700;359631;396822;489554;626151;1183596;1368103;1767668;1555130;2272336;2580616;2678280;3052322;4490420;5393792;5601781;5699547;4914155;5843182;6887150;7275677;7246342;7865544.29;7564881.05;7567251;7966596;8012507;8102705;7690415;9605801.49;9682768;10797203 -5300;'142;Asia;1874;Fibreboard;5922;Export value;1000 USD;37;78;117;694;563;765;474;662;823;1190;1441;1584;3922;4406;2756;3076;5525;7811;7893;7344;8971;9731;10208;10395;10819;12805;17939;17664;15257;23974;33337;67916;142888;136773;153657;178208;334599;328723;418214;319425;466513;478083;526954;670903;1000140;1323854;2025198;1971603;1733817;2243503;2667534;2898881;2826273;3082567;2751238.05;2524748;2573214.46;2685709;2453953;2391573;3379915.3;3577756;3588024 -5300;'142;Asia;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1830200;2008300;2096800;1716100;2719500;3426100;870900;968270;1289475;1343345;1800122;2387104;2505947;2135300;3512100;3967200;5642200;7117200;8606000;6649300;6688200;5877500;4104500;4041300;4316221;4268622;4420710;4421080;4414400 -5300;'142;Asia;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;281813;307400;359460;328752;390858;575428;545490;509302;589462;656670;864193;966919;1116390;860134;590792;726032;779143;890171;836330;799965;739556;640786;623297;552986;561102;537621;495030.03;501810;489465 -5300;'142;Asia;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121407;117042;137835;119644;130160;228477;210338;201266;248336;282713;371354;434345;552642;499942;323114;408166;480820;489339;494703;455298;413660;355902;329136.47;275951;254229;234649;290193.54;316686;275833 -5300;'142;Asia;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108800;105300;143627;159757;238156;266858;307790;295695;284690;433945;816056;1146748;743244;635596;378095;483628;466891;442641;413125;423090;338553;317142;372167;429224;462662;516117;721191.79;672898;606388 -5300;'142;Asia;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37245;32866;44845;41192;64627;66342;71620;77919;93648;175269;371640;559958;369790;358355;255268;271905;290228;264113;249383;250720;194767;171210;188819.34;226437;223943;258902;404927.32;432430;348178 -5300;'142;Asia;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1582000;2190000;3737000;3484000;3854000;4652000;8002300;10135100;14763200;19686026;24435523;28700523;32645523;35066500;40058500;49020000;55511000;61583109;66348600;70369600;71694100;73646800;71170700;70809685;74029398;74036201;73778956;69022628;67747628 -5300;'142;Asia;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1126620;1294026;1566144;1408199;1861324;3041654;3036755;4028020;4257195;5049668;4953040;4599747;4694246;3970103;3746546;3983944.18;4251783;5275329;4920876;5252400;5875631;5853035;6293434;6110473;6572230;6019590;6243868.12;6104115;6020102 -5300;'142;Asia;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;351125;366272;421532;330880;399010;520604;587977;709327;745798;975308;1002534;976767;1349844;1284591;1330415;1544958.78;1744344;2096210;1928587;1981788;2015798;1929164;2021998.15;2156742;2134605;1849533;2267751.69;2425438;2214391 -5300;'142;Asia;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;285000;433000;859918;1112971;1429651;1192882;1844393;2146748;2112471;2292230;3203633;3921019;4197991;4622544;3715974;4470786;5367153;5822029;5787612;6299873;6095362;6027837;6538731;6359579;6637466;6279994;7889299.6;7972194;9203424 -5300;'142;Asia;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104130;133410;262338;267315;333487;235895;375437;380063;394010;441772;550291;723731;1512690;1507863;1233155;1665741;2027185;2315298;2286268;2512048;2254950;2044143;2109949.33;2153023;2017042;1946981;2729802.4;2864613;2994332 -5300;'142;Asia;1650;Other fibreboard;5516;Production;m3;40400;44200;68600;88100;97000;406000;212200;233600;283600;310800;314000;325200;341600;272000;256600;298000;326600;302000;369000;375000;296000;327500;336000;338000;369000;896000;479000;553000;559000;601000;610800;615000;747000;757000;834000;778000;894000;709000;747000;779000;1738000;1835000;1883000;2373900;1784900;1678900;1385900;1099900;884900;1010900;937900;976900;1395900;1335900;1284900;1023900;1103900;1060827;1142957;1071379;1007784;1069593;1044593 -5300;'142;Asia;1650;Other fibreboard;5616;Import quantity;m3;700;900;1100;3200;4400;22500;17200;16000;17200;23600;30000;27200;41600;46200;44100;74600;55100;64400;73100;76200;77300;87100;74100;55800;56900;101075;241640;285718;94302;156437;172237;250795;349374;319892;598386;695381;1187237;1334902;1353199;1414457;1148198;1138614;1013580;979302;1067439;673932;875510;762897;725602;751715;874146;624213;589922;572507;556303;532480;571626;630743;797668;669819;651198.27;508756;375744 -5300;'142;Asia;1650;Other fibreboard;5622;Import value;1000 USD;197;191;330;640;827;1295;723;779;860;1529;1947;1415;3081;2664;4533;8369;7105;9688;11468;13162;14058;16620;12616;8935;10266;14600;32094;40374;21603;42839;55485;77859;103694;89687;80251;89670;115360;119898;125797;119813;102080;106991;98912;111870;124990;85679;152034;179570;181135;217998;298836;237226;220703;176846;176653;158639;184106.62;205374;175110;161806;157150.21;128944;135890 -5300;'142;Asia;1650;Other fibreboard;5916;Export quantity;m3;;;;600;700;2000;1200;1600;1600;2000;2400;2000;5600;3200;5200;5600;14800;19500;24900;23700;47000;39100;37400;40500;41400;43900;64100;55000;42800;56500;97400;97138;124838;94493;95754;87851;180051;95375;99861;95390;120153;138173;281119;326147;470731;326025;660546;441407;820086;888768;1053106;1011007;1045605;1142581.29;1130966.05;1222272;1055698;1223704;1002577;894304;995310.09;1037676;987391 -5300;'142;Asia;1650;Other fibreboard;5922;Export value;1000 USD;;;;143;167;144;86;91;72;110;155;119;388;214;384;443;1722;2717;4226;3933;6370;6599;6488;6369;6510;7707;11994;13231;10868;16677;23798;31426;36757;29058;12282;11932;27416;20216;20100;17188;19456;20101;39296;53862;78209;40165;142718;105385;245394;305857;350121;319470;290622;319799;301521.05;309395;274445.8;306249;212968;185690;245185.58;280713;245514 -5300;'142;Asia;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;228300;263100;317600;371700;381500;449817;564045;595264;675279;659549;666832;684415;793411;700919;658699;702585;767927;887427;1003827;1078827;1123527;1317827;1425427;1400827;1577627;1575127;1905627;2209927;2217527;2026427;2165927;2614100;3190200;3589000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5300;'142;Asia;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;26100;25243;34652;35000;34800;46330;39343;40225;40589;39232;34539;25905;35855;49472;31988;43529;28200;31700;31400;30600;30400;25000;26300;44400;46000;54177;58090;124645;223783;426266;508406;819828;1080780;1311812;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5300;'142;Asia;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;3076;3072;3893;4872;4697;5576;5027;4969;4293;5050;4075;3651;4857;10428;7389;15474;9099;11042;12315;13172;12400;11156;10994;15470;15018;14091;12919;38922;74985;163242;177816;252054;383746;460779;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5300;'142;Asia;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;200;500;900;5500;3600;5577;3470;5891;6523;9893;9051;9583;16742;13473;7892;10293;14265;18200;14000;11900;8600;11100;14800;18400;22300;27740;28175;18087;6985;8025;19525;134562;234793;302329;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5300;'142;Asia;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;37;78;117;551;396;621;388;571;751;1080;1286;1465;3534;4192;2372;2633;3803;5094;3667;3411;2601;3132;3720;4026;4309;5098;5945;4433;4389;7297;9539;36490;106131;107715;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5300;'142;Asia;1879;Total fibre furnish;5510;Production;t;8332700;8834500;9710400;10749000;11092700;12127300;13083200;14058100;15688100;18687400;18925300;19875400;22182700;21487000;20028200;22341300;23267200;24736400;27588209;27968509;27237609;27991609;30245100;32851400;36301800;39047800;43572800;47943800;50484800;53014200;55829045;58417576;61145753;67029256;75474317;66729635;73220957;71364517;74395323;80372810;80295499;87586660;90734524;94511909;99493047;107283099;116831550;123568667;123862959;133670048;138084230;136836993;136026017;143361802;142324343;143108526;147062366;144667065;147173155;150332583;164669698;167676118;169224082 -5300;'142;Asia;1879;Total fibre furnish;5610;Import quantity;t;38300;101000;312900;401700;372900;585400;650300;1116540;1140340;1527100;1403300;1726500;2260500;2736333;2122768;2523344;2782809;3625786;4098386;4807370;4452692;4679900;5919774;6335941;6625641;8309745;9342674;10370854;10783359;10687911;12717033;13066220;13153212;15099397;15512938;17099059;17618128;19605280;22124481;23448350;28081214;27866388;31428611;35633461;37580372;44181106;47803466;50382168;56727070;52525270;59276659;64276299.3;63873572;63734921;66643386;68920709;71120082;68684826;65209845;63842983;59030655.07;57399511.93;67642055 -5300;'142;Asia;1879;Total fibre furnish;5622;Import value;1000 USD;5324;12708;39310;55367;52553;83069;89638;153394;166852;230421;215340;248347;403148;734293;562737;637818;690007;882853;1226441;1727924;1575458;1523132;1744284;2013664;1820983;2305971;3262444;4233068;4772491;4296577;4319453;4346320;3564228;5280680;8089640;6264536;5711243;5470747;6203312;8780896;7225936;7071201;8509632;10408372;11057915;13000848;16296768;17895173;15642769;21439399;26360491;23805220;24219519;24517133;24475072;23354538;28555744.58;33281384;26962008;23142850;29641596.02;33693924.72;32089235 -5300;'142;Asia;1879;Total fibre furnish;5910;Export quantity;t;5100;9700;14300;17400;18700;21800;21000;20200;39400;179600;238900;308800;330200;462371;380071;580738;535598;514375;604369;635482;708422;630540;712505;688505;636680;1000143;868043;1014972;1162980;1278165;1285198;1308864;993575;1684228;2166909;2578483;3074372;3764654;2985099;4048639;5468022;5889031;6670410;6904538;8737222;9595471;9951499;9610180;10559116;11199949;12086535;12820785;13663213;13228666.45;12606642;13125917;13703972;14100998;12528740;12073095;11735168.03;10911426.17;12401769.78 -5300;'142;Asia;1879;Total fibre furnish;5922;Export value;1000 USD;600;1150;1700;2038;2219;2623;2599;2488;5128;12516;19362;23084;28714;142207;67573;77137;77278;66766;102451;121804;108690;96103;92339;99020;84857;126553;134082;217950;270581;285348;252281;270476;185058;402879;688428;772800;859083;1103468;889791;1399461;1087987;1214253;1440842;1413729;1901182;2271760;2536830;3165809;2307370;3688042;4250514;3845330;4282475;4105975;3995487;3919574;4933191.98;5747250;4714449;3828965;4858188.45;5405393.71;5144811.66 -5300;'142;Asia;1878;Pulp for paper;5510;Production;t;6544500;6799500;7307400;7861000;8246700;8936300;9604200;10452100;11473100;12837400;13085300;13302400;14227700;14225000;13248200;14283300;14593200;15247400;16594209;16341509;15330609;15420609;16432100;17477400;20767800;21926800;25311800;27300800;27789000;28609100;29647345;30780676;32599053;35706556;41427017;31911335;36570657;35250217;34818593;35935359;34892001;36592101;37416701;38227601;39500701;40705701;43284601;44117201;38659501;43208901;44567701;42166601;41207301;42922301;42281801;41797117;42899318;44589530;45179431;46131154;49917808;53011034;54894633 -5300;'142;Asia;1878;Pulp for paper;5610;Import quantity;t;38300;101000;312900;401700;372900;585400;650300;1116540;1140340;1238100;1137300;1406500;1718900;2025000;1485000;1670268;1825900;2514600;2690700;3215500;2923300;2967800;3901000;3947800;4111800;4831392;5192442;5706228;5721887;5346785;6257440;6979028;7641308;8872554;8933772;9850776;9876188;10202912;11158729;11096439;12525692;12956544;13620052;15481860;15814554;16456946;16601908;17498535;20887084;19087495;22515595;24545153.3;25317183;26129378;27582795;29781249;32375985;33376214;34848991;36575849;34443637.13;34608938.93;39718971 -5300;'142;Asia;1878;Pulp for paper;5622;Import value;1000 USD;5324;12708;39310;55367;52553;83069;89638;153394;166852;210046;197625;227623;355102;638799;494844;547181;580030;760166;1031393;1476824;1346170;1304059;1483764;1682681;1532036;1855496;2598848;3410232;3944693;3409330;3311420;3476983;2973326;4364116;6566348;5139499;4697238;4480275;5061523;6808930;5504830;5384146;6098864;7529911;7822390;9026739;10572889;12181900;10481904;13956512;16896924;15451094;16228091;16938546;17167768;16300245;19756571.26;25617745;21822341;18960365;23390698.05;27544753.72;27215224 -5300;'142;Asia;1878;Pulp for paper;5910;Export quantity;t;5100;9700;14300;17400;18700;21800;21000;20200;39400;52600;104900;114800;83200;247700;161300;179000;186248;138800;161100;150800;161300;154300;116500;77600;100000;151600;125300;185100;250200;281200;237600;240400;225970;294104;844715;1398756;1527288;2284393;1700784;1969571;2312808;2726284;2854768;2156645;2967618;3376659;3011278;3161279;2748659;3372817;3789624;3990779;5000447;4824320.45;4642822;4981698;5666899;5897244;6320703;6212253;6247642.55;5766556.17;6864663.78 -5300;'142;Asia;1878;Pulp for paper;5922;Export value;1000 USD;600;1150;1700;2038;2219;2623;2599;2488;5128;8384;15298;16246;17254;123681;56788;55450;54955;42189;70580;82822;73320;64483;49174;44292;44018;61233;74124;127214;166270;168908;130480;139492;100709;182971;454158;598513;682007;950322;771307;1145080;832726;930090;1029736;837182;1183267;1483520;1430496;1859356;1200097;2139827;2353121;2135533;2692902;2597949;2620689;2508141;3237980.68;4137196;3769997;2994431;3613901.42;4209121.71;4199308.66 -5300;'142;Asia;1875;Wood pulp;5510;Production;t;4910900;5080500;5539100;6014900;6244200;6837300;7425700;8176000;9089800;10343300;10481000;10859300;11794400;11732300;10336500;11359600;11430500;11577000;12503200;12345200;11291100;11333100;11866400;12385700;12898100;13173100;13719100;14515100;15498300;16139600;16630433;16500214;16517375;17606568;18641017;18606535;19755857;18170417;19975793;22996659;23114801;23316701;23442701;24006401;24292601;25234601;27663601;28573601;24368601;28246001;30282801;29566201;30952201;32580201;32560201;33702654;34826771;36405836;37927501;39701541;43584812;46683066;48432051 -5300;'142;Asia;1875;Wood pulp;5610;Import quantity;t;197700;265300;507200;560800;543763;769900;823700;1257040;1335340;1438800;1367700;1675700;1973500;2361700;1719200;1967600;2133400;2821200;3108500;3664300;3222900;3180100;4154600;4254300;4445500;5125507;5521655;6125403;6181554;5838937;6808340;7443041;8102540;9293005;9641494;10493590;10497519;10859140;11862615;11745227;13273464;13748104;14377239;16405144;16665833;17380224;17522036;18654982;22289548;20799832;24487993;26981975;28107717;29235922;30963465;33326353;36233354;37394614;39135009;41045023;39222629.34;39387541.41;45076424.48 -5300;'142;Asia;1875;Wood pulp;5622;Import value;1000 USD;34707;42637;72818;85436;85256;117811;123704;181871;204427;252179;245966;284882;410387;766034;597307;660227;715652;901638;1229476;1722983;1520397;1429569;1623532;1841303;1702218;1996734;2778883;3693982;4358316;3795154;3690593;3795661;3279488;4700086;7220957;5676020;5120353;4920281;5486025;7267398;6028076;5832966;6565007;8191612;8474817;9708990;11502607;13483444;11705725;16133444;19974851;18224061;19080841;19935933;20201273;19570130;23460376.51;29498855;25569236;21941561;27773251.45;32429095.8;32327579.07 -5300;'142;Asia;1875;Wood pulp;5910;Export quantity;t;7500;800;300;300;300;100;100;2200;15200;26100;82700;102600;74200;258300;167300;167600;180448;129100;148200;131000;143400;137700;107100;78200;86000;134900;102700;161900;218000;246800;209900;317702;293018;294641;844796;1378798;1501563;2284612;1694824;1956193;2288731;2708709;2826164;2137765;2921373;3366057;2954957;3112118;2672750;3239747;3629304;3848220;4854616;4769123.45;4641426;5026423;5846318;6071047;7265593;7741858;7697980.15;7483544.17;8485532.78 -5300;'142;Asia;1875;Wood pulp;5922;Export value;1000 USD;1268;9;47;47;47;6;81;356;2144;4132;12188;14205;14270;126062;59373;50856;52386;38238;59531;67062;59671;51404;38159;34668;28706;46346;54009;102399;137006;137728;101891;166757;114913;160733;426720;551391;635755;925185;742983;1108077;789728;886267;975331;786824;1105204;1421993;1363467;1743191;1089097;1925839;2034132;1919175;2500809;2478882;2492999;2431446;3242120;4181443;4154625;3623493;4494719.09;5317976.71;5114152.66 -5300;'142;Asia;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4839000;4842000;4790000;4691000;4447128;4418874;4378874 -5300;'142;Asia;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2759422;2629626;2644537;2781525;2854407.28;2539803;2416553 -5300;'142;Asia;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1453396.16;1640061;1379771;1306794;1518105.06;1653570;1452497 -5300;'142;Asia;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1306;6057;55494;37812;48862.93;69417.54;25022.54 -5300;'142;Asia;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;928;4088;38523;19599;28655.59;43420.77;14908.77 -5300;'142;Asia;1654;Mechanical wood pulp (1961-2016);5510;Production;t;1275600;1308500;1331900;1394100;1420800;1489300;1541600;1641800;1732700;1964100;1721600;1745400;1900200;1919200;1808000;1976800;2063700;2241000;2432000;2469000;2353000;2301000;2426000;2446000;2566000;2666000;2702000;2930000;3048000;3121500;3085200;2904300;2706000;2808000;2943000;2853000;2639000;2543000;2458000;2524000;2525000;2372700;2482000;2552400;2573400;2662267;2498400;2765400;2370400;2404000;2529000;2429000;2397000;2360000;2274000;2283000;;;;;;; -5300;'142;Asia;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;25700;38300;31300;31800;28400;36300;36100;52200;89200;95400;106500;138500;158200;277200;263500;280400;351900;354500;450800;478900;379700;406100;514300;632100;580800;737591;638839;683946;645965;677840;677640;575090;556706;591744;578904;753291;716440;950405;819568;870076;732167;658566;512306;559789;523622;531505;549476;542879;447800;497197;518532;415727;407991;331333;258146;234989;;;;;;; -5300;'142;Asia;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;3744;4700;4029;4532;4111;4193;5081;6610;12010;13610;17731;21605;26232;58553;52352;57556;68642;71521;108726;141475;110516;125417;151320;191795;170888;230484;222226;264002;299208;271672;263858;195129;179117;205843;264749;303542;261380;307972;266445;314722;240020;203314;176497;210799;199257;221251;253167;286759;188228;262876;272065;225867;223969;178566;119118;102224;;;;;;; -5300;'142;Asia;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14300;18600;3363;5200;4296;4230;738;1038;200;209;226;300;1968;624;3700;3701;4082;4054;4945;3380;1174;2029;2117;3078;1137.45;1196;2906;;;;;;; -5300;'142;Asia;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6657;8005;1605;1611;1333;1270;174;233;176;198;183;354;1112;382;1251;1226;1412;1422;1705;1098;706;909;1219;2787;991;694;898;;;;;;; -5300;'142;Asia;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;511000;608300;730100;845300;858300;991100;1129200;1373000;1626600;1935900;1851700;1878200;2021000;1856000;1472000;1530000;1366000;1188000;1127100;1037600;865500;710500;652800;690100;547100;504100;540100;522100;451100;457100;480100;462100;509000;495000;438000;492000;468000;281000;1552000;2125000;2171000;2184300;2373200;2374400;2399600;2309600;2580600;2569600;2526600;2541200;2604200;2596200;2595200;2598200;2576200;2619200;;;;;;; -5300;'142;Asia;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;600;1000;5400;4500;20900;4100;7000;36200;30600;34500;30600;32500;30500;31900;25300;21300;25800;17000;23300;18700;39100;95000;145100;152500;142700;224627;317336;400636;411545;497772;456104;374938;439115;467424;701499;875669;1145405;1325931;1367529;1580773;1528878;1606950;1761340;1950338;1997709;2089657;2079761;2171474;2327204;2377129;;;;;;; -5300;'142;Asia;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;107;180;1333;877;3772;775;1639;19076;15248;14970;14027;14478;13805;14107;9971;6511;7873;8014;10752;7457;14664;45425;72019;70040;59809;88708;101317;158808;251514;193241;168106;135703;176244;238216;292111;336781;479994;588909;590870;779750;829094;1040723;806128;1204293;1136317;1163318;1156294;1212560;1091316;995579;;;;;;; -5300;'142;Asia;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;520;374;998;0;0;0;1000;1017;0;0;30;2045;3457;2148;2844;3164;9075;6163;9347;37543;9257;9228;2703;1916;1517;;;;;;; -5300;'142;Asia;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;192;143;408;0;0;0;475;399;263;0;19;875;1525;670;1683;1883;5163;3984;5178;19692;6863;5867;2576;1700;1218;;;;;;; -5300;'142;Asia;1656;Chemical wood pulp;5510;Production;t;2723100;2775900;3064200;3320500;3495800;3870400;4222900;4646200;5188500;5889300;6313800;6636200;7288600;7388100;6655500;7392800;7531800;7685000;8476600;8385600;7662600;7903600;8343600;8813600;9195000;9474000;9946000;10526000;11438200;11975300;12479933;12525614;12625375;13639568;14589017;14821535;16252857;14990417;15615793;17997659;18070801;18412701;18238501;18730601;18970601;19791734;22128601;22779601;19020601;22299801;24018601;23414501;24664501;26500501;26602501;26998001;28095001;29650001;30558001;32130041;35937184;39018692;40798032 -5300;'142;Asia;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;1003740;1011740;1104400;986700;1234300;1541300;1696400;1180100;1327000;1418800;2094400;2177300;2661500;2479400;2451500;3237200;3163600;3397400;3921000;4391100;4851400;4829300;4426500;5338100;6042324;6611008;7699419;7768685;8474888;8600758;8799120;9819319;9615280;10951409;11331704;11829498;13447941;13737312;14117139;14291688;15182039;18517288;16456323;19803614;21816880;22628735;23372995;24752416;26997092;29383382;30510458;31998310;33587835;31371999.33;31866049.93;37053941 -5300;'142;Asia;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;138074;148039;189214;171333;200764;321868;551405;420508;461700;483519;657050;888645;1289683;1197499;1120735;1260497;1403668;1288169;1529895;2280651;3028771;3491162;2988569;2897135;3086866;2588502;3872430;5877865;4519494;4166171;3950846;4532133;6125654;4851168;4752586;5324251;6601024;6883498;7833625;9280365;10644315;9319810;12240179;15158594;13764459;14592002;15271107;15683252;14985443;18025102.06;23673391;20178155;17410907;21561145.22;25515907.72;25419177 -5300;'142;Asia;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;2100;14200;25800;81200;101200;72800;243000;157000;166600;173848;126400;145200;129900;142100;135200;105100;69600;80800;133800;101600;160100;217800;231500;189300;215210;198368;263328;808123;1373358;1498227;2257416;1661680;1927671;2274107;2679042;2795550;2099549;2871274;3235205;2804983;2966663;2570641;3171857;3527722;3804622;4812840;4631625;4466617;4827559;5495457;5697461;6109017;6016764;6022542.7;5522355.63;6667776.24 -5300;'142;Asia;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;278;1999;4044;11824;13857;13820;118300;53963;50364;49869;37103;58244;66318;58853;49969;37296;31004;26636;45846;53413;101159;136811;130453;92703;100104;63458;141977;404416;547646;634003;907489;723299;1088050;780998;871509;957937;759892;1072933;1336558;1240102;1623026;1024102;1860890;1935090;1876975;2465948;2359739;2350450;2260765;2964169;3860658;3442254;2691053;3246062.39;3767418.93;3861073.89 -5300;'142;Asia;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;873900;862900;991300;1094100;1213200;1332000;1462000;1631400;1791500;1980900;2185700;2334900;2677800;2857600;2394000;2677000;2679000;2606000;2792000;2577000;2093000;2076000;2151000;2240000;2994000;2961000;3053000;3148000;3073000;3015000;3084000;3089000;3083000;3385000;3881000;3499000;4052000;3898000;3889000;3250000;3224000;3245000;3238300;3228600;3208600;3019211;2989300;2748300;2472300;2631000;2601300;2443300;2584300;2630300;2585300;2588300;2617300;2569300;2539300;2525300;2588300;2660300;2566300 -5300;'142;Asia;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;201300;170000;162300;211900;271500;322700;370500;265300;339000;391400;439200;362500;490700;472300;425700;596700;583100;622800;707000;792000;813000;635200;609400;662300;623123;547083;805864;755332;773600;858480;734918;948741;919355;1242379;1341980;1307074;1234080;1397859;1369868;1419780;1123097;1231970;1078900;1215664;1265286;1166500;1192379;1177026;1309803;1316197;1473048;1521726;1667474;1831230.59;2316636.77;1887274 -5300;'142;Asia;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;22930;21474;26165;31616;39651;58435;108872;76445;89610;101932;112010;126833;197450;183724;145673;198106;218195;201752;228914;355954;435227;332998;313290;353308;274923;191949;338610;523993;394864;360735;283860;366599;481000;472612;497350;492792;513710;613333;671237;844707;617812;581489;700868;863050;747198;706886;808079;716489;737459;807606.31;1213889;988394;907785;1320461.87;1847750.78;1238845 -5300;'142;Asia;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;19946;16031;16006;26300;7000;8700;6100;12149;12400;14672;31636;75556;74654;86590;112215;110031;103288;109311;155508;134489;126533;150515;147481;163722;174148;163684;130796;117077;197911;146882.5;190080;194346 -5300;'142;Asia;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;7301;5351;7304;13882;3702;3930;2769;4269;5165;4634;9697;23463;27190;32723;47244;56922;46868;45709;85392;81744;64439;77732;87342;89104;90571;95508;103776;67558;96283;99580.6;153006;117569 -5300;'142;Asia;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;921900;1009500;1161400;1266300;1313400;1525100;1715000;1908000;2289000;2727000;2942000;3280200;3611800;3544500;3253500;3715800;3766800;3918000;4418300;4517600;4290600;4632600;4986600;5291600;5704000;5965000;6359000;6825000;7781200;8788300;9228933;9271614;9396375;10102568;10662017;11276535;12154857;10963417;11683793;14684659;14783801;15105701;14936701;15438501;15698501;16709023;19075801;19889801;16420801;19543801;21249301;20907201;22010201;23787201;23937201;24328201;25396201;26998201;27939201;29527241;33265384;36272892;38146892 -5300;'142;Asia;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;546100;625800;709500;553500;723000;879200;1002900;695400;752100;805000;1353600;1508300;1755500;1587600;1606100;2076800;2055600;2301100;2705300;2983700;3374400;3679900;3533500;4287600;5112549;5794320;6563024;6646842;7359520;7338466;7571069;8395665;8391790;9418841;9761988;10270685;11880582;12070931;12501724;12662180;13882294;17091875;15162499;18269853;20329889;21262694;21978912;23416593;25490476;27878064;28817654;30317401;31771315;29383928.99;29397559;35052853 -5300;'142;Asia;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;74977;91701;122433;103656;118617;198055;351262;276397;292029;299896;436488;626959;904732;826971;782204;832179;964497;906688;1103181;1640266;2258825;2847791;2484229;2318929;2635916;2266192;3354858;5129879;3924387;3595116;3430248;3929801;5439974;4226138;4140366;4702296;5905122;6124466;7022322;8294677;9891492;8611958;11358050;14002312;12844446;13733766;14303443;14852732;14119317;17084070.78;22275374;19067202;16403193;20115734.58;23525390;24070184 -5300;'142;Asia;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;2000;7000;7000;28800;30800;38600;170900;132600;145100;169700;121300;128500;119900;127800;128900;102200;65400;74800;124100;96300;146900;206600;224000;183500;188685;178747;242477;775025;1364850;1427719;2245916;1644449;1902010;2254788;2645614;2717816;2020518;2782586;3119655;2689775;2860121;2455878;3008842;3388160;3633755;4590061;4414346;4239384;4649077;5330779;5563690;5987453;5810413;5874345.21;5330744.63;6471884.24 -5300;'142;Asia;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;266;931;1164;4314;4455;7960;85376;45911;43376;48595;35557;52819;62438;54064;48099;36286;29242;24720;41758;50750;92662;133618;126815;90303;89546;56470;132444;384957;543376;602332;902574;716180;1075041;774588;861043;933018;729567;1038687;1287376;1181265;1573594;971192;1767657;1847805;1783410;2341313;2227452;2220939;2166210;2867858;3754237;3371450;2589168;3145270.79;3613210.93;3742160.89 -5300;'142;Asia;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81500;82500;79500;77500;83500;85500;84840 -5300;'142;Asia;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;189121;219756;159183;149046;156839.75;151854.16;113814 -5300;'142;Asia;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;133424.97;184128;122559;99929;124948.78;142766.95;110148 -5300;'142;Asia;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;994;2975;4487;8440;1315;1531;1546 -5300;'142;Asia;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;803;2645;3246;5602;1211;1202;1344 -5300;'142;Asia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;234800;243600;248700;292900;256500;225200;252600;256200;276400;317600;328900;353600;327000;337000;299000;257000;255000;196000;173000;90000;57000;40000;51000;72000;17000;23000;23000;15000;54000;49000;53000;67000;54000;56000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;121000;104000;102000;144000;43000;43000;43000;43000;43000;;;;;;; -5300;'142;Asia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;55240;46640;51500;75100;85500;122900;135400;75600;90800;66700;87600;79500;163900;184500;122700;193200;204600;194700;199700;272600;330100;264800;81200;80300;69803;42793;54753;60800;58150;57400;75589;81116;37491;94628;67093;79259;75388;71211;77688;60909;35792;31174;25011;21078;24634;20741;32081;32070;29052;;;;;;; -5300;'142;Asia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;8996;8420;8730;12022;13545;22141;31114;14359;27441;23978;32265;32093;67329;68780;46347;76213;80315;76242;78877;119356;145432;142627;52272;47002;35000;17698;23981;28474;37032;28012;30112;33916;20044;38897;25697;31343;32831;31478;36910;37203;21781;14949;17569;15012;14369;12030;21334;18475;15932;;;;;;; -5300;'142;Asia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;481;629;1823;900;400;2700;0;1002;1800;600;0;482;250;165;659;368;253;461;2002;152;461;245;70;248;1480;;;;;;; -5300;'142;Asia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;224;260;961;559;164;1112;0;650;825;258;0;391;220;140;321;161;156;903;1522;131;355;146;52;232;978;;;;;;; -5300;'142;Asia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;219600;148700;123700;148700;170700;218300;200900;211300;166800;125800;90200;70500;73000;51000;58000;52000;48000;41000;81300;160000;144000;112000;108000;94000;155000;142000;111000;127000;127000;123000;114000;98000;92000;96000;3000;3000;3000;86000;0;20000;20000;19000;20500;20500;20500;20500;20500;20500;23500;23000;24000;21000;27000;40000;37000;38500;;;;;;; -5300;'142;Asia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;179000;151000;167400;122200;140200;200700;174000;113000;114100;114700;179400;192600;217000;211700;273100;300500;283300;246800;299000;317900;309900;239400;202400;307900;236849;226812;275778;305711;283618;346412;417544;393797;266644;195561;160643;172480;257891;197311;167859;148819;140856;162269;189913;297019;197071;178800;169623;126727;167761;;;;;;; -5300;'142;Asia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;28173;22723;29007;20940;26488;39647;57334;40005;40692;42355;61826;88316;105728;106324;134511;118999;122161;91742;115419;153944;174650;163337;138778;177896;141027;112663;154981;195519;163211;182308;206626;201817;184636;113521;89173;97820;149361;114221;103156;103778;113230;111414;163692;278220;158446;139320;138251;95556;112735;;;;;;; -5300;'142;Asia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;100;200;100;10100;13300;5900;35700;11100;8200;1400;1500;4700;700;400;200;1100;700;900;7300;2900;8400;3200;1800;1000;6098;2961;3022;5898;1108;59108;5400;4080;11461;4047;1792;1696;4127;1933;2676;4809;3001;4991;5505;4921;43873;72019;69728;63263;2854;;;;;;; -5300;'142;Asia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;12;38;24;1589;2009;1370;19823;3394;2330;461;485;1671;441;253;120;505;621;510;3378;1953;6344;2393;1244;540;3033;1377;1268;5018;404;26629;2146;2200;7019;1518;769;1065;2915;1383;1617;1754;2408;6298;6319;5410;28771;46757;44893;40175;3006;;;;;;; -5300;'142;Asia;1667;Dissolving wood pulp;5510;Production;t;401200;387800;412900;455000;469300;486500;532000;515000;542000;554000;593900;599500;584600;569000;401000;460000;469000;463000;467500;453000;410000;418000;444000;436000;590000;529000;531000;537000;561000;585700;585200;608200;677000;664000;671000;440000;396000;356000;350000;350000;348000;347000;349000;349000;349000;471000;456000;459000;451000;1001000;1131000;1126500;1295500;1121500;1107500;1802453;1892770;1913835;2579500;2880500;3200500;3245500;3255145 -5300;'142;Asia;1667;Dissolving wood pulp;5610;Import quantity;t;159400;164300;194300;199400;215363;227300;223000;200100;229000;234500;253600;298800;267000;351900;245000;325700;332100;339800;449900;492000;338500;301200;377300;441600;444000;448216;452616;495057;561189;582097;649900;601000;617490;601206;882360;767639;724217;734677;784613;792447;888389;882165;890030;1071483;1037370;1150807;1151994;1323114;1563120;1895974;2168138;2659711;2991230;3360120;3625699;3717143;4090550;4254530;4492162;4675663;4996222.73;4981688.48;5605930.48 -5300;'142;Asia;1667;Dissolving wood pulp;5622;Import value;1000 USD;29383;29929;33508;35729;39501;41079;40758;37007;43045;48478;53130;61738;60648;137000;109199;126001;149464;158589;218300;277718;202411;176906;203842;237826;232409;228898;261342;355784;495927;464873;469791;424958;410552;463005;826829;659743;524696;525760;511203;588806;644777;540285;584265;790880;801192;874364;1139981;1511647;1391559;2426096;3407875;3070417;3108576;3273700;3307587;3486884;3981878.28;4185403;4011310;3223860;4694001.17;5259618.07;5455905.07 -5300;'142;Asia;1667;Dissolving wood pulp;5910;Export quantity;t;7500;800;300;300;300;100;100;100;1000;300;1500;1400;1400;15300;10300;1000;6600;2700;3000;1100;1300;2500;2000;8600;5200;1100;1100;1800;200;1000;2000;98609;89076;26019;32443;4702;2298;25996;31918;28296;14324;27669;27945;31059;44250;123926;142756;131435;92566;57369;62010;32224;29470;133658;171697;194441;349555;367529;1101082;1687282;1626574.51;1891771;1792734 -5300;'142;Asia;1667;Dissolving wood pulp;5922;Export value;1000 USD;1268;9;47;47;47;6;81;78;145;88;364;348;450;7762;5410;492;2517;1135;1287;744;818;1435;863;3664;2070;500;596;1240;195;618;1183;64856;49701;17015;21034;3571;1519;17045;19087;19581;8376;13627;16137;24156;30375;82340;120060;113297;59913;59065;78441;34118;26207;115576;140155;168565;277023;316697;673848;912841;1220001.12;1507137;1238170 -5300;'142;Asia;1668;Pulp from fibres other than wood;5510;Production;t;2034800;2106800;2181200;2301100;2471800;2585500;2710500;2791100;2925300;3048100;3198200;3042600;3017900;3061700;3312700;3383700;3631700;4133400;4558509;4449309;4449509;4505509;5009700;5527700;8459700;9282700;12123700;13322700;12851700;13055200;13602112;14888662;16758678;18763988;23457000;13744800;17210800;17435800;15192800;13288700;12125200;13622400;14323000;14570200;15557100;15942100;16077000;16002600;14741900;15963900;15415900;13726900;11550600;11463600;10829100;9896916;9965317;10097529;9831430;9310113;9533496;9573468;9717727 -5300;'142;Asia;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;40300;44500;42800;49600;59600;34000;33800;23200;29600;12400;15200;10800;28368;24600;33200;32100;43200;38900;88900;123700;135100;110300;154101;123403;75882;101522;89945;99000;136987;156258;180755;174638;124825;102886;78449;80727;143659;140617;90605;132843;148199;186091;227529;231866;166667;160656;183637;195740;222889.3;200696;253576;245029;172039;233181;236130;206144;206489;217230.52;203086;248477 -5300;'142;Asia;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;5660;6798;6337;6692;8530;5470;6345;4789;4479;5363;9765;6736;12955;13842;17117;20217;31559;28184;51396;64074;79204;62227;87660;81307;72034;82304;79049;90618;106280;104390;127035;172220;123222;101581;85754;86701;130338;121531;91465;118122;129179;148765;192113;210263;210103;167738;249164;329948;297450;255826;276313;274082;216999;278073.04;304293;264415;242664;311447.78;375276;343550 -5300;'142;Asia;1668;Pulp from fibres other than wood;5910;Export quantity;t;5100;9700;14300;17400;18700;21800;21000;18100;25200;26800;23700;13600;10400;4700;4300;12400;12400;12400;15900;20900;19200;19100;11400;8000;19200;17800;23700;25000;32400;35400;29700;21307;22028;25482;32362;24660;28023;25777;37878;41674;38401;45244;56549;49939;90495;134528;199077;180596;168475;190439;222330;174783;175301;188855;173093;149716;170136;193726;156192;157677;176236.92;174783;171865 -5300;'142;Asia;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;600;1150;1700;2038;2219;2623;2599;2210;3129;4340;3474;2389;3434;5381;2825;5086;5086;5086;12336;16504;14467;14514;11878;13288;17382;15387;20711;26055;29459;31798;29772;37591;35497;39253;48472;50693;47771;42182;47411;56584;51374;57450;70542;74514;108438;143867;187089;229462;170913;273053;397430;250476;218300;234643;267845;245260;272883.68;272450;289220;283779;339183.45;398282;323326 -5300;'142;Asia;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;3025;25287;23735;33087;40541;101753;65297;58448;63772;66720;63013;106753;73509;95500;78234;90355;93960;74391;82432;371723;988440;1854740;2571422.31;3130087;4755865 -5300;'142;Asia;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;870;1494;20365;11550;12152;14479;35467;26514;25546;28803;37953;32214;73007;55000;67148;54423;53465;54771;45772;56471.91;180019;342894;565773;1115249.54;1354588;1345276 -5300;'142;Asia;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;200;16700;15400;16100;2101;3502;15403;18411;19311;9441;6735;13171;11415;11344;16363.31;33328;14014;2970;9635;167992;754097;2108407;2584081.1;3267033;4670128 -5300;'142;Asia;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;169;102;36720;30032;31690;346;1785;11396;7549;7646;6355;4554;4884;4255;2941;6644;9732;8026;1539;4438.59;51675;210792;487989;917129.55;996703;1139435 -5300;'142;Asia;1669;Recovered paper;5510;Production;t;1788200;2035000;2403000;2888000;2846000;3191000;3479000;3606000;4215000;5850000;5840000;6573000;7955000;7262000;6780000;8058000;8674000;9489000;10994000;11627000;11907000;12571000;13813000;15374000;15534000;17121000;18261000;20643000;22695800;24405100;26181700;27636900;28546700;31322700;34047300;34818300;36650300;36114300;39576730;44437451;45403498;50994559;53317823;56284308;59992346;66577398;73546949;79451466;85203458;90461147;93516529;94670392;94818716;100439501;100042542;101311409;104163048;100077535;101993724;104201429;114751890;114665084;114329449 -5300;'142;Asia;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;289000;266000;320000;541600;711333;637768;853076;956909;1111186;1407686;1591870;1529392;1712100;2018774;2388141;2513841;3478353;4150232;4664626;5061472;5341126;6459593;6087192;5511904;6226843;6579166;7248283;7741940;9402368;10965752;12351911;15555522;14909844;17808559;20151601;21765818;27724160;31201558;32883633;35839986;33437775;36761064;39731146;38556389;37605543;39060591;39139460;38744097;35308612;30360854;27267134;24587017.94;22790573;27923084 -5300;'142;Asia;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;20375;17715;20724;48046;95494;67893;90637;109977;122687;195048;251100;229288;219073;260520;330983;288947;450475;663596;822836;827798;887247;1008033;869337;590902;916564;1523292;1125037;1014005;990472;1141789;1971966;1721106;1687055;2410768;2878461;3235525;3974109;5723879;5713273;5160865;7482887;9463567;8354126;7991428;7578587;7307304;7054293;8799173.32;7663639;5139667;4182485;6250897.96;6149171;4874011 -5300;'142;Asia;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;127000;134000;194000;247000;214671;218771;401738;349350;375575;443269;484682;547122;476240;596005;610905;536680;848543;742743;829872;912780;996965;1047598;1068464;767605;1390124;1322194;1179727;1547084;1480261;1284315;2079068;3155214;3162747;3815642;4747893;5769604;6218812;6940221;6448901;7810457;7827132;8296911;8830006;8662766;8404346;7963820;8144219;8037073;8203754;6208037;5860842;5487525.48;5144870;5537106 -5300;'142;Asia;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;4132;4064;6838;11460;18526;10785;21687;22323;24577;31871;38982;35370;31620;43165;54728;40839;65320;59958;90736;104311;116440;121801;130984;84349;219908;234270;174287;177076;153146;118484;254381;255261;284163;411106;576547;717915;788240;1106334;1306453;1107273;1548215;1897393;1709797;1589573;1508026;1374798;1411433;1695211.3;1610054;944452;834534;1244287.02;1196272;945503 -5300;'142;Asia;1876;Paper and paperboard;5510;Production;t;8808500;9376700;10440400;11616800;11715700;12843000;12912500;14106000;15793200;17753127;18151002;19530500;22851000;22460000;20545000;22619700;24014700;25875400;28766500;29619996;29061400;30092100;32452300;35038000;38181900;41042600;45126000;49414600;53197100;57059714;60080463;63413709;65716352;71902939;77548267;81814929;85499472;85847638;91457820;95213471;96246737;102659023;109440300;117739900;124645025;138056168;149286348;155238108;158868120;169934799;176871175;180436136;181332416;187642256;191370677;193928899;198176901;192176375;194033984;196736636;208048504;210284035;213929617 -5300;'142;Asia;1876;Paper and paperboard;5610;Import quantity;t;842670;802497;880679;1124667;1066600;1253170;1435420;1768410;1978100;1960900;2263900;2209200;2450200;2563979;2151901;2578100;2833500;3491600;3790300;4271900;4414400;4527700;4653500;4941500;5137800;5988321;6985823;6662716;7601034;8304842;9752318;11914226;12556267;13838693;13441752;17674267;19316775;19137812;20685844;19882892;18834161;19838899;21192402;23563119;23428577;23031776;23724094;23138330;21688194;24147539;25771952;25343305;25315471;26714099;25727541;27654287;31086549;31227729;31834444;35726085;35040492.61;31699567;33825051 -5300;'142;Asia;1876;Paper and paperboard;5622;Import value;1000 USD;192035;183371;181517;230540;224232;263268;298451;348138;400885;442691;566259;619567;821547;1241934;1145096;1284254;1544925;1853449;2186497;2886083;3037761;2985163;2981526;3123275;3166930;4178828;4486921;4757358;5811982;6782164;7330738;8293099;7822584;9651252;12229208;13823123;13250442;12192892;12954671;14054141;12603787;12467256;13751025;16121262;16850368;16803810;18941583;21139267;18732844;22641220;26098654;24315568;23673098;25398251;22428203;23865488;26445432.57;28559934;27132526;26027236;29929945.99;31721216;28819474 -5300;'142;Asia;1876;Paper and paperboard;5910;Export quantity;t;318100;269650;274730;335020;354420;501120;436000;493100;587100;691700;701500;740700;774200;972500;950400;938700;940100;906000;1019500;1213900;1269200;1259300;1263600;1249400;1619400;1857716;2064191;2162949;2524242;3482015;4452211;5265494;5179366;5986320;6076420;7233525;8910217;11547922;12167742;11843516;10906599;10612999;11164184;12668489;13587699;15451368;16476216;15513376;15462923;16306532;16433430;17202059.48;18973231;19981192;19430360;21229783;22498538;23339238;24393986;25811025;26156223.97;27802683.88;28832030.29 -5300;'142;Asia;1876;Paper and paperboard;5922;Export value;1000 USD;63319;54904;56199;70420;73130;92579;92532;105721;127625;157596;162405;187862;278387;540062;504279;474346;518119;561664;719673;989767;1013185;931246;852422;976024;1154888;1359192;1359591;1730617;2615701;3217429;3798141;4381478;3798076;4703175;5915976;5512824;6263430;6879096;7299934;8111245;6957824;6352423;7408117;8977090;9788033;11104219;12153228;13826365;12382373;15339048;16782951;16912602;18106095;18911687;17822222;18662806;19557453.01;21360373;21328252;20124736;23021717.43;27548558;25413894.89 -5300;'142;Asia;2042;Graphic papers;5510;Production;t;3449500;3654600;4067300;4394500;4368500;4749700;4632800;4988300;5579600;6421937;6562702;6968400;7896200;8156600;7942000;8481000;8850000;9550000;10151300;10780996;10666500;11122000;12061500;12725000;13454000;14474000;16788400;19207000;21010000;22589668;23561117;24296630;21652631;24329796;26207877;28815179;30314476;30516226;34121803;36718980;36928438;40274498;41690600;44761800;46288244;50945496;53985403;56118692;55158909;58890778;59660934;59416808;59472432;57620316;57467549;56509568;57221238;55656024;53179678;49424608;49353950;48839975;48954445 -5300;'142;Asia;2042;Graphic papers;5610;Import quantity;t;474400;426287;465719;579417;522700;609300;717400;889900;1080800;984400;1157800;1056400;1131200;1222300;886500;1069200;1225300;1533900;1744900;1810500;2079200;2202800;2072000;2310300;2507200;2585188;2920775;2784641;3074585;3551064;4089010;5002255;5276439;6069728;5404910;7253152;7989490;8273286;8920992;9542424;9132936;8790461;9891551;11111010;11754224;11977132;11922392;11918562;10915020;12356499;13447264;13538526;13102881;13272720;12587536;13348244;15023591;13766652;13648483;11987901;11887887.74;9796332;9802616 -5300;'142;Asia;2042;Graphic papers;5622;Import value;1000 USD;92920;84849;85951;108543;101909;117196;135181;159106;194967;198808;233980;232131;319773;563253;417251;442326;541064;709512;869411;1031750;1252240;1315235;1198963;1322631;1416462;1646227;1989031;2090806;2399354;3006606;3254439;3614215;3520773;4186546;5153446;6046687;5814403;5674559;5673165;6986816;6306179;5735375;6284651;7374137;8142405;8172869;8884637;10453725;9122972;11140170;13043783;12469980;11478717;11782423;10268350;10640312;11943995.5;12090350;11467708;9054502;10006020.29;10133916;9568095 -5300;'142;Asia;2042;Graphic papers;5910;Export quantity;t;193300;157900;172100;171900;167300;205100;175200;202100;230800;278100;262200;252300;274100;376500;364100;375700;379500;365600;432100;505400;544000;535700;528300;512800;593700;530016;740591;748649;659642;829415;1083011;1128399;1239233;1684607;1804554;1917643;3043831;5101378;5883783;6480556;6214599;5268607;5868650;7577115;8620268;10018822;10681009;10370873;10527236;10881344;10709402;11192112.48;11583610;11645463;10816650;11669380;11586652;11221382;11152083;10067184;9766508.35;10707051.88;10516590.29 -5300;'142;Asia;2042;Graphic papers;5922;Export value;1000 USD;36268;31813;34462;39020;40287;45036;44403;51278;57604;69606;66824;65967;82359;219372;164288;239933;235703;269380;361072;479291;467575;422966;378577;357246;412226;394926;582836;682777;633206;731885;943278;955064;917692;1342153;1801300;1701249;2346082;3195690;3584974;4537688;3971509;3241012;3690631;5291609;6214600;7324759;8242579;9225862;8079592;9618166;10058168;10118682;10148521;10004791;8932650;9188891;9376240.14;10205936;9828721;8076473;8556620.4;10811382;10166028.89 -5300;'142;Asia;1671;Newsprint;5510;Production;t;1245800;1400300;1558400;1687200;1742700;1772800;1812800;1993600;2190200;2533535;2643200;2836700;3051900;2982100;2888000;3090000;3183000;3256000;3343500;3544781;3519000;3587000;3684000;3699000;3799000;3937000;4194400;4570000;4838000;5202317;5269817;5261365;5066925;5481237;6019414;6458109;6633756;7129492;7668668;8468655;8837875;9062498;9218900;10741200;10892444;11526296;12342461;12424709;12195144;11996022;11365834;11280834;11155830;10194801;9639672;8988230;8339275;7630033;6377164;5027684;4935841;4776932;4436418 -5300;'142;Asia;1671;Newsprint;5610;Import quantity;t;324500;267000;294919;370117;331400;400800;430900;591600;735700;613500;753400;682300;634300;673400;542600;677100;797600;1001600;1140300;1207800;1377600;1441200;1317400;1458200;1627800;1587643;1734506;1629473;1713100;1814748;2120548;2493448;2611065;2738825;2829737;3603002;4009282;3296710;3425983;3302460;3126348;3084231;3428234;3739848;3664020;3684962;3634640;3850194;3153990;3902541;3950160;3730116;3770800;3470446;3261774;3247850;3301704;3064506;2781632;2249488;1880291.76;1553134;1654430 -5300;'142;Asia;1671;Newsprint;5622;Import value;1000 USD;50711;41797;43398;55602;48204;60027;62283;83850;108183;95972;128125;117749;130358;241642;213873;249995;280277;371706;450582;547931;675504;713250;614527;676276;738869;808346;968724;998105;1043229;1116066;1309482;1370438;1384454;1431516;2228961;2633760;2241991;1796749;1771294;1976320;1873933;1603439;1642740;1950827;2094185;2137259;2177097;2884279;1942951;2437036;2806226;2482342;2408252;2179993;1791612;1707159;1744842.44;1975339;1613078;1014008;980073.78;1172102;1067909 -5300;'142;Asia;1671;Newsprint;5910;Export quantity;t;56200;47500;44000;42700;34000;68100;28700;23500;20000;49300;58000;84600;68000;130100;118200;111100;117800;120800;128200;134800;164600;143900;109200;99500;115200;71596;84400;127900;81841;141700;178400;204046;188967;162605;360608;232487;588093;1473817;1257613;1101720;1093228;1113441;1105899;1227040;1279603;1586617;1828834;1487040;1399229;1254788;1096388;1035531.48;1161521;1146746;1084552;1138049;678348;725487;420718;239252;158701.45;292884.59;247628 -5300;'142;Asia;1671;Newsprint;5922;Export value;1000 USD;7488;6366;5714;6417;5120;9451;4210;3371;2831;6977;8366;12738;14464;45870;35892;32785;34670;39655;47574;63058;80322;65191;43188;40322;46720;28556;41712;79532;46198;75838;99246;90623;83033;79787;253216;140589;256644;633734;541844;553477;590377;426307;437608;567013;659945;866724;960571;1015995;710732;720020;728075;640699;700325;668647;543266;563413;349279.31;469320;233791;104268;113562.16;233930;170940 -5300;'142;Asia;1674;Printing and writing papers;5510;Production;t;2203700;2254300;2508900;2707300;2625800;2976900;2820000;2994700;3389400;3888402;3919502;4131700;4844300;5174500;5054000;5391000;5667000;6294000;6807800;7236215;7147500;7535000;8377500;9026000;9655000;10537000;12594000;14637000;16172000;17387351;18291300;19035265;16585706;18848559;20188463;22357070;23680720;23386734;26453135;28250325;28090563;31212000;32471700;34020600;35395800;39419200;41642942;43693983;42963765;46894756;48295100;48135974;48316602;47425515;47827877;47521338;48881963;48025991;46802514;44396924;44418109;44063043;44518027 -5300;'142;Asia;1674;Printing and writing papers;5610;Import quantity;t;149900;159287;170800;209300;191300;208500;286500;298300;345100;370900;404400;374100;496900;548900;343900;392100;427700;532300;604600;602700;701600;761600;754600;852100;879400;997545;1186269;1155168;1361485;1736316;1968462;2508807;2665374;3330903;2575173;3650150;3980208;4976576;5495009;6239964;6006588;5706230;6463317;7371162;8090204;8292170;8287752;8068368;7761030;8453958;9497104;9808410;9332081;9802274;9325762;10100394;11721887;10702146;10866851;9738413;10007595.98;8243198;8148186 -5300;'142;Asia;1674;Printing and writing papers;5622;Import value;1000 USD;42209;43052;42553;52941;53705;57169;72898;75256;86784;102836;105855;114382;189415;321611;203378;192331;260787;337806;418829;483819;576736;601985;584436;646355;677593;837881;1020307;1092701;1356125;1890540;1944957;2243777;2136319;2755030;2924485;3412927;3572412;3877810;3901871;5010496;4432246;4131936;4641911;5423310;6048220;6035610;6707540;7569446;7180021;8703134;10237557;9987638;9070465;9602430;8476738;8933153;10199153.06;10115011;9854630;8040494;9025946.51;8961814;8500186 -5300;'142;Asia;1674;Printing and writing papers;5910;Export quantity;t;137100;110400;128100;129200;133300;137000;146500;178600;210800;228800;204200;167700;206100;246400;245900;264600;261700;244800;303900;370600;379400;391800;419100;413300;478500;458420;656191;620749;577801;687715;904611;924353;1050266;1522002;1443946;1685156;2455738;3627561;4626170;5378836;5121371;4155166;4762751;6350075;7340665;8432205;8852175;8883833;9128007;9626556;9613014;10156581;10422089;10498717;9732098;10531331;10908304;10495895;10731365;9827932;9607806.9;10414167.29;10268962.29 -5300;'142;Asia;1674;Printing and writing papers;5922;Export value;1000 USD;28780;25447;28748;32603;35167;35585;40193;47907;54773;62629;58458;53229;67895;173502;128396;207148;201033;229725;313498;416233;387253;357775;335389;316924;365506;366370;541124;603245;587008;656047;844032;864441;834659;1262366;1548084;1560660;2089438;2561956;3043130;3984211;3381132;2814705;3253023;4724596;5554655;6458035;7282008;8209867;7368860;8898146;9330093;9477983;9448196;9336144;8389384;8625478;9026960.83;9736616;9594930;7972205;8443058.24;10577452;9995088.89 -5300;'142;Asia;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6762882;8013000;8420704;8493001;11004600;11366100;11922100;12446600;13761100;14956628;16417765;17450759;19071756;20127100;20357870;20106700;20168911;20580994;20516039;20556192;20331015;20001401;19898830;19332770;19220880;19884264 -5300;'142;Asia;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;264050;263578;275235;243290;333729;423812;474394;554956;545392;652196;664794;551641;653232;597307;659273;640133;668763;622073;689135;765844;736367;709819;661436;686665.32;622386;674911 -5300;'142;Asia;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;218347;182334;207972;181518;220551;280609;324059;404925;379403;516229;618359;503158;621721;638741;703420;614746;645964;577809;629408;711333.61;690239;647744;560442;649270.48;681960;688197 -5300;'142;Asia;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10002;194312;157023;34326;52733;86913;200329;201143;231830;226137;287186;252026;292286;288277;336756;284399;231642;212349;225517;230157;236772;213186;153597;176446.05;226573;378333 -5300;'142;Asia;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7203;25001;34092;30852;45564;68093;149901;147032;170867;182647;278422;243875;309884;334521;383112;320634;236622;223313;233733;266555.99;256741;246748;175211;209199.68;278844;381064 -5300;'142;Asia;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7063255;8287912;8375155;8203225;8235300;8351300;8353200;8378900;9705800;10223007;9977909;9198703;10051700;10049700;9635804;9963602;9611216;9714458;10108914;11052728;11625233;11771483;11420740;11456845;11357051;11462184 -5300;'142;Asia;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1250315;1948286;2154621;1933996;2214417;2602279;3096272;3636931;3776753;3649654;3533198;3195234;3523670;4287671;4379588;4031304;4346388;4348366;4797760;5871911;5401569;5620641;5537405;5574934.11;4180959;4241229 -5300;'142;Asia;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;992277;1359350;1787887;1478748;1651321;1849066;2118532;2420408;2468275;2774777;3171653;3062760;3811762;4784582;4646809;4185798;4569621;4209053;4603884;5301567.65;5252160;5119498;4436552;4849170.74;4497619;4572325 -5300;'142;Asia;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1107658;1533867;1521805;1700275;1642944;1780405;2413344;2774875;3455737;3799849;3645999;3740337;4099722;4170842;4820739;4938981;5263855;4896509;5581125;6101558;5827535;6194921;6387179;5976257.86;6116465;6094606 -5300;'142;Asia;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;758393;986637;1166279;1158461;1050935;1162317;1704875;2102004;2661105;3149104;3438566;3052348;3821994;4025123;4480815;4400366;4580216;4092844;4405870;4847658.28;5261391;5249725;4804270;4839082.75;5842219;5742612 -5300;'142;Asia;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9560597;10152223;11454466;11394337;11972100;12754300;13745300;14570300;15952300;16463307;17298309;16314303;17771300;18118300;18142300;18246300;17645388;17532425;16896385;17273043;16069743;15029630;13077354;13628494;13485112;13171579 -5300;'142;Asia;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3462211;3283145;3810108;3829302;3158084;3437226;3800496;3898317;3970025;3985902;3870376;4014155;4277056;4612126;4769549;4660644;4787123;4355323;4613499;5084132;4564210;4536391;3539572;3745996.54;3439853;3232046 -5300;'142;Asia;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2667186;2360187;3014637;2771980;2260064;2512236;2980719;3222887;3187932;3416534;3779434;3614103;4269651;4814234;4637409;4269921;4386845;3689876;3699861;4186251.8;4172612;4087388;3043500;3527505.29;3782235;3239664 -5300;'142;Asia;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2509901;2897991;3700008;3386770;2459489;2895433;3736402;4364647;4744638;4826189;4950648;5135644;5234548;5153895;4999086;5198709;5003220;4623240;4724689;4576589;4431588;4323258;3287156;3455102.99;4071129.29;3796023.29 -5300;'142;Asia;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1796360;2031492;2783840;2191819;1718206;2022613;2869820;3305619;3626063;3950257;4492879;4072637;4766268;4970449;4614056;4727196;4519306;4073227;3985875;3912746.56;4218484;4098457;2992724;3394775.82;4456389;3871412.89 -5300;'142;Asia;1675;Other paper and paperboard;5510;Production;t;5359000;5722100;6373100;7222300;7347200;8093300;8279700;9117700;10213600;11331190;11588300;12562100;14954800;14303400;12603000;14138700;15164700;16325400;18615200;18839000;18394900;18970100;20390800;22313000;24727900;26568600;28337600;30207600;32187100;34470046;36519346;39117079;44063721;47573143;51340390;52999750;55184996;55331412;57336017;58494491;59318299;62384525;67749700;72978100;78356781;87110672;95300945;99119416;103709211;111044021;117210241;121019328;121859984;130021940;133903128;137419331;140955663;136520351;140854306;147312028;158694554;161444060;164975172 -5300;'142;Asia;1675;Other paper and paperboard;5610;Import quantity;t;368270;376210;414960;545250;543900;643870;718020;878510;897300;976500;1106100;1152800;1319000;1341679;1265401;1508900;1608200;1957700;2045400;2461400;2335200;2324900;2581500;2631200;2630600;3403133;4065048;3878075;4526449;4753778;5663308;6911971;7279828;7768965;8036842;10421115;11327285;10864526;11764852;10340468;9701225;11048438;11300851;12452109;11674353;11054644;11801702;11219768;10773174;11791040;12324688;11804779;12212590;13441379;13140005;14306043;16062958;17461077;18185961;23738184;23152604.88;21903235;24022435 -5300;'142;Asia;1675;Other paper and paperboard;5622;Import value;1000 USD;99115;98522;95566;121997;122323;146072;163270;189032;205918;243883;332279;387436;501774;678681;727845;841928;1003861;1143937;1317086;1854333;1785521;1669928;1782563;1800644;1750468;2532601;2497890;2666552;3412628;3775558;4076299;4678884;4301811;5464706;7075762;7776436;7436039;6518333;7281506;7067325;6297608;6731881;7466374;8747125;8707963;8630941;10056946;10685542;9609872;11501050;13054871;11845588;12194381;13615828;12159853;13225176;14501437.07;16469584;15664818;16972734;19923925.71;21587300;19251379 -5300;'142;Asia;1675;Other paper and paperboard;5910;Export quantity;t;124800;111750;102630;163120;187120;296020;260800;291000;356300;413600;439300;488400;500100;596000;586300;563000;560600;540400;587400;708500;725200;723600;735300;736600;1025700;1327700;1323600;1414300;1864600;2652600;3369200;4137095;3940133;4301713;4271866;5315882;5866386;6446544;6283959;5362960;4692000;5344392;5295534;5091374;4967431;5432546;5795207;5142503;4935687;5425188;5724028;6009947;7389621;8335729;8613710;9560403;10911886;12117856;13241903;15743841;16389715.61;17095632;18315440 -5300;'142;Asia;1675;Other paper and paperboard;5922;Export value;1000 USD;27051;23091;21737;31400;32843;47543;48129;54443;70021;87990;95581;121895;196028;320690;339991;234413;282416;292284;358601;510476;545610;508280;473845;618778;742662;964266;776755;1047840;1982495;2485544;2854863;3426414;2880384;3361022;4114676;3811575;3917348;3683406;3714960;3573557;2986315;3111411;3717486;3685481;3573433;3779460;3910649;4600503;4302781;5720882;6724783;6793920;7957574;8906896;8889572;9473915;10181212.87;11154437;11499531;12048263;14465097.03;16737176;15247866 -5300;'142;Asia;1676;Household and sanitary papers;5510;Production;t;196300;213000;239500;257800;291400;329500;346200;420400;476200;557752;630900;724300;813500;828000;774000;851000;897000;948000;1060000;1108706;1097000;1118000;1236000;1806000;2259000;2402000;2175700;2404600;2622600;2854741;3225541;3480426;2778107;3865064;4406786;4989411;5104858;5067439;5185708;5671173;6006719;6377400;6834900;7322800;7878400;8265727;8669968;9245794;9687796;10106822;11245642;11722841;11919106;12668414;13323551;14100771;14632286;14825494;15184782;15941119;16255124;16869242;17588415 -5300;'142;Asia;1676;Household and sanitary papers;5610;Import quantity;t;3100;3700;3800;5000;4900;7700;8800;19400;12600;19560;17100;19900;17740;18079;20101;17600;17800;49800;134500;70300;42700;40900;31100;34200;31000;48000;51000;59600;45000;52400;55400;53500;59300;95500;96600;68300;93300;139225;151022;174168;203873;216481;240308;271698;250772;235423;241425;276476;279103;369660;403219;406977;501642;532365;549756;589010;689098;730353;823655;827638;780994.28;862609;962543 -5300;'142;Asia;1676;Household and sanitary papers;5622;Import value;1000 USD;1799;1868;1935;2978;3036;4592;5501;5438;6312;7773;8751;9207;12600;14802;23832;12216;14985;34429;101094;104784;57166;49294;33622;28519;25955;46132;43162;72106;48172;59013;63513;63320;71759;185760;134390;114656;127993;147448;152786;174683;196860;212759;242023;284520;275613;258438;298128;375861;336171;488461;553708;552300;678228;768935;736987;748214;835559.38;957339;1035870;957625;933402.94;1278147;1329355 -5300;'142;Asia;1676;Household and sanitary papers;5910;Export quantity;t;400;500;400;2000;2300;2700;2800;3100;3300;3900;2100;1500;3000;3000;4700;5300;5700;5700;6200;5200;9600;9700;12200;20900;30700;26200;24700;26200;23600;26400;37900;42200;42600;69000;63000;80400;103300;105500;201768;211071;246290;277100;296798;489927;262968;281273;317289;436495;481135;563951;628983;757391;864666;866472;955118;1146696;1289219;1349211;1566604;1666271;1340423.89;1558656;1826634 -5300;'142;Asia;1676;Household and sanitary papers;5922;Export value;1000 USD;268;335;248;916;865;1139;1347;1540;1870;2074;1233;1481;2418;2000;2275;5435;6576;6890;8833;10399;19158;17830;22409;32422;46458;52222;25792;32269;30435;39697;53859;59098;58180;102564;124261;131187;160041;98736;162042;194784;242391;248774;272213;504197;261673;273966;348908;533718;518027;678964;778652;883349;1104067;1168070;1202726;1299067;1429058;1591563;1828982;1816457;1486505.03;2148552;2247183 -5300;'142;Asia;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43701185;45559189;47702642;47485660;50884825;55282100;60119200;64600381;72178245;79490364;83311804;87572679;93571109;97901479;100523987;101250378;107976213;110902641;113581505;116994163;112480455;115378917;120876613;130342862;132024666;134240577 -5300;'142;Asia;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4990275;5464663;8659747;7852499;9436593;9469863;10290110;9972141;9532372;9938863;9520792;9299780;10751003;11280126;10748770;11147480;12308320;12029817;12958652;14744431;16100635;16729935;22342321;21818040.17;20471330;22563223 -5300;'142;Asia;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2964160;3438182;5086515;4445694;5041917;5415189;6282723;6621659;6500740;7379865;8310990;7607101;9808504;11289190;10181603;10514129;11665733;10554768;11198809;12642433.21;14421290;13469482;14975801;17960392.45;19147750;16826967 -5300;'142;Asia;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5102047;5129919;4343382;3677950;4213984;4497747;4120438;4265953;4624065;5112767;4321322;4199023;4643439;4876869;5011076;6351025;7259990;7457829;8185158;9405138;10521920;11400927;13814359;14734269.54;15176830;16175323 -5300;'142;Asia;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2299679;2357653;2358581;1802007;1869035;2716270;2304568;2567045;2635692;3106383;3496824;3360541;4605162;5497088;5386992;6443295;7262286;7268329;7681040;8262499.17;9027756;9068688;9652480;12354829.37;13825957;12284914 -5300;'142;Asia;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;2706000;2810800;3202800;3811800;3748300;4229200;4743100;5317200;6020500;6996297;7013700;7543100;9295600;9204600;7809300;8927300;9738300;10281300;11287900;10933830;10316900;10291300;13041000;12959200;18178500;19483600;20734600;22424800;23937300;25555615;26855615;29004614;30081014;33657389;39928231;41361909;42849296;;;;;;;;;;;;;;;;;;;;;;;;;; -5300;'142;Asia;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;54470;56350;77750;92200;86290;175140;227430;385690;400300;397300;427900;453300;583700;633000;604400;670100;894100;1065100;1029000;1255300;1150400;1272000;1472300;1476000;1430600;1339400;1696000;1760400;2337900;2314200;2863800;2987987;3513126;3862420;3961069;4818400;4664700;;;;;;;;;;;;;;;;;;;;;;;;;; -5300;'142;Asia;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;15788;14612;17242;20678;20750;40628;48480;70768;64373;83450;96155;109185;174183;279994;246968;306997;417741;453719;487245;709169;688950;709437;710032;733748;670797;650245;816132;903990;1384216;1424681;1656298;1800324;1839311;2385205;3038149;3290217;2729714;;;;;;;;;;;;;;;;;;;;;;;;;; -5300;'142;Asia;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;80440;67500;61070;83670;104900;182930;131680;69100;192000;284500;298000;321900;328000;402700;358300;365700;387900;368700;435500;501500;468300;459900;487100;334500;512900;849900;757800;780800;1076500;1548700;2222800;2486859;2534578;2866311;2938800;4118700;4248000;;;;;;;;;;;;;;;;;;;;;;;;;; -5300;'142;Asia;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;12717;10122;9262;13110;14307;23595;17668;10714;27875;50322;47347;54657;92409;176213;126045;115464;132596;143032;184672;265850;243815;225034;226855;139661;286528;611532;343982;383098;760015;1015863;1350016;1474893;1237594;1572169;1897490;2130284;2034963;;;;;;;;;;;;;;;;;;;;;;;;;; -5300;'142;Asia;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18025465;19995007;31617998;31510752;33180700;35401400;38763800;41575401;46865337;52020005;55296730;59443809;64125850;67017120;68611100;69381576;74487711;76784514;78860642;81431556;77511763;79436737;84404038;92759270;93366110;94789980 -5300;'142;Asia;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2433686;2440919;3782686;3396340;3967618;3708858;3644030;3962522;4049260;4035603;3868655;3849753;4443829;4523661;4333463;4505623;4875922;4865083;4486760;6213552;7246417;7965103;12347381;11366424.34;10624039;13442558 -5300;'142;Asia;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1004397;1031293;1450319;1191520;1313115;1316991;1510034;1694166;1761092;1899422;2173274;1917003;2658273;3039545;2693577;2894181;3112232;2886185;2556282;3715252.77;4657743;4240927;5583914;6872385.85;7053155;6501281 -5300;'142;Asia;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2791362;2511640;2405174;1950477;1890926;2118271;1933415;1735429;2080624;2210823;1717038;1614030;1694688;1601164;1759711;2365232;2608999;2839796;3058198;4123413;5043716;5605412;7936398;8410312.41;7613449;8916700 -5300;'142;Asia;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;896088;757042;864426;544756;502397;589035;594170;534048;739668;861413;828545;616350;881270;931926;954637;1407642;1539611;1569274;1568497;2151182.58;2734100;2475665;3219930;4808364.16;4384571;4240045 -5300;'142;Asia;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6109703;6887632;9687374;9830839;11524223;12505200;13879700;14844417;16982862;18356763;18582830;18893409;20281900;21439900;22306693;22166530;23542097;23855467;24199804;24605309;23912011;24647596;25039752;25606927;26237058;26851425 -5300;'142;Asia;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1759266;1953808;2791419;2467841;2942643;3302424;3870094;3490183;3373206;3704737;3599142;3542422;3996291;4465655;4170107;4496987;5116781;4913645;5990178;5668559;5790216;5802561;6120367;6375778.58;6193270;5801946 -5300;'142;Asia;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1357049;1514710;2270850;1998004;2228548;2593127;3034198;3091678;3228081;3720679;4143383;3991396;4859712;5697569;5054139;5340620;6094521;5469500;6332057;6280435.51;6741685;6350319;6400815;7465416.61;8282996;6995969 -5300;'142;Asia;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1872324;1999256;1162086;1038938;1400654;1377603;1298747;1412159;1549773;1730805;1586433;1725303;1971776;2368848;2360299;2939554;3488536;3550979;3912689;3954878;3987700;4206603;4018328;4341664.31;5642364;5383722 -5300;'142;Asia;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1058984;1195151;966174;813084;831372;832685;1114272;1256294;1228380;1442826;1817534;2029250;2754653;3415015;3261563;3688214;4234280;4196468;4645944;4485382.44;4525178;4605363;4420712;5174174.53;6848844;5952146 -5300;'142;Asia;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18945822;17977503;5600703;5530003;5519300;6475800;6297200;6878700;7199700;7292731;7530730;7500709;7861700;8065800;8276300;8457300;8663360;8834097;8963706;9180559;8970480;9000169;8868503;9177025;9270558;9444631 -5300;'142;Asia;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;610703;879207;1863093;1770982;2193038;2176300;2315043;2127323;1792593;1914476;1789699;1665637;2089783;2053373;1988436;1862058;2014904;1954296;2194600;2503430;2704548;2596989;2940628;3101236.65;2740706;2449123 -5300;'142;Asia;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;490180;764986;1244864;1154021;1342627;1369053;1505947;1616453;1324748;1575096;1789059;1505360;2095772;2314581;2188729;2011564;2193527;1959110;2075407;2355496.08;2748266;2623704;2542044;3027563.49;3205301;2803615 -5300;'142;Asia;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;317523;377255;479877;472540;608764;648584;656870;917701;824315;1021982;872348;675679;818258;767639;732674;854932;930314;823455;949397;1006859;1183157;1197439;1455789;1436982.16;1430221;1237527 -5300;'142;Asia;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;252473;331961;428460;385434;440172;1182232;492327;692648;584488;726501;762629;617641;848985;999879;992908;1061168;1109188;1051335;1100737;1223915.46;1384866;1442699;1513328;1742487.96;1905963;1575418 -5300;'142;Asia;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;620195;699047;796567;614066;660602;899700;1178500;1301863;1130346;1820865;1901514;1734752;1301659;1378659;1329894;1244972;1283045;1428563;1557353;1776739;2086201;2294415;2564320;2799640;3150940;3154541 -5300;'142;Asia;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;186620;190729;222549;217336;333294;282281;460943;392113;317313;284047;263296;241968;221100;237437;256764;282812;300713;296793;287114;358890;359454;365282;933945;974600.6;913315;869596 -5300;'142;Asia;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112534;127193;120482;102149;157627;136018;232544;219362;186819;184668;205274;193342;194747;237495;245158;267764;265453;239973;235063;291248.84;273596;254532;449028;595026.49;606298;526102 -5300;'142;Asia;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120838;241768;296245;215995;313640;353289;231406;200664;169353;149157;145503;184011;158717;139218;158392;191307;232141;243599;264874;319988;307347;391473;403844;545310.66;490796;637374 -5300;'142;Asia;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92134;73499;99521;58733;95094;112318;103799;84055;83156;75643;88116;97300;120254;150268;177884;286271;379207;451252;365862;402018.69;383612;544961;498510;629802.72;686579;517305 -5300;'142;Asia;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;906500;988000;1087700;1259800;1382200;1547800;1760900;1862600;2127600;2030241;2057800;2259700;2637900;2338600;2061400;2397100;2420100;2674800;3005000;3224664;3365200;3627000;1750000;2546000;4229000;4617000;5348300;5282200;5608200;6059690;6438190;6632039;11204600;10050690;7005373;6648430;7230842;6562788;6591120;5120676;5825920;5122300;5632700;5536100;5878000;6666700;7140613;6561818;6448736;7366090;8063120;8772500;8690500;9377313;9676936;9737055;9329214;9214402;10290607;10494296;12096568;12550152;13146180 -5300;'142;Asia;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;137300;152660;180610;208550;215010;261530;312690;350620;397600;439740;514600;536300;602060;576200;539600;696900;555200;632200;671100;672800;712200;695700;671600;783100;644500;950500;2288800;2043700;2128900;2370200;2725600;3843943;3659407;3796448;3970840;5515394;6541781;5735026;6149167;1506553;1644853;1395364;1590680;1890301;1451440;1286849;1621414;1422500;1194291;670377;641343;649032;563468;600694;560432;758381;629429;630089;632371;568225;553570.43;569296;496669 -5300;'142;Asia;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;33714;32812;39143;44202;44498;56046;70887;83187;115618;127181;195158;237231;291349;358567;436645;490604;497427;547301;618177;631143;663543;638376;679506;739135;607709;907515;1612151;1673245;1963542;2278562;2342705;2798855;2362916;2882666;3895706;4353609;4555298;3406725;3690538;1806127;1655054;1477205;1809162;2179882;1810691;1871763;2378953;1998691;1666600;1204085;1211973;1111685;1002024;1181160;868098;1278153;1023444.48;1090955;1159466;1039308;1030130.32;1161403;1095057 -5300;'142;Asia;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;42360;43300;40630;43630;44500;70670;77320;183200;121300;60100;73500;86700;104400;123800;157200;159000;135000;137000;116800;172900;220600;224900;208400;272800;291400;194900;540000;606200;763400;1076400;1107400;1561208;1361221;1366026;1269554;1116149;1513349;1238997;952272;808507;767760;853308;500989;481009;438510;527208;365151;384686;255529;217798;218176;241480;173930;209267;200763;228549;217529;246725;274372;263211;315022.18;360146;313483 -5300;'142;Asia;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;13246;12424;11961;11973;12106;16114;21045;36758;33663;26021;37194;53834;91821;132663;201569;100379;128702;128940;151279;219844;269441;250314;210907;390121;309302;165038;406147;631639;1191211;1429150;1450154;1856777;1583862;1686062;2092473;1549463;1721033;1284991;1195265;1020192;941917;993602;729003;876716;744715;869802;455358;569961;424213;436756;449043;523579;410212;476540;418517;493808;489655.69;535118;601861;579326;623762.62;762667;715769 -5300;'142;Asia;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17801200.11;18301733;18522566;17169656;19968212;20150961;18053938 -5300;'142;Asia;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45314257.01;47150187;45879020;48440448;59440655;57517705;52607358 -5300;'142;Asia;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;796931.96;815702;823813;802524;963089;883117;658086 -5300;'142;Asia;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1233714.41;1249484;1068830;1003743;1153731;1046875;993206 -5300;'142;Asia;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;192437.48;213475;178628;165372;196261;194393;131051 -5300;'142;Asia;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49401.81;37682;34375;59677;81520;86760;138973 -5300;'142;Asia;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;604494.47;602227;645185;637152;766828;688724;527035 -5300;'142;Asia;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1184312.59;1211802;1034455;944066;1072211;960115;854233 -5300;'142;Asia;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;386773.46;406458;420568;396496;482247;558745;530913 -5300;'142;Asia;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;332460.67;370520;388227;371688;439425;581742;436910 -5300;'142;Asia;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;679483.29;717785;699958;617220;735711;813135;764419 -5300;'142;Asia;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2338102.52;2629861;2599357;2617783;3410321;3353497;2900698 -5300;'142;Asia;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2658875.87;2709771;2766025;2396906;2794309;3324477;2661734 -5300;'142;Asia;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2544037.62;2350879;2358611;2341735;2817606;3042952;2741755 -5300;'142;Asia;1636;Glue-laminated timber (glulam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1688800;1705000 -5300;'142;Asia;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;928020;585731 -5300;'142;Asia;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;846423;289750 -5300;'142;Asia;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106856;108501 -5300;'142;Asia;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;124629;113023 -5300;'142;Asia;1688;Cross-laminated timber (CLT or X-lam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15000;18000 -5300;'142;Asia;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2548;2091 -5300;'142;Asia;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3867;2232 -5300;'142;Asia;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2338;2997 -5300;'142;Asia;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2507;4339 -5300;'142;Asia;1684;I-beams (I-joists);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11800;10000 -5300;'142;Asia;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6127;6407 -5300;'142;Asia;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11987;8114 -5300;'142;Asia;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4283;7727 -5300;'142;Asia;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6260;9741 -5300;'142;Asia;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11544725.26;11967603;12123029;11028149;13026966;12610113;11428950 -5300;'142;Asia;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35599643.77;36927623;35970627;38421011;46648782;44709809;41340271 -5300;'142;Asia;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;137468.19;107297;127999;94893;139615;147487;244269 -5300;'142;Asia;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110183.89;100921;121682;82679;149342;145281;123295 -5300;'142;Asia;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1596942.09;1577117;1561174;1833468;1826275;1813887;1765567 -5300;'142;Asia;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3156114.14;3520899;3371686;3601809;4821448;4637549;4071223 -5300;'142;Asia;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13580530.76;14295942;14554111;13396074;15225145;16339873;15852519 -5300;'142;Asia;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20902467.7;22785953;25084622;24110883;27905911;32556345;31087723 -5300;'142;Asia;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;136057.41;139397;135391;116866;137140;124009;96925 -5300;'142;Asia;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54569.14;63498;70107;52146;63819;66501;51544 -5300;'142;Asia;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2640252.63;2790852;2693228;2422971;2803846;2942472;2688966 -5300;'142;Asia;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2020720.83;2191011;2357083;2280075;2754253;3363863;3209429 -5300;'142;Asia;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1725771.12;1795102;1922008;1962332;1852062;2069992;2207820 -5300;'142;Asia;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3027517.8;3204866;3803538;3468503;2744795;3260268;3707271 -5300;'142;Asia;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3545909.31;3769400;3998365;3720099;4435618;4691996;4748236 -5300;'142;Asia;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6791171.46;7383891;8234355;8452634;10439710;11207977;10101490 -5300;'142;Asia;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5532540.3;5801191;5805119;5173806;5996479;6511404;6110572 -5300;'142;Asia;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9008488.47;9942687;10619539;9857525;11903334;14657736;14017989 -5301;'143;Central Asia;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2258756.61;2333460;2474987;2111991;2527466;2944563;2764313 -5301;'143;Central Asia;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55352.61;117821;131557;86681;143502;250122;310958 -5301;'143;Central Asia;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;687;4630;11032;4934;75807;78456;64045;102589;137047;142416;178904;243544;349487;513910;737965;1033020;1102550;945466;1028818;1528214;1758486;1843201;1848445;1383923;1445775;1523711.59;1657233;1715978;1378085;1715752;1890267;1753833 -5301;'143;Central Asia;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;625;4327;262;116;1502;1559;945;30651;44224;43197;9016;9523;9144;23250;9494;10812;14751;13775;20768;28755;36162;29108;28709;31742;34743;41251.37;84258;90623;49911;93230;149462;201749 -5301;'143;Central Asia;1861;Roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;486000;340000;331000;339000;315000;352600;73277;516280;723150;824410;564500;368300;620400;1001700;276100;406800;404800;484800;520900;522900;457900;492920;3949920;4019920;4093920;4093920;4130920;4173020;4249620;4272585;4249184;4220585 -5301;'143;Central Asia;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5174;1278;1322;151720;146207;0;3020;146373;132408;186445;371923;419837;478025;457030;578884;593908;373971;362978;745265;568686;507054;455263;454057;385236;389103;471763;641706;554519;567173;288147;420965 -5301;'143;Central Asia;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;515;103;103;5483;7179;617;9404;4576;4232;5170;8753;12682;18865;26187;39066;48246;28111;29002;43482;51506;51318;45664;28885;32539;33136.05;32185;43004;36834;35981;26979;26441 -5301;'143;Central Asia;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7112;46080;507;667;6110;5107;4600;8950;560160;559420;4316;2068;2310;2664;4505;4424;4765;4283;4366;2461;1543;54;54;553;466;563;114939;135464;132248;100727;54626;432 -5301;'143;Central Asia;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;572;4014;43;47;576;241;189;29518;30454;30407;300;202;436;391;815;811;835;481;486;515;169;5;5;19;322;266.23;9388;9948;4612;6200;2117;120 -5301;'143;Central Asia;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;486000;340000;331000;339000;315000;329300;12413;284730;542905;670425;412070;260309;444249;753850;151990;264190;264190;306227;337512;337512;160878;170535;1905823;1941823;1978823;1978823;1926780;1934780;1932780;1952980;1984739;1992980 -5301;'143;Central Asia;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;358946;405598;574720;454438;444425;153195;306519 -5301;'143;Central Asia;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31298.55;27295;37339;30514;28435;15035;17368 -5301;'143;Central Asia;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;319;111340;130305;127076;90275;48534;83 -5301;'143;Central Asia;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;212;9126;9598;4442;5479;1906;40 -5301;'143;Central Asia;1863;Roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23300;60864;231550;180245;153985;152430;107991;176151;247850;124110;142610;140610;178573;183388;185388;297022;322385;2044097;2078097;2115097;2115097;2204140;2238240;2316840;2319605;2264445;2227605 -5301;'143;Central Asia;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30157;66165;66986;100081;122748;134952;114446 -5301;'143;Central Asia;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1837.5;4890;5665;6320;7546;11944;9073 -5301;'143;Central Asia;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;244;3599;5159;5172;10452;6092;349 -5301;'143;Central Asia;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54.22;262;350;170;721;211;80 -5301;'143;Central Asia;1864;Wood fuel;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;486000;340000;331000;339000;315000;345000;56177;316080;533400;647000;398100;219200;331700;342400;209200;190600;189600;393500;430600;431600;396600;367600;3831600;3901600;3975600;3975600;3955600;3966100;4041300;3958028;3906299;3926028 -5301;'143;Central Asia;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2200;600;0;20;2000;851;619;2698;4500;4733;2;52;752;12;78;743;5225;56907;7871;7860;7860;1852;42273;41761;43408;42973;41707;38195 -5301;'143;Central Asia;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;31;70;70;60;38;42;138;138;56;1;3;124;7;16;123;3419;3101;436;428;446;49;3784;3744;3831;4008;4031;3564 -5301;'143;Central Asia;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;;;200;0;0;0;13000;13000;100;1215;1306;173;81;0;341;159;159;191;1434;0;0;0;0;51;371;214;231;275;276;170 -5301;'143;Central Asia;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;;;36;0;0;429;424;424;4;26;124;6;4;0;24;11;11;21;89;0;0;0;0;9;27;27;13;22;15;65 -5301;'143;Central Asia;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;486000;340000;331000;339000;315000;324000;9953;169820;398890;530235;290740;150149;218650;223227;107300;91200;91200;253437;279722;279722;143088;132735;1861023;1897023;1934023;1934023;1866980;1879980;1880980;1878980;1877407;1884980 -5301;'143;Central Asia;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1546;3777;3582;4036;3483;1658;44 -5301;'143;Central Asia;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;213;191;215;311;236;4 -5301;'143;Central Asia;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;308;56;0;36;36;73 -5301;'143;Central Asia;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;24;10;0;2;2;39 -5301;'143;Central Asia;1628;Wood fuel, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21000;46224;146260;134510;116765;107360;69051;113050;119173;101900;99400;98400;140063;150878;151878;253512;234865;1970577;2004577;2041577;2041577;2088620;2086120;2160320;2079048;2028892;2041048 -5301;'143;Central Asia;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;306;38496;38179;39372;39490;40049;38151 -5301;'143;Central Asia;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;3571;3553;3616;3697;3795;3560 -5301;'143;Central Asia;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;63;158;231;239;240;97 -5301;'143;Central Asia;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;17;13;20;13;26 -5301;'143;Central Asia;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2200;600;0;20;2000;851;619;2698;4500;4733;2;52;752;12;78;743;5225;56907;7871;7860;7860;;;;;;; -5301;'143;Central Asia;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;31;70;70;60;38;42;138;138;56;1;3;124;7;16;123;3419;3101;436;428;446;;;;;;; -5301;'143;Central Asia;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;;;200;0;0;0;13000;13000;100;1215;1306;173;81;0;341;159;159;191;1434;0;0;0;0;;;;;;; -5301;'143;Central Asia;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;;;36;0;0;429;424;424;4;26;124;6;4;0;24;11;11;21;89;0;0;0;0;;;;;;; -5301;'143;Central Asia;1865;Industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7600;17100;200200;189750;177410;166400;149100;288700;659300;66900;216200;215200;91300;90300;91300;61300;125320;118320;118320;118320;118320;175320;206920;208320;314557;342885;294557 -5301;'143;Central Asia;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5174;1278;1322;149520;145607;0;3000;144373;131557;185826;369225;415337;473292;457028;578832;593156;373959;362900;744522;563461;450147;447392;446197;377376;387251;429490;599945;511111;524200;246440;382770 -5301;'143;Central Asia;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;515;103;103;5431;7148;547;9334;4516;4194;5128;8615;12544;18809;26186;39063;48122;28104;28986;43359;48087;48217;45228;28457;32093;33087.05;28401;39260;33003;31973;22948;22877 -5301;'143;Central Asia;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7112;46045;507;667;5910;5107;4600;8950;547160;546420;4216;853;1004;2491;4424;4424;4424;4124;4207;2270;109;54;54;553;466;512;114568;135250;132017;100452;54350;262 -5301;'143;Central Asia;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;572;4013;43;47;540;241;189;29089;30030;29983;296;176;312;385;811;811;811;470;475;494;80;5;5;19;322;257.23;9361;9921;4599;6178;2102;55 -5301;'143;Central Asia;1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5300;2460;114910;144015;140190;121330;110160;225599;530623;44690;172990;172990;52790;57790;57790;17790;37800;44800;44800;44800;44800;59800;54800;51800;74000;107332;108000 -5301;'143;Central Asia;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;519;1249;1293;149491;143207;0;2900;109843;95147;156326;239903;293332;366632;420308;532654;541909;336658;339217;715666;525557;411364;411271;406504;348397;357400;401821;571138;450402;440942;151537;306475 -5301;'143;Central Asia;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;95;95;5423;6858;81;8819;4000;3680;4816;8255;12198;18457;24476;36630;44855;26103;27748;41370;44089;43891;41227;26374;30392;31261.55;27082;37148;30299;28124;14799;17364 -5301;'143;Central Asia;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7112;45912;440;600;5843;4800;4300;6150;96580;96210;208;385;445;1130;2062;2062;2062;2062;2125;2048;87;54;54;553;422;268;111032;130249;127076;90239;48498;10 -5301;'143;Central Asia;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;572;4003;38;42;535;226;173;7291;6428;6396;104;123;161;162;258;258;258;258;262;259;70;5;5;19;289;203;9102;9588;4442;5477;1904;1 -5301;'143;Central Asia;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;519;1249;1293;149491;143207;0;2900;109843;95147;156326;239903;293332;366632;420308;532654;541909;336658;339217;715666;525557;411364;411271;406504;348397;357400;401821;571138;450402;440942;151537;306475 -5301;'143;Central Asia;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;95;95;5423;6858;81;8819;4000;3680;4816;8255;12198;18457;24476;36630;44855;26103;27748;41370;44089;43891;41227;26374;30392;31261.55;27082;37148;30299;28124;14799;17364 -5301;'143;Central Asia;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7112;45912;440;600;5843;4800;4300;6150;96580;96210;208;385;445;1130;2062;2062;2062;2062;2125;2048;87;54;54;553;422;268;111032;130249;127076;90239;48498;10 -5301;'143;Central Asia;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;572;4003;38;42;535;226;173;7291;6428;6396;104;123;161;162;258;258;258;258;262;259;70;5;5;19;289;203;9102;9588;4442;5477;1904;1 -5301;'143;Central Asia;1867;Industrial roundwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2300;14640;85290;45735;37220;45070;38940;63101;128677;22210;43210;42210;38510;32510;33510;43510;87520;73520;73520;73520;73520;115520;152120;156520;240557;235553;186557 -5301;'143;Central Asia;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4655;29;29;29;2400;0;100;34530;36410;29500;129322;122005;106660;36720;46178;51247;37301;23683;28856;37904;38783;36121;39693;28979;29851;27669;28807;60709;83258;94903;76295 -5301;'143;Central Asia;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;473;8;8;8;290;466;515;516;514;312;360;346;352;1710;2433;3267;2001;1238;1989;3998;4326;4001;2083;1701;1825.5;1319;2112;2704;3849;8149;5513 -5301;'143;Central Asia;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;133;67;67;67;307;300;2800;450580;450210;4008;468;559;1361;2362;2362;2362;2062;2082;222;22;0;0;0;44;244;3536;5001;4941;10213;5852;252 -5301;'143;Central Asia;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;5;5;5;15;16;21798;23602;23587;192;53;151;223;553;553;553;212;213;235;10;0;0;0;33;54.22;259;333;157;701;198;54 -5301;'143;Central Asia;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;100;0;0;3900;11900;4706;2616;0;185;141;12;0;0;0;9788;7124;7836;7178;7142;156;328;590;405;317;1127 -5301;'143;Central Asia;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;6;7;5;93;75;97;70;1;44;28;9;1;1;0;1236;920;975;941;928.75;78;164;187;188;147;85 -5301;'143;Central Asia;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2500;4000;4000;3800;0;174;291;291;291;291;0;20;20;0;0;0;0;0;0;30;5;5;5;5;5 -5301;'143;Central Asia;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;733;1286;1303;170;10;110;181;181;181;181;0;1;1;0;0;0;0;0;0;15;2;2;2;2;2 -5301;'143;Central Asia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4655;29;29;29;2400;0;0;34530;36410;25600;117422;117299;104044;36720;45993;51106;37289;23683;28856;37904;28995;28997;31857;21801;22709;27513;28479;60119;82853;94586;75168 -5301;'143;Central Asia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;473;8;8;8;290;466;509;509;509;219;285;249;282;1709;2389;3239;1992;1237;1988;3998;3090;3081;1108;760;896.76;1241;1948;2517;3661;8002;5428 -5301;'143;Central Asia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;133;67;67;67;307;300;300;446580;446210;208;468;385;1070;2071;2071;2071;2062;2062;202;22;0;0;0;44;244;3506;4996;4936;10208;5847;247 -5301;'143;Central Asia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;5;5;5;15;16;21065;22316;22284;22;43;41;42;372;372;372;212;212;234;10;0;0;0;33;54.22;244;331;155;699;196;52 -5301;'143;Central Asia;1868;Sawlogs and veneer logs;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6500;4100;152850;148700;139760;131690;117520;229850;518250;43450;162950;162950;4650;4650;4650;4650;4660;4660;4660;4660;4660;4660;4660;4660;36860;46860;46860 -5301;'143;Central Asia;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4500;1230;90405;114020;110995;96065;87120;179642;423662;34895;137595;137595;1395;1395;1395;1395;1400;1400;1400;1400;1400;1400;1400;1400;33600;43600;43600 -5301;'143;Central Asia;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2870;62445;34680;28765;35625;30400;50208;94588;8555;25355;25355;3255;3255;3255;3255;3260;3260;3260;3260;3260;3260;3260;3260;3260;3260;3260 -5301;'143;Central Asia;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8900;24500;17200;15500;14580;12990;27100;64200;4900;19800;19800;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -5301;'143;Central Asia;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;12100;14000;13600;11800;10680;22281;52783;4200;17000;17000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -5301;'143;Central Asia;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8900;12400;3200;1900;2780;2310;4819;11417;700;2800;2800;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -5301;'143;Central Asia;1871;Other industrial roundwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1100;4100;22850;23850;22150;20130;18590;31750;76850;18550;33450;32450;86650;85650;86650;56650;120660;113660;113660;113660;113660;170660;202260;203660;277697;296025;247697 -5301;'143;Central Asia;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;800;1230;12405;15995;15595;13465;12360;23676;54178;5595;18395;18395;51395;56395;56395;16395;36400;43400;43400;43400;43400;58400;53400;50400;40400;63732;64400 -5301;'143;Central Asia;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;2870;10445;7855;6555;6665;6230;8074;22672;12955;15055;14055;35255;29255;30255;40255;84260;70260;70260;70260;70260;112260;148860;153260;237297;232293;183297 -5301;'143;Central Asia;1630;Wood charcoal;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;2;2;2;1;1;1;1;0;476;476;476;476;480;480;480;590;806;1819;1641;2053;3285;4491;4191 -5301;'143;Central Asia;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;65;119;119;46;46;57;67;244;263;412;411;388;439;1211;1241;1176;927;425;606;6595;1556;3510;3581;5355;7355;7108;9545;3086;3260;3839;6012 -5301;'143;Central Asia;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;31;28;28;11;11;15;16;70;79;135;113;159;174;577;756;900;524;272;448;4198;923;1836;2100;1877;2141.4;4422;6312;1512;1628;2671;3373 -5301;'143;Central Asia;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;50;50;0;0;0;70;0;0;0;0;2;2;0;0;0;14;0;0;7;38;71;71;74;74;5;56;61;735;719;1639 -5301;'143;Central Asia;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;13;13;0;0;0;2;17;17;0;0;4;4;1;0;0;8;0;0;4;87;179;179;181;180.55;3;35;36;271;518;466 -5301;'143;Central Asia;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;378;401;466;1106;1110;425;369;356;6873;8734;4778;18968;11468;13302;20590;16830;16830;5530;5530;15912;9175;93021;99019;94346;94346 -5301;'143;Central Asia;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;248;258;4659;4409;5843;192;742;1882;486;1865;1228;1055;1745;4576;4178;4910;2141;2419;2474;3854;14686;7105;11387;17806;14601;162406 -5301;'143;Central Asia;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;17;8;61;31;43;78;80;177;297;224;281;666;443;573;453;505;562;694.73;834;531;595;703;1193;1205 -5301;'143;Central Asia;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;429;429;51484;1484;1484;1484;1484;1609;429;429;345;345;312;312;0;0;0;0;0;0;608;1377;1222;1397;889;661 -5301;'143;Central Asia;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;1699;314;318;318;314;404;14;14;18;18;16;16;0;0;0;0;0;0;25;31;21;25;18;14 -5301;'143;Central Asia;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;7;9;5;9;67;11;11;5011;7700;4610;4600;4600;6345;13870;10110;10110;5510;5510;15912;7519;92055;99019;94346;94346 -5301;'143;Central Asia;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;77;150;200;222;222;235;206;206;16;378;392;115;229;392;343;351;2381;2993;4393;1598;1879;1912;3292;13931;5662;9256;14413;12127;159856 -5301;'143;Central Asia;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;10;12;12;12;6;5;5;18;29;27;49;106;194;163;189;447;410;458;264;333;386;518.38;779;484;538;529;1051;941 -5301;'143;Central Asia;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;311;311;311;311;311;311;311;366;366;366;366;366;366;311;311;344;344;311;311;0;0;0;0;0;0;607;579;322;297;287;287 -5301;'143;Central Asia;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;9;9;289;289;293;293;289;289;9;9;11;11;9;9;0;0;0;0;0;0;25;18;12;12;12;12 -5301;'143;Central Asia;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;348;394;457;1101;1101;358;358;345;1862;1034;168;14368;6868;6957;6720;6720;6720;20;20;0;1656;966;0;0;0 -5301;'143;Central Asia;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;24;38;26;36;4424;4203;5637;176;364;1490;371;1636;836;712;1394;2195;1185;517;543;540;562;562;755;1443;2131;3393;2474;2550 -5301;'143;Central Asia;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;2;2;2;11;3;56;13;14;51;31;71;103;61;92;219;33;115;189;172;176;176.36;55;47;57;174;142;264 -5301;'143;Central Asia;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118;118;51118;1118;1118;1118;1118;1243;118;118;1;1;1;1;0;0;0;0;0;0;1;798;900;1100;602;374 -5301;'143;Central Asia;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;1410;25;25;25;25;115;5;5;7;7;7;7;0;0;0;0;0;0;0;13;9;13;6;2 -5301;'143;Central Asia;1605;Sawdust (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;5 -5301;'143;Central Asia;1605;Sawdust (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;6 -5301;'143;Central Asia;1605;Sawdust (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;374 -5301;'143;Central Asia;1605;Sawdust (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;2 -5301;'143;Central Asia;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;48;56;56;76;56 -5301;'143;Central Asia;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;539;1287;1497;2445;873;382 -5301;'143;Central Asia;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;40;46;57;174;137;151 -5301;'143;Central Asia;1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;776;976;1176;77;76 -5301;'143;Central Asia;1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;13;15;19;6;6 -5301;'143;Central Asia;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -5301;'143;Central Asia;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1175;378;465;453;568;2218;2835;1821;2122;3601;4030;5619 -5301;'143;Central Asia;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;172;172;224;239;310;801.19;813;483;560;627;725;1088 -5301;'143;Central Asia;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;12;167;273;10568;212 -5301;'143;Central Asia;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;2;19;21;3227;26 -5301;'143;Central Asia;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -5301;'143;Central Asia;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1170;143;123;67;201;1018;2210;860;1122;2809;3022;3735 -5301;'143;Central Asia;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;129;78;62;43;127;578.71;644;252;330;407;487;535 -5301;'143;Central Asia;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;12;0;3;7901;45 -5301;'143;Central Asia;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;2;0;1;2433;7 -5301;'143;Central Asia;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -5301;'143;Central Asia;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;235;342;386;367;1200;625;961;1000;792;1008;1884 -5301;'143;Central Asia;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;94;162;196;183;222.49;169;231;230;220;238;553 -5301;'143;Central Asia;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;167;270;2667;167 -5301;'143;Central Asia;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;19;20;794;19 -5301;'143;Central Asia;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2300;205000;206400;249800;230100;238200;280284;156200;160700;171000;169400;168300;185728;197600;206100;745700;363400;369200;382000;365429;370768;298060;386000;451380;390619;555239;555539 -5301;'143;Central Asia;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;361;10138;4453;328334;282831;340353;318953;757804;753722;522231;730798;1500267;1784383;2385498;3036321;2656987;2425064;2480851;3826649;3795468;4360150;4618587;3947173;3845068;3785160;3943284;3244460;3137093;2970794;2767227;3411042 -5301;'143;Central Asia;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;105;3210;1696;24192;19303;7254;30715;31981;32724;26603;40501;94770;149761;211308;330131;396102;340383;348759;546844;668475;759691;724770;356478;410008;410822.54;454993;410129;399791;429206;531080;481628 -5301;'143;Central Asia;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;106;106;1028;2286;2708;1208;359330;358386;129841;127297;127859;128385;2715;2222;125;125;633;475;7385;11596;10422;1897;1795;6356;249557;221503;16961;84448;10342;8288 -5301;'143;Central Asia;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;7;7;133;168;197;107;10333;10047;4715;4677;4572;4572;256;234;18;17;199;265;3540;6115;5544;406;371;791.18;35874;32660;3513;9726;1905;4009 -5301;'143;Central Asia;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;113000;187934;229000;223600;217300;253791;115900;119575;150300;134000;121500;124864;137873;140673;686300;317000;322800;335600;338500;345600;276422;347300;406300;350800;342200;344900 -5301;'143;Central Asia;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;181;6728;1055;307378;252193;304668;283268;677734;673968;501743;714774;1431403;1699536;2300509;2988035;2598171;2390375;2444540;3794287;3769160;4326329;4581988;3901085;3806363;3637297;3762920;3162156;3082817;2922577;2717698;3375136 -5301;'143;Central Asia;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;36;1659;150;22135;16765;4574;27822;28045;28838;24747;38408;84965;137607;198199;322936;386140;334430;342667;539832;660743;750996;716744;350669;404796;400006.08;440521;399786;391423;418511;518777;475019 -5301;'143;Central Asia;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;106;106;999;2257;2679;1179;357915;357819;128314;126806;127214;127260;623;419;70;70;578;334;7378;11584;10422;529;138;4699;231814;210676;16377;79930;9010;3894 -5301;'143;Central Asia;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;7;7;125;160;189;99;9828;9839;4500;4473;4419;4369;51;45;7;7;189;55;3538;6110;5544;110;19;438.93;32524;30598;3317;8622;1436;1519 -5301;'143;Central Asia;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;92000;18466;20800;6500;20900;26493;40300;41125;20700;35400;46800;60864;59727;65427;59400;46400;46400;46400;26929;25168;21638;38700;45080;39819;213039;210639 -5301;'143;Central Asia;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;180;3410;3398;20956;30638;35685;35685;80070;79754;20488;16024;68864;84847;84989;48286;58816;34689;36311;32362;26308;33821;36599;46088;38705;147863;180364;82304;54276;48217;49529;35906 -5301;'143;Central Asia;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;69;1551;1546;2057;2538;2680;2893;3936;3886;1856;2093;9805;12154;13109;7195;9962;5953;6092;7012;7732;8695;8026;5809;5212;10816.46;14472;10343;8368;10695;12303;6609 -5301;'143;Central Asia;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;29;29;29;29;1415;567;1527;491;645;1125;2092;1803;55;55;55;141;7;12;0;1368;1657;1657;17743;10827;584;4518;1332;4394 -5301;'143;Central Asia;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;8;8;8;8;505;208;215;204;153;203;205;189;11;10;10;210;2;5;0;296;352;352.25;3350;2062;196;1104;469;2490 -5301;'143;Central Asia;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;100;0;0;0;0;0;0;600;0;0;331;846;1570;22088;21782;2780;2714;2714 -5301;'143;Central Asia;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;11;912;1024;1224;825;697;673;639;228;846;1770;1881;1805;4754;3507;1429;1757;2168;4961;3659;5637;3594;3634;2898;3534;3616;6588;4368;13941 -5301;'143;Central Asia;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;8;14;947;1242;1010;1016;229;175;232;233;343;425;686;1899;1879;1915;1134;1376;1692;3730;3775;5746;4318;4476.32;3591;2617;2592;3574;3825;7517 -5301;'143;Central Asia;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2;0;0;52;52;52;12;88;88;258;111;92;88;0;0;0;0;0;15;0;3573;3573;172;17;17;21;28;31;52;1276;13520 -5301;'143;Central Asia;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;0;0;14;14;0;7;3;5;29;23;3;3;0;0;0;0;4;27;6;2100;2100;38;4;3.73;13;17;19;58;539;6098 -5301;'143;Central Asia;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8400;0;0;12170;10375;10671;10045;2927;7230;24600;29000;119100;119200;620709;400000;153900;153900;305671;293486;486485;362005;444243;559674;566881;632881 -5301;'143;Central Asia;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;906;1013;2397;3291;20448;101174;95640;122924;260766;245026;329491;344906;1220653;755834;920599;1181633;1068200;923365;928709;1584861;1660174;1726454;1808956;1830421;1798271;1898798;2128402;2455748;2334986;2263515;2136981;2405944 -5301;'143;Central Asia;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;503;677;1013;918;3762;15887;12443;14887;29600;31188;44292;66031;106059;169228;228418;330586;336179;291918;323628;500092;584757;618001;631668;545103;546557;625440.3;695280;690801;496470;709935;658655;627061 -5301;'143;Central Asia;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;274;0;550;42;344;1132;969;3749;2144;1809;4716;3632;3437;5205;4683;4503;4417;4440;5151;3550;27220;7120;7019;6679;11004;21280;29970;43254;39694;43070;94554;253423 -5301;'143;Central Asia;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;0;156;6;62;454;60;446;512;532;766;624;602;671;1600;1868;1903;2014;2604;2838;18338;5959;5327;5022;5389;6767.44;6969;8744;6328;10739;40495;102264 -5301;'143;Central Asia;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;100;2900;6300;22600;101000;101000;306000;195700;80300;80300;80548;81409;19415;4264;7635;138675;161188;170488 -5301;'143;Central Asia;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;777;722;1187;1606;2039;2042;3802;6726;25604;24203;19660;46766;209995;70842;76609;86457;65849;52120;57766;97324;139544;154354;156659;147292;158784;163077;136368;148512;142213;150392;161186;253784 -5301;'143;Central Asia;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;462;465;464;551;1139;1171;715;1740;2602;2673;4623;14013;15243;25981;32960;49888;42870;27387;34797;54452;100557;96906;102497;91396;92833;92120.93;60345;63714;59090;79129;90218;136064 -5301;'143;Central Asia;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;274;0;423;0;0;788;788;788;1028;988;3104;2900;2854;2872;2902;866;928;1098;1382;807;25492;5653;6175;6173;6173;6174;2478;1207;708;1872;44886;146695 -5301;'143;Central Asia;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;0;103;0;0;392;16;392;399;398;449;474;437;438;488;461;606;736;1164;1235;16487;4678;4456;4454;4454;4454.78;1194;585;343;522;30343;83314 -5301;'143;Central Asia;1607;Laminated Veneer Lumber (LVL);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -5301;'143;Central Asia;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;756 -5301;'143;Central Asia;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;210 -5301;'143;Central Asia;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -5301;'143;Central Asia;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -5301;'143;Central Asia;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;45;274;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5301;'143;Central Asia;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;11;75;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5301;'143;Central Asia;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;900;1200;1000;3660;3300;3600;9200;9300;305700;199100;68400;68400;219923;206877;411858;291010;370068;375543;358500;415100 -5301;'143;Central Asia;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1068;15105;93280;62770;85770;160609;139298;234726;197067;830977;461395;569215;730718;698809;613453;616526;945922;987474;1063576;1106985;1093537;1097766;1073174;1110334;1256349;1222431;1171207;1231797;1498895 -5301;'143;Central Asia;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;240;2255;14038;7526;8548;17412;17290;25243;31979;54375;89114;115203;168104;173769;134244;162068;260426;271535;292295;294858;224934;236737;237794.25;235950;229840;194548;325767;321916;289104 -5301;'143;Central Asia;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;344;344;0;2800;512;512;600;0;95;1606;1487;3263;3087;3045;3534;1388;530;213;249;265;2632;11814;21495;33485;23504;16144;28478;65654 -5301;'143;Central Asia;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;62;0;14;32;32;104;0;33;174;337;597;505;512;694;593;832;433;432;436;557;1022.96;3570;5619;2781;3134;4174;8978 -5301;'143;Central Asia;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 -5301;'143;Central Asia;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;909;2020;2344;7750;12093;14712;20571;45849;36437;26489;32972;58477;98873;108625;106712;99876;92486;99884;102562;116797;113536;98793;78028;93959 -5301;'143;Central Asia;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117;257;279;961;1484;2109;2343;11620;13579;12718;18590;21527;31422;38726;32362;29681;26842;29578.66;27924;25532;23043;27065;26368;27413 -5301;'143;Central Asia;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;7;0;0;0;3;0;6;0;0;0;0;0;0;0;400;59;902;5925;3353;339;2884 -5301;'143;Central Asia;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;1;0;0;0;3;0;7;0;0;0;0;0;0;0;98.5;14;213;644;1183;131;738 -5301;'143;Central Asia;1874;Fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8400;0;0;12170;10375;9771;8845;1827;670;15000;2800;8900;8900;9009;5200;5200;5200;5200;5200;55212;66731;66540;45456;47193;47293 -5301;'143;Central Asia;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;246;936;617;3304;5852;29068;30428;73644;79505;72761;93323;167588;208885;254204;318609;267105;231303;221445;483138;434283;399899;438600;489716;449235;562663;779138;934090;856806;843123;665970;559306 -5301;'143;Central Asia;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;201;474;127;368;678;4202;4599;9469;10968;14147;19078;34957;52024;77912;100974;105961;117569;108173;163687;181243;190074;201951;199092;190145;265946.45;371061;371715;219789;277974;220153;174480 -5301;'143;Central Asia;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;127;42;0;0;181;161;604;309;1012;725;488;727;294;371;402;291;235;1355;1198;1254;595;241;2199;2892;5938;7660;9557;21701;20851;38190 -5301;'143;Central Asia;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;53;6;0;0;44;40;81;102;213;149;132;59;775;807;792;759;746;1010;1019;848;439;132;378;1191.2;2191;2327;2560;5900;5847;9234 -5301;'143;Central Asia;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 -5301;'143;Central Asia;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;801;12664;13944;31071;39792;50721;65464;136024;171148;155120;146741;102950;135220;128272;158643;140523;132478;142982;134898;113330;97818;127527;124064;106722;112663;136799;86653 -5301;'143;Central Asia;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;175;2759;3156;5884;7712;11170;15134;29231;43516;48830;53901;45699;44114;43619;64146;64387;61237;63910;52317;46312;33448.27;30778;27594;22286;33499;50420;43154 -5301;'143;Central Asia;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;10;447;152;565;249;249;486;72;132;28;26;29;59;276;199;140;23;23;2;0;212;124;662;331;9678 -5301;'143;Central Asia;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;2;28;52;139;75;74;1;265;294;254;233;237;258;600;248;153;31;31;1;0;34;27;131;123;2153 -5301;'143;Central Asia;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;21285;49498;40201;35956;45628;45628 -5301;'143;Central Asia;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;159;2559;2639;12547;10816;5586;10561;18721;25171;65206;80294;156975;93257;85954;293789;260790;254183;277554;334819;316756;453729;634136;790924;739485;720426;515745;460813 -5301;'143;Central Asia;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;625;625;2045;1884;1460;2236;3651;6196;22015;32429;58858;71848;62046;93720;112016;125570;135306;143419;140883;229498.83;331625;339520;194353;241758;166604;128188 -5301;'143;Central Asia;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;151;151;155;155;151;151;151;152;189;203;187;239;178;1176;918;1041;430;193;1995;2635;5938;7448;9426;21039;20520;28222 -5301;'143;Central Asia;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;38;38;49;49;38;38;38;38;275;276;282;293;276;513;418;598;281;96;313;1085.6;2191;2293;2530;5769;5724;7078 -5301;'143;Central Asia;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;4927;1633;4739;9500;1565;1565 -5301;'143;Central Asia;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;282;617;3304;4892;13845;13845;30026;28897;16454;17298;12843;12566;33878;91574;7180;2826;7219;30706;32970;13238;18064;19999;19149;11116;17475;19102;10599;10034;13426;11840 -5301;'143;Central Asia;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;116;127;368;445;818;818;1540;1372;1517;1708;2075;2312;7067;14644;1404;1607;2508;5821;4840;3267;2735;3356;2950;2999.36;8658;4601;3150;2717;3129;3138 -5301;'143;Central Asia;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;42;42;0;0;0;0;2;2;296;325;88;89;33;36;187;26;28;120;4;14;25;25;181;255;0;0;7;0;0;290 -5301;'143;Central Asia;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;6;6;0;0;0;0;4;1;36;36;20;20;235;237;256;233;233;239;1;2;5;5;34;104.6;0;0;3;0;0;3 -5301;'143;Central Asia;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;219;654;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5301;'143;Central Asia;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;190;358;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5301;'143;Central Asia;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;85;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5301;'143;Central Asia;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;47;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5301;'143;Central Asia;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1430;36;36;7;7;8;5000;10000;24900;24500;24500;24500;45900;54600;54600;54600;54100;58140;63388;65434;65740;62163;67420;69300;68300 -5301;'143;Central Asia;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;67;97;97;170;140;1213;1440;6800;10567;10299;8068;6946;8947;15681;15477;18444;19048;15144;27576;31859;20053;19515;23702;34720;37364;71324;57563;73750;73783;121215;129058 -5301;'143;Central Asia;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;7;17;17;36;26;541;533;865;917;2235;2299;1264;2032;4049;4436;5579;4565;6080;10423;11938;11288;13104;13449;15971;16892.75;27639;23953;26265;36727;71451;65658 -5301;'143;Central Asia;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;1040;340;4753;4743;5633;4281;3443;4715;3646;3646;4647;2846;2846;4628;2786;4099;5238;12622;15507;17783;29101;22270;31391;40913;44452;35537 -5301;'143;Central Asia;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;46;54;229;225;429;683;611;1662;1893;1893;2016;1827;1827;8641;2513;3373;3902;17092;20622;25248.4;26120;24611;26843;34325;42014;45464 -5301;'143;Central Asia;1878;Pulp for paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;9900;9500;9500;9500;15000;16900;16900;16900;16400;20216;24617;26829;27330;23613;29124;21842;20842 -5301;'143;Central Asia;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;30;30;0;986;986;4025;4396;4021;4041;1753;1421;4628;3798;3985;4086;4919;6981;10255;11380;9916;10640;11157;11135;23338;25008;30686;32310;56678;56994 -5301;'143;Central Asia;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;0;509;509;720;701;1868;1738;886;1161;2650;2669;3236;2670;3959;6097;8273;9430;10569;10379;10505;10461.31;17620;17124;18507;25401;54260;50311 -5301;'143;Central Asia;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;40;40;0;0;333;953;953;2199;2846;2846;2846;2846;2846;4628;2683;3241;3422;10905;13791;16018;16709;18489;20002;25276;29126;26167 -5301;'143;Central Asia;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;46;46;0;1;227;492;492;1345;1827;1827;1827;1827;1827;8641;2493;3244;3555;16765;20295;24884.68;24316;23904;25546;31479;39070;44229 -5301;'143;Central Asia;1875;Wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;5500;7400;7400;7400;7400;7400;7400;7400;7400;0;1128;2874;1874 -5301;'143;Central Asia;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;29;47;18;1193;1175;3967;4186;3622;4196;1912;6177;7642;9375;5733;4623;5466;7057;10536;11041;10397;10395;10988;10761;23078;25177;30374;31885;56466;56919 -5301;'143;Central Asia;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;26;17;682;665;661;575;1650;1936;1146;6261;5987;9837;5788;3491;4640;6113;8533;8997;11087;9981;10195;10154.43;17078;16931;18190;25187;54075;49820 -5301;'143;Central Asia;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;200;200;200;0;0;0;0;0;1207;1889;1890;1890;1;0;0;0;0;10;0;373;188 -5301;'143;Central Asia;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;57;57;57;0;0;0;0;0;1018;1309;1309;1309;0;0;0;0;0;1;22;487;370 -5301;'143;Central Asia;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;1128;2874;1874 -5301;'143;Central Asia;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;151;201;313;151;191;455;399 -5301;'143;Central Asia;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109.76;3;179;210;210;295;473 -5301;'143;Central Asia;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -5301;'143;Central Asia;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -5301;'143;Central Asia;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;;;;;;; -5301;'143;Central Asia;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;108;58;72;134;150;150;251;;;;;;; -5301;'143;Central Asia;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;5;0;0;0;0;0;0;0;275;40;77;92;107;108;109;;;;;;; -5301;'143;Central Asia;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;;;;;;; -5301;'143;Central Asia;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;;;;;;; -5301;'143;Central Asia;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;;;;;;; -5301;'143;Central Asia;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;21;4;0;0;1;0;0;0;0;;;;;;; -5301;'143;Central Asia;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;107;2;0;0;2;1;1;1;1;;;;;;; -5301;'143;Central Asia;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;;;;;;; -5301;'143;Central Asia;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;2;2;2;2;0;0;;;;;;; -5301;'143;Central Asia;1656;Chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;5500;7400;7400;7400;7400;7400;7400;7400;7400;0;0;0;0 -5301;'143;Central Asia;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;986;986;3926;4186;3622;3741;1435;1292;4578;3728;3885;3994;4765;6898;9841;10297;9650;10245;10634;10510;22841;24434;30206;31656;55928;56352 -5301;'143;Central Asia;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;509;509;618;575;1645;1415;586;944;2589;2551;2953;2550;3594;6000;7623;7882;10205;9871;9976;9931.39;17016;16541;17962;24940;53693;49234 -5301;'143;Central Asia;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;200;200;200;0;0;0;0;0;1207;1889;1890;1890;1;0;0;0;0;10;0;373;188 -5301;'143;Central Asia;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;57;57;57;0;0;0;0;0;1016;1307;1307;1307;0;0;0;0;0;0;21;486;369 -5301;'143;Central Asia;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 -5301;'143;Central Asia;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;396;396;1055;1640;2268;714;297;261;1443;585;813;523;298;1643;3721;955;738;618;718;618;3488;3783;5798;3611;4949;3462 -5301;'143;Central Asia;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;222;222;129;261;977;385;88;111;728;411;689;430;179;1148;2528;1065;789;684;702;684.31;2038;2072;2828;2378;3204;1655 -5301;'143;Central Asia;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 -5301;'143;Central Asia;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 -5301;'143;Central Asia;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;5500;7400;7400;7400;7400;7400;7400;7400;7400;0;0;0;0 -5301;'143;Central Asia;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;527;527;450;110;821;1882;386;848;3040;3101;3062;3456;4451;5236;6048;9307;8905;9607;9761;9737;19338;20640;24376;27866;50348;52535 -5301;'143;Central Asia;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;231;231;268;47;367;741;178;425;1815;2101;2247;2094;3386;4813;5057;6796;9377;9130;9163;9135.39;14921;14428;15066;22435;50121;47172 -5301;'143;Central Asia;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;100;100;100;0;0;0;0;0;1207;1889;1890;1890;1;0;0;0;0;0;0;188;185 -5301;'143;Central Asia;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;27;27;27;0;0;0;0;0;1016;1307;1307;1307;0;0;0;0;0;0;0;301;345 -5301;'143;Central Asia;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -5301;'143;Central Asia;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;155;15;11;32;179;631;355 -5301;'143;Central Asia;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111.69;57;41;68;127;368;407 -5301;'143;Central Asia;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;10;0;185;3 -5301;'143;Central Asia;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;21;185;24 -5301;'143;Central Asia;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;;;;;;; -5301;'143;Central Asia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2310;2310;214;545;500;170;89;30;0;0;0;2;71;35;0;0;0;;;;;;; -5301;'143;Central Asia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;202;202;101;55;33;43;35;15;0;0;0;5;36;17;3;3;3;;;;;;; -5301;'143;Central Asia;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;;;;;;; -5301;'143;Central Asia;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;;;;;;; -5301;'143;Central Asia;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;;;;;;; -5301;'143;Central Asia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;63;63;111;126;319;600;252;13;6;12;10;15;16;17;1;0;7;20;155;;;;;;; -5301;'143;Central Asia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;56;56;19;65;200;234;287;365;11;24;17;26;29;34;2;4;36;54;108;;;;;;; -5301;'143;Central Asia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;100;100;100;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -5301;'143;Central Asia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;30;30;30;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -5301;'143;Central Asia;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 -5301;'143;Central Asia;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;207;189;41;0;0;355;377;4785;3064;5647;1827;625;593;101;622;610;597;0;103;100;36;430;17;38;83;168 -5301;'143;Central Asia;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;173;156;43;0;0;373;412;5169;3398;7286;2728;939;771;73;831;1022;774;1;109;113.29;59;211;18;37;87;113 -5301;'143;Central Asia;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 -5301;'143;Central Asia;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;1;1;1;1 -5301;'143;Central Asia;1668;Pulp from fibres other than wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;9900;9500;9500;9500;9500;9500;9500;9500;9000;12816;17217;19429;19930;23613;27996;18968;18968 -5301;'143;Central Asia;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;0;0;0;99;210;399;200;218;29;50;70;79;88;46;25;341;949;116;245;272;474;296;261;329;463;295;243 -5301;'143;Central Asia;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;0;0;0;102;126;218;175;152;69;61;118;176;118;90;57;571;1455;256;399;419;420.16;601;404;335;251;272;604 -5301;'143;Central Asia;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;40;40;0;0;333;753;753;1999;2846;2846;2846;2846;2846;3421;794;1351;1532;10904;13791;16018;16709;18489;19992;25276;28753;25979 -5301;'143;Central Asia;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;46;46;0;1;227;435;435;1288;1827;1827;1827;1827;1827;7623;1184;1935;2246;16765;20295;24884.68;24316;23904;25546;31458;38584;43860 -5301;'143;Central Asia;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;22;10;200;200;200;0;88;243;707;1713;851;1149;3122;3720;2332;3571;4629;4681;9265;3453;2931;1961;1833;2112 -5301;'143;Central Asia;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;23;18;103;103;103;0;58;325;1089;1721;868;1228;2624;3220;1962;2101;2548;2642.72;2488;1139;1575;1147;1297;1506 -5301;'143;Central Asia;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;104;104;105;104;5392;3446;123;716;581;1080 -5301;'143;Central Asia;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;15;15;15;14.59;727;616;126;118;141;188 -5301;'143;Central Asia;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1430;36;36;7;7;8;5000;10000;15000;15000;15000;15000;30900;37700;37700;37700;37700;37924;38771;38605;38410;38550;38296;47458;47458 -5301;'143;Central Asia;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;67;67;67;140;140;227;454;2775;6171;6278;4027;5193;7526;11053;11679;14459;14962;10225;20595;21604;8673;9599;13062;23563;26229;47986;32555;43064;41473;64537;72064 -5301;'143;Central Asia;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;7;7;7;26;26;32;24;145;216;367;561;378;871;1399;1767;2343;1895;2121;4326;3665;1858;2535;3070;5466;6431.43;10019;6829;7758;11326;17191;15347 -5301;'143;Central Asia;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1000;300;4753;4743;5300;3328;2490;2516;800;800;1801;0;0;0;103;858;1816;1717;1716;1765;12392;3781;11389;15637;15326;9370 -5301;'143;Central Asia;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;8;229;224;202;191;119;317;66;66;189;0;0;0;20;129;347;327;327;363.72;1804;707;1297;2846;2944;1235 -5301;'143;Central Asia;1876;Paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2703;33415;61590;88323;71700;82800;94500;178927;202922;174571;209641;214496;243316;196677;249025;248376;248976;276629;283944;347947;328125;337425;310645;346838;352728 -5301;'143;Central Asia;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;139;4052;7544;1432;47605;43027;62590;70821;83024;90615;140630;163592;165223;205685;269590;291575;259031;271170;288382;334507;333912;321987;376847;401316;384561;390508;420602;510455;422417;445782;460186;451702 -5301;'143;Central Asia;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;160;3289;6649;2154;41348;34777;41978;45848;69643;73075;100073;125107;133652;168178;263204;318358;309551;275166;318023;423582;431850;393263;424215;429316;430976;426550.3;434889;536752;411816;496013;592167;538092 -5301;'143;Central Asia;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;507;57;57;575;539;1281;1459;1785;2902;3300;4447;4004;21011;9338;11104;15847;14564;13595;8479;14559;13191;12099;9302;8777;9105;7283;19642;15177;45671;57905;47517 -5301;'143;Central Asia;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;302;34;34;708;673;439;503;977;1650;2459;2996;2602;15543;4915;5992;9961;9410;15632;16453;11592;11469;11637;8971;7839;7979.26;5139;13946;8378;31727;58481;43093 -5301;'143;Central Asia;2042;Graphic papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;7704;8001;8500;11700;11400;11400;21300;11068;44139;48913;49034;48434;6308;57932;57932;57932;61047;63685;7146;5907;6837;3379;1534;1669 -5301;'143;Central Asia;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;3236;6081;734;32533;24506;40148;37402;61461;68205;76892;95212;111486;126021;147242;160957;146331;150293;165141;183056;180810;169102;176307;183614;175159;181016;248296;260971;191920;211759;207079;196611 -5301;'143;Central Asia;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;2675;5495;1198;27147;18624;21638;24335;46453;50275;50106;64817;85859;103218;127337;158207;150825;130774;159769;200570;208749;179561;193490;189833;185241;194968.91;226904;311089;192842;228627;253329;214115 -5301;'143;Central Asia;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;6;3;3;241;241;1006;1184;692;1813;1090;1758;852;9546;1465;2266;1542;1794;1079;1617;1458;1378;1383;649;348;201;726;6755;3306;5557;4180;2450 -5301;'143;Central Asia;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;6;3;3;234;234;8;66;767;1185;1503;2112;1537;12173;1605;1812;1546;2281;1161;6340;3516;3354;3348;1613;534;502.99;770;6318;1480;4077;16960;10732 -5301;'143;Central Asia;1671;Newsprint;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;26;56;48;178;234;234;230;230;230;435;384;2142;673;193;280;441;441 -5301;'143;Central Asia;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;19579;14679;24235;23535;27324;28680;34879;41087;45508;49164;60984;65203;55212;54098;56239;61643;60009;58203;56514;52165;50238;51413;68954;33990;29130;28123;27679;25710 -5301;'143;Central Asia;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;12077;7836;5633;10746;12183;13001;13534;15847;19779;24123;35071;42846;38146;30334;32756;43999;44281;41675;38918;33665;33185;33838.32;25293;19820;14268;13995;17288;14423 -5301;'143;Central Asia;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;171;171;1000;1078;283;267;267;267;2;0;741;404;0;0;0;0;32;0;0;0;148;0;0;0;0;21;39;48 -5301;'143;Central Asia;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;168;168;0;47;96;91;91;91;1;1;485;261;0;0;0;0;10;0;0;0;23;0;0;0;0;7;29;26 -5301;'143;Central Asia;1674;Printing and writing papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;7704;8001;8500;11700;11400;11400;21300;11042;44083;48865;48856;48200;6074;57702;57702;57702;60612;63301;5004;5234;6644;3099;1093;1228 -5301;'143;Central Asia;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;3236;6081;732;12954;9827;15913;13867;34137;39525;42013;54125;65978;76857;86258;95754;91119;96195;108902;121413;120801;110899;119793;131449;124921;129603;179342;226981;162790;183636;179400;170901 -5301;'143;Central Asia;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90;2675;5495;1196;15070;10788;16005;13589;34270;37274;36572;48970;66080;79095;92266;115361;112679;100440;127013;156571;164468;137886;154572;156168;152056;161130.59;201611;291269;178574;214632;236041;199692 -5301;'143;Central Asia;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;6;3;3;70;70;6;106;409;1546;823;1491;850;9546;724;1862;1542;1794;1079;1617;1426;1378;1383;649;200;201;726;6755;3306;5536;4141;2402 -5301;'143;Central Asia;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;6;3;3;66;66;8;19;671;1094;1412;2021;1536;12172;1120;1551;1546;2281;1161;6340;3506;3354;3348;1613;511;502.99;770;6318;1480;4070;16931;10706 -5301;'143;Central Asia;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7704;8001;8500;11000;11000;11000;11000;528;665;659;656;0;770;600;600;600;2523;2760;3132;2621;1050;930;100;235 -5301;'143;Central Asia;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;281;321;2750;7018;7427;7229;12045;10137;6136;3671;1986;1905;3578;3035;5537;5542;5125;4262;4733;4876;17129;19161;14976;25535;26339;18041 -5301;'143;Central Asia;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;50;1494;3899;4530;3635;6994;6272;4911;2983;1760;1231;2811;3189;7271;6711;6009;5260;5804;5916.32;13733;15264;11627;21753;30684;16135 -5301;'143;Central Asia;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;311;447;623;620;638;278;319;1656;1016;1000;1000;1000;1000;1000;1000;181;0;0;0;50;19;2;482;182 -5301;'143;Central Asia;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;573;1005;1309;1388;1399;684;736;1347;1022;1000;1000;1000;1000;1000;1000;3;34;0.05;1;41;8;1;341;359 -5301;'143;Central Asia;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;700;400;400;10300;10507;43409;48203;48200;48200;5304;57102;57102;57102;57187;57246;350;1203;3460;565;771;771 -5301;'143;Central Asia;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14232;13046;29716;30204;25142;35410;39696;51179;60388;69757;67586;72273;81059;91231;86203;76205;89423;99516;95319;99636;131002;129056;122107;121586;115754;112042 -5301;'143;Central Asia;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15945;12992;30862;30967;23207;33962;42560;54900;65676;87694;85816;74172;94601;118204;122022;96442;118852;119300;117731;126523.66;156359;165673;142695;156942;157995;138982 -5301;'143;Central Asia;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;96;96;100;450;195;190;377;159;480;705;7;465;403;346;320;282;118;118;570;4663;3194;5385;1466;1414 -5301;'143;Central Asia;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;86;85;64;331;120;151;359;165;476;857;52;5174;2464;2293;2250;1414;379;379.03;615;2042;1343;3848;11989;8400 -5301;'143;Central Asia;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;7;9;3;0;0;0;0;0;0;902;3295;1522;1410;2134;1604;222;222 -5301;'143;Central Asia;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1400;500;1671;2303;9444;11486;14237;15541;19734;22326;21547;22017;24265;27147;29061;29152;25245;27671;24869;25091;31211;78764;25707;36515;37307;40818 -5301;'143;Central Asia;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;547;1914;2408;8835;11373;16526;17923;21679;24684;25103;25037;29601;35178;35175;34733;29711;31608;28521;28690.61;31519;110332;24252;35937;47362;44575 -5301;'143;Central Asia;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;2;1003;100;421;17;9078;28;47;46;89;72;152;23;32;63;186;82;83;156;2042;93;149;2193;806 -5301;'143;Central Asia;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;17;12;4;39;302;17;11337;25;39;48;424;109;166;42;61;98;196;98;123.91;154;4235;129;221;4601;1947 -5301;'143;Central Asia;1675;Other paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2703;25711;53589;79823;60000;71400;83100;157627;191854;130432;160728;165462;194882;190369;191093;190444;191044;215582;220259;340801;322218;330588;307266;345304;351059 -5301;'143;Central Asia;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;816;1463;698;15072;18521;22442;33419;21563;22410;63738;68380;53737;79664;122348;130618;112700;120877;123241;151451;153102;152885;200540;217702;209402;209492;172306;249484;230497;234023;253107;255091 -5301;'143;Central Asia;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70;614;1154;956;14201;16153;20340;21513;23190;22800;49967;60290;47793;64960;135867;160151;158726;144392;158254;223012;223101;213702;230725;239483;245735;231581.39;207985;225663;218974;267386;338838;323977 -5301;'143;Central Asia;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;501;54;54;334;298;275;275;1093;1089;2210;2689;3152;11465;7873;8838;14305;12770;12516;6862;13101;11813;10716;8653;8429;8904;6557;12887;11871;40114;53725;45067 -5301;'143;Central Asia;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;296;31;31;474;439;431;437;210;465;956;884;1065;3370;3310;4180;8415;7129;14471;10113;8076;8115;8289;7358;7305;7476.27;4369;7628;6898;27650;41521;32361 -5301;'143;Central Asia;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;3300;3900;5100;5200;5900;8500;2027;268;94;96;122;42;41;105;442;442;1937;1974;43608;52065;55205;54302;54922;56303 -5301;'143;Central Asia;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97;798;911;1297;1725;1412;1888;1992;2737;3828;4487;5749;5829;8546;11074;10282;9883;10186;10377;12314;14468;10379;10917;12105;15398 -5301;'143;Central Asia;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;548;574;909;1194;1491;2099;2595;3838;6181;6116;7283;8931;14089;21393;21123;20468;20676;20782.05;20212;17125;10061;10808;16170;18434 -5301;'143;Central Asia;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;36;0;0;9;3;6439;2149;2021;2128;2013;2008;477;2017;2011;2068;69;88;68;1694;981;543;1250;5160;8079 -5301;'143;Central Asia;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;25;0;0;8;3;1449;929;951;1048;951;927;600;923;927;977;62;74;61.2;1993;1228;593;1348;7166;10505 -5301;'143;Central Asia;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1703;22411;49689;74723;54800;65500;74600;75500;83573;72120;67496;73850;81320;80428;81088;80102;80102;110107;113691;185961;163742;164453;230482;269306;276949 -5301;'143;Central Asia;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4780;14481;15342;52349;50379;40375;62680;111890;120240;102236;111904;113246;141946;140444;138644;186774;204297;195562;195660;155859;231353;216123;216288;233903;232509 -5301;'143;Central Asia;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2818;15516;15632;35180;38112;22991;35318;115400;135854;133208;123806;133568;197199;190878;170769;186937;196665;188126;188342.96;165499;192010;191117;234088;297273;276721 -5301;'143;Central Asia;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1021;1053;2081;2650;3100;4987;5685;6779;12133;10704;10470;6357;10022;9780;8250;8496;8249;8744;4697;11802;11232;38700;48378;36705 -5301;'143;Central Asia;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;158;436;729;845;1035;1865;2352;3193;7295;6041;13506;9469;7059;7135;6964;7076;6976;7159.67;1741;5571;5396;24625;32357;19165 -5301;'143;Central Asia;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1500;5500;22700;22900;16000;23000;31800;0;20;30;9;50;3120;1300;69776;67823;67823;97255;101969;116501;90777;91478;149910;173380;183810 -5301;'143;Central Asia;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3800;7090;8393;29166;28374;23604;44828;49593;52460;35224;36980;30786;46469;43908;44485;50036;53275;50492;50462;35586;65615;60484;42419;41173;59632 -5301;'143;Central Asia;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1923;3803;4344;9540;8492;8906;18794;22395;27238;21681;18674;19306;49622;34588;33950;33399;32910;30552;30528.22;20529;26545;27041;26623;30115;31457 -5301;'143;Central Asia;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;914;133;330;425;761;990;2721;3833;7438;7398;4384;3812;6904;6886;7441;7611;7418;7863;2845;10708;8587;28001;37340;30967 -5301;'143;Central Asia;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;100;22;132;196;353;446;1170;1873;4168;2990;1851;2317;3699;4320;4450;4510;4476;4600;1104;4863;3385;15827;21095;11677 -5301;'143;Central Asia;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;508;5686;14923;1900;2800;3100;68000;74991;64130;60809;68700;72000;73693;6030;6030;6030;565;237;270;254;112;9577;7738;7738 -5301;'143;Central Asia;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;2808;2816;14207;17041;3516;5054;47522;53490;51523;48838;62069;76281;82327;79469;116560;125438;123725;125619;92875;128958;118980;127211;151251;133824 -5301;'143;Central Asia;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97;8669;8704;21353;25976;4719;7699;81616;96201;96527;87430;100281;131392;134272;115512;128451;137217;133282;134293.4;117423;130632;130092;160213;219696;204843 -5301;'143;Central Asia;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;481;525;143;143;822;547;579;767;970;3556;1792;718;575;665;632;631;681;1235;231;2084;5672;3969;2868 -5301;'143;Central Asia;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;205;212;97;89;555;393;518;1486;2335;10999;6398;2536;2014;2365;2338;2330;2343.55;249;414;1526;6142;5576;5412 -5301;'143;Central Asia;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;0;0;0;0;0;31;30;9;0;1100;600;600;600;600;6638;5836;63541;68829;71163;70995;88188;85401 -5301;'143;Central Asia;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;800;4494;3934;5543;4590;9539;9205;10767;10788;11386;12476;14399;12949;9387;9748;14477;19511;17192;15294;24736;32108;32297;40670;35189;33668 -5301;'143;Central Asia;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;780;2991;2461;3403;3507;7647;7128;8995;10587;12161;10807;10339;11726;16891;16292;19508;21512;20063;19200.22;25814;31916;31532;43782;43065;35728 -5301;'143;Central Asia;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;106;437;1226;2035;2092;2520;2417;2367;3928;2117;2316;606;2271;2319;44;101;100;90;502;537;147;1013;1778;417 -5301;'143;Central Asia;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;57;209;385;547;569;787;789;802;1641;636;572;701;774;801;61;122;82;122.86;320;218;258;798;3249;377 -5301;'143;Central Asia;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16400;21300;36900;36900;39700;39700;7500;8531;7930;6669;5100;5100;4835;4682;5649;5649;5649;5649;5649;3882;1700;0;0;0 -5301;'143;Central Asia;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;89;199;3433;374;3716;3593;4008;3502;4103;13610;5992;6247;4822;4942;5701;6073;4153;4285;2662;4672;4362;5988;6290;5385 -5301;'143;Central Asia;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;53;123;884;137;1719;1697;2394;1828;2839;6895;3642;4459;5127;5015;5579;5026;4229;4321.13;1733;2917;2452;3470;4397;4693 -5301;'143;Central Asia;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;2;0;47;104;655;0;0;0;219;214;147;129;0;100;152;100;110;115;326;414;4014;5291;2453 -5301;'143;Central Asia;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;5;24;77;0;0;0;80;84;53;50;0;88;106;88;93.26;68;76;227;1858;2437;1699 -5301;'143;Central Asia;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;80100;108013;58218;93136;91490;113520;109900;109900;109900;110500;103538;104594;111232;106411;110930;22482;21076;17807 -5301;'143;Central Asia;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22442;28542;6284;6157;10092;16276;11950;15096;8466;7641;6636;4486;4246;3676;4112;3167;3484;3522;3654;3455;4133;3663;3995;6818;7099;7184 -5301;'143;Central Asia;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20340;18642;7126;6594;13878;20984;23311;27543;17872;20459;19337;14470;17403;16882;18134;21540;22665;22350;36933;22456.37;22274;16528;17796;22490;25395;28822 -5301;'143;Central Asia;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;275;275;36;36;129;30;49;39;39;38;44;53;38;28;1062;22;398;88;92;92;166;104;96;164;187;283 -5301;'143;Central Asia;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;431;437;27;29;227;31;27;56;29;36;72;137;38;44;94;53;348;220;255;255.4;635;829;909;1677;1998;2691 -5301;'143;Central Asia;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;410643.82;361771;403469;392466;387667;549881;473806 -5301;'143;Central Asia;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3272.28;8420;11392;9136;14986;41853;46527 -5301;'143;Central Asia;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13619.66;10184;11620;13504;14557;16560;14269 -5301;'143;Central Asia;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85.84;52;559;233;35;1603;4571 -5301;'143;Central Asia;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7012.49;7646;7853;10059;11174;11864;9945 -5301;'143;Central Asia;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12.81;14;523;208;26;1472;4459 -5301;'143;Central Asia;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6607.18;2538;3767;3445;3383;4696;4324 -5301;'143;Central Asia;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73.03;38;36;25;9;131;112 -5301;'143;Central Asia;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4740.7;6828;2998;2552;2366;5790;5299 -5301;'143;Central Asia;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99.02;2002;3684;491;488;5620;5015 -5301;'143;Central Asia;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5685.94;3995;7196;3978;7871;7611;8942 -5301;'143;Central Asia;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17.63;92;177;253;5383;11818;1657 -5301;'143;Central Asia;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140093.71;76457;115285;106652;47477;142187;123743 -5301;'143;Central Asia;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;450.85;1115;1746;1219;302;8673;15194 -5301;'143;Central Asia;1636;Glue-laminated timber (glulam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -5301;'143;Central Asia;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1 -5301;'143;Central Asia;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1 -5301;'143;Central Asia;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -5301;'143;Central Asia;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -5301;'143;Central Asia;1688;Cross-laminated timber (CLT or X-lam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -5301;'143;Central Asia;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;4 -5301;'143;Central Asia;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;31 -5301;'143;Central Asia;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -5301;'143;Central Asia;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -5301;'143;Central Asia;1684;I-beams (I-joists);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -5301;'143;Central Asia;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;926;1422 -5301;'143;Central Asia;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1353;1521 -5301;'143;Central Asia;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;22 -5301;'143;Central Asia;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;143;27 -5301;'143;Central Asia;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;231189.4;249417;241596;247519;285312;340813;255211 -5301;'143;Central Asia;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2310.3;4706;4109;6252;7754;6286;6971 -5301;'143;Central Asia;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3663.67;3161;11321;3278;8890;8899;9868 -5301;'143;Central Asia;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;218.89;240;713;287;388;457;2196 -5301;'143;Central Asia;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11650.74;11729;13453;14983;21194;28021;56474 -5301;'143;Central Asia;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89.75;213;404;401;636;7396;10923 -5301;'143;Central Asia;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;324401.2;314456;355540;341440;424047;504415;536674 -5301;'143;Central Asia;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10828.96;25143;29542;27634;35286;58807;62682 -5301;'143;Central Asia;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1895.99;1291;1818;1375;1602;2077;1412 -5301;'143;Central Asia;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;22;75;131;455;289 -5301;'143;Central Asia;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29190.67;27188;36163;42710;43534;64502;58979 -5301;'143;Central Asia;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25.64;185;534;302;389;7680;3990 -5301;'143;Central Asia;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39467.01;29413;34239;31267;36746;60610;47969 -5301;'143;Central Asia;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2781.76;7164;5761;5848;4692;4264;6815 -5301;'143;Central Asia;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93810.4;91136;103364;106127;121728;151212;168220 -5301;'143;Central Asia;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3108.43;10630;13746;13915;13397;18224;25989 -5301;'143;Central Asia;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;160037.13;165428;179956;159961;220437;226014;260094 -5301;'143;Central Asia;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4913.13;7164;9479;7494;16677;28184;25599 -5302;'030;Eastern Asia;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83000732;90840373;79898410;73830632;87498329.38;88969132;80489424 -5302;'030;Eastern Asia;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66820012;69460113;66028653;64251583;78405706.1;83005191.34;76519661.34 -5302;'030;Eastern Asia;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;354617;443735;576479;656948;722824;979044;1289706;1656552;1829051;2290154;2237043;2554899;4919547;5957767;4397746;5806016;6534732;7506374;11972157;12969139;9535589;9604493;9584128;10065720;9813970;11336308;15660945;18078921;22061777;21386757;22108498;23532411;27264523;29822171;35275216;34290607;32284492;24202223;27541297;32075194;28169561;28280654;30769060;35226696;34871261;37551752;42327230;43188482;37915337;49981947;62435265.2;58261768;61759293;65056652;58775602;58478688;67968622;75442858;64633275;59204725;71389200.38;73231436;66779882 -5302;'030;Eastern Asia;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;158332;164570;171416;216475;224363;275119;282605;353281;414489;468967;571195;717624;966061;1177196;1083086;1275671;1486194;1637949;1979297;2044932;2045401;1681962;1531141;1468456;1502461;1804812;1870304;2244177;2987288;3553277;3993429;4521020;4232844;5036746;6370764;5829773;6087930;5982272;5920514;7300143;6180118;5963851;7220078;9000837;10150908;12282379;14262871;14960330;12465814.3;15878950;18675905;19093575;20202593;21753331;20478240.05;20910908;20619593;21234369;19073758;17343713;21245693.1;24826979.34;21906011.34 -5302;'030;Eastern Asia;1861;Roundwood;5516;Production;m3;388859910;378680960;385404174;392328985;393136729;396300041;399613648;398255220;398026222;398908679;401606887;407085079;409304888;419211898;432450373;446380978;445727344;438942200;442228249;441104775;436208779;437526148;433773860;437442686;435677423;434847138;431648758;425973316;424979443;418302379;410703940;403383918;398930727;390509775;385167881;387642180;380694475;374175240;362632840;353454402;344548784;339155332;337265630;334371802;331189693;327936199;332704095;352197866;370561990;380196376;377284924;373057893;381892612;374773049;358410379;373424443;371269667;376610441;351953544;368050021;367084110;369223264;367006873 -5302;'030;Eastern Asia;1861;Roundwood;5616;Import quantity;m3;10156100;12155000;15174500;16543100;19258300;24645600;30626800;37011100;39423808;45962416;46192804;51002304;58460708;53704016;45591100;53940308;57160116;60790308;62625312;52044212;44374200;45488300;49364400;47360800;48653400;48590800;52165004;51132300;49567722;44946255;42312305;39662026;36863424;36611515;36426435;35214365;35465303;26480803;35474961;38443109;39559245;46193515;48002111;47917479;48956479;51422671;55786274;46322430;38026258;45579377;54090790;48672664;56323002;62159039;58797077;61456356;65022108;69035535;68333917;65522661;69011949.25;49068560;42764127 -5302;'030;Eastern Asia;1861;Roundwood;5622;Import value;1000 USD;260882;333049;423427;458120;539917;728422;966049;1210671;1342706;1619590;1619412;1765013;3408119;3742829;2719906;3796100;4284429;4726743;8065747;7392576;4864195;5054375;4632178;4745977;4339070;4395063;6097083;6009189;6833201;6232419;6056027;5863589;7770345;7024896;6759676;6303258;5191477;3400961;4294151;4922466;4402130;4555257;4908225;5584216;5902692;6692260;8335938;7166408;5714780;8052849;10389320.2;9080772;11395738;13995869;9605915;9906564;11386206;12525614;10719100;9420261;12971636.59;9981463;7502407 -5302;'030;Eastern Asia;1861;Roundwood;5916;Export quantity;m3;72400;83500;86800;154000;130800;137000;110800;91800;87900;91000;145000;137200;131600;110800;140000;128200;142500;125200;130700;153500;163300;166300;191000;208100;154900;146000;155200;209200;298100;444050;892163;974633;1002954;1090804;837953;824869;531240;360360;284854;261994;81912;505655;72365;194118;156421;382333;357222;242225;186452;149028;158767;173334;364280;703898;885932;942742;1149317;1246233;1196475;1434495;1485165.5;1421688;1640857 -5302;'030;Eastern Asia;1861;Roundwood;5922;Export value;1000 USD;2831;3160;3559;6618;5785;10134;9297;7728;9047;9439;19154;28434;32477;24217;27544;22800;28443;25586;30468;39889;39136;37981;43355;40781;33242;40517;51614;85858;54708;45459;77800;85158;101791;144104;159593;162292;105580;53140;33189;28369;17151;88833;13730;30318;23855;89177;115951;79639;39447;41354;48853;52254;72427;123421;118970;142234;191120;175210;161904;168839;204376;185685;175959 -5302;'030;Eastern Asia;1862;Roundwood, coniferous;5516;Production;m3;176526670;170317382;173683090;178764820;179661571;180810330;181027101;179653709;179120182;179279507;180970232;183935852;185386735;189391638;199115044;205390137;205520516;203770392;206789295;206708063;203463675;205497779;203403844;206689140;206980368;207632129;207287992;204401727;202321043;200653147;197027054;194856091;194962463;192449848;190525699;193339467;190162101;186490465;180188990;175548611;170401008;167905809;167857203;167117694;166275594;165222814;138850300;135672800;134777326;130703576;128708236;124764084;128664838;124470852;126851554;124872320;122792363;124527121;123494309;120561624;121477262;121236774;119682156 -5302;'030;Eastern Asia;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47470825;50363402;52484271;52409810;55274288;35994520;32446739 -5302;'030;Eastern Asia;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6391806;7091693;6714246;6332071;9138052;6290255;4732976 -5302;'030;Eastern Asia;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;994188;1144155;1130097;1386109;1460331;1354412;1625425 -5302;'030;Eastern Asia;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120430;134820;132196;151399;191431;159609;167414 -5302;'030;Eastern Asia;1863;Roundwood, non-coniferous;5516;Production;m3;212333240;208363578;211721084;213564165;213475158;215489711;218586547;218601511;218906040;219629172;220636655;223149227;223918153;229820260;233335329;240990841;240206828;235171808;235438954;234396712;232745104;232028369;230370016;230753546;228697055;227215009;224360766;221571589;222658400;217649232;213676886;208527827;203968264;198059927;194642182;194302713;190532374;187684775;182443850;177905791;174147776;171249523;169408427;167254108;164914099;162713385;193853795;216525066;235784664;249492800;248576688;248293809;253227774;250302197;231558825;248552123;248477304;252083320;228459235;247488397;245606848;247986490;247324717 -5302;'030;Eastern Asia;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17551283;18672133;15849646;13112851;13737661.25;13074040;10317388 -5302;'030;Eastern Asia;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4994400;5433921;4004854;3088190;3833584.58;3691208;2769431 -5302;'030;Eastern Asia;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;155129;102078;66378;48386;24834.5;67276;15432 -5302;'030;Eastern Asia;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70690;40390;29708;17440;12945;26076;8545 -5302;'030;Eastern Asia;1864;Wood fuel;5516;Production;m3;301832910;301550952;302480174;302972985;303616721;304372033;305323640;306217212;307227214;309164079;310501887;317394071;319382880;327295890;328432373;339279978;337749336;330345184;328240241;325113759;326114771;323312116;318469844;310997662;305117415;302906138;298717750;294307000;294904135;295228571;290498840;281503010;272620811;264741975;258617281;254201980;249786775;244443140;240295440;236265302;232192384;228189232;224205530;220282402;216443293;212669299;208931595;205264766;201666790;196178876;192843652;189476995;186293827;185142150;182394509;180676675;179235075;176427564;174016667;173318144;170704233;169093387;168071996 -5302;'030;Eastern Asia;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;55019;131336;51520;49487;7920;2104;2612;3365;3404;9100;7620;7812;8254;7231;11301;26289;14778;5127;5069;5846;6077;10779;12666;13453;2811;6978;6039;5997;22623;25492.25;25485;26965 -5302;'030;Eastern Asia;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;2800;5271;4956;4884;626;767;694;686;1357;2040;1268;694;1160;1126;1842;18833;1456;1192;1331;2513;1706;3487;1746;1945;1183;1263;1101;1386;2924;7554.58;8244;10893 -5302;'030;Eastern Asia;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;;;;;;;;;;;;;33141;103350;34271;26100;9306;11190;8940;8068;1181;10500;5600;4364;6515;2435;2079;1334;571;1945;2294;2183;2959;1722;1984;1695;927;1226;1817;745;1496;2008.5;1383;1677 -5302;'030;Eastern Asia;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;;;;;;;;;;;;;1764;3934;2360;2233;1119;1523;4056;3657;245;1292;827;740;799;621;423;533;518;377;264;749;897;303;895;1098;345;273;662;850;668;871;794;645 -5302;'030;Eastern Asia;1627;Wood fuel, coniferous;5516;Production;m3;116217670;117010374;117629090;118673820;119500563;120334322;121210093;122100701;122970174;124646907;126272232;129143844;130183727;133463630;134037044;138512137;138071508;135176384;134427287;133138055;133628667;132368755;130058836;127026124;124677360;123791129;122087984;120250211;120610535;120665439;118557354;114945583;111388755;108204948;105737199;103739367;101976101;100032465;98351590;96932411;95342108;93776309;92180703;90607094;89068794;87576714;86076400;84604500;83160326;81143576;79802584;78234743;77083585;75893685;74387499;73034614;71810611;70596784;69302972;68275287;67192925;65969437;65694819 -5302;'030;Eastern Asia;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3634;2329;878;17792;17674;17567;17546 -5302;'030;Eastern Asia;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;895;495;463;1291;1246;1325;1136 -5302;'030;Eastern Asia;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;345;521;30;10;19;69;173 -5302;'030;Eastern Asia;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;60;70;12;9;56;95 -5302;'030;Eastern Asia;1628;Wood fuel, non-coniferous;5516;Production;m3;185615240;184540578;184851084;184299165;184116158;184037711;184113547;184116511;184257040;184517172;184229655;188250227;189199153;193832260;194395329;200767841;199677828;195168800;193812954;191975704;192486104;190943361;188411008;183971538;180440055;179115009;176629766;174056789;174293600;174563132;171941486;166557427;161232056;156537027;152880082;150462613;147810674;144410675;141943850;139332891;136850276;134412923;132024827;129675308;127374499;125092585;122855195;120660266;118506464;115035300;113041068;111242252;109210242;109248465;108007010;107642061;107424464;105830780;104713695;105042857;103511308;103123950;102377177 -5302;'030;Eastern Asia;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3344;3710;5119;4831;7818.25;7918;9419 -5302;'030;Eastern Asia;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;368;606;923;1633;6308.59;6919;9757 -5302;'030;Eastern Asia;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;881;1296;715;1486;1989.5;1314;1504 -5302;'030;Eastern Asia;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;237;602;780;656;862;738;550 -5302;'030;Eastern Asia;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;55019;131336;51520;49487;7920;2104;2612;3365;3404;9100;7620;7812;8254;7231;11301;26289;14778;5127;5069;5846;6077;10779;12666;13453;2811;;;;;;; -5302;'030;Eastern Asia;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;2800;5271;4956;4884;626;767;694;686;1357;2040;1268;694;1160;1126;1842;18833;1456;1192;1331;2513;1706;3487;1746;1945;1183;;;;;;; -5302;'030;Eastern Asia;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;;;;;;;;;;;;;33141;103350;34271;26100;9306;11190;8940;8068;1181;10500;5600;4364;6515;2435;2079;1334;571;1945;2294;2183;2959;1722;1984;1695;927;;;;;;; -5302;'030;Eastern Asia;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;;;;;;;;;;;;;1764;3934;2360;2233;1119;1523;4056;3657;245;1292;827;740;799;621;423;533;518;377;264;749;897;303;895;1098;345;;;;;;; -5302;'030;Eastern Asia;1865;Industrial roundwood;5516;Production;m3;87027000;77130008;82924000;89356000;89520008;91928008;94290008;92038008;90799008;89744600;91105000;89691008;89922008;91916008;104018000;107101000;107978008;108597016;113988008;115991016;110094008;114214032;115304016;126445024;130560008;131941000;132931008;131666316;130075308;123073808;120205100;121880908;126309916;125767800;126550600;133440200;130907700;129732100;122337400;117189100;112356400;110966100;113060100;114089400;114746400;115266900;123772500;146933100;168895200;184017500;184441272;183580898;195598785;189630899;176015870;192747768;192034592;200182877;177936877;194731877;196379877;200129877;198934877 -5302;'030;Eastern Asia;1865;Industrial roundwood;5616;Import quantity;m3;9995500;12040900;15087800;16479400;19209300;24581000;30574100;36960900;39386508;45917616;46149104;50957904;58434908;53683216;45576300;53931108;57152716;60785708;62621512;52040812;44370800;45484900;49361000;47357400;48653200;48590700;52164904;51132200;49567622;44946155;42312205;39607007;36732088;36559995;36376948;35206445;35463199;26478191;35471596;38439705;39550145;46185895;47994299;47909225;48949248;51411370;55759985;46307652;38021131;45574308;54084944;48666587;56312223;62146373;58783624;61453545;65015130;69029496;68327920;65500038;68986457;49043075;42737162 -5302;'030;Eastern Asia;1865;Industrial roundwood;5622;Import value;1000 USD;259092;331749;422221;457282;539189;727622;965336;1209897;1342132;1618931;1618157;1764220;3407713;3742429;2719527;3795778;4284131;4726544;8065590;7392395;4864014;5054194;4631997;4745796;4339063;4395061;6097078;6009186;6833198;6232416;6056024;5860789;7765074;7019940;6754792;6302632;5190710;3400267;4293465;4921109;4400090;4553989;4907531;5583056;5901566;6690418;8317105;7164952;5713588;8051518;10386807.2;9079066;11392251;13994123;9603970;9905381;11384943;12524513;10717714;9417337;12964082;9973219;7491514 -5302;'030;Eastern Asia;1865;Industrial roundwood;5916;Export quantity;m3;66100;66900;78700;148100;125300;132400;106200;90700;85800;86900;142300;134700;130500;103400;133900;124100;138400;121100;126600;153500;163300;166300;191000;208100;154900;146000;155200;209200;298100;444050;892163;941492;899604;1056533;811853;815563;520050;351420;276786;260813;71412;500055;68001;187603;153986;380254;355888;241654;184507;146734;156584;170375;362558;701914;884237;941815;1148091;1244416;1195730;1432999;1483157;1420305;1639180 -5302;'030;Eastern Asia;1865;Industrial roundwood;5922;Export value;1000 USD;2771;2975;3480;6570;5720;10085;9248;7714;9028;9398;19135;28414;32456;23935;27352;22655;28298;25441;30323;39889;39136;37981;43355;40781;33242;40517;51614;85858;54708;45459;77800;83394;97857;141744;157360;161173;104057;49084;29532;28124;15859;88006;12990;29519;23234;88754;115418;79121;39070;41090;48104;51357;72124;122526;117872;141889;190847;174548;161054;168171;203505;184891;175314 -5302;'030;Eastern Asia;1866;Industrial roundwood, coniferous;5516;Production;m3;60309000;53307008;56054000;60091000;60161008;60476008;59817008;57553008;56150008;54632600;54698000;54792008;55203008;55928008;65078000;66878000;67449008;68594008;72362008;73570008;69835008;73129024;73345008;79663016;82303008;83841000;85200008;84151516;81710508;79987708;78469700;79910508;83573708;84244900;84788500;89600100;88186000;86458000;81837400;78616200;75058900;74129500;75676500;76510600;77206800;77646100;52773900;51068300;51617000;49560000;48905652;46529341;51581253;48577167;52464055;51837706;50981752;53930337;54191337;52286337;54284337;55267337;53987337 -5302;'030;Eastern Asia;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26215813;23586405;22403836;21966052;21503144;22480945;22091445;22027489;16499446;22803136;24519674;26927148;33346552;33661363;34121401;34390593;36223900;39419173;32978304;28876684;33881274;41750463;36364437;43134738;45433110;43395306;45941978;47467191;50361073;52483393;52392018;55256614;35976953;32429193 -5302;'030;Eastern Asia;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3655353;3215634;3342156;4134517;3770701;4018797;3740421;3140591;1927114;2352912;2521400;2459957;2755460;2779098;3403830;3388940;3880376;4709796;3934706;3502827;4762788;6429352.2;5154117;6690469;6961480;4846330;5649531;6390911;7091198;6713783;6330780;9136806;6288930;4731840 -5302;'030;Eastern Asia;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58889;300557;349941;318561;414088;177839;374313;329897;210462;186820;184652;44998;45300;49011;73115;105785;198531;143368;137288;137185;94764;112866;135736;300289;633874;827024;753567;993843;1143634;1130067;1386099;1460312;1354343;1625252 -5302;'030;Eastern Asia;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8382;14931;24356;27439;35280;39516;24505;40672;14187;12205;11296;4124;4054;4002;7977;10116;16104;12542;13429;15827;13152;17981;20001;35784;76445;90613;82319;120394;134760;132126;151387;191422;159553;167319 -5302;'030;Eastern Asia;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26215813;23586405;22403836;21966052;21503144;22480945;22091445;22027489;16499446;22803136;24519674;26927148;33346552;33661363;34121401;34390593;36223900;39419173;32978304;28876684;33881274;41750463;36364437;43134738;45433110;43395306;45941978;47467191;50361073;52483393;52392018;55256614;35976953;32429193 -5302;'030;Eastern Asia;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3655353;3215634;3342156;4134517;3770701;4018797;3740421;3140591;1927114;2352912;2521400;2459957;2755460;2779098;3403830;3388940;3880376;4709796;3934706;3502827;4762788;6429352.2;5154117;6690469;6961480;4846330;5649531;6390911;7091198;6713783;6330780;9136806;6288930;4731840 -5302;'030;Eastern Asia;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58889;300557;349941;318561;414088;177839;374313;329897;210462;186820;184652;44998;45300;49011;73115;105785;198531;143368;137288;137185;94764;112866;135736;300289;633874;827024;753567;993843;1143634;1130067;1386099;1460312;1354343;1625252 -5302;'030;Eastern Asia;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8382;14931;24356;27439;35280;39516;24505;40672;14187;12205;11296;4124;4054;4002;7977;10116;16104;12542;13429;15827;13152;17981;20001;35784;76445;90613;82319;120394;134760;132126;151387;191422;159553;167319 -5302;'030;Eastern Asia;1867;Industrial roundwood, non-coniferous;5516;Production;m3;26718000;23823000;26870000;29265000;29359000;31452000;34473000;34485000;34649000;35112000;36407000;34899000;34719000;35988000;38940000;40223000;40529000;40003008;41626000;42421008;40259000;41085008;41959008;46782008;48257000;48100000;47731000;47514800;48364800;43086100;41735400;41970400;42736208;41522900;41762100;43840100;42721700;43274100;40500000;38572900;37297500;36836600;37383600;37578800;37539600;37620800;70998600;95864800;117278200;134457500;135535620;137051557;144017532;141053732;123551815;140910062;141052840;146252540;123745540;142445540;142095540;144862540;144947540 -5302;'030;Eastern Asia;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18730342;18725800;17203171;14766036;15056851;13896003;13115000;13435710;9978745;12668460;13920031;12622997;12839343;14332936;13787824;14558655;15187470;16340812;13329348;9144447;11693034;12334481;12302150;13177485;16713263;15388318;15511567;17547939;18668423;15844527;13108020;13729843;13066122;10307969 -5302;'030;Eastern Asia;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2577063;2840390;2518633;3630557;3249239;2735995;2562211;2050119;1473153;1940553;2399709;1940133;1798529;2128433;2179226;2512626;2810042;3607309;3230246;2210761;3288730;3957455;3924949;4701782;7032643;4757640;4255850;4994032;5433315;4003931;3086557;3827276;3684289;2759674 -5302;'030;Eastern Asia;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;385161;591606;591551;581043;642445;634014;441250;190153;140958;89966;76161;26414;454755;18990;114488;48201;181723;212520;104366;47322;51970;43718;34639;62269;68040;57213;188248;154248;100782;65663;46900;22845;65962;13928 -5302;'030;Eastern Asia;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37077;62869;59038;70418;106464;117844;136668;63385;34897;17327;16828;11735;83952;8988;21542;13118;72650;102876;65692;23243;27938;30123;31356;36340;46081;27259;59570;70453;39788;28928;16784;12083;25338;7995 -5302;'030;Eastern Asia;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17442333;17134279;15610637;13287638;13767759;12584000;11848400;11729057;8573644;11255645;11923452;10991454;10542848;10845736;10437631;9646874;9811725;10102237;9067297;7211295;9489321;9550815;9572721;10332272;12835137;12269681;10808125;10951461;11798145;10078779;8906783;8189140;7562896;5972541 -5302;'030;Eastern Asia;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2358672;2581880;2258303;3342576;2980164;2433274;2326904;1671103;1200683;1660078;1822854;1548051;1395675;1567872;1711744;1676363;1906134;2430475;2281521;1757978;2699624;3211801;3205689;3985603;5976918;3753022;3151125;3514472;3761161;2854471;2055422;2351969;1988028;1590269 -5302;'030;Eastern Asia;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;67977;14164;62299;10650;10395;15950;25850;15335;20862;10796;34601;99688;66655;44003;31838;15675;61586;9587 -5302;'030;Eastern Asia;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;47804;15647;48292;10326;11863;16742;21553;15134;22355;9976;16280;46917;27981;17930;11083;9210;23280;5360 -5302;'030;Eastern Asia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1288009;1591521;1592534;1478398;1289092;1312003;1266600;1706653;1405101;1412815;1996579;1631543;2296495;3487200;3350193;4911781;5375745;6238575;4262051;1933152;2203713;2783666;2729429;2845213;3878126;3118637;4703442;6596478;6870278;5765748;4201237;5540703;5503226;4335428 -5302;'030;Eastern Asia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;218391;258510;260330;287981;269075;302721;235307;379016;272470;280475;576855;392082;402854;560561;467482;836263;903908;1176834;948725;452783;589106;745654;719260;716179;1055725;1004618;1104725;1479560;1672154;1149460;1031135;1475307;1696261;1169405 -5302;'030;Eastern Asia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;369279;558249;550108;551899;426245;424814;120750;115112;66650;86645;55951;11550;15130;10920;91840;34084;113746;198356;42067;36672;41575;27768;8789;46934;47178;46417;153647;54560;34127;21660;15062;7170;4376;4341 -5302;'030;Eastern Asia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35020;58563;52908;65160;41939;41966;33218;19852;13550;16145;8045;6218;6141;4523;10792;5849;24846;87229;17400;12917;16075;13381;9803;21206;23726;17283;43290;23536;11807;10998;5701;2873;2058;2635 -5302;'030;Eastern Asia;1868;Sawlogs and veneer logs;5516;Production;m3;53710000;50306008;52642000;56966000;57362008;58177008;58091008;56553008;54517008;52325600;52116000;52579008;53293008;52321008;65384000;66561000;66759008;67650016;71458008;70570016;65069000;67152024;66837016;74225016;75191000;75440000;75345000;74145308;72436300;65727800;64187100;66766908;70774916;71484800;74171600;77935200;75926700;74656100;70651400;67668100;65134400;63881100;65131100;65697400;66004400;66476900;61687500;69141100;81881200;88981500;82465272;78731898;105322785;95526899;97630870;107871768;105010592;104725877;82841877;99995877;101291877;103472877;101799877 -5302;'030;Eastern Asia;1868;Sawlogs and veneer logs;5616;Import quantity;m3;9456400;11455400;14550600;15812900;18616700;23579900;29538500;35981900;38472508;44807616;44989004;49750004;57029908;52180816;44438500;52594008;55329016;59251308;60466612;50212312;41808300;43567200;46583500;44874900;46055900;45382000;49037004;49782800;48059522;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5302;'030;Eastern Asia;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;247669;318650;412271;444420;528391;711029;946642;1189579;1325277;1599207;1596138;1740463;3368735;3704418;2685467;3762548;4230810;4684397;7981185;7279776;4775441;4993982;4553725;4668364;4258768;4304495;6002013;5947183;6706726;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5302;'030;Eastern Asia;1868;Sawlogs and veneer logs;5916;Export quantity;m3;55900;60800;73800;136500;116000;117200;99700;84300;76800;78900;132400;130500;129500;102000;122200;121200;131200;111800;121100;145600;153500;155300;172700;190900;141700;132800;150600;209200;298100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5302;'030;Eastern Asia;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;2215;2583;3189;6355;5383;9211;8814;7272;8350;8779;18346;28017;32294;23683;24972;22245;26919;23277;29407;38357;37335;36386;40265;37904;31123;38398;50245;85858;54708;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5302;'030;Eastern Asia;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;39080000;37782008;39808000;42667000;42810008;43023008;42288008;40472008;39101008;37558600;37025000;37728008;38058008;36668008;44966000;45750000;45640008;46309008;49051008;48644008;44757000;46635016;45936008;50313008;51067000;51269000;51690000;50874508;48323500;46528700;45457700;47238508;49979708;50680900;52087500;54583100;53724000;52213000;49658400;47744200;45624900;44725500;45624500;46245600;46639800;46987100;29923900;28107300;28554000;28119000;26905652;25192341;31503253;28937167;32695055;32212706;29516752;31237337;31728337;29873337;31575337;32189337;30505337 -5302;'030;Eastern Asia;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;2811900;3486700;4972600;6058400;7539900;9256100;13237400;17588300;17229300;20142108;17881900;20243200;22206800;18972408;18310900;20136808;21019608;22459000;23490708;19321904;16223800;18894900;21894600;22636000;24208400;24341100;26156004;27221700;27454608;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5302;'030;Eastern Asia;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;85629;107923;149447;190292;234007;300297;450292;635555;658085;795624;689009;841468;1524850;1549221;1436481;1604328;1869344;2017885;3063346;2937189;1915912;2007115;2051147;2110775;2219017;2272315;2787203;3073527;3842185;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5302;'030;Eastern Asia;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;30000;35100;49800;105700;84100;86900;78400;57600;51600;43300;93100;76000;69500;49500;73100;75100;76400;44800;49400;29300;48500;41300;55600;53800;22900;20600;29300;14600;131900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5302;'030;Eastern Asia;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;1292;1619;2321;4893;4144;7814;7867;6288;7182;7426;15443;21474;24781;16560;15033;14207;15062;8151;7069;5772;8696;7755;11198;9935;5903;5781;8976;5803;20816;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5302;'030;Eastern Asia;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;14630000;12524000;12834000;14299000;14552000;15154000;15803000;16081000;15416000;14767000;15091000;14851000;15235000;15653000;20418000;20811000;21119000;21341008;22407000;21926008;20312000;20517008;20901008;23912008;24124000;24171000;23655000;23270800;24112800;19199100;18729400;19528400;20795208;20803900;22084100;23352100;22202700;22443100;20993000;19923900;19509500;19155600;19506600;19451800;19364600;19489800;31763600;41033800;53327200;60862500;55559620;53539557;73819532;66589732;64935815;75659062;75493840;73488540;51113540;70122540;69716540;71283540;71294540 -5302;'030;Eastern Asia;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;6644500;7968700;9578000;9754500;11076800;14323800;16301100;18393600;21243208;24665508;27107104;29506804;34823108;33208408;26127600;32457200;34309408;36792308;36975904;30890408;25584500;24672300;24688900;22238900;21847500;21040900;22881000;22561100;20604914;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5302;'030;Eastern Asia;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;162040;210727;262824;254128;294384;410732;496350;554024;667192;803583;907129;898995;1843885;2155197;1248986;2158220;2361466;2666512;4917839;4342587;2859529;2986867;2502578;2557589;2039751;2032180;3214810;2873656;2864541;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5302;'030;Eastern Asia;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;25900;25700;24000;30800;31900;30300;21300;26700;25200;35600;39300;54500;60000;52500;49100;46100;54800;67000;71700;116300;105000;114000;117100;137100;118800;112200;121300;194600;166200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5302;'030;Eastern Asia;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;923;964;868;1462;1239;1397;947;984;1168;1353;2903;6543;7513;7123;9939;8038;11857;15126;22338;32585;28639;28631;29067;27969;25220;32617;41269;80055;33892;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5302;'030;Eastern Asia;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13217000;12392000;11987000;10780000;11168000;11292000;11632000;11901000;11920000;18579000;24915000;27403000;26996000;31868000;31681000;42889000;34688000;38874000;40622000;41603000;45070000;44935000;44541000;44677000;45445000;45679000 -5302;'030;Eastern Asia;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7638000;7250000;7060000;6368000;6718000;6848000;6945000;7379000;7391000;7972000;8852000;8803000;7997000;9101000;8672000;10937000;9130000;10883000;10463000;11069000;11522000;11340000;11190000;11508000;11751000;11971000 -5302;'030;Eastern Asia;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5579000;5142000;4927000;4412000;4450000;4444000;4687000;4522000;4529000;10607000;16063000;18600000;18999000;22767000;23009000;31952000;25558000;27991000;30159000;30534000;33548000;33595000;33351000;33169000;33694000;33708000 -5302;'030;Eastern Asia;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;1287900;1755500;1483700;2085100;1772300;2532700;1887900;2755500;2467500;2568400;3172900;3124000;1347200;1215100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5302;'030;Eastern Asia;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;28695;47481;37093;72764;102908;84508;56147;75115;75372;78310;87982;93068;60628;105786;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5302;'030;Eastern Asia;1870;Pulpwood and particles (1961-1997);5516;Production;m3;14170000;10813000;11460000;11245000;10088000;10780000;16175000;15216000;16015000;17608000;18876000;16893000;15935000;18191000;15500000;16409000;16002000;14591000;14990000;16848000;15121000;15508000;15681000;18088000;19617000;19029000;18128000;18447000;18809000;18714000;18071000;17315000;15730000;14554000;13673000;13801000;13635000;;;;;;;;;;;;;;;;;;;;;;;;;; -5302;'030;Eastern Asia;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;1287900;1755500;1483700;2085100;1772300;2532700;1887900;2755500;2467500;2568400;3172900;3124000;1347200;1215100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5302;'030;Eastern Asia;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;28695;47481;37093;72764;102908;84508;56147;75115;75372;78310;87982;93068;60628;105786;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5302;'030;Eastern Asia;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;8880000;5712000;5312000;5318000;5010000;4884000;5264000;4606000;4570000;5042000;5457000;4763000;4489000;5792000;5525000;5883000;5874000;5593000;5846000;6824000;6112000;6474000;6612000;7691000;8553000;8796000;8405000;8466000;8743000;8962000;8953000;8711000;8357000;8381000;8062000;8332000;8262000;;;;;;;;;;;;;;;;;;;;;;;;;; -5302;'030;Eastern Asia;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;5290000;5101000;6148000;5927000;5078000;5896000;10911000;10610000;11445000;12566000;13419000;12130000;11446000;12399000;9975000;10526000;10128000;8998000;9144000;10024000;9009000;9034000;9069000;10397000;11064000;10233000;9723000;9981000;10066000;9752000;9118000;8604000;7373000;6173000;5611000;5469000;5373000;;;;;;;;;;;;;;;;;;;;;;;;;; -5302;'030;Eastern Asia;1871;Other industrial roundwood;5516;Production;m3;19147000;16011000;18822000;21145000;22070000;22971000;20024000;20269000;20267000;19811000;20113000;20219000;20694000;21404000;23134000;24131000;25217000;26356000;27540000;28573000;29904008;31554008;32786000;34132008;35752008;37472000;39458008;39074008;38830008;38632008;37947000;37799000;39805000;39729000;38706000;41704000;41346000;41859000;39294000;37534000;36442000;35917000;36637000;36760000;36841000;36870000;43506000;52877000;59611000;68040000;70108000;73168000;47387000;59416000;39511000;44254000;45421000;50387000;50160000;50195000;50411000;51212000;51456000 -5302;'030;Eastern Asia;1871;Other industrial roundwood;5616;Import quantity;m3;127200;123000;84700;80500;42000;44800;64400;85700;56000;50000;41500;45100;47200;157400;73800;49200;68200;50700;69800;56200;29800;29800;22000;15000;28900;35800;3900;2200;293000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5302;'030;Eastern Asia;1871;Other industrial roundwood;5622;Import value;1000 USD;5602;5043;3513;3454;1858;1521;2090;2925;2098;1614;1125;1676;3201;6961;4777;4535;5840;5054;11641;9711;4065;4065;3157;2060;1985;2584;1997;1375;20686;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5302;'030;Eastern Asia;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5302;'030;Eastern Asia;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5302;'030;Eastern Asia;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;12349000;9813000;10934000;12106000;12341000;12569000;12265000;12475000;12479000;12032000;12216000;12301000;12656000;13468000;14587000;15245000;15935000;16692000;17465000;18102000;18966008;20020008;20797000;21659008;22683008;23776000;25105008;24811008;24644008;24497008;24059000;23961000;25237000;25183000;24639000;26685000;26200000;26607000;24929000;23812000;23066000;22686000;23204000;23320000;23188000;23268000;14878000;14109000;14260000;13444000;12899000;12665000;9141000;10510000;8886000;9162000;10396000;11171000;11123000;11223000;11201000;11327000;11511000 -5302;'030;Eastern Asia;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;6798000;6198000;7888000;9039000;9729000;10402000;7759000;7794000;7788000;7779000;7897000;7918000;8038000;7936000;8547000;8886000;9282000;9664000;10075000;10471000;10938000;11534000;11989000;12473000;13069000;13696000;14353000;14263000;14186000;14135000;13888000;13838000;14568000;14546000;14067000;15019000;15146000;15252000;14365000;13722000;13376000;13231000;13433000;13440000;13653000;13602000;28628000;38768000;45351000;54596000;57209000;60503000;38246000;48906000;30625000;35092000;35025000;39216000;39037000;38972000;39210000;39885000;39945000 -5302;'030;Eastern Asia;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;127200;123000;84700;80500;42000;44800;64400;85700;56000;50000;41500;45100;47200;157400;73800;49200;68200;50700;69800;56200;29800;29800;22000;15000;28900;35800;3900;2200;293000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5302;'030;Eastern Asia;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;5602;5043;3513;3454;1858;1521;2090;2925;2098;1614;1125;1676;3201;6961;4777;4535;5840;5054;11641;9711;4065;4065;3157;2060;1985;2584;1997;1375;20686;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5302;'030;Eastern Asia;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5302;'030;Eastern Asia;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5302;'030;Eastern Asia;1630;Wood charcoal;5510;Production;t;1935178;1945004;1962478;1980943;1994218;2000293;2012711;2033368;2048071;2070643;2071683;2105856;2096268;2161705;2179887;2278744;2265290;2242860;2232182;2218142;2242397;2219371;2203914;2155660;2122849;2123984;2098015;2105964;2116893;2151802;2223019;2124625;2086072;2119590;2120309;2070507;2078532;2077045;2050205;2039153;2030550;1991997;1983496;1976050;1973653;1989932;1958827;1946276;1937872;1933475;1924420;1912432;1907514;1899663;1884878;1870360;1858380;1845320;1832384;1818572;1806404;1790364;2646819 -5302;'030;Eastern Asia;1630;Wood charcoal;5610;Import quantity;t;59600;64200;52100;46300;42700;45600;41900;43800;38800;44800;59600;61200;65300;49200;33900;34200;35500;30300;36000;43800;39200;60200;63300;73000;78100;83500;98200;79100;104000;96000;45200;168188;165267;146237;164952;211652;223683;196760;231416;290066;303964;313375;326572;330405;356544;349362;367290;435766;460690;474184;497003;468366;518409;536862;494993;472722;482401;612803;717714;554711;516962.81;836013;884499 -5302;'030;Eastern Asia;1630;Wood charcoal;5622;Import value;1000 USD;2569;2576;2110;1887;1761;1799;2096;2178;1939;2255;3473;3882;4879;5929;4268;4066;4158;4331;5805;8165;6722;10376;11290;15430;16678;14688;18682;16485;25937;23790;13378;47321;49898;50701;67116;86713;97281;78373;92261;113792;118501;119267;127842;126768;133667;146565;152591;184573;202049;210526;261251;289644;302633;307938;303590;290899;291576;346574;341778;276554;290849.92;424021;383683 -5302;'030;Eastern Asia;1630;Wood charcoal;5910;Export quantity;t;3300;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;18866;13190;20261;30000;36300;49800;51300;41169;86192;102592;110268;114299;74610;39125;50643;47066;53494;48840;55317;53502;69314;89485;58734;75773;69852;62632;62610;63778;51833;60890.31;51799;53795 -5302;'030;Eastern Asia;1630;Wood charcoal;5922;Export value;1000 USD;141;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;4927;5013;9353;18335;19729;28523;28182;30974;44183;56491;59055;67078;43195;25751;29695;24123;27232;24244;34206;34921;53530;69431;62225;113059;106320;89971;84899;87190;94099;114032.15;83111;63917 -5302;'030;Eastern Asia;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20698000;22368000;25278000;26359000;32424000;52598000;62378000;61590000;64385000;63040000;93811000;107831000;121913000;126657000;132456000;148820000;147115000;138671000;150690000;151947000;162916000;161587000;160233000;162823000;161546000;161644000 -5302;'030;Eastern Asia;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21691565;22160361;23608836;22738920;22336621;22815867;23362597;24193128;23070902;24572336;25742844;25575411;32376026;35081484;35211778;38498190;39137863;41005234;43932883;36576449;38087231;36565658;32694979;37914959.07;41744794;37229671 -5302;'030;Eastern Asia;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2142731;2079045;2078181;1917950;1810539;1913064;2180401;2394204;2418259;2812596;3441709;2633240;3432004;4082326;4097987;4032607;4059894;4149528;4274391;4166950;4706517;4950271;4161648;4405948.87;6542734;5420960 -5302;'030;Eastern Asia;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2594001;2478574;2866100;2926608;2145266;1599577;1526178;1260055;906934;420319;258320;125377;131979;114067;85545;101179;231970;105967;73050;29376;30346;34319;46303;34295.98;29605;32941 -5302;'030;Eastern Asia;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;123906;118447;126282;109155;94916;101256;107771;99897;72346;34697;21451;10774;10718;11390;8501;10456;24244;12851;7774;2649;3018;3651;4978;4483.75;5094;4671 -5302;'030;Eastern Asia;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9094000;9684000;8223000;8416000;8966000;22490000;29015000;17507000;13799000;15356000;16165000;18471000;24059000;28141000;34865000;45398000;48695000;48501000;51398000;51557000;51881000;50994000;50569000;51432000;50102000;50200000 -5302;'030;Eastern Asia;1619;Wood chips and particles;5616;Import quantity;m3;;;;8300;320100;596400;1387000;3880000;4879000;5966000;4179200;5772100;8770000;10028000;8514600;9823200;14011700;13308500;15202600;16136400;12735700;11564300;11758100;12608800;12239200;12859900;14455900;17194500;14096100;15388000;17777700;16880388;17118546;19008049;22023711;21882211;22067650;21534350;21961550;23438034;22680457;22252618;22738210;23259123;24099786;22965374;24446249;25599161;25387453;32119010;34814887;34968292;38151484;38828850;40635361;43417030;36502396;38022733;36494519;32626282;37879409.72;41721853;37192998 -5302;'030;Eastern Asia;1619;Wood chips and particles;5622;Import value;1000 USD;;;;130;4134;7800;24188;52093;61977;80006;95999;143836;244260;375603;406254;454715;503640;526267;604317;962227;711288;636394;786809;665869;642818;716106;854115;1114092;1409827;1515296;1792939;1692289;1737989;1947395;2571022;2398821;2271063;2131725;2066422;2066535;1911814;1802751;1904689;2168771;2382359;2404143;2795282;3419999;2607816;3396316;4040510;4068884;3997366;4023849;4111735;4228850;4160123;4696132;4938952;4152160;4397490.47;6535147;5414688 -5302;'030;Eastern Asia;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;432900;791600;767817;1201122;1833304;3070600;2800900;2951697;2545797;2390379;2798901;2867364;2087783;1515380;1456112;1172163;794099;286061;109057;23846;10113;11432;14898;11237;6415;1301;13185;1489;885;491;10337;1093;1225;1006 -5302;'030;Eastern Asia;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23576;44968;44498;63391;83359;219555;189463;158197;122046;115107;123470;106657;91702;95889;103142;94022;64702;25454;10212;2040;793;1080;1182;1278;418;222;975;1151;838;440;1519;927;1393;1124 -5302;'030;Eastern Asia;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;7700;6400;7300;7300;7300;7700;7300;6400;6300;6300000;6600000;6600000;6300000;6900000;6900000;7400000;7400000;7200000;7944000;8683000;9083000;15578000;10957700;11570700;11604000;12684000;17055000;17943000;23458000;30108000;33363000;44083000;50586000;47684000;77646000;89360000;97854000;98516000;97591000;103422000;98420000;90170000;99292000;100390000;111035000;110593000;109664000;111391000;111444000;111444000 -5302;'030;Eastern Asia;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;307400;459700;571800;612200;572100;290100;432000;451000;453200;467400;409400;285800;272700;269500;282100;229200;78600;9100;7200;8100;10300;13400;308494;181837;156942;149400;146900;106014;157215;198811;170802;58463;84003;77657;103474;93342;105528;126087;143683;187958;257016;266597;243486;346706;309013;369873;515853;74053;64498;71139;68697;35549.35;22941;36673 -5302;'030;Eastern Asia;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;2650;3907;5569;6284;7141;4730;7085;7044;7115;8130;9411;6541;6071;5610;5775;4930;2552;1775;1374;1706;2020;2284;13581;8750;6884;7044;7644;8631;11006;12623;11646;6136;7788;8375;11630;11845;14116;17314;21710;25424;35688;41816;29103;35241;36045;37793;45541;6827;10385;11319;9488;8458.39;7587;6272 -5302;'030;Eastern Asia;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;2300;1700;2900;2900;7200;3800;4800;2200;2000;2500;23000;29400;28500;96400;45415;54412;44015;43314;62800;62204;48204;88195;67199;59244;57483;84197;70066;87892;112835;134258;149263;101531;121866;102635;70647;89942;225555;104666;59865;27887;29461;33828;35966;33202.98;28380;31935 -5302;'030;Eastern Asia;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;116;108;203;203;731;219;302;188;142;347;1493;2242;1861;4134;2193;3310;2229;2301;3351;3195;1860;3340;2812;2498;3214;5367;4629;5875;7644;9243;11239;8734;9925;10310;7319;9178;23826;12629;6799;1498;2180;3211;3459;3556.75;3701;3547 -5302;'030;Eastern Asia;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4097300;4033900;3961100;4401100;4656600;7770800;9080800 -5302;'030;Eastern Asia;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;197000;309000;566000;751100;751100;1108000;1232000;1303000;1393000;1763000;1789000;1789000 -5302;'030;Eastern Asia;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;194428;569022;1953739;1743331;2182495;3188206;4737301;4910014;5377977;6759386.57;8617946;10020598 -5302;'030;Eastern Asia;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37641;97487;349254;230720;255766;402515;755352;690536;723417;1053517.17;1698946;1923565 -5302;'030;Eastern Asia;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6210;8122;169850;56605;29147;24204;26626;24728;18523;20015.49;22450;31575 -5302;'030;Eastern Asia;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1294;1376;26883;10286;5147;6901;6943;6389;6036;12203.11;14461;9732 -5302;'030;Eastern Asia;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;193000;305000;546000;731100;731100;1068000;1192000;1263000;1353000;1723000;1749000;1749000 -5302;'030;Eastern Asia;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;194428;569022;1953739;1726947;2149651;2980361;4525911;4641395;5054540;6488274.52;8333619;9540488 -5302;'030;Eastern Asia;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37641;97487;349254;225382;244672;372435;719927;651238;675998;1003484.9;1628073;1820338 -5302;'030;Eastern Asia;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6210;8122;169850;51623;24250;8411;7464;9951;6037;6035.71;12253;16193 -5302;'030;Eastern Asia;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1294;1376;26883;9116;4213;1575;1301;1631;1530;3429.17;5350;3836 -5302;'030;Eastern Asia;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;4000;20000;20000;20000;40000;40000;40000;40000;40000;40000;40000 -5302;'030;Eastern Asia;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16384;32844;207845;211390;268619;323437;271112.05;284327;480110 -5302;'030;Eastern Asia;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5338;11094;30080;35425;39298;47419;50032.26;70873;103227 -5302;'030;Eastern Asia;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4982;4897;15793;19162;14777;12486;13979.78;10197;15382 -5302;'030;Eastern Asia;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1170;934;5326;5642;4758;4506;8773.94;9111;5896 -5302;'030;Eastern Asia;1872;Sawnwood;5516;Production;m3;39758416;38930404;42625200;45933016;46983812;49957204;53556404;56104408;58107200;59457008;59640004;61197000;63193008;59918008;56577016;60021008;60514004;64752004;64005004;62082012;58645008;59800004;58255996;58523996;59872004;60456004;61924004;63678004;61267004;58048008;53797008;50950000;55582000;55701000;53546000;55674000;47586000;39830000;39054000;28893000;28259000;28018000;30271000;33930000;35731000;42407000;44343000;43248000;45352000;49250000;56569000;67452000;75785000;80699700;86306700;89135700;97987700;95214700;78844700;87869425;90901425;67902425;67264425 -5302;'030;Eastern Asia;1872;Sawnwood;5616;Import quantity;m3;702700;786500;1053000;1066500;1034800;1286400;2050300;2634300;2164300;3101800;2259100;2606100;3811700;3799900;2873300;3560200;3909600;4272100;5517800;6057200;4502800;5525700;5345100;5402000;6253000;6832200;9296600;10922100;11721543;11051300;11964400;12765463;14850627;14462457;16155228;16722413;17441462;10775537;14093964;16770863;16195708;17163716;17301129;18100383;16848348;16775496;16351502;16167209;17489811;23712112;31348720;30256899;34691557;33592393;36307663;41884220;47743371;46305216;47558946;42357534;37439395;35045541;33720586 -5302;'030;Eastern Asia;1872;Sawnwood;5622;Import value;1000 USD;29241;34324;45816;48288;43218;62425;101559;131416;129127;186809;139093;197124;405133;459687;365943;455335;526191;629530;1150898;1316968;860929;1026426;991830;1010522;1134831;1414694;2338533;2974055;3609227;3364735;3620947;4568719;5488662;5762940;6652947;6423912;6329830;3323785;4338475;5236202;4635416;4496147;4671958;5105555;4862656;5144083;5154924;5029885;4743389;6919744;9316005;8906543;10946410;11123219;10589286;11237927;13390930;13623417;11685927;10319358;11399036;11581479;9322684 -5302;'030;Eastern Asia;1872;Sawnwood;5916;Export quantity;m3;416800;407600;407500;424700;432600;448500;344400;329900;324300;294500;370700;486600;511800;487300;493800;619674;874100;770000;748500;590800;357000;333500;297200;348500;356200;373100;525001;597867;654077;539922;589122;1098351;849931;929882;1118371;1371400;864797;686424;502633;1795209;1594002;1806912;1639567;1366852;1217219;1333902;1248769;1035715;897031;920517;891396;701959;676547;709463;504660;556767;511916;498461;385920;392984;520530;436788;311878 -5302;'030;Eastern Asia;1872;Sawnwood;5922;Export value;1000 USD;26185;26514;26855;30199;32850;34231;34107;34267;38108;41463;55237;74097;78689;77430;85274;116599;146155;180706;211797;163645;110451;105688;96251;102006;97970;110300;151352;215527;229092;209128;217927;300890;350126;402773;578437;617107;368351;247740;224475;782417;610088;639080;647130;582683;525721;575192;601802;581141;492424.3;500094;527069;463064;488408;452756;316296;312881;324202;283991;266322;239443;303671;246970;178183 -5302;'030;Eastern Asia;1632;Sawnwood, coniferous;5516;Production;m3;29963716;29130704;31741100;33440016;35193412;36957604;39584704;41423208;42733600;43144008;42260504;43495000;43808008;41604008;39362016;42225008;45843504;47518504;46213504;45471512;42729008;43895504;42510496;43287496;44390504;45714504;46892504;48359504;46880504;45049008;40480008;38771000;41829000;43666000;41946000;43098000;37267000;30924000;30936000;24884000;24656000;23790000;25035000;24390000;24728000;27354000;27432000;26293000;26171000;26575000;29512000;32772000;38018000;41640000;43940000;45239000;49230000;47846000;40517000;44077725;45989725;35533725;34882725 -5302;'030;Eastern Asia;1632;Sawnwood, coniferous;5616;Import quantity;m3;640200;705200;927250;977000;838500;1177300;1867150;2336450;1877400;2707300;1837100;2109250;3243850;3166350;2592450;3209350;3429350;3663200;4777300;5134300;3619400;4307400;3977750;3756550;4323500;4620550;5993150;6822850;7709500;7729400;8296900;8575565;9927178;10141963;11074284;11472513;12264264;7666999;10254360;10238586;9536129;9947850;10640022;11556792;10940782;11384155;11275426;11446753;13111025;17348357;23680135;22882982;26671627;23324235;26381157;30647380;34753691;33943572;37402556;32753762;27448189;25183685;23512329 -5302;'030;Eastern Asia;1632;Sawnwood, coniferous;5622;Import value;1000 USD;25480;28935;38454;42145;37342;53827;87421;114101;107308;156139;106124;144096;332805;359242;313379;393673;434818;503216;925597;1043725;607800;716670;653717;589660;681627;840889;1367594;1748761;2125432;2104933;2183634;3071735;3364136;3607759;4122824;4072535;4037803;2108005;2623171;2864469;2412896;2314316;2632817;3060757;2856606;3055697;3161770;3149131;3075599;4370310;6119839;5637049;7139745;6224046;5935063;6440985;7747749;8031336;7575747;6664882;7697370;7719943;5649384 -5302;'030;Eastern Asia;1632;Sawnwood, coniferous;5916;Export quantity;m3;126800;132650;156600;148150;167600;206100;152500;130500;128550;132100;146400;193600;203700;188150;232850;356287;608350;541950;584500;466400;259000;191100;149150;185900;200600;220400;323601;277767;336477;223622;190122;251892;223080;192684;263075;270000;315482;373100;136402;161486;141473;223387;325094;332646;401745;459453;444417;342828;331221;350309;347262;292209;310487;247121;211188;243291;290839;316082;264227;275102;341985;242985;197885 -5302;'030;Eastern Asia;1632;Sawnwood, coniferous;5922;Export value;1000 USD;6318;6944;8790;9695;11812;14347;15441;15165;18098;23629;31753;41494;34032;28041;41262;51924;67443;93985;134472;99898;65713;52366;37783;41790;42184;49994;83189;94176;117674;89602;79404;89780;88993;79440;120167;108478;93092;77057;53030;91278;81871;98216;132186;157689;163901;170725;181683;160110;167214.3;175668;183069;167774;171643;164556;127127;139418;145764;138212;138283;126553;159481;116002;80912 -5302;'030;Eastern Asia;1633;Sawnwood, non-coniferous;5516;Production;m3;9794700;9799700;10884100;12493000;11790400;12999600;13971700;14681200;15373600;16313000;17379500;17702000;19385000;18314000;17215000;17796000;14670500;17233500;17791500;16610500;15916000;15904500;15745500;15236500;15481500;14741500;15031500;15318500;14386500;12999000;13317000;12179000;13753000;12035000;11600000;12576000;10319000;8906000;8118000;4009000;3603000;4228000;5236000;9540000;11003000;15053000;16911000;16955000;19181000;22675000;27057000;34680000;37767000;39059700;42366700;43896700;48757700;47368700;38327700;43791700;44911700;32368700;32381700 -5302;'030;Eastern Asia;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;62500;81300;125750;89500;196300;109100;183150;297850;286900;394500;422000;496850;567850;633550;280850;350850;480250;608900;740500;922900;883400;1218300;1367350;1645450;1929500;2211650;3303450;4099250;4012043;3321900;3667500;4189898;4923449;4320494;5080944;5249900;5177198;3108538;3839604;6532277;6659579;7215866;6661107;6543591;5907566;5391341;5076076;4720456;4378786;6363755;7668585;7373917;8019930;10268158;9926506;11236840;12989680;12361644;10156390;9603772;9991206;9861856;10208257 -5302;'030;Eastern Asia;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;3761;5389;7362;6143;5876;8598;14138;17315;21819;30670;32969;53028;72328;100445;52564;61662;91373;126314;225301;273243;253129;309756;338113;420862;453204;573805;970939;1225294;1483795;1259802;1437313;1496984;2124526;2155181;2530123;2351377;2292027;1215780;1715304;2371733;2222520;2181831;2039141;2044798;2006050;2088386;1993154;1880754;1667790;2549434;3196166;3269494;3806665;4899173;4654223;4796942;5643181;5592081;4110180;3654476;3701666;3861536;3673300 -5302;'030;Eastern Asia;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;290000;274950;250900;276550;265000;242400;191900;199400;195750;162400;224300;293000;308100;299150;260950;263387;265750;228050;164000;124400;98000;142400;148050;162600;155600;152700;201400;320100;317600;316300;399000;846459;626851;737198;855296;1101400;549315;313324;366231;1633723;1452529;1583525;1314473;1034206;815474;874449;804352;692887;565810;570208;544134;409750;366060;462342;293472;313476;221077;182379;121693;117882;178545;193803;113993 -5302;'030;Eastern Asia;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;19867;19570;18065;20504;21038;19884;18666;19102;20010;17834;23484;32603;44657;49389;44012;64675;78712;86721;77325;63747;44738;53322;58468;60216;55786;60306;68163;121351;111418;119526;138523;211110;261133;323333;458270;508629;275259;170683;171445;691139;528217;540864;514944;424994;361820;404467;420119;421031;325210;324426;344000;295290;316765;288200;189169;173463;178438;145779;128039;112890;144190;130968;97271 -5302;'030;Eastern Asia;1634;Veneer sheets;5516;Production;m3;10000;10000;10000;84000;84000;98000;151000;188000;226000;250000;300000;302000;306000;301000;301000;302000;302000;304000;304000;307000;307000;307000;307000;307000;307000;307000;307000;307000;306600;322700;332600;322000;319000;323500;328000;328000;328000;995000;1009000;1225000;1333000;1487000;3774000;3727000;3705000;3668000;3605000;3500000;3380000;3348000;3345000;3294000;3333000;3339000;3324924;3334924;3311230;3210100;3211100;2854873;2880873;2888873;2888873 -5302;'030;Eastern Asia;1634;Veneer sheets;5616;Import quantity;m3;177;167;234;400;1500;2100;22500;28100;27300;62100;97700;126100;89000;81100;50700;42800;38500;69000;107200;133900;174600;326200;367900;461300;435800;322200;488200;581600;627400;726300;893800;1239525;1337387;1352809;1320166;944547;1624876;1324414;875482;1224262;1040400;1102526;867739;818957;729049;658577;626439;558518;507270;707565;795188;886975;1240947;1686760;1620581;1559737;1434414;1636975;1817119;2081516;4011030;3009397;2783355 -5302;'030;Eastern Asia;1634;Veneer sheets;5622;Import value;1000 USD;93;67;75;109;385;311;1244;1778;2152;3657;3777;5388;10928;11039;7200;9653;9021;25861;38946;39863;46747;69433;70241;86442;77984;65398;114238;143008;176592;195752;275394;311728;357499;456392;453440;466349;634230;417874;366232;459727;383955;399984;396721;440874;427370;429174;466762;431270;314883;426428;498328;504110;526080;574736;520870;521121;514103;587154;556915;519898;679607;663801;557344 -5302;'030;Eastern Asia;1634;Veneer sheets;5916;Export quantity;m3;2500;3100;2800;2700;2600;12800;28800;13600;20000;20000;18800;30300;16800;13800;11000;8200;9100;28700;39300;34400;36200;43400;67300;86300;64300;95300;78800;66000;68000;48400;33700;66328;97215;105589;120621;149702;54624;61573;55638;72292;79243;288410;135893;124599;130004;167039;170935;180859;169350;206805;285935;248549;246455;306833;376839;335531;402375;432150;468007;438579;565093;448137;441338 -5302;'030;Eastern Asia;1634;Veneer sheets;5922;Export value;1000 USD;378;413;421;355;501;578;762;697;1064;1358;1460;1787;2727;2157;2101;3107;3928;8765;11881;11969;8900;8703;13860;18141;11899;19697;27726;24430;19742;16167;16433;33320;37481;55335;74286;72827;62386;59782;99503;81540;93496;164958;149477;181125;188065;228643;255344;311483;294284;373938;330090;299903;291512;343047;465121;437051;458052;505022;547671;554249;785075;686885;637811 -5302;'030;Eastern Asia;1873;Wood-based panels;5516;Production;m3;2043100;2491200;2874200;3545400;3799900;4874992;5623332;7026214;8532230;10024207;10714036;11859924;13488030;11555030;10499500;12178500;12860500;14141500;15148500;13941200;12950500;12317500;13127500;12539500;12521500;12444500;13994500;14603500;13589400;12772900;13261000;14428800;15498600;16031600;23304600;19991600;24105600;17715600;22223600;26856600;30006600;39583600;56102600;64674600;73185600;81608600;94024600;98388600;109634600;121449600;135654600;144939000;163200000;160818800;157932700;161923000;157420000;153341000;160436000;161973000;162666000;163369000;172116000 -5302;'030;Eastern Asia;1873;Wood-based panels;5616;Import quantity;m3;17230;22276;31252;39800;51042;72839;99824;71545;129587;554582;185528;333325;1604572;886909;362822;281980;209800;245500;356000;517600;586300;502300;540900;1049000;1128700;1642800;3858000;4769000;6768660;7521603;8215203;8897264;10555437;11486883;12727057;13199648;13007187;10128586;12259109;13698994;12937088;14544386;13481596;14010691;12815878;12932953;10967316;9101888;8246322;8758509;9277470;9124079;9418332;9313135;9074895;9290475;10573495;10402179;9239661;8762009;9859416.61;9706409;8822133 -5302;'030;Eastern Asia;1873;Wood-based panels;5622;Import value;1000 USD;2472;2890;4406;6035;7059;8753;11534;8663;14605;40907;21051;34413;194514;120834;54771;68037;65414;76961;117495;175467;207160;180260;176977;302918;293222;406014;1097989;1587774;2255309;2609918;2670314;2887286;4447582;4813763;5058382;5324404;5008371;2929312;3670805;3952658;3544975;3717419;3601619;4289556;3999179;4545364;4170521;4020920;3244616;3608539;4543160;4681825;4714644;5042806;4069591;3951181;4261628;4567396;3898331;3465579;4351557.7;4922832;3784924 -5302;'030;Eastern Asia;1873;Wood-based panels;5916;Export quantity;m3;418500;472300;513500;706100;808200;1271033;1254458;1814837;1972353;2253506;2478559;2687170;2686259;1983291;2313096;2840865;2965665;3095800;2594600;1961400;2181900;1622900;1376500;960200;824700;795900;1101400;925100;885634;1046100;925200;935303;913508;1254897;1402459;1349759;1094813;839127;757554;1365242;1571282;2526112;2727037;5177046;7545449;10931648;11111236;10319992;8051586;9891989;12899188;13896468;13715383;12755392.29;13575489.05;13428063;14235397;12348153;11001230;10672189;15268873.62;14193443.48;14582446.48 -5302;'030;Eastern Asia;1873;Wood-based panels;5922;Export value;1000 USD;68076;83519;86912;111731;114474;140958;151241;214628;243605;256975;322070;419330;573764;435633;420705;619946;749653;835869;968668;805885;864888;599231;543451;408426;323876;348040;456880;471902;449209;463922;389569;380345;417660;585872;618152;625547;619315;369751;282876;439214;465485;621327;716108;1551853;2365988;3655347;4803209;4666867;3482768;4601123;5883756;6551318;6715993;7586881;7107791.05;7044080;6534285;6829596;5227379;4937912;7126685.06;7310910.57;6359786.56 -5302;'030;Eastern Asia;1640;Plywood and LVL;5516;Production;m3;1708500;2085800;2361400;2914200;3193400;3879800;4675300;6006800;7378500;8816000;9484000;10475000;11794000;10080000;8997000;10389000;10935000;12126000;12628000;11220000;10431000;9814000;10502000;9914000;9664000;9460000;10258000;10340000;9379900;8815400;8877900;8982000;8801000;8876000;13500000;10641000;13399000;9224000;12168000;14800000;16813000;24141000;35078000;37978000;42085000;43825000;53457000;53223000;56651000;61765000;68711000;70749000;77309000;71453000;68500000;65593000;63293000;58644000;60345000;62383000;60139000;61686000;60648000 -5302;'030;Eastern Asia;1640;Plywood and LVL;5616;Import quantity;m3;9330;13933;20700;29500;33642;43000;68500;55800;94400;528100;171400;326150;1541500;855200;354700;264900;193500;229400;281000;366900;499700;424200;455800;948400;1017500;1470300;3381800;3894200;5983760;6340903;6865803;7547576;8563884;9189842;9951636;10027300;8986940;6598646;8091796;8184838;7666182;8227754;7604984;8460834;7806539;8103000;6896087;5871934;5430843;5573269;6072156;6170969;6230839;5803366;5457617;5434274;5855350;5449629;4730819;4336871;5189548;5146816;4662660 -5302;'030;Eastern Asia;1640;Plywood and LVL;5622;Import value;1000 USD;1425;1897;3166;4783;5471;7100;9585;7592;13108;39267;19770;33856;188377;115967;53527;65562;62810;74489;103373;145461;191188;166655;162078;280276;272110;377708;1025558;1438422;2084264;2310608;2348227;2569042;3910780;4157854;4347759;4573563;4152512;2290399;2931250;2971177;2535030;2645574;2539394;3202728;2996358;3535574;3118330;3018817;2471772;2652034;3463784;3635864;3662430;3916583;3009744;2830047;2954959;3189801;2637703;2299880;2858489;3254086;2492368 -5302;'030;Eastern Asia;1640;Plywood and LVL;5916;Export quantity;m3;417900;471600;512600;704600;801800;1268200;1253100;1813900;1971200;2249000;2468900;2672500;2667209;1955400;2289700;2814300;2927100;3054100;2550600;1925600;2136200;1564600;1315500;896500;765700;737900;1014400;848700;815144;938500;761800;764651;684085;1040752;1146300;1062000;671236;401206;302967;863933;1120073;1924278;2175244;4441624;5642142;8385237;8805920;7287816;5659620;7343026;9352203;9904529;10144676;9032556;10221851;10285640;11062423;9566314;8395915;8194227;11232370;10850540;10937430 -5302;'030;Eastern Asia;1640;Plywood and LVL;5922;Export value;1000 USD;68010;83420;86803;111587;114278;140618;151046;214453;243217;256213;320477;416693;570435;431196;416973;614700;742395;827318;958362;793452;854487;584254;528727;394644;312371;335861;431996;444415;429194;432882;352449;343668;331881;520966;552142;547149;462436;225658;134653;287775;321004;492051;596658;1335054;1898450;2945326;3635182;3479275;2534407;3409613;4348663;4809319;5048159;5787250;5509708;5631563;5219001;5554073;4152398;3915571;5456636;5680998;4868856 -5302;'030;Eastern Asia;1607;Laminated Veneer Lumber (LVL);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;750000;728000 -5302;'030;Eastern Asia;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;535142;520308 -5302;'030;Eastern Asia;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;263718;217191 -5302;'030;Eastern Asia;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;489964;487413 -5302;'030;Eastern Asia;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;292870;226406 -5302;'030;Eastern Asia;1646;Particle board and OSB (1961-1994);5516;Production;m3;113800;151800;189600;236800;211300;254400;301500;337200;365900;411200;441400;589500;792500;722500;808500;1010500;1070500;1073500;1399500;1501500;1366500;1121500;1165500;1178500;1184500;1258500;1638500;1761500;1714500;1658500;1950100;2681800;3354600;3586600;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5302;'030;Eastern Asia;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;1900;1300;1500;3900;10800;19900;18900;4500;26300;17300;5600;2900;49300;19200;4500;9100;6400;5200;54000;114600;48700;40400;47700;71700;86500;107300;279500;559000;560100;729700;798300;779965;1072569;1081423;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5302;'030;Eastern Asia;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;446;308;321;469;766;992;1039;283;814;972;642;176;4804;3092;730;1089;1264;1072;11187;24725;11508;9614;11024;19465;18378;20784;50035;96898;102577;133797;141783;139232;217165;238928;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5302;'030;Eastern Asia;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;400;300;400;900;5300;200;200;200;100;2400;6500;11300;12100;24100;19500;21300;23300;23500;24200;18300;16700;25300;28000;27200;20500;18100;27300;30000;28690;51600;65500;62278;91238;114443;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5302;'030;Eastern Asia;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;29;30;36;31;25;19;8;8;55;312;821;1711;1065;2709;1975;3436;3778;3560;5670;8634;4890;9017;8764;7893;5293;4864;13377;15731;8743;14576;13489;10862;21234;27500;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5302;'030;Eastern Asia;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6291600;5454600;5657600;4337600;4347600;4934600;5512600;5741600;7600600;8594600;7925600;10538600;10572600;13590600;16299600;14428600;14385600;14568000;20625000;22866000;22273000;28486000;29811000;31495000;32441000;31333000;34003000;37994000;45523000 -5302;'030;Eastern Asia;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1140903;1411370;1543833;917156;1195957;1482090;1643876;1978228;1797435;2030335;1840952;1936496;1633999;1446411;1438334;1719852;1718035;1586207;1719801;1896614;2022480;2157432;2817796;2979364;2601228;2695689;2965520.15;2857127;2692898 -5302;'030;Eastern Asia;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;281970;346013;366692;189821;218887;277182;302123;320964;309049;377678;343979;365010;339549;331904;292111;369538;416749;377506;384003;420883;448828;470020;591973;602477;523491;526102;736023.61;830610;668559 -5302;'030;Eastern Asia;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;134109;131409;146125;137999;139553;154605;152905;135882;146557;169309;138939;183171;192133;202260;121327;151060;148487;163721;159630;147226;212529;235165;221410;233228;255298;263782;486079.02;455436.48;468567.48 -5302;'030;Eastern Asia;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37425;40403;44028;33704;33340;39588;37486;39254;36328;34811;31140;40542;45104;54236;30670;43076;50346;64272;79248;92028;121218;128690;109738;88131;84133;140204;304302.94;357305.57;230527.57 -5302;'030;Eastern Asia;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 -5302;'030;Eastern Asia;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;213000;204160;204013;190013;267013;260273;306013;220013;290013;391013;337423;305692;371172;501106;421305;473391;574923;577956;660413;797688;668743;690058;719506;675061.46;683765;532016 -5302;'030;Eastern Asia;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55350;61966;61967;50648;63791;62172;103336;68220;91388;121256;121510;82877;115705;167669;132457;158302;185475;158711;171881;213450;209643;185809;188618;213552.49;252757;167858 -5302;'030;Eastern Asia;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;30;0;0;3000;2204;6000;3000;6000;18000;18000;21829;29514;35977;36475;66878;131211;66912;85418;120460;144371;113416;140670;456226.22;135608;164331 -5302;'030;Eastern Asia;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;19;0;0;548;377;919;902;973;3962;4952;5655;6833;7882;8147;15850;32467;15487;17251;23298;35612;23345;32272;134892.24;39091;48156 -5302;'030;Eastern Asia;1874;Fibreboard;5516;Production;m3;220800;253600;323200;394400;395200;740792;646532;682214;787830;797007;788636;795424;901530;752530;694000;779000;855000;942000;1121000;1219700;1153000;1382000;1460000;1447000;1673000;1726000;2098000;2502000;2495000;2299000;2433000;2765000;3343000;3569000;3513000;3896000;5049000;4154000;5708000;7122000;7681000;9701000;13424000;18102000;23175000;27245000;29995000;31575000;36684000;45106000;52408000;59472000;65116000;66299800;66859700;67144000;62736000;61342000;64340000;64397000;62984000;56749000;54605000 -5302;'030;Eastern Asia;1874;Fibreboard;5616;Import quantity;m3;6000;7043;9052;6400;6600;9939;12424;11245;8887;9182;8528;4275;13772;12509;3622;7980;9900;10900;21000;36100;37900;37700;37400;28900;24700;65200;196700;315800;224800;451000;551100;569723;918984;1215618;1634518;1760978;2476414;2399784;2767196;3828053;3437017;4071391;3818904;3213509;2948374;2603444;2046217;1446120;1071453;1094216;986173;945598;994301;1038232;1016842;1038356;1102661;1304443;1217556;1009943;1029286.99;1018701;934559 -5302;'030;Eastern Asia;1874;Fibreboard;5622;Import value;1000 USD;601;685;919;783;822;661;910;788;683;668;639;381;1333;1775;514;1386;1340;1400;2935;5281;4464;3991;3875;3177;2734;7522;22396;52454;68468;165513;180304;179012;319637;416981;428653;404828;489167;393742;458702;642332;657174;687090;691004;605814;590622;553392;591386;548689;397856;471262;494958;535998;509909;519865;452308;479233;501246;565475;551328;450979;543492.59;585379;456139 -5302;'030;Eastern Asia;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;36500;38500;39900;59700;46400;41800;56000;97900;108374;138185;99702;122050;156350;277452;299912;315004;346704;298304;462952;403032;560113;1761368;2357240;2095183;2811916;2248810;2368389;3362521;3791743;3344199;3444399.29;3074197.05;2821840;2831104;2404240;2236601;2073510;3094198.38;2751859;3012118 -5302;'030;Eastern Asia;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;5889;6212;7315;11507;11756;11272;16464;23631;25815;64545;37406;28585;37995;112851;110384;114864;111851;106995;89474;82745;181069;435496;668506;1118961;1128404;912036;1141601;1476865;1669580;1572736;1675136;1461378.05;1266576;1182248;1151780;967503;849865;1230853.87;1233516;1212247 -5302;'030;Eastern Asia;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1663000;1791000;1904000;1572000;2454000;3170000;575000;724000;755000;670000;1222000;1764000;1958000;1502000;2972000;3429000;5137000;6630000;8152000;6196800;6047700;5257000;3574000;3502000;3781000;3784000;3931000;3922000;3918000 -5302;'030;Eastern Asia;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;175400;143500;184669;161413;184662;362441;323741;293465;292349;201842;260021;289864;170382;147678;108309;109190;100476;110743;115428;120816;71986;75448;85532;70371;63055;48899;69459.08;68707;52591 -5302;'030;Eastern Asia;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81780;60369;78251;65512;72756;160401;144844;116843;131184;85298;102441;118011;80043;87190;59486;65848;68381;70509;65753;65772;61495;63966;68557;65594;53588;45633;72350.26;66332;45198 -5302;'030;Eastern Asia;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39800;50700;49600;43700;46000;72000;48300;48630;51404;138933;486779;865333;392694;372608;272750;307625;326964;280019;253389;263158;221191;226611;224099;198915;168373;141755;163570.09;142175;133902 -5302;'030;Eastern Asia;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9889;15857;18439;14526;19005;21418;17077;18024;21885;72011;252174;445360;226508;262765;185681;196942;214068;185440;162085;167746;134753;129160;119135;117060;94293;82290;104116.56;100499;88025 -5302;'030;Eastern Asia;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1113000;1420000;2344000;1916000;2748000;3438000;6666000;8589000;12226000;16687000;20614000;24298000;27178000;29492000;33291000;41120000;46782000;52324000;56027000;59226000;59986000;61322000;58561000;57288000;59981000;60064000;58422000;52216000;50101000 -5302;'030;Eastern Asia;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;975126;1082026;1310693;1098236;1419613;2413448;2306982;2949883;3031315;2668227;2441179;2137516;1536947;1111996;883353;903341;810905;786014;817071;830131;860181;890231;941016;1141258;1098007;903442;926269.76;928827;867240 -5302;'030;Eastern Asia;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;292065;281984;324672;234621;284034;402093;445723;496063;514275;488599;462845;415333;447321;419681;316701;379164;397237;449602;426841;428574;371435;399245;415443;480138;481751;390683;459349.46;512561;405602 -5302;'030;Eastern Asia;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23600;39900;175202;211704;222100;222700;207400;330789;254573;293641;1038362;1292916;1527135;2388345;1953007;2038199;3019929;3504301;3078334;3163193;2844170;2565361;2585043;2174612;2035748;1914341;2917517.26;2598062;2866831 -5302;'030;Eastern Asia;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10719;14035;79179;81878;81478;77218;78958;57026;46736;88192;142988;201689;852686;846851;712389;931347;1252201;1477635;1400050;1494935;1322206;1113292;1048051;1015469;858414;759168;1118471.98;1123874;1115558 -5302;'030;Eastern Asia;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;648000;737000;685000;801000;666000;506000;514000;440000;388000;443000;745000;1339000;1183000;859000;581000;421000;557000;489000;518000;937000;877000;826000;565000;601000;552000;578000;549000;631000;611000;586000 -5302;'030;Eastern Asia;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;17500;29300;34400;36100;35400;25400;22100;59900;188000;245400;60300;98100;128800;113516;190988;229602;483992;535452;981052;1140135;1162921;1052164;806294;828043;495240;343440;247174;176064;338888;186446;79791;81685;74792;48841;61802;87285;84675;72677;76113;92814;56494;57602;33558.15;21167;14728 -5302;'030;Eastern Asia;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;2292;3359;3532;3593;3480;2421;2140;6297;20255;28212;10798;23470;30899;36397;53510;64422;54808;62475;86244;93609;101912;79838;66607;74184;45545;31917;25336;20048;64022;41818;21669;26250;29340;15887;17315;25519;19378;16022;17246;19743;15989;14663;11792.87;6486;5339 -5302;'030;Eastern Asia;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;10000;12700;17600;16400;28000;32000;32000;35700;37800;39300;55900;45000;39800;53400;92800;52463;60147;53322;58650;65750;52650;44508;46904;52004;42604;83533;97055;127539;236227;198991;175354;50963;23053;22565;15628;7423;12476;18048.29;8836.05;29868;21962;30713;32480;17414;13111.03;11622;11385 -5302;'030;Eastern Asia;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;1297;2088;3482;3117;5157;5521;5521;5606;5971;7074;10623;10789;9911;15093;21647;14398;16832;20038;7977;8103;15233;13980;14381;13215;10960;14424;14124;20866;40334;21457;39767;18788;13966;13312;10596;6505;10601;12455;4419.05;24124;15062;19251;14796;8407;8265.33;9143;8664 -5302;'030;Eastern Asia;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;188300;218600;264200;315400;308200;364792;466532;474214;527830;509007;500636;495424;585530;500530;458000;495000;544000;652000;764000;855700;870000;1071000;1153000;1138000;1333000;1316000;1648000;1978000;1977000;1768000;1889000;2221000;2701000;2921000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5302;'030;Eastern Asia;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;5400;6643;8452;5400;4600;6739;10424;8845;7687;7582;6528;3475;11372;10109;2422;3580;1700;2400;3500;6800;3500;1600;2000;3500;2600;5300;8700;70400;164500;352900;422300;456207;727996;986016;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5302;'030;Eastern Asia;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;441;557;700;575;515;523;836;638;607;593;534;342;1179;1581;413;816;595;406;643;1922;932;398;395;756;594;1225;2141;24242;57670;142043;149405;142615;266127;352559;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5302;'030;Eastern Asia;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;3800;1400;2000;2600;5100;55911;78038;46380;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5302;'030;Eastern Asia;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;884;967;1361;1371;1984;11417;47713;17368;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5302;'030;Eastern Asia;1879;Total fibre furnish;5510;Production;t;7895700;8344000;9171300;10136400;10337400;11305600;12214600;13126400;14721800;17388200;17429500;18243300;20234600;19562800;18049000;20166000;21002000;22244000;24727000;25243000;24335000;24871000;26556000;28952000;32206000;34562000;38969000;43304000;45355000;47627000;49867345;51622876;53718353;59285856;66257917;56437435;61678757;60502317;62914693;64552574;63201363;69397353;71979817;75264201;79478947;87385501;93953901;97813953;97074120;105571232;108874179;107136123;104776801;110016752;108073350;108581609;112701464;109675801;111595701;113798843;128290201;131043701;132749723 -5302;'030;Eastern Asia;1879;Total fibre furnish;5610;Import quantity;t;13600;71000;288800;338400;313300;520000;581800;929740;935140;1258500;1122900;1414900;1921500;2304808;1772423;2080528;2208866;3037579;3411607;4154521;3765921;3912300;4880500;5205000;5439200;6672200;7629600;8564300;9017545;8415645;9990745;9607799;9400924;10971244;11138446;12733479;12438805;13067080;15140827;15987191;19619974;20279590;23374239;27000700;28753529;34873896;38220176;40665189;46900687;41872375;47997515;52215871;51419003;50353932;53598680;54110859;54297836;46376553;41053545;39368389;31197034.78;30080079;34721633 -5302;'030;Eastern Asia;1879;Total fibre furnish;5622;Import value;1000 USD;1690;9027;36018;46593;43979;74821;80583;126000;134058;188103;169131;191351;334911;625133;466504;514141;529221;713884;999374;1484270;1308209;1246998;1381696;1628113;1503957;1807091;2658808;3540974;4100733;3536861;3421117;3273720;2537204;4012116;6268905;4818011;4273033;4000217;4606306;6563951;5509345;5459761;6658467;8260670;8651657;10315869;13000315;14041554;12708452;17060294;21291521;19105348;19155105;19037861;19451577;18182087;22318354;25364380;19611192;16906553;19513936.05;21870415;22078431 -5302;'030;Eastern Asia;1879;Total fibre furnish;5910;Export quantity;t;5100;9700;14300;17400;18700;21800;21000;20100;39200;172500;227300;296600;300500;436771;363700;558600;511148;488500;562015;567260;620674;541350;565815;535915;498990;778100;680100;770650;806500;727800;666900;629350;501419;623270;691207;561757;870473;838169;970569;1425244;2482469;2724291;3033615;3894390;4858666;5345149;5855062;5197826;6658091;6522004;6652410;7200879;7015581;6660396.45;6354231;6221286;5839437;5986932;4682557;4681339;4229139.31;3665618.54;4293535.54 -5302;'030;Eastern Asia;1879;Total fibre furnish;5922;Export value;1000 USD;600;1150;1700;2038;2219;2623;2599;2476;5090;12227;18912;22096;24382;134218;63760;73210;73299;62752;90784;107339;91378;78045;67682;63471;52946;84511;91857;147934;147577;124380;83728;90575;52731;91496;190740;107276;110685;96740;121771;229441;216498;281317;366155;530175;678895;785243;1084247;1205459;1069898;1634610;1864869;1626674;1545375;1419319;1330424;1306785;1525968;1554296;951700;876681;1271496.53;1384324.77;1168768.77 -5302;'030;Eastern Asia;1878;Pulp for paper;5510;Production;t;6107500;6309000;6768300;7248400;7491400;8114600;8735600;9520400;10506800;11801200;11869500;11987300;12689600;12662800;11725000;12616000;12915000;13454000;14585000;14620000;13554000;13528000;14232000;15089000;18209000;19162000;22491000;24383000;24456000;24900000;25684345;26345876;27948353;30542856;35764617;25612135;29792457;29184017;28381393;26874459;25260201;26453201;26966201;27219201;28100201;29991201;30816201;31406201;26739201;30463201;30822201;28544201;26920201;27240201;26184201;25617201;26212201;27271201;27933201;28174201;32200201;35056201;37019800 -5302;'030;Eastern Asia;1878;Pulp for paper;5610;Import quantity;t;13600;71000;288800;338400;313300;520000;581800;929740;935140;1016500;903900;1133900;1430900;1728300;1259400;1376200;1444400;2094200;2230400;2799500;2496000;2435900;3095600;3258900;3469500;3899100;4320700;4934300;4957200;4494600;5163200;5548468;5742535;6978065;6942017;7733480;7589233;7752151;8863459;8928684;10383216;10768948;11343539;12787648;12885804;13118356;13366404;14180684;17544281;15362702;18332010;19684143;19753716;20446331;22139104;23291433;25942318;26303467;27777813;29898995;27899787.48;27216106;31911162 -5302;'030;Eastern Asia;1878;Pulp for paper;5622;Import value;1000 USD;1690;9027;36018;46593;43979;74821;80583;126000;134058;171786;155311;173096;290674;548584;414122;440384;443215;613100;839221;1274903;1131210;1066635;1151257;1367523;1279247;1482068;2154007;2926949;3438635;2908710;2682025;2737982;2214423;3471575;5273850;4024878;3625349;3435150;3981342;5426478;4495806;4391517;5029336;6209088;6311191;7218871;8485462;9808407;8599250;11190723;13673461;12278525;12689005;13167040;13706176;12722122;15816521;20492382;17214549;15301336;18678903.46;21119458;21519475 -5302;'030;Eastern Asia;1878;Pulp for paper;5910;Export quantity;t;5100;9700;14300;17400;18700;21800;21000;20100;39200;52500;104300;113600;70500;240400;156600;173900;181548;134200;152600;144800;150900;146700;107200;60800;85900;130800;102200;137400;107000;118300;39600;70252;30729;65713;137607;103457;99895;66400;123799;175900;131887;148699;216275;225653;242087;324199;367300;269814;319424;587940;517245;445048;562257;492292.45;500885;482562;571368;551969;464718;511217;617542.08;692824.54;729971.54 -5302;'030;Eastern Asia;1878;Pulp for paper;5922;Export value;1000 USD;600;1150;1700;2038;2219;2623;2599;2476;5090;8360;15194;15691;13745;117271;53931;52502;52125;39390;61504;73624;62821;53806;38021;26067;27079;42477;51959;82950;72119;66214;20733;35950;14040;32890;109395;58248;47723;28949;55377;101515;53160;64269;94584;104500;121871;180174;233814;207628;196958;463091;470740;316937;358120;324013;321983;310493;414960;451603;325812;300175;469047.08;716694.77;580886.77 -5302;'030;Eastern Asia;1875;Wood pulp;5510;Production;t;4815800;4950900;5385500;5845000;6041200;6625100;7216400;7937400;8854800;10078200;10076500;10325300;10991600;10924800;9595000;10532000;10586000;10699000;11466000;11339000;10243000;10238000;10491000;10878000;11375000;11507000;12043000;12812000;13401000;13752000;14206633;13753414;13408375;13763568;14357617;13614135;14324457;13676017;15207393;15743459;15482201;15322201;15242201;15395201;15481201;17077201;17761201;18428201;14988201;18007201;19071201;18449201;19450201;20333201;20030201;20805201;21416201;22364201;23261201;24126201;27855201;30662201;32464186 -5302;'030;Eastern Asia;1875;Wood pulp;5610;Import quantity;t;173000;235300;478800;534700;507463;726900;787400;1103840;1128840;1208600;1109300;1371900;1642100;2026000;1464500;1597300;1687700;2351600;2540700;3129000;2764000;2661600;3403700;3620700;3809200;4251500;4623800;5268700;5310100;4825300;5544100;5858072;6018908;7267926;7392371;8092434;7965308;8073550;9239940;9261220;10840336;11200897;11826537;13314551;13362012;13701603;14017343;14815128;18482286;16467956;19583950;21420064;21743623;22693313;24559337;25746639;28649414;29255681;30974040;33213618;31442907.31;30666518;35975919 -5302;'030;Eastern Asia;1875;Wood pulp;5622;Import value;1000 USD;31073;38956;68925;81542;78727;110905;117236;157215;168863;210072;197409;222200;337732;662644;501086;540177;551154;730785;989526;1467926;1291095;1192037;1303912;1545987;1444787;1657477;2328610;3146850;3735168;3161425;2962664;2936149;2399480;3690579;5709337;4324610;3885351;3662465;4228255;5682094;4824305;4651532;5336868;6594894;6683708;7674690;9171000;10578859;9482868;12738105;15913641;14332483;14757528;15341690;15914407;15038304;18463789;23386698;20001156;17563199;21983870.93;24741779;25416821 -5302;'030;Eastern Asia;1875;Wood pulp;5910;Export quantity;t;7500;800;300;300;300;100;100;2100;15000;26000;82100;102300;64100;254300;164100;164300;177548;126300;145300;130000;141000;136000;103400;67400;78800;118900;87400;123400;92200;103000;31900;161792;115089;86527;156100;100850;94408;63100;125709;189642;136496;159496;220310;237160;232917;297057;309127;216545;295062;542232;470481;401654;510381;443526.45;500450;522071;612474;578623;514280;550782;644884.78;702512.54;730647.54 -5302;'030;Eastern Asia;1875;Wood pulp;5922;Export value;1000 USD;1268;9;47;47;47;6;81;344;2106;4108;12084;14124;12797;124342;58288;49849;51497;37380;58605;66600;58886;50933;36966;28846;25002;38830;44341;75098;62307;55971;16898;95982;60546;45686;117467;52966;43055;28491;56457;112749;53957;62322;89394;109622;107780;148119;174837;131472;154568;367065;323163;224095;276860;246095;288059;310923;398115;432672;320534;279536;447056.01;623056.77;508260.77 -5302;'030;Eastern Asia;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3222000;3225000;3172000;3081000;3108000;3083000;3064000 -5302;'030;Eastern Asia;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2231869;2002739;2031463;2171480;1991715.41;1650864;1651468 -5302;'030;Eastern Asia;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1174424;1261620;1042081;1003615;1021439.56;1007809;937942 -5302;'030;Eastern Asia;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;352;1533;1641;2050;13173.42;18681.54;16658.54 -5302;'030;Eastern Asia;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;179;850;2426;2237;11388.59;12238.77;8735.77 -5302;'030;Eastern Asia;1654;Mechanical wood pulp (1961-2016);5510;Production;t;1204600;1217800;1223900;1271000;1317500;1379800;1438000;1513700;1608500;1839400;1554400;1567100;1668800;1728200;1647000;1798000;1886000;2070000;2236000;2265000;2133000;2025000;2088000;2110000;2198000;2220000;2248000;2501000;2573000;2637000;2662000;2470000;2299000;2394000;2507000;2487000;2324000;2230000;2116000;2073000;2099000;1951000;1922000;1932000;1881000;1834000;1691000;1949000;1731000;1725000;1730000;1679000;1647000;1610000;1524000;1533000;;;;;;; -5302;'030;Eastern Asia;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;1000;8300;7200;5700;4200;9400;14900;18700;15000;18000;19500;46000;84600;187600;185400;214700;288100;298200;404800;409000;338200;340200;443400;554000;481800;553300;521400;605300;535900;529600;529200;454697;421094;497418;497322;629122;621422;701100;700300;718130;624504;514664;366112;392361;352965;329500;331025;326618;250280;284628;259764;185530;151952;132318;121862;100888;;;;;;; -5302;'030;Eastern Asia;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;110;1019;737;638;486;1095;1952;1842;1599;1998;2240;4650;9264;36657;32479;32872;44439;52311;91327;112248;92353;98028;122308;156215;131847;162711;176190;228220;229523;193639;185366;144961;133525;170694;226767;245516;219683;227825;219240;232984;193204;145366;112983;137433;125276;124289;135212;146619;97697;130368;121031;87352;70149;60670;49615;42206;;;;;;; -5302;'030;Eastern Asia;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;491;970;66;0;0;0;0;9;0;100;80;108;120;121;186;157;250;230;169;615;371;929;101.45;93;647;;;;;;; -5302;'030;Eastern Asia;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;275;341;63;0;0;0;0;16;0;84;65;66;95;70;95;101;140;113;107;359;250;529;52;124;268;;;;;;; -5302;'030;Eastern Asia;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;502000;484000;400000;378000;396000;347000;243000;214000;211000;198000;196000;152000;1527000;1556000;1785000;1769000;1763000;1759000;1759000;1752000;1753000;1751000;1744000;1741000;1732000;1732000;1729000;1727000;1730000;1728000;;;;;;; -5302;'030;Eastern Asia;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;1100;9100;4000;1000;1400;1400;1800;3900;5300;6200;7200;2200;6600;5300;2400;61100;97800;109600;134300;174155;206282;308352;295686;323186;332786;266100;333096;372100;566400;739080;980893;1119096;1192523;1336359;1383937;1449704;1623136;1752634;1784782;1834882;1806307;1878194;2072838;2088412;;;;;;; -5302;'030;Eastern Asia;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;230;2708;1225;274;405;405;644;1057;1453;1271;1137;1224;2545;2158;1318;29608;48827;50622;55839;66923;65388;122881;193323;132937;127353;102317;134567;190451;232973;281324;411356;496956;508610;655495;754697;938539;732748;1080097;1005055;1007836;991366;1036751;956662;865091;;;;;;; -5302;'030;Eastern Asia;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;520;374;998;0;0;0;0;17;0;0;30;45;1457;33;64;341;122;242;1146;1056;1272;1324;1582;232;149;;;;;;; -5302;'030;Eastern Asia;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;192;143;408;0;0;0;0;13;0;0;19;33;683;32;43;186;93;184;556;514;2352;1343;1162;309;120;;;;;;; -5302;'030;Eastern Asia;1656;Chemical wood pulp;5510;Production;t;2699000;2737000;3018600;3273700;3398000;3769900;4121700;4541700;5079300;5754800;6137100;6368200;6844800;6915600;6210000;6907000;7034000;7158000;7824000;7772000;7057000;7325000;7590000;7976000;8260000;8474000;8931000;9459000;10041000;10329000;10735633;10500414;10453375;10755568;11232617;10753135;11663457;11193017;11469393;12019459;11505201;11510201;11463201;11610201;11747201;13395201;14241201;14630201;11423201;13939201;14882201;14318201;15185201;16281201;16075201;16390201;16958201;17886201;18829201;19785201;23504201;26339201;28152541 -5302;'030;Eastern Asia;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;904540;914740;990500;876000;1074300;1336100;1520800;1060300;1139100;1139000;1776700;1807500;2363600;2135100;2074100;2625300;2682000;2962300;3314100;3749900;4223200;4277700;3824900;4478600;4854034;5028067;6107625;6078087;6704550;6571924;6725950;7770816;7724590;9120632;9460665;9937967;11208962;11250501;11337088;11522174;12295845;15551762;13225668;16155320;17545627;17686051;18319304;19848589;21021691;23599561;24161080;25641920;27635591;25814476.91;25479951;30171049 -5302;'030;Eastern Asia;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;122495;130810;167896;150944;165443;276738;501026;374193;396660;387683;548811;732731;1140640;1020581;950468;1007403;1184559;1121401;1294739;1946926;2629199;3111881;2619998;2413858;2458373;1945478;3110956;4762913;3553941;3199873;3031016;3556436;4902432;3980076;3899308;4431430;5495681;5582530;6332011;7469664;8579481;7656173;9830473;12315272;10994552;11471112;11910802;12542404;11678105;14460710;19019850;16004183;14141335;17472602.6;19895194;20384051 -5302;'030;Eastern Asia;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;2000;14000;25700;80600;100900;62700;239000;154100;163300;170948;123600;142300;128900;139700;133500;101400;58800;73600;117800;86300;121600;92000;102000;29900;62172;24710;59487;123700;96150;92208;58600;115261;165642;124068;132113;193038;205493;213251;277468;290256;203417;261058;512594;434331;372061;481859;394829;418108;412562;492807;470053;385991;439721;516597.46;580650;607930 -5302;'030;Eastern Asia;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;266;1961;4020;11720;13776;12347;116580;53047;49357;48980;36245;57318;65856;58068;49498;36103;25182;22932;38330;43745;73858;62112;55353;15715;30659;10395;28235;96468;49396;41633;25838;52199;95982;46328;48842;73574;85413;92932;133324;158424;112798;123657;326357;262303;191897;252381;206370;220626;216749;292451;333605;217964;208001;329140.8;505727;403395 -5302;'030;Eastern Asia;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;873900;862900;991300;1094100;1163200;1282000;1412000;1581400;1741500;1903800;2085100;2171200;2517800;2606600;2184000;2432000;2430000;2348000;2472000;2324000;1854000;1848000;1851000;1912000;2686000;2634000;2723000;2795000;2676000;2610000;2657000;2632000;2662000;2801000;3049000;2456000;3024000;2869000;2508000;2622000;2526000;2442000;2379000;2354000;2334000;2310000;2348000;2286000;2045000;2187000;2170000;2107000;2248000;2294000;2261000;2254000;2266000;2210000;2189000;2166000;2237000;2283000;2203000 -5302;'030;Eastern Asia;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;195400;159400;151900;200700;241300;279100;301000;227200;274300;306100;367600;283900;421400;404100;349800;481100;474600;476400;545600;615200;632600;500000;412500;428700;458647;405664;587139;561100;543000;577026;543100;718345;685800;1036139;1118836;1100509;1021165;1175711;1130548;1158368;885807;976879;776095;947780;964767;831586;807351;843568;921134;947018;1103954;1123467;1324402;1385247.58;1847609;1476355 -5302;'030;Eastern Asia;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;22247;20093;24458;29800;34807;50652;89616;63490;70350;78933;91749;97736;165969;147833;114445;153479;170376;151893;175611;263263;315220;243858;189071;203574;197449;136273;243484;403306;266177;244698;210013;270933;352063;399794;414204;414847;429906;513837;556399;682201;468121;443158;496478;649831;544966;480874;521823;483178;501828;549438;918768;702927;694829;961940.98;1449070;925264 -5302;'030;Eastern Asia;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;3945;3148;10191;21500;4300;5300;5100;11149;12400;12372;30582;71438;69491;76354;107987;109488;100484;108828;152659;133774;125701;149288;142781;159228;169341;162759;127199;112136;146252;128274.49;129674;145195 -5302;'030;Eastern Asia;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;1362;1200;4957;12037;2743;2482;2242;4237;5165;3873;9475;22045;25288;28949;45523;56568;44837;45441;83568;80772;63442;76551;83488;85743;86977;94630;100893;64269;72497;90837.95;102634;91131 -5302;'030;Eastern Asia;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;4225000;3982000;4339000;4604000;4884000;5123000;5345000;5726000;6165000;6835000;7570000;7937633;7725414;7645375;7802568;8137617;8251135;8593457;8195017;8918393;9354459;8936201;9025201;9041201;9213201;9370201;11042201;11850201;12301201;9332201;11706201;12665201;12167201;12887201;13924201;13754201;14075201;14631201;15614201;16581201;17562201;21204201;23991201;25885201 -5302;'030;Eastern Asia;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;526200;603800;682900;526300;674400;827500;966700;675300;714400;702300;1216900;1342000;1633400;1402600;1433600;1772600;1850200;2144400;2400000;2702000;3076200;3371400;3213400;3779100;4208431;4464891;5310779;5268587;5910100;5710882;5824400;6696561;6810451;7949857;8223699;8716882;10039208;9976394;10100932;10263485;11316411;14476495;12356302;15043081;16490209;16790181;17442013;18933367;20025119;22590913;22998277;24458754;26253327;24369031.37;23583690;28642988 -5302;'030;Eastern Asia;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;70772;86895;116758;97188;105436;183457;339231;268164;278248;262258;391042;559319;841315;737302;703914;711294;873757;843235;977890;1493848;2068929;2631212;2293996;2052427;2155466;1730286;2747745;4204954;3142818;2801289;2643273;3107014;4394703;3503173;3423584;3949686;4975918;5009567;5710771;6718516;8036138;7157017;9254790;11505659;10377196;10938818;11333930;12009482;11128706;13866336;18049716;15256852;13406735;16461361.44;18398380;19411832 -5302;'030;Eastern Asia;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;2000;7000;7000;28800;30800;38600;170900;132600;145100;169700;121300;128500;119900;127800;128900;101100;56500;69800;110500;82900;110100;82900;95000;24600;55661;19661;47545;97100;91450;81600;48100;100030;148381;109649;99767;119809;132408;136409;168305;177840;101515;150594;355744;299707;245670;331968;251850;258655;242968;329911;342772;273687;293057;387720.97;450646;462328 -5302;'030;Eastern Asia;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;266;931;1164;4314;4455;7960;85376;45911;43376;48595;35557;52819;62438;54064;48099;35895;24145;21679;34999;41710;65826;59555;51950;13550;27836;8200;22406;79630;46384;36061;21528;45762;87818;41064;38703;50397;57667;63690;87122;101230;66695;76752;238621;180414;127702;175365;122629;134659;129523;197663;232620;153507;135105;237693.86;402871;311849 -5302;'030;Eastern Asia;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61000;62000;59000;57000;63000;65000;64340 -5302;'030;Eastern Asia;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61630;58849;59699;57862;60197.96;48652;51706 -5302;'030;Eastern Asia;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44936;51366;44404;39771;49300.18;47744;46955 -5302;'030;Eastern Asia;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;137;82;168;412;602;330;407 -5302;'030;Eastern Asia;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;158;92;188;399;609;222;415 -5302;'030;Eastern Asia;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;17000;23000;23000;15000;54000;49000;53000;53000;54000;56000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;;;;;;; -5302;'030;Eastern Asia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;39440;31140;45300;71200;77100;99500;115800;68400;70300;47100;56100;56000;138200;171500;108700;179000;179100;175000;176300;236700;292300;223800;37700;29400;25996;13337;17423;24600;33750;19500;11450;17375;9700;13200;13328;7401;9310;9057;25926;25557;13271;10107;10407;12801;13681;12194;13608;16502;14334;;;;;;; -5302;'030;Eastern Asia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;6428;5609;7316;11147;11952;17371;26943;11795;20103;16178;19810;20376;51927;61917;39034;68849;69094;67106;68432;98158;120711;115081;25718;16594;12571;6191;7171;15027;19944;12206;4760;7045;5792;7734;5138;3347;5286;4478;12379;15188;8430;5120;7421;8820;7563;6572;8089;9082;7029;;;;;;; -5302;'030;Eastern Asia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119;429;1073;700;100;1100;0;2;1700;500;0;372;150;65;411;120;193;175;1890;33;314;57;59;150;57;;;;;;; -5302;'030;Eastern Asia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;196;538;489;83;398;0;1;762;237;0;301;120;40;248;88;143;134;1452;54;272;52;50;120;43;;;;;;; -5302;'030;Eastern Asia;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;130000;115000;85000;99000;99000;100000;88000;90000;92000;96000;3000;3000;3000;86000;0;0;0;0;0;0;0;0;0;0;3000;3000;4000;1000;7000;20000;17000;18000;;;;;;; -5302;'030;Eastern Asia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;143500;120400;110400;77800;81500;130000;137300;89400;80100;83500;136100;125600;170600;156900;182000;192600;178100;166500;192200;196000;222100;182500;161300;241400;160960;144175;192284;223800;217700;264516;347000;338535;218639;121436;104802;113175;139279;89339;79682;74764;80356;88281;82864;151658;76970;52090;56332;55152;61104;;;;;;; -5302;'030;Eastern Asia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;23048;18213;19364;12809;13248;25258;45236;30744;27959;30314;46210;55300;81429;73529;93075;73781;71332;59167;72806;91657;124339;121730;111213;141263;92887;72728;112556;139626;125002;141680;172970;171444;149874;69375;56382;63550;84571;54648;52462;53759;66792;50878;71784;150962;64827;44848;46960;40662;40542;;;;;;; -5302;'030;Eastern Asia;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;400;300;6500;2600;8300;2700;1300;500;2447;1472;678;4400;300;4208;5400;4080;3161;1547;1764;1419;3444;423;765;2808;1225;1461;2301;817;376;546;139;75;196;;;;;;; -5302;'030;Eastern Asia;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;297;248;3022;1726;6280;2158;1009;305;1400;799;334;4312;186;2692;2068;2199;2237;1154;664;831;2338;253;431;538;1123;1330;2716;1063;481;413;203;104;206;;;;;;; -5302;'030;Eastern Asia;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;421000;360000;362000;368000;387000;408000;413000;436000;413000;400000;407000;176000;141000;101000;95000;95000;93000;92000;94000;94000;94000;96000;76000;98000;90000;602000;727000;720000;889000;715000;701000;1154000;1236000;1253000;1260000;1260000;1243000;1240000;1247645 -5302;'030;Eastern Asia;1667;Dissolving wood pulp;5610;Import quantity;t;159400;164300;190000;199400;203263;211200;208500;180600;199100;200100;213800;251600;220300;308500;214800;242500;259200;275300;326600;352500;285400;241100;327800;382500;358500;378800;350100;379100;398700;361200;402000;375186;363465;354531;521276;435576;439176;380400;435728;446400;528800;486488;541565;594132;566023;698656;780207;742961;1057108;1205026;1384084;1854025;2099313;2363497;2516048;2535648;2817984;3091862;3300657;3406547;3636714.99;3535703;4153402 -5302;'030;Eastern Asia;1667;Dissolving wood pulp;5622;Import value;1000 USD;29383;29929;32907;35729;36597;37271;37526;32878;36454;40178;44225;52107;51500;122253;93189;110371;118627;129258;164824;213981;176708;142270;173064;203989;188994;197869;204176;259823;344937;297166;307601;265892;255089;286048;526334;392216;338442;301307;318012;356227;418052;325534;381099;464824;467292;562895;811427;914220;996250;1697167;2472283;2242743;2224901;2333467;2365726;2452902;2828655;3105228;2954892;2418249;3489828.77;3838776;4094828 -5302;'030;Eastern Asia;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;98609;89035;25976;32400;4700;2200;4500;10422;24000;12328;27273;27119;30090;19512;19339;18373;12756;33532;28323;34479;27950;26269;47014;82017;108713;119315;107037;126648;109011;115113.89;103181;106059 -5302;'030;Eastern Asia;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;64856;49667;16980;20999;3570;1422;2653;4229;16767;7545;13396;15721;23431;14746;14657;16126;18441;30614;40045;59987;29596;22607;38511;67000;93786;105485;98217;100144;69298;106526.62;105091;96130 -5302;'030;Eastern Asia;1668;Pulp from fibres other than wood;5510;Production;t;1692900;1745900;1795700;1858400;1919500;1976000;2051200;2098000;2194000;2277000;2338000;2176000;2187000;2182000;2410000;2408000;2659000;3076000;3435000;3581000;3567000;3556000;4001000;4463000;7255000;8015000;10810000;11939000;11442000;11556000;11890712;13028462;14952978;17179288;21814000;12174000;15609000;15609000;13269000;11226000;9871000;11223000;11818000;11918000;12713000;13010000;13131000;13076000;11841000;13058000;12478000;10815000;8359000;7622000;6855000;5966000;6032000;6160000;5932000;5308000;5588000;5634000;5803259 -5302;'030;Eastern Asia;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;3100;9100;4300;2900;6500;5400;8000;8400;13600;9100;10800;9700;21400;15900;17900;16300;23000;17400;15400;19700;20700;18800;26400;47000;44700;45800;30500;21100;65582;87092;64670;70922;76622;63101;59001;59247;113864;71680;54539;58567;67229;89815;115409;129268;108517;119103;99772;132144;118104;109406;116515;95815;80442;110888;139648;104430;91924;93595.17;85291;88645 -5302;'030;Eastern Asia;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;780;1849;1187;873;1663;1649;1892;2127;3003;4442;8193;6225;10578;10688;11573;14519;20958;16823;16868;20409;25525;23454;22460;29573;39922;48404;44451;26962;67725;70032;67044;90847;92484;78440;73992;71099;100611;89553;65519;73567;79018;94775;107076;125889;143768;112632;149785;232103;188785;156378;158817;157495;136720;181387;210912;168285;156386;184861.3;216455;197482 -5302;'030;Eastern Asia;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;7069;4675;5162;13907;7307;7687;7800;8512;10258;7719;16476;23084;18583;28682;46481;76546;66025;57894;74031;81243;71344;78145;95780;82452;69204;78209;80383;77086;69446;87771.2;93493;105383 -5302;'030;Eastern Asia;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;4824;3161;4184;12927;8852;6090;3111;3149;5533;6748;15343;20911;18309;28837;46712;75103;94597;73004;136071;207564;122438;103867;116429;100924;93356;122330;117148;105422;89937;128517.69;198729;168756 -5302;'030;Eastern Asia;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;3000;24000;11000;30000;36000;82812;37000;17000;22000;16050;26118;43548;21750;27094;17930;14559;13441;16373;16711;301905;921786;1694225;2469292.19;2895199;4488954 -5302;'030;Eastern Asia;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;870;1492;19093;5630;10648;12203;29622;14636;7623;9930;8471;12554;29411;14736;16686;12165;10170;8080;8780;9920;128665;303226;515396;1044246.68;1237976;1251318 -5302;'030;Eastern Asia;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;200;1000;100;100;100;100;501;503;1395;1070;918;825;983;885;3529.31;4453;3958;1820;1918;130122;342549;587884;479919.78;496600;417102 -5302;'030;Eastern Asia;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;169;102;669;82;39;44;83;352;428;498;435;443;570;607;572;2595;2804;2321;925;1241;38600;80657;141976;155187.16;164448;98810 -5302;'030;Eastern Asia;1669;Recovered paper;5510;Production;t;1788200;2035000;2403000;2888000;2846000;3191000;3479000;3606000;4215000;5587000;5560000;6256000;7545000;6900000;6324000;7550000;8087000;8790000;10142000;10623000;10781000;11343000;12324000;13863000;13997000;15400000;16478000;18921000;20899000;22727000;24183000;25277000;25770000;28743000;30493300;30825300;31886300;31318300;34533300;37678115;37941162;42944152;45013616;48045000;51378746;57394300;63137700;66407752;70334919;75108031;78051978;78591922;77856600;82776551;81889149;82964408;86489263;82404600;83662500;85624642;96090000;95987500;95729923 -5302;'030;Eastern Asia;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;242000;219000;281000;490600;576508;513023;704328;764466;943379;1181207;1355021;1269921;1476400;1784900;1946100;1969700;2773100;3308900;3630000;4060345;3921045;4827545;4059331;3658389;3993179;4196429;4999999;4849572;5314929;6277368;7058507;9236758;9510642;12030700;14213052;15867725;21755540;24853772;26484505;29356406;26509673;29665505;32531728;31665287;29907601;31459576;30819426;28355518;20073086;13275732;9469394;3297247.29;2863973;2810471 -5302;'030;Eastern Asia;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;16317;13820;18255;44237;76549;52382;73757;86006;100784;160153;209367;176999;180363;230439;260590;224710;325023;504801;614025;662098;628151;739092;535738;322781;540541;995055;793133;647684;565067;624964;1137473;1013539;1068244;1629131;2051582;2340466;3096998;4514853;4233147;4109202;5869571;7618060;6826823;6466100;5870821;5745401;5459965;6501833;4871998;2396643;1605217;835032.59;750957;558956 -5302;'030;Eastern Asia;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;120000;123000;183000;230000;196371;207100;384700;329600;354300;409415;422460;469774;394650;458615;475115;413090;647300;577900;633250;699500;609500;627300;559098;470690;557557;553600;458300;770578;771769;846770;1249344;2350582;2575592;2817340;3668737;4616579;5020950;5487762;4928012;6338667;5934064;6135165;6755831;6453324;6168104;5853346;5738724;5268069;5434963;4217839;4170122;3611597.23;2972794;3563564 -5302;'030;Eastern Asia;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;3867;3718;6405;10637;16947;9829;20708;21174;23362;29280;33715;28557;24239;29661;37404;25867;42034;39898;64984;75458;58166;62995;54625;38691;58606;81345;49028;62962;67791;66394;127926;163338;217048;271571;425675;557024;605069;850433;997831;872940;1171519;1394129;1309737;1187255;1095306;1008441;996292;1111008;1102693;625888;576506;802449.45;667630;587882 -5302;'030;Eastern Asia;1876;Paper and paperboard;5510;Production;t;8050600;8564700;9538000;10621100;10668800;11732200;11742100;12860600;14413900;16286227;16474602;17585000;20683000;20264000;18470000;20385000;21567000;23314000;25856000;26691296;25791000;26733000;28949000;31182000;34098000;36556000;40051000;44104000;47445000;50099814;52342163;54202809;55619352;60780939;65139267;68772429;71344972;69921111;73213217;76400156;76659647;82639000;88104000;95554000;101987000;111274000;120245000;124283000;126266000;135011000;141171000;143938000;143235000;147078000;149203000;150552000;153065000;146065000;147803000;150750000;160297000;162658000;166023478 -5302;'030;Eastern Asia;1876;Paper and paperboard;5610;Import quantity;t;133970;153253;160360;334700;244600;313770;352120;511210;576400;577900;635700;727800;893900;1020000;664742;920500;1043100;1423700;1479100;1947700;1935100;1922600;2172700;2262300;2636200;3210730;3796637;3508922;4286842;4614184;5499884;6877095;7620541;7905961;7729700;11208402;12733724;12601456;12768219;12042922;10828706;11776903;12179325;12046778;10735798;9388775;8571839;7904395;7796560;8213401;8482715;8386421;7733240;7645203;7358571;7453828;9150567;10351196;10495444;16278997;15764778.43;12478907;15165542 -5302;'030;Eastern Asia;1876;Paper and paperboard;5622;Import value;1000 USD;28287;31873;31720;60057;45774;57442;64927;90875;106033;125999;136975;156216;259019;487319;274981;386513;486987;666424;816621;1366211;1347090;1231890;1354433;1400685;1611486;2316833;2275546;2432147;3304308;3608800;3948497;4608286;4611505;5461036;6910350;8069279;8132134;7606793;7774518;8372897;7233607;7386098;8097862;8744210;8017908;7289660;7412226;7949472;7345124;8544985;9566335;9298469;8351523;8221438;7480719;7397070;8397785;9732561;8921107;10477812;12189035.64;10468993;10459738 -5302;'030;Eastern Asia;1876;Paper and paperboard;5910;Export quantity;t;296600;249400;254400;318000;337100;474300;401700;447000;538700;647600;662400;658400;665500;883400;885300;856300;850800;804700;898700;1087400;1156300;1153600;1147300;1078400;1397300;1603500;1623500;1619800;1856700;2845900;3603300;4037708;4123448;4549079;4487126;5399608;6778148;7907971;7716751;7774728;6986386;6503140;7184544;8099269;8542072;9431884;10378727;9173369;8972718;9341825;9665427;9964528;11322118;11939888;11332559;12590015;12420668;11906362;11954195;10868980;10505075.01;13376201;13328636 -5302;'030;Eastern Asia;1876;Paper and paperboard;5922;Export value;1000 USD;58853;49641;51844;65442;68469;86584;84502;93351;117418;147364;153878;171430;253430;495597;478237;439382;482064;522885;664169;915004;929373;849830;765095;831337;979968;1200803;1089673;1295443;2083805;2667663;3157454;3514258;3151674;3645245;4488366;4028611;4630276;5000209;5004948;5551261;4604127;4000930;5143379;5950203;6227638;6831651;7326874;8048182;7020918;8642292;9914363;10006869;10982413;11673240;10934121;11453925;11379719;11654577;11640751;10250202;11161956.71;14639999;13112243 -5302;'030;Eastern Asia;2042;Graphic papers;5510;Production;t;3014800;3198000;3539400;3805500;3763900;4078300;3956800;4267400;4816600;5629537;5660602;5991000;6835000;7024000;6819000;7328000;7614000;8309000;8786000;9505496;9137000;9508000;10146000;10729000;11587000;12388000;14422000;16865000;18419000;19621968;20409317;20695130;17956631;20249796;21592877;24079179;25160476;24326239;26583803;28903546;28808526;32135000;33207000;35993000;37329000;40808000;43246000;43791000;42637000;44898000;45645000;45371000;44882000;43979000;43475000;42706000;42948000;41097000;38941000;35709000;35366000;35084000;35140335 -5302;'030;Eastern Asia;2042;Graphic papers;5610;Import quantity;t;51200;57243;64900;143900;76000;106300;141100;231200;279300;226600;228600;280100;362000;466800;231200;311000;374000;477700;535200;560900;667000;719000;742800;857300;1065600;1055429;1206702;1238270;1526706;1624341;1939541;2402088;2531213;3071514;3016020;3977202;4435408;4636993;4431605;5284785;5031893;4987665;5165795;4968718;4729963;4279199;3881875;3657952;3685477;4007933;4171110;4304981;3801545;3730552;3553711;3396110;3924893;3981512;3680414;3960176;4276377.42;2798112;2733745 -5302;'030;Eastern Asia;2042;Graphic papers;5622;Import value;1000 USD;9712;10396;11562;24682;14454;18994;25261;38714;48013;44598;47690;59853;99318;235603;98113;129315;163957;208402;260632;318313;393010;415352;401675;468482;557453;662775;822736;964219;1238112;1343079;1572436;1791513;1838427;2235045;2915505;3211440;3158439;3300694;3063219;3991110;3524475;3271652;3438499;3617442;3680117;3331826;3206525;3577287;3330640;3820517;4328391;4352862;3548762;3467302;3107408;2950021;3266510;3590185;3227992;3012394;3567594.98;2640611;2590498 -5302;'030;Eastern Asia;2042;Graphic papers;5910;Export quantity;t;175200;145800;158100;163200;159500;188600;154100;173600;206000;256800;248100;210500;213000;341700;341500;350700;341600;320800;389700;449100;497500;497600;478700;432400;504200;451100;603100;580500;378400;597300;798500;650927;663273;1011889;1139706;1092905;2021190;2912399;2972267;3865877;3730538;2713266;3349391;4314468;5010218;5809053;6301569;6165939;6105558;6145208;6166471;6424212;6840210;6647403;6080419;6552787;6029257;5595967;5203279;3782067;3816501.71;4966129;5116716 -5302;'030;Eastern Asia;2042;Graphic papers;5922;Export value;1000 USD;33862;30044;32525;36993;38398;42047;40144;42757;52323;64595;63203;57080;70259;204358;155160;229597;221063;250989;340536;446057;432175;395871;343406;298154;347470;338336;486808;540690;398981;537272;723136;634823;559389;853510;1231861;1036944;1579096;2027602;2061035;2807382;2425737;1782267;2178416;3090117;3630620;4205798;4728334;5345775;4594007;5307293;5779367;5862245;6005424;5812908;5135882;5305989;5052544;5299444;5003789;3566501;3931513.01;5515684;5302803 -5302;'030;Eastern Asia;1671;Newsprint;5510;Production;t;1126600;1269600;1429400;1545600;1596800;1623900;1668800;1858200;2048300;2406635;2476000;2618000;2818000;2729000;2655000;2848000;2918000;3018000;3090000;3297781;3226000;3227000;3235000;3210000;3282000;3370000;3409000;3878000;4115000;4476317;4564317;4452565;4288925;4567237;4911414;5400109;5576756;5789492;6089668;6725725;6817364;7074000;7189000;8403000;8528000;9163000;9963000;9870000;9746000;9232000;8675000;8604000;8360000;7834000;7296000;6923000;6276000;5507000;4669000;3758000;3379000;3286000;2945486 -5302;'030;Eastern Asia;1671;Newsprint;5610;Import quantity;t;32300;32900;35100;117000;49900;68800;95400;182700;228000;163800;149900;185900;201000;200600;146200;184500;240000;315600;361500;404200;498000;513700;543000;606200;793000;780600;863421;751600;884399;922597;992297;1215373;1289709;1325404;1373226;1703602;1957991;1663637;1668477;1609930;1528216;1526027;1755515;1499058;1315031;1075841;965682;879726;679934;750344;704221;748400;661953;546111;493741;423031;630200;737058;650380;778757;816073.57;569044;585076 -5302;'030;Eastern Asia;1671;Newsprint;5622;Import value;1000 USD;4748;4760;4955;17821;7384;9686;13931;26643;34143;25662;24316;31432;37629;68434;49298;62080;83728;106559;135693;181765;241699;250111;250736;281591;345857;436716;529947;511730;556605;581351;642497;716784;784182;820135;1178047;1298945;1125944;1027744;999586;1063419;970917;760063;862794;825881;777248;648572;571281;632489;417064;464641;502654;490185;404832;321167;252867;210208;320547;460131;356744;323039;417613;381133;324781 -5302;'030;Eastern Asia;1671;Newsprint;5910;Export quantity;t;38500;35800;31600;36500;29400;58200;21600;20200;16700;48200;54500;55600;48600;114100;110600;103900;99700;93700;102900;112400;150800;127700;91100;70100;83300;49800;55800;100300;70900;132200;165300;102256;82565;77937;232400;130900;336306;951200;818086;619515;551327;573660;669169;807540;810492;1075957;1388365;1116900;988838;863381;724076;720962;886509;867532;778780;811947;525038;458564;214277;112705;99086.25;147842;156867 -5302;'030;Eastern Asia;1671;Newsprint;5922;Export value;1000 USD;5101;4616;4129;5040;4104;8106;3200;2946;2371;6801;7837;7857;9692;41017;33834;30858;29872;31171;39262;53464;73773;57928;35050;26859;32596;19470;27251;62147;38726;69677;91369;44428;36842;36038;160763;78695;142378;440653;358073;305052;300073;220817;260998;371061;419118;587267;728699;762513;496587;491701;480997;441875;528221;500105;387541;405575;269701;300223;124170;57717;79177.02;124670;107255 -5302;'030;Eastern Asia;1674;Printing and writing papers;5510;Production;t;1888200;1928400;2110000;2259900;2167100;2454400;2288000;2409200;2768300;3222902;3184602;3373000;4017000;4295000;4164000;4480000;4696000;5291000;5696000;6207715;5911000;6281000;6911000;7519000;8305000;9018000;11013000;12987000;14304000;15145651;15845000;16242565;13667706;15682559;16681463;18679070;19583720;18536747;20494135;22177821;21991162;25061000;26018000;27590000;28801000;31645000;33283000;33921000;32891000;35666000;36970000;36767000;36522000;36145000;36179000;35783000;36672000;35590000;34272000;31951000;31987000;31798000;32194849 -5302;'030;Eastern Asia;1674;Printing and writing papers;5610;Import quantity;t;18900;24343;29800;26900;26100;37500;45700;48500;51300;62800;78700;94200;161000;266200;85000;126500;134000;162100;173700;156700;169000;205300;199800;251100;272600;274829;343281;486670;642307;701744;947244;1186715;1241504;1746110;1642794;2273600;2477417;2973356;2763128;3674855;3503677;3461638;3410280;3469660;3414932;3203358;2916193;2778226;3005543;3257589;3466889;3556581;3139592;3184441;3059970;2973079;3294693;3244454;3030034;3181419;3460303.85;2229068;2148669 -5302;'030;Eastern Asia;1674;Printing and writing papers;5622;Import value;1000 USD;4964;5636;6607;6861;7070;9308;11330;12071;13870;18936;23374;28421;61689;167169;48815;67235;80229;101843;124939;136548;151311;165241;150939;186891;211596;226059;292789;452489;681507;761728;929939;1074729;1054245;1414910;1737458;1912495;2032495;2272950;2063633;2927691;2553558;2511589;2575705;2791561;2902869;2683254;2635244;2944798;2913576;3355876;3825737;3862677;3143930;3146135;2854541;2739813;2945963;3130054;2871248;2689355;3149981.98;2259478;2265717 -5302;'030;Eastern Asia;1674;Printing and writing papers;5910;Export quantity;t;136700;110000;126500;126700;130100;130400;132500;153400;189300;208600;193600;154900;164400;227600;230900;246800;241900;227100;286800;336700;346700;369900;387600;362300;420900;401300;547300;480200;307500;465100;633200;548671;580708;933952;907306;962005;1684884;1961199;2154181;3246362;3179211;2139606;2680222;3506928;4199726;4733096;4913204;5049039;5116720;5281827;5442395;5703250;5953701;5779871;5301639;5740840;5504219;5137403;4989002;3669362;3717415.46;4818287;4959849 -5302;'030;Eastern Asia;1674;Printing and writing papers;5922;Export value;1000 USD;28761;25428;28396;31953;34294;33941;36944;39811;49952;57794;55366;49223;60567;163341;121326;198739;191191;219818;301274;392593;358402;337943;308356;271295;314874;318866;459557;478543;360255;467595;631767;590395;522547;817472;1071098;958249;1436718;1586949;1702962;2502330;2125664;1561450;1917418;2719056;3211502;3618531;3999635;4583262;4097420;4815592;5298370;5420370;5477203;5312803;4748341;4900414;4782843;4999221;4879619;3508784;3852335.99;5391014;5195548 -5302;'030;Eastern Asia;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6286882;7802000;8206000;8281000;10790000;11149000;11723000;12166000;13551000;14756000;15197000;16229000;17255000;18298000;18419000;18093000;18023000;18290000;18503000;18778000;18772000;18448000;18334000;17767000;17853000;18516249 -5302;'030;Eastern Asia;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113800;79782;103088;64054;88732;112012;120090;118277;172966;170549;166061;158525;194795;218804;248712;232102;243326;232883;264934;306155;310561;323892;295391;279005.34;199703;260184 -5302;'030;Eastern Asia;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117585;68226;91765;65200;74155;96658;106030;150547;153571;197460;216620;181492;228782;262242;315038;248778;265349;227180;259410;289792;302315;305215;258068;286503.85;219462;263245 -5302;'030;Eastern Asia;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1452;10485;18568;18345;21172;34317;59276;56860;76250;107042;149374;112105;123484;137993;149640;112120;84848;69896;64947;99358;65045;70550;47538;44883.01;103533;218725 -5302;'030;Eastern Asia;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2066;10857;18744;16156;17163;24632;42324;42772;56758;83429;146299;127889;152579;192745;208322;155083;114452;110740;119981;166400;111460;133247;100177;100774.22;149650;252211 -5302;'030;Eastern Asia;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4232136;4476918;4497655;4338025;4322000;3915000;3894000;3844000;4295000;4269000;4220000;3277000;3730000;3671000;3477000;3491000;3435000;3373000;3208000;3390000;3360000;3391000;2777000;2839000;2699000;2746133 -5302;'030;Eastern Asia;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;443715;813556;1031392;780840;1141991;1134383;1326020;1296749;1251933;1192945;1140230;1173639;1267966;1319713;1349630;1284700;1308570;1380511;1407747;1590069;1687964;1416341;1906709;2083681.8;1262762;1173218 -5302;'030;Eastern Asia;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;338208;603900;846493;604616;860374;914661;1103630;1109498;1081932;1087942;1244432;1204704;1390031;1561064;1564009;1389896;1349213;1328607;1320882;1443995;1658777;1370464;1530939;1797715.35;1223090;1242854 -5302;'030;Eastern Asia;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;310085;386102;571088;624256;473192;541594;650178;750270;966660;954799;875666;795923;1003564;1099756;1266898;1475977;1456260;1291730;1578352;1384195;1270329;1246360;922483;924126.54;1271797;1512886 -5302;'030;Eastern Asia;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;273638;323425;468257;460252;362385;419763;511788;610335;761493;828145;878723;728306;974751;1126357;1267023;1411682;1411218;1204535;1360736;1225201;1277116;1252947;927136;1039205.27;1498523;1648204 -5302;'030;Eastern Asia;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8017729;8215217;9474166;9372137;9949000;10954000;11973000;12791000;13799000;14258000;14504000;13385000;14681000;15001000;14871000;14938000;14687000;14516000;14072000;14504000;13458000;12433000;10840000;11381000;11246000;10932467 -5302;'030;Eastern Asia;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2415841;1869790;2540375;2658783;2230915;2163885;2023550;1999906;1778459;1552699;1471935;1673379;1794828;1928372;1958239;1622790;1632545;1446576;1300398;1398469;1245929;1289801;979319;1097616.71;766603;715267 -5302;'030;Eastern Asia;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1817157;1391507;1989433;1883742;1577060;1564386;1581901;1642824;1447751;1349842;1483746;1527380;1737063;2002431;1983630;1505256;1531573;1298754;1159521;1212176;1168962;1195569;900348;1065762.78;816926;759618 -5302;'030;Eastern Asia;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1649662;1757594;2656706;2536610;1645242;2104311;2797474;3392596;3690186;3851363;4023999;4208692;4154779;4204646;4286712;4365604;4238763;3940013;4097541;4020666;3802029;3672092;2699341;2748405.91;3442957;3228238 -5302;'030;Eastern Asia;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1311245;1368680;2015329;1649256;1181902;1473023;2164944;2558395;2800280;3088061;3558240;3241225;3688262;3979268;3945025;3910438;3787133;3433066;3419697;3391242;3610645;3493425;2481471;2712356.5;3742841;3295133 -5302;'030;Eastern Asia;1675;Other paper and paperboard;5510;Production;t;5035800;5366700;5998600;6815600;6904900;7653900;7785300;8593200;9597300;10656690;10814000;11594000;13848000;13240000;11651000;13057000;13953000;15005000;17070000;17185800;16654000;17225000;18803000;20453000;22511000;24168000;25629000;27239000;29026000;30477846;31932846;33507679;37662721;40531143;43546390;44693250;46184496;45594872;46629414;47496610;47851121;50504000;54897000;59561000;64658000;70466000;76999000;80492000;83629000;90113000;95526000;98567000;98353000;103099000;105728000;107846000;110117000;104968000;108862000;115041000;124931000;127574000;130883143 -5302;'030;Eastern Asia;1675;Other paper and paperboard;5610;Import quantity;t;82770;96010;95460;190800;168600;207470;211020;280010;297100;351300;407100;447700;531900;553200;433542;609500;669100;946000;943900;1386800;1268100;1203600;1429900;1405000;1570600;2155301;2589935;2270652;2760136;2989843;3560343;4475007;5089328;4834447;4713680;7231200;8298316;7964463;8336614;6758137;5796813;6789238;7013530;7078060;6005835;5109576;4689964;4246443;4111083;4205468;4311605;4081440;3931695;3914651;3804860;4057718;5225674;6369684;6815030;12318821;11488401.01;9680795;12431797 -5302;'030;Eastern Asia;1675;Other paper and paperboard;5622;Import value;1000 USD;18575;21477;20158;35375;31320;38448;39666;52161;58020;81401;89285;96363;159701;251716;176868;257198;323030;458022;555989;1047898;954080;816538;952758;932203;1054033;1654058;1452810;1467928;2066196;2265721;2376061;2816773;2773078;3225991;3994845;4857839;4973695;4306099;4711299;4381787;3709132;4114446;4659363;5126768;4337791;3957834;4205701;4372185;4014484;4724468;5237944;4945607;4802761;4754136;4373311;4447049;5131275;6142376;5693115;7465418;8621440.66;7828382;7869240 -5302;'030;Eastern Asia;1675;Other paper and paperboard;5910;Export quantity;t;121400;103600;96300;154800;177600;285700;247600;273400;332700;390800;414300;447900;452500;541700;543800;505600;509200;483900;509000;638300;658800;656000;668600;646000;893100;1152400;1020400;1039300;1478300;2248600;2804800;3386781;3460175;3537190;3347420;4306703;4756958;4995572;4744484;3908851;3255848;3789874;3835153;3784801;3531854;3622831;4077158;3007430;2867160;3196617;3498956;3540316;4481908;5292485;5252140;6037228;6391411;6310395;6750916;7086913;6688573.29;8410072;8211920 -5302;'030;Eastern Asia;1675;Other paper and paperboard;5922;Export value;1000 USD;24991;19597;19319;28449;30071;44537;44358;50594;65095;82769;90675;114350;183171;291239;323077;209785;261001;271896;323633;468947;497198;453959;421689;533183;632498;862467;602865;754753;1684824;2130391;2434318;2879435;2592285;2791735;3256505;2991667;3051180;2972607;2943913;2743879;2178390;2218663;2964963;2860086;2597018;2625853;2598540;2702407;2426911;3334999;4134996;4144624;4976989;5860332;5798239;6147936;6327175;6355133;6636962;6683701;7230443.7;9124315;7809440 -5302;'030;Eastern Asia;1676;Household and sanitary papers;5510;Production;t;187300;205800;232200;251600;279200;313600;332000;402000;447000;524352;579000;660000;739000;732000;666000;743000;790000;835000;941000;992706;1003000;1028000;1135000;1696000;2132000;2277000;2010000;2221000;2408000;2569741;2810741;3072826;2363107;3413064;3901786;4507411;4593858;4504439;4539708;4831673;5033019;5355000;5760000;6171000;6746000;7128000;7620000;7928000;8214000;8637000;9740000;10230000;10374000;10795000;11283000;11719000;12097000;12230000;12611000;13418000;13602000;13968000;14651000 -5302;'030;Eastern Asia;1676;Household and sanitary papers;5610;Import quantity;t;600;800;800;1100;1000;1300;1400;1200;1700;2260;2100;2400;2740;2700;2642;3100;3000;34600;118100;51600;23000;20400;9800;5800;7700;13400;12600;14100;14600;14500;14600;16500;17800;22900;36700;24400;40700;56946;71183;75894;67520;74300;92099;117928;86658;71258;60827;67915;70769;79946;97552;110799;126543;126634;125644;132709;171784;184684;203318;273806;264749.13;240438;272455 -5302;'030;Eastern Asia;1676;Household and sanitary papers;5622;Import value;1000 USD;329;372;378;509;463;596;616;900;1314;1771;1427;1944;2984;2924;2874;3634;6000;26277;90740;91389;40971;32427;15912;6181;7989;18690;13067;17773;20704;19897;20907;21730;22436;28439;47430;40786;53336;62415;68809;72844;62637;66096;87434;122827;95812;80296;77408;90870;87801;108074;137006;159930;180163;184457;175824;176284;218474;247577;263148;318220;306185.22;319458;348743 -5302;'030;Eastern Asia;1676;Household and sanitary papers;5910;Export quantity;t;400;500;400;2000;2300;2700;2800;3100;3200;3700;1900;1100;1500;1500;1600;2200;2400;2300;2300;2100;5200;4900;7300;15500;27800;18300;14300;13100;12000;12800;17100;17200;19700;21000;21300;24700;43600;39800;102191;52181;59112;80416;95554;314500;85149;82787;95362;127461;147666;105771;111611;172312;232306;261379;224463;211766;238845;243292;238725;276611;152015.65;220610;349161 -5302;'030;Eastern Asia;1676;Household and sanitary papers;5922;Export value;1000 USD;268;335;248;916;865;1139;1347;1540;1825;2014;1170;1275;1950;1460;1490;2787;3578;3978;4674;6648;13540;11051;15616;26201;42925;44892;16200;19356;18712;19164;24256;26543;28304;33681;40643;39576;53337;40888;77586;53398;61947;72689;80610;332821;79922;77097;101291;151201;147641;129515;151508;217906;354408;420350;367169;321364;355130;372354;396752;467621;254291.4;343112;460447 -5302;'030;Eastern Asia;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35557645;36363586;38289361;37911482;41117000;44693000;48926000;53286000;58379000;64113000;67751000;70735000;76112000;79793000;81607000;81362000;85311000;87093000;88622000;90867000;85495000;87929000;93100000;101112000;102565000;104595846 -5302;'030;Eastern Asia;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2966925;2930690;5859064;4626621;5827246;5859588;5764863;5238688;4520416;4276259;3861045;3804704;3849220;3954024;3736890;3571741;3543187;3448559;3694519;4761276;5867732;6297840;11784243;10987418.41;9252371;12003739 -5302;'030;Eastern Asia;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1591479;1742061;3333412;2666143;3211979;3459980;3711952;3690647;3431460;3721930;3866184;3599986;4200694;4674206;4396332;4223140;4172015;3838722;3907620;4515646;5457388;5032229;6793361;7972909.65;7167315;7208547 -5302;'030;Eastern Asia;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3944717;3931165;3237708;2638085;3110379;3375800;3164078;3155070;3210085;3843524;2774560;2648483;2994073;3294636;3295736;4158901;4931598;4919377;5708215;6057504;5963885;6398562;6703311;6426387.27;8043950;7729653 -5302;'030;Eastern Asia;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1902982;1937486;1898644;1436911;1476684;2294436;1833560;1948574;1917849;2354239;2403877;2158046;3033135;3762846;3702852;4381720;5184573;5187572;5562095;5727517;5728197;5967487;5957077;6705850.31;8443420;7011609 -5302;'030;Eastern Asia;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;2646100;2734900;3127100;3725700;3623600;4100600;4572000;5112000;5768000;6716097;6672000;7126000;8896000;8555000;7263000;8212000;8859000;9355000;10272000;9897430;9245000;9257000;12108000;11810000;16474000;17703000;18475000;19994000;21396000;22551415;23424415;24565614;25006014;28127389;33877231;34448409;35390796;;;;;;;;;;;;;;;;;;;;;;;;;; -5302;'030;Eastern Asia;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;19370;21850;22950;49800;30790;37340;41830;69390;77800;68000;94800;129200;221000;278600;174500;251500;476200;646800;543200;695000;599000;660600;836200;822500;785400;614800;931300;955300;1297200;1321700;1531000;1708620;2215435;2171639;1912000;2860100;2795000;;;;;;;;;;;;;;;;;;;;;;;;;; -5302;'030;Eastern Asia;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;4917;5707;6235;9705;7177;8359;9482;13707;15963;16435;23539;32947;75438;144559;89165;127329;189148;257215;260045;395172;345950;352494;392175;399522;364108;274798;403674;459388;750175;735077;687827;918639;1033313;1195481;1368518;1755498;1455150;;;;;;;;;;;;;;;;;;;;;;;;;; -5302;'030;Eastern Asia;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;79240;66300;60270;82170;103900;182130;129980;59900;178300;272700;285000;309300;305300;378900;343200;348000;368000;351700;413100;471700;438500;432700;462900;305200;484100;771500;585000;612000;882200;1337300;1926600;2099017;2264051;2432144;2256300;3353000;3454800;;;;;;;;;;;;;;;;;;;;;;;;;; -5302;'030;Eastern Asia;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;11992;9355;8681;12334;13803;23095;16923;8757;24989;47521;44838;51929;85272;157899;120587;109106;125645;138469;176864;251529;225215;201695;212427;122756;269055;569779;255720;305049;658789;871052;1179716;1243073;1144797;1323780;1536165;1820433;1641397;;;;;;;;;;;;;;;;;;;;;;;;;; -5302;'030;Eastern Asia;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13408386;14147340;25592998;25306152;26890000;28750000;31932000;34786000;38341000;42845000;45661000;48591000;52489000;55007000;56156000;56199000;59453000;61027000;62430000;64277000;59768000;61531000;66248000;73477000;74180000;75529000 -5302;'030;Eastern Asia;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1474855;1290122;2547317;1931711;2248598;2185795;1882527;1758571;1642290;1461459;1294873;1355804;1138307;1199357;1124204;982756;973807;962837;1127798;1910163;2849689;3447466;7737997;6905898.19;6179505;9010438 -5302;'030;Eastern Asia;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;515098;463774;867535;618887;711218;716157;685590;670189;663256;693217;724203;687405;727274;878618;777105;719649;730319;684916;753614;1206149;1869655;1743548;3234896;3912297.75;3626608;3918031 -5302;'030;Eastern Asia;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1877095;1739009;1771054;1375644;1340376;1514243;1507389;1251397;1289292;1637545;1072083;927932;869632;834673;942933;1191305;1345221;1367175;1717512;1995799;2021051;2211553;2799591;2547937.66;2677818;2640760 -5302;'030;Eastern Asia;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;620909;534520;646138;386349;347177;414309;438246;364959;434825;619625;518855;352087;464923;509833;534221;798250;880815;870485;956437;1082912;1191920;1134383;1324363;1631350.66;1643151;1409928 -5302;'030;Eastern Asia;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4042018;4224699;7040866;7045453;8689000;9600000;10779000;11901000;13351000;14457000;15009000;15140000;16239000;17216000;17704000;17462000;17784000;17866000;17939000;18119000;17259000;17959000;18403000;18966000;19585000;20115387 -5302;'030;Eastern Asia;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1285479;1379883;2087867;1709475;2109072;2382883;2690830;2209003;1979698;2009588;1829333;1768757;1948015;2013784;1870553;1864469;1841713;1756411;1811423;1890387;1853420;1859959;2148153;2165876.75;1612495;1501074 -5302;'030;Eastern Asia;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;941876;998065;1692737;1401835;1631314;1945879;2180849;2040969;2067122;2284164;2318299;2206106;2589902;2837040;2657702;2601253;2548597;2314410;2323187;2332080;2404099;2280975;2285462;2541288.61;2232951;2036060 -5302;'030;Eastern Asia;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1768346;1844523;986833;847250;1161926;1184798;1080987;1108659;1275283;1484475;1166630;1270824;1524113;1845932;1800138;2273963;2767920;2779763;3143073;3196838;3075014;3216748;2913421;2843804.78;4187050;3960175 -5302;'030;Eastern Asia;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1001023;1103478;846206;707311;710704;719391;949014;991279;1017165;1211047;1345266;1354513;1903156;2373646;2278351;2525079;3114473;3088319;3428738;3376358;3250953;3313911;3162208;3435221.87;4963612;4185685 -5302;'030;Eastern Asia;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17798000;17637000;5276000;5224000;5209000;5976000;5870000;6271000;6353000;6470000;6757000;6687000;7040000;7212000;7388000;7355000;7600000;7727000;7814000;8022000;7994000;8012000;8036000;8228000;8371000;8534000 -5302;'030;Eastern Asia;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;129494;209829;1139360;920772;1318896;1187338;969400;1056762;729875;648986;608851;572471;649708;633873;642725;611267;634802;640907;651883;839232;1024904;859639;1182279;1207634.07;801757;877370 -5302;'030;Eastern Asia;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102418;257558;735356;618156;799179;747785;723688;851521;586044;623587;703225;595738;767971;831072;842994;772915;782391;739395;725421;861607;1062814;904617;960722;1120108.19;929906;938047 -5302;'030;Eastern Asia;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;235253;268720;375625;333490;453168;439121;420890;673290;530849;627518;459435;364253;514851;537485;467690;586092;669636;608317;667363;657324;682358;708781;752495;789500.97;863991;726679 -5302;'030;Eastern Asia;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;212511;270006;364901;318831;360608;1081564;366760;533099;402741;468134;481955;396517;587384;771673;758555;827834;867248;829382;861842;928191;976067;1046134;1045888;1164474.74;1265345;1012371 -5302;'030;Eastern Asia;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;309241;354547;379497;335877;329000;367000;345000;328000;334000;341000;324000;317000;344000;358000;359000;346000;474000;473000;439000;449000;474000;427000;413000;441000;429000;417459 -5302;'030;Eastern Asia;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77097;50856;84520;64663;150680;103572;222106;214352;168553;156226;127988;107672;113190;107010;99408;113249;92865;88404;103415;121494;139719;130776;715814;708009.39;658614;614857 -5302;'030;Eastern Asia;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32087;22664;37784;27265;70268;50159;121825;127968;115038;120962;120457;110737;115547;127476;118531;129323;110708;100001;105398;115810;120820;103089;312281;399215.1;377850;316409 -5302;'030;Eastern Asia;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64023;78913;104196;81701;154909;237638;154812;121724;114661;93986;76412;85474;85477;76546;84975;107541;148821;164122;180267;207543;185462;261480;237804;245143.86;315091;402039 -5302;'030;Eastern Asia;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68539;29482;41399;24420;58195;79172;79540;59237;63118;55433;57801;54929;77672;107694;131725;230557;322037;399386;315078;340056;309257;473059;424618;474803.05;571312;403625 -5302;'030;Eastern Asia;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;774300;844400;937300;1101100;1186800;1360200;1566800;1658700;1898000;1792241;1854000;2019000;2313000;2114000;1850000;2230000;2250000;2449000;2644000;2810664;2884000;3100000;1249000;2000000;3905000;4188000;5144000;5024000;5222000;5356690;5697690;5869239;10293600;8990690;5767373;5737430;6199842;5532788;5726120;4375576;4906620;4032000;4444000;4464000;4626000;4959000;5266000;4813000;4680000;5364000;5993000;6730000;6617000;6993000;7352000;7505000;7153000;7243000;8322000;8523000;10217000;11041000;11636297 -5302;'030;Eastern Asia;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;51100;60160;62510;89000;86410;109030;112490;146920;164600;184040;192700;192900;213660;177400;159600;238000;62500;70400;88400;193600;242000;229600;192800;252700;274300;481400;1644000;1299200;1443800;1648400;2009500;2743662;2842572;2635300;2763700;4345500;5460700;4940592;5334741;823179;1102672;887692;1061843;1195269;680489;517902;352878;317483;235610;276302;260029;233751;233411;244830;230657;230490;292614;317268;313872;260772;236233.47;187986;155603 -5302;'030;Eastern Asia;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;9779;11281;11551;15906;14494;18193;19706;25980;30340;43686;40535;36491;64814;87768;66964;99105;63247;74983;105649;165372;208419;174217;198871;241100;255386;449612;1034332;988471;1291934;1506996;1663576;1872770;1709291;1999259;2577740;3060530;3463320;2652205;2900429;975531;980352;836371;1111949;1291989;551332;446078;406363;415131;326697;415700;426732;389345;399458;397664;358765;363145;397155;437411;397738;353837;342345.79;341609;311950 -5302;'030;Eastern Asia;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;40260;36400;35130;40130;41000;69770;75620;174900;111800;49400;62400;70100;81600;97200;134900;124500;110800;104900;71600;145500;199100;205400;188400;232600;210200;119600;421100;414200;584100;898500;861100;1269774;1176362;1083802;1069700;928900;1257800;1011055;711128;618962;558651;599079;363799;306223;291635;329959;138272;105409;71011;96773;92709;72268;90701;99508;108300;117247;95062;103218;113629;106991;110170.37;145512;133106 -5302;'030;Eastern Asia;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;11931;9707;10130;10586;10934;15522;20102;34879;31698;23691;35123;50685;86739;122701;191852;85570;118578;117449;131295;201270;250443;234413;188346;335126;229918;118796;330945;430348;1007323;1240175;1230346;1609132;1419149;1434123;1679609;1131582;1355999;1028737;928841;791837;679532;669290;589917;693705;568522;630907;143010;147329;121224;172349;220642;223866;240861;255409;243498;264477;244528;254582;272723;259003;270301.99;337783;337384 -5302;'030;Eastern Asia;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10072462;10340116;10275178;10026041;10897920;10693248;8925088 -5302;'030;Eastern Asia;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30480959;31363462;28308491;28987890;36538785;33839179;31716207 -5302;'030;Eastern Asia;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;580101;576329;583756;601073;735055;642362;438045 -5302;'030;Eastern Asia;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;222921;197928;150266;132368;140897;140199;103366 -5302;'030;Eastern Asia;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117587;121094;98879;91241;113453;99773;51448 -5302;'030;Eastern Asia;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20004;15486;15910;24483;21769;16619;12388 -5302;'030;Eastern Asia;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;462514;455235;484877;509832;621602;542589;386597 -5302;'030;Eastern Asia;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;202917;182442;134356;107885;119128;123580;90978 -5302;'030;Eastern Asia;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;143260;162903;176323;173085;225304;233057;248930 -5302;'030;Eastern Asia;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108350;116187;117533;134714;154167;241232;152311 -5302;'030;Eastern Asia;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;507866;527842;490727;450847;510517;534022;494765 -5302;'030;Eastern Asia;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1924466;2132608;2108344;2164171;2822540;2724295;2365209 -5302;'030;Eastern Asia;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1808702;1907028;1983935;1728378;2103716;2454228;1742253 -5302;'030;Eastern Asia;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1193546;1207888;1180278;1132931;1445368;1489533;1352073 -5302;'030;Eastern Asia;1636;Glue-laminated timber (glulam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1627000;1640000 -5302;'030;Eastern Asia;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;916633;568624 -5302;'030;Eastern Asia;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;828480;271236 -5302;'030;Eastern Asia;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49406;42407 -5302;'030;Eastern Asia;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61119;37418 -5302;'030;Eastern Asia;1688;Cross-laminated timber (CLT or X-lam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15000;18000 -5302;'030;Eastern Asia;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1069;339 -5302;'030;Eastern Asia;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1517;410 -5302;'030;Eastern Asia;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2034;2258 -5302;'030;Eastern Asia;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2086;3324 -5302;'030;Eastern Asia;1684;I-beams (I-joists);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;10000 -5302;'030;Eastern Asia;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2266;809 -5302;'030;Eastern Asia;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4733;1517 -5302;'030;Eastern Asia;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3534;7430 -5302;'030;Eastern Asia;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4945;9327 -5302;'030;Eastern Asia;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5669382;5899803;5794199;5594395;6018407;5562776;4776599 -5302;'030;Eastern Asia;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24520808;24900588;22115084;22489548;27987633;25376502;24337897 -5302;'030;Eastern Asia;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42525;38734;39196;23308;31891;38391;40138 -5302;'030;Eastern Asia;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87704;34300;65473;32539;66488;57118;74223 -5302;'030;Eastern Asia;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1320626;1227477;1207042;1454955;1273030;1228412;1184358 -5302;'030;Eastern Asia;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2423164;2773963;2571513;2901619;3921692;3810300;3331128 -5302;'030;Eastern Asia;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4959648;5057399;4989957;4599866;5211209;5044448;4784454 -5302;'030;Eastern Asia;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15719460;16862282;18646404;17919980;20621228;24339033;22897443 -5302;'030;Eastern Asia;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42260;52640;41545;30820;39008;31525;28304 -5302;'030;Eastern Asia;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34498;33907;35271;25505;28146;28914;20049 -5302;'030;Eastern Asia;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;744914;738028;711095;659199;758388;672288;582153 -5302;'030;Eastern Asia;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1487470;1587549;1724336;1703565;2016400;2562697;2491401 -5302;'030;Eastern Asia;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;778301;830874;901985;911178;930046;961640;977523 -5302;'030;Eastern Asia;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2233264;2389844;2942593;2533528;1965874;2424398;2714908 -5302;'030;Eastern Asia;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1248493;1294554;1312480;1180790;1412061;1333755;1297599 -5302;'030;Eastern Asia;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4825393;5160280;5788252;6014518;7439234;7926916;6943723 -5302;'030;Eastern Asia;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2145680;2141303;2022852;1817879;2071706;2045240;1898875 -5302;'030;Eastern Asia;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7138835;7690702;8155952;7642864;9171574;11396108;10727362 -5303;'034;Southern Asia;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12369392;13079709;12835622;9319304;12271746.12;14359700.78;13114798 -5303;'034;Southern Asia;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2633153;3422265;3667706;3229330;5239033.81;5303873.81;4513857.76 -5303;'034;Southern Asia;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;73787;75288;65950;76923;83873;97553;98894;109667;144116;139269;221864;279998;294377;317563;531691;495127;664790;679395;733575;727197;719510;750632;724671;735732;592800;813920;856376;889088;827993;1425356;1290056;1288684;652109;875408;1122745;1656891;1314577;1424563;1542150;1834394;1827208;1960685;2618485;3468375;3742050.2;3924798;4887699;5905728.1;5474334;7080299;9051251;8589525.28;8572956;9875701;9058287;9502987;10227299;10793917;10599386;7613433;10234520.12;12048313.78;11100085 -5303;'034;Southern Asia;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;14573;12951;11942;15289;14730;15217;15808;22160;20305;19254;16892;22049;40949;36626;31351;38797;45717;50244;48796;54291;38746;40677;39734;49516;34355;28802;28422;33961;46919;56567;62172;81753;22231;43453;45879;28077;46037;59765;90397;76270;87181;96963;173075;315966;346071;363844;400410;513256;434499;716455;739089.1;715954;869700;929982;792624;952985;1132496;1557219;1454723;1325870;2448206.81;2428993.81;1712483.76 -5303;'034;Southern Asia;1861;Roundwood;5516;Production;m3;217462002;222230710;226547207;231502418;236669370;243950231;249273318;253754011;259399021;265020205;272651954;280567630;286489660;293304879;295843534;302684462;306049442;310122182;321636252;326087792;331073130;338543483;344058513;351747747;358241695;364383893;370362071;369120454;374365631;387652625;397250791;400217133;404154258;406552041;407716843;400871384;399514691;401362148;403245600;404340845;406716639;429734600;432797161;431012812;433266422;434298507;438914182;440394258;447662386;447319470;445652392;443393435;443081710;443268568;443392956;442884997;441316491;440077698;439834880;438388441;436584973;435419231;434183445 -5303;'034;Southern Asia;1861;Roundwood;5616;Import quantity;m3;50100;34200;40800;48100;92000;79100;68900;74600;101300;133600;243200;116200;90100;77300;126300;122700;102100;121800;142000;134200;90300;97200;86300;85000;146000;462200;941900;1117300;997500;1424097;938479;851308;410545;435883;499404;1445131;1791161;2407204;2625303;2610536;2819917;2485113;3906882;4355473;4102283;3688116;4597084;4576784;5197775;5487861;6583768;6694568;6603839;7233730;5994936;5586421;4767727;4380348;4526501;2768595;4953263;5033860;4273053 -5303;'034;Southern Asia;1861;Roundwood;5622;Import value;1000 USD;7820;8036;4195;4968;5707;3579;3367;4056;5200;7110;12478;7219;4317;4975;20695;18040;17380;19507;20011;19290;16635;18129;16509;15647;14189;34929;73652;108687;98878;243191;179175;225096;41894;49734;63608;123841;151633;212161;221653;414315;435481;425031;726019;874798;901488.2;840074;1128788;1285701;1156206;1363952;1838361;1969320.28;2017605;2052080;1559303;1289962;1178926;1073984;1028364;605827;1061352;1075401;929138 -5303;'034;Southern Asia;1861;Roundwood;5916;Export quantity;m3;126100;82200;117866;216200;209400;209600;201700;204267;133600;124100;157200;157700;170200;298800;199200;112500;160400;190800;162000;164000;141600;143200;143200;143200;22100;10326;10900;47948;27368;47484;41653;7128;16658;8449;9562;20924;21704;136144;136149;138861;7361;16119;66744;127794;130685;35902;38896;21825;14753;11593;30572;39894;21418;17968;14743;25179;20147;6870;8392;8116;10849;28600;34010 -5303;'034;Southern Asia;1861;Roundwood;5922;Export value;1000 USD;10109;8966;8571;11389;12033;11153;10548;11980;13279;11485;12705;12679;25311;19143;20847;19941;25575;28693;28867;25656;15104;14676;14676;14676;1132;1206;1456;5303;3159;6074;5238;860;1646;1100;1200;2075;2312;14459;14464;14867;771;2782;9689;11188;13550;8548;20636;8960;6231;5879;7984;12533;7973;6875;5828;21996;70294;54390;56522;5913;33618;9130;42273 -5303;'034;Southern Asia;1862;Roundwood, coniferous;5516;Production;m3;6826227;6982876;7169777;7307071;7522724;7756112;7963090;8244663;8486753;8834393;9135514;9416106;9666681;9971544;10142473;10450771;10474396;10685338;11074151;11261632;11498906;11801356;12047091;12377269;12737574;12905045;13073279;13126189;13366691;11856612;11942106;12184782;12297999;12288939;12174957;12668383;12268032;11814071;11660422;12820434;12748439;13917196;14446764;14241034;14338840;13946566;14197180;14271014;14234963;14265149;14219592;14237106;14256319;14107046;14091594;14076568;14049808;14025323;14004118;13981198;13982812;13963476;13944483 -5303;'034;Southern Asia;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1602379;1561479;1816625;1179647;2715753;2692380;2383635 -5303;'034;Southern Asia;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;173881;175441;256255;146344;380784;380635;338185 -5303;'034;Southern Asia;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1275;540;513;4906;6357;21025;1029 -5303;'034;Southern Asia;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;219;172;385;621;549;2391;161 -5303;'034;Southern Asia;1863;Roundwood, non-coniferous;5516;Production;m3;210635775;215247834;219377430;224195347;229146646;236194119;241310228;245509348;250912268;256185812;263516440;271151524;276822979;283333335;285701061;292233691;295575046;299436844;310562101;314826160;319574224;326742127;332011422;339370478;345504121;351478848;357288792;355994265;360998940;375796013;385308685;388032351;391856259;394263102;395541886;388203001;387246659;389548077;391585178;391520411;393968200;415817404;418350397;416771778;418927582;420351941;424717002;426123244;433427423;433054321;431432800;429156329;428825391;429161522;429301362;428808429;427266683;426052375;425830762;424407243;422602161;421455755;420238962 -5303;'034;Southern Asia;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3165348;2818869;2709876;1588948;2237510;2341480;1889418 -5303;'034;Southern Asia;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1005045;898543;772109;459483;680568;694766;590953 -5303;'034;Southern Asia;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18872;6330;7879;3210;4492;7575;32981 -5303;'034;Southern Asia;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70075;54218;56137;5292;33069;6739;42112 -5303;'034;Southern Asia;1864;Wood fuel;5516;Production;m3;202407002;206603710;210977207;215420418;219936370;224502231;229149318;232890011;237739021;242644205;249655954;257704630;263060660;269011879;271046534;276871462;279780442;283176182;293926252;297489392;301631730;308136083;312649113;319216347;324772635;330852493;337059071;339240454;343943731;348653225;357507291;359743833;363325058;365395841;366509143;359649684;357830991;358794148;360080600;360331845;360943179;384159080;385773441;381878692;384021882;384756607;388371182;389186258;389858386;390545470;389777392;389050435;388315370;387458400;386714788;385222829;383745323;382278164;380821245;379374464;376769996;375404254;374168468 -5303;'034;Southern Asia;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;7800;7700;7700;516;325;499;499;499;499;499;10099;10099;679;1999;1578;53578;61578;81051;81255;15120;15260;10316;6917;9463;10811;2777;4361;6644;761;2152;1747;538;382;5949;1431 -5303;'034;Southern Asia;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;536;454;454;364;355;35;35;35;35;35;226;226;47;135;171;3758;3671;3573;3602;3454;3602;1804;1850;1461;1669;515;579;811;107;290;1151;201;249;316;494 -5303;'034;Southern Asia;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;;;;;;;;;;;;;;;174;207;662;662;162;133;133;133;133;133;211;211;211;348;1147;1389;1389;2175;460;3874;492;458;557;918;131;37;1719;1423;2705;1657;3405 -5303;'034;Southern Asia;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;;;;;;;;;;;;;;;6;7;34;34;6;5;5;5;5;5;40;40;40;51;187;697;697;587;295;1119;339;114;291;312;64;4;380;149;45;160;388 -5303;'034;Southern Asia;1627;Wood fuel, coniferous;5516;Production;m3;5451227;5561876;5687777;5779071;5932724;6054112;6177090;6307663;6437753;6518393;6651514;6868106;7007681;7188544;7233473;7397771;7466396;7553338;7864151;7945632;8067906;8250356;8367091;8558269;8715574;8889045;9071279;9137189;9275691;9430412;9614906;9701782;9819399;9894339;9943957;10076383;10009032;9941071;10014422;10065434;10075979;10783676;10844044;10699914;10786300;10818666;10971180;11044014;11076963;11119149;11103592;11096106;11089319;10956046;10949594;10925568;10901808;10878323;10855118;10832198;10832812;10813476;10794483 -5303;'034;Southern Asia;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;1703;262;362;247;5792;939 -5303;'034;Southern Asia;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;215;161;110;113;160;259 -5303;'034;Southern Asia;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;127;25;31;9;2677;191;853 -5303;'034;Southern Asia;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;2;16;15;18;25;99 -5303;'034;Southern Asia;1628;Wood fuel, non-coniferous;5516;Production;m3;196955775;201041834;205289430;209641347;214003646;218448119;222972228;226582348;231301268;236125812;243004440;250836524;256052979;261823335;263813061;269473691;272314046;275622844;286062101;289543760;293563824;299885727;304282022;310658078;316057061;321963448;327987792;330103265;334668040;339222813;347892385;350042051;353505659;355501502;356565186;349573301;347821959;348853077;350066178;350266411;350867200;373375404;374929397;371178778;373235582;373937941;377400002;378142244;378781423;379426321;378673800;377954329;377226051;376502354;375765194;374297261;372843515;371399841;369966127;368542266;365937184;364590778;363373985 -5303;'034;Southern Asia;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;685;449;1485;176;135;157;492 -5303;'034;Southern Asia;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;75;990;91;136;156;235 -5303;'034;Southern Asia;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;12;1688;1414;28;1466;2552 -5303;'034;Southern Asia;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;2;364;134;27;135;289 -5303;'034;Southern Asia;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;7800;7700;7700;516;325;499;499;499;499;499;10099;10099;679;1999;1578;53578;61578;81051;81255;15120;15260;10316;6917;9463;10811;2777;4361;6644;;;;;;; -5303;'034;Southern Asia;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;536;454;454;364;355;35;35;35;35;35;226;226;47;135;171;3758;3671;3573;3602;3454;3602;1804;1850;1461;1669;515;579;811;;;;;;; -5303;'034;Southern Asia;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;;;;;;;;;;;;;;;174;207;662;662;162;133;133;133;133;133;211;211;211;348;1147;1389;1389;2175;460;3874;492;458;557;918;;;;;;; -5303;'034;Southern Asia;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;;;;;;;;;;;;;;;6;7;34;34;6;5;5;5;5;5;40;40;40;51;187;697;697;587;295;1119;339;114;291;312;;;;;;; -5303;'034;Southern Asia;1865;Industrial roundwood;5516;Production;m3;15055000;15627000;15570000;16082000;16733000;19448000;20124000;20864000;21660000;22376000;22996000;22863000;23429000;24293000;24797000;25813000;26269000;26946000;27710000;28598400;29441400;30407400;31409400;32531400;33469060;33531400;33303000;29880000;30421900;38999400;39743500;40473300;40829200;41156200;41207700;41221700;41683700;42568000;43165000;44009000;45773460;45575520;47023720;49134120;49244540;49541900;50543000;51208000;57804000;56774000;55875000;54343000;54766340;55810168;56678168;57662168;57571168;57799534;59013635;59013977;59814977;60014977;60014977 -5303;'034;Southern Asia;1865;Industrial roundwood;5616;Import quantity;m3;48700;33500;39200;46400;88300;48200;47200;63000;95100;130100;239300;112300;83500;72600;124300;115000;99600;119300;115600;107800;77600;89800;78900;77600;138600;454800;934500;1109900;989700;1416397;930779;850792;410220;435384;498905;1444632;1790662;2406705;2615204;2600437;2819238;2483114;3905304;4301895;4040705;3607065;4515829;4561664;5182515;5477545;6576851;6685105;6593028;7230953;5990575;5579777;4766966;4378196;4524754;2768057;4952881;5027911;4271622 -5303;'034;Southern Asia;1865;Industrial roundwood;5622;Import value;1000 USD;7804;8028;4177;4948;5649;3411;3162;3923;5112;7054;12428;7169;4221;4922;20670;17962;17326;19453;19761;19040;16490;18029;16409;15547;14089;34829;73552;108587;98342;242737;178721;224732;41539;49699;63573;123806;151598;212126;221427;414089;435434;424896;725848;871040;897817.2;836501;1125186;1282247;1152604;1362148;1836511;1967859.28;2015936;2051565;1558724;1289151;1178819;1073694;1027213;605626;1061103;1075085;928644 -5303;'034;Southern Asia;1865;Industrial roundwood;5916;Export quantity;m3;125800;81700;117700;216100;209000;209200;201400;204200;132700;124000;156700;157200;170100;298300;198600;112300;156300;186700;162000;164000;141600;143200;143200;143200;22100;10326;10900;47948;27368;47484;41653;7128;16484;8242;8900;20262;21542;136011;136016;138728;7228;15986;66533;127583;130474;35554;37749;20436;13364;9418;30112;36020;20926;17510;14186;24261;20016;6833;6673;6693;8144;26943;30605 -5303;'034;Southern Asia;1865;Industrial roundwood;5922;Export value;1000 USD;10106;8960;8569;11388;12023;11148;10539;11978;13258;11479;12701;12675;25303;19108;20821;19923;25201;28319;28867;25656;15104;14676;14676;14676;1132;1206;1456;5303;3159;6074;5238;860;1640;1093;1166;2041;2306;14454;14459;14862;766;2777;9649;11148;13510;8497;20449;8263;5534;5292;7689;11414;7634;6761;5537;21684;70230;54386;56142;5764;33573;8970;41885 -5303;'034;Southern Asia;1866;Industrial roundwood, coniferous;5516;Production;m3;1375000;1421000;1482000;1528000;1590000;1702000;1786000;1937000;2049000;2316000;2484000;2548000;2659000;2783000;2909000;3053000;3008000;3132000;3210000;3316000;3431000;3551000;3680000;3819000;4022000;4016000;4002000;3989000;4091000;2426200;2327200;2483000;2478600;2394600;2231000;2592000;2259000;1873000;1646000;2755000;2672460;3133520;3602720;3541120;3552540;3127900;3226000;3227000;3158000;3146000;3116000;3141000;3167000;3151000;3142000;3151000;3148000;3147000;3149000;3149000;3150000;3150000;3150000 -5303;'034;Southern Asia;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100581;72679;54370;38524;32904;32580;133926;439427;641670;695969;524302;514203;666403;628869;544558;491363;561102;865300;819477;1054503;1400140;1850822;1694616;1786459;2344649;1852069;1958837;1602303;1559776;1816363;1179285;2715506;2686588;2382696 -5303;'034;Southern Asia;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9573;10338;7116;4099;2883;3657;5668;17315;21860;28898;25845;30675;36183;34352;33218;31398.2;41041;70999;69205;72812;127440;184998;168121;208146;254446;170744;195988;173857;175226;256094;146234;380671;380475;337926 -5303;'034;Southern Asia;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3402;3402;568;10426;2090;2748;3300;2300;2700;2700;2400;2200;13100;38122;92057;91541;6890;10736;2821;2191;2074;763;2588;1943;708;407;270;1148;515;482;4897;3680;20834;176 -5303;'034;Southern Asia;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;194;194;36;437;88;161;199;102;233;233;128;107;2416;5274;8026;8517;757;602;204;140;143;68;354;692;165;116;65;163;170;369;606;531;2366;62 -5303;'034;Southern Asia;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100581;72679;54370;38524;32904;32580;133926;439427;641670;695969;524302;514203;666403;628869;544558;491363;561102;865300;819477;1054503;1400140;1850822;1694616;1786459;2344649;1852069;1958837;1602303;1559776;1816363;1179285;2715506;2686588;2382696 -5303;'034;Southern Asia;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9573;10338;7116;4099;2883;3657;5668;17315;21860;28898;25845;30675;36183;34352;33218;31398.2;41041;70999;69205;72812;127440;184998;168121;208146;254446;170744;195988;173857;175226;256094;146234;380671;380475;337926 -5303;'034;Southern Asia;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3402;3402;568;10426;2090;2748;3300;2300;2700;2700;2400;2200;13100;38122;92057;91541;6890;10736;2821;2191;2074;763;2588;1943;708;407;270;1148;515;482;4897;3680;20834;176 -5303;'034;Southern Asia;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;194;194;36;437;88;161;199;102;233;233;128;107;2416;5274;8026;8517;757;602;204;140;143;68;354;692;165;116;65;163;170;369;606;531;2366;62 -5303;'034;Southern Asia;1867;Industrial roundwood, non-coniferous;5516;Production;m3;13680000;14206000;14088000;14554000;15143000;17746000;18338000;18927000;19611000;20060000;20512000;20315000;20770000;21510000;21888000;22760000;23261000;23814000;24500000;25282400;26010400;26856400;27729400;28712400;29447060;29515400;29301000;25891000;26330900;36573200;37416300;37990300;38350600;38761600;38976700;38629700;39424700;40695000;41519000;41254000;43101000;42442000;43421000;45593000;45692000;46414000;47317000;47981000;54646000;53628000;52759000;51202000;51599340;52659168;53536168;54511168;54423168;54652534;55864635;55864977;56664977;56864977;56864977 -5303;'034;Southern Asia;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1315816;858100;796422;371696;402480;466325;1310706;1351235;1765035;1919235;2076135;2305035;1816711;3276435;3757337;3549342;3045963;3650529;3742187;4128012;4077405;4726029;4990489;4806569;4886304;4138506;3620940;3164663;2818420;2708391;1588772;2237375;2341323;1888926 -5303;'034;Southern Asia;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;233164;168383;217616;37440;46816;59916;118138;134283;190266;192529;388244;404759;388713;691496;837822;866419;795460;1054187;1213042;1079792;1234708;1651513;1799738.28;1807790;1797119;1387980;1093163;1004962;898468;771119;459392;680432;694610;590718 -5303;'034;Southern Asia;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44082;38251;6560;6058;6152;6152;16962;19242;133311;133316;136328;5028;2886;28411;35526;38933;28664;27013;17615;11173;7344;29349;33432;18983;16802;13779;23991;18868;6318;6191;1796;4464;6109;30429 -5303;'034;Southern Asia;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5880;5044;824;1203;1005;1005;1842;2204;14221;14226;14734;659;361;4375;3122;4993;7740;19847;8059;5394;5149;7621;11060;6942;6596;5421;21619;70067;54216;55773;5158;33042;6604;41823 -5303;'034;Southern Asia;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1226793;843026;764383;317738;373491;436539;1284000;1340000;1741000;1908000;2065000;2104000;1591676;2791933;3128258;3128951;2675436;3221162;3264554;3736630;3785063;4252023;4510211;4363323;4307029;3700314;3102032;2775460;2560246;2370490;1394308;2035396;1428114;1761587 -5303;'034;Southern Asia;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;224469;164958;209605;33236;44658;57688;114882;130463;184622;188714;385971;384286;362666;641336;778549;815705;751730;998721;1140539;1025626;1185955;1567574;1725243.28;1736950;1704658;1317502;1012441;936147;808739;741361;425064;649004;437340;558033 -5303;'034;Southern Asia;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43110;37380;3908;2808;5845;5845;16878;16878;178;178;3178;2878;2878;10901;6209;9575;19886;24027;13921;8112;4143;13509;11961;4428;10806;11178;16641;18156;6230;5690;1525;3611;527;22684 -5303;'034;Southern Asia;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5715;4945;542;773;975;975;1829;1829;19;19;532;330;330;3171;1332;3023;5846;12973;6521;2155;2071;3009;1949;1502;4715;4777;20115;69947;54199;55665;5009;32819;227;38134 -5303;'034;Southern Asia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89023;15074;32039;53958;28989;29786;26706;11235;24035;11235;11135;201035;225035;484502;629079;420391;370527;429367;477633;391382;292342;474006;480278;443246;579275;438192;518908;389203;258174;337901;194464;201979;913209;127339 -5303;'034;Southern Asia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8695;3425;8011;4204;2158;2228;3256;3820;5644;3815;2273;20473;26047;50160;59273;50714;43730;55466;72503;54166;48753;83939;74495;70840;92461;70478;80722;68815;89729;29758;34328;31428;257270;32685 -5303;'034;Southern Asia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;972;871;2652;3250;307;307;84;2364;133133;133138;133150;2150;8;17510;29317;29358;8778;2986;3694;3061;3201;15840;21471;14555;5996;2601;7350;712;88;501;271;853;5582;7745 -5303;'034;Southern Asia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;165;99;282;430;30;30;13;375;14202;14207;14202;329;31;1204;1790;1970;1894;6874;1538;3239;3078;4612;9111;5440;1881;644;1504;120;17;108;149;223;6377;3689 -5303;'034;Southern Asia;1868;Sawlogs and veneer logs;5516;Production;m3;6329000;6814000;6655000;7064000;7370000;9942000;10522000;11174000;11868000;12424000;12877000;12903000;13605000;14098000;14409000;15183000;15625000;16253000;16913000;17669000;18409000;19252000;20112000;21156000;22017000;21975000;21623000;21539000;21855000;27649700;27898800;28379600;28363500;28310500;28116000;35975000;36805000;38128000;38081000;39731000;40219460;41538520;42954720;44684120;44707540;44948900;45801000;46431000;52978000;52006000;51108000;49538000;49956000;51008000;52054000;53054000;52969000;53194700;54408700;54408700;55209700;55409700;55409700 -5303;'034;Southern Asia;1868;Sawlogs and veneer logs;5616;Import quantity;m3;42600;23100;12500;37300;54200;36800;36500;45600;67900;31800;39600;58300;25100;25300;60300;51200;59100;78800;74600;66800;36600;49100;37600;36300;137300;454400;933900;1109700;988000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5303;'034;Southern Asia;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;7458;7355;3280;4475;4407;2650;2380;2165;3159;1494;1582;4089;2176;2379;5287;4406;6176;8303;8559;7838;5288;6859;5213;4351;14003;34803;73518;108576;98260;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5303;'034;Southern Asia;1868;Sawlogs and veneer logs;5916;Export quantity;m3;125800;81700;117700;216100;209000;209200;201400;204200;132700;124000;156700;157200;170100;298300;198600;112300;156300;186700;162000;164000;141600;143200;143200;143200;22100;10326;10900;47948;27368;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5303;'034;Southern Asia;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;10106;8960;8569;11388;12023;11148;10539;11978;13258;11479;12701;12675;25303;19108;20821;19923;25201;28319;28867;25656;15104;14676;14676;14676;1132;1206;1456;5303;3159;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5303;'034;Southern Asia;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;1220000;1263000;1321000;1363000;1412000;1520000;1600000;1746000;1855000;2107000;2271000;2310000;2378000;2461000;2557000;2667000;2647000;2774000;2850000;2955000;3069000;3190000;3320000;3459000;3662000;3656000;3640000;3625000;3723000;1953200;1840200;1979000;1958600;1858600;1679000;1912000;1562000;1462000;1422000;2526000;2411460;2480520;2940720;2943120;2945540;2506900;2579000;2574000;2499000;2481000;2445000;2470000;2496000;2480000;2471000;2480000;2477000;2476000;2478000;2478000;2479000;2479000;2479000 -5303;'034;Southern Asia;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;;;100;2200;10500;8400;4900;800;200;1300;1300;49000;700;700;2500;2000;8000;14400;11200;2200;1200;3700;4100;5400;500;800;2400;300;1500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5303;'034;Southern Asia;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;;;5;178;996;536;262;38;9;60;60;3661;65;65;243;195;771;1479;1181;250;143;463;397;390;52;50;174;22;88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5303;'034;Southern Asia;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;8400;14300;33900;21800;10500;10500;4800;4800;4800;4800;4800;4800;100;3100;2700;2000;3700;3700;2500;2500;2500;2500;2500;2500;300;40;0;11;156;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5303;'034;Southern Asia;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;150;166;422;277;275;279;111;111;111;111;111;111;10;414;361;271;502;502;338;338;338;338;338;338;34;6;0;4;22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5303;'034;Southern Asia;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;5109000;5551000;5334000;5701000;5958000;8422000;8922000;9428000;10013000;10317000;10606000;10593000;11227000;11637000;11852000;12516000;12978000;13479000;14063000;14714000;15340000;16062000;16792000;17697000;18355000;18319000;17983000;17914000;18132000;25696500;26058600;26400600;26404900;26451900;26437000;34063000;35243000;36666000;36659000;37205000;37808000;39058000;40014000;41741000;41762000;42442000;43222000;43857000;50479000;49525000;48663000;47068000;47460000;48528000;49583000;50574000;50492000;50718700;51930700;51930700;52730700;52930700;52930700 -5303;'034;Southern Asia;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;42600;23100;12400;35100;43700;28400;31600;44800;67700;30500;38300;9300;24400;24600;57800;49200;51100;64400;63400;64600;35400;45400;33500;30900;136800;453600;931500;1109400;986500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5303;'034;Southern Asia;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;7458;7355;3275;4297;3411;2114;2118;2127;3150;1434;1522;428;2111;2314;5044;4211;5405;6824;7378;7588;5145;6396;4816;3961;13951;34753;73344;108554;98172;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5303;'034;Southern Asia;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;117400;67400;83800;194300;198500;198700;196600;199400;127900;119200;151900;152400;170000;295200;195900;110300;152600;183000;159500;161500;139100;140700;140700;140700;21800;10286;10900;47937;27212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5303;'034;Southern Asia;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;9956;8794;8147;11111;11748;10869;10428;11867;13147;11368;12590;12564;25293;18694;20460;19652;24699;27817;28529;25318;14766;14338;14338;14338;1098;1200;1456;5299;3137;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5303;'034;Southern Asia;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1467000;2188000;1428000;1864000;1018000;1010000;1461000;1524000;1532000;1573000;1597000;1593000;1591000;1589000;1609000;1614340;1606168;1511168;1522168;1516168;1518834;1518935;1519277;1519277;1519277;1519277 -5303;'034;Southern Asia;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 -5303;'034;Southern Asia;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1467000;2188000;1428000;1847000;696000;685000;1190000;1254000;1258000;1294000;1313000;1305000;1298000;1292000;1312000;1317340;1309168;1214168;1225168;1219168;1221834;1221935;1222277;1222277;1222277;1222277 -5303;'034;Southern Asia;1870;Pulpwood and particles (1961-1997);5516;Production;m3;59000;62000;76000;90000;343000;352000;350000;335000;335000;381000;445000;640000;919000;1199000;1283000;1418000;1326000;1271000;1271000;1302400;1302400;1326400;1368400;1343400;1315060;1308400;1317000;1657000;1751900;2278700;2476700;2433700;2471700;2550700;2502700;2352700;1949700;;;;;;;;;;;;;;;;;;;;;;;;;; -5303;'034;Southern Asia;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;;;;;;;;;;;;;;;;;;;;;;;;;; -5303;'034;Southern Asia;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;49000;52000;66000;80000;323000;332000;330000;315000;315000;351000;415000;590000;831000;1074000;1133000;1238000;1174000;1126000;1126000;1157400;1157400;1181400;1223400;1198400;1170060;1163400;1172000;1512000;1606900;2070700;2265700;2219700;2254700;2331700;2280700;2062700;1650700;;;;;;;;;;;;;;;;;;;;;;;;;; -5303;'034;Southern Asia;1871;Other industrial roundwood;5516;Production;m3;8667000;8751000;8839000;8928000;9020000;9154000;9252000;9355000;9457000;9571000;9674000;9320000;8905000;8996000;9105000;9212000;9318000;9422000;9526000;9627000;9730000;9829000;9929000;10032000;10137000;10248000;10363000;6684000;6815000;9071000;9368000;9660000;9994000;10295000;10589000;2894000;2929000;2973000;2896000;2850000;3690000;3019000;3059000;2989000;3013000;3061000;3169000;3180000;3233000;3177000;3178000;3196000;3196000;3196000;3113000;3086000;3086000;3086000;3086000;3086000;3086000;3086000;3086000 -5303;'034;Southern Asia;1871;Other industrial roundwood;5616;Import quantity;m3;6100;10400;26700;9100;34100;11400;10700;17400;27200;98300;199700;54000;58400;47300;64000;63800;40500;40500;41000;41000;41000;40700;41300;41300;1300;400;600;200;1700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5303;'034;Southern Asia;1871;Other industrial roundwood;5622;Import value;1000 USD;346;673;897;473;1242;761;782;1758;1953;5560;10846;3080;2045;2543;15383;13556;11150;11150;11202;11202;11202;11170;11196;11196;86;26;34;11;82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5303;'034;Southern Asia;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;145000;148000;151000;155000;158000;162000;166000;171000;174000;179000;183000;188000;193000;197000;202000;206000;209000;213000;215000;216000;217000;216000;215000;215000;215000;215000;217000;219000;223000;265000;276000;290000;303000;317000;330000;390000;398000;411000;224000;229000;244000;331000;337000;327000;337000;347000;368000;369000;371000;372000;374000;374000;374000;374000;374000;374000;374000;374000;374000;374000;374000;374000;374000 -5303;'034;Southern Asia;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;8522000;8603000;8688000;8773000;8862000;8992000;9086000;9184000;9283000;9392000;9491000;9132000;8712000;8799000;8903000;9006000;9109000;9209000;9311000;9411000;9513000;9613000;9714000;9817000;9922000;10033000;10146000;6465000;6592000;8806000;9092000;9370000;9691000;9978000;10259000;2504000;2531000;2562000;2672000;2621000;3446000;2688000;2722000;2662000;2676000;2714000;2801000;2811000;2862000;2805000;2804000;2822000;2822000;2822000;2739000;2712000;2712000;2712000;2712000;2712000;2712000;2712000;2712000 -5303;'034;Southern Asia;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;6100;10400;26700;9100;34100;11400;10700;17400;27200;98300;199700;54000;58400;47300;64000;63800;40500;40500;41000;41000;41000;40700;41300;41300;1300;400;600;200;1700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5303;'034;Southern Asia;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;346;673;897;473;1242;761;782;1758;1953;5560;10846;3080;2045;2543;15383;13556;11150;11150;11202;11202;11202;11170;11196;11196;86;26;34;11;82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5303;'034;Southern Asia;1630;Wood charcoal;5510;Production;t;1169161;1190986;1207963;1230293;1260186;1282150;1305595;1332525;1358958;1372803;1398411;1436221;1464748;1494245;1506739;1542697;1563407;1593619;1667825;1737429;1762833;1777821;1790253;1822335;1826051;1859864;1887276;1899524;1979609;1952272;2000626;2035214;2116340;2144591;2170193;2176161;2181903;2136772;2156518;2166639;2189261;3300712;3409656;3419543;3429176;3436856;3451961;3462872;3466867;3477154;3485447;3494705;3504016;3513520;3523069;3530436;3538008;3547275;3555343;3563576;3572099;3580804;3589693 -5303;'034;Southern Asia;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;1380;318;13598;12000;12000;11488;11473;11525;11766;618;600;1864;3563;5008;2329;8518;19975;22542;17531;22181;32562;28496;91847;66176;39421;21898;144762;137108;127684;195284.7;168476;134636 -5303;'034;Southern Asia;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;384;84;1999;1547;1547;1476;1471;1469;1559;174;170;1075;1572;2267;670;2125;5756;6594;7335;11096;16339;14516;37158;32806;18784;11115;45351;40951;38355;55437.18;71824;50096 -5303;'034;Southern Asia;1630;Wood charcoal;5910;Export quantity;t;11400;13400;9200;13000;15200;13400;14700;16300;19700;19800;19700;19700;19700;19700;19700;27120;25000;25000;20600;31000;36000;31300;34100;34100;10000;7900;7900;7900;7900;7900;5600;8861;4121;11817;8981;1200;9068;9068;7700;14668;11400;6549;8836;7234;8074;6972;12998;35349;34707;23402;37390;38526;39461;65573;41734;43692;51104;102915;125304;127371;244115.74;302634;211216 -5303;'034;Southern Asia;1630;Wood charcoal;5922;Export value;1000 USD;517;579;384;525;612;678;1093;885;577;580;581;581;581;584;578;1441;1332;1332;690;5881;6527;3730;3987;3987;1384;1148;1148;1148;1148;1148;625;2186;1459;2416;2002;415;2591;2591;2563;4393;3141;2674;3007;3196;3549;2736;3445;7904;8263;8300;20100;17259;16569;29628;16755;17339;23315;25087;37836;43657;56201;68523;55196 -5303;'034;Southern Asia;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;620000;620000;624000;3000;3000;3000;3000;3000;3000;18000;30000;17000;16000;18000;18000;18000;8366;6421;6421;6421;6421;6421;13421;13421;13421;13421 -5303;'034;Southern Asia;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;421;2721;121;121;229;1744;11806;14741;15000;11266;15668;7924;7864;10292;20747;329500;600397;683255;547653;269972;177705;56597;6194;7313.98;4721;67051 -5303;'034;Southern Asia;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;85;4;4;10;222;997;1319;1533;1271;2533;1375;1632;5113;7652;42632;67878;71073;57141;26505;18100;9442;916;1211;1247;11994 -5303;'034;Southern Asia;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5341;5749;1329;1270;1760;3299;17110;16881;1118;1895;3803;24606;25552;29436;30538;25523;25528;24548;5935;6448;4357;5642;8538;9272.6;11013;4026 -5303;'034;Southern Asia;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;371;451;96;26;185;226;856;845;392;561;1129;2301;2915;5477;6272;3466;3236;2731;1885;1732;785;709;886;1237.38;1504;468 -5303;'034;Southern Asia;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 -5303;'034;Southern Asia;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;348;348;36;0;0;0;2300;0;0;4;28;545;2068;762;729;706;1289;2140;1251;985;323353;592440;680658;531699;256464;162100;51413;910;920;411;58094 -5303;'034;Southern Asia;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;17;3;0;0;0;65;0;0;2;7;48;240;337;340;220;335;445;1843;1900;40742;65113;70207;54849;25017;16304;8684;303;326;301;10335 -5303;'034;Southern Asia;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116;116;5054;17100;16074;41;41;41;41;41;1400;2750;15435;15435;252;54;545;20563;21404;21774;22409;22146;21893;21753;1636;2420;2827;75;213;203;1368;2478 -5303;'034;Southern Asia;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;349;999;947;1;1;1;1;1;163;125;741;741;297;25;165;1064;1413;1942;2683;2599;2476;2181;959;999;391;91;51;89;214;228 -5303;'034;Southern Asia;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;693000;693000;506000;510000;620000;620000;620000;624000;3000;3000;3000;3000;3000;3000;6000;6000;3000;3000;3000;3000;3000;3285;3300;3300;3300;3300;3300;10300;10300;10300;10300 -5303;'034;Southern Asia;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;820;1091;189;221;521;521;421;421;121;121;225;1716;11261;12673;14238;10537;14962;6635;5724;9041;19762;6147;7957;2597;15954;13508;15605;5184;5284;6393.98;4310;8957 -5303;'034;Southern Asia;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;47;6;9;19;26;21;20;4;4;8;215;949;1079;1196;931;2313;1040;1187;3270;5752;1890;2765;866;2292;1488;1796;758;613;885;946;1659 -5303;'034;Southern Asia;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4613;8331;5486;5330;5541;5315;5300;5708;1288;1229;360;549;1675;1446;866;1841;3258;4043;4148;7662;8129;3377;3635;2795;4299;4028;1530;5567;8325;9069.6;9645;1548 -5303;'034;Southern Asia;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;166;276;180;252;243;371;370;450;95;25;22;101;115;104;95;536;964;1237;1502;3535;3589;867;760;550;926;733;394;618;835;1148.38;1290;240 -5303;'034;Southern Asia;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27000;27000;27000;27000;27000;27000;27000 -5303;'034;Southern Asia;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2665;825;344;329;329;19511;37139;11187;24397.57;7591;4237 -5303;'034;Southern Asia;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;640;287;155;190;190;1163;3532;1780;2025;1711;1342 -5303;'034;Southern Asia;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;149;73;0;0;0;1721;1131;1062;845.82;6837.82 -5303;'034;Southern Asia;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;26;26;0;0;0;162;225;292;373.76;1584.76 -5303;'034;Southern Asia;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2665;825;344;329;329;329;1213;639;1168.57;392;465 -5303;'034;Southern Asia;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;640;287;155;190;190;190;389;315;550;329;222 -5303;'034;Southern Asia;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;149;73;0;0;0;449;195;177;242.82;104.82 -5303;'034;Southern Asia;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;26;26;0;0;0;35;96;148;277.76;68.76 -5303;'034;Southern Asia;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19182;35926;10548;23229;7199;3772 -5303;'034;Southern Asia;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;973;3143;1465;1475;1382;1120 -5303;'034;Southern Asia;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1272;936;885;603;6733 -5303;'034;Southern Asia;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;127;129;144;96;1516 -5303;'034;Southern Asia;1872;Sawnwood;5516;Production;m3;2827300;3006600;3151400;3347900;3439000;4223000;4595000;4854300;5204800;5679000;6084000;6309000;6754000;7358000;7877000;8542000;9199000;10063000;11045000;12021000;13100000;14297000;16090000;17460000;18983000;19033000;19062000;19176000;19468000;17973000;18042400;17972000;18005000;17637000;17748700;17747200;18048200;18073200;18068200;18123000;20571660;22880460;22818930;23008000;23030000;29269000;29311000;29333000;29328000;28116000;28651000;28212000;27746000;28197821;28699014;28833014;28486014;26548014;26888014;26707841;27215163;27291987;27291987 -5303;'034;Southern Asia;1872;Sawnwood;5616;Import quantity;m3;83200;102800;76300;199100;184000;269450;266200;415400;239450;166950;163850;156250;141550;107850;254450;288050;509500;408500;412100;456300;500200;344200;524600;453100;202918;223307;284469;295584;267073;287889;267054;108288;188829;134375;86950;159377;197362;179308;205380;198289;298000;548629;768510;1109151;1237280;1172329;1454182;1304545;1685406;1808819;2463877;2202629;2069459;2005200;2473830;2605677;2698170;2564845;3167579;3256145;3254063;3523640;3307739 -5303;'034;Southern Asia;1872;Sawnwood;5622;Import value;1000 USD;8012;9051;7504;10640;13193;15321;14325;18034;16745;12045;11480;12127;11724;9378;39078;45376;95425;75484;80002;88509;79325;56792;92489;82810;23178;37081;51946;49305;32249;77909;86395;37261;17452;20145;15205;28339;24017;22034;40321;36489;32837;65090;91881;131034;155852;178277;283893;297392.1;322409;382565;589756;557690;550640;551433;585063;626812;720513;847453;836132;680950;783163;823275;729372 -5303;'034;Southern Asia;1872;Sawnwood;5916;Export quantity;m3;900;500;700;1800;400;800;1600;1500;1500;800;1200;1200;3600;3800;8500;18400;7000;8700;4300;4300;5900;3850;3850;3850;4550;11830;5293;6120;47526;70851;69151;9502;8028;9327;18130;28258;21332;15667;11679;12055;10439;7720;7758;20399;20577;18487;25876;76567;46068;24664;21333;78156;80429;37397;35870;31282;49750;50861;73928;22849;24047;10612;7247 -5303;'034;Southern Asia;1872;Sawnwood;5922;Export value;1000 USD;100;48;73;177;23;119;179;340;241;236;264;264;429;743;1089;2271;2191;2475;1197;1632;1688;1190;1190;1190;1789;4954;3699;2341;16031;19712;19426;4327;3673;5295;5707;6610;8720;8025;4938;5639;5169;4425;6997;5845;6019;7619;12221;36270;21086;19195;18831.1;21252;32756;34700;34263;20879;26362;25005;41742;7753;8642;9348;10045 -5303;'034;Southern Asia;1632;Sawnwood, coniferous;5516;Production;m3;715000;779000;846000;866500;881500;941500;983000;1025500;1062000;1133000;1224500;1264500;1275500;1356500;1375500;1563000;1585500;1708500;1910500;2043500;2200500;2371500;2615000;2868000;3114000;3076000;3102000;3204000;3176000;1012000;890000;975000;1239000;1094000;1147000;1162000;1062000;1062000;1075000;1086000;979660;1039460;935930;1041000;1053000;1003000;1012000;1021000;1026000;1026000;1005000;1008000;1027000;1012821;1041014;1050014;1182014;1154014;1086014;906014;906014;906014;906014 -5303;'034;Southern Asia;1632;Sawnwood, coniferous;5616;Import quantity;m3;56100;65650;53750;66100;101600;107900;99450;126400;126150;122000;127850;129700;115900;86050;199450;232250;444600;381500;373800;399800;362450;212750;400400;314400;105168;84924;142537;120998;105319;154320;133020;33337;111803;20674;17740;84446;114913;112171;133850;133750;226561;438764;645764;964094;1062516;1024242;1325898;1141510;1528892;1613084;2076357;1852894;1694945;1595321;1901298;1917817;1815460;1755591;2144634;2287874;1940272;1955740;1764032 -5303;'034;Southern Asia;1632;Sawnwood, coniferous;5622;Import value;1000 USD;4829;4797;4879;4357;6167;6522;4685;8147;8861;8483;8475;10002;9267;7287;30027;35171;83374;70428;73315;79200;67952;39483;77037;62252;13842;13403;26007;21678;18194;56799;67460;11919;10967;3510;3826;13966;12950;10670;24192;23334;17685;42953;62147;93676;111019;128652;230550;233408;257989;290246;434152;392034;368012;337732;334558;312830;309099;428604;411644;377687;429680;441755;358723 -5303;'034;Southern Asia;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;1082;1091;700;700;1000;3344;3917;105;305;205;331;801;2015;3290;817;5880;22855;2877;2844;2740;3449;982;8940;5184;2960;1280;2193;428;97;3256;1597;2463 -5303;'034;Southern Asia;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;197;237;139;152;169;905;995;50;116;86;49;201;333;1100;236;1286;9215;795;689;459;1461;469;2439;1553;798;306;500;286;243;901;711;1259 -5303;'034;Southern Asia;1633;Sawnwood, non-coniferous;5516;Production;m3;2112300;2227600;2305400;2481400;2557500;3281500;3612000;3828800;4142800;4546000;4859500;5044500;5478500;6001500;6501500;6979000;7613500;8354500;9134500;9977500;10899500;11925500;13475000;14592000;15869000;15957000;15960000;15972000;16292000;16961000;17152400;16997000;16766000;16543000;16601700;16585200;16986200;17011200;16993200;17037000;19592000;21841000;21883000;21967000;21977000;28266000;28299000;28312000;28302000;27090000;27646000;27204000;26719000;27185000;27658000;27783000;27304000;25394000;25802000;25801827;26309149;26385973;26385973 -5303;'034;Southern Asia;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;27100;37150;22550;133000;82400;161550;166750;289000;113300;44950;36000;26550;25650;21800;55000;55800;64900;27000;38300;56500;137750;131450;124200;138700;97750;138383;141932;174586;161754;133569;134034;74951;77026;113701;69210;74931;82449;67137;71530;64539;71439;109865;122746;145057;174764;148087;128284;163035;156514;195735;387520;349735;374514;409879;572532;687860;882710;809254;1022945;968271;1313791;1567900;1543707 -5303;'034;Southern Asia;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;3183;4254;2625;6283;7026;8799;9640;9887;7884;3562;3005;2125;2457;2091;9051;10205;12051;5056;6687;9309;11373;17309;15452;20558;9336;23678;25939;27627;14055;21110;18935;25342;6485;16635;11379;14373;11067;11364;16129;13155;15152;22137;29734;37358;44833;49625;53343;63984.1;64420;92319;155604;165656;182628;213701;250505;313982;411414;418849;424488;303263;353483;381520;370649 -5303;'034;Southern Asia;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;900;500;700;1800;400;800;1600;1500;1500;800;1200;1200;3400;3350;5850;12950;6900;8600;4200;4200;4750;2700;2700;2700;3400;10680;4143;4970;46376;69701;68001;8420;6937;8627;17430;27258;17988;11750;11574;11750;10234;7389;6957;18384;17287;17670;19996;53712;43191;21820;18593;74707;79447;28457;30686;28322;48470;48668;73500;22752;20791;9015;4784 -5303;'034;Southern Asia;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;100;48;73;177;23;119;179;340;241;236;264;264;417;713;884;1876;2183;2467;1189;1624;1576;1078;1078;1078;1677;4842;3587;2229;15919;19600;19314;4130;3436;5156;5555;6441;7815;7030;4888;5523;5083;4376;6796;5512;4919;7383;10935;27055;20291;18506;18372.1;19791;32287;32261;32710;20081;26056;24505;41456;7510;7741;8637;8786 -5303;'034;Southern Asia;1634;Veneer sheets;5516;Production;m3;;100;300;300;1600;1600;1600;55100;62100;55800;39100;24300;24900;34800;43400;49106;52404;36804;7004;7004;7204;7004;7004;7004;9804;10804;46104;48104;41504;31604;29104;25604;14704;15604;23250;27000;24000;23400;59000;40000;228000;422000;460000;492000;524000;529000;547000;561000;560000;580000;580000;580000;579000;579000;579200;579200;579200;579200;579200;572070;582054;582054;582054 -5303;'034;Southern Asia;1634;Veneer sheets;5616;Import quantity;m3;100;100;100;300;300;500;700;1200;1400;1500;4500;4000;7300;7000;6900;6000;8600;4800;4500;7200;6000;3900;4400;3300;2700;2600;2400;2000;2000;4000;3700;5079;2220;3257;4597;6247;5519;9846;11489;14589;18588;15686;20859;27323;30202;50786;52552;69445;68104;37083;92869;130788;176653;234897;394668;450439;440637;428787;455358;328123;534956;452935;623924 -5303;'034;Southern Asia;1634;Veneer sheets;5622;Import value;1000 USD;46;46;34;44;161;161;240;392;543;596;1149;1223;1566;1566;2226;2423;3475;3318;3229;4018;4880;3926;4256;3248;2294;2144;2245;1895;2019;3017;2966;6316;2578;2874;2632;6094;4062;6198;8608;9576;10188;9958;12256;13850;14650;27884;30205;40243;35716;38865;61446;74604;83706;113615;197928;231227;260851;267966;316102;198058;336570;316093;393622 -5303;'034;Southern Asia;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;3036;931;1235;3746;1546;1506;3100;2459;2010;1110;2100;4033;6104;13760;20240;27652;18173;28116;7912;12981;10373;7806;7852;9036;8655;7769;16158;12762;34320;71565;62549;57860 -5303;'034;Southern Asia;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;3086;1900;2747;3093;3387;4166;4876;4549;4397;2225;4342;4886;8733;12915;17528;23917;19969;19883;17427;14956;19156;19026;17193;17597;19153;15543;20398;21098;19984;33313;38721;52426 -5303;'034;Southern Asia;1873;Wood-based panels;5516;Production;m3;95300;102300;121000;132400;159500;167300;179459;238759;246493;262023;274529;278352;308712;307166;299372;337258;433300;443600;421300;409000;492000;530100;558640;648900;681600;1208800;738900;685600;704500;757800;785200;756800;738400;813200;886600;884900;711000;893800;849800;918500;1380400;2522600;2751800;3095100;3385700;3579700;4105000;4584500;5195000;5888500;6920500;7718800;8428900;9560100;10138600;11300300;13045200;14785900;15418700;15893914;16933914;17592214;18958214 -5303;'034;Southern Asia;1873;Wood-based panels;5616;Import quantity;m3;21100;37486;45500;50721;48821;68351;47159;26953;25074;19386;34885;73590;76000;76100;149000;137600;159700;158600;158800;171700;150100;154100;155200;159900;84200;68845;63434;75304;69603;85827;98622;46822;28003;46737;45360;50824;113930;180152;237979;233019;380747;332161;572352;949190;830203;1054798;1182984;1064498;1538215;1642536;2000339;2205018;1867547;2001462;2188698;2270076;2225457;1854360;2184047;1820296;2000812.31;1846317;2163440 -5303;'034;Southern Asia;1873;Wood-based panels;5622;Import value;1000 USD;3464;4286;4304;4866;5921;7721;5684;4623;4555;3359;5786;15094;20416;21407;34794;41168;56621;56922;57363;67490;59276;61497;59383;61243;41034;21336;19298;26521;26802;46380;48665;26651;12132;19326;18537;16905;31185;38241;45991;39914;75197;83068;122464;214727;206078;308736;444476;423984;594237;659221;796922;834092;653393;732226;789506;808443;736124;680679;595605;485099;533138.19;628388;734500 -5303;'034;Southern Asia;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;15415;17686;21814;21625;18882;20571;42829;40235;19069;14219;9738;11690;9514;15012;46136;128830;204530;208221;109899;204449;258508;125087;192747;244643;268419;255870;367833;282588;288658;311900;337435;370610;369423;930172.47;876691;655870 -5303;'034;Southern Asia;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;7781;8708;11899;12289;9700;9131;15044;15226;6819;6144;3320;4205;3723;4707;12000;25752;54034;56144;37460;59177;69453;52859;92719;107287;117721;120172;155960;113558;153361;146102;154710;128458;117563;231483.95;264150;202253 -5303;'034;Southern Asia;1640;Plywood and LVL;5516;Production;m3;85200;90000;103700;107800;112600;113500;115900;155700;146400;168500;173600;160900;165500;185700;173100;193800;190500;210100;203600;225800;303800;319000;322000;388000;395000;391000;397000;331000;296700;337000;335000;280000;291500;296500;350700;336000;124500;117000;128000;129700;486700;1778700;1963700;2139700;2337700;2601700;2911000;3224000;3582000;3985000;4431000;4934300;5499300;6137000;6847000;7641000;8530000;9730000;10231000;10233414;10833414;11414414;12114414 -5303;'034;Southern Asia;1640;Plywood and LVL;5616;Import quantity;m3;20300;36086;41900;41021;42521;55821;39300;25900;24500;18800;33100;35700;35500;35600;50200;62500;81300;81400;81700;90900;72200;76400;77400;77200;70900;54620;45176;67413;63103;78879;93522;32852;17950;25948;25047;23759;46541;60969;61652;50202;98102;65961;103309;135318;107316;148014;132009;180204;191309;284673;325681;272283;212424;211292;210039;240408;307112;302428;407890;416834;640567;453530;564588 -5303;'034;Southern Asia;1640;Plywood and LVL;5622;Import value;1000 USD;3155;4014;3688;3530;4748;5949;4434;4415;4455;3255;5347;11587;15357;16358;22770;30451;44194;44228;44379;52695;44643;46714;44916;45912;38914;14187;16534;24667;24676;43858;46958;19595;8846;13395;12115;10580;19549;18558;19663;17292;30744;21404;34980;43834;41561;64629;76848;114015;113518;129435;165595;155773;126368;133088;138936;139130;168807;183305;168333;118169;163067;186054;245824 -5303;'034;Southern Asia;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;11489;10397;10433;10800;13906;17549;38205;33730;15530;11978;6798;9650;7650;8148;21460;56006;30977;33689;42747;121287;74114;48770;67057;63275;75972;49200;84393;75600;80553;67710;66907;81397;97717;165855;167720;40117 -5303;'034;Southern Asia;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;6813;4739;5193;6063;7409;7891;13767;13970;6131;5969;2861;3897;3439;3458;8706;13937;18782;21084;25551;30304;22281;18240;32243;24134;34042;29040;38621;39865;54701;42012;41393;36924;37749;67143;77640;34795 -5303;'034;Southern Asia;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;316;3911 -5303;'034;Southern Asia;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;374;2346 -5303;'034;Southern Asia;1646;Particle board and OSB (1961-1994);5516;Production;m3;1300;1200;6000;10700;24800;29000;33600;33900;44000;42800;50300;57200;77500;58900;64100;78700;172800;165600;150200;127200;110200;125800;144740;179600;212500;284200;268800;282200;320800;339900;362400;391700;367700;432700;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5303;'034;Southern Asia;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;100;36100;40100;40100;97600;70500;75400;75800;75700;75700;75700;75300;75300;75300;4000;4025;5058;5491;4800;4048;3500;6773;3977;8741;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5303;'034;Southern Asia;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;84;3204;4959;4929;11506;9739;11587;12199;12571;13017;13914;14044;14052;14080;744;5911;1325;1427;1533;1485;1122;3923;1207;1992;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5303;'034;Southern Asia;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;7204;10856;10300;3309;941;498;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5303;'034;Southern Asia;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;3946;6542;6062;1569;388;120;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5303;'034;Southern Asia;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;457700;466600;499700;614700;539700;599700;647500;522700;560700;709900;800200;734200;859200;860700;1088200;1181200;1255200;1339200;1469200;1839200;1633200;1727200;2057200;2124200;2167500;2279200;2119200;2156500;2222500 -5303;'034;Southern Asia;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5900;5565;12669;17756;42996;42072;79954;66125;76676;126694;141870;98605;122124;98769;138256;120697;218902;221408;235087;166167;176388;219045;163201;164201;331297;234491;275542.45;149414;156952 -5303;'034;Southern Asia;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1386;1394;2700;2868;6317;5642;9907;15223;18716;34114;40138;32457;52322;35743;48744;55815;97249;71573;55341;43790;42131;42099;36519;36436;54715;41263;39364.42;43054;34727 -5303;'034;Southern Asia;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2404;2738;238;2338;1038;1338;2038;11442;15925;57855;58674;33891;29571;25419;30113;26679;14019;25800;22848;33560;35356;45745;78843;101843;117655;131755;375017.37;215040;209337 -5303;'034;Southern Asia;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;671;640;54;344;128;231;427;1435;3525;10136;10006;5851;10289;11283;12829;10749;7715;10582;8904;12477;8443;10838;14851;22570;22767;22078;51570.16;40669;36362 -5303;'034;Southern Asia;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;127;31;31;35;3334;6400;8193;14613;13784;18682;19598;6708;14602;2653;1998;1606;2092;5950;4278;3716;3529;3383;3016.46;3363;2814 -5303;'034;Southern Asia;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;2;2;4;831;1049;1481;1864;1792;3991;3620;2598;3313;2500;889;686;710;1074;1566;2596;938;1006;674;1050;915 -5303;'034;Southern Asia;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103;29;47;31;3;5;32;0;2;31;1136;19224;1852;3437;463;311 -5303;'034;Southern Asia;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;146;31;43;54;11;7;80;0;1;40;716;2911;231;492;150;118 -5303;'034;Southern Asia;1874;Fibreboard;5516;Production;m3;8800;11100;11300;13900;22100;24800;29959;49159;56093;50723;50629;60252;65712;62566;62172;64758;70000;67900;67500;56000;78000;85300;91900;81300;74100;533600;73100;72400;87000;80900;87800;85100;79200;84000;78200;82300;86800;162100;182100;189100;246200;221200;227400;245500;247800;243800;334800;499800;524800;722300;1234300;1445300;1460400;1583900;1658400;1932100;2458000;2931700;3020200;3381300;3981300;4021300;4621300 -5303;'034;Southern Asia;1874;Fibreboard;5616;Import quantity;m3;800;1400;3600;9700;6300;12530;7859;1053;574;586;1685;1790;400;400;1200;4600;3000;1400;1400;5100;2200;2400;2500;7400;9300;10200;13200;2400;1700;2900;1600;7197;6076;12048;14413;21500;54720;101427;133204;140714;202660;200040;389033;680778;572824;793566;915067;766843;1189052;1230458;1441154;1708674;1418038;1622397;1800179;1804673;1750866;1384015;1441331;1165588;1081686.4;1240010;1439086 -5303;'034;Southern Asia;1874;Fibreboard;5622;Import value;1000 USD;309;272;616;1336;1173;1772;1250;208;100;104;355;303;100;120;518;978;840;495;413;1778;719;739;415;1251;1376;1238;1439;427;593;1037;585;3133;2079;3939;5036;4931;8936;16815;20006;16978;34544;46437;67937;135730;122898;209786;313514;270235;428355;471373;530765;604246;470795;554662;607729;626140;529232;458342;371619;324661;330032.77;398230;453034 -5303;'034;Southern Asia;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;2081;4126;4101;801;2003;602;1002;526;4826;13234;56899;115698;115858;33261;53591;158872;46175;98964;167318;166644;183817;249848;171632;162358;165316;167549;152334;138099;385863.1;493468;406105 -5303;'034;Southern Asia;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;852;1157;585;48;121;115;180;53;822;1859;8290;25116;25054;6058;18584;35743;21759;49684;75384;73086;82221;104782;65250;87821;89199;90031;65856;57505;112278.79;145691;130978 -5303;'034;Southern Asia;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67200;66300;71800;86100;124100;123100;135900;116100;121100;130500;119300;114300;124300;126300;123300;117300;115300;116300;107800;106300;105300;104300;104300;101300;101300;101300;101300;101300;101300 -5303;'034;Southern Asia;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5413;10900;24481;17844;21916;17726;31305;35670;43182;72751;76122;105419;160959;106402;67926;76151;103855;102785;90521;125249;109494;70658;78514;67590;64161;65347;50246.64;42725;69304 -5303;'034;Southern Asia;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2700;2990;4863;4082;5174;3778;8980;13198;16742;27938;36059;48691;62903;49742;37393;46420;58745;54222;55742;76900;67928;44018;46129;40396;34198;31857;28435.46;26548;33621 -5303;'034;Southern Asia;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;2;2;2;2;2;2;6185;8687;8687;3431;16484;8107;1755;1509;972;488;1161;1610;1768;1819;9209;7614;7842;5179;9263.71;7933;6515 -5303;'034;Southern Asia;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;3;3;3;3;3;3;1882;3960;3960;1548;6851;4023;2400;1508;979;808;2282;2817;2599;2823;7361;6011;6219;4170;5887;5652;6227 -5303;'034;Southern Asia;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;13000;12000;73000;55000;63000;107300;102100;103300;112000;125500;126500;207500;370500;398500;602000;1116000;1326000;1349600;1474600;1550100;1824800;2350700;2827400;2915900;3277000;3877000;3917000;4517000 -5303;'034;Southern Asia;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3200;2800;24679;75323;97380;105280;144507;138016;275837;558005;426472;619260;692252;608474;1042151;970176;1089578;1494871;1208792;1357041;1576640;1637924;1543975;1161101;1178225;963812;882036.1;1093952;1298326 -5303;'034;Southern Asia;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1242;924;3385;11773;13707;11721;23470;30766;46016;97804;76868;151209;241050;202993;354075;362389;388061;501041;363310;421589;484831;526673;419214;354639;285465;245348;257832.98;336921;377570 -5303;'034;Southern Asia;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;1300;23018;23201;23201;17100;22749;143786;31263;64184;81296;90631;105916;154776;88112;93880;99543;100073;115035;100001;258613.79;364136;307694 -5303;'034;Southern Asia;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;700;3771;6526;6526;2747;7644;27550;10336;26082;34507;40901;47200;59268;22565;44402;40629;41594;48624;41045;69991.02;103044;84996 -5303;'034;Southern Asia;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;15000;11000;7800;11000;15000;19000;7000;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 -5303;'034;Southern Asia;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;200;900;400;3000;700;1200;200;200;200;200;2895;1498;2914;5800;7800;5560;8260;13908;17708;26848;26354;70014;50022;70230;68887;61856;51967;78975;184131;247721;111018;118725;140107;114045;96091;128377;155324;198945;136429;149403.66;103333;71456 -5303;'034;Southern Asia;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;20;87;37;158;67;120;42;42;42;42;1318;592;991;1094;1017;688;960;1125;1479;2094;2473;5179;9988;9971;9886;9561;17500;36887;62564;83959;48983;51743;56173;54970;55449;63889;63307;51956;47456;43764.33;34761;41843 -5303;'034;Southern Asia;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1202;1370;539;4101;801;2001;600;1000;524;4824;11932;27696;83810;83970;12730;14358;6979;13157;33271;85050;75525;76740;93462;81752;66659;56564;59862;29457;32919;117985.6;121399;91896 -5303;'034;Southern Asia;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;515;588;277;585;48;118;112;177;50;819;1156;2637;14630;14568;1763;4089;4170;9023;22094;39898;31377;32739;42697;40086;40596;41209;42426;11013;12290;36400.77;36995;39755 -5303;'034;Southern Asia;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;8000;9500;9300;12400;20100;20800;22759;41559;47693;43523;43429;53852;59712;58166;54572;60758;64400;65900;65500;55000;75000;82300;88900;78300;71100;73600;70100;69400;72000;69900;80000;74100;64200;65000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5303;'034;Southern Asia;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;800;1400;3600;9700;6300;12530;7859;1053;574;586;1685;1790;400;400;1200;4600;3000;1400;1400;5100;2200;2200;1600;7000;6300;9500;12000;2200;1500;2700;1400;4302;4578;9134;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5303;'034;Southern Asia;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;309;272;616;1336;1173;1772;1250;208;100;104;355;303;100;120;518;978;840;495;413;1778;719;719;328;1214;1218;1171;1319;385;551;995;543;1815;1487;2948;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5303;'034;Southern Asia;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5303;'034;Southern Asia;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5303;'034;Southern Asia;1879;Total fibre furnish;5510;Production;t;364500;385000;400200;456400;601400;659400;702300;741300;768600;887600;953600;1008500;1019900;1096000;1164500;1271600;1286500;1523700;1623409;1348509;1451409;1555409;1804600;1737600;1914000;2119000;2233000;2416000;2486000;2580600;2665300;3062100;3103700;2928700;2981700;3056500;3182500;3394500;3805500;4009200;4915100;5591000;6056800;6207500;6741000;7072000;7332000;7535000;7546000;7934400;8056700;7995700;8842400;10853400;11243400;11086900;11090900;11090900;11090900;11090900;11090900;11090900;11090900 -5303;'034;Southern Asia;1879;Total fibre furnish;5610;Import quantity;t;16700;11900;14600;14400;13800;16400;15600;69100;69000;64800;73100;87700;65400;50400;56400;48100;73700;71973;103604;98400;84900;119800;203900;309200;370000;575231;426842;405119;374237;637185;758640;555506;499872;519299;515055;647464;771933;1032085;1177919;1227163;1617437;1659521;1934362;2306473;2664575;2613623;2525259;2588310;3105040;3042063;3368184;3695038;4093635;4684366;4660004;5169398;5236170;8576658;8962802;8264079;9423798.86;9256727.77;10668981 -5303;'034;Southern Asia;1879;Total fibre furnish;5622;Import value;1000 USD;2600;1781;2154;2340;2101;1635;2349;12983;14895;14487;14574;22314;18190;20250;24348;19551;29797;29012;43133;41897;40280;53910;80220;87099;85943;185046;130766;138716;97484;200151;249226;201294;120947;139965;197660;192517;201037;200077;236210;253885;282990;320206;392744;537589;631972;642968;786105;933441;796748;1128148;1489126;1411583;1503825;1718795;1585563;1651189;1897566;2708152;2610227;2052668;3258020.3;3970299.78;3263972 -5303;'034;Southern Asia;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2680;1519;4608;10607;11319;27836;22440;34160;51390;65284;73776;108714;107357;100146;96526;97083;119663;93733;176718;155292;161491;192449;182564;199422;221953;213290;202562;144258;115306;137549.99;137079.4;115143 -5303;'034;Southern Asia;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;802;951;1419;5090;3130;6336;4952;4611;16217;19492;19773;28534;21605;20946;17955;19508;34459;17659;47209;39766;38855;35618;42558;48458;53429;51041;59691;33943;24011;43804.39;44794.04;27281 -5303;'034;Southern Asia;1878;Pulp for paper;5510;Production;t;364500;385000;400200;456400;601400;659400;702300;741300;768600;811600;877600;924500;923900;996000;1030500;1110600;1116500;1285700;1336409;1062509;1061409;1110409;1346600;1426600;1564000;1739000;1851000;1983000;2074200;2202800;2286000;2360700;2423000;2384000;2420700;2418500;2459500;2576500;2856500;2949200;3176100;3726000;4049800;4559500;4927000;5069000;5122000;5095000;4854000;4941400;5043700;4982700;5532400;6837400;7121400;6939900;6939900;6939900;6939900;6939900;6939900;6939900;6939900 -5303;'034;Southern Asia;1878;Pulp for paper;5610;Import quantity;t;16700;11900;14600;14400;13800;16400;15600;69100;69000;64800;73100;87700;65400;50400;56400;48100;72000;71800;103400;95400;65400;98200;149900;128700;135000;266225;195951;142840;128087;229785;359740;263359;270225;261567;262778;367240;368827;363179;300435;253063;314728;332375;383900;543320;552263;712838;562970;652556;757410;893072;1096813;1180680;1327020;1407700;1328592;1757831;1770552;1789315;1978257;1842573;1956194.29;2198591.77;2494854 -5303;'034;Southern Asia;1878;Pulp for paper;5622;Import value;1000 USD;2600;1781;2154;2340;2101;1635;2349;12983;14895;14487;14574;22314;18190;20250;24348;19551;29313;28991;43065;40994;34781;47955;73023;62004;59536;108518;78488;72716;58633;115335;180431;142513;87954;102359;153850;152708;150155;133661;142401;145849;150041;150553;186290;271726;285194;348248;347483;454278;383157;572752;829741;821200;843071;918996;842794;948086;1062154;1325524;1295934;1029834;1372202.75;1923793.78;1764820 -5303;'034;Southern Asia;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;278;1056;1054;4531;2441;5233;1738;2173;17073;26064;26311;26821;15573;15504;6617;5660;22472;4272;6248;3749;5482;4864;7382;16141;16912;4561;29933;8992;4148;6907.39;3705.4;5310 -5303;'034;Southern Asia;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;284;866;898;3993;1869;3405;2367;1841;12488;15360;15503;16097;8987;8903;4977;3908;14249;3005;6398;4880;6699;5504;7329;14392;14929;3941;21338;6525;3424;3582;2621.04;4121 -5303;'034;Southern Asia;1875;Wood pulp;5510;Production;t;47500;53000;53500;58700;92600;97500;94000;111300;106800;116800;160900;238000;298300;368000;371500;427600;414500;507000;523600;523600;565600;605600;824600;851600;854000;960000;1010000;1051000;1121200;1176000;1168200;1167400;1325000;1494000;1491400;1483400;1516400;1551400;1604400;1556200;1591600;1964500;2172300;2534800;2735200;2870200;2868200;2873200;2652200;2743600;2823900;2781400;3056400;3711400;3845400;3704900;3704900;3704900;3704900;3704900;3704900;3704900;3704900 -5303;'034;Southern Asia;1875;Wood pulp;5610;Import quantity;t;16700;11900;18900;14400;25900;32500;28700;88600;98900;87100;87000;101600;85000;63600;80300;56500;104500;104300;176800;168800;78600;118300;168800;152100;159400;214096;254537;172204;140954;308237;439640;287938;315050;285691;394581;428943;408288;413191;363394;306528;367611;420022;473056;672300;650794;818890;649319;751488;924468;1019342;1238268;1357902;1501231;1715361;1776892;2263404;2347621;2297662;2542782;2269707;2629448.64;2994960.77;3305589 -5303;'034;Southern Asia;1875;Wood pulp;5622;Import value;1000 USD;2600;1781;2755;2340;5005;5443;5381;17112;21486;19973;18056;25796;23430;25146;37595;24371;49028;48706;79314;77243;43445;63187;88041;78891;76652;86018;110321;100041;74297;163224;220166;159289;113649;116271;265324;201365;172871;165015;173787;177937;181862;206258;241376;361937;360383;412644;425917;554164;513301;691593;1008236;1038696;1044422;1229765;1232867;1399511;1595760;1805304;1805314;1337399;1964873.22;2684068.78;2531722 -5303;'034;Southern Asia;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;398;384;3290;1500;1615;215;1315;16115;25115;25115;25184;13810;13761;4801;4860;21437;3746;4729;2614;4371;3678;6060;13647;11832;2180;10349;6496;2344;665;1028.4;1060 -5303;'034;Southern Asia;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;167;186;2517;596;702;158;718;11241;14332;14332;14367;7624;7601;2885;2949;12714;1829;4036;2423;3548;2830;5619;11339;8855;1768;8065;5026;1796;608;802.04;1097 -5303;'034;Southern Asia;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;883000;883000;883000;883000;883000;883000;883000 -5303;'034;Southern Asia;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;288484;325246;344345;345274;564976.14;587460;517060 -5303;'034;Southern Asia;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;147977;214573;189362;168285;332030.12;443701;354382 -5303;'034;Southern Asia;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3626;3942;1189;47;431;43 -5303;'034;Southern Asia;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2647;2885;897;29;112;43 -5303;'034;Southern Asia;1654;Mechanical wood pulp (1961-2016);5510;Production;t;47500;53000;53500;58700;42600;47500;44000;61300;56800;56800;52000;49900;59400;43000;23000;31800;27700;31000;39000;39000;54000;74000;143000;141000;173000;220000;233000;244000;258000;252000;243000;208000;255000;267000;261000;253000;247000;239000;231000;287000;288000;311700;456000;510400;582400;715400;707400;713400;536400;561000;561000;560000;560000;560000;560000;560000;;;;;;; -5303;'034;Southern Asia;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;16700;11900;14600;14400;13800;16400;15600;9500;9400;11400;14100;17400;9100;5500;5000;3400;14400;14100;23100;25700;13900;29500;29500;33000;37300;128680;67021;28647;31365;51540;51540;30289;20641;28685;14169;19823;12923;34223;14723;14923;21623;39540;46549;44905;31251;22687;17487;23616;33761;27111;13880;3834;14827;11045;7528;7659;;;;;;; -5303;'034;Southern Asia;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;2600;1781;2154;2340;2101;1635;2349;2020;2030;2378;2724;3839;1921;1512;2123;1570;6190;6067;10283;11187;7530;13435;13435;14846;16634;46681;25325;13537;10629;20675;20675;12505;4339;8310;6791;10603;6838;11323;6740;7008;9179;17270;20478;19431;15815;10639;7876;11745;15303;18588;11545;5853;9707;7016;5118;6174;;;;;;; -5303;'034;Southern Asia;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;23;23;23;34;32;33;56;56;92;37;37;1;;;;;;; -5303;'034;Southern Asia;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;13;13;17;58;84;56;15;20;5;;;;;;; -5303;'034;Southern Asia;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;6000;10000;10000;35000;35000;35000;62000;82000;97000;99000;;;;;;;;;;0;0;0;0;24000;25000;106000;109000;138300;167000;151000;176400;176400;365400;365400;338400;341000;379000;361000;361000;361000;355000;323000;;;;;;; -5303;'034;Southern Asia;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;400;4400;1800;200;200;200;9700;3800;4900;5700;4500;3000;4600;8100;3900;3900;900;900;1000;400;600;1000;500;500;13245;37698;43770;67406;52000;39573;48199;44599;26999;49199;39998;63302;63339;44045;124787;51595;48758;34033;62347;78454;144053;94875;157855;132869;160148;;;;;;; -5303;'034;Southern Asia;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;73;1208;491;43;43;43;6039;1451;2216;2710;1729;1176;1806;4345;1659;1659;363;363;359;90;161;264;69;69;5661;8342;14139;36853;13602;11153;12132;16710;13042;20820;16626;24584;24928;20182;63556;26653;30441;14811;31606;44636;82839;54281;94133;68660;71627;;;;;;; -5303;'034;Southern Asia;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;44;79;79;1038;1003;965;965;60;60;60;;;;;;; -5303;'034;Southern Asia;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;59;118;118;882;823;876;876;330;330;330;;;;;;; -5303;'034;Southern Asia;1656;Chemical wood pulp;5510;Production;t;;;;;50000;50000;50000;50000;50000;60000;60000;103500;154300;215000;236500;259800;249800;302000;306600;306600;306600;306600;409600;436600;521000;580000;617000;647000;698200;755300;762000;796200;815000;972000;975400;975400;1014400;1033400;1093400;908200;939600;1259500;1294300;1618400;1721400;1723400;1540400;1539400;1522400;1577600;1619900;1593900;1868900;2523900;2663900;2564400;2564400;2564400;2564400;2564400;2564400;2564400;2564400 -5303;'034;Southern Asia;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;59200;55200;50700;58600;69900;55900;34200;47500;39700;51800;53100;76200;64000;42300;61700;112300;93400;95500;69500;117500;104000;70300;166400;297700;208592;209957;186624;178403;294217;315313;280339;232368;208996;241179;250110;269553;420900;464766;541251;477949;572838;686200;794322;994925;1007517;1182874;1217552;1184276;1585746;1475634;1458660;1626653;1492497;1385286.81;1607225.77;1969885 -5303;'034;Southern Asia;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;10890;11657;11388;11770;18395;16189;12249;20725;15716;20364;21146;31123;27518;22423;31407;56417;46212;41989;31622;48762;53766;33737;87699;154752;118784;74569;78472;108380;127276;131062;109946;114034;124761;118737;115352;134729;215446;239676;254741;301116;404220;347995;512638;766789;716526;757586;802112;764792;866495;907374;1105243;1098638;856218;1032893.7;1473570.78;1398377 -5303;'034;Southern Asia;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;398;384;3290;1500;1519;119;1219;16019;25019;25019;25087;13690;13641;4681;4681;20486;3389;2430;1521;3316;2586;5932;13519;11739;2035;6578;2393;1011;474;453.4;834 -5303;'034;Southern Asia;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;167;186;2517;596;606;62;622;11145;14236;14236;14269;7520;7497;2781;2781;11772;1531;1937;1513;2559;1878;5260;10975;8505;1656;5299;2014;787;468;579.04;879 -5303;'034;Southern Asia;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;185000;218000;231000;232000;235000;293000;295000;295000;210000;220000;230000;197000;213000;323000;304300;312300;312300;314300;301300;222300;222300;222000;222300;222300;222300;222300;222300;222300;222300;222300;222300;222300;222300;222300;222300 -5303;'034;Southern Asia;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;72700;89500;41812;16864;22191;10500;31400;34573;23500;22000;19500;11100;22179;14997;27493;36446;67182;38152;45277;40836;55505;45375;50863;51160;61272;51224;63656;64080;65908;69267;62028;64360.02;94786.77;71510 -5303;'034;Southern Asia;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;45258;59178;20885;5512;8454;6449;16149;13978;8554;11244;11604;4695;9426;6287;13175;17526;27627;26682;32336;27356;34252;41047;41967;43289;57588;47985;53836;50704;59729;65586;52866;65323.93;98591.78;67084 -5303;'034;Southern Asia;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;0;0;0;0;0;0;0;0;44;44;0;0;0;12;8;621;131;252;322;4234;3807;4567;878;878;148;159;161;310;308 -5303;'034;Southern Asia;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0;0;0;0;0;0;18;18;0;0;0;1;11;477;262;263;323;3288;2641;3151;802;802;275;304;285;446;442 -5303;'034;Southern Asia;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;3500;54300;110000;122500;134800;129800;157000;161600;161600;161600;161600;216600;236600;409000;457000;487000;510000;513200;537300;531000;564200;580000;679000;680400;680400;804400;813400;863400;691200;706600;917500;969500;1285600;1388600;1388600;1218600;1218600;1218600;1276600;1276600;1351600;1626600;2281600;2421600;2321600;2321600;2321600;2321600;2321600;2321600;2321600;2321600 -5303;'034;Southern Asia;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;18800;20000;15900;19400;32000;26700;11800;9700;4300;5700;14200;28600;16400;13400;18700;25500;26900;33800;32200;45300;45300;38500;68800;175500;141384;163795;148622;145900;251994;269176;250542;205342;181742;206000;215116;233204;362060;397086;466823;432283;519621;637687;717490;939041;947324;1092411;1127038;1128081;1516542;1403239;1382282;1550840;1419472;1313284.02;1500743;1884984 -5303;'034;Southern Asia;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;4041;4501;3770;5095;10364;8733;5795;4239;1930;2347;4502;11578;7973;7802;10367;12422;12627;16115;15809;19075;23302;16350;29807;84224;81695;57916;61801;92758;102387;111854;98190;99597;108123;99798;98663;115900;183591;204284;222273;269328;366189;315661;464109;717896;667742;687868;718578;712898;808605;850410;1038368;1028248;796197;960959.46;1364950;1321631 -5303;'034;Southern Asia;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;396;194;3100;1500;1519;119;1219;15419;25019;25019;25019;13583;13583;4551;4551;20387;3294;1631;1235;2646;1918;1369;9383;5490;1155;5700;2243;852;211;141.4;525 -5303;'034;Southern Asia;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;166;120;2451;596;606;62;622;10884;14236;14236;14236;7455;7455;2695;2695;11635;1473;1177;955;1839;1279;1703;8065;4199;852;4497;1737;483;148;128.04;436 -5303;'034;Southern Asia;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20500;20500;20500;20500;20500;20500;20500 -5303;'034;Southern Asia;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8315;10470;6546;10997;7642.77;11696;13391 -5303;'034;Southern Asia;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6260;7146;4804;7155;6610.31;10029;9662 -5303;'034;Southern Asia;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;2;0;102;2;1 -5303;'034;Southern Asia;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;2;0;35;5;1 -5303;'034;Southern Asia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78000;61000;59000;101000;0;0;0;0;0;;;;;;; -5303;'034;Southern Asia;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;8553;3809;4160;5400;2100;0;0;500;1800;500;500;6346;1720;2075;281;281;711;325;1117;425;1112;962;638;1538;941;;;;;;; -5303;'034;Southern Asia;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;6993;2258;3185;1207;1762;0;0;390;1078;212;212;3023;1008;1112;123;123;508;165;631;296;871;651;369;973;530;;;;;;; -5303;'034;Southern Asia;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;;;;;;; -5303;'034;Southern Asia;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;;;;;;; -5303;'034;Southern Asia;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;;;;;;; -5303;'034;Southern Asia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;11700;8600;13500;12300;21000;11400;6800;5000;2500;2200;1400;3800;3800;3300;14600;12300;25000;25200;22800;42800;30200;17300;21500;27800;16843;25489;11651;16603;8723;11564;6297;4526;5954;23579;12315;15006;29627;29159;6965;7233;7229;7352;20210;10084;8218;38341;28604;3433;4607;;;;;;; -5303;'034;Southern Asia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;2271;1645;2980;2891;4894;3290;2992;2545;1237;1089;613;1540;1540;1790;6541;6496;12586;11630;9810;16057;13328;10479;10748;9262;9211;8883;5032;7966;6978;5230;3202;2803;3956;14032;7051;9519;17672;16754;4718;4983;5187;4813;13646;7550;5946;25778;25577;2936;3524;;;;;;; -5303;'034;Southern Asia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;190;190;0;0;0;0;500;0;0;24;63;58;130;130;76;76;167;144;407;335;318;318;318;;;;;;; -5303;'034;Southern Asia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66;66;0;0;0;0;198;0;0;15;47;42;86;86;134;45;281;294;455;274;267;267;267;;;;;;; -5303;'034;Southern Asia;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;165000;168700;163200;163200;255000;255000;255000;255000;255000;255000;255000;255000;255000;255000;255000;255000;255000;255000;255000;255000;255000;264000;264000;266500;266500;266500;266500;257500;257500;257500;257500;257500;257500;257500;257500 -5303;'034;Southern Asia;1667;Dissolving wood pulp;5610;Import quantity;t;;;4300;0;12100;16100;13100;19500;29900;23200;14100;14100;19800;14200;24000;8500;32600;32600;74500;74500;14300;23200;23100;24800;25700;14916;69616;38957;38289;89797;89900;35812;46754;26612;134603;62903;40479;50430;71704;55610;55610;90374;93652;143156;110732;130165;102288;106276;170474;135562;151009;202498;208655;328909;452219;509851;583503;513756;571784;431936;679185.69;800275;818644 -5303;'034;Southern Asia;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;601;0;2904;3808;3032;4129;6591;5716;3519;3519;5277;5346;13296;4869;19764;19764;36732;36732;9147;16686;16530;17470;17666;7356;36144;32577;29667;54781;44670;22339;26399;15350;113300;49884;23818;31614;36303;33126;33126;57010;61585;102132;84710;83708;90272;107758;135192;128761;185266;233478;222848;326504;394297;455215;540409;485488;517314;312896;599949.4;766797;778963 -5303;'034;Southern Asia;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;96;96;96;96;96;96;96;96;96;96;112;838;246;1228;34;34;35;31;31;32;145;145;161;144;144;144;183 -5303;'034;Southern Asia;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;96;96;96;96;96;96;96;96;96;96;103;811;167;1200;29;29;20;14;14;15;112;119;127;112;111;111;175 -5303;'034;Southern Asia;1668;Pulp from fibres other than wood;5510;Production;t;317000;332000;346700;397700;508800;561900;608300;630000;661800;694800;765600;771100;710200;738000;765000;809000;829000;917700;955809;681909;638809;647809;697000;750000;870000;939000;1001000;1092000;1118000;1195500;1281000;1356500;1353000;1145000;1184300;1190100;1198100;1280100;1507100;1648000;1839500;2016500;2132500;2279700;2446800;2453800;2508800;2476800;2456800;2461800;2483800;2467800;2742500;3392500;3542500;3492500;3492500;3492500;3492500;3492500;3492500;3492500;3492500 -5303;'034;Southern Asia;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;900;200;200;200;1000;100;100;100;100;1100;1100;1100;3100;4200;1400;1300;67045;11030;9593;25422;11345;10000;11233;1929;2488;2800;1200;1018;418;8745;2145;2727;2727;4496;14176;12201;24113;15939;7344;3416;9292;9554;25276;34444;21248;3919;4278;6434;5409;7259;4802;5931.34;3906;7909 -5303;'034;Southern Asia;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;230;37;37;37;450;49;49;49;49;483;483;483;1454;1512;583;550;29856;4311;5252;14003;6892;4935;5563;704;1438;1826;1227;1102;260;4917;1038;1305;1305;6499;11921;9521;19312;11838;7872;5048;9920;6771;15982;21497;15735;4224;3790;6803;5708;7934;5331;7278.93;6522;12061 -5303;'034;Southern Asia;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;258;658;670;1241;941;3714;1619;954;1054;1045;1292;1733;1859;1839;1912;912;1873;772;2747;1169;1145;1221;1353;2525;5112;2526;19729;2657;1948;6386.39;2821;4433 -5303;'034;Southern Asia;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;270;699;712;1476;1273;2799;2305;1219;1343;1124;1267;1826;1459;1398;2188;1062;2346;1343;3562;2486;3180;2694;1724;3067;6089;2285;13392;1626;1740;3085;1930;3199 -5303;'034;Southern Asia;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;18;18;199;397;3231;858;4167;5012;5834;1595;1895;3130;2699;3346;2309;1717;1197;6208;6797;2492 -5303;'034;Southern Asia;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35;19;19;108;244;1193;464;1913;3548;2940;897;932;1377;1410;1869;1072;1472;882;4409;4908;1888 -5303;'034;Southern Asia;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;124;31;2552;2538;145;47;80;97;94;507;1372;19368;27821;3303.27;1365;18794 -5303;'034;Southern Asia;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;7;1090;1166;175;31;34;38;43;214;512;5642;8596;1148.93;648;5987 -5303;'034;Southern Asia;1669;Recovered paper;5510;Production;t;;;;;;;;;;76000;76000;84000;96000;100000;134000;161000;170000;238000;287000;286000;390000;445000;458000;311000;350000;380000;382000;433000;411800;377800;379300;701400;680700;544700;561000;638000;723000;818000;949000;1060000;1739000;1865000;2007000;1648000;1814000;2003000;2210000;2440000;2692000;2993000;3013000;3013000;3310000;4016000;4122000;4147000;4151000;4151000;4151000;4151000;4151000;4151000;4151000 -5303;'034;Southern Asia;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;1700;173;204;3000;19500;21600;54000;180500;235000;309006;230891;262279;246150;407400;398900;292147;229647;257732;252277;280224;403106;668906;877484;974100;1302709;1327146;1550462;1763153;2112312;1900785;1962289;1935754;2347630;2148991;2271371;2514358;2766615;3276666;3331412;3411567;3465618;6787343;6984545;6421506;7467604.57;7058136;8174127 -5303;'034;Southern Asia;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;484;21;68;903;5499;5955;7197;25095;26407;76528;52278;66000;38851;84816;68795;58781;32993;37606;43810;39809;50882;66416;93809;108036;132949;169653;206454;265863;346778;294720;438622;479163;413591;555396;659385;590383;660754;799799;742769;703103;835412;1382628;1314293;1022834;1885817.56;2046506;1499152 -5303;'034;Southern Asia;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2402;463;3554;6076;8878;22603;20702;31987;34317;39220;47465;81893;91784;84642;89909;91423;97191;89461;170470;151543;156009;187585;175182;183281;205041;208729;172629;135266;111158;130642.61;133374;109833 -5303;'034;Southern Asia;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;518;85;521;1097;1261;2931;2585;2770;3729;4132;4270;12437;12618;12043;12978;15600;20210;14654;40811;34886;32156;30114;35229;34066;38500;47100;38353;27418;20587;40222.39;42173;23160 -5303;'034;Southern Asia;1876;Paper and paperboard;5510;Production;t;542900;567200;653100;704000;747800;798400;816900;861600;943800;1000800;973900;1005000;1040000;1095200;1106700;1100700;1184700;1218900;1275500;1196300;1512800;1554700;1806900;1881600;1845900;2105600;2197600;2370000;2478500;2765900;2950000;3083000;3440000;3671000;3811000;3804500;3734500;4155527;4732500;4831500;5273500;5502300;5505100;5969100;6086507;8159169;9684910;9546678;9402020;11527744;11578500;12038500;13591500;16281500;17226500;17331500;18018500;18829500;18320500;18028500;18464300;18216160;18461160 -5303;'034;Southern Asia;1876;Paper and paperboard;5610;Import quantity;t;219700;216900;213519;242317;220900;269100;292900;293500;353100;337400;459600;439700;432400;402200;475600;484800;574500;639100;663600;643900;695800;730900;564900;608000;603100;660400;766200;734000;756400;740400;801600;945935;653440;1042159;926282;1469052;1381851;1499868;1679861;1633417;1699085;1692902;2011549;2529170;2607547;2725448;2944136;3325668;3366070;3976491;4519452;4207160;4213553;4832457;4968940;5762128;6311551;5554181;5874854;4365306;4134594.77;4054778;4607809 -5303;'034;Southern Asia;1876;Paper and paperboard;5622;Import value;1000 USD;51519;51762;46870;53545;53741;65183;69629;65185;95208;95829;172748;218353;232723;254470;397059;363245;441978;475038;492755;468911;509617;539342;454934;467865;408146;525678;541975;531037;540544;799577;678609;769311;430559;625992;710244;1237745;877323;912746;951510;1045526;957211;1000142;1210204;1591657;1743695;1840840;2120320;2807727;2425393;3367907;4070617;3481827;3482254;4274793;3841216;4362614;4853231;4664509;4640245;3236002;3599245.05;4388370;4205198 -5303;'034;Southern Asia;1876;Paper and paperboard;5910;Export quantity;t;19700;13700;13800;7800;5600;13600;15200;24900;22100;18300;5900;34200;25000;13800;7900;9700;19900;23200;24600;23900;13600;14900;12400;24400;26200;10570;9404;14700;16700;15000;28900;78282;4195;24596;16237;5878;17570;26381;87203;29816;60982;60837;125972;289606;321478;356549;315290;391396;347048;507966;584596;535515;630907;667188;596643;794111;982335;1652898;1651317;2086509;3173841.79;2280835;1764460 -5303;'034;Southern Asia;1876;Paper and paperboard;5922;Export value;1000 USD;3827;3273;2739;2766;2005;3035;3796;8314;4984;4694;1644;6827;7620;5256;3308;4744;7623;8748;10878;13958;8236;9081;7881;17663;18050;11925;11154;12612;14464;13716;21558;60616;3185;14903;12310;4451;15300;21075;54520;26842;51554;50686;93888;210413;232007;271510;260842;334223;306043;520521;523493;482702;634068;639758;553356;664885;797781;1216522;1128484;1097170;2038355.16;1991691;1314795 -5303;'034;Southern Asia;2042;Graphic papers;5510;Production;t;319800;320700;391200;424000;436500;493900;487600;512300;538300;577200;607700;585000;595200;652500;662000;674000;731000;719000;783800;703500;916500;949000;1203500;1214000;1058000;1223000;1245000;1292000;1383000;1432700;1523300;1589700;1628000;1722000;1827000;1816000;1684000;1970987;2306000;2252000;2655000;2707000;2670000;2963000;2942907;3888669;4547410;4383178;4230520;5377244;5438000;5530000;5867000;6233000;6634000;6222000;6346000;6666000;6242000;5868000;6192670;6141670;6141670 -5303;'034;Southern Asia;2042;Graphic papers;5610;Import quantity;t;168400;153400;154219;162617;150100;194800;214800;231900;308700;288200;361400;306400;289300;274700;237000;259800;297000;366600;392600;408700;494500;527900;347300;373800;437400;424300;448400;439200;470000;521200;572900;635977;484401;681744;588698;1073568;1021175;1174645;1210139;1101321;1083398;1099505;1268606;1689541;1865863;2074795;2138701;2461012;2262837;2541566;2910120;2717246;2832749;3097896;3219523;3782761;4373037;3531767;3736168;2427743;2113457.89;1957325;2367164 -5303;'034;Southern Asia;2042;Graphic papers;5622;Import value;1000 USD;31710;31005;28793;30097;31727;41605;44626;43982;59766;62102;72129;72810;87351;116307;122855;107095;143081;175520;185791;204366;277759;310475;207220;217735;259144;288355;291814;289362;334165;578973;457577;464058;277117;383361;468293;890081;667996;685761;629980;678257;616440;648757;726675;993825;1169810;1310910;1469427;1988003;1589610;2093999;2597554;2271667;2298183;2643281;2425165;2717375;3177287;2806092;2806424;1651684;1647848.33;2014821;2057733 -5303;'034;Southern Asia;2042;Graphic papers;5910;Export quantity;t;18100;12100;12700;5800;4300;12500;13400;22900;18000;14200;4300;32200;18300;10700;5800;7100;17700;21500;22000;20500;12000;12700;10200;18800;20600;4970;3804;4200;4200;9900;9200;24530;1701;13236;6374;3220;14345;16223;68618;18470;34938;33382;86492;201293;216692;232039;164655;204443;197543;341955;416619;385566;390057;413526;360359;499380;480791;709842;733545;572447;801418.56;762229;561191 -5303;'034;Southern Asia;2042;Graphic papers;5922;Export value;1000 USD;2406;1769;1599;1244;1017;2063;2466;7254;3611;3220;1160;6127;5222;3412;1409;2382;5599;7459;7519;9339;5845;6201;5001;9314;9701;3576;2805;4089;3601;9390;8078;17257;1351;8712;4778;2298;12555;11903;41756;15836;25370;24355;60483;138348;157070;175058;139809;181584;151908;315385;360491;329211;356559;340829;273885;337882;361977;567449;553532;361316;560649.36;706938;464299 -5303;'034;Southern Asia;1671;Newsprint;5510;Production;t;55700;55900;60400;66800;64500;63300;68000;69800;75300;73300;70000;70000;71000;86000;72000;75000;86000;72000;82000;77000;84000;146000;224000;247000;247000;316000;332000;341000;370000;356000;350000;370000;366000;398000;440000;430000;330000;452000;550000;454000;754000;758000;721000;1004000;978907;1055669;1067410;1154178;1001520;1309244;1370000;1480000;1480000;1480000;1480000;1190000;1200000;1251000;859000;454000;766000;765000;765000 -5303;'034;Southern Asia;1671;Newsprint;5610;Import quantity;t;152100;117800;115019;123917;107600;138500;107800;138900;197200;173900;255400;212400;162200;208600;148000;192900;239000;305000;316900;325200;349600;417000;235100;262700;264800;236500;259500;291000;260800;196900;350400;381380;256083;361705;354354;709321;740756;711702;676649;519649;561095;614525;726510;1060547;966696;1231882;1073341;1375319;1049858;1539279;1727287;1541478;1684269;1649533;1703332;1883519;1880223;1565132;1565086;1008645;692494.16;635509;726395 -5303;'034;Southern Asia;1671;Newsprint;5622;Import value;1000 USD;24699;19096;17915;19029;16458;24111;16420;20170;31900;29738;45679;38137;34625;83797;68361;82464;102056;129645;134835;147628;174801;223698;122899;135205;136403;119283;130461;150986;157641;158847;210276;215022;120521;149546;226455;485919;408245;317178;242195;254050;269313;323680;324108;547829;526976;681617;641092;1046278;600315;952483;1231900;1028547;1082001;1050318;950719;997872;999258;1068160;913827;464861;370726.64;523757;506880 -5303;'034;Southern Asia;1671;Newsprint;5910;Export quantity;t;17700;11700;12400;5500;3800;8900;6200;2500;1900;;1000;26700;10600;7700;5300;5000;14400;19000;20000;18000;9500;10500;8000;16000;18100;1000;1000;;;;;5221;740;87;2216;2716;2716;1316;2716;416;5016;5000;7750;7188;8860;3519;4161;7113;12543;11836;10725;10180;4774;9883;5589;5952;5105;23940;17528;4190;5607.86;8861;7021 -5303;'034;Southern Asia;1671;Newsprint;5922;Export value;1000 USD;2387;1750;1585;1230;887;1193;860;295;225;;144;4435;2489;2268;1121;1217;3500;5643;5950;7345;3900;4700;3500;7000;7688;364;364;;;;;2808;361;35;1815;1856;1856;676;1182;257;2985;3000;4291;4681;6484;2473;3545;5136;7231;7237;7668;7296;3197;8251;3585;3056;2925;15338;9522;2015;3907.4;7773;4886 -5303;'034;Southern Asia;1674;Printing and writing papers;5510;Production;t;264100;264800;330800;357200;372000;430600;419600;442500;463000;503900;537700;515000;524200;566500;590000;599000;645000;647000;701800;626500;832500;803000;979500;967000;811000;907000;913000;951000;1013000;1076700;1173300;1219700;1262000;1324000;1387000;1386000;1354000;1518987;1756000;1798000;1901000;1949000;1949000;1959000;1964000;2833000;3480000;3229000;3229000;4068000;4068000;4050000;4387000;4753000;5154000;5032000;5146000;5415000;5383000;5414000;5426670;5376670;5376670 -5303;'034;Southern Asia;1674;Printing and writing papers;5610;Import quantity;t;16300;35600;39200;38700;42500;56300;107000;93000;111500;114300;106000;94000;127100;66100;89000;66900;58000;61600;75700;83500;144900;110900;112200;111100;172600;187800;188900;148200;209200;324300;222500;254597;228318;320039;234344;364247;280419;462943;533490;581672;522303;484980;542096;628994;899167;842913;1065360;1085693;1212979;1002287;1182833;1175768;1148480;1448363;1516191;1899242;2492814;1966635;2171082;1419098;1420963.73;1321816;1640769 -5303;'034;Southern Asia;1674;Printing and writing papers;5622;Import value;1000 USD;7011;11909;10878;11068;15269;17494;28206;23812;27866;32364;26450;34673;52726;32510;54494;24631;41025;45875;50956;56738;102958;86777;84321;82530;122741;169072;161353;138376;176524;420126;247301;249036;156596;233815;241838;404162;259751;368583;387785;424207;347127;325077;402567;445996;642834;629293;828335;941725;989295;1141516;1365654;1243120;1216182;1592963;1474446;1719503;2178029;1737932;1892597;1186823;1277121.69;1491064;1550853 -5303;'034;Southern Asia;1674;Printing and writing papers;5910;Export quantity;t;400;400;300;300;500;3600;7200;20400;16100;14200;3300;5500;7700;3000;500;2100;3300;2500;2000;2500;2500;2200;2200;2800;2500;3970;2804;4200;4200;9900;9200;19309;961;13149;4158;504;11629;14907;65902;18054;29922;28382;78742;194105;207832;228520;160494;197330;185000;330119;405894;375386;385283;403643;354770;493428;475686;685902;716017;568257;795810.7;753368;554170 -5303;'034;Southern Asia;1674;Printing and writing papers;5922;Export value;1000 USD;19;19;14;14;130;870;1606;6959;3386;3220;1016;1692;2733;1144;288;1165;2099;1816;1569;1994;1945;1501;1501;2314;2013;3212;2441;4089;3601;9390;8078;14449;990;8677;2963;442;10699;11227;40574;15579;22385;21355;56192;133667;150586;172585;136264;176448;144677;308148;352823;321915;353362;332578;270300;334826;359052;552111;544010;359301;556741.95;699165;459413 -5303;'034;Southern Asia;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113000;120000;125000;125000;125000;125000;107000;107000;107000;107000;1137000;1137000;1440000;1440000;1443000;1565000;1697000;1842000;1562000;1327000;1108000;1095000;1108000;1109000;1088000;1088000 -5303;'034;Southern Asia;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71456;69227;54984;63687;76945;79915;56321;118329;80891;65227;62130;63167;53743;57389;55509;57674;96968;87908;109168;142924;123574;109893;90598;104334.72;100274;83802 -5303;'034;Southern Asia;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46071;43155;30460;34710;37459;50872;40554;77752;59057;52183;49585;54393;46842;53479;52153;50213;92870;86450;105066;138269;107364;93477;69229;80312.85;104535;77534 -5303;'034;Southern Asia;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;746;3410;919;2109;1608;10653;81496;65881;65133;46223;57826;52466;76101;65422;107599;118824;114946;112517;128207;99608;139335;109610;68289;52211.47;25510;25783 -5303;'034;Southern Asia;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;520;1944;731;1733;1064;6504;53464;45773;45229;40130;53185;41926;70326;61936;92362;100750;94775;87285;92097;78309;121422;90666;49100;38370.58;29837;29076 -5303;'034;Southern Asia;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1227987;1426000;1440000;1527000;1575000;1575000;1596000;1601000;2348000;2902000;1568000;1568000;1960000;1960000;1918000;2075000;2246000;2433000;2881000;3418000;4036000;4021000;4035000;4036000;4014000;4014000 -5303;'034;Southern Asia;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;186667;242519;318351;251513;233488;294981;278056;399338;367151;511873;596700;640975;532396;576373;528089;377434;523961;607344;694507;969286;718864;949399;567340;518264.66;421338;757854 -5303;'034;Southern Asia;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;163684;190874;255304;184963;172411;243232;194873;308326;305206;432956;545610;581471;731517;812776;729261;629026;879775;786753;854509;1022730;722030;911570;523957;507644.4;515113;729836 -5303;'034;Southern Asia;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4806;20530;5772;5996;5042;50473;82170;109129;131455;83729;102275;94295;177819;246321;216409;189353;205695;160052;283012;277802;358901;375003;266151;505201.72;490512;329034 -5303;'034;Southern Asia;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3840;13524;5312;4731;4392;35823;57315;80159;102821;71744;91877;73059;166454;225405;188327;195773;181549;133227;195968;224499;317191;316395;182053;352405.62;464095;305576 -5303;'034;Southern Asia;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;178000;210000;233000;249000;249000;249000;256000;256000;378000;471000;524000;524000;668000;668000;689000;747000;810000;879000;589000;401000;271000;267000;271000;281670;274670;274670 -5303;'034;Southern Asia;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;204820;221744;208337;207103;174547;167200;294617;381500;394871;488260;426863;508837;416148;549071;592170;713372;827434;820939;1095567;1380604;1124197;1111790;761160;798364.34;800204;799113 -5303;'034;Southern Asia;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;158828;153756;138443;127454;115207;108463;210569;256756;265030;343196;346530;353431;363157;499399;461706;536943;620318;601243;759928;1017030;908538;887550;593637;689164.44;871416;743483 -5303;'034;Southern Asia;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9355;41962;11363;21817;21732;17616;30439;32822;31932;30542;37229;38239;76199;94151;51378;77106;83002;82201;82209;98276;187666;231404;233817;238397.51;237346;199353 -5303;'034;Southern Asia;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6867;25106;9536;15921;15899;13865;22888;24654;24535;24390;31386;29692;71368;65482;41226;56839;56254;49788;46761;56244;113498;136949;128148;165965.76;205233;124761 -5303;'034;Southern Asia;1675;Other paper and paperboard;5510;Production;t;223100;246500;261900;280000;311300;304500;329300;349300;405500;423600;366200;420000;444800;442700;444700;426700;453700;499900;491700;492800;596300;605700;603400;667600;787900;882600;952600;1078000;1095500;1333200;1426700;1493300;1812000;1949000;1984000;1988500;2050500;2184540;2426500;2579500;2618500;2795300;2835100;3006100;3143600;4270500;5137500;5163500;5171500;6150500;6140500;6508500;7724500;10048500;10592500;11109500;11672500;12163500;12078500;12160500;12271630;12074490;12319490 -5303;'034;Southern Asia;1675;Other paper and paperboard;5610;Import quantity;t;51300;63500;59300;79700;70800;74300;78100;61600;44400;49200;98200;133300;143100;127500;238600;225000;277500;272500;271000;235200;201300;203000;217600;234200;165700;236100;317800;294800;286400;219200;228700;309958;169039;360415;337584;395484;360676;325223;469722;532096;615687;593397;742943;839629;741684;650653;805435;864656;1103233;1434925;1609332;1489914;1380804;1734561;1749417;1979367;1938514;2022414;2138686;1937563;2021136.89;2097453;2240645 -5303;'034;Southern Asia;1675;Other paper and paperboard;5622;Import value;1000 USD;19809;20757;18077;23448;22014;23578;25003;21203;35442;33727;100619;145543;145372;138163;274204;256150;298897;299518;306964;264545;231858;228867;247714;250130;149002;237323;250161;241675;206379;220604;221032;305253;153442;242631;241951;347664;209327;226985;321530;367269;340771;351385;483529;597832;573885;529930;650893;819724;835783;1273908;1473063;1210160;1184071;1631512;1416051;1645239;1675944;1858417;1833821;1584318;1951396.72;2373549;2147465 -5303;'034;Southern Asia;1675;Other paper and paperboard;5910;Export quantity;t;1600;1600;1100;2000;1300;1100;1800;2000;4100;4100;1600;2000;6700;3100;2100;2600;2200;1700;2600;3400;1600;2200;2200;5600;5600;5600;5600;10500;12500;5100;19700;53752;2494;11360;9863;2658;3225;10158;18585;11346;26044;27455;39480;88313;104786;124510;150635;186953;149505;166011;167977;149949;240850;253662;236284;294731;501544;943056;917772;1514062;2372423.23;1518606;1203269 -5303;'034;Southern Asia;1675;Other paper and paperboard;5922;Export value;1000 USD;1421;1504;1140;1522;988;972;1330;1060;1373;1474;484;700;2398;1844;1899;2362;2024;1289;3359;4619;2391;2880;2880;8349;8349;8349;8349;8523;10863;4326;13480;43359;1834;6191;7532;2153;2745;9172;12764;11006;26184;26331;33405;72065;74937;96452;121033;152639;154135;205136;163002;153491;277509;298929;279471;327003;435804;649073;574952;735854;1477705.81;1284753;850496 -5303;'034;Southern Asia;1676;Household and sanitary papers;5510;Production;t;9000;7200;7300;6200;5500;8700;8800;11600;21500;24600;21000;29000;32000;38000;48000;46000;48000;52000;52000;52000;22000;22000;12000;12000;17000;18000;20000;23000;21000;29000;29000;33000;29000;35000;39000;41000;44000;49000;52000;61000;64000;79000;79000;88000;146000;140000;186000;148000;148000;161000;161000;110000;139000;184000;254000;254000;254000;234000;234000;234000;234000;234000;234000 -5303;'034;Southern Asia;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;6100;15600;5900;5000;5940;7304;10231;10512;19401;17311;20301;22103;8550;21825;39343;42174;68183;62195;36201;59468;50221;40646;32594;31545;34179;34345;25883;22901.09;23748;33835 -5303;'034;Southern Asia;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;13720;26782;12945;8855;12784;9338;12686;10783;22721;23456;20960;26868;9048;24037;50818;44344;84010;83591;46027;79782;95505;54126;39430;37815;43987;40980;31644;28791.36;37249;46353 -5303;'034;Southern Asia;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;300;188;579;836;1065;1065;2432;3343;6045;7767;10141;20350;25026;30331;22352;32357;37029;42279;45026;50023.7;38598;24637 -5303;'034;Southern Asia;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;262;262;184;545;703;927;916;2763;3646;8064;8971;13147;24970;30095;36296;24772;34459;44896;48560;44226;55664.15;52318;33576 -5303;'034;Southern Asia;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1676540;1891500;2016500;2002500;2002500;2002500;2318500;2327500;3299500;4034500;4142500;4142500;4985500;5013500;5385500;6436500;8457500;8997500;9575500;10196500;10920500;10835500;10917500;11028630;10831490;11076490 -5303;'034;Southern Asia;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;146400;240715;275753;503439;493728;641035;724813;628227;527040;696073;726027;935324;1284424;1477118;1410309;1269784;1605778;1636218;1841833;1844441;1915230;2021536;1843578;1931563.44;1998560;2119378 -5303;'034;Southern Asia;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92138;167599;176896;257983;258279;354039;457553;410251;343947;464530;555951;581293;996463;1247036;1086172;1010242;1377475;1269450;1443917;1540903;1694684;1667349;1431629;1802031.08;2194074;1948759 -5303;'034;Southern Asia;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;488;9449;23531;25043;36154;68440;95038;107402;129717;159401;115723;136046;156233;137572;218146;225845;203509;269170;467763;891091;873725;1455551;2278907.38;1470528;1167184 -5303;'034;Southern Asia;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;338;7954;21293;21455;27539;45048;57863;75012;92250;110576;90982;128768;145723;133569;243765;254404;234893;292559;396557;592274;516883;674482;1373539.42;1185684;781093 -5303;'034;Southern Asia;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;59900;75900;75700;86100;98800;101500;122300;130800;167900;176100;149600;154300;133100;243000;244000;225000;259000;279000;278000;278100;323600;330000;336700;373900;695500;779600;834600;922000;923500;1030200;1110700;1203300;1438000;1562000;1573000;1567500;1592500;;;;;;;;;;;;;;;;;;;;;;;;;; -5303;'034;Southern Asia;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;11400;9600;9400;11400;10000;18300;18600;16800;10100;18300;17100;18100;33900;20300;26600;29800;52400;44300;44200;51400;37400;46400;39600;42700;51600;50100;54200;99100;130200;51400;56400;55897;43700;87200;69800;207100;195600;;;;;;;;;;;;;;;;;;;;;;;;;; -5303;'034;Southern Asia;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;4680;3905;3558;4661;4219;6678;5977;4930;3488;7012;5992;8647;16143;9890;14888;17580;29255;27900;25187;34532;24586;28655;22993;21091;21117;27873;20938;34240;35958;40145;39336;47971;32442;55368;41843;213275;110456;;;;;;;;;;;;;;;;;;;;;;;;;; -5303;'034;Southern Asia;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5303;'034;Southern Asia;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5303;'034;Southern Asia;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;718988;811500;909500;966500;966500;966500;1085500;1085500;1547500;1896500;2681500;2681500;3285500;3291500;3461500;4195500;5605500;5982500;6386500;6819500;7296500;7277500;7296500;7298500;7267500;7323500 -5303;'034;Southern Asia;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11441;14174;21886;170825;143449;220296;176756;237547;166065;165590;173935;268138;469092;509012;522118;401854;485338;610460;613468;671893;641703;696491;629313;648358.11;622040;739379 -5303;'034;Southern Asia;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8084;12182;16280;52405;46189;87414;105078;123334;80560;73272;100628;124586;285464;342104;316825;263180;302248;355336;334650;396153;434587;389672;347210;509634.82;590705;538976 -5303;'034;Southern Asia;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;354;924;3624;3622;9258;9785;7047;12699;12676;15917;19371;25159;25571;17790;15840;19363;20956;36621;146653;399903;390089;653872;1058650.95;569541;536925 -5303;'034;Southern Asia;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;162;420;1431;1426;3450;5267;4828;8198;8202;11240;12132;15110;15702;9536;9855;11949;12336;20783;74282;189565;143772;218182;514034.05;308954;200086 -5303;'034;Southern Asia;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;724537;820000;912000;934000;934000;934000;973000;978000;1453000;1807000;1140000;1140000;1360000;1382000;1569000;1867000;2440000;2593000;2757000;2932000;3133000;3115000;3133000;3134000;3106000;3160000 -5303;'034;Southern Asia;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54643;81689;108912;73703;77280;99025;186297;185804;187211;248191;305215;409811;423094;551565;512072;568839;765839;661451;797607;683207;790447;848688;780598;825372.21;922639;962281 -5303;'034;Southern Asia;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37869;65745;70291;60102;58137;75260;130675;139308;140129;196210;251497;267477;362927;500942;424907;473454;736218;598305;762299;739767;808072;821501;700620;825604.14;1047456;978758 -5303;'034;Southern Asia;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;1263;12591;12595;12575;7826;13596;14419;14606;20931;26238;21013;35104;48493;102078;109501;104370;138769;178683;242215;279014;397975;768095.67;641732;435653 -5303;'034;Southern Asia;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;145;1888;14200;14209;14431;7909;9016;17237;17435;23500;28801;37157;45920;62009;148937;163712;161637;208852;226933;248419;238295;263849;558665.93;616593;400388 -5303;'034;Southern Asia;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;133015;160000;83000;102000;102000;102000;70000;70000;105000;131000;94000;94000;113000;113000;113000;132000;170000;180000;190000;203000;219000;213000;218000;322130;248990;263990 -5303;'034;Southern Asia;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77395;142259;138352;231911;246184;298254;329726;191031;161349;270809;230344;241723;381884;409081;369028;288293;339927;349876;410544;462249;459062;454816;416830;432985.74;428752;388991 -5303;'034;Southern Asia;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45108;87653;85521;137725;146992;178460;207489;138877;115839;188480;194679;179768;336691;396792;337983;260698;323807;304204;332075;384189;432932;434763;365488;436105.8;521677;401722 -5303;'034;Southern Asia;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;6646;6700;7910;11894;49022;73922;79014;101165;121247;68882;88211;92919;69075;97614;94637;76872;92746;135034;235856;194596;352692;298128.63;222077;166084 -5303;'034;Southern Asia;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;4929;4945;4720;7878;31077;43870;48594;65630;74001;48717;74672;80442;59020;81392;75614;57923;61406;89159;146480;127492;172536;229610.09;237883;165132 -5303;'034;Southern Asia;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100000;100000;112000;0;0;0;190000;194000;194000;200000;227000;227000;227000;227000;242000;242000;242000;242000;242000;242000;272000;230000;270000;274000;209000;329000 -5303;'034;Southern Asia;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2921;2593;6603;27000;26815;23460;32034;13845;12415;11483;16533;15652;10354;7460;7091;10798;14674;14431;20214;27092;24018;21541;16837;24847.37;25129;28727 -5303;'034;Southern Asia;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1077;2019;4804;7751;6961;12905;14311;8732;7419;6568;9147;9462;11381;7198;6457;12910;15202;11605;14893;20794;19093;21413;18311;30686.31;34236;29303 -5303;'034;Southern Asia;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;616;616;916;2427;1807;473;1270;1270;1306;1232;1663;2639;2214;2614;2344;1311;1034;7393;13117;10026;51012;154032.12;37178;28522 -5303;'034;Southern Asia;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;717;717;1100;1780;795;149;983;983;1835;1332;1829;3659;3004;3581;3129;2997;1518;6183;7810;7324;19915;71229.35;22254;15487 -5303;'034;Southern Asia;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;125200;136600;143400;148700;164000;150800;156200;166500;189600;197300;164000;197000;232000;129000;117000;115000;106000;128200;127000;128000;216000;219000;220000;247000;42000;48000;51000;76000;151000;274000;287000;257000;345000;352000;372000;380000;414000;459000;483000;502000;552000;713800;753600;599600;670100;831000;917000;873000;881000;1004000;966000;1013000;1149000;1407000;1341000;1280000;1222000;1009000;1009000;1009000;1009000;1009000;1009000 -5303;'034;Southern Asia;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;6500;5500;5300;6400;5700;3800;4000;3000;22500;29900;80100;114200;108200;106200;211000;194200;224500;227600;226200;183200;162500;155400;176800;190300;105300;180300;256300;191900;153200;161400;165800;251938;124189;266777;251947;182084;159477;172883;221703;246112;101736;80268;84597;94515;91354;115063;87537;99286;125735;82318;70019;43404;51552;78562;72553;104940;62528;73005;82805;68102;66672.35;75145;87432 -5303;'034;Southern Asia;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;3510;2929;2669;3496;3164;2730;3457;2102;26485;26015;93627;135696;127929;126873;257816;237070;269199;271175;281334;229570;203918;197668;222177;226495;119025;201206;221790;202752;166783;174615;176145;254400;118565;173128;173098;121143;89705;122063;144593;177687;72005;70385;106034;119319;136766;176935;162326;212955;210146;193435;142436;77961;94047;158532;92475;161892;97226;119746;125492;121045;120574.29;142226;152353 -5303;'034;Southern Asia;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;1100;1100;1600;1200;700;2200;3000;1400;1700;1700;5100;5100;5100;5100;10000;12000;4600;18700;10791;1969;11297;9810;2605;2805;10158;18097;1897;2213;2112;3138;19294;8912;16043;19853;25120;30439;23920;3977;2236;2354;2791;2444;3209;1424;14936;1768;13485;43492.16;9480;11448 -5303;'034;Southern Asia;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;844;1299;1862;1724;989;3070;4330;2216;2453;2453;7922;7922;7922;7922;8096;10436;3899;10391;8059;1642;6152;7489;2110;2498;9172;12426;3052;4629;4614;5682;26472;16371;20513;27867;39300;59507;68304;8308;6775;8774;14430;8282;9672;4788;11903;9509;17146;48502.24;46751;35827 -5303;'034;Southern Asia;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;758627;848434;791190;497152;548081;603333;528492 -5303;'034;Southern Asia;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;756739;965107;1040808;1036987;1586467;1435231;1270702 -5303;'034;Southern Asia;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44739;57090;59567;55892;65843;59865;52264 -5303;'034;Southern Asia;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2961;4213;3335;2159;5358;9799;11025 -5303;'034;Southern Asia;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15278;15358;16191;14198;17113;14088;6293 -5303;'034;Southern Asia;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1355;1096;1010;741;611;1707;3014 -5303;'034;Southern Asia;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29461;41732;43376;41694;48730;45777;45971 -5303;'034;Southern Asia;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1606;3117;2325;1418;4747;8092;8011 -5303;'034;Southern Asia;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20956;20033;24927;16837;19573;24511;29539 -5303;'034;Southern Asia;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16165;18388;15021;12487;15503;14010;13966 -5303;'034;Southern Asia;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8372;14634;14794;9671;13916;24838;22943 -5303;'034;Southern Asia;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58285;74084;84042;76310;144819;116063;95975 -5303;'034;Southern Asia;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100095;122004;103617;71016;79038;99145;88918 -5303;'034;Southern Asia;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11018;19405;23795;18593;19348;18811;16808 -5303;'034;Southern Asia;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;147;462 -5303;'034;Southern Asia;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107;311 -5303;'034;Southern Asia;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;3 -5303;'034;Southern Asia;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;6 -5303;'034;Southern Asia;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;196 -5303;'034;Southern Asia;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;274 -5303;'034;Southern Asia;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;393 -5303;'034;Southern Asia;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118;669 -5303;'034;Southern Asia;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;81 -5303;'034;Southern Asia;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;257 -5303;'034;Southern Asia;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;49 -5303;'034;Southern Asia;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;27 -5303;'034;Southern Asia;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;507195;552834;491936;284475;311131;318586;273224 -5303;'034;Southern Asia;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;589297;709293;759438;762056;1152367;1019919;903543 -5303;'034;Southern Asia;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18703;26605;37424;19345;9614;10281;4120 -5303;'034;Southern Asia;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11866;9956;10989;7908;6848;11400;5861 -5303;'034;Southern Asia;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58567;55234;58925;39916;48966;66107;57484 -5303;'034;Southern Asia;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67147;129768;144188;157474;242224;245229;223524 -5303;'034;Southern Asia;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1383466;1437358;1445046;1208719;1489145;1708054;1486221 -5303;'034;Southern Asia;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;743918;899939;1172175;866473;1204360;1439649;1530672 -5303;'034;Southern Asia;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8302;6695;7607;5604;8308;9051;10918 -5303;'034;Southern Asia;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1788;1982;1981;1379;3251;4039;2314 -5303;'034;Southern Asia;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;495478;535755;536692;449436;548538;592519;576369 -5303;'034;Southern Asia;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63099;73095;85101;66290;105578;122001;130295 -5303;'034;Southern Asia;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42822;51028;54220;41617;36084;45013;46985 -5303;'034;Southern Asia;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9431;13368;11857;10406;13074;13258;14952 -5303;'034;Southern Asia;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;231850;260594;272384;201267;278382;285074;240749 -5303;'034;Southern Asia;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;173002;208024;222464;216906;314038;331712;321639 -5303;'034;Southern Asia;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;605014;583286;574143;510795;617833;776397;611200 -5303;'034;Southern Asia;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;496598;603470;850772;571492;768419;968639;1061472 -5304;'035;South-eastern Asia;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20872919;23297445;23015518;21170591;26760924.58;27754335.43;23886047.49 -5304;'035;South-eastern Asia;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35355670;38581032;39060549;39350146;46726898.63;50859521.34;46314880.93 -5304;'035;South-eastern Asia;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;87681;70479;76619;101697;99962;116028;132598;163543;182331;220031;230079;247613;402821;533859;431709;616034;689318;900470;1187829;1240937;1361746;1267002;1425546;1380849;1187400;1331184;1757499;2189138;2590520;3146307;3548423;4120244;3714965;5100437;6412528;6162444;5342706;3905851;4547709;5295277;4794133;4397714;4595114;6103323;6538234.1;7602104.3;8237196;9758356;7917221;10617781;12439798.2;12063614;12923569;14176652;12682057;13325259;15384802;17181463;16562240;15063224;19592821.58;20332797.43;16612611.49 -5304;'035;South-eastern Asia;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;207498;236712;303928;318237;356389;414027;464472;615453;690425;777691;849305;997149;2023372;2053822;1434101;2499942;2647911;2931335;5082189;4990841;3676197;3823149;4362246;3727029;4108655;4293719;6004658;6830682;8236818;7561997;8553912;9375061;10817222;10675321;11183281;11267129;10725755;8409224;9415780;10109262;9358326;9227072;9525806;10817697;11708592.4;13258169;14385224;15619423;13236693;16986891;18986470.3;18693720;21330513;23438644.13;20780476;18965196;20836666;23396147;22293076;20574474;25459694.63;28978330.34;26858101.93 -5304;'035;South-eastern Asia;1861;Roundwood;5516;Production;m3;355213492;351919394;344363071;349743785;348858872;345648579;348583772;348691391;347846853;349321687;351105834;357126068;367783932;357362113;346671475;359180712;355081759;355278345;350653643;348144824;339099561;338936935;337299722;332686228;325599120;327714505;334517232;336870961;335243257;339834329;337594129;335712074;323487503;314792041;308541162;303891080;302349263;298911048;297770654;296646407;286823090;291593137;297002392;297516067;294139470;287003888;290375856;294245136;281711414;289957775;298332226;298586973;309169337;308880921;301373203;297030236;294893670;303964818;304277056;309370874;295061938;290970514;294940141 -5304;'035;South-eastern Asia;1861;Roundwood;5616;Import quantity;m3;111400;121700;135900;987500;1120300;1470700;1455300;1572000;1767500;1961600;1967700;1744200;1572800;1292400;1103400;1544400;1505600;1824100;1806300;1342700;1083200;762200;844800;574800;315600;313300;390400;531500;1261100;2509973;2101552;2772844;2013381;2235216;2434084;2294400;2024587;1371626;2064204;2035689;2105872;1739175;794356;1120764;1154320.2;1442590;1643106;1682304;1148291;1418691;1645386;1792516;2306055;2616420;2724304;3966255;4469455;3545469;3276314;3025870;3273484;3160926.6;1954677.6 -5304;'035;South-eastern Asia;1861;Roundwood;5622;Import value;1000 USD;1034;1061;1637;9718;11012;14660;18054;22559;26137;29875;34127;39449;59277;51346;45369;61773;73145;137129;157292;132255;115233;80112;110518;84531;66466;63296;69015;98643;183372;278138;323911;385409;325319;417291;580509;480700;383094;181857;308686;278673;308900;271337;115048;218496;226076.1;381264.3;280155;518049;329348;367437;451663.2;454070;571682;671928;642392;644689;949161;837432;739943;687529;981876;1359395.52;522668.52 -5304;'035;South-eastern Asia;1861;Roundwood;5916;Export quantity;m3;7753500;8293800;10862500;11770000;13251000;15665500;17209600;21240800;24919800;29482200;31108700;32322200;39606600;34083108;28450200;36248304;37656400;38915600;36564300;32269000;24845900;24798804;23817596;19867800;21246908;20191708;23949400;21697708;22190408;20216787;21580068;20189445;11179421;10286671;9709936;8297081;7428854;6580207;8324452;9880935;7791993;8292820;7278868;7163838;9144887.2;7354865;7251287;6342366;5963672;6838892;6374464;5745394;6499286;6691619;5278033;4362406;3011030;2043633;1663807;1218229;1162800.42;554818;862049 -5304;'035;South-eastern Asia;1861;Roundwood;5922;Export value;1000 USD;141259;165787;218699;212689;244518;294682;339250;442175;490205;560238;622523;664024;1306095;1391181;878439;1563374;1699343;1828744;3133845;2941781;1942286;2022320;1915080;1275942;1292148;1221444;1810420;1701093;1780935;1745541;1858677;1924979;1485519;1321623;1297276;1191944;999443;689283;992215;1352016;1062141;827941;891962;863924;1301216.4;1137427;1322973;1528255;1227054;1676122;2256388.3;2106795;2828929;3547269.13;1381517;923619;708393;504966;396321;237707;420694;324871;225429 -5304;'035;South-eastern Asia;1862;Roundwood, coniferous;5516;Production;m3;146000;139000;150000;168000;164000;255000;252000;247000;387000;322000;332000;316000;324000;299000;605000;910000;1222000;1375000;1428900;1423400;1184400;999200;1281200;1072200;1068200;1219500;1328500;1262500;1217500;1112500;1065500;1005500;1152500;1152500;1436500;983500;925500;851500;951500;389500;389500;389500;831500;831500;819500;788500;824500;795500;717500;785500;1083500;1152500;1384000;1510000;1556000;1806000;1979490;1742490;1744162;1744588;1926811;1942591;1942591 -5304;'035;South-eastern Asia;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90780;136036;218089;272587;524947;486630.6;286125.6 -5304;'035;South-eastern Asia;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13149;28123;29122;36313;51197;57401.52;28634.52 -5304;'035;South-eastern Asia;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20512;17860;65140;25320;64485.41;31861;11235 -5304;'035;South-eastern Asia;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6609;5684;20839;3642;10522;7157;4410 -5304;'035;South-eastern Asia;1863;Roundwood, non-coniferous;5516;Production;m3;355067492;351780394;344213071;349575785;348694872;345393579;348331772;348444391;347459853;348999687;350773834;356810068;367459932;357063113;346066475;358270712;353859759;353903345;349224743;346721424;337915161;337937735;336018522;331614028;324530920;326495005;333188732;335608461;334025757;338721829;336528629;334706574;322335003;313639541;307104662;302907580;301423763;298059548;296819154;296256907;286433590;291203637;296170892;296684567;293319970;286215388;289551356;293449636;280993914;289172275;297248726;297434473;307785337;307370921;299817203;295224236;292914180;302222328;302532894;307626286;293135127;289027923;292997550 -5304;'035;South-eastern Asia;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4378675;3409433;3058225;2753283;2748537;2674296;1668552 -5304;'035;South-eastern Asia;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;936012;809309;710821;651216;930679;1301994;494034 -5304;'035;South-eastern Asia;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2990518;2025773;1598667;1192909;1098315;522957;850814 -5304;'035;South-eastern Asia;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;701784;499282;375482;234065;410172;317714;221019 -5304;'035;South-eastern Asia;1864;Wood fuel;5516;Production;m3;327248492;323192394;319254071;315426785;311709872;308052579;304598772;301280391;298062853;294855687;293971834;293201060;290643924;288094113;286520475;282791704;278119751;273532345;270322743;266518216;261387153;260533735;255347522;251306020;249506912;245920005;242515732;238056453;232834757;242749121;237230929;231884874;226721303;221232841;214256962;209647880;206592063;205113848;205374354;203870207;200910290;196697037;191121192;187063567;184500470;181009888;178400856;175167336;172054614;168557975;164564426;161376173;158689077;156099201;153602783;151076816;148639214;146286844;144018049;141935385;139735046;137715209;135764657 -5304;'035;South-eastern Asia;1864;Wood fuel;5616;Import quantity;m3;16000;13000;7000;37700;25700;29800;89100;59200;42500;52100;44600;36500;24600;16800;20500;27900;46000;35700;35600;22100;23700;23700;22800;2900;200;200;200;200;200;200;4700;1676;2895;44218;2954;3800;2000;532;7232;1432;415;1688;1594;1569;1571;12035;12117;16310;14696;64753;32709;10894;17198;1687;9882;6168;3141;4334;22206;9860;7502;12922.6;12529.6 -5304;'035;South-eastern Asia;1864;Wood fuel;5622;Import value;1000 USD;102;80;42;139;96;112;208;143;110;120;99;83;64;53;91;147;343;347;493;473;507;507;647;83;7;7;7;7;7;7;431;72;107;2948;420;370;133;57;645;176;15;62;134;98;140;1286;1267;1507;2819;9767;6362;3110;5138;417;2856;1496;450;2836;2229;599;572;3032.52;2896.52 -5304;'035;South-eastern Asia;1864;Wood fuel;5916;Export quantity;m3;88400;55700;38700;70800;68800;43600;173800;254700;357700;461600;440000;227700;129500;79900;48400;57100;59600;19300;6900;24400;6400;8000;8000;2100;2100;500;500;500;500;500;6400;10565;3388;4013;5845;3945;1645;1845;15017;2600;1558;1650;1891;1577;1038.2;1372;1302;11643;68229;43460;43986;8671;72960;19754;21305;11141;29988;34404;16154;16938;20797.42;21895;23285 -5304;'035;South-eastern Asia;1864;Wood fuel;5922;Export value;1000 USD;703;463;395;546;588;435;637;1554;1739;2164;2150;2635;1097;1095;700;729;967;535;119;468;159;254;254;73;73;44;44;44;44;44;243;389;221;357;470;420;289;306;3862;1688;547;553;640;638;374.4;390;439;3031;7401;5731;7206;2238;5873;3913;5744;2537;2780;2889;1784;1849;2078;2537;2893 -5304;'035;South-eastern Asia;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;1672;2098;2098;2098;2098 -5304;'035;South-eastern Asia;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;384;119;1625;398;422;332.6;613.6 -5304;'035;South-eastern Asia;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;111;203;146;171;140.52;206.52 -5304;'035;South-eastern Asia;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3266;2241;3706;2418;2805.41;2303;1063 -5304;'035;South-eastern Asia;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;674;723;524;245;359;258;190 -5304;'035;South-eastern Asia;1628;Wood fuel, non-coniferous;5516;Production;m3;327248492;323192394;319254071;315426785;311709872;308052579;304598772;301280391;298062853;294855687;293971834;293201060;290643924;288094113;286520475;282791704;278119751;273532345;270322743;266518216;261387153;260533735;255347522;251306020;249506912;245920005;242515732;238056453;232834757;242749121;237230929;231884874;226721303;221232841;214256962;209647880;206592063;205113848;205374354;203870207;200910290;196697037;191121192;187063567;184500470;181009888;178400856;175167336;172054614;168557975;164564426;161376173;158689077;156099201;153602783;151076816;148639214;146286844;144016377;141933287;139732948;137713111;135762559 -5304;'035;South-eastern Asia;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2757;4215;20581;9462;7080;12590;11916 -5304;'035;South-eastern Asia;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;433;2725;2026;453;401;2892;2690 -5304;'035;South-eastern Asia;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26722;32163;12448;14520;17992;19592;22222 -5304;'035;South-eastern Asia;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2106;2166;1260;1604;1719;2279;2703 -5304;'035;South-eastern Asia;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;16000;13000;7000;37700;25700;29800;89100;59200;42500;52100;44600;36500;24600;16800;20500;27900;46000;35700;35600;22100;23700;23700;22800;2900;200;200;200;200;200;200;4700;1676;2895;44218;2954;3800;2000;532;7232;1432;415;1688;1594;1569;1571;12035;12117;16310;14696;64753;32709;10894;17198;1687;9882;6168;;;;;;; -5304;'035;South-eastern Asia;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;102;80;42;139;96;112;208;143;110;120;99;83;64;53;91;147;343;347;493;473;507;507;647;83;7;7;7;7;7;7;431;72;107;2948;420;370;133;57;645;176;15;62;134;98;140;1286;1267;1507;2819;9767;6362;3110;5138;417;2856;1496;;;;;;; -5304;'035;South-eastern Asia;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;88400;55700;38700;70800;68800;43600;173800;254700;357700;461600;440000;227700;129500;79900;48400;57100;59600;19300;6900;24400;6400;8000;8000;2100;2100;500;500;500;500;500;6400;10565;3388;4013;5845;3945;1645;1845;15017;2600;1558;1650;1891;1577;1038.2;1372;1302;11643;68229;43460;43986;8671;72960;19754;21305;11141;;;;;;; -5304;'035;South-eastern Asia;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;703;463;395;546;588;435;637;1554;1739;2164;2150;2635;1097;1095;700;729;967;535;119;468;159;254;254;73;73;44;44;44;44;44;243;389;221;357;470;420;289;306;3862;1688;547;553;640;638;374.4;390;439;3031;7401;5731;7206;2238;5873;3913;5744;2537;;;;;;; -5304;'035;South-eastern Asia;1865;Industrial roundwood;5516;Production;m3;27965000;28727000;25109000;34317000;37149000;37596000;43985000;47411000;49784000;54466000;57134000;63925008;77140008;69268000;60151000;76389008;76962008;81746000;80330900;81626608;77712408;78403200;81952200;81380208;76092208;81794500;92001500;98814508;102408500;97085208;100363200;103827200;96766200;93559200;94284200;94243200;95757200;93797200;92396300;92776200;85912800;94896100;105881200;110452500;109639000;105994000;111975000;119077800;109656800;121399800;133767800;137210800;150480260;152781720;147770420;145953420;146254456;157677974;160259007;167435489;155326892;153255305;159175484 -5304;'035;South-eastern Asia;1865;Industrial roundwood;5616;Import quantity;m3;95400;108700;128900;949800;1094600;1440900;1366200;1512800;1725000;1909500;1923100;1707700;1548200;1275600;1082900;1516500;1459600;1788400;1770700;1320600;1059500;738500;822000;571900;315400;313100;390200;531300;1260900;2509773;2096852;2771168;2010486;2190998;2431130;2290600;2022587;1371094;2056972;2034257;2105457;1737487;792762;1119195;1152749.2;1430555;1630989;1665994;1133595;1353938;1612677;1781622;2288857;2614733;2714422;3960087;4466314;3541135;3254108;3016010;3265982;3148004;1942148 -5304;'035;South-eastern Asia;1865;Industrial roundwood;5622;Import value;1000 USD;932;981;1595;9579;10916;14548;17846;22416;26027;29755;34028;39366;59213;51293;45278;61626;72802;136782;156799;131782;114726;79605;109871;84448;66459;63289;69008;98636;183365;278131;323480;385337;325212;414343;580089;480330;382961;181800;308041;278497;308885;271275;114914;218398;225936.1;379978.3;278888;516542;326529;357670;445301.2;450960;566544;671511;639536;643193;948711;834596;737714;686930;981304;1356363;519772 -5304;'035;South-eastern Asia;1865;Industrial roundwood;5916;Export quantity;m3;7665100;8238100;10823800;11699200;13182200;15621900;17035800;20986100;24562100;29020600;30668700;32094500;39477100;34003208;28401800;36191204;37596800;38896300;36557400;32244600;24839500;24790804;23809596;19865700;21244808;20191208;23948900;21697208;22189908;20216287;21573668;20178880;11176033;10282658;9704091;8293136;7427209;6578362;8309435;9878335;7790435;8291170;7276977;7162261;9143849;7353493;7249985;6330723;5895443;6795432;6330478;5736723;6426326;6671865;5256728;4351265;2981042;2009229;1647653;1201291;1142003;532923;838764 -5304;'035;South-eastern Asia;1865;Industrial roundwood;5922;Export value;1000 USD;140556;165324;218304;212143;243930;294247;338613;440621;488466;558074;620373;661389;1304998;1390086;877739;1562645;1698376;1828209;3133726;2941313;1942127;2022066;1914826;1275869;1292075;1221400;1810376;1701049;1780891;1745497;1858434;1924590;1485298;1321266;1296806;1191524;999154;688977;988353;1350328;1061594;827388;891322;863286;1300842;1137037;1322534;1525224;1219653;1670391;2249182.3;2104557;2823056;3543356.13;1375773;921082;705613;502077;394537;235858;418616;322334;222536 -5304;'035;South-eastern Asia;1866;Industrial roundwood, coniferous;5516;Production;m3;146000;139000;150000;168000;164000;255000;252000;247000;387000;322000;332000;316000;324000;299000;605000;910000;1222000;1375000;1428900;1423400;1184400;999200;1281200;1072200;1068200;1219500;1328500;1262500;1217500;1112500;1065500;1005500;1152500;1152500;1436500;983500;925500;851500;951500;389500;389500;389500;831500;831500;819500;788500;824500;795500;717500;785500;1083500;1152500;1384000;1510000;1556000;1806000;1979490;1742490;1742490;1742490;1924713;1940493;1940493 -5304;'035;South-eastern Asia;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34785;133576;16088;40132;85172;310121;205900;224510;46060;200507;161107;153507;157894;206806;125596;123719;114529;95897;93155;63971;64555;130128;102503;132278;111730;111424;145401;90396;135917;216464;272189;524525;486298;285512 -5304;'035;South-eastern Asia;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9205;7770;2069;5390;11925;35085;30185;31461;5979;22185;11748;11499;12305;13367;8892;10928;15340;16667;14318;9660;8574;14679.2;21588;20185;14443;14395;22335;13132;28012;28919;36167;51026;57261;28428 -5304;'035;South-eastern Asia;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;353529;434772;350531;363265;514471;507803;297600;216749;131184;235200;341300;107600;186909;193108;316857;215372;221786;279409;156927;98819;172424;137546;105821;63714;106176;47388;18906;17246;15619;61434;22902;61680;29558;10172 -5304;'035;South-eastern Asia;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34074;31765;25852;44177;87656;42448;36962;25573;17568;22093;31056;8913;13974;14950;22426;21079;22199;25655;29428;12297;19552;23762.3;18210;13137;17492.13;7920;3419;5935;4961;20315;3397;10163;6899;4220 -5304;'035;South-eastern Asia;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34785;133576;16088;40132;85172;310121;205900;224510;46060;200507;161107;153507;157894;206806;125596;123719;114529;95897;93155;63971;64555;130128;102503;132278;111730;111424;145401;90396;135917;216464;272189;524525;486298;285512 -5304;'035;South-eastern Asia;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9205;7770;2069;5390;11925;35085;30185;31461;5979;22185;11748;11499;12305;13367;8892;10928;15340;16667;14318;9660;8574;14679.2;21588;20185;14443;14395;22335;13132;28012;28919;36167;51026;57261;28428 -5304;'035;South-eastern Asia;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;353529;434772;350531;363265;514471;507803;297600;216749;131184;235200;341300;107600;186909;193108;316857;215372;221786;279409;156927;98819;172424;137546;105821;63714;106176;47388;18906;17246;15619;61434;22902;61680;29558;10172 -5304;'035;South-eastern Asia;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34074;31765;25852;44177;87656;42448;36962;25573;17568;22093;31056;8913;13974;14950;22426;21079;22199;25655;29428;12297;19552;23762.3;18210;13137;17492.13;7920;3419;5935;4961;20315;3397;10163;6899;4220 -5304;'035;South-eastern Asia;1867;Industrial roundwood, non-coniferous;5516;Production;m3;27819000;28588000;24959000;34149000;36985000;37341000;43733000;47164000;49397000;54144000;56802000;63609008;76816008;68969000;59546000;75479008;75740008;80371000;78902000;80203208;76528008;77404000;80671000;80308008;75024008;80575000;90673000;97552008;101191000;95972708;99297700;102821700;95613700;92406700;92847700;93259700;94831700;92945700;91444800;92386700;85523300;94506600;105049700;109621000;108819500;105205500;111150500;118282300;108939300;120614300;132684300;136058300;149096260;151271720;146214420;144147420;144274966;155935484;158516517;165692999;153402179;151314812;157234991 -5304;'035;South-eastern Asia;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2474988;1963276;2755080;1970354;2105826;2121009;2084700;1798077;1325034;1856465;1873150;1951950;1579593;585956;993599;1029030.2;1316026;1535092;1572839;1069624;1289383;1482549;1679119;2156579;2503003;2602998;3814686;4375918;3405218;3037644;2743821;2741457;2661706;1656636 -5304;'035;South-eastern Asia;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;268926;315710;383268;319822;402418;545004;450145;351500;175821;285856;266749;297386;258970;101547;209506;215008.1;364638.3;262221;502224;316869;349096;430622;429372;546359;657068;625141;620858;935579;806584;708795;650763;930278;1299102;491344 -5304;'035;South-eastern Asia;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19862758;21138896;19828349;10812768;9768187;9196288;7995536;7210460;6447178;8074235;9537035;7682835;8104261;7083869;6845404;8928477;7131707;6970576;6173796;5796624;6623008;6192932;5630902;6362612;6565689;5209340;4332359;2963796;1993610;1586219;1178389;1080323;503365;828592 -5304;'035;South-eastern Asia;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1711423;1826669;1898738;1441121;1233610;1254358;1154562;973581;671409;966260;1319272;1052681;813414;876372;840860;1279763;1114838;1296879;1495796;1207356;1650839;2225420;2086347;2809919;3525864;1367853;917663;699678;497116;374222;232461;408453;315435;218316 -5304;'035;South-eastern Asia;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2415193;1924305;2667407;1827420;1956339;2053700;1876400;1565800;980211;1449100;1480400;1601100;1306146;371131;701222;650216;951369;1153616;1226227;817852;974183;1249742;1423129;1724705;1992260;2285215;3457179;3536699;2081823;1835632;1590343;1268623;1242647;751744 -5304;'035;South-eastern Asia;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;256267;300334;351244;283666;359126;519193;363520;263297;105533;196097;212616;244448;203244;55301;151645;148490;278137;196324;415794;255213;272109;357750;347186;442159;504713;532336;518032;760010;405979;394332;311020;422445;426384;261231 -5304;'035;South-eastern Asia;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19862758;21138896;19828349;10812768;9768187;9181753;7981029;7205710;6437831;8047819;9510619;7675919;8068411;7069277;6823880;8867769;7107461;6961996;6171205;5795161;6621120;6192069;5622780;6360583;6562573;5209340;4332359;2963745;1993610;1586219;1178389;1080323;469076;828592 -5304;'035;South-eastern Asia;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1711423;1826669;1898738;1441121;1233610;1251000;1151208;972475;669359;960159;1313171;1050505;805387;871542;831228;1268475;1110522;1295818;1494271;1206540;1650256;2224492;2084358;2807038;3525311;1367853;917663;699650;497116;374222;232461;408453;289349;218316 -5304;'035;South-eastern Asia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59795;38971;87673;142934;149487;67309;208300;232277;344823;407365;392750;350850;273447;214825;292377;378814.2;364657;381476;346612;251772;315200;232807;255990;431874;510743;317783;357507;839219;1323395;1202012;1153478;1472834;1419059;904892 -5304;'035;South-eastern Asia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12659;15376;32024;36156;43292;25811;86625;88203;70288;89759;54133;52938;55726;46246;57861;66518.1;86501.3;65897;86430;61656;76987;72872;82186;104200;152355;92805;102826;175569;400605;314463;339743;507833;872718;230113 -5304;'035;South-eastern Asia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14535;14507;4750;9347;26416;26416;6916;35850;14592;21524;60708;24246;8580;2591;1463;1888;863;8122;2029;3116;0;0;51;0;0;0;0;34289;0 -5304;'035;South-eastern Asia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3358;3354;1106;2050;6101;6101;2176;8027;4830;9632;11288;4316;1061;1525;816;583;928;1989;2881;553;0;0;28;0;0;0;0;26086;0 -5304;'035;South-eastern Asia;1868;Sawlogs and veneer logs;5516;Production;m3;21702000;22295000;18080000;27491000;30151000;30364000;36548000;39782000;41655000;45820000;48338000;54638008;67135008;58924000;49865000;65892008;65821008;70372000;68636900;69708108;65905908;66501700;69546700;68325708;63272708;68805000;78538000;85197008;87493000;80777708;84087700;86024700;78367700;72638700;71893700;68661700;67585700;65488700;62109800;57074700;46671300;53652200;63065800;66281000;64797500;60544500;65283500;69121300;62660300;66094300;70895300;71309300;76849300;78953300;73740000;73471000;72355036;72575880;72649261;76552519;62975091;60963384;62130963 -5304;'035;South-eastern Asia;1868;Sawlogs and veneer logs;5616;Import quantity;m3;71400;78700;103900;932200;1073700;1409900;1342300;1501500;1705000;1882200;1894600;1681600;1525300;1256700;1055400;1484400;1418500;1741900;1736100;1287800;1005200;682500;790000;544600;285000;278800;358500;528800;1256500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5304;'035;South-eastern Asia;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;759;778;1468;9458;10791;14285;17720;22279;25549;29199;33507;38851;58762;50798;44423;60741;71480;135089;154325;130416;112889;77409;108334;82797;64890;61626;67520;98190;182620;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5304;'035;South-eastern Asia;1868;Sawlogs and veneer logs;5916;Export quantity;m3;7661100;8235100;10821800;11679000;13159300;15572800;17004000;20925600;24517700;28996200;30635600;32039200;39447900;33964808;28349200;36055704;37237900;38523500;36097200;31742000;24317300;24378504;23238796;19461700;20847708;19901908;23601600;21508508;22084608;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5304;'035;South-eastern Asia;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;140512;165291;218277;211996;243675;293551;338336;440072;488131;557860;619933;660317;1304235;1389180;876551;1561698;1696122;1825546;3130445;2935348;1935323;2014391;1904083;1266458;1282037;1214604;1799738;1692998;1774643;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5304;'035;South-eastern Asia;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;146000;139000;150000;168000;164000;216000;210000;220000;366000;300000;300000;274000;281000;266000;577000;794000;899000;1010000;972900;949900;710900;689700;875700;866700;862700;1014000;1123000;1057000;1012000;907000;860000;800000;947000;947000;1231000;778000;720000;646000;746000;184000;184000;184000;626000;626000;614000;583000;619000;590000;512000;540000;838000;907000;1100000;1226000;1272000;1522000;1695490;1695490;1695490;1695490;1884713;1900493;1900493 -5304;'035;South-eastern Asia;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;100;10300;14000;13700;12300;8600;8500;7200;13600;13600;13600;15800;18400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5304;'035;South-eastern Asia;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;31;1199;1893;1736;1960;1358;2627;1829;2029;2029;2029;2881;3918;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5304;'035;South-eastern Asia;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;10000;14900;12900;7400;35000;25800;83700;99800;86500;63400;38100;38100;49000;43600;356800;424700;394200;269800;376100;306700;294800;127200;108800;107000;37700;128800;6600;5400;3300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5304;'035;South-eastern Asia;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;247;336;336;177;901;750;2021;5529;2524;1853;1177;1177;1618;1329;15101;26517;28261;19513;53472;40737;39127;21412;15206;15702;5196;13921;761;756;698;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5304;'035;South-eastern Asia;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;21556000;22156000;17930000;27323000;29987000;30148000;36338000;39562000;41289000;45520000;48038000;54364008;66854008;58658000;49288000;65098008;64922008;69362000;67664000;68758208;65195008;65812000;68671000;67459008;62410008;67791000;77415000;84140008;86481000;79870708;83227700;85224700;77420700;71691700;70662700;67883700;66865700;64842700;61363800;56890700;46487300;53468200;62439800;65655000;64183500;59961500;64664500;68531300;62148300;65554300;70057300;70402300;75749300;77727300;72468000;71949000;70659546;70880390;70953771;74857029;61090378;59062891;60230470 -5304;'035;South-eastern Asia;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;71400;78700;103900;932200;1073700;1409900;1342300;1501500;1705000;1882200;1894600;1681600;1525300;1256700;1055400;1484400;1418400;1731600;1722100;1274100;992900;673900;781500;537400;271400;265200;344900;513000;1238100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5304;'035;South-eastern Asia;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;759;778;1468;9458;10791;14285;17720;22279;25549;29199;33507;38851;58762;50798;44423;60741;71449;133890;152432;128680;110929;76051;105707;80968;62861;59597;65491;95309;178702;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5304;'035;South-eastern Asia;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;7651100;8220200;10808900;11671600;13124300;15547000;16920300;20825800;24431200;28932800;30597500;32001100;39398900;33921208;27992400;35631004;36843700;38253700;35721100;31435300;24022500;24251304;23129996;19354700;20810008;19773108;23595000;21503108;22081308;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5304;'035;South-eastern Asia;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;140265;164955;217941;211819;242774;292801;336315;434543;485607;556007;618756;659140;1302617;1387851;861450;1535181;1667861;1806033;3076973;2894611;1896196;1992979;1888877;1250756;1276841;1200683;1798977;1692242;1773945;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5304;'035;South-eastern Asia;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16382000;18715000;22931000;25982000;27509000;28854000;30258000;30092000;30875000;31930000;34941000;31512000;39338000;45790000;48869000;55733000;55680000;56110000;54562000;55979000;67181674;69689326;72962550;74438381;74378501;78689101 -5304;'035;South-eastern Asia;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 -5304;'035;South-eastern Asia;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16182000;18515000;22731000;25782000;27309000;28654000;30058000;29892000;30675000;31730000;34741000;31312000;39138000;45590000;48669000;55496000;55443000;55873000;54325000;55742000;67181674;69689326;72962550;74438381;74378501;78689101 -5304;'035;South-eastern Asia;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;;;;7100;7100;7100;7100;7100;7100;7100;7100;7100;7100;7100;7100;7100;7100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5304;'035;South-eastern Asia;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;309;309;309;309;309;309;309;309;309;309;309;309;309;309;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5304;'035;South-eastern Asia;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;358300;517200;350400;343500;287500;345500;186900;103500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5304;'035;South-eastern Asia;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;6248;9528;8196;8823;6503;10345;7758;5955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5304;'035;South-eastern Asia;1870;Pulpwood and particles (1961-1997);5516;Production;m3;40000;50000;487000;115000;115000;164000;177000;170000;466000;778000;715000;992000;1499000;1620000;1343000;1337000;1764000;1783000;1884000;1901000;1577000;1458000;1745000;2175000;1722000;1672000;1925000;1859000;2940000;4115000;4335000;5669000;6077000;8414000;9693000;12700000;15100000;;;;;;;;;;;;;;;;;;;;;;;;;; -5304;'035;South-eastern Asia;1870;Pulpwood and particles (1961-1997);5616;Import quantity;m3;;;;;;;;;7100;7100;7100;7100;7100;7100;7100;7100;7100;7100;7100;7100;7100;7100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5304;'035;South-eastern Asia;1870;Pulpwood and particles (1961-1997);5622;Import value;1000 USD;;;;;;;;;309;309;309;309;309;309;309;309;309;309;309;309;309;309;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5304;'035;South-eastern Asia;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;358300;517200;350400;343500;287500;345500;186900;103500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5304;'035;South-eastern Asia;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;6248;9528;8196;8823;6503;10345;7758;5955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5304;'035;South-eastern Asia;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;;;;;;;;;;;;;;;;;;;;;;;;;; -5304;'035;South-eastern Asia;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;40000;50000;487000;115000;115000;125000;135000;145000;447000;758000;685000;952000;1459000;1590000;1319000;1225000;1446000;1423000;1433000;1433000;1109000;1154000;1345000;1975000;1522000;1472000;1725000;1659000;2740000;3915000;4135000;5469000;5877000;8214000;9493000;12500000;14900000;;;;;;;;;;;;;;;;;;;;;;;;;; -5304;'035;South-eastern Asia;1871;Other industrial roundwood;5516;Production;m3;6223000;6382000;6542000;6711000;6883000;7068000;7260000;7459000;7663000;7868000;8081000;8295000;8506000;8724000;8943000;9160000;9377000;9591000;9810000;10017500;10229500;10443500;10660500;10879500;11097500;11317500;11538500;11758500;11975500;12192500;11940500;12133500;12321500;12506500;12697500;12881500;13071500;11926500;11571500;12770500;13259500;13734900;13961400;13913500;14749500;14574500;14761500;15015500;15484500;15967500;17082500;17032500;17897960;18148420;17920420;17920420;17920420;17920420;17920420;17920420;17913420;17913420;18355420 -5304;'035;South-eastern Asia;1871;Other industrial roundwood;5616;Import quantity;m3;24000;30000;25000;17600;20900;31000;23900;11300;12900;20200;21400;19000;15800;11800;20400;25000;34000;39400;27500;25700;47200;48900;32000;27300;30400;34300;31700;2500;4400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5304;'035;South-eastern Asia;1871;Other industrial roundwood;5622;Import value;1000 USD;173;203;127;121;125;263;126;137;169;247;212;206;142;186;546;576;1013;1384;2165;1057;1528;1887;1537;1651;1569;1663;1488;446;745;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5304;'035;South-eastern Asia;1871;Other industrial roundwood;5916;Export quantity;m3;4000;3000;2000;20200;22900;35800;24400;45500;35400;8400;7200;29000;6100;14100;28300;23200;40900;12800;8800;34400;54000;54000;53600;53600;53600;1800;1800;1800;1800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5304;'035;South-eastern Asia;1871;Other industrial roundwood;5922;Export value;1000 USD;44;33;27;147;255;387;135;399;245;54;40;272;73;183;465;283;343;63;139;588;1427;1427;1215;1215;1215;293;293;293;293;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5304;'035;South-eastern Asia;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;45500;45500;45500;47000;47000;47000;47000;47000;47000;47000;47000;40000;40000;40000 -5304;'035;South-eastern Asia;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;6223000;6382000;6542000;6711000;6883000;7068000;7260000;7457000;7661000;7866000;8079000;8293000;8503000;8721000;8939000;9156000;9372000;9586000;9805000;10012000;10224000;10438000;10655000;10874000;11092000;11312000;11533000;11753000;11970000;12187000;11935000;12128000;12316000;12501000;12692000;12876000;13066000;11921000;11566000;12765000;13254000;13729400;13955900;13908000;14744000;14569000;14756000;15010000;15479000;15922000;17037000;16987000;17850960;18101420;17873420;17873420;17873420;17873420;17873420;17873420;17873420;17873420;18315420 -5304;'035;South-eastern Asia;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;24000;30000;25000;17600;20900;31000;23900;11300;12900;20200;21400;19000;15800;11800;20400;25000;34000;39400;27500;25700;47200;48900;32000;27300;30400;34300;31700;2500;4400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5304;'035;South-eastern Asia;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;173;203;127;121;125;263;126;137;169;247;212;206;142;186;546;576;1013;1384;2165;1057;1528;1887;1537;1651;1569;1663;1488;446;745;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5304;'035;South-eastern Asia;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;4000;3000;2000;20200;22900;35800;24400;45500;35400;8400;7200;29000;6100;14100;28300;23200;40900;12800;8800;34400;54000;54000;53600;53600;53600;1800;1800;1800;1800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5304;'035;South-eastern Asia;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;44;33;27;147;255;387;135;399;245;54;40;272;73;183;465;283;343;63;139;588;1427;1427;1215;1215;1215;293;293;293;293;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5304;'035;South-eastern Asia;1630;Wood charcoal;5510;Production;t;715152;741664;763893;735911;757788;806038;826592;856302;873258;902237;934159;981583;1020820;1067301;1108351;1146010;1136675;1160079;1235283;1288227;1310178;1331496;1314931;1364893;1335176;1390695;1383332;1443501;1533843;1492529;1690320;1732686;1735036;1742048;1717484;1745652;1666710;1666870;2228065;2190368;2205141;2287708;2341578;2315282;2442731;2617060;3019643;3117091;3009163;2950229;3163343;3355103;3399957;3435776;3437968;3424951;3490426;3489789;3515326;3352574;3161074;3409454;3606888 -5304;'035;South-eastern Asia;1630;Wood charcoal;5610;Import quantity;t;76000;72000;66000;57700;59500;38900;20200;21800;20700;26500;26200;34800;36900;47800;58700;51400;61200;53700;52500;59400;67200;91600;90100;94300;103700;95700;93400;83500;101300;90800;42800;55587;45473;36440;37605;42706;49806;33486;44334;62917;45000;37601;67777;75529;69382;83663;53037;85366;107154;121156;152289;182127;159949;196581;184350;146268;128166;202314;163953;115832;133631.82;136673;165261 -5304;'035;South-eastern Asia;1630;Wood charcoal;5622;Import value;1000 USD;1828;1539;1342;907;904;555;346;336;323;531;561;856;919;1459;2005;1731;2488;2311;2874;5396;4313;5678;6230;6401;6624;6710;6140;5609;6631;6213;3367;5752;4051;3373;3840;4888;4912;2921;3570;5484;3972;3274;7447;7907;7217;8712;5109;10697;14230;14661;22274;27117;24910;31242;32458;32396;27358;45442;37170;28347;37203.15;35464;43549 -5304;'035;South-eastern Asia;1630;Wood charcoal;5910;Export quantity;t;55600;62050;64700;70800;74300;60800;48300;39200;33700;42500;51600;68000;78600;105400;107600;117100;107253;91600;128900;160300;154400;146700;148000;155100;128300;130800;123700;121300;204700;154300;216800;302540;299051;299826;297142;327300;238962;215178;242300;295807;293851;317024;300711;308728;337539;332427;415233;504883;494754;527537;549575;608725;674668;800004;881093;730267;807745;1088699;1066613;947266;858867.66;1180732;1492978 -5304;'035;South-eastern Asia;1630;Wood charcoal;5922;Export value;1000 USD;776;681;768;931;1040;778;603;469;445;424;1054;1461;1708;4041;5261;5694;4817;3799;9396;16721;16109;10398;11316;15560;11980;11698;12196;13625;19893;28838;32454;56432;60166;60334;61896;82160;54734;48890;45053;64620;54136;49349;44187;56555;66202;74174;88372;108919;133443;135623;173888;217454;271145;312244;378215;339166;394945;522458;491875;477193;533885.36;682707;781638 -5304;'035;South-eastern Asia;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1189000;3597000;4733000;5007000;5007000;8260000;8570000;8646000;9222000;10352000;16515000;16401000;22097000;23110652;24010000;25567000;25616000;31670000;26370900;27572900;31727900;25813555;24834970;30707970;31613970;30541970 -5304;'035;South-eastern Asia;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9636;13993;47723;24622;28459;23261;19955;18067;30721;26161;108570;150332;431645;534842;589940;266328;278702;136261;110966;98683;1034285;2392941;894124;392073.98;2242368;3026834 -5304;'035;South-eastern Asia;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1478;1978;4750;2457;3921;4466;4105;3924;6605;3746;6194;8414;50025;71275;72215;15238;19154;13286;12276;7405;69226;186611;62411;22751.29;184561;266859 -5304;'035;South-eastern Asia;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1190127;1706300;1890700;2176700;2675068;2556613;3140360;4025286;4129847;5422236;6476833;7210021;12575500;17965827;19391851;20855499;21358645;21545751;19626363;19738368;21082729;23196064;21815922;29893885.55;32988593;32593367 -5304;'035;South-eastern Asia;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61255;75181;91911;129376;161301;148455;200968;239858;240141;279210;398811;412796;780368;1192557;1369400;1637369;1569786;1668131;1505850;1467851;1617909;2068817;1773088;2137231.85;3367274;2895174 -5304;'035;South-eastern Asia;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;801000;3209000;4345000;4619000;4619000;3772000;4082000;4158000;4434000;5544000;6117000;5964000;11680000;15105652;16259000;17444000;17612000;20375000;17682900;19130900;23285900;17371555;16392970;22265970;23171970;22099970 -5304;'035;South-eastern Asia;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7243;1022;61321;2221;13600;1800;6305;7516;27922;12522;18654;14134;9164;6861;11091;7234;20137;21379;259022;417079;485413;203555;181367;62924;38760;40882;986987;2267412;860760;332313.78;2199720;2971953 -5304;'035;South-eastern Asia;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;345;79;3458;200;551;155;1111;1477;3028;1457;2887;3240;2256;1940;4069;1264;1983;2072;39625;59287;63709;8537;7685;4111;3008;3003;63679;181714;61076;20052.62;182665;262999 -5304;'035;South-eastern Asia;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;286500;612900;479600;737000;731000;962000;906000;585000;715000;498000;282400;531600;562000;597900;601200;438000;581500;506200;773700;1016600;920200;852300;694100;702357;771904;887970;1130583;1308500;1171502;1151126;1664500;1867900;2109300;2581019;2416990;3014412;3913714;4032688;5303353;6343353;7047711;12371817;17767535;19066099;20450713;20917699;20779926;18684108;19041449;21033735;23151516;21796148;29874651.7;32959168;32565330 -5304;'035;South-eastern Asia;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;3185;4945;5004;10745;12831;21319;20953;7155;8866;6696;4300;9569;11250;11958;12193;9446;12822;13455;25634;33101;32045;22316;17164;27220;26835;31206;53401;67517;65934;58004;71950;88975;118764;145506;129158;181722;213913;212223;258373;379475;386655;748887;1153843;1305792;1565164;1491350;1574228;1411932;1402872;1612355;2066572;1770965;2135033.29;3364829;2892613 -5304;'035;South-eastern Asia;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;376000;388000;388000;388000;388000;388000;388000;388000;388000;4488000;4488000;4488000;4788000;4808000;10398000;10437000;10417000;8005000;7751000;8123000;8004000;11295000;8688000;8442000;8442000;8442000;8442000;8442000;8442000;8442000 -5304;'035;South-eastern Asia;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20046;16385;14990;14705;8605;9330;3331;6477;19801;12100;9805;9127;10791;11206;19630;18927;88433;128953;172623;117763;104527;62773;97335;73337;72206;57801;47298;125529;33364;59760.2;42648;54881 -5304;'035;South-eastern Asia;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;925;671;686;803;581;1197;367;501;1722;1000;1034;1226;1849;1984;2536;2482;4211;6342;10400;11988;8506;6701;11469;9175;9268;4402;5547;4897;1335;2698.67;1896;3860 -5304;'035;South-eastern Asia;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8500;153547;68649;38873;52189;145500;122981;39001;41800;22800;67400;94049;139623;125948;111572;97159;118883;133480;162310;203683;198292;325752;404786;440946;765825;942255;696919;48994;44548;19774;19233.85;29425;28037 -5304;'035;South-eastern Asia;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1056;10528;5704;2604;3223;8960;6311;3251;3231;2936;10612;15795;19297;19246;25945;27918;20837;19336;26141;31481;38714;63608;72205;78436;93903;93918;64979;5554;2245;2123;2198.56;2445;2561 -5304;'035;South-eastern Asia;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;440000;304000;310000;310000;310000 -5304;'035;South-eastern Asia;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;181000;440000;1315000;1395200;1985500;2732648;4672379;4567677;4636476;5006476;6895276;6585276 -5304;'035;South-eastern Asia;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10449;6297;12669;10443;14718;23874;34750;37178;28846;55612.99;60774;66679 -5304;'035;South-eastern Asia;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2625;2847;3774;3362;4333;4736;6256;7970;6253;9816.08;11735;11482 -5304;'035;South-eastern Asia;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;148676;417442;1267953;1295043;1886215;2646612;4546073;4347762;4446808;4751695.2;6736234.39;6366983 -5304;'035;South-eastern Asia;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18821;85986;214568;170130;200971;310886;605550;492982;521154;585144.86;1088544.82;781989.04 -5304;'035;South-eastern Asia;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111000;315000;1175000;1310000;1850000;2447000;4367000;4232400;4301200;4671200;6560000;6250000 -5304;'035;South-eastern Asia;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7778;2855;9375;6733;10664;18488;28775;26253;13891;27012.94;49236;58567 -5304;'035;South-eastern Asia;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1444;1298;2243;1758;2520;2449;3412;3762;2517;4276;7195;7149 -5304;'035;South-eastern Asia;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84315;297002;1134137;1213769;1756730;2369981;4291795;4110636;4228002;4464307.13;6501446;6106926 -5304;'035;South-eastern Asia;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11751;44259;171621;132028;158852;255009;534933;434352;458969;518380.61;1035009;735379 -5304;'035;South-eastern Asia;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70000;125000;140000;85200;135500;285648;305379;335277;335276;335276;335276;335276 -5304;'035;South-eastern Asia;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2671;3442;3294;3710;4054;5386;5975;10925;14955;28600.05;11538;8112 -5304;'035;South-eastern Asia;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1181;1549;1531;1604;1813;2287;2844;4208;3736;5540.08;4540;4333 -5304;'035;South-eastern Asia;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64361;120440;133816;81274;129485;276631;254278;237126;218806;287388.08;234788.39;260057 -5304;'035;South-eastern Asia;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7070;41727;42947;38102;42119;55877;70617;58630;62185;66764.25;53535.82;46610.04 -5304;'035;South-eastern Asia;1872;Sawnwood;5516;Production;m3;6337700;6412400;6705900;7604900;7982100;7687400;8184100;8700500;9307700;9497000;8897200;11004200;10808700;10830700;11049700;12998700;14127700;14413000;14237200;15914400;14644000;16838700;17186500;16245600;16010800;16428800;19700500;20133000;22127700;21517500;21007000;21101000;20479500;18379200;18501400;18712400;17599500;16109000;14649200;15051000;14851300;15356000;16657200;16861900;17782200;19000900;19062900;19054900;18908500;19434600;19202200;18886500;20159900;19664400;18506800;19240700;19892211;18442599;18310882;16907067;16883208;17271098;17083379 -5304;'035;South-eastern Asia;1872;Sawnwood;5616;Import quantity;m3;29700;33300;43400;180400;187700;184500;231100;310900;340900;408700;407900;586600;1117500;1044350;975800;1421900;1671300;1790400;2257900;1716000;1622300;1567300;1587700;1336600;1037100;984700;1463600;1669400;3533100;2783250;2673000;3009784;3243013;3782579;3667869;4037900;2812465;2210158;2303645;2446969;2755883;3600995;3354347;4067826;4258651;4059824;3742404;2851488;3003306;3628954;3471724;3606788;3725566;3998058;4173685;4669531;4640396;5324551;5514416;5430217;5208707;4401830;4514358 -5304;'035;South-eastern Asia;1872;Sawnwood;5622;Import value;1000 USD;1750;1681;2057;6680;6923;6532;7317;9833;11051;13427;13175;17913;50623;59168;57335;103847;135411;162103;251705;222625;226220;204230;206398;177875;134849;137756;232985;253968;400301;495605;563045;700400;795105;987075;1091438;1115314;864978;460833;529247;496564;537339;655300;734271;964869;1100371;1167695;1282619;1211530;944365;1281338;1447895;1531369;1708904;2043997;1866945;1497547;1769417;2203880;2341926;2095783;2444517;2437200;1664849 -5304;'035;South-eastern Asia;1872;Sawnwood;5916;Export quantity;m3;972750;942500;1078200;1432650;1464200;1535300;1668000;2154900;2361500;2596900;2577500;3202000;4369100;3754700;3448600;5572400;5367100;5471300;7315000;6624100;5628700;5966000;7045100;6529300;6343300;7099400;8005267;9109907;9816568;7440195;7658400;7923979;7933433;6311666;5707005;5114600;4417074;3984515;4778949;4898410;6194200;7638786;8968032;9816766;8042497;6641589;5643987;5256082;5240128;6738753;6485600;6254204;7004738;7566567;8258452;8422695;9214324;8247725;7036666;6515097;6720856;6751705;7757893 -5304;'035;South-eastern Asia;1872;Sawnwood;5922;Export value;1000 USD;53468;51530;60335;76455;78723;77503;82556;107154;128516;138064;131574;184650;442377;411722;346148;645310;648853;720905;1381852;1389398;981309;1014708;1271526;1131156;1047551;1375942;1514528;1803424;2458761;1683838;1919553;2227709;2670809;2386951;2148889;1885323;1634208;1121700;1471565;1248970;1772805;1740366;2045354;2462683;2089702;2045753;2062536;2017744;1654201;2186008;2368281;2333800;3085807;3616406;3634969;3301723;3572651;3289405;2558074;2146177;2322183;2384291;2362086 -5304;'035;South-eastern Asia;1632;Sawnwood, coniferous;5516;Production;m3;62000;57000;61000;69500;71500;100500;109500;84500;130000;139000;141000;154000;170000;135500;155500;137000;145000;135150;134250;164250;161250;166250;155250;153250;186250;239750;282750;269250;274500;321000;332000;367000;378500;572200;625400;492400;575500;234000;321000;22000;23000;25000;25000;122200;105900;106600;106600;107000;107000;126600;111600;111600;111600;111600;86600;87000;87000;87000;87000;75000;75000;75000;75000 -5304;'035;South-eastern Asia;1632;Sawnwood, coniferous;5616;Import quantity;m3;300;300;300;2350;1100;1900;5650;1750;2600;5900;1700;1250;1950;2250;37400;32250;31500;35050;41350;47050;24300;20700;14050;9850;8800;7900;6500;9150;7100;18800;46400;59462;139904;99623;206181;261200;259073;160563;268283;310183;330683;449141;512519;657877;697259;835740;864756;806071;802562;1228756;1229739;1334608;1410535;1422600;1584176;1843641;1530308;2202012;2325821;2447799;2792108;2286195;1900436 -5304;'035;South-eastern Asia;1632;Sawnwood, coniferous;5622;Import value;1000 USD;23;23;16;224;120;145;187;144;117;371;154;129;159;250;2702;2845;2877;3366;4543;5240;4325;3697;2948;2655;2049;1949;1615;2308;2172;7395;15434;15976;27582;31175;53506;75527;69057;57504;74055;75049;82557;92845;108850;133383;134306;167501;201829;189611;147528;304722;310063;350570;395679;391710;388610;402627;357879;580370;540986;533943;937666;795344;534706 -5304;'035;South-eastern Asia;1632;Sawnwood, coniferous;5916;Export quantity;m3;0;10600;5550;650;0;25200;46250;46050;27600;55050;48600;60200;57050;91300;107450;55050;62950;40800;74400;131700;84850;85150;63950;62850;100300;116300;193867;176057;191018;267145;587300;159551;172248;237135;297130;249400;228003;69028;122200;145200;181300;145660;109224;124736;124457;59462;75062;91642;48775;62911;42261;40997;41163;51325;68961;56066;36589;44577;40853;52743;73326;85006;78021 -5304;'035;South-eastern Asia;1632;Sawnwood, coniferous;5922;Export value;1000 USD;0;392;200;25;0;1022;1860;1571;1127;2202;2033;3101;4094;12381;10821;5277;6792;5712;12810;29866;15501;14740;11656;11157;19269;25746;39729;44045;66501;64013;92963;48157;77635;91392;109931;60260;71358;24028;34889;42391;48536;31740;32680;26345;31265;27055;29594;44533;20695;19676;18879;21598;20257;23543;28365;24808;20508;17165;15337;27941;42169;56547;47375 -5304;'035;South-eastern Asia;1633;Sawnwood, non-coniferous;5516;Production;m3;6275700;6355400;6644900;7535400;7910600;7586900;8074600;8616000;9177700;9358000;8756200;10850200;10638700;10695200;10894200;12861700;13982700;14277850;14102950;15750150;14482750;16672450;17031250;16092350;15824550;16189050;19417750;19863750;21853200;21196500;20675000;20734000;20101000;17807000;17876000;18220000;17024000;15875000;14328200;15029000;14828300;15331000;16632200;16739700;17676300;18894300;18956300;18947900;18801500;19308000;19090600;18774900;20048300;19552800;18420200;19153700;19805211;18355599;18223882;16832067;16808208;17196098;17008379 -5304;'035;South-eastern Asia;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;29400;33000;43100;178050;186600;182600;225450;309150;338300;402800;406200;585350;1115550;1042100;938400;1389650;1639800;1755350;2216550;1668950;1598000;1546600;1573650;1326750;1028300;976800;1457100;1660250;3526000;2764450;2626600;2950322;3103109;3682956;3461688;3776700;2553392;2049595;2035362;2136786;2425200;3151854;2841828;3409949;3561392;3224084;2877648;2045417;2200744;2400198;2241985;2272180;2315031;2575458;2589509;2825890;3110088;3122539;3188595;2982418;2416599;2115635;2613922 -5304;'035;South-eastern Asia;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;1727;1658;2041;6456;6803;6387;7130;9689;10934;13056;13021;17784;50464;58918;54633;101002;132534;158737;247162;217385;221895;200533;203450;175220;132800;135807;231370;251660;398129;488210;547611;684424;767523;955900;1037932;1039787;795921;403329;455192;421515;454782;562455;625421;831486;966065;1000194;1080790;1021919;796837;976616;1137832;1180799;1313225;1652287;1478335;1094920;1411538;1623510;1800940;1561840;1506851;1641856;1130143 -5304;'035;South-eastern Asia;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;972750;931900;1072650;1432000;1464200;1510100;1621750;2108850;2333900;2541850;2528900;3141800;4312050;3663400;3341150;5517350;5304150;5430500;7240600;6492400;5543850;5880850;6981150;6466450;6243000;6983100;7811400;8933850;9625550;7173050;7071100;7764428;7761185;6074531;5409875;4865200;4189071;3915487;4656749;4753210;6012900;7493126;8858808;9692030;7918040;6582127;5568925;5164440;5191353;6675842;6443339;6213207;6963575;7515242;8189491;8366629;9177735;8203148;6995813;6462354;6647530;6666699;7679872 -5304;'035;South-eastern Asia;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;53468;51138;60135;76430;78723;76481;80696;105583;127389;135862;129541;181549;438283;399341;335327;640033;642061;715193;1369042;1359532;965808;999968;1259870;1119999;1028282;1350196;1474799;1759379;2392260;1619825;1826590;2179552;2593174;2295559;2038958;1825063;1562850;1097672;1436676;1206579;1724269;1708626;2012674;2436338;2058437;2018698;2032942;1973211;1633506;2166332;2349402;2312202;3065550;3592863;3606604;3276915;3552143;3272240;2542737;2118236;2280014;2327744;2314711 -5304;'035;South-eastern Asia;1634;Veneer sheets;5516;Production;m3;60600;106600;104900;156300;214300;328800;456700;295400;213200;516800;550500;590200;549900;589000;519200;538200;590200;630200;695000;720700;762200;813200;923200;969800;917300;789700;798100;629200;637200;796200;1027200;1471700;2379200;2244100;1971350;2034100;1526100;1117000;1285000;1615000;1124000;1193700;1333700;1231000;1350500;1384000;1592000;1971000;2032000;2044981;2238903;2367297;2577000;2892000;2901051;2966854;2932692;3608303;3819757;3559712;4064017;3983441;4044074 -5304;'035;South-eastern Asia;1634;Veneer sheets;5616;Import quantity;m3;;;;100;1200;3900;2500;800;3200;6100;12300;13200;37400;62900;71700;65600;78500;92400;80400;69000;100500;106200;89000;59800;36800;34200;28700;46500;28800;58000;30200;53265;42659;58544;93431;172700;144746;105214;186334;235534;247634;281621;247225;164451;182535;165287;165587;132015;115918;141615;239664;232501;209124;237720;188647;240641;282532;379258;683975;634062;668497;643791;601845 -5304;'035;South-eastern Asia;1634;Veneer sheets;5622;Import value;1000 USD;;;;20;143;481;305;167;329;617;1169;1270;3171;5710;4782;4636;6478;9181;14282;14594;18883;18922;18959;15009;13735;12514;11178;16812;15619;23232;21792;42769;37714;50384;66588;98648;104764;73000;101824;139156;97892;99897;85271;116111;129050;152148;156474;185919;159984;210171;277238;252890;227109;275014;250125;269095;329903;395840;481702;533874;687604;606616;515292 -5304;'035;South-eastern Asia;1634;Veneer sheets;5916;Export quantity;m3;40500;67800;86700;126800;142600;189000;176800;245800;203700;198700;318700;464800;410800;531000;296600;256600;282200;253500;193800;216100;217100;240400;771500;742000;605500;569800;595400;364700;364600;455500;555800;821558;762427;689929;670600;720600;996406;962967;1049700;998013;701672;680092;557099;512058;496337;415962;414800;529163;406173;503732;478720;703084;968131;1429981;1469717;1363485;1093155;1140414;669754;908967;2052970;1650107;1634043 -5304;'035;South-eastern Asia;1634;Veneer sheets;5922;Export value;1000 USD;3133;5456;6976;8525;10249;13010;10963;17520;15589;12145;15692;29827;39853;48394;26342;34710;38592;33899;48259;56969;52570;53895;153332;169111;136552;87742;91083;108907;108550;144150;170474;257523;322428;325863;295860;293063;364587;289262;289470;250907;152826;175139;178038;179420;182938;189986;199026;259978;166957;220375;231378;269976;279379;341449;341957;365281;340717;340927;273939;219293;367528;380870;382058 -5304;'035;South-eastern Asia;1873;Wood-based panels;5516;Production;m3;157000;189600;393500;284300;383900;508925;662154;650891;839756;1213819;1290467;1575639;1636269;1155623;1452927;1909627;2062027;2290427;2653527;2981927;3432127;4507427;5493927;5966927;6654227;7868227;8844927;10260927;11303827;11211827;12833227;13918200;15014200;15717900;15980300;16459000;16727000;14334000;14147000;15419200;16161800;16582600;16312000;18108600;16917900;17237700;18067900;16963900;16321900;17337670;16809070;17047670;17113670;17615670;18320670;18504917;18305368;19913558;20253288;20071647;23502042;22050421;22313611 -5304;'035;South-eastern Asia;1873;Wood-based panels;5616;Import quantity;m3;33100;29600;34900;42600;34400;59641;62651;76249;97178;108926;118758;157904;208867;177444;193791;268220;276337;319700;319200;343000;426500;373300;507800;731000;727700;655000;858600;881352;967375;958660;929100;810756;847394;960298;1115424;1145808;1072557;840519;868119;898274;830378;917634;709608;1200505;1413107;2059535;2137046;2712355;2156671;2707741;3522287;3914381;4111196;3868414;4057260;4844917;5480700;5872152;5822832;5523727;6408233.68;5196484.04;5229097.04 -5304;'035;South-eastern Asia;1873;Wood-based panels;5622;Import value;1000 USD;4399;3829;4499;5357;4153;5677;6579;7918;10336;12547;12388;16625;31046;27752;27299;43096;45025;59379;93171;90735;111970;94090;118479;84900;68216;91132;124746;177622;166762;202185;267300;289309;229073;320223;304175;331928;325106;219114;238016;221886;202960;225098;199208;301232;370941;528693;631639;837319;764601;958499;1232457;1344369;1450805;1569930;1585630;1657901;1848384;2065693;2070542;2009940;2415679;2216586.9;1915999.9 -5304;'035;South-eastern Asia;1873;Wood-based panels;5916;Export quantity;m3;74700;87600;121300;163600;168100;222717;255385;405174;424879;543690;664496;890117;1215274;710227;786143;1158280;1161405;1438000;1595300;1734900;2262500;2528100;3616700;4484900;5289600;6067000;7601412;8406756;10051484;10430488;10847400;12363200;12925300;12418300;13070147;13971711;13973972;13307967;12204313;11094113;12941613;12274340;9188712;12061271;12430834;13384128;13656341;11304243;11220141;11911058;11335275;11080884;12013542;12975935;12484462;13160309;13534416;15398796;14061266;13328501;14747994.86;14391648;14757859 -5304;'035;South-eastern Asia;1873;Wood-based panels;5922;Export value;1000 USD;8390;11668;16362;18031;19947;25230;27727;44870;48089;57496;67409;97053;201685;138938;136217;215845;221977;309148;464281;520180;604682;642156;914385;984910;1456064;1435269;2317675;2758208;3283584;3324403;3855399;4115350;5529101;5317043;5528266;5685458;5335931;3429273;3648765;3588426;3297104;3327551;3339666;3726814;3630784;4447595;4896738;4583529;4006901;4616080;5092078;4766668;5061662;5566930;5273793;4539969;4680576;5533138;5036249;4794212;6368219.54;7090815.53;5283432 -5304;'035;South-eastern Asia;1640;Plywood and LVL;5516;Production;m3;138300;167600;367100;258700;350000;458700;605800;597300;772600;1140000;1197900;1469400;1514700;1042300;1342300;1808300;1959000;2174800;2533400;2866700;3292500;4361300;5253300;5594300;6258600;7391600;8308300;9674900;10705300;10541300;12105300;13046300;13752300;14395000;14436300;14877000;15074000;12479000;12363000;13477200;12483400;12801000;11846600;11031600;10466000;10862800;10938000;9864000;8946000;9319770;8850770;9070770;8505770;8911770;8331770;8433017;8168468;9206658;8964643;9162495;10623988;9692273;9323783 -5304;'035;South-eastern Asia;1640;Plywood and LVL;5616;Import quantity;m3;19700;19800;19100;29800;20800;25500;34100;44200;68000;72500;73800;119600;157500;118000;151800;214477;232537;257300;258500;279500;366800;325700;462000;683100;680900;591200;775200;761200;808500;795300;779800;586795;597666;570627;709600;740208;713392;548927;493296;460460;420208;397916;198639;261137;358910;896067;918603;1004432;853364;1160426;1637611;1972869;2150649;2076367;1958403;2704624;3083580;3695226;3606632;3326181;4065813;3269162;3123621 -5304;'035;South-eastern Asia;1640;Plywood and LVL;5622;Import value;1000 USD;3138;2866;3050;3845;2510;3220;4751;5787;8380;9567;8818;14048;26674;23020;22840;37327;39245;50959;83775;78393;98609;82889;106265;72025;54590;78325;106656;150547;144517;165119;221565;237636;177936;239525;221876;234133;226296;142189;147037;128849;113624;102028;73967;90677;152875;278754;325491;400612;347171;489671;685217;783830;896899;1051689;1045094;1143128;1260568;1532219;1494046;1415693;1709759;1652398;1398840 -5304;'035;South-eastern Asia;1640;Plywood and LVL;5916;Export quantity;m3;74700;87600;121300;161000;165500;218200;252300;401900;421500;539700;660000;885600;1207600;704000;779600;1150500;1146905;1416100;1569500;1704800;2216200;2496800;3575800;4264400;5199100;5881200;7367900;8199600;9805300;10199600;10603800;12012871;12267156;11639041;12226918;12978500;12576137;11261763;9807400;8801300;10025400;9330801;6206495;8529682;8117069;8411237;8605802;6880055;6918501;6881466;6288438;6045702;6494489;6829518;6306462;6328795;6398379;7547299;6369825;6299935;7038851;6998870;6154301 -5304;'035;South-eastern Asia;1640;Plywood and LVL;5922;Export value;1000 USD;8390;11668;16362;17716;19574;24843;27484;44621;47874;57201;67085;96721;201030;138309;135667;214861;219863;306225;459645;515023;598910;636937;906958;974703;1446961;1420190;2291851;2723505;3244057;3284176;3810088;4036688;5381048;5138600;5323647;5458562;5037862;3082266;3221575;3233850;2817847;2826671;2813016;3132456;2918841;3590622;3853459;3650169;3112921;3469300;3836109;3518197;3820012;4200266;3972197;3230222;3242983;3976395;3567832;3408376;4548220;5313377;3506909 -5304;'035;South-eastern Asia;1607;Laminated Veneer Lumber (LVL);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;214000;223000 -5304;'035;South-eastern Asia;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;590;58203 -5304;'035;South-eastern Asia;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1208;16622 -5304;'035;South-eastern Asia;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;184077;197051 -5304;'035;South-eastern Asia;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76660;68522 -5304;'035;South-eastern Asia;1646;Particle board and OSB (1961-1994);5516;Production;m3;6700;7000;7300;6700;5700;10000;9600;4100;5400;4800;7800;10100;13400;14100;9500;7500;6500;9100;15800;17100;31100;48100;126100;242100;276100;345100;403100;477500;484000;503000;552000;602900;851900;759900;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5304;'035;South-eastern Asia;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;100;100;2400;1600;1700;2000;1900;1900;900;600;500;2100;4600;7700;7700;25800;26600;21300;15500;21000;23100;30200;49700;75600;120300;85700;66000;68978;96320;233124;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5304;'035;South-eastern Asia;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;42;39;265;209;224;266;243;287;343;301;183;349;1014;1465;1602;5434;6127;4331;4459;5496;6760;6309;10229;13998;11594;14337;12977;17545;16823;35298;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5304;'035;South-eastern Asia;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;200;200;200;200;200;200;200;600;500;500;600;2700;4400;8800;13900;20600;15000;22400;198800;66000;154300;201712;181556;238384;222888;225100;231204;442429;487894;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5304;'035;South-eastern Asia;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;13;12;6;6;6;6;6;83;49;49;328;718;752;2145;2432;2877;2182;3664;6133;4928;9693;19626;29110;35579;32881;35769;38522;72343;80914;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5304;'035;South-eastern Asia;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1030000;920000;712000;696000;791000;871000;1394400;1391600;1015500;3048000;3619000;3213000;3137000;3128000;3096000;3171000;3117400;3155000;3153000;3152000;3651000;3633000;3707000;4008000;4111000;4066790;5316960;4728540;5323000 -5304;'035;South-eastern Asia;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;265135;224200;160148;136041;150609;204454;180650;116506;172535;342254;412341;583207;615677;954503;661226;719180;1059760;1056179;1111130;1063922;984589;1038311;1144025;936576;1020677;1037624;1268340.06;874253;1053206 -5304;'035;South-eastern Asia;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39881;40760;36678;33274;35229;40761;36774;28277;36880;73084;67499;103466;123384;206439;192402;192354;225626;215117;214358;204384;184820;185937;215910;167354;192311;199824;273707.67;220004;206558 -5304;'035;South-eastern Asia;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;482111;533811;501802;989704;960113;1105113;1029613;930182;941328;1345926;1890340;2319500;2194731;2216775;2180748;2336346;2346109;2359115;2313547;2695964;2549413;2866262;3120294;3301602;3172946;3005494;3336210.91;2682791;3228377 -5304;'035;South-eastern Asia;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80947;88883;79091;131550;126797;150860;132921;129177;121729;173940;224514;309793;346489;380120;313184;381583;435391;412820;383338;433369;383673;415336;496877;474091;437401;401548;544238.92;462943.53;482883 -5304;'035;South-eastern Asia;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70000;70000;100000;100000;100000;230000;200000;200000 -5304;'035;South-eastern Asia;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;200;700;19370;11524;20463;27668;30849;30849;34382;14977;37238;27525;38760;53472;44449;33986;54358;71673;90563;157310;169634;100861.34;48344.04;60605.04 -5304;'035;South-eastern Asia;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106;49;194;3270;2146;4317;6896;5839;5839;9434;5734;8941;12095;13797;16340;14664;9758;13979;16860;27509;42735;42120;22619.99;16813.9;23794.9 -5304;'035;South-eastern Asia;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;156;156;156;156;156;156;90;90;164;1505;910;1379;50064;50750;80126;69266;91860;196802.21;116172;93942 -5304;'035;South-eastern Asia;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;26;26;26;26;26;27;27;58;456;386;808;10826;10484;19384;13398;18254;37111.92;26495;22858 -5304;'035;South-eastern Asia;1874;Fibreboard;5516;Production;m3;12000;15000;19100;18900;28200;40225;46754;49491;61756;69019;84767;96139;108169;99223;101127;93827;96527;106527;104327;98127;108527;98027;114527;130527;119527;131527;133527;108527;114527;167527;175927;269000;410000;563000;514000;662000;941000;1159000;993000;1071000;2284000;2390000;3449900;4029000;2832900;3161900;3992900;3971900;4279900;4846900;4840900;4821900;5454900;5551900;6337900;6368900;6359900;6598900;7077645;6742362;7331094;7429608;7466828 -5304;'035;South-eastern Asia;1874;Fibreboard;5616;Import quantity;m3;13400;9800;15800;12800;13500;34041;26151;30449;27478;34426;43058;36404;50467;58844;41491;51643;39200;54700;53000;37700;33100;26300;30300;26900;23700;33600;33700;44552;38575;77660;83300;154983;153408;156547;140689;181400;199017;155551;223214;233160;228820;383842;326910;576651;614188;549412;571917;719038;627104;790897;797391;846573;795945;683676;1080282;1047624;1181422;1149787;1038213;990288;973219.28;1004725;991665 -5304;'035;South-eastern Asia;1874;Fibreboard;5622;Import value;1000 USD;1261;963;1449;1512;1601;2418;1563;1922;1732;2714;3327;2290;4029;4431;4276;5420;4766;6955;7794;6908;7234;6870;7755;7379;6866;6498;7861;13077;10651;22729;32758;34128;34314;45400;42418;57035;62132;43651;55644;52227;52368;91523;86215;133154;143671;140634;176925;220834;219294;267533;309519;331625;323208;299193;345958;314857;355046;338611;341450;352303;409592.34;327371;286807 -5304;'035;South-eastern Asia;1874;Fibreboard;5916;Export quantity;m3;;;;2600;2600;4317;2885;3074;3179;3790;4296;4317;7074;5727;6043;7180;11800;17500;17000;16200;25700;16300;18500;21700;24500;31500;31800;25600;7800;8000;18500;119125;215715;291365;361118;459400;896033;1056500;1436800;1187700;1886600;2013357;2040889;2185507;2423269;2653235;2855652;2207257;2120736;2693156;2700638;2675903;3204001;3449543;3627208;3915188;3964993;4469769;4449229;3931212;4176130.73;4593815;5281239 -5304;'035;South-eastern Asia;1874;Fibreboard;5922;Export value;1000 USD;;;;315;373;374;231;243;209;289;318;326;572;580;501;656;1396;2171;2491;2725;2895;3037;3763;4074;4175;5386;6198;5593;3948;7346;9542;40140;75710;97529;123672;138013;218978;215457;300393;203716;346336;371703;404921;420392;487403;547154;696764;553214;580770;765170;820551;835593;857856;932909;917115;883585;930232;1063268;1017618;966034;1238648.7;1288000;1270782 -5304;'035;South-eastern Asia;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90000;128000;77000;58000;133000;133000;160000;116000;326000;413100;240000;237000;238000;242000;380000;392000;381000;362000;341000;341000;530000;511000;421000;409000;418321;361722;388410;397780;395000 -5304;'035;South-eastern Asia;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36600;44500;49247;38615;49134;21477;24600;25398;26580;41424;45309;62500;87353;121518;42167;64569;82223;88852;94560;90772;107244;90348;113192;103549;120128;86004;62769.89;64221;91619 -5304;'035;South-eastern Asia;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11694;14406;16567;12008;12506;10184;11784;10851;12775;21539;19728;26303;35176;53101;26395;35620;48784;53357;53956;58075;61170;53329;57676;38818;44876;37777;34942.01;39354;28140 -5304;'035;South-eastern Asia;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68900;54400;94017;115017;190100;193400;255300;233477;222516;250285;294985;233426;298265;202211;80242;112714;67123;64008;64827;54045;54350;47426;81911;138965;117040;127251;194044;169658;160880 -5304;'035;South-eastern Asia;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27313;16924;26394;26200;44995;44480;53215;55127;66686;83312;102761;91787;117229;76096;50686;39941;30469;33688;30803;28806;23518;17480;32850;63102;58880;55747;96081;91878;66613 -5304;'035;South-eastern Asia;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;344000;454000;784000;1071000;632000;710000;860000;860000;1719900;2023000;2182000;2464000;3294000;3269000;3439000;4019000;4029000;4019000;4673000;4770000;5367000;5417000;5498000;5749000;6159000;5866000;6580000;6580000;6620000 -5304;'035;South-eastern Asia;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45739;62500;58542;48569;102541;152633;156300;293965;228660;468631;465590;407985;373806;436311;401759;556279;547077;574710;558073;528668;905661;895445;966620;954932;825535;815368;818360.92;835931;835090 -5304;'035;South-eastern Asia;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17976;30083;30940;21936;32488;29453;31491;70422;62882;103057;109342;103100;126872;143915;161236;201286;222362;215677;220541;222143;263283;241299;265875;265141;277874;294714;354202.68;267535;243418 -5304;'035;South-eastern Asia;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;259600;385100;677716;893116;1201400;961000;1605800;1761478;1712110;1840921;2013533;2339352;2132352;1646220;1271550;1772786;1704577;1729649;2216268;2405900;2565635;2782912;3015776;3345153;3510779;3167367;3404883.04;3734598;4436460 -5304;'035;South-eastern Asia;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92792;117552;180678;183514;250550;156378;290233;314183;322360;321629;366652;444663;491143;402535;313019;465642;498472;544080;599096;656879;648758;633741;706967;799299;804861;792849;1021559.57;1045219;1077123 -5304;'035;South-eastern Asia;1650;Other fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;3500;16000;16000;16000;16000;16000;16000;16000;49000;49000;50000;80000;80000;80000;80000;80000;30000;228000;228000;1264000;1414000;1404000;1592900;410900;460900;460900;460900;460900;435900;430900;440900;440900;440900;440900;440900;440900;440900;500324;514640;362684;451828;451828 -5304;'035;South-eastern Asia;1650;Other fibreboard;5616;Import quantity;m3;100;500;500;2200;2400;19300;15200;13600;16000;22000;28000;26400;39200;39600;35800;46400;32000;41000;40900;28000;24200;18700;23000;18500;15100;19900;19800;17000;10000;35700;36600;49955;58402;48142;58350;74400;91228;68367;71539;59050;47920;64479;71670;66596;103289;78927;110758;161209;183178;170049;168091;183011;143312;64236;67377;61831;101610;91306;92550;88916;92088.46;104573;64956 -5304;'035;South-eastern Asia;1650;Other fibreboard;5622;Import value;1000 USD;37;63;111;432;520;1157;649;629;784;1454;1842;1376;2927;1854;3483;4737;3818;5277;5634;4135;4868;4495;4771;3918;3611;3819;4032;4686;3594;12155;21854;11879;11635;12043;12748;12546;14625;9707;10650;12590;9093;10250;10558;8558;14601;11231;14877;23818;31663;30627;38373;62591;48711;18975;21505;20229;31495;34652;18700;19812;20447.65;20482;15249 -5304;'035;South-eastern Asia;1650;Other fibreboard;5916;Export quantity;m3;;;;600;700;2000;1200;1600;1600;2000;2400;2000;5600;3200;5200;5600;4800;6800;7300;7300;19000;7100;5400;4800;3600;4600;8200;10000;3000;3100;4600;42603;62374;39918;32618;19900;124300;48367;45300;33300;25500;18402;106263;94301;114751;80457;425035;358826;768944;807656;928938;882246;922906;989598;1007223;1084850;867306;985651;821410;636594;577203.69;689559;683899 -5304;'035;South-eastern Asia;1650;Other fibreboard;5922;Export value;1000 USD;;;;143;167;144;86;91;72;110;155;119;388;214;384;443;425;629;744;816;1213;1078;967;763;539;633;1371;2442;957;1584;2151;15997;18807;8436;3567;3537;11906;5743;4848;2858;2888;2393;15875;15451;17990;10704;88392;74583;217065;259587;291610;257825;227957;247224;244839;232364;190415;200867;153877;117438;121008.12;150903;127046 -5304;'035;South-eastern Asia;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;12000;15000;19100;18900;28200;40225;46754;49491;61756;69019;84767;96139;108169;99223;101127;93827;96527;106527;104327;98127;108527;94527;98527;114527;103527;115527;117527;92527;98527;118527;126927;219000;330000;483000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5304;'035;South-eastern Asia;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;13300;9300;15300;10600;11100;14741;10951;16849;11478;12426;15058;10004;11267;19244;5691;5243;7200;13700;12100;9700;8900;7600;7300;8400;8600;13700;13900;27552;28575;41960;46700;105028;95006;108405;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5304;'035;South-eastern Asia;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;1224;900;1338;1080;1081;1261;914;1293;948;1260;1485;914;1102;2577;793;683;948;1678;2160;2773;2366;2375;2984;3461;3255;2679;3829;8391;7057;10574;10904;22249;22679;33357;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5304;'035;South-eastern Asia;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;2000;1900;2317;1685;1474;1579;1790;1896;2317;1474;2527;843;1580;7000;10700;9700;8900;6700;9200;13100;16900;20900;26900;23600;15600;4800;4900;13900;76522;153341;251447;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5304;'035;South-eastern Asia;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;172;206;230;145;152;137;179;163;207;184;366;117;213;971;1542;1747;1909;1682;1959;2796;3311;3636;4753;4827;3151;2991;5762;7391;24143;56903;89093;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5304;'035;South-eastern Asia;1879;Total fibre furnish;5510;Production;t;26600;35200;61600;71000;69800;76300;78700;99300;109000;227200;270200;290700;507200;436200;445700;516700;496700;530700;690700;801700;844700;952700;1176700;1375700;1413700;1444700;1441700;1331700;1694700;1928500;2261300;2664500;3196700;3628700;4841700;5947700;6982700;6063700;6305700;10136700;10560700;10720000;10737600;11037100;11245900;10892500;12618500;15177500;15089800;16514800;17287300;17772300;18405300;18470300;18969300;19241300;18984409;19603409;20191809;21155076;20847269;20981777;20935174 -5304;'035;South-eastern Asia;1879;Total fibre furnish;5610;Import quantity;t;1300;2400;300;4300;2000;2000;4100;52500;70500;148800;125900;158700;200800;278385;183961;282810;387196;414113;480513;461003;514400;512700;695900;647400;626400;875700;1016400;1149412;1103900;1381690;1703600;2383452;2672166;3095641;3188197;3096749;3749101;4773149;4984321;5464942;5957711;4934118;5026859;5134428;4997935;5485249;5724158;5764746;5384963;6116680;6157417;6673612.3;6445907;6638763;6197954;7120538;8539050;10515658;11375309;11877738;14698641.24;13627384.16;17706272 -5304;'035;South-eastern Asia;1879;Total fibre furnish;5622;Import value;1000 USD;161;236;35;564;288;288;612;6442;9017;18960;17032;22574;33989;57816;37279;61082;84449;97383;135149;152017;187415;165364;229360;219808;164322;234242;339805;415145;403180;411799;500572;653032;694097;914384;1213810;937422;953227;995177;1041953;1548146;1078390;917263;1047145;1172473;1237059;1462557;1737363;2064684;1509422;2273866;2477904;2318894;2437977;2572263;2214680;2302617;2829073;3389964;3067802;2614302;4857484.8;4932459.95;4266098 -5304;'035;South-eastern Asia;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;100;200;7100;11600;12200;29700;25600;16371;18579;20265;21536;37413;62955;80890;80190;138190;138390;117590;193400;166400;219319;313301;454919;521600;543790;422986;906104;1327556;1903272;2070422;2759518;1820215;2310512;2698645;2790867;3171759;2533167;3370613;3705463;3386493;3650826;3204117;3673678;4223132;4376472;5242135;5116784;4822739;5225703;5989340;6273029;6340712;6228373;6071089.67;5411515;6419291 -5304;'035;South-eastern Asia;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;12;38;289;450;988;4332;7989;3813;3846;3827;3808;11106;14049;16492;17116;23612;34572;29933;38357;39261;66650;117315;144683;152614;153787;121685;285350;467435;645354;726057;984494;735953;1105904;816249;871685;991339;801302;1133945;1383134;1314937;1789610;1095843;1866781;2101369;1988392;2479046;2414461;2397067;2306244;3014337;3834252;3420642;2691403;3138040.33;3353497;3488435 -5304;'035;South-eastern Asia;1878;Pulp for paper;5510;Production;t;26600;35200;61600;71000;69800;76300;78700;99300;109000;111200;139200;137700;285200;279200;230700;304700;286700;308700;344700;305700;344700;415700;452700;503700;540700;540700;499700;499700;785700;1075200;1274900;1635000;1926700;2408700;2712700;3456700;3944700;3078700;3213700;5714700;6138700;6109900;6097700;6145900;6170500;5482500;7183500;7463500;6922800;7651800;8533800;8481800;8594800;8679800;8825800;9071800;9574600;10203600;10131000;10845440;10600583;10845091;10766091 -5304;'035;South-eastern Asia;1878;Pulp for paper;5610;Import quantity;t;1300;2400;300;4300;2000;2000;4100;52500;70500;101800;78900;119700;149800;145800;64200;140368;204800;255500;258000;232400;293000;315700;524300;400600;345200;485200;450300;419000;432100;441700;553500;816910;1173089;1224104;1229134;1242675;1395624;1465933;1383538;1357059;1145452;1190119;1156697;1328434;1425016;1612309;1581730;1602886;1530945;1708050;1732791;2331281.3;2652299;2600787;2400118;2841832;2596612;3199904;2834539;2351868;2232388.46;2328754.16;2143670 -5304;'035;South-eastern Asia;1878;Pulp for paper;5622;Import value;1000 USD;161;236;35;564;288;288;612;6442;9017;14902;13137;20105;30180;39137;22482;44559;62180;77119;101490;112468;143663;135104;207135;176401;129771;185754;239301;279419;288903;248775;312480;400935;475005;594187;769605;663419;655986;653960;640363;861612;535045;511607;520523;655291;723007;907407;1016442;1122991;915897;1283590;1377896;1450157;1635365;1733888;1478674;1517773;1563758;2197276;1831099;1299846;1633440.39;1934567.95;1676694 -5304;'035;South-eastern Asia;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;100;200;100;600;1200;12700;7300;4700;5100;4700;4600;8500;6000;10400;7600;9300;16800;14100;20800;23100;47700;143200;162900;198000;169425;191561;220656;700114;1291272;1419522;2215618;1560815;1763212;2141645;2540909;2599187;1906381;2696389;3030815;2622478;2853373;2407391;2769161;3247345;3527496;4392728;4277738;4091424;4441192;5049264;5259489;5696359;5543271;5452696.52;4834939;5816224 -5304;'035;South-eastern Asia;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;12;38;24;104;555;3509;6410;2857;2948;2830;2799;9076;9198;10499;10677;11153;18225;16939;18756;22165;44264;94151;102694;109747;103021;85146;145883;339106;537731;629882;918395;703249;1017366;750972;841266;908236;709924;1036608;1280639;1171446;1610776;976307;1660844;1852000;1801173;2298342;2231854;2249215;2143262;2774958;3605467;3308461;2577525;2979503.19;3209201;3382249 -5304;'035;South-eastern Asia;1875;Wood pulp;5510;Production;t;8000;10000;31400;35200;34400;36400;38400;47300;49700;46700;59000;61000;182500;156500;108000;162000;166000;203000;229000;200000;193000;206000;233000;281000;317000;330000;301000;301000;601000;875500;948500;1237300;1526000;2021000;2379000;3173000;3637000;2653000;2914000;5391000;5805000;5805000;5803200;5851400;5851200;5202200;6959200;7207200;6672200;7430200;8307200;8265200;8373200;8458200;8621200;9115153;9628270;10259335;10884000;11800440;11953583;12243091;12191091 -5304;'035;South-eastern Asia;1875;Wood pulp;5610;Import quantity;t;1300;2400;300;3800;1900;1900;4000;51700;70200;84600;67000;104600;147500;160700;64200;137100;200900;272300;292200;263300;303700;300300;471200;362600;343400;496800;464400;474000;528500;528000;646900;946475;1304267;1337130;1361440;1486473;1615448;1748343;1643635;1624335;1430435;1471506;1378843;1621293;1721915;1892332;1816232;2038213;1832889;2200726;2312628;2858700;3284889;3213052;2999725;3452244;3214635;3790021;3423850;3154737;2870943.39;2942820.64;2732815.48 -5304;'035;South-eastern Asia;1875;Wood pulp;5622;Import value;1000 USD;161;236;35;552;277;277;601;6019;8875;11788;10956;18877;29485;42974;22286;43508;60738;81237;113065;119836;144123;127378;185495;159313;128143;189176;247710;315829;392079;336384;373668;504537;566578;700878;882504;863593;803562;834303;784324;1040279;712235;651367;642821;855992;938171;1099232;1216926;1567644;1134018;1808229;2048105;1963756;2232186;2286314;1969964;2035534;2117398;2731365;2327021;1751734;2170893.77;2518588.02;2200547.07 -5304;'035;South-eastern Asia;1875;Wood pulp;5910;Export quantity;t;;;;;;;;100;200;100;600;300;10100;4000;2900;3300;2900;2800;2900;1000;2400;1700;3700;10800;7200;16000;15300;38500;125800;143800;178000;155445;174866;205613;683902;1275010;1403902;2220700;1567480;1749900;2126800;2522666;2579009;1885017;2673020;3063020;2640344;2870541;2369397;2689555;3146177;3434410;4302719;4274471;4104661;4465556;5206478;5443922;6613014;7055125;6911104.45;6571555;7468241 -5304;'035;South-eastern Asia;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;12;38;24;104;81;1473;1720;916;1007;889;858;926;462;785;471;1193;5822;3704;7516;9668;27301;74699;81757;84993;70524;53509;114042;306108;497246;591290;896075;685544;983413;721264;809197;871085;669027;989342;1270728;1185127;1595838;926031;1551911;1699982;1684830;2193688;2195065;2176215;2092857;2823560;3706965;3724058;3254519;3920090.56;4450209;4418403 -5304;'035;South-eastern Asia;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;664000;664000;665000;657000;385000;380000;360000 -5304;'035;South-eastern Asia;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;208814;216452;205383;214776;244682.17;232187;213692 -5304;'035;South-eastern Asia;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116935;138779;114674;106743;135749.2;153881;139865 -5304;'035;South-eastern Asia;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;775;617;49677;34281;34451;44807;6667 -5304;'035;South-eastern Asia;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;639;471;32984;16257;16367;26383;4801 -5304;'035;South-eastern Asia;1654;Mechanical wood pulp (1961-2016);5510;Production;t;;;16400;22200;21400;22400;22400;29300;28700;28700;28000;29000;65000;49000;41000;53000;50000;53000;52000;49000;50000;47000;45000;43000;37000;57000;57000;57000;65000;84500;86200;114300;105000;95000;43000;43000;43000;43000;58000;68000;68000;68000;62000;68000;68000;97000;100000;103000;103000;118000;238000;190000;190000;190000;190000;190000;;;;;;; -5304;'035;South-eastern Asia;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;1300;2400;300;3800;1900;1900;4000;22300;39500;20500;16800;20800;16000;16100;5100;17100;21700;37500;20000;43300;27500;36000;39900;42600;58500;43300;25400;24300;25700;55300;55500;53292;68213;56510;52169;88202;67902;170100;97121;122021;77821;96961;88807;116760;126822;166247;179514;176243;155195;171254;237683;215666;229690;185870;119974;113688;;;;;;; -5304;'035;South-eastern Asia;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;161;236;35;552;277;277;601;2521;4951;1764;2807;3083;3770;4212;1578;5272;6999;11271;5973;17763;10582;13746;14948;19160;20358;16479;11205;12399;14937;25228;25687;20977;25423;23786;24658;38483;27890;66563;37076;68087;34174;37605;38112;51846;53119;81008;97102;117422;69053;101928;134955;124282;135286;109529;59163;48857;;;;;;; -5304;'035;South-eastern Asia;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14300;18600;2872;3592;3592;3592;100;400;200;200;100;200;1888;516;3553;3553;3869;3869;4640;3077;725;1014;1458;1273;962;983;727;;;;;;; -5304;'035;South-eastern Asia;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6657;8005;1330;1144;1144;1144;48;107;174;174;120;270;1047;316;1149;1149;1310;1310;1526;908;215;281;625;1390;879;370;212;;;;;;; -5304;'035;South-eastern Asia;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;48000;48000;48000;35000;35000;48000;76000;81000;112000;224000;239000;185000;239000;242000;55000;0;463000;277000;277000;443200;464400;464200;381200;387200;388200;388200;394200;418200;440200;440200;440200;435200;498200;;;;;;; -5304;'035;South-eastern Asia;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;1700;700;800;700;900;600;600;1100;7300;5000;2300;4200;3500;7000;6200;8100;4700;28600;31100;43900;40100;5600;29533;65520;45975;43914;117157;78857;56491;57300;66600;74800;91172;93427;109011;101832;94692;69237;87915;83325;97146;90402;67904;144325;132457;117857;122949;;;;;;; -5304;'035;South-eastern Asia;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;261;126;119;169;240;214;305;109;2474;2316;1484;2198;1606;3102;4452;5869;2965;11281;14324;21832;18306;2858;11718;23898;20984;20113;44542;27761;19578;22841;33501;33649;36579;40594;52180;49801;50302;37046;62006;49368;64059;56453;43218;85894;79834;64267;56376;;;;;;; -5304;'035;South-eastern Asia;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;1000;1000;0;0;0;1999;1999;2114;2778;2778;8850;5744;6986;35289;6760;6756;1060;1434;1045;;;;;;; -5304;'035;South-eastern Asia;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;475;386;0;0;0;840;840;636;1637;1637;4751;3486;3530;18124;3509;3569;1078;912;598;;;;;;; -5304;'035;South-eastern Asia;1656;Chemical wood pulp;5510;Production;t;8000;10000;15000;13000;13000;14000;16000;18000;21000;18000;31000;32000;117500;107500;67000;109000;116000;150000;177000;151000;143000;159000;188000;190000;232000;225000;209000;209000;488000;715000;781300;1011000;1197000;1687000;2151000;2891000;3352000;2555000;2856000;4860000;5460000;5460000;5298000;5319000;5319000;4604000;6347000;6610000;6075000;6783000;7511000;7495000;7603000;7688000;7856000;8036000;8565000;9192000;9157000;9780440;9868583;10115091;10081091 -5304;'035;South-eastern Asia;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;29400;30700;61600;47100;82500;130200;125500;57600;115900;173500;195600;218400;167800;241000;240200;414200;290500;228000;405300;381900;344800;334800;301800;428100;674218;972667;1016785;1039577;1017414;1228164;1222478;1216514;1148114;977814;981773;948894;1072118;1156841;1333305;1312212;1317208;1267732;1394995;1374981;1998387;2247599;2251050;2134564;2577467;2361393;2958459;2610355;2119407;1962980.58;2070103.16;1898355 -5304;'035;South-eastern Asia;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;3498;3924;9628;7650;15563;25456;33609;20274;36700;52013;57925;88032;83149;120051;103374;162495;125230;82063;151955;206598;227872;234088;180161;227840;335488;392271;495907;651097;565594;588001;557634;570092;740876;453208;421284;426251;534682;602108;755511;856483;911988;760089;1056394;1123418;1219075;1363994;1499762;1317847;1371460;1414193;2024640;1681036;1161847;1447617.96;1717570.95;1491370 -5304;'035;South-eastern Asia;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;100;200;100;600;300;10100;4000;2900;3300;2900;2800;2900;1000;2400;1700;3700;10800;7200;16000;15300;38500;125800;129500;159400;152573;171274;202019;680308;1274908;1403500;2198100;1544880;1745600;2124700;2520478;2575764;1878592;2642711;2951882;2509428;2739448;2301895;2654283;3082545;3422280;4291852;4186062;4012763;4378182;4975631;5183092;5589079;5442841;5365447.83;4740468;5775110 -5304;'035;South-eastern Asia;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;12;38;24;104;81;1473;1720;916;1007;889;858;926;462;785;471;1193;5822;3704;7516;9668;27301;74699;75100;76988;69194;52365;112897;304963;497197;591182;881164;670222;980575;720259;808015;869609;666409;972024;1200194;1078351;1495800;892571;1530413;1663385;1676565;2185511;2116308;2101949;2017330;2651505;3488154;3117512;2394935;2790456.06;3023990;3271760 -5304;'035;South-eastern Asia;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;;;;;;;;;;67000;19000;61000;51000;76000;89000;66000;53000;53000;66000;67000;67000;66000;66000;66000;62000;62000;53000;71000;63000;120000;356000;591000;645000;650000;1008000;282000;332000;332000;407000;414300;414300;339000;340000;240000;205000;222000;209000;114000;114000;114000;102000;112000;129000;137000;128000;137000;129000;155000;141000 -5304;'035;South-eastern Asia;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;5000;7300;7700;7300;28200;30200;57200;29400;56400;67800;57000;65600;53100;42400;38500;66900;42600;65900;80300;100100;68700;56300;53600;73500;112175;110659;189024;178732;188200;234681;152222;206000;210100;173700;195897;185813;167135;164639;164575;196756;169244;162035;209166;195383;228153;258795;293379;254171;296072;266117;260008;279156;243272;347723.06;296793;282881 -5304;'035;South-eastern Asia;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;540;848;1103;1046;4439;5278;15716;9757;15918;15779;14155;22253;23215;20670;14694;26595;16401;20688;23882;47098;39527;30824;26590;38185;52520;44980;84357;110481;106801;96923;60198;83540;114922;66851;71742;69076;64091;73936;83790;121750;102982;85993;148328;154207;146801;166730;209043;164297;164022;183818;201836;193749;137551;275987.4;252652;210401 -5304;'035;South-eastern Asia;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16001;12881;5815;4800;2700;3400;1000;1000;0;2300;54;3074;4119;9236;3228;228;2374;364;1510;85;320;363;237;172;23;21;2701;2658;50888;15604.03;41606;46968 -5304;'035;South-eastern Asia;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5939;4150;2347;1845;959;1448;526;32;0;761;39;1217;1701;3591;1538;121;1774;194;955;41;223;216;115;77;10;17;2039;1441;23123;7344.65;21840;24348 -5304;'035;South-eastern Asia;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;8000;10000;15000;13000;13000;14000;16000;18000;21000;18000;31000;32000;117500;40500;48000;48000;65000;74000;88000;85000;90000;91000;109000;107000;144000;133000;117000;117000;400000;653000;728300;940000;1134000;1567000;1795000;2300000;2707000;1905000;1848000;4578000;5128000;5128000;4891000;4904700;4904700;4265000;6007000;6370000;5870000;6561000;7302000;7381000;7489000;7574000;7754000;7924000;8436000;9055000;9029000;9643440;9739583;9960091;9940091 -5304;'035;South-eastern Asia;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;1100;2000;10700;7800;16600;25000;24400;10400;30400;85400;111000;115800;88700;158000;145300;270500;165600;114600;244100;200900;217300;240500;215700;296800;503726;814490;768776;812764;786114;943146;994041;925414;896414;728514;738699;707022;846047;935710;1120489;1058727;1101772;1049498;1142304;1133939;1732523;1951645;1917863;1835665;2227880;2039473;2630337;2275588;1834654;1562483.51;1719764;1577564 -5304;'035;South-eastern Asia;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;164;305;1905;1373;2817;5865;6236;3994;9980;27971;33618;48337;45942;74249;63376;105028;71606;43917;97284;111792;150421;177367;134252;155828;251630;324138;382917;516758;433042;466513;464477;446965;599694;353655;328095;333807;441608;500096;642880;696847;776585;629323;864431;919549;1043676;1168807;1259908;1120662;1169602;1190712;1765087;1439397;992649;1124870.26;1406963;1236260 -5304;'035;South-eastern Asia;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;1100;8900;5000;13600;13400;36800;123700;129000;158900;132559;156704;193300;674000;1271100;1343600;2197100;1542880;1737800;2119800;2520396;2572427;1873853;2632023;2946625;2507081;2735974;2300483;2650030;3078922;3379255;4220698;4116560;3949705;4376105;4974952;5180358;5583050;5384565;5349833.79;4698836;5728126 -5304;'035;South-eastern Asia;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;391;5097;3041;6759;9040;26836;74063;74865;76753;61459;47573;109259;302408;495939;565083;880637;669540;975992;719113;807871;868113;664108;967275;1197483;1077027;1493329;891604;1526390;1659686;1648878;2139588;2071784;2062031;2015301;2650975;3486044;3113711;2367126;2783084.41;3002110;3247392 -5304;'035;South-eastern Asia;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55803;68114;55611;41481;52774.02;53546.16;37910 -5304;'035;South-eastern Asia;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39663;57717;47890;31647;46760.29;57955.95;44709 -5304;'035;South-eastern Asia;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;658;33;3371;7388;10;26;16 -5304;'035;South-eastern Asia;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;513;71;2360;4686;27;40;20 -5304;'035;South-eastern Asia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;200;1100;16900;17200;1100;6000;2200;2600;4400;6800;5200;3600;3800;12600;5500;8300;12400;12200;13800;22800;28700;34593;24474;30442;25500;21700;35100;61293;63100;22800;53800;30783;40582;40675;36745;28313;33925;20502;19697;12748;5889;7963;5903;17286;13580;13325;;;;;;; -5304;'035;South-eastern Asia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;36;188;3476;3485;383;2033;806;876;1605;3123;2536;1661;1563;4319;2197;2950;6313;6116;7198;11079;14731;15042;8689;12272;9965;15162;14868;23849;26422;12164;19437;11158;14775;17187;16527;15116;21470;12138;9127;8905;4661;4853;3858;12485;8090;8039;;;;;;; -5304;'035;South-eastern Asia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;362;200;750;200;300;1600;0;1000;0;100;0;110;100;100;248;248;3;0;1;8;36;77;0;87;59;;;;;;; -5304;'035;South-eastern Asia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;163;64;423;70;81;714;0;649;0;21;0;90;100;100;73;73;5;0;2;9;13;26;0;110;47;;;;;;; -5304;'035;South-eastern Asia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;23300;21400;43200;31800;36600;58100;26700;16700;23100;18100;25000;32600;19200;35400;52800;73000;69700;42000;72600;68500;46600;24200;9700;29100;23724;23044;28543;22581;21400;15237;14922;22000;18800;21800;16394;15477;18261;19747;19928;22804;25690;36502;30777;39770;29748;31256;22522;31148;40190;;;;;;; -5304;'035;South-eastern Asia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;2794;2771;6620;5195;8119;10837;8172;6140;8769;7457;9276;15837;10869;22596;23643;29309;32904;15261;27839;41395;31808;18699;8240;19096;16296;14464;16361;13893;10589;9697;9110;13165;14096;13265;10289;8593;11796;11549;13725;16416;20283;35646;34730;45001;23745;24599;18326;24798;29797;;;;;;; -5304;'035;South-eastern Asia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;100;200;100;600;300;500;1300;200;600;200;100;200;500;300;100;1000;300;600;800;300;100;500;500;500;3651;1489;2154;1308;808;54900;0;0;7800;2500;28;153;520;1352;1781;1871;1097;1048;2742;3530;42669;70714;69265;62799;1995;;;;;;; -5304;'035;South-eastern Asia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;12;38;24;104;81;119;921;117;208;90;59;127;264;203;70;401;324;262;356;227;64;235;235;235;1633;578;868;640;218;23937;1;1;4583;364;105;189;500;1058;1100;1130;692;773;3066;3649;27451;45681;44409;39731;1972;;;;;;; -5304;'035;South-eastern Asia;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120000;125000;106000;106000;135000;140000;140000;140000;140000;140000;390953;399270;403335;1062000;1363000;1700000;1748000;1750000 -5304;'035;South-eastern Asia;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;800;2400;500;600;18200;900;3500;4600;31900;48800;49900;31000;20600;10100;23300;48800;43500;28500;73800;124100;130800;157700;189432;197867;217860;225780;263700;240525;299274;272700;287600;300000;301600;247715;323404;336420;298088;255269;456847;326637;537331;609562;576743;663275;643675;627330;638140;644428;615110;608112;820554;663280.65;640530.48;620768.48 -5304;'035;South-eastern Asia;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;135;373;112;90;4913;220;1231;1617;9567;16744;17440;11292;8652;4950;10471;19853;17777;18626;61234;121222;112689;117283;136354;124986;160201;186636;214974;159910;190528;154315;197815;191204;155899;137864;217284;233143;212411;226295;476228;255508;585848;733279;577181;647012;597189;528687;558841;586270;567946;531311;483144;587526.6;647136.07;569312.07 -5304;'035;South-eastern Asia;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;2;2;2;2;21400;21400;4200;1900;300;730;873;24642;104491;124269;117603;58681;27561;27329;3912;2838;86387;89481;85602;230072;260213;974258;1578003;1511205.62;1786280;1686464 -5304;'035;South-eastern Asia;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1;1;1;1;14262;14762;2718;735;135;320;629;15533;67587;103829;93761;29066;17753;18192;4131;3218;76800;72984;74717;171416;218340;573562;843327;1113267.5;1399836;1141842 -5304;'035;South-eastern Asia;1668;Pulp from fibres other than wood;5510;Production;t;18600;25200;30200;35800;35400;39900;40300;52000;59300;64500;80200;76700;102700;122700;122700;142700;120700;105700;115700;105700;151700;209700;219700;222700;223700;210700;198700;198700;184700;199700;326400;397700;400700;387700;333700;283700;307700;425700;299700;323700;333700;304900;294500;294500;319300;400300;349300;362300;356600;356600;366600;356600;361600;361600;344600;347600;345600;347600;309000;408000;347000;350000;325000 -5304;'035;South-eastern Asia;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;500;100;100;100;800;300;18000;14300;15600;2900;3300;900;6768;8500;15100;14600;19000;20300;36000;63200;61300;50600;31900;14400;18800;27700;44500;64300;59867;66689;104834;93474;19902;20701;16864;12603;20324;15017;20213;25569;30545;39521;18065;20767;21520;24693;44655;29725;49324.3;30685;31410;27723;27728;26405;24993;18801;17685;24725.71;26464;31623 -5304;'035;South-eastern Asia;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;12;11;11;11;423;142;3249;2554;1340;785;1076;416;2282;3059;5449;5169;10072;10832;16378;26590;27559;21481;14355;10217;24824;18046;25080;56095;32752;33413;53510;73737;14800;12334;10185;10354;19148;14014;16139;15566;16583;17979;20586;25811;31575;37387;61209;63070;63582;50191;44763;37397;41080;32630;33857;35389;31256;50073.22;63116;45459 -5304;'035;South-eastern Asia;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;900;2600;3300;1800;1800;1800;1800;5600;5000;8000;5900;5600;6000;6900;4800;7800;9200;17400;19100;20000;13980;16695;15045;16214;16264;15622;16318;14735;17512;16745;18543;20908;22237;48011;72286;106403;100435;96675;107167;128497;96998;92847;89654;76244;61238;72858;75780;57603;66149;52797.69;49664;34447 -5304;'035;South-eastern Asia;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;474;2036;4690;1941;1941;1941;1941;8150;8736;9714;10206;9960;12403;13235;11240;12497;16963;19452;20937;24754;32497;31637;31842;32999;40486;38593;36582;32467;36671;30443;32204;37471;41526;62799;77498;90148;108699;79342;126686;170210;120474;107872;113589;145984;125122;122814;116842;157965;166333;172680.13;158828;105688 -5304;'035;South-eastern Asia;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;1025;12725;2887;3628;16545;25955;39731;39124;32938;26439;43588;38400;41135;39438;48970;44675;35286;43732;46984;54035;151034;89230.8;219012;252445 -5304;'035;South-eastern Asia;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1109;5902;1401;2116;4531;10565;17323;17229;17156;12083;29733;30500;29321;28343;34045;30150;24562;31775;39807;33153;43472;61868.36;104059;83274 -5304;'035;South-eastern Asia;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15700;15300;16000;2001;3400;14900;17906;17914;7937;5098;1670;472;617;3118;2675;9002;697;6840;29880;368029;1449575;2004144.05;2630899;4100932 -5304;'035;South-eastern Asia;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36050;29950;31651;302;1700;11042;7119;7146;5605;3633;1010;803;618;2189;2092;5538;497;2886;11521;121666;333412;745377.46;806202;1016220 -5304;'035;South-eastern Asia;1669;Recovered paper;5510;Production;t;;;;;;;;;;116000;131000;153000;222000;157000;215000;212000;210000;222000;346000;496000;500000;537000;724000;872000;873000;904000;942000;832000;909000;853300;986400;1029500;1270000;1220000;2129000;2491000;3038000;2985000;3092000;4422000;4422000;4610100;4639900;4891200;5075400;5410000;5435000;7714000;8167000;8863000;8753500;9290500;9810500;9790500;10143500;10169500;9409809;9399809;10060809;10309636;10246686;10136686;10169083 -5304;'035;South-eastern Asia;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;47000;47000;39000;51000;132585;119761;142442;182396;158613;222513;228603;221400;197000;171600;246800;281200;390500;566100;730412;671800;939990;1150100;1566542;1499077;1871537;1959063;1854074;2353477;3307216;3600783;4107883;4812259;3743999;3870162;3805994;3572919;3872940;4142428;4161860;3854018;4408630;4424626;4342331;3793608;4037976;3797836;4278706;5942438;7315754;8540770;9525870;12466252.79;11298630;15562602 -5304;'035;South-eastern Asia;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;4058;3895;2469;3809;18679;14797;16523;22269;20264;33659;39549;43752;30260;22225;43407;34551;48488;100504;135726;114277;163024;188092;252097;219092;320197;444205;274003;297241;341217;401590;686534;543345;405656;526622;517182;514052;555150;720921;941693;593525;990276;1100008;868737;802612;838375;736006;784844;1265315;1192688;1236703;1314456;3224044.41;2997892;2589404 -5304;'035;South-eastern Asia;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;7000;11000;11000;17000;18300;11671;13479;15565;16936;28913;56955;70490;72590;128890;121590;103490;172600;143300;171619;170101;292019;323600;374365;231425;685448;627442;612000;650900;543900;259400;547300;557000;249958;572572;626786;674224;674648;764015;797453;796726;904517;975787;848976;849407;839046;731315;784511;940076;1013540;644353;685102;618393.15;576576;603067 -5304;'035;South-eastern Asia;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;265;346;433;823;1579;956;898;997;1009;2030;4851;5993;6439;12459;16347;12994;19601;17096;22386;23164;41989;42867;50766;36539;139467;128329;107623;96175;66099;32704;88538;65277;30419;83103;91378;97337;102495;143491;178834;119536;205937;249369;187219;180704;182607;147852;162982;239379;228785;112181;113878;158537.14;144296;106186 -5304;'035;South-eastern Asia;1876;Paper and paperboard;5510;Production;t;111300;120900;112100;140700;146800;147500;155500;176200;211000;215500;376700;520700;635800;562000;556200;638900;723900;881400;1002000;1063300;1056500;1078300;1067300;1255300;1372000;1431000;1812400;1995600;2247600;2983000;3770300;4829700;5327000;6028000;6991000;7766000;8806000;10041000;11754400;11773700;11979900;12031000;13210300;13495200;13616300;15713700;16099100;18089800;18646400;18650900;18992100;19291400;19215100;18935756;19564416;20507209;21521169;21912069;22618369;22669569;23882869;23880469;23888469 -5304;'035;South-eastern Asia;1876;Paper and paperboard;5610;Import quantity;t;355700;287900;339500;377550;387600;447700;495900;607400;672800;696800;706600;668800;764400;742379;611459;770400;782400;914600;1014900;1026300;1154000;1168900;1273900;1313500;1204500;1271500;1425000;1538100;1705360;2009119;2276000;2690212;2284373;3056022;2912335;3159023;2959492;2401140;3395162;3179956;3362620;3284122;3658476;4938084;4970217;5610830;5371547;5250186;4259078;5155129;5708886;5878982;6477837;6862626;6542852;7528638;8398576;8184463;8164766;7951678;7946810.18;7302663;7020465 -5304;'035;South-eastern Asia;1876;Paper and paperboard;5622;Import value;1000 USD;78509;62133;67049;78451;76539;87835;99385;116288;125138;143939;151254;148814;223706;325695;257420;338638;340705;423417;516612;605875;686420;689954;730652;781854;713335;767757;955004;1160105;1293433;1616446;1751153;1905949;1503870;2243362;2964529;2977438;2545363;1780943;2168118;2401694;2365117;2064324;2262278;3096315;3219888;3664696;3896567;4430580;3919266;4846203;5695313;5453563;5808742;6358116;5514342;6321002;7001320;7559977;7064110;6498169;7486495.3;7797584;6753228 -5304;'035;South-eastern Asia;1876;Paper and paperboard;5910;Export quantity;t;1000;5000;3000;6400;8400;12600;15400;16900;22000;20100;28900;44200;73400;51700;46600;59900;58400;68000;71400;76000;72200;65800;78400;117800;130000;173000;318000;420600;544625;540404;735400;902271;995897;1295136;1450595;1747953;2022898;3500007;4229107;3835729;3489829;3669757;3453757;3877039;4320398;5125511;5207262;5245469;5476185;5618504;5371242;5734319;6020391;6430461;6372357;6398244;7586693;7883212;8682071;9917496;10186836.08;9630596.29;11286375.29 -5304;'035;South-eastern Asia;1876;Paper and paperboard;5922;Export value;1000 USD;472;1590;788;1606;1912;2824;3373;3253;4358;4090;5599;8401;14491;30238;16928;24008;21636;24336;29150;42174;51499;50598;60802;106332;121605;109812;193861;345674;435735;468228;546521;601533;594975;944346;1327034;1407349;1538549;1770805;2142816;2367740;2043004;2041954;1886183;2523702;3037372;3665253;4110457;4833211;4506799;5486771;5551536;5617665;5595783;5776639;5456175;5407159;6172008;6917681;6858949;6537508;7728122.73;8099422;8499798.89 -5304;'035;South-eastern Asia;2042;Graphic papers;5510;Production;t;67100;75700;72300;93700;96900;100000;105000;119400;132900;120900;164500;225500;265700;256600;241000;258000;282000;324000;380000;363000;361000;383000;402000;459000;510000;539000;770400;787000;935000;1167000;1336500;1676200;1797000;2015000;2338000;2549000;3072000;3809000;4818000;5075930;5059311;5057398;5435700;5426200;5455737;5791327;5751525;7457975;7816076;8173100;8082100;8025100;8179100;6858071;6805942;7022295;7368591;7406591;7511491;7361491;7312491;7133491;7191491 -5304;'035;South-eastern Asia;2042;Graphic papers;5610;Import quantity;t;213000;171600;184500;214800;222100;226200;255000;299100;335200;346500;376500;337500;347500;334600;273500;364700;381000;483100;505100;507300;634400;603500;689300;709200;653600;628900;668700;615500;646110;881119;1040100;1230319;1182467;1529721;1125479;1288429;1461598;1231274;1841161;1596259;1547621;1258463;1851569;2460394;2678023;3094375;2783011;2652524;2137405;2447247;2950973;3199499;3229286;3176167;2903486;3313554;3764812;3464128;3320006;3138168;3032184.42;2477968;2411770 -5304;'035;South-eastern Asia;2042;Graphic papers;5622;Import value;1000 USD;41733;33346;33330;41688;41438;39947;46465;54114;57656;67076;75811;67631;94003;139490;117193;146836;141125;211333;246781;307820;375929;349551;385532;415783;387911;374629;438223;478704;488684;684713;803436;832721;726899;1016250;1084913;1138120;1169592;881493;1080178;1186075;1124036;852672;1046341;1417618;1461807;1647373;1740299;1973154;1849786;2246928;2816529;2836275;2736848;2741365;2306625;2491615;2879968;3038360;2758282;2355979;2540841.39;2501938;2326242 -5304;'035;South-eastern Asia;2042;Graphic papers;5910;Export quantity;t;;;;2600;3200;3800;5100;4600;6000;5300;8500;9000;38100;15600;14200;14000;15900;20500;17100;29700;29500;22800;37800;60100;67400;69900;129600;157700;270125;220204;270800;433357;558286;632383;622442;812400;994745;2157401;2829601;2562400;2398000;2457200;2361194;2952873;3293457;3841748;4094019;3881159;4077170;4213602;4005330;4271647;4265810;4490664;4248690;4480866;4949606;4684972;4919456;4616736;4596745.33;4352098.29;4195924.29 -5304;'035;South-eastern Asia;2042;Graphic papers;5922;Export value;1000 USD;;;;690;779;878;1158;1019;1449;1258;2058;2534;5395;8339;5980;5696;6598;9047;10549;17819;24619;17763;28761;48688;53930;50309;89749;132319;224368;183570;207675;288073;344822;461620;538996;652222;742338;1145826;1473466;1684437;1485878;1389257;1398823;1967527;2343153;2855242;3266335;3584105;3215414;3865229;3809458;3825135;3701438;3762552;3406955;3434316;3853055;4125993;3984656;3259943;3577566.24;3881865;3695366.89 -5304;'035;South-eastern Asia;1671;Newsprint;5510;Production;t;40500;46900;41000;45300;52600;55200;48600;44000;43500;33500;48000;73000;70000;64000;68000;74000;78000;80000;81000;80000;82000;68000;76000;88000;124000;100000;296400;234000;224000;218000;262500;304200;318000;406000;517000;550000;667000;790000;961000;1160930;1178511;1176498;1254900;1280200;1301037;1307627;1311825;1400275;1447376;1454400;1320400;1196400;1315400;880371;863242;874595;862891;869891;848491;815491;790491;725491;725491 -5304;'035;South-eastern Asia;1671;Newsprint;5610;Import quantity;t;122300;97300;116000;102100;130400;149200;166400;197300;218800;223300;247700;228700;213500;204300;184200;231200;240100;298100;316000;310500;411900;364600;429800;432600;415400;370400;398100;366200;366500;473300;577900;617412;611459;710582;724804;679400;739860;436691;439765;498523;500300;435049;447366;575746;499695;487269;492521;498987;512719;585520;581562;544171;585758;502289;416686;410294;320543;299321;265953;210247;130208.85;107723;121706 -5304;'035;South-eastern Asia;1671;Newsprint;5622;Import value;1000 USD;18440;14636;16446;14431;17685;19465;23310;26966;29469;32787;40768;37328;44704;66816;66866;77270;60962;101064;119572;143827;191882;167696;187395;193695;186762;156063;197442;214262;207157;248236;341262;296528;263265;317285;582262;495608;410321;227345;201673;272645;296978;256576;199600;288928;276521;279992;271830;362009;321563;371603;396510;352928;362748;298000;226435;207937;164835;188684;160411;101840;70341.59;86211;88815 -5304;'035;South-eastern Asia;1671;Newsprint;5910;Export quantity;t;;;;700;800;1000;900;800;1400;1100;2500;2300;5200;2400;2300;2200;3200;7600;4800;4400;4300;5400;9900;13200;13800;20300;27600;27600;9500;9500;13100;96343;105262;84031;106392;97800;247300;517201;434500;479900;528500;531300;425335;403720;452041;494324;426981;348876;383698;374626;352082;293145;262479;261439;292770;313608;144786;237376;183071;73789;50629.68;131529;78712 -5304;'035;South-eastern Asia;1671;Newsprint;5922;Export value;1000 USD;;;;147;129;152;150;130;235;176;385;446;1241;1061;937;710;1024;2567;2088;2249;2649;2413;4538;6363;6436;8445;14097;17385;6249;6161;7877;43283;45621;43507;81088;59425;111727;190866;182201;247311;282808;200773;170441;186877;230111;270827;223640;240481;199441;217467;232185;184453;162969;155254;147442;151840;74001;149752;95890;33559;28578.74;98211;54988 -5304;'035;South-eastern Asia;1674;Printing and writing papers;5510;Production;t;26600;28800;31300;48400;44300;44800;56400;75400;89400;87400;116500;152500;195700;192600;173000;184000;204000;244000;299000;283000;279000;315000;326000;371000;386000;439000;474000;553000;711000;949000;1074000;1372000;1479000;1609000;1821000;1999000;2405000;3019000;3857000;3915000;3880800;3880900;4180800;4146000;4154700;4483700;4439700;6057700;6368700;6718700;6761700;6828700;6863700;5977700;5942700;6147700;6505700;6536700;6663000;6546000;6522000;6408000;6466000 -5304;'035;South-eastern Asia;1674;Printing and writing papers;5610;Import quantity;t;90700;74300;68500;112700;91700;77000;88600;101800;116400;123200;128800;108800;134000;130300;89300;133500;140900;185000;189100;196800;222500;238900;259500;276600;238200;258500;270600;249300;279610;407819;462200;612907;571008;819139;400675;609029;721738;794583;1401396;1097736;1047321;823414;1404203;1884648;2178328;2607106;2290490;2153537;1624686;1861727;2369411;2655328;2643528;2673878;2486800;2903260;3444269;3164807;3054053;2927921;2901975.57;2370245;2290064 -5304;'035;South-eastern Asia;1674;Printing and writing papers;5622;Import value;1000 USD;23293;18710;16884;27257;23753;20482;23155;27148;28187;34289;35043;30303;49299;72674;50327;69566;80163;110269;127209;163993;184047;181855;198137;222088;201149;218566;240781;264442;281527;436477;462174;536193;463634;698965;502651;642512;759271;654148;878505;913430;827058;596096;846741;1128690;1185286;1367381;1468469;1611145;1528223;1875325;2420019;2483347;2374100;2443365;2080190;2283678;2715133;2849676;2597871;2254139;2470499.8;2415727;2237427 -5304;'035;South-eastern Asia;1674;Printing and writing papers;5910;Export quantity;t;;;;1900;2400;2800;4200;3800;4600;4200;6000;6700;32900;13200;11900;11800;12700;12900;12300;25300;25200;17400;27900;46900;53600;49600;102000;130100;260625;210704;257700;337014;453024;548352;516050;714600;747445;1640200;2395101;2082500;1869500;1925900;1935859;2549153;2841416;3347424;3667038;3532283;3693472;3838976;3653248;3978502;4003331;4229225;3955920;4167258;4804820;4447596;4736385;4542947;4546115.65;4220569.29;4117212.29 -5304;'035;South-eastern Asia;1674;Printing and writing papers;5922;Export value;1000 USD;;;;543;650;726;1008;889;1214;1082;1673;2088;4154;7278;5043;4986;5574;6480;8461;15570;21970;15350;24223;42325;47494;41864;75652;114934;218119;177409;199798;244790;299201;418113;457908;592797;630611;954960;1291265;1437126;1203070;1188484;1228382;1780650;2113042;2584415;3042695;3343624;3015973;3647762;3577273;3640682;3538469;3607298;3259513;3282476;3779054;3976241;3888766;3226384;3548987.5;3783654;3640378.89 -5304;'035;South-eastern Asia;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113000;85000;80000;77000;78100;78100;78100;78100;78100;78100;78100;78100;368100;378100;484100;436100;436100;436100;436100;436100;436100;444000;444000;444000;268000;268000 -5304;'035;South-eastern Asia;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17621;30735;26334;28221;64064;94137;133377;151976;124116;146051;113538;65875;79572;73038;107988;103268;96070;82593;81231;90160;83371;66198;70422;85805.22;72311;89949 -5304;'035;South-eastern Asia;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13666;16937;20542;22013;47121;52509;68691;59982;48161;73158;88697;62842;94186;95305;116425;106339;88237;94089;95705;117639;111646;76227;70938;88174.57;98311;115405 -5304;'035;South-eastern Asia;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6804;180164;134900;10900;26400;37981;55305;74834;83768;67300;67041;70759;64261;58197;53447;37119;5044;10383;7474;7129;7768;6799;11101;10558.13;7969;7696 -5304;'035;South-eastern Asia;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4314;11846;12084;9677;23733;32899;49765;55234;64747;54954;68270;58124;63808;61467;64253;50792;7015;11282;8052;9090;9812;9097;11179;11689.22;10914;11372 -5304;'035;South-eastern Asia;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1541132;2066994;2115000;2042800;2041800;2564700;2564900;2565600;2638600;2638600;3716600;3889600;3930600;3936600;3767600;3871600;3398600;3374600;3482600;3710600;3766600;3896000;4143000;4119000;4181000;4239000 -5304;'035;South-eastern Asia;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;320622;599754;445362;456000;427603;700221;938044;1252726;1459803;1153904;1039128;647431;775126;1249130;1417956;1379842;1443880;1360048;1613115;2194400;1930840;1954053;1920745;1806715.95;1327840;1197096 -5304;'035;South-eastern Asia;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;263618;362878;384208;364231;316133;344683;387027;432870;499443;563733;588884;606237;723412;1190694;1242863;1165530;1249879;1090765;1208103;1604268;1664048;1538546;1347451;1411201.74;1267730;1193853 -5304;'035;South-eastern Asia;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;785530;1120998;926100;1037900;1113600;1131637;1601587;1852643;2289562;2701229;2619626;2779312;2840056;2797141;3298519;3244798;3574409;3383898;3634266;4360306;4078478;4378523;4225085;4181089.32;3899487;3797199 -5304;'035;South-eastern Asia;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;475021;644990;676605;672222;649502;665353;1063094;1360201;1743325;2186807;2411426;2195160;2626185;2637558;2983104;2759752;2954405;2691053;2776116;3323452;3546364;3504385;2901774;3119674.15;3360647;3260732 -5304;'035;South-eastern Asia;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1364868;1705006;1720000;1761000;1761000;1538000;1503000;1511000;1767000;1723000;2263000;2401000;2420000;2447000;2577000;2556000;2143000;2132000;2229000;2359000;2334000;2323000;1959000;1959000;1959000;1959000 -5304;'035;South-eastern Asia;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;456340;770907;626040;563100;331747;609845;813227;773626;1023187;990535;1000871;911380;1007029;1047243;1129384;1160418;1133928;1044159;1208914;1159709;1150596;1033802;936754;1009454.4;970094;1003019 -5304;'035;South-eastern Asia;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;376864;498690;508680;440814;232842;449549;672972;692434;819777;831578;933564;859144;1057727;1134020;1124059;1102231;1105249;895336;979870;993226;1073982;983098;835750;971123.48;1049686;928169 -5304;'035;South-eastern Asia;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;847866;1093939;1021500;820700;785900;766241;892261;913939;974094;898509;845616;843401;934659;797910;626536;721414;649772;561639;525518;437385;361350;351063;306761;354468.19;313113.29;312317.29 -5304;'035;South-eastern Asia;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;475625;634429;748437;521171;515249;530130;667791;697607;776343;800934;863928;762689;957769;878248;593325;727925;645878;557178;498308;446512;420065;375284;313431;417624.14;412093;368274.89 -5304;'035;South-eastern Asia;1675;Other paper and paperboard;5510;Production;t;44200;45200;39800;47000;49900;47500;50500;56800;78100;94600;212200;295200;370100;305400;315200;380900;441900;557400;622000;700300;695500;695300;665300;796300;862000;892000;1042000;1208600;1312600;1816000;2433800;3153500;3530000;4013000;4653000;5217000;5734000;6232000;6936400;6697770;6920589;6973602;7774600;8069000;8160563;9922373;10347575;10631825;10830324;10477800;10910000;11266300;11036000;12077685;12758474;13484914;14152578;14505478;15106878;15308078;16570378;16746978;16696978 -5304;'035;South-eastern Asia;1675;Other paper and paperboard;5610;Import quantity;t;142700;116300;155000;162750;165500;221500;240900;308300;337600;350300;330100;331300;416900;407779;337959;405700;401400;431500;509800;519000;519600;565400;584600;604300;550900;642600;756300;922600;1059250;1128000;1235900;1459893;1101906;1526301;1786856;1870594;1497894;1169866;1554001;1583697;1814999;2025659;1806907;2477690;2292194;2516455;2588536;2597662;2121673;2707882;2757913;2679483;3248551;3686459;3639366;4215084;4633764;4720335;4844760;4813510;4914625.76;4824695;4608695 -5304;'035;South-eastern Asia;1675;Other paper and paperboard;5622;Import value;1000 USD;36776;28787;33719;36763;35101;47888;52920;62174;67482;76863;75443;81183;129703;186205;140227;191802;199580;212084;269831;298055;310491;340403;345120;366071;325424;393128;516781;681401;804749;931733;947717;1073228;776971;1227112;1879616;1839318;1375771;899450;1087940;1215619;1241081;1211652;1215937;1678697;1758081;2017323;2156268;2457426;2069480;2599275;2878784;2617288;3071894;3616751;3207717;3829387;4121352;4521617;4305828;4142190;4945653.92;5295646;4426986 -5304;'035;South-eastern Asia;1675;Other paper and paperboard;5910;Export quantity;t;1000;5000;3000;3800;5200;8800;10300;12300;16000;14800;20400;35200;35300;36100;32400;45900;42500;47500;54300;46300;42700;43000;40600;57700;62600;103100;188400;262900;274500;320200;464600;468914;437611;662753;828153;935553;1028153;1342606;1399506;1273329;1091829;1212557;1092563;924166;1026941;1283763;1113243;1364310;1399015;1404902;1365912;1462672;1754581;1939797;2123667;1917378;2637087;3198240;3762615;5300760;5590090.76;5278498;7090451 -5304;'035;South-eastern Asia;1675;Other paper and paperboard;5922;Export value;1000 USD;472;1590;788;916;1133;1946;2215;2234;2909;2832;3541;5867;9096;21899;10948;18312;15038;15289;18601;24355;26880;32835;32041;57644;67675;59503;104112;213355;211367;284658;338846;313460;250153;482726;788038;755127;796211;624979;669350;683303;557126;652697;487360;556175;694219;810011;844122;1249106;1291385;1621542;1742078;1792530;1894345;2014087;2049220;1972843;2318953;2791688;2874293;3277565;4150556.49;4217557;4804432 -5304;'035;South-eastern Asia;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;6000;7000;10500;26000;27000;26000;39000;44000;49000;46000;54000;49000;55000;67000;59000;53000;83700;100600;114600;167000;298800;255600;254000;280000;322000;289000;318000;355000;432000;445000;441200;442700;443700;462900;481900;519700;386700;668700;788700;811700;821700;850700;868700;996156;1082509;1319634;1432412;1422412;1459712;1434712;1456712;1631712;1638712 -5304;'035;South-eastern Asia;1676;Household and sanitary papers;5610;Import quantity;t;300;300;700;1300;1300;1700;2000;12200;2500;10100;6800;10300;7200;7779;9959;5000;6200;6500;6600;8200;8100;8800;9900;16000;12200;15100;17900;24900;9400;16900;19600;11400;13000;41400;18400;20800;31100;18900;14360;21227;22100;22907;30661;36643;48443;50183;45319;61121;62432;74248;89129;103228;113050;113163;112061;140960;170395;204880;236918;217782;204352.87;207524;258922 -5304;'035;South-eastern Asia;1676;Household and sanitary papers;5622;Import value;1000 USD;551;510;676;1474;1589;1898;2488;2134;2164;1774;1964;1949;4211;5941;14478;1215;3199;2532;3042;5303;5308;5879;6891;10691;9201;12881;13985;38192;9662;21310;24748;21126;26418;122881;33311;42902;47460;22086;17150;22266;21175;22785;29522;35077;42421;47337;53294;80359;77892;100331;123575;140386;151613;153200;144760;171263;198086;255809;287268;246082;239278.36;312946;343325 -5304;'035;South-eastern Asia;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;100;200;200;400;1500;1500;2800;2600;2800;3300;3200;2400;3800;3800;3900;4400;2700;4500;7000;9700;8200;10200;17400;21600;19500;26300;29700;27200;28900;46400;74900;80400;78900;83800;79668;78259;68699;111024;136964;174870;228009;294515;328090;335529;370682;333970;452189;542578;599048;626025;850108;902882;660774.06;760103;865784 -5304;'035;South-eastern Asia;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;45;60;63;206;468;540;395;1998;2348;2639;2849;2441;4318;4279;4293;3721;2937;3857;6119;9440;8250;17060;26130;29082;26403;48708;67672;61017;75697;37383;58399;66349;58646;61702;62436;70324;67590;111342;144814;204187;225632;339389;384755;376852;424300;402144;496441;560562;594828;704290;879822;840286;650810.4;913366;951054 -5304;'035;South-eastern Asia;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5314000;6127400;6027770;6135589;6174902;6978900;7229700;7301863;8724173;9274375;9302625;9384124;8926600;9222800;9580100;9438800;10300734;10888356;11403504;11956680;12319580;12883180;13109380;14349680;14720280;14659280 -5304;'035;South-eastern Asia;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;874200;1319573;1328923;1530705;1744338;1507612;2023369;1883355;2133470;2272852;2236947;1928787;2510791;2540687;2355981;2969855;3438264;3356790;3786774;4312638;4390928;4482704;4476063;4565615.73;4451307;4214598 -5304;'035;South-eastern Asia;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;549220;727386;800870;833833;852502;838451;1133891;1193949;1312994;1490846;1784028;1673301;2223811;2427579;2078504;2624738;3132342;2778224;3167258;3641940;4007205;3756869;3650254;4427091.86;4696166;3834565 -5304;'035;South-eastern Asia;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1101200;1117100;1017923;830623;897925;900010;709406;839692;1040989;825213;981841;1064599;1033219;947741;986555;1316485;1517188;1598382;1287446;1945453;2476283;2789689;4283224;4814636.44;4369419;6082994 -5304;'035;South-eastern Asia;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;361881;375664;410390;261688;289238;309480;346105;484661;509395;454166;699793;859814;1115483;1172875;1144710;1331932;1433853;1402330;1231483;1534988;1883481;1751946;2208346;3269492.74;3020034;3584546 -5304;'035;South-eastern Asia;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;;;;;59000;81900;98200;218300;228300;283300;360300;411300;430300;431300;429300;389300;371300;500300;525000;464000;814000;933800;982800;1248000;1705500;2396700;2716000;3029000;3470000;4401000;4805000;;;;;;;;;;;;;;;;;;;;;;;;;; -5304;'035;South-eastern Asia;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;13800;7900;25000;17700;18100;34800;54100;166600;179400;152200;130700;140100;179800;159400;190800;168300;173200;152900;217700;290600;276400;320000;332100;318900;352700;430300;467100;462200;625000;645200;744200;724707;574202;785514;986700;1047800;797500;;;;;;;;;;;;;;;;;;;;;;;;;; -5304;'035;South-eastern Asia;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;4152;1458;3421;3234;3324;6273;9550;21715;22097;25715;22040;24708;39968;54636;40846;61385;65482;55187;83561;130506;129867;150376;142520;148298;151061;200443;238382;253971;359963;385933;485258;455399;329173;535326;835082;754924;531194;;;;;;;;;;;;;;;;;;;;;;;;;; -5304;'035;South-eastern Asia;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;6300;9000;7600;10300;10000;13500;19000;10600;12700;17700;14500;17200;24500;22300;20500;17500;22600;22100;77800;130400;130200;161700;184800;269100;244081;250951;381067;619500;737200;764400;;;;;;;;;;;;;;;;;;;;;;;;;; -5304;'035;South-eastern Asia;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;1119;1556;1517;1896;2056;4603;16372;3942;4511;5304;3353;4698;11133;11930;17878;8967;11444;12012;41213;65612;50509;71886;118003;140830;103233;74491;203476;324948;292452;377073;;;;;;;;;;;;;;;;;;;;;;;;;; -5304;'035;South-eastern Asia;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3692091;4197667;4158000;4173000;4173000;4504000;4541000;4541000;5951000;6135000;5732000;5955000;6020000;6223200;6521000;6395000;6968000;7304000;7530000;7824000;8062000;8268000;8483000;9528000;9442000;9451000 -5304;'035;South-eastern Asia;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;505728;712051;713979;775700;980282;696806;801788;820289;1065133;981260;974578;820015;1183907;1187784;1018631;1345238;1573289;1524878;1130899;1884141;1929711;2036419;1993497;1857761.75;1700315;1665042 -5304;'035;South-eastern Asia;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;236057;285668;318728;288962;322393;277123;366159;371625;480886;460286;530285;460988;681314;730694;632902;786618;921601;849182;617954;1121931;1213476;1148523;995876;1195161.5;1201624;894378 -5304;'035;South-eastern Asia;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;891977;733954;612300;465000;471570;519507;325109;389931;667376;444415;472868;517029;564892;488168;443461;748885;828236;909137;644454;1270206;1697552;2031623;3456843;3936313.78;3447592;4895267 -5304;'035;South-eastern Asia;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;266685;208065;210425;125236;126710;144535;114546;132822;244989;160708;207309;176076;283762;278993;239618;391129;425845;428226;317931;658419;874038;795445;1275947;2125769.5;1830474;2246835 -5304;'035;South-eastern Asia;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1320148;1575733;1418600;1570600;1570200;1654000;1799800;1800100;1876100;1795100;2105100;2132100;2194100;2243100;2415100;2286100;2758100;2834100;2943100;2995100;3011100;3064000;2994000;2993000;3028000;3058000 -5304;'035;South-eastern Asia;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;173926;272031;264642;364600;374928;396649;505568;536918;561247;727722;686594;607972;734159;748692;707751;976665;1186407;1208387;1980135;1718467;1761541;1625434;1696824;1854413.98;1841318;1880408 -5304;'035;South-eastern Asia;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;152707;221855;231447;285194;281629;289188;393178;439841;460902;588041;726689;768081;988838;1076289;813454;1201731;1525578;1366846;1934180;1859372;2084825;1824480;1972302;2396168.75;2562194;2169671 -5304;'035;South-eastern Asia;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99011;138844;157100;152900;173200;127064;156178;235922;207862;161654;293007;335973;314594;315298;385298;416793;515046;533311;444765;434108;495271;460272;497789;518574.06;569316;764245 -5304;'035;South-eastern Asia;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53362;83299;108671;70849;80333;70809;132948;231688;172048;174238;367561;566642;711149;762944;778297;822128;856590;831199;750409;684345;759223;709373;686569;843820.43;840215;970561 -5304;'035;South-eastern Asia;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96307;115000;163600;136700;137000;325100;285100;285600;408600;179600;233600;218600;218600;219600;174600;366600;279134;308556;328904;329780;153780;166180;3180;3180;3180;3180 -5304;'035;South-eastern Asia;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;137236;253216;275597;330300;332623;360390;625958;471483;474907;523336;526494;461125;551856;563801;567166;578247;599348;539512;604590;600759;600918;700465;672974;726923.7;800100;550920 -5304;'035;South-eastern Asia;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126215;178249;211617;225785;215085;241407;326379;345519;348968;420122;493757;415572;524415;590099;585058;584825;627081;507122;557715;569094;638882;710861;618271;746943.84;844432;675944 -5304;'035;South-eastern Asia;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67664;95089;67323;94823;106155;152475;161018;143594;117350;170530;153785;118825;90056;92638;95271;79615;100846;83015;119721;143483;188726;212007;237549;242140.08;251813;245078 -5304;'035;South-eastern Asia;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29000;50895;40867;41153;50416;67315;78147;98524;75414;102139;99610;78248;85171;97826;88739;75043;103772;98558;117865;141461;192891;199263;202379;233441.71;284332;289676 -5304;'035;South-eastern Asia;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;205454;239000;287570;255289;294702;495800;603800;675163;488473;1164675;1231925;1078424;493900;536900;469400;391100;295500;441700;601500;807800;1092700;1385000;1629200;1825500;2247100;2147100 -5304;'035;South-eastern Asia;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57310;82275;74705;60105;56505;53767;90055;54665;32183;40534;49281;39675;40869;40410;62433;69705;79220;84013;71150;109271;98758;120386;112768;126516.3;109574;118228 -5304;'035;South-eastern Asia;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34241;41614;39078;33892;33395;30733;48175;36964;22238;22397;33297;28660;29244;30497;47090;51564;58082;55074;57409;91543;70022;73005;63805;88817.77;87916;94572 -5304;'035;South-eastern Asia;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42548;149213;181200;117900;147000;100964;67101;70245;48401;48614;62181;92772;63677;51637;62525;71192;73060;72919;78506;97656;94734;85787;91043;117608.52;100698;178404 -5304;'035;South-eastern Asia;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12834;33405;50427;24450;31779;26821;20464;21627;16944;17081;25313;38848;35401;33112;38056;43632;47646;44347;45278;50763;57329;47865;43451;66461.1;65013;77474 -5304;'035;South-eastern Asia;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;7000;7000;7000;10000;10000;10000;10000;10000;10000;10000;21200;23300;18900;18600;17400;30100;37100;96600;137200;180000;162200;207000;229000;219000;268000;365000;134300;164200;215200;401000;429500;501200;560000;704000;861000;527000;611000;563000;377000;225000;343800;356000;352000;376400;376800;678500;686500;660500;657500;739500;865500;835500;728500;780795;787609;761776;763486;763486;763986;763986;763986;394986;398986 -5304;'035;South-eastern Asia;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;46800;50000;73400;66350;76800;96500;125500;110000;133600;166900;166100;162300;210800;222200;134200;226700;212400;259500;272300;207600;213700;218100;232000;260300;177100;191100;262800;430600;419800;462400;470800;708054;486574;698993;781162;801400;666700;276766;220068;233547;262194;258414;268634;417678;360396;332802;270365;299594;130454;122843;128097;220274;165646;135032;170515;287350;150731;124527;125138;119665;144657.16;165864;135175 -5304;'035;South-eastern Asia;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;14493;12454;15621;13122;14441;19781;27311;33831;39572;44154;44109;48736;79743;118608;83265;126086;126111;148708;176561;155869;166527;176806;190185;201319;160100;174504;254485;381430;426680;521380;436676;587531;406903;568657;1010791;1041060;795884;328144;343404;392483;386073;336365;347964;509729;521711;656992;612128;593039;318287;275133;327630;398398;295543;331209;284733;490866;281326;258603;261691;245854;279283.69;286534;249096 -5304;'035;South-eastern Asia;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;1000;5000;3000;600;200;200;600;6000;6900;7000;9900;14900;20300;15600;19000;30600;22000;29700;33900;19400;15500;14400;15300;28700;31800;20800;51000;123000;104600;125200;178100;203040;166624;255386;178853;171053;234653;195006;207506;175006;182306;230832;112885;136501;118550;131750;151066;207599;106407;77168;90081;140588;67414;88639;73096;87354;92586;95932;122818;114654;114680.25;148976;141673 -5304;'035;South-eastern Asia;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;472;1590;788;152;41;36;143;1115;1308;1255;1582;2416;4025;4987;6611;11803;7386;9297;11054;10781;10132;8678;16881;41479;49426;14433;32381;153406;131231;149595;171886;181039;149104;230542;395394;401634;343341;225715;235287;206564;236792;301757;115444;139746;141968;189274;245142;345126;205939;166670;184448;270968;138113;178090;150449;180798;189137;203917;242525;228933;230253.36;284157;268832 -5304;'035;South-eastern Asia;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1612361;1831646;2000826;1971221;2383316;2409916;2301843 -5304;'035;South-eastern Asia;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11985264;12408620;13869451;15889243;18015339;18277019;15811610 -5304;'035;South-eastern Asia;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70868;76216;87646;65357;68342;66495;56239 -5304;'035;South-eastern Asia;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;972406;1028281;895210;854416;984625;861810;827668 -5304;'035;South-eastern Asia;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10861;18837;18918;17705;15049;12729;6354 -5304;'035;South-eastern Asia;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20771;15755;13156;30243;51450;51722;95985 -5304;'035;South-eastern Asia;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60007;57379;68728;47652;53293;53766;49885 -5304;'035;South-eastern Asia;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;951635;1012526;882054;824173;933175;810088;731683 -5304;'035;South-eastern Asia;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;139042;131273;132804;129319;147533;170888;144930 -5304;'035;South-eastern Asia;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;123774;143529;158122;135366;171264;171650;150916 -5304;'035;South-eastern Asia;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47589;54876;66034;49689;60277;80198;82730 -5304;'035;South-eastern Asia;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;334357;396284;377557;350187;397682;444653;387851 -5304;'035;South-eastern Asia;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;128636;156833;180110;169391;203100;226786;244769 -5304;'035;South-eastern Asia;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1157973;909394;956051;997447;1103508;1221468;1069498 -5304;'035;South-eastern Asia;1636;Glue-laminated timber (glulam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55000;65000 -5304;'035;South-eastern Asia;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7384;8759 -5304;'035;South-eastern Asia;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9271;11318 -5304;'035;South-eastern Asia;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50394;62019 -5304;'035;South-eastern Asia;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60136;71239 -5304;'035;South-eastern Asia;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;315 -5304;'035;South-eastern Asia;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;257;344 -5304;'035;South-eastern Asia;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;215;279 -5304;'035;South-eastern Asia;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;282;294 -5304;'035;South-eastern Asia;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;346;219 -5304;'035;South-eastern Asia;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;509;324 -5304;'035;South-eastern Asia;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;63 -5304;'035;South-eastern Asia;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;100 -5304;'035;South-eastern Asia;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1119763;1285226;1393644;1392588;1672241;1629068;1562441 -5304;'035;South-eastern Asia;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8776275;9340640;10920911;13049926;14749867;15042904;12936666 -5304;'035;South-eastern Asia;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11360;11131;11837;7916;8623;7694;6428 -5304;'035;South-eastern Asia;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6420;16551;21378;25632;32313;38533;22575 -5304;'035;South-eastern Asia;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95103;116091;128751;156961;223200;228787;204306 -5304;'035;South-eastern Asia;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;614059;573941;540222;476269;576080;496001;416436 -5304;'035;South-eastern Asia;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3875756;4284336;4452452;4136146;4784787;5011622;4971593 -5304;'035;South-eastern Asia;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2533740;2776265;2898022;2886429;3251865;3604172;3645169 -5304;'035;South-eastern Asia;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52785;45166;47316;39441;33896;30820;18836 -5304;'035;South-eastern Asia;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4978;8900;14051;7940;6465;6784;2935 -5304;'035;South-eastern Asia;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;809042;917824;837913;730890;851704;865102;766765 -5304;'035;South-eastern Asia;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;338619;397532;411777;364388;457664;477623;417941 -5304;'035;South-eastern Asia;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;305380;318081;331550;360330;349857;413851;516804 -5304;'035;South-eastern Asia;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;369128;400203;414689;489297;375818;397334;499033 -5304;'035;South-eastern Asia;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1138210;1272594;1405721;1368427;1624307;1710849;1751344 -5304;'035;South-eastern Asia;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;859485;952808;1066205;1013680;1247757;1288051;1272773 -5304;'035;South-eastern Asia;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1570339;1730671;1829952;1637058;1925023;1991000;1917844 -5304;'035;South-eastern Asia;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;961530;1016822;991300;1011124;1164161;1434380;1452487 -5305;'145;Western Asia;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20241926.75;21385721;20605873;18665744;22470766.73;27254538;24703439 -5305;'145;Western Asia;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6219747.34;7286323;7811280;8275420;9983472.93;12087022.29;11257741.89 -5305;'145;Western Asia;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;97341;106810;89728;111556;130543;129416;132804;164046;181017;191687;225242;236356;314122;528194;566107;781938;972273;983732;1254734;1595716;1675607;1797443;1474933;1526854;1375255;1357953;1649913;1531405;1511124;1641753;1798952;2530895;2841735;2846470;3298715;3210980;3273389;3339038;3435287;3974260;3722008;3736663;4224786;5331704;6969093;7110994;10189878;11075233;8838142;11149762.78;12704640;12372088;12467356;13340006;12099317;11608201;12257560.9;13263562;12242854;11273065;13403581.73;17288621;14805153 -5305;'145;Western Asia;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;6829;8329;9536;10104;12151;11457;13500;12908;13728;16353;17898;20732;29989;33920;25460;28620;32478;30132;53393;66528;70998;80252;81824;92431;94400;64920;97687;114134;129764;127004;131295;293837;115922;190586;194289;152011;166055;161782;170180;267701;411490;415741;485533;535000;547858;656322;967331;1337284;1137546;1403337;1583339;1681410.45;1741220;1742208;1709341;1986064;2237203.86;2659421;2823923;3347861;3905222.93;5047915.29;4543672.89 -5305;'145;Western Asia;1861;Roundwood;5516;Production;m3;9224564;9378663;10471302;12704638;14874528;15352883;15385809;16659818;18537227;18116643;17503553;18892673;18065920;19247778;19164317;22005546;21974447;21954539;23343161;23258996;22569813;22588012;21582592;20467650;17094367;18730719;17660741;17637633;16365344;16629775;16183636;17898420;19831683;17813725;20343223;20492904;19200478;19214326;18155982;17564443;16798747;17738397;17492189;18309646;18074693;20053822;20507392;22965317;23011876;24591856;25388802;25928482;24955782;26933289;28829591;30084319;28995792;32343761;32701810;32954058;38711110;38978588;31218698 -5305;'145;Western Asia;1861;Roundwood;5616;Import quantity;m3;197900;237250;219102;243500;315700;232300;237000;348200;427000;369700;406400;444900;370500;380300;319500;370000;366100;420300;463500;499400;511500;498500;507100;473100;364700;647393;1556181;1472286;834157;1231881;1361995;1371855;2856179;1569622;964241;1525937;1261885;1590380;1704093;2010611;1044896;1176506;1617409;2434266;2696574;2658072;2565626;1844728;1263870;1730163;1586118;1479800;965622;888100;901810;726803;421547;493899;322530;265994;327486.16;408442;339891 -5305;'145;Western Asia;1861;Roundwood;5622;Import value;1000 USD;10487;12476;10909;12035;14293;11275;11232;14711;18488;20332;23881;27769;35535;42986;38487;56952;78023;81806;94169;117817;131950;114062;114437;91242;64403;93364;178016;182144;111556;159940;118874;171125;341004;191284;146151;198468;170869;186062;134876;166141;93785;110042;146306;212442;253921;276923;321274;288857;153178;217634;238801;209549;134612;139320;134680;99419;80236.67;105093;74944;59351;77326.99;121062;87698 -5305;'145;Western Asia;1861;Roundwood;5916;Export quantity;m3;10000;18700;26600;15500;17000;19900;13400;13900;14800;25700;40500;38200;33900;17300;25600;16400;10300;6900;9700;8000;40100;45400;48000;121900;93500;50700;25700;37100;20000;13653;5177;13110;17092;16651;61869;25108;66003;150769;64564;62474;68411;68718;136790;116388;90402;40262;30236;30320;41831;41543;24482;42605;31470;58455;35176;35500;63706;78197;97082;57366;105374.17;68291;58372 -5305;'145;Western Asia;1861;Roundwood;5922;Export value;1000 USD;934;1086;1609;1343;1585;1682;1529;1407;1559;2023;2870;3873;5113;1968;2346;1159;954;477;496;574;4643;5547;5380;15334;16839;7158;2909;6439;2829;1262;1309;1383;1476;2354;13496;5690;12559;15921;9019;9246;9114;9314;11575;12011;12813;3626;6393;5595;3029;9200;5983;11179.45;7427;8356;5227;8503;14673.88;15288;21102;17790;28656.96;17407;17519 -5305;'145;Western Asia;1862;Roundwood, coniferous;5516;Production;m3;4736847;4459882;4570913;7480051;7899306;8093645;8510269;9459045;10888329;10548367;10096300;10913317;10522072;12208520;12364515;13212437;12311534;13871134;13960743;14396507;14189888;14182468;13098409;11845567;9675762;11004638;10047580;10012136;9375690;9616016;9155908;8712761;9026195;8371603;9165202;8769895;8381364;7629694;7374025;7341044;6702592;8059930;7478508;8274949;8268170;10107356;10519938;11230371;10992410;11765530;12376340;13239140;12792430;13868497;15832925;17138457;16122813;17593310;17744437;18153517;23268699;22519173;18356960 -5305;'145;Western Asia;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;165581;231055;132221;128817;172603.58;186881;138788 -5305;'145;Western Asia;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27298.55;35822;25567;24315;29839.8;38967;29246 -5305;'145;Western Asia;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27127;33203;48325;43420;61024.17;39272;27275 -5305;'145;Western Asia;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9746.88;9351;12289;15300;20301.96;9615;10107 -5305;'145;Western Asia;1863;Roundwood, non-coniferous;5516;Production;m3;4487717;4918781;5900389;5224587;6975222;7259238;6875540;7200773;7648898;7568276;7407253;7979356;7543848;7039258;6799802;8793109;9662913;8083405;9382418;8862489;8379925;8405544;8484183;8622083;7418605;7726081;7613161;7625497;6989654;7013759;7027728;9185659;10805488;9442122;11178021;11723009;10819114;11584632;10781957;10223399;10096155;9678467;10013681;10034697;9806523;9946466;9987454;11734946;12019466;12826326;13012462;12689342;12163352;13064792;12996666;12945862;12872979;14750451;14957373;14800541;15442411;16459415;12861738 -5305;'145;Western Asia;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;255966;262844;190309;137177;154882.58;221561;201103 -5305;'145;Western Asia;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52938.11;69271;49377;35036;47487.19;82095;58452 -5305;'145;Western Asia;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36579;44994;48757;13946;44350;29019;31097 -5305;'145;Western Asia;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4927;5937;8813;2490;8355;7792;7412 -5305;'145;Western Asia;1864;Wood fuel;5516;Production;m3;7352564;7311663;7550302;9143038;11015128;11483183;11314609;12181118;13716227;13019943;12203553;13037973;11420920;11701078;12310617;15199546;14348047;13837639;16146361;16752696;15421113;15444612;15405092;14064150;10866867;11039219;11058541;11045433;10389794;10420075;10414856;9188870;10188833;8371675;9365473;10038054;9190528;8916849;7765320;6815245;6606080;6302770;6524863;6834068;6562687;7484878;6572237;8244974;8497653;8636463;8705746;7975508;7908601;8149299;8551062;9404432;9227690;9563842;9679878;9313700;7243375;8805025;8378484 -5305;'145;Western Asia;1864;Wood fuel;5616;Import quantity;m3;100;1150;1000;300;400;7000;6000;4400;4600;5500;1400;2100;1700;1700;1200;2300;7100;9400;6800;8500;6600;6800;6800;6800;6600;6800;6800;6800;7900;7900;7900;34193;197724;23158;20730;269000;188634;307650;220639;375808;126995;246133;331536;304115;344994;248652;237138;118468;73341;251976;211872;221840;44966;41111;93017;45998;112758;53693;65049;45615;68188.16;84408;85865 -5305;'145;Western Asia;1864;Wood fuel;5622;Import value;1000 USD;2;19;11;6;10;131;108;79;91;170;70;134;105;221;99;477;405;1267;299;1260;303;394;394;394;232;238;238;238;415;415;415;1129;7262;2301;2307;11623;8705;12342;6539;11684;3749;7551;11051;13914;14793;16369;14359;9773;4832;16055;16526;24015;6686;8484;16750;8151;13828.56;10540;10594;7413;10726.99;20163;17491 -5305;'145;Western Asia;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;2957;5525;200;200;1600;200;3296;1096;442;1300;1460;5920;11301;11449;24230;9247;10634;10660;5017;2984;16733;3542;23157;19693;15956;16734;9820;9986;1416;2975.17;3928;9520 -5305;'145;Western Asia;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;192;234;23;16;54;16;154;46;8;93;54;262;626;635;849;409;800;827;298;307;1775.45;1049;2211;1697;1209;1031;616;622;289;841.96;1137;1021 -5305;'145;Western Asia;1627;Wood fuel, coniferous;5516;Production;m3;3271847;3205882;2852913;4638951;4814006;4997245;5294069;5999845;7011129;6383167;5799500;6351317;5174072;6298520;6580515;7553437;5982534;7505134;8379443;9013407;8269388;8267168;8205409;6889567;4745762;4746638;4750580;4723136;4432240;4433316;4418328;3164311;3066745;2530853;2448952;2620045;2683114;2052116;1733611;1479926;1481076;1733704;1844868;1932071;1941169;2982092;1932783;2101499;2226147;2154172;2139840;1839080;1785164;1996718;1894473;2606265;2571632;2521133;2569636;2443960;2159721;2351741;2188428 -5305;'145;Western Asia;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8311;11885;11648;10288;27429.58;39073;30594 -5305;'145;Western Asia;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1295.61;2861;1305;1693;4181.8;11014;8333 -5305;'145;Western Asia;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;149;260;323;458;835.17;1241;2610 -5305;'145;Western Asia;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54;157;141;158;338.95;679;378 -5305;'145;Western Asia;1628;Wood fuel, non-coniferous;5516;Production;m3;4080717;4105781;4697389;4504087;6201122;6485938;6020540;6181273;6705098;6636776;6404053;6686656;6246848;5402558;5730102;7646109;8365513;6332505;7766918;7739289;7151725;7177444;7199683;7174583;6121105;6292581;6307961;6322297;5957554;5986759;5996528;6024559;7122088;5840822;6916521;7418009;6507414;6864733;6031709;5335319;5125004;4569066;4679995;4901997;4621518;4502786;4639454;6143475;6271506;6482291;6565906;6136428;6123437;6152581;6656589;6798167;6656058;7042709;7110242;6869740;5083654;6453284;6190056 -5305;'145;Western Asia;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104447;41808;53401;35327;40758.58;45335;55271 -5305;'145;Western Asia;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12532.95;7679;9289;5720;6545.19;9149;9158 -5305;'145;Western Asia;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16585;9560;9663;958;2140;2687;6910 -5305;'145;Western Asia;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;977;459;481;131;503;458;643 -5305;'145;Western Asia;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;100;1150;1000;300;400;7000;6000;4400;4600;5500;1400;2100;1700;1700;1200;2300;7100;9400;6800;8500;6600;6800;6800;6800;6600;6800;6800;6800;7900;7900;7900;34193;197724;23158;20730;269000;188634;307650;220639;375808;126995;246133;331536;304115;344994;248652;237138;118468;73341;251976;211872;221840;44966;41111;93017;45998;;;;;;; -5305;'145;Western Asia;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;2;19;11;6;10;131;108;79;91;170;70;134;105;221;99;477;405;1267;299;1260;303;394;394;394;232;238;238;238;415;415;415;1129;7262;2301;2307;11623;8705;12342;6539;11684;3749;7551;11051;13914;14793;16369;14359;9773;4832;16055;16526;24015;6686;8484;16750;8151;;;;;;; -5305;'145;Western Asia;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;2957;5525;200;200;1600;200;3296;1096;442;1300;1460;5920;11301;11449;24230;9247;10634;10660;5017;2984;16733;3542;23157;19693;15956;;;;;;; -5305;'145;Western Asia;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;192;234;23;16;54;16;154;46;8;93;54;262;626;635;849;409;800;827;298;307;1775.45;1049;2211;1697;1209;;;;;;; -5305;'145;Western Asia;1865;Industrial roundwood;5516;Production;m3;1872000;2067000;2921000;3561600;3859400;3869700;4071200;4478700;4821000;5096700;5300000;5854700;6645000;7546700;6853700;6806000;7626400;8116900;7196800;6506300;7148700;7143400;6177500;6403500;6227500;7691500;6602200;6592200;5975550;6209700;5768780;8709550;9642850;9442050;10977750;10454850;10009950;10297477;10390662;10749198;10192667;11435627;10967326;11475578;11512006;12568944;13935155;14720343;14514223;15955393;16683056;17952974;17047181;18783990;20278529;20679887;19768102;22779919;23021932;23640358;31467735;30173563;22840214 -5305;'145;Western Asia;1865;Industrial roundwood;5616;Import quantity;m3;197800;236100;218102;243200;315300;225300;231000;343800;422400;364200;405000;442800;368800;378600;318300;367700;359000;410900;456700;490900;504900;491700;500300;466300;358100;640593;1549381;1465486;826257;1223981;1354095;1337662;2658455;1546464;943511;1256937;1073251;1282730;1483454;1634803;917901;930373;1285873;2130151;2351580;2409420;2328488;1726260;1190529;1478187;1374246;1257960;920656;846989;808793;680805;308789;440206;257481;220379;259298;324034;254026 -5305;'145;Western Asia;1865;Industrial roundwood;5622;Import value;1000 USD;10485;12457;10898;12029;14283;11144;11124;14632;18397;20162;23811;27635;35430;42765;38388;56475;77618;80539;93870;116557;131647;113668;114043;90848;64171;93126;177778;181906;111141;159525;118459;169996;333742;188983;143844;186845;162164;173720;128337;154457;90036;102491;135255;198528;239128;260554;306915;279084;148346;201579;222275;185534;127926;130836;117930;91268;66408.1;94553;64350;51938;66600;100899;70207 -5305;'145;Western Asia;1865;Industrial roundwood;5916;Export quantity;m3;10000;18700;26600;15500;17000;18000;12600;10300;11700;21000;35800;34500;29800;12500;20800;11600;8900;5100;3700;4800;36900;42400;45900;119800;91400;48600;23600;35000;17900;11553;3077;10153;11567;16451;61669;23508;65803;147473;63468;62032;67111;67258;130870;105087;78953;16032;20989;19686;31171;36526;21498;25872;27928;35298;15483;19544;46972;68377;87096;55950;102399;64363;48852 -5305;'145;Western Asia;1865;Industrial roundwood;5922;Export value;1000 USD;934;1086;1609;1343;1585;1662;1519;1367;1517;1970;2825;3830;5051;1887;2265;1078;915;414;316;456;4525;5287;5259;15213;16718;7037;2788;6318;2708;1141;1188;1191;1242;2331;13480;5636;12543;15767;8973;9238;9021;9260;11313;11385;12178;2777;5984;4795;2202;8902;5676;9404;6378;6145;3530;7294;13642.88;14672;20480;17501;27815;16270;16498 -5305;'145;Western Asia;1866;Industrial roundwood, coniferous;5516;Production;m3;1465000;1254000;1718000;2841100;3085300;3096400;3216200;3459200;3877200;4165200;4296800;4562000;5348000;5910000;5784000;5659000;6329000;6366000;5581300;5383100;5920500;5915300;4893000;4956000;4930000;6258000;5297000;5289000;4943450;5182700;4737580;5548450;5959450;5840750;6716250;6149850;5698250;5577578;5640414;5861118;5221516;6326226;5633640;6342878;6327001;7125264;8587155;9128872;8766263;9611358;10236500;11400060;11007266;11871779;13938452;14532192;13551181;15072177;15174801;15709557;21108978;20167432;16168532 -5305;'145;Western Asia;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;446835;882777;747076;1835572;1117942;595652;696761;579642;739293;979796;1207245;691469;592270;816929;1653361;1964590;2082208;1945463;1406076;994819;1251733;1135563;1051039;734887;718046;605337;466171;157270;219170;120573;118529;145174;147808;108194 -5305;'145;Western Asia;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55166;55959;71658;191134;109045;67534;76751;69959;69879;64893;80682;48033;47214;64768;117237;158807;186590;209121;174975;93533;129305;144288;126237;85394;84021;66834;42935;26002.94;32961;24262;22622;25658;27953;20913 -5305;'145;Western Asia;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1132;1132;5405;10467;13896;58400;16500;19088;88230;1174;1230;803;1600;60687;35584;8680;2072;4125;7761;13502;20581;10234;12684;12533;18954;8030;7402;26978;32943;48002;42962;60189;38031;24665 -5305;'145;Western Asia;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107;107;398;945;2038;13209;4361;6621;7429;433;227;261;295;2874;2211;2804;335;1143;738;952;2459;1851;3593;1002;1040;735;1876;9692.88;9194;12148;15142;19963;8936;9729 -5305;'145;Western Asia;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;446835;882777;747076;1835572;1117942;595652;696761;579642;739293;979796;1207245;691469;592270;816929;1653361;1964590;2082208;1945463;1406076;994819;1251733;1135563;1051039;734887;718046;605337;466171;157270;219170;120573;118529;145174;147808;108194 -5305;'145;Western Asia;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55166;55959;71658;191134;109045;67534;76751;69959;69879;64893;80682;48033;47214;64768;117237;158807;186590;209121;174975;93533;129305;144288;126237;85394;84021;66834;42935;26002.94;32961;24262;22622;25658;27953;20913 -5305;'145;Western Asia;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1132;1132;5405;10467;13896;58400;16500;19088;88230;1174;1230;803;1600;60687;35584;8680;2072;4125;7761;13502;20581;10234;12684;12533;18954;8030;7402;26978;32943;48002;42962;60189;38031;24665 -5305;'145;Western Asia;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107;107;398;945;2038;13209;4361;6621;7429;433;227;261;295;2874;2211;2804;335;1143;738;952;2459;1851;3593;1002;1040;735;1876;9692.88;9194;12148;15142;19963;8936;9729 -5305;'145;Western Asia;1867;Industrial roundwood, non-coniferous;5516;Production;m3;407000;813000;1203000;720500;774100;773300;855000;1019500;943800;931500;1003200;1292700;1297000;1636700;1069700;1147000;1297400;1750900;1615500;1123200;1228200;1228100;1284500;1447500;1297500;1433500;1305200;1303200;1032100;1027000;1031200;3161100;3683400;3601300;4261500;4305000;4311700;4719899;4750248;4888080;4971151;5109401;5333686;5132700;5185005;5443680;5348000;5591471;5747960;6344035;6446556;6552914;6039915;6912211;6340077;6147695;6216921;7707742;7847131;7930801;10358757;10006131;6671682 -5305;'145;Western Asia;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;777146;471318;590586;822883;428522;347859;560176;493609;543437;503658;427558;226432;338103;468944;476790;386990;327212;383025;320184;195710;226454;238683;206921;185769;128943;203456;214634;151519;221036;136908;101850;114124;176226;145832 -5305;'145;Western Asia;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104359;62500;98338;142608;79938;76310;110094;92205;103841;63444;73775;42003;55277;70487;81291;80321;73964;97794;104109;54813;72274;77987;59297;42532;46815;51096;48333;40405.16;61592;40088;29316;40942;72946;49294 -5305;'145;Western Asia;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10421;1945;4748;1100;2555;3269;7008;46715;59243;62294;60802;66308;65658;70183;69503;70273;13960;16864;11925;17669;15945;11264;13188;15395;16344;7453;12142;19994;35434;39094;12988;42210;26332;24187 -5305;'145;Western Asia;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1034;1081;793;297;293;271;1275;5922;8338;8540;9011;8760;8965;8439;9174;9374;2442;4841;4057;1250;6443;3825;5811;5376;5105;2795;5418;3950;5478;8332;2359;7852;7334;6769 -5305;'145;Western Asia;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;525762;269626;442895;442778;266692;213428;261800;246979;371879;188074;188369;110072;150032;287104;135718;138890;109322;148467;135819;77242;86720;66084;40807;45036;38592;62302;110510;50203;66359;30867;30139;25575;34140;6357 -5305;'145;Western Asia;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70937;36385;72187;97380;63607;56303;65359;56484;80414;37361;41680;22822;32064;37202;44586;50240;40672;60532;58129;31622;32880;32339;17958;20164;17264;27395;29860;20547.77;27019;11970;14504;10468;15858;3310 -5305;'145;Western Asia;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;0;0;0;246;390;303;346;248;318;522;663;179;654;3130;1568;6155;4887;9731;11114;11973;1383;6384;3020;800;2690;2714;5033;554;6 -5305;'145;Western Asia;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;171;0;0;0;72;68;47;67;67;63;100;183;31;132;525;253;1274;1450;2115;2634;2306;495;1077;902;278;1161;1165;1958;644;3 -5305;'145;Western Asia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;251384;201692;147691;380105;161830;134431;298376;246630;171558;315584;239189;116360;188071;181840;341072;248100;217890;234558;184365;118468;139734;172599;166114;140733;90351;141154;104124;101316;154677;106041;71711;88549;142086;139475 -5305;'145;Western Asia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33422;26115;26151;45228;16331;20007;44735;35721;23427;26083;32095;19181;23213;33285;36705;30081;33292;37262;45980;23191;39394;45648;41339;22368;29551;23701;18473;19857.39;34573;28118;14812;30474;57088;45984 -5305;'145;Western Asia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10421;1945;4748;1100;1955;3269;7008;46715;58997;61904;60499;65962;65410;69865;68981;69610;13781;16210;8795;16101;9790;6377;3457;4281;4371;6070;5758;16974;34634;36404;10274;37177;25778;24181 -5305;'145;Western Asia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1034;1081;793;297;122;271;1275;5922;8266;8472;8964;8693;8898;8376;9074;9191;2411;4709;3532;997;5169;2375;3696;2742;2799;2300;4341;3048;5200;7171;1194;5894;6690;6766 -5305;'145;Western Asia;1868;Sawlogs and veneer logs;5516;Production;m3;1437000;1495000;2241000;2647100;2782300;2794500;3029000;3395300;3611800;3226300;3727200;3875700;4493000;5082700;4786700;4882000;5431400;5772200;4938300;4975800;5280200;5276900;4258000;4192000;4088000;4226000;4112700;4111700;3509050;3746200;3333280;4855750;4987950;4793650;5571050;5168050;4910150;4992366;5083033;5324764;5089609;5726949;5255771;5357426;5257665;5913570;8080782;8305767;7988849;8503028;8900356;10036288;8909018;9219850;9904921;10210031;10367889;10483568;10640041;10043935;15176146;13294090;8485243 -5305;'145;Western Asia;1868;Sawlogs and veneer logs;5616;Import quantity;m3;166500;153300;164502;186200;222200;175000;165700;282900;294400;251600;302600;264600;282100;286800;255800;257700;226900;265800;297700;271800;219800;187200;185700;220700;235100;441493;1353781;1273286;749357;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5305;'145;Western Asia;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;9090;9143;8544;9697;10883;8925;8523;11749;12636;12897;17078;14539;26704;30980;28788;33377;30482;40212;50652;55953;43596;32476;28986;32812;38173;52691;137903;143175;95167;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5305;'145;Western Asia;1868;Sawlogs and veneer logs;5916;Export quantity;m3;10000;18700;26600;15500;17000;18000;12600;10300;11700;21000;35800;34500;29800;12500;20800;11600;8900;5100;3700;4800;36900;42400;45900;119800;91400;48600;23600;35000;17900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5305;'145;Western Asia;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;934;1086;1609;1343;1585;1662;1519;1367;1517;1970;2825;3830;5051;1887;2265;1078;915;414;316;456;4525;5287;5259;15213;16718;7037;2788;6318;2708;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5305;'145;Western Asia;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;1169000;1071000;1510000;2103000;2201000;2210000;2360000;2558000;2860000;2610000;3011000;2911000;3544000;3822000;3983000;3995000;4464000;4415000;3917300;4163100;4416500;4413300;3389000;3351000;3260000;3596000;3283000;3284000;2941450;3178700;2746580;2835150;2823150;2618150;3160150;2762750;2463150;2374967;2423978;2556494;2289034;2865024;2385762;2544904;2438337;2987269;4745159;5065716;4704271;4920377;5310464;6288990;5386258;5508739;6484400;6962151;7115026;7522130;7531794;7316304;9403529;8790169;6807730 -5305;'145;Western Asia;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;9400;15800;14002;16200;23300;15400;19900;75200;124300;91800;85600;142200;125600;88400;142800;142100;136500;112800;68500;49800;42700;42900;37900;62700;92000;326326;1205319;834404;380792;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5305;'145;Western Asia;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;455;977;395;534;503;574;604;1515;3051;3526;4599;5712;6093;4794;12869;16247;17866;17032;8603;7064;6389;6908;5735;9118;14065;34200;112877;78224;36294;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5305;'145;Western Asia;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;400;800;1400;2300;2700;1200;500;1000;900;4200;16600;14400;6500;4900;3900;2100;200;600;600;800;1300;6800;10800;20100;15000;24300;500;13000;2400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5305;'145;Western Asia;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;20;33;60;111;130;44;28;42;65;185;683;667;536;634;372;258;27;86;86;136;152;914;1545;2569;1678;2825;111;2559;170;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5305;'145;Western Asia;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;268000;424000;731000;544100;581300;584500;669000;837300;751800;616300;716200;964700;949000;1260700;803700;887000;967400;1357200;1021000;812700;863700;863600;869000;841000;828000;630000;829700;827700;567600;567500;586700;2020600;2164800;2175500;2410900;2405300;2447000;2617399;2659055;2768270;2800575;2861925;2870009;2812522;2819328;2926301;3335623;3240051;3284578;3582651;3589892;3747298;3522760;3711111;3420521;3247880;3252863;2961438;3108247;2727631;5772617;4503921;1677513 -5305;'145;Western Asia;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;157100;137500;150500;170000;198900;159600;145800;207700;170100;159800;217000;122400;156500;198400;113000;115600;90400;153000;229200;222000;177100;144300;147800;158000;143100;115167;148462;438882;368565;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5305;'145;Western Asia;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;8635;8166;8149;9163;10380;8351;7919;10234;9585;9371;12479;8827;20611;26186;15919;17130;12616;23180;42049;48889;37207;25568;23251;23694;24108;18491;25026;64951;58873;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5305;'145;Western Asia;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;9600;17900;25200;13200;14300;16800;12100;9300;10800;16800;19200;20100;23300;7600;16900;9500;8700;4500;3100;4000;35600;35600;35100;99700;76400;24300;23100;22000;15500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5305;'145;Western Asia;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;914;1053;1549;1232;1455;1618;1491;1325;1452;1785;2142;3163;4515;1253;1893;820;888;328;230;320;4373;4373;3714;12644;15040;4212;2677;3759;2538;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5305;'145;Western Asia;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3343382;3346992;3405132;3269669;3699969;3658269;4286269;4411269;4755269;5568269;6162269;6208269;7035269;7296400;7421400;7823400;9208400;9528400;9707400;8703900;11420900;11509900;12724900;14847900;15777900;13378509 -5305;'145;Western Asia;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2220782;2202216;2233032;2065231;2417481;2351481;2919481;2985481;3124481;3620481;3875481;3838481;4398481;4544500;4740500;5412500;6106500;6889500;6919500;5845500;6809500;6906500;7656500;10406500;10406500;8454526 -5305;'145;Western Asia;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1122600;1144776;1172100;1204438;1282488;1306788;1366788;1425788;1630788;1947788;2286788;2369788;2636788;2751900;2680900;2410900;3101900;2638900;2787900;2858400;4611400;4603400;5068400;4441400;5371400;4923983 -5305;'145;Western Asia;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5616;Import quantity;m3;12900;65800;30200;21200;75800;33100;50800;33900;7200;41000;16500;16500;28900;26200;2100;4900;12800;35100;39800;13700;3400;8200;8200;3200;4600;47000;47000;47000;800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5305;'145;Western Asia;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5622;Import value;1000 USD;390;1975;905;605;2275;990;1525;1020;215;2038;434;434;986;2728;283;689;3012;8334;8092;3572;726;2125;2125;979;694;7210;7210;7210;160;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5305;'145;Western Asia;1870;Pulpwood and particles (1961-1997);5516;Production;m3;125000;117000;145000;198000;231000;232000;224000;265000;470000;906000;705000;995000;1166000;1394000;910000;956000;1048000;1052000;1092000;721000;763000;761000;814000;562000;429000;789000;775000;766000;752000;749000;751000;1191300;1508200;1618500;1602000;1606000;1412000;;;;;;;;;;;;;;;;;;;;;;;;;; -5305;'145;Western Asia;1870;Pulpwood and particles (1961-1997);5616;Import quantity;m3;12900;65800;30200;21200;75800;33100;50800;33900;7200;41000;16500;16500;28900;26200;2100;4900;12800;35100;39800;13700;3400;8200;8200;3200;4600;47000;47000;47000;800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5305;'145;Western Asia;1870;Pulpwood and particles (1961-1997);5622;Import value;1000 USD;390;1975;905;605;2275;990;1525;1020;215;2038;434;434;986;2728;283;689;3012;8334;8092;3572;726;2125;2125;979;694;7210;7210;7210;160;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5305;'145;Western Asia;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;103000;106000;125000;182000;213000;214000;203000;247000;428000;770000;593000;870000;1019000;1222000;838000;914000;1006000;1004000;1025000;590000;625000;623000;625000;427000;338000;605000;678000;669000;666000;668000;670000;1171300;1475200;1583500;1579000;1579000;1392000;;;;;;;;;;;;;;;;;;;;;;;;;; -5305;'145;Western Asia;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;22000;11000;20000;16000;18000;18000;21000;18000;42000;136000;112000;125000;147000;172000;72000;42000;42000;48000;67000;131000;138000;138000;189000;135000;91000;184000;97000;97000;86000;81000;81000;20000;33000;35000;23000;27000;20000;;;;;;;;;;;;;;;;;;;;;;;;;; -5305;'145;Western Asia;1871;Other industrial roundwood;5516;Production;m3;310000;455000;535000;716500;846100;843200;818200;818400;739200;964400;867800;984000;986000;1070000;1157000;968000;1147000;1292700;1166500;809500;1105500;1105500;1105500;1649500;1710500;2676500;1714500;1714500;1714500;1714500;1684500;2662500;3146700;3029900;3804700;3680800;3687800;1961729;1960637;2019302;1833389;2008709;2053286;1831883;1843072;1900105;286104;252307;317105;417096;486300;495286;314763;355740;845208;762456;696313;875451;871991;871523;1443689;1101573;976462 -5305;'145;Western Asia;1871;Other industrial roundwood;5616;Import quantity;m3;18400;17000;23400;35800;17300;17200;14500;27000;120800;71600;85900;161700;57800;65600;60400;105100;119300;110000;119200;205400;281700;296300;306400;242400;118400;152100;148600;145200;76100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5305;'145;Western Asia;1871;Other industrial roundwood;5622;Import value;1000 USD;1005;1339;1449;1727;1125;1229;1076;1863;5546;5227;6299;12662;7740;9057;9317;22409;44124;31993;35126;57032;87325;79067;82932;57057;25304;33225;32665;31521;15814;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5305;'145;Western Asia;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;193000;77000;83000;556100;671300;672400;653200;654200;589200;785200;692800;781000;785000;866000;963000;750000;859000;947000;639000;630000;879000;879000;879000;1178000;1332000;2057000;1336000;1336000;1336000;1336000;1321000;1542000;1661100;1639100;1977100;1808100;1843100;981829;1014220;1071592;867251;1043721;896397;878493;903183;1013514;221515;187675;223511;292500;381536;370570;208508;256540;564552;650541;590655;740547;736507;736753;1298949;970763;906276 -5305;'145;Western Asia;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;117000;378000;452000;160400;174800;170800;165000;164200;150000;179200;175000;203000;201000;204000;194000;218000;288000;345700;527500;179500;226500;226500;226500;471500;378500;619500;378500;378500;378500;378500;363500;1120500;1485600;1390800;1827600;1872700;1844700;979900;946417;947710;966138;964988;1156889;953390;939889;886591;64589;64632;93594;124596;104764;124716;106255;99200;280656;111915;105658;134904;135484;134770;144740;130810;70186 -5305;'145;Western Asia;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;18400;17000;23400;35800;17300;17200;14500;27000;120800;71600;85900;161700;57800;65600;60400;105100;119300;110000;119200;205400;281700;296300;306400;242400;118400;152100;148600;145200;76100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5305;'145;Western Asia;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;1005;1339;1449;1727;1125;1229;1076;1863;5546;5227;6299;12662;7740;9057;9317;22409;44124;31993;35126;57032;87325;79067;82932;57057;25304;33225;32665;31521;15814;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5305;'145;Western Asia;1630;Wood charcoal;5510;Production;t;23988;26866;31472;29740;32480;32248;31839;36771;34534;36835;38346;39038;40196;44183;45818;37868;33754;32302;39130;45902;45344;47438;50117;50372;62571;57141;61084;64566;65282;71878;75510;83187;90076;86025;93069;106162;107772;121946;124072;144025;148024;150884;155213;159221;163913;167657;170231;168069;172405;177407;181972;187385;197113;201580;207313;213428;166499;174108;176247;178513;181140;184389;186097 -5305;'145;Western Asia;1630;Wood charcoal;5610;Import quantity;t;20100;16500;21800;27300;48500;33300;29800;33200;45200;41100;32600;22200;54600;25700;25900;25600;22100;22700;15600;17500;21100;27300;25000;29800;22800;32200;32200;32200;36000;36000;35600;38441;29063;32613;43168;27483;29300;84623;70376;70610;97367;108420;118020;91477;165480;214550;156412;255505;230459.2;296762;361216;410022;485527;453681;460445;487604;532192;562610;550993;492083;458838.54;580524;554409 -5305;'145;Western Asia;1630;Wood charcoal;5622;Import value;1000 USD;1238;564;1203;1520;2794;1898;1886;1948;3103;2357;1541;1533;4469;3081;3280;3486;3842;4164;3889;4947;6699;7938;7392;8810;6119;8700;8700;8700;8386;8386;8113;9705;6293;9239;10274;7550;8028;15242;13465;11137;15435;14617;20045;25230;35702;40556;38865;57388;56609;76480;92321;117166;159285;173719;190201;224201;255826.79;288544;317406;300372;289253.28;423286;402258 -5305;'145;Western Asia;1630;Wood charcoal;5910;Export quantity;t;0;100;100;200;2600;2500;2500;3900;3300;4200;2600;4000;3600;2200;2500;2900;4900;3300;2300;4600;3500;2200;3600;1500;1500;1500;1500;1500;1500;1500;1500;2054;1380;955;617;757;672;455;2250;2204;5840;719;2811;2879;12428;12413;3189;4499;6687;9945;8509;13574;13800;19936;18095;20034;42100;57381;36787;29144;38116.38;48749;36764 -5305;'145;Western Asia;1630;Wood charcoal;5922;Export value;1000 USD;0;2;3;10;132;127;117;192;176;286;133;274;317;323;360;426;920;730;561;1116;1061;683;726;394;394;394;394;394;394;394;394;702;544;251;178;212;207;124;193;208;1019;229;516;547;1991;2372;1852;1882;3218;4273;4108;7514;7636;8825;9276;9256;14805.69;21242;19022;17019;23331;33932;33103 -5305;'145;Western Asia;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;15500;21000;430500;429500;1718500;1728500;1897400;1848300;1848300;1847800;1851400;1851500;1852100;1367564;1317020;1324570;1130700;1115744;1121290;1119816;1088909;1088880;1188257;1939973 -5305;'145;Western Asia;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108409;51890;40737;58775;114191;345449;1032872;1317290;1416700;2054544;2387907;2577354;2623211;2934024;4526128;5304041;5691685;5060599;4027470;2158269;2496502;322787;274533;369363.58;552619;1116001 -5305;'145;Western Asia;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19164;2078;2853;4196;5155;17921;43114;60180;85168;108890;166352;134464;161192;186208;205314;217615;249778;332307;249547;212052.2;228530;35728;29663;49697.76;75407;145221 -5305;'145;Western Asia;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;9400;3695;1363;420;579;517;595;981;1632;5622;3028;72506;3689;4269;5647;4643;2302;4570;6421;12849;9531;10385;11485;20382;32675 -5305;'145;Western Asia;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106;292;489;145;19;55;19;44;108;186;1344;655;4601;1143;1098;1200;1157;990;1821;1717.5;2737;1873;2375;2769.52;2420;2957 -5305;'145;Western Asia;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;5500;10900;220500;219500;863500;868500;867500;867500;867500;867000;867000;867000;867300;382419;332960;338020;146860;131698;133432;132990;122718;452709;502522;527525 -5305;'145;Western Asia;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5158;139661;73272;5952;51600;49600;90066;37376;29393;41356;97968;327421;972924;1226087;1401602;2037566;1702227;2559972;2599786;2911786;4491492;5275512;5647274;5024912;3997289;2120360;2464783;289711;241228;327206.43;455307;999966 -5305;'145;Western Asia;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;412;6251;2342;507;1959;1224;2043;1312;1369;2533;3506;15779;38773;54168;82892;106233;119738;130329;152677;180451;197595;209694;231253;318765;239581;198968.55;218411;32418;26685;46032.96;63090;118456 -5305;'145;Western Asia;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;0;;;1500;0;0;0;0;0;100;79;103;123;206;228;1550;535;59500;574;879;1353;1233;884;1150;838;3576;1745;3241;1590;2408;19465 -5305;'145;Western Asia;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;0;;;75;0;15;0;3;2;6;11;5;11;33;44;791;205;2321;434;325;421;389;527;930;695;1154;1067;1613;1835.52;979;1359 -5305;'145;Western Asia;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;10000;10100;210000;210000;855000;860000;1029900;980800;980800;980800;984400;984500;984800;985145;984060;986550;983840;984046;987858;986826;966191;636171;685735;1412448 -5305;'145;Western Asia;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10954;10204;8073;8860;25402;16297;18343;14514;11344;17419;16223;18028;59948;91203;15098;16978;685680;17382;23425;22238;34636;28529;44411;35687;30181;37909;31719;33076;33305;42157.14;97312;116035 -5305;'145;Western Asia;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;459;400;468;484;1072;1101;17121;766;1484;1663;1649;2142;4341;6012;2276;2657;46614;4135;8515;5757;7719;7921;18525;13542;9966;13083.65;10119;3310;2978;3664.8;12317;26765 -5305;'145;Western Asia;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;807;1276;2546;949;900;100;2000;9400;3695;1363;320;500;414;472;775;1404;4072;2493;13006;3115;3390;4294;3410;1418;3420;5583;9273;7786;7144;9895;17974;13210 -5305;'145;Western Asia;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;54;86;44;40;4;91;292;486;143;13;44;14;33;75;142;553;450;2280;709;773;779;768;463;891;1022.5;1583;806;762;934;1441;1598 -5305;'145;Western Asia;1605;Sawdust (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27675;33867 -5305;'145;Western Asia;1605;Sawdust (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8628;12599 -5305;'145;Western Asia;1605;Sawdust (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1100;5000 -5305;'145;Western Asia;1605;Sawdust (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;286;952 -5305;'145;Western Asia;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;26000 -5305;'145;Western Asia;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;386;23;119;3118;4016;4453 -5305;'145;Western Asia;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;14;65;124;198;155;168 -5305;'145;Western Asia;1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;7000;7000;6390 -5305;'145;Western Asia;1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;526;455;440 -5305;'145;Western Asia;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;200;200;200;4200;4200;20200;20200;20200;26200;84200;23200 -5305;'145;Western Asia;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3847;7089;21315;33924;31614;41006;36879;31487;41623;46723.25;170491;116921 -5305;'145;Western Asia;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1378;2734;7265;9940;10032;17159.54;15762;9464;11056;11539.83;27588;26623 -5305;'145;Western Asia;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;559;1896;4630;5600;2750;16647;39477;24232;55772;249942.01;121504 -5305;'145;Western Asia;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89;165;745;1058;1193;703.02;1952;7566;4495;9868;43154.4;26266 -5305;'145;Western Asia;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;100;100;100;4100;4100;20100;20100;20100;26100;84100;23100 -5305;'145;Western Asia;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1335;4483;6679;10041;7979;10027;9799;11559;13740;12377.08;155879;93411 -5305;'145;Western Asia;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;684;1338;2558;3011;3064;3937.31;3293;2768;3692;3190;21116;19415 -5305;'145;Western Asia;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;159;509;477;719;2065;14675;16649;18593;31378;223598;96969 -5305;'145;Western Asia;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;74;374;169;196;379;1479;2516;2920;4695;35829;20938 -5305;'145;Western Asia;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;100;100;100;100;100;100;100;100;100;100;100 -5305;'145;Western Asia;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2512;2606;14636;23883;23635;30979;27080;19928;27883;34346.17;14612;23510 -5305;'145;Western Asia;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;694;1396;4707;6929;6968;13222.23;12469;6696;7364;8349.83;6472;7208 -5305;'145;Western Asia;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;400;1387;4153;4881;685;1972;22828;5639;24394;26344.01;24535 -5305;'145;Western Asia;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;91;371;889;997;324.02;473;5050;1575;5173;7325.4;5328 -5305;'145;Western Asia;1872;Sawnwood;5516;Production;m3;799100;1143800;1178000;1366500;1432700;1851200;1959100;2097900;2320500;2370700;2276400;2424000;2540700;2533900;2577500;3100400;3309800;4764600;4781700;4790400;4751800;4542700;4437100;5020400;5024500;5020800;5015300;5011400;5018200;4974700;4972330;4931260;5284260;4078000;4372000;4314700;3877700;4937390;5115150;5614940;5122300;5701560;5725245;6321853;6703555;6607450;6710017;6286457;5960171;6350571;6566309;6794028;6493641;6724190;7884265;8633918;8237546;8345197;8296779;9470656;11310563;9876462;9505022 -5305;'145;Western Asia;1872;Sawnwood;5616;Import quantity;m3;705300;798200;688050;765450;844050;820850;782100;870500;1059900;1023500;951500;1019500;1032300;1401400;1392400;2213000;2348500;2079000;2281500;2667750;2447350;2905950;2917750;3134650;2562450;1669147;1703378;1542894;1446870;1588045;1575364;2768355;2702475;2387275;2465884;2626523;2792546;3009061;3092416;3315596;3437242;3649804;4516203;5551576;5552192;5608467;6788731;6638664;5925896;6975847;7504432;7586224;7667044;7889050;7768189;7662651;7264153;7167989;7089635;6855285;6675850;6119986;6128056 -5305;'145;Western Asia;1872;Sawnwood;5622;Import value;1000 USD;46044;49949;36647;46531;49856;47761;40503;51163;61231;64284;60405;72265;102179;196411;181390;339878;406657;382356;478920;652893;566170;609604;510846;531852;454846;314613;322288;288813;287926;320097;318789;547797;460732;510697;509271;544375;543086;496442;483780;607074;662351;651305;795238;945480;1059613;1085907;1706880;1759010;1369949;1787511;1986061;2041080;2035337;2279895;1848146;1619930;1616950.65;1881084;1676717;1540516;1972679;2059379;1682708 -5305;'145;Western Asia;1872;Sawnwood;5916;Export quantity;m3;15500;15100;11800;17500;21100;24800;16500;15300;20500;46800;84100;70300;59200;82300;49700;61100;69100;60200;105500;87500;102100;105500;132900;114200;89300;17800;69431;70214;36500;44554;44554;93449;155084;142935;167202;40105;43538;33202;53877;91287;235112;268086;296403;259771;347409;141558;184058;237232;239687;222929;154398;286958;334521;285528;315387;267982;224759;288251;338252;293242;470976;430792;355996 -5305;'145;Western Asia;1872;Sawnwood;5922;Export value;1000 USD;715;532;497;471;649;836;798;751;1060;2571;4623;4641;6567;11309;8180;12111;12091;8761;19769;18001;20164;26780;32435;36385;21496;3241;10954;10346;12700;16614;16614;19906;20999;29164;24478;17892;28081;9749;13148;15707;43446;37888;29459;28981;34235;34525;65561;117078;95246;106370;76139;145919;120002;95914;103828;83273;75311.66;94236;108417;84597;161632;163019;132113 -5305;'145;Western Asia;1632;Sawnwood, coniferous;5516;Production;m3;608950;879550;903250;1050950;1083850;1484000;1543500;1687500;1877000;1860000;1849500;1870000;1955000;1945000;1987000;2557500;2559200;3747900;3758200;3771100;3750500;3744800;3431300;3438100;3435800;3435100;3429500;3429600;3432800;3394300;3387500;3359500;3211400;2363700;2532100;2532500;2060700;2635150;2724517;3147510;2419100;3043310;3014482;3652580;3813553;4176843;4281519;4132349;3827678;4035757;4241554;4344889;4225856;4326010;5147165;5878585;5650976;5967064;5947050;7010144;6954337;6488126;6180733 -5305;'145;Western Asia;1632;Sawnwood, coniferous;5616;Import quantity;m3;609900;681550;584700;633350;700000;697250;629800;755950;865750;886950;796250;846550;894550;1088950;1173750;1877500;1898600;1729150;1914100;2117900;2001400;2403300;2336650;2534150;1870150;1137767;1216477;1082006;1049407;1166616;1154816;1884901;2263531;1986458;1938013;1868700;2160317;2438707;2216371;2371145;2438681;2534872;3247664;4157674;4140685;4407514;5551623;5557459;5056856;6036277;6711166;6681531;6732229;6845786;6793044;6757972;6230329;6200367;6127293;5956489;5794261;5358655;5424241 -5305;'145;Western Asia;1632;Sawnwood, coniferous;5622;Import value;1000 USD;39944;43028;30821;38785;41173;40476;33024;44309;50445;55517;48841;57112;86476;137855;134369;257326;306602;288170;367816;512838;469602;504748;392609;426625;314437;196567;213336;185480;191117;216944;215592;326414;352895;391261;357404;321516;347676;350331;302603;389106;400036;367159;472049;539065;623972;701772;1104674;1167562;916307;1250622;1468722;1450039;1539262;1723634;1380171;1171618;1120482.61;1285082;1189711;1097430;1482663;1548182;1256032 -5305;'145;Western Asia;1632;Sawnwood, coniferous;5916;Export quantity;m3;2000;2300;700;1100;1300;900;1600;5100;9600;30000;62400;42300;36600;61200;48600;60400;68700;59900;103300;84400;95900;94100;125900;106500;84000;10000;12631;44314;12500;33454;33454;35875;30502;122152;141373;29676;30502;18346;25938;19142;141400;114034;71940;57754;130969;95715;88557;86153;85281;96205;68964;167120;217792;188828;220075;166290;88947;148776;180033;211704;342384;324345;155101 -5305;'145;Western Asia;1632;Sawnwood, coniferous;5922;Export value;1000 USD;96;117;37;61;68;36;92;178;490;1545;3058;2408;3973;7404;7792;11906;11941;8681;19180;16813;18699;24509;31035;35884;20996;1320;2373;3858;6200;10684;10684;5966;4799;21820;14830;11470;16706;2737;1481;3410;28126;20569;8702;10694;13742;17575;21564;31432;28192;32431;24370;43260;54927;50359;57910;36151;18867.04;33468;36027;38064;84558;93483;54236 -5305;'145;Western Asia;1633;Sawnwood, non-coniferous;5516;Production;m3;190150;264250;274750;315550;348850;367200;415600;410400;443500;510700;426900;554000;585700;588900;590500;542900;750600;1016700;1023500;1019300;1001300;797900;1005800;1582300;1588700;1585700;1585800;1581800;1585400;1580400;1584830;1571760;2072860;1714300;1839900;1782200;1817000;2302240;2390633;2467430;2703200;2658250;2710763;2669273;2890002;2430607;2428498;2154108;2132493;2314814;2324755;2449139;2267785;2398180;2737100;2755333;2586570;2378133;2349729;2460512;4356226;3388336;3324289 -5305;'145;Western Asia;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;95400;116650;103350;132100;144050;123600;152300;114550;194150;136550;155250;172950;137750;312450;218650;335500;449900;349850;367400;549850;445950;502650;581100;600500;692300;531380;486901;460888;397463;421429;420548;883454;438944;400817;527871;757823;632229;570354;876045;944451;998561;1114932;1268539;1393902;1411507;1200953;1237108;1081205;869040;939570;793266;904693;934815;1043264;975145;904679;1033824;967622;962342;898796;881589;761331;703815 -5305;'145;Western Asia;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;6100;6921;5826;7746;8683;7285;7479;6854;10786;8767;11564;15153;15703;58556;47021;82552;100055;94186;111104;140055;96568;104856;118237;105227;140409;118046;108952;103333;96809;103153;103197;221383;107837;119436;151867;222859;195410;146111;181177;217968;262315;284146;323189;406415;435641;384135;602206;591448;453642;536889;517339;591041;496075;556261;467975;448312;496468.04;596002;487006;443086;490016;511197;426676 -5305;'145;Western Asia;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;13500;12800;11100;16400;19800;23900;14900;10200;10900;16800;21700;28000;22600;21100;1100;700;400;300;2200;3100;6200;11400;7000;7700;5300;7800;56800;25900;24000;11100;11100;57574;124582;20783;25829;10429;13036;14856;27939;72145;93712;154052;224463;202017;216440;45843;95501;151079;154406;126724;85434;119838;116729;96700;95312;101692;135812;139475;158219;81538;128592;106447;200895 -5305;'145;Western Asia;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;619;415;460;410;581;800;706;573;570;1026;1565;2233;2594;3905;388;205;150;80;589;1188;1465;2271;1400;501;500;1921;8581;6488;6500;5930;5930;13940;16200;7344;9648;6422;11375;7012;11667;12297;15320;17319;20757;18287;20493;16950;43997;85646;67054;73939;51769;102659;65075;45555;45918;47122;56444.62;60768;72390;46533;77074;69536;77877 -5305;'145;Western Asia;1634;Veneer sheets;5516;Production;m3;;;;1000;2200;2100;2100;2100;2300;2800;3000;3100;6200;7500;8000;8500;9100;10000;17100;19700;19700;19700;19700;20000;20000;20000;20000;20000;20000;20000;54000;54000;27000;25000;25000;28000;21000;20000;26500;27000;23000;70000;75000;80000;85000;99000;110000;112400;99388;111590;103476;100214;99080;100077;106070;289074;93088;92095;92086;93077;411501;412497;407376 -5305;'145;Western Asia;1634;Veneer sheets;5616;Import quantity;m3;4200;2500;2100;9541;38120;28900;18900;26000;29700;17000;15000;52400;83000;115000;183300;154200;124900;142300;145400;103600;133300;176400;158500;79700;58500;29046;24500;26000;31188;28300;27500;38404;39131;208763;253978;187919;43722;31366;49545;113090;66633;69344;106474;98018;103508;97878;188243;164568;136050;118998;92865;163449;121540;145833;154706;163605;80635;141736;90510;113252;129052;157311;244018 -5305;'145;Western Asia;1634;Veneer sheets;5622;Import value;1000 USD;1173;915;663;1215;3304;2352;1424;2584;3138;2304;1966;5049;8757;14846;30441;33490;28578;36292;38688;34539;48453;56841;50574;27254;23018;18330;16847;18656;23155;20553;20868;28100;24401;96287;108467;96168;42977;24387;49728;79903;46125;46858;61585;72306;78280;73667;144670;128858;97856;100933;95880;121677;105561;126897;136113;132216;91878.51;119274;94791;91780;104646;147167;172830 -5305;'145;Western Asia;1634;Veneer sheets;5916;Export quantity;m3;;;;100;100;300;200;200;100;100;900;900;900;300;300;300;300;300;300;300;200;400;3200;400;400;400;400;400;400;400;400;2814;25268;24007;23605;10405;7127;7478;11221;7856;12674;16841;16555;24518;22744;23557;17077;29718;22928;36258;24498;30574;22519;28548;28949;23089;8417;39173;35131;48756;71449;87481;46970 -5305;'145;Western Asia;1634;Veneer sheets;5922;Export value;1000 USD;;;;65;91;219;129;129;72;72;178;178;178;19;19;19;19;19;19;19;96;192;1814;227;227;227;227;227;227;227;227;3267;2633;4854;6161;8533;8648;9060;8971;8516;12747;17407;25342;22447;23228;22782;26342;33280;25772;33339;29319;34522;28813;34119;32328;29207;10614;37541;37185;35222;49362;70058;47598 -5305;'145;Western Asia;1873;Wood-based panels;5516;Production;m3;144700;161000;181800;205100;234100;239000;287700;329200;347500;376500;390800;427800;476300;499100;514600;590400;649900;732500;743900;638500;638500;681500;712500;913500;1003000;1008000;1009000;1009000;1029000;1027800;1025400;1376100;1330000;1370000;1723000;1854000;2708100;2273300;2372500;2669020;2349200;2919300;3395360;4026200;4958468;5162400;5625824;5717612;5592396;6702067;7511480;8173012;8924908;9750905;9545110;9687306;9475307;9715907;9713806;9223406;11404366;12773575;13147304 -5305;'145;Western Asia;1873;Wood-based panels;5616;Import quantity;m3;21600;21900;21400;35540;41600;46020;43209;60678;84750;89638;90168;98836;181016;238619;211375;321506;436400;480700;613200;659800;895000;1083600;765300;961700;1004100;871397;940089;773671;729631;691061;677814;1629341;1460081;1379930;1285321;1421420;1482716;1602189;1364834;2058233;2068321;2427841;3003139;4047221;4780547;4199273;5373912;5201269;4029655;5290966.18;5396195;6640380;6525626;6620413;6557977;6703688;7433581;6865334;7187229;6881883;7591356.06;6971331;6808495 -5305;'145;Western Asia;1873;Wood-based panels;5622;Import value;1000 USD;3806;3639;3325;5898;5933;6997;6955;9881;11669;14166;12551;15448;37244;60838;59773;99700;123922;147970;229774;281129;382883;418863;287871;310285;320249;268898;274205;258640;235209;227433;231054;545263;513242;506336;471823;544873;558830;470436;415956;526987;568650;618489;715774;1033908;1233331;1215572;1900862;2162159;1625547;2246268.78;2649083;3036847;3040981;3046211;3043578;2688067;2686355.26;2631345;2403107;2279703;2743418.12;3098006;2989374 -5305;'145;Western Asia;1873;Wood-based panels;5916;Export quantity;m3;24000;30900;43762;49700;56546;55746;68446;65905;66116;71105;71605;86405;88605;63405;48405;47800;46800;44800;43700;59600;43700;43900;46100;43100;42900;35487;44078;41907;62396;67400;66700;105257;94244;142914;146401;96123;64472;55470;56382;65871;224220;262035;358069;435122;543046;594029;909233;947143;828963;1090031;1097101;1119541;966970;1336677;1288338;1437615;1946089;2024516;2301450;2558121;3314371.68;3201098;3387940 -5305;'145;Western Asia;1873;Wood-based panels;5922;Export value;1000 USD;5013;6309;6599;7609;8950;8457;10066;9626;9996;9953;8810;10562;14968;11330;8580;8612;11546;14244;16511;27771;20137;24371;21780;18422;18201;13563;15336;16474;26228;24400;24204;38154;32551;30582;36503;30824;21919;22984;14008;21439;52007;53441;82784;120787;134338;178482;301685;442531;347743;431826;451760;496481;472361;551906;484318;491213;602721.78;646744;656857;740876;1181606.43;1350379;1406597 -5305;'145;Western Asia;1640;Plywood and LVL;5516;Production;m3;105600;118400;131800;148400;173300;148400;159300;167800;174700;178500;183100;191400;196200;178800;146100;157100;164200;167500;159200;146800;146800;157800;180800;187800;184800;189800;189800;189800;214800;217600;217600;226600;229800;229800;227800;213800;218600;202700;188300;203220;191000;211400;213140;214700;218248;214180;280624;270412;252196;261867;266280;266812;266808;300805;267010;271006;256007;263007;263006;247006;752666;771275;800004 -5305;'145;Western Asia;1640;Plywood and LVL;5616;Import quantity;m3;13500;12200;11300;23700;22900;27100;26100;40100;56300;62000;68700;78200;145700;198700;167400;251700;376000;423900;555600;598400;802000;970900;659200;862600;906000;771645;837722;692890;634847;593219;595672;1168344;951203;900937;799504;879010;804593;922281;665457;812209;955953;1058248;1198442;1014071;1186656;1215348;1518882;1774240;1257236;2188442;2269642;2745028;2704949;2755154;2920995;3034452;3355927;2996078;2643490;2550291;2877828;2596990;2617440 -5305;'145;Western Asia;1640;Plywood and LVL;5622;Import value;1000 USD;2577;2137;1833;3781;3576;4421;4301;6561;8454;10383;10008;12466;32116;51355;49972;78044;107849;129449;210623;260090;350009;377161;251173;283843;293711;242837;251208;236831;209729;200926;201722;401044;347915;378839;335710;387214;381500;283821;241382;303126;359070;365231;383580;382672;451437;499761;777214;1074419;733847;1118597;1342315;1581569;1601573;1700439;1766533;1610621;1516745.72;1393376;1152251;1085873;1205401;1330269;1309743 -5305;'145;Western Asia;1640;Plywood and LVL;5916;Export quantity;m3;23300;29100;42262;47300;53846;53846;65946;59800;58400;58800;59700;65400;68100;45100;31400;29800;32900;30300;31500;46500;30800;31500;33200;30900;30700;35152;43062;38512;60884;65774;65774;88844;86358;107691;91453;52723;23057;15722;8160;13948;77626;71971;68925;68942;66326;61726;78123;97685;74016;137059;97300;117686;112319;105145;156542;195657;161469;148653;145745;104001;236478;231650;229423 -5305;'145;Western Asia;1640;Plywood and LVL;5922;Export value;1000 USD;4949;6126;6459;7437;8774;8325;9802;8974;9332;8834;7808;8499;12800;9288;6736;6650;8678;11167;13687;24449;16658;20828;18186;15267;15046;13475;15105;14964;25672;23811;23811;33213;29586;26508;27016;22704;12272;13245;3414;10018;23619;22154;27956;33747;35921;31401;45055;91237;62985;76030;74094;85044;69155;64748;81159;92688;77569.39;73337;71053;50376;122168;126121;151659 -5305;'145;Western Asia;1607;Laminated Veneer Lumber (LVL);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -5305;'145;Western Asia;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;761;2401 -5305;'145;Western Asia;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;996;1839 -5305;'145;Western Asia;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;152;110 -5305;'145;Western Asia;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;290;307 -5305;'145;Western Asia;1646;Particle board and OSB (1961-1994);5516;Production;m3;12000;15000;17400;24100;27800;40600;75400;113400;119600;144400;150900;178600;220500;261700;310500;370300;412700;492000;504700;411700;411700;443700;436700;645700;738200;738200;739200;739200;734200;730200;727800;1039500;995200;1010200;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5305;'145;Western Asia;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;1500;1800;2800;2540;5900;6600;7000;7100;7600;9000;10200;10000;22500;16000;14200;15900;29200;27700;28500;33500;58500;67000;75900;62100;52900;53500;46237;33170;41774;46699;37499;122324;157438;232438;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5305;'145;Western Asia;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;127;159;253;236;429;556;627;490;577;690;842;890;2652;2717;3187;5597;6815;6641;6510;8672;18833;25526;25133;13844;12230;12628;9680;8471;8604;9705;9678;30599;34118;43825;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5305;'145;Western Asia;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;700;1700;1400;2300;2600;1800;2400;5900;7300;12100;11700;20900;20400;18100;16800;17500;13300;13900;11600;12700;12500;12000;12700;12000;12000;235;916;3295;1412;1626;926;13879;4236;33721;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5305;'145;Western Asia;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;64;174;127;161;165;121;253;626;621;1091;971;2051;2156;2010;1812;1818;2535;2744;2491;2935;3092;3156;3456;3070;3070;74;217;1496;542;589;393;3702;1184;3446;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5305;'145;Western Asia;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1354200;1304200;1838500;1636600;1755200;1990800;1758200;2093900;2358220;2794500;2984220;2834220;3131200;3207200;2346200;3086200;3606200;3902200;4269100;4461100;4397100;4238300;4324300;4393900;4391800;4112400;5711100;5661100;5806100 -5305;'145;Western Asia;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;269235;212785;301285;291885;236642;367104;309483;367764;486287;794153;820055;747864;829058;835558;651654;782669;708628;819850;858889;800319;664360;770266;968204;992944;1037598;953306;1126603.31;1099975;1016794 -5305;'145;Western Asia;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59564;51837;63516;74158;56564;69298;61010;66897;89655;153661;150649;154817;197287;214864;173732;216506;215513;225546;219757;236126;205981;194439;230959.95;274933;273915;246386;341566.76;398397;365729 -5305;'145;Western Asia;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52705;33800;33307;23840;24521;18307;41297;77000;88162;168521;280875;176540;229125;321257;251240;266873;341344;353876;336896;507871;437207;574251;779932;907935;894535;909973;1145918.41;1143415;1095930 -5305;'145;Western Asia;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8678;5968;6998;5694;5566;3919;6922;7244;17816;40445;43985;43750;64473;94428;64372;68025;82524;89370;88627;116809;94909;111508;154030.13;194190;183826;173607;265434.49;318343;288968 -5305;'145;Western Asia;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;30000;40000;40000;75000;75000;75000;75000;80000;75000;75000;75000;75000;75000;75000;75000 -5305;'145;Western Asia;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;11396;122952;20444;53927;86343;191883;233435;196089;191636;197443;176737;195180;220709;220917;222843;222973;188151;212557;218705;199493;206331;173881;124144;89091;213566 -5305;'145;Western Asia;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;445;1994;6675;3229;7974;13727;37339;41582;45927;54640;54492;46378;58384;66184;60069;69644;71385;70040;49677;54878.8;58458;49109;49188;42446.63;29405;58248 -5305;'145;Western Asia;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;9000;14020;23000;23003;24247;7143;6647;6001;5001;7101;5564;3661;3139;7790;4684;2502;2986;2041;2397;2917;4289;6110;4067;3258;3036 -5305;'145;Western Asia;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1322;2291;3778;9208;9209;6163;2401;2304;1970;2075;3416;1893;1469;1418;2464;1967;1048;887;629;778;778;1329;1284;1770;1213;1187 -5305;'145;Western Asia;1874;Fibreboard;5516;Production;m3;27100;27600;32600;32600;33000;50000;53000;48000;53200;53600;56800;57800;59600;58600;58000;63000;73000;73000;80000;80000;80000;80000;95000;80000;80000;80000;80000;80000;80000;80000;80000;110000;105000;130000;141000;336000;651000;434000;429000;475000;400000;614000;824000;1017000;1756000;2114000;2214000;2240000;2964000;3314000;3599000;3929000;4314000;4914000;4806000;5098000;4820000;4984000;4984000;4789000;4865600;6266200;6466200 -5305;'145;Western Asia;1874;Fibreboard;5616;Import quantity;m3;6600;7900;7300;9300;12800;12320;10109;13478;20850;18638;11268;10636;12816;23919;29775;53906;31200;29100;29100;27900;34500;45700;30200;37000;45200;46252;56130;47611;53010;51143;44643;338673;351440;246555;216582;329625;376838;386023;451339;755968;782441;947902;1232067;2047114;2540401;2039972;2834336;2394028;1944028;2124675.18;2197216;2854585;2738945;2841967;2784471;2686413;2890745;2676819;3299810;3204405;3462780.75;3185275;2960695 -5305;'145;Western Asia;1874;Fibreboard;5622;Import value;1000 USD;1102;1343;1239;1881;1928;2020;2027;2830;2638;3093;1701;2092;2476;6766;6614;16059;9258;11880;12641;12367;14041;16176;11565;12598;14308;13433;13317;13338;16876;16802;19654;113620;131209;83672;76549;105822;113814;112012;116016;147888;145341;178387;228812;460236;589663;515067;871721;818384;671590;852781.78;1025071;1169663;1150007;1038261;1001024;833330;883770.78;904578;927832;898256;1154003.73;1339935;1255654 -5305;'145;Western Asia;1874;Fibreboard;5916;Export quantity;m3;;100;100;100;100;100;100;205;416;205;205;105;105;205;205;500;600;600;600;400;400;400;200;200;200;100;100;100;100;0;0;2534;3650;1502;2243;9600;8108;10908;14701;19596;82297;90061;176735;190516;189198;349762;596984;521100;498143;682438;655318;640189;513071;721159;691603;665666;1002291;965011;1256881;1538037;1927908.28;1822775;2059551 -5305;'145;Western Asia;1874;Fibreboard;5922;Export value;1000 USD;;9;13;11;11;11;11;26;43;28;31;12;12;32;32;144;333;333;333;387;387;387;138;85;85;14;14;14;14;0;0;1239;1781;628;809;2152;2649;2723;2737;3724;12258;14834;30849;44194;52128;101361;190082;253450;218493;286302;293724;319603;312612;369301;307363;286388;370344.26;378439;400649;515609;792233.94;904702;964783 -5305;'145;Western Asia;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10000;23000;44000;0;0;0;0;0;77000;120000;210000;270000;185000;250000;34000;20000;0;0;0;0;0;0;0;0;0;0;0;0;0 -5305;'145;Western Asia;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64400;108500;100262;98216;121202;142713;126052;104048;161887;204629;311593;354016;550955;381586;237170;347850;333946;447268;403343;320146;315934;291002;248241;183949;189694;230649;199891.42;189358;189298 -5305;'145;Western Asia;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25233;39277;37979;35283;36568;48230;37018;49204;72501;118707;169610;192510;320619;264210;155726;216659;240764;246864;258015;190641;170750;148277;123326.2;100365;93973;97096;120966.81;134032;125720 -5305;'145;Western Asia;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;200;8;1008;2044;1009;4036;13021;4336;35791;25119;44486;35669;52642;23322;61751;71773;97850;93549;104137;61221;41263;56946;83730;169195;241808;353652;352801;295413 -5305;'145;Western Asia;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43;85;9;457;622;413;1273;4626;3120;15912;12744;20998;18908;15217;16268;33277;44454;43577;53965;51198;33866;21716;29472.34;40264;64517;116668;198711.76;234278;185160 -5305;'145;Western Asia;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121000;303000;597000;424000;419000;441000;369000;584000;714000;864000;1514000;1812000;1966000;1935000;2930000;3279000;3584000;3914000;4299000;4899000;4791000;5083000;4761000;4924000;4924000;4789000;4864000;6264000;6464000 -5305;'145;Western Asia;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102555;146700;172071;183512;239151;357746;418150;640570;710822;1336084;1594628;1369780;2010947;1656347;1326026;1468194.18;1510434;2158944;2082757;2259006;2198330;2112679;2388094;2219046;2679539;2597483;2896775.33;2729660;2558633 -5305;'145;Western Asia;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39842;53281;62477;61925;68156;75292;85409;110616;120389;282197;347283;285110;502172;459144;426555;540073.78;642964;817874;792325;774176;752830;621064;691967.32;725199;749995;724435;954608.56;1141817;1059613 -5305;'145;Western Asia;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1800;8000;7000;8000;6000;9027;31038;53030;122619;134316;128385;271462;515552;444006;459915;595439;560175;496530;386053;575574;597252;583689;835734;733803;968456;1088859;1287246.51;1254878;1564217 -5305;'145;Western Asia;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;619;1823;2481;1885;1421;2250;6197;8116;21105;25387;34087;74357;160941;230645;197118;242394;241492;252264;239324;300685;261325;252395;313216.73;294470;302850;351389;514010.81;586752;709577 -5305;'145;Western Asia;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;34000;31000;30000;33000;33000;32000;32000;63000;55000;0;15000;15000;15000;15000;15000;15000;15000;59000;60000;60000;0;1600;2200;2200 -5305;'145;Western Asia;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;4200;7100;23800;14900;14900;14700;18900;18700;32100;14800;11500;16700;20575;32640;23118;23802;22437;6637;84429;98459;38952;49627;74425;104505;104295;90986;255509;238239;203284;359358;506401;634180;316176;272434;356095;380832;308631;352836;248373;252845;262815;270207;282732;254410;273824;430577;376273;366113.99;266257;212764 -5305;'145;Western Asia;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;616;949;3062;2542;3417;3542;5668;5658;8512;4278;2559;4357;4417;7687;7434;7169;7172;2690;28265;37946;12115;11474;13264;13358;14804;11292;24366;22914;18567;35922;59332;72770;37447;48930;95030;89309;96049;141343;104925;99667;73444;77444;63989;68477.26;79014;83864;76725;78428.36;64086;70321 -5305;'145;Western Asia;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;870;947;672;343;1400;1100;1900;6657;9560;47223;24010;49780;20409;35694;33814;45763;24452;14906;25248;23370;45809;33469;41448;33130;40714;109611;147478;119230;207370;287009.77;215096;199921 -5305;'145;Western Asia;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;516;530;301;147;244;159;381;694;1061;4788;2092;6624;2895;5297;6006;10233;7588;5107;10631;7778;23762;19323;17418;12172;12277;27655.2;43705;33282;47552;79511.36;83672;70046 -5305;'145;Western Asia;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;20000;20000;25000;25000;25000;24000;28000;30000;38000;38000;38000;39000;40000;43000;45000;53000;63000;63000;70000;70000;70000;70000;85000;70000;70000;70000;70000;70000;70000;70000;70000;100000;95000;120000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5305;'145;Western Asia;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;6600;7900;7300;9300;12800;12320;10109;13478;20850;18638;11268;10636;12816;19719;22675;30106;16300;14200;14400;9000;15800;13600;15400;25500;28500;25677;23490;24493;29208;28706;38006;254244;252981;207603;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5305;'145;Western Asia;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;1102;1343;1239;1881;1928;2020;2027;2830;2638;3093;1701;2092;2476;6150;5665;12997;6716;8463;9099;6699;8383;7664;7287;10039;9951;9016;5630;5904;9707;9630;16964;85355;93263;71557;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5305;'145;Western Asia;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;100;100;100;100;100;100;205;416;205;205;105;105;205;205;500;600;600;600;400;400;400;200;200;200;100;100;100;100;0;0;1664;2703;830;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5305;'145;Western Asia;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;9;13;11;11;11;11;26;43;28;31;12;12;32;32;144;333;333;333;387;387;387;138;85;85;14;14;14;14;0;0;723;1251;327;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5305;'145;Western Asia;1879;Total fibre furnish;5510;Production;t;45900;70300;77300;85200;84100;86000;87600;91100;88700;184400;272000;332900;421000;392000;369000;387000;482000;438000;547100;575300;606500;612500;707800;786100;768100;922100;929100;892100;949100;878100;1035100;1068100;1127000;1186000;1393000;1288000;1377000;1404000;1368000;1674300;1618300;1878300;1960300;2003100;2022200;1923098;2902249;3017714;4128539;3625116;3820151;3878270;3946916;3966750;3984193;4140577;4222205;4231521;4229005;4225601;4373908;4490440;4379985 -5305;'145;Western Asia;1879;Total fibre furnish;5610;Import quantity;t;6700;15700;9200;44600;43800;47000;48800;65200;65700;55000;81400;65200;72800;102740;109984;111906;113047;102121;102662;93446;87471;135100;139474;174341;190041;186614;269832;252023;287677;253391;264048;519408;580183;513116;671143;621197;658149;731753;819974;762254;875525;982860;1085083;1184914;1155386;1192657;1318396;1345479;1317332;1479008;1725967;1659919;1894974;2038345;2163046;2485194;3009662;3144633;3760626;4259027;3637397.19;4314106;4416111 -5305;'145;Western Asia;1879;Total fibre furnish;5622;Import value;1000 USD;873;1664;1103;5870;6185;6325;6094;7969;8882;8871;14603;12108;16058;31094;34606;43044;46540;42574;48785;49740;39554;56860;53008;78644;66761;79592;133065;138233;171094;147766;148538;218268;211973;214198;409248;316550;283920;274735;318310;414049;354294;371736;408977;436376;535195;575405;768549;849915;623582;971011;1091517;957457;1111324;1175110;1209803;1202674;1493858.84;1791249;1648834;1543062;1975427.86;2849299;2415076 -5305;'145;Western Asia;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;3559;4185;4339;4941;5267;6858;9000;8500;14200;20100;28643;21543;25003;43179;95446;96698;133044;67651;150246;137539;102135;105641;143487;159815;256740;216881;294464;352041;366181;403082;444687;609215;637218;600329;824703;1051073;1079157;1208949;1263684;1217628;1441468;1644122;1609374;1338943;1016686;1256476.05;1652761.24;1538263.24 -5305;'145;Western Asia;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;81;152;206;561;416;820;942;1045;977;1978;3685;2964;3366;5689;16285;15939;25312;9691;24614;25163;17040;16005;17236;27402;47670;35523;41049;54131;60036;65734;83535;116245;134265;122143;137615;235869;188896;219063;225735;202446;232494;316597.58;272891;283553;210027;370522.2;580763.89;414862.89 -5305;'145;Western Asia;1878;Pulp for paper;5510;Production;t;45900;70300;77300;85200;84100;86000;87600;91100;88700;113400;199000;252900;329000;287000;262000;252000;275000;199000;328100;353300;370500;366500;400800;458100;454100;485100;470100;435100;473100;431100;402100;439100;301000;371000;529000;424000;374000;411000;367000;397000;317000;303000;303000;303000;303000;163000;153000;143000;134000;143000;153000;141000;143000;148000;134000;148000;148000;148000;148000;148000;148000;148000;148000 -5305;'145;Western Asia;1878;Pulp for paper;5610;Import quantity;t;6700;15700;9200;44600;43800;47000;48800;65200;65700;55000;81400;65200;72800;100500;105000;105600;104700;93100;98900;88200;68900;118000;131200;159600;162100;180867;225491;210088;204500;180700;181000;350291;455459;408788;499813;507351;522504;620663;610311;553608;677900;661081;731875;820705;950050;1008815;1087006;1058424;1050362;1118752;1347000;1338794;1572768;1664644;1704341;1878996;2055368;2060190;2233374;2451727;2322956.9;2808809;3112291 -5305;'145;Western Asia;1878;Pulp for paper;5622;Import value;1000 USD;873;1664;1103;5870;6185;6325;6094;7969;8882;8871;14603;12108;16058;30828;33892;42687;45322;40956;47617;48459;36516;54365;52349;76753;63482;79156;127052;131148;158522;136510;136484;195553;195944;195985;369033;298484;265748;256995;296908;374271;323237;328601;360977;392920;501837;549563;720833;792988;580930;905488;1009729;892939;1051220;1108053;1129745;1101759;1303676.95;1584943;1463635;1310842;1680750.46;2512674;2203924 -5305;'145;Western Asia;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;445;2624;6681;2463;1586;2638;597;13957;13386;13212;10032;11532;8085;11439;12182;12994;12774;14726;6622;16657;10070;37357;43486;23467;27241;25688;39144;132145;133615;145220.56;205961.24;286991.24 -5305;'145;Western Asia;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;237;657;3300;1664;665;997;565;10794;13711;13233;8825;10327;13279;14540;15903;19501;24876;22000;7667;16860;8231;27692;31198;18334;19162;19237;34472;105295;87761;130290.16;241534.89;187822.89 -5305;'145;Western Asia;1875;Wood pulp;5510;Production;t;39600;66600;68700;76000;76000;78300;76900;80000;78500;101600;184600;235000;322000;283000;262000;238000;264000;168000;284600;282600;289500;283500;317800;375100;352100;376100;365100;351100;375100;336100;307100;342100;258000;328000;413000;336000;278000;290000;250000;306000;236000;225000;225000;225000;225000;85000;75000;65000;56000;65000;75000;63000;65000;70000;56000;70000;70000;70000;70000;70000;70000;70000;70000 -5305;'145;Western Asia;1875;Wood pulp;5610;Import quantity;t;6700;15700;9200;7900;8500;8600;3600;12900;37400;58500;104400;97600;98900;111400;110200;176700;140300;93000;98800;103200;76600;99900;110900;118900;133500;163111;178918;210499;202000;177400;177700;350556;464315;402229;493073;485693;508457;622863;614471;549177;630896;652057;694607;795088;924935;959757;1029767;1044420;1045282;1106342;1346090;1334773;1566933;1603799;1617116;1853078;2010923;2028172;2169160;2376587;2247444.99;2726776;3005182 -5305;'145;Western Asia;1875;Wood pulp;5622;Import value;1000 USD;873;1664;1103;1002;1247;1186;486;1525;5203;10346;19545;18009;19740;35270;36340;52171;54732;40910;47571;57978;41734;46967;46084;57112;52636;64063;92242;131262;156772;134121;134095;195686;199781;192349;363783;286426;258552;257816;298994;366427;309099;322159;342006;377643;486294;516437;678927;776989;572047;890877;998756;880593;1037708;1067077;1074054;1086586;1273275.07;1558410;1418814;1271039;1628426.54;2430585;2128669 -5305;'145;Western Asia;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;300;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;445;2665;2117;1504;1438;1638;597;320;536;320;1432;1461;1578;1475;1179;626;3595;4545;3231;8825;5896;35948;43176;22667;26964;25186;38153;131803;133597;141325.92;208075.24;285396.24 -5305;'145;Western Asia;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;169;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;237;691;819;628;583;708;461;264;674;175;416;428;494;424;261;554;3167;6669;2827;7546;5393;26122;30794;17386;18811;18677;33741;105007;87641;126942.52;243421.89;186021.89 -5305;'145;Western Asia;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70000;70000;70000;70000;70000;70000;70000 -5305;'145;Western Asia;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30104;84988;63033;49844;52842.57;68837;33934 -5305;'145;Western Asia;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13950.4;25086;33475;27941;28676.17;47884;19835 -5305;'145;Western Asia;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;179;281;234;292;1191.51;5498;1654 -5305;'145;Western Asia;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110;120;228;208;871;4687;1329 -5305;'145;Western Asia;1654;Mechanical wood pulp (1961-2016);5510;Production;t;23500;37700;38100;42200;39300;39600;37200;37500;38700;39200;87200;99400;107000;99000;97000;94000;100000;87000;105000;116000;116000;155000;150000;152000;158000;169000;164000;128000;152000;148000;94000;112000;47000;52000;132000;70000;25000;31000;53000;96000;70000;42000;42000;42000;42000;15867;0;0;0;0;0;0;0;0;0;0;;;;;;; -5305;'145;Western Asia;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;6700;15700;9200;7900;8500;8600;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;36812;46758;9131;15244;16144;14193;44982;7424;15002;8219;7401;10838;5763;12584;13071;21450;16402;8564;14096;7147;10625;11388;1950;8632;12503;;;;;;; -5305;'145;Western Asia;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;873;1664;1103;1002;1247;1186;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;16686;15830;3053;6533;8940;6969;2261;3389;6643;3463;3068;4924;2089;5047;5315;12977;10973;6175;11717;4494;8303;8735;1244;5114;4878;;;;;;; -5305;'145;Western Asia;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;638;638;638;638;638;0;0;126;0;0;0;4;4;4;5;21;41;247;344;232;784;37;83;1531;;;;;;; -5305;'145;Western Asia;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;126;126;126;126;126;2;8;63;0;0;0;1;1;1;5;26;64;367;211;260;812;45;180;413;;;;;;; -5305;'145;Western Asia;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;1900;2200;4500;6000;1600;5900;11700;2200;32000;19000;8000;17000;20000;3000;2100;600;6500;6500;2800;3100;3100;3100;3100;3100;3100;3100;3100;3100;42000;42000;42000;55000;30000;50000;0;0;0;0;0;0;0;0;75000;65000;56000;65000;75000;63000;65000;70000;56000;70000;;;;;;; -5305;'145;Western Asia;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;600;600;1000;1000;20000;3100;5000;16500;22200;28000;22400;19300;20700;21100;7700;7700;7700;7700;7700;7700;7700;2200;2400;2300;2300;7694;7836;2510;4510;5400;4888;4148;4120;1725;11100;5419;7683;34385;29029;24935;24109;20552;20842;38211;44071;42817;34254;2968;3640;5620;;;;;;; -5305;'145;Western Asia;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;107;107;125;125;3603;613;1197;10089;12358;12175;10803;9870;9669;9760;1975;1975;1975;1975;1975;1975;1975;1332;1096;1043;1043;4406;3689;795;1216;2151;1839;1676;2126;1222;4669;2252;3312;14697;12129;10397;10698;9630;9199;28531;30173;29423;24752;1841;1726;2484;;;;;;; -5305;'145;Western Asia;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;1;1;24;98;177;195;260;183;1;190;263;;;;;;; -5305;'145;Western Asia;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;263;0;0;0;0;0;1;1;201;196;210;229;124;77;4;149;170;;;;;;; -5305;'145;Western Asia;1656;Chemical wood pulp;5510;Production;t;16100;28900;30600;33800;34800;36500;35200;36500;38200;56500;85700;132500;172000;150000;142000;117000;132000;75000;169000;156000;156000;113000;156000;211000;182000;195000;189000;211000;211000;176000;201000;218000;160000;225000;230000;202000;223000;209000;197000;210000;166000;183000;183000;183000;183000;69133;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -5305;'145;Western Asia;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;10600;11100;1600;5000;7600;19100;15900;14700;32300;54500;69000;75200;66100;61000;75500;85400;97700;111600;132100;141800;179400;146500;133400;133700;305480;400317;388385;472618;458707;485357;569367;598635;529654;607598;635534;669343;744526;863912;900917;975625;992263;1007600;1036573;1271490;1255508;1501914;1575439;1574742;1801554;1936284;1909418;2094948;2310134;2177599.03;2652842;2958300 -5305;'145;Western Asia;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;1191;1648;302;969;1363;3485;4521;5316;12624;23459;29168;36759;38376;34444;35486;34182;47667;42716;51579;78365;117934;111456;100711;100685;174221;176184;187095;355475;272683;247235;251741;291062;356967;298572;314997;330426;354629;458240;488773;650551;745673;553003;837080;947115;826683;991428;1048226;1048338;1059407;1232893.67;1506642;1377757;1233545;1583090.96;2375879;2096145 -5305;'145;Western Asia;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;445;1986;1438;825;800;1000;597;320;410;320;1432;1461;1574;1471;1174;618;3312;4299;2550;8118;5076;34653;42912;22226;25076;24984;37738;131554;133181;140023.41;200411.24;283714.24 -5305;'145;Western Asia;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;237;531;659;468;457;582;425;256;348;175;416;428;493;423;259;546;2656;6343;2183;6873;4647;24871;30494;16900;18181;18557;33600;104764;87330;125976.52;236636.89;184670.89 -5305;'145;Western Asia;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;;;;;;17100;40600;63700;60000;79000;77000;59000;78000;37000;86000;42000;41000;30000;41000;61000;129000;138000;134000;150000;150000;125000;143000;154000;123000;171000;181000;157000;173000;159000;143000;149000;153000;148000;148000;148000;148000;55911;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -5305;'145;Western Asia;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;200;200;400;3600;1700;13100;12000;8400;8100;17300;14400;9400;12600;24500;36300;47600;64800;79400;80000;75600;110600;77800;70600;70600;10489;13896;7510;5000;11000;12200;15700;2000;2900;19800;2800;5041;17990;20802;6120;25919;21956;51697;37836;25483;17782;24004;29639;27445;28223;38364;39690;46053;31974;30288.94;72499;53066 -5305;'145;Western Asia;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;26;26;80;712;347;2447;3419;3077;3239;7117;6003;5574;6996;14602;15921;17419;30805;28558;28808;44980;79867;57703;52371;52371;4069;5184;2315;3757;5737;5136;4873;660;2282;1011;1001;2197;6450;7923;2693;13663;13684;24552;21631;16817;10936;14928;18836;20345;17071;22962;31518;24060;19711;14831.55;44233;34441 -5305;'145;Western Asia;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;1000;1000;1000;1000;1000;315;418;111;718;499;260;542;229;515;217;26;18;2135;612;2842.98;18490;1875 -5305;'145;Western Asia;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;1;0;0;0;183;183;183;183;183;233;256;63;392;669;511;642;451;643;433;59;42;1573;359;1113;28086;1648 -5305;'145;Western Asia;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;22700;56000;29000;24000;24000;22000;17000;36700;46000;57000;41000;57000;64000;28000;30000;29000;33000;33000;28000;32000;42000;37000;54000;49000;45000;50000;50000;54000;61000;13000;35000;35000;35000;35000;13222;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -5305;'145;Western Asia;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;3000;11600;11500;21900;17000;13600;8500;8200;12900;8300;29000;35500;35600;29500;35600;36200;259008;351144;334847;419591;411312;415262;501559;567821;502733;534360;583653;611695;632881;760893;810440;904584;941428;924739;941952;1148556;1153785;1419150;1483093;1509873;1711174;1834702;1787420;2011579;2239486;2111264.09;2543014;2894782 -5305;'145;Western Asia;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;1871;7320;7326;7725;9502;7618;4547;3435;6507;3421;12198;15551;16173;22862;26174;26450;147125;153852;162395;315409;246140;215460;224077;275994;337186;269465;289657;302162;303827;410094;444583;607885;710333;507863;771334;854395;750775;931477;981650;1000560;1003241;1167477.39;1407282;1328277;1192546;1546108.41;2304976;2053289 -5305;'145;Western Asia;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;445;1986;1438;825;800;1000;597;320;410;320;432;461;574;471;174;303;2245;1507;1437;7089;4295;33587;42677;21640;24514;24761;34860;128473;131939;136579.44;180933.24;280720.24 -5305;'145;Western Asia;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;237;531;659;468;457;582;347;256;347;175;233;245;310;240;76;313;1935;1363;1469;5734;3684;23774;30029;16184;17187;18368;31076;102495;86454;124344.52;207800.89;182138.89 -5305;'145;Western Asia;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -5305;'145;Western Asia;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63218;82308;37316;38674;36046;37329;10452 -5305;'145;Western Asia;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42454.28;67842;25420;21288;22151;26670;8415 -5305;'145;Western Asia;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;197;2860;946;630;601;988;1119 -5305;'145;Western Asia;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;130;2482;696;517;519;750;884 -5305;'145;Western Asia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;19400;19900;17500;15900;17200;17400;16600;18900;20600;16000;24000;24000;21000;25000;17000;37000;56000;46000;33000;46000;68000;;;;;;;;14000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -5305;'145;Western Asia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;1000;4600;4600;500;4200;12600;14500;26000;13300;13100;6800;7000;7000;9500;10800;11700;20100;22200;23800;17300;17300;661;1173;2728;5300;600;2800;2846;141;881;24818;22268;24385;23183;23164;23079;1116;1308;1045;739;1961;1807;1647;549;450;452;;;;;;; -5305;'145;Western Asia;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;193;759;759;151;1646;4770;5510;10095;7821;9988;3815;3766;3915;5016;5053;5609;12999;16719;18462;13589;13589;394;560;1353;2275;164;938;1503;59;808;11312;9088;10143;9317;9318;9257;407;705;537;612;1230;1046;932;388;327;331;;;;;;; -5305;'145;Western Asia;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;46;275;100;100;100;100;0;0;0;;;;;;; -5305;'145;Western Asia;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;6;767;66;66;68;66;0;0;0;;;;;;; -5305;'145;Western Asia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;14400;14900;19000;19300;19300;20800;22800;26200;25500;40000;18000;17000;13000;7000;4000;9300;12000;12000;9000;12000;18000;25000;27000;26000;28000;28000;23000;26000;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;;;;;;; -5305;'145;Western Asia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;500;600;300;300;1100;1200;3200;1900;8400;10900;16900;30600;23400;16100;23700;22600;10500;13100;11400;10600;11000;15400;9900;9600;35322;34104;43300;42727;35795;55095;49262;28673;23140;28620;26813;28222;70472;59053;61278;44006;27571;30119;56046;95490;82134;57113;62158;36974;61705;;;;;;; -5305;'145;Western Asia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;60;94;43;45;227;262;934;576;2727;3495;5727;15639;11890;8409;11252;9413;5339;5684;4964;4835;5175;12429;8577;8275;22633;16588;21032;34034;20642;25701;21288;14349;16691;16784;15251;15924;35035;30905;32240;28596;20951;20051;43503;74673;63926;44091;47352;27106;38764;;;;;;; -5305;'145;Western Asia;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;603;2406;295;430;421;424;6;71;345;;;;;;; -5305;'145;Western Asia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;77;0;1;0;0;0;0;0;0;0;459;4150;256;404;384;389;14;73;561;;;;;;; -5305;'145;Western Asia;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;900;11000;15000;15000;10000;12000;3000;8500;10000;11000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;9000;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;0;0;0 -5305;'145;Western Asia;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;1400;0;0;10400;23300;32600;26300;11000;5300;71200;35700;0;0;15100;7800;16300;16300;11000;11000;11000;4400;3200;100;300;300;570;9404;2203;701;5442;4019;4366;4292;2796;3979;3703;6743;10414;19410;20834;8583;15203;8276;17462;23382;25823;19377;23442;30102;33401;44535;33766;11179;16609;17003.4;5097;12948 -5305;'145;Western Asia;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;200;0;0;2449;5013;6000;3781;4488;2494;9530;9456;0;0;9565;5264;9298;9298;5896;5896;5896;2396;2150;101;237;237;373;4078;1406;559;2652;2509;2138;2417;1595;2395;1842;3344;6228;10878;11952;4701;10713;3670;13549;16974;16184;12793;15766;18876;19817;26431;26682;7582;9553;16659.4;6822;12689 -5305;'145;Western Asia;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;300;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;41;41;41;0;0;0;0;0;0;0;0;0;0;0;2;238;107;257;168;328;328;226;168;94;23;134;15;124;111;2166;28 -5305;'145;Western Asia;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;169;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;34;34;34;0;0;34;0;0;0;0;0;0;0;0;2;284;66;67;233;362;362;251;157;47;10;21;15;103;95;2098;22 -5305;'145;Western Asia;1668;Pulp from fibres other than wood;5510;Production;t;6300;3700;8600;9200;8100;7700;10700;11100;10200;11800;14400;18800;18000;19000;15000;24000;23000;34000;52000;80700;92000;92000;92000;92000;111000;118000;114000;93000;107000;104000;104000;106000;52000;52000;125000;97000;96000;121000;117000;91000;81000;78000;78000;78000;78000;78000;78000;78000;78000;78000;78000;78000;78000;78000;78000;78000;78000;78000;78000;78000;78000;78000;78000 -5305;'145;Western Asia;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;305;548;8762;7441;27100;18066;2166;132;7227;50983;12727;44011;36031;44525;69892;65822;29207;13356;29872;24292;29844;25212;84287;117327;59319;88980;65784;75393;91749;92515.31;87130;120057 -5305;'145;Western Asia;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;240;241;5042;5809;14710;9705;1317;331;9439;16533;8284;22315;21505;26421;45078;46607;26712;12553;28160;27947;28530;26305;56742;74567;34990;56832.87;53215;52403;49356;68983.33;88911;87944 -5305;'145;Western Asia;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;4605;1000;148;1000;0;13637;12850;12892;8600;10071;6507;9964;11003;12370;9417;10288;3648;8000;4502;1737;536;968;371;525;1125;357;142;4005.64;52;1623 -5305;'145;Western Asia;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;2515;1070;82;289;138;10530;13037;13058;8409;9899;12785;14116;15642;18949;21993;15397;4907;9547;3200;1932;655;1105;398;570;752;303;223;3442.64;211;1823 -5305;'145;Western Asia;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;240;0;0;710;2178;2324;1430;2008;13794;7885;14599;7198;18315;15551;22599;29143;15404;13962;11260;7449;5353;4730.32;7246;9862 -5305;'145;Western Asia;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;140;0;0;22;1192;1294;434;1075;10044;5392;11082;4988;15577;9798;6356;13063;8472;10265.19;7987;3904;4448;3578.5;6348;7290 -5305;'145;Western Asia;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;2;2;2;2;310;688;8124;7422;9697;9669;26016;853;254;266;1226;20705;43004;95998;137588;132220 -5305;'145;Western Asia;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;1;0;0;0;2;2;2;2;237;471;2214;1679;1576;1829;4787;114;59;83;315;2211;3879;15298;25264;18230 -5305;'145;Western Asia;1669;Recovered paper;5510;Production;t;;;;;;;;;;71000;73000;80000;92000;105000;107000;135000;207000;239000;219000;222000;236000;246000;307000;328000;314000;437000;459000;457000;476000;447000;633000;629000;826000;815000;864000;864000;1003000;993000;1001000;1277300;1301300;1575300;1657300;1700100;1719200;1760098;2749249;2874714;3994539;3482116;3667151;3737270;3803916;3818750;3850193;3992577;4074205;4083521;4081005;4077601;4225908;4342440;4231985 -5305;'145;Western Asia;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;2240;4984;6306;8347;9021;3762;5246;18571;17100;8274;14741;27941;5747;44341;41935;83177;72691;83048;169117;124724;104328;171330;113846;135645;111090;209663;208646;197625;321779;353208;364209;205336;183842;231390;287055;266970;360256;378967;321125;322206;373701;458705;606198;954294;1084443;1527252;1807300;1314440.29;1505297;1303820 -5305;'145;Western Asia;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;266;714;357;1218;1618;1168;1281;3038;2495;659;1891;3279;436;6013;7085;12572;11256;12054;22715;16029;18213;40215;18066;18172;17740;21402;39778;31057;43135;48000;43456;33358;25842;47716;56927;42652;65523;81788;64518;60104;67057;80058;100915;190181.89;206306;185199;232220;294677.4;336625;211152 -5305;'145;Western Asia;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;3559;4185;4339;4941;5267;6858;9000;8500;14200;20100;28643;21543;25003;43179;95446;96698;132599;65027;143565;135076;100549;103003;142890;145858;243354;203669;284432;340509;358096;391643;432505;596221;624444;585603;818081;1034416;1069087;1171592;1220198;1194161;1414227;1618434;1570230;1206798;883071;1111255.49;1446800;1251272 -5305;'145;Western Asia;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;81;152;206;561;416;820;942;1045;977;1978;3685;2964;3366;5689;16285;15939;25075;9034;21314;23499;16375;15008;16671;16608;33959;22290;32224;43804;46757;51194;67632;96744;109389;100143;129948;219009;180665;191371;194537;184112;213332;297360.58;238419;178258;122266;240232.04;339229;227040 -5305;'145;Western Asia;1876;Paper and paperboard;5510;Production;t;103700;123900;137200;151000;152300;164900;198000;207600;224500;250600;325800;419800;492200;538800;412100;495100;539100;461100;633000;669100;701100;726100;629100;719100;866000;950000;1065000;945000;1026000;1211000;1018000;1298200;1330000;1423000;1607000;1472000;1614000;1730000;1755000;2174700;2272100;2398400;2549200;2638800;2860718;2730372;3054416;3144059;4344059;4530659;4886259;4971559;5041791;5098624;5127785;5261561;5288288;5021859;4963990;4951142;5093690;5182568;5203782 -5305;'145;Western Asia;1876;Paper and paperboard;5610;Import quantity;t;133300;144444;167300;170100;213500;222600;294500;356300;375800;348800;462000;372900;359500;399400;400100;402400;433500;514200;632700;654000;629500;705300;642000;757700;694000;845691;997986;881694;852432;941139;1174834;1400845;1993861;1827007;1872003;1790185;2198681;2572758;2771781;2943573;2853135;2944342;3179460;3883864;4909330;5037133;6544997;6399050;5995316;6514136;6726392;6536830;6568854;6996966;6455862;6525132;6835347;6717287;6788925;6707687;6748527.23;7403033;6579533 -5305;'145;Western Asia;1876;Paper and paperboard;5622;Import value;1000 USD;33720;37603;35878;38487;48178;52808;64510;75790;74506;76924;105282;96184;106099;174450;215636;195858;275255;288570;360509;445086;494634;523977;441507;472871;433963;568560;714396;634069;673697;757341;952479;1009393;1273361;1314213;1641931;1497313;1660845;1850432;2014677;2164381;1974777;1916619;2055574;2555428;3700699;3745410;5194112;5641937;4767895;5564102;6342807;5649859;5637316;6119689;5162610;5353826;5766546.27;6167998;5970312;5403437;6159157;8474102;6863218 -5305;'145;Western Asia;1876;Paper and paperboard;5910;Export quantity;t;800;1550;3530;2820;3320;620;3700;4300;4300;5700;4300;3900;10300;23600;10600;12800;11000;10100;24800;26600;27100;25000;25500;28800;65900;70646;113287;107849;106217;80711;84611;247230;55319;117452;122405;79511;91062;112282;133222;201458;366500;375965;395464;398571;382740;528086;563833;687295;652408;824642;803686;953138.48;986624;931556;1119499;1438636;1499737;1889483;2086761;2922863;2244800.09;2457146.59;2405042 -5305;'145;Western Asia;1876;Paper and paperboard;5922;Export value;1000 USD;167;400;828;606;744;136;861;803;865;1448;1284;1204;2846;8971;5806;6212;6796;5695;15476;18631;24077;21737;18644;20692;35265;36652;64903;76888;81697;67822;72608;205068;47940;98647;88232;71705;78632;86568;97147;164425;257489;256394;281671;290170;275473;330890;449063;600788;539203;673832;777106;793774;882362;810413;869599;1128998;1199965.75;1566454;1686122;2231478;2061555.83;2758965;2443965 -5305;'145;Western Asia;2042;Graphic papers;5510;Production;t;47800;60200;64400;71300;71200;77500;83400;89200;91800;94300;129900;166900;200300;223500;220000;221000;223000;198000;201500;209000;252000;282000;310000;323000;299000;324000;351000;263000;273000;368000;292000;335600;271000;343000;450000;371000;398000;410000;414000;479800;397600;366600;366200;368200;549200;436200;429400;442400;426400;393400;447400;484400;486400;492313;494675;498226;494962;479287;479280;479280;479410;479280;479280 -5305;'145;Western Asia;2042;Graphic papers;5610;Import quantity;t;41800;44044;62100;58100;74500;82000;106500;127700;157600;123100;191300;132400;132400;146200;144800;133700;173300;206500;312000;333600;283300;352400;292600;370000;350600;476559;596973;491671;431769;524404;536469;733796;1075122;780668;673979;881420;1046803;1190226;1400685;1498598;1401819;1367936;1510369;1880871;2354354;2381521;2957848;3000743;2679008;3194612;3232005;3135990;3070199;3091798;2727202;2680660;2779833;2540949;2650924;2269894;2254109.01;2355848;2093326 -5305;'145;Western Asia;2042;Graphic papers;5622;Import value;1000 USD;9765;10102;12266;12076;14290;16650;18829;22296;29532;25032;38350;31837;39101;71853;79090;59080;92901;114257;176207;201251;205542;239857;204536;220631;211954;320468;436258;358521;338393;399841;420990;525833;675655;546395;683537;779899;799752;784973;875453;1084921;990953;912188;1008319;1259393;1727453;1755423;2310179;2764456;2222162;2818957;3100739;2800427;2715363;2736985;2239319;2296060;2425261.58;2428809;2363921;1841603;2021108.59;2723217;2379507 -5305;'145;Western Asia;2042;Graphic papers;5910;Export quantity;t;;;1300;300;300;200;2600;1000;800;1800;1300;600;4700;8500;2600;3900;4300;2800;3300;6100;5000;2600;1600;1500;1500;4046;4087;6249;6917;2011;4511;19582;15967;27096;36029;8877;13310;14349;12113;33117;49310;63669;69815;107629;90355;134517;118500;117790;145171;179500;119365;109229.48;86155;92487;126533;135999;126797;229875;289048;1092628;546285.76;622415.59;640309 -5305;'145;Western Asia;2042;Graphic papers;5922;Export value;1000 USD;;;338;93;93;48;635;248;221;533;403;226;1483;3263;1739;2258;2443;1885;2468;6076;4936;3131;1409;1090;1125;2705;3474;5679;6256;1653;4389;14908;12124;18308;25662;9551;11859;10351;8651;29266;33339;43630;50797;94080;71584;87056;106289;112852;115982;129098;102512;98575;81746;85154;114315;110170;108161.15;212280;280426;887233;482814.8;689935;692828 -5305;'145;Western Asia;1671;Newsprint;5510;Production;t;23000;27900;27600;29500;28800;30400;27400;21600;23100;20100;49200;75700;92900;103100;93000;93000;101000;86000;90500;90000;127000;146000;149000;154000;146000;151000;157000;117000;129000;152000;93000;134600;94000;110000;151000;78000;60000;98000;68000;128000;88000;54000;54000;54000;84500;0;200;200;200;200;200;200;200;200;200;200;0;0;0;0;70;0;0 -5305;'145;Western Asia;1671;Newsprint;5610;Import quantity;t;17800;19000;28800;27100;43500;44300;61300;72700;91700;52500;100400;55300;57600;59900;64200;68500;78500;82900;145900;167900;118100;145900;109500;156700;154600;200143;213485;220673;201401;221951;199951;279283;453814;341134;377351;491100;555996;460445;617557;647034;508057;473751;457756;558989;833434;828986;1037893;1040950;857381;971159;875447;836058;780617;715999;595850;480768;419325;394041;266223;222709;213392.18;213179;195543 -5305;'145;Western Asia;1671;Newsprint;5622;Import value;1000 USD;2824;3305;4082;4321;6677;6765;8622;10071;12671;7785;17362;10852;13400;22595;29348;28181;33531;34438;60482;74711;67122;71745;53497;65785;69847;96284;110874;121127;121826;127632;115447;142104;216486;144550;242195;341211;289645;218849;317094;374023;323724;249586;240391;268410;489317;492007;650048;805357;573675;615553;631163;566401;516996;471590;327926;257957;226364.12;233071;162276;110000;107397.54;163713;133010 -5305;'145;Western Asia;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;3600;5900;;;500;500;500;;;300;200;200;;496;0;0;1441;0;0;226;400;550;19600;900;1600;3100;1233;1606;8118;3214;3378;8590;8210;12076;8923;14151;14150;4945;9505;11212.48;7759;7892;7413;6394;3419;5607;5842;48568;3356.66;4613.59;4980 -5305;'145;Western Asia;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;1042;1524;;;274;274;274;;;150;100;100;;277;0;0;1223;0;0;104;209;207;9550;445;515;1539;341;761;4420;1626;1787;4393;4231;5672;4426;7865;7473;3615;7225;7065;5938;5037;4698;2919;2652.31;4007;4209;10977;1892;3247;3785 -5305;'145;Western Asia;1674;Printing and writing papers;5510;Production;t;24800;32300;36800;41800;42400;47100;56000;67600;68700;74200;80700;91200;107400;120400;127000;128000;122000;112000;111000;119000;125000;136000;161000;169000;153000;173000;194000;146000;144000;216000;199000;201000;177000;233000;299000;293000;338000;312000;346000;351800;309600;312600;312200;314200;464700;436200;429200;442200;426200;393200;447200;484200;486200;492113;494475;498026;494962;479287;479280;479280;479340;479280;479280 -5305;'145;Western Asia;1674;Printing and writing papers;5610;Import quantity;t;24000;25044;33300;31000;31000;37700;45200;55000;65900;70600;90900;77100;74800;86300;80600;65200;94800;123600;166100;165700;165200;206500;183100;213300;196000;276416;383488;270998;230368;302453;336518;454513;621308;439534;296628;390320;490807;729781;783128;851564;893762;894185;1052613;1321882;1520920;1552535;1919955;1959793;1821627;2223453;2356558;2299932;2289582;2375799;2131352;2199892;2360508;2146908;2384701;2047185;2040716.83;2142669;1897783 -5305;'145;Western Asia;1674;Printing and writing papers;5622;Import value;1000 USD;6941;6797;8184;7755;7613;9885;10207;12225;16861;17247;20988;20985;25701;49258;49742;30899;59370;79819;115725;126540;138420;168112;151039;154846;142107;224184;325384;237394;216567;272209;305543;383729;459169;401845;441342;438688;510107;566124;558359;710898;667229;662602;767928;990983;1238136;1263416;1660131;1959099;1648487;2203404;2469576;2234026;2198367;2265395;1911393;2038103;2198897.47;2195738;2201645;1731603;1913711.04;2559504;2246497 -5305;'145;Western Asia;1674;Printing and writing papers;5910;Export quantity;t;;;1300;300;300;200;2600;1000;800;1800;1300;600;1100;2600;2600;3900;3800;2300;2800;6100;5000;2300;1400;1300;1500;3550;4087;6249;5476;2011;4511;19356;15567;26546;16429;7977;11710;11249;10880;31511;41192;60455;66437;99039;82145;122441;109577;103639;131021;174555;109860;98017;78396;84595;119120;129605;123378;224268;283206;1044060;542929.09;617802;635329 -5305;'145;Western Asia;1674;Printing and writing papers;5922;Export value;1000 USD;;;338;93;93;48;635;248;221;533;403;226;441;1739;1739;2258;2169;1611;2194;6076;4936;2981;1309;990;1125;2428;3474;5679;5033;1653;4389;14804;11915;18101;16112;9106;11344;8812;8310;28505;28919;42004;49010;89687;67353;81384;101863;104987;108509;125483;95287;91510;75808;80117;109617;107251;105508.84;208273;276217;876256;480922.8;686688;689043 -5305;'145;Western Asia;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;250000;6000;2000;2000;3000;3000;3000;84500;14000;15000;5000;6000;8000;11000;11000;12000;12211;12294;12416;12332;11783;11780;11780;11840;11780;11780 -5305;'145;Western Asia;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60892;83513;88079;80310;96561;130519;152561;156237;161283;266698;321079;262169;321544;245041;241527;241547;227274;214427;229069;221729;201732;190675;190049;191985.04;223759;222935 -5305;'145;Western Asia;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41000;53966;63711;55696;57286;76935;101790;110372;113703;190445;261697;203200;249100;224526;212533;202705;193499;164830;163423;159717.29;155181;157561;150580;172526.21;228968;215878 -5305;'145;Western Asia;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;153;2325;2525;2930;3342;3614;3290;6360;3916;11929;15696;27440;25665;25070;15336;25804;19372;24889;24062;24624;26177;26650;68791.44;89079;125947 -5305;'145;Western Asia;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;303;352;1960;2281;2295;2670;2949;2569;3397;2787;9646;14936;22171;17373;17175;13009;19380;14003;13569;12756.94;14046;13697;14747;58364.66;88102;88046 -5305;'145;Western Asia;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62000;318000;322500;295400;296500;295900;297900;367900;413900;402900;429900;415900;382900;433900;467900;468900;474514;476756;480127;476882;462283;462280;462280;462280;462280;462280 -5305;'145;Western Asia;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;285079;279411;329800;415439;386193;437284;514456;636939;637478;721175;689554;660916;867123;1051224;997710;913123;980554;900947;987072;1018520;932899;1171792;1020504;1044685.7;1053265;1001019 -5305;'145;Western Asia;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;210822;188706;271020;293971;279196;312528;390442;514814;516018;602452;706911;596176;872201;1101844;988654;904904;971902;883628;1102659;1104050.99;1050946;1133245;891510;975667.25;1333691;1266800 -5305;'145;Western Asia;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7237;6237;18749;32027;51010;56251;79214;62643;67683;59933;47952;70102;78276;27159;38510;28507;27171;60547;85377;79137;119257;190372;970266;360455.28;453203;454073 -5305;'145;Western Asia;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5894;4698;16019;21171;34592;41047;72558;51158;53107;62243;56064;54966;54552;30629;39897;30866;30794;62615;72671;74127.25;120105;173956;791964;323949.71;506965;519700 -5305;'145;Western Asia;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;22000;27300;12200;13100;13300;13300;12300;8300;11300;7300;4300;2300;2300;5300;5300;5388;5425;5483;5748;5221;5220;5220;5220;5220;5220 -5305;'145;Western Asia;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;383810;420204;433685;398013;411431;484810;654865;727744;753774;932082;949160;898542;1034786;1060293;1060695;1134912;1167971;1015978;983751;1120259;1012277;1022234;836632;804046.09;865645;673829 -5305;'145;Western Asia;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;314302;315687;376167;317562;326120;378465;498751;612950;633695;867234;990491;849111;1082103;1143206;1032839;1090758;1099994;862935;772021;935129.18;989611;910839;689513;765517.58;996845;763819 -5305;'145;Western Asia;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3012;4490;10437;6640;6515;6844;16211;16212;48398;45728;43758;45223;68839;57036;34437;34553;31620;39201;19339;20179;80387;66657;47144;113682.37;75520;55309 -5305;'145;Western Asia;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2615;3260;10526;5467;5117;5293;14180;13626;24880;36833;39277;38607;48760;47285;34438;31933;29943;32999;21011;18624.65;74122;88564;69545;98608.43;91621;81297 -5305;'145;Western Asia;1675;Other paper and paperboard;5510;Production;t;55900;63700;72800;79700;81100;87400;114600;118400;132700;156300;195900;252900;291900;315300;192100;274100;316100;263100;431500;460100;449100;444100;319100;396100;567000;626000;714000;682000;753000;843000;726000;962600;1059000;1080000;1157000;1101000;1216000;1320000;1341000;1694900;1874500;2031800;2183000;2270600;2311518;2294172;2625016;2701659;3917659;4137259;4438859;4487159;4555391;4606311;4633110;4763335;4793326;4542572;4484710;4471862;4614280;4703288;4724502 -5305;'145;Western Asia;1675;Other paper and paperboard;5610;Import quantity;t;91500;100400;105200;112000;139000;140600;188000;228600;218200;225700;270700;240500;227100;253200;255300;268700;260200;307700;320700;320400;346200;352900;349400;387700;343400;369132;401013;390023;420663;416735;638365;667049;918739;1046339;1198024;908765;1151878;1382532;1371096;1444975;1451316;1576406;1669091;2002993;2554976;2655612;3587149;3398307;3316308;3319524;3494387;3400840;3498655;3905168;3728660;3844472;4055514;4176338;4138001;4437793;4494418.22;5047185;4486207 -5305;'145;Western Asia;1675;Other paper and paperboard;5622;Import value;1000 USD;23955;27501;23612;26411;33888;36158;45681;53494;44974;51892;66932;64347;66998;102597;136546;136778;182354;174313;184302;243835;289092;284120;236971;252240;222009;248092;278138;275548;335304;357500;531489;483560;597706;767818;958394;717414;861093;1065459;1139224;1079460;983824;1004431;1047255;1296035;1973246;1989987;2883933;2877481;2545733;2745145;3242068;2849432;2921953;3382704;2923291;3057766;3341284.68;3739189;3606391;3561834;4138048.41;5750885;4483711 -5305;'145;Western Asia;1675;Other paper and paperboard;5910;Export quantity;t;800;1550;2230;2520;3020;420;1100;3300;3500;3900;3000;3300;5600;15100;8000;8900;6700;7300;21500;20500;22100;22400;23900;27300;64400;66600;109200;101600;99300;78700;80100;227648;39352;90356;86376;70634;77752;97933;121109;168341;317190;312296;325649;290942;292385;393569;445333;569505;507237;645142;684321;843909;900469;839069;992966;1302637;1372940;1659608;1797713;1830235;1698514.33;1834731;1764733 -5305;'145;Western Asia;1675;Other paper and paperboard;5922;Export value;1000 USD;167;400;490;513;651;88;226;555;644;915;881;978;1363;5708;4067;3954;4353;3810;13008;12555;19141;18606;17235;19602;34140;33947;61429;71209;75441;66169;68219;190160;35816;80339;62570;62154;66773;76217;88496;135159;224150;212764;230874;196090;203889;243834;342774;487936;423221;544734;674594;695199;800616;725259;755284;1018828;1091804.6;1354174;1405696;1344245;1578741.03;2069030;1751137 -5305;'145;Western Asia;1676;Household and sanitary papers;5510;Production;t;;;;;6700;7200;5400;6800;7700;8800;24900;28300;32000;32000;33000;36000;20000;17000;18000;18000;18000;19000;34000;31000;51000;54000;62000;60000;79000;89000;87000;119000;132000;137000;144000;152000;149000;159000;161000;330200;464600;495600;547000;595000;496000;476000;477000;501000;537000;497000;522900;532100;537301;692816;703600;806200;846900;895474;828005;799202;908110;980608;1008400 -5305;'145;Western Asia;1676;Household and sanitary papers;5610;Import quantity;t;400;1100;800;800;1000;3700;4400;5000;7400;6200;7200;6200;6800;6600;6500;8500;8400;8500;9600;10300;10700;10900;10600;11600;10300;18700;19700;19800;20200;20200;20700;25100;28000;25100;25900;17200;16500;57439;58078;66018;102830;98576;98512;95414;91680;103440;110717;104269;99241;141534;148514;148203;191507;232065;261522;272561;304997;294296;334606;299788;278074.19;378794;381933 -5305;'145;Western Asia;1676;Household and sanitary papers;5622;Import value;1000 USD;109;310;265;188;254;1498;1797;1804;2134;3528;4360;4114;4105;4537;4980;5867;5543;5377;7069;7849;7933;8744;8575;9403;6521;12317;13866;13897;15562;15562;16167;18331;20772;20720;26867;18023;18342;50163;57436;66339;101691;100248;100417;104165;108413;119162;139551;147633;120018;188763;200605;191868;245277;314650;341809;340561;360402.33;389754;427349;351618;348340.01;592324;572500 -5305;'145;Western Asia;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;21700;12000;28500;30800;19300;24677;78454;107978;112584;121379;96586;101845;84248;81877;129604;100104;155612;181038;237392;239317;244029;248066;369912;418901;441171;434511;441209;476360.48;534185;578973 -5305;'145;Western Asia;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;20175;15946;30594;31007;20465;26057;75012;121536;114121;128975;100504;112009;83671;100936;174519;140157;201069;232818;274521;299462;314504;302758;392295;444579.8;468030;502620;463731;524391.08;832590;791601 -5305;'145;Western Asia;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1153000;1175000;1346600;1386400;1515700;1552900;1579500;1610418;1700072;1984916;2043559;3243559;3473159;3790859;3870959;3931990;3826877;3843683;3870394;3860292;3559414;3567495;3585280;3622070;3638590;3632012 -5305;'145;Western Asia;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1002750;968905;1181526;1176392;1318932;1411249;1736690;2159191;2239556;2573439;2594537;2519061;2993322;3166351;3105146;3197456;3534317;3383953;3439964;3630416;3770886;3696502;4022314;4117154.58;4535189;3992999 -5305;'145;Western Asia;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;731323;798318;759821;672103;683977;724607;956336;1291494;1296939;1566705;1971619;1628715;2253968;2743170;2429717;2485240;2796964;2471707;2491888;2755601.25;3096514;2821025;2909440;3524271.85;4792922;3558375 -5305;'145;Western Asia;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56130;81166;77281;184658;178556;183133;175414;171166;259904;307534;393387;359514;469631;471902;581191;647713;577109;728065;912078;925674;1185964;1327149;1361041;1175638.45;1244555;1158787 -5305;'145;Western Asia;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34816;44165;41435;81679;80929;83970;78820;74082;131084;202535;275283;245658;314270;406175;398802;478743;382492;436458;587927;596277.51;822063;826801;807179;981321.91;1144462;888501 -5305;'145;Western Asia;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;25900;27100;48800;74400;84600;104100;133100;180900;168300;188300;74000;207000;260000;236000;307600;327000;319000;315000;225000;275000;484000;537000;611000;575000;635000;726000;615000;839000;921000;939000;1008000;945000;1061000;;;;;;;;;;;;;;;;;;;;;;;;;; -5305;'145;Western Asia;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;9900;17000;20400;13300;27400;84700;112900;132900;133000;158800;185300;165900;149000;174700;212500;220500;192300;221100;223900;218300;237600;245000;264400;291900;240900;244200;243400;243800;285500;295900;532200;498763;679789;818067;992569;703400;876600;;;;;;;;;;;;;;;;;;;;;;;;;; -5305;'145;Western Asia;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;2039;3542;4028;3078;6030;19318;23471;30416;22825;34288;44584;42883;42634;70909;102069;100703;133856;113417;118452;148959;188547;177912;152344;164837;134511;147131;153138;156391;238120;263526;443877;378315;444383;599030;792706;566520;632914;;;;;;;;;;;;;;;;;;;;;;;;;; -5305;'145;Western Asia;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;4900;7300;6200;6200;6200;6200;100;41900;38100;32100;26100;26100;142361;19576;53100;63000;28500;28800;;;;;;;;;;;;;;;;;;;;;;;;;; -5305;'145;Western Asia;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;2899;6495;5034;5034;5034;5034;113;22223;27113;28913;26381;26381;125879;18306;44913;36377;17399;16493;;;;;;;;;;;;;;;;;;;;;;;;;; -5305;'145;Western Asia;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;206000;837000;952000;1042400;1128300;1164900;1182300;1131101;1025837;1143485;1222200;2216300;2331300;2492300;2471300;2522300;2393388;2403191;2416887;2409087;2268762;2269460;2285060;2305860;2303230;2302670 -5305;'145;Western Asia;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;441662;420772;492414;509711;566123;577587;759355;1101287;1126179;1374834;1390045;1368816;1621737;1581039;1624602;1731290;1793452;1713633;1564103;1696893;1789728;1719112;1926090;1911987.28;2081006;1968067 -5305;'145;Western Asia;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;245158;267746;243973;226922;223775;227805;344301;510224;513995;645409;796477;625350;944915;1038507;932157;1090784;1124665;963841;819512;960491.55;1119496;932639;978891;1228668.77;1604103;1118439 -5305;'145;Western Asia;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22290;38323;19982;106076;75028;74838;90371;86064;108536;112354;148732;142300;230621;248940;348623;402316;408738;534917;652193;702892;922365;961439;1017505;839409.02;881158;812781 -5305;'145;Western Asia;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8494;14295;7343;31718;26952;26545;35758;30993;50486;71005;86973;73065;115624;125081;167563;204088;216552;253717;268870;330969.58;477473;397202;398053;521382.95;580897;371519 -5305;'145;Western Asia;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23000;267000;315400;275100;316100;315300;325100;162217;234762;222672;264600;420500;420100;526800;544900;545400;553967;556337;560139;558972;508641;509342;509640;504350;510320;510300 -5305;'145;Western Asia;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;245218;220105;327190;317247;367156;406826;483883;553404;597528;665746;726477;707044;828954;1075333;997404;1007545;1206262;1161958;1277288;1250879;1291933;1339522;1375812;1402904.64;1665567;1324359 -5305;'145;Western Asia;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;224597;228948;267706;242169;236115;256824;324777;463861;478312;556063;750371;662302;817764;1151906;1023804;948670;1155677;1052722;1179109;1214923.11;1327266;1292731;1312339;1542142.11;2220699;1606637 -5305;'145;Western Asia;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4967;15817;16890;25716;52408;53023;53613;53160;51662;69491;105098;91298;108500;170722;125652;146145;95404;132903;185451;144568;173965;250338;207059;205517.79;240297;220781 -5305;'145;Western Asia;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4599;8229;9408;20519;25914;27957;24312;23756;21537;39588;79721;76959;92192;226107;140370;190056;97140;112975;255615;195402.89;266334;343370;306560;330324.3;422848;390100 -5305;'145;Western Asia;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;918500;65500;78100;67300;71300;72700;72100;252100;333100;512100;446100;501100;490100;520100;600100;603100;613626;617941;624164;619943;540159;540160;540160;552720;559200;558060 -5305;'145;Western Asia;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;266578;273103;305290;284065;289792;325728;380420;398842;415695;460557;412624;377842;491936;433669;400130;374503;426350;404490;510391;585896;594928;549961;636248;693023.13;674908;598174 -5305;'145;Western Asia;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;216439;240746;209379;169894;177968;197894;240744;273408;264902;332320;385237;303475;456356;484892;405803;376834;440740;386877;440133;521405.87;587824;541547;566031;680623.67;866221;752174 -5305;'145;Western Asia;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14606;13400;30177;37090;40305;43059;23848;24375;94685;120402;133953;121602;122824;43991;98367;89292;65151;55150;69467;70928;75715;81518;112906;106199.47;90562;99269 -5305;'145;Western Asia;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10962;11034;17706;20296;24043;24928;15774;16368;56950;89796;105422;93523;101186;49237;85820;76098;62493;65350;59542;64981.6;69108;69592;92267;114163.43;115154;107862 -5305;'145;Western Asia;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5500;5500;1100;1600;0;0;0;65000;106373;106659;110659;105659;231659;251659;254659;261190;265896;266214;269204;272290;241852;248533;250420;259140;265840;260982 -5305;'145;Western Asia;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49292;54925;56632;65369;95861;101108;113032;105658;100154;72302;65391;65359;50695;76310;83010;84118;108253;103872;88182;96748;94297;87907;84164;109239.54;113708;102399 -5305;'145;Western Asia;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45129;60878;38763;33118;46119;42084;46514;44001;39730;32913;39534;37588;34933;67865;67953;68952;75882;68267;53134;58780.71;61928;54108;52179;72837.31;101899;81125 -5305;'145;Western Asia;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14267;13626;10232;15776;10815;12213;7582;7567;5021;5287;5604;4314;7686;8249;8549;9960;7816;5095;4967;7286;13919;33854;23571;24512.16;32538;25956 -5305;'145;Western Asia;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10761;10607;6978;9146;4020;4540;2976;2965;2111;2146;3167;2111;5268;5750;5049;8501;6307;4416;3900;4923.43;9148;16637;10299;15451.23;25563;19020 -5305;'145;Western Asia;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;21400;26800;27900;27400;30000;30700;18600;20400;74000;77000;77000;22000;27000;1000;96800;106000;103000;101000;52000;80000;14000;16000;19000;18000;20000;28000;24000;4600;6000;4000;5000;4000;6000;8000;5000;18100;23500;20500;83100;96100;205100;118100;163100;157100;137100;167100;125100;84100;86100;86618;85827;86741;86134;87684;89210;87380;84100;84090;84090 -5305;'145;Western Asia;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;32900;37000;39400;46800;46100;52200;70700;90700;76900;58900;75700;66900;69400;70400;34800;38000;55800;74700;84200;88400;94000;92600;70000;79800;87800;97700;125700;122000;112100;98000;79500;140289;206072;195378;174031;186410;254904;322343;344113;197431;172094;158898;159330;170889;304105;312616;902993;699501;698006;184668;179522;147491;109692;138786;83185;131947;120101;111156;106893;115691;99189.45;133202;111275 -5305;'145;Western Asia;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;5932;6148;9302;11678;12399;15342;20413;21274;19221;13326;16887;16308;18863;25318;28600;28343;38870;52435;54633;80332;84679;89685;68273;70221;73198;82193;101544;100592;78145;75571;66308;84154;128157;141622;134077;130876;206389;283973;283470;253300;210030;220206;222231;235534;573339;573886;1177677;758229;797000;302414;298293;227847;191436;271090;109775;225317;225281.1;252921;358017;300776;265436.55;365639;352836 -5305;'145;Western Asia;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;700;1500;2200;2400;3000;400;300;1300;500;1600;600;700;1500;9900;2200;2300;1000;1700;9100;5000;4600;3400;3000;6400;44300;49400;62800;59000;62700;48100;49500;77603;16266;15541;11191;13591;18091;22503;15266;12606;24554;21156;21137;18942;19374;49417;55922;46514;47619;19899;31381;25326;13439;17931;16835;20647;28365;32473;36053;27985;46515.4;55991;26973 -5305;'145;Western Asia;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;757;4131;1807;1144;1014;1205;5860;3463;6650;4770;3227;5594;22036;23887;34899;39789;42221;35481;37531;58547;13967;15245;9981;14137;19195;20936;18274;18712;20935;17714;17929;16766;17798;29079;39303;38134;37406;29395;35601;21876;22411;28263;16068;38606;50947.29;64081;76275;73335;73028.04;91978;71035 -5305;'145;Western Asia;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4947106.28;4919766;5051903;4282776;5751228;5894583;5824709 -5305;'145;Western Asia;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2088022.73;2404578;2648878;2517192;3285078;3924423;3762312 -5305;'145;Western Asia;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87604.29;95883;81224;66698;79292;97835;97269 -5305;'145;Western Asia;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35340.57;19010;19460;14567;22816;33464;46576 -5305;'145;Western Asia;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41699;50540;36787;32169;39472;55939;57011 -5305;'145;Western Asia;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7259;5331;3776;4002;7664;15240;23127 -5305;'145;Western Asia;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45905.29;45343;44437;34529;39820;41896;40258 -5305;'145;Western Asia;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28081.57;13679;15684;10565;15152;18224;23449 -5305;'145;Western Asia;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78774.76;85421;83516;74703;87471;124499;102215 -5305;'145;Western Asia;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84072.65;90414;93867;88630;98003;149230;114702 -5305;'145;Western Asia;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109970.34;116438;121207;103035;143130;166466;155039 -5305;'145;Western Asia;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20976.89;26793;29237;26862;39897;56668;50006 -5305;'145;Western Asia;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;481349.16;447449;383078;321469;360978;402131;462051 -5305;'145;Western Asia;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;181049.76;213077;196741;191545;249080;304467;288182 -5305;'145;Western Asia;1636;Glue-laminated timber (glulam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6800;0 -5305;'145;Western Asia;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3856;7885 -5305;'145;Western Asia;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8565;6884 -5305;'145;Western Asia;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7005;4072 -5305;'145;Western Asia;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3315;4360 -5305;'145;Western Asia;1688;Cross-laminated timber (CLT or X-lam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -5305;'145;Western Asia;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1402;1237 -5305;'145;Western Asia;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2068;1173 -5305;'145;Western Asia;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;67 -5305;'145;Western Asia;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;52 -5305;'145;Western Asia;1684;I-beams (I-joists);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1800;0 -5305;'145;Western Asia;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2573;3876 -5305;'145;Western Asia;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5349;4495 -5305;'145;Western Asia;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;620;163 -5305;'145;Western Asia;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1143;260 -5305;'145;Western Asia;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4017195.86;3980323;4201654;3509172;4739875;4758870;4561475 -5305;'145;Western Asia;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1710953.47;1972396;2171085;2113229;2751161;3264198;3155194 -5305;'145;Western Asia;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61216.52;27666;28221;41046;80597;82222;183715 -5305;'145;Western Asia;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3975;39874;23129;16313;43305;37773;18440 -5305;'145;Western Asia;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110995.35;166586;153003;166653;259885;262560;262945 -5305;'145;Western Asia;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51654.39;43014;115359;66046;80816;78623;89212 -5305;'145;Western Asia;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3037259.57;3202393;3311116;3109903;3315957;4071334;4073577 -5305;'145;Western Asia;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1894520.74;2222324;2338479;2410367;2793172;3114684;2951757 -5305;'145;Western Asia;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30814.42;33605;37105;39626;54326;50536;37455 -5305;'145;Western Asia;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13305.14;18709;18782;17247;25826;26309;25957 -5305;'145;Western Asia;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;561627.96;572057;571365;540736;601682;748061;704700 -5305;'145;Western Asia;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;131507.19;132650;135335;145530;174222;193862;165802 -5305;'145;Western Asia;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;559801.11;565706;600014;617940;499329;588878;618539 -5305;'145;Western Asia;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;412913.04;394287;428638;429424;385337;421014;471563 -5305;'145;Western Asia;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;833545.91;850522;904416;863488;999140;1211106;1290324 -5305;'145;Western Asia;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;930183.04;1052149;1143688;1193615;1425284;1643074;1537366 -5305;'145;Western Asia;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1051470.17;1180503;1198216;1048113;1161480;1472753;1422559 -5305;'145;Western Asia;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;406612.34;624529;612036;624551;782503;830425;751069 -5400;'150;Europe;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;174290368.9;193823250.9;183483672;175230096;218576413;235118896;207704825 -5400;'150;Europe;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200958858;222251543.7;210117946;201656674;256687896;264879116;232665534 -5400;'150;Europe;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;3115905;3159110;3431135;4024903;4287953;4383000;4435106;5804831;6743925;7693416;7876461;9046686;13103213;18298756;15943954;18977989;20363157;21851544;28266213;33076249;29018957;27107014;25470248;26771193;26545953;33258048;42312641;49826582;53942778;59739132;56608170;56770212;46875343;55208279;70109808;61208484;62745346;64055805;64423344;68512577;63988989;65381305;78057520;86723786;89988026;98883428;119523695;119589453;90330749;103665320;112620674;101200643;103915794;106266634;92968314;90744718;96063588.16;108914682.4;98514224;90849995;116240548;126554741;107398728 -5400;'150;Europe;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;2728039;2770160;2932712;3344394;3590378;3730462;3776328;4798680;5407683;6238245;6476105;7488917;10747621;15413255;13511211;15696787;16838777;19002143;23923183;27556706;25090305;23010098;22957681;24748384;24883762;30234443;38249231;45073089;47732586;51528348;49313257;50231664;44104111;52308990;71447935;63609007;64398791;66408309;66767307;71462490;65461504;69830140;83291000;96264914;100753321;111385215;133188527;134158259;104575279;118443774;131116039;119004931;123365548;126065815;109373490;108138842;117255713.3;131159327.8;120708014;113159859;148626677;152934454;126775411 -5400;'150;Europe;1861;Roundwood;5516;Production;m3;659155000;661544008;669619000;694264000;687484024;687696008;702563000;690998000;689754000;719520000;720457016;700890016;718104016;723050016;705033000;697435008;687549000;676703000;681536000;690109000;690926016;688853008;692440000;712186008;712000000;720181000;731199008;758880518;774499356;798829800;698818500;585774299;530080199;494710998;523954153;499685359;562179307;546056329;575465763;628884516;610572164;618468774;645031197;661657735;697585560;682671356;734031494;653530038;610536667;687577075;704772786;709698248;722774201;738800189;747984430;765282321;773971998;830048839;809163998;796542513;828460646;794581150;753665623 -5400;'150;Europe;1861;Roundwood;5616;Import quantity;m3;22946000;21891300;21976700;24647200;24193950;23728800;23960600;25454500;28499600;31479900;29225100;27159100;34314200;36445300;31443400;32892410;33154691;30558100;32862100;36362100;33741400;30123900;30272000;33048100;34555300;33922714;37270992;39165000;39204064;31034847;35417469;33791838;30068736;40869554;46920582;36003393;43362032;52187654;56179771;62048201;60854391;58091532;59318656;61306975;67714366;65666486;68129419;60308647;42793528;54622147;57235886;53989469;61022158;61359746;58077103;58819487;54849226;62753481;60573599;61496885;62731801;58917624;50730475 -5400;'150;Europe;1861;Roundwood;5622;Import value;1000 USD;562327;532498;547975;643983;654128;650514;627190;690895;807388;844894;853700;917651;1562141;1883037;1609727;1888253;2034183;2007905;2448147;3201782;2516667;2055359;1756150;1761336;1828232;2219548;2628457;2868832;3026998;2991794;2950543;3072583;2252215;3080977;3955722;2929202;3233112;3622072;3695670;3576338;3224443;3213120;3785665;4361680;4634649;4846992;6488464;5894098;3483759;4462770;5294467;4458432;5232165;5233322;4060375;4030757;4039591.29;4939126.36;4379574;4094210;5331802;5907664;5298062 -5400;'150;Europe;1861;Roundwood;5916;Export quantity;m3;19729050;19273100;19421100;20376500;21514700;22426000;23372100;24103100;26241000;30448600;28090500;26570400;33881900;35849400;33672200;33650370;33851816;31691000;32433900;33125400;32650950;29701600;30369400;34143400;36339200;38330268;39549169;40345446;40221964;30063302;34359891;33135441;34275669;37392919;47002155;39820363;47355368;53633199;62528150;73562921;72542734;76077484;77813427;83102234;92357479;95065222;97310737;80840599;61052958;68904331;74076337;67991579;75961868;79437457;74505955;74082396;71307186;74959152;80658510;88060783;81660147;65778109;53995252 -5400;'150;Europe;1861;Roundwood;5922;Export value;1000 USD;305221;310868;284524;317383;355698;372577;375002;405460;435780;527050;534734;545449;952964;1340233;1258319;1254292;1466110;1457805;1783409;2046286;1820380;1501898;1439033;1505222;1594059;1876711;2129279;2387512;2439655;2344637;2320032;2394754;2130003;2237701;3137130;2703640;2886392;2945443;3251271;3471938;3220465;3404931;3924337;4808148;5572615;6226255;8247218;7477903;4577348;5479534;6632029;5591116;6331941;6616063;5184933;5079932;5369081.44;6192264.13;6084041;6348946;7659486;7280217;5791416 -5400;'150;Europe;1862;Roundwood, coniferous;5516;Production;m3;478499000;477005008;480863000;502268000;495245016;493398008;508656000;502093000;504964000;528332000;533100016;521720016;540001016;544651016;531495000;527548008;517685000;508652000;515796000;518496000;516000016;513898008;517406000;531060008;530163000;539878000;550278008;558060208;569065546;598479799;500894200;362705399;338755299;323721599;350517263;322818819;370100208;356036800;368024210;418497840;402396812;410103422;427484977;437888859;479254753;456254943;506427752;436607071;407252820;453425862;464366529;459154749;492711156;508835808;515697028;529067237;539411822;587326577;573206026;567533543;588888503;557589285;523719100 -5400;'150;Europe;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35891594;41485594;39044174;41446787;41568161;39524942;34865494 -5400;'150;Europe;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2556846.55;3123744.22;2665445;2578204;3496267;3671763;3197290 -5400;'150;Europe;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46304563;49077715;55794302;63071581;55651463;45243244;36002679 -5400;'150;Europe;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3318061.25;3783010.05;3932878;4329822;5220895;4402602;3405374 -5400;'150;Europe;1863;Roundwood, non-coniferous;5516;Production;m3;180656000;184539000;188756000;191996000;192239008;194298000;193907000;188905000;184790000;191188000;187357000;179170000;178103000;178399000;173538000;169887000;169864000;168051000;165740000;171613000;174926000;174955000;175034000;181126000;181837000;180303000;180921000;200820310;205433810;200350001;197924300;223068900;191324900;170989399;173436890;176866540;192079099;190019529;207441553;210386676;208175352;208365352;217546220;223768876;218330807;226416413;227603742;216922967;203283847;234151213;240406257;250543499;230063045;229964381;232287402;236215084;234560176;242722262;235957972;229008970;239572143;236991865;229946523 -5400;'150;Europe;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18957632;21267887;21529425;20050098;21163640;19392682;15864981 -5400;'150;Europe;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1482744.74;1815382.14;1714129;1516006;1835535;2235901;2100772 -5400;'150;Europe;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25002623;25881437;24864208;24989202;26008684;20534865;17992573 -5400;'150;Europe;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2051020.19;2409254.08;2151163;2019124;2438591;2877615;2386042 -5400;'150;Europe;1864;Wood fuel;5516;Production;m3;182739000;179463000;184445000;185946000;179760016;181038000;172507000;164161000;153527000;152891000;149440000;143416000;136587000;136113000;131854000;132412000;128576000;124368000;125062000;128528500;133379000;136452000;133562000;138804000;142818500;138216000;140671000;153444510;153666340;157302600;159382700;148815100;121592500;113702900;117615583;114185714;140135271;138233615;141237493;109278255;111949709;112809703;121180635;124497140;122265462;131390916;127360838;131827138;132352940;154945204;151517847;163534517;169626356;164244756;168477303;169014793;171087498;176532645;169985790;169057772;175800134;181334852;175844081 -5400;'150;Europe;1864;Wood fuel;5616;Import quantity;m3;1624700;1732600;2219200;2301700;1616500;1402500;1145200;1094400;1224600;1001900;895000;770200;1333400;1491700;1371800;1220400;1286441;992800;998100;997000;562200;633700;936200;1042500;976900;872800;819100;839800;937900;775100;970600;969308;916220;745675;646869;902227;846784;1165567;1351656;1528219;1747313;2055971;2722248;2650031;2726037;3331467;2974709;3206257;4503690;4250531;5010210;5126035;5862892;5895892;5063152;4902525;4018668;4444098;4188013;3014825;3850642;3659081;3693464 -5400;'150;Europe;1864;Wood fuel;5622;Import value;1000 USD;14236;16876;19920;21313;14345;12763;11585;10047;15439;11712;10381;8541;16984;29309;28744;25523;25688;22043;27144;36662;23247;21986;27557;26885;25500;32141;31444;34529;33923;34444;40504;37077;31341;26999;24628;35143;39394;49144;54407;49158;61001;73514;116679;130961;128932;196052;206704;250221;307679;306514;422745;394499;461471;456328;344554;323076;313521.41;383699.27;366344;284093;358836;507795;499041 -5400;'150;Europe;1864;Wood fuel;5916;Export quantity;m3;1397000;1499600;1907500;1460100;1152100;875500;890000;848800;931200;895700;605200;655200;974500;932800;735800;473000;712126;355500;464300;534000;315400;368100;384200;409700;292600;316700;405000;368100;377900;483700;575900;868893;1146854;1643613;1716940;2047888;3476289;4249667;3181261;3249698;3477950;3300254;3937244;3653149;3831762;4141410;4305828;4455425;5784669;6080193;6842793;7056888;7681604;8263712;8376396;7821308;6910527;6455460;6195707;5082965;6043155;5408688;5024946 -5400;'150;Europe;1864;Wood fuel;5922;Export value;1000 USD;11466;12791;16840;14022;10817;8610;7778;7255;9171;10417;7347;8133;14164;23441;16299;16812;17297;8534;14309;24610;12853;16086;11140;10128;6236;9063;13224;15454;14722;21462;25482;36135;38874;49716;56911;61808;97100;116326;88759;69374;78058;88392;123468;132400;150314;197949;224669;271954;328997;363657;453968;426969;494023;518406;422861;404826;417946.14;493067.86;454191;410000;544316;659803;617691 -5400;'150;Europe;1627;Wood fuel, coniferous;5516;Production;m3;80367000;78792000;82417000;87331000;83300008;82976000;78422000;74706000;71929000;70157000;69773000;69363000;67166000;67608000;65737000;65964000;64272000;62409000;63574000;65182500;67474000;68976000;67201000;70364000;72268000;69443000;72515000;67450200;67102030;69201600;67070400;44198400;33394500;30556300;35746463;37064717;48881021;44458579;41329934;32267182;34976076;36098057;39303376;40634399;41969715;45593319;45814906;45301062;47659354;52865587;52936428;58313586;59724676;56801070;60021050;58450192;61710835;68330238;63747891;63437507;64489264;67372327;63567098 -5400;'150;Europe;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1807758;1906157;1558518;1289013;1638008;1378265;1848478 -5400;'150;Europe;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;123732.69;148948.58;134266;110837;124043;134296;168230 -5400;'150;Europe;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2446760;2283150;2333807;2069044;2133431;2019088;1775839 -5400;'150;Europe;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120066.57;129216.01;120710;122969;132188;153798;151212 -5400;'150;Europe;1628;Wood fuel, non-coniferous;5516;Production;m3;102372000;100671000;102028000;98615000;96460008;98062000;94085000;89455000;81598000;82734000;79667000;74053000;69421000;68505000;66117000;66448000;64304000;61959000;61488000;63346000;65905000;67476000;66361000;68440000;70550500;68773000;68156000;85994310;86564310;88101000;92312300;104616700;88198000;83146600;81869120;77120997;91254250;93775036;99907559;77011073;76973633;76711646;81877259;83862741;80295747;85797597;81545932;86526076;84693586;102079617;98581419;105220931;109901680;107443686;108456253;110564601;109376663;108202407;106237899;105620265;111310870;113962525;112276983 -5400;'150;Europe;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2210910;2537941;2629495;1725812;2212634;2280816;1844986 -5400;'150;Europe;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;189788.72;234750.69;232078;173256;234793;373499;330811 -5400;'150;Europe;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4463767;4172310;3861900;3013921;3909724;3389600;3249107 -5400;'150;Europe;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;297879.57;363851.85;333481;287031;412128;506005;466479 -5400;'150;Europe;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;1624700;1732600;2219200;2301700;1616500;1402500;1145200;1094400;1224600;1001900;895000;770200;1333400;1491700;1371800;1220400;1286441;992800;998100;997000;562200;633700;936200;1042500;976900;872800;819100;839800;937900;775100;970600;969308;916220;745675;646869;902227;846784;1165567;1351656;1528219;1747313;2055971;2722248;2650031;2726037;3331467;2974709;3206257;4503690;4250531;5010210;5126035;5862892;5895892;5063152;4902525;;;;;;; -5400;'150;Europe;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;14236;16876;19920;21313;14345;12763;11585;10047;15439;11712;10381;8541;16984;29309;28744;25523;25688;22043;27144;36662;23247;21986;27557;26885;25500;32141;31444;34529;33923;34444;40504;37077;31341;26999;24628;35143;39394;49144;54407;49158;61001;73514;116679;130961;128932;196052;206704;250221;307679;306514;422745;394499;461471;456328;344554;323076;;;;;;; -5400;'150;Europe;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;1397000;1499600;1907500;1460100;1152100;875500;890000;848800;931200;895700;605200;655200;974500;932800;735800;473000;712126;355500;464300;534000;315400;368100;384200;409700;292600;316700;405000;368100;377900;483700;575900;868893;1146854;1643613;1716940;2047888;3476289;4249667;3181261;3249698;3477950;3300254;3937244;3653149;3831762;4141410;4305828;4455425;5784669;6080193;6842793;7056888;7681604;8263712;8376396;7821308;;;;;;; -5400;'150;Europe;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;11466;12791;16840;14022;10817;8610;7778;7255;9171;10417;7347;8133;14164;23441;16299;16812;17297;8534;14309;24610;12853;16086;11140;10128;6236;9063;13224;15454;14722;21462;25482;36135;38874;49716;56911;61808;97100;116326;88759;69374;78058;88392;123468;132400;150314;197949;224669;271954;328997;363657;453968;426969;494023;518406;422861;404826;;;;;;; -5400;'150;Europe;1865;Industrial roundwood;5516;Production;m3;476416000;482081008;485174000;508318000;507724008;506658008;530056000;526837000;536227000;566629000;571017016;557474016;581517016;586937016;573179000;565023008;558973000;552335000;556474000;561580500;557547016;552401008;558878000;573382008;569181500;581965000;590528008;605436008;620833016;641527200;539435800;436959199;408487699;381008098;406338570;385499645;422044036;407822714;434228270;519606261;498622455;505659071;523850562;537160595;575320098;551280440;606670656;521702900;478183727;532631871;553254939;546163731;553147845;574555433;579507127;596267528;602884500;653516194;639178208;627484741;652660512;613246298;577821542 -5400;'150;Europe;1865;Industrial roundwood;5616;Import quantity;m3;21321300;20158700;19757500;22345500;22577450;22326300;22815400;24360100;27275000;30478000;28330100;26388900;32980800;34953600;30071600;31672010;31868250;29565300;31864000;35365100;33179200;29490200;29335800;32005600;33578400;33049914;36451892;38325200;38266164;30259747;34446869;32822530;29152516;40123879;46273713;35101166;42515248;51022087;54828115;60519982;59107078;56035561;56596408;58656944;64988329;62335019;65154710;57102390;38289838;50371616;52225676;48863434;55159266;55463854;53013951;53916962;50830558;58309383;56385586;58482060;58881159;55258543;47037011 -5400;'150;Europe;1865;Industrial roundwood;5622;Import value;1000 USD;548091;515622;528055;622670;639783;637751;615605;680848;791949;833182;843319;909110;1545157;1853728;1580983;1862730;2008495;1985862;2421003;3165120;2493420;2033373;1728593;1734451;1802732;2187407;2597013;2834303;2993075;2957350;2910039;3035506;2220874;3053978;3931094;2894059;3193718;3572928;3641263;3527180;3163442;3139606;3668986;4230719;4505717;4650940;6281760;5643877;3176080;4156256;4871722;4063933;4770694;4776994;3715821;3707681;3726069.88;4555427.09;4013230;3810117;4972966;5399869;4799021 -5400;'150;Europe;1865;Industrial roundwood;5916;Export quantity;m3;18332050;17773500;17513600;18916400;20362600;21550500;22482100;23254300;25309800;29552900;27485300;25915200;32907400;34916600;32936400;33177370;33139690;31335500;31969600;32591400;32335550;29333500;29985200;33733700;36046600;38013568;39144169;39977346;39844064;29579602;33783991;32266548;33128815;35749306;45285215;37772475;43879079;49383532;59346889;70313223;69064784;72777230;73876183;79449085;88525717;90923812;93004909;76385174;55268289;62824138;67233544;60934691;68280264;71173745;66129559;66261088;64396659;68503692;74462803;82977818;75616992;60369421;48970306 -5400;'150;Europe;1865;Industrial roundwood;5922;Export value;1000 USD;293755;298077;267684;303361;344881;363967;367224;398205;426609;516633;527387;537316;938800;1316792;1242020;1237480;1448813;1449271;1769100;2021676;1807527;1485812;1427893;1495094;1587823;1867648;2116055;2372058;2424933;2323175;2294550;2358619;2091129;2187985;3080219;2641832;2789292;2829117;3162512;3402564;3142407;3316539;3800869;4675748;5422301;6028306;8022549;7205949;4248351;5115877;6178061;5164147;5837918;6097657;4762072;4675106;4951135.29;5699196.27;5629850;5938946;7115170;6620414;5173725 -5400;'150;Europe;1866;Industrial roundwood, coniferous;5516;Production;m3;398132000;398213008;398446000;414937000;411945008;410422008;430234000;427387000;433035000;458175000;463327016;452357016;472835016;477043016;465758000;461584008;453413000;446243000;452222000;453313500;448526016;444922008;450205000;460696008;457895000;470435000;477763008;490610008;501963516;529278199;433823800;318506999;305360799;293165299;314770800;285754102;321219187;311578221;326694276;386230658;367420736;374005365;388181601;397254460;437285038;410661624;460612846;391306009;359593466;400560275;411430101;400841163;432986480;452034738;455675978;470617045;477700987;518996339;509458135;504096036;524399239;490216958;460152002 -5400;'150;Europe;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13790207;18623015;15583837;13980189;19336145;21055841;17413456;20905267;24323908;29188783;34628434;34199558;32474881;33758713;35766356;38837878;37847383;39489381;34076895;25527582;32526156;32436728;29224502;34304618;33874384;34099140;35330061;34083836;39579437;37485656;40157774;39930153;38146677;33017016 -5400;'150;Europe;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1037748;1164343;1064731;775128;1110603;1367949;1150514;1267490;1415439;1687767;1626006;1481054;1520202;1843258;2183861;2367271;2494834;3360526;2884623;1898684;2474254;2904830;2483568;2915219;2958765;2403296;2425790;2433113.86;2974795.64;2531179;2467367;3372224;3537467;3029060 -5400;'150;Europe;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17400595;21936052;19400710;23320098;23732301;26269201;24050001;28358217;29281218;39040149;47890783;47416959;50543156;50682626;55872544;62137008;62942810;64111684;51200248;41524482;44210823;47024449;40415096;45943724;48208880;44831437;45704331;43857803;46794565;53460495;61002537;53518032;43224156;34226840 -5400;'150;Europe;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1409853;1464940;1396553;1346744;1390845;1749226;1581444;1686975;1538239;1923316;2099117;2048843;2291830;2534814;3209670;3774124;4180796;5635402;4584719;3115905;3564020;4262284;3434552;3944137;4072743;3202089;3158878;3197994.67;3653794.04;3812168;4206853;5088707;4248804;3254162 -5400;'150;Europe;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13790207;18623015;15583837;13980189;19336145;21055841;17413456;20905267;24323908;29188783;34628434;34199558;32474881;33758713;35766356;38837878;37847383;39489381;34076895;25527582;32526156;32436728;29224502;34304618;33874384;34099140;35330061;34083836;39579437;37485656;40157774;39930153;38146677;33017016 -5400;'150;Europe;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1037748;1164343;1064731;775128;1110603;1367949;1150514;1267490;1415439;1687767;1626006;1481054;1520202;1843258;2183861;2367271;2494834;3360526;2884623;1898684;2474254;2904830;2483568;2915219;2958765;2403296;2425790;2433113.86;2974795.64;2531179;2467367;3372224;3537467;3029060 -5400;'150;Europe;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17400595;21936052;19400710;23320098;23732301;26269201;24050001;28358217;29281218;39040149;47890783;47416959;50543156;50682626;55872544;62137008;62942810;64111684;51200248;41524482;44210823;47024449;40415096;45943724;48208880;44831437;45704331;43857803;46794565;53460495;61002537;53518032;43224156;34226840 -5400;'150;Europe;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1409853;1464940;1396553;1346744;1390845;1749226;1581444;1686975;1538239;1923316;2099117;2048843;2291830;2534814;3209670;3774124;4180796;5635402;4584719;3115905;3564020;4262284;3434552;3944137;4072743;3202089;3158878;3197994.67;3653794.04;3812168;4206853;5088707;4248804;3254162 -5400;'150;Europe;1867;Industrial roundwood, non-coniferous;5516;Production;m3;78284000;83868000;86728000;93381000;95779000;96236000;99822000;99450000;103192000;108454000;107690000;105117000;108682000;109894000;107421000;103439000;105560000;106092000;104252000;108267000;109021000;107479000;108673000;112686000;111286500;111530000;112765000;114826000;118869500;112249001;105612000;118452200;103126900;87842799;91567770;99745543;100824849;96244493;107533994;133375603;131201719;131653706;135668961;139906135;138035060;140618816;146057810;130396891;118590261;132071596;141824838;145322568;120161365;122520695;123831149;125650483;125183513;134519855;129720073;123388705;128261273;123029340;117669540 -5400;'150;Europe;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16469540;15823854;17238693;15172327;20787734;25217872;17687710;21609981;26698179;25639332;25891548;24907520;23560680;22837695;22890588;26150451;24487636;25665329;23025495;12762256;17845460;19788948;19638932;20854648;21589470;18914811;18586901;16746722;18729946;18899930;18324286;18951006;17111866;14019995 -5400;'150;Europe;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1919602;1745696;1970775;1445746;1943375;2563145;1743545;1926228;2157489;1953496;1901174;1682388;1619404;1825728;2046858;2138446;2156106;2921234;2759254;1277396;1682002;1966892;1580365;1855475;1818229;1312525;1281891;1292956.02;1580631.45;1482051;1342750;1600742;1862402;1769961 -5400;'150;Europe;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12179007;11847939;12865838;9808717;12017005;19016014;13722474;15520862;20102314;20306740;22422440;21647825;22234074;23193557;23576541;26388709;27981002;28893225;25184926;13743807;18613315;20209095;20519595;22336540;22964865;21298122;20556757;20538856;21709127;21002308;21975281;22098960;17145265;14743466 -5400;'150;Europe;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;913322;829610;962066;744385;797140;1330993;1060388;1102317;1290878;1239196;1303447;1093564;1024709;1266055;1466078;1648177;1847510;2387147;2621230;1132446;1551857;1915777;1729595;1893781;2024914;1559983;1516228;1753140.62;2045402.23;1817682;1732093;2026463;2371610;1919563 -5400;'150;Europe;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3363700;2896090;2811809;2008698;1851010;1942900;2003500;2460030;2941400;3001707;2413355;2252870;2031380;1491839;1352265;1293609;1136863;1182226;874066;467322;391757;380360;271469;232965;187490;212783;213555;232232;304372;271893;275222;363466;480561;978242 -5400;'150;Europe;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;834779;721604;732295;494395;549277;583268;556897;584362;648369;640515;562908;481284;446599;445163;485001;465295;431064;646540;446336;218327;195476;214228;162578;187895;127161;106830;110166;104802.6;121909.5;98819;104329;189326;244522;196575 -5400;'150;Europe;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78191;141091;114200;50200;48800;68840;213618;244119;172635;110143;100833;109923;112865;132622;122652;63251;37227;47979;50691;33960;49021;45270;53048;49291;52937;56332;50593;29793;33391;40864;76114 -5400;'150;Europe;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32492;36852;36192;19623;22310;15080;33445;52611;47812;30550;36238;47079;41267;40319;61400;48675;24812;31908;33653;35174;54063;44805;41225;41417;25829.69;30792;30672;20414;22293;41895;35361 -5400;'150;Europe;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13105840;12927764;14426884;13163629;18936724;23274972;15684210;19149951;23756779;22637625;23478193;22654650;21529300;21345856;21538323;24856842;23350773;24483103;22151429;12294934;17453703;19408588;19367463;20621683;21401980;18702028;18373346;16514490;18425574;18628037;18049064;18587540;16631305;13041753 -5400;'150;Europe;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1084823;1024092;1238480;951351;1394098;1979877;1186648;1341866;1509120;1312981;1338266;1201104;1172805;1380565;1561857;1673151;1725042;2274694;2312918;1059069;1486526;1752664;1417787;1667580;1691068;1205695;1171725;1188153.43;1458721.95;1383232;1238421;1411416;1617880;1573386 -5400;'150;Europe;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12179007;11847939;12865838;9730526;11875914;18901814;13672274;15472062;20033474;20093122;22178321;21475190;22123931;23092724;23466618;26275844;27848380;28770573;25121675;13706580;18565336;20158404;20485635;22287519;22919595;21245074;20507466;20485919;21652795;20951715;21945488;22065569;17104401;14667352 -5400;'150;Europe;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;913322;829610;962066;711893;760288;1294801;1040765;1080007;1275798;1205751;1250836;1045752;994159;1229817;1418999;1606910;1807191;2325747;2572555;1107634;1519949;1882124;1694421;1839718;1980109;1518758;1474811;1727310.93;2014610.23;1787010;1711679;2004170;2329715;1884202 -5400;'150;Europe;1868;Sawlogs and veneer logs;5516;Production;m3;293940000;295241000;294269000;310148000;274328000;271849000;284673000;286080000;294614000;311200000;311641008;311075008;321321008;315853008;303139000;306624008;308658000;306887000;308349000;310940000;303947008;298744008;305894000;312136008;308367000;314254000;316623008;323283008;332858008;367841962;282661727;239279020;227297462;221999727;237805406;229712712;243037025;237256636;247987108;325251078;305912700;308532032;321254742;329597337;355087502;338403956;378430904;313047212;285728447;320117182;330143718;329427267;332257513;350240496;351465327;361240347;368165291;400516511;390962712;387744762;405039304;376819786;351464110 -5400;'150;Europe;1868;Sawlogs and veneer logs;5616;Import quantity;m3;8508300;8361300;9014900;9686600;9167150;9731200;9986600;11018700;12300800;11815200;11962800;13096400;17032600;15471700;11623900;14618000;15124469;13211300;13726200;15031800;12842900;11681800;11651900;11695600;11792100;11584414;12027692;13060300;13991664;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5400;'150;Europe;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;334292;324920;362988;420919;419610;433369;415132;482599;572303;527859;558788;677128;1233543;1312183;962964;1351519;1482942;1451776;1785267;2269070;1624942;1332311;1162795;1136179;1139238;1379721;1568816;1728805;1797933;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5400;'150;Europe;1868;Sawlogs and veneer logs;5916;Export quantity;m3;4334850;4746300;4916500;5550800;6851500;7612600;7909500;8946900;9096800;10682000;10490700;11210700;14614800;14972900;12626800;14014770;14901190;14490500;13625500;13008800;11952450;11687200;12586000;13437200;14175200;15365672;15782211;16940846;17142064;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5400;'150;Europe;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;99997;114717;106364;122729;152461;165674;168978;205828;205845;246851;257718;294375;595644;782139;595358;668571;864199;885517;1115185;1163773;936426;798578;810765;828416;864043;1028778;1159734;1401999;1474312;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5400;'150;Europe;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;242058000;241426000;239470000;252735000;221298000;218336000;228716000;230551000;237342000;251396000;252768008;252918008;261283008;257116008;245993000;250641008;251694000;248204000;250922000;253105000;246489008;243111008;250802000;254936008;252568000;258612000;260484008;265710008;273892008;309189145;227859663;184475387;179377772;180401583;194670580;186028403;198082426;193797610;202840569;266658736;249692124;252755642;263441453;269871589;297003303;279013531;315838356;257786100;237667554;267093016;274614659;269062216;286605087;302929416;303987836;312836056;320300127;349319152;341851053;341060313;356308681;329304245;307426965 -5400;'150;Europe;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;2556900;2661000;2756500;2710200;2734950;3088500;3249900;3425100;3350400;3556200;3264600;3546400;5503800;6003500;4050500;5204300;5774709;5054300;5266200;6153400;5467100;5157700;5111600;4984400;5353400;5103407;5670980;5873726;6588458;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5400;'150;Europe;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;60621;60491;59847;60987;61777;68916;69213;71418;76173;82487;81479;92756;189460;279309;199767;248127;301848;299135;359783;479343;381611;317680;270365;258020;257080;321132;402750;460033;505505;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5400;'150;Europe;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;3291900;3757600;3934200;4498800;5752100;6399400;6567400;7496800;7611800;9040000;8741700;9366200;12430900;12632900;10607800;11980770;12528710;12196500;11184400;10385700;9538300;9470600;10259600;10870500;11552400;12571468;12733904;12899724;12479139;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5400;'150;Europe;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;65978;81019;72512;86448;111782;122653;126338;159318;156327;190812;199666;224203;476515;626847;465328;520240;661037;650143;830197;822346;675862;581697;588421;611713;640314;739568;790117;961867;954668;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5400;'150;Europe;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;51882000;53815000;54799000;57413000;53030000;53513000;55957000;55529000;57272000;59804000;58873000;58157000;60038000;58737000;57146000;55983000;56964000;58683000;57427000;57835000;57458000;55633000;55092000;57200000;55799000;55642000;56139000;57573000;58966000;58652817;54802064;54803633;47919690;41598144;43134826;43684309;44954599;43459026;45146539;58592342;56220576;55776390;57813289;59725748;58084199;59390425;62592548;55261112;48060893;53024166;55529059;60365051;45652426;47311080;47477491;48404291;47865164;51197359;49111659;46684449;48730623;47515541;44037145 -5400;'150;Europe;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;5951400;5700300;6258400;6976400;6432200;6642700;6736700;7593600;8950400;8259000;8698200;9550000;11528800;9468200;7573400;9413700;9349760;8157000;8460000;8878400;7375800;6524100;6540300;6711200;6438700;6481007;6356712;7186574;7403206;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5400;'150;Europe;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;273671;264429;303141;359932;357833;364453;345919;411181;496130;445372;477309;584372;1044083;1032874;763197;1103392;1181094;1152641;1425484;1789727;1243331;1014631;892430;878159;882158;1058589;1166066;1268772;1292428;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5400;'150;Europe;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;1042950;988700;982300;1052000;1099400;1213200;1342100;1450100;1485000;1642000;1749000;1844500;2183900;2340000;2019000;2034000;2372480;2294000;2441100;2623100;2414150;2216600;2326400;2566700;2622800;2794204;3048307;4041122;4662925;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5400;'150;Europe;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;34019;33698;33852;36281;40679;43021;42640;46510;49518;56039;58052;70172;119129;155292;130030;148331;203162;235374;284988;341427;260564;216881;222344;216703;223729;289210;369617;440132;519644;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5400;'150;Europe;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;150643208;160388848;166585987;164922622;169168518;172553012;177963616;190387048;182293958;198821657;183482117;168234322;186908419;195903848;191913599;195901266;198652704;202300697;208729500;208815816;223344301;218464045;210636881;217929421;209317184;200319689 -5400;'150;Europe;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106480805;109366599;105182539;103838025;106843105;107771095;111118513;123342365;114303614;127773168;118701912;108575355;119274268;121849595;119177166;134230316;136437094;139124625;144847461;144653998;155027885;152167202;147932000;153010571;146877289;139398461 -5400;'150;Europe;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44162403;51022249;61403448;61084597;62325413;64781917;66845103;67044683;67990344;71048489;64780205;59658967;67634151;74054253;72736433;61670950;62215610;63176072;63882039;64161818;68316416;66296843;62704881;64918850;62439895;60921228 -5400;'150;Europe;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5616;Import quantity;m3;9680900;8878200;7981200;9961200;10570400;10217200;10620500;11196900;12577500;15881500;13613600;10662200;12821300;15949900;15957300;14699400;14220500;13567800;15501900;17727100;17913600;15713800;15492400;18093600;19497900;19294400;22166900;22944000;21420000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5400;'150;Europe;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5622;Import value;1000 USD;153135;133289;112026;144862;160058;152260;152473;150908;167733;248417;223323;172407;230006;419185;510808;419049;410013;396803;489813;741925;742335;591983;470643;503769;573686;699890;907877;981312;1004990;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5400;'150;Europe;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5916;Export quantity;m3;9465500;8677100;8466700;9624300;9996500;10329000;11305100;11049700;12735100;15397500;13808400;11714800;15033600;16778100;16644300;16076600;15113400;13915100;15753300;16871700;17598900;15119000;15296600;18321500;19936800;20913596;21609458;21612200;21211600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5400;'150;Europe;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5922;Export value;1000 USD;120928;109116;94614;116143;126591;123632;131557;125716;146868;192446;193230;165755;238727;387845;468314;418912;406277;373248;468235;647469;645006;505921;468871;539527;589143;705740;810609;861920;833913;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5400;'150;Europe;1870;Pulpwood and particles (1961-1997);5516;Production;m3;86779000;85701000;84405000;93332000;94302000;97607000;111688000;106478000;114603000;128245000;133557008;124410008;138043008;150459008;145460000;137144000;130471000;131742000;139209000;139780000;142067008;140570000;139785000;145196000;145059000;151439000;157708000;162392000;166921008;157407555;145542477;128838861;127940965;128563711;139708167;125643034;128171512;;;;;;;;;;;;;;;;;;;;;;;;;; -5400;'150;Europe;1870;Pulpwood and particles (1961-1997);5616;Import quantity;m3;9680900;8878200;7981200;9961200;10570400;10217200;10620500;11196900;12577500;15881500;13613600;10662200;12821300;15949900;15957300;14699400;14220500;13567800;15501900;17727100;17913600;15713800;15492400;18093600;19497900;19294400;22166900;22944000;21420000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5400;'150;Europe;1870;Pulpwood and particles (1961-1997);5622;Import value;1000 USD;153135;133289;112026;144862;160058;152260;152473;150908;167733;248417;223323;172407;230006;419185;510808;419049;410013;396803;489813;741925;742335;591983;470643;503769;573686;699890;907877;981312;1004990;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5400;'150;Europe;1870;Pulpwood and particles (1961-1997);5916;Export quantity;m3;9465500;8677100;8466700;9624300;9996500;10329000;11305100;11049700;12735100;15397500;13808400;11714800;15033600;16778100;16644300;16076600;15113400;13915100;15753300;16871700;17598900;15119000;15296600;18321500;19936800;20913596;21609458;21612200;21211600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5400;'150;Europe;1870;Pulpwood and particles (1961-1997);5922;Export value;1000 USD;120928;109116;94614;116143;126591;123632;131557;125716;146868;192446;193230;165755;238727;387845;468314;418912;406277;373248;468235;647469;645006;505921;468871;539527;589143;705740;810609;861920;833913;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5400;'150;Europe;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;77981000;74479000;72714000;76784000;75529000;78677000;90841000;86332000;91690000;102637000;107633008;99116008;111304008;120918008;116543000;110932000;103208000;103695000;109555000;107211000;110106008;109571000;106855000;111157000;111230000;116745000;122053000;126092000;128532008;123057474;113278055;92582387;93349543;92707701;102623556;85766480;89118647;;;;;;;;;;;;;;;;;;;;;;;;;; -5400;'150;Europe;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;8798000;11222000;11691000;16548000;18773000;18930000;20847000;20146000;22913000;25608000;25924000;25294000;26739000;29541000;28917000;26212000;27263000;28047000;29654000;32569000;31961000;30999000;32930000;34039000;33829000;34694000;35655000;36300000;38389000;34350081;32264422;36256474;34591422;35856010;37084611;39876554;39052865;;;;;;;;;;;;;;;;;;;;;;;;;; -5400;'150;Europe;1871;Other industrial roundwood;5516;Production;m3;95697000;101139008;106500000;104838000;139094008;137202008;133695000;134279000;127010000;127184000;125819000;121989000;122153000;120625000;124580000;121255000;119844000;113706000;108916000;110860500;111533000;113087000;113199000;116050000;115755500;116272000;116197000;119761000;121054000;116277683;111231596;68841318;53249272;30444660;28824997;30143899;50835499;19922870;25852314;27769196;27787133;27958521;30042808;29599642;29845548;30582526;29418095;25173571;24220958;25606270;27207373;24822865;24989066;25662233;25741103;26297681;25903393;29655382;29751451;29103098;29691787;27109328;26037743 -5400;'150;Europe;1871;Other industrial roundwood;5616;Import quantity;m3;3132100;2919200;2761400;2697700;2839900;2377900;2208300;2144500;2396700;2781300;2753700;2630300;3126900;3532000;2490400;2354610;2523281;2786200;2635900;2606200;2422700;2094600;2191500;2216400;2288400;2171100;2257300;2320900;2854500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5400;'150;Europe;1871;Other industrial roundwood;5622;Import value;1000 USD;60664;57413;53041;56889;60115;52122;48000;47341;51913;56906;61208;59575;81608;122360;107211;92162;115540;137283;145923;154125;126143;109079;95155;94503;89808;107796;120320;124186;190152;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5400;'150;Europe;1871;Other industrial roundwood;5916;Export quantity;m3;4531700;4350100;4130400;3741300;3514600;3608900;3267500;3257700;3477900;3473400;3186200;2989700;3259000;3165600;3665300;3086000;3125100;2929900;2590800;2710900;2784200;2527300;2102600;1975000;1934600;1734300;1752500;1424300;1490400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5400;'150;Europe;1871;Other industrial roundwood;5922;Export value;1000 USD;72830;74244;66706;64489;65829;74661;66689;66661;73896;77336;76439;77186;104429;146808;178348;149997;178337;190506;185680;210434;226095;181313;148257;127151;134637;133130;145712;108139;116708;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5400;'150;Europe;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;78093000;82308008;86262000;85418000;115118008;113409008;110677000;110504000;104003000;104142000;102926000;100323000;100248000;99009000;103222000;100011000;98511000;94344000;91745000;92997500;91931000;92240000;92548000;94603000;94097000;95078000;95226000;98808000;99539500;97031580;92686082;41449225;32633484;20056015;17476664;13959219;34018114;11299806;14487108;14389383;13890587;14406618;16969053;16264358;16939370;17344479;17001322;14817997;13350557;14192991;14965847;12601781;12151077;12668228;12563517;12933528;12746862;14649302;15439880;15103723;15079987;14035424;13326576 -5400;'150;Europe;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;17604000;18831000;20238000;19420000;23976000;23793000;23018000;23775000;23007000;23042000;22893000;21666000;21905000;21616000;21358000;21244000;21333000;19362000;17171000;17863000;19602000;20847000;20651000;21447000;21658500;21194000;20971000;20953000;21514500;19246103;18545514;27392093;20615788;10388645;11348333;16184680;16817385;8623064;11365206;13379813;13896546;13551903;13073755;13335284;12906178;13238047;12416773;10355574;10870401;11413279;12241526;12221084;12837989;12994005;13177586;13364153;13156531;15006080;14311571;13999375;14611800;13073904;12711167 -5400;'150;Europe;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;3132100;2919200;2761400;2697700;2839900;2377900;2208300;2144500;2396700;2781300;2753700;2630300;3126900;3532000;2490400;2354610;2523281;2786200;2635900;2606200;2422700;2094600;2191500;2216400;2288400;2171100;2257300;2320900;2854500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5400;'150;Europe;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;60664;57413;53041;56889;60115;52122;48000;47341;51913;56906;61208;59575;81608;122360;107211;92162;115540;137283;145923;154125;126143;109079;95155;94503;89808;107796;120320;124186;190152;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5400;'150;Europe;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;4531700;4350100;4130400;3741300;3514600;3608900;3267500;3257700;3477900;3473400;3186200;2989700;3259000;3165600;3665300;3086000;3125100;2929900;2590800;2710900;2784200;2527300;2102600;1975000;1934600;1734300;1752500;1424300;1490400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5400;'150;Europe;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;72830;74244;66706;64489;65829;74661;66689;66661;73896;77336;76439;77186;104429;146808;178348;149997;178337;190506;185680;210434;226095;181313;148257;127151;134637;133130;145712;108139;116708;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5400;'150;Europe;1630;Wood charcoal;5510;Production;t;296259;320233;330021;321624;328405;334554;343965;341223;358132;332089;321172;330045;327277;340950;371586;348483;344304;349773;342261;367153;358569;371714;374668;356129;342427;350383;350729;375577;369851;392202;396404;540002;518444;525740;408011;382011;416469;470960;379514;296845;303528;382257;462988;496256;511311;677614;684695;531031;590427;568030;548413;529338;538597;578340;579966;610630;701340;656592;642828;625745;493917;566780;541895 -5400;'150;Europe;1630;Wood charcoal;5610;Import quantity;t;99800;86000;85158;82700;71800;61500;68300;72100;80433;93858;92500;71200;76900;109400;103900;127590;117593;117700;135000;173800;166700;206100;221100;245500;277700;254900;244800;207200;304500;311323;292286;303605;314243;302148;332955;363918;388589;499731;396522;422724;490294;496392;571739;632617;738853;713240;795143;801802;888002;907958;933470;953517;954355;991485;1044261;1029125;1093524;1299551;1189836;1116516;1112742;1067737;1019888 -5400;'150;Europe;1630;Wood charcoal;5622;Import value;1000 USD;5788;5399;5337;5118;4830;4339;4716;5029;5346;6453;8623;7611;9125;18206;20547;24050;23913;27457;35648;56468;53537;46371;43356;51607;54181;61309;66207;68893;83327;98030;90276;118941;106878;96999;114375;125800;128696;137199;123318;123606;133198;139428;189428;237335;279977;287930;340986;385524;422252;431436;474857;457513;494041;515151;475479;477466;517733.43;608054.93;601990;608783;650723;692881;681092 -5400;'150;Europe;1630;Wood charcoal;5910;Export quantity;t;71200;73700;84600;72000;69600;66600;77200;70400;94700;107800;69500;51800;45800;79100;78100;87700;85440;73900;79900;107600;91400;119000;158500;147000;130100;123900;128400;135600;156000;119300;120200;138094;127981;114911;110140;118700;154342;159538;175056;192040;260110;218700;350623;392853;408490;533535;376591;331573;391953;371488;401466;387403;393000;438647;478814;546612;649910;689377;601819;636856;617025;540470;537027 -5400;'150;Europe;1630;Wood charcoal;5922;Export value;1000 USD;3698;4077;4583;4020;3870;3612;3921;3644;4633;6333;5742;5413;5779;10938;14915;16445;16467;15318;22031;35559;27192;29188;32970;32987;29352;32522;36735;38081;40719;43040;39782;52561;48088;45332;49545;57704;61432;47437;52845;54658;67678;64201;113709;138165;146665;174789;173369;198019;225750;207632;235222;231254;254561;275819;259240;293697;328330.28;369658.81;332867;400680;404278;377910;409660 -5400;'150;Europe;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84041220;102057939;96961940;96721182;106365117;112512617;126580469;129758897;133123709;128704646;118850914;115482819;129791793;133527053;133408893;140311218;145789348;146595780;140059162;144183192;149397067;154367802;154208959;157234894;159823729;151512934 -5400;'150;Europe;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12940536;12327977;14111285;14528550;15517536;15833501;20092280;23985203;24026185;29165368;31650176;29617898;38211240;30337272;25963855;24315453;25219705;23605507;22550966;22511391;25114724;28152296;26220368;25974254;23138596;17888938 -5400;'150;Europe;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;347634;388286;345338;480353;437767;610990;820949;1014621;1254774;1689974;2236688;1950210;2621985;2342995;1312903;1345130;1359851;1075331;919819;956113.31;1188859.72;1247510;1171162;1153305;1452479;1343111 -5400;'150;Europe;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14870416;11040555;13261619;13182707;14497899;15042527;17912198;20349623;22479913;26035813;26536280;24761992;29807794;26774630;17016312;19449604;20755601;19496124;18710527;19901649;21854929;23212692;22992929;21908432;19537215;17798519 -5400;'150;Europe;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;279067;290128;306951;308305;382021;519048;693601;898687;1109269;1526005;1750468;1716000;1981771;1509535;989403;1152446;1152915;977379;866363;874387.08;1035911.87;1080972;999324;979709;1106249;1190469 -5400;'150;Europe;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33395272;47380739;52439290;51900530;62190358;66785612;70595560;71935576;75167805;70335033;64675090;64018528;70683280;70336114;70221775;70031229;73005261;73142932;80650004;83905364;86889705;94180069;93384383;94926718;94375138;88817296 -5400;'150;Europe;1619;Wood chips and particles;5616;Import quantity;m3;;;;187300;186600;192800;275800;330500;352800;396700;457800;624800;688700;815800;1059500;1028800;1598900;838000;1056600;2119600;2825800;2009200;1972200;2719900;2539000;3074700;3267900;3012600;2952200;3126500;3054400;4066416;4141640;6284192;6403128;6471006;6064212;7691134;6826439;8275533;8427649;8898091;8852071;10503187;12035875;12193057;13812008;14818274;12926231;17115098;17776304;13613668;13833320;14049682;13222143;14902805;16408782;18366131;20219371;18238091;17775928;15375670;12079526 -5400;'150;Europe;1619;Wood chips and particles;5622;Import value;1000 USD;;;;1757;1782;2553;3221;3721;4215;5257;7259;9540;11510;19647;34310;30557;58214;26415;38465;103742;144359;85840;71069;80995;74727;130928;158008;142198;134462;139372;129670;176988;117331;187494;245703;246636;204794;208786;211403;195962;319807;236912;315858;416668;472418;514700;718529;962124;680446;888118;1038135;765569;832802;810773;624594;654331;724388.48;906918.63;921330;848686;817847;1001326;953315 -5400;'150;Europe;1619;Wood chips and particles;5916;Export quantity;m3;;;;83300;146700;68200;283800;320500;364600;483500;458500;471300;568700;734300;910200;799300;972400;1015700;1210400;1821300;1757400;1590500;1789100;2112200;1978400;2436000;2792000;3244300;3244900;3008600;3226100;3329946;3769787;4528100;4833000;4771400;4968175;6921875;5751989;7361699;6860970;7859949;7590963;9618051;10472523;10414203;12825169;13227928;10631816;12778004;13211536;11287456;12060491;12294801;11579166;12407301;14397136;16405678;17543717;17737287;15772853;13832751;12162809 -5400;'150;Europe;1619;Wood chips and particles;5922;Export value;1000 USD;;;;449;910;1037;2981;3338;3577;5799;6288;7716;9354;15946;20515;18789;22131;25522;26335;49571;53862;45179;45619;52562;62322;89785;109066;129614;134055;136353;146149;146711;129199;135089;190210;181360;147924;154910;146386;169757;153777;189791;238316;336061;393129;358044;595572;685593;474097;560232;651434;600939;629936;612871;523178;517995;611309.5;733115.92;767275;752302;702442;803939;834650 -5400;'150;Europe;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22265000;33167000;35900000;38426800;37578900;50038000;50645948;54677200;44522650;44820652;44174759;45727005;55984909;57823321;57955904;58369613;54175824;51464291;59108513;63190939;63187118;70279989;72784087;73452848;59409158;60277828;62507362;60187733;60824576;62308176;65448591;62695638 -5400;'150;Europe;1620;Wood residues;5616;Import quantity;m3;23900;32000;64100;967000;1335500;1514800;1769800;1880000;1754500;1832900;1890300;1990400;2622900;2903200;2596300;3071558;2458944;2097700;2247900;2512100;2579600;2873800;2863400;3040600;2990100;3422400;3817800;3468700;3957300;3257400;3566900;3884045;3915040;4284579;3991804;3915605;4143776;5249402;5501538;5835752;6100901;6619445;6981430;9589093;11949328;11833128;15353360;16831902;16691667;21096142;12560968;12350187;10482133;11170023;10383364;7648161;6102609;6748593;7932925;7982277;8198326;7762926;5809412 -5400;'150;Europe;1620;Wood residues;5622;Import value;1000 USD;250;290;645;10635;14683;16334;18407;17788;16158;19142;21898;23068;34153;49947;53399;58530;45324;38746;45624;60639;57565;61510;53354;51137;52822;76014;101267;93800;93862;126186;109109;131184;98728;115343;126734;128882;130296;138848;176883;149376;160546;200855;295132;404281;542203;740074;971445;1274564;1269764;1733867;1304860;547334;512328;549078;450737;265488;231724.83;281941.08;326180;322476;335458;451153;389796 -5400;'150;Europe;1620;Wood residues;5916;Export quantity;m3;55800;170300;240100;1124200;1543300;1700300;1760200;1887700;1585000;1720300;1912400;1901500;2518200;2886700;3217700;3698075;3644085;3290100;3023800;3082800;3148500;2828800;2834100;3139100;3146600;3501800;3311100;2703400;3344700;3185600;4130400;4259939;4141126;4807475;4393911;5477111;4498686;7948541;5288566;5899920;6321737;6637950;7451564;8294147;9877100;12065710;13210644;13308352;14130176;17029790;13563094;5728856;7389113;8460800;7916958;6303226;5504513;5449251;5668975;5255642;6135579;5704464;5635710 -5400;'150;Europe;1620;Wood residues;5922;Export value;1000 USD;336;928;1358;9295;11949;14056;15198;15774;14577;20760;21330;20839;32710;49477;60766;65727;66488;62840;60276;75748;75541;66769;58301;61759;65708;87801;97454;83575;87534;111094;135944;165570;111810;122700;135360;170422;133632;124157;143742;137194;154528;192230;280732;357540;505558;751225;930433;1064875;1241903;1421539;858101;388464;522510;540044;454201;348368;263077.58;302795.95;313697;247022;277267;302310;355819 -5400;'150;Europe;1605;Sawdust (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3802829;2433126 -5400;'150;Europe;1605;Sawdust (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;250830;191731 -5400;'150;Europe;1605;Sawdust (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2159241;1937895 -5400;'150;Europe;1605;Sawdust (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;164090;180977 -5400;'150;Europe;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26550687;26596404;29273311;30487665;30350898;29939051;31367698 -5400;'150;Europe;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2803669;3377258;3647658;3486150;3845751;3384277;3006428 -5400;'150;Europe;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110965.72;126485;128821;119164;152094;180380;186524 -5400;'150;Europe;1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2376506;2511416;2451485;2693170;2919571;2302851;2204369 -5400;'150;Europe;1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;138091.44;145113;147024;154027;185587;157357;171971 -5400;'150;Europe;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15298362;16836051;18412760;19301887;19990496;21921892;23648494;27380865;27173591;28553579;27653685;26966227 -5400;'150;Europe;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9519983;12338758;13425265;14680511;14856732;17058299;19824235;21554108;21678132;23576420;21897663;19329349 -5400;'150;Europe;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1796327;2440512;2682157;2542155;2549979;2906691.49;3683128.81;3995309;3895264;4356400;5261070;4829134 -5400;'150;Europe;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7436190;8981453;9286775;9630730;9653130;11764065;13039523;15187223;16300275;16919740;14375569;12565986 -5400;'150;Europe;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1372520;1818733;1930829;1559201;1493105;1774596.31;2315473.68;2610862;2693599;2824068;3642761;3124747 -5400;'150;Europe;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12531289;13863920;15240295;16396788;17035195;19188842;20517971;23712241;24016240;24813885;24952507;24145521 -5400;'150;Europe;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8448458;11297946;12364143;13680780;13972376;15474267;17891096;19872853;20061212;21862025;20056760;17611696 -5400;'150;Europe;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1629535;2271352;2506385;2415469;2437148;2712368.37;3404448.34;3768839;3686252;4101598;4899201;4503378 -5400;'150;Europe;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6253963;7693429;8109078;8533121;8504192;10066988;11193573;13127870;14402171;14942796;12284709;10514556 -5400;'150;Europe;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1174254;1599430;1722467;1396482;1342127;1557431.74;2040935.68;2343549;2460235;2538204;3263487;2794710 -5400;'150;Europe;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2767073;2972131;3172465;2905099;2955301;2733050;3130523;3668624;3157351;3739694;2701178;2820706 -5400;'150;Europe;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1071525;1040812;1061122;999731;884356;1584032;1933139;1681255;1616920;1714395;1840903;1717653 -5400;'150;Europe;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;166792;169160;175772;126686;112831;194323.12;278680.47;226470;209012;254802;361869;325756 -5400;'150;Europe;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1182227;1288024;1177697;1097609;1148938;1697077;1845950;2059353;1898104;1976944;2090860;2051430 -5400;'150;Europe;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;198266;219303;208362;162719;150978;217164.57;274538;267313;233364;285864;379274;330037 -5400;'150;Europe;1872;Sawnwood;5516;Production;m3;180853816;180414016;181313300;189690808;190128808;185737810;188506408;191585900;196313796;202654108;208408908;204419500;206031800;202305900;193350100;195378000;193871800;191152100;189427600;188767300;182563800;180943000;182796000;185049000;183399000;186381000;186713000;190059500;192185250;193111900;159967800;138406508;124031800;120805600;117916600;112605800;117607700;120119426;123306357;129893835;128254837;127958345;132212450;138649360;143648132;149880462;156253356;137694499;127925524;139108844;142856055;140038417;142534192;147366287;150304552;156433796;165125232;169542760;172075053;167928484;172072715;164850729;156071418 -5400;'150;Europe;1872;Sawnwood;5616;Import quantity;m3;24726800;25386600;27047800;30119200;29722600;27880300;28206400;30444100;30789800;31803600;31164900;33098000;37434000;32034700;25335100;31978000;31608990;33354700;37383800;34992800;30061600;30774800;32469000;31789100;31492200;34102560;35890035;37574400;37383753;38109844;32325544;34200940;33227263;38639793;33568706;33194967;39971984;42992864;45101386;47576760;44056728;45427986;45949426;47226654;47700403;48650574;54131965;43897226;35128441;38417883;36729603;34465478;34616809;37433910;37916335;40305581;43473058;46213798;47241993;46241666;50560219;43452552;37311895 -5400;'150;Europe;1872;Sawnwood;5622;Import value;1000 USD;1225330;1216217;1313432;1552045;1610636;1520245;1469304;1568698;1713148;1902390;1943985;2171469;3573547;4427315;3215782;4543600;4810494;5485777;7325093;8300475;6091616;5950362;5586546;5356455;4942336;6167271;7876792;8642827;9107771;10554333;9365233;9955912;8286805;10167698;10370400;9004075;10556979;9890674;9780628;9831935;8594522;9441207;10971693;12374783;12610621;13959393;18050686;14443097;10414157;11794567;12428469;10851009;10975115;12065723;10512583;10753791;11612839.87;13196398.74;11782874;12270167;20132360;16996835;12928996 -5400;'150;Europe;1872;Sawnwood;5916;Export quantity;m3;23645600;24479700;25632800;28057700;27129300;26696100;26226100;28702000;29796700;30273300;30315200;32009400;34536100;30264900;25881600;31995400;30765136;32775350;33820550;32724700;29511700;30802700;33275800;33271800;32365000;32424941;32831979;34030010;33535478;29984657;28654944;32909576;36589379;40008853;42255392;41552047;45160553;46670454;51710367;56395616;55096707;59121284;62202361;66990211;70249295;73019151;76317215;71890411;63270152;67979580;71462669;71129433;73195532;78081879;81633260;86905113;94084795;99451169;102922192;103048736;100300664;89837779;80323853 -5400;'150;Europe;1872;Sawnwood;5922;Export value;1000 USD;979318;991474;1032544;1180447;1209901;1184716;1126282;1199510;1320867;1458104;1553505;1777976;2702352;3624998;2795054;3563888;3960754;4408133;5410549;6038619;4990941;4526132;4706658;4635001;4297887;4994323;5547319;6531320;6816385;7398503;6737849;6967980;6990052;8226513;9586591;8878122;9534407;8913427;9211082;9456019;8581039;9688397;11727381;13731804;14416591;16379077;21004021;18292827;14483028;16577007;17979873;16982949;18209134;19393103;16594303;17029838;19208969.64;21766663.8;20492919;20785522;32365862;28944686;21114043 -5400;'150;Europe;1632;Sawnwood, coniferous;5516;Production;m3;147953266;147416008;147508450;156998258;157138658;152982809;155215608;157864950;162066746;167272158;171827754;170141650;171452550;168734100;161416550;162843500;161060400;158446050;157253800;157220650;152092900;150980000;153234000;154717500;153364500;156477500;157268000;159946250;162314750;163308000;131531500;112297508;102018300;100930700;100097700;94999700;100527200;102298990;106338273;112462653;111166863;111435212;115892919;121487927;126922966;133126057;139078501;123110348;115585341;125340369;129572259;126483093;128781618;133452732;136331722;141906718;149542705;153678705;156200467;153992236;157333678;150489508;142853826 -5400;'150;Europe;1632;Sawnwood, coniferous;5616;Import quantity;m3;21990100;22804450;24249700;26938450;26467550;24595900;24915150;26711900;26852800;27685200;27105250;28563750;31229650;27354050;21023850;25995450;25489040;27160000;30154450;28401400;24611850;25464050;26690750;26087900;25593000;28085500;28974050;30506400;30318803;31130894;26053844;27038168;26869410;32138341;26939993;27726354;32293867;34730201;36277900;38637901;35741854;37273636;37884588;38906459;39580655;40396469;45016670;37011860;30661942;33590929;31769689;29974687;30379291;32913659;33316371;35512988;38313235;40258791;40737723;40478776;44116813;37483028;32087577 -5400;'150;Europe;1632;Sawnwood, coniferous;5622;Import value;1000 USD;1021722;1029956;1108086;1303688;1350163;1255243;1209306;1279504;1393777;1547415;1577782;1720130;2699331;3569828;2447072;3130588;3497130;3873487;5083622;5923214;4270842;4241808;3859519;3737102;3432348;4398498;5422171;6038301;6249488;7359130;6404934;6529346;5363689;6842903;6666616;6197849;6953539;6513816;6381309;6349118;5456798;6333619;7401041;8289387;8382000;9483794;12623025;9877177;7480056;8653570;9014595;7903227;8203231;9145984;7767325;7885791;8670197.76;9886998.32;8692474;9430974;16600401;13129467;9588639 -5400;'150;Europe;1632;Sawnwood, coniferous;5916;Export quantity;m3;21764900;22588100;23650700;25915350;24970000;24409150;23959500;26237600;27215850;27526050;27569400;29202400;31207150;27376500;23264400;28274950;27357814;29049875;30505825;29514650;26720650;28191650;30519500;30066300;29526350;29619700;29575400;30768000;30324158;27015109;25771046;29645997;33447691;36690459;38180817;37874428;40924130;41958117;45612077;50099016;49149793;53150422;56169452;60358407;63963353;66282765;68428112;65160989;58450836;62312128;65161687;64908466;67416886;71170677;73845397;78953431;85029152;90511225;94257377;95092604;91013786;81245459;73592877 -5400;'150;Europe;1632;Sawnwood, coniferous;5922;Export value;1000 USD;882685;883589;920951;1053320;1078401;1043648;989304;1053289;1164741;1282832;1360560;1532981;2323131;3161445;2387730;3036127;3368990;3683095;4595091;5103193;4248842;3860068;4027480;3961931;3682971;4264164;4598673;5516513;5774250;6159948;5494992;5659651;5802962;6871397;7996283;7466730;7967702;7340925;7495796;7593638;6898218;7921037;9722677;11318373;11928990;13707143;17784949;15121989;12276495;14196272;15274267;14369074;15552991;16470871;13726329;13998054;15922027.13;18170827.98;17157556;17720765;28291917;24816047;17632018 -5400;'150;Europe;1633;Sawnwood, non-coniferous;5516;Production;m3;32900550;32998008;33804850;32692550;32990150;32755001;33290800;33720950;34247050;35381950;36581154;34277850;34579250;33571800;31933550;32534500;32811400;32706050;32173800;31546650;30470900;29963000;29562000;30331500;30034500;29903500;29445000;30113250;29870500;29803900;28436300;26109000;22013500;19874900;17818900;17606100;17080500;17820436;16968084;17431182;17087974;16523133;16319531;17161433;16725166;16754405;17174855;14584151;12340183;13768475;13283796;13555324;13752574;13913555;13972830;14527078;15582527;15864055;15874586;13936248;14739037;14361221;13217592 -5400;'150;Europe;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;2736700;2582150;2798100;3180750;3255050;3284400;3291250;3732200;3937000;4118400;4059650;4534250;6204350;4680650;4311250;5982550;6119950;6194700;7229350;6591400;5449750;5310750;5778250;5701200;5899200;6017060;6915985;7068000;7064950;6978950;6271700;7162772;6357853;6501452;6628713;5468613;7678117;8262663;8823486;8938859;8314874;8154350;8064838;8320195;8119748;8254105;9115295;6885366;4466499;4826954;4959914;4490791;4237518;4520251;4599964;4792593;5159823;5955007;6504270;5762890;6443406;5969524;5224318 -5400;'150;Europe;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;203608;186261;205346;248357;260473;265002;259998;289194;319371;354975;366203;451339;874216;857487;768710;1413012;1313364;1612290;2241471;2377261;1820774;1708554;1727027;1619353;1509988;1768773;2454621;2604526;2858283;3195203;2960299;3426566;2923116;3324795;3703784;2806226;3603440;3376858;3399319;3482817;3137724;3107588;3570652;4085396;4228621;4475599;5427661;4565920;2934101;3140997;3413874;2947782;2771884;2919739;2745258;2868000;2942642.11;3309400.42;3090400;2839193;3531959;3867368;3340357 -5400;'150;Europe;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;1880700;1891600;1982100;2142350;2159300;2286950;2266600;2464400;2580850;2747250;2745800;2807000;3328950;2888400;2617200;3720450;3407322;3725475;3314725;3210050;2791050;2611050;2756300;3205500;2838650;2805241;3256579;3262010;3211320;2969548;2883898;3263579;3141688;3318394;4074575;3677619;4236423;4712337;6098290;6296600;5946914;5970862;6032909;6631804;6285942;6736386;7889103;6729422;4819316;5667452;6300982;6220967;5778646;6911202;7787863;7951682;9055643;8939944;8664815;7956132;9286878;8592320;6730976 -5400;'150;Europe;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;96633;107885;111593;127127;131500;141068;136978;146221;156126;175272;192945;244995;379221;463553;407324;527761;591764;725038;815458;935426;742099;666064;679178;673070;614916;730159;948646;1014807;1042135;1238555;1242857;1308329;1187090;1355116;1590308;1411392;1566705;1572502;1715286;1862381;1682821;1767360;2004704;2413431;2487601;2671934;3219072;3170838;2206533;2380735;2705606;2613875;2656143;2922232;2867974;3031784;3286942.51;3595835.82;3335363;3064757;4073945;4128639;3482025 -5400;'150;Europe;1634;Veneer sheets;5516;Production;m3;841700;1075700;1118500;1197900;1324400;1165300;1585500;1627300;1714300;1743000;1778000;1770700;1988900;2001300;1955200;2029000;1991000;1939000;1946000;1989000;2020000;1916000;2110000;2194000;2187000;2206000;2160000;2333000;2448000;2392000;2094000;1715000;1669600;1774600;1801000;1956500;2059800;1719540;1709313;1778574;1844200;1919220;1864120;1907020;2008420;1988269;2035668;2028789;1847050;1988022;2191204;1999253;2080342;2192713;2208614;2408820;2926854;3444337;3220468;3036194;3583964;3248386;3000303 -5400;'150;Europe;1634;Veneer sheets;5616;Import quantity;m3;182024;167460;177100;205400;223200;243700;252200;330900;365100;396200;439500;453700;572900;550000;385900;515150;569741;643200;729600;822100;715500;691600;720500;778000;778200;806637;796769;953029;1046842;924881;806781;684649;691842;949471;829730;848880;934618;1126375;1078188;1024202;1010053;1052409;1099486;1189397;1379819;1277441;1647317;1312204;944046;1094253;1157270;1073577;1154245;1206290;1209616;1293053;1490109;1436981;1434959;1527001;1804440;1764930;1730639 -5400;'150;Europe;1634;Veneer sheets;5622;Import value;1000 USD;67618;71147;74906;87514;104786;110535;105105;119920;146460;160729;175124;208626;328715;333234;277278;335594;426886;510571;620276;724858;564443;521117;521472;551241;546127;663308;786373;824391;935716;1056123;997082;936031;833187;1021883;1207058;1119450;1202038;1253677;1208234;1256948;1180805;1265913;1521960;1745511;1796963;2165337;2310369;1955474;1280774;1427232;1549732;1298896;1275911;1353729;1237720;1333973;1452498.11;1609891.02;1498134;1617289;2137243;2323841;2038816 -5400;'150;Europe;1634;Veneer sheets;5916;Export quantity;m3;127800;127500;155600;175500;187900;203600;188000;225500;244800;233900;232000;236400;289500;256400;212000;258200;251890;316100;357600;380800;321200;262300;354200;398900;396100;432267;438261;471562;553875;513541;458244;396787;416045;486600;611600;611500;582049;585520;618872;697284;699366;711564;707200;760453;836629;942476;992774;970009;789014;972430;1094639;1064816;1095335;1369815;1337238;1423316;1701778;1841112;1880250;1654818;1958541;1979445;1804165 -5400;'150;Europe;1634;Veneer sheets;5922;Export value;1000 USD;61388;64114;71376;86695;98529;101149;99315;114711;125522;129858;132363;152224;240599;238754;200964;242021;254666;329117;400445;475063;358921;306646;307117;316594;329110;380062;462914;501902;588920;627972;559390;608481;547602;686276;850133;808819;871367;910489;820612;918659;892306;975380;1136860;1340891;1394145;1548124;1740584;1638058;1194305;1203985;1315730;1189684;1173750;1265156;1108205;1174730;1392292.31;1597538.96;1569418;1479995;1965099;2123758;1908702 -5400;'150;Europe;1873;Wood-based panels;5516;Production;m3;9423600;10534900;12022600;13662400;15182400;18013100;19518300;21526800;23752200;25776100;28209700;31851700;35828400;36022600;35585200;38634900;39659500;40691200;41684200;42106600;40568100;39678900;40474100;41625400;42169700;44367200;45482200;49351200;51072200;48009400;45278400;42352200;42168900;41521400;44297600;43768300;46902300;51209711;53630154;59204726;59680066;62097102;64999907;70444656;73131712;77636908;81953139;75050433;66079897;70567256;72408446;72397365;73399690;75468615;78668822;82292199;86425606;88822300;87873631;85454413;97522049;87642019;85589417 -5400;'150;Europe;1873;Wood-based panels;5616;Import quantity;m3;1770300;1986000;2234700;2722500;3025300;3511590;4136678;4607523;5005790;5597839;5573547;6643907;8511806;7582280;6996501;8494167;8268449;8929704;9967800;9266340;9356700;8709300;9093900;9474500;9999300;11109661;11954844;12943037;13858748;13635160;12852696;13387765;12373489;13507784;14326134;14584554;17133145;20098827;20216218;21733940;22810032;24276865;25604834;28078136;28815620;31207340;36265128;32531627;25941203;28967313;30287069;29797852;31461878;32522310;32373712;33951839;36878178;38612270;37882945;37536720;40264702;35373211;31848783 -5400;'150;Europe;1873;Wood-based panels;5622;Import value;1000 USD;198266;217827;249036;307773;337643;342932;399125;433178;497044;579706;620024;779573;1236805;1279671;1183966;1520639;1621169;1928365;2541021;2709355;2416814;2189645;2079140;2026140;2015525;2626639;3328711;3958231;3936479;4747194;4372850;4755338;4050706;4709950;5645817;5533627;5769117;6271229;6082056;5965126;5941570;6399622;7832406;9754590;10406056;11609353;14704367;14328271;10372814;11401861;13009867;12176044;12891556;13741176;11643771;11801397;12960197.34;14659251.33;13309901;13076144;17826315;17636193;16023928 -5400;'150;Europe;1873;Wood-based panels;5916;Export quantity;m3;1871600;2055900;2314500;2676200;3012800;3507884;3935160;4383748;4789043;5122880;5505513;6287567;7531789;7054153;6547955;7595525;7732754;8295554;8870200;8490800;8057500;7597900;7702800;7932400;8291900;8853020;9328253;10104606;10634241;10700272;10613588;10292065;11484174;13238329;14027839;15718547;18142351;19986998;20599373;23983374;24605128;28192069;28971516;32897314;33414255;34407368;38204342;34879726;29734129;32712277;32511239;34217454;35224199;37008360;38266651;40629837;43039998;42856529;42756552;43598163;46591389;38214839;34611172 -5400;'150;Europe;1873;Wood-based panels;5922;Export value;1000 USD;187424;200028;224891;267657;301762;308046;330965;362303;418060;475214;522692;666131;938479;1062983;992165;1196908;1346860;1561656;2013312;2321544;2038952;1852988;1753545;1675215;1663197;2164502;2699294;2981238;3233767;3672413;3520469;3652366;3569118;4269271;5214612;5464483;5713041;6441190;6250022;6210871;6415621;7347367;8808720;10956532;11805134;13419678;16890149;15908415;12085076;13356274;14776047;14126639;15010344;15990713;13743114;14106034;15480393.95;17214310.17;15870299;15654258;21863961;20188818;17927419 -5400;'150;Europe;1640;Plywood and LVL;5516;Production;m3;4158100;4402400;4784200;4943100;5119600;5171300;5304100;5481000;5761100;5974300;6177300;6541200;6654100;6019100;5734000;5953000;5807300;5659000;5664000;5607000;5480000;5285700;5172900;5295200;5288500;5540000;5466000;5588000;5732000;5032200;4333200;4410700;4331900;4264400;4617300;4649700;4770200;5190190;5556854;5910031;6053090;6308232;6419532;6927002;7336902;7492000;7694926;6991802;5645494;6907796;7453655;7559957;7935603;8279646;8375523;8772743;9230988;9513186;9557286;9229233;10253715;8317777;8221483 -5400;'150;Europe;1640;Plywood and LVL;5616;Import quantity;m3;842000;920300;1041700;1261400;1321900;1308900;1594000;1798900;1869500;2115700;2025600;2331900;2908100;2236400;2162800;2869700;2713000;3121000;3576500;3098800;3162800;2927200;3211600;3187400;3122200;3761436;3914336;4556785;4587955;4732500;4288400;4544738;4205361;4567979;4533803;4349891;4792153;5252662;5572709;5504985;5691379;5706068;6190059;6727172;6620539;7270760;8184032;7667592;5588968;6281724;6861532;6530383;6569257;7160582;7195144;7515703;7999676;8666415;8297218;7813936;8734938;8013832;6925711 -5400;'150;Europe;1640;Plywood and LVL;5622;Import value;1000 USD;120613;130511;149559;182492;197237;198448;237376;257073;293561;342905;351715;437320;704058;674332;605702;831030;899788;1068603;1454220;1442315;1327425;1191437;1160170;1110015;1045590;1325028;1613633;2021390;1877615;2285218;2042969;2351064;2045633;2279518;2508085;2366432;2543725;2412496;2446706;2425256;2382482;2357706;2766420;3454364;3649886;4034944;4969323;4914237;3022906;3442282;4050790;3756360;3872322;4324956;3824690;3804734;4313320.71;5003023.22;4369140;4087140;5748971;6019799;5010315 -5400;'150;Europe;1640;Plywood and LVL;5916;Export quantity;m3;734100;778200;849700;989200;1055100;1061600;1136500;1275500;1363700;1440300;1452200;1562200;1737900;1398600;1318500;1507400;1555700;1705709;1811300;1788800;1731700;1778800;1785800;1776100;1758900;1939709;2004563;2032023;2121402;1983131;1751031;1806414;2250693;2618320;2648116;2989127;3149541;3599530;4111235;4256103;4404662;4594327;4873079;5456733;5439059;5898809;5864667;5318492;4500453;5147949;5511502;5511267;5763616;6248733;6517470;7088782;7401880;7637128;7573657;7518737;8393676;6910154;6021129 -5400;'150;Europe;1640;Plywood and LVL;5922;Export value;1000 USD;99406;104520;114977;137898;153014;157787;168487;184187;209686;234292;251598;306597;423453;456398;400682;516461;588324;671865;858657;988852;861907;822922;788868;751413;691301;873472;1068212;1122702;1202725;1396741;1222111;1285647;1344589;1545519;1730075;1780675;1790383;1875466;1980936;1852457;1877598;1981920;2353116;2928477;3194262;3623966;4136246;4091506;2841259;3197845;3896613;3563686;3930811;4442999;3862133;3971798;4487073.09;5121503.54;4660928;4435773;6277032;5954431;5167918 -5400;'150;Europe;1607;Laminated Veneer Lumber (LVL);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;740000;714609 -5400;'150;Europe;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;232355;262550 -5400;'150;Europe;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;137820;130444 -5400;'150;Europe;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;347858;342608 -5400;'150;Europe;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;289366;278111 -5400;'150;Europe;1646;Particle board and OSB (1961-1994);5516;Production;m3;3093200;3788700;4705000;5840400;7020000;8026200;9300900;10894700;12639600;14258500;16313700;19282300;22453100;22985000;23041400;25403000;26529000;27557000;28478000;29006000;27865000;27393000;27993000;28821000;29186000;30449000;31528000;35004000;36500000;34279000;32596000;32098100;31874000;31475000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5400;'150;Europe;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;354500;438000;507200;670300;960400;1068400;1207400;1436000;1672800;1908400;2037900;2548500;3823900;3703500;3440600;4109600;4263880;4486258;4976700;4713900;4712300;4465300;4547700;4888000;5372200;5584029;6017189;6487868;7237102;6807054;6597500;6669109;6193080;6651610;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5400;'150;Europe;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;21651;26512;30811;41416;58652;64925;74484;88619;109329;129011;149710;202624;354236;415012;397401;493354;534065;654491;824566;940293;797913;739860;673372;679985;721686;952571;1273741;1441472;1535334;1826476;1698761;1682780;1401306;1623635;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5400;'150;Europe;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;371200;464400;567400;713700;999100;1107100;1278900;1482000;1728900;1993400;2393000;2927700;3843500;3880800;3826300;4384600;4473500;4860000;5264100;5008500;4725400;4418900;4495600;4686800;5034600;5326417;5661904;6178816;6530747;6565499;6633481;6467360;6956517;7822169;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5400;'150;Europe;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;21699;25501;31005;40170;58325;65083;75060;86523;107849;132283;156151;219582;340732;406637;416801;479687;538563;656189;864925;964166;838430;736131;679222;649944;704044;962261;1230518;1343837;1451814;1630372;1633040;1669431;1500002;1811587;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5400;'150;Europe;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32354000;31719000;33225000;34329300;35576100;38849616;38666616;38194890;39949210;43362410;43734210;46804780;49444839;45742266;40176199;41364967;42030123;40297699;40262368;41221423;42141954;42211807;43293059;44388553;43339158;41367911;48931836;44180429;43966358 -5400;'150;Europe;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7076048;7031091;7799316;8765106;8405262;8350215;9189170;9056796;9544229;10542311;11096627;11335698;13272475;12413921;8996346;10212350;10356005;10207984;11022132;11651703;11812064;12352278;13608258;13523258;13194295;12425289;13677183;12022088;11163100 -5400;'150;Europe;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2022991;1918953;1929657;2140587;1992660;1706633;1727525;1656242;2016001;2496270;2762132;3011955;3854766;3788270;2623880;2894858;3268845;3116177;3347293;3611098;3055763;3099935;3306761.4;3622188.79;3309030;3133843;4243672;4353693;4283749 -5400;'150;Europe;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8153059;8894588;9889344;10019697;9848087;10670519;11198346;11674961;12069130;14121784;13739192;14882836;15229738;16357640;11278652;12672244;12103497;13183713;13140214;14308105;14684844;15363200;16344440;16162813;16099131;15818360;16737195;13839101;13413073 -5400;'150;Europe;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2314218;2348683;2339139;2518087;2263255;2042940;2063169;2128059;2507553;3178617;3323656;3881791;4732511;4829581;3272834;3676566;3921877;3910729;3953919;4268664;3656945;3669086;4004223.5;4396404.62;4050572;3811330;5425803;5321677;5093872 -5400;'150;Europe;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;453000;592000;717000;933000;1136000;1585000;1633000;2258000;2543000;2766100;3347000;3535000;3903207;3851449;3811490;4923564;4843268;5350065;5702913;5972507;7292078;8423002;9127079;9549581;9429792;9643104;10244170;9419296;9781329 -5400;'150;Europe;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36800;93600;730705;881894;945059;1083364;1712573;1533216;1825075;1756300;2440406;2625342;2411470;2262310;2584370;2728463;2973353;3358942;3335765;3292965;3528064;4047989;4181061;3896657;4612151;4158792;3939869;3729162 -5400;'150;Europe;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6000;11900;163778;202264;202670;180977;267460;312829;467464;478989;604300;902235;805724;653484;821950;955437;915946;1092247;1024362;783391;844030;987946.52;1230484.01;1080508;1155320;1741442;1419455;1239631 -5400;'150;Europe;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100300;189200;701400;708422;1002684;931783;1561094;1675329;1759521;2124254;2249765;2998598;2498929;2708527;2958816;3374235;3579256;3899737;3743499;4048906;4780731;5282810;5250286;5014379;5672534;5693571;4839066;4493799 -5400;'150;Europe;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40997;68996;196360;193778;221548;182201;289623;354718;556478;596777;646312;885552;882566;735076;945686;1068323;1021255;1230262;1125017;923122;1019261;1185251.44;1435654.27;1266274;1365796;2408781;1788635;1477521 -5400;'150;Europe;1874;Fibreboard;5516;Production;m3;2172300;2343800;2533400;2878900;3042800;4815600;4913300;5151100;5351500;5543300;5718700;6028200;6721200;7018500;6809800;7278900;7323200;7475200;7542200;7493600;7223100;7000200;7308200;7509200;7695200;8378200;8488200;8759200;8840200;8698200;8349200;5843400;5963000;5782000;6873300;6807600;8190100;10757221;11361200;12860079;13327360;15335980;16088165;17389144;18713600;19805128;20910167;18464916;16446714;17370929;18081400;19189644;19498806;19995039;20859267;22884647;24774480;25370980;25547395;25214165;28092328;25724517;23620247 -5400;'150;Europe;1874;Fibreboard;5616;Import quantity;m3;573800;627700;685800;790800;743000;1134290;1335278;1372623;1463490;1573739;1510047;1763507;1779806;1642380;1393101;1514867;1291569;1322446;1414600;1453640;1481600;1316800;1334600;1399100;1504900;1764196;2023319;1898384;2033691;2095606;1966796;2173918;1975048;2288195;2716283;3166772;4448076;5350354;5356353;6933681;6846119;7801428;8337330;8983578;9342154;10160476;12183279;10038644;9093579;9888869;10341069;10086132;10511547;10374260;10073539;10555794;11222255;12241536;12494775;12685344;13693789;11397422;10030810 -5400;'150;Europe;1874;Fibreboard;5622;Import value;1000 USD;56002;60804;68666;83865;81754;79559;87265;87486;94154;107790;118599;139629;178511;190327;180863;196255;187316;205271;262235;326747;291476;258348;245598;236140;248249;349040;441337;495369;523530;635500;631120;721494;603767;806797;1114741;1242242;1283835;1554368;1440426;1630567;1650586;2118214;2737156;3336492;3515049;3958154;4978043;4820040;4072544;4242771;4734795;4387561;4579694;4780760;3979927;4052698;4352168.71;4803555.3;4551223;4699841;6092230;5843246;5490233 -5400;'150;Europe;1874;Fibreboard;5916;Export quantity;m3;766300;813300;897400;973300;958600;1339184;1519760;1626248;1696443;1689180;1660313;1797667;1950389;1774753;1403155;1703525;1703554;1729845;1794800;1693500;1600400;1400200;1421400;1469500;1498400;1586894;1661786;1893767;1982092;2151642;2229076;2018291;2276964;2797840;3226664;3734532;4914266;5666371;5931629;8054068;8070337;10361687;10353978;11559276;12111750;11375958;14111339;10704665;11246497;11933268;11522005;11943218;12420632;12708023;13015431;13397124;14010868;13806302;14069385;14588532;15766947;12626518;10683171 -5400;'150;Europe;1874;Fibreboard;5922;Export value;1000 USD;66319;70007;78909;89589;90423;85176;87418;91593;100525;108639;114943;139952;174294;199948;174682;200760;219973;233602;289730;368526;338615;293935;285455;273858;267852;328769;400564;514699;579228;645300;665318;697288;724527;912165;1170319;1294128;1514523;1851277;1812053;2093926;2292653;2947765;3593333;4292960;4690439;5267609;7135840;6104762;5235907;5536177;5889234;5630969;5895352;6154033;5300914;5445889;5803845.91;6260747.74;5892525;6041359;7752345;7124075;6188108 -5400;'150;Europe;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2359000;2163100;2381300;2973408;2850800;3043593;3028460;2744030;2545522;2832519;2938600;2970828;2590721;2335305;1607170;1578360;1700518;2038722;2079494;1344829;1148638;1516996;1559368;1577254;1813322;1880919;2133248;2018670;1808637 -5400;'150;Europe;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1051141;1122487;1362893;1878472;1695011;2132512;2199146;2582200;3020136;3215474;3303068;3180458;2817232;2332288;2113578;2344663;2281382;2226221;2292522;2288632;2144656;2285710;2306043;2478493;2253308;2325710;2514425;2338674;1934815 -5400;'150;Europe;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;499113;568219;609282;776854;716008;824772;854775;1183000;1586829;1935208;1967243;2037454;1840818;1671468;1519761;1528353;1608352;1349594;1362156;1414347;1141350;1152470;1215350.15;1244751.57;1084265;1151039;1422588;1543583;1547219 -5400;'150;Europe;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1009750;1151642;1210582;1449539;1526392;1740705;1791485;2088986;2120737;2163128;2002462;2490876;1780733;1609620;1297943;1326748;1396417;1741737;1675419;1706754;1335274;1248410;1167472;1206502;1478497;2046537;2096023;1711766;1371756 -5400;'150;Europe;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;378799;442104;475793;554351;507080;617999;751038;926515;1153651;1228312;1136085;1744471;1558726;1144827;901600;915000;999290;939685;920364;915596;610854;567981;517200.18;568571.97;585763;902861;1164762;1250132;1115481 -5400;'150;Europe;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3604300;3744300;4882300;6866913;7624500;8716493;9163590;11323690;12330990;13271105;14443400;15272300;15994920;14077325;12192836;12841929;13335560;14077528;14303387;15640729;17478252;18824896;20140696;20659361;21019638;20152710;21907166;19950136;18712517 -5400;'150;Europe;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1123600;1452012;2278141;2670912;2757051;3524933;3100526;3779442;4013581;4513448;4872307;5741669;7590568;6371995;5534873;6102829;6643158;6206179;6490575;6557705;6342392;6475131;6835774;7799677;8022353;7768085;8462193;6616097;5848332 -5400;'150;Europe;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;503295;557329;549425;633094;578616;642836;638700;754436;943088;1152590;1294170;1638307;2709200;2791382;2195220;2345091;2727084;2642888;2807061;2989692;2508452;2543000;2752506.24;3162560.33;3074212;3095797;4108412;3722168;3403709 -5400;'150;Europe;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1636482;1963358;2889351;3395178;3644500;5067684;5071492;6951096;7003156;8097556;8857110;7759118;10842422;7957011;8645483;9155436;8847229;8656172;8992661;9253709;9896378;10405109;11152213;11021739;10813901;10242052;11397314;8830577;7583404 -5400;'150;Europe;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;653028;698335;868356;1108432;1178009;1318629;1387484;1848994;2249889;2829701;3295060;3218265;5180043;4681935;4008082;4208573;4537605;4371444;4530857;4760595;4306319;4541064;4957707.88;5353539.02;4958896;4693747;6105670;5337641;4604451 -5400;'150;Europe;1650;Other fibreboard;5516;Production;m3;526900;529400;549600;570100;595700;2204600;2244800;2276600;2281400;2280100;2292600;2376800;2411400;2598000;2626400;2760000;2751000;2691000;2836000;2800000;2634000;2645000;2718000;2754000;2800000;3075000;3122000;3180000;3147000;2978000;2905000;1448400;1257000;904000;910000;900200;926500;916900;885900;1099993;1135310;1268260;1211653;1285520;1331600;1562000;2324526;2052286;2646708;2950640;3045322;3073394;3115925;3009481;2232377;2542755;3074416;3134365;2714435;3180536;4051914;3755711;3099093 -5400;'150;Europe;1650;Other fibreboard;5616;Import quantity;m3;98300;112700;121000;148700;144700;500300;600400;612400;624900;652900;600100;793700;706700;633200;529700;534453;410624;429496;452040;522240;576100;489600;499100;538100;589500;678024;915523;598557;646661;641110;548000;461061;458199;422545;541542;592273;807042;800970;904291;1276236;1546447;1439786;1303613;1254656;1166779;1238349;1775479;1334361;1445128;1441377;1416529;1653732;1728450;1527923;1586491;1794953;2080438;1963366;2219114;2591549;2717171;2442651;2247663 -5400;'150;Europe;1650;Other fibreboard;5622;Import value;1000 USD;10762;12303;13289;17833;18867;17453;18833;19342;20671;21251;23703;36771;34551;28683;36143;34982;30516;35648;45352;61973;61186;47573;45160;45069;47736;72871;113075;79834;97158;106434;80297;100868;81934;101025;112333;116694;125128;144420;145802;162959;157111;180778;207239;248694;253636;282393;428025;357190;357563;369327;399359;395079;410477;376721;330125;357228;384312.32;396243.4;392746;453005;561230;577495;539305 -5400;'150;Europe;1650;Other fibreboard;5916;Export quantity;m3;143800;132400;143200;146500;147000;502800;629600;660100;672100;669600;637900;658600;731000;700200;492300;622832;576300;605700;635600;580800;516900;431500;422400;432800;477700;465800;475600;519000;534600;555200;488900;382128;334364;410922;580432;619532;814333;821654;760737;1245679;1207360;1321605;1230085;1298592;1252178;1125964;1488184;1138034;1303071;1451084;1278359;1545309;1752552;1747560;1783779;1743605;1691183;1578061;1776987;2299943;2273610;2084175;1728011 -5400;'150;Europe;1650;Other fibreboard;5922;Export value;1000 USD;14381;13428;14038;15205;15779;15616;16649;16929;17783;19045;19813;21858;29875;36359;28058;37602;42715;46180;63397;69506;65850;54244;54060;53130;55725;65504;83733;101170;117925;125387;92102;119553;101019;112096;138492;153689;170374;188494;126964;157298;154131;172256;189793;234947;259294;304873;397071;278000;326225;412604;352339;319840;444131;477842;383741;336844;328937.85;338636.74;347866;444751;481913;536302;468176 -5400;'150;Europe;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;1645400;1814400;1983800;2308800;2447100;2611000;2668500;2874500;3070100;3263200;3426100;3651400;4309800;4420500;4183400;4518900;4572200;4784200;4706200;4693600;4589100;4355200;4590200;4755200;4895200;5303200;5366200;5579200;5693200;5720200;5444200;4395000;4706000;4878000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5400;'150;Europe;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;475500;515000;564800;642100;598300;633990;734878;760223;838590;920839;909947;969807;1073106;1009180;863401;980414;880945;892950;962560;931400;905500;827200;835500;861000;915400;1086172;1107796;1299827;1387030;1454496;1418796;1712857;1516849;1865650;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5400;'150;Europe;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;45240;48501;55377;66032;62887;62106;68432;68144;73483;86539;94896;102858;143960;161644;144720;161273;156800;169623;216883;264774;230290;210775;200438;191071;200513;276169;328262;415535;426372;529066;550823;620626;521833;705772;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5400;'150;Europe;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;622500;680900;754200;826800;811600;836384;890160;966148;1024343;1019580;1022413;1139067;1219389;1074553;910855;1080693;1127254;1124145;1159200;1112700;1083500;968700;999000;1036700;1020700;1121094;1186186;1374767;1447492;1596442;1740176;1636163;1942600;2386918;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5400;'150;Europe;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;51938;56579;64871;74384;74644;69560;70769;74664;82742;89594;95130;118094;144419;163589;146624;163158;177258;187422;226333;299020;272765;239691;231395;220728;212127;263265;316831;413529;461303;519913;573216;577735;623508;800069;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5400;'150;Europe;1879;Total fibre furnish;5510;Production;t;26375400;26600700;28118600;30246600;31964100;33645200;34848300;37107000;39624200;44109200;43721100;46318600;50089000;52171200;46872800;49997400;50438400;53020400;55328200;55810200;56622200;55594500;58924800;62969500;64125400;65671900;68849400;72179900;75378900;73193900;71992900;68404000;67878200;71844000;75103800;72904600;76572900;80063660;84336374;91023073;91067248;93991119;96446761;101693604;104428786;108759741;109535422;107036942;99102902;103380758;103497907;105977463;105474692;105275604;106015736;107496813;108085163;110806438;110192241;108447061;109641620;105220513;99465548 -5400;'150;Europe;1879;Total fibre furnish;5610;Import quantity;t;1002100;922000;1032400;1221300;1270500;1296200;1139800;8404200;9158000;11132500;9125700;10650000;11912200;12626969;9893144;11663456;11459772;12648979;13705510;13939878;13263642;12541686;13504400;14617300;15044900;15569313;16609016;17672406;18735499;18602219;18855819;20144980;18647222;21163849;21233985;21562122;22508781;23294578;24207696;26518391;26083406;27004784;27912678;29482470;30812622;32078822;32500269;32633723;29921642;35096080;34046500;34647687;33401019;32803645;33347672;34555780;35358470;35991224;34405912;32191009;35025224;33581174;30824865 -5400;'150;Europe;1879;Total fibre furnish;5622;Import value;1000 USD;79104;72311;81567;101582;111736;116312;102454;1057792;1233895;1620860;1428825;1624387;2060201;3507846;3435248;3785087;3654957;3461913;4662473;5840479;5635625;4873313;4449783;5231037;4827043;5571398;7563958;9025440;10494719;10201834;8771444;8057268;5793600;7956019;12634240;8662996;8142628;8135184;8281943;11462092;8915958;8725598;9918538;11211509;11637257;12868342;15480123;16713485;11253229;17802462;18108761;16124128;15506019;14997982;14342378;13498051;14569869.5;17189209.13;14107418;11296939;15611067;18286508;14378257 -5400;'150;Europe;1879;Total fibre furnish;5910;Export quantity;t;1071200;995700;1083700;1255200;1233800;1265600;1138100;7420700;7711300;8800000;7338000;8430800;10147300;9947836;7253752;8405531;8346670;9655881;9992197;9978106;9701869;9135986;10536300;11608900;11722700;11948500;12770000;13574900;13608400;12911100;13482700;14191412;14251477;15686293;16802877;16719425;17960930;18827289;21633100;22763235;23235104;24648894;26748003;30039368;31719706;34877784;37918356;38822987;39610819;39002616;40500054;41311767;38215381;37750020;38498041;40227652;41101414;40533190;40117627;38151082;38843793;37991344;40659268 -5400;'150;Europe;1879;Total fibre furnish;5922;Export value;1000 USD;69962;64601;69463;84252;87446;87143;78644;814460;902967;1133634;1014932;1146463;1614703;2388579;2254212;2400602;2176691;2328183;3051600;3700029;3431853;2931837;3054706;3709825;3341476;3813534;5092918;6048677;6641203;6091687;5130263;4885299;3568630;5131740;7817811;5317143;5172466;4887985;5334855;7659026;6016356;6212732;7326647;8567182;8776795;10497970;13108988;14247476;10393806;15415037;16642519;14912301;13806312;13679701;12237238;12099296;13717597.81;15753674.6;13045164;11269054;16553996;18093900;15589779 -5400;'150;Europe;1878;Pulp for paper;5510;Production;t;21184400;21359700;22600600;24096600;25519100;26882200;27806300;29350000;31220200;33138200;32612100;34122600;36383000;37750200;33671800;35245400;34762400;36736400;37865200;37850200;37871200;36698500;39341800;42091500;42329400;43203900;44817400;46591900;48146900;46072900;43661900;40653500;39420200;39894000;41811800;38833600;41654900;42406813;43605236;46964250;45733660;46989789;48001110;49587133;49064880;51535029;51532219;49401046;43862540;46959133;47666734;46759725;46034214;45120491;45373673;46540834;46989364;47927546;47017756;46777502;47728277;46375716;42608288 -5400;'150;Europe;1878;Pulp for paper;5610;Import quantity;t;1002100;922000;1032400;1221300;1270500;1296200;1139800;8404200;9158000;9906500;8068700;9278000;10248200;10479400;8360900;9483881;9241830;10446200;11006400;11140200;10581200;9811900;10683300;11090400;11303200;11998803;12840356;13053820;13288357;13018000;13219500;13802552;13034487;14132086;14023129;14362063;15533906;15894093;16048203;16671028;16505792;17138843;17085848;18253603;19040091;19082261;18939206;18913405;16210199;19437379;18042732;19312773;18634554;18313331;18424759;19085798;19133913;19739317;18254388;17383389;18074119;18031056;16511756 -5400;'150;Europe;1878;Pulp for paper;5622;Import value;1000 USD;79104;72311;81567;101582;111736;116312;102454;1057792;1233895;1548472;1372818;1551055;1935374;3182565;3278369;3557582;3428957;3249203;4297803;5381509;5310782;4572797;4165518;4836055;4416981;5176749;7086952;8350660;9604211;9386305;8086095;7389942;5369598;7150645;11120017;7841370;7595556;7549896;7647099;10294149;8075330;7691732;8644373;9844353;10267382;11292115;13292368;14259319;9473676;14847560;14280713;13343416;12880899;12443959;12060007;11014938;11717887.31;14593606.87;11831300;9459804;12090947;14779523;12224262 -5400;'150;Europe;1878;Pulp for paper;5910;Export quantity;t;1071200;995700;1083700;1255200;1233800;1265600;1138100;7420700;7711300;7709000;6409000;7312800;8744300;8133800;5865100;6526156;6402992;7600740;7638940;7514340;7116540;6597340;7886700;8307100;8426600;8668800;9109900;9272900;9066100;8295800;8322300;8800341;8837706;9319378;9058135;9318635;9976971;9952741;11000570;11376008;11609496;12340939;12752606;13068789;13019755;14351507;14855235;14282635;13776259;15031256;14815690;16293511;14827354;14681210;14175841;15478213;15855509;16240476;17296297;17130581;17408709;16943242;18224653 -5400;'150;Europe;1878;Pulp for paper;5922;Export value;1000 USD;69962;64601;69463;84252;87446;87143;78644;814460;902967;1070630;968154;1086513;1512309;2143752;2131513;2232221;2005497;2154213;2770878;3347225;3166122;2692042;2808387;3374010;3001275;3477168;4678378;5459815;6071208;5483037;4577774;4268408;3174651;4430308;6646061;4610991;4585004;4320523;4630578;6337000;5116539;5039427;5766143;6593345;6591611;8016957;9440536;9939240;7391706;10952538;11010016;10528250;9809978;9791361;8567594;8362411;9274523.83;11890959.55;10123283;8774569;11856439;13604176;12303464 -5400;'150;Europe;1875;Wood pulp;5510;Production;t;21670200;21905700;23371000;24788300;26148100;27128700;28190100;29703600;31749900;33723800;33243500;34919900;37251300;38674800;34675400;36127000;35750000;37772000;38892100;38915000;39016000;37766100;40462400;43323000;43485000;44564000;46003000;47749500;49407500;47298500;44662500;41454000;40227200;40591500;42458400;39356300;42209500;42730013;43868486;46890600;45537510;46849958;48367103;50034957;48982062;51443234;51269596;49058319;43423479;46406776;47189415;46671391;45797455;45600525;45868499;47728102;48482621;49365788;48494709;48130486;48915739;47606597;43682518 -5400;'150;Europe;1875;Wood pulp;5610;Import quantity;t;1601600;1519600;1752900;1927400;1981200;2044800;1891400;9232600;9999300;10739200;8842000;10062300;11095600;11250100;9037700;10175347;9949556;10992200;11611100;11741600;11074200;10352000;11196900;11571100;11814300;12514242;13501755;13535901;13758795;13438358;13658758;14353444;13565344;14666587;14551229;14866757;16087381;16473674;16477294;17154834;16928198;17590626;17602102;18592238;19470279;19616674;19489388;19444287;16587081;19914181;18580379;19856645;19214923;19004939;19024794;19662094;19714907;20305568;18811132;17913376;18695752;18616771;16972382 -5400;'150;Europe;1875;Wood pulp;5622;Import value;1000 USD;181068;170099;197012;220844;234096;245970;225532;1201639;1387426;1716680;1535699;1707578;2120686;3430838;3536524;3800756;3702440;3469828;4563511;5695191;5581477;4877836;4420961;5067764;4673172;5444567;7465595;8662786;9957287;9713019;8410296;7744780;5716836;7489443;11517959;8225272;7964702;7924688;7867973;10542509;8310775;7938997;8964578;10081331;10564398;11657662;13723631;14702911;9714018;15374861;15024688;14014961;13511740;13130532;12574396;11472940;12196721.86;15044120.99;12222116;9815838;12578840;15231861;12613924 -5400;'150;Europe;1875;Wood pulp;5910;Export quantity;t;1784100;1704800;1818200;2025900;1957500;1905700;1839200;8072200;8339800;8327600;6961900;7855400;9352600;8664200;6172400;6873272;6778892;8018640;8100240;7958340;7537040;6976040;8275100;8679800;8775400;8973100;9437000;9604700;9355700;8536600;8489600;8887524;8960860;9521534;9375035;9668796;10388998;10320850;11301689;11715949;12050235;12733667;13278708;13605188;13463865;14882134;15460486;14936675;14209949;15435224;15302148;17208367;16164513;15986765;15572813;16584194;17052191;17454863;18575121;18410982;18505070;17784515;19203532 -5400;'150;Europe;1875;Wood pulp;5922;Export value;1000 USD;186756;173187;181224;213420;215180;198428;195778;917036;1012524;1190990;1079677;1210696;1660722;2379483;2324415;2444713;2213949;2349688;3026921;3620726;3430752;2920398;3012429;3567206;3165990;3642313;4901957;5739733;6353138;5715143;4721632;4313846;3226547;4525878;6919924;4832843;4808610;4540211;4821209;6529434;5345220;5217033;6014473;6909756;6911745;8371183;9972423;10627636;7734891;11475830;11812147;11729283;11260243;11099331;9797342;9379815;10425032.59;13039099.58;11228331;9696587;12864031;14458702;13282628 -5400;'150;Europe;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13219884;13640048;12844266;12321612;11982047;11517469;9843425 -5400;'150;Europe;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1059181;1128076;1113465;1054738;1045789;1063436;736204 -5400;'150;Europe;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;534559.87;636262.04;596699;494643;551978;650180;455179 -5400;'150;Europe;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1523320;1493111;1469653;1431380;1600164;1455714;1279123 -5400;'150;Europe;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;712132.82;789502.5;692889;595786;780828;1063886;692756 -5400;'150;Europe;1654;Mechanical wood pulp (1961-2016);5510;Production;t;7107000;6993700;7219800;7617900;7977600;8449300;8288900;8964200;9505600;9895800;9658400;10003200;10561100;10753500;9149400;9517000;9675000;10275000;10812000;10963000;10967000;10502000;11045000;12307000;12495000;12651000;13149000;13830000;14552000;15356000;14423000;13016300;12980200;13286000;14139400;12719800;13563000;13949600;13857570;14467200;13911710;13799249;14120202;14729994;14383683;14941634;15051184;14318143;12323900;13386569;13025574;11791321;10948042;10547027;11072239;11644877;;;;;;; -5400;'150;Europe;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;985900;907000;973400;1089600;1129800;1105300;955700;1034300;1029700;1020300;768200;829600;898000;978900;588100;685417;644262;693600;717500;585800;443900;394400;463100;600300;570700;534203;522856;529420;572657;541600;517600;507243;429892;480700;475208;394828;426728;371370;393225;409810;514465;513364;486197;475665;476583;548134;497488;497894;391698;452443;389498;369961;294715;247247;277801;236587;;;;;;; -5400;'150;Europe;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;77178;70715;75538;84410;92841;90734;78188;85841;87088;94725;75115;77189;105644;193723;160712;162082;151834;142884;181858;191844;154838;135029;131683;193577;177458;179652;214675;245345;276878;277635;231991;212607;152994;182133;234832;162816;153418;137567;143973;178163;199466;196671;214671;220716;216154;251317;279637;282857;199790;250841;233727;194311;159900;126612;127265;97112;;;;;;; -5400;'150;Europe;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;1055000;964300;1046300;1149200;1120200;1124200;1001500;1052900;1035300;1040900;770200;862700;965500;1107900;601000;582156;554040;687540;708440;629940;519540;496240;543500;588400;601800;572400;599600;661900;613100;625400;506900;450887;453262;519097;520733;417533;436447;407014;433625;462145;446061;533639;497362;493226;512736;585449;751620;717280;542269;521924;493159;435444;320625;387997;351343;285463;;;;;;; -5400;'150;Europe;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;68783;62395;66806;74463;77602;76743;67850;73569;73961;82473;63353;70458;99119;192890;151662;135894;114460;127655;168017;181745;144655;125558;123509;143329;145885;170680;208182;273479;268173;265700;198241;169049;140311;176306;249201;162193;149676;124804;130400;181705;147003;168159;179304;198113;206080;253951;391599;418615;262090;288585;278356;203861;161669;179780;147113;116022;;;;;;; -5400;'150;Europe;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;372700;484900;535800;808500;934100;1049800;1124900;1330000;1681400;1637600;1693500;1805700;1957900;2086700;1701000;1942000;1904000;1952000;1956000;1960000;1862000;1800000;1849000;1895000;1956000;2087000;2108000;2321000;2390000;2357000;2235000;1988400;1801500;1792000;1731000;1528000;1702000;1583600;1615700;1922000;1875200;1937000;2039348;2046416;1885900;1885100;1930677;1901402;1719160;1737321;1802018;1871433;1853262;1987949;1824645;2221542;;;;;;; -5400;'150;Europe;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;16200;15000;58000;64900;70200;83900;80600;83900;104600;104300;105500;112100;124200;127700;79300;93500;88200;85600;101700;100800;99900;84900;86300;129900;112300;147100;117000;111600;122800;201000;185300;287360;310213;363103;409842;380219;414922;445112;438690;511840;504272;487719;449012;440358;534007;660125;675885;566582;411993;479582;502007;539248;732787;642765;579159;676495;;;;;;; -5400;'150;Europe;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;1926;1596;5412;5978;6510;6881;6441;6156;7947;9385;10415;11376;15681;26033;21289;24257;18624;19564;27713;29963;38312;29892;25996;42738;32866;49833;50884;51571;61719;104371;83815;114008;102130;144489;248385;163471;164210;179263;191882;281981;211287;188221;203121;209063;248892;330479;399697;372761;218647;350838;357896;335894;436542;389839;355338;363564;;;;;;; -5400;'150;Europe;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;16200;31400;37400;69300;74700;79400;88800;95200;119200;139000;120500;127900;146600;146300;86600;96400;87300;91700;112500;109400;102700;96000;92200;119300;122500;118800;115200;161200;203800;215700;231500;269162;214837;239031;279702;244602;268400;199184;198777;286244;308561;299291;305062;282059;288851;540400;517205;527174;442621;589573;559070;841515;819795;832435;859661;1083419;;;;;;; -5400;'150;Europe;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;1179;2206;2657;5157;5763;5932;6657;6836;8722;12649;11094;11552;15667;27025;20183;22595;18606;18847;28057;33145;30281;28228;22330;30402;29956;33758;41098;70875;103258;110887;98110;115940;74523;86938;166586;100133;90674;70860;73736;148102;126496;113809;127599;123688;120148;256311;281725;303192;189256;343458;301904;433417;447519;441396;385264;474655;;;;;;; -5400;'150;Europe;1656;Chemical wood pulp;5510;Production;t;12486300;12658300;13725600;14375200;15246500;15724100;16734600;17352300;18443800;19997100;19736600;20811000;22353300;23349600;21544000;22392000;21876000;23229000;23937100;23878000;24066000;23460100;25518400;27040000;27030000;27660000;28752000;29551500;30352500;27587500;26259500;25195300;24236500;24531500;25596000;24254500;26078500;26677413;27905916;29949300;29293600;30643146;31550553;32538617;31781479;33597500;33234428;31856552;28489346;30554163;31480726;31720838;31245568;31192263;31131705;31751461;33071929;33629718;33596729;33772090;34985723;34124447;32052076 -5400;'150;Europe;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;7206900;7932200;8701500;7133000;8252300;9145300;9285000;7634900;8633200;8448900;9584300;10085200;10365600;9961300;9258100;10070100;10281900;10521900;11213200;12084000;12319900;12470000;12148000;12397400;12872985;12198219;13214907;13028178;13456509;14520201;14917573;15040856;15572773;15318423;15972996;15975831;17103092;17808396;17638220;17561232;17623513;15142225;18255109;16939805;18181766;17414831;17182708;17387248;18005836;17917314;18443443;16976945;16158704;16863185;16792842;15612984 -5400;'150;Europe;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;951112;1123038;1428598;1273310;1445963;1791177;2914930;3060723;3334710;3225272;3042787;4026472;5095987;5060881;4352819;3963754;4551009;4143875;4878193;6737500;7975782;9167201;8893516;7665441;6942187;5020168;6745265;10524314;7377834;7126276;7085495;7152305;9658040;7473044;7123500;8040719;9171902;9553326;10409338;12271048;13195013;8671501;13877586;13293432;12478531;11975301;11576260;11309239;10297152;10908644.87;13655190.63;10918685;8660701;11229529;13748146;11434293 -5400;'150;Europe;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;6226800;6476100;6490300;5473900;6232600;7541700;6770500;5081600;5694500;5640152;6731000;6726100;6742800;6474800;5992500;7234700;7565500;7673300;7947300;8356400;8390800;8167900;7410600;7543200;7994243;8108349;8524706;8215800;8619300;9219224;9267743;10269409;10547419;10759545;11389009;11829401;12142266;12054957;13058545;13414129;12862766;12619147;13763986;13582624;14834236;13508091;13233566;12805494;13968964;14196337;14655103;15740579;15591867;15691921;15386278;16838637 -5400;'150;Europe;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;729933;814774;970961;888387;997787;1389256;1912179;1945767;2056748;1859003;1995601;2560734;3116877;2982494;2530408;2652435;3185937;2813777;3258671;4413506;5091258;5650343;5080640;4261313;3911375;2906287;4129931;6182201;4297590;4287638;4059937;4360273;5934576;4762994;4662006;5340502;6126521;6122744;7330549;8542282;9000776;6733414;10131641;10235861;9742134;9036133;8952262;7900364;7642416;8414193.98;10961936.08;9315667;8022214;10886933;12369194;11414463 -5400;'150;Europe;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;159000;177200;181900;5950800;4949000;5256200;5847900;5988000;6393400;7112600;7027100;7755500;8342400;9299400;8558000;9032000;8884000;9383000;9466400;9182000;9094000;9025000;9665000;10099000;9879000;9868000;10198000;10288000;10516000;8013500;7577500;6674500;6190500;5798500;6145000;5548000;5796500;5947500;6520000;7193300;7122940;7393300;7354485;7440999;7296800;7526400;7415474;7056555;6360790;6602424;8266387;8535364;8408358;8281620;8437351;8758719;9717649;8517307;8560413;10298758;10234216;10037230;9146948 -5400;'150;Europe;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;993000;1063200;1103700;718800;919400;1202100;1104200;868600;894800;799700;884900;898900;884000;718200;619500;490000;410600;350100;355800;395900;452900;400300;339900;274500;275736;260463;279774;306900;270200;311400;278382;291545;269158;231770;287337;317143;276019;300290;318023;333642;366987;278433;302606;261708;281415;345268;384050;254678;275817;258766;299197;263530;267273;323296;2626663;622030 -5400;'150;Europe;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;115104;128827;152179;109104;135843;194770;316060;297707;287471;245331;225532;292054;350104;270849;213817;151996;146254;125494;137561;184610;211670;199073;207215;181335;143001;107463;130278;186765;149066;144853;123497;121268;138712;101288;117781;146803;135860;146633;166875;254600;252345;158177;208138;198589;199124;245442;276792;160370;162347;154090.85;209427;181774;150688;218761;2034500;397135 -5400;'150;Europe;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;1433700;1300300;1149100;1010200;1129400;1387500;1166400;918400;1046900;1130400;1284100;1251800;1249100;1217900;1151600;1265800;1229200;1150400;1248400;1258100;1234900;1135300;823000;807000;414184;409212;446400;462300;457500;473600;418593;507402;563519;601220;752550;656917;622475;647305;641815;673988;647888;581769;592080;604904;609904;531460;538698;533645;658657;615652;726270;710084;724627;993803;1060437;952374 -5400;'150;Europe;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;149439;136054;143528;139209;152079;218473;294097;301403;324933;318502;347611;444303;516187;479907;454852;475528;504343;454250;512637;566110;693379;672212;474329;451924;186347;152475;174398;301045;190676;181184;147749;161539;218526;177440;222429;201886;218319;233432;265138;342304;344382;229772;319579;356993;302446;286568;308790;263599;305693;303909.12;474852;362135;316582;603770;670359;519617 -5400;'150;Europe;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;32700;29600;40100;89800;2743400;2848900;3399500;3943400;4562500;4947900;5089200;5485500;6112000;6335500;6018000;6281000;6347000;7182000;7844300;8045000;8595000;8319000;9415000;10191000;10744000;11407000;12008000;12657000;12961000;14101000;13686000;14070000;14254000;15024000;15721500;15329500;16720000;17291600;18266300;19443600;18959860;20050000;21034411;22015230;21170850;22736800;22587460;22076444;19958553;21446678;20866516;21040843;21228180;21391063;21357650;21601276;22051474;22824803;23261296;21705022;22858723;22278508;20871927 -5400;'150;Europe;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;3560800;4144700;4717800;4016900;4821700;5229700;5449000;4570700;5408100;5412900;6421100;6861600;7170100;7009300;6573400;7402100;7691800;7881800;8633600;9296200;9505100;9856600;9884300;10338700;11065860;10661879;11709435;11580551;11969270;13041652;13414304;13545698;14202290;13981245;14584637;14572245;15757783;16465160;16488890;16464866;16502549;14203564;17231702;16072066;17389351;16571557;16525189;16876407;17483519;17419787;17887170;16503927;15656662;16305953;13933526;14788194 -5400;'150;Europe;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;472871;597005;784171;725646;858050;1040091;1721216;1872519;2142222;2144643;2054909;2773671;3596143;3615771;3124455;2903330;3444035;3104709;3765407;5247917;6289052;7269890;7140586;6332587;5928025;4345255;5976011;9522453;6615606;6431079;6350232;6413867;8825488;6832628;6481410;7301920;8412899;8788065;9678337;11414650;12295210;8070086;13091318;12546247;11830719;11288526;11025947;10914200;9915086;10533456.7;13186741.88;10521857;8292635;10773614;11436515;10806857 -5400;'150;Europe;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;2493800;2782400;3047600;2597700;3059500;3703400;3353600;2686100;3051600;3021500;3830100;3875000;3899500;3925800;3661100;4512700;4848300;5123300;5328800;5813900;5923900;5804800;5458600;5521200;6379076;6437075;6775790;6537900;6966900;7610800;7753042;8612408;8935144;9033019;9519867;10057967;10459491;10339224;11478223;11965258;11555045;11421867;12514667;12385019;13836796;12710534;12479039;12082484;13148001;13447624;13787665;14896254;14699124;14541624;14177716;15726528 -5400;'150;Europe;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;306912;370448;474273;439570;509427;705040;976194;1103100;1172670;1045615;1155202;1501824;1858583;1872775;1550875;1612250;2064203;1835534;2155118;3151578;3602901;4099320;3795735;3017434;3078218;2259786;3300088;4953496;3526281;3579533;3405529;3715475;5109706;4085843;3956238;4607894;5335014;5307408;6506584;7676681;8137958;6125940;9306272;9383491;9088351;8484582;8426092;7468398;7184302;7970418.29;10328327;8808526;7543668;10104509;11511751;10702087 -5400;'150;Europe;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1302806;2287608;1775020;1768310;1892784;1808709;2033201 -5400;'150;Europe;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;238761;257076;209488;234769;233936;232653;202760 -5400;'150;Europe;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;221097.32;259021.74;215054;217378;237154;277131;230301 -5400;'150;Europe;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;133061;141168;134241;168116;156494;148125;159735 -5400;'150;Europe;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;139866.56;158757.08;145006;161964;178654;187084;192759 -5400;'150;Europe;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;357900;351400;360800;1734600;4502000;4391100;4317800;4206200;4203200;4457800;4320800;4272100;4436500;4244700;3994000;3917000;3690000;3652000;3462100;3452100;3437000;3387100;3610400;3726000;3502000;3460000;3577000;3609000;3868000;1803000;1467000;1287800;1001000;713000;756500;576000;551000;477100;475800;458300;502800;435994;440800;402271;417300;417900;351900;365900;266703;406465;359746;423606;302310;314330;431838;412768;;;;;;; -5400;'150;Europe;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;684500;642800;616600;434700;495300;567900;615500;396000;373000;332800;329000;325200;320300;274000;260000;263500;256500;271500;234100;211600;140000;141100;99600;72700;69623;72912;76710;76100;63259;49600;83432;36868;54836;97455;53572;61706;65683;58352;27047;51238;36858;23940;25312;25279;22357;24130;16588;20508;14965;;;;;;; -5400;'150;Europe;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;83505;81324;91814;69851;80541;99567;173831;151350;130907;104952;93103;120616;151266;127106;116804;94389;99444;95952;93594;101927;73792;105478;73762;36981;34536;28189;30866;39348;19770;18479;35159;14999;25682;38416;16915;35195;27455;25155;11958;41994;39383;16207;20868;19464;13023;16183;11668;16740;8352;;;;;;; -5400;'150;Europe;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;794700;925000;879600;723800;775000;929900;872800;572000;520500;480452;554300;533300;545300;383800;374500;422600;400400;385700;370000;346200;270000;247900;163300;163800;90062;141139;109300;153300;52000;61000;53576;43720;73466;74077;62406;72499;61069;41799;25482;21124;9081;7715;11589;6590;12244;23988;15586;14831;11461;;;;;;; -5400;'150;Europe;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;83120;106757;119371;108079;117447;158788;200034;179519;159293;145101;159508;174620;199957;154705;150531;159934;155220;141522;145958;147684;150149;143284;104443;104005;42414;56240;40999;94580;25134;25088;20296;17721;31446;25416;18837;22596;21653;14581;10180;7612;5164;2092;5141;3099;6461;13892;8158;7106;4535;;;;;;; -5400;'150;Europe;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;137100;141500;148200;3064400;2789000;3000900;3161400;3206500;3276500;3470700;3291400;3289900;3454400;3462000;2966000;3154000;2947000;3004000;3156300;3190900;2932000;2721000;2820000;3016000;2897000;2917000;2961000;2984000;2994000;3670000;3529000;3163000;2791000;2996000;2973000;2801000;3011000;2961213;2643816;2854100;2708000;2763852;2720857;2680117;2896529;2916400;2879594;2357653;1903300;2098596;1988077;1721025;1306720;1205250;904866;978698;;;;;;; -5400;'150;Europe;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;1849400;1944500;2058800;1688300;1759800;1902900;1870200;1493900;1673900;1613500;1647300;1655500;1666200;1707500;1560200;1694800;1671600;1736200;1808700;1956300;2017900;1884700;1824200;1711500;1461766;1202965;1148988;1064627;1153780;1117549;1141455;1166745;1046489;1007953;1047450;1024737;1003607;984594;804260;711486;717119;636288;695489;580752;488643;473876;256881;235655;231535;;;;;;; -5400;'150;Europe;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;261872;294960;366395;324356;326618;406458;640373;641173;681991;636246;564756;706844;853890;917228;792728;730033;774558;726415;840247;1101140;1328138;1513220;1471953;1114538;836625;539261;608110;775748;593392;531865;576607;602171;668158;500712;507394;556801;595688;593473;552168;559804;608075;427031;557262;529132;435665;425150;261853;217929;211367;;;;;;; -5400;'150;Europe;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;1433900;1367900;1365600;1100900;1214800;1465200;1311200;843500;1017600;969400;1026700;1032600;1020900;928300;797700;995500;1052000;976000;978100;918200;945000;961900;965700;1051200;1110921;1120923;1193216;1062300;1142900;1073824;1042532;1105879;975290;1051229;1054186;1042018;999231;1026629;913025;753759;650752;607796;645650;586111;375292;242109;200243;174534;150845;;;;;;; -5400;'150;Europe;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;181306;188061;225007;193232;207839;292981;425754;346795;385963;340558;324753;431960;529723;466680;370763;390149;446605;367274;435577;532862;634648;720905;706133;687950;604396;437786;614446;833080;555499;501833;486363;465538;574898;474295;464502;508126;551535;567323;548647;515685;513272;375610;500649;492278;344876;251091;209222;161261;147886;;;;;;; -5400;'150;Europe;1667;Dissolving wood pulp;5510;Production;t;1704200;1768800;1889800;1986700;1989900;1905500;2041700;2057100;2119100;2193300;2155000;2300000;2379000;2485000;2281000;2276000;2295000;2316000;2187000;2114000;2121000;2004000;2050000;2081000;2004000;2166000;1994000;2047000;2113000;1998000;1745000;1254000;1209000;982000;992000;854000;866000;519400;489300;552100;457000;470563;657000;719930;931000;1019000;1053307;982222;891073;728723;881097;1287799;1750583;1873286;1839910;2110222;2190808;2096022;2053714;2036784;1947969;1964681;1787017 -5400;'150;Europe;1667;Dissolving wood pulp;5610;Import quantity;t;599500;597600;721500;772900;781200;829500;820000;907500;932800;913100;835300;868300;928100;858500;735400;763230;768194;628700;706700;689400;569100;614600;577400;559000;609400;619739;777899;574981;593338;547758;558458;685856;627020;607877;638001;635201;725530;739619;604523;660411;591038;616547;691062;573123;651293;770195;754783;756298;641165;727047;749069;765670;772590;932219;780586;743176;738412;734049;720722;699934;786778;760493;623194 -5400;'150;Europe;1667;Dissolving wood pulp;5622;Import value;1000 USD;101964;97788;116062;130456;134745;144811;136369;158530;169353;183972;176859;173050;208184;296152;293800;279707;306710;264593;327468;377397;327446;360096;299528;280440;318973;336889;462536;390088;451489;437497;429049;475978;441544;417556;510428;521151;520798;522363;379813;424325;426978;430605;506067;479650;546026;666528;773249;852280;624080;895596;1139633;1006225;939997;1037821;782554;715112;753517.12;752668.32;706732;660494;797333;833535;724452 -5400;'150;Europe;1667;Dissolving wood pulp;5910;Export quantity;t;712900;709100;734500;807400;762600;702100;748900;697300;709200;657400;597300;632200;698800;639500;403200;500216;497400;508400;553200;476200;440000;391300;404700;406600;377800;334600;365800;390800;370900;284900;208000;173232;184412;238700;358800;387361;464927;446909;399878;420141;536068;511728;646883;687637;607321;697740;777532;829455;605912;559741;667295;1097172;1516002;1532767;1556315;1246348;1332534;1306649;1364889;1387735;1212985;942523;1085772 -5400;'150;Europe;1667;Dissolving wood pulp;5922;Export value;1000 USD;116794;108586;111761;133800;131815;115753;121271;106698;115067;124907;116843;130899;156680;247389;206803;229476;221880;207585;270113;288959;273322;236204;214155;207538;176372;179204;239171;304121;331364;257916;163968;117482;105426;132703;321936;272927;280622;284610;256800;265051;308727;273059;367068;461434;462773;530372;756817;905053;550131;712146;996026;1349871;1614922;1525893;1364601;1146722;1298705.8;1287661;1219775;1078587;1196270;1025622;1175409 -5400;'150;Europe;1668;Pulp from fibres other than wood;5510;Production;t;1218400;1222800;1119400;1295000;1360900;1659000;1657900;1703500;1589400;1607700;1523600;1502700;1510700;1560400;1277400;1394400;1307400;1280400;1160100;1049200;976200;936400;929400;849500;848400;805900;808400;889400;852400;772400;744400;453500;402000;284500;345400;331300;311400;196200;226050;625750;653150;610394;291007;272106;1013818;1110795;1315930;1324949;1330134;1281080;1358416;1376133;1987342;1393252;1345084;922954;697551;657780;576761;683800;760507;733800;712787 -5400;'150;Europe;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;1000;66800;70500;80900;68400;79100;91500;80400;62000;84000;80700;87800;58600;71764;60468;82700;102000;88000;76100;74500;63800;78300;98300;104300;116500;92900;122900;127400;119200;134964;96163;73376;109901;130507;172055;160038;175432;176605;168632;164764;174808;234488;221105;235782;204601;225416;264283;250245;211422;221798;192221;240611;180551;166880;157418;167798;163978;169947;165145;174778;162568 -5400;'150;Europe;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;617;11194;12385;15153;13291;14683;15822;15764;13978;16527;22872;47879;35645;36533;33227;43968;61760;63715;56751;55057;44085;48731;62782;69071;83893;77962;98413;110783;104848;121140;94306;78758;112486;137249;151652;147571;158939;175965;191533;183340;185862;242672;249010;300981;341986;408688;383738;368295;395658;334680;309156;351248;268165;257110;274682.57;302154.21;315916;304460;309440;381197;334790 -5400;'150;Europe;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;36700;38900;62000;47800;45800;80700;38800;44400;89600;90500;109100;95900;153100;121500;90500;91900;32200;19500;12600;16300;33900;29000;30300;38700;59000;81300;44100;40700;86049;61258;36544;41900;37200;52900;78800;98759;80200;95329;119000;120781;151238;163211;167113;172281;175415;172222;155773;180837;182316;178843;227212;159343;140367;135852;92262;86065;107334;116624;101250;106893 -5400;'150;Europe;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;4632;4081;4468;4137;4122;5510;4547;5320;6716;8267;11658;13901;16984;13428;12110;14070;15458;8692;7848;10113;14342;11657;14059;15592;24203;49434;25810;20110;72044;53530;37133;48073;51075;57016;64922;66169;72617;80046;95453;118738;145023;142639;176146;224930;216657;206946;188854;193895;148838;164657;217923;134853;129318;148197.04;139520.97;114727;156569;188678;171096;196245 -5400;'150;Europe;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29812;132020;118262;121397;68940;61342;48204;59913;58239;54386;68644;75982;130025;190177;256348;231765;177214;79150;88511;100288;105811;113559;171586;153238;146623;173747 -5400;'150;Europe;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11937;41151;29153;41853;20380;23167;18926;25648;29376;45906;57615;62940;114571;141952;107849;94030;66114;47572;47683;54574.24;59287.35;65525;79486;88840;88034;78366 -5400;'150;Europe;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71400;95454;237079;194902;157416;159645;90303;94021;146001;118250;136993;164870;225618;247788;280862;162322;134400;153109;148871;147116;207098;166527;244924;254416;197066;220055 -5400;'150;Europe;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63581;66356;44615;75178;31265;32475;29505;35152;55153;67015;78381;71585;87850;103144;119435;108118;86193;77873;78423;82435;117437.95;92862;137887;162257;141781;147247 -5400;'150;Europe;1669;Recovered paper;5510;Production;t;5191000;5241000;5518000;6150000;6445000;6763000;7042000;7757000;8404000;10971000;11109000;12196000;13706000;14421000;13201000;14752000;15676000;16284000;17463000;17960000;18751000;18896000;19583000;20878000;21796000;22468000;24032000;25588000;27232000;27121000;28331000;27750500;28458000;31950000;33292000;34071000;34918000;37656847;40731138;44058823;45333588;47001330;48445651;52106471;55363906;57224712;58003203;57635896;55240362;56421625;55831173;59217738;59440478;60155113;60642063;60955979;61095799;62878892;63174485;61669559;61913343;58844797;56857260 -5400;'150;Europe;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;1226000;1057000;1372000;1664000;2147569;1532244;2179575;2217942;2202779;2699110;2799678;2682442;2729786;2821100;3526900;3741700;3570510;3768660;4618586;5447142;5584219;5636319;6342428;5612735;7031763;7210856;7200059;6974875;7400485;8159493;9847363;9577614;9865941;10826830;11228867;11772531;12996561;13561063;13720318;13711443;15658701;16003768;15334914;14766465;14490314;14922913;15469982;16224557;16251907;16151524;14807620;16951105;15550118;14313109 -5400;'150;Europe;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;72388;56007;73332;124827;325281;156879;227505;226000;212710;364670;458970;324843;300516;284265;394982;410062;394649;477006;674780;890508;815529;685349;667326;424002;805374;1514223;821626;547072;585288;634844;1167943;840628;1033866;1274165;1367156;1369875;1576227;2187755;2454166;1779553;2954902;3828048;2780712;2625120;2554023;2282371;2483113;2851982.18;2595602.25;2276118;1837135;3520120;3506985;2153995 -5400;'150;Europe;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;1091000;929000;1118000;1403000;1814036;1388652;1879375;1943678;2055141;2353257;2463766;2585329;2538646;2649600;3301800;3296100;3279700;3660100;4302000;4542300;4615300;5160400;5391071;5413771;6366915;7744742;7400790;7983959;8874548;10632530;11387227;11625608;12307955;13995397;16970579;18699951;20526277;23063121;24540352;25834560;23971360;25684364;25018256;23388027;23068810;24322200;24749439;25245905;24292714;22821330;21020501;21435084;21048102;22434615 -5400;'150;Europe;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;63004;46778;59950;102394;244827;122699;168381;171194;173970;280722;352804;265731;239795;246319;335815;340201;336366;414540;588862;569995;608650;552489;616891;393979;701432;1171750;706152;587462;567462;704277;1322026;899817;1173305;1560504;1973837;2185184;2481013;3668452;4308236;3002100;4462499;5632503;4384051;3996334;3888340;3669644;3736885;4443073.98;3862715.05;2921881;2494485;4697557;4489724;3286315 -5400;'150;Europe;1876;Paper and paperboard;5510;Production;t;26701400;27604800;29483200;30933200;32928000;35179000;36565900;39465800;42601100;44769300;44817200;47498800;51031900;52992100;46331300;51825100;52764400;55070100;57552300;57882800;58004000;56993400;59607000;64368000;64800000;66994000;69954000;74547000;76430000;77588500;77233500;75130390;75691190;80566100;82312000;81651390;88417500;90829201;94739802;100174982;99035957;102166052;104857020;109824612;110863147;114595246;114977340;111312444;100985611;106249901;107249636;105375308;104543523;104225355;103898242;104231905;105729344;106107772;102860013;98922319;104274245;99032951;88197308 -5400;'150;Europe;1876;Paper and paperboard;5610;Import quantity;t;4774400;5081600;5646022;6392300;6868000;7506200;7793600;8920500;10640800;11044420;11575600;12825100;13878600;15004900;11606400;14073300;14342514;15324600;16830000;17150900;17694000;17698000;19031200;20453100;20292500;22165724;23948546;26462076;28956348;30253100;31036500;32017267;31900141;35363187;34726484;34911251;41028637;42252553;46345322;48346321;47953903;48984290;52025463;52958449;55579702;58972081;63084725;59731971;53460870;56443714;55698423;53761200;53503498;54016217;55055105;55065781;55863107;56136494;54056950;51303252;52486681;51564744;46288501 -5400;'150;Europe;1876;Paper and paperboard;5622;Import value;1000 USD;875258;945633;1042175;1184040;1312984;1474425;1569215;1749280;2150918;2370013;2640164;3131711;4078832;6483701;5819897;6511972;7381307;8099802;10221998;11701054;11210885;10963401;10609850;11380805;11885987;15404744;19340332;23811882;25677955;29386769;29392914;29089989;24894349;27454360;35299331;32936665;32856888;33863836;34442245;35497716;35049309;35307665;42697606;45718853;47036208;51195403;59639571;62722921;50466534;52712840;58129941;51611317;52721318;53213608;46248396;44616690;46128996.75;50902321.65;46690436;41960893;48003066;56895321;48887990 -5400;'150;Europe;1876;Paper and paperboard;5910;Export quantity;t;5405600;5608600;6177300;6911000;7426300;8160100;8438000;9513200;10956800;11745000;11944700;13201400;14953800;16198500;11868500;14488700;15257270;17274100;18898300;19006400;19689000;19357100;20938798;23570100;24404200;25239929;27746253;30556200;31641271;33043687;33783076;34725903;37182872;41800943;43545291;42245288;49829082;51289112;54726885;58106068;56064666;59685239;63131177;67810799;68809211;70070367;73122790;69863619;63450961;68094991;67633759;65694518;65789921;66749943;68102692;67901549;68651554;69101194;67666539;64641721;67979498;62283343;55177322 -5400;'150;Europe;1876;Paper and paperboard;5922;Export value;1000 USD;1003898;1025484;1132212;1260396;1388498;1542373;1622749;1772782;2066633;2356586;2567676;3035807;4094001;6433958;5707498;6708639;7306730;8605984;10885113;12525328;12019341;11513257;11345577;12551681;13324279;16615999;21835081;26067049;27418984;30844733;30559411;31240460;26904183;31321665;44144607;39754387;39597508;41635080;41233336;43074702;39575829;41450787;49334755;55537652;57244764;61444528;69674361;73661659;59278250;63422538;70925914;62139759;63885287;64149430;56267403;54770702;57590832.26;63363619.88;58161811;52157980;62466104;69851395;58224549 -5400;'150;Europe;2042;Graphic papers;5510;Production;t;10825800;11007000;11581000;12505500;13208300;14321600;14823700;16045300;17375700;18224900;18011800;19155600;20585900;21181000;17617600;19663000;20385300;22311100;23636000;23936000;24134000;23404000;24742000;27703000;27834000;29050000;30859000;33082000;34426000;35295500;35117500;34996290;35997790;39418800;40504100;39892690;43824600;44951182;46820593;49320758;47740917;47918216;49972046;53235308;52567256;53524569;53164478;51110074;44095503;46753518;46047522;43933618;41460534;40865613;38844738;37520981;36884979;35703463;33050991;27490880;28946839;26242278;20682965 -5400;'150;Europe;2042;Graphic papers;5610;Import quantity;t;2055500;2179800;2344600;2657300;2857300;3071500;3137800;3663100;4309900;4624100;4652000;5400000;5860100;6445900;5386800;6169400;6374890;6889900;7557700;7864000;8429200;8409700;8950200;9917100;9810000;10584524;11715346;13583976;14862848;15819200;16391100;17276718;17999222;20133594;19598656;18786767;23271653;23177649;26728206;27983773;27602274;28162679;30036959;30596157;32865315;34078686;35327674;33481568;28578914;29700152;29106761;26879937;25876670;25333585;24955077;24172952;23678500;22904577;21160654;18122155;18114981;17430143;14768005 -5400;'150;Europe;2042;Graphic papers;5622;Import value;1000 USD;333891;363731;393913;450423;492414;538840;565663;654030;776610;871106;953390;1172118;1585286;2634104;2551680;2782214;3413445;3832570;4820742;5542310;5425375;5369102;4988006;5436186;5737286;7535800;9450145;12649032;13091335;15710702;15740867;15445502;13271305;15272434;19025009;16841333;17719650;17904635;19303433;20422979;20293476;20795372;24599991;26068067;27588998;28997526;33554880;34319895;27438407;26933884;28821233;25114897;24486977;24119982;19718212;18608118;18407397.73;19761433.08;18160481;14685323;15536724;19579327;17086012 -5400;'150;Europe;2042;Graphic papers;5910;Export quantity;t;2649100;2693400;2883600;3259000;3632800;3894100;4111200;4781800;5332400;5737500;5835400;6567200;7308200;7776900;5995200;6849100;7376370;8381500;9260500;9643700;10112800;9796600;10627400;12396500;12924700;13120629;14721653;17037500;17890271;18341387;18684276;19953869;22283850;25327914;26267561;24916871;30319407;29887172;33078166;34591850;32995315;35626936;38061230;40983302;41236208;42807735;42428328;40679888;35114584;37631697;37448591;35138629;33691006;33866261;33245527;32168483;31655180;30784288;28791221;23612290;24877978;21749945;17231855 -5400;'150;Europe;2042;Graphic papers;5922;Export value;1000 USD;430444;432140;458077;526625;604500;653864;709971;816564;917635;1045129;1143528;1372750;1869800;3093015;2670221;3145518;3505989;4194967;5253350;6126567;6059615;5860012;5516034;6430714;6907117;8550998;11219114;14621702;15164683;16776354;16765808;17470878;15450351;18311587;25528145;22506597;23030528;23094007;24138595;25111749;23404149;25123099;29106892;32844028;33631059;35704905;38923877;40834301;32639829;33661385;36579768;31519427;30559626;30742838;25094496;23918443;23923621.06;25895753.98;23645433;18353158;20862352;24891721;19172776 -5400;'150;Europe;1671;Newsprint;5510;Production;t;4806100;4834000;4913700;5349000;5702900;6064800;6144900;6354500;6725200;6986900;6735300;6803800;6895900;6821300;6277900;6385000;6365300;6827100;7608000;7745000;7908000;7198000;7489000;8429000;8695000;8952000;9320000;9649500;9899500;10383000;9904000;9540500;10067700;10723700;11574500;10802800;11667800;11759000;12636900;12954018;13129020;12177262;12776386;13459258;13114561;13053042;12784897;12688201;10927432;11490789;11188930;10663392;9934220;9174552;8444360;8305841;7847417;7544617;7122667;5735409;5942857;5248027;4487560 -5400;'150;Europe;1671;Newsprint;5610;Import quantity;t;1521700;1602200;1666200;1795900;1828300;1946300;1832700;2045200;2481400;2683100;2569400;3015100;3148800;3389700;2763000;3114700;3023100;3137300;3345100;3468000;3730600;3579100;3657300;3853000;3845200;3965100;4341400;4427800;5064600;5001100;5083900;4977438;5332024;5930351;5514810;5506630;6450859;6517224;6682077;6866514;7163009;6575120;6364065;6651267;7079004;7034117;7193593;6818443;5717111;5708825;5643234;4987152;4764744;4505790;4302995;4272432;4042365;3715119;3371952;2716968;2775317;2868240;2441504 -5400;'150;Europe;1671;Newsprint;5622;Import value;1000 USD;221926;234150;241178;257702;259571;278843;265766;291165;352679;394469;407386;496465;607855;1004127;1029215;1036580;1297785;1393370;1695401;1949125;1893403;1786241;1617796;1547982;1578907;2032737;2601250;3040267;3174614;3576883;3678039;3070436;2489846;2898060;3815328;4195150;3707034;3568160;3530724;3279703;3950535;3479843;3576354;3908472;4210526;4542347;5177377;4846505;3897588;3226703;3818968;3299937;3077138;2955257;2251646;2188122;2093955.55;2214312.94;2014844;1437259;1487927;2245222;1876523 -5400;'150;Europe;1671;Newsprint;5910;Export quantity;t;1758500;1780100;1866500;2061500;2177200;2318700;2382800;2620300;2769000;2924600;2840800;3057400;3162000;3078900;2547700;2661800;2633570;3112500;3779200;3922300;4116800;3623100;3898600;4348100;4730900;4684500;5030675;4950138;5071063;5454776;5160676;5012945;6196493;6449134;6695906;6726506;7869506;7754825;7667550;7671532;7713287;7481759;7710129;8281279;7938890;7957574;7522739;7533266;6717812;7318982;7170507;7105833;6619954;6156845;5838463;5771530;5777060;5360612;5065712;4342466;4150147;3736265;3367755 -5400;'150;Europe;1671;Newsprint;5922;Export value;1000 USD;228584;231705;240644;264001;276772;294942;307901;326157;342125;377864;384234;441418;534007;816678;873796;881793;951290;1175501;1575713;1837450;1849333;1581802;1507591;1580713;1701876;2163724;2697293;3082179;2986836;3542874;3383928;2805978;2626719;2789034;4412733;4550013;4122256;4041240;3786407;3516670;3850374;3416249;3726671;4216417;4306791;4680363;4869848;5230639;4265327;4093057;4936026;4463180;4064673;3840186;2831981;2759073;2792894.32;3147310.49;2785291;2073513;2362943;3085409;2426028 -5400;'150;Europe;1674;Printing and writing papers;5510;Production;t;6019700;6173000;6667300;7156500;7505400;8256800;8678800;9690800;10650500;11238000;11276500;12351800;13690000;14359700;11339700;13278000;14020000;15484000;16028000;16191000;16226000;16206000;17253000;19274000;19139000;20098000;21539000;23432500;24526500;24912500;25213500;25455790;25930090;28695100;28929600;29089890;32156800;33192182;34183693;36366740;34611897;35740954;37195660;39776050;39452695;40471527;40379581;38421873;33168071;35262729;34858592;33270226;31526314;31691061;30400378;29215140;29037562;28158846;25928324;21755471;23003982;20994251;16195405 -5400;'150;Europe;1674;Printing and writing papers;5610;Import quantity;t;533800;577600;678400;861400;1029000;1125200;1305100;1617900;1828500;1941000;2082600;2384900;2711300;3056200;2623800;3054700;3351790;3752600;4212600;4396000;4698600;4830600;5292900;6064100;5964800;6619424;7373946;9156176;9798248;10818100;11307200;12299280;12667198;14203243;14083846;13280137;16820794;16660425;20046129;21117259;20439265;21587559;23672894;23944890;25786311;27044569;28134081;26663125;22861803;23991327;23463527;21892785;21111926;20827795;20652082;19900520;19636135;19189458;17788702;15405187;15339664;14561903;12326501 -5400;'150;Europe;1674;Printing and writing papers;5622;Import value;1000 USD;111965;129581;152735;192721;232843;259997;299897;362865;423931;476637;546004;675653;977431;1629977;1522465;1745634;2115660;2439200;3125341;3593185;3531972;3582861;3370210;3888204;4158379;5503063;6848895;9608765;9916721;12133819;12062828;12375066;10781459;12374374;15209681;12646183;14012616;14336475;15772709;17143276;16342941;17315529;21023637;22159595;23378472;24455179;28377503;29473390;23540819;23707181;25002265;21814960;21409839;21164725;17466566;16419996;16313442.17;17547120.13;16145637;13248064;14048797;17334105;15209489 -5400;'150;Europe;1674;Printing and writing papers;5910;Export quantity;t;890600;913300;1017100;1197500;1455600;1575400;1728400;2161500;2563400;2812900;2994600;3509800;4146200;4698000;3447500;4187300;4742800;5269000;5481300;5721400;5996000;6173500;6728800;8048400;8193800;8436129;9690978;12087362;12819208;12886611;13523600;14940924;16087357;18878780;19571655;18190365;22449901;22132347;25410616;26920318;25282028;28145177;30351101;32702023;33297318;34850161;34905589;33146622;28396772;30312715;30278084;28032796;27071052;27709416;27407064;26396953;25878120;25423676;23725509;19269824;20727831;18013680;13864100 -5400;'150;Europe;1674;Printing and writing papers;5922;Export value;1000 USD;201860;200435;217433;262624;327728;358922;402070;490407;575510;667265;759294;931332;1335793;2276337;1796425;2263725;2554699;3019466;3677637;4289117;4210282;4278210;4008443;4850001;5205241;6387274;8521821;11539523;12177847;13233480;13381880;14664900;12823632;15522553;21115412;17956584;18908272;19052767;20352188;21595079;19553775;21706850;25380221;28627611;29324268;31024542;34054029;35603662;28374502;29568328;31643742;27056247;26494953;26902652;22262515;21159370;21130726.74;22748443.49;20860142;16279645;18499409;21806312;16746748 -5400;'150;Europe;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8522196;6687900;7014560;7473257;7762313;8118144;8146249;7935801;8968930;8988981;9129282;7815909;7844632;7964903;7667998;6841601;6170821;6171779;6169968;6186889;6009049;5499428;4661022;5068380;4467165;3762591 -5400;'150;Europe;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2678928;3853953;4041630;4406840;4035418;4196998;4483923;4485668;4569022;5140716;5253980;4626344;4685470;4350811;4092189;3805517;3545985;3316245;3305116;3391613;3274625;2836951;2650978;2464357;2527111;2113015 -5400;'150;Europe;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1914677;2684494;2599853;2960434;2695188;3007703;3413523;3370258;3489913;4253858;4671678;3977704;3663120;3696839;3333243;3092995;2919108;2234187;2155275;2200827.98;2387840.04;2104326;1802780;1734621;2314132;2078796 -5400;'150;Europe;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4333035;5064704;5467282;5406423;5310462;5718547;6197176;6271297;6874788;7174945;7369344;6008021;6145952;5913732;5633264;5255088;4905325;4885670;5012745;4695936;4669461;4167868;3483267;3785644;3385846;2637859 -5400;'150;Europe;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3043953;3459050;3226906;3379300;3261915;3728093;4203313;4314468;4874693;5442219;6090199;4962296;4591891;4850754;4403610;4040215;3761823;3015829;2982575;2914481.28;3141599.16;2858944;2233632;2426774;3057025;2468176 -5400;'150;Europe;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9488372;9621800;10162076;9966380;9770264;10037277;10864002;10742523;10645520;10261006;9406772;9111113;9416211;9362125;9042874;9127970;10076738;9695121;9272949;9220406;9086848;8574071;7929846;8492317;8081597;6482191 -5400;'150;Europe;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3766672;4579234;4619212;4928987;6022796;6704973;6810196;7590575;7523962;7583762;6908636;6586187;7014255;7127790;6871114;6664467;6779562;6597445;6342272;6348942;6233419;6079657;5104675;5170328;5143232;4441560 -5400;'150;Europe;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3330532;3741378;4214432;4450464;5349256;6553729;6828828;7287853;7502976;8621214;8695411;7416816;7698262;8480738;7657493;7477150;7457831;6201989;5928428;5962314.68;6520960.72;6286158;5096796;5409120;6775653;6048880 -5400;'150;Europe;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4516455;5129375;5148280;4948165;7141310;7623801;7937684;7960691;8620273;8022830;7424849;7499934;7067066;7714563;7830029;7932628;8308126;8188087;7726105;7567434;7421683;7334805;6188213;6589360;5975639;4717325 -5400;'150;Europe;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4165543;4349863;4982128;4350241;6195461;7228472;7816381;7840590;8651822;9645692;9971081;8636393;8596869;9663091;8916915;9261681;9462278;7980968;7537012;7605830.11;8129852.05;7727489;6190510;6958216;8211672;6498807 -5400;'150;Europe;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15181614;17873993;19190104;17172260;18208377;19040239;20765799;20774371;20857077;21129594;19885819;16241049;18001886;17531564;16559354;15556743;15443502;14533478;13772223;13630267;13062949;11854825;9164603;9443285;8445489;5950623 -5400;'150;Europe;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10214825;11612942;12456417;11103438;11529345;12770923;12650771;13710068;14951585;15409603;14500509;11649272;12291602;11984926;10929482;10641942;10502248;10738392;10253132;9895580;9681414;8872094;7649534;7704979;6891560;5771926 -5400;'150;Europe;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9091266;9346837;10328991;8932043;9271085;11462205;11917244;12720361;13462290;15502431;16106301;12146299;12345799;12824688;10824224;10839694;10787786;9030390;8336293;8150299.51;8638319.37;7755153;6348488;6905056;8244320;7081813 -5400;'150;Europe;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13282857;15216537;16304756;14927440;15693405;17008753;18567163;19065330;19355100;19707814;18352429;14888817;17099697;16649789;14569503;13883336;14495965;14333307;13658103;13614750;13332532;12222836;9598344;10352827;8652195;6508916 -5400;'150;Europe;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11843271;12543275;13386045;11824234;12249474;14423656;16607917;17169210;17498027;18966118;19542382;14775813;16379568;17129897;13735722;13193057;13678551;11265718;10639783;10610415.35;11476992.28;10273709;7855503;9114419;10537615;7779765 -5400;'150;Europe;1675;Other paper and paperboard;5510;Production;t;15875600;16597800;17902200;18427700;19719700;20857400;21742200;23420500;25225400;26544400;26805400;28343200;30446000;31811100;28713700;32162100;32379100;32759000;33916300;33946800;33870000;33589400;34865000;36665000;36966000;37944000;39095000;41465000;42004000;42293000;42116000;40134100;39693400;41147300;41807900;41758700;44592900;45878019;47919209;50854224;51295040;54247836;54884974;56589304;58295891;61070677;61812862;60202370;56890108;59496383;61202114;61441690;63082989;63359742;65053504;66710924;68844365;70404309;69809022;71431439;75327406;72790673;67514343 -5400;'150;Europe;1675;Other paper and paperboard;5610;Import quantity;t;2718900;2901800;3301422;3735000;4010700;4434700;4655800;5257400;6330900;6420320;6923600;7425100;8018500;8559000;6219600;7903900;7967624;8434700;9272300;9286900;9264800;9288300;10081000;10536000;10482500;11581200;12233200;12878100;14093500;14433900;14645400;14740549;13900919;15229593;15127828;16124484;17756984;19074904;19617116;20362548;20351629;20821611;21988504;22362292;22714387;24893395;27757051;26250403;24881956;26743562;26591662;26881263;27626828;28682632;30100028;30892829;32184607;33231917;32896296;33181097;34371700;34134601;31520496 -5400;'150;Europe;1675;Other paper and paperboard;5622;Import value;1000 USD;541367;581902;648262;733617;820570;935585;1003552;1095250;1374308;1498907;1686774;1959593;2493546;3849597;3268217;3729758;3967862;4267232;5401256;6158744;5785510;5594299;5621844;5944619;6148701;7868944;9890187;11162850;12586620;13676067;13652047;13644487;11623044;12181926;16274322;16095332;15137238;15959201;15138812;15074737;14755833;14512293;18097615;19650786;19447210;22197877;26084691;28403026;23028127;25778956;29308708;26496420;28234341;29093626;26530184;26008572;27721599.03;31140888.57;28529955;27275570;32466342;37315994;31801978 -5400;'150;Europe;1675;Other paper and paperboard;5910;Export quantity;t;2756500;2915200;3293700;3652000;3793500;4266000;4326800;4731400;5624400;6007500;6109300;6634200;7645600;8421600;5873300;7639600;7880900;8892600;9637800;9362700;9576200;9560500;10311398;11173600;11479500;12119300;13024600;13518700;13751000;14702300;15098800;14772034;14899022;16473029;17277730;17328417;19509675;21401940;21648719;23514218;23069351;24058303;25069947;26827497;27573003;27262632;30694462;29183731;28336377;30463294;30185168;30555889;32098915;32883682;34857165;35733066;36996374;38316906;38875318;41029431;43101520;40533398;37945467 -5400;'150;Europe;1675;Other paper and paperboard;5922;Export value;1000 USD;573454;593344;674135;733771;783998;888509;912778;956218;1148998;1311457;1424148;1663057;2224201;3340943;3037277;3563121;3800741;4411017;5631763;6398761;5959726;5653245;5829543;6120967;6417162;8065001;10615967;11445347;12254301;14068379;13793603;13769582;11453832;13010078;18616462;17247790;16566980;18541073;17094741;17962953;16171680;16327688;20227863;22693624;23613705;25739623;30750484;32827358;26638421;29761153;34346146;30620332;33325661;33406592;31172907;30852259;33667211.19;37467865.9;34516378;33804822;41603752;44959674;39051773 -5400;'150;Europe;1676;Household and sanitary papers;5510;Production;t;140000;190000;208000;248000;496200;804500;1222900;1237400;1345800;1456300;1503500;1637800;1698900;1852000;1853000;1849000;1867000;2031000;2311100;2410100;2439700;2430800;2703000;2886000;2936000;3061000;3156000;3501000;3636000;3774000;3970000;4042300;4087700;4522100;4611200;4709400;5482400;5511100;5744900;5708242;6046940;6379412;6171610;6443552;6853590;6886106;7174807;7220611;7184562;7324032;7700037;7671929;7770200;7909187;7937211;8142014;8505252;8271631;8336479;8592403;8343963;8599564;8363780 -5400;'150;Europe;1676;Household and sanitary papers;5610;Import quantity;t;26500;27700;34700;34600;36300;39600;42300;83700;116000;251820;184600;203300;259100;246100;201000;186300;126700;148200;177900;289800;259100;268400;280400;305300;342100;359100;363000;474100;540500;594500;839700;852986;728100;660200;828700;970700;999400;841999;906890;761496;900118;940853;1045901;1151083;1139204;1026059;1056348;1276509;1179666;1207819;1237723;1266566;1192383;1265454;1798560;1914495;2059810;1984572;1887651;2149904;1596241;1530567;1547580 -5400;'150;Europe;1676;Household and sanitary papers;5622;Import value;1000 USD;13429;14388;16222;16284;17996;23865;23624;40911;59704;100706;89718;113512;151738;194948;185929;175803;113347;128627;174647;313745;252730;253430;238581;235943;274364;370846;459518;653421;777048;948389;1282255;1253136;1018482;924047;1407100;1677832;1508785;1035085;1102158;813869;1033102;1068476;1436208;1575816;1705057;1565689;1829601;2047928;1707855;1767495;1827491;1688737;1959833;2076062;2617572;2600519;2810102.47;2855637.25;2792214;2701040;1911199;2631772;2539402 -5400;'150;Europe;1676;Household and sanitary papers;5910;Export quantity;t;53000;54000;60800;69700;77500;85800;85600;148200;175100;209300;192600;244900;331600;362600;278000;279900;218400;264800;298000;273400;295200;306500;361000;348800;380500;385300;376500;552100;669100;696500;813500;663600;666000;720700;820600;825900;955500;961367;856767;816251;899950;901628;932983;953014;1005600;1476729;1445501;1342784;1287740;1011969;997037;1024954;1149597;1152936;1628088;1734306;1770582;1842352;1773862;1864939;1296817;1195719;1102883 -5400;'150;Europe;1676;Household and sanitary papers;5922;Export value;1000 USD;27084;26176;27079;30270;35381;39815;41478;62389;72970;88954;89459;122347;180620;258869;236088;223988;155912;198883;249629;284796;287046;293520;298575;281967;303550;372811;439477;796194;932890;1044380;1190247;850221;786302;819006;1200510;1177542;1116811;1017791;994982;969342;1019055;1029426;1283918;1409813;1459657;2373787;2619607;2719422;2331835;1855120;1757600;1632329;1799228;1858155;2692126;2674741;2737208.91;2991664.34;2888660;2763813;1811254;2139048;1974769 -5400;'150;Europe;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36148308;37482709;40367697;40296310;42353333;43124557;44363614;45537929;48003714;48285138;47021017;44430715;47364810;48381016;48775981;50763158;51496666;53176404;54477601;55785486;57925822;57410481;58147289;61943623;59772837;55296094 -5400;'150;Europe;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15984630;16683551;17502505;16974709;17865056;19214635;19945266;20490592;22659296;25652730;23738386;22692897;24632285;24481833;24740600;25473754;26644176;27424042;27980495;29174715;30352964;30163688;30229944;31979087;31790974;29250945 -5400;'150;Europe;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11554283;11325639;11517568;11034916;11440068;14523448;16068760;15800010;18024483;22330876;23628964;19320423;22093278;25218913;22604844;23958628;24956828;21872808;21377016;22986390.75;26306510.92;23862649;22736880;28491909;32613740;27210696 -5400;'150;Europe;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18042168;18668721;20330049;19619179;21520755;22483765;24700142;25326523;23993987;28342398;26684917;26359604;28757751;28258170;28710259;30157477;31094571;32409273;33149548;34294333;35654657;36326212;38330061;40996183;38585396;35875395 -5400;'150;Europe;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13925178;13304953;13724741;12103718;13678475;16724611;19243107;19648267;19217434;26447367;27241921;22645958;26358321;30245393;26762099;29159159;29483749;26199479;25954888;28513760.95;32237319.5;29465018;28851274;37112938;40238449;33258520 -5400;'150;Europe;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;2113000;2139000;2181000;3461500;7336100;10099700;11217100;13408400;14518300;14773700;14783400;15902300;16485600;18629000;15843700;19365000;19894000;20171000;20809800;20366800;20070500;20243600;21572000;22750000;22712000;23290000;24079000;29876000;30950000;31466000;31646000;30630000;30663000;32423900;32679000;32880700;35039900;;;;;;;;;;;;;;;;;;;;;;;;;; -5400;'150;Europe;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;1389700;1486100;1745000;1995700;2012900;2277400;2504400;3960600;4542900;4437500;4571300;4922500;5239300;5566200;3938000;4785800;4976700;4959200;5345100;5858700;6221200;6043800;6627200;6874300;6845700;7585300;7528200;7142100;8098500;9654600;10718100;11935744;11569820;13010900;12684232;13225800;14440400;;;;;;;;;;;;;;;;;;;;;;;;;; -5400;'150;Europe;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;241269;264885;302401;348237;364369;425060;478771;697472;829189;850156;879503;1017611;1280950;2067252;1792613;1787544;1885712;1961595;2327333;3215811;3274142;3090673;3032929;3103763;3198278;4215002;4845058;5117800;5904134;7737271;8735524;10060230;8632986;9339217;12427246;11535830;10627535;;;;;;;;;;;;;;;;;;;;;;;;;; -5400;'150;Europe;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;1801000;1954500;2227500;2467900;2514400;2827700;2800600;3453800;4037100;4179200;4085500;4479400;5343200;5624800;3873900;5027500;5370300;5958000;6877300;6786100;6881000;6919500;7337900;7874900;8273500;8650000;9143600;9824200;10233800;11224700;12614600;12758208;13384496;14762424;14980945;15057500;16784900;;;;;;;;;;;;;;;;;;;;;;;;;; -5400;'150;Europe;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;354874;370360;425045;472230;497081;559367;560491;654317;731269;811952;795979;929927;1277018;1788188;1662059;1849992;1989296;2349208;3373859;3889015;3733309;3537300;3635274;3668260;3972838;4941792;6397051;7025962;7863758;9676801;10686330;11090317;9480636;11008589;15568166;14083005;13389361;;;;;;;;;;;;;;;;;;;;;;;;;; -5400;'150;Europe;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21621899;21068804;22165891;22382293;23664355;25169484;26102158;27319074;28692399;28511744;28062663;26482340;27946914;28533917;28842733;30617911;30995352;31751345;32525884;33580821;34734327;35384413;36609899;39326852;37310801;35550526 -5400;'150;Europe;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8094456;8143922;8662842;8471304;8966047;9691959;10228564;10737263;10818295;11931277;12057929;11793662;12622447;12584295;12868934;13339950;13741141;14312104;14492190;15075330;16048558;16059494;16062057;17152426;17016679;16326109 -5400;'150;Europe;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4295710;4151622;4076889;3880865;3778004;4542306;5049548;5145552;5804659;7553499;7762811;5607194;7325545;8837412;7610872;8347515;8642226;7547803;7356223;8102788.21;9991665.29;8277712;7611488;10768975;12762065;9663204 -5400;'150;Europe;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7813205;8347704;8613354;9114221;9998112;10676121;11856014;12224638;11103006;13330817;12126678;12687117;13538489;13246641;13743956;14241970;14841580;15219666;15490149;15551629;16713281;17708463;19150902;20090956;19199531;19004220 -5400;'150;Europe;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4356884;4194850;3993749;3776471;3998168;4753734;5673955;5609113;5494840;8194853;7621185;6156958;7896901;8810035;7499814;8394725;9076552;7696599;7615304;8722088.35;10486591.62;8967507;8732259;12683764;14155654;10694858 -5400;'150;Europe;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6643553;7575597;7950294;8464684;8990269;9313835;9430639;9485967;10004989;10202695;9880896;9546430;10297656;10838220;10968170;10827496;10767202;11310452;11800368;12061045;12629956;11726861;11783871;11953535;11831881;10016542 -5400;'150;Europe;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4186366;4711685;5051290;4899229;4962102;5505162;5819918;5355947;7291669;8912640;6948817;6496482;7168227;7112859;7202789;7224704;7474874;7656377;7917173;8147493;8275422;8174649;8221934;8592924;8633889;7629629 -5400;'150;Europe;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4403341;4443225;4700031;4516357;4705310;6330659;7258982;6688634;7953139;9647936;10072597;8961472;9618627;10551477;9809888;10043882;10403918;9157149;8927213;9216555.94;9928117.9;9570024;9503197;10899774;11920810;10860472 -5400;'150;Europe;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5214910;5402991;5866497;5782639;6262334;6430692;7216905;7255802;6662988;8834670;8557588;7941830;8948957;9009859;8798077;9677988;9601455;10164015;10530765;11458899;11426664;11350774;11571893;12639743;11856083;10190845 -5400;'150;Europe;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5490834;5348025;5731884;5406183;5988824;7421934;8631106;8864191;8079465;11794506;12505768;10869130;11902956;13675976;12211170;13632549;13216520;11708354;11705045;12470340.48;13424046.87;12817882;12829556;15179065;15784508;14060761 -5400;'150;Europe;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4227799;4669749;5408815;4919003;5394441;4428868;4708790;4776665;5125621;5267408;5020431;4723343;5156204;5003723;5210774;5467403;5486303;5745029;5666116;5926750;6119515;5917948;5668763;6135791;6308807;5464534 -5400;'150;Europe;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2725748;2817572;3073838;2898770;3144856;3190391;3083655;3440626;3549747;3614793;3645648;3481112;3867332;3660193;3582072;3748983;4212649;4265264;4355937;4645191;4746530;4649563;4689220;4912464;4863658;4251532 -5400;'150;Europe;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2302681;2204758;2425821;2351725;2600211;3169118;3310120;3471498;3704124;4432450;4930625;4044895;4492250;4930289;4394578;4709790;5050078;4424837;4358105;4827899.78;5539832.67;5209554;4862553;5847258;6854266;5798030 -5400;'150;Europe;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3508663;3845837;4269615;3702835;4068834;4143032;4447884;4591936;4972638;4776382;4646755;4334305;4888107;4611665;4783595;4774853;5135984;5540843;5651440;5716605;5980233;5734022;6046574;6520137;5992191;5404952 -5400;'150;Europe;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3088321;3028851;3337700;2568884;3145347;3781288;4191472;4382886;4941754;5590377;6070625;4834762;5695940;6700871;6078250;6115192;6208452;5900542;5783895;6390315.59;7338159.51;6765285;6382256;8028566;8975742;7483720 -5400;'150;Europe;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3655057;4168559;4842697;4530330;4304268;4212370;4122027;3956223;4180705;4303291;4057027;3678602;3964036;4005156;3754304;3850348;4247809;4369578;4485233;4216870;4442024;4381259;4084756;4527445;4321348;4264492 -5400;'150;Europe;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;978060;1010372;714535;705406;792051;827123;813129;956756;999585;1194020;1085992;921641;974279;1124486;1086805;1160117;1215512;1190297;1215195;1306701;1282454;1279982;1256733;1321273;1276748;1043675 -5400;'150;Europe;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;552551;526034;314827;285969;356543;481365;450110;494326;562561;696991;862931;706862;656856;899735;789506;857441;860606;743019;735475;839146.81;846895.06;805359;759642;975902;1076599;888990 -5400;'150;Europe;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1505390;1072189;1580583;1019484;1191475;1233920;1179339;1254147;1255355;1400529;1353896;1396352;1382198;1390005;1384631;1462666;1515552;1484749;1477194;1567200;1534479;1532953;1560692;1745347;1537591;1275378 -5400;'150;Europe;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;989139;733227;661408;352180;546136;767655;746574;792077;701375;867631;1044343;785108;862524;1058511;972865;1016693;982225;893984;850644;931016.52;988521.5;914344;907203;1221543;1322545;1019181 -5400;'150;Europe;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;808000;818000;834000;820000;2997600;4796500;4685400;4392000;4943200;5303300;5236300;5250600;6312200;5090000;4445900;3945000;3481000;3486000;3985400;4346900;4359800;3911000;3394000;3633000;3781000;3794000;3939000;7678000;7418000;7053000;6500000;5461800;4942700;4201300;4517700;4168600;4070600;4218611;4691600;4778285;4951790;5515091;5588807;5782138;5904372;6180857;6352917;5960742;5274831;4807541;5121061;4993780;4549631;3953889;3939889;4091309;4553627;4206856;4062062;4691747;5039820;4418272;3854469 -5400;'150;Europe;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;159700;170900;204122;231700;261600;354000;412300;854800;1239600;1389900;1845400;1960100;2206600;2406800;1631100;2529800;2445900;2909500;3286200;2530400;2772500;2965200;3160400;3344300;3281200;3621900;4324300;5244200;5437800;4168100;3070900;1936940;1587283;1539029;1594659;1904547;2292500;2248275;2026675;2098547;2476802;2015702;1727968;1265943;1084591;1208040;1047973;1235508;1009393;903458;872106;874097;960691;773002;877426;997839;950082;894381;844957;801249;796372;813060;721971 -5400;'150;Europe;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;55319;61638;70304;81325;99358;140891;148656;265679;384409;454732;623796;723636;938174;1405508;973099;1518130;1707587;1914472;2588237;2218085;2248638;2240349;2340046;2595793;2665610;3271596;4567229;5373247;5885363;4970332;3614193;2317405;1955655;1901036;2420463;2857135;2975141;3369833;2711015;2743300;2687815;2003749;2137959;2006210;1942143;2607705;1924214;2726134;1999849;1918183;2262304;2202839;2315880;2060736;2039804;2031037;1925105.81;1978740.4;1875092;1837650;2063234;2070482;2051880 -5400;'150;Europe;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;424500;454500;519200;572800;590900;675000;675400;819300;997100;1172900;1380000;1405500;1952900;2429800;1708900;2327700;2279000;2661400;2451300;2297700;2395000;2327700;2605398;2927200;2807900;3071100;3504500;3142400;2848100;2781100;1670700;1339604;847945;988389;1474969;1437370;1762028;2398405;2123231;2367918;2550222;1635920;1653199;1174341;1240880;1791916;906563;1156030;689033;693574;929961;820676;791841;636175;819804;849212;931459;819897;775244;834431;808520;752283;967189 -5400;'150;Europe;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;92818;97976;111909;123774;133535;156445;160916;186851;277973;341526;467507;526865;761990;1290535;1133018;1487641;1651133;1860126;2004475;2223050;1937371;1819325;1892494;2160440;2132854;2744598;3779439;3623191;3457653;3347198;1917026;1817289;1186598;1181591;1846859;1982752;2057482;3598104;2794806;3268870;3048907;1619787;2219334;2040704;2505781;4148402;1683510;2866015;1660628;1547712;2343153;2225904;2367274;2064688;2281302;2222630;2416241.33;2238882.05;2162700;2189735;2679560;2582177;3818484 -5400;'150;Europe;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47599020.74;51239392.86;51405249;51170226;64447886;66196339;59453942 -5400;'150;Europe;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51164988.81;55383004.11;54371512;53916077;68347045;69309541;64763507 -5400;'150;Europe;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1871213.47;1995254.79;1921301;1927261;2595108;2476908;1869697 -5400;'150;Europe;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1787730.78;1973030.85;1947665;1995135;2585548;2483329;1950216 -5400;'150;Europe;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;858875.83;959014.93;836632;993025;1423941;1248402;930285 -5400;'150;Europe;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;996514.61;1122861.53;1085936;1200919;1629015;1449039;1080126 -5400;'150;Europe;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1012337.65;1036239.87;1084669;934236;1171167;1228506;939412 -5400;'150;Europe;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;791216.17;850169.32;861729;794216;956533;1034290;870090 -5400;'150;Europe;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2891338.5;3272523.71;3219295;3007913;4524888;5538747;4652086 -5400;'150;Europe;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3343530.91;3831310.83;3742689;3618027;5311336;6396802;5444918 -5400;'150;Europe;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1529370.64;1645415.02;1692633;1575686;2020901;2166720;1846171 -5400;'150;Europe;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;904667.39;1016952.19;1021298;986508;1257424;1233257;1222857 -5400;'150;Europe;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7503661.56;8080098.78;7968353;7978827;9903669;9703022;9009765 -5400;'150;Europe;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8663526.59;9159753.95;8980560;8973390;11572724;11040984;9733325 -5400;'150;Europe;1636;Glue-laminated timber (glulam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5229641;4946861 -5400;'150;Europe;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1193209;1177429 -5400;'150;Europe;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1130216;1025219 -5400;'150;Europe;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2608007;2448692 -5400;'150;Europe;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2101373;1521498 -5400;'150;Europe;1688;Cross-laminated timber (CLT or X-lam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1656814;1140933 -5400;'150;Europe;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;276649;317788 -5400;'150;Europe;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;278176;276493 -5400;'150;Europe;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;494722;524573 -5400;'150;Europe;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;407882;397436 -5400;'150;Europe;1684;I-beams (I-joists);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;285235;278356 -5400;'150;Europe;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61107;45301 -5400;'150;Europe;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82727;62954 -5400;'150;Europe;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112947;60769 -5400;'150;Europe;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111879;82384 -5400;'150;Europe;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29568050.56;31510077.32;31835870;31853646;39244230;39832792;36776640 -5400;'150;Europe;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32305516.2;34690888.69;34081778;33771357;41646129;42154194;41253957 -5400;'150;Europe;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1166454;1305649.05;1264282;1200925;1502371;1678966;1332917 -5400;'150;Europe;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1503886.3;1689833.62;1594249;1521431;1993997;2083408;1726802 -5400;'150;Europe;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3068932.01;3430374.18;3503515;3625968;4656719;4799184;3966666 -5400;'150;Europe;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2656130.62;3021233.98;3003273;3050229;3979887;3917567;3431432 -5400;'150;Europe;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30627759.95;33669175.74;33564199;33209875;37887979;42367816;40852155 -5400;'150;Europe;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32538155.87;35709211.76;35038420;34580738;39714174;42635121;41126616 -5400;'150;Europe;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;444447.53;485156.53;459624;413619;509235;616879;508451 -5400;'150;Europe;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;648308.16;686776.22;626617;573057;621540;714803;585529 -5400;'150;Europe;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4500652.35;5042363.92;4836175;4612753;5670788;6367912;5563486 -5400;'150;Europe;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5504108.55;6188284.29;5908287;5645493;6888122;7337608;6198195 -5400;'150;Europe;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5642067.4;6109588.2;5974970;6575875;6158233;7324215;7849790 -5400;'150;Europe;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5869128.47;6413542.09;6404066;6543036;6453270;7742032;8322900 -5400;'150;Europe;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11725912.29;12935962.11;13192780;12844855;15291463;17054422;16188241 -5400;'150;Europe;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12281523.26;13571785.26;13416266;13481790;16089893;16811573;16060050 -5400;'150;Europe;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8314680.38;9096104.98;9100650;8762773;10258260;11004388;10742187 -5400;'150;Europe;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8235087.43;8848823.9;8683184;8337362;9661349;10029105;9959942 -5401;'151;Eastern Europe;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23057114.01;27009804;25708623;25707820;32680607;32645928;28754131 -5401;'151;Eastern Europe;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42906246.67;49850676;47645506;48393971;63144413;60387240;50465686 -5401;'151;Eastern Europe;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;205237;208929;197881;225053;251005;273213;311636;443831;486993;573010;625334;656675;822642;1102484;1546275;1383526;1445600;1523432;1597158;1952349;1930155;1792669;1596874;1592765;1685829;1579397;1677410;1888855;2148445;1708757;1694910;649665;1085944;1473008;2172432;3257717;3839587;3777908;3819897;4274193;4544449;5286451;6800984;8094023;9105693;10386309;13529468;14752189;12076892;13838285;15435987;14700246;15593377;15858485;13259741;13316686;13963203.09;16367603;14920536;14667381;19149599;19466397;16362956 -5401;'151;Eastern Europe;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;514028;590904;626304;741922;831076;886875;866615;980077;1047470;1188279;1232001;1361243;1889484;2564639;2578651;2764406;3100175;3275339;3605475;3874225;3685899;3582551;3706426;3678680;3651796;3985440;4124827;4970553;5006645;4127226;3806343;3223256;4299317;3796715;6477607;5496103;5819804;6007465;6592997;7608871;7765294;8960637;10767304;13474514;15303716;17350296;21931358;21229775;16851001;20148624;22292665;21536776;23454455;24744443;20927976;21009785;23551515.71;28202026;25981062;25697356;34553688;31692436;23332662 -5401;'151;Eastern Europe;1861;Roundwood;5516;Production;m3;408892000;412821008;429886000;446429000;439724024;435319008;447640000;445226000;437797000;450869000;450675000;449103000;454881000;457209000;464127000;454007000;446615000;432514000;421108000;425589000;429937000;431726000;433406000;445966000;444946000;449618000;458065000;456285000;453655000;445926000;411986000;297082800;239027400;180387600;192473633;178358800;221431200;202949700;226710197;246514620;250441990;259674090;274061290;285268070;288702670;299390309;321342249;272834177;263902663;288683000;308021268;317434642;321699777;334507678;338706237;350947595;357031058;395929747;376961856;373210806;379203080;347001490;326779909 -5401;'151;Eastern Europe;1861;Roundwood;5616;Import quantity;m3;2018700;2152000;1938100;2517100;2267100;2274400;2405300;2623800;2474700;2473200;2635600;2360200;2705500;3115500;2824800;2639400;2896500;3092700;2549800;2927200;2651500;1789700;2204000;2211700;1991600;2109800;2111100;2024688;1915730;733203;1176294;684649;806511;1510601;2603500;1765347;1866900;2099086;2340957;3015057;3379466;2825400;3124776;3965241;5053227;5152125;5007804;4707514;3990081;5280102;7111651;6563317;7299554;8137427;8304275;7823867;6892994;6160306;6269751;8155998;9845976;11048652;7629970 -5401;'151;Eastern Europe;1861;Roundwood;5622;Import value;1000 USD;31637;35537;32412;41161;39317;38836;47850;52204;53638;53737;62257;60384;102455;131085;121413;121846;139619;151957;138000;170236;163530;95437;103831;105014;101914;111041;113324;116734;118418;83471;100567;49791;55655;66530;135311;98461;93051;105688;114782;132597;126079;117789;139140;190198;252087;290626;377096;353724;225898;318263;532480;509058;552336;585767;469142;430450;412338.11;464222;408902;455109;844141;1013642;698034 -5401;'151;Eastern Europe;1861;Roundwood;5916;Export quantity;m3;7560100;9283800;10524700;11788300;13608700;14829100;14921100;15373400;16263100;18404500;16978500;17208700;21977700;22488000;20834400;21575900;21795700;21374900;20060900;18773500;18123500;16859400;18755900;19980700;19940800;21666400;22212000;23160400;20955900;13113664;13517926;13935929;17690422;16330600;23358900;21864448;25084548;27931727;36403169;40176969;41650385;47293039;49018435;53795848;59955107;62014519;60993649;48203537;35087367;35434890;38470468;35769566;39808855;43017203;39412307;39220769;36326928;37975473;38942699;42883490;35193945;20904310;13486899 -5401;'151;Eastern Europe;1861;Roundwood;5922;Export value;1000 USD;106546;139251;137710;166229;208479;221966;223304;256021;266832;317276;322493;341243;607628;831567;749359;727184;855671;836161;1036470;1020550;911422;788003;839353;866917;865062;982425;1012175;1259844;1157901;917373;862980;917242;1018812;908125;1325488;1233506;1351610;1271843;1623434;1702814;1750635;2031867;2337717;2935431;3487429;3902303;4955300;4355536;2603453;2890068;3433721;2935451;3233550;3368929;2597407;2490631;2484973.67;2755739;2561891;2656256;3019541;2195992;1459642 -5401;'151;Eastern Europe;1862;Roundwood, coniferous;5516;Production;m3;320808000;321719008;335156000;348137000;343546016;340161008;350956000;349947000;344291000;355596000;355432000;354527000;361043000;362657000;369374000;360344000;354402000;341939000;335210000;338539000;339186000;338735000;341142000;350730000;349760000;356198000;364003000;364324500;363216000;358669000;323898000;183537000;154380000;118333500;130798333;111558000;145395500;129597100;138276930;158674330;160613700;165876700;176616100;182751640;186643840;193479545;211610318;178019809;174334780;190626119;201003211;206682418;234143791;243559729;246260005;257861990;266433877;298759205;284404779;282408426;284620906;256205270;241649648 -5401;'151;Eastern Europe;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4202263;3934676;4121660;6709387;7968983;8463089;5826061 -5401;'151;Eastern Europe;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;241172.82;276772;239750;333047;672654;741097;483752 -5401;'151;Eastern Europe;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24850533;26646222;29155237;31395110;23652918;15143282;9205203 -5401;'151;Eastern Europe;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1761005.56;1945130;1871376;1909647;2084569;1444680;915410 -5401;'151;Eastern Europe;1863;Roundwood, non-coniferous;5516;Production;m3;88084000;91102000;94730000;98292000;96178008;95158000;96684000;95279000;93506000;95273000;95243000;94576000;93838000;94552000;94753000;93663000;92213000;90575000;85898000;87050000;90751000;92991000;92264000;95236000;95186000;93420000;94062000;91960500;90439000;87257000;88088000;113545800;84647400;62054100;61675300;66800800;76035700;73352600;88433267;87840290;89828290;93797390;97445190;102516430;102058830;105910764;109731931;94814368;89567883;98056881;107018057;110752224;87555986;90947949;92446232;93085605;90597181;97170542;92557077;90802380;94582174;90796220;85130261 -5401;'151;Eastern Europe;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2690731;2225630;2148091;1446611;1876993;2585563;1803909 -5401;'151;Eastern Europe;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;171165.29;187450;169152;122062;171487;272545;214282 -5401;'151;Eastern Europe;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11476395;11329251;9787462;11488380;11541027;5761028;4281696 -5401;'151;Eastern Europe;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;723968.11;810609;690515;746609;934972;751312;544232 -5401;'151;Eastern Europe;1864;Wood fuel;5516;Production;m3;111963000;110852000;116331000;122389000;118909016;115843000;111239000;105164000;101487000;99994000;99774000;99092000;96002000;96377000;93666000;94091000;91911000;89039000;88178000;89902500;93850000;96417000;93147000;98010000;100596500;95610000;99263000;93158000;91823000;91367000;91722000;76325800;49204200;42699500;44851100;36295000;59486200;59925933;62523300;29170200;28745900;33850400;36268600;37550800;37871200;41638274;42336926;39657749;38728914;39927880;45328103;50750092;51697584;52397987;53696045;54391216;56251439;62076520;58667146;57392803;56094255;59255636;54765822 -5401;'151;Eastern Europe;1864;Wood fuel;5616;Import quantity;m3;502300;284000;490600;790600;678900;542300;183100;183100;6200;6800;500;;;;;;;;;;;;;;;;;;;;;689;192;8536;9400;5700;5800;16086;16157;19257;35148;27530;51626;60131;172376;244517;266008;185764;215297;474816;383721;531500;885428;962920;775534;852022;717734;751547;445014;247858;910720;648284;469737 -5401;'151;Eastern Europe;1864;Wood fuel;5622;Import value;1000 USD;3930;2225;3952;6446;5482;3952;1295;1295;51;43;3;;;;;;;;;;;;;;;;;;;;;38;12;459;395;297;424;429;619;645;981;1003;1040;1743;5177;8385;10651;10287;8283;16473;22836;24166;37970;34874;23523;27355;26786.62;36149;24774;11520;44376;42964;38734 -5401;'151;Eastern Europe;1864;Wood fuel;5916;Export quantity;m3;254800;260100;336000;155200;181600;53800;208700;148100;112000;79600;46900;85200;120900;89900;67000;36300;58700;88900;32600;32600;28200;4200;18000;45000;77100;89000;132700;150000;150000;150000;150000;434370;654594;608800;597000;679548;1551548;1505627;1245269;1944769;2086955;1755579;1605065;1600518;1516407;1585009;1691482;1715607;2165602;1859805;2614772;2992486;3111602;3947594;3630359;3240809;2530074;2276687;2248166;1072128;1634422;1195517;818840 -5401;'151;Eastern Europe;1864;Wood fuel;5922;Export value;1000 USD;1542;1607;2112;914;1028;248;1098;710;917;957;413;712;972;965;1064;819;936;1970;673;673;699;155;354;1003;1588;3429;4464;5789;5789;5789;5789;16391;18994;18704;18398;21870;37702;37870;40239;39651;40942;46428;50492;53594;53932;74857;78728;92224;105381;106578;146969;178098;184891;196323;145738;132520;111282.47;125110;118709;92509;131897;128059;112290 -5401;'151;Eastern Europe;1627;Wood fuel, coniferous;5516;Production;m3;65704000;65219000;68708000;72806000;70872008;68680000;65167000;61341000;59530000;58584000;58579000;58058000;56698000;57173000;55743000;55848000;54715000;52874000;53238000;54373500;56390000;57671000;55866000;59199000;60490000;57125000;60380000;56311500;55696500;56352000;55856000;30985000;19656500;16836500;20431500;18962000;31465900;27094300;23394200;13499100;13686500;15870800;16704200;16968440;17048440;18573379;20230543;18064928;19718363;20825498;23155860;26819059;27274230;25746404;26517303;27358251;30505223;36042698;32965197;32196820;29763704;30750166;28355598 -5401;'151;Eastern Europe;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;368148;374186;254616;122539;699476;421863;299628 -5401;'151;Eastern Europe;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12689.96;15790;13395;4481;31177;22954;20560 -5401;'151;Eastern Europe;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1031849;924462;951590;367512;715561;591651;263521 -5401;'151;Eastern Europe;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40546.43;49439;43240;29903;38823;40934;31931 -5401;'151;Eastern Europe;1628;Wood fuel, non-coniferous;5516;Production;m3;46259000;45633000;47623000;49583000;48037008;47163000;46072000;43823000;41957000;41410000;41195000;41034000;39304000;39204000;37923000;38243000;37196000;36165000;34940000;35529000;37460000;38746000;37281000;38811000;40106500;38485000;38883000;36846500;36126500;35015000;35866000;45340800;29547700;25863000;24419600;17333000;28020300;32831633;39129100;15671100;15059400;17979600;19564400;20582360;20822760;23064895;22106383;21592821;19010551;19102382;22172243;23931033;24423354;26651583;27178742;27032965;25746216;26033822;25701949;25195983;26330551;28505470;26410224 -5401;'151;Eastern Europe;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;349586;377361;190398;125319;211244;226421;170109 -5401;'151;Eastern Europe;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14096.66;20359;11379;7039;13199;20010;18174 -5401;'151;Eastern Europe;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1498225;1352225;1296576;704616;918861;603866;555319 -5401;'151;Eastern Europe;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70736.04;75671;75469;62606;93074;87125;80359 -5401;'151;Eastern Europe;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;502300;284000;490600;790600;678900;542300;183100;183100;6200;6800;500;;;;;;;;;;;;;;;;;;;;;689;192;8536;9400;5700;5800;16086;16157;19257;35148;27530;51626;60131;172376;244517;266008;185764;215297;474816;383721;531500;885428;962920;775534;852022;;;;;;; -5401;'151;Eastern Europe;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;3930;2225;3952;6446;5482;3952;1295;1295;51;43;3;;;;;;;;;;;;;;;;;;;;;38;12;459;395;297;424;429;619;645;981;1003;1040;1743;5177;8385;10651;10287;8283;16473;22836;24166;37970;34874;23523;27355;;;;;;; -5401;'151;Eastern Europe;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;254800;260100;336000;155200;181600;53800;208700;148100;112000;79600;46900;85200;120900;89900;67000;36300;58700;88900;32600;32600;28200;4200;18000;45000;77100;89000;132700;150000;150000;150000;150000;434370;654594;608800;597000;679548;1551548;1505627;1245269;1944769;2086955;1755579;1605065;1600518;1516407;1585009;1691482;1715607;2165602;1859805;2614772;2992486;3111602;3947594;3630359;3240809;;;;;;; -5401;'151;Eastern Europe;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;1542;1607;2112;914;1028;248;1098;710;917;957;413;712;972;965;1064;819;936;1970;673;673;699;155;354;1003;1588;3429;4464;5789;5789;5789;5789;16391;18994;18704;18398;21870;37702;37870;40239;39651;40942;46428;50492;53594;53932;74857;78728;92224;105381;106578;146969;178098;184891;196323;145738;132520;;;;;;; -5401;'151;Eastern Europe;1865;Industrial roundwood;5516;Production;m3;296929000;301969008;313555000;324040000;320815008;319476008;336401000;340062000;336310000;350875000;350901000;350011000;358879000;360832000;370461000;359916000;354704000;343475000;332930000;335686500;336087000;335309000;340259000;347956000;344349500;354008000;358802000;363127000;361832000;354559000;320264000;220757000;189823200;137688100;147622533;142063800;161945000;143023767;164186897;217344420;221696090;225823690;237792690;247717270;250831470;257752035;279005323;233176428;225173749;248755120;262693165;266684550;270002193;282109691;285010192;296556379;300779619;333853227;318294710;315818003;323108825;287745854;272014087 -5401;'151;Eastern Europe;1865;Industrial roundwood;5616;Import quantity;m3;1516400;1868000;1447500;1726500;1588200;1732100;2222200;2440700;2468500;2466400;2635100;2360200;2705500;3115500;2824800;2639400;2896500;3092700;2549800;2927200;2651500;1789700;2204000;2211700;1991600;2109800;2111100;2024688;1915730;733203;1176294;683960;806319;1502065;2594100;1759647;1861100;2083000;2324800;2995800;3344318;2797870;3073150;3905110;4880851;4907608;4741796;4521750;3774784;4805286;6727930;6031817;6414126;7174507;7528741;6971845;6175260;5408759;5824737;7908140;8935256;10400368;7160233 -5401;'151;Eastern Europe;1865;Industrial roundwood;5622;Import value;1000 USD;27707;33312;28460;34715;33835;34884;46555;50909;53587;53694;62254;60384;102455;131085;121413;121846;139619;151957;138000;170236;163530;95437;103831;105014;101914;111041;113324;116734;118418;83471;100567;49753;55643;66071;134916;98164;92627;105259;114163;131952;125098;116786;138100;188455;246910;282241;366445;343437;217615;301790;509644;484892;514366;550893;445619;403095;385551.49;428073;384128;443589;799765;970678;659300 -5401;'151;Eastern Europe;1865;Industrial roundwood;5916;Export quantity;m3;7305300;9023700;10188700;11633100;13427100;14775300;14712400;15225300;16151100;18324900;16931600;17123500;21856800;22398100;20767400;21539600;21737000;21286000;20028300;18740900;18095300;16855200;18737900;19935700;19863700;21577400;22079300;23010400;20805900;12963664;13367926;13501559;17035828;15721800;22761900;21184900;23533000;26426100;35157900;38232200;39563430;45537460;47413370;52195330;58438700;60429510;59302167;46487930;32921765;33575085;35855696;32777080;36697253;39069609;35781948;35979960;33796854;35698786;36694533;41811362;33559523;19708793;12668059 -5401;'151;Eastern Europe;1865;Industrial roundwood;5922;Export value;1000 USD;105004;137644;135598;165315;207451;221718;222206;255311;265915;316319;322080;340531;606656;830602;748295;726365;854735;834191;1035797;1019877;910723;787848;838999;865914;863474;978996;1007711;1254055;1152112;911584;857191;900851;999818;889421;1307090;1211636;1313908;1233973;1583195;1663163;1709693;1985439;2287225;2881837;3433497;3827446;4876572;4263312;2498072;2783490;3286752;2757353;3048659;3172606;2451669;2358111;2373691.2;2630629;2443182;2563747;2887644;2067933;1347352 -5401;'151;Eastern Europe;1866;Industrial roundwood, coniferous;5516;Production;m3;255104000;256500008;266448000;275331000;272674008;271481008;285789000;288606000;284761000;297012000;296853000;296469000;304345000;305484000;313631000;304496000;299687000;289065000;281972000;284165500;282796000;281064000;285276000;291531000;289270000;299073000;303623000;308013000;307519500;302317000;268042000;152552000;134723500;101497000;110366833;92596000;113929600;102502800;114882730;145175230;146927200;150005900;159911900;165783200;169595400;174906166;191379775;159954881;154616417;169800621;177847351;179863359;206869561;217813325;219742702;230503739;235928654;262716507;251439582;250211606;254857202;225455104;213294050 -5401;'151;Eastern Europe;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;414476;971859;554772;702023;1284600;1986200;1265515;1203500;1455900;1535100;2065000;2150198;1667160;1963670;2563060;3220031;2971448;2651831;2205644;1981702;2582347;4134951;3611948;4179827;4619576;5193811;4634088;3834115;3560490;3867044;6586848;7269507;8041226;5526433 -5401;'151;Eastern Europe;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40643;70978;33629;44822;46098;73395;53249;48921;64923;68161;82358;69314;60625;64937;89674;128519;140885;176274;161123;104268;163054;330375;308490;299057;343620;309812;270971;228482.86;260982;226355;328566;641477;718143;463192 -5401;'151;Eastern Europe;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7304749;7777040;7615742;12931578;10285100;12277500;13575400;15745300;15832400;24478300;27331600;28320010;33732120;34697110;38361410;41911070;42542200;41558877;31783925;26177274;25402554;27146926;23464222;26321650;28166101;24889732;25708243;23818684;25721760;28203647;31027598;22937357;14551631;8941682 -5401;'151;Eastern Europe;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;633905;583617;593613;760689;651681;820010;847907;950912;788650;1165939;1260151;1310210;1567311;1714341;2192222;2595948;2884147;3695518;2901253;2053339;2200588;2593792;2088155;2317820;2415871;1852290;1798754;1720459.13;1895691;1828136;1879744;2045746;1403746;883479 -5401;'151;Eastern Europe;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;414476;971859;554772;702023;1284600;1986200;1265515;1203500;1455900;1535100;2065000;2150198;1667160;1963670;2563060;3220031;2971448;2651831;2205644;1981702;2582347;4134951;3611948;4179827;4619576;5193811;4634088;3834115;3560490;3867044;6586848;7269507;8041226;5526433 -5401;'151;Eastern Europe;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40643;70978;33629;44822;46098;73395;53249;48921;64923;68161;82358;69314;60625;64937;89674;128519;140885;176274;161123;104268;163054;330375;308490;299057;343620;309812;270971;228482.86;260982;226355;328566;641477;718143;463192 -5401;'151;Eastern Europe;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7304749;7777040;7615742;12931578;10285100;12277500;13575400;15745300;15832400;24478300;27331600;28320010;33732120;34697110;38361410;41911070;42542200;41558877;31783925;26177274;25402554;27146926;23464222;26321650;28166101;24889732;25708243;23818684;25721760;28203647;31027598;22937357;14551631;8941682 -5401;'151;Eastern Europe;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;633905;583617;593613;760689;651681;820010;847907;950912;788650;1165939;1260151;1310210;1567311;1714341;2192222;2595948;2884147;3695518;2901253;2053339;2200588;2593792;2088155;2317820;2415871;1852290;1798754;1720459.13;1895691;1828136;1879744;2045746;1403746;883479 -5401;'151;Eastern Europe;1867;Industrial roundwood, non-coniferous;5516;Production;m3;41825000;45469000;47107000;48709000;48141000;47995000;50612000;51456000;51549000;53863000;54048000;53542000;54534000;55348000;56830000;55420000;55017000;54410000;50958000;51521000;53291000;54245000;54983000;56425000;55079500;54935000;55179000;55114000;54312500;52242000;52222000;68205000;55099700;36191100;37255700;49467800;48015400;40520967;49304167;72169190;74768890;75817790;77880790;81934070;81236070;82845869;87625548;73221547;70557332;78954499;84845814;86821191;63132632;64296366;65267490;66052640;64850965;71136720;66855128;65606397;68251623;62290750;58720037 -5401;'151;Eastern Europe;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;318727;204435;129188;104296;217465;607900;494132;657600;627100;789700;930800;1194120;1130710;1109480;1342050;1660820;1936160;2089965;2316106;1793082;2222939;2592979;2419869;2234299;2554931;2334930;2337757;2341145;1848269;1957693;1321292;1665749;2359142;1633800 -5401;'151;Eastern Europe;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42828;29589;16124;10821;19973;61521;44915;43706;40336;46002;49594;55784;56161;73163;98781;118391;141356;190171;182314;113347;138736;179269;176402;215309;207273;135807;132124;157068.63;167091;157773;115023;158288;252535;196108 -5401;'151;Eastern Europe;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5658915;5590886;5885817;4104250;5436700;10484400;7609500;7787700;10593700;10679600;10900600;11243420;11805340;12716260;13833920;16527630;17887310;17743290;14704005;6744491;8172531;8708770;9312858;10375603;10903508;10892216;10271717;9978170;9977026;8490886;10783764;10622166;5157162;3726377 -5401;'151;Eastern Europe;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;277679;273574;307238;239129;237740;487080;363729;362996;445323;417256;403012;399483;418128;572884;689615;837549;943299;1181054;1362059;444733;582902;692960;669198;730839;756735;599379;559357;653232.07;734938;615046;684003;841898;664187;463873 -5401;'151;Eastern Europe;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83269;42797;9003;9003;2200;1900;2000;1100;41000;58633;95983;7340;14080;9925;9400;8060;6420;44444;31702;25145;7107;10332;13515;23527;8304;10159;9439;10865;8962;11633;24985;3214;4442;3214 -5401;'151;Eastern Europe;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11179;9826;1668;1668;336;457;915;741;1377;2976;4290;1334;2732;2754;3583;4300;4501;9045;5052;4763;4352;9389;28599;68605;22670;10624;10462;4054.13;4441;5685;1606;2134;3143;2045 -5401;'151;Eastern Europe;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;100;0;0;27000;29300;9120;9430;9110;5000;5300;130;165;297;161;147;2050;4901;11558;4357;4437;4367;1355;205;137;502;270;217;488 -5401;'151;Eastern Europe;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;20;0;4;1116;1160;354;446;350;1344;2180;121;191;221;50;52;1704;14642;31918;17092;17239;17118;1347.69;181;109;141;203;151;188 -5401;'151;Eastern Europe;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;235458;161638;120185;95293;215265;606000;492132;656500;586100;731067;834817;1186780;1116630;1099555;1332650;1652760;1929740;2045521;2284404;1767937;2215832;2582647;2406354;2210772;2546627;2324771;2328318;2330280;1839307;1946060;1296307;1662535;2354700;1630586 -5401;'151;Eastern Europe;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31649;19763;14456;9153;19637;61064;44000;42965;38959;43026;45304;54450;53429;70409;95198;114091;136855;181126;177262;108584;134384;169880;147803;146704;184603;125183;121662;153014.5;162650;152088;113417;156154;249392;194063 -5401;'151;Eastern Europe;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5658915;5590886;5885817;4104250;5436700;10484200;7609400;7787700;10593700;10652600;10871300;11234300;11795910;12707150;13828920;16522330;17887180;17743125;14703708;6744330;8172384;8706720;9307957;10364045;10899151;10887779;10267350;9976815;9976821;8490749;10783262;10621896;5156945;3725889 -5401;'151;Eastern Europe;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;277679;273574;307238;239129;237740;486980;363709;362996;445319;416140;401852;399129;417682;572534;688271;835369;943178;1180863;1361838;444683;582850;691256;654556;698921;739643;582140;542239;651884.38;734757;614937;683862;841695;664036;463685 -5401;'151;Eastern Europe;1868;Sawlogs and veneer logs;5516;Production;m3;198854000;200588000;203365000;210122000;172738000;171770000;184159000;186232000;187595000;197616000;197948000;198988000;195105000;194218000;203670000;197642000;195080000;188774000;183905000;184648000;184173000;181736000;184605000;187994000;185613000;190673000;194306000;194873000;195470000;193061000;159777000;121629500;104184200;81054300;83654433;80671100;80799300;74802400;83026530;135170130;137317200;140257100;146884000;153350200;156059800;161372262;179085541;148357332;141788325;156754137;164166220;170727622;172557683;180702750;181977942;189462173;191187469;211341692;203947706;203503184;208074578;183467248;172298432 -5401;'151;Eastern Europe;1868;Sawlogs and veneer logs;5616;Import quantity;m3;373000;508900;418100;597300;620500;764200;1148000;1424900;1520300;1428000;1412400;1174100;1675100;1708500;1327800;1282900;1360900;1342800;1076100;1444300;1387200;822600;962100;943400;942400;1018900;929800;882088;743230;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5401;'151;Eastern Europe;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;10182;12638;11601;16680;17617;19136;28816;33705;37401;38719;39869;37139;79814;97454;74397;82408;91867;96342;91012;119052;127470;69271;73590;74422;76407;83113;82162;88982;88618;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5401;'151;Eastern Europe;1868;Sawlogs and veneer logs;5916;Export quantity;m3;2056600;2683700;2955300;3520700;4809500;5163800;5190200;6373500;6633600;7859600;7657800;8266600;10436100;10092600;9188000;9663000;10182300;10506200;9130900;7785000;7049100;7290600;8036900;8276100;8411800;9791100;9460000;9207900;7614900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5401;'151;Eastern Europe;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;37025;54532;51792;64863;92540;98151;101060;142736;141592;171290;177190;198264;404702;512437;389854;400999;520272;515580;680736;602506;483764;423408;462542;474157;479883;558030;541895;706625;624801;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5401;'151;Eastern Europe;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;167621000;167628000;170016000;175552000;143207000;142276000;151995000;154345000;155044000;163508000;163461000;164423000;161081000;160479000;168299000;163412000;161071000;155228000;151417000;152130000;151812000;149720000;152401000;154859000;153805000;159560000;162530000;162890000;163826000;161591000;128901000;87663000;75871000;61089000;65178333;59954000;60590300;57917667;64228730;104949230;106020900;107607100;113911100;118207900;120736100;124745412;138963519;114510668;110877912;122720320;128120593;131456084;145802985;153732582;154667641;161826852;163704435;181614258;175748545;175790608;179380144;156514634;148011621 -5401;'151;Eastern Europe;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;281400;413100;312800;470900;486700;567400;738700;887100;965500;1033000;1013400;779500;1188100;1247700;829700;787000;884900;960400;719700;1050000;960300;497800;655300;628800;597900;710600;609500;559500;430500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5401;'151;Eastern Europe;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;5655;8300;6474;9393;9973;11806;15427;18555;20415;22464;24589;19832;34069;53795;34322;33782;41332;50326;41691;60465;57443;25006;32309;32720;29531;38458;31327;26457;19650;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5401;'151;Eastern Europe;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;1993100;2623700;2887700;3443200;4727400;5049500;5013900;6124500;6381700;7572000;7382600;7971600;10101800;9695900;8833900;9461700;9887100;10229100;8744700;7418400;6763000;7001900;7721500;8044500;8246800;9638700;9287500;9013800;7438700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5401;'151;Eastern Europe;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;34876;52460;49540;62372;89943;94905;96499;136259;134812;163403;169328;189038;392562;493665;373862;389478;501791;497111;656191;577259;459943;399380;435988;453741;465830;543800;524434;689881;610001;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5401;'151;Eastern Europe;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;31233000;32960000;33349000;34570000;29531000;29494000;32164000;31887000;32551000;34108000;34487000;34565000;34024000;33739000;35371000;34230000;34009000;33546000;32488000;32518000;32361000;32016000;32204000;33135000;31808000;31113000;31776000;31983000;31644000;31470000;30876000;33966500;28313200;19965300;18476100;20717100;20209000;16884733;18797800;30220900;31296300;32650000;32972900;35142300;35323700;36626850;40122022;33846664;30910413;34033817;36045627;39271538;26754698;26970168;27310301;27635321;27483034;29727434;28199161;27712576;28694434;26952614;24286811 -5401;'151;Eastern Europe;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;91600;95800;105300;126400;133800;196800;409300;537800;554800;395000;399000;394600;487000;460800;498100;495900;476000;382400;356400;394300;426900;324800;306800;314600;344500;308300;320300;322588;312730;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5401;'151;Eastern Europe;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;4527;4338;5127;7287;7644;7330;13389;15150;16986;16255;15280;17307;45745;43659;40075;48626;50535;46016;49321;58587;70027;44265;41281;41702;46876;44655;50835;62525;68968;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5401;'151;Eastern Europe;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;63500;60000;67600;77500;82100;114300;176300;249000;251900;287600;275200;295000;334300;396700;354100;201300;295200;277100;386200;366600;286100;288700;315400;231600;165000;152400;172500;194100;176200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5401;'151;Eastern Europe;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;2149;2072;2252;2491;2597;3246;4561;6477;6780;7887;7862;9226;12140;18772;15992;11521;18481;18469;24545;25247;23821;24028;26554;20416;14053;14230;17461;16744;14800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5401;'151;Eastern Europe;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53784300;62957100;60856923;63230323;64082923;67289320;70962500;71090100;71693185;76606570;65916213;64581801;71610496;76142613;76015001;77380682;80810656;82390379;85895287;88299818;97657278;90124600;88513331;90799896;82374710;78853775 -5401;'151;Eastern Europe;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36509733;40526100;30117000;30827800;31949100;33251500;35302100;36172400;36456657;39197877;34465641;33885117;36419168;38084369;39194284;52027333;54736159;55859998;59220548;62474228;69573250;63986279;62799725;63946227;58239271;55318003 -5401;'151;Eastern Europe;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17274567;22431000;30739923;32402523;32133823;34037820;35660400;34917700;35236528;37408693;31450572;30696684;35191328;38058244;36820717;25353349;26074497;26530381;26674739;25825590;28084028;26138321;25713606;26853669;24135439;23535772 -5401;'151;Eastern Europe;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5616;Import quantity;m3;426100;582500;272000;342000;213100;257200;393800;428100;333200;399300;579700;547200;391800;771000;842500;717200;730100;785400;750500;835800;500800;367300;463800;520200;447700;461400;469900;478600;509300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5401;'151;Eastern Europe;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5622;Import value;1000 USD;5761;7860;3918;5001;3440;4042;6452;7374;5882;6238;10028;10463;7692;18035;27017;24198;25141;26738;24839;33519;17331;10295;11480;13602;12119;12858;13231;11556;13604;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5401;'151;Eastern Europe;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5916;Export quantity;m3;3536900;4398300;5128600;6001500;6368800;7315000;7473700;6871000;7564800;8600300;7568100;7286200;9701600;10527000;9785600;10269000;9916800;9210800;9549600;9610600;9593800;8198700;9646100;10767300;10609000;10796300;11811100;12943400;12491100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5401;'151;Eastern Europe;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5922;Export value;1000 USD;41994;53040;53518;69071;79173;84238;83954;77526;88912;108260;110039;105785;156278;251639;291855;266350;267556;248128;280074;345595;345945;292924;321400;348098;341702;371985;420816;508007;494541;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5401;'151;Eastern Europe;1870;Pulpwood and particles (1961-1997);5516;Production;m3;24407000;23785000;26102000;27920000;27737000;29193000;35735000;37266000;39215000;43041000;44347000;45660000;57835000;60284000;56881000;55387000;55208000;53816000;52762000;53465000;53013000;53985000;54825000;56313000;55931000;58700000;58980000;59669000;57607000;55954000;56348000;38440000;40626000;34555000;42053000;37420000;35852900;;;;;;;;;;;;;;;;;;;;;;;;;; -5401;'151;Eastern Europe;1870;Pulpwood and particles (1961-1997);5616;Import quantity;m3;426100;582500;272000;342000;213100;257200;393800;428100;333200;399300;579700;547200;391800;771000;842500;717200;730100;785400;750500;835800;500800;367300;463800;520200;447700;461400;469900;478600;509300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5401;'151;Eastern Europe;1870;Pulpwood and particles (1961-1997);5622;Import value;1000 USD;5761;7860;3918;5001;3440;4042;6452;7374;5882;6238;10028;10463;7692;18035;27017;24198;25141;26738;24839;33519;17331;10295;11480;13602;12119;12858;13231;11556;13604;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5401;'151;Eastern Europe;1870;Pulpwood and particles (1961-1997);5916;Export quantity;m3;3536900;4398300;5128600;6001500;6368800;7315000;7473700;6871000;7564800;8600300;7568100;7286200;9701600;10527000;9785600;10269000;9916800;9210800;9549600;9610600;9593800;8198700;9646100;10767300;10609000;10796300;11811100;12943400;12491100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5401;'151;Eastern Europe;1870;Pulpwood and particles (1961-1997);5922;Export value;1000 USD;41994;53040;53518;69071;79173;84238;83954;77526;88912;108260;110039;105785;156278;251639;291855;266350;267556;248128;280074;345595;345945;292924;321400;348098;341702;371985;420816;508007;494541;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5401;'151;Eastern Europe;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;23156000;21989000;24107000;25292000;25228000;26677000;33477000;34637000;36525000;40023000;41151000;41911000;53172000;55216000;51763000;50717000;50312000;48783000;47826000;48298000;47896000;48867000;49263000;51010000;50542000;52812000;53066000;53561000;51984000;50667000;50440000;28430000;31189000;25545000;31738000;22732000;22761100;;;;;;;;;;;;;;;;;;;;;;;;;; -5401;'151;Eastern Europe;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;1251000;1796000;1995000;2628000;2509000;2516000;2258000;2629000;2690000;3018000;3196000;3749000;4663000;5068000;5118000;4670000;4896000;5033000;4936000;5167000;5117000;5118000;5562000;5303000;5389000;5888000;5914000;6108000;5623000;5287000;5908000;10010000;9437000;9010000;10315000;14688000;13091800;;;;;;;;;;;;;;;;;;;;;;;;;; -5401;'151;Eastern Europe;1871;Other industrial roundwood;5516;Production;m3;73668000;77596008;84088000;85998000;120340008;118513008;116507000;116564000;109500000;110218000;108606000;105363000;105939000;106330000;109910000;106887000;104416000;100885000;96263000;97573500;98901000;99588000;100829000;103649000;102805500;104635000;105516000;108585000;108755000;105544000;104139000;60687500;45013000;22078800;21915100;23972700;45292800;14437067;18203267;21317367;21148567;21483667;23619370;23404570;23681570;24686588;23313212;18902883;18803623;20390487;22384332;19941927;20063828;20596285;20641871;21198919;21292332;24854257;24222404;23801488;24234351;21903896;20861880 -5401;'151;Eastern Europe;1871;Other industrial roundwood;5616;Import quantity;m3;717300;776600;757400;787200;754600;710700;680400;587700;615000;639100;643000;638900;638600;636000;654500;639300;805500;964500;723200;647100;763500;599800;778100;748100;601500;629500;711400;664000;663200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5401;'151;Eastern Europe;1871;Other industrial roundwood;5622;Import value;1000 USD;11764;12814;12941;13034;12778;11706;11287;9830;10304;8737;12357;12782;14949;15596;19999;15240;22611;28877;22149;17665;18729;15871;18761;16990;13388;15070;17931;16196;16196;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5401;'151;Eastern Europe;1871;Other industrial roundwood;5916;Export quantity;m3;1711800;1941700;2104800;2110900;2248800;2296500;2048500;1980800;1952700;1865000;1705700;1570700;1719100;1778500;1793800;1607600;1637900;1569000;1347800;1345300;1452400;1365900;1054900;892300;842900;990000;808200;859100;699900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5401;'151;Eastern Europe;1871;Other industrial roundwood;5922;Export value;1000 USD;25985;30072;30288;31381;35738;39329;37192;35049;35411;36769;34851;36482;45676;66526;66586;59016;66907;70483;74987;71776;81014;71516;55057;43659;41889;48981;45000;39423;32770;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5401;'151;Eastern Europe;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;64327000;66883008;72325000;74487000;104239008;102528008;100317000;99624000;93192000;93481000;92241000;90135000;90092000;89789000;93569000;90367000;88304000;85054000;82729000;83737500;83088000;82477000;83612000;85662000;84923000;86701000;88027000;91562000;91709500;90059000;88701000;36459000;27663500;14863000;13450500;9910000;30578200;8075400;10127900;10109000;10078500;10449700;12749300;12273200;12686900;13704097;13218379;10978572;9853388;10661133;11642389;9212991;9039243;9344584;9215063;9456339;9749991;11528999;11704758;11621273;11530831;10701199;9964426 -5401;'151;Eastern Europe;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;9341000;10713000;11763000;11511000;16101000;15985000;16190000;16940000;16308000;16737000;16365000;15228000;15847000;16541000;16341000;16520000;16112000;15831000;13534000;13836000;15813000;17111000;17217000;17987000;17882500;17934000;17489000;17023000;17045500;15485000;15438000;24228500;17349500;7215800;8464600;14062700;14714600;6361667;8075367;11208367;11070067;11033967;10870070;11131370;10994670;10982491;10094833;7924311;8950235;9729354;10741943;10728936;11024585;11251701;11426808;11742580;11542341;13325258;12517646;12180215;12703520;11202697;10897454 -5401;'151;Eastern Europe;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;717300;776600;757400;787200;754600;710700;680400;587700;615000;639100;643000;638900;638600;636000;654500;639300;805500;964500;723200;647100;763500;599800;778100;748100;601500;629500;711400;664000;663200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5401;'151;Eastern Europe;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;11764;12814;12941;13034;12778;11706;11287;9830;10304;8737;12357;12782;14949;15596;19999;15240;22611;28877;22149;17665;18729;15871;18761;16990;13388;15070;17931;16196;16196;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5401;'151;Eastern Europe;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;1711800;1941700;2104800;2110900;2248800;2296500;2048500;1980800;1952700;1865000;1705700;1570700;1719100;1778500;1793800;1607600;1637900;1569000;1347800;1345300;1452400;1365900;1054900;892300;842900;990000;808200;859100;699900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5401;'151;Eastern Europe;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;25985;30072;30288;31381;35738;39329;37192;35049;35411;36769;34851;36482;45676;66526;66586;59016;66907;70483;74987;71776;81014;71516;55057;43659;41889;48981;45000;39423;32770;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5401;'151;Eastern Europe;1630;Wood charcoal;5510;Production;t;125372;148481;153093;154109;145841;146047;155370;147396;166726;162356;157302;151229;146862;162411;153279;135198;134696;135314;146940;161005;149726;148927;149089;148937;148040;151192;148852;151247;152951;156873;161344;296787;275564;274977;168469;155037;181389;214000;136060;155780;177746;237553;268772;287790;310786;474841;474776;331598;384484;299993;277087;279369;292144;329156;288906;325893;417369;365565;340546;357636;250102;300830;286185 -5401;'151;Eastern Europe;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;1054;1123;1600;4100;5900;1900;4942;7010;9337;35403;14871;17141;21191;30376;45219;53722;57499;74255;87986;102518;115080;104066;131633;157698;200851;200588;239778;220860;219432;224984;192235;171638 -5401;'151;Eastern Europe;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;249;313;368;757;1180;565;1152;896;1139;3608;2331;3260;5486;7933;13068;18851;27741;29570;31085;38329;41753;39364;49666;48933;61848;67774.73;93528;88476;91449;103808;109671;102740 -5401;'151;Eastern Europe;1630;Wood charcoal;5910;Export quantity;t;3000;23800;29700;29500;24400;23100;34000;24600;35400;33800;27600;22600;19600;36100;27900;27000;27000;26300;19500;30400;15100;11000;12300;12600;9200;10000;6400;8500;8600;9400;9400;44076;56977;58800;54400;57000;74100;72481;94656;105191;137918;129970;145130;159560;178090;304330;176726;141627;163135;175310;207227;209783;216563;241417;259440;305805;397607;418728;365493;398691;383267;285485;255843 -5401;'151;Eastern Europe;1630;Wood charcoal;5922;Export value;1000 USD;187;1208;1498;1447;1175;1015;1547;1025;1484;1884;1830;1783;1546;3150;4099;3304;3258;3001;3765;8760;3487;2772;2773;2818;2191;3041;1901;2538;2548;2638;2638;16803;23133;20063;21040;22595;22195;23065;24527;27704;33677;31909;44894;55513;63599;86546;68884;80130;96015;89122;105099;115409;127503;131657;128403;153291;181117.74;207792;174517;212425;215118;181664;186072 -5401;'151;Eastern Europe;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21826200;26780900;12533800;13508300;23316300;26710700;37061500;40186300;42494000;36857325;31917242;30140557;35118562;33191897;29170237;30805252;33133834;34006844;38487707;39835761;43611038;49245805;51685855;50915671;53247395;52059478 -5401;'151;Eastern Europe;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118701;198449;189517;272489;269633;385910;517467;1009071;1025352;1153094;851739;1057575;2166454;1675993;2489481;2166026;2807977;2821895;3422121;3114949;3634281;4218916;3930593;3288810;2785076;1329375 -5401;'151;Eastern Europe;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3277;4916;3885;5141;5419;11347;15944;30358;28964;46267;51470;43467;78099;116020;103990;92402;102655;82976;90034;79997.62;117094;112392;94654;96529;120617;85620 -5401;'151;Eastern Europe;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1149230;1376800;1535700;1571706;1448353;2040690;2388188;3518340;4148580;4486527;5932480;7041639;8579290;8250130;4504215;6695383;7281371;6944214;6854936;8094308;9151788;10235405;10471532;7846116;3348012;1798186 -5401;'151;Eastern Europe;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30560;35750;34278;36933;36949;59828;85104;137028;187378;255266;364768;390507;451039;502491;242599;342591;349893;295524;258662;278715.79;346329;354572;333040;291585;178342;103519 -5401;'151;Eastern Europe;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3738900;5316200;5859400;6703500;15872500;17958100;19631700;21640800;23962000;15788607;12832863;11950887;14027499;11902653;11382504;13703032;14659450;15049264;18825427;20031220;23293301;28749988;29713497;28295317;27186995;26463078 -5401;'151;Eastern Europe;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1767;35499;14900;20400;32600;45300;49400;118500;110460;106672;156870;162513;143157;366031;359304;334393;250182;328124;1030582;830917;1493023;1615900;2120212;2228834;2682431;2618885;3097538;3710085;3232776;2547969;2005118;902204 -5401;'151;Eastern Europe;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104;375;723;831;804;1210;1882;2965;2186;1548;3003;4901;4970;10724;9882;15663;14960;11768;29153;41984;55271;64796;77824;59042;62976;66390.13;98402;96722;76838;72893;87816;58957 -5401;'151;Eastern Europe;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;4400;15100;27900;15800;28000;26000;32300;32400;61400;236400;236400;236400;236400;492400;578000;625300;469900;425500;407100;371500;704500;842300;858000;610000;559000;559000;378514;770328;682900;701100;814500;857700;753900;908600;790200;794096;480133;668440;841938;1326200;1731080;1800479;2951823;3276088;4083645;3807895;3527938;4815257;5083810;4813696;4756391;5989316;7097137;8130016;8406772;6353027;1961308;1060049 -5401;'151;Eastern Europe;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;28;97;227;141;259;243;320;425;865;2950;2950;2950;2950;6898;9920;12335;9571;8685;8285;17398;26236;27549;31465;39497;34829;34829;23201;28889;23830;26338;29986;20258;19794;24025;21416;21332;17107;25160;36832;50822;57765;87904;174925;148004;160085;169270;188789;228844;221712;190062;164046;207383.78;267393;275303;280009;240050;119352;58078 -5401;'151;Eastern Europe;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7474000;7165000;8379000;6459000;6828000;21131000;18087300;21464700;6674400;6804800;7443800;8752600;17429800;18545500;18532000;21068718;19084379;18189670;21091063;21289244;17787733;17102220;18474384;18957580;19662280;19804541;20317737;20495817;21972358;22620354;26060400;25596400 -5401;'151;Eastern Europe;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23189;30326;12500;26700;24001;73301;69301;79949;79057;165817;112763;223397;374310;643040;666048;818701;601557;729451;1135872;845076;996458;550126;687765;593061;739690;496064;536743;508831;697817;740841;779958;427171 -5401;'151;Eastern Europe;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1147;1111;351;615;880;1654;1395;1951;1699;3593;2416;6446;10974;19634;19082;30604;36510;31699;48946;74036;48719;27606;24831;23934;27058;13607.49;18692;15670;17816;23636;32801;26663 -5401;'151;Eastern Europe;1620;Wood residues;5916;Export quantity;m3;;19000;51000;482000;827200;916800;917700;963400;632000;610500;827000;678400;1194600;1524100;1716500;1682300;1803800;1782000;1455000;1149200;979000;832300;677300;603500;686000;526600;325300;330000;330000;330000;330000;153350;585561;525400;572200;820100;495100;395330;468200;745500;777610;968220;1372250;1546250;2192140;2417500;2686048;2980657;3765551;4495645;4442235;976277;1880126;2197561;2130518;2098545;2104992;2054651;2105389;2064760;1493089;1386704;738137 -5401;'151;Eastern Europe;1620;Wood residues;5922;Export value;1000 USD;;130;350;3530;6035;6620;6536;6739;5166;6495;9476;7958;17040;25740;30907;30246;31727;31560;25360;22322;22870;20830;17260;16282;19010;13542;8239;8398;8498;8598;8798;4456;11313;11458;13177;16102;11419;10766;11725;12862;15601;19842;34668;48272;86206;129613;167362;189843;242503;290954;333221;53810;113747;128181;105462;94616;71332.01;78936;79269;53031;51535;58990;45441 -5401;'151;Eastern Europe;1605;Sawdust (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;454585;290705 -5401;'151;Eastern Europe;1605;Sawdust (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15680;13758 -5401;'151;Eastern Europe;1605;Sawdust (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;472289;415902 -5401;'151;Eastern Europe;1605;Sawdust (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21489;26018 -5401;'151;Eastern Europe;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1259062;1269854;1427380;1466015;1695120;1528551;1491754 -5401;'151;Eastern Europe;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;123329;189253;167501;138866;116984;286881;94391 -5401;'151;Eastern Europe;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4032.54;6429;5717;4606;6447;19244;9422 -5401;'151;Eastern Europe;1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;261232;333695;274066;249485;148840;221761;107480 -5401;'151;Eastern Europe;1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12052.42;19625;15161;14623;13286;18863;12689 -5401;'151;Eastern Europe;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3785347;4075931;4708449;5077150;5724827;6642118;7489852;8431419;8513378;8834022;7478095;6664038 -5401;'151;Eastern Europe;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;444398;249154;213340;240457;327169;484160;562297;677806;606309;734211;910661;706867 -5401;'151;Eastern Europe;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66348;45325;48249;38415;47892;64789.55;88152;102534;81671;114853;197915;153785 -5401;'151;Eastern Europe;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2242622;2628574;2784911;2843422;3092720;3773655;4284899;5144992;5818892;6035813;4764277;3541407 -5401;'151;Eastern Europe;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;377937;480538;485668;395144;388372;467170.3;648837;768321;818700;858922;1031570;738226 -5401;'151;Eastern Europe;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2510000;2543219;2966402;3267966;3962724;4708236;5253996;6321673;6390961;6713937;6004514;5284065 -5401;'151;Eastern Europe;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;259924;165880;132670;175625;212024;237215;335679;449735;396335;555077;670280;516191 -5401;'151;Eastern Europe;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41940;31585;33745;27955;31427;40856.33;59488;77377;60359;90565;162682;123146 -5401;'151;Eastern Europe;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1661828;1938033;2150763;2269224;2419582;3026617;3422778;4173994;5005536;5130581;4134597;3042159 -5401;'151;Eastern Europe;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;284285;376225;379586;314167;314504;379357.92;521837;649552;722974;738770;887093;621301 -5401;'151;Eastern Europe;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1275347;1532712;1742047;1809184;1762103;1933882;2235856;2109746;2122417;2120085;1473581;1379973 -5401;'151;Eastern Europe;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;184474;83274;80670;64832;115145;246945;226618;228071;209974;179134;240381;190676 -5401;'151;Eastern Europe;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24408;13740;14504;10460;16465;23933.22;28664;25157;21312;24288;35233;30639 -5401;'151;Eastern Europe;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;580794;690541;634148;574198;673138;747038;862121;970998;813356;905232;629680;499248 -5401;'151;Eastern Europe;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93652;104313;106082;80977;73868;87812.37;127000;118769;95726;120152;144477;116925 -5401;'151;Eastern Europe;1872;Sawnwood;5516;Production;m3;126499616;126865316;128617100;133726608;134235608;130393308;132460308;133673000;135408196;139480208;142830608;138614200;136316100;135166600;136445800;133038700;128856200;126193100;119721600;117942300;117107000;116167000;116491000;116965000;117282000;120049000;119701000;120958500;120043250;119010000;90409000;69937008;57347000;46971000;41225000;35795200;35285600;35810600;35858500;37572000;36875000;35968400;38201500;41386800;44185900;46516140;52198080;48106900;45761825;49785306;52201077;53242876;54239542;55892932;58401695;60574613;65869987;69098261;72105156;68471461;67847013;63130042;60533468 -5401;'151;Eastern Europe;1872;Sawnwood;5616;Import quantity;m3;1539600;1697400;1477300;1542200;1652900;1591400;1762800;1996900;1890300;1974400;2277400;1930900;1880200;2122800;2197200;1895800;2032300;2148500;1750700;1672800;1706800;1506700;1601600;1816200;2126900;1932200;1663000;1619300;1358753;1139844;817244;768825;803620;1359800;1297800;1595030;1602700;1554650;1878850;2385100;2271347;2479140;2247265;2426334;2599110;2321120;2780583;2393276;1883605;2166420;2409648;2197250;2056848;2737131;3206970;3355492;3590256;4313891;4367981;4491325;4376685;4316126;3162911 -5401;'151;Eastern Europe;1872;Sawnwood;5622;Import value;1000 USD;77837;83588;72750;75745;79916;80047;79452;93441;88657;93868;121104;109377;125487;158519;250486;190093;215705;265443;221775;223279;243386;226632;200959;231899;249121;237836;205991;191347;148396;142194;130947;94274;98054;155876;203162;214950;254032;236313;237624;266874;260666;321116;379035;461589;517165;567719;781242;784173;585832;652347;754710;709353;708213;811877;734377;760704;820881.86;1012301;913668;973552;1438636;1368789;887284 -5401;'151;Eastern Europe;1872;Sawnwood;5916;Export quantity;m3;8167400;9378900;10432800;11849100;11997800;12411700;11815100;11986000;11797000;12146900;11819700;11992000;11669400;10826800;11222000;11827600;11377100;11644100;10662500;10209100;10010400;10236000;10365300;10174200;10181100;10728500;10567200;11031700;10244758;8386059;6663746;8970157;9568707;9336800;10370100;9059407;10514600;10561500;13581200;15515216;15049000;16880186;19519628;21565718;23478216;24902110;26991440;22053826;23113944;25773461;28717686;29037905;30068906;32377953;34335542;37123238;41997232;47342172;48695538;47705783;44511508;34644639;28754245 -5401;'151;Eastern Europe;1872;Sawnwood;5922;Export value;1000 USD;331180;370751;399922;464688;487307;506063;471157;467982;486505;537253;557911;617585;788121;1107295;1113100;1181925;1298710;1336311;1420981;1475876;1464575;1388489;1388167;1357325;1325483;1403481;1436110;1690237;1700952;1421328;1135411;1123882;1600019;1177852;1511369;1401185;1569093;1480092;1663439;1824850;1731006;2015110;2625393;3175740;3588888;4124497;5414247;4811937;4265912;4962025;5578505;5553717;5978491;6156532;5144687;5208637;6304953.19;7309194;7131845;7052839;10258897;8512057;5797302 -5401;'151;Eastern Europe;1632;Sawnwood, coniferous;5516;Production;m3;104234816;104398658;105620550;112430308;112905308;109500158;111148158;112180500;113757596;117215608;120026804;117977600;115936550;114937800;116111400;113145350;109478100;107053550;101291800;99885650;99122500;98409000;98518500;98874500;99429000;102425000;102524000;103490750;103021250;102029000;74131000;54485008;43851000;36292000;32950000;27350000;27368000;27510800;28948000;30411900;29870000;29022129;31395850;33919600;36797000;39254700;43889400;41498361;40027930;43216554;45915820;46661419;47916808;49304420;51883897;53887500;58869167;61728414;64688120;61977315;61183948;56906050;54773735 -5401;'151;Eastern Europe;1632;Sawnwood, coniferous;5616;Import quantity;m3;1180400;1346200;1172700;1158600;1273150;1218000;1361600;1616350;1553700;1637650;1917100;1598350;1531900;1754350;1841000;1596100;1725900;1838500;1475050;1413250;1430200;1314900;1399000;1618900;1936000;1767600;1537250;1495100;1236353;1023144;694344;706695;717594;1083700;989100;1237730;1213300;1187100;1415100;1868300;1726460;1899820;1731450;1791010;1903780;1738610;2067884;1761306;1450524;1681263;1838727;1660411;1571567;2244984;2634490;2649017;2943003;3476866;3466725;3720315;3480817;3660452;2737008 -5401;'151;Eastern Europe;1632;Sawnwood, coniferous;5622;Import value;1000 USD;55643;61379;52797;48265;53267;50837;51525;67129;65686;69742;93272;81049;91389;119614;196596;146679;168783;207481;170592;171701;159207;160864;132076;167119;188059;182308;163054;150727;107813;102210;95125;80880;78810;113283;149636;139089;150465;150455;147982;175005;171089;209134;247473;283514;310315;337285;489041;482140;331125;409582;475869;410886;434050;541203;502371;507628;566934.07;711510;619497;687599;1096315;1011252;623421 -5401;'151;Eastern Europe;1632;Sawnwood, coniferous;5916;Export quantity;m3;7375150;8587450;9611800;11026350;11178850;11502500;10900000;10975650;10773300;11060900;10782850;11074700;10723100;9934450;10390400;11037100;10604750;10818200;9995100;9550650;9408850;9679650;9757850;9537850;9735750;10306050;9995800;10505900;9721258;7981459;6210646;8174332;8836438;8521900;9045900;7802907;8946900;8979300;11281100;13268700;12962060;14728540;17281200;19211630;21224540;22703000;24615408;20118443;21357688;23610850;26178988;26398390;27822099;29771738;31085735;33820096;38094396;43331657;44848642;44308933;40453092;31234229;26002858 -5401;'151;Eastern Europe;1632;Sawnwood, coniferous;5922;Export value;1000 USD;293383;323254;353203;414277;437010;450154;417412;410102;427810;472713;490523;536107;700541;979677;991830;1063163;1176760;1208361;1302012;1317069;1326227;1263358;1252142;1216056;1230206;1307131;1309932;1582977;1591248;1313630;1021174;917029;1418203;966269;1214809;1104442;1237549;1142446;1240400;1372470;1280648;1532858;2065249;2510616;2902431;3436995;4639510;3990753;3611292;4240220;4784900;4686411;5121030;5318082;4261315;4312160;5347152.6;6272249;6159324;6142251;9092512;7353418;4836380 -5401;'151;Eastern Europe;1633;Sawnwood, non-coniferous;5516;Production;m3;22264800;22466658;22996550;21296300;21330300;20893150;21312150;21492500;21650600;22264600;22803804;20636600;20379550;20228800;20334400;19893350;19378100;19139550;18429800;18056650;17984500;17758000;17972500;18090500;17853000;17624000;17177000;17467750;17022000;16981000;16278000;15452000;13496000;10679000;8275000;8445200;7917600;8299800;6910500;7160100;7005000;6946271;6805650;7467200;7388900;7261440;8308680;6608539;5733895;6568752;6285257;6581457;6322734;6588512;6517798;6687113;7000820;7369847;7417036;6494146;6663065;6223992;5759733 -5401;'151;Eastern Europe;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;359200;351200;304600;383600;379750;373400;401200;380550;336600;336750;360300;332550;348300;368450;356200;299700;306400;310000;275650;259550;276600;191800;202600;197300;190900;164600;125750;124200;122400;116700;122900;62130;86026;276100;308700;357300;389400;367550;463750;516800;544887;579320;515815;635324;695330;582510;712699;631970;433081;485157;570921;536839;485281;492147;572480;706475;647253;837025;901256;771010;895868;655674;425903 -5401;'151;Eastern Europe;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;22194;22209;19953;27480;26649;29210;27927;26312;22971;24126;27832;28328;34098;38905;53890;43414;46922;57962;51183;51578;84179;65768;68883;64780;61062;55528;42937;40620;40583;39984;35822;13394;19244;42593;53526;75861;103567;85858;89642;91869;89577;111982;131562;178075;206850;230434;292201;302033;254707;242765;278841;298467;274163;270674;232006;253076;253947.79;300791;294171;285953;342321;357537;263863 -5401;'151;Eastern Europe;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;792250;791450;821000;822750;818950;909200;915100;1010350;1023700;1086000;1036850;917300;946300;892350;831600;790500;772350;825900;667400;658450;601550;556350;607450;636350;445350;422450;571400;525800;523500;404600;453100;795825;732269;814900;1324200;1256500;1567700;1582200;2300100;2246516;2086940;2151646;2238428;2354088;2253676;2199110;2376032;1935383;1756256;2162611;2538698;2639515;2246807;2606215;3249807;3303142;3902836;4010515;3846896;3396850;4058416;3410410;2751387 -5401;'151;Eastern Europe;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;37797;47497;46719;50411;50297;55909;53745;57880;58695;64540;67388;81478;87580;127618;121270;118762;121950;127950;118969;158807;138348;125131;136025;141269;95277;96350;126178;107260;109704;107698;114237;206853;181816;211583;296560;296743;331544;337646;423039;452380;450358;482252;560144;665124;686457;687502;774737;821184;654620;721805;793605;867306;857461;838450;883372;896477;957800.58;1036945;972521;910588;1166385;1158639;960922 -5401;'151;Eastern Europe;1634;Veneer sheets;5516;Production;m3;118200;158400;164800;156000;165300;132900;578800;612900;639300;643800;655200;664900;683100;690300;702200;722000;734000;707000;711000;719000;717000;664000;673000;679000;675000;673000;678000;622000;615000;556000;530000;293000;175000;218000;220000;202500;300800;192000;189583;236964;308000;345900;447000;527000;575000;518300;617741;602112;789577;889604;1069022;978767;1084589;1162278;1153332;1255502;1843438;2273924;2209649;2044188;2460435;2030915;1824056 -5401;'151;Eastern Europe;1634;Veneer sheets;5616;Import quantity;m3;44500;32300;34600;42700;42100;39000;32200;38500;52100;52800;55800;52000;91200;54800;53200;79600;53500;55700;80000;153800;113000;93600;87300;100100;98200;101792;96062;77443;132369;131981;140581;13184;26788;43720;46800;49400;107000;216250;118590;132679;105776;98157;112234;149978;262993;127686;181806;194225;166483;151759;221837;216290;246093;273191;313787;302003;365629;360613;338066;243656;323174;337489;293814 -5401;'151;Eastern Europe;1634;Veneer sheets;5622;Import value;1000 USD;7646;6069;6758;9040;9423;11076;10529;10949;16522;15763;19159;20902;34657;26944;25359;25571;23670;23927;30440;51694;39367;34457;50204;80079;94243;101278;96317;77955;162797;161374;166354;19936;37249;53522;59983;76526;110630;104374;102318;101479;104899;130908;166626;211680;232124;239315;331886;327070;214420;221926;307762;280661;264519;277985;248107;248328;281701.93;329499;290715;261621;329884;378910;362419 -5401;'151;Eastern Europe;1634;Veneer sheets;5916;Export quantity;m3;7700;13900;27600;32400;33400;35500;28900;45400;52200;31500;26200;19100;13500;11700;7200;8100;12800;12600;14300;11500;5900;6200;8400;9300;7200;26926;33438;25841;48277;12844;12844;13618;27017;28200;33000;37400;69600;63680;95200;101500;102348;120070;135895;171001;267880;275640;275819;275445;316601;478537;531855;519086;547274;794499;744834;795724;1010828;1131084;1175156;975698;1126463;1155014;963815 -5401;'151;Eastern Europe;1634;Veneer sheets;5922;Export value;1000 USD;1061;1848;3373;3915;4579;4938;3272;5059;5716;3818;3241;4735;4187;4330;4097;4596;6100;6487;7614;6858;4724;4940;5399;5991;5246;6557;9204;7310;13835;4147;4147;9222;14736;23198;31940;39990;55694;59697;65729;69624;78677;113504;165812;219316;273523;311458;399429;390669;337641;336278;413368;395941;410380;458255;399527;423038;562898.58;660519;649211;593149;789956;848776;651984 -5401;'151;Eastern Europe;1873;Wood-based panels;5516;Production;m3;3047600;3458400;3844500;4441000;4923500;6153900;6747000;7210500;7643400;8337000;9114000;9802600;10938000;12127100;13297600;13865700;14831300;15356000;15200000;15677000;15773000;16114000;16615000;17507000;17783000;19215000;19472000;20146000;20182000;16832000;15023000;12841000;11683300;9334400;9416000;8595000;9445000;10112000;11265500;12924879;13849670;15130570;17385470;19308820;20742500;23358100;26857335;27274131;23039524;26379928;28666513;30687891;32184231;33482894;36655831;39539734;42496010;44521492;44685361;43844802;50443769;44518598;44448865 -5401;'151;Eastern Europe;1873;Wood-based panels;5616;Import quantity;m3;94600;78700;91000;99100;116100;154916;207842;253137;372737;474221;447364;540311;580916;729116;787516;839420;771640;639170;645260;628800;628000;470300;441100;360100;397300;517600;561000;559100;696100;235900;115500;185159;159969;333909;641000;1055624;1687012;2240098;1984650;2484720;3331608;3952948;4561225;5014601;5578406;6386843;7729393;7266787;5914198;6328249;6485789;7030929;8314331;8173458;7386447;7869628;8538130;9056233;8723344;9119764;9594898;6897649;6010424 -5401;'151;Eastern Europe;1873;Wood-based panels;5622;Import value;1000 USD;9974;8823;10931;13055;14571;16675;20102;22968;28778;35118;39544;45017;55235;70103;96712;97196;95521;84437;90471;95778;95862;71868;64049;53294;57646;63459;77426;53877;65809;45781;29309;36484;56167;93210;146309;279095;437828;511734;452030;523831;626071;798634;1043588;1317122;1611451;2040012;2738362;2873483;1961411;2210762;2531510;2534628;2875543;2869597;2095531;2143960;2367189.22;2810832;2575498;2703285;3588961;2939650;2596543 -5401;'151;Eastern Europe;1873;Wood-based panels;5916;Export quantity;m3;251200;300400;398700;564100;660100;767118;873147;995389;1005097;1079385;1079267;1224909;1460272;1443662;1578360;1688832;1772700;1860000;1825000;1812900;1674100;1539500;1586800;1425200;1485900;1763994;1883599;1747743;1757223;1537688;1443488;1017760;1232041;1630023;2137900;2413300;2951400;3279690;3911577;4572289;5127851;5810138;6407023;8092624;7859011;8160722;9166512;8636776;8659004;9887356;9858822;11276988;12244717;13340724;14536123;16764668;18144299;18387511;18515185;19969248;20520943;14783426;12581018 -5401;'151;Eastern Europe;1873;Wood-based panels;5922;Export value;1000 USD;25820;30715;36409;50317;60766;63527;66967;71236;75028;87581;88570;102943;136426;172040;202447;214730;230876;255279;284548;346433;328377;310986;310759;273267;268641;302140;337441;391331;418005;348102;318412;273422;346010;397057;554468;653897;717331;809963;830600;893454;1019303;1187627;1426964;1953206;2294407;2631780;3359855;3333391;2584675;3295315;3620987;3816503;4290607;4731827;3991528;4187487;4804867.62;5849036;5323260;5451957;8190406;6491382;4979395 -5401;'151;Eastern Europe;1640;Plywood and LVL;5516;Production;m3;2001700;2121500;2212900;2339800;2437000;2510900;2583700;2617700;2658300;2793100;2861400;2857400;2914500;3012800;3096900;3096000;3102300;3031000;2880000;2882000;2848000;2814000;2836000;2883000;2900000;3021000;2999000;3038000;2949000;2290000;1854000;1875000;1581300;1380400;1462000;1518000;1574000;1701500;1989500;2267900;2418000;2688600;2867400;3314700;3666300;3761000;3930324;3701771;3109972;3938496;4405586;4623234;5005480;5256043;5366535;5618546;5809286;5975266;6136400;6010097;6685048;5028902;4934186 -5401;'151;Eastern Europe;1640;Plywood and LVL;5616;Import quantity;m3;48700;49900;53600;60600;76400;93300;95400;99500;104500;126600;122400;121900;123200;131200;149700;152500;154400;152600;138500;142300;120100;121200;118500;113800;128100;130600;122900;116100;209800;65900;30500;45099;40426;46500;86300;110700;231800;275630;259240;306940;271530;292330;359830;341260;386200;447715;676404;675477;422096;413044;522412;748954;807356;929389;806087;801284;1008954;1041646;985688;1055625;1132229;1130132;968858 -5401;'151;Eastern Europe;1640;Plywood and LVL;5622;Import value;1000 USD;6967;7225;7811;8655;11164;13350;13908;14247;15144;17983;18629;21721;23890;25880;44297;43936;44869;46614;47357;49131;41514;41240;37359;36385;39296;39152;43618;22102;22863;27434;18907;12833;21233;26452;37012;57371;90542;79560;81671;86117;90651;108355;130207;175108;215477;274982;416920;397304;218291;241721;350230;363139;405173;480427;375446;369016;440817.25;548756;485235;498889;724055;781373;628645 -5401;'151;Eastern Europe;1640;Plywood and LVL;5916;Export quantity;m3;206000;231800;247500;305100;348200;347100;370600;400000;392400;428900;426800;412500;488000;430200;450800;486200;544200;545800;537100;531400;491500;510800;503400;475000;541200;627940;642970;590416;613140;512131;363631;458718;681274;816300;886300;937200;980900;1121370;1338850;1477650;1580870;1722980;1775040;2109080;2228930;2242040;2187451;1873403;1877761;2087705;2318027;2489161;2670053;2936547;3284999;3605199;3671994;3970781;4011194;4190053;4538437;3321716;2585020 -5401;'151;Eastern Europe;1640;Plywood and LVL;5922;Export value;1000 USD;23405;27183;28029;36139;43214;43432;44259;44785;45761;54030;54372;58976;78201;99155;112613;119076;130258;143106;154878;178722;163048;166508;162337;153873;153500;177876;189557;232388;247126;202530;155326;165867;254237;241812;302185;358158;365665;400632;431484;397265;439733;496321;558976;755911;907838;982342;1205447;1144679;889048;1024195;1404286;1372215;1540396;1811455;1560654;1560001;1786809.87;2205238;1932253;1965117;2943372;2411420;1678843 -5401;'151;Eastern Europe;1607;Laminated Veneer Lumber (LVL);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;351000;331000 -5401;'151;Eastern Europe;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9360;23949 -5401;'151;Eastern Europe;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10275;16343 -5401;'151;Eastern Europe;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23995;54600 -5401;'151;Eastern Europe;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21574;48262 -5401;'151;Eastern Europe;1646;Particle board and OSB (1961-1994);5516;Production;m3;591900;782800;975200;1287700;1558600;1908500;2267000;2558600;2820900;3232700;3785900;4323500;4947200;5608000;6250000;6556000;7350000;7893000;7879000;8347000;8542000;8934000;9280000;9971000;9961000;10639000;10922000;11420000;11679000;9194000;7985000;8347000;7863000;6268000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5401;'151;Eastern Europe;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;10000;15000;26400;24700;17600;14100;40300;73400;118800;132900;143300;184900;238300;327200;364500;463900;414800;285000;312400;293000;275500;190000;217700;130500;149200;203600;260700;268800;325400;110100;61400;109809;89220;233900;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5401;'151;Eastern Europe;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;556;694;1661;1534;1399;816;2187;4018;6494;6641;8477;10403;17625;26447;27697;35079;33109;20972;25832;26580;27294;15259;17655;8235;10027;13546;23059;23809;34207;13833;4726;18788;24623;45576;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5401;'151;Eastern Europe;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;28400;37100;87800;161000;196000;213500;263100;311700;281700;288500;320400;361900;429400;484500;643100;629300;618000;667000;609900;604900;545000;514800;585500;485900;425800;580343;595319;517085;518856;359581;444281;308197;287617;444600;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5401;'151;Eastern Europe;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;1192;1676;4199;7253;8835;9695;11742;14112;13579;14384;15628;18831;25011;33222;43828;43091;43003;48329;53315;61700;64741;59595;71691;47686;42023;50207;58278;57320;59236;39512;55738;43428;35686;77006;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5401;'151;Eastern Europe;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6041000;5323000;5684000;5813600;6399200;7321600;7714000;8131900;9919000;11041800;11363600;13631900;15883913;16456310;13408456;15040770;16614659;17091811;17445748;17819558;18685372;18817168;19742375;20292385;19884881;19482126;23156530;20269051;20804762 -5401;'151;Eastern Europe;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;435500;715800;883100;1301758;1147379;1442179;2016934;2333240;2529281;2691090;2910550;3081710;3221949;3355561;2590006;2731222;2515501;2621226;3455293;3240513;3237612;3532046;3910465;4056932;3880040;3776302;4195422;2960692;2554845 -5401;'151;Eastern Europe;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79458;156305;205734;244807;192854;224435;291707;354183;437915;530241;640853;789802;870607;956303;603137;686624;727003;744370;918334;850814;673916;693047;775272.38;892378;796533;807538;1057836;879924;807398 -5401;'151;Eastern Europe;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;657600;829100;1179700;1068199;1244756;1372956;1826100;1903720;2396510;3273800;2845870;3125990;3533805;3523920;3346852;4202568;3648153;4529200;4774528;5396167;5785399;6399110;6860189;6738674;6620067;7037050;7029206;5192837;4587940 -5401;'151;Eastern Europe;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100231;148400;197854;181380;165858;194872;262762;278362;380210;563008;618635;747941;896826;930872;700516;1060289;920276;1075600;1143800;1233469;1045213;1072811;1239553.66;1371314;1236037;1208131;1829252;1546963;1312780 -5401;'151;Eastern Europe;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;41000;146000;350000;350000;350000;350000;540000;550000;670000;793000;1030000;1270517;1322990;1222174;1889104;1778996;2258890;2465747;2739429;3937086;4760307;5228307;5843544;5717706;5624033;6100879;5532718;5891945 -5401;'151;Eastern Europe;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21800;78600;76100;64800;95400;149100;262030;264240;395800;388430;545400;931617;927296;848450;1021923;1052275;1197975;1412873;1290168;1045101;1009654;1181775;1120062;1037964;1254686;1029471;754522;679654 -5401;'151;Eastern Europe;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2700;8600;10695;5926;13576;15277;31703;42890;84982;94202;161059;316171;298200;230724;313746;346389;346806;423363;333661;198439;217641;245973.46;277310;249033;278601;366661;218789;205311 -5401;'151;Eastern Europe;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;39200;179000;300100;424200;372000;477800;480800;423030;442300;501000;863660;695067;847601;964305;1220802;1484186;1758698;1675944;2099168;2678636;3113466;3101702;2909830;3396547;3214342;2120781;1997397 -5401;'151;Eastern Europe;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;7800;34004;59224;101167;80490;98683;94471;113628;115526;128773;258294;244301;216737;304781;328604;372620;511621;477218;432943;533419;632092.88;813746;664412;730763;1281276;734479;605918 -5401;'151;Eastern Europe;1874;Fibreboard;5516;Production;m3;454000;554100;656400;813500;927900;1734500;1896300;2034200;2164200;2311200;2466700;2621700;3076300;3506300;3950700;4213700;4379000;4432000;4441000;4448000;4383000;4366000;4499000;4653000;4922000;5555000;5551000;5688000;5554000;5348000;5184000;2619000;2239000;1686000;1913000;1713000;2041000;2246900;2526800;2985379;3367670;3770070;4049070;4282320;4919600;4935200;5772581;5793060;5298922;5511558;5867272;6713956;7267256;7667864;8666838;10343713;11716042;12410297;12946374;12728546;14501312;13687927;12817972 -5401;'151;Eastern Europe;1874;Fibreboard;5616;Import quantity;m3;35900;13800;11000;13800;22100;47516;72142;80237;149437;214721;181664;233511;219416;270716;273316;223020;202440;201570;194360;193500;232400;159100;104900;115800;120000;183400;177400;174200;160900;59900;23600;30251;30323;53509;119200;207324;493512;586610;513231;640201;894044;1065348;1407874;1586451;1893226;2312018;2899423;2308453;2053646;2162060;2395601;2462774;2638809;2713388;2297647;2526644;2436936;2837593;2819652;3033151;3237776;2052303;1807067 -5401;'151;Eastern Europe;1874;Fibreboard;5622;Import value;1000 USD;2451;904;1459;2866;2008;2509;4007;4703;7140;10494;12438;12893;13720;17776;24718;18181;17543;16851;17282;20067;27054;15369;9035;8674;8323;10761;10749;7966;8739;4514;5676;4863;10311;21182;29839;62719;132952;176672;171579;199703;228436;304393;432576;526791;660919;814169;1134664;1221676;909259;968671;1107888;1080313;1128673;1204695;847730;864256;905126.13;1092388;1044697;1118257;1440409;1059564;955189 -5401;'151;Eastern Europe;1874;Fibreboard;5916;Export quantity;m3;16800;31500;63400;98000;115900;206518;239447;283689;330997;361985;332067;450509;542872;528962;484460;573332;610500;647200;678000;676600;637600;513900;497900;464300;518900;555711;645310;640242;625227;665976;635576;250845;263150;369123;594000;646700;751600;911121;1027871;1297483;1348881;1705638;1754673;2286714;2341911;2291692;2581596;2544386;2586790;2632778;2671840;2774441;3041438;3332066;3366557;4081723;4498650;4576354;4974094;5345598;5738958;4148092;3410661 -5401;'151;Eastern Europe;1874;Fibreboard;5922;Export value;1000 USD;1223;1856;4181;6925;8717;10400;10966;12339;15688;19167;18570;25136;33214;39663;46006;52563;57615;63844;76355;106011;100588;84883;76731;71708;73118;74057;89606;101623;111643;106060;107348;64127;56087;78239;152052;147139;146012;193947;174034;200150;236318;314261;393307;520659;652408;772724;999288;1013539;778374;906050;967821;996068;1094790;1209685;952718;1021256;1146411.23;1458738;1490558;1547946;2136506;1798520;1381854 -5401;'151;Eastern Europe;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1334000;1123000;1196000;1106900;1205800;1340193;1429690;1501490;1619690;1819320;1951600;1676000;1616937;1643459;979965;949248;1097900;1547875;1636974;922349;760111;1132891;1147983;1166236;1371386;1486970;1582475;1512774;1505141 -5401;'151;Eastern Europe;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76800;96400;208100;356861;306882;335489;433393;539463;568248;602182;740065;837401;1079538;854134;655515;790115;692277;636514;666321;788157;451389;549348;461862;437609;425951;599026;585206;430228;402685 -5401;'151;Eastern Europe;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15605;28086;69896;118097;109002;121023;130290;187265;232847;286635;345726;410095;525559;562743;446423;463685;425210;337343;345540;397835;220702;249639;258165.24;267292;237256;333429;367034;306372;311456 -5401;'151;Eastern Europe;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;349400;355800;379900;437512;615312;686824;603952;708903;610942;731973;873140;835040;956084;849159;728001;679715;715892;721548;705244;683608;404222;431881;475556;390526;603378;1104129;1094078;625841;467296 -5401;'151;Eastern Europe;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86226;82797;86243;104002;110677;118551;122193;175252;168573;212895;317933;368301;465296;475967;302636;309493;341534;346513;362591;365412;152605;172964;196389.28;191261;222686;475755;639552;450934;324294 -5401;'151;Eastern Europe;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;248000;303000;482000;824000;996000;1193993;1449990;1663090;1853990;1889000;2358400;2525200;3342384;3380721;3520429;3805586;4019480;4389332;4776169;5939487;7139717;8134443;9282548;9864240;10395259;9691669;10720737;10282379;9787143 -5401;'151;Eastern Europe;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19900;63212;145712;177489;155389;220886;325029;435423;757824;903117;1045261;1354917;1510976;1293389;1110282;1151624;1517055;1640822;1824521;1812271;1641360;1706909;1718449;2162404;2153686;2200611;2384969;1394619;1192517 -5401;'151;Eastern Europe;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9530;26253;44534;47636;52779;63764;75183;97825;185469;223199;291853;378159;533383;615987;408775;462227;623949;686602;746089;770988;588914;561507;594193.71;778767;762453;741385;1015164;693571;594047 -5401;'151;Eastern Europe;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;154000;162200;197200;273207;184857;302457;411471;673501;760801;1024528;971469;914070;1042041;1048395;1247190;1275745;1404348;1501197;1779115;1963847;2204973;2811726;3218898;3346315;3467127;3216569;3515745;2534440;2181025 -5401;'151;Eastern Europe;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54163;50749;40237;66652;40466;53809;78127;104536;179417;243199;264757;314485;422491;417322;359172;409893;509200;537581;611163;687950;627039;681576;783163.87;1085171;1074729;842948;1207064;1041614;828709 -5401;'151;Eastern Europe;1650;Other fibreboard;5516;Production;m3;185000;196300;213300;204800;228500;948000;1036400;1087400;1103400;1138600;1211000;1226600;1290600;1502200;1727200;1836000;1905000;1882000;1966000;1953000;1894000;1886000;1953000;2022000;2132000;2402000;2411000;2465000;2439000;2284000;2253000;817000;535000;337000;331000;287000;363000;316000;325000;451193;487990;605490;575390;574000;609600;734000;813260;768880;798528;756724;749892;776749;854113;806028;767010;1076379;1285511;1379821;1179729;1549907;2198100;1892774;1525688 -5401;'151;Eastern Europe;1650;Other fibreboard;5616;Import quantity;m3;;;;1000;2000;11200;13200;8000;42500;48100;28300;55600;40900;44600;37500;19600;16300;16500;16700;16800;17400;13800;7800;7800;8700;15000;15300;14500;13800;4000;600;3597;3571;7013;22500;47712;139700;52260;50960;83826;135622;90462;81802;81152;107900;119700;308909;160930;287849;220321;186269;185438;147967;112960;204898;270387;256625;237580;240015;233514;267601;227456;211865 -5401;'151;Eastern Europe;1650;Other fibreboard;5622;Import value;1000 USD;;;;139;139;278;278;139;815;719;558;1302;752;971;628;582;566;620;623;705;829;600;300;292;312;717;800;510;608;28;18;1176;1410;3151;4704;8380;18522;10939;9798;14916;22963;19303;14260;16957;23340;25915;75722;42946;54061;42759;58729;56368;37044;35872;38114;53110;52767.18;46329;44988;43443;58211;59621;49686 -5401;'151;Eastern Europe;1650;Other fibreboard;5916;Export quantity;m3;9800;6500;7900;7200;7400;54200;60000;71700;89700;104600;89300;126400;137400;130300;98900;117600;115800;122400;129900;121900;94100;60100;53800;42000;81300;85700;94300;109400;112200;132200;111800;47570;54269;27106;90600;128700;174500;200402;227702;308202;333458;323234;382930;530213;497302;542582;583471;646832;611599;677318;551600;551696;557079;684611;757362;838116;804196;839513;903589;1024900;1129135;987811;762340 -5401;'151;Eastern Europe;1650;Other fibreboard;5922;Export value;1000 USD;796;508;557;571;557;639;766;757;1282;1921;1645;2107;2586;3750;3144;6000;6000;6500;7300;7400;5700;4200;2940;2203;3812;3886;4340;6432;9865;7679;6591;13949;10972;4961;11663;13593;19532;23293;22891;27790;35998;34473;45317;64565;69718;89938;111501;120250;116566;186664;117087;111974;121036;156323;173074;166716;166858.08;182306;193143;229243;289890;305972;228851 -5401;'151;Eastern Europe;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;269000;357800;443100;608700;699400;786500;859900;946800;1060800;1172600;1255700;1395100;1785700;2004100;2223500;2377700;2474000;2550000;2475000;2495000;2489000;2480000;2546000;2631000;2790000;3153000;3140000;3223000;3115000;3064000;2931000;1802000;1704000;1349000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5401;'151;Eastern Europe;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;35900;13800;11000;12800;20100;36316;58942;72237;106937;166621;153364;177911;178516;226116;235816;203420;186140;185070;177660;176700;215000;145300;97100;108000;111300;168400;162100;159700;147100;55900;23000;26654;26752;46496;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5401;'151;Eastern Europe;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;2451;904;1459;2727;1869;2231;3729;4564;6325;9775;11880;11591;12968;16805;24090;17599;16977;16231;16659;19362;26225;14769;8735;8382;8011;10044;9949;7456;8131;4486;5658;3687;8901;18031;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5401;'151;Eastern Europe;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;7000;25000;55500;90800;108500;152318;179447;211989;241297;257385;242767;324109;405472;398662;385560;455732;494700;524800;548100;554700;543500;453800;444100;422300;437600;470011;551010;530842;513027;533776;523776;203275;208881;342017;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5401;'151;Eastern Europe;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;427;1348;3624;6354;8160;9761;10200;11582;14406;17246;16925;23029;30628;35913;42862;46563;51615;57344;69055;98611;94888;80683;73791;69505;69306;70171;85266;95191;101778;98381;100757;50178;45115;73278;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5401;'151;Eastern Europe;1879;Total fibre furnish;5510;Production;t;4564600;4880300;5117500;5303600;5736800;6385900;6904600;7240700;7460500;9872800;10393700;10908800;11437300;12401800;12870000;13670000;14252000;14728000;14246000;14493000;14857000;15344000;16368000;16733100;17170000;17087000;17711000;17870000;18438000;17350000;15520000;11229000;9492500;7962000;9713000;8359300;8173000;8939300;10591400;12093500;12797800;13231200;13864600;14330200;14805900;14921900;15294206;15280335;14889237;15859912;16697942;16682887;17311622;17904728;18399906;19413243;20814476;21335098;21596097;22496489;23355841;23143188;22342395 -5401;'151;Eastern Europe;1879;Total fibre furnish;5610;Import quantity;t;1500;1500;1500;100;100;800;1200;576600;593100;747600;763500;721200;754100;714600;887600;808300;815100;858400;845300;979800;936000;874300;944200;880500;895600;866800;956900;1021500;1192900;827900;627900;305508;326043;446520;522295;786558;692120;962738;1108867;1200190;1105730;1340540;1516530;1513300;1603436;1374927;1607693;1734872;1765588;2483645;2647482;2788426;3078036;3252597;3261363;3395896;3465377;3663956;3541385;3800710;4308514;3595007;3071544 -5401;'151;Eastern Europe;1879;Total fibre furnish;5622;Import value;1000 USD;110;110;110;9;9;51;102;85149;90220;124328;133538;133432;158465;202670;343610;285775;286790;303642;330803;414089;450776;392120;394348;355404;341319;347428;439164;496074;544304;399893;338908;116979;119264;156797;243280;311081;277438;333604;390605;520550;396531;456776;577523;649785;715546;732537;902007;1077469;856792;1308833;1446371;1304308;1420900;1528481;1475015;1425413;1489813.06;1862997;1607678;1370043;1961646;2090803;1629621 -5401;'151;Eastern Europe;1879;Total fibre furnish;5910;Export quantity;t;;;;6000;20700;45800;31300;529500;632300;579000;595000;707400;724500;834600;815500;1049500;1089572;1218071;1093698;1192900;1264900;1252500;1474400;1506500;1487400;1628400;1606900;1604200;1666200;1125700;1002900;1152096;1368386;1319600;1658100;1468079;1341679;1549251;1973297;2355076;2540323;2691289;2875893;2959755;3179800;3310941;3430955;4005153;3585037;4043404;4441805;4897473;4938268;5101857;5280154;5177645;5808148;5921309;5787311;6352317;6235641;6072827;5850326 -5401;'151;Eastern Europe;1879;Total fibre furnish;5922;Export value;1000 USD;;;;139;1378;2033;1652;64585;76490;78039;85759;102862;120946;140731;154861;211692;236702;277235;273267;352311;368588;431953;503921;519404;509585;560979;559701;695796;776354;544393;498155;328406;358171;490182;1084814;556944;480015;526240;545735;856537;725242;768642;889080;990960;1054143;1181960;1491983;1701764;1197929;1918774;2126568;1811232;1828024;1981405;1831774;1762674;2030833.19;2490753;1899091;1894008;2722492;3428830;2209790 -5401;'151;Eastern Europe;1878;Pulp for paper;5510;Production;t;4564600;4880300;5117500;5303600;5736800;6385900;6904600;7240700;7460500;8256800;8659700;8991800;9375300;10121800;10441000;11019000;11290000;11555000;10879000;10977000;11155000;11427000;12235000;12561100;12815000;12872000;13089000;13332000;13920000;12724000;10894000;8270000;6942500;5830000;7004000;5775300;5583000;6161300;7449400;8521500;8872800;9082200;9370600;9595200;9667200;9706200;9828606;9814133;9396075;10085915;10677188;10333057;10133622;10138735;10665300;11418836;11573532;11700634;11641388;12529580;12798641;12668988;12023195 -5401;'151;Eastern Europe;1878;Pulp for paper;5610;Import quantity;t;1500;1500;1500;100;100;800;1200;576600;593100;747600;763500;721200;754100;714600;887600;808300;815100;858400;845300;979800;936000;874300;944200;880500;885600;856800;946900;996500;942900;577900;547100;203973;250554;273143;309118;533851;513320;649595;743576;748458;793832;924662;1057942;1133662;1212938;1048877;1200381;1350114;1341368;1414337;1478868;1506102;1655939;1813657;1895596;1992589;1972892;2136796;2064560;2148916;2270313;2219333;1858660 -5401;'151;Eastern Europe;1878;Pulp for paper;5622;Import value;1000 USD;110;110;110;9;9;51;102;85149;90220;124328;133538;133432;158465;202670;343610;285775;286790;303642;330803;414089;450776;392120;394348;355404;340179;346288;438024;492499;503304;358893;332139;108080;113660;141866;215622;286158;260730;307357;357348;467363;369782;413655;524258;602633;663088;683103;824385;999442;789810;1099561;1177113;1076453;1178779;1280052;1272004;1206932;1226580.6;1618649;1408684;1175000;1585103;1813251;1458275 -5401;'151;Eastern Europe;1878;Pulp for paper;5910;Export quantity;t;;;;6000;20700;45800;31300;529500;632300;553000;569000;672400;689500;680300;669400;848500;851200;923100;822900;891600;895600;981600;1161600;1216900;1226800;1367100;1327300;1260400;1277200;842700;825000;1106095;1275059;1244700;1574500;1386800;1272800;1441841;1834705;2112593;2258042;2364392;2422692;2337664;2393576;2300811;2311785;2450582;2326790;2538782;2644382;2764826;2540547;2752423;2805091;2836228;2850867;2785803;2828681;3315942;3057700;3025592;2769501 -5401;'151;Eastern Europe;1878;Pulp for paper;5922;Export value;1000 USD;;;;139;1378;2033;1652;64585;76490;76625;84345;100931;119015;132440;146947;200665;223266;260291;255986;331292;344121;415284;480193;499141;491684;540691;540124;656158;733438;507536;476424;318195;342080;483001;1071778;547679;474722;517848;534788;831693;699961;737268;840922;919538;965802;1054921;1277450;1409636;1034616;1608997;1711220;1445477;1429756;1586784;1480590;1380890;1553283.08;2011287;1494941;1527546;2000694;2769344;1766104 -5401;'151;Eastern Europe;1875;Wood pulp;5510;Production;t;4784200;5111800;5348700;5358600;5782600;6418900;7004500;7396200;7681600;8552300;9026500;9413800;9862300;10608800;10978000;11541000;11806000;12056000;11334000;11518000;11649000;11956000;12797000;13130000;13414000;13520000;13519000;13722000;14329000;13147000;11077000;8597000;7262500;6000000;7191000;5833000;5720000;6230300;7486700;8537600;8928800;9144200;9458600;9735200;9821400;9863100;9900682;9856775;9397715;9997034;10673919;10392357;9862011;10243659;10782555;11549674;11760837;11891685;11731640;12532423;12733560;12601867;11939985 -5401;'151;Eastern Europe;1875;Wood pulp;5610;Import quantity;t;27500;26400;27400;28600;28400;37300;33500;616100;629700;795600;816500;764100;795100;754700;936700;851700;860400;882700;867500;1010300;952000;888800;957600;896100;901100;873800;964300;1013500;959900;594900;551600;218848;282889;319461;351718;612451;584420;720567;818870;802561;832102;970032;1104592;1155352;1232620;1069457;1218984;1350953;1335582;1421724;1475325;1495270;1644382;1805762;1897953;2004095;1962532;2141610;2080233;2171718;2312728;2253433;1848419 -5401;'151;Eastern Europe;1875;Wood pulp;5622;Import value;1000 USD;5403;4970;5248;6046;6159;7453;6625;92871;97290;133561;144794;143099;168320;211070;359125;297697;299719;308920;335690;420277;455027;395823;397820;359478;344396;352379;443975;496616;507421;363010;335060;116036;134291;171163;253669;359313;316318;358613;408173;507568;402238;448299;559448;619456;676946;697719;845288;994808;781059;1105011;1167881;1060241;1159899;1261652;1264382;1203110;1217914.79;1619509;1418955;1185674;1635993;1852668;1438402 -5401;'151;Eastern Europe;1875;Wood pulp;5910;Export quantity;t;3100;2200;2000;3000;2700;3600;2000;503500;570500;544100;551800;613200;621500;592000;602200;724600;749700;848900;750600;885700;894400;987500;1164500;1219400;1229800;1372800;1330100;1263300;1280100;845600;827900;1110535;1306887;1314280;1680100;1495100;1347300;1507541;1885310;2140593;2318042;2435392;2514592;2448543;2526192;2434301;2459444;2606328;2308013;2544516;2686807;2924118;2764340;2981722;3075772;3047669;3075184;3022829;3079203;3562967;3033284;3002356;3012245 -5401;'151;Eastern Europe;1875;Wood pulp;5922;Export value;1000 USD;717;509;463;694;695;695;417;63699;74028;77330;84727;100565;116592;128519;145198;195507;219648;257063;253125;329318;344138;417456;480982;499798;492471;542758;541380;657559;734839;508937;477825;322261;361139;523219;1180588;617771;515909;555533;558995;846291;724754;760030;876890;968322;1032239;1126615;1386517;1547690;999824;1610242;1761751;1578229;1600717;1765442;1708465;1556921;1749219.52;2220708;1703274;1670137;1966524;2719165;1950507 -5401;'151;Eastern Europe;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3044744;3148196;3042225;3126618;3278228;3335703;3168655 -5401;'151;Eastern Europe;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;124767;126689;126097;104009;110915;100601;91484 -5401;'151;Eastern Europe;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63740.87;82731;76913;46618;64254;57728;51227 -5401;'151;Eastern Europe;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;156237;139055;144092;163233;139406;110033;99760 -5401;'151;Eastern Europe;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69546.33;77091;67144;59993;68355;257265;45836 -5401;'151;Eastern Europe;1654;Mechanical wood pulp (1961-2016);5510;Production;t;1287600;1387000;1416200;1439900;1555000;1700900;1773900;1928300;1936100;1963700;2049200;2103700;2124400;2147500;2180000;2229000;2278000;2280000;2158000;2182000;2208000;2233000;2334000;2386000;2431000;2481000;2481000;2513000;2523000;3054000;2639000;1624000;1403000;1160000;1482000;1183000;1092000;1210000;1345500;1407200;1440800;1423000;1421000;1494000;1500200;1486500;1467354;1573071;1517817;1919856;2065977;1720090;1518106;1296333;2220779;2455500;;;;;;; -5401;'151;Eastern Europe;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;13075;5572;3600;6400;820;720;2363;3179;1938;500;2200;2700;11730;16294;14494;10756;8978;7066;5636;5245;10589;9883;7838;8668;5085;;;;;;; -5401;'151;Eastern Europe;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;4900;1756;868;3991;306;286;803;1744;1212;340;1574;2029;8655;17494;10946;11544;6828;3870;5163;4183;7165;6673;4491;4156;2588;;;;;;; -5401;'151;Eastern Europe;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1439;1230;700;0;200;0;200;100;0;0;0;0;41;280;6028;2340;168;128;295;39;1112;2202;1451;3494;856;;;;;;; -5401;'151;Eastern Europe;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;746;367;305;0;100;0;74;29;52;4;0;42;48;162;404;198;128;46;383;10;247;285;458;536;651;;;;;;; -5401;'151;Eastern Europe;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;8400;10500;7200;157000;171600;223800;261800;265300;315800;207900;294900;325500;366300;405700;469000;493000;560000;621000;578000;608000;609000;605000;636000;649000;646000;642000;636000;671000;803000;788000;751000;529000;445500;380000;434000;342000;480000;429000;496700;649000;642000;695000;766000;787000;722900;752100;786670;823188;846346;742172;825992;756370;791205;964167;739511;1054051;;;;;;; -5401;'151;Eastern Europe;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;7633;7273;8031;5918;7900;7400;19900;16280;27500;15700;11010;24900;26750;28494;29967;41669;38427;68145;60413;68122;72624;78284;61080;81482;91987;;;;;;; -5401;'151;Eastern Europe;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;3390;3064;2828;3936;3857;3207;8392;6414;13795;6745;4112;10842;11358;10806;21695;23801;21225;32275;39206;39423;38811;42153;32855;43031;43026;;;;;;; -5401;'151;Eastern Europe;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;196;296;0;0;300;400;317;300;0;0;100;100;100;109;104;121252;132105;164469;191679;187905;178286;183583;159190;153281;;;;;;; -5401;'151;Eastern Europe;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;62;0;0;0;0;38;31;28;8;70;3;3;4;232;60190;45053;84538;89605;80632;79467;80302;61255;55687;;;;;;; -5401;'151;Eastern Europe;1656;Chemical wood pulp;5510;Production;t;3225900;3414200;3607500;3430000;3703700;4133200;4478200;4629100;4792100;5645000;5849400;6092200;6425300;7086600;7317000;7813000;7939000;8127000;7670000;7743000;7875000;8144000;8820000;9077000;9291000;9316000;9530000;9695000;10166000;8475000;7106000;5990000;4988000;4202000;4994000;4168000;3944000;4465300;5542200;6391300;6716000;6891200;7113600;7263200;7422300;7443500;7441658;7284516;6898552;7305006;7654950;7724897;7292700;7647453;7480606;7693168;8320093;8393722;8381263;9076262;9113613;8934685;8480626 -5401;'151;Eastern Europe;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;575400;591900;745600;758200;714100;752500;710500;885900;804700;811500;839600;827400;960500;935200;873600;936500;872800;878200;844800;930400;986400;930800;570800;542700;168791;233190;260112;287400;517331;491700;620715;717119;711119;770822;902342;1022692;1079802;1157987;994490;1131883;1276719;1241416;1333762;1391334;1407011;1551043;1728209;1791010;1879523;1828756;1993543;1924063;2031658;2146319;2103495;1744572 -5401;'151;Eastern Europe;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;85047;90118;124073;133058;132869;158309;200604;343158;284966;285805;296382;323982;406223;450347;391766;391876;352797;337854;342553;431380;487806;498589;354678;329262;89181;105491;137015;201669;277970;249169;291813;344068;446706;358136;401428;506441;571490;625299;638344;773331;940181;728304;1036254;1107455;1005430;1104615;1216276;1204589;1140103;1133938.27;1511734;1311764;1110476;1502753;1731127;1368534 -5401;'151;Eastern Europe;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;501500;569500;532000;541400;599400;616500;588800;597500;722300;748700;847900;749600;885700;893900;981500;1161100;1216600;1226500;1367000;1327200;1260300;1277100;842600;824900;1089183;1267578;1237284;1560800;1383400;1267500;1432141;1827350;2106393;2248042;2349392;2403492;2325402;2386792;2288164;2291962;2324879;2172471;2355843;2432564;2553565;2333112;2539660;2615088;2646070;2661711;2619920;2667626;3124932;2886476;2885317;2642485 -5401;'151;Eastern Europe;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;63282;73888;75331;82840;98271;115513;127479;143893;194902;219334;256749;252811;329318;343830;415268;480127;499103;491646;540678;540113;656147;733427;507525;476413;309558;339377;480634;1065442;545194;470668;510921;529017;827966;693142;724734;820711;898089;952890;1042224;1249304;1336074;953302;1494907;1587650;1333182;1313189;1467296;1385358;1288082;1447784.19;1901706;1409276;1431517;1887330;2452409;1665502 -5401;'151;Eastern Europe;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;120500;134200;141900;162800;1096700;1394000;1739100;1881400;2042200;2668000;2822500;3025900;3304200;4038400;4159000;4510000;4548000;4630000;4358000;4437000;4513000;4682000;5037000;5122000;5219000;5206000;5336000;5437000;5692000;3441000;3037000;2437000;1912000;1426000;1713500;1364500;1493000;1663000;2231000;2608300;2695500;2769000;2808000;2741000;2705000;2799200;2815366;2676827;2594890;2587096;4279401;4319901;4167200;4147900;4105659;4312968;4904433;4921752;4707063;5219156;5149912;5039923;4805151 -5401;'151;Eastern Europe;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;98100;85700;109400;70000;75800;81700;76900;83600;84500;78300;82500;71200;83800;63500;70600;70200;76500;55700;50500;64400;105300;105300;36900;36900;17067;17498;11484;30400;30100;18300;48282;51900;46223;25990;25640;23130;27200;36920;28360;38421;54654;44171;60876;33229;39564;37239;40821;44644;40899;31703;33188;35655;40951;36665;21807;16604 -5401;'151;Eastern Europe;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;12795;11718;10739;9307;10685;13537;15960;24730;22593;20184;22331;19921;23786;16749;18938;16390;18360;11825;11891;15683;14905;15405;16900;17736;7464;6863;4437;21172;14001;8031;25419;23906;22480;11529;10440;9413;11684;16155;13493;23459;37924;26706;45924;30453;38897;35368;35580;35701;33158;21584.63;25406;37721;24545;26130;17508;11277 -5401;'151;Eastern Europe;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;276800;127100;148900;174700;196700;216000;168700;278900;401100;433500;495700;432200;518900;678000;676500;775700;811400;765900;876100;863700;872000;847000;501000;501000;78009;155664;152600;195700;163600;197300;207823;282942;358901;403450;558100;506300;462600;478600;454094;470313;480604;440960;454467;480008;461396;336750;341460;342572;380731;370698;461579;426237;418883;530188;490995;423370 -5401;'151;Eastern Europe;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;34475;15158;17320;22793;28739;36997;37274;65890;109275;129074;151505;156957;203800;259664;293384;332701;351400;330234;382834;378234;486609;503358;298280;298280;30998;59883;46916;111614;54964;61485;57459;68974;114239;93002;141711;133703;137317;153110;167429;211581;224047;152122;217057;257468;195621;151098;171526;146034;150236;161570.54;294494;190708;155374;295831;297347;204493 -5401;'151;Eastern Europe;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;2700;6100;11200;16500;95800;146200;159000;118800;158700;172000;148000;198500;278000;300000;320000;376000;393000;402000;416000;494000;686000;698000;700000;704000;701000;733000;716000;2514000;1968000;1882000;1813000;1751000;2245500;1962500;1743000;2125000;2536300;2889600;3045300;3202000;3340000;3549000;3754000;3776400;3861392;3882789;3736108;3998210;2789149;2793596;2776600;3129653;2917047;2941200;3073660;3122970;3315200;3507106;3608319;3544112;3333794 -5401;'151;Eastern Europe;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;29900;22600;42900;46400;52700;60000;64200;97400;111400;113700;120700;105900;169000;191900;179500;250600;215200;249600;312100;297600;288300;292500;332900;315800;98573;175438;189848;191000;367219;385400;447802;548467;538302;649472;753202;851042;911482;961367;869270;983381;1115803;1105059;1175614;1308926;1334432;1481309;1658017;1708061;1802606;1766828;1923584;1865598;1962874;2081397;2051041;1690022 -5401;'151;Eastern Europe;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;4290;3597;8213;8632;10212;11988;16210;39859;37588;36870;39442;35724;62970;63348;62219;82062;73885;85833;129263;122882;132303;135203;167890;151798;50216;79110;98928;124493;191452;199911;202122;261927;348095;299798;336113;414310;483307;518590;563998;672823;819925;638733;910787;1028946;933084;1038413;1152847;1137452;1077886;1086775.69;1443977;1249479;1060315;1446509;1676275;1318291 -5401;'151;Eastern Europe;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;14100;23400;18600;18300;25500;25500;17800;12600;19200;15400;17700;18300;11400;15900;74700;94500;157000;209500;238300;217900;186800;132200;152000;125500;777291;698054;726884;990700;896300;823600;975942;1215408;1351192;1417392;1377292;1474192;1428592;1496692;1469969;1495906;1554139;1432291;1636006;1743076;1955852;1962617;2172174;2241174;2240092;2273782;2142942;2228278;2686559;2333291;2377938;2210696 -5401;'151;Eastern Europe;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;2517;3294;2885;2855;3850;3850;6650;3650;5150;4050;4700;4900;3050;4250;27000;29350;45329;60020;56956;56500;54000;43000;82511;63626;171941;163278;291145;723238;368078;319364;354195;355297;536060;461900;449485;535471;578220;623904;693882;856476;920117;652525;1095491;1182930;1059735;1138604;1285061;1227645;1129776;1278769.84;1598827;1213495;1269051;1580605;2148235;1458416 -5401;'151;Eastern Europe;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;342000;349000;359000;350000;355382;350650;341681 -5401;'151;Eastern Europe;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30225;36771;22810;27833;28257;30647;37946 -5401;'151;Eastern Europe;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25577.94;42351;24564;25616;30114;37344;38966 -5401;'151;Eastern Europe;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17231;15399;13111;19490;22997;16384;8419 -5401;'151;Eastern Europe;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7443.8;8385;5073;7092;10894;6827;2593 -5401;'151;Eastern Europe;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;345500;347100;349200;385000;2303500;2376600;2401400;2359300;2349600;2590000;2594400;2600800;2668200;2547700;2577000;2710000;2789000;2835000;2648000;2644000;2706000;2753000;2916000;2989000;3060000;3050000;3143000;3172000;3421000;1385000;1094000;953000;751000;483000;547000;398000;341000;358300;412300;394300;400300;362200;382600;380200;395300;394900;342900;364900;231100;358700;310700;407400;288900;299900;417900;399000;;;;;;; -5401;'151;Eastern Europe;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;28900;18400;22300;24000;35000;32300;37700;52100;36200;36000;30900;25900;35200;34900;32500;35400;29100;22900;18900;26100;20200;19000;3100;5900;3303;5494;8557;6900;2259;16500;37632;9854;23447;10450;12760;19990;17590;15700;14230;5812;6171;8157;4875;3540;3102;1058;1440;3672;5225;;;;;;; -5401;'151;Eastern Europe;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;3981;2629;3639;3851;5609;5503;9120;17196;9524;10481;9156;8924;13807;12227;10480;7879;5928;4096;3952;6715;7802;7402;2040;2836;1803;2161;2566;3475;934;7020;21782;5782;12537;6789;3459;18346;6229;6282;6640;2818;3489;5199;2985;2503;2089;1328;1730;2956;3875;;;;;;; -5401;'151;Eastern Europe;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;123900;305900;306100;298100;314300;315300;331800;243400;244100;261400;298700;265700;327400;181000;222700;252800;212600;213200;230600;225600;184500;174900;100600;100600;9519;85809;40200;88400;5800;6600;10676;800;29900;30000;26100;35000;33310;28000;21000;11000;7000;7000;10581;5959;7587;8365;7393;7408;6999;;;;;;; -5401;'151;Eastern Europe;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;14773;40038;44399;47089;53027;59652;66715;59103;66588;76983;92017;82927;110041;71489;91497;103502;86808;86195;91507;90107;105357;106447;70107;70107;4091;35332;9671;45721;1590;1454;3069;174;7169;6988;4600;6667;8540;8359;7285;5017;2717;1253;3998;2520;2246;2712;2602;2391;1770;;;;;;; -5401;'151;Eastern Europe;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;123100;119100;116800;118000;119300;126100;241900;242200;241300;268200;273800;293500;304900;302000;303000;293000;282000;286000;271000;260000;240000;215000;181000;268000;312000;356000;350000;353000;337000;1135000;1007000;718000;512000;542000;488000;443000;367000;319000;362600;499100;574900;558000;583000;593000;568000;473000;422000;360000;336454;361000;275700;204000;60000;70000;40000;40000;;;;;;; -5401;'151;Eastern Europe;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;299300;328200;366400;343500;294500;335800;285600;347100;289200;293500;303500;280400;347500;392600;346000;360600;300600;267700;282300;318300;368600;326700;197900;184100;49848;34760;50223;59100;117753;71500;86999;106898;103147;84910;110740;128530;123530;144000;82630;104269;100091;84029;92397;45639;29913;31437;27931;34633;30793;;;;;;; -5401;'151;Eastern Europe;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;46221;51252;67443;66915;61452;76990;95864;163399;123142;124170;120966;126126;161076;228096;195114;201539;167906;144795;156063;184194;259666;261039;167848;156892;29698;17357;31084;52529;71583;34207;42490;52453;63594;40020;51416;64372;70270;84272;54213;74231;78843;57666;76558;45553;31360;29506;26119;28480;25184;;;;;;; -5401;'151;Eastern Europe;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;16000;12600;10000;9000;9000;4000;4000;1000;;;;;;;;;;;;;;105000;89000;97800;224364;328051;317600;286000;317700;240000;237700;328200;366400;397200;387900;388000;400900;383500;343101;314743;283136;292220;254789;203521;128730;25380;18633;23934;18248;;;;;;; -5401;'151;Eastern Europe;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;2361;1944;1945;1806;1660;1040;740;300;;;;;;;;;;;;;;66000;56627;44400;102528;80884;132902;184869;120562;88365;96198;104572;170498;131252;128938;144870;174012;167517;173628;176230;189193;147402;178361;144732;75580;20775;8107;9288;6300;;;;;;; -5401;'151;Eastern Europe;1667;Dissolving wood pulp;5510;Production;t;262300;300100;317800;331700;352300;361000;490600;573500;637600;735700;833000;892400;946300;969000;1012000;1006000;1029000;1028000;928000;985000;957000;974000;1007000;1018000;1046000;1081000;872000;843000;837000;830000;581000;454000;426000;258000;281000;140000;204000;126000;102300;90100;130000;135000;158000;191000;176000;181000;205000;176000;135000;30000;127000;191000;260000;335706;341659;346955;396000;349767;308152;329543;341719;331479;290704 -5401;'151;Eastern Europe;1667;Dissolving wood pulp;5610;Import quantity;t;26000;24900;25900;28500;28300;36500;32300;39500;36600;48000;53000;42900;41000;42600;49200;43500;45400;41400;38400;48200;16600;15000;13800;16600;16100;19000;19400;18000;18000;18000;5500;29349;36854;47718;52000;86400;84600;77589;82292;62004;45080;54480;54300;37070;29845;30506;34676;26829;18955;21913;10624;5046;5172;8635;16793;27500;9009;21378;30073;36051;55494;49337;12363 -5401;'151;Eastern Europe;1667;Dissolving wood pulp;5622;Import value;1000 USD;5293;4860;5138;6037;6150;7402;6523;7722;7070;9233;11256;9667;9855;10310;15811;12025;13208;12108;11208;13798;4521;3914;3641;4500;4461;6678;6428;4714;4714;4714;4080;18565;23980;30452;44073;77180;63656;57605;55947;45855;37017;41185;40136;27953;23347;26734;36612;26574;16610;24388;16820;8835;6458;8030;12606;17393;20235.66;25044;30278;28580;68986;63813;18641 -5401;'151;Eastern Europe;1667;Dissolving wood pulp;5910;Export quantity;t;3100;2200;2000;3000;2700;3600;2000;2000;1000;12100;10400;13800;5000;3200;4700;2300;1000;1000;1000;0;500;6000;3400;2800;3300;5800;2900;3000;3000;3000;3000;19913;37883;76000;119300;111500;79500;74800;57543;33900;70000;86000;111000;123000;139020;140000;165038;160029;3309;23909;62525;181536;250740;257028;298000;247462;257236;263854;267485;274802;7402;7006;270000 -5401;'151;Eastern Europe;1667;Dissolving wood pulp;5922;Export value;1000 USD;717;509;463;694;695;695;417;417;140;1999;1887;2294;1079;1040;1305;605;314;314;314;0;308;2188;855;695;825;2080;1267;1412;1412;1412;1412;11957;21335;42218;115146;72477;45241;44538;29911;18242;31580;35288;56067;70182;79184;83983;136783;151298;1423;30414;84486;164168;207776;217386;261316;212501;231889;241911;226854;178627;10839;9491;239169 -5401;'151;Eastern Europe;1668;Pulp from fibres other than wood;5510;Production;t;42700;68600;86600;276700;306500;328000;390700;418000;416500;440200;466200;470400;459300;482000;475000;484000;513000;527000;473000;444000;463000;445000;445000;449100;447000;433000;442000;453000;428000;407000;398000;127000;106000;88000;94000;82300;67000;57000;65000;74000;74000;73000;70000;51000;21800;24100;132924;133358;133360;118881;130269;131700;531611;230782;224404;216117;208695;158716;217900;326700;406800;398600;373914 -5401;'151;Eastern Europe;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;14474;4519;1400;9400;7800;13500;6617;6998;7901;6810;9110;7650;15380;10163;9926;16073;25990;24741;14526;14167;15878;16729;16530;14436;15994;19369;16564;14400;13249;13079;15237;22604 -5401;'151;Eastern Europe;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;10609;3349;1155;6026;4025;8068;6349;5122;5650;4561;6541;4946;11130;9489;12118;15709;31208;25361;18938;26052;25047;25338;26430;20228;21215;28901.47;24184;20007;17906;18096;24396;38514 -5401;'151;Eastern Europe;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;6000;20700;45800;31300;28000;62800;21000;27600;73000;73000;91500;71900;126200;102500;75200;73300;5900;1700;100;500;300;300;100;100;100;100;100;100;15473;6055;6420;13700;3200;5000;9100;6938;5900;10000;15000;19100;12121;6404;6510;17379;4283;22086;18175;20100;22244;26947;27729;27319;36021;32919;26828;16963;27777;31818;30242;27256 -5401;'151;Eastern Europe;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;139;1378;2033;1652;1303;2602;1294;1505;2660;3502;4961;3054;5763;3932;3542;3175;1974;291;16;66;38;38;13;11;11;11;11;11;7891;2276;2000;6336;2385;4054;6853;5704;3644;6787;12526;20099;21398;12747;12289;27716;13244;36215;29169;33955;31416;36815;38728;33441;36470;35952.56;32490;18521;36036;45009;59670;54766 -5401;'151;Eastern Europe;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4800;9288;23400;14100;9110;6500;7640;6366;13414;21969;22332;19572;31370;41493;52069;49948;32993;28266;25959;38071;37366;26989;40342;41731;25368;25817 -5401;'151;Eastern Europe;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1572;2288;3724;3918;3410;3835;2043;3963;9377;14031;13742;10557;20022;33162;39419;40235;23661;16291;14853;19829.77;18665;15841;22508;21119;13394;13425 -5401;'151;Eastern Europe;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;1300;65100;2010;4900;4600;800;20;3022;2207;3347;5229;3463;5856;9992;11274;3956;6653;5858;10673;14052;13331;20174;18249;21688;22348 -5401;'151;Eastern Europe;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;124;271;6524;343;862;807;103;24;729;1028;1557;1350;896;2028;4211;7865;2519;3526;3322;5538.45;8264;8128;11567;10166;10681;10940 -5401;'151;Eastern Europe;1669;Recovered paper;5510;Production;t;;;;;;;;;;1616000;1734000;1917000;2062000;2280000;2429000;2651000;2962000;3173000;3367000;3516000;3702000;3917000;4133000;4172000;4355000;4215000;4622000;4538000;4518000;4626000;4626000;2959000;2550000;2132000;2709000;2584000;2590000;2778000;3142000;3572000;3925000;4149000;4494000;4735000;5138700;5215700;5465600;5466202;5493162;5773997;6020754;6349830;7178000;7765993;7734606;7994407;9240944;9634464;9954709;9966909;10557200;10474200;10319200 -5401;'151;Eastern Europe;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;10000;10000;10000;25000;250000;250000;80800;101535;75489;173377;213177;252707;178800;313143;365291;451732;311898;415878;458588;379638;390498;326050;407312;384758;424220;1069308;1168614;1282324;1422097;1438940;1365767;1403307;1492485;1527160;1476825;1651794;2038201;1375674;1212884 -5401;'151;Eastern Europe;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;1140;1140;1140;3575;41000;41000;6769;8899;5604;14931;27658;24923;16708;26247;33257;53187;26749;43121;53265;47152;52458;49434;77622;78027;66982;209272;269258;227855;242121;248429;203011;218481;263232.46;244348;198994;195043;376543;277552;171346 -5401;'151;Eastern Europe;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;26000;26000;35000;35000;154300;146100;201000;238372;294971;270798;301300;369300;270900;312800;289600;260600;261300;279600;343800;389000;283000;177900;46001;93327;74900;83600;81279;68879;107410;138592;242483;282281;326897;453201;622091;786224;1010130;1119170;1554571;1258247;1504622;1797423;2132647;2397721;2349434;2475063;2341417;2957281;3135506;2958630;3036375;3177941;3047235;3080825 -5401;'151;Eastern Europe;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;1414;1414;1931;1931;8291;7914;11027;13436;16944;17281;21019;24467;16669;23728;20263;17901;20288;19577;39638;42916;36857;21731;10211;16091;7181;13036;9265;5293;8392;10947;24844;25281;31374;48158;71422;88341;127039;214533;292128;163313;309777;415348;365755;398268;394621;351184;381784;477550.1;479466;404150;366462;721798;659486;443686 -5401;'151;Eastern Europe;1876;Paper and paperboard;5510;Production;t;5200300;5396400;5643100;5995600;6618100;7269100;8102100;8559700;8738900;9525000;10023600;10536300;11138400;11620600;12282000;12872000;13255000;13308000;12169600;12852000;12998000;13086000;13741000;14086000;14330000;14763000;15012000;15426000;15127000;14394000;12724000;8955790;7698090;6710000;7540700;7033390;7811000;8058600;9354200;10601100;11327207;11705600;12519337;13535699;14004810;14692300;15307501;15100099;14779319;13649435;15741264;15843725;15982391;16734821;16938461;17855627;18251948;18908896;18932733;19488731;20098261;19643086;18684978 -5401;'151;Eastern Europe;1876;Paper and paperboard;5610;Import quantity;t;336500;314000;335000;360300;461700;553500;683500;807100;987000;1150920;1059800;1139900;1140600;1212400;1390600;1386700;1396000;1404300;1463400;1721000;1642700;1631100;1404400;1366900;1398000;1260300;1228400;1333000;1518200;1094900;996500;370068;795818;1004300;1171200;1944000;2799300;2791001;3107381;3630798;4036314;4427036;5284290;6129343;6975979;7585219;8475696;8655375;7872440;8759120;8760278;9046225;9246372;9504327;9424357;9535440;10006495;10325191;10202695;10445133;11463544;10187341;9580018 -5401;'151;Eastern Europe;1876;Paper and paperboard;5622;Import value;1000 USD;72140;69442;69237;79503;100980;118530;146362;170742;201869;240605;238125;277582;336139;502493;692344;650615;670670;681384;774023;983021;932286;967893;779450;762208;836939;711491;738574;947968;1103821;871144;924559;312136;693776;915179;1338111;2197560;2599523;2422589;2458491;2674259;2980519;3408883;4436494;5212223;5711719;6437957;8283114;9216743;8132335;8972560;9658823;9101893;9548082;9552517;8038348;8075811;8334619.05;9538840;8768837;8580303;10574589;11149949;9805422 -5401;'151;Eastern Europe;1876;Paper and paperboard;5910;Export quantity;t;264100;260200;271600;297700;385700;486200;577600;680600;860100;1014300;1019200;1079600;1146100;1204900;1195100;1366800;1491300;1594100;1486600;1558100;1538800;1535400;1586898;1574000;1595300;1679800;1710684;1604763;1565331;1516676;1653176;826044;1829709;1780700;2806100;2504434;2899000;3456758;3908217;4469304;4715439;5369501;5580102;6367685;6618829;6673603;6796597;6264202;6798161;7084986;6661985;7224866;7261231;7771414;7944547;8122892;8433260;8826393;8774506;9320420;9709901;8775645;7741150 -5401;'151;Eastern Europe;1876;Paper and paperboard;5922;Export value;1000 USD;48517;46492;46579;50963;60662;79990;91666;106786;129968;153675;160591;179520;212086;277881;315526;387174;433867;526041;546258;631195;569213;622819;629254;627696;638355;684959;731240;882222;887643;844406;939561;514665;876899;702732;1793827;1469421;1546948;1761343;1773601;2174844;2357898;2738879;3160742;3988959;4325491;4839662;5848583;6038725;5372096;6174693;6425412;6119608;6547130;6860372;5879140;5921170;6186505.77;7664027;6868211;6480165;8172480;8784788;6943934 -5401;'151;Eastern Europe;2042;Graphic papers;5510;Production;t;1741300;1883900;1946900;2070600;2217500;2402400;2570300;2682200;2717300;2809100;2953900;3101300;3221800;3274600;3327000;3410000;3540000;3559000;3420000;3419000;3462000;3463000;3698000;3784000;3844000;4002000;4092000;4255000;4423000;3997000;3464000;2553690;2301290;2423700;3011800;2912990;3380100;3247200;3916300;4022100;4380107;3900800;4226993;4578514;4645890;4797481;4625509;4452886;4320002;4196945;4062971;3938353;3891928;4321835;3993234;3918639;3959706;4123555;4045632;4084133;4175918;3930761;3562183 -5401;'151;Eastern Europe;2042;Graphic papers;5610;Import quantity;t;149300;155000;167100;169100;198200;210400;280800;287000;355000;444400;383000;447400;428200;498100;527900;488800;484400;489800;495900;579400;556000;588500;543600;506800;525200;457800;416700;524900;582800;409400;455200;165861;451821;576400;702709;1027000;1481300;1364187;1528926;1892194;1936330;2073630;2540860;2996030;3410279;3607352;4054721;4200539;3620695;3878334;3767180;3732975;3646173;3599078;3337572;3245058;3395413;3376616;3187746;2992129;3122404;2704391;2417394 -5401;'151;Eastern Europe;2042;Graphic papers;5622;Import value;1000 USD;22982;24727;25562;27489;32060;36339;50680;50330;61097;73939;67989;94666;112494;178439;222924;205730;211069;213163;234996;302281;281678;313931;276788;250768;265740;235026;223762;371217;439594;286891;379185;134012;319675;420204;716698;922309;1139590;1076206;1110522;1273774;1392095;1558325;2139215;2422554;2657664;2942330;3682419;4029726;3461342;3650804;3847303;3541123;3496587;3354938;2639116;2576111;2690931.75;3056062;2821618;2483715;2778806;2983304;2743637 -5401;'151;Eastern Europe;2042;Graphic papers;5910;Export quantity;t;171900;173900;184100;197100;237400;292100;329100;376800;400800;436300;437600;454500;475200;502100;453400;517400;546100;536400;507000;553600;534400;530200;509900;501800;526000;524300;521484;502863;492631;525476;481576;194980;790214;869800;1557875;1479934;1539100;1749445;1897653;1955183;2077790;2546170;2606990;3096190;3219606;3146482;2907681;2963951;3094526;2963627;2681412;2845625;2696879;2937106;2810006;2815231;2873402;2975969;3058471;2677173;2564526;2239359;2077830 -5401;'151;Eastern Europe;2042;Graphic papers;5922;Export value;1000 USD;27272;26904;26598;27960;33841;41127;47818;53644;55817;65627;69379;76749;89651;126452;122678;145222;157277;170292;176411;234789;221705;237291;227595;224413;237830;240749;240644;296214;289695;317796;370076;108416;335447;339368;1046335;885762;836772;882211;850929;977744;1118438;1353777;1430426;1985459;2119130;2248497;2486706;2714697;2299587;2284335;2310040;2266124;2221206;2306773;1832769;1869515;1961744.3;2394965;2224433;1735098;1962200;2222698;1802487 -5401;'151;Eastern Europe;1671;Newsprint;5510;Production;t;653100;706300;730900;818700;952900;1093300;1194900;1253600;1284000;1323300;1370200;1432600;1510700;1552800;1565000;1595000;1649000;1698000;1620000;1619000;1649000;1638000;1724000;1785000;1809000;1851000;1889000;1954000;1972000;1947000;1698000;1144100;1050700;1284700;1723800;1482800;1830800;1648900;2200200;2389300;2458600;2112100;2181000;2383057;2414211;2421100;2391288;2289712;2239972;2156982;2160853;2020874;1777195;1815276;1647719;1625877;1562705;1621264;1618607;1361015;1334756;1115591;993000 -5401;'151;Eastern Europe;1671;Newsprint;5610;Import quantity;t;92500;108100;110900;101700;117500;99300;99800;120000;165500;209300;180700;174000;149500;192100;209500;183900;199200;199600;192900;195300;219500;206000;188400;188500;178200;172900;172000;183900;226400;165300;167100;35010;112407;181000;154000;250800;305600;292671;305144;339528;355270;385660;413270;579260;629851;642090;632192;674441;611011;556843;574917;574389;567145;537662;512502;484215;460937;449062;398241;378621;399923;375146;276159 -5401;'151;Eastern Europe;1671;Newsprint;5622;Import value;1000 USD;12154;14030;14082;13315;15307;13169;13475;16075;21982;28049;25632;26226;24484;41866;56854;49627;56464;56341;57930;63379;72176;66024;53088;49450;44956;48800;54154;63944;108819;61900;88798;17977;43102;84192;86780;137548;161299;149707;162609;164267;189572;193140;223813;308551;354199;397296;449973;493000;430888;352338;407682;372087;368249;346428;275962;264219;243409.98;279105;236718;201169;214392;275525;194390 -5401;'151;Eastern Europe;1671;Newsprint;5910;Export quantity;t;129600;138100;146200;166200;193900;234100;248400;281700;305000;326100;301900;308800;320700;323400;297400;327100;352000;348100;371100;388000;387600;394900;389400;380700;403500;393100;390875;350038;336263;369376;279476;98325;623903;650500;1111300;983400;943500;1147980;1235493;1272944;1336860;1327320;1325260;1449310;1577580;1468771;1289311;1412541;1445983;1436703;1354984;1345716;1144623;1230321;1148261;1103813;1163480;1211891;1299392;1110867;965081;862476;756801 -5401;'151;Eastern Europe;1671;Newsprint;5922;Export value;1000 USD;17519;18909;18843;21525;25281;29860;31975;35408;37677;43463;41761;45548;55040;77655;73918;85766;98060;107549;115385;154815;147475;166162;162520;159300;169950;166777;166405;204042;204932;220209;235829;42766;230548;200545;667865;507649;377111;462875;444478;502122;577370;459013;478432;584657;738580;755783;707890;857040;695659;694287;795217;717435;610018;652093;464025;447166;484863.36;681658;580125;382370;425318;495337;360571 -5401;'151;Eastern Europe;1674;Printing and writing papers;5510;Production;t;1088200;1177600;1216000;1251900;1264600;1309100;1375400;1428600;1433300;1485800;1583700;1668700;1711100;1721800;1762000;1815000;1891000;1861000;1800000;1800000;1813000;1825000;1974000;1999000;2035000;2151000;2203000;2301000;2451000;2050000;1766000;1409590;1250590;1139000;1288000;1430190;1549300;1598300;1716100;1632800;1921507;1788700;2045993;2195457;2231679;2376381;2234221;2163174;2080030;2039963;1902118;1917479;2114733;2506559;2345515;2292762;2397001;2502291;2427025;2723118;2841162;2815170;2569183 -5401;'151;Eastern Europe;1674;Printing and writing papers;5610;Import quantity;t;56800;46900;56200;67400;80700;111100;181000;167000;189500;235100;202300;273400;278700;306000;318400;304900;285200;290200;303000;384100;336500;382500;355200;318300;347000;284900;244700;341000;356400;244100;288100;130851;339414;395400;548709;776200;1175700;1071516;1223782;1552666;1581060;1687970;2127590;2416770;2780428;2965262;3422529;3526098;3009684;3321491;3192263;3158586;3079028;3061416;2825070;2760843;2934476;2927554;2789505;2613508;2722481;2329245;2141235 -5401;'151;Eastern Europe;1674;Printing and writing papers;5622;Import value;1000 USD;10828;10697;11480;14174;16753;23170;37205;34255;39115;45890;42357;68440;88010;136573;166070;156103;154605;156822;177066;238902;209502;247907;223700;201318;220784;186226;169608;307273;330775;224991;290387;116035;276573;336012;629918;784761;978291;926499;947913;1109507;1202523;1365185;1915402;2114003;2303465;2545034;3232446;3536726;3030454;3298466;3439621;3169036;3128338;3008510;2363154;2311892;2447521.77;2776957;2584900;2282546;2564414;2707779;2549247 -5401;'151;Eastern Europe;1674;Printing and writing papers;5910;Export quantity;t;42300;35800;37900;30900;43500;58000;80700;95100;95800;110200;135700;145700;154500;178700;156000;190300;194100;188300;135900;165600;146800;135300;120500;121100;122500;131200;130609;152825;156368;156100;202100;96655;166311;219300;446575;496534;595600;601465;662160;682239;740930;1218850;1281730;1646880;1642026;1677711;1618370;1551410;1648543;1526924;1326428;1499909;1552256;1706785;1661745;1711418;1709922;1764078;1759079;1566306;1599445;1376883;1321029 -5401;'151;Eastern Europe;1674;Printing and writing papers;5922;Export value;1000 USD;9753;7995;7755;6435;8560;11267;15843;18236;18140;22164;27618;31201;34611;48797;48760;59456;59217;62743;61026;79974;74230;71129;65075;65113;67880;73972;74239;92172;84763;97587;134247;65650;104899;138823;378470;378113;459661;419336;406451;475622;541068;894764;951994;1400802;1380550;1492714;1778816;1857657;1603928;1590048;1514823;1548689;1611188;1654680;1368744;1422349;1476880.94;1713307;1644308;1352728;1536882;1727361;1441916 -5401;'151;Eastern Europe;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;227700;303500;274200;351067;248400;433431;426419;320893;378327;340333;360062;347236;148345;370567;359591;488914;100456;93390;82051;94373;98749;83068;94062;95971;97444;99053 -5401;'151;Eastern Europe;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;267772;308056;375822;361340;337420;388490;459250;458471;492666;581746;667607;648072;808162;620525;618692;650211;649777;589606;597919;559695;519325;501226;491764;487360;465098;425880 -5401;'151;Eastern Europe;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;185289;200350;217927;225435;216623;279038;357162;364203;388107;481080;603612;559861;678569;519986;481504;510443;508409;390532;396591;368140.8;393102;377087;322784;324470;385144;409381 -5401;'151;Eastern Europe;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12055;14581;21413;30960;32720;86300;89600;98881;98717;75155;83493;80997;62839;46877;63907;59063;53319;63206;64311;69519;74325;63867;39478;36244;45118;146144 -5401;'151;Eastern Europe;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8207;10477;13707;19806;18633;43708;53560;62008;72541;55028;65705;60443;39619;31613;42281;37550;35155;32515;35495;44050.27;49315;45317;27202;30805;46075;86262 -5401;'151;Eastern Europe;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1168600;1094100;1048400;1178670;1346000;1587231;1744419;1871793;1878827;1818191;1710766;1688910;1852510;1494591;1508851;1562552;2293583;2112508;2057441;2155798;2265005;2196861;2416384;2519134;2483402;2235190 -5401;'151;Eastern Europe;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;182972;215848;241122;344030;433080;579310;622850;836873;831460;969971;987009;869858;888095;957340;972285;925308;946057;903540;839684;973181;954544;956613;853700;936475;833870;745372 -5401;'151;Eastern Europe;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;157645;167233;199953;306452;361085;482337;541479;591906;702765;941324;962020;878263;914437;1092410;1056742;989756;958280;790549;747260;841129.19;953641;927970;827520;929747;1001705;929723 -5401;'151;Eastern Europe;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;564855;619711;624813;677380;1160890;1172650;1526150;1511564;1544170;1482093;1413162;1536906;1426244;1246782;1401489;1409458;1606561;1543973;1592091;1588450;1628273;1638540;1475197;1487333;1269324;1125654 -5401;'151;Eastern Europe;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;382159;367003;428794;489785;853332;881620;1304960;1281963;1379580;1665175;1693423;1492185;1488280;1417589;1440605;1443156;1544874;1269951;1320469;1365014.5;1575564;1512864;1247362;1408430;1571218;1254758 -5401;'151;Eastern Europe;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;202000;318500;310200;391770;194300;25331;24619;38993;119227;75697;92346;43884;39108;36960;49037;63267;112520;139617;153270;146830;138537;147096;212672;226057;234324;234940 -5401;'151;Eastern Europe;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;620772;699878;935722;875690;917470;1159790;1334670;1485084;1641136;1870812;1871482;1491754;1625234;1614398;1567609;1503509;1465582;1331924;1323240;1401600;1453685;1331666;1268044;1298646;1030277;969983 -5401;'151;Eastern Europe;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;583565;580330;691627;670636;787477;1154027;1215362;1347356;1454162;1810042;1971094;1592330;1705460;1827225;1630790;1628139;1541821;1182073;1168041;1238251.79;1430214;1279843;1132242;1310197;1320930;1210143 -5401;'151;Eastern Europe;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24555;27868;36013;32590;25240;22780;31130;31581;34824;61122;54755;30640;37841;32769;34513;83735;46905;54566;55016;51953;61480;56672;51631;75868;62441;49231 -5401;'151;Eastern Europe;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28970;28971;33121;31477;22799;26666;42282;36579;40593;58613;98529;51300;62149;65621;65803;130482;74651;66278;66385;67816.17;88428;86127;78164;97647;110068;100896 -5401;'151;Eastern Europe;1675;Other paper and paperboard;5510;Production;t;3459000;3512500;3696200;3925000;4400600;4866700;5531800;5877500;6021600;6715900;7069700;7435000;7916600;8346000;8955000;9462000;9715000;9749000;8749600;9433000;9536000;9623000;10043000;10302000;10486000;10761000;10920000;11171000;10704000;10397000;9260000;6402100;5396800;4286300;4528900;4120400;4430900;4811400;5437900;6579000;6947100;7804800;8292344;8957185;9358920;9894819;10681992;10647213;10459317;9452490;11678293;11905372;12090463;12412986;12945227;13936988;14292242;14785341;14887101;15404598;15922343;15712325;15122795 -5401;'151;Eastern Europe;1675;Other paper and paperboard;5610;Import quantity;t;187200;159000;167900;191200;263500;343100;402700;520100;632000;706520;676800;692500;712400;714300;862700;897900;911600;914500;967500;1141600;1086700;1042600;860800;860100;872800;802500;811700;808100;935400;685500;541300;204207;343997;427900;468491;917000;1318000;1426814;1578455;1738604;2099984;2353406;2743430;3133313;3565700;3977867;4420975;4454836;4251745;4880786;4993098;5313250;5600199;5905249;6086785;6290382;6611082;6948575;7014949;7453004;8341140;7482950;7162624 -5401;'151;Eastern Europe;1675;Other paper and paperboard;5622;Import value;1000 USD;49158;44715;43675;52014;68920;82191;95682;120412;140772;166666;170136;182916;223645;324054;469420;444885;459601;468221;539027;680740;650608;653962;502662;511440;571199;476465;514812;576751;664227;584253;545374;178124;374101;494975;621413;1275251;1459933;1346383;1347969;1400485;1588424;1850558;2297279;2789669;3054055;3495627;4600695;5187017;4670993;5321756;5811520;5560770;6051495;6197579;5399232;5499700;5643687.3;6482778;5947219;6096588;7795783;8166645;7061785 -5401;'151;Eastern Europe;1675;Other paper and paperboard;5910;Export quantity;t;92200;86300;87500;100600;148300;194100;248500;303800;459300;578000;581600;625100;670900;702800;741700;849400;945200;1057700;979600;1004500;1004400;1005200;1076998;1072200;1069300;1155500;1189200;1101900;1072700;991200;1171600;631064;1039495;910900;1248225;1024500;1359900;1707313;2010564;2514121;2637649;2823331;2973112;3271495;3399223;3527121;3888916;3300251;3703635;4121359;3980573;4379241;4564352;4834308;5134541;5307661;5559858;5850424;5716035;6643247;7145375;6536286;5663320 -5401;'151;Eastern Europe;1675;Other paper and paperboard;5922;Export value;1000 USD;21245;19588;19981;23003;26821;38863;43848;53142;74151;88048;91212;102771;122435;151429;192848;241952;276590;355749;369847;396406;347508;385528;401659;403283;400525;444210;490596;586008;597948;526610;569485;406249;541452;363364;747492;583659;710176;879132;922672;1197100;1239460;1385102;1730316;2003500;2206361;2591165;3361877;3324028;3072509;3890358;4115372;3853484;4325924;4553599;4046371;4051655;4224761.47;5269062;4643778;4745067;6210280;6562090;5141447 -5401;'151;Eastern Europe;1676;Household and sanitary papers;5510;Production;t;;9000;9000;9000;13200;13100;33800;34400;42800;42100;48300;61600;73800;55000;127000;124000;147000;165000;237000;241000;209000;216000;226000;235000;244000;250000;252000;406000;471000;419000;435000;375300;335700;359100;410200;453400;513400;503800;493400;513700;619900;674400;660200;708100;817100;846700;885214;891894;940884;1013387;1095730;1139532;1123521;1301129;1279661;1426752;1499646;1625713;1627841;1696541;1679194;1831800;1820433 -5401;'151;Eastern Europe;1676;Household and sanitary papers;5610;Import quantity;t;300;400;300;200;600;1700;2400;2000;3000;68520;11600;6900;7900;11200;16600;13800;17200;15700;16300;17300;10800;11100;9600;9100;10800;11200;12900;16300;18300;18300;21500;19500;6800;12400;23400;89300;179300;54531;59327;61028;93950;99020;109980;146520;148490;152520;224132;241213;202280;240194;229684;275937;288228;315446;277015;342503;337164;271009;285558;347136;338195;320026;330733 -5401;'151;Eastern Europe;1676;Household and sanitary papers;5622;Import value;1000 USD;312;387;248;300;425;900;1088;1111;1252;14776;7314;5159;6293;8926;18249;13853;18504;17005;18510;20689;11736;11111;7851;7546;8911;10127;13672;18936;21636;21636;21237;19237;5501;12684;22713;203247;290545;48559;53428;46277;80421;72741;97819;154029;167868;194307;407703;454992;322667;433940;354411;372362;415832;449509;338029;389629;386224.42;351955;348166;394241;408678;497611;482613 -5401;'151;Eastern Europe;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;4800;30400;30700;44400;130600;83667;82283;82679;73920;99250;92980;85270;78075;76259;93727;83434;99060;218625;119040;132903;181465;204219;201491;245361;248682;241174;210999;248705;220009;188435;147462 -5401;'151;Eastern Europe;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;3986;20946;25604;34029;94827;64030;56850;54516;46215;64492;71124;70270;63754;66595;103201;99744;110177;441713;140145;158484;210380;236170;201044;236785;233810.59;268021;219597;239056;226785;268767;199525 -5401;'151;Eastern Europe;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3700700;3954000;5118300;5191900;5659900;6186037;6666861;7060142;7383219;8046361;8103380;8044832;7864173;9700535;10021314;10380505;10669748;11279144;12064331;12433651;12782784;12899975;13284694;13851692;13527846;13045946 -5401;'151;Eastern Europe;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1081141;1257756;1402634;1677112;1844014;2201288;2671811;3140973;3569657;3928901;3933688;3778275;4391383;4571898;4801816;5100249;5352969;5560251;5693080;6076000;6486725;6546661;6906560;7791714;6952009;6674783 -5401;'151;Eastern Europe;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;897411;918302;989257;1222104;1294235;1675508;2127129;2444214;2847557;3653709;4091887;3703302;4192601;4862636;4527458;5002588;5064706;4434557;4488723;4738803.52;5592555;5094396;5150216;6771147;7071350;6021986 -5401;'151;Eastern Europe;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1449373;1757545;2213919;2333466;2419108;2515849;2997452;3166075;3272566;3629623;3043189;3505903;3803711;3788532;4157965;4299043;4547392;4851133;4967846;5218622;5531947;5439146;6320132;6843961;6262022;5444796 -5401;'151;Eastern Europe;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;694235;773715;1010744;1058147;1169935;1397381;1734882;2034150;2326565;3079995;3026645;2782843;3263325;3795943;3458984;3864589;4087069;3646038;3610749;3796575.22;4806663;4238908;4281846;5709783;6027892;4663487 -5401;'151;Eastern Europe;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;316000;329700;1059000;1142500;1212600;1340700;1451700;1520900;1618500;1702000;1969000;2106000;2164000;2208000;1522600;2014000;1886000;2167000;2211000;2227000;2240000;2231000;2261000;6486000;6746000;6635000;5970000;4235000;3564000;3058000;3208000;2999400;3234900;;;;;;;;;;;;;;;;;;;;;;;;;; -5401;'151;Eastern Europe;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;5400;7500;6500;4000;9500;27400;40800;35000;40000;149000;218900;170400;202500;209900;254800;256700;250900;219800;218000;234700;496900;482500;449400;366800;419900;393000;374900;362000;419300;358400;249800;88915;163986;225900;305632;502800;767600;;;;;;;;;;;;;;;;;;;;;;;;;; -5401;'151;Eastern Europe;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;1563;1938;1237;1500;2125;4501;5438;5556;5978;27107;41514;32454;41359;59080;82605;74796;80220;72100;77800;86217;262833;283258;237598;205314;219396;204303;197282;229465;283465;239155;234407;81026;133279;173435;317353;456959;591516;;;;;;;;;;;;;;;;;;;;;;;;;; -5401;'151;Eastern Europe;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;24800;23200;24800;20000;17600;12100;12300;15000;66200;96700;97500;87800;306200;365200;380100;477900;548300;646900;580600;594300;554100;610000;671000;634300;613700;650400;681000;585100;609200;576000;757100;586390;1025733;760900;791145;834900;1127400;;;;;;;;;;;;;;;;;;;;;;;;;; -5401;'151;Eastern Europe;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;5167;4651;4651;4995;4134;3272;3272;3472;10809;16028;16873;16439;52189;76990;95917;109867;134049;172174;179806;196479;187648;224755;248168;235865;238496;249519;296118;281880;326801;262432;334972;381536;531959;274041;484999;464709;520364;;;;;;;;;;;;;;;;;;;;;;;;;; -5401;'151;Eastern Europe;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1829800;1864900;2183310;2435260;2923320;4095941;4406920;4721833;4797308;5204662;5360545;5393213;5025410;5934327;6439599;7131302;7495426;7685544;8206873;8158118;8699870;8776508;9079476;9337175;9016177;8783945 -5401;'151;Eastern Europe;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;393449;461177;519939;715323;831714;1077449;1306243;1565443;1693509;1853735;1825511;1821326;2052384;2117737;2306861;2497857;2561730;2786598;2831268;3056332;3340133;3401238;3502458;4148228;3669618;3698843 -5401;'151;Eastern Europe;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;169114;181514;208957;293771;314007;437267;554403;627967;788234;1077485;1131366;776986;1097760;1444525;1346481;1541614;1559687;1442263;1451485;1613209.27;2056702;1695392;1562283;2498003;2741094;2088836 -5401;'151;Eastern Europe;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;725342;904763;1239454;1264390;1438540;1451128;1720488;1772754;1822842;1994471;1445087;1916522;2093674;2170164;2355905;2561758;2618716;2791867;2780158;2973035;3163123;3019026;3707990;4124998;4020978;3573531 -5401;'151;Eastern Europe;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;250854;263800;413422;403939;482277;538290;687175;709606;822798;1100535;843018;873453;1107220;1380105;1279891;1495531;1508532;1372099;1335158;1557864.57;2008339;1533489;1633970;2492445;2827663;2009761 -5401;'151;Eastern Europe;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;364600;408700;525180;577020;562920;733241;807020;902033;951708;1035013;1040223;1243193;1375077;2090536;1928382;1600435;1324473;1577704;1741385;1999316;1796985;1756076;2000261;2010614;1935768;1745185 -5401;'151;Eastern Europe;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;411947;428455;468499;503203;633001;704177;903050;1029519;1275828;1390021;1412933;1208949;1483773;1611474;1674504;1746139;1731863;1720857;1798519;1872130;1938848;2000788;2129415;2310511;2074191;1841114 -5401;'151;Eastern Europe;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;540114;522567;543728;601960;730483;903627;1203040;1396156;1579064;1939154;2226224;2036713;2236939;2534299;2411582;2626681;2568473;2157606;2196301;2191007.27;2413224;2344163;2504820;2913237;2937917;2696338 -5401;'151;Eastern Europe;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;230762;293828;258082;301304;247008;241151;351820;463679;543680;636467;594488;670340;668814;635377;684052;648646;654535;676707;661369;724075;775442;798123;857179;941011;755054;556708 -5401;'151;Eastern Europe;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;169333;245474;268110;319074;332509;364746;513029;736722;872478;1110227;1230871;1183322;1235293;1260854;1126255;1334994;1383374;1164296;1139641;1071378.99;1228258;1161203;1215608;1431306;1317909;1097476 -5401;'151;Eastern Europe;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1272300;1292400;1874710;1637420;2018460;1212655;1310621;1303776;1299603;1428789;1377419;1235937;1224847;1257899;1395285;1441419;1676549;1793860;1857207;2036337;2011595;2082741;1903139;2145171;2221398;2176639 -5401;'151;Eastern Europe;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;192687;225443;288420;315427;334003;335531;329758;420073;426657;504576;528720;541220;610781;580251;610776;625358;790880;798073;797538;871653;926159;888552;1003848;1062727;961439;943359 -5401;'151;Eastern Europe;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;151969;155861;184836;271754;226899;282854;301110;347904;382042;515206;620996;628379;657143;706829;634713;695444;780749;708276;705901;801569.44;970132;930379;964006;1201272;1223089;1101005 -5401;'151;Eastern Europe;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;466069;523246;628383;594532;672650;784770;851644;905355;875834;945865;978571;876328;994846;930612;1064940;996792;1197373;1309686;1437524;1393939;1449974;1471449;1630820;1591517;1354444;1237635 -5401;'151;Eastern Europe;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;264779;253923;302495;287747;326741;476193;505143;575450;611286;828991;934795;694981;882912;1123642;1022208;986610;1154907;1076234;1095777;1113170.17;1497469;1475157;1382477;1693978;1811446;1516738 -5401;'151;Eastern Europe;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;234000;388000;535100;542200;155200;144200;142300;132500;334600;377897;325193;172489;238839;417773;258048;207349;173300;222036;258866;239880;274334;284650;301818;358732;354503;340177 -5401;'151;Eastern Europe;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83058;142681;125776;143159;45296;84131;132760;125938;173663;180569;166524;206780;244445;262436;209675;230895;268496;254723;265755;275885;281585;256083;270839;270248;246761;191467 -5401;'151;Eastern Europe;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36214;58360;51736;54619;22846;51760;68576;72187;98217;121864;113301;261224;200759;176983;134682;138849;155797;126412;135036;133017.54;152497;124462;119107;158635;169250;135807 -5401;'151;Eastern Europe;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27200;35708;88000;173240;60910;38800;73500;24287;30210;52820;25043;42713;46377;52379;53068;91847;76768;72873;88795;127573;143408;150548;124143;186435;131546;76922 -5401;'151;Eastern Europe;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9269;10518;26717;47387;28408;18152;29535;12372;20003;40242;17961;31087;37900;31342;30630;47454;40256;33409;40173;54161.49;72597;69059;49791;92054;70874;39512 -5401;'151;Eastern Europe;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;243600;252200;420200;426000;465200;425100;395600;427100;478100;552000;472000;414000;451000;447000;407000;581000;657000;432000;418000;452000;473000;489000;494000;3888000;3487000;3343000;2855000;1791800;1497100;869200;910700;667600;682600;606900;990500;947000;1135300;1470500;1446107;1582224;1481678;1664900;1750417;1651939;1473601;574930;882028;744526;586437;442109;386422;445905;358945;376844;359285;423363;391457;352679;256416 -5401;'151;Eastern Europe;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;16500;20100;21600;20900;27900;50600;65900;157500;201500;195300;180300;255500;268800;228600;235100;232700;231700;270700;282400;293400;579000;549000;401800;484200;442100;398300;423900;429800;497800;308800;270000;95380;172896;188700;138059;317200;368100;291142;261372;274942;328922;410372;432162;314982;276237;255690;267942;279935;271190;249209;191516;235497;211722;236834;249519;254799;197918;190841;182730;199308;211231;210915;157108 -5401;'151;Eastern Europe;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;5529;6480;6564;7254;8958;12595;14218;31381;43582;43968;42933;60878;82067;110194;110730;111798;102790;121916;140049;172634;376039;359593;257213;298580;342892;262035;303858;328350;359126;323462;289730;77715;234892;307937;278832;607488;574372;400413;376239;364951;285899;483582;523952;508511;441973;453763;539283;640138;645024;695215;594473;660950;633075;683364;626646;621348;518659.36;538268;504657;552131;615958;597684;557186 -5401;'151;Eastern Europe;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;2200;2000;2200;1700;1600;1600;1700;1500;4300;39100;38100;38100;345700;332600;344600;350000;362700;366100;351500;367400;409300;351400;360898;380200;402400;456000;481200;486800;433500;385200;396300;26300;8700;118500;425580;138400;98800;174273;170736;217523;230263;304973;364283;188773;155073;178296;165566;173628;98672;99023;73001;88373;83844;82697;81917;94454;92554;77303;65890;74410;81405;85829;71062 -5401;'151;Eastern Europe;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;250;225;225;241;220;279;278;179;767;2753;3226;2274;64149;71689;87331;119585;124141;146375;160241;169427;126860;115673;121291;128018;121841;155891;167478;274128;240147;233178;220128;10128;5386;67819;236296;81320;93644;120867;92107;131840;135098;150675;261811;198348;108457;198005;178681;197639;179489;185320;179284;236016;250955;230360;199289;204121;194375.66;194378;185273;224165;273712;265431;278435 -5401;'151;Eastern Europe;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3828532.06;4596604;4882358;5072416;6656399;6253728;5741318 -5401;'151;Eastern Europe;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14537916.79;16127787;16058859;16825290;21681971;21697477;20168768 -5401;'151;Eastern Europe;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;148798.82;200004;219895;255873;364893;287465;226393 -5401;'151;Eastern Europe;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;460238.29;533816;565457;632956;825906;732330;519995 -5401;'151;Eastern Europe;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87748.73;121151;131698;175828;263939;196117;152667 -5401;'151;Eastern Europe;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;250630.52;295147;316063;376974;533731;408040;276772 -5401;'151;Eastern Europe;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61050.08;78853;88197;80045;100954;91348;73726 -5401;'151;Eastern Europe;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;209607.77;238669;249394;255982;292175;324290;243223 -5401;'151;Eastern Europe;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;304643.32;376369;393095;381354;594559;696865;620273 -5401;'151;Eastern Europe;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;933600.45;1176064;1121317;1183178;1884089;2385315;1836290 -5401;'151;Eastern Europe;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106030.95;127596;145777;156269;190155;197047;182584 -5401;'151;Eastern Europe;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;187124.38;232296;229279;242642;315476;294852;283257 -5401;'151;Eastern Europe;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;638981.36;783796;799800;779648;945147;828835;750322 -5401;'151;Eastern Europe;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2441271.77;2694721;2746674;2756990;3534660;3315776;2978728 -5401;'151;Eastern Europe;1636;Glue-laminated timber (glulam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;349154;290695 -5401;'151;Eastern Europe;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48583;52342 -5401;'151;Eastern Europe;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56811;52371 -5401;'151;Eastern Europe;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;238290;171585 -5401;'151;Eastern Europe;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;270178;140790 -5401;'151;Eastern Europe;1688;Cross-laminated timber (CLT or X-lam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83032;87258 -5401;'151;Eastern Europe;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30977;31154 -5401;'151;Eastern Europe;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30153;31044 -5401;'151;Eastern Europe;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23871;35185 -5401;'151;Eastern Europe;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24956;29660 -5401;'151;Eastern Europe;1684;I-beams (I-joists);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;285233;278356 -5401;'151;Eastern Europe;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4539;2578 -5401;'151;Eastern Europe;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5936;2891 -5401;'151;Eastern Europe;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99363;51218 -5401;'151;Eastern Europe;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90808;67210 -5401;'151;Eastern Europe;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2328662.33;2726938;2917527;3076045;3993700;3741500;3521883 -5401;'151;Eastern Europe;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9294099.97;10094804;10053127;10526384;13150648;13057545;12942624 -5401;'151;Eastern Europe;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56511.63;87079;57570;66012;103111;58220;51987 -5401;'151;Eastern Europe;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;246750.89;256524;225858;239646;372454;402208;353803 -5401;'151;Eastern Europe;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;244903.65;294822;348694;357215;464834;443796;387876 -5401;'151;Eastern Europe;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;974831.04;1139562;1117147;1243494;1598738;1509451;1254071 -5401;'151;Eastern Europe;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5265378.86;6045597;5905729;5968023;6874609;6925803;6649857 -5401;'151;Eastern Europe;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4816814.17;5520863;5605585;5871325;6908754;6997327;6964256 -5401;'151;Eastern Europe;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74805.02;78917;72312;77072;109233;113162;87442 -5401;'151;Eastern Europe;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14192.5;14313;15946;17597;22176;30483;24122 -5401;'151;Eastern Europe;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;970372.66;1127891;1074845;1069412;1220976;1286676;1092242 -5401;'151;Eastern Europe;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;602596.61;692900;692053;703514;837084;771486;583267 -5401;'151;Eastern Europe;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;781965.86;910312;835774;837292;934071;992620;1029653 -5401;'151;Eastern Europe;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;891802.7;983169;1032500;1094467;1114441;1277989;1435246 -5401;'151;Eastern Europe;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2049791.58;2253042;2280268;2311659;2687400;2737754;2592552 -5401;'151;Eastern Europe;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2072411.91;2356386;2376525;2527314;3096838;3239804;3234933 -5401;'151;Eastern Europe;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1388443.75;1675435;1642530;1672588;1922929;1795591;1847968 -5401;'151;Eastern Europe;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1235810.46;1474095;1488561;1528433;1838215;1677565;1686688 -5402;'154;Northern Europe;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38734939.53;42550517;41099994;39034194;47190513;51730418;44740366 -5402;'154;Northern Europe;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47807605.66;52883593;49969869;47109687;59902458;61209861;53424048 -5402;'154;Northern Europe;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;1227835;1187704;1281527;1575140;1641897;1586566;1660805;2007570;2118246;2368908;2462327;2746972;4047010;5727448;4785627;5456744;5899394;6137195;8039595;8651557;8207848;7864313;7372975;7778483;7618178;9502621;12193547;15169691;15032994;15473747;13811896;14103961;11911960;14066917;16385961;15512811;16216495;16039057;15481258;15502147;15154712;14842443;17701937;20305365;20834786;22181041;27173447;25034741;17410662;20342615;21906132;20121449;20902143;22010661;20145493;18776723;19593821.56;22440552;21074593;19380974;24186905;25727434;21742771 -5402;'154;Northern Europe;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;1503068;1450046;1544492;1754072;1815831;1824086;1834945;2535739;2851437;3255018;3331810;3805686;5278395;7511581;6736080;7316958;7714471;8776537;11382352;13247773;12030052;10726736;10505141;11598304;11337632;13455660;17180708;20165539;20957754;23106559;21180054;21640858;18567939;22553013;29125245;26669809;26204580;27347838;26486835;26777102;24204550;25107652;29505350;33708022;32939546;36911866;42029905;41540371;32096957;36939561;40884048;36860906;38638618;38027881;33079649;31769570;34284497.61;38454828;35806590;33084187;43174676;43762891;37570825 -5402;'154;Northern Europe;1861;Roundwood;5516;Production;m3;110456000;107455000;102839000;108695000;108960000;104600000;109140000;104864000;110910000;119811000;122970016;111950016;114627016;118238016;104013000;101850008;94525000;100356000;113831000;111823000;111003016;106978008;108875000;111164008;111030000;111811000;114228008;119453008;124487016;117912800;107497500;120196499;128141799;138380398;151118800;140101300;150593501;155113280;158744600;169550820;165692140;171008157;172158405;169182500;199238361;163211318;182886259;164828041;151444990;177282047;178358428;176999550;183979305;189946791;191583802;195929067;199274284;204873630;201739141;197181980;208553970;206643034;200977472 -5402;'154;Northern Europe;1861;Roundwood;5616;Import quantity;m3;5525500;4843300;4511900;5791500;6731200;6575000;6127200;6351800;6407500;7948000;7432100;5454300;7680400;8425100;10044800;9191400;8294751;6337200;7347100;8386800;10018300;8559000;9393800;11637500;11156500;12172014;14939692;15480412;14638134;8787645;10823427;11944388;11542117;16971945;21738064;15623714;19286814;24025881;25744409;26801143;26375186;27930142;28980460;29939887;33243485;28718086;28542394;25240989;12556336;17393559;17304948;16484513;18553990;18639127;17033607;17193725;15424698;20878156;20252206;18971060;18172609;15391513;14884352 -5402;'154;Northern Europe;1861;Roundwood;5622;Import value;1000 USD;114172;100177;98543;124249;145018;141820;122847;121634;120163;149168;146434;121178;208093;280907;387688;352586;322479;235272;305638;403371;476861;367313;331816;389799;387340;524379;735209;789958;763623;515866;553875;684212;536236;847028;1365170;953474;1055836;1249646;1221497;1155991;1089584;1203545;1510899;1797853;1983944;1831148;2660823;2581232;965022;1354482;1510767;1246874;1444483;1426989;1057026;984452;974889.7;1643717;1502347;1301875;1436582;1627997;1577182 -5402;'154;Northern Europe;1861;Roundwood;5916;Export quantity;m3;7209900;5057900;3767800;3446800;3349600;3155200;3676300;3755700;4622900;5855700;5000700;3464200;3807600;2899400;3114600;2926200;2828720;2275200;3296500;4079200;5224300;4241600;3528200;3789700;3863500;3910768;4404469;3763146;3621364;2344091;2695835;4119828;5492813;8731143;10909843;8098143;10040943;12320643;12025596;13686992;12291459;12535656;12685613;11937084;13683463;12704279;15020296;12508062;9575302;13847443;14466803;13511601;15510076;15512023;15022642;14565687;14193067;15290446;15748831;14520375;15109896;17744445;16693262 -5402;'154;Northern Europe;1861;Roundwood;5922;Export value;1000 USD;114057;83555;60487;61022;59546;59299;60540;55742;64680;85917;79730;59745;79495;94965;131054;120203;136468;117436;165305;246095;296170;203201;160176;167094;172429;197995;247738;208613;213304;198478;175636;264599;268781;388125;628742;496206;488935;565342;544242;524409;429940;455571;532560;611926;736096;705662;1277000;1098834;619356;974907;1201601;1003693;1203924;1209649;928926;899511;1016077.48;1260366;1251435;1063877;1365294;1812366;1698319 -5402;'154;Northern Europe;1862;Roundwood, coniferous;5516;Production;m3;90396000;85504000;81731000;85736000;84724000;81133000;85010000;82276000;87965000;97329000;100609016;91320016;94613016;99079016;86537000;84289008;78921000;83288000;96613000;93337000;92331016;89141008;90192000;92361008;92682000;92762000;95089008;99705008;103332016;99644799;90921200;101115399;108302299;117515099;127726600;117946900;127069901;129356866;132507800;142612429;138489070;142898138;142850724;141125070;173749441;136422736;155152279;138044718;125185118;146044005;147675828;143736628;150265737;156462518;158221007;161855304;161225498;164652277;161288888;159109175;168803748;167179574;160235499 -5402;'154;Northern Europe;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8546112;11816776;11482075;10051898;9687505;9624197;9992785 -5402;'154;Northern Europe;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;570550.81;972248;904038;748568;855399;916272;937435 -5402;'154;Northern Europe;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10014609;10389754;10283084;9924541;10368946;11694191;11217440 -5402;'154;Northern Europe;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;713710.62;840121;798850;716326;926027;1057109;1028274 -5402;'154;Northern Europe;1863;Roundwood, non-coniferous;5516;Production;m3;20060000;21951000;21108000;22959000;24236000;23467000;24130000;22588000;22945000;22482000;22361000;20630000;20014000;19159000;17476000;17561000;15604000;17068000;17218000;18486000;18672000;17837000;18683000;18803000;18348000;19049000;19139000;19748000;21155000;18268001;16576300;19081100;19839500;20865299;23392200;22154400;23523600;25756414;26236800;26938391;27203070;28110019;29307681;28057430;25488920;26788582;27733980;26783323;26259872;31238042;30682600;33262922;33713568;33484273;33362795;34073763;38048786;40221353;40450253;38072805;39750222;39463460;40741973 -5402;'154;Northern Europe;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6878586;9061380;8770131;8919162;8485104;5767316;4891567 -5402;'154;Northern Europe;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;404338.89;671469;598309;553307;581183;711725;639747 -5402;'154;Northern Europe;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4178458;4900692;5465747;4595834;4740950;6050254;5475822 -5402;'154;Northern Europe;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;302366.87;420245;452585;347551;439267;755257;670045 -5402;'154;Northern Europe;1864;Wood fuel;5516;Production;m3;20437000;19865000;18251000;16608000;16417000;14989000;14499000;13964000;13065000;12345000;11673000;11049000;10184000;9825000;9404000;9098000;8537000;8606000;9204000;9503000;9077000;9050000;8977000;8876000;8911000;8896000;8962000;9003000;9799000;8383600;8417700;11255300;13174300;12606900;12094600;13650400;14443300;16077817;15937500;16464457;17381000;17334368;17780744;17174653;16958317;18498533;18268023;18421594;22081812;24425741;23270460;24863096;26654538;26603527;27470333;26958269;29272831;28398323;28367330;29325891;29759691;30045810;32455056 -5402;'154;Northern Europe;1864;Wood fuel;5616;Import quantity;m3;77700;67300;105600;67700;116600;120300;211700;223800;302500;153700;197800;198500;200500;195100;398300;258100;238500;103100;85900;111900;86200;103400;105400;82300;69900;87200;99700;70100;65600;49200;82300;70727;119296;89794;99650;150300;232900;356000;433658;468209;441103;859622;1443434;915460;799809;840701;720510;903915;1857192;1168642;1533483;1050237;928973;789339;649922;602521;518563;703972;909283;911572;776708;1084823;1365574 -5402;'154;Northern Europe;1864;Wood fuel;5622;Import value;1000 USD;397;460;651;509;711;950;1728;1911;2568;1438;1805;1854;2006;2000;6846;5519;2892;1105;1486;1753;1094;1965;1956;1695;1646;2240;2803;2168;1945;1845;2842;2840;4823;5695;4436;6683;9680;9908;11450;10774;12356;26969;56614;39174;36367;49913;54364;73538;100053;79990;119545;80835;72321;67930;56042;54903;54182.9;95617;113007;103575;105547;218268;223023 -5402;'154;Northern Europe;1864;Wood fuel;5916;Export quantity;m3;114500;136300;168000;94500;85100;92400;98800;157700;161200;152500;108900;106900;97200;18300;7300;3900;4200;6900;14400;28700;19300;61900;96700;92000;33200;27800;47600;44100;21200;14200;10700;41560;51927;290800;361300;673500;1205100;1791000;1076775;616810;519188;636277;1314396;764920;778023;742837;826259;875819;1509600;1958781;1583856;1311556;1500792;1213664;1699965;1464993;966310;1055694;1083497;1242212;1287938;1522487;1738038 -5402;'154;Northern Europe;1864;Wood fuel;5922;Export value;1000 USD;351;740;987;768;685;721;680;957;1192;1264;1042;1132;1225;430;231;130;158;220;568;1250;852;2799;2924;2764;697;1068;1235;2143;1139;1018;896;1873;2145;5920;8255;12492;31725;52408;27128;11158;11326;17947;39139;28526;33458;41509;49946;62292;79372;120236;126054;85957;103364;93327;87931;85319;84812.72;122988;121353;129944;190550;269705;270984 -5402;'154;Northern Europe;1627;Wood fuel, coniferous;5516;Production;m3;6886000;6110000;5535000;4543000;4624000;4008000;3746000;3593000;3423000;3293000;3049000;2852000;2582000;2501000;2368000;2310000;2146000;2323000;2871000;3049000;3145000;3155000;3154000;3105000;3150000;3135000;3158000;3210000;3235000;3403600;3391400;4930400;5810000;5540300;5170100;6132200;6186900;6632473;7464000;7408316;8446920;8627409;8655393;8739053;9658980;9893117;8833567;8192639;10194218;11431208;11004658;11680945;12201879;12448687;13412789;12648827;13131492;12550772;12737595;13331610;13394572;13563347;15081063 -5402;'154;Northern Europe;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;273318;336543;447680;531494;307825;299576;756686 -5402;'154;Northern Europe;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23034.78;44897;54463;50495;37735;41714;72515 -5402;'154;Northern Europe;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;430372;432295;379286;520030;413887;468434;727412 -5402;'154;Northern Europe;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26124.15;32958;25229;29341;34694;45540;64476 -5402;'154;Northern Europe;1628;Wood fuel, non-coniferous;5516;Production;m3;13551000;13755000;12716000;12065000;11793000;10981000;10753000;10371000;9642000;9052000;8624000;8197000;7602000;7324000;7036000;6788000;6391000;6283000;6333000;6454000;5932000;5895000;5823000;5771000;5761000;5761000;5804000;5793000;6564000;4980000;5026300;6324900;7364300;7066600;6924500;7518200;8256400;9445344;8473500;9056141;8934080;8706959;9125351;8435600;7299337;8605416;9434456;10228955;11887594;12994533;12265802;13182151;14452659;14154840;14057544;14309442;16141339;15847551;15629735;15994281;16365119;16482463;17373993 -5402;'154;Northern Europe;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;245245;367429;461603;380078;468883;785247;608888 -5402;'154;Northern Europe;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31148.11;50720;58544;53080;67812;176554;150508 -5402;'154;Northern Europe;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;535938;623399;704211;722182;874051;1054053;1010626 -5402;'154;Northern Europe;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58688.57;90030;96124;100603;155856;224165;206508 -5402;'154;Northern Europe;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;77700;67300;105600;67700;116600;120300;211700;223800;302500;153700;197800;198500;200500;195100;398300;258100;238500;103100;85900;111900;86200;103400;105400;82300;69900;87200;99700;70100;65600;49200;82300;70727;119296;89794;99650;150300;232900;356000;433658;468209;441103;859622;1443434;915460;799809;840701;720510;903915;1857192;1168642;1533483;1050237;928973;789339;649922;602521;;;;;;; -5402;'154;Northern Europe;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;397;460;651;509;711;950;1728;1911;2568;1438;1805;1854;2006;2000;6846;5519;2892;1105;1486;1753;1094;1965;1956;1695;1646;2240;2803;2168;1945;1845;2842;2840;4823;5695;4436;6683;9680;9908;11450;10774;12356;26969;56614;39174;36367;49913;54364;73538;100053;79990;119545;80835;72321;67930;56042;54903;;;;;;; -5402;'154;Northern Europe;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;114500;136300;168000;94500;85100;92400;98800;157700;161200;152500;108900;106900;97200;18300;7300;3900;4200;6900;14400;28700;19300;61900;96700;92000;33200;27800;47600;44100;21200;14200;10700;41560;51927;290800;361300;673500;1205100;1791000;1076775;616810;519188;636277;1314396;764920;778023;742837;826259;875819;1509600;1958781;1583856;1311556;1500792;1213664;1699965;1464993;;;;;;; -5402;'154;Northern Europe;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;351;740;987;768;685;721;680;957;1192;1264;1042;1132;1225;430;231;130;158;220;568;1250;852;2799;2924;2764;697;1068;1235;2143;1139;1018;896;1873;2145;5920;8255;12492;31725;52408;27128;11158;11326;17947;39139;28526;33458;41509;49946;62292;79372;120236;126054;85957;103364;93327;87931;85319;;;;;;; -5402;'154;Northern Europe;1865;Industrial roundwood;5516;Production;m3;90019000;87590000;84588000;92087000;92543000;89611000;94641000;90900000;97845000;107466000;111297016;100901016;104443016;108413016;94609000;92752008;85988000;91750000;104627000;102320000;101926016;97928008;99898000;102288008;102119000;102915000;105266008;110450008;114688016;109529200;99079800;108941199;114967499;125773498;139024200;126450900;136150201;139035463;142807100;153086363;148311140;153673789;154377661;152007847;182280044;144712785;164618236;146406447;129363178;152856306;155087968;152136454;157324767;163343264;164113469;168970798;170001453;176475307;173371811;167856089;178794279;176597224;168522416 -5402;'154;Northern Europe;1865;Industrial roundwood;5616;Import quantity;m3;5447800;4776000;4406300;5723800;6614600;6454700;5915500;6128000;6105000;7794300;7234300;5255800;7479900;8230000;9646500;8933300;8056251;6234100;7261200;8274900;9932100;8455600;9288400;11555200;11086600;12084814;14839992;15410312;14572534;8738445;10741127;11873661;11422821;16882151;21638414;15473414;19053914;23669881;25310751;26332934;25934083;27070520;27537026;29024427;32443676;27877385;27821884;24337074;10699144;16224917;15771465;15434276;17625017;17849788;16383685;16591204;14906135;20174184;19342923;18059488;17395901;14306690;13518778 -5402;'154;Northern Europe;1865;Industrial roundwood;5622;Import value;1000 USD;113775;99717;97892;123740;144307;140870;121119;119723;117595;147730;144629;119324;206087;278907;380842;347067;319587;234167;304152;401618;475767;365348;329860;388104;385694;522139;732406;787790;761678;514021;551033;681372;531413;841333;1360734;946791;1046156;1239738;1210047;1145217;1077228;1176576;1454285;1758679;1947577;1781235;2606459;2507694;864969;1274492;1391222;1166039;1372162;1359059;1000984;929549;920706.8;1548100;1389340;1198300;1331035;1409729;1354159 -5402;'154;Northern Europe;1865;Industrial roundwood;5916;Export quantity;m3;7095400;4921600;3599800;3352300;3264500;3062800;3577500;3598000;4461700;5703200;4891800;3357300;3710400;2881100;3107300;2922300;2824520;2268300;3282100;4050500;5205000;4179700;3431500;3697700;3830300;3882968;4356869;3719046;3600164;2329891;2685135;4078268;5440886;8440343;10548543;7424643;8835843;10529643;10948821;13070182;11772271;11899379;11371217;11172164;12905440;11961442;14194037;11632243;8065702;11888662;12882947;12200045;14009284;14298359;13322677;13100694;13226757;14234752;14665334;13278163;13821958;16221958;14955224 -5402;'154;Northern Europe;1865;Industrial roundwood;5922;Export value;1000 USD;113706;82815;59500;60254;58861;58578;59860;54785;63488;84653;78688;58613;78270;94535;130823;120073;136310;117216;164737;244845;295318;200402;157252;164330;171732;196927;246503;206470;212165;197460;174740;262726;266636;382205;620487;483714;457210;512934;517114;513251;418614;437624;493421;583400;702638;664153;1227054;1036542;539984;854671;1075547;917736;1100560;1116322;840995;814192;931264.76;1137378;1130082;933933;1174744;1542661;1427335 -5402;'154;Northern Europe;1866;Industrial roundwood, coniferous;5516;Production;m3;83510000;79394000;76196000;81193000;80100000;77125000;81264000;78683000;84542000;94036000;97560016;88468016;92031016;96578016;84169000;81979008;76775000;80965000;93742000;90288000;89186016;85986008;87038000;89256008;89532000;89627000;91931008;96495008;100097016;96241199;87529800;96184999;102492299;111974799;122556500;111814700;120883001;122724393;125043800;135204113;130042150;134270729;134195331;132386017;164090461;126529619;146318712;129852079;114990900;134612797;136671170;132055683;138063858;144013831;144808218;149206477;148094006;152101505;148551293;145777565;155409176;153616227;145154436 -5402;'154;Northern Europe;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4519208;6429426;5549572;4520425;7819553;9546765;8104165;10013665;11747132;13562942;14803656;14403761;15078596;15276005;16506754;18000764;15017521;15187407;12315940;6280937;8365075;8199793;7325871;9123181;8982299;8229525;8662349;8272794;11480233;11034395;9520404;9379680;9324621;9236099 -5402;'154;Northern Europe;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;274602;323804;314641;207607;391631;591859;489860;525869;617838;645361;656586;608022;661942;824950;1032596;1096841;979354;1432537;1208219;512173;634188;745810;605547;755879;747568;565539;541015;547516.03;927351;849575;698073;817664;874558;864920 -5402;'154;Northern Europe;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1993055;2371060;3078198;3817546;6286643;7311743;5576543;6095043;6675943;7119359;8383519;7589974;7531804;7097049;7154756;9335096;8483702;10388323;8413993;5977277;7801009;8701463;7798723;10163277;10462595;9879576;9621970;9584237;9957459;9903798;9404511;9955059;11225757;10490028 -5402;'154;Northern Europe;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;160322;139390;190573;203502;302223;453012;363285;332536;341395;344261;328766;275768;292637;322784;389415;499938;480832;871211;735097;405479;582259;743456;592726;816769;811268;611821;590137;687586.47;807163;773621;686985;891333;1011569;963798 -5402;'154;Northern Europe;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4519208;6429426;5549572;4520425;7819553;9546765;8104165;10013665;11747132;13562942;14803656;14403761;15078596;15276005;16506754;18000764;15017521;15187407;12315940;6280937;8365075;8199793;7325871;9123181;8982299;8229525;8662349;8272794;11480233;11034395;9520404;9379680;9324621;9236099 -5402;'154;Northern Europe;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;274602;323804;314641;207607;391631;591859;489860;525869;617838;645361;656586;608022;661942;824950;1032596;1096841;979354;1432537;1208219;512173;634188;745810;605547;755879;747568;565539;541015;547516.03;927351;849575;698073;817664;874558;864920 -5402;'154;Northern Europe;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1993055;2371060;3078198;3817546;6286643;7311743;5576543;6095043;6675943;7119359;8383519;7589974;7531804;7097049;7154756;9335096;8483702;10388323;8413993;5977277;7801009;8701463;7798723;10163277;10462595;9879576;9621970;9584237;9957459;9903798;9404511;9955059;11225757;10490028 -5402;'154;Northern Europe;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;160322;139390;190573;203502;302223;453012;363285;332536;341395;344261;328766;275768;292637;322784;389415;499938;480832;871211;735097;405479;582259;743456;592726;816769;811268;611821;590137;687586.47;807163;773621;686985;891333;1011569;963798 -5402;'154;Northern Europe;1867;Industrial roundwood, non-coniferous;5516;Production;m3;6509000;8196000;8392000;10894000;12443000;12486000;13377000;12217000;13303000;13430000;13737000;12433000;12412000;11835000;10440000;10773000;9213000;10785000;10885000;12032000;12740000;11942000;12860000;13032000;12587000;13288000;13335000;13955000;14591000;13288001;11550000;12756200;12475200;13798699;16467700;14636200;15267200;16311070;17763300;17882250;18268990;19403060;20182330;19621830;18189583;18183166;18299524;16554368;14372278;18243509;18416798;20080771;19260909;19329433;19305251;19764321;21907447;24373802;24820518;22078524;23385103;22980997;23367980 -5402;'154;Northern Europe;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4219237;4311701;6324089;6902396;9062598;12091649;7369249;9040249;11922749;11747809;11529278;11530322;11991924;12261021;12517673;14442912;12859864;12634477;12021134;4418207;7859842;7571672;8108405;8501836;8867489;8154160;7928855;6633341;8693951;8308528;8539084;8016221;4982069;4282679 -5402;'154;Northern Europe;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;239419;227229;366731;323806;449702;768875;456931;520287;621900;564686;488631;469206;514634;629335;726083;850736;801881;1173922;1299475;352796;640304;645412;560492;616283;611491;435445;388534;373190.77;620749;539765;500227;513371;535171;489239 -5402;'154;Northern Europe;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;336836;314075;1000070;1623340;2153700;3236800;1848100;2740800;3853700;3829462;4686663;4182297;4367575;4274168;4017408;3570344;3477740;3805714;3218250;2088425;4087653;4181484;4401322;3846007;3835764;3443101;3478724;3642520;4277293;4761536;3873652;3866899;4996201;4465196 -5402;'154;Northern Europe;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37138;35350;72153;63134;79982;167475;120429;124674;171539;172853;184485;142846;144987;170637;193985;202700;183321;355843;301445;134505;272412;332091;325010;283791;305054;229174;224055;243678.3;330215;356461;246948;283411;531092;463537 -5402;'154;Northern Europe;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76277;36375;187469;99712;32110;40700;41800;557500;632400;567781;70713;79410;52203;161006;171877;200733;98046;40682;24530;10787;16894;14343;14788;7031;7760;8518;14236;19587;66267;51520;35261;6345;7845;12470 -5402;'154;Northern Europe;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17213;11474;25072;13451;12662;15458;20389;88815;61073;76865;33275;33104;25459;32964;33629;49762;37891;37980;23624;10712;12386;11953;12912;7425;7312;5952;11503;14149.71;14415;8451;8419;7418;9710;10628 -5402;'154;Northern Europe;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2200;37177;43434;5570;12681;5534;6100;4662;64329;23284;4451;3606;1827;1382;2269;1516;1646;838;748;15150;7650;285;313;301;3894;14784 -5402;'154;Northern Europe;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1937;2843;3699;2221;2243;2216;2059;3481;4795;7075;2860;1210;834;823;1892;985;1386;574;343;4032.92;3056;220;229;281;848;1428 -5402;'154;Northern Europe;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4142960;4275326;6136620;6802684;9030488;12050949;7327449;8482749;11290349;11180028;11458565;11450912;11939721;12100015;12345796;14242179;12761818;12593795;11996604;4407420;7842948;7557329;8093617;8494805;8859729;8145642;7914619;6613754;8627684;8257008;8503823;8009876;4974224;4270209 -5402;'154;Northern Europe;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;222206;215755;341659;310355;437040;753417;436542;431472;560827;487821;455356;436102;489175;596371;692454;800974;763990;1135942;1275851;342084;627918;633459;547580;608858;604179;429493;377031;359041.06;606334;531314;491808;505953;525461;478611 -5402;'154;Northern Europe;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;336836;314075;1000070;1623340;2153700;3236800;1848100;2740800;3851500;3792285;4643229;4176727;4354894;4268634;4011308;3565682;3413411;3782430;3213799;2084819;4085826;4180102;4399053;3844491;3834118;3442263;3477976;3627370;4269643;4761251;3873339;3866598;4992307;4450412 -5402;'154;Northern Europe;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37138;35350;72153;63134;79982;167475;120429;124674;169602;170010;180786;140625;142744;168421;191926;199219;178526;348768;298585;133295;271578;331268;323118;282806;303668;228600;223712;239645.37;327159;356241;246719;283130;530244;462109 -5402;'154;Northern Europe;1868;Sawlogs and veneer logs;5516;Production;m3;37420000;35111000;35404000;41548000;42401000;38462000;37837000;41150000;43360000;47001000;47408008;46940008;51297008;51026008;38960000;42566008;44407000;46051000;52067000;53160000;48563008;48002008;50726000;51185008;50218000;49366000;49176008;51907008;53153008;54352962;48614727;52900520;59387262;67612927;74591128;68962713;76977349;76898115;78460700;85553879;81206580;83967579;86899208;85649795;105844420;79474354;90214728;72454769;66772681;80163407;80354032;79166441;80951122;88333584;86626173;90057922;92449568;94707936;91118140;89166829;97445925;95805239;89117511 -5402;'154;Northern Europe;1868;Sawlogs and veneer logs;5616;Import quantity;m3;1368200;1137800;1295500;1454100;1508600;1568500;1364700;1370400;1160900;1429500;1277000;1449800;1950200;2042200;1417200;2094500;2321200;1514000;1613000;1680900;1349100;1396400;1317900;1457900;1648600;1748914;1964792;2242012;2436034;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5402;'154;Northern Europe;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;48723;40306;48557;56776;57639;58929;47690;53554;49019;50102;45820;53435;102662;116046;85141;121680;137238;96539;117333;126982;95528;87381;80079;83532;91076;113226;148335;161120;191156;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5402;'154;Northern Europe;1868;Sawlogs and veneer logs;5916;Export quantity;m3;631200;488200;403100;428100;456300;709600;656000;419600;541300;808600;505300;528700;515900;493800;321900;537000;908920;563400;967000;1335000;1276600;1082300;1016900;1017000;1025500;811672;1056311;1669246;2395964;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5402;'154;Northern Europe;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;18738;14160;12063;12619;13394;18003;16062;9866;11068;16741;11367;12951;17466;22216;19599;31553;55530;37746;62184;93862;84447;71131;61851;63421;61565;52406;81095;101026;142745;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5402;'154;Northern Europe;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;34184000;31833000;32009000;37374000;38109000;34325000;33820000;36825000;38981000;42786000;43517008;43332008;47471008;48121008;36246000;39664008;41527000;42975000;48571000;49872000;45296008;45039008;47965000;48381008;47449000;46506000;46576008;49102008;50078008;51476145;46032663;50434387;56751772;63738083;69655904;65117932;72636789;71588845;73330200;80107256;75791250;77957267;79635176;78333409;100430873;73724746;85262099;68443244;63018357;75494454;76128806;72944175;76010180;82881515;81531333;84664667;87111326;89189488;85601607;84190277;92044830;90417043;83730304 -5402;'154;Northern Europe;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;598800;528100;633000;678100;818000;931200;856200;783400;594100;960800;796300;936000;1315300;1602400;1091000;1721500;2000500;1237600;1344000;1450200;1160900;1204300;1078800;1211400;1373600;1421007;1631980;1605026;2100058;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5402;'154;Northern Europe;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;10574;7941;9246;11385;14116;15845;14660;12181;9798;15830;13637;16860;35546;58813;48763;74136;87425;52267;65190;78636;63014;55419;45547;53312;61485;77122;103096;109429;142996;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5402;'154;Northern Europe;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;570300;422500;332100;366200;383800;641600;580800;340200;460100;728600;440500;470000;452100;425200;287600;510200;883520;518500;892000;1211700;1172500;994000;914100;883900;911500;695368;902204;1433824;2200039;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5402;'154;Northern Europe;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;14978;9384;7492;8937;9016;13799;11882;6005;7944;13256;8940;10669;14420;17819;16063;28772;51770;30623;51488;81209;75723;65757;52432;53531;52904;41911;67615;82494;126105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5402;'154;Northern Europe;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;3236000;3278000;3395000;4174000;4292000;4137000;4017000;4325000;4379000;4215000;3891000;3608000;3826000;2905000;2714000;2902000;2880000;3076000;3496000;3288000;3267000;2963000;2761000;2804000;2769000;2860000;2600000;2805000;3075000;2876817;2582064;2466133;2635490;3874844;4935224;3844781;4340560;5309270;5130500;5446623;5415330;6010312;7264032;7316386;5413547;5749608;4952629;4011525;3754324;4668953;4225226;6222266;4940942;5452069;5094840;5393255;5338242;5518448;5516533;4976552;5401095;5388196;5387207 -5402;'154;Northern Europe;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;769400;609700;662500;776000;690600;637300;508500;587000;566800;468700;480700;513800;634900;439800;326200;373000;320700;276400;269000;230700;188200;192100;239100;246500;275000;327907;332812;636986;335976;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5402;'154;Northern Europe;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;38149;32365;39311;45391;43523;43084;33030;41373;39221;34272;32183;36575;67116;57233;36378;47544;49813;44272;52143;48346;32514;31962;34532;30220;29591;36104;45239;51691;48160;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5402;'154;Northern Europe;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;60900;65700;71000;61900;72500;68000;75200;79400;81200;80000;64800;58700;63800;68600;34300;26800;25400;44900;75000;123300;104100;88300;102800;133100;114000;116304;154107;235422;195925;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5402;'154;Northern Europe;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;3760;4776;4571;3682;4378;4204;4180;3861;3124;3485;2427;2282;3046;4397;3536;2781;3760;7123;10696;12653;8724;5374;9419;9890;8661;10495;13480;18532;16640;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5402;'154;Northern Europe;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60291746;60244700;64427232;63979090;66653770;64421698;63701408;73689766;62767201;71493234;71326779;60268824;70176802;72394846;70481913;73772366;72297190;74757310;76123878;75251093;79717111;79823750;76071305;78782409;78449332;76791589 -5402;'154;Northern Europe;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49656236;49053800;52504105;52159830;54289322;52363200;52035164;61390230;50655343;58916939;59306861;49993835;57017662;58603337;57060983;60107149;59067611;61198819;62303362;59221643;61301442;61219590;59744158;61578426;61585598;59649049 -5402;'154;Northern Europe;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10635510;11190900;11923127;11819260;12364448;12058498;11666244;12299536;12111858;12576295;12019918;10274989;13159140;13791509;13420930;13665217;13229579;13558491;13820516;16029450;18415669;18604160;16327147;17203983;16863734;17142540 -5402;'154;Northern Europe;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5616;Import quantity;m3;3229500;2597200;2244800;3469700;4280800;4261300;4119700;4486600;4567500;5971300;5616800;3530200;5082500;5843900;7933700;6644000;5555600;4450900;5349500;6338000;8333000;6854100;7818800;9946600;9300900;10228200;12750400;12915000;11564800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5402;'154;Northern Europe;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5622;Import value;1000 USD;46210;36711;30299;48540;65048;65075;61655;58707;57569;86138;86341;54996;85325;137050;271062;208113;163244;116580;157877;245932;353279;257676;235669;287915;281756;394921;567413;600507;530402;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5402;'154;Northern Europe;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5916;Export quantity;m3;4828200;3147600;2250500;2304600;2381000;1922000;2535300;2810900;3470800;4453000;4044300;2539600;2844300;2042400;2380300;2007600;1524600;1306100;1917100;2260300;3462500;2733100;2029600;2287400;2406600;2703896;2996158;1807500;1013500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5402;'154;Northern Europe;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5922;Export value;1000 USD;67377;43892;29859;32779;32560;26189;32089;32664;37644;54481;53334;33474;42119;41170;62411;55514;41505;33665;55272;82905;133252;77544;47476;56173;61875;87358;122798;86119;49972;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5402;'154;Northern Europe;1870;Pulpwood and particles (1961-1997);5516;Production;m3;47241000;47042000;43805000;47280000;47294000;48368000;54262000;47252000;51883000;57757000;61324008;51593008;50707008;55246008;53500000;48065000;39059000;43166000;49886000;46680000;50584008;47358000;46625000;48557000;49272000;51349000;54762000;57134000;59891008;53980555;49285477;53155861;52712965;55571711;61911910;55097046;57544290;;;;;;;;;;;;;;;;;;;;;;;;;; -5402;'154;Northern Europe;1870;Pulpwood and particles (1961-1997);5616;Import quantity;m3;3229500;2597200;2244800;3469700;4280800;4261300;4119700;4486600;4567500;5971300;5616800;3530200;5082500;5843900;7933700;6644000;5555600;4450900;5349500;6338000;8333000;6854100;7818800;9946600;9300900;10228200;12750400;12915000;11564800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5402;'154;Northern Europe;1870;Pulpwood and particles (1961-1997);5622;Import value;1000 USD;46210;36711;30299;48540;65048;65075;61655;58707;57569;86138;86341;54996;85325;137050;271062;208113;163244;116580;157877;245932;353279;257676;235669;287915;281756;394921;567413;600507;530402;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5402;'154;Northern Europe;1870;Pulpwood and particles (1961-1997);5916;Export quantity;m3;4828200;3147600;2250500;2304600;2381000;1922000;2535300;2810900;3470800;4453000;4044300;2539600;2844300;2042400;2380300;2007600;1524600;1306100;1917100;2260300;3462500;2733100;2029600;2287400;2406600;2703896;2996158;1807500;1013500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5402;'154;Northern Europe;1870;Pulpwood and particles (1961-1997);5922;Export value;1000 USD;67377;43892;29859;32779;32560;26189;32089;32664;37644;54481;53334;33474;42119;41170;62411;55514;41505;33665;55272;82905;133252;77544;47476;56173;61875;87358;122798;86119;49972;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5402;'154;Northern Europe;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;44585000;42569000;39346000;40990000;39623000;40609000;45387000;39803000;43351000;49028000;51946008;43245008;42580008;46648008;46143000;40544000;33089000;35840000;42889000;38303000;41470008;38636000;36807000;38620000;39718000;41192000;44268000;46195000;48626008;43818474;40574055;43529387;43494543;46351701;51064492;44713270;46920290;;;;;;;;;;;;;;;;;;;;;;;;;; -5402;'154;Northern Europe;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;2656000;4473000;4459000;6290000;7671000;7759000;8875000;7449000;8532000;8729000;9378000;8348000;8127000;8598000;7357000;7521000;5970000;7326000;6997000;8377000;9114000;8722000;9818000;9937000;9554000;10157000;10494000;10939000;11265000;10162081;8711422;9626474;9218422;9220010;10847418;10383776;10624000;;;;;;;;;;;;;;;;;;;;;;;;;; -5402;'154;Northern Europe;1871;Other industrial roundwood;5516;Production;m3;5358000;5437000;5379000;3259000;2848000;2781000;2542000;2498000;2602000;2708000;2565000;2368000;2439000;2141000;2149000;2121000;2522000;2533000;2674000;2480000;2779000;2568000;2547000;2546000;2629000;2200000;1328000;1409000;1644000;1195683;1179596;2884818;2867272;2588860;2521162;2391141;1628562;1845602;4101700;3105252;3125470;3052440;3056755;2656644;2745858;2471230;2910274;2624899;2321673;2516097;2339090;2488100;2601279;2712490;2729986;2788998;2300792;2050260;2429921;2617955;2565945;2342653;2613316 -5402;'154;Northern Europe;1871;Other industrial roundwood;5616;Import quantity;m3;850100;1041000;866000;800000;825200;624900;431100;271000;376600;393500;340500;275800;447200;343900;295600;194800;179451;269200;298700;256000;250000;205100;151700;150700;137100;107700;124800;253300;571700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5402;'154;Northern Europe;1871;Other industrial roundwood;5622;Import value;1000 USD;18842;22700;19036;18424;21620;16866;11774;7462;11007;11490;12468;10893;18100;25811;24639;17274;19105;21048;28942;28704;26960;20291;14112;16657;12862;13992;16658;26163;40120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5402;'154;Northern Europe;1871;Other industrial roundwood;5916;Export quantity;m3;1636000;1285800;946200;619600;427200;431200;386200;367500;449600;441600;342200;289000;350200;344900;405100;377700;391000;398800;398000;455200;465900;364300;385000;393300;398200;367400;304400;242300;190700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5402;'154;Northern Europe;1871;Other industrial roundwood;5922;Export value;1000 USD;27591;24763;17578;14856;12907;14386;11709;12255;14776;13431;13987;12188;18685;31149;48813;33006;39275;45805;47281;68078;77619;51727;47925;44736;48292;57163;42610;19325;19448;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5402;'154;Northern Europe;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;4741000;4992000;4841000;2829000;2368000;2191000;2057000;2055000;2210000;2222000;2097000;1891000;1980000;1809000;1780000;1771000;2159000;2150000;2282000;2113000;2420000;2311000;2266000;2255000;2365000;1929000;1087000;1198000;1393000;946580;923082;2221225;2245984;1885015;1836104;1983498;1325922;1479312;2659800;2592752;2091070;2024140;2196955;2017444;2269358;2149530;2139674;2101974;1978708;2100681;1939027;2050525;1946529;2064705;2078066;2238448;1761037;1610575;1730096;1843130;1785920;1613586;1775083 -5402;'154;Northern Europe;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;617000;445000;538000;430000;480000;590000;485000;443000;392000;486000;468000;477000;459000;332000;369000;350000;363000;383000;392000;367000;359000;257000;281000;291000;264000;271000;241000;211000;251000;249103;256514;663593;621288;703845;685058;407643;302640;366290;1441900;512500;1034400;1028300;859800;639200;476500;321700;770600;522925;342965;415416;400063;437575;654750;647785;651920;550550;539755;439685;699825;774825;780025;729067;838233 -5402;'154;Northern Europe;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;850100;1041000;866000;800000;825200;624900;431100;271000;376600;393500;340500;275800;447200;343900;295600;194800;179451;269200;298700;256000;250000;205100;151700;150700;137100;107700;124800;253300;571700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5402;'154;Northern Europe;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;18842;22700;19036;18424;21620;16866;11774;7462;11007;11490;12468;10893;18100;25811;24639;17274;19105;21048;28942;28704;26960;20291;14112;16657;12862;13992;16658;26163;40120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5402;'154;Northern Europe;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;1636000;1285800;946200;619600;427200;431200;386200;367500;449600;441600;342200;289000;350200;344900;405100;377700;391000;398800;398000;455200;465900;364300;385000;393300;398200;367400;304400;242300;190700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5402;'154;Northern Europe;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;27591;24763;17578;14856;12907;14386;11709;12255;14776;13431;13987;12188;18685;31149;48813;33006;39275;45805;47281;68078;77619;51727;47925;44736;48292;57163;42610;19325;19448;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5402;'154;Northern Europe;1630;Wood charcoal;5510;Production;t;28491;25343;30606;26980;35414;39348;42926;53448;55216;41631;33215;35251;34963;36399;40707;40746;33046;37813;37968;32314;35977;30474;24705;5994;7123;13056;6118;18514;2775;18723;14993;21594;28201;39227;33320;31920;38849;51000;15490;20200;18500;22600;26598;27842;21879;25129;23370;18939;16563;19220;21594;20649;16315;19869;17873;18305;18700;18476;14500;15408;15073;14000;13000 -5402;'154;Northern Europe;1630;Wood charcoal;5610;Import quantity;t;24400;28100;25658;22900;18800;16100;17200;15900;15933;18558;14200;9800;12100;15900;13300;20290;27751;25600;30000;41200;33700;47200;53500;70400;84200;79100;80500;57900;112100;100200;93800;103574;106624;111327;128410;132610;142610;224356;118357;116938;144650;126361;136378;129185;177462;127993;113642;120002;116239;136276;147986;148950;208650;229094;213637;176392;235583;297041;253864;223499;244079;251018;236133 -5402;'154;Northern Europe;1630;Wood charcoal;5622;Import value;1000 USD;1951;2378;2302;1962;1689;1559;1675;1620;1641;1470;1517;985;1601;3097;2517;3368;5171;5587;8668;12549;10902;8679;9928;13920;16508;16218;18795;20758;30787;34499;30352;36687;26369;27130;36264;38864;43978;44341;35657;36720;44354;42713;55671;57640;79267;65931;62713;73458;66462;82444;96558;97129;119386;129257;110291;97639;109030.52;125289;127179;135916;152386;168913;169351 -5402;'154;Northern Europe;1630;Wood charcoal;5910;Export quantity;t;18100;14300;19300;15500;20500;19800;22200;19600;20600;19300;5800;2600;2000;3800;2900;4200;2200;5800;5800;1300;800;7700;6000;2600;1300;1400;2300;2400;6800;4000;2100;8657;5637;1345;2000;5900;11800;12634;11813;15775;15329;13645;27704;25899;26270;24879;20015;17833;17350;23732;27857;27144;24506;37918;27330;31198;37507;41307;25498;27953;21996;14317;21650 -5402;'154;Northern Europe;1630;Wood charcoal;5922;Export value;1000 USD;514;387;517;446;514;465;524;499;503;516;212;205;253;350;361;548;391;826;944;651;362;667;533;338;213;288;630;653;1584;1428;800;2192;1424;1159;1418;2606;4263;3696;3843;5258;5573;6070;15239;13488;11882;13392;12805;12631;12060;15461;21276;19313;19848;26177;17736;16877;20476.01;21948;16300;18238;16575;12455;23250 -5402;'154;Northern Europe;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26235000;39512000;46721170;45505350;44598720;47600498;49024251;48864000;49475513;51854346;49698847;43443491;48312812;48752037;47621509;49004814;47964573;48959548;50078586;51122342;51759366;51769566;50766564;49954988;50215939;45588825 -5402;'154;Northern Europe;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3792278;3812907;4660943;5218950;5929150;6272679;7900605;9439264;8675684;9385714;13542788;10439906;13965354;12752724;9033109;7142235;6672812;6954410;8352624;8273860;9006472;11492661;11362928;10140010;6190508;5998860 -5402;'154;Northern Europe;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;131456;152717;151351;288649;220236;298033;386607;492380;540357;708009;1133996;744083;1061422;991267;479614;433089;372085;299530;326817;333329.69;460266;522861;523748;463164;437188;489695 -5402;'154;Northern Europe;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2892700;2238685;2569154;3247383;4000449;4739715;4968088;5772083;7282123;6679600;6086548;5766724;7615826;6600312;5142805;4376106;4400715;3615912;4062382;4569684;4884007;5275450;5141158;6783250;7706324;7894745 -5402;'154;Northern Europe;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72285;70220;70944;90164;125943;190990;246994;310263;377505;462302;503936;417814;510368;317806;254476;234895;219847;178358;198773;216980.92;232680;281114;250057;260267;367770;463373 -5402;'154;Northern Europe;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16080000;28901000;29837480;28432930;28604858;30441812;30661924;30411840;31919667;34681000;33086267;30789001;33144418;34242888;32756717;29647353;28052406;28070137;30410347;31592450;31305029;32239197;32379616;33615742;34020882;30957210 -5402;'154;Northern Europe;1619;Wood chips and particles;5616;Import quantity;m3;;;;184300;183600;189800;275300;330200;346100;380100;443600;449000;498000;568000;827000;661900;1271500;488600;578000;1467000;2296700;1524000;1536700;1732800;1531300;1875900;2039300;1834800;1760800;1704000;1236600;1778594;1016870;1579438;1530187;1830987;2089887;2501887;2322900;2804150;3638845;4373994;4302473;5402897;6175324;5489068;6126303;7790666;6241364;7619027;8205291;6163047;5332113;4846089;4842168;5711793;6676817;7977045;10023645;9747224;8812073;5025241;4982518 -5402;'154;Northern Europe;1619;Wood chips and particles;5622;Import value;1000 USD;;;;1717;1742;2511;3165;3681;4093;4999;7016;7303;9101;15633;29912;22482;51380;17128;23345;76816;126722;70722;59542;62553;56967;95199;114381;101376;91516;84934;64326;94044;39161;70609;79058;91211;93162;95238;86912;101449;232866;148689;180603;242684;283479;263953;388169;571708;380775;434513;494656;375635;344091;298892;237383;250270;283108.77;409924;454989;459617;408508;361577;406362 -5402;'154;Northern Europe;1619;Wood chips and particles;5916;Export quantity;m3;;;;83300;146600;62800;267700;291600;347800;452500;431500;430400;532100;538000;519400;436600;567600;610400;539700;1018600;866300;708900;959700;1078000;926900;900600;1084400;1214700;1055900;903600;831300;952549;826374;849600;792700;1209700;1328000;2216100;1530485;1798326;2142692;2901044;3330486;3499528;3715343;4501963;4085467;3687455;3071417;3986058;4945790;4159830;3283629;3165361;2837699;3352146;3978501;4130307;4549176;4455086;4953255;5948728;5890845 -5402;'154;Northern Europe;1619;Wood chips and particles;5922;Export value;1000 USD;;;;449;884;983;2854;3063;3400;5494;6008;6504;8594;12459;14711;13436;15989;17177;12941;29625;31307;22626;25669;30048;29387;37856;50386;56864;48239;44474;42528;43401;42952;30792;39830;57151;45124;58375;48910;48469;59084;83494;120432;153218;155612;151364;213906;233733;143457;180186;228550;196195;175308;161114;141104;159784;178975.7;187677;237436;214453;220625;317525;382222 -5402;'154;Northern Europe;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10700000;12640000;13701000;17003000;16660000;16717000;10155000;10611000;16883690;17072420;15993862;17158686;18362327;18452160;17555846;17173346;16612580;12654490;15168394;14509149;14864792;19357461;19912167;20889411;19668239;19529892;20454337;19530369;18386948;16339246;16195057;14631615 -5402;'154;Northern Europe;1620;Wood residues;5616;Import quantity;m3;23900;32000;64100;460200;818400;912400;1119200;1024100;790400;748700;865600;712900;1185800;1445300;1237900;1067900;825900;504700;570200;663300;576500;805800;779400;781600;681400;856200;823900;601100;546600;379000;291400;403470;584792;442091;514591;746591;930291;1290391;1490007;1856793;1580105;1555156;1970206;2497708;3263940;3186616;3259411;5752122;4198542;6346327;4547433;2870062;1810122;1826723;2112242;2640831;1597043;1029427;1469016;1615704;1327937;1165267;1016342 -5402;'154;Northern Europe;1620;Wood residues;5622;Import value;1000 USD;250;290;645;4782;8740;9394;10999;9600;6653;7339;9449;8340;15657;21036;22971;20433;14369;7875;8824;11205;8703;14806;12785;11737;11314;15146;17688;12746;12062;13147;10471;13406;11421;11344;15731;23702;28586;36218;65805;49902;55783;71547;117430;143923;208901;276404;319840;562288;363308;626909;496611;103979;88998;73193;62147;76547;50220.92;50342;67872;64131;54656;75611;83333 -5402;'154;Northern Europe;1620;Wood residues;5916;Export quantity;m3;55800;151300;189100;278400;292300;249700;212000;252300;304900;422900;382600;311200;283200;180500;214400;318400;307500;222400;246700;340600;332700;304200;406000;451700;420800;509700;466300;239200;243700;224700;267700;304586;189417;241300;319500;452100;562700;676600;708200;770828;1104691;1099405;1409229;1468560;2056740;2780160;2594133;2399093;2695307;3629768;1654522;982975;1092477;1235354;778213;710236;591183;753700;726274;686072;1829995;1757596;2003900 -5402;'154;Northern Europe;1620;Wood residues;5922;Export value;1000 USD;336;798;1008;1341;1468;1471;1341;1669;2152;3581;3089;2520;2487;2502;3166;3111;3753;2795;2735;5861;6077;3545;4338;4847;4961;7455;9567;5312;4473;6649;9179;10923;4456;6763;10359;13075;12403;13910;21310;22475;31080;42449;70558;93776;154651;226141;248396;270203;274357;330182;89256;58281;59587;58733;37254;38989;38005.22;45003;43678;35604;39642;50245;81151 -5402;'154;Northern Europe;1605;Sawdust (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;913583;799258 -5402;'154;Northern Europe;1605;Sawdust (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52509;61065 -5402;'154;Northern Europe;1605;Sawdust (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400367;286787 -5402;'154;Northern Europe;1605;Sawdust (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22543;28358 -5402;'154;Northern Europe;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6439225;6546750;8768214;8385000;7669758;7443480;8899924 -5402;'154;Northern Europe;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105438;804775;1213564;1053235;1123168;814278;842786 -5402;'154;Northern Europe;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4522.98;18923;27580;23729;39449;31661;53824 -5402;'154;Northern Europe;1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;601800;593886;718388;816078;800847;647587;788654 -5402;'154;Northern Europe;1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38521.61;33888;41145;44741;46899;34738;58962 -5402;'154;Northern Europe;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4162863;4734857;5174562;5916020;6032210;6056287;6135406;7252945;7113608;7304382;7343567;7078938 -5402;'154;Northern Europe;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4316427;6801448;8038846;9520530;9682411;10707104;12683909;13565765;13140698;14159293;11813749;10397333 -5402;'154;Northern Europe;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;789381;1250874;1487814;1630365;1654932;1813055.46;2310777;2446164;2347469;2557089;2572616;2468842 -5402;'154;Northern Europe;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2157355;2662869;2953484;3426090;3570707;4314684;4521057;5498663;5892472;6181515;4767386;3978589 -5402;'154;Northern Europe;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;367594;490173;551546;521187;523928;598555.75;744294;909923;979852;1011568;1116035;969667 -5402;'154;Northern Europe;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3656810;4248911;4734666;5479581;5565020;5903887;5944006;7032515;6927008;7109170;7017167;6742538 -5402;'154;Northern Europe;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4177194;6650194;7908121;9345752;9531755;10450684;12346170;13226128;12678209;13618205;11285792;9862030 -5402;'154;Northern Europe;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;763592;1223132;1461813;1603211;1631477;1779590.44;2256600;2395908;2284943;2479440;2467739;2368391 -5402;'154;Northern Europe;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2008860;2487780;2806493;3277563;3419947;4025022;4281062;5237254;5688661;5912036;4241652;3468644 -5402;'154;Northern Europe;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;343567;461129;517699;497574;500615;569252.47;714560;878888;950925;971505;1044659;901934 -5402;'154;Northern Europe;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;506053;485946;439896;436439;467190;152400;191400;220430;186600;195212;326400;336400 -5402;'154;Northern Europe;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;139233;151254;130725;174778;150656;256420;337739;339637;462489;541088;527957;535303 -5402;'154;Northern Europe;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25789;27742;26001;27154;23455;33465.02;54177;50256;62526;77649;104877;100451 -5402;'154;Northern Europe;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;148495;175089;146991;148527;150760;289662;239995;261409;203811;269479;525734;509945 -5402;'154;Northern Europe;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24027;29044;33847;23613;23313;29303.28;29734;31035;28927;40063;71376;67733 -5402;'154;Northern Europe;1872;Sawnwood;5516;Production;m3;19687000;18387300;18145800;20201300;21013800;19779402;20197100;20781800;22103700;23847200;24491100;24595500;26298700;25542000;19945300;21473300;22821400;23237800;25940800;26683800;23830800;23550800;24802800;25649800;23989800;24029800;24432800;24556800;25149800;25451800;23672900;26256900;28400000;32089000;33240000;33595000;37879000;38576700;39758000;42386712;41592713;42626050;44030810;44048161;43921261;44959340;44579181;38295950;34873435;38862475;39120202;38536556;39748125;42238378;42531122;44363422;45023087;44829237;44289360;43555180;46467199;44894565;42097453 -5402;'154;Northern Europe;1872;Sawnwood;5616;Import quantity;m3;10429900;9956700;10570000;12572500;12228900;10727300;11297700;12170500;10912300;11324100;11179800;11731600;13774700;11465700;7657400;10459400;9527190;9829900;11312400;9281900;8162400;9343500;10404200;10066500;9644100;11328060;12042035;13000900;12263900;13379400;9817900;10137541;9702497;12697891;9175310;9184110;11716010;13801710;14326258;13769799;13333974;14104320;14574356;15123747;15298378;15476363;15749838;11003052;9384994;11004064;9689500;10084508;10976330;12912361;12815093;13331387;14986102;15986630;16292682;16983108;18769310;14817551;13026603 -5402;'154;Northern Europe;1872;Sawnwood;5622;Import value;1000 USD;541131;489254;530069;673436;702028;622435;625341;646765;637980;700906;724673;754157;1307048;1731493;1034765;1417010;1505612;1580805;2150517;2185343;1652797;1841431;1822857;1796463;1589019;2068249;2635183;3107361;2980220;3156957;2523141;2598701;2370532;3127863;2769256;2706434;3297647;2917034;2787913;2877862;2602022;2794781;3466341;3891436;3937101;4282922;5771759;3924315;2743613;3362419;3330860;3207675;3367241;4059381;3514274;3514590;3908703.23;4428531;3969118;4034544;6977161;5322211;3927098 -5402;'154;Northern Europe;1872;Sawnwood;5916;Export quantity;m3;9943400;9543700;9668800;10579200;9660600;8968900;9185400;10603700;11559600;11870500;12554600;13667000;15283500;12320700;8537200;11131700;10904200;12818700;14293300;13565300;11582400;12785100;14273600;13674800;13393400;12837241;13005235;12569400;12612000;11331400;12148900;14339431;18098697;20343706;21392048;22851189;23532889;24514889;25137025;25591324;24999107;26020410;26191392;25822748;25837505;27060826;23433699;22028381;21715759;22421627;23183625;23495833;24106892;25631046;27151930;28659613;29701092;28353808;29192572;29980444;29307595;29975919;28861676 -5402;'154;Northern Europe;1872;Sawnwood;5922;Export value;1000 USD;408060;375853;389945;461865;469469;430447;414496;461869;532799;583644;652402;753802;1176876;1599451;1016769;1362498;1514014;1764380;2327526;2597945;2051432;1857552;2033716;2023181;1802984;2103243;2228664;2686934;2840896;3251070;3004090;3297408;3256054;4419569;5011777;4733219;5056463;4598749;4584924;4442889;3957511;4454943;5372768;5813103;5778668;6599390;7702295;6234554;5205787;6112350;6484130;6145936;6600452;7151489;6192885;6264646;6806026.92;7393057;6785361;7024377;11575616;10385574;7517751 -5402;'154;Northern Europe;1632;Sawnwood, coniferous;5516;Production;m3;18168000;17065150;16780400;18669350;19381000;18241951;18713600;19162650;20610150;22142500;22825900;22998200;24690500;24051300;18564650;19964650;21208700;21682400;24446900;25306900;22552400;22346400;23686400;24524900;22944900;22919900;23428900;23559900;24052900;24385900;22659500;25252000;27546000;31083000;32040000;32648000;36827000;37361700;38281000;40950330;40080760;40785044;42128071;41975395;42005800;42985600;43099470;37098412;33708287;37281782;37656658;37008987;38058788;40679125;40997764;42807907;43505596;43309358;42834102;42242923;44839584;43397451;40759339 -5402;'154;Northern Europe;1632;Sawnwood, coniferous;5616;Import quantity;m3;9219100;8942750;9457850;11277700;10923250;9557700;10187000;10918400;9789500;10168150;10122500;10600150;12292800;10479500;6768300;9455050;8560740;8813100;9967750;8307500;7246950;8427550;9240000;8965150;8551550;10207750;10771000;11632900;10982950;12220100;8889500;9193418;8916408;11912825;8282086;8287086;10615386;12546086;13195512;12515434;11984413;12769327;13219071;13586986;13836130;13470495;14083526;10030635;8663845;10158538;8776285;9177330;10087832;11946604;11871613;12384146;13837338;14353307;14332925;15124752;16801747;12766835;11383101 -5402;'154;Northern Europe;1632;Sawnwood, coniferous;5622;Import value;1000 USD;435309;402218;432111;557153;581443;510590;518354;530366;523548;575302;607539;623833;1059758;1493995;845272;1177806;1259798;1299975;1737189;1807701;1301501;1495855;1422957;1391383;1227621;1638705;2096756;2452327;2344508;2475575;1990589;2009936;1861389;2481961;2085472;2079295;2553583;2303199;2178688;2216230;1964429;2170309;2753711;3056253;3075667;3281339;4687996;2994819;2170469;2720426;2628590;2536637;2722552;3342062;2835375;2826607;3143524.35;3611521;3192949;3300654;6098810;4395601;3129088 -5402;'154;Northern Europe;1632;Sawnwood, coniferous;5916;Export quantity;m3;9824850;9436050;9557200;10430350;9490400;8810400;9026350;10404700;11342300;11677600;12374400;13483950;15093400;12174700;8409050;10945650;10715400;12587100;14068950;13359200;11412350;12637000;14074050;13493850;13235950;12705850;12771750;12439100;12507400;11232000;12058600;14164659;17939601;20038747;21008389;22513789;23105189;23781889;24345301;24700798;24008681;24892462;24966577;24706484;24940892;25925279;22563353;21283970;21008058;21584998;22282778;22717436;23331391;24694153;26095963;27662737;28723380;27358518;28206554;29027969;28087608;28667105;28029183 -5402;'154;Northern Europe;1632;Sawnwood, coniferous;5922;Export value;1000 USD;400652;368666;382035;452027;457711;418846;403381;448843;518075;568541;635842;735180;1151581;1570217;985190;1330823;1476663;1723154;2278647;2547085;2012506;1824360;1996993;1983931;1760841;2062207;2178086;2646404;2797659;3187893;2949855;3209133;3181162;4290671;4851326;4601786;4919660;4449971;4421162;4281020;3785767;4244552;5116600;5549359;5528975;6298372;7389500;5955552;5020853;5883858;6209135;5892628;6347855;6850764;5895683;5982050;6516419.74;7049235;6473040;6744426;11131037;9936036;7209297 -5402;'154;Northern Europe;1633;Sawnwood, non-coniferous;5516;Production;m3;1519000;1322150;1365400;1531950;1632800;1537451;1483500;1619150;1493550;1704700;1665200;1597300;1608200;1490700;1380650;1508650;1612700;1555400;1493900;1376900;1278400;1204400;1116400;1124900;1044900;1109900;1003900;996900;1096900;1065900;1013400;1004900;854000;1006000;1200000;947000;1052000;1215000;1477000;1436382;1511953;1841006;1902739;2072766;1915461;1973740;1479711;1197538;1165148;1580693;1463544;1527569;1689337;1559253;1533358;1555515;1517491;1519879;1455258;1312257;1627615;1497114;1338114 -5402;'154;Northern Europe;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;1210800;1013950;1112150;1294800;1305650;1169600;1110700;1252100;1122800;1155950;1057300;1131450;1481900;986200;889100;1004350;966450;1016800;1344650;974400;915450;915950;1164200;1101350;1092550;1120310;1271035;1368000;1280950;1159300;928400;944123;786089;785066;893224;897024;1100624;1255624;1130746;1254365;1349561;1334993;1355285;1536761;1462248;2005868;1666312;972417;721149;845526;913215;907178;888498;965757;943480;947241;1148764;1633323;1959757;1858356;1967563;2050716;1643502 -5402;'154;Northern Europe;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;105822;87036;97958;116283;120585;111845;106987;116399;114432;125604;117134;130324;247290;237498;189493;239204;245814;280830;413328;377642;351296;345576;399900;405080;361398;429544;538427;655034;635712;681382;532552;588765;509143;645902;683784;627139;744064;613835;609225;661632;637593;624472;712630;835183;861434;1001583;1083763;929496;573144;641993;702270;671038;644689;717319;678899;687983;765178.88;817010;776169;733890;878351;926610;798010 -5402;'154;Northern Europe;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;118550;107650;111600;148850;170200;158500;159050;199000;217300;192900;180200;183050;190100;146000;128150;186050;188800;231600;224350;206100;170050;148100;199550;180950;157450;131391;233485;130300;104600;99400;90300;174772;159096;304959;383659;337400;427700;733000;791724;890526;990426;1127948;1224815;1116264;896613;1135547;870346;744411;707701;836629;900847;778397;775501;936893;1055967;996876;977712;995290;986018;952475;1219987;1308814;832493 -5402;'154;Northern Europe;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;7408;7187;7910;9838;11758;11601;11115;13026;14724;15103;16560;18622;25295;29234;31579;31675;37351;41226;48879;50860;38926;33192;36723;39250;42143;41036;50578;40530;43237;63177;54235;88275;74892;128898;160451;131433;136803;148778;163762;161869;171744;210391;256168;263744;249693;301018;312795;279002;184934;228492;274995;253308;252597;300725;297202;282596;289607.17;343822;312321;279951;444579;449538;308454 -5402;'154;Northern Europe;1634;Veneer sheets;5516;Production;m3;33500;38300;46200;49800;53400;53100;52400;53800;83400;84600;94300;97500;109500;84300;83300;74000;71000;66000;72000;63000;61000;61000;64000;67000;59000;59000;59000;59000;61000;61000;61000;77000;112600;122600;118000;114000;113000;176300;142900;186190;175100;162500;159300;163600;187000;191700;179130;256972;236709;287815;286600;288322;347097;360445;358019;367160;425484;479683;365494;399060;483835;512019;531660 -5402;'154;Northern Europe;1634;Veneer sheets;5616;Import quantity;m3;47200;42000;48100;54600;58500;55800;68400;78200;81600;94700;87800;97300;131600;145100;92200;114900;141200;161800;174900;142200;134500;137400;163800;170700;186300;185145;222707;309186;283273;201700;141700;118209;122170;172963;151415;157815;156715;173515;279784;137439;162330;182462;168926;181612;234808;197335;182802;171820;157313;201695;215819;203057;302438;298576;242942;269129;269668;278710;300528;337061;377403;360518;378864 -5402;'154;Northern Europe;1634;Veneer sheets;5622;Import value;1000 USD;20160;20203;21802;25393;30038;29343;29349;30763;36963;49441;45838;58736;105089;107040;86538;95931;115837;127264;149363;143200;118254;122408;115106;123150;129281;147597;217629;214518;197608;225451;172317;174845;156803;214336;227277;225822;235996;242485;230352;212640;189623;187312;206470;241135;235349;236974;291735;276231;172833;196582;226136;193651;209356;214804;185231;192304;191811.16;247873;230881;229988;268436;321083;305713 -5402;'154;Northern Europe;1634;Veneer sheets;5916;Export quantity;m3;13300;14500;23300;28100;32100;28200;29500;34000;36500;38900;36900;34300;35400;43400;29900;30900;28500;30100;38300;39100;37500;34200;40700;42500;41100;44541;49123;73321;80998;86197;70700;40832;61485;108500;104600;117600;116400;137700;196393;145524;153839;134781;143245;169815;174465;253946;184443;220010;178248;176034;228104;201132;235945;238886;250950;256996;258004;297333;259002;291924;355908;390214;383734 -5402;'154;Northern Europe;1634;Veneer sheets;5922;Export value;1000 USD;6270;6873;10928;15032;15961;14250;13930;16102;17522;19105;19135;20297;26725;33346;26123;27153;27352;29937;35241;45524;36495;28380;31531;35851;33089;40399;48335;60460;59252;64714;61672;65000;54538;86878;105011;105771;104193;116412;115909;107666;109395;113909;139301;168254;174757;183563;189120;180440;128792;127414;139254;129243;142858;148264;123847;128106;142416.92;163826;150763;156725;208923;245457;246151 -5402;'154;Northern Europe;1873;Wood-based panels;5516;Production;m3;1933100;2074400;2247100;2509900;2741400;3334100;3395400;3749700;3992400;4176500;4319300;4970400;5590200;5555500;4805000;5285200;4918200;5184200;5481200;5370200;4759200;4473200;4482200;4501200;4778200;4893200;5159200;5609200;5624200;5459200;4900200;5243000;5724000;6127200;6833400;7172400;7576100;7895700;8052100;8676800;8458690;8290310;8601229;9037124;9035500;9722628;9537859;8926741;7811279;8906798;8963785;8444744;8659508;8761609;9029628;8997151;9468522;9313160;9258273;9075721;10213372;9755778;9103229 -5402;'154;Northern Europe;1873;Wood-based panels;5616;Import quantity;m3;947200;1092500;1191800;1470300;1508200;1579043;2033263;2302079;2203344;2444057;2512005;3022290;4128354;2957666;2854545;3298339;3054665;3701580;4069900;3150200;3587500;3539900;3757600;3939300;4173300;4311161;4544144;5010937;5139148;4659160;4039196;4183099;3891036;4125089;4411381;4396327;4763310;5508709;5345238;5909591;6257089;6542131;6590781;7513846;7480679;8145452;8962876;7332300;5685757;6221515;6731118;6154870;6330029;6895060;7064813;7492217;8013076;8482468;8252169;8085340;8798679;8002052;6967464 -5402;'154;Northern Europe;1873;Wood-based panels;5622;Import value;1000 USD;116259;130869;144784;181178;190951;182179;227144;237607;247158;287292;299784;374715;650812;571620;538800;641994;657594;838698;1106482;969497;986582;939383;905142;888883;869598;1071202;1256746;1640375;1489782;1574120;1344556;1394526;1192828;1413434;1653843;1661941;1671125;1686220;1641710;1683427;1698237;1874086;2152896;2827991;2852822;2944084;3759957;3381082;2211142;2518502;2904083;2749854;2889344;3170784;2909778;2826476;3133658.79;3480265;3169751;2998797;4110294;4299715;3535825 -5402;'154;Northern Europe;1873;Wood-based panels;5916;Export quantity;m3;1058600;1105900;1142800;1235300;1237800;1457678;1635541;1796163;1897689;1973831;2007889;2282274;2616610;2099841;1765572;1964721;1890000;2154500;2190700;1961500;1979700;1820800;1721500;1743000;1591000;1592526;1589554;1678163;1722818;1631184;1393400;1406019;1964022;2392218;2714237;3234037;3506137;3758874;3736949;3791410;3626689;3807406;3941703;4031533;4075056;4299701;4474946;4064583;3362386;3995755;4012805;4136203;4121503;4153099;4083624;4228698;4615709;4514723;4322532;4447373;4788438;4572993;4500329 -5402;'154;Northern Europe;1873;Wood-based panels;5922;Export value;1000 USD;100854;105738;113005;127784;134320;133365;142781;151960;173641;190625;205713;256672;350493;353493;289338;353936;378526;452372;620764;684510;622235;535355;480496;467939;415847;532479;670145;735691;761922;879212;694848;705968;729288;938302;1213082;1265241;1338129;1494319;1367008;1130913;1086595;1170752;1419200;1661455;1755481;2114835;2419919;2311527;1514529;1765770;2009960;1896105;1987324;2021686;1682056;1715617;1970218.33;2092334;1983823;1934085;2691335;2808443;2675235 -5402;'154;Northern Europe;1640;Plywood and LVL;5516;Production;m3;534400;552000;599100;666500;691200;689300;716200;757200;834900;862400;854600;893500;931000;749000;590000;664000;618000;698000;791000;780000;731000;717000;708000;716000;680000;727000;739000;734000;779000;763000;580000;613500;802000;893200;1004500;1166000;1291000;1347700;1432500;1541000;1542000;1657500;1673900;1723400;1755700;1857800;1758353;1621188;1102079;1368435;1437964;1447573;1546934;1584068;1578795;1619236;1786283;1811230;1674057;1599352;1770458;1756652;1527852 -5402;'154;Northern Europe;1640;Plywood and LVL;5616;Import quantity;m3;636300;707600;780600;955800;962400;887200;1128600;1220200;1159000;1303500;1189400;1346400;1807000;1173200;1100100;1379500;1189160;1426600;1610200;1130600;1351500;1238000;1436600;1388700;1354300;1618236;1673836;2086585;2084655;2043700;1707400;1806887;1558299;1717674;1666499;1651799;1546699;1674799;1813651;1928229;2065994;2059196;2142462;2468293;2496873;2576168;2815101;2527577;1855560;2018885;2201516;2123722;2186506;2281146;2292402;2401634;2295455;2775764;2605163;2510160;2690611;2482251;2025731 -5402;'154;Northern Europe;1640;Plywood and LVL;5622;Import value;1000 USD;87585;96848;107971;133330;139615;131951;166011;168103;177734;205451;197363;236405;418915;358373;294952;387582;380045;464914;634887;509687;553160;500786;505170;479530;443436;555655;598849;868527;770390;834062;680560;737654;633461;740016;762905;743111;795681;736545;725935;722577;733337;731312;784669;1077465;1144532;1183421;1483559;1439644;842224;1018447;1163235;1110349;1160137;1224692;1154306;1095365;1220691.25;1413157;1219366;1102364;1519610;1661808;1219223 -5402;'154;Northern Europe;1640;Plywood and LVL;5916;Export quantity;m3;344300;370000;398400;454900;474400;474000;498800;556000;631500;637500;610300;647900;660100;444400;398000;491100;451000;588200;646900;668400;670500;663700;607400;613500;539700;587069;623893;622407;632062;643400;506800;477158;702551;875308;927837;1157237;1223337;1228337;1305627;1356957;1409559;1530918;1635818;1728011;1628435;1765889;1745476;1457244;1058365;1283917;1338980;1329944;1403906;1475129;1416187;1478970;1648494;1654854;1585577;1530406;1702870;1667233;1571037 -5402;'154;Northern Europe;1640;Plywood and LVL;5922;Export value;1000 USD;44324;46978;52497;61106;66604;69354;75343;80492;98091;105368;109757;129381;168276;161283;118930;180137;197776;251539;340849;407498;356586;328641;295654;298471;254250;333862;436677;434372;456743;583956;430529;423700;446075;571521;684446;692123;705931;727163;688442;658026;653040;712054;849316;997553;1027997;1140918;1282557;1219890;708227;833231;987532;923872;990783;1075079;917442;926377;1056906.73;1125363;1058276;993803;1297405;1488909;1451857 -5402;'154;Northern Europe;1607;Laminated Veneer Lumber (LVL);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;254000;254000 -5402;'154;Northern Europe;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71351;58631 -5402;'154;Northern Europe;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54493;42969 -5402;'154;Northern Europe;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;256004;247044 -5402;'154;Northern Europe;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;189282;188471 -5402;'154;Northern Europe;1646;Particle board and OSB (1961-1994);5516;Production;m3;360800;470700;557700;679100;847800;927600;990500;1223500;1387600;1564300;1782300;2313600;2892500;3058000;2850000;3223000;3046000;3282000;3440000;3404000;3035000;2745000;2734000;2742000;3083000;3158000;3328000;3785000;3765000;3694000;3440000;3712100;3793000;3982000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5402;'154;Northern Europe;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;62700;96100;107100;160400;225200;266000;338200;494500;491300;565200;770400;1105300;1616300;1222100;1275000;1390600;1428400;1782100;1943300;1614000;1794800;1880700;1888800;2119500;2312700;2132429;2244489;2359768;2473602;2051954;1767800;1746158;1723543;1821044;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5402;'154;Northern Europe;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;3405;5943;6926;10713;15014;16751;21983;31376;33363;40577;58559;90855;161073;151726;174364;178972;207016;290948;364942;352682;328785;340893;301830;314646;324997;387353;510016;573339;529841;525465;458596;424694;351392;419049;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5402;'154;Northern Europe;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;81600;89900;87100;100700;129400;150300;195800;267400;287600;377800;494000;724200;1039900;851900;809700;856700;851200;977000;991400;816800;858800;756000;712500;722400;660500;600474;617985;637131;703291;689418;584600;537556;826604;999310;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5402;'154;Northern Europe;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;5733;6387;6009;7428;9213;10574;13405;17203;19711;26500;34639;54429;94784;96300;95688;94752;100099;119170;183415;165959;164882;123432;103657;95120;88245;103343;132290;145017;170034;177112;153068;146054;135346;195573;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5402;'154;Northern Europe;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4185000;4218000;4356000;4568700;4495200;4800100;4659400;4451740;4569100;4786800;4738800;5060100;5097910;4850879;4352400;4709776;4689961;4285291;4344998;4401801;4674337;4604014;4803000;4524835;4559463;4370106;5143941;4877053;4574405 -5402;'154;Northern Europe;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1969526;1878226;2057526;2233226;1980487;2206287;2337085;2342965;2332771;2560648;2575638;2346661;2970622;2038541;1552884;1689955;1873863;1727084;1737041;1946233;2097864;2312286;2569198;2447140;2379509;2149667;2295632;2205128;1980022 -5402;'154;Northern Europe;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;476023;463145;493717;464614;445853;442234;466325;439056;506019;627765;633391;611258;969049;700762;439505;497687;583397;533801;574200;643664;586299;596259;657981.77;710758;636528;578272;765520;839453;736782 -5402;'154;Northern Europe;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1106200;1202800;1274200;1283700;1215511;1252820;1152923;1083738;1080602;1130634;1093040;991232;1259692;1137482;803979;1009855;908620;992604;939405;879951;998859;1022694;1066435;974243;871124;931549;964322;887963;1056101 -5402;'154;Northern Europe;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;278035;285230;319558;413381;347067;220104;181283;172943;199559;244421;245356;303308;373259;367774;227894;257784;284378;281069;274610;264164;242226;240265;270018.25;275534;232297;241064;313067;326198;342662 -5402;'154;Northern Europe;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;203000;301000;321000;333000;536000;486000;468000;488000;578000;569100;587000;588000;693690;742600;835000;1057064;1062703;1054227;1139414;1168607;1201506;1260411;1311749;1391475;1405148;1563598;1563598;1563598;1563597 -5402;'154;Northern Europe;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;240100;214371;200649;224056;427770;390695;567822;563643;913030;651799;493553;436997;436863;479151;482290;548272;633477;678016;702485;909055;913066;891564;973380;962599;829056;860937 -5402;'154;Northern Europe;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58670;58419;55737;54015;75681;89672;143042;159049;158917;196394;147897;114519;132058;157435;141879;168962;192153;170944;162484;221942.91;260358;253182;249376;397056;319498;256451 -5402;'154;Northern Europe;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100000;150000;338000;346022;149360;164911;252112;334285;266776;302846;394069;386340;514584;630134;770308;826974;866834;888398;921858;830188;895768;1021433;998341;947295;1088431;960047;1037191;1106560 -5402;'154;Northern Europe;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40797;61196;116761;117434;34174;30557;41686;68234;89386;96932;122017;132597;161615;154471;231554;263497;246140;281029;257872;172056;189702;237099.1;259460;264559;263358;462897;394272;323649 -5402;'154;Northern Europe;1874;Fibreboard;5516;Production;m3;1037900;1051700;1090300;1164300;1202400;1717200;1688700;1769000;1769900;1749800;1682400;1763300;1766700;1748500;1365000;1398200;1254200;1204200;1250200;1186200;993200;1011200;1040200;1043200;1015200;1008200;1092200;1090200;1080200;1002200;880200;917400;1129000;1252000;1440900;1487400;1608100;1646300;1588400;1849700;1789290;1693070;1780229;1957824;1954000;2216728;1987906;1712074;1521800;1771523;1773157;1657653;1628162;1607133;1574990;1513490;1567490;1585620;1619605;1542665;1735375;1558475;1437375 -5402;'154;Northern Europe;1874;Fibreboard;5616;Import quantity;m3;248200;288800;304100;354100;320600;425843;566463;587379;553044;575357;552205;570590;705054;562366;479445;528239;437105;492880;516400;405600;441200;421200;432200;431100;506300;560496;625819;564584;580891;563506;563996;630054;609194;586371;775356;866302;1159085;1360584;1336729;1574426;1629954;1712200;1724853;1917083;1844525;2309593;2525354;2272629;1840316;2075812;2176588;1821774;1858210;2034204;1996531;2075812;2239368;2346498;2375933;2452133;2849837;2485617;2100774 -5402;'154;Northern Europe;1874;Fibreboard;5622;Import value;1000 USD;25269;28078;29887;37135;36322;33477;39150;38128;36061;41264;43862;47455;70824;61521;69484;75440;70533;82836;106653;107128;104637;97704;98142;94707;101165;128194;147881;198509;189551;214593;205400;232178;207975;254369;414915;455685;381727;426391;411503;462879;444560;628037;772536;979719;915850;990488;1110955;1092779;814894;870310;1000016;963825;986045;1110275;998229;972368;1033042.86;1095992;1060675;1068785;1428108;1478956;1323369 -5402;'154;Northern Europe;1874;Fibreboard;5916;Export quantity;m3;632700;646000;657300;679700;634000;833378;940941;972763;978589;958531;903589;910174;916610;803541;557872;616921;587800;589300;552400;476300;450400;401100;401600;407100;390800;404983;347676;418625;387465;298366;302000;391305;434867;517600;680200;774000;858600;908837;869789;1032273;899296;940638;890998;906112;1050735;1148511;1083438;955273;869908;931675;938231;946821;889794;876161;838390;831266;879347;887285;918536;896987;1161199;980606;766631 -5402;'154;Northern Europe;1874;Fibreboard;5922;Export value;1000 USD;50797;52373;54499;59250;58503;53437;54033;54265;55839;58757;61317;72862;87433;95910;74720;79047;80651;81663;96500;111053;100767;83282;81185;74348;73352;95274;101178;156302;135145;118144;111251;136214;147867;171208;250601;247091;251444;237014;214065;218609;221715;244069;302091;330095;385196;548592;631506;562248;423937;443201;474553;445024;440902;424571;350332;359273;406194.25;431977;428691;435860;617966;599064;557067 -5402;'154;Northern Europe;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;461200;485100;601300;474500;480000;517400;456370;366700;307966;342849;351000;368728;332738;238413;171017;180135;186301;166843;182938;159040;126000;131300;136700;134800;167800;173600;184800;164410;149010 -5402;'154;Northern Europe;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;309441;304987;351885;376184;424632;591866;570813;603456;734054;822721;763694;748848;511493;452613;361483;395885;412516;387213;368439;383824;455869;448983;444855;444581;438172;433857;502419;558997;449817 -5402;'154;Northern Europe;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;163563;192882;194991;185668;178282;260094;264791;389355;533177;669336;608494;606785;324446;316331;246433;260770;285545;289787;276828;312392;313345;276884;258213.42;263976;248766;254219;321557;411819;483169 -5402;'154;Northern Europe;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;322000;384200;343100;362270;326214;274903;284806;317465;278724;242666;277781;352161;278426;184738;110726;119046;126933;136617;149654;114957;136299;124535;127379;134241;135763;176167;210516;247242;172569 -5402;'154;Northern Europe;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111153;123492;106480;97269;94017;96236;120925;136574;168867;159664;125281;308707;210753;155722;79880;85892;88279;81135;91271;58352;56749;48927;47872.1;52943;49279;87640;128469;127603;140902 -5402;'154;Northern Europe;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;656300;691300;749300;912000;940500;1134500;1152600;1138600;1276000;1326455;1315000;1509000;1352008;1130597;1074258;1234318;1227563;1144400;1125136;1170000;1171000;1104000;1128643;1162450;1189450;1094450;1272450;1125450;1080450 -5402;'154;Northern Europe;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;363200;435300;615200;738600;663384;632990;569778;700740;678754;743258;787795;1211472;1722226;1554406;1263845;1396627;1474621;1289417;1333625;1477859;1307650;1347323;1523219;1666362;1664548;1684516;2013922;1684334;1362239 -5402;'154;Northern Europe;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;227421;239918;157389;195115;183018;149582;142957;182415;181388;237615;243767;307238;705410;706444;517317;552475;648165;614024;647634;733429;619753;623545;706195.77;767176;757260;752537;1017722;983082;718076 -5402;'154;Northern Europe;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;219100;237800;329200;383567;378896;490270;385076;398860;442058;456462;602739;603234;685682;662961;654745;669090;698340;690862;604454;611847;575888;587127;614482;630906;658781;596443;804841;578250;479333 -5402;'154;Northern Europe;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117528;98520;111549;110780;94934;88524;72668;78491;96940;122813;225436;175380;384981;368002;313284;323337;354797;332938;310153;325725;263788;277383;318268.7;342772;348119;314180;454935;410009;348138 -5402;'154;Northern Europe;1650;Other fibreboard;5516;Production;m3;229000;218600;217400;231500;239000;764000;743600;749600;745200;722800;684800;725600;733000;760600;640800;647000;592000;556000;591000;536000;413000;484000;493000;438000;390000;384000;411000;398000;379000;359000;304000;279400;321000;309000;323400;311000;257500;259800;167900;197800;180320;187770;196263;288520;288000;339000;303160;343064;276525;357070;359293;346410;320088;278093;277990;278190;302147;288370;262355;274615;278125;268615;207915 -5402;'154;Northern Europe;1650;Other fibreboard;5616;Import quantity;m3;36100;44300;46200;71800;66900;180600;260000;280400;260000;256400;248000;247600;320000;265200;223200;213353;179800;199700;202300;154500;193700;190800;141700;146900;198600;233024;338323;158057;156961;114310;131400;154708;180366;83885;102715;126015;192000;245800;248713;349570;489363;408004;312045;351104;293036;349273;291635;265610;214988;283300;289451;145144;156146;172521;233012;279506;271294;235555;273213;333760;333496;242286;288718 -5402;'154;Northern Europe;1650;Other fibreboard;5622;Import value;1000 USD;4132;5059;5027;8620;8836;7269;8061;8655;9032;8207;9099;8965;13081;3654;15274;13390;13385;16140;18931;17501;19899;18974;13043;12514;16184;23834;38466;20120;18545;16802;14679;24555;23786;22933;23931;22885;29347;45608;50203;53203;36812;56267;57971;72768;63589;76465;81099;70004;51144;57065;66306;60014;61583;64454;65131;71939;68633.67;64840;54649;62029;88829;84055;122124 -5402;'154;Northern Europe;1650;Other fibreboard;5916;Export quantity;m3;107000;99100;104300;109200;110700;320600;423200;440400;441600;451000;390200;377400;380400;372700;261000;278932;297400;303700;265000;229900;208600;190600;169100;178800;175000;164800;136000;75900;59400;59000;53200;63107;75378;74000;139100;152000;186300;163000;164679;267100;229414;224313;170216;206984;170215;193116;119330;107574;104437;143539;112958;119342;135686;149357;126203;119604;137486;122138;123992;124377;145842;155114;114729 -5402;'154;Northern Europe;1650;Other fibreboard;5922;Export value;1000 USD;10249;9647;9998;10999;11589;11212;11828;12124;12410;13386;13004;13978;17235;21052;16752;17736;23007;22348;25592;25078;22016;18151;15728;14442;15966;17218;15373;19393;13297;9739;8976;14390;11128;13502;21920;25079;33415;28965;25114;33849;28122;29004;36284;47618;34479;64505;35772;38524;30773;33972;31477;30951;39478;40494;29795;32963;40053.45;36262;31293;34040;34562;61452;68027 -5402;'154;Northern Europe;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;808900;833100;872900;932800;963400;953200;945100;1019400;1024700;1027000;997600;1037700;1033700;987900;724200;751200;662200;648200;659200;650200;580200;527200;547200;605200;625200;624200;681200;692200;701200;643200;576200;638000;808000;943000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5402;'154;Northern Europe;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;212100;244500;257900;282300;253700;245243;306463;306979;293044;318957;304205;322990;385054;297166;256245;314886;257305;293180;314100;251100;247500;230400;290500;284200;307700;327472;287496;406527;423930;449196;432596;475346;428828;502486;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5402;'154;Northern Europe;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;21137;23019;24860;28515;27486;26208;31089;29473;27029;33057;34763;38490;57743;57867;54210;62050;57148;66696;87722;89627;84738;78730;85099;82193;84981;104360;109415;178389;171006;197791;190721;207623;184189;231436;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5402;'154;Northern Europe;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;525700;546900;553000;570500;523300;512778;517741;532363;536989;507531;513389;532774;536210;430841;296872;337989;290400;285600;287400;246400;241800;210500;232500;228300;215800;240183;211676;342725;328065;239366;248800;328198;359489;443600;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5402;'154;Northern Europe;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;40548;42726;44501;48251;46914;42225;42205;42141;43429;45371;48313;58884;70198;74858;57968;61311;57644;59315;70908;85975;78751;65131;65457;59906;57386;78056;85805;136909;121848;108405;102275;121824;136739;157706;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5402;'154;Northern Europe;1879;Total fibre furnish;5510;Production;t;12934300;12622200;13546000;15111700;15799100;15830100;15989900;17081100;18294200;19215900;18236200;19429000;21257000;21523000;17868400;18420000;17425000;19146000;20988000;20900000;20740000;19123000;20783000;22788000;23002000;23700000;24978000;26219000;26838000;26516000;26047000;26024100;27616300;29912100;30035000;29639800;32605000;32510300;32911270;35061190;34047050;35500200;36209066;38382071;37422000;40425851;40770396;39499653;34820786;36773306;36056764;35489464;34781678;34308336;34377286;34717874;35253077;35761869;35085379;32950557;34103123;33277464;30965838 -5402;'154;Northern Europe;1879;Total fibre furnish;5610;Import quantity;t;760700;687900;750000;864400;934100;902000;791300;2945500;2964800;3253300;2377800;2680600;2786600;2862406;2249333;2578527;2382188;2482206;2670300;2398800;2302200;1910500;1998600;2264600;2206600;2276813;2586516;2676206;2804599;2886119;2896519;3317065;2856695;3350531;3468491;2988461;3105034;2987037;3240154;3520589;3285010;3366120;3338604;3551704;3575038;3366845;3427233;3444727;3045920;3631779;3698553;3595758;3156714;3240722;3327883;3242286;3247521;3396791;2697139;2246020;2338595;2596725;2339828 -5402;'154;Northern Europe;1879;Total fibre furnish;5622;Import value;1000 USD;59362;53701;57878;68120;78491;77598;68633;345613;373389;465222;370968;399441;474440;789774;807557;866125;755149;686143;897657;1042773;1009946;781599;699836;899986;742247;881593;1310181;1559047;1752449;1717842;1252287;1399526;970744;1196846;2013996;1289951;1236231;1117629;1200791;1620788;1289308;1125292;1257120;1399448;1425672;1518546;1711718;1929956;1255243;1840082;2060274;1782811;1620922;1622547;1726862;1533872;1622278.16;1837672;1424133;1180461;1224614;1653833;1259029 -5402;'154;Northern Europe;1879;Total fibre furnish;5910;Export quantity;t;1056800;982300;1070400;1210400;1188600;1199200;1087200;6176200;6277300;6545400;5375900;5920900;7210800;6892367;4748045;4960164;4870000;5894548;5941600;5681800;5218227;4551900;5356500;5787800;5510900;5463800;5799800;6035600;5948700;5575100;5371400;5548167;5629973;6071900;5425839;5750233;6356933;6193302;6684113;6744470;6839769;8226008;9339952;10813667;10970965;12381535;13345390;13265324;11790015;12307408;12871627;12872315;12896314;12954158;13558731;14067222;13975385;14299679;15103360;14392043;15037520;14181426;14806160 -5402;'154;Northern Europe;1879;Total fibre furnish;5922;Export value;1000 USD;68981;63615;68481;79027;82978;82378;74299;660921;716133;872840;778606;844218;1204576;1762241;1750969;1712919;1493422;1611234;2073969;2422804;2229104;1722361;1740533;2170576;1798085;2027215;2757797;3246920;3622767;3346052;2597677;2492888;1913774;2559718;3388845;2595657;2530381;2266287;2452582;3241236;2632669;2776661;3305750;3907681;3772816;4528246;5356484;5698831;3632319;5615247;6151202;5258933;5484988;5549160;5138553;4789382;5416571.8;6810966;5991931;5149838;7250393;7399872;6851179 -5402;'154;Northern Europe;1878;Pulp for paper;5510;Production;t;10920300;10729200;11568000;12941700;13508100;13558100;13775900;14656100;15744200;16544900;15670200;16474000;18144000;18396000;15140400;15521000;14394000;16001000;17630000;17416000;17342000;15801000;17351000;19091000;19186000;19570000;20658000;21558000;22098000;21595000;21001000;20928600;22125300;23208100;23615000;22597800;24788000;25018900;25192570;26745000;25370700;26204300;26511300;27521600;25825000;28081300;27945200;26120704;22242176;24553177;24111609;23522337;23085708;22512006;22553726;23153467;23709830;24525786;24082224;22991756;23595023;23258264;21266638 -5402;'154;Northern Europe;1878;Pulp for paper;5610;Import quantity;t;760700;687900;750000;864400;934100;902000;791300;2945500;2964800;3121300;2286800;2596600;2652600;2643700;2120100;2362217;2142562;2312000;2426400;2125900;2046700;1707100;1780300;1947200;1846900;2018303;2319956;2312020;2331957;2319200;2219400;2408627;2070454;2228494;2336646;2176246;2295927;2177617;2282780;2426087;2244211;2266652;2203496;2385000;2421791;2177731;2237143;2213068;1738078;2007713;2095377;2146161;2071702;2188139;2198633;2228428;2289252;2311575;1952792;1640403;1682183;1877673;1667326 -5402;'154;Northern Europe;1878;Pulp for paper;5622;Import value;1000 USD;59362;53701;57878;68120;78491;77598;68633;345613;373389;459666;366973;395706;466951;764822;794811;842187;727570;668700;866927;1005680;982441;758883;678508;868266;702988;853382;1273664;1500559;1675473;1630905;1172211;1298329;906716;1086498;1782639;1191698;1159167;1050774;1129789;1505715;1171371;1020515;1134230;1272055;1307144;1386538;1543588;1719814;1084789;1554287;1701431;1517422;1428829;1462718;1592878;1401063;1451915.73;1694924;1295356;1069502;1077565;1490304;1153250 -5402;'154;Northern Europe;1878;Pulp for paper;5910;Export quantity;t;1056800;982300;1070400;1210400;1188600;1199200;1087200;6176200;6277300;6293400;5157900;5695900;6908800;6506100;4509600;4671756;4598200;5638100;5583200;5228700;4829900;4186300;4912100;5183300;4947100;4830700;5084300;5203300;5042600;4719300;4632000;4695586;4842217;4939197;4413933;4667433;5014233;4861170;5205247;5080889;5121956;5899393;6196218;6294867;5978025;6507780;6521473;6283407;5134588;5853987;6112952;6197374;6439252;6308801;6365289;6774165;6989942;7684062;8697342;8531944;8433817;7875476;8691892 -5402;'154;Northern Europe;1878;Pulp for paper;5922;Export value;1000 USD;68981;63615;68481;79027;82978;82378;74299;660921;716133;857867;766397;830835;1182973;1710535;1723264;1679188;1462526;1581880;2026305;2350924;2171963;1672975;1687487;2095085;1723879;1936191;2642789;3096540;3469341;3173079;2460481;2358814;1820004;2421946;3194412;2437103;2361320;2134850;2300458;3007008;2427940;2505529;2884033;3295325;3062577;3693313;4238587;4470633;2841285;4438240;4730358;4037537;4344722;4393165;4001779;3803912;4189513.04;5725218;5159911;4422244;5771412;6032496;5902269 -5402;'154;Northern Europe;1875;Wood pulp;5510;Production;t;11373700;11187200;12178000;13606700;14206100;14208300;14500400;15267100;16321200;17136900;16224200;17080000;18712000;19003000;15662400;15973000;14804000;16433000;18076000;17808000;17715000;16142000;17696000;19446000;19455000;19970000;21103000;22054000;22643000;22115000;21512000;21428500;22625200;23651000;24057900;23046800;25237000;25182900;25354570;26620000;25145700;25975300;26645300;27660600;26108000;28409300;28269200;26431704;22586176;24851775;24419458;24114337;23938708;23390006;23430726;24229467;24773830;25552786;25108081;24007830;24602383;24259521;22110895 -5402;'154;Northern Europe;1875;Wood pulp;5610;Import quantity;t;1042200;956800;1078900;1194400;1262400;1181700;1089500;3302300;3329100;3472000;2613600;2979100;3062500;2992900;2407300;2630640;2455762;2590100;2754400;2423600;2269600;1965700;2005700;2168100;2045700;2216842;2659455;2507801;2524595;2500358;2442558;2722938;2332576;2447042;2524047;2310947;2431328;2304318;2318374;2438030;2279914;2296929;2236478;2396881;2541657;2345791;2381863;2346543;1792249;2106075;2214172;2251330;2130525;2234506;2245475;2276290;2361986;2383248;2040922;1733126;1773278;1949425;1757398 -5402;'154;Northern Europe;1875;Wood pulp;5622;Import value;1000 USD;109725;98470;111490;125315;137158;125010;117665;403895;435676;524464;428484;462067;548374;871065;894359;920634;830522;768925;999141;1147449;1094514;886091;782130;973200;794545;948540;1455254;1606568;1787227;1741238;1302680;1482813;1075456;1218045;1914091;1277276;1269924;1158097;1130354;1503868;1183463;1025478;1139165;1275357;1385397;1507625;1660301;1813095;1087431;1640193;1838607;1634037;1471729;1494406;1612675;1410639;1484777.83;1716001;1322983;1105581;1111768;1498842;1215413 -5402;'154;Northern Europe;1875;Wood pulp;5910;Export quantity;t;1714200;1624500;1726300;1948000;1890300;1830300;1777300;6798200;6913800;6885100;5680800;6211500;7503400;7035900;4856900;5092572;5034900;6079400;6044800;5617800;5192000;4506400;5247900;5479300;5253500;5074800;5333600;5453600;5278800;4896500;4770300;4791579;4947681;5045297;4590433;4887233;5283733;5140170;5448976;5322089;5386970;6120371;6457793;6572465;6248793;6847029;6854682;6603223;5487675;6175522;6430012;6779741;7166340;7042635;7149029;7313304;7555254;8265325;9320909;9239658;9270301;8374235;9162881 -5402;'154;Northern Europe;1875;Wood pulp;5922;Export value;1000 USD;177628;163207;169632;202121;205172;187390;186823;756782;820047;970359;867600;938047;1313425;1913256;1907592;1876282;1655854;1764062;2253559;2591229;2402666;1870149;1869543;2256854;1870004;2074098;2819531;3322084;3699255;3341338;2565290;2430043;1884683;2488849;3355914;2602178;2542822;2312136;2460337;3171937;2604837;2649794;3064823;3520854;3292831;3961556;4574960;4856139;3188820;4877130;5359150;4836738;5217586;5213150;4714464;4330821;4784609.28;6312290;5723620;4981518;6585994;6609883;6452738 -5402;'154;Northern Europe;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7845830;8189786;7697772;7041830;6647838;6707830;5692130 -5402;'154;Northern Europe;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;309684;276496;248518;285058;255418;291958;202607 -5402;'154;Northern Europe;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;150461.75;133624;111762;118385;112403;150568;100541 -5402;'154;Northern Europe;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1043675;1087012;1049866;1076620;1104907;1022248;859218 -5402;'154;Northern Europe;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;493995.74;574821;491048;453358;539070;597104;467866 -5402;'154;Northern Europe;1654;Mechanical wood pulp (1961-2016);5510;Production;t;3530300;3280000;3443600;3752000;3942400;4041200;3851200;4221200;4517600;4787300;4552700;4770000;5317000;5443000;4292400;4265000;4237000;4723000;5342000;5410000;5375000;5030000;5447000;6329000;6593000;6793000;7144000;7545000;7945000;8175000;7753000;7508300;8067200;8591000;8924400;8319800;9046000;9402400;9217070;9751000;9307000;9168000;9399600;9769000;9341000;10048300;10192200;9346500;7769058;8397143;8019671;7406828;7060108;6953156;6767706;6933053;;;;;;; -5402;'154;Northern Europe;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;760600;686700;729300;812200;873700;817900;702500;739900;685600;647800;461300;463100;454100;441500;276400;347817;315762;327200;307900;201400;146300;117800;139900;252100;218700;229703;203956;218820;204157;188000;169800;159598;132496;115890;144400;103500;116000;85700;75039;103756;157252;123208;124200;142995;129105;148733;119742;122814;83628;83256;67616;57025;32774;27863;18026;26496;;;;;;; -5402;'154;Northern Europe;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;59352;53642;56270;62093;71130;66558;56609;60557;57216;58684;44256;42550;53562;83349;74311;73413;64948;61420;68150;64866;51930;41287;40292;88873;71088;71505;80821;105196;99734;94936;72116;67224;48184;40879;48465;44547;47592;37374;30567;51779;70505;54913;64201;73482;64485;78079;67278;69057;43444;45685;39648;27967;15362;12845;7445;6890;;;;;;; -5402;'154;Northern Europe;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;1040600;950900;1033000;1139600;1112300;1118400;997000;1050100;1032700;1038800;766900;858300;962700;1104400;596700;571056;534100;674200;695600;616600;506500;473900;518200;566800;595200;562500;586300;639000;574200;581700;450300;369866;375858;434897;416833;317633;338033;279000;306081;306340;306292;364745;370641;369259;392470;454508;568701;523386;416421;377970;392530;220149;147118;222104;170426;119780;;;;;;; -5402;'154;Northern Europe;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;67802;61409;65824;73756;77089;76262;67510;73380;73737;82280;63062;70022;98818;192388;150827;133518;110741;125760;165942;178815;140851;119289;117109;137680;144634;168108;203821;265210;249089;244090;170393;140469;114549;151435;213887;131660;123896;91744;101950;119439;105892;116307;136850;151721;160973;201179;304694;303377;200849;214118;223407;119592;73809;109077;70184;47669;;;;;;; -5402;'154;Northern Europe;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;197400;273200;324400;426700;465700;502400;521000;689600;934400;990100;934500;969600;1056000;1089000;697000;808000;770000;836000;879000;845000;796000;747000;756000;789000;834000;886000;927000;1000000;966000;1025000;1022000;1000400;985000;1022000;1019000;932000;1025000;883200;887000;921000;888000;903000;910600;921000;831000;808000;796000;732134;615542;759838;727938;987063;975770;930902;995418;1078876;;;;;;; -5402;'154;Northern Europe;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;100;1200;20700;32400;38300;30900;27600;19200;20100;21800;22200;25400;23000;24100;15100;17400;13200;12500;13700;13100;15400;11300;15400;24900;23400;24500;26300;25100;32700;83000;54900;83579;88588;72519;90719;32319;27600;20590;17388;34452;61820;93412;74627;90256;96415;91950;85857;61393;29100;100413;101563;78596;209833;205536;183787;263319;;;;;;; -5402;'154;Northern Europe;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;10;59;1608;2707;3432;2543;2266;1630;1934;2365;2735;3087;3545;5891;5168;5104;3487;3039;4177;5019;5567;3566;3897;7238;6106;7908;10623;11092;19017;43514;23147;27124;22999;27789;50815;15546;11029;9958;9643;21108;32289;36043;36391;41632;43385;44610;51031;45118;16230;93884;103016;77679;127410;141129;131662;139655;;;;;;; -5402;'154;Northern Europe;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;16200;31400;37400;69300;74700;78200;88100;94600;119000;138800;120200;127600;146500;145800;86200;95800;85900;90300;111100;108000;101300;94600;90800;118900;121500;116800;114200;159200;200800;213700;230500;253832;209000;222300;273600;237100;262000;194400;186100;224614;216955;244002;283294;264296;276389;483674;433486;351657;267581;377373;318890;591749;585512;573271;640369;834737;;;;;;; -5402;'154;Northern Europe;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;1179;2206;2657;5157;5763;5912;6623;6803;8712;12639;11074;11532;15662;26932;20117;22510;18366;18607;27817;32905;30041;27988;22090;30333;29860;33376;40788;70322;102481;110401;97884;108018;72365;82098;163547;96504;87830;68772;68698;110626;85578;90548;117287;114297;114159;213667;228081;207499;120369;224678;182687;315596;332855;317287;293269;373691;;;;;;; -5402;'154;Northern Europe;1656;Chemical wood pulp;5510;Production;t;6895000;6895000;7609000;8579000;8929000;8868500;9275700;9625300;10183200;10664500;10110000;10654400;11668000;11754000;10067000;10351000;9293000;10345000;11342000;11101000;11111000;9964000;11074000;11898000;11684000;11816000;12509000;12929000;13098000;12340000;12178000;12365800;13019000;13555000;13631500;13312000;14683000;14733300;15088500;15715000;14817700;15775300;16201100;16831600;15653000;17225000;16957000;16042070;13857576;15396196;15329000;15073446;14992830;14560948;14783602;15134538;15857000;16329000;16377452;15941926;16939185;16542617;15564691 -5402;'154;Northern Europe;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;2159100;2236700;2429600;1785800;2085800;2152200;2152600;1817400;1979700;1793700;1950700;2084100;1895000;1856600;1550800;1606300;1647000;1573400;1737400;2062900;2036000;2061600;2006200;1952700;2122797;1826868;2017382;2058927;1993127;2105727;2024227;2143345;2217142;1966639;1995918;1943971;2071324;2115738;1874655;1971966;1961219;1583545;1777025;1885037;1966831;1774555;1892753;1940745;1878070;1932827;1988720;1663782;1321158;1396342;1548490;1439983 -5402;'154;Northern Europe;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;278346;310114;394074;316019;346380;403580;659200;705885;751728;645136;588500;776228;916193;900431;689726;620145;760889;610622;758278;1164319;1356826;1527752;1454520;1041643;1171858;812339;994735;1643059;1087790;1060160;963369;1036977;1369678;1013369;874895;973240;1081930;1119152;1186986;1345756;1476841;933065;1326466;1449648;1311869;1191535;1214476;1355866;1153539;1204268.6;1461882;1083179;859879;876238;1219604;973798 -5402;'154;Northern Europe;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;5029600;5123900;5113100;4269800;4708400;5798300;5254700;3823400;3998000;3973600;4870500;4768900;4492400;4210400;3611100;4297500;4479000;4215800;4132900;4359600;4358400;4215700;3893800;3928600;4048727;4247812;4279600;3721000;4109500;4410700;4387570;4712595;4548639;4597009;5283126;5536723;5634951;5286683;5563911;5512508;5401277;4444762;5094036;5352646;5326090;5643918;5430059;5505450;5791193;5915872;6581279;7619337;7429374;7301020;6825743;7796183 -5402;'154;Northern Europe;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;580600;633442;762703;692091;749021;1068249;1490827;1551554;1520579;1331808;1436658;1830461;2136625;1998116;1523649;1547498;1924136;1546901;1730090;2391119;2744502;3095918;2803345;2183216;2099137;1629023;2186967;2814495;2205343;2147731;1972970;2127819;2774980;2234616;2290624;2622513;3019182;2778468;3272300;3698200;3954741;2512948;3995891;4306876;3587629;3925085;3949876;3625714;3371341;3681747.77;5137140;4655677;3956739;5213400;5410358;5398231 -5402;'154;Northern Europe;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;4949000;3207000;3167300;3355400;3349000;3534000;3562000;3274000;3654000;3928000;3947000;3184000;3309000;3010000;3422000;3687000;3521000;3323000;2949000;3229000;3441000;3173000;3165000;3323000;3298000;3226000;3029000;2983000;2724000;2868000;2964000;2993000;2792000;2831000;2848700;2865500;3073000;2936700;3099300;3106700;3201600;3084000;3213000;3133903;3026810;2594500;2746794;2749000;2869446;2855830;2882397;2992224;3111439;3474000;2241000;2508309;2570000;2568573;2622433;2342433 -5402;'154;Northern Europe;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;301800;316700;328600;176600;280100;375800;316300;330200;262300;236900;264600;314500;273600;274600;212600;115800;77400;54200;54200;66700;60000;59700;79700;47000;42083;45681;81700;101800;114800;113000;40600;42645;43308;42006;59586;83474;61259;68071;59925;65558;54534;38227;53794;51046;40472;44709;50666;33579;27823;32915;39903;32887;39966;47538;29407;48183 -5402;'154;Northern Europe;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;33928;37343;46502;26481;35145;55187;89302;95715;69922;60774;61637;79069;91645;89737;59541;33165;27961;19902;21309;34069;35673;35982;46765;25383;21570;18495;40371;56067;59777;54555;19218;17529;25287;20078;27990;43629;33772;36766;35794;45806;39541;25282;37844;38474;28595;32890;38778;22640;18101;18640.13;26583;19667;23999;29323;26109;29629 -5402;'154;Northern Europe;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;1109400;1126700;945100;779200;813000;1040600;899000;575000;539200;608100;688100;674400;564700;424800;372000;348800;307800;263400;239500;251500;243100;157900;176100;173800;183465;145757;148200;134000;155000;138500;82570;66460;58828;50393;45586;41770;50797;40333;49756;66316;94703;79205;65293;59463;92756;114887;132409;134084;207359;183154;197098;210704;235776;356395;412627;402465 -5402;'154;Northern Europe;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;110022;115728;120571;108649;109399;163565;227577;215858;187621;168143;172912;238967;248148;178606;130539;107980;117745;91239;91083;127336;147433;108590;114017;95550;89563;55187;65127;99703;72505;58851;36634;27704;31285;22435;17428;16751;24576;16730;25229;41561;69988;42704;54147;49768;60856;76990;92672;82127;114512;103092.03;128812;122357;121680;235182;269369;246670 -5402;'154;Northern Europe;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;2240000;2328600;2672500;3059000;3458000;3817000;3758000;3989000;4523000;4624000;4303000;4534000;4384000;5098000;5760000;5801000;6229000;5719000;6438000;6993000;7329000;7587000;8062000;8509000;8749000;8228000;8238000;8622000;9245000;9671000;9660000;9655000;10877000;11005600;11402000;11840000;11181000;11970000;12389600;12998000;11959000;13363000;13048000;12460260;10717000;12062000;12043000;11841000;11919000;11654551;11767214;11987928;12346000;13061000;13242000;12736000;13642570;13252295;12206339 -5402;'154;Northern Europe;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;1158500;1239100;1406800;1091700;1312100;1298600;1330300;1145800;1313500;1262200;1381500;1477100;1368900;1304800;1123700;1264600;1313600;1257400;1409400;1608500;1605000;1638300;1570900;1680600;1767589;1568933;1747510;1760200;1666900;1766500;1797500;1983279;2054622;1827385;1817995;1749563;1885690;1926113;1738289;1834091;1852511;1518171;1687731;1802666;1889794;1698122;1815919;1885944;1822878;1871025;1903274;1601563;1239590;1311452;1487874;1359152 -5402;'154;Northern Europe;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;154350;177856;233347;196137;229612;256481;418867;471609;522444;476471;433537;583127;696352;667022;522505;495346;614963;489090;617595;926962;1091689;1213639;1156558;886600;971350;692687;851808;1473433;919079;903227;854034;938599;1272382;946418;790028;868547;971734;1005463;1094566;1241669;1381305;880702;1251025;1367531;1244703;1123578;1146160;1309543;1110828;1160612.86;1410133;1040272;814897;829056;1169704;917286 -5402;'154;Northern Europe;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;2177700;2371200;2572400;2194800;2498700;3008400;2795100;2348500;2531700;2522800;3290600;3305100;3242900;3202400;2799300;3352800;3552400;3375100;3393800;3632400;3686400;3690800;3290400;3321200;3490174;3790046;3822700;3363000;3753400;4104000;4146400;4463000;4331661;4371498;5069208;5343518;5469798;5159868;5452324;5404070;5255150;4350914;5003298;5266423;5203796;5506936;5284921;5348244;5554181;5711912;6355810;7382598;7163234;6933814;6404041;7380299 -5402;'154;Northern Europe;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;267353;314619;401782;371605;415885;578949;807017;975012;989746;880751;1000078;1288081;1558895;1542065;1202127;1222064;1549362;1252870;1434182;2009169;2323085;2721932;2393533;1799760;1809816;1446324;1971739;2537272;2030018;2006766;1863430;2018055;2656530;2132825;2205195;2537482;2935341;2716810;3207847;3631605;3847707;2462296;3922411;4232181;3502897;3829322;3847562;3528702;3240005;3564785.54;4997051;4523973;3822185;4972776;5132788;5146446 -5402;'154;Northern Europe;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37000;1027000;627143;635926;728042;667889;1015919 -5402;'154;Northern Europe;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28887;45543;29332;41602;37352;31209;32648 -5402;'154;Northern Europe;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25015.61;25166;23240;20983;17859;23791;26883 -5402;'154;Northern Europe;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20806;28371;26035;30364;10811;9075;13419 -5402;'154;Northern Europe;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13870.2;11277;9347;12874;5442;8201;5115 -5402;'154;Northern Europe;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;1196000;1670000;1592000;1478200;1442000;1446000;1490000;1379000;1349000;1463000;1485000;1238000;1035000;738000;673000;722000;700000;631000;537000;577000;624000;355000;302000;318000;327000;329000;311000;274000;251800;173000;160000;143500;113000;146000;58800;29000;28000;28000;0;0;0;0;0;7000;0;2000;2000;2000;3000;0;0;0;0;;;;;;; -5402;'154;Northern Europe;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;256800;256600;243500;146800;153800;142900;166200;95100;90500;65800;73700;76400;75600;62100;53100;44100;51800;49500;39700;40000;31300;35200;26000;20100;17485;29159;37341;30900;31700;14900;11600;10014;12943;14584;13385;10363;9302;8362;6611;10893;1735;1608;1348;1315;1245;2509;1009;710;1654;;;;;;; -5402;'154;Northern Europe;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;30412;32463;36872;24080;23356;24812;44101;36081;29790;19125;18077;25444;36056;28876;23486;15260;20129;16095;13168;15922;17275;20779;7095;7064;8417;12592;14829;12556;6655;3385;2465;1751;2453;2297;2067;1907;1561;1622;2114;3223;1506;1030;1328;1410;1283;2276;1637;1071;878;;;;;;; -5402;'154;Northern Europe;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;641600;596600;547600;403600;445100;600100;531100;324000;266800;210400;247400;256100;201800;176300;123100;125200;132700;114600;83300;81500;75900;66400;55500;55800;50737;49472;60500;57100;42600;38200;37100;40000;42359;38850;33903;34914;24905;11000;2000;7350;57;459;365;520;4545;1511;1868;519;515;;;;;;; -5402;'154;Northern Europe;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;65142;64182;71432;57617;62192;96493;130612;119007;90745;65468;65418;87918;86530;72189;44774;38540;47441;32861;27913;35432;40003;34318;31393;31106;26385;18620;25854;42666;20825;17376;14456;15899;22833;15801;12505;14041;11317;4353;950;242;90;228;214;251;3305;665;802;380;376;;;;;;; -5402;'154;Northern Europe;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;1736000;1812000;1780600;1769600;1775300;1745200;1795500;1699000;1662400;1754000;1698000;1342000;1473000;1161000;1152000;1173000;1079000;928000;759000;830000;840000;827000;762000;806000;795000;794000;772000;683000;768000;733000;760000;835000;752000;829000;820200;792000;774000;672000;706000;704800;632000;610000;649000;768097;555000;544076;585402;535000;360000;218000;24000;24164;35171;;;;;;; -5402;'154;Northern Europe;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;442000;424300;450700;370700;339800;334900;339800;246300;313400;228800;230900;216100;176900;215100;161400;181800;204200;212300;234100;347700;339700;328400;329600;205000;295640;183095;150831;166027;179727;211327;174527;107407;106269;82664;104952;100571;115073;113192;69830;61424;52439;25539;34152;30010;35320;29215;25159;20512;25715;;;;;;; -5402;'154;Northern Europe;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;59656;62452;77353;69321;58267;67100;106930;102480;129572;88766;75249;88588;92140;114796;84194;76374;97836;85535;106206;187366;212189;257352;244102;122596;170521;88565;87727;101003;102279;98993;87652;79098;69556;44576;54810;59157;74863;75301;54512;55058;54489;26051;36269;42233;37288;32791;27901;22612;23732;;;;;;; -5402;'154;Northern Europe;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;1100900;1029400;1048000;892200;951600;1149200;1029500;575900;660300;632300;644400;533300;483000;406900;316700;470700;486100;462700;416300;394200;353000;300600;371800;377800;324351;262537;248200;166900;158500;130000;121500;143135;115791;136268;134429;116521;89451;75482;59831;34772;51367;14184;25080;26240;24993;20584;10861;22603;29138;;;;;;; -5402;'154;Northern Europe;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;138083;138913;168918;154220;161545;229242;325621;241677;252467;217446;198250;215495;243052;205256;146209;178914;209588;169931;176912;219182;233981;231078;264402;256800;173373;108892;124247;134854;81995;64738;58450;66161;64332;63555;55496;54239;47948;40575;38274;24792;36956;7720;19119;24676;20571;18108;8840;14505;16448;;;;;;; -5402;'154;Northern Europe;1667;Dissolving wood pulp;5510;Production;t;751000;739000;801000;849000;869000;796200;852500;731000;686000;695000;627000;686000;671000;717000;606000;549000;504000;529000;513000;452000;433000;401000;419000;430000;344000;475000;523000;580000;634000;575000;559000;554000;554000;483000;483000;483000;483000;164000;162000;233000;133000;129000;134000;139000;283000;328000;324000;311000;344000;298598;342849;647000;910000;945000;884000;1083000;1071000;1034000;1032857;1024074;1015360;1009074;854074 -5402;'154;Northern Europe;1667;Dissolving wood pulp;5610;Import quantity;t;281500;268900;328900;349800;350400;306800;324300;384100;386700;372800;344300;404800;433200;374700;298400;285723;333100;299700;348700;314100;251300;285800;244100;244100;230200;225239;366299;227881;226138;223158;265158;356964;284624;241251;230001;182001;182001;173801;82602;82680;94203;84391;93680;92306;200399;230453;204298;201117;95976;145381;159956;148878;113363;108354;102917;108405;119475;118032;128622;126910;121518;108977;114808 -5402;'154;Northern Europe;1667;Dissolving wood pulp;5622;Import value;1000 USD;50363;44769;53612;60515;62596;52365;54256;63362;66412;69341;65474;70050;87687;122625;108995;90389;116951;115966;150586;161371;136586;151512;117796;116200;106729;110849;199491;133454;140724;148268;165774;216607;191934;154642;171752;129393;151143;147396;53167;61303;67300;59627;65333;78313;158375;197950;196236;222079;94692;174158;246295;216522;137422;125956;117702;110555;130047.48;120495;128042;127317;123127;128670;141074 -5402;'154;Northern Europe;1667;Dissolving wood pulp;5910;Export quantity;t;657400;642200;655900;739100;703300;633700;692200;623900;638200;594400;523900;517200;595900;531000;350600;427716;441300;444400;469200;400800;373800;326800;341400;314600;321000;262600;273500;297000;288100;207300;160900;119154;115011;108500;179000;223000;273000;279200;244200;242496;266714;228498;267135;303959;293251;344936;339987;326903;358911;326143;365946;641753;789792;817201;832784;567594;595707;597034;651706;733664;864374;526244;507480 -5402;'154;Northern Europe;1667;Dissolving wood pulp;5922;Export value;1000 USD;108647;99592;101151;123208;122320;105216;112690;95999;104156;112737;101373;107472;130696;203109;185094;199675;194939;183037;229339;242884;233658;199223;182846;164705;148609;142524;183803;242050;251767;183502;113797;82419;68746;68349;163985;168671;183365;178650;161870;166892;178751;152315;188173;235654;239231;274410;343985;390522;354654;442443;646180;813921;885837;836910;725297;538120;608865.78;600329;576895;571421;833524;602421;586641 -5402;'154;Northern Europe;1668;Pulp from fibres other than wood;5510;Production;t;297600;281000;191000;184000;171000;146000;128000;120000;109000;103000;73000;80000;103000;110000;84000;97000;94000;97000;67000;60000;60000;60000;74000;75000;75000;75000;78000;84000;89000;55000;48000;54100;54100;40100;40100;34000;34000;0;0;358000;358000;358000;0;0;0;0;0;0;0;0;35000;55000;57000;67000;7000;7000;7000;7000;7000;8000;8000;7817;9817 -5402;'154;Northern Europe;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;19800;22100;27100;26100;27300;22400;22100;17500;22300;23300;25500;11200;17300;19900;21600;20700;16400;28400;27200;18700;23200;31400;26700;26800;32100;33500;42000;42000;42653;22502;22703;42600;47300;46600;47100;47008;70737;58500;54114;60698;80425;80533;62393;59578;67642;41805;47019;41161;43709;54540;61987;56075;60543;46741;46359;40492;34187;30423;37225;24736 -5402;'154;Northern Europe;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;3320;3929;4953;5224;5080;4125;4543;3963;3689;6264;16382;9447;11942;13999;15741;18372;19602;24513;24304;14174;11266;15172;15691;17901;27445;28970;37935;35305;32123;23194;23095;40300;43815;40386;40073;52602;63150;55208;54664;60398;75011;80122;76863;79523;128798;92050;88252;109119;99907;94522;94268;97905;100979;97185.38;99418;100415;91238;88924;120132;78911 -5402;'154;Northern Europe;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;7600;11700;11700;6700;5600;18600;14600;18500;24200;46700;51900;30100;22600;23161;9547;2400;2500;3200;3500;200;471;1296;1700;7520;5560;26361;22483;5687;6778;7087;5824;4608;48886;59386;62704;83367;49044;28455;30395;15771;28139;25950;27890;27485;36491 -5402;'154;Northern Europe;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;2085;2579;2955;2049;790;2936;2484;4617;7061;16506;21853;15243;8988;11190;4067;1446;2483;3596;1863;1364;1991;1963;1854;8050;7383;10125;8977;6167;7612;5016;7119;3553;17388;14720;12973;16925;12612;11211;13769.54;13257;13186;12147;18942;25034;36172 -5402;'154;Northern Europe;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7700;60698;19739;24929;11033;12776;10813;11675;16647;21437;26137;8428;11567;8132;7129;10686;12855;9753;11129;10716;13424;14670;12142;20739;19753;18277 -5402;'154;Northern Europe;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2953;11485;9643;9479;4741;5042;4922;5822;8463;14187;23093;8922;7848;7537;7354;9352;11514;7111;7334;6980.67;8291;8677;8837;13386;12208;12040 -5402;'154;Northern Europe;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10900;22146;40183;46188;45821;65033;23369;18660;39862;26058;23347;18517;42500;33686;24838;13860;9723;14033;8918;6953;8322;4923;17820;11166;11273;38492 -5402;'154;Northern Europe;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5306;4553;7630;9061;5969;6157;5774;6608;15411;13708;16948;10020;8746;7322;6949;5257;3788;4198;5514;5893.47;6113;3686;7966;5689;4690;13033 -5402;'154;Northern Europe;1669;Recovered paper;5510;Production;t;2014000;1893000;1978000;2170000;2291000;2272000;2214000;2425000;2550000;2671000;2566000;2955000;3113000;3127000;2728000;2899000;3031000;3145000;3358000;3484000;3398000;3322000;3432000;3697000;3816000;4130000;4320000;4661000;4740000;4921000;5046000;5095500;5491000;6704000;6420000;7042000;7817000;7491400;7718700;8316190;8676350;9295900;9697766;10860471;11597000;12344551;12825196;13378949;12578610;12220129;11945155;11967127;11695970;11796330;11823560;11564407;11543247;11236083;11003155;9958801;10508100;10019200;9699200 -5402;'154;Northern Europe;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;132000;91000;84000;134000;218706;129233;216310;239626;170206;243900;272900;255500;203400;218300;317400;359700;258510;266560;364186;472642;566919;677119;908438;786241;1122037;1131845;812215;809107;809420;957374;1094502;1040799;1099468;1135108;1166704;1153247;1189114;1190090;1231659;1307842;1624066;1603176;1449597;1085012;1052583;1129250;1013858;958269;1085216;744347;605617;656412;719052;672502 -5402;'154;Northern Europe;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;5556;3995;3735;7489;24952;12746;23938;27579;17443;30730;37093;27505;22716;21328;31720;39259;28211;36517;58488;76976;86937;80076;101197;64028;110348;231357;98253;77064;66855;71002;115073;117937;104777;122890;127393;118528;132008;168130;210142;170454;285795;358843;265389;192093;159829;133984;132809;170362.43;142748;128777;110959;147049;163529;105779 -5402;'154;Northern Europe;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;252000;218000;225000;302000;386267;238445;288408;271800;256448;358400;453100;388327;365600;444400;604500;563800;633100;715500;832300;906100;855800;739400;852581;787756;1132703;1011906;1082800;1342700;1332132;1478866;1663581;1717813;2326615;3143734;4518800;4992940;5873755;6823917;6981917;6655427;6453421;6758675;6674941;6457062;6645357;7193442;7293057;6985443;6615617;6406018;5860099;6603703;6305950;6114268 -5402;'154;Northern Europe;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;14973;12209;13383;21603;51706;27705;33731;30896;29354;47664;71880;57141;49386;53046;75491;74206;91024;115008;150380;153426;172973;137196;134074;93770;137772;194433;158554;169061;131437;152124;234228;204729;271132;421717;612356;710239;834933;1117897;1228198;791034;1177007;1420844;1221396;1140266;1155995;1136774;985470;1227058.75;1085748;832020;727594;1478981;1367376;948910 -5402;'154;Northern Europe;1876;Paper and paperboard;5510;Production;t;9813600;9949700;10764600;11560400;12161200;12527900;12535200;13544100;14870500;15336200;14813900;15549800;17065000;17420000;13661000;15338000;15385000;16605000;18283600;17540800;17297000;16537400;17655000;19693000;20088000;20757000;21952000;23154000;23716000;24442000;24296000;24878100;26491200;28625600;28918600;28224300;30981000;31852100;32378100;33628630;32054540;32692758;33387935;35010831;33313802;34559271;33810936;32481280;28171115;30000833;29319216;28580219;27819474;27041647;26008176;25446354;25924796;26162356;24825438;22463478;22702764;21409633;18451960 -5402;'154;Northern Europe;1876;Paper and paperboard;5610;Import quantity;t;1870300;1940200;2069400;2375600;2255300;2459200;2702700;2932600;3216100;3094500;3499600;3979300;4275000;4843700;3562000;4191200;4448914;4657900;5003200;4774100;5338100;5277000;5700600;6060700;6137500;6409624;7024746;7739176;8154248;7869600;7855800;8175577;7982050;9110223;8983808;9565908;10088608;9908658;10319929;10097857;10505561;10340902;10898358;10996866;11486073;11901625;12321724;11615164;10488247;10928548;10581039;9553233;9630808;9200024;9554398;9403465;9163616;8899127;8463618;7742978;7593222;8143621;6967424 -5402;'154;Northern Europe;1876;Paper and paperboard;5622;Import value;1000 USD;324187;346063;371892;433788;420604;467362;517396;546925;623794;633730;791174;952067;1187482;2084223;1765884;1946426;2354852;2522457;3238515;3645432;3680495;3566460;3298167;3475792;3709175;4572189;5688244;7590098;7574223;8002663;7694797;7491407;6415932;7003685;8053614;8392019;8402791;8499897;8145969;7692422;7876156;7330110;8684132;9620020;9664054;10554666;11996310;11489299;9148650;9744676;10532355;9350584;9420674;9389530;8587323;7527752;7365513.73;7758453;7517860;6468293;6821217;9151339;7803098 -5402;'154;Northern Europe;1876;Paper and paperboard;5910;Export quantity;t;4050000;4278700;4741300;5249900;5416400;5800700;5786900;6515500;7371300;7754500;7856700;8607500;9614000;10208100;7123500;8340900;8860900;10054300;11113500;11151200;11170700;10920200;11379900;13152400;13567700;13628229;15116269;15999537;16435440;17075711;16907400;17351544;18625686;20630518;20356718;19545100;22381500;23689263;24211313;24814805;23332357;23759778;24823170;26992482;25347249;27161277;27050952;25634358;22160747;23521662;23778092;22547762;22564493;21720423;21791575;21346698;21287448;21824348;20678283;18943563;19861012;17849089;15530220 -5402;'154;Northern Europe;1876;Paper and paperboard;5922;Export value;1000 USD;695349;713635;798970;883898;928371;996212;1011490;1087915;1236451;1380559;1485542;1754251;2298200;3449665;3318495;3523479;3949617;4597343;5913588;6971874;6523212;6153826;5845303;6533725;6932028;8366206;10983643;12922042;13153550;15130980;14479827;14676060;12227926;14053358;18562196;17232212;16441324;18046792;17181684;17079265;15704891;15845519;18335212;21043693;20153744;22099452;24252287;25092148;20201626;21366855;23905317;20964743;21583062;20309365;17566606;16689096;17443892.64;19095027;17814214;15883010;17908593;18973070;16467264 -5402;'154;Northern Europe;2042;Graphic papers;5510;Production;t;4368700;4270000;4501300;4880700;5150100;5411200;5482000;5923300;6469300;6713200;6381700;6850000;7524000;7560000;6079000;6328000;6636000;7452000;8327000;8490000;8511000;7981000;8557000;10193000;10605000;11063000;11755000;12533000;13076000;13496000;13471000;13818100;15161600;16325600;16598600;16053000;18047000;18906600;19159000;19907240;18654090;18604947;19005621;20458350;19052271;19890475;19233822;18316722;15009722;16065043;15756538;14883630;13912766;13037105;11941869;11036155;10939377;10975125;10080071;7748402;7305356;6138090;5356687 -5402;'154;Northern Europe;2042;Graphic papers;5610;Import quantity;t;810600;874100;900000;997400;928900;1031400;1043300;1150300;1316900;1379500;1508500;1821800;1937500;2180100;1789800;2005900;2013290;2243600;2415800;2360000;2839100;2792000;2953100;3181400;3188900;3284224;3674546;4217276;4554848;4287900;4262200;4525067;4593756;5602725;5470937;5618337;6154837;6060137;6172266;6117527;6731731;6882877;7268003;7358095;7626721;7719577;7944873;7141627;6365613;6392976;6181639;5254083;5151653;4807445;4939328;4705586;4406537;4079056;3735420;3107278;2967579;3255261;2625110 -5402;'154;Northern Europe;2042;Graphic papers;5622;Import value;1000 USD;128545;139954;145602;161915;152659;169659;176329;192096;225679;251243;301572;368498;461118;852071;764693;832507;985101;1162482;1524073;1719575;1839438;1825242;1646985;1744228;1801675;2213653;2715205;4251010;4213362;4385459;4142547;3981960;3334950;4061559;4175271;4350597;5015731;4981545;4717688;4432079;4759836;4904150;5578985;6193133;6273188;6621210;7474635;6895391;5563522;5486255;5679731;5086888;4873946;4753833;4269130;3539499;3420166.82;3375156;3266285;2462109;2407642;3489605;2946405 -5402;'154;Northern Europe;2042;Graphic papers;5910;Export quantity;t;2004300;2025000;2185300;2422700;2568700;2694300;2729600;3123500;3520600;3718600;3728800;4129500;4596500;4860000;3776000;4046600;4273600;5016000;5684900;5919900;6033900;5713600;6238100;7354000;7704600;7527729;8585869;9516537;9887340;10264711;10080700;10390484;11753277;12967757;12688957;12261808;14368608;15045788;15219697;15528788;14459519;14691658;15640976;17387675;15991239;17142871;17011623;15803838;13022897;13845746;13847837;13199779;12464208;11680933;11178278;10389504;10069960;10379898;9430570;7457563;7479608;5839610;5039391 -5402;'154;Northern Europe;2042;Graphic papers;5922;Export value;1000 USD;301414;300931;324130;356103;378421;396471;413241;452519;517155;570639;602630;712414;939605;1578658;1514954;1556145;1784159;2210058;2837700;3362297;3250806;3021231;2865974;3357064;3610303;4211386;5709940;7325079;7503543;8452410;8161394;8171920;7127467;8359259;10979975;10444063;10067431;10888635;10362438;10140449;9472753;9436220;10825655;12741841;11904040;12866228;13886750;14228200;11165925;11319555;12513446;11273535;10592167;9893227;7965017;7208235;7193326.14;7996802;7327564;5402621;5599229;5980019;5132781 -5402;'154;Northern Europe;1671;Newsprint;5510;Production;t;2534900;2501600;2545400;2791700;2988500;3104600;3046500;3183200;3476000;3651900;3438400;3369500;3438000;3344000;2969000;2947000;2825000;3186000;3931000;4055000;4112000;3578000;3753000;4461000;4664000;4766000;4944000;4875000;5048000;5309000;4995000;5015400;5501000;5639000;5619000;5502000;5712000;5922200;5939000;5904000;5735000;5283000;5316000;5350000;4966140;4904640;4764314;4661435;3875812;4128536;4108726;3926226;3463471;3152349;2674575;2500484;2491570;2496747;2416293;1839248;1621281;1391165;1288165 -5402;'154;Northern Europe;1671;Newsprint;5610;Import quantity;t;754300;801400;797400;842700;749700;826700;779800;845700;954700;990500;996700;1357600;1402100;1457000;1118700;1329600;1147700;1257000;1306300;1294600;1589300;1467100;1472600;1484100;1488300;1400300;1575700;1576900;1865200;1595400;1611300;1645616;1739606;2151266;1984784;2001184;2181584;2125484;2009242;1866767;2496557;2197037;2056582;2061097;2142923;2130559;2329799;2129531;1733679;1569521;1527484;1140302;980112;927472;943796;1049059;882655;728718;699111;523418;546567;679016;586589 -5402;'154;Northern Europe;1671;Newsprint;5622;Import value;1000 USD;112818;119692;118397;122697;107772;119453;114176;124070;141158;151232;167850;233160;276486;457748;409340;467187;477947;544547;687622;778786;836748;769675;673085;622497;637655;706071;968013;1257881;1252413;1168450;1216251;1074037;809882;1023308;1315750;1504954;1293094;1256743;1145831;930017;1341931;1147760;1111834;1209901;1242595;1335110;1628055;1263887;985700;742757;885014;773002;619709;596375;511808;512625;445587.45;415259;410171;266252;289718;485419;445657 -5402;'154;Northern Europe;1671;Newsprint;5910;Export quantity;t;1488400;1484600;1554700;1698700;1780000;1887100;1903400;2108900;2213400;2351200;2336800;2530500;2623500;2543900;2083100;2118000;2039600;2536100;3133300;3252400;3428400;2945000;3149000;3594400;3821100;3737300;3967800;3743800;3847000;3944000;3661100;3673871;4130352;4259706;4029706;3961806;4420306;4630806;4336957;3991945;3879055;3502711;3583367;3568219;3087917;3112056;3104170;2873708;2375171;2620096;2675574;2589939;2234900;1864596;1695194;1713156;1766951;1719177;1532606;1286544;1209632;1029778;1008467 -5402;'154;Northern Europe;1671;Newsprint;5922;Export value;1000 USD;190953;189248;197213;213783;222787;237635;242549;258591;270308;298659;310696;359855;435068;670052;736086;716061;746087;961092;1322456;1530999;1549263;1274555;1184932;1265303;1365004;1693450;2124321;2313080;2231012;2531678;2306223;2034606;1771848;1903530;2590978;2761968;2306793;2523538;2259062;1853578;1919696;1636281;1757061;1837101;1659383;1754234;1967774;1963557;1533335;1490351;1916090;1735901;1404323;1211270;894901;866799;905013.03;1064501;936722;692515;634209;818289;757567 -5402;'154;Northern Europe;1674;Printing and writing papers;5510;Production;t;1833800;1768400;1955900;2089000;2161600;2306600;2435500;2740100;2993300;3061300;2943300;3480500;4086000;4216000;3110000;3381000;3811000;4266000;4396000;4435000;4399000;4403000;4804000;5732000;5941000;6297000;6811000;7658000;8028000;8187000;8476000;8802700;9660600;10686600;10979600;10551000;12335000;12984400;13220000;14003240;12919090;13321947;13689621;15108350;14086131;14985835;14469508;13655287;11133910;11936507;11647812;10957404;10449295;9884756;9267294;8535671;8447807;8478378;7663778;5909154;5684075;4746925;4068522 -5402;'154;Northern Europe;1674;Printing and writing papers;5610;Import quantity;t;56300;72700;102600;154700;179200;204700;263500;304600;362200;389000;511800;464200;535400;723100;671100;676300;865590;986600;1109500;1065400;1249800;1324900;1480500;1697300;1700600;1883924;2098846;2640376;2689648;2692500;2650900;2879451;2854150;3451459;3486153;3617153;3973253;3934653;4163024;4250760;4235174;4685840;5211421;5296998;5483798;5589018;5615074;5012096;4631934;4823455;4654155;4113781;4171541;3879973;3995532;3656527;3523882;3350338;3036309;2583860;2421012;2576245;2038521 -5402;'154;Northern Europe;1674;Printing and writing papers;5622;Import value;1000 USD;15727;20262;27205;39218;44887;50206;62153;68026;84521;100011;133722;135338;184632;394323;355353;365320;507154;617935;836451;940789;1002690;1055567;973900;1121731;1164020;1507582;1747192;2993129;2960949;3217009;2926296;2907923;2525068;3038251;2859521;2845643;3722637;3724802;3571857;3502062;3417905;3756390;4467151;4983232;5030593;5286100;5846580;5631504;4577822;4743498;4794717;4313886;4254237;4157458;3757322;3026874;2974579.37;2959897;2856114;2195857;2117924;3004186;2500748 -5402;'154;Northern Europe;1674;Printing and writing papers;5910;Export quantity;t;515900;540400;630600;724000;788700;807200;826200;1014600;1307200;1367400;1392000;1599000;1973000;2316100;1692900;1928600;2234000;2479900;2551600;2667500;2605500;2768600;3089100;3759600;3883500;3790429;4618069;5772737;6040340;6320711;6419600;6716613;7622925;8708051;8659251;8300002;9948302;10414982;10882740;11536843;10580464;11188947;12057609;13819456;12903322;14030815;13907453;12930130;10647726;11225650;11172263;10609840;10229308;9816337;9483084;8676348;8303009;8660721;7897964;6171019;6269976;4809832;4030924 -5402;'154;Northern Europe;1674;Printing and writing papers;5922;Export value;1000 USD;110461;111683;126917;142320;155634;158836;170692;193928;246847;271980;291934;352559;504537;908606;778868;840084;1038072;1248966;1515244;1831298;1701543;1746676;1681042;2091761;2245299;2517936;3585619;5011999;5272531;5920732;5855171;6137314;5355619;6455729;8388997;7682095;7760638;8365097;8103376;8286871;7553057;7799939;9068594;10904740;10244657;11111994;11918976;12264643;9632590;9829204;10597356;9537634;9187844;8681957;7070116;6341436;6288313.11;6932301;6390842;4710106;4965020;5161730;4375214 -5402;'154;Northern Europe;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2656000;3480500;3367050;3896000;3564000;3623000;4047800;3787000;4419000;4423616;4579251;3568601;3731115;3419075;3359365;2816355;2516651;2528543;2575382;2614844;2591179;2373530;1970068;2105441;1728817;1535162 -5402;'154;Northern Europe;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;561300;641562;635172;622811;785323;766745;852476;926258;947342;969223;948942;961909;914384;864720;818875;676240;665015;651471;603373;592264;589421;513284;503001;452934;494101;349713 -5402;'154;Northern Europe;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;435232;479652;392606;382352;556492;526231;597224;653772;707967;829613;874898;816900;700731;684346;685955;545541;566574;467407;392814;384011.88;406633;375761;339786;306313;425584;336908 -5402;'154;Northern Europe;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3005480;3271123;3417908;3194665;3406414;3454295;3968426;3938612;4518387;4560495;4635929;3576917;3681099;3454183;3192917;2990625;2746061;2654558;2734355;2604840;2795714;2466223;2021478;2223951;1835174;1436157 -5402;'154;Northern Europe;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979546;2068778;1967339;1896195;2059467;2167463;2537445;2559566;3030705;3271562;3694308;2872155;2715590;2765065;2500235;2286304;2065344;1662388;1661034;1688201.6;1882164;1723331;1324080;1466647;1652598;1404054 -5402;'154;Northern Europe;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4088400;3368500;3642190;3222090;3177615;3170046;3366173;3275760;3235464;2873360;2618157;2403135;2438759;2408142;2304218;2438693;2310532;2023001;1748569;1629926;1635637;1488407;1154136;1156875;967516;829467 -5402;'154;Northern Europe;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;984100;1038927;1024557;1052018;1111331;1361094;1533094;1635487;1605607;1493932;1303066;1383163;1472378;1512025;1434725;1444440;1420939;1351764;1300823;1292934;1267432;1131815;933525;833743;973780;797779 -5402;'154;Northern Europe;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;977777;922271;918228;947160;990283;1315547;1604698;1639711;1638180;1688229;1638620;1476441;1591451;1702021;1602548;1577852;1587871;1395771;1160240;1163854.15;1206400;1173806;886018;818641;1277047;1098204 -5402;'154;Northern Europe;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1817700;1896250;1829088;1734660;2035123;2265296;2477321;2361434;2631543;2521273;2232047;2048539;1984731;2047116;2087539;2109167;2075420;1905578;1550165;1388432;1439938;1399425;1157747;1208392;853902;720135 -5402;'154;Northern Europe;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1641068;1505304;1535414;1416583;1602873;2015021;2266727;2183826;2395149;2708288;2720143;2182015;2165622;2332866;2253486;2247945;2167129;1719465;1429102;1412334.82;1560998;1505160;1187076;1252899;1228713;955285 -5402;'154;Northern Europe;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6240000;6371000;6994000;5801000;6580332;6896575;7694377;7023371;7331371;7172532;6457879;5162174;5766633;5820595;5293821;5194247;5057573;4715750;4211720;4203037;4251562;3801841;2784950;2421759;2050592;1703893 -5402;'154;Northern Europe;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2389253;2482535;2591031;2560345;2789186;3083582;2911428;2922053;3036069;3151919;2760088;2286862;2436693;2277410;1860181;2050861;1794019;1992297;1752331;1638684;1493485;1391210;1147334;1134335;1108364;891029 -5402;'154;Northern Europe;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2311793;2169934;2191228;2088393;2209615;2625373;2781310;2737110;2939953;3328738;3117986;2284481;2451316;2408350;2025383;2130844;2003013;1894144;1473820;1426713.35;1346864;1306547;970053;992970;1301555;1065636 -5402;'154;Northern Europe;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5591802;5715367;6289847;5651139;5747410;6338018;7373709;6603276;6880885;6825685;6062154;5022270;5559820;5670964;5329384;5129516;4994856;4922948;4391828;4309737;4425069;4032316;2991794;2837633;2120756;1874632 -5402;'154;Northern Europe;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4744483;4529294;4784118;4240279;4137599;4886110;6100568;5501265;5686140;5939126;5850192;4578420;4947992;5499425;4783913;4653595;4449484;3688263;3251300;3187776.69;3489139;3162351;2198950;2245474;2280419;2015875 -5402;'154;Northern Europe;1675;Other paper and paperboard;5510;Production;t;5444900;5679700;6263300;6679700;7011100;7116700;7053200;7620800;8401200;8623000;8432200;8699800;9541000;9860000;7582000;9010000;8749000;9153000;9956600;9050800;8786000;8556400;9098000;9500000;9483000;9694000;10197000;10621000;10640000;10946000;10825000;11060000;11329600;12300000;12320000;12171300;12934000;12945500;13219100;13721390;13400450;14087811;14382314;14552481;14261531;14668796;14577114;14164558;13161393;13935790;13562678;13696589;13906708;14004542;14066307;14410199;14985419;15187231;14745367;14715076;15397408;15271543;13095273 -5402;'154;Northern Europe;1675;Other paper and paperboard;5610;Import quantity;t;1059700;1066100;1169400;1378200;1326400;1427800;1659400;1782300;1899200;1715000;1991100;2157500;2337500;2663600;1772200;2185300;2435624;2414300;2587400;2414100;2499000;2485000;2747500;2879300;2948600;3125400;3350200;3521900;3599400;3581700;3593600;3650510;3388294;3507498;3512871;3947571;3933771;3848521;4147663;3980330;3773830;3458025;3630355;3638771;3859352;4182048;4376851;4473537;4122634;4535572;4399400;4299150;4479155;4392579;4615070;4697879;4757079;4820071;4728198;4635700;4625643;4888360;4342314 -5402;'154;Northern Europe;1675;Other paper and paperboard;5622;Import value;1000 USD;195642;206109;226290;271873;267945;297703;341067;354829;398115;382487;489602;583569;726364;1232152;1001191;1113919;1369751;1359975;1714442;1925857;1841057;1741218;1651182;1731564;1907500;2358536;2973039;3339088;3360861;3617204;3552250;3509447;3080982;2942126;3878343;4041422;3387060;3518352;3428281;3260343;3116320;2425960;3105147;3426887;3390866;3933456;4521675;4593908;3585128;4258421;4852624;4263696;4546728;4635697;4318193;3988253;3945346.9;4383297;4251575;4006184;4413575;5661734;4856693 -5402;'154;Northern Europe;1675;Other paper and paperboard;5910;Export quantity;t;2045700;2253700;2556000;2827200;2847700;3106400;3057300;3392000;3850700;4035900;4127900;4478000;5017500;5348100;3347500;4294300;4587300;5038300;5428600;5231300;5136800;5206600;5141800;5798400;5863100;6100500;6530400;6483000;6548100;6811000;6826700;6961060;6872409;7662761;7667761;7283292;8012892;8643475;8991616;9286017;8872838;9068120;9182194;9604807;9356010;10018406;10039329;9830520;9137850;9675916;9930255;9347983;10100285;10039490;10613297;10957194;11217488;11444450;11247713;11486000;12381404;12009479;10490829 -5402;'154;Northern Europe;1675;Other paper and paperboard;5922;Export value;1000 USD;393935;412704;474840;527795;549950;599741;598249;635396;719296;809920;882912;1041837;1358595;1871007;1803541;1967334;2165458;2387285;3075888;3609577;3272406;3132595;2979329;3176661;3321725;4154820;5273703;5596963;5650007;6678570;6318433;6504140;5100459;5694099;7582221;6788149;6373893;7158157;6819246;6938816;6232138;6409299;7509557;8301852;8249704;9233224;10365537;10863948;9035701;10047300;11391871;9691208;10990895;10416138;9601589;9480861;10250566.5;11098225;10486650;10480389;12309364;12993051;11334483 -5402;'154;Northern Europe;1676;Household and sanitary papers;5510;Production;t;;;;21000;55000;328300;427700;501600;557600;611400;644800;662600;760000;805000;740000;757000;721000;811000;847600;838800;836000;818800;867000;914000;879000;891000;919000;945000;937000;944000;946000;974000;957000;1068000;1071000;1097000;1143000;1144200;1231000;1245890;1225140;1304000;1286300;1339000;1314000;1355000;1392900;1412126;1351042;1363297;1410084;1441300;1534000;1507280;1411851;1361320;1753000;1355618;1353900;1326440;1266179;1327995;1312995 -5402;'154;Northern Europe;1676;Household and sanitary papers;5610;Import quantity;t;5900;5400;5500;6500;7000;7000;8700;10800;16300;33700;28000;27700;35300;36500;20100;14800;13900;15700;20100;98400;80700;95400;93500;104800;131100;126000;121000;124400;129600;137600;136700;262700;236000;246200;333700;396600;279000;243468;197939;169910;169656;156595;167503;191392;210832;204648;228869;383007;381542;396535;411590;387907;260498;280516;361091;421844;439437;425695;362035;559631;543058;425304;415927 -5402;'154;Northern Europe;1676;Household and sanitary papers;5622;Import value;1000 USD;1733;1788;1861;2229;2537;2622;3180;4017;5905;18353;11417;14191;15893;23356;17222;13778;15060;15007;20995;117329;83912;98178;81770;89971;111916;133641;157837;169564;168439;198020;187059;227327;232900;256048;488656;621446;395171;324092;223160;219411;196986;190511;215684;255867;297094;303477;370751;421635;371270;369240;386955;350365;438699;474672;495618;494502;487220.15;518563;543541;528573;508320;759791;675705 -5402;'154;Northern Europe;1676;Household and sanitary papers;5910;Export quantity;t;35300;38500;44400;50100;50400;54600;53500;68800;93600;118000;112900;127100;144100;192600;129200;131000;119300;143800;168200;125600;131100;133200;152000;156300;166200;152400;170800;153700;165300;202100;205300;227200;203000;206000;207100;203700;180000;174000;211084;212013;201144;206631;184630;194921;205282;207152;210897;173341;185382;192567;189794;190960;194928;191819;167183;171086;199728;195929;177238;169585;152858;144292;120320 -5402;'154;Northern Europe;1676;Household and sanitary papers;5922;Export value;1000 USD;14787;15755;18018;19587;20240;22220;22597;24563;30446;39121;40840;47782;63338;116243;101991;93790;77603;96683;135391;131234;120029;117584;108955;111886;124746;142038;185345;205279;217956;301597;280407;289638;226028;241118;328052;332015;257228;238218;257149;292367;244951;242951;244518;287089;301190;353826;400028;436754;366942;406181;404939;373052;407345;411862;310362;265595;294784.04;324642;291079;255215;250996;308335;276934 -5402;'154;Northern Europe;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10767300;10924500;11443500;11225870;11601794;11923314;12127462;11861518;12465796;12327214;11903858;11086643;11779861;11407100;11409762;11792605;11901402;12092106;12490989;12269510;13257779;12838285;12196885;12824418;12983228;10944229 -5402;'154;Northern Europe;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3057748;3382389;3297704;3107305;3097572;3281079;3319187;3532169;3827476;3985755;3858190;3534977;3913574;3853753;3731394;3960894;4003583;4041654;4060582;4121406;4200669;4184079;4004825;4019313;4384929;3892783 -5402;'154;Northern Europe;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2282268;2356854;2252069;2182283;1946479;2595423;2875619;2836497;3287269;3771878;3798040;2941387;3603282;4156141;3588742;3806355;3887486;3552995;3241728;3250739.11;3661647;3499066;3330065;3775854;4736465;4023114 -5402;'154;Northern Europe;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7601175;8000992;8275704;7835963;8566711;8697041;9189977;8969682;9603473;9643200;9331879;8699129;9168489;9416841;8865860;9651794;9581672;10170912;10511727;10739137;10965224;10799508;11047556;12026388;11692025;10236092 -5402;'154;Northern Europe;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5817275;5549582;5687100;5020826;5767625;6827935;7652319;7621093;8546605;9615541;10014187;8351486;9350313;10606516;8944640;10212896;9633831;8952579;8892536;9666891.21;10467143;9899951;9938903;11735236;12362831;10743588 -5402;'154;Northern Europe;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;1361000;2684000;4767800;5080800;5973900;6517600;6707400;6522700;6883500;7471000;7527000;5555000;7057000;6827000;7177000;7826000;7106000;6933000;6746600;7299000;7642000;7628000;7823000;8241000;8624000;8658000;9022000;8958000;9116000;9375000;10362000;10353000;10153300;10678000;;;;;;;;;;;;;;;;;;;;;;;;;; -5402;'154;Northern Europe;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;950300;965000;1058100;1233200;1171900;1276100;1471500;1549200;1607400;1381800;1128900;1237700;1270800;1408600;1145900;1010100;1123700;1090400;1161200;1602200;1760300;1574100;1809900;1877500;1990800;2087600;1910400;2078400;2237300;2625600;2725300;2644185;2695534;2772800;2515700;3064100;3073400;;;;;;;;;;;;;;;;;;;;;;;;;; -5402;'154;Northern Europe;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;163992;173961;191388;227644;217719;238914;280583;282636;309278;267063;238330;264733;311544;548660;589266;422254;448762;437349;488875;1040678;1077554;960835;905999;946073;1053803;1287638;1337097;1616612;1653165;2395712;2516170;2462640;2298098;2221530;2643230;2908902;2517675;;;;;;;;;;;;;;;;;;;;;;;;;; -5402;'154;Northern Europe;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;1648800;1818800;2066400;2289400;2312200;2525300;2478200;2737700;3125800;3216200;3087000;3350500;3725200;3747600;2285600;2959100;3128600;3499500;4212800;4103200;4056700;4111600;3970000;4507900;4579700;4722600;4986000;5796600;6066500;6296000;6247700;6297899;6426236;7252400;7162500;6753000;7447900;;;;;;;;;;;;;;;;;;;;;;;;;; -5402;'154;Northern Europe;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;314871;329414;379578;422320;440994;481286;477057;507834;543863;598416;549448;650671;841663;1020713;1012214;1101045;1151637;1278748;2044025;2475388;2302292;2181613;2096755;2215139;2334691;2905462;3592857;4414971;4819449;5902479;5549541;5644386;4436053;5121575;6861140;6072790;5823870;;;;;;;;;;;;;;;;;;;;;;;;;; -5402;'154;Northern Europe;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4954000;5224800;5254770;5108660;5142815;5193364;5322151;5308524;5268524;5036824;4848524;4493939;4535471;4320517;4264111;4434716;4393507;4324329;4330176;4419605;4588254;4431804;4414573;4699946;4605483;4175895 -5402;'154;Northern Europe;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1589604;1493785;1527328;1521201;1517207;1560032;1600263;1687575;1830594;2046802;2104822;1827423;2104003;2178027;1987985;2089158;2032195;2078198;2077088;2123880;2217898;2214579;2118873;2254205;2372993;2272347 -5402;'154;Northern Europe;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;792694;690911;746828;756298;701086;795301;872198;847682;1018638;1319115;1366564;917423;1292681;1623415;1228753;1314002;1316349;1169254;1067369;1094233.91;1340767;1225286;1163371;1512972;1860727;1524967 -5402;'154;Northern Europe;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2829500;3118738;3027156;2986605;3096837;3125198;3356161;3231318;3263113;3111566;3086478;2837087;2743879;2927343;2857099;2777599;2782746;2871786;3142383;3051733;3115496;3156648;3274529;3517075;3392858;3218868 -5402;'154;Northern Europe;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1366045;1326411;1408464;1351617;1390962;1603732;1837459;1760441;1907480;2140613;2220893;1656636;1800819;2202102;1721425;1794556;1801660;1604572;1707858;1942049.83;2055104;1895398;1876324;2453350;2618953;2156722 -5402;'154;Northern Europe;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3375600;3282000;3710730;3632140;4007295;4366627;4356407;4280069;4622690;4659690;4597557;4319143;4598945;4603210;4703928;4810174;5090269;5222906;5561011;5373065;5942761;5789640;5493320;5803848;6075820;4921146 -5402;'154;Northern Europe;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;737839;1241347;1174524;1027866;836233;1038918;1070855;1058368;1197940;1158918;1032571;1015654;1107114;1036919;1139050;1160155;1175337;1183867;1244195;1253079;1267127;1264446;1229688;1107037;1256371;1024126 -5402;'154;Northern Europe;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;829197;1100236;979223;941319;648407;1151130;1320388;1256698;1471953;1551404;1402621;1295607;1504719;1674490;1578468;1609112;1663716;1575165;1440705;1404845.05;1536212;1526298;1477940;1476766;1859660;1643267 -5402;'154;Northern Europe;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3056800;3056163;3345309;3289916;3405802;3522017;3704706;3647771;4243897;4359013;4316133;4050042;4389792;4489376;4048755;4850509;4778386;5109574;5327406;5730245;5815039;5737195;5895958;6472145;6469658;5447556 -5402;'154;Northern Europe;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2974331;2777999;2825376;2723321;2885378;3482573;3920075;3944105;4719521;5205410;5487645;4778179;5258135;5824691;4921570;6009317;5476116;5086830;5137977;5412708.21;6020993;5845954;6055290;6895752;7141224;6419608 -5402;'154;Northern Europe;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1760300;1841600;1917000;1843570;1855378;1776186;1859240;1760610;2007291;2051300;1941009;1859207;2139372;2030992;1981665;2024894;1907077;1986951;2008719;1915312;2058913;1943409;1722646;1762631;1747720;1375184 -5402;'154;Northern Europe;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;547904;551311;562376;525343;580349;527082;501060;613170;619833;580660;553380;540170;551274;498971;462957;512097;591823;576252;540512;515734;490661;467967;425156;431436;496623;458135 -5402;'154;Northern Europe;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;536296;497213;502531;465794;510715;563020;592665;626543;685053;767085;907032;636361;701891;753939;681709;723061;738929;667197;602781;611821.32;646322;602371;580772;655754;858503;733393 -5402;'154;Northern Europe;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1524392;1678782;1790688;1458865;1623671;1609853;1755301;1735823;1753872;1793206;1575075;1507853;1737998;1702951;1676225;1719179;1728786;1898383;1796875;1673656;1760276;1648351;1605883;1738386;1537366;1353815 -5402;'154;Northern Europe;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1353713;1345771;1387522;905659;1266700;1487496;1655281;1661740;1670196;1968623;1984204;1652982;2034753;2313913;2075659;2150652;2107368;2026285;1851248;2105395.54;2176629;1967842;1800056;2151913;2347111;1963638 -5402;'154;Northern Europe;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;677400;576100;561000;641500;596306;587137;589664;512315;567291;579400;516768;414354;506073;452381;460058;522821;510549;557920;591083;561528;667851;673432;566346;557993;554205;472004 -5402;'154;Northern Europe;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;182401;95946;33476;32895;163783;155047;147009;173056;179109;199375;167417;151730;151183;139836;141402;199484;204228;203337;198787;228713;224983;237087;231108;226635;258942;138175 -5402;'154;Northern Europe;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;124081;68494;23487;18872;86271;85972;90368;105574;111625;134274;121823;91996;103991;104297;99812;160180;168492;141379;130873;139838.83;138346;145111;107982;130362;157575;121487 -5402;'154;Northern Europe;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;190483;147309;112551;100577;440401;439973;373809;354770;342591;379415;354193;304147;296820;297171;283781;304507;291754;291169;245063;283503;274413;257314;271186;298782;292143;215853 -5402;'154;Northern Europe;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;123186;99401;65738;40229;224585;254134;239504;254807;249408;300895;321445;263689;256606;265810;225986;258371;248687;234892;195453;206737.64;214417;190757;207233;234221;255543;203620 -5402;'154;Northern Europe;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;103000;837000;1529600;1049700;1145300;1326000;1304200;1264700;1153700;1310000;1528000;1287000;1196000;1201000;1165000;1283000;1106000;1017000;991000;932000;944000;976000;980000;1037000;1052000;1045000;980000;921000;970000;997600;870000;896000;921000;1113000;1034000;1063600;1032000;949440;1182017;1172700;1086019;1086013;848000;857000;848574;723708;792632;745494;845527;580103;595860;562350;557890;962909;573834;553182;1191751;1306811;960320;838049 -5402;'154;Northern Europe;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;66400;60800;65500;81000;91300;136900;173300;216500;264500;287500;825200;882300;1020100;1205500;598900;1153100;1291500;1298700;1393800;701700;646000;804600;831100;884900;813200;896900;1301100;1301400;1215800;801800;714900;730185;443004;470900;645600;472100;565900;547305;567335;512716;496869;203858;181773;128192;116351;149924;162227;232340;206115;225463;134057;179849;257763;108480;212325;215453;196236;193707;182084;71244;63272;78127;33604 -5402;'154;Northern Europe;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;21036;21689;23334;28755;33712;54410;55728;66057;80465;94198;237505;302142;395212;655018;390093;674044;902800;902281;1196201;757947;669591;672358;653125;686400;731332;925757;1459723;1534530;1519182;1003397;828946;806830;536051;448664;730282;494919;457268;911992;848267;788863;737051;288970;294040;295401;257275;342710;379046;374233;272471;285899;309528;324589;301674;273539;269580;252023;207387.64;203087;208968;147546;129401;165478;157874 -5402;'154;Northern Europe;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;343800;382800;432800;471800;471200;518400;511500;564100;609000;701700;928000;1000400;1148200;1407900;932700;1204200;1339400;1395000;1047600;1002500;949000;961800;1019800;1134200;1117200;1225500;1373600;532700;316300;312900;373700;426263;243009;204000;297800;325800;384200;868300;779540;798300;835731;294778;300523;219909;181046;207781;185232;325300;253339;314860;323620;291163;253563;265999;275202;274381;278623;283297;270967;268859;202158;173162;134417 -5402;'154;Northern Europe;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;61124;64970;74850;82798;85760;94590;95653;98924;140558;172383;292624;343384;453594;734051;689336;772499;936218;1011854;896472;1002955;850085;833398;773619;849636;862288;1107320;1495501;976713;612602;474494;488485;559281;438266;331175;392798;382557;292008;1102664;1012515;959349;966361;398723;437104;362444;327421;332793;349968;413007;317273;290806;380416;373516;370654;370445;338648;322730;288891.24;306440;295620;286271;323132;321885;313961 -5402;'154;Northern Europe;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13035874;13464668;13403386;12925034;16105908;17778850;15273856 -5402;'154;Northern Europe;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9285790.43;9946464;9846789;9769455;12186976;12499390;11054078 -5402;'154;Northern Europe;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;611086.32;589626;475961;455207;599004;637810;495302 -5402;'154;Northern Europe;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;475193.1;519384;487900;534446;688046;684498;561845 -5402;'154;Northern Europe;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;359672.41;380821;251772;262082;352939;354273;258019 -5402;'154;Northern Europe;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;366492.85;399086;360201;405952;528989;515721;420340 -5402;'154;Northern Europe;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;251413.9;208805;224189;193125;246065;283537;237283 -5402;'154;Northern Europe;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108700.26;120298;127699;128494;159057;168777;141505 -5402;'154;Northern Europe;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;533639.45;586565;611592;580760;698429;986965;954874 -5402;'154;Northern Europe;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;510315.12;547227;565710;529258;886580;994313;867848 -5402;'154;Northern Europe;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;356885.91;351486;384847;346519;439115;440440;397206 -5402;'154;Northern Europe;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;141271.57;154225;155475;132370;151637;137319;150789 -5402;'154;Northern Europe;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2569605.57;2642384;2616544;2596251;3113274;3262256;2879607 -5402;'154;Northern Europe;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1928487.28;2019500;1848759;1912890;2460249;2340432;1872207 -5402;'154;Northern Europe;1636;Glue-laminated timber (glulam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1129839;1052858 -5402;'154;Northern Europe;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;163245;128263 -5402;'154;Northern Europe;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;160232;132205 -5402;'154;Northern Europe;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;520079;417567 -5402;'154;Northern Europe;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;540537;282429 -5402;'154;Northern Europe;1688;Cross-laminated timber (CLT or X-lam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62005;70583 -5402;'154;Northern Europe;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54525;55526 -5402;'154;Northern Europe;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49756;51265 -5402;'154;Northern Europe;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14137;42214 -5402;'154;Northern Europe;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10537;26971 -5402;'154;Northern Europe;1684;I-beams (I-joists);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0 -5402;'154;Northern Europe;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37793;28593 -5402;'154;Northern Europe;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50204;39335 -5402;'154;Northern Europe;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11472;7909 -5402;'154;Northern Europe;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16641;12140 -5402;'154;Northern Europe;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7850937.41;8093092;8101873;7774044;9820416;10843020;9285859 -5402;'154;Northern Europe;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5060964.44;5389924;5465372;5386692;6406400;6717613;6261337 -5402;'154;Northern Europe;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;534038.23;604191;589009;498011;574067;763895;568509 -5402;'154;Northern Europe;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;815119.91;934381;928950;880173;1068296;1130342;900760 -5402;'154;Northern Europe;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;579681.11;597324;623560;674242;861603;844464;692499 -5402;'154;Northern Europe;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;354439.01;381823;394623;393626;525768;494873;439292 -5402;'154;Northern Europe;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6105243.98;6645297;6622015;6728186;6897700;8224134;7723739 -5402;'154;Northern Europe;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4237317.62;4482301;4316490;4256045;4540806;4947580;4799145 -5402;'154;Northern Europe;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;114882.14;124053;119190;105127;114976;161855;124916 -5402;'154;Northern Europe;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84209.41;88058;78267;71807;74983;88806;90915 -5402;'154;Northern Europe;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;777441.76;868961;855902;796327;895748;1102944;970466 -5402;'154;Northern Europe;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;684268.7;718699;624444;596929;641584;734627;647973 -5402;'154;Northern Europe;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1374878.96;1409319;1375835;1861278;1402439;1661761;1675739 -5402;'154;Northern Europe;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;856318.69;922231;903213;933057;883676;1023593;1089353 -5402;'154;Northern Europe;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2095682.79;2394219;2423927;2304335;2618677;3125870;2870874 -5402;'154;Northern Europe;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1106508.28;1224830;1216069;1244537;1431234;1529153;1449471 -5402;'154;Northern Europe;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1742358.32;1848745;1847161;1661119;1865860;2171704;2081744 -5402;'154;Northern Europe;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1506012.55;1528483;1494497;1409715;1509329;1571401;1521433 -5403;'039;Southern Europe;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28505639.17;32231571.94;30293465;25945169;34549832;41454927;36797364 -5403;'039;Southern Europe;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32871227.92;35691861.7;33789455;30779137;40213904;44932497;41174534 -5403;'039;Southern Europe;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;345653;382028;431610;419416;457829;551876;577447;815446;993368;1203974;1131059;1372168;2153366;3114501;2400480;2850753;3027026;3225742;4633968;6038008;4816016;4506564;3818266;4168233;4285448;5316895;7144259;8503909;10128152;11650593;10995472;11532834;9503399;11074364;14814822;12066131;13649234;13789636;13758374;15006946;13784445;14193752;16978134;18409213;18822701;21066586;24813775;24284868;18418137;20176918;21889547;18341927;19780158;20252210;18102122;17894002;19287922.34;22104217.35;19875799;16639792;22169224;27322593;22740490 -5403;'039;Southern Europe;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;103556;109872;119831;144920;191532;210634;211581;280989;334335;373366;390155;503123;702136;1040322;855506;1083470;1152823;1340831;1842894;2215159;2051305;1802688;1886107;2085592;2173493;2522962;3439584;4175153;4640111;4960358;4740091;4807179;4367823;5430424;7386244;6220780;7040493;6583705;6033781;6979426;6766176;7010288;8296848;9277730;10363415;12513365;14971226;16128645;12943805;13010191;15735158;14594303;15657626;16019832;13795875;13893270;15046243.74;16385135.84;14999713;13163387;18082839;20523184;17297990 -5403;'039;Southern Europe;1861;Roundwood;5516;Production;m3;52655000;52955000;55368000;54404000;55298000;54617000;52942000;53105000;52879000;54122000;51037000;48397000;46986000;45255000;44674000;45271000;47422000;46667000;47005000;48173000;48809000;50553000;51887000;52511000;53515000;55518000;53715000;53606000;57196000;52021000;50839000;43945000;42619000;45462000;45888000;44616000;52798000;51825410;53719000;55289435;51205422;50791097;52991942;55216194;55114509;56068557;55007565;58561779;51816828;61775399;63447485;63562860;64424618;66698355;68676601;69984437;70330736;72652412;75604607;70214770;72895210;73666933;71564725 -5403;'039;Southern Europe;1861;Roundwood;5616;Import quantity;m3;4167000;4579800;5011900;4286700;4332350;4426000;5355600;5730800;6412100;6815200;6517200;7414800;9594600;10115000;7501400;8263910;8961037;8555400;9477900;10435300;8322200;7575200;6976200;7790100;8263300;7506300;7527400;8712800;10333000;10952850;10011015;9301743;7106285;9220908;9476018;7837132;9547618;12754087;11216740;12522916;12297182;10634407;9644562;9906733;10553336;10723823;10629309;8807684;6870001;7911651;9396378;8326850;9381300;9604104;7980929;8063267;7425032;8751470;8766105;8206568;9273073;9560123;8075668 -5403;'039;Southern Europe;1861;Roundwood;5622;Import value;1000 USD;102851;113896;121527;110891;122075;130855;148749;165830;209480;223912;228209;273034;509505;649297;464464;556730;699533;684277;872516;1239937;881815;737842;581841;555305;618019;711038;783110;935443;1145074;1310717;1139957;1073450;776208;1002345;1171272;908119;1018217;1117314;1037476;1009998;913835;850927;932392;1022535;953173;1014630;1188718;1027916;692628;772727;996771;738276;911326;889381;660971;677955;672543.32;700413.36;689364;612376;869997;1030136;985320 -5403;'039;Southern Europe;1861;Roundwood;5916;Export quantity;m3;1077450;988500;1286000;1290900;987800;696700;624800;718400;828600;1148000;981400;951200;1208000;1256700;961000;1103370;1472470;1345100;1988400;1808200;1007950;906300;875100;1073100;1015700;991500;1396500;1358200;1911800;1501752;880902;1663196;1167811;1485176;1914112;1355572;2068177;2128529;1920566;1888084;2328399;2176107;2415959;2644300;3198175;3975380;4296356;4731961;3732493;4950316;6476591;6201299;7921977;8563761;7322456;8183549;7044431;6764026;7111723;6210350;6415683;6202448;7090992 -5403;'039;Southern Europe;1861;Roundwood;5922;Export value;1000 USD;11335;10439;13425;14470;12330;8864;8269;10195;12911;18082;18239;18956;31160;45536;41666;53591;69086;49733;74381;111169;71423;59214;60827;40231;41711;51571;100050;100425;161361;118314;61135;130334;70743;85957;221478;196505;247612;205243;192218;93109;119540;114888;154143;190667;224527;258927;341899;468044;318186;405115;581581;536820;711909;750783;539092;604359;569991.13;627042.13;583950;518683;642071;736842;747681 -5403;'039;Southern Europe;1862;Roundwood, coniferous;5516;Production;m3;15261000;15571000;15859000;18211000;16648000;16403000;15298000;16326000;16755000;17458000;18320000;18613000;19114000;19239000;19362000;21237000;22010000;22803000;21364000;20328000;20144000;22276000;22468000;20881000;20804000;22876000;21837000;21431000;24052000;23373000;20883000;17158000;16306000;18055000;18040000;17163000;19551000;19538870;19236000;20484886;19254095;18880300;19399494;20227330;19411370;19387627;18673312;19469733;16388300;16921033;16749325;16994937;16810438;18972260;21532616;21688380;22201700;25246027;28393592;22666177;25408273;25343300;23767774 -5403;'039;Southern Europe;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2659307;3546614;2776364;2645164;2649672;2936275;2384923 -5403;'039;Southern Europe;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;223788.25;254530.22;199436;183498;249398;309755;259170 -5403;'039;Southern Europe;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3354300;3104386;3274803;2766278;2608723;2703655;3563915 -5403;'039;Southern Europe;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;236857.82;269719.05;237912;195941;211849;237126;272466 -5403;'039;Southern Europe;1863;Roundwood, non-coniferous;5516;Production;m3;37394000;37384000;39509000;36193000;38650000;38214000;37644000;36779000;36124000;36664000;32717000;29784000;27872000;26016000;25312000;24034000;25412000;23864000;25641000;27845000;28665000;28277000;29419000;31630000;32711000;32642000;31878000;32175000;33144000;28648000;29956000;26787000;26313000;27407000;27848000;27453000;33247000;32286540;34483000;34804549;31951327;31910797;33592448;34988864;35703139;36680930;36334253;39092046;35428528;44854366;46698160;46567923;47614180;47726095;47143985;48296057;48129036;47406385;47211015;47548593;47486937;48323633;47796951 -5403;'039;Southern Europe;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4765725;5204856;5989741;5561404;6623401;6623848;5690745 -5403;'039;Southern Europe;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;448755.07;445883.14;489928;428878;620599;720381;726150 -5403;'039;Southern Europe;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3690131;3659640;3836920;3444072;3806960;3498793;3527077 -5403;'039;Southern Europe;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;333133.31;357323.08;346038;322742;430222;499716;475215 -5403;'039;Southern Europe;1864;Wood fuel;5516;Production;m3;31634000;30843000;31487000;29737000;28900000;27019000;25194000;24767000;23193000;22502000;20354000;17017000;14613000;14163000;13185000;13581000;12920000;11283000;11371000;12216000;13161000;13246000;14258000;14768000;15246000;15485000;14302000;14065000;13768000;12070000;13045000;13486000;12756000;13357500;13877500;13914500;19249500;17268830;18552000;18417407;17058090;16229200;17169608;18330000;19188671;18222440;18490117;20068132;18754873;29248526;28483348;28050830;28834517;29476371;30412111;29476591;29194869;29584075;27610230;28409792;30324200;30847153;29894285 -5403;'039;Southern Europe;1864;Wood fuel;5616;Import quantity;m3;551600;800400;1081000;856400;557100;420600;416900;383400;390900;346700;279100;354800;879700;1029000;722700;751500;807738;663100;768000;739100;364200;401100;648300;693100;639900;471400;403600;379200;496800;439200;577400;519241;370121;274245;220419;313827;275184;479181;644176;770689;928918;806760;817305;1207499;982751;1272392;1090011;1275630;1330940;1424758;1590096;1677767;1761700;1793187;1904063;1918090;1409150;1531962;1736463;1055837;1297889;1017417;1003432 -5403;'039;Southern Europe;1864;Wood fuel;5622;Import value;1000 USD;5040;7989;10022;8453;5759;4412;4563;3775;4174;4794;3721;4342;11444;21854;16677;15632;17228;13532;21196;28333;17580;15165;20593;18328;17197;19123;16417;20247;20628;22306;26613;19595;13940;10222;9968;13756;10856;19684;24697;26716;36190;31938;38864;62024;53213;84164;88674;105762;97250;104694;128475;134301;141324;140490;117634;119679;107877.09;114015.27;118403;76457;104293;104013;110698 -5403;'039;Southern Europe;1864;Wood fuel;5916;Export quantity;m3;376000;400300;694900;681500;473400;348300;226300;191200;259300;307100;223500;254200;404500;467200;282500;265600;490200;134800;276200;313400;117300;196000;170800;178800;72200;92800;114500;88500;127200;237700;238400;184392;234385;218813;163140;216440;223841;401040;383398;243792;322310;315291;320842;589357;780848;1045471;1082913;1148565;1194076;1152656;1534296;1676581;2018203;2091166;2036971;2292123;2268200;1955641;1810388;1834393;2058654;1503506;1433341 -5403;'039;Southern Europe;1864;Wood fuel;5922;Export value;1000 USD;3419;3625;6678;7000;4800;3545;2286;1948;2820;4088;2929;3247;6632;14281;8145;11659;11853;2519;8120;15782;5491;9265;4423;3601;1112;1215;2865;3360;4397;10465;10558;7735;8254;7848;7932;10186;8875;7683;5085;6710;13999;10141;12476;25856;36192;50774;58581;78059;97534;81645;116487;111596;150518;169840;139526;148298;162013.93;167391.86;146646;135540;173535;190511;172154 -5403;'039;Southern Europe;1627;Wood fuel, coniferous;5516;Production;m3;4841000;4529000;4722000;6723000;4473000;4023000;2961000;3266000;2918000;2695000;2479000;2727000;2098000;2094000;1866000;1913000;1610000;1336000;1212000;1349000;1321000;1296000;1706000;1545000;1425000;1513000;1375000;1394000;1490000;1922000;1318000;1321000;898000;1141500;1513500;1242500;1919500;2211330;1839000;1845000;1683490;1632000;1775016;1948000;2192867;1876590;1887098;2269342;2078671;2414153;2449912;2359301;3060614;3186515;4813536;3331331;2907906;3981558;2473594;2746332;5010022;4997036;2783604 -5403;'039;Southern Europe;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;365069;382711;295921;235254;218073;231837;284966 -5403;'039;Southern Europe;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28673.3;26627.58;21397;17303;19589;23818;24973 -5403;'039;Southern Europe;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;307038;220481;388116;511463;457747;283349;238003 -5403;'039;Southern Europe;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22498.41;17320.01;27006;28652;31772;26466;24544 -5403;'039;Southern Europe;1628;Wood fuel, non-coniferous;5516;Production;m3;26793000;26314000;26765000;23014000;24427000;22996000;22233000;21501000;20275000;19807000;17875000;14290000;12515000;12069000;11319000;11668000;11310000;9947000;10159000;10867000;11840000;11950000;12552000;13223000;13821000;13972000;12927000;12671000;12278000;10148000;11727000;12165000;11858000;12216000;12364000;12672000;17330000;15057500;16713000;16572407;15374600;14597200;15394592;16382000;16995804;16345850;16603019;17798790;16676202;26834373;26033436;25691529;25773903;26289856;25598575;26145260;26286963;25602517;25136636;25663460;25314178;25850117;27110681 -5403;'039;Southern Europe;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1044081;1149251;1440542;820583;1079816;785580;718466 -5403;'039;Southern Europe;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79203.79;87387.69;97006;59154;84704;80195;85725 -5403;'039;Southern Europe;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961162;1735160;1422272;1322930;1600907;1220157;1195338 -5403;'039;Southern Europe;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;139515.53;150071.85;119640;106888;141763;164045;147610 -5403;'039;Southern Europe;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;551600;800400;1081000;856400;557100;420600;416900;383400;390900;346700;279100;354800;879700;1029000;722700;751500;807738;663100;768000;739100;364200;401100;648300;693100;639900;471400;403600;379200;496800;439200;577400;519241;370121;274245;220419;313827;275184;479181;644176;770689;928918;806760;817305;1207499;982751;1272392;1090011;1275630;1330940;1424758;1590096;1677767;1761700;1793187;1904063;1918090;;;;;;; -5403;'039;Southern Europe;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;5040;7989;10022;8453;5759;4412;4563;3775;4174;4794;3721;4342;11444;21854;16677;15632;17228;13532;21196;28333;17580;15165;20593;18328;17197;19123;16417;20247;20628;22306;26613;19595;13940;10222;9968;13756;10856;19684;24697;26716;36190;31938;38864;62024;53213;84164;88674;105762;97250;104694;128475;134301;141324;140490;117634;119679;;;;;;; -5403;'039;Southern Europe;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;376000;400300;694900;681500;473400;348300;226300;191200;259300;307100;223500;254200;404500;467200;282500;265600;490200;134800;276200;313400;117300;196000;170800;178800;72200;92800;114500;88500;127200;237700;238400;184392;234385;218813;163140;216440;223841;401040;383398;243792;322310;315291;320842;589357;780848;1045471;1082913;1148565;1194076;1152656;1534296;1676581;2018203;2091166;2036971;2292123;;;;;;; -5403;'039;Southern Europe;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;3419;3625;6678;7000;4800;3545;2286;1948;2820;4088;2929;3247;6632;14281;8145;11659;11853;2519;8120;15782;5491;9265;4423;3601;1112;1215;2865;3360;4397;10465;10558;7735;8254;7848;7932;10186;8875;7683;5085;6710;13999;10141;12476;25856;36192;50774;58581;78059;97534;81645;116487;111596;150518;169840;139526;148298;;;;;;; -5403;'039;Southern Europe;1865;Industrial roundwood;5516;Production;m3;21021000;22112000;23881000;24667000;26398000;27598000;27748000;28338000;29686000;31620000;30683000;31380000;32373000;31092000;31489000;31690000;34502000;35384000;35634000;35957000;35648000;37307000;37629000;37743000;38269000;40033000;39413000;39541000;43428000;39951000;37794000;30459000;29863000;32104500;32010500;30701500;33548500;34556580;35167000;36872028;34147332;34561897;35822334;36886194;35925838;37846117;36517448;38493647;33061955;32526873;34964137;35512030;35590101;37221984;38264490;40507846;41135867;43068337;47994377;41804978;42571010;42819780;41670440 -5403;'039;Southern Europe;1865;Industrial roundwood;5616;Import quantity;m3;3615400;3779400;3930900;3430300;3775250;4005400;4938700;5347400;6021200;6468500;6238100;7060000;8714900;9086000;6778700;7512410;8153299;7892300;8709900;9696200;7958000;7174100;6327900;7097000;7623400;7034900;7123800;8333600;9836200;10513650;9433615;8782502;6736164;8946663;9255599;7523305;9272434;12274906;10572564;11752227;11368264;9827647;8827257;8699234;9570585;9451431;9539298;7532054;5539061;6486893;7806282;6649083;7619600;7810917;6076866;6145177;6015882;7219508;7029642;7150731;7975184;8542706;7072236 -5403;'039;Southern Europe;1865;Industrial roundwood;5622;Import value;1000 USD;97811;105907;111505;102438;116316;126443;144186;162055;205306;219118;224488;268692;498061;627443;447787;541098;682305;670745;851320;1211604;864235;722677;561248;536977;600822;691915;766693;915196;1124446;1288411;1113344;1053855;762268;992123;1161304;894363;1007361;1097630;1012779;983282;877645;818989;893528;960511;899960;930466;1100044;922154;595378;668033;868296;603975;770002;748891;543337;558276;564666.24;586398.09;570961;535919;765704;926123;874622 -5403;'039;Southern Europe;1865;Industrial roundwood;5916;Export quantity;m3;701450;588200;591100;609400;514400;348400;398500;527200;569300;840900;757900;697000;803500;789500;678500;837770;982270;1210300;1712200;1494800;890650;710300;704300;894300;943500;898700;1282000;1269700;1784600;1264052;642502;1478804;933426;1266363;1750972;1139132;1844336;1727489;1537168;1644292;2006089;1860816;2095117;2054943;2417327;2929909;3213443;3583396;2538417;3797660;4942295;4524718;5903774;6472595;5285485;5891426;4776231;4808385;5301335;4375957;4357029;4698942;5657651 -5403;'039;Southern Europe;1865;Industrial roundwood;5922;Export value;1000 USD;7916;6814;6747;7470;7530;5319;5983;8247;10091;13994;15310;15709;24528;31255;33521;41932;57233;47214;66261;95387;65932;49949;56404;36630;40599;50356;97185;97065;156964;107849;50577;122599;62489;78109;213546;186319;238737;197560;187133;86399;105541;104747;141667;164811;188335;208153;283318;389985;220652;323470;465094;425224;561391;580943;399566;456061;407977.2;459650.27;437304;383143;468536;546331;575527 -5403;'039;Southern Europe;1866;Industrial roundwood, coniferous;5516;Production;m3;10420000;11042000;11137000;11488000;12175000;12380000;12337000;13060000;13837000;14763000;15841000;15886000;17016000;17145000;17496000;19324000;20400000;21467000;20152000;18979000;18823000;20980000;20762000;19336000;19379000;21363000;20462000;20037000;22562000;21451000;19565000;15837000;15408000;16913500;16526500;15920500;17631500;17327540;17397000;18639886;17570605;17248300;17624478;18279330;17218503;17511037;16786214;17200391;14309629;14506880;14299413;14635636;13749824;15785745;16719080;18357049;19293794;21264469;25919998;19919845;20398251;20346264;20984170 -5403;'039;Southern Europe;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3876730;3719658;3228341;3112210;3081092;2845576;2180476;2637202;3775876;3446241;4444716;4261639;4063558;3843917;4113375;4284088;4458312;4201998;3314782;2593546;2882608;2957607;2221481;2315961;2480318;2323643;2219062;2294238;3163903;2480443;2409910;2431599;2704438;2099957 -5403;'039;Southern Europe;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;356733;319971;284483;225803;249850;253460;201619;228129;232770;264638;240981;220245;219711;271717;299005;285427;316490;348607;318348;212409;230409;260524;182912;203246;214972;178156;178220;195114.95;227902.64;178039;166195;229809;285937;234197 -5403;'039;Southern Europe;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76769;78706;359346;345299;468458;436058;219458;483174;356575;388490;336991;401495;281559;304373;418039;516619;752676;757625;587695;675439;885108;1236507;1438722;1811275;2759204;2904047;3439733;3047262;2883905;2886687;2254815;2150976;2420306;3325912 -5403;'039;Southern Europe;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7258;5811;23154;15333;23478;20176;14175;24469;19648;21005;16193;16207;16514;16619;22926;32039;45974;56667;64867;47029;63096;107332;119676;149931;208776;193358;236703;214359.41;252399.04;210906;167289;180077;210660;247922 -5403;'039;Southern Europe;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3876730;3719658;3228341;3112210;3081092;2845576;2180476;2637202;3775876;3446241;4444716;4261639;4063558;3843917;4113375;4284088;4458312;4201998;3314782;2593546;2882608;2957607;2221481;2315961;2480318;2323643;2219062;2294238;3163903;2480443;2409910;2431599;2704438;2099957 -5403;'039;Southern Europe;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;356733;319971;284483;225803;249850;253460;201619;228129;232770;264638;240981;220245;219711;271717;299005;285427;316490;348607;318348;212409;230409;260524;182912;203246;214972;178156;178220;195114.95;227902.64;178039;166195;229809;285937;234197 -5403;'039;Southern Europe;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76769;78706;359346;345299;468458;436058;219458;483174;356575;388490;336991;401495;281559;304373;418039;516619;752676;757625;587695;675439;885108;1236507;1438722;1811275;2759204;2904047;3439733;3047262;2883905;2886687;2254815;2150976;2420306;3325912 -5403;'039;Southern Europe;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7258;5811;23154;15333;23478;20176;14175;24469;19648;21005;16193;16207;16514;16619;22926;32039;45974;56667;64867;47029;63096;107332;119676;149931;208776;193358;236703;214359.41;252399.04;210906;167289;180077;210660;247922 -5403;'039;Southern Europe;1867;Industrial roundwood, non-coniferous;5516;Production;m3;10601000;11070000;12744000;13179000;14223000;15218000;15411000;15278000;15849000;16857000;14842000;15494000;15357000;13947000;13993000;12366000;14102000;13917000;15482000;16978000;16825000;16327000;16867000;18407000;18890000;18670000;18951000;19504000;20866000;18500000;18229000;14622000;14455000;15191000;15484000;14781000;15917000;17229040;17770000;18232142;16576727;17313597;18197856;18606864;18707335;20335080;19731234;21293256;18752326;18019993;20664724;20876394;21840277;21436239;21545410;22150797;21842073;21803868;22074379;21885133;22172759;22473516;20686270 -5403;'039;Southern Europe;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6636920;5713957;5554161;3623954;5865571;6410023;5342829;6635232;8499030;7126323;7307511;7106625;5764089;4983340;4585859;5286497;4993119;5337300;4217272;2945515;3604285;4848675;4427602;5303639;5330599;3753223;3926115;3721644;4055605;4549199;4740821;5543585;5838268;4972279 -5403;'039;Southern Europe;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;931678;793373;769372;536465;742273;907844;692744;779232;864860;748141;742301;657400;599278;621811;661506;614533;613976;751437;603806;382969;437624;607772;421063;566756;533919;365181;380056;369551.28;358495.45;392922;369724;535895;640186;640425 -5403;'039;Southern Europe;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1187283;563796;1119458;588127;797905;1314914;919674;1361162;1370914;1148678;1307301;1604594;1579257;1790744;1636904;1900708;2177233;2455818;2995701;1862978;2912552;3705788;3085996;4092499;3713391;2381438;2451693;1728969;1924480;2414648;2121142;2206053;2278636;2331739 -5403;'039;Southern Europe;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100591;44766;99445;47156;54631;193370;172144;214268;177912;166128;70206;89334;88233;125048;141885;156296;162179;226651;325118;173623;260374;357762;305548;411460;372167;206208;219358;193617.79;207251.23;226398;215854;288459;335671;327605 -5403;'039;Southern Europe;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1923757;1503775;1325825;1163002;972500;989700;1050500;924030;1155800;1192883;942930;1166059;1126430;598941;510321;446688;434828;500081;321061;130862;105645;121891;77426;56506;46715;61537;58706;88541;103203;97511;120217;238945;365201;867415 -5403;'039;Southern Europe;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;474301;367509;351010;275932;258739;287773;264989;237965;298038;262628;234500;219800;217454;199920;216138;181503;164769;317536;162672;75267;57640;69366;38769;34910;28634;30840;28159;28800.06;34351.5;27423;39698;104701;166135;122043 -5403;'039;Southern Europe;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2691;3691;1100;1100;1000;5340;3441;5628;16060;4164;11299;16382;6547;5095;35246;4070;5177;6653;8925;8554;9258;14114;26500;23700;11231;11704;10202;8260;12262;9422;16269 -5403;'039;Southern Europe;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;615;772;181;181;376;1735;1465;2234;5279;2634;5961;8348;4954;3176;7904;5865;4005;6177;7154;6710;7356;10482;11243;11999;4192.81;7865;6543;7012;7607;5678;5248 -5403;'039;Southern Europe;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4713163;4210182;4228336;2460952;4893071;5420323;4292329;5711202;7343230;5933440;6364581;5940566;4637659;4384399;4075538;4839809;4558291;4837219;3896211;2814653;3498640;4726784;4350176;5247133;5283884;3691686;3867409;3633103;3952402;4451688;4620604;5304640;5473067;4104864 -5403;'039;Southern Europe;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;457377;425864;418362;260533;483534;620071;427755;541267;566822;485513;507801;437600;381824;421891;445368;433030;449207;433901;441134;307702;379984;538406;382294;531846;505285;334341;351897;340751.22;324143.95;365499;330026;431194;474051;518382 -5403;'039;Southern Europe;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1187283;563796;1119458;585436;794214;1313814;918574;1360162;1365574;1145237;1301673;1588534;1575093;1779445;1620522;1894161;2172138;2420572;2991631;1857801;2905899;3696863;3077442;4083241;3699277;2354938;2427993;1717738;1912776;2404446;2112882;2193791;2269214;2315470 -5403;'039;Southern Europe;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100591;44766;99445;46541;53859;193189;171963;213892;176177;164663;67972;84055;85599;119087;133537;151342;159003;218747;319253;169618;254197;350608;298838;404104;361685;194965;207359;189424.98;199386.23;219855;208842;280852;329993;322357 -5403;'039;Southern Europe;1868;Sawlogs and veneer logs;5516;Production;m3;11569000;12718000;13931000;13777000;14550000;14633000;15394000;15791000;16535000;17535000;16874000;16727000;16954000;16528000;15836000;16023000;16715000;20473000;20329000;19168000;19171000;20731000;20839000;19897000;19787000;21204000;19038000;18649000;21743000;21552000;19953000;16155000;15505000;16456500;16506500;16121500;18901500;18719330;18567000;20288847;18510657;18905500;19466872;18889376;18554988;17597419;16766846;17786425;14143847;14583210;14403341;15741564;14216848;15409568;16381727;17040819;18073435;19349622;22568585;18309135;18233082;18328146;19166860 -5403;'039;Southern Europe;1868;Sawlogs and veneer logs;5616;Import quantity;m3;1976900;2217900;2601300;2118100;2120550;2468400;2880800;2995900;3908200;3740900;3935400;4546300;6213800;5483800;4215800;5452800;5798769;4881300;5295400;5955700;5045700;4369100;4043000;4448000;4211300;4160600;4186800;4713700;5452400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5403;'039;Southern Europe;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;70657;79341;90661;80081;87649;98664;107007;120065;167954;161163;173033;217376;436304;492847;351795;459936;584355;533369;698846;989633;697082;561775;439211;428937;449543;543490;611787;725710;777296;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5403;'039;Southern Europe;1868;Sawlogs and veneer logs;5916;Export quantity;m3;1850;3400;3400;9000;15100;22300;51800;82400;85000;92500;113000;155700;183100;210000;271200;385270;438070;366900;397000;354800;239550;244200;345200;391700;273900;405100;576400;634500;980300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5403;'039;Southern Europe;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;111;116;115;353;502;664;1255;2137;2420;2748;3680;5231;9106;12905;17565;26289;36772;26468;33452;43538;33157;30043;41651;23531;19104;27901;59447;57124;112770;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5403;'039;Southern Europe;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;6937000;7600000;7783000;7492000;7869000;7678000;8207000;8776000;9289000;9832000;10500000;10104000;10299000;10188000;10468000;10531000;11063000;13248000;13158000;11576000;11340000;13129000;13567000;12073000;12458000;13620000;11770000;11233000;13397000;13945000;12358000;10559000;10334000;11069500;10722500;10185500;11792500;11253165;11205000;13237381;12247646;12242200;12353373;12277164;11990942;11209543;10470756;11051236;8712506;9143600;8895169;9944955;8556511;9623857;10515256;11135569;12172506;13159671;16354535;12217596;12108347;12269609;13640505 -5403;'039;Southern Europe;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;778200;906100;1111600;798000;682350;800800;971800;929900;1020600;790000;712500;895000;1346000;1491800;1026500;1209100;1363409;1252700;1362300;1613000;1396300;1204900;1052500;1244300;1173900;1065400;1037500;1054200;1295900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5403;'039;Southern Europe;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;19546;23453;27046;20624;17085;20648;23221;22392;26768;23264;21855;27227;61705;91233;66574;78407;97679;101722;129278;184290;133124;112816;75608;79130;71547;87617;102736;132839;135585;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5403;'039;Southern Europe;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;500;1600;2300;6500;10700;9000;8600;6500;7800;8800;21100;15500;9000;19000;9100;14870;11790;8300;29700;18400;25600;20100;21000;16300;7800;25100;26000;16900;17800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5403;'039;Southern Europe;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;24;25;54;179;279;294;198;184;207;240;577;579;539;703;613;959;783;945;2188;2837;2664;2338;1975;1060;879;3280;3704;2575;3524;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5403;'039;Southern Europe;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;4632000;5118000;6148000;6285000;6681000;6955000;7187000;7015000;7246000;7703000;6374000;6623000;6655000;6340000;5368000;5492000;5652000;7225000;7171000;7592000;7831000;7602000;7272000;7824000;7329000;7584000;7268000;7416000;8346000;7607000;7595000;5596000;5171000;5387000;5784000;5936000;7109000;7466165;7362000;7051466;6263011;6663300;7113499;6612212;6564046;6387876;6296090;6735189;5431341;5439610;5508172;5796609;5660337;5785711;5866471;5905250;5900929;6189951;6214050;6091539;6124735;6058537;5526355 -5403;'039;Southern Europe;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;1198700;1311800;1489700;1320100;1438200;1667600;1909000;2066000;2887600;2950900;3222900;3651300;4867800;3992000;3189300;4243700;4435360;3628600;3933100;4342700;3649400;3164200;2990500;3203700;3037400;3095200;3149300;3659500;4156500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5403;'039;Southern Europe;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;51111;55888;63615;59457;70564;78016;83786;97673;141186;137899;151178;190149;374599;401614;285221;381529;486676;431647;569568;805343;563958;448959;363603;349807;377996;455873;509051;592871;641711;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5403;'039;Southern Europe;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;1350;1800;1100;2500;4400;13300;43200;75900;77200;83700;91900;140200;174100;191000;262100;370400;426280;358600;367300;336400;213950;224100;324200;375400;266100;380000;550400;617600;962500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5403;'039;Southern Europe;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;87;91;61;174;223;370;1057;1953;2213;2508;3103;4652;8567;12202;16952;25330;35989;25523;31264;40701;30493;27705;39676;22471;18225;24621;55743;54549;109246;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5403;'039;Southern Europe;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12931830;13789000;13979773;12892100;13045100;13819886;15129175;14677164;17573743;17194976;17726031;16502530;15986337;19017441;18269703;20015100;20395657;20404119;22014813;21693948;21997153;23310030;21683540;22497652;22615199;20963052 -5403;'039;Southern Europe;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4755165;4888000;4123834;4035500;3577100;3785000;4434440;3667678;5227833;5006629;4770851;4439888;4397172;4589875;3909398;4608733;5482063;5518575;6522902;6476969;7141790;8154068;6598877;7231731;6951775;6390503 -5403;'039;Southern Europe;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8176665;8901000;9855939;8856600;9468000;10034886;10694735;11009486;12345910;12188347;12955180;12062642;11589165;14427566;14360305;15406367;14913594;14885544;15491911;15216979;14855363;15155962;15084663;15265921;15663424;14572549 -5403;'039;Southern Europe;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5616;Import quantity;m3;1442300;1383900;1172900;1174900;1493700;1366600;1762400;2028700;1837700;2489900;2014700;2284000;2312000;3341600;2389400;1940600;2212700;2819800;3243300;3598600;2811300;2671000;2152100;2513600;3281000;2690500;2807700;3476800;3855800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5403;'039;Southern Europe;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5622;Import value;1000 USD;21616;20764;15841;17821;22862;21306;25642;28909;26879;47617;38474;40206;49318;112074;81296;70332;80837;112892;126809;197070;152239;141026;104737;91404;136054;123362;135618;169802;277597;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5403;'039;Southern Europe;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5916;Export quantity;m3;645500;518200;518000;514300;426500;245800;251900;332400;345000;580400;453000;259100;278900;382300;253300;290900;390700;762200;1247800;1099800;598900;387000;283300;461400;644300;453400;666200;605900;774000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5403;'039;Southern Europe;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5922;Export value;1000 USD;6984;5704;5440;5762;5837;3205;3014;3786;4714;7444;6929;3966;4261;10412;8245;7672;10971;15474;28196;48333;27547;12899;9206;9757;18637;17942;31851;35094;38939;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5403;'039;Southern Europe;1870;Pulpwood and particles (1961-1997);5516;Production;m3;3728000;3449000;3766000;4568000;5100000;5790000;5755000;6205000;6643000;7764000;7215000;7763000;9070000;9002000;10210000;10151000;11697000;11239000;11634000;12836000;12729000;12667000;12985000;14162000;14702000;15941000;17365000;17246000;17668000;15312000;14800000;11834000;11857000;12667000;12595000;12240000;12081000;;;;;;;;;;;;;;;;;;;;;;;;;; -5403;'039;Southern Europe;1870;Pulpwood and particles (1961-1997);5616;Import quantity;m3;1442300;1383900;1172900;1174900;1493700;1366600;1762400;2028700;1837700;2489900;2014700;2284000;2312000;3341600;2389400;1940600;2212700;2819800;3243300;3598600;2811300;2671000;2152100;2513600;3281000;2690500;2807700;3476800;3855800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5403;'039;Southern Europe;1870;Pulpwood and particles (1961-1997);5622;Import value;1000 USD;21616;20764;15841;17821;22862;21306;25642;28909;26879;47617;38474;40206;49318;112074;81296;70332;80837;112892;126809;197070;152239;141026;104737;91404;136054;123362;135618;169802;277597;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5403;'039;Southern Europe;1870;Pulpwood and particles (1961-1997);5916;Export quantity;m3;645500;518200;518000;514300;426500;245800;251900;332400;345000;580400;453000;259100;278900;382300;253300;290900;390700;762200;1247800;1099800;598900;387000;283300;461400;644300;453400;666200;605900;774000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5403;'039;Southern Europe;1870;Pulpwood and particles (1961-1997);5922;Export value;1000 USD;6984;5704;5440;5762;5837;3205;3014;3786;4714;7444;6929;3966;4261;10412;8245;7672;10971;15474;28196;48333;27547;12899;9206;9757;18637;17942;31851;35094;38939;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5403;'039;Southern Europe;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;1662000;1523000;1357000;1730000;1882000;2442000;1995000;2258000;2280000;2837000;3183000;3370000;4430000;4563000;4629000;6348000;6629000;6461000;5323000;5645000;5761000;5927000;5432000;5587000;5258000;6445000;7511000;7497000;7733000;6387000;5763000;4058000;3943000;4104000;4642000;4658000;4597000;;;;;;;;;;;;;;;;;;;;;;;;;; -5403;'039;Southern Europe;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;2066000;1926000;2409000;2838000;3218000;3348000;3760000;3947000;4363000;4927000;4032000;4393000;4640000;4439000;5581000;3803000;5068000;4778000;6311000;7191000;6968000;6740000;7553000;8575000;9444000;9496000;9854000;9749000;9935000;8925000;9037000;7776000;7914000;8563000;7953000;7582000;7484000;;;;;;;;;;;;;;;;;;;;;;;;;; -5403;'039;Southern Europe;1871;Other industrial roundwood;5516;Production;m3;5724000;5945000;6184000;6322000;6748000;7175000;6599000;6342000;6508000;6321000;6594000;6890000;6349000;5562000;5443000;5516000;6090000;3672000;3671000;3953000;3748000;3909000;3805000;3684000;3780000;2888000;3010000;3646000;4017000;3087000;3041000;2470000;2501000;2981000;2909000;2340000;2566000;2905420;2811000;2603408;2744575;2611297;2535576;2867643;2693686;2674955;2555626;2981191;2415578;1957326;1543355;1500763;1358153;1416759;1478644;1452214;1368484;1721562;2115762;1812303;1840276;1876435;1540528 -5403;'039;Southern Europe;1871;Other industrial roundwood;5616;Import quantity;m3;196200;177600;156700;137300;161000;170400;295500;322800;275300;237700;288000;229700;189100;260600;173500;119010;141830;191200;171200;141900;101000;134000;132800;135400;131100;183800;129300;143100;528000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5403;'039;Southern Europe;1871;Other industrial roundwood;5622;Import value;1000 USD;5538;5802;5003;4536;5805;6473;11537;13081;10473;10338;12981;11110;12439;22522;14696;10830;17113;24484;25665;24901;14914;19876;17300;16636;15225;25063;19288;19684;69553;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5403;'039;Southern Europe;1871;Other industrial roundwood;5916;Export quantity;m3;54100;66600;69700;86100;72800;80300;94800;112400;139300;168000;191900;282200;341500;197200;154000;161600;153500;81200;67400;40200;52200;79100;75800;41200;25300;40200;39400;29300;30300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5403;'039;Southern Europe;1871;Other industrial roundwood;5922;Export value;1000 USD;821;994;1192;1355;1191;1450;1714;2324;2957;3802;4701;6512;11161;7938;7711;7971;9490;5272;4613;3516;5228;7007;5547;3342;2858;4513;5887;4847;5255;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5403;'039;Southern Europe;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;1821000;1919000;1997000;2266000;2424000;2260000;2135000;2026000;2268000;2094000;2158000;2412000;2287000;2394000;2399000;2445000;2708000;1758000;1671000;1758000;1722000;1924000;1763000;1676000;1663000;1298000;1181000;1307000;1432000;1119000;1444000;1220000;1131000;1740000;1162000;1077000;1242000;1319210;1304000;1278671;1287459;1429000;1486105;1567726;1559883;1073661;1308829;1378304;1157235;966108;814369;781283;584580;679825;685249;698578;644319;963008;1411395;1103372;1058173;1124880;953162 -5403;'039;Southern Europe;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;3903000;4026000;4187000;4056000;4324000;4915000;4464000;4316000;4240000;4227000;4436000;4478000;4062000;3168000;3044000;3071000;3382000;1914000;2000000;2195000;2026000;1985000;2042000;2008000;2117000;1590000;1829000;2339000;2585000;1968000;1597000;1250000;1370000;1241000;1747000;1263000;1324000;1586210;1507000;1324737;1457116;1182297;1049471;1299917;1133803;1601294;1246797;1602887;1258343;991218;728986;719480;773573;736934;793395;753636;724165;758554;704367;708931;782103;751555;587366 -5403;'039;Southern Europe;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;196200;177600;156700;137300;161000;170400;295500;322800;275300;237700;288000;229700;189100;260600;173500;119010;141830;191200;171200;141900;101000;134000;132800;135400;131100;183800;129300;143100;528000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5403;'039;Southern Europe;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;5538;5802;5003;4536;5805;6473;11537;13081;10473;10338;12981;11110;12439;22522;14696;10830;17113;24484;25665;24901;14914;19876;17300;16636;15225;25063;19288;19684;69553;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5403;'039;Southern Europe;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;54100;66600;69700;86100;72800;80300;94800;112400;139300;168000;191900;282200;341500;197200;154000;161600;153500;81200;67400;40200;52200;79100;75800;41200;25300;40200;39400;29300;30300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5403;'039;Southern Europe;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;821;994;1192;1355;1191;1450;1714;2324;2957;3802;4701;6512;11161;7938;7711;7971;9490;5272;4613;3516;5228;7007;5547;3342;2858;4513;5887;4847;5255;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5403;'039;Southern Europe;1630;Wood charcoal;5510;Production;t;55690;59690;59190;58091;64193;69895;66897;64400;63004;61708;65148;72829;68690;64626;93098;92009;101403;99376;94052;116577;119685;144425;168711;162985;145386;137271;136821;139268;148073;147547;137431;124280;127289;121840;124105;122007;126817;92900;115400;59791;46400;51044;107544;118544;118544;116544;125444;120887;128858;189118;191499;175833;181786;185922;234628;199922;198916;201028;216185;171087;147155;170730;161552 -5403;'039;Southern Europe;1630;Wood charcoal;5610;Import quantity;t;23000;17300;17700;19100;11600;6500;8900;12100;22300;19100;16700;7600;10000;22600;22200;19400;11600;18100;17200;15400;14500;17200;13400;19900;24500;32200;33800;30700;24700;24600;34600;47396;42362;51495;48131;53431;69660;73873;67409;89505;104109;128632;156827;182543;188145;207068;230006;265230;257854;238400;220063;208367;187231;192143;187622;202281;214439;229038;243612;230013;246570;251007;291830 -5403;'039;Southern Europe;1630;Wood charcoal;5622;Import value;1000 USD;1112;844;847;953;630;366;447;620;970;1178;1306;652;868;2627;3504;2884;2021;2957;3306;4692;4461;4926;2600;4090;5473;7244;7724;9235;9106;10085;14310;17429;14054;14565;14212;16603;19145;21813;17641;21785;23183;28288;38172;51422;56579;63208;80796;93749;98171;90031;96963;86489;91583;94848;90411;93198;94045.66;103179.93;105651;97405;113323;134066;153534 -5403;'039;Southern Europe;1630;Wood charcoal;5910;Export quantity;t;32900;18000;18300;14900;12300;13900;12400;18500;30100;45100;26300;16700;12300;23600;31100;36900;39000;24900;37400;59000;61700;82300;113100;111000;98200;93400;97300;100300;98400;60100;58800;37658;25899;17366;14840;14100;28542;30290;32086;41245;75849;40123;105419;116814;109652;120298;69347;71367;93854;64618;64616;66647;70585;79445;89082;95213;88011;110910;103035;113296;125448;125369;144953 -5403;'039;Southern Europe;1630;Wood charcoal;5922;Export value;1000 USD;1539;829;823;787;730;776;657;954;1474;2477;1884;1303;1228;3180;5436;6401;6616;4270;9020;16781;15871;17849;20825;22475;20606;20740;22790;23346;22968;23600;23428;13078;8757;6365;5398;4751;8104;7970;8263;9596;15284;10272;17783;24395;21440;29669;30352;35735;39827;28140;32307;31539;36289;41315;36492;39590;40984.31;44764.81;43808;51188;62818;68293;76346 -5403;'039;Southern Europe;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4576775;4026039;6481970;6672432;7669097;7047419;8191718;7715597;8628908;8562964;8095304;8213181;11609115;9664326;12171788;11305417;15988402;15065540;14054324;14438576;14391557;14202467;11457888;12425298;12650477;11961553 -5403;'039;Southern Europe;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2263157;2245621;2691072;2699843;2904324;3509010;4406293;5102578;4896508;4144633;4294877;4176231;7975836;5063264;3906094;4952707;5241302;4171539;3328366;3488731;3770574;3770585;2685731;4162077;5222706;3071880 -5403;'039;Southern Europe;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54604;56434;55835;50709;54795;114925;175066;186714;253964;179458;278552;264564;573930;641746;261027;320843;324620;267195;192726;195872.16;214376.72;234306;129201;222027;316527;245469 -5403;'039;Southern Europe;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;159986;105070;219102;276123;412828;472176;522602;761847;982880;1429418;1815091;2117222;2652337;2626201;1709775;2205411;2656883;2765888;2511022;2168342;2210563;2073295;2314822;2309751;2831611;1953039 -5403;'039;Southern Europe;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6846;7336;6682;7611;14335;18640;23997;36103;56109;91643;130016;194867;228284;152161;104586;126603;147439;130281;125438;99602.12;123420.87;114449;107026;111798;149102;141282 -5403;'039;Southern Europe;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1465000;1324539;3385410;3680000;4518000;4611700;5777936;4742936;5430723;4584424;4267494;2725913;4593088;3872150;5762170;5212648;8974776;9150113;9774562;10313091;10016592;9959075;7892712;8250965;8813877;8167424 -5403;'039;Southern Europe;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;200;100;4700;2500;5000;2600;102000;28200;16200;29000;29000;112000;192000;284000;368591;382605;670954;919041;832519;1420125;1591347;1576039;1829459;1676664;1681578;2066585;2322387;2514195;2927952;2384551;2252643;2252208;4617213;4602207;2212580;2879262;2829397;2189490;2528034;2829130;3013261;3021466;1971886;3241433;4123857;2269290 -5403;'039;Southern Europe;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;8;18;263;119;240;95;1729;847;628;1364;1364;5093;8577;11738;14088;12665;24883;29520;19390;35755;35183;35579;33538;27261;25096;65220;88107;94070;133686;107938;144288;127888;249978;287498;152900;188929;180722;141746;162075;172596.31;185268.63;205317;102678;182306;277628;199920 -5403;'039;Southern Europe;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;9600;13500;81600;188000;243000;332000;399400;409400;367000;172000;157000;139100;75300;122368;92397;46000;44500;39300;57775;77375;21904;25929;25457;54044;60737;105894;169218;221364;271007;476782;395651;427232;509032;781797;1172295;1364856;1345209;1296950;1398506;1429272;1382855;1656503;1741289;2368733;1555819 -5403;'039;Southern Europe;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;411;632;1772;3323;4265;5684;6935;9469;9428;7997;7858;3507;2471;5055;2428;2311;2699;1637;3205;4239;4151;1071;878;1518;2906;4726;7505;9078;15805;30262;32825;29518;39734;47407;59951;64619;52686;51388;68252.47;86882.92;82595;78972;85127;124311;117750 -5403;'039;Southern Europe;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3691000;4031000;3831000;3757800;2941900;3135000;3111775;2701500;3096560;2992432;3151097;2435719;2413782;2972661;3198185;3978540;3827810;5487268;7016027;5792176;6409618;6092769;7013626;5915427;4279762;4125485;4374965;4243392;3565176;4174333;3836600;3794129 -5403;'039;Southern Europe;1620;Wood residues;5616;Import quantity;m3;;;;152800;152300;210500;246600;205400;196000;128800;142200;315100;370600;453000;332100;530058;184544;111000;114000;135600;263000;349100;312000;345000;303700;302700;290000;290000;342000;330900;451900;614139;611238;784588;513713;470713;534184;671810;669582;861613;1023179;1222746;1442425;2083906;2588383;1968556;1760082;2042234;1924023;3358623;461057;1693514;2073445;2411905;1982049;800332;659601;757313;749119;713845;920644;1098849;802590 -5403;'039;Southern Europe;1620;Wood residues;5622;Import value;1000 USD;;;;1804;1786;2678;3305;2339;2288;1828;2281;5111;7053;13670;11556;17050;6438;3322;4593;6685;8016;9068;6610;7342;7789;9852;9468;9468;12280;12006;18666;27566;20187;25973;17249;15375;16488;19421;20855;22297;23448;29699;49705;86959;92644;120278;71520;134264;136676;323952;354248;108127;131914;143898;125449;30651;23275.85;29108.08;28989;26523;39721;38899;45549 -5403;'039;Southern Europe;1620;Wood residues;5916;Export quantity;m3;;;;;;;;100;200;2400;300;500;400;100;300;775;2185;500;200;100;183800;125100;61600;79000;79500;86000;25000;16000;14500;5000;5500;34433;59831;62175;62611;39611;38186;82611;83166;193173;250666;358784;411439;416708;592629;761516;1158411;1338309;1721571;2225105;2117169;927978;1033116;1292027;1420679;1214072;769836;781291;690440;658319;568462;462878;397220 -5403;'039;Southern Europe;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;7;14;33;7;33;25;10;34;42;134;32;23;14;3014;2143;888;1273;1416;1980;857;515;1158;415;543;1751;1874;1407;1453;1314;1129;2607;3185;5611;6733;12817;15734;19271;28598;47031;75838;99754;162042;198766;112427;57179;66652;82820;77595;74050;31349.65;36537.95;31854;28054;26671;24791;23532 -5403;'039;Southern Europe;1605;Sawdust (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;363020;358666 -5403;'039;Southern Europe;1605;Sawdust (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20199;27528 -5403;'039;Southern Europe;1605;Sawdust (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;130742;187414 -5403;'039;Southern Europe;1605;Sawdust (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8675;9267 -5403;'039;Southern Europe;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2316200;2434000;2528000;2601000;2652000;2633000;2642000 -5403;'039;Southern Europe;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62992;34602;23676;33514;168004;171913;106763 -5403;'039;Southern Europe;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2209.09;1280;953;2275;6417;5876;8361 -5403;'039;Southern Europe;1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66007;16422;38121;143676;429865;270540;168111 -5403;'039;Southern Europe;1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8168.72;3821;5852;7410;25278;16726;14359 -5403;'039;Southern Europe;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2008073;2478445;2868719;3144542;2756002;3068320;3151309;3583893;3238381;3237501;3676903;3428000 -5403;'039;Southern Europe;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1426171;2054702;2316028;2035800;2129768;2475517;2943035;3395762;2682461;2883471;2700097;2758421 -5403;'039;Southern Europe;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;327023;511495;574910;395918;397481;477748.24;623054.8;725910;511450;619803;898703;816708 -5403;'039;Southern Europe;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1172061;1551864;1523949;1451542;1396396;1626443;1750408;1949935;1811870;1711185;1784490;1638515 -5403;'039;Southern Europe;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;202004;304476;307221;238174;222963;262094.19;319045.68;343980;310034;320428;508681;433508 -5403;'039;Southern Europe;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1717400;2228772;2579197;2910553;2480938;2755919;2879969;3223053;2978571;2963133;3369766;3132858 -5403;'039;Southern Europe;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1324611;1968791;2217797;1962588;2047095;2245686;2636131;3020630;2384153;2590210;2333927;2440080 -5403;'039;Southern Europe;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;305792;493701;553419;382736;382984;444217.82;577213.34;685474;482242;581967;850415;772393 -5403;'039;Southern Europe;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;946466;1344054;1310138;1266040;1184745;1258332;1337979;1532735;1444215;1382057;1410770;1269631 -5403;'039;Southern Europe;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;165222;266215;268307;208852;191404;203719.06;246963.68;274584;255451;260193;420552;352697 -5403;'039;Southern Europe;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;290673;249673;289522;233989;275064;312401;271340;360840;259810;274368;307137;295142 -5403;'039;Southern Europe;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101560;85911;98231;73212;82673;229831;306904;375132;298308;293261;366170;318341 -5403;'039;Southern Europe;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21231;17794;21491;13182;14497;33530.41;45841.47;40436;29208;37836;48288;44315 -5403;'039;Southern Europe;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;225595;207810;213811;185502;211651;368111;412429;417200;367655;329128;373720;368884 -5403;'039;Southern Europe;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36782;38261;38914;29322;31559;58375.13;72082;69396;54583;60235;88129;80811 -5403;'039;Southern Europe;1872;Sawnwood;5516;Production;m3;7594200;8247200;8645500;8666800;8696000;8772000;9239000;9795000;9966000;10165000;11109000;10641000;11479000;10775000;9649000;10653000;11053200;11193200;12285200;11946200;11636000;12352200;11539200;12169200;12111200;11962200;11858200;11797200;12179200;11823200;10955000;8094600;7861800;8045600;8639600;8334600;8825100;8787727;8653857;9370723;9834724;9056054;9409832;9622999;9533029;9889120;9118766;8599816;7086269;7314412;7589348;7377893;7550110;8054623;8409156;8879311;10201913;10403300;9906027;8699970;8946026;9489911;9442766 -5403;'039;Southern Europe;1872;Sawnwood;5616;Import quantity;m3;3428500;3842900;4497500;4125200;4216900;4692500;5035300;5430600;5910300;5868000;5529900;6227500;7217200;6257500;5256000;6662900;6537200;6748100;8069400;7820100;6712400;6457100;6271900;6666700;6586700;6717200;7439900;7974700;8564800;8710700;8575500;9439497;8298646;8961502;8882796;8344627;11169474;11613404;12298278;13628560;13008443;13434865;13511633;13325640;13377722;13529109;15278807;12198797;9549322;9766178;9148784;7751279;7564306;7848676;7927917;8024854;8574730;8515041;9316026;7361317;8566298;9537342;9028954 -5403;'039;Southern Europe;1872;Sawnwood;5622;Import value;1000 USD;151229;173203;202292;192871;204988;236873;243346;258426;304489;355273;338757;408051;691456;820157;608358;835499;916428;1054991;1536471;1926602;1384739;1310795;1060571;1097314;1013160;1248436;1639472;1833679;2226879;2649569;2653717;2746616;2198701;2455902;2837829;2089790;2847817;2819220;2850027;2809085;2530960;2780584;3248195;3572870;3520143;3822834;4879109;3652890;2535451;2733510;2751002;2081250;2069612;2176714;1995389;1986181;2119720.35;2317972.74;2077352;1813488;2940327;3307618;2563351 -5403;'039;Southern Europe;1872;Sawnwood;5916;Export quantity;m3;909900;1127700;1268700;1317100;1209900;1236000;1162700;1280400;1388900;1402600;1257000;1467600;1917100;1620900;1224600;2188400;2135536;2215650;2277450;2308000;1886000;1993300;2044000;2649300;2246500;2310100;2315144;2670310;2722620;2620198;2419498;2222008;1590775;1649847;1637744;1374551;1721364;1939165;1817142;2005614;2092734;1884638;1899222;2714018;2604976;2824044;4118616;3551029;2883474;3243531;3600247;3674405;3992799;4467367;4483642;4376350;4671850;4635943;4774043;4387303;4958620;4389436;3777343 -5403;'039;Southern Europe;1872;Sawnwood;5922;Export value;1000 USD;47175;54770;58439;63579;62096;66125;61375;66518;73003;79516;79754;100929;193041;240975;151043;248455;269898;310793;404879;520007;371535;342863;348047;312404;299247;320899;438871;491032;527387;655049;603724;511011;484973;520077;616616;453813;619085;637039;491581;513767;467513;481336;512117;706673;679931;783549;1183354;1175669;881305;972619;1104173;1047675;1148821;1328796;1206530;1218037;1311912.02;1492125.8;1407738;1275741;1783533;1847311;1569004 -5403;'039;Southern Europe;1632;Sawnwood, coniferous;5516;Production;m3;4617100;5195600;5407250;5328900;5146500;5046000;5362000;5778500;5938500;5945500;6559500;6474500;7215500;6940000;6293500;6811000;6904100;7044600;7703600;7503600;7303000;7878600;7441100;7514600;7365100;7461600;7216600;7129600;7495600;7362100;6642000;4803000;5158300;4926700;5381700;5166700;5393200;5418975;5407273;5627023;5995703;5458639;5623598;5776532;5821224;6149190;5422784;5290812;4706276;4606964;5029872;4756918;4807146;5237006;5430819;5801206;6244171;6447512;5929696;5117320;5315190;5791258;5995266 -5403;'039;Southern Europe;1632;Sawnwood, coniferous;5616;Import quantity;m3;3045350;3425350;3956000;3585800;3638700;3956350;4239700;4547300;4927150;4759350;4416950;4951000;5505150;5056350;4119900;4888550;4755900;5075450;6090200;5807950;5146850;4836300;4764550;4983500;4615950;4927800;5333950;5620050;6298100;6119300;6032200;6599378;5828608;6451116;6122907;6583538;7912181;8002015;8441288;9802290;9463892;9862473;10102878;9975612;10162555;10652849;11967646;9800732;7979458;8145197;7564160;6543045;6361688;6527170;6565757;6610863;6887669;6824075;7747947;5960375;6939055;7938132;7430311 -5403;'039;Southern Europe;1632;Sawnwood, coniferous;5622;Import value;1000 USD;132194;152859;175709;163642;170267;193094;196432;209682;247478;279115;258453;310287;500958;634596;444547;572346;632694;708965;1018587;1301658;966379;895892;719969;736620;640320;802972;1005699;1121056;1375490;1666849;1593978;1599913;1217213;1365421;1490493;1386631;1507699;1513039;1532710;1506207;1327375;1549233;1848243;2027283;2002406;2349059;2976957;2335539;1763917;1870351;1899884;1487299;1480298;1546401;1338045;1302220;1404692.61;1529486.32;1363923;1227780;2199704;2337444;1751891 -5403;'039;Southern Europe;1632;Sawnwood, coniferous;5916;Export quantity;m3;595750;747950;840950;803350;709050;673450;596750;680600;724000;745900;648300;755850;1119500;1010750;640500;1185850;1242114;1046175;1280125;1363450;1171300;1362400;1393700;1766600;1524150;1596100;1503600;1761400;1810500;1763900;1589400;1477734;819852;926012;852128;952332;977241;1000928;880176;849671;983090;966339;966429;1374928;1433300;1522028;2251078;2041047;1865553;2068121;2269048;2340940;2705790;2784506;2738438;2543900;2524324;2730442;2887960;2571188;2862926;2265224;2127406 -5403;'039;Southern Europe;1632;Sawnwood, coniferous;5922;Export value;1000 USD;27770;32575;34006;33033;30283;29654;25309;28860;30979;34600;31726;39719;79550;119346;61058;104886;123640;112485;152443;206744;139375;139471;136878;148760;140925;170368;203988;223028;214735;270034;220920;203096;144782;190183;219085;192161;218561;230106;157691;109484;128447;132978;139506;216316;218239;246588;480505;479086;386204;436504;469522;480479;529839;595581;500381;458828;469206.83;570707.98;560467;494953;773051;742850;606853 -5403;'039;Southern Europe;1633;Sawnwood, non-coniferous;5516;Production;m3;2977100;3051600;3238250;3337900;3549500;3726000;3877000;4016500;4027500;4219500;4549500;4166500;4263500;3835000;3355500;3842000;4149100;4148600;4581600;4442600;4333000;4473600;4098100;4654600;4746100;4500600;4641600;4667600;4683600;4461100;4313000;3291600;2703500;3118900;3257900;3167900;3431900;3368752;3246584;3743700;3839021;3597415;3786234;3846467;3711805;3739930;3695982;3309004;2379993;2707448;2559476;2620975;2742964;2817617;2978337;3078105;3957742;3955788;3976331;3582650;3630836;3698653;3447500 -5403;'039;Southern Europe;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;383150;417550;541500;539400;578200;736150;795600;883300;983150;1108650;1112950;1276500;1712050;1201150;1136100;1774350;1781300;1672650;1979200;2012150;1565550;1620800;1507350;1683200;1970750;1789400;2105950;2354650;2266700;2591400;2543300;2840119;2470038;2510386;2759889;1761089;3257293;3611389;3856990;3826270;3544551;3572392;3408755;3350028;3215167;2876260;3311161;2398065;1569864;1620981;1584624;1208234;1202618;1321506;1362160;1413991;1687061;1690966;1568079;1400942;1627243;1599210;1598643 -5403;'039;Southern Europe;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;19035;20344;26583;29229;34721;43779;46914;48744;57011;76158;80304;97764;190498;185561;163811;263153;283734;346026;517884;624944;418360;414903;340602;360694;372840;445464;633773;712623;851389;982720;1059739;1146703;981488;1090481;1347336;703159;1340118;1306181;1317317;1302878;1203585;1231351;1399952;1545587;1517737;1473775;1902152;1317351;771534;863159;851118;593951;589314;630313;657344;683961;715027.73;788486.42;713429;585708;740623;970174;811460 -5403;'039;Southern Europe;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;314150;379750;427750;513750;500850;562550;565950;599800;664900;656700;608700;711750;797600;610150;584100;1002550;893422;1169475;997325;944550;714700;630900;650300;882700;722350;714000;811544;908910;912120;856298;830098;744274;770923;723835;785616;422219;744123;938237;936966;1155943;1109644;918299;932793;1339090;1171676;1302016;1867538;1509982;1017921;1175410;1331199;1333465;1287009;1682861;1745204;1832450;2147526;1905501;1886083;1816115;2095694;2124212;1649937 -5403;'039;Southern Europe;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;19405;22195;24433;30546;31813;36471;36066;37658;42024;44916;48028;61210;113491;121629;89985;143569;146258;198308;252436;313263;232160;203392;211169;163644;158322;150531;234883;268004;312652;385015;382804;307915;340191;329894;397531;261652;400524;406933;333890;404283;339066;348358;372611;490357;461692;536961;702849;696583;495101;536115;634651;567196;618982;733215;706149;759209;842705.19;921417.82;847271;780788;1010482;1104461;962151 -5403;'039;Southern Europe;1634;Veneer sheets;5516;Production;m3;60600;269600;271500;316800;400900;432000;426700;419700;464000;485600;521700;515800;669200;721700;788000;825000;765000;729000;730000;758000;769000;734000;770000;818000;823000;840000;784000;1016000;1092000;1107000;891000;749000;824000;763000;831000;1004000;994000;690070;716890;690000;707100;789400;700400;690000;712000;722000;683750;639219;532982;523293;543489;499158;428484;437289;444014;536512;370522;403103;348815;294221;324835;396472;334033 -5403;'039;Southern Europe;1634;Veneer sheets;5616;Import quantity;m3;7424;7560;10900;6700;6900;13100;16400;19500;23000;24700;25800;29400;33800;44900;32600;45050;48941;52900;78200;98200;78700;69400;72400;93600;93000;105300;125500;143200;174700;145900;127500;167025;171016;192288;220915;259165;271803;307210;307435;372122;368691;384952;404861;429198;446659;462868;672774;456095;326092;366235;352592;307707;296902;315428;303927;360211;450757;430959;423682;391754;502202;505077;539032 -5403;'039;Southern Europe;1634;Veneer sheets;5622;Import value;1000 USD;1027;1145;1785;1698;2023;4345;4965;6387;8487;9339;10704;13133;19643;33405;25000;34537;44699;51033;84226;116265;87661;75631;64887;67393;65822;89008;126187;139177;161551;200340;195060;239473;223515;254301;312655;307060;354000;370281;406364;460096;442877;486186;601283;676789;714310;970966;876926;640798;411717;480004;466238;346321;353219;389459;363556;391633;446457.08;471552.02;457760;382821;589484;604068;531243 -5403;'039;Southern Europe;1634;Veneer sheets;5916;Export quantity;m3;24200;21400;23100;27400;33700;52200;38700;43500;49900;51100;55300;58100;65200;59100;58400;65200;64590;123300;139500;154400;122800;76600;149900;177300;177300;190300;183600;177600;202500;206700;171900;157902;75615;74200;103300;93700;154449;112440;110979;176913;174566;188395;176310;183560;181009;190714;242782;212883;144828;155381;174681;186995;170379;177569;171959;194154;240978;201829;241599;202795;267560;262800;249986 -5403;'039;Southern Europe;1634;Veneer sheets;5922;Export value;1000 USD;11723;13019;13945;19437;24836;26617;25113;28964;31178;32126;32282;34838;51467;54453;46190;50824;54429;70955;91576;119965;90973;74325;70089;69747;79962;88936;107324;103036;133795;137477;131927;132944;125204;147000;167667;159715;194525;183775;175278;213547;222430;247417;297615;353805;374827;391668;495230;456827;324809;316659;345740;330553;304463;321165;280083;305869;351591.84;406706.96;434179;345305;501386;594743;585586 -5403;'039;Southern Europe;1873;Wood-based panels;5516;Production;m3;644900;780200;1246300;1321300;1561400;1838400;2053700;2325100;2556100;2914400;3342300;4388500;5060600;4169200;4471000;4901000;5508000;5441000;5770000;5888000;5937000;5691000;5509000;5623000;5730000;6131000;6450000;7939000;8379000;8329200;8273700;6967200;7087200;7221600;8303500;8005900;8549200;10538705;10806413;12370047;12238706;12726222;12179208;12763712;12717712;13224280;13673339;11074948;9855535;10255200;9998622;8655380;8453760;9339151;9685670;9686371;9986429;10786502;10783352;9989766;11398724;10827658;11154115 -5403;'039;Southern Europe;1873;Wood-based panels;5616;Import quantity;m3;59900;70000;93400;86500;76800;95787;128637;147927;172577;242203;235294;363952;486998;770232;363381;548782;419944;338554;626640;749840;662700;516200;533600;645700;758300;798400;1075300;1026100;1371000;1435100;1513100;1993564;1635323;1727626;1848453;1992803;2829623;3632420;3882030;3631581;3696159;4485495;4622388;5243705;5152009;5516477;6437507;5698383;4287718;4946969;4945582;4602683;5028389;5546259;5692561;5869913;6513540;6922614;7053632;6242629;6939258;7345353;6889952 -5403;'039;Southern Europe;1873;Wood-based panels;5622;Import value;1000 USD;7081;8097;10655;9945;9510;10127;11851;12098;14633;22473;22303;31918;53483;97133;48285;67150;65037;58067;126437;203159;157050;124561;94266;104251;113991;164832;246491;285572;366410;454195;473600;592980;425523;503238;623815;662411;785880;977455;1005970;857589;900291;1023607;1303837;1651743;1714192;1941317;2324850;2304870;1798208;1773064;1838673;1620785;1827088;2011387;1801647;1891920;2033822.18;2372594.33;2129820;1962224;2791963;3288826;2986830 -5403;'039;Southern Europe;1873;Wood-based panels;5916;Export quantity;m3;41600;58100;92500;128600;253800;285911;313354;372532;420041;341643;401114;464060;453431;363160;326883;401113;490800;581300;740300;817100;822700;736500;849500;879100;986600;1057400;1103600;1141800;1288300;1440700;1514500;1640401;1943646;2148209;1917702;2073310;2569814;2825434;2588147;3097876;2808676;3823376;3314814;4042924;3666643;3733122;4537435;4690711;4032023;4142490;4525178;4393901;4255006;4415164;4456690;4149003;4616445;4530921;4541156;4352263;5245625;4942294;4269803 -5403;'039;Southern Europe;1873;Wood-based panels;5922;Export value;1000 USD;8642;10248;12955;18056;26213;31055;33829;42936;49461;48405;59317;78157;101943;108213;89597;114518;145476;160488;240437;289351;240039;219027;249813;220401;239606;298540;358560;380247;438399;576420;605432;581988;582153;682876;746271;759953;792007;885766;718073;746152;729502;878194;1034344;1344248;1392479;1614672;1965099;1877401;1423600;1467886;1739496;1606082;1652407;1828186;1627734;1678654;1823678.13;2030435.17;1925416;1778552;2635756;2922245;2505141 -5403;'039;Southern Europe;1640;Plywood and LVL;5516;Production;m3;425000;476800;670700;589600;634300;644700;691400;761200;829200;891000;998800;1264400;1207100;883900;940000;985000;915000;816000;842000;818000;860000;793000;658000;740000;749000;810000;783000;810000;854000;790200;776700;768200;837200;763600;859500;683700;663200;953705;1005413;990131;1026090;994132;997232;948902;1033902;952000;1114749;841829;743036;746714;831437;714842;651460;707613;804216;848047;958017;1028256;1139277;1033015;1156425;978231;1226904 -5403;'039;Southern Europe;1640;Plywood and LVL;5616;Import quantity;m3;23800;27100;37000;34800;38000;36100;36700;32000;35000;40300;26000;32700;56000;61600;39900;67500;87640;63200;98800;141300;119800;92500;86400;101500;106900;123800;146600;187300;230300;261400;266600;319392;299320;332505;394304;375392;481554;733233;731618;589160;627353;762243;802520;858959;841385;944330;1106738;874221;681160;739046;722002;621996;671064;769799;799319;878790;951056;987545;1145284;868556;1135816;1240066;972277 -5403;'039;Southern Europe;1640;Plywood and LVL;5622;Import value;1000 USD;3585;4194;5568;5310;5766;5593;5517;4952;6309;8552;5627;8174;14404;20061;15131;19689;27093;22685;43829;74540;60766;47235;35484;36441;37627;54927;72214;95668;118555;160471;157530;190460;151776;184099;229033;230952;263405;220369;266390;283062;319873;342801;406614;480258;522437;592470;690983;625312;448412;421983;455357;371346;400684;459815;422322;439843;487121.85;588613.22;503027;448330;714707;839090;733633 -5403;'039;Southern Europe;1640;Plywood and LVL;5916;Export quantity;m3;35700;43000;46300;63800;72600;94900;103400;135100;149000;149800;165100;211600;227700;192500;168500;217500;217800;196400;237900;196900;169100;185500;247600;257700;230900;239100;239200;216500;269800;216100;208000;190062;197172;219512;208879;239490;244104;519023;410458;294111;257129;326068;342288;374430;346389;493180;604967;565833;420564;478024;513956;456691;469673;553327;575137;647343;686891;635157;690323;594245;715090;814007;574554 -5403;'039;Southern Europe;1640;Plywood and LVL;5922;Export value;1000 USD;6962;8006;8075;11766;13897;18445;20052;26817;29970;32839;39651;54202;76830;83738;66493;87408;104166;104992;153027;166929;121255;125791;146577;119456;120537;142290;167890;162607;169043;212738;205798;183392;168366;198823;206979;215760;209567;224066;217434;201976;202167;202607;253229;318244;330973;435417;487819;483286;374114;426498;500035;401643;433948;510043;484955;541603;622386.65;695585.54;671666;579274;834116;986304;821964 -5403;'039;Southern Europe;1607;Laminated Veneer Lumber (LVL);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;6609 -5403;'039;Southern Europe;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4468;6542 -5403;'039;Southern Europe;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4117;4498 -5403;'039;Southern Europe;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1023;890 -5403;'039;Southern Europe;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1097;2421 -5403;'039;Southern Europe;1646;Particle board and OSB (1961-1994);5516;Production;m3;105700;168000;422600;545700;740100;944600;1133600;1322300;1483900;1729100;1977700;2752300;3259300;2743000;3050000;3395000;4009000;3954000;4216000;4294000;4245000;4179000;4034000;4024000;4161000;4451000;4788000;6236000;6518000;6475000;6341000;5168000;5077000;5261000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5403;'039;Southern Europe;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;12200;13800;20300;17300;13100;24100;55100;65300;85000;147600;153500;150000;307600;565100;219100;340500;287880;221358;459300;500100;431200;358800;345200;407500;516400;479300;605300;609700;816200;744000;863800;1097557;852417;845766;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5403;'039;Southern Europe;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;883;958;1335;1085;870;1496;3293;3799;4952;9729;12022;10386;27987;61610;23350;35491;32239;28182;72583;103989;73248;63099;42200;48425;54597;71178;104364;132530;167881;180582;203000;246644;155319;172659;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5403;'039;Southern Europe;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;2800;5700;7500;12000;126300;147100;163200;176000;199500;128600;149500;155100;136900;107100;88400;86600;142700;241600;310300;406700;457800;372400;403400;339100;497000;541900;577400;570900;562700;615900;709000;721941;796753;885159;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5403;'039;Southern Europe;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;270;491;699;1065;7566;9305;10539;11907;14092;10163;12280;15729;15224;14057;14766;15106;22390;36423;55054;71478;66696;47694;55269;48062;65905;89438;111022;114161;120307;148966;179135;178103;158284;182685;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5403;'039;Southern Europe;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5560000;5462000;6127000;6347000;6773000;8183916;8258216;8762250;8399110;8888810;8613810;9074280;9088516;7398287;6574362;7032477;6619646;5223246;5136374;5595295;5710658;5585006;5573234;6271964;6347235;5845535;6986670;6700722;6866715 -5403;'039;Southern Europe;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;847822;885865;1269890;1693122;1803896;1378287;1577992;1672904;1782881;2165047;2127429;2150416;2089101;2131906;1529829;2030784;1826359;1837188;2085962;2679032;2749717;2722498;2915512;2989016;2984731;2755632;3126269;3176941;3167501 -5403;'039;Southern Europe;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;217408;228461;270048;444394;444439;268930;267658;274853;347136;460576;479470;529061;604680;690490;454210;531927;497071;486764;563349;731963;655985;675192;661856.28;758347.79;705583;648913;906538;1075488;1034140 -5403;'039;Southern Europe;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;767559;847988;979644;983098;851020;1162224;1201526;1348299;1230027;1679801;1500571;1655820;1533690;1727977;1560123;1497737;1767724;1751601;1556861;1635345;1634755;1578450;1968151;1994286;1986962;1882350;2393563;2173574;2178379 -5403;'039;Southern Europe;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;213164;235715;232109;284061;187024;206253;217236;259040;283687;382204;370204;419408;446128;566886;427979;400909;503882;492024;484021;549008;476964;487817;548136.96;621312.62;612841;571100;880619;954873;868524 -5403;'039;Southern Europe;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;41000;73551;72472;53799;185350;134353;134288;103946;105433;102984;102984 -5403;'039;Southern Europe;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15000;15000;24505;81523;98685;89342;187192;155338;180214;163313;217607;384119;234501;230583;256871;246360;251208;234824;234298;273416;332613;386830;446401;381270;479467;402595;528164;548579 -5403;'039;Southern Europe;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3300;3300;6465;18943;17358;14317;29417;28541;48517;41996;53864;117494;70580;67106;76889;86498;74213;80851;74378;65667;76944;98396.13;132596.01;103415;117560;165287;192932;175673 -5403;'039;Southern Europe;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2500;12600;12380;15183;56771;36038;16369;23892;39494;70609;44568;36548;42722;110658;95906;78928;59232;57813;52025;53881;50823;53345;64820;70675;66496;64916 -5403;'039;Southern Europe;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;3981;4886;5170;13587;8333;9682;9614;13520;26918;14951;11979;24885;39210;36510;34760;24132;14931;16399;15881.43;20063.28;19193;18912;36940;33687;27150 -5403;'039;Southern Europe;1874;Fibreboard;5516;Production;m3;114200;135400;153000;186000;187000;249100;228700;241600;243000;294300;365800;371800;594200;542300;481000;521000;584000;671000;712000;776000;832000;719000;817000;859000;820000;870000;879000;893000;1007000;1064000;1156000;1031000;1173000;1197000;1884000;1860200;1759000;3238000;3028000;3196000;2954400;2969840;2782866;2926000;3070000;3198000;3470074;2834832;2538137;2476009;2546539;2716292;2624926;2962692;3098324;3199519;3269828;3351929;3162552;3007270;3150196;3045721;2957512 -5403;'039;Southern Europe;1874;Fibreboard;5616;Import quantity;m3;23900;29100;36100;34400;25700;35587;36837;50627;52577;54303;55794;181252;123398;143532;104381;140782;44424;53996;68540;108440;111700;64900;102000;136700;135000;195300;323400;229100;324500;429700;382700;576615;483586;549355;606327;716546;1063179;1181560;1264993;1565449;1401472;1863156;1881649;2039485;2019882;2204124;2857549;2457755;1846146;1920268;2150861;1892291;2036539;1863130;1870109;1936012;2260142;2499652;2542347;2138974;2274578;2400182;2201595 -5403;'039;Southern Europe;1874;Fibreboard;5622;Import value;1000 USD;2613;2945;3752;3550;2874;3038;3041;3347;3372;4192;4654;13358;11092;15462;9804;11970;5705;7200;10025;24630;23036;14227;16582;19385;21767;38727;69913;57374;79974;113142;113070;155876;118428;146480;177374;199698;249127;306227;276198;288239;298443;376536;521546;662392;670289;765922;911693;918488;828480;742265;799747;688462;782204;745231;657673;699941;786447.91;893037.31;817795;747421;1005431;1181316;1043384 -5403;'039;Southern Europe;1874;Fibreboard;5916;Export quantity;m3;3100;9400;38700;52800;54900;43911;46754;61432;71541;63243;86514;97360;88831;63560;69983;97013;130300;143300;192100;213500;195800;178600;198500;282300;258700;276400;287000;354400;455800;608700;597500;728398;949721;1043538;941264;985832;1346066;1320813;1314069;1629161;1334838;2092238;1706461;1972324;1795791;1544628;2328169;2352333;2014788;2124007;2132840;2089703;2149544;2167260;2188985;1871185;1907522;1850655;1810526;1810848;2066297;1888217;1451954 -5403;'039;Southern Europe;1874;Fibreboard;5922;Export value;1000 USD;1410;1751;4181;5225;4750;3305;3238;4212;5399;5403;7386;8226;9889;10418;8338;12004;18920;19073;32356;50944;52088;45542;47967;52883;53164;66812;79648;103479;149049;214716;220499;220493;255503;301368;326128;308478;350331;377609;309634;333037;304929;402960;489095;634118;681688;746327;1004234;812278;609528;615594;696369;675905;699678;745003;650884;632835;637273.09;693473.74;621716;609266;884081;947381;787503 -5403;'039;Southern Europe;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;342000;348000;350000;1136000;920000;931000;899400;519840;362866;415350;376000;349000;348946;182752;190289;174981;150570;58257;57582;60440;61848;56505;97356;99389;96812;68119;69973;66486;69486 -5403;'039;Southern Europe;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;186400;177900;263408;321027;289597;219677;238938;443889;610106;685262;545355;608906;468666;364615;330011;297772;282979;247542;379065;234513;224260;247744;291177;383178;307123;260099;290630;380051;256609 -5403;'039;Southern Europe;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62238;61635;85494;124497;103161;82647;103141;171421;258509;348849;298167;317847;284437;277243;291148;193503;207979;160808;214407;168139;145880;154508;165835.93;179788.57;154831;132391;169946;220093;210147 -5403;'039;Southern Europe;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;188732;200100;226323;297951;269001;264453;263674;359077;440855;457944;346259;338260;137193;122361;77343;97521;132320;146874;182495;164157;145144;118062;143471;140772;143732;131359;133208;121691;104910 -5403;'039;Southern Europe;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78079;74425;81984;113109;93983;80238;76072;122016;189230;240770;233592;261507;110656;115806;67930;65252;84936;83438;96732;90652;76026;70158;73898.21;82355.97;79228;73796;91485;90589;81988 -5403;'039;Southern Europe;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1522000;1507000;1407000;2095000;2100000;2260000;2050000;2450000;2420000;2510650;2694000;2798000;2721128;2257023;2134777;2105584;2200379;2470924;2458909;2783672;2945907;3057128;2991938;3164670;2997199;2876000;3008000;2878402;2819778 -5403;'039;Southern Europe;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;242800;364500;656629;689723;738978;1055534;797285;995977;942633;1055092;1172061;1325139;1965919;1654096;1165221;1338986;1561349;1346911;1368158;1316691;1408052;1434745;1555438;1841181;1967150;1604494;1718660;1669529;1606740 -5403;'039;Southern Europe;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93193;114542;142823;155177;147266;177929;161443;162148;212602;259681;311995;390069;547170;563996;478716;493297;536353;479668;521965;530665;473283;500822;567356.06;645749.33;593836;552577;766305;855295;767474 -5403;'039;Southern Europe;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;642200;680600;986410;897610;915112;1213747;974162;1617316;1215325;1466469;1321885;1085272;1901236;1979327;1721630;1813048;1798868;1741478;1740164;1875699;1945200;1667784;1653012;1591215;1548390;1576357;1845067;1668537;1265395 -5403;'039;Southern Europe;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;215867;199269;233517;228736;189646;226960;210390;253015;281625;371578;403997;434398;779413;634515;487870;478910;549728;559062;561041;614690;543182;534235;532928.76;572260.02;508422;502638;761521;817685;669883 -5403;'039;Southern Europe;1650;Other fibreboard;5516;Production;m3;3000;4000;4000;4000;5000;20000;16000;16000;3200;3500;3600;4200;16800;;1000;1000;1000;20000;37000;68000;81000;81000;81000;81000;81000;81000;81000;81000;81000;81000;81000;87000;102000;22000;20000;5200;2000;7000;8000;5000;5000;0;0;0;0;51000;400000;395057;213071;195444;195590;187111;108435;118580;90569;85886;180534;87870;68541;63151;72223;100833;68248 -5403;'039;Southern Europe;1650;Other fibreboard;5616;Import quantity;m3;;;;;;10000;13200;25200;29200;28400;16200;142500;67800;68600;67800;93200;18724;20496;26640;63740;64200;22500;45900;70800;61900;95000;187800;107500;111300;136700;91700;127818;98086;113968;177127;174146;143142;170810;236418;290238;365249;423290;328910;299131;302466;270079;422964;439044;350914;283510;306533;297838;289316;311926;237797;253523;413527;275293;268074;274381;265288;350602;338246 -5403;'039;Southern Europe;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;305;348;848;944;1107;993;9324;4439;4553;4471;5275;1717;1627;2721;9760;9871;2766;3431;4892;4289;8161;21407;15205;14884;15224;12163;23590;14869;20183;21943;23521;20810;26553;25771;27663;33859;42967;50435;53862;60127;58006;80086;77249;58616;55465;55415;47986;45832;46427;38510;44611;53255.92;67499.4;69128;62453;69180;105928;65763 -5403;'039;Southern Europe;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;1200;1200;800;800;800;800;800;800;1900;700;20800;40400;72000;52700;34200;50500;73100;62000;59600;59600;106600;114600;59800;71200;78583;64949;102344;110332;105132;133333;125252;129956;150961;97002;115845;50281;47911;127647;121096;289740;250645;215815;213438;201652;201351;226885;127404;98641;85339;111039;118668;118404;103132;88022;97989;81649 -5403;'039;Southern Europe;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;78;117;170;170;170;170;170;170;218;257;1687;3781;7540;12513;10017;12949;15572;15731;15987;15856;27321;30457;23040;22973;31361;24035;29486;32182;34784;34830;35764;26005;25839;18467;27929;18240;21770;44099;50422;114165;61957;53728;71432;61705;33405;41905;39661;31676;28442;30446.12;38857.74;34066;32832;31075;39107;35632 -5403;'039;Southern Europe;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;111200;131400;149000;182000;182000;229100;212700;225600;239800;290800;362200;367600;577400;542300;480000;520000;583000;651000;675000;708000;751000;638000;736000;778000;739000;789000;798000;812000;926000;983000;1075000;944000;1071000;1175000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5403;'039;Southern Europe;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;23900;29100;36100;34400;25700;25587;23637;25427;23377;25903;39594;38752;55598;74932;36581;47582;25700;33500;41900;44700;47500;42400;56100;65900;73100;100300;135600;121600;213200;293000;291000;448797;385500;435387;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5403;'039;Southern Europe;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;2613;2945;3752;3550;2874;2733;2693;2499;2428;3085;3661;4034;6653;10909;5333;6695;3988;5573;7304;14870;13165;11461;13151;14493;17478;30566;48506;42169;65090;97918;100907;132286;103559;126297;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5403;'039;Southern Europe;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;3100;9400;38700;52800;54900;43911;46754;60232;70341;62443;85714;96560;88031;62760;69183;95113;129600;122500;151700;141500;143100;144400;148000;209200;196700;216800;227400;247800;341200;548900;526300;649815;884772;941194;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5403;'039;Southern Europe;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;1410;1751;4181;5225;4750;3305;3238;4134;5282;5233;7216;8056;9719;10248;8168;11786;18663;17386;28575;43404;39575;35525;35018;37311;37433;50825;63792;76158;118592;191676;197526;189132;231468;271882;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5403;'039;Southern Europe;1879;Total fibre furnish;5510;Production;t;1462900;1653100;1699600;1896500;2152900;2856700;3146500;3474900;3758700;4180800;4415400;4776300;5560000;5647400;5349400;5680400;5995400;6225400;6506700;6818200;6980200;7105500;7140800;7463400;7720400;8043400;8276400;9074900;10049900;9588900;9678900;9429900;9014900;8528900;9211800;9014500;9866900;10944160;12192204;13486633;13724478;14065274;14184095;15187899;16666886;17972623;17553762;17377968;16356314;16547379;17190278;18289178;18141424;18058471;18225980;18242853;16645335;16751647;16276297;16450376;17362346;15986095;15230780 -5403;'039;Southern Europe;1879;Total fibre furnish;5610;Import quantity;t;57900;63100;80800;97800;106700;103500;113300;1550700;1780300;2248000;1701500;2192700;2558800;2638891;1945572;2514429;2566804;3002732;3383899;3387857;3041561;2969923;3104500;3512500;3788900;3927900;4133600;4282200;4533400;4428100;4405000;4828201;4807388;5403798;4968099;5485303;5855727;6213436;5888675;5962708;6284893;6390695;6335673;6443585;6767005;7067620;6985591;6790920;6229412;7327251;7029062;6984441;7443109;7288780;7613602;7827052;7434294;7591790;7640040;7313460;7975240;7668913;7212931 -5403;'039;Southern Europe;1879;Total fibre furnish;5622;Import value;1000 USD;4414;4510;6381;7907;8749;8664;9506;195933;240021;319113;252475;317732;422873;735579;619126;723434;684486;739712;1086321;1375845;1193972;1075296;914504;1158273;1125320;1286599;1768482;2035941;2346755;2336822;1914204;1910834;1391816;1907743;3248423;2079736;2087057;2081202;2069909;2851137;2223114;2221765;2564855;2777980;2842631;3122407;3671508;3940466;2814395;3991687;4267098;3504915;3861815;3664361;3661214;3376286;3607324.71;4398610.13;3703255;2812232;3972303;4896772;3881156 -5403;'039;Southern Europe;1879;Total fibre furnish;5910;Export quantity;t;3000;2400;3400;2400;2900;5000;3500;255600;315200;382300;318600;486200;529000;432117;346988;468359;450197;460706;551073;745667;760413;829340;1110000;1140400;1389200;1510700;1697500;1760300;1786500;1793800;1860400;1875413;1763661;2051009;1882738;1894613;2152218;2098056;2234730;2462381;2461495;2603482;2886612;3283765;3681444;4031396;4791267;4998193;6101090;5134695;5891132;6105260;5831814;5945783;5853663;6543759;6460528;6307895;6049118;6073105;5785249;5865800;6988415 -5403;'039;Southern Europe;1879;Total fibre furnish;5922;Export value;1000 USD;103;92;170;113;100;510;326;29832;40677;54719;50166;70994;85403;125279;119283;148216;130027;117548;188559;316064;333412;312291;360913;455946;457380;550793;905538;1066796;1143077;1142308;1019053;917243;553771;881596;1355788;826037;864437;813134;843528;1140523;917487;840488;1010564;1176375;1188289;1420622;1781206;1958231;1543369;1902607;2489833;2187518;2229623;2050279;1652358;1743897;1990764.29;2098035.6;1656418;1462081;2295110;2354452;2119350 -5403;'039;Southern Europe;1878;Pulp for paper;5510;Production;t;1005900;1141100;1236600;1338500;1520900;2082700;2213500;2443900;2695700;2801800;2910400;3154300;3248000;3446400;3164400;3440400;3451400;3592400;3594700;3652200;3643200;3793500;3904800;4106400;4314400;4433400;4567400;4885900;4883900;4532900;4486900;4130900;3713900;3844900;4129800;3932500;4187900;4321713;4326766;4509000;4576400;4705803;4850210;4955899;5714680;5921529;5884078;5887079;5567261;5352624;5922137;6098466;6337603;6080118;5864480;5474553;5336205;5270905;4841019;4959582;5099873;4519268;4252790 -5403;'039;Southern Europe;1878;Pulp for paper;5610;Import quantity;t;57900;63100;80800;97800;106700;103500;113300;1550700;1780300;1845000;1356500;1706700;2006800;1944900;1387100;1704464;1682768;2105200;2328300;2374000;2087300;1982500;2141500;2341600;2524800;2703700;2894800;2883700;2866300;2924900;3063800;3357822;3272140;3473349;3596065;3674066;4100359;4369881;4323847;4272316;4497432;4483862;4484050;4689593;5067062;4992127;4886874;4649534;4431881;5049311;4924885;4826531;5143365;4964422;5170127;5168664;4907124;5236652;5226922;5003414;5042402;5334348;4923236 -5403;'039;Southern Europe;1878;Pulp for paper;5622;Import value;1000 USD;4414;4510;6381;7907;8749;8664;9506;195933;240021;294535;235046;293383;380426;620786;562309;637859;595007;651203;927671;1185229;1061558;960827;809569;1012279;977695;1143848;1603963;1813083;2072771;2088550;1724289;1721386;1255912;1655110;2815673;1867051;1920898;1886591;1908371;2577939;2025164;1973423;2301654;2515256;2598232;2813142;3297187;3504033;2474229;3500696;3639700;3081977;3386279;3227647;3263908;2915954;3112778.25;3970389.87;3325056;2519028;3394698;4367016;3518046 -5403;'039;Southern Europe;1878;Pulp for paper;5910;Export quantity;t;3000;2400;3400;2400;2900;5000;3500;255600;315200;380300;313600;480200;514000;421900;334300;449400;424140;448040;536340;719440;739940;790240;1081700;1116700;1367300;1487700;1671700;1731300;1755500;1764200;1830800;1781671;1633102;1893797;1726902;1761202;1968938;1902305;1910658;1896852;1906913;1798399;1911430;2006633;1820243;2128263;2253041;1930950;2078703;1785099;2215190;2315099;2433027;2299384;1920263;2192872;2202704;2249630;2266330;2310083;2432236;2294703;2515772 -5403;'039;Southern Europe;1878;Pulp for paper;5922;Export value;1000 USD;103;92;170;113;100;510;326;29832;40677;54608;49974;70696;84205;123324;117756;146435;127577;116225;184988;311414;330359;307700;358096;453198;454653;547602;901785;1060996;1137494;1137419;1014463;903928;537488;860052;1318013;807506;844948;790767;809817;1060316;861477;750979;890574;1017388;988983;1204368;1401621;1412442;1111246;1272949;1682392;1542657;1651959;1463583;1075126;1075450;1215530.21;1457750.55;1208934;1037911;1515108;1617421;1499650 -5403;'039;Southern Europe;1875;Wood pulp;5510;Production;t;1052600;1180800;1289500;1389200;1561200;1764500;1836700;2016000;2327400;2446000;2475000;2731900;2837600;3039000;2773000;2917000;3035000;3211000;3232600;3310000;3428000;3602100;3729400;4015000;4213000;4374000;4503000;4775500;4812500;4464500;4443500;4001500;3580500;3798500;4004500;3804500;4025500;4232913;4217216;4365000;4356000;4527159;4668203;4777803;4847662;4956834;4844378;4841899;4485723;4304414;4848237;5017575;5043213;5092638;4906890;4985806;5102539;5112515;4799229;4908692;4993983;4412378;4149900 -5403;'039;Southern Europe;1875;Wood pulp;5610;Import quantity;t;72000;88800;88800;105400;114700;228800;233100;1667200;1907100;1975400;1471100;1809000;2120400;2039100;1497500;1780300;1770100;2132900;2374600;2437300;2136200;2034900;2193400;2377500;2562400;2740000;2921400;2929100;2901300;2943400;3083100;3372609;3312936;3516984;3645264;3720659;4196233;4459689;4385550;4399599;4512308;4486239;4483824;4689710;5062134;5008102;4896251;4661652;4435210;5044799;4914356;4818125;5146113;4958941;5174047;5167563;4900646;5230132;5223770;4994773;5035738;5338831;4919821 -5403;'039;Southern Europe;1875;Wood pulp;5622;Import value;1000 USD;6308;8558;7600;8959;10166;32562;32201;217040;265641;323506;262222;317588;408578;662227;617974;673475;633685;663418;952183;1223480;1093803;996432;836901;1031166;994415;1159364;1619661;1845543;2109075;2110717;1744538;1730364;1279342;1683745;2859310;1905378;1959019;1922485;1924854;2602929;2031654;1970957;2303476;2521212;2597939;2828839;3285677;3484287;2460638;3496055;3623601;3071301;3381575;3218439;3259484;2906668;3098564.36;3954388.99;3307009;2503375;3377361;4363383;3507023 -5403;'039;Southern Europe;1875;Wood pulp;5910;Export quantity;t;20800;25500;40200;31900;27000;35600;34100;306600;359600;413100;354000;553500;577000;494600;358600;469100;436040;464640;553840;732640;763140;813940;1107500;1142200;1381000;1504900;1692600;1757900;1768300;1774300;1836500;1777974;1618026;1888573;1732602;1775563;1977165;1922900;1933773;1919712;1913241;1802421;1919381;2014579;1829572;2132868;2256454;1936534;2098185;1800368;2225766;2334724;2435667;2283789;1948962;2275491;2319572;2348553;2359940;2383920;2497089;2365602;2585309 -5403;'039;Southern Europe;1875;Wood pulp;5922;Export value;1000 USD;2403;2892;4770;4526;3761;5213;5036;36987;47225;61066;58716;86026;100025;153831;126901;153293;131203;119798;191266;318949;344125;320659;369612;462366;457881;552358;913246;1076425;1163111;1162575;1038989;892002;520660;842997;1310927;802435;827114;777042;800485;1049805;842445;727971;861176;986570;968909;1177098;1371992;1389481;1095799;1276631;1673755;1531996;1625368;1418133;1073986;1118506;1275504.11;1509640.58;1244769;1048099;1529467;1666550;1532512 -5403;'039;Southern Europe;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;938403;927332;706039;844296;855041;429221;326773 -5403;'039;Southern Europe;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;189722;208026;206426;172774;203084;240280;155821 -5403;'039;Southern Europe;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96532.42;116566.04;105420;76629;103935;142213;96773 -5403;'039;Southern Europe;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107135;91058;99116;89637;100531;88025;59013 -5403;'039;Southern Europe;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44213.07;41452.5;41277;34703;45031;48351;31337 -5403;'039;Southern Europe;1654;Mechanical wood pulp (1961-2016);5510;Production;t;421300;461800;491900;528700;550400;681200;652800;745000;796100;805600;774200;835200;810500;808000;700000;829000;870000;922000;877000;884000;853000;802000;781000;855000;837000;769000;804000;831000;823000;791000;706000;587000;526000;569000;651000;580000;565000;578600;547000;475000;490600;528159;485602;509938;566483;533834;527388;642041;561342;454996;452000;447045;473488;496628;495923;754646;;;;;;; -5403;'039;Southern Europe;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;51300;58000;70900;93300;102200;86600;94500;102500;124800;129700;86000;93900;120500;148600;92000;89000;99500;106700;146600;150000;96300;105600;129300;138000;138800;110400;123400;131300;171900;155900;151400;141279;130279;144110;139008;153608;168108;167107;170007;166509;181408;181010;195154;172381;156606;175048;179427;174658;149087;141189;128924;83607;60633;61809;56556;30390;;;;;;; -5403;'039;Southern Europe;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;3484;3851;5194;7183;8085;6982;7863;8588;11086;12550;8977;8399;14948;35239;28003;25158;25984;23539;43217;52223;32662;37148;37451;43260;42239;40496;54597;61927;86881;82106;70427;58703;44298;52914;76446;60332;52352;52515;53772;65019;63759;66129;82161;76395;64653;74438;94572;108411;81020;74855;78240;49172;34824;30742;22861;11791;;;;;;; -5403;'039;Southern Europe;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;3000;2400;3400;2400;2900;1200;1200;200;200;300;1800;2200;1200;1100;2600;9700;17840;11340;11640;11440;8140;18640;24200;20400;5200;9000;12500;21600;38200;36400;45400;67762;64829;72000;79800;79400;77914;86114;92114;87475;83001;85582;90064;82249;73414;64576;85144;73446;62216;71545;58424;50853;87648;108115;69618;55699;;;;;;; -5403;'039;Southern Europe;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;103;92;170;113;100;99;99;17;17;22;152;214;133;125;558;2146;3225;1462;1728;2190;2178;5076;6050;5298;899;2149;3904;7683;18725;17940;22564;23559;22515;22714;32154;26679;21640;22707;20819;22506;21222;23451;26419;27239;22841;22009;36778;35550;28506;31239;29497;24482;40664;40454;24993;18323;;;;;;; -5403;'039;Southern Europe;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;76300;109600;106800;123100;169100;181300;176400;187900;219800;218100;195400;224800;256600;254000;243000;298000;198000;154000;177000;203000;211000;217000;216000;216000;231000;296000;285000;401000;378000;307000;233000;233000;219000;232000;168000;154000;80000;151300;101000;239000;212200;206000;229748;205416;199000;192000;215000;214001;161447;135000;145000;128000;86287;92880;89716;88615;;;;;;; -5403;'039;Southern Europe;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;6600;5100;9900;3300;600;10800;14000;17900;29800;16700;24800;33700;45300;33000;18400;34900;28700;34900;39000;33400;44400;43000;47000;65800;55000;78200;54900;51600;42000;63500;55500;87715;122565;157853;164005;177800;157122;158222;125022;130574;95893;84176;88142;86723;92075;115067;102404;91685;68901;113577;142377;151173;194741;157752;157589;153953;;;;;;; -5403;'039;Southern Europe;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;930;659;1187;522;71;678;868;947;1746;1418;2326;3254;5321;6393;4667;9662;7694;8377;11231;11344;18927;16650;15770;21507;17030;27561;24844;24002;17128;30053;22327;35529;42636;59776;93891;72200;59212;60861;48437;66702;38420;33324;39987;39800;40933;54749;58656;60245;34587;71071;82409;79108;110082;84592;77269;74822;;;;;;; -5403;'039;Southern Europe;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;13686;4921;11351;902;202;100;359;0;225;4000;1563;1711;617;166;103;120;13;30;196;4088;6475;6444;6723;25956;28219;;;;;;; -5403;'039;Southern Europe;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;7258;1785;2290;476;323;230;296;96;215;1672;791;735;440;211;143;151;32;13;395;2170;3060;3423;3461;12181;13670;;;;;;; -5403;'039;Southern Europe;1656;Chemical wood pulp;5510;Production;t;385300;425000;494100;533400;648800;708100;847700;923100;1137600;1237300;1345400;1488900;1576500;1752000;1640000;1608000;1761000;1928000;1986600;2086000;2193000;2410100;2560400;2778000;2989000;3140000;3260000;3371500;3418500;3195500;3321500;3110500;2776500;2937500;3149500;3034500;3380500;3454613;3520216;3602000;3653200;3793000;3952853;4062439;4016179;4165000;4072690;3954657;3731834;3686628;4222137;4420530;4461938;4477930;4247951;4014245;3998736;4018683;3932090;3912396;4041942;3887157;3723127 -5403;'039;Southern Europe;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;1424900;1603200;1685800;1237600;1561700;1828300;1751100;1265100;1565400;1538500;1952800;2130100;2178300;1937700;1825200;1950500;2118900;2298800;2467200;2659800;2675100;2621000;2673900;2831000;3106864;3011877;3164613;3285951;3333451;3748974;4014231;3986392;3957728;4195992;4202024;4180999;4411863;4789241;4686608;4584291;4367333;4205611;4775512;4636904;4571863;4868124;4721225;4932778;4964788;4693971;5004567;4996990;4799534;4812239;5076079;4748075 -5403;'039;Southern Europe;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;185640;224762;278895;222540;278967;357639;574826;524944;596908;555197;614360;867275;1113189;1003329;900903;748308;936797;899683;1049084;1487834;1708984;1946267;1953126;1610664;1609776;1161831;1536936;2639416;1723496;1794526;1758340;1790047;2428872;1898492;1857557;2163069;2387060;2468743;2670870;3100767;3288250;2330017;3331898;3451587;2927086;3214869;3082317;3134448;2801056;2983706.11;3818864.63;3180982;2406687;3252954;4190378;3386696 -5403;'039;Southern Europe;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;254000;314000;379000;311100;477400;512300;419600;320900;424400;391700;426100;515500;694700;727200;767000;1050700;1086800;1355800;1471400;1651200;1703000;1705200;1714400;1769100;1685148;1543177;1799122;1635100;1669600;1876924;1799832;1802544;1789863;1797106;1692061;1798391;1902498;1728573;2043521;2148675;1836961;1999985;1695880;2131382;2241120;2322458;2166961;1805164;2084381;2074203;2140795;2146589;2197284;2304579;2187084;2435375 -5403;'039;Southern Europe;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;29572;40440;54366;49730;70415;83983;122896;111644;137541;117279;109874;178173;301299;325958;299466;347906;441830;448234;539093;892791;1048865;1110881;1111491;983701;853779;493471;814272;1261458;756753;797162;739590;764749;1006249;800715;692091;818504;938461;926006;1137385;1317151;1319972;1039808;1195199;1580061;1467722;1564205;1372833;998879;998373;1114629.9;1362283.08;1117761;950064;1401094;1529477;1415134 -5403;'039;Southern Europe;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;38500;43000;40000;225800;236700;262400;292600;286500;311800;353600;406200;496500;492900;650000;552000;569000;630000;619000;687400;542000;517000;690000;666000;745000;777000;692000;711000;735000;755000;717500;730500;647500;591500;507500;542500;534500;560500;563100;553500;579000;598000;601000;552425;568458;573000;587000;562462;453721;399273;448554;426934;484826;491112;301700;304540;273621;289630;304900;293400;294000;303000;221000;193000 -5403;'039;Southern Europe;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;184400;213000;242800;162400;210600;314300;260400;167400;233400;195200;226100;215100;205600;159200;140300;153500;119200;123900;128000;143100;135600;78700;68200;46000;50337;56019;56290;56600;35600;40700;48100;54000;47360;37810;41069;45484;50246;51642;32464;33871;64086;30813;26883;23245;18621;26543;118202;30966;48935;26926;29110;32823;44902;34271;45980;23735 -5403;'039;Southern Europe;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;19688;24311;35856;25499;31704;51611;81843;64049;80108;60913;58770;77539;93745;65508;55390;51421;45007;47618;49972;72512;77509;51251;46377;23812;25528;21535;24537;39745;18549;17197;19262;22111;23716;14221;16028;20607;23813;21829;14557;17699;44613;16483;14225;13243;10455;15541;79677;14855;22916;16099.9;20321;20517;20941;21964;31624;14692 -5403;'039;Southern Europe;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;20500;19100;30000;31800;93300;111900;85900;43000;84000;67400;56000;80300;110500;63300;59000;99400;69200;84000;97000;103700;85700;94600;115800;101900;118151;83993;114300;99400;92800;91200;80200;90000;90790;99200;85200;58123;43120;59307;86162;70102;473;1319;813;4;0;115;30;193;307;2599;3035;2735;2568;2016;4012;13535 -5403;'039;Southern Europe;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;2029;2008;2032;4025;10139;14442;25438;12424;20453;15045;11649;24218;39809;21384;15591;23057;21666;20744;25710;43439;44318;41429;48060;43980;49222;28258;48622;73699;39396;38528;31152;36780;44654;37892;33925;25730;21228;26950;41901;41072;406;641;505;25;0;49;35;93;187;2541.16;2802;1631;1457;1290;3634;7886 -5403;'039;Southern Europe;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;32700;29600;37400;57000;147000;154200;251400;336100;504100;563900;659900;687000;768700;815000;841000;807000;868000;961000;960300;1164000;1251000;1325000;1454000;1559000;1786000;2048000;2108000;2209000;2236000;2109000;2266000;2243000;2014000;2201000;2401000;2304000;2562000;2616300;2722000;2769000;2798200;2925000;3236491;3340171;3185000;3302000;3403630;3387682;3332561;3203074;3774296;3913704;3948493;4068000;3874200;3717700;3686400;3692200;3619178;3605384;3725930;3653145;3521476 -5403;'039;Southern Europe;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;631300;738100;815200;657400;857600;925700;925000;752500;917700;991400;1289600;1401700;1499200;1313200;1231100;1269400;1448400;1599300;1767200;1969900;2110100;2141100;2184800;2399200;2664019;2614124;2746577;2880251;2992651;3300852;3512102;3487952;3555596;3799598;3831584;3798393;3999681;4437415;4392645;4296717;4042214;3926581;4501239;4371820;4379194;4697365;4565031;4867788;4886738;4634435;4950230;4941365;4720267;4733219;4981682;4677674 -5403;'039;Southern Europe;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;83775;106929;136121;120023;156961;185033;303717;319658;364824;370096;414847;573817;765383;696542;618235;494753;659841;628316;759213;1112704;1373181;1546098;1535672;1346329;1364371;991685;1329129;2313320;1538866;1588220;1480031;1507900;2179321;1720293;1688293;1959930;2155899;2278542;2493451;2891038;3035677;2168062;3141315;3263172;2809322;3109833;2969585;3092778;2755055;2942874.23;3774816.88;3139076;2358746;3191894;4108067;3325511 -5403;'039;Southern Europe;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;157000;225900;284900;234700;315000;325600;299300;216600;272700;255400;269000;290400;408900;502200;559400;779000;826700;1070500;1166600;1369700;1437100;1421000;1412600;1501300;1420903;1346510;1556706;1419000;1473000;1664200;1579700;1595000;1584739;1565885;1482940;1603888;1755641;1516934;1821877;1976159;1740632;1893206;1572155;2025309;2148048;2231539;2081475;1757469;2082905;2071416;2136842;2143337;2194236;2302015;2182486;2420798 -5403;'039;Southern Europe;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;19198;29953;42552;38294;49742;57185;88382;79360;95606;83383;72860;102833;180741;228997;218578;259490;347973;359356;432670;753161;887017;938797;930908;844355;741371;422103;699432;1093513;672809;707726;649843;678824;892820;698594;606675;727523;863560;821378;1018139;1209641;1248392;985763;1118446;1504294;1395703;1495434;1309734;964855;996731;1111633.06;1354622;1115000;946789;1397335;1523766;1404903 -5403;'039;Southern Europe;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22706;21583;19512;13012;13012;13012;8651 -5403;'039;Southern Europe;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32610;25227;22802;34365;44749;48417;46666 -5403;'039;Southern Europe;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24731.98;23726.75;21389;27000;39096;50687;46493 -5403;'039;Southern Europe;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;188;918;517;480;548;586;1042 -5403;'039;Southern Europe;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;455.68;4859.08;1130;1818;2469;2077;2345 -5403;'039;Southern Europe;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;12400;4300;11600;5300;52500;51000;78300;77700;68600;63800;57200;57000;55400;67000;58000;49000;42000;38000;34100;41000;41000;41100;41400;42000;42000;38000;36000;34000;42000;37000;30000;14000;6000;7000;7000;5000;8000;13000;34500;36000;36000;37000;21000;19071;20000;22000;0;0;0;19722;12550;13206;13410;14430;13938;13768;;;;;;; -5403;'039;Southern Europe;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;188700;180300;160900;104600;115600;159400;152700;88500;92200;91700;103500;98600;91800;74600;85800;110900;117400;124600;123300;105200;30900;28300;21800;8700;3732;4799;11112;8800;3300;2400;15800;6000;2361;4022;2761;2763;4428;1651;2371;30129;21548;11565;13962;15897;1839;2885;2536;870;399;;;;;;; -5403;'039;Southern Europe;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;22214;21815;23334;16709;19120;28987;44752;35160;33896;31883;31056;38287;45558;37417;44732;44493;49820;48840;53619;59388;18410;37967;33712;5289;1717;1849;4542;5011;2209;1384;4694;2332;1195;1962;1164;1163;2549;891;1342;22746;18782;6221;10576;12126;1253;1860;1669;453;248;;;;;;; -5403;'039;Southern Europe;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;200;200;400;900;200;1300;100;200;200;;;;13800;19400;38500;49100;51000;47000;32000;2000;0;0;0;17611;370;1200;700;100;12100;2700;0;407;1000;39;39;1162;1166;45;10;2;3;9;1;2;3;2;3;4;;;;;;; -5403;'039;Southern Europe;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;22;22;63;128;46;427;33;68;68;;;;7721;10800;15449;19692;20520;23351;19017;1272;0;0;0;6448;35;547;262;516;4793;1261;193;249;412;37;44;140;606;30;5;1;15;13;10;18;29;19;32;40;;;;;;; -5403;'039;Southern Europe;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;14000;22400;31400;165800;122500;233500;217400;214600;244900;247900;214000;240400;251500;212000;181000;175000;213000;302000;296800;331000;376000;346000;391000;424000;376000;354000;397000;380000;372000;332000;295000;206000;165000;222000;199000;191000;250000;262213;210216;218000;221000;230000;142937;134739;238179;254000;106598;113254;0;15278;8357;8794;8923;93800;55273;9156;;;;;;; -5403;'039;Southern Europe;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;420500;471800;466900;313200;377900;428900;413000;256700;322100;260200;333600;414700;381700;390700;368000;416700;433900;451000;448700;441600;398500;372900;399100;377100;388776;336935;350634;340300;301900;405022;438229;438440;352411;354562;326610;334359;357508;298533;259128;223574;239485;236652;233428;225942;172209;141331;35456;33154;28716;;;;;;; -5403;'039;Southern Europe;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;59963;71707;83584;60309;71182;92008;144514;106077;118080;92305;109687;177632;208503;203862;182546;157641;182129;174909;186280;243230;239884;310951;337365;235234;218160;146762;178728;281340;163872;187725;254353;257704;224640;162016;152072;181369;204799;167481;161520;169284;189178;139251;165782;163046;106056;87635;31386;26362;22837;;;;;;; -5403;'039;Southern Europe;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;76500;68800;63900;44200;68200;74600;33100;61200;67500;68700;101100;144800;175300;147900;129200;133800;141800;150300;160800;145800;178200;189600;186000;165900;128483;112304;126916;116000;103700;109424;137232;117544;113927;131021;123882;136341;102575;151166;135437;102404;95854;105457;122903;106068;93070;90801;85454;47499;1165;;;;;;; -5403;'039;Southern Europe;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;8345;8457;9760;7348;10406;12310;8649;19827;21414;18783;25365;51122;80749;67856;54497;49910;52499;47614;57362;77174;116258;130655;132523;95366;56738;43075;65671;93984;44032;46115;57334;48952;68526;63817;51454;65207;53533;77072;77315;66433;71173;53389;76235;75732;72001;68693;63045;33899;1415;;;;;;; -5403;'039;Southern Europe;1667;Dissolving wood pulp;5510;Production;t;169700;184400;196700;204000;192900;193900;159800;160000;173900;185000;160000;183000;194000;225000;190000;182000;206000;207000;192000;137000;171000;173000;172000;166000;156000;169000;154000;172000;193000;171000;183000;71000;59000;60000;36000;36000;0;48400;49000;49000;0;0;0;10;66000;66000;29300;31200;31100;27790;29100;22000;21500;25200;73300;128300;165400;166500;161100;152000;97000;96000;100000 -5403;'039;Southern Europe;1667;Dissolving wood pulp;5610;Import quantity;t;14100;25700;8000;8800;11900;131400;124600;121900;149300;143200;122700;119700;126300;106400;122000;91000;103400;38500;58900;75600;57800;61100;66600;54800;69800;84200;83300;71100;66400;50100;45200;36751;48215;50408;56300;55800;122029;120129;104129;144788;39015;19029;19529;18743;24212;31379;30129;27976;11611;14521;6151;11482;22615;18155;27124;18432;16953;17539;20354;22465;20415;22472;15925 -5403;'039;Southern Europe;1667;Dissolving wood pulp;5622;Import value;1000 USD;1894;4048;1219;1254;2010;24902;23470;21865;28047;30643;28379;26968;30670;45769;60360;41747;44810;17142;30460;46724;38885;41731;35372;29602;35463;42223;52386;50630;58799;45432;41120;26356;30577;34119;49557;49350;52929;50769;32598;42336;30983;13947;18259;17957;23610;28782;31682;27381;15014;18231;11365;15935;21800;20788;24906;18999;18325.84;18958.32;20607;20059;20472;30792;23554 -5403;'039;Southern Europe;1667;Dissolving wood pulp;5910;Export quantity;t;17800;23100;36800;29500;24100;33200;32200;51800;45200;33600;40800;73600;63400;73400;34700;34400;25100;25800;25300;25100;26400;26900;31200;34600;19000;22500;27900;31300;21900;21500;21000;11378;5099;6100;16800;26361;22227;36595;39115;42149;29134;23215;29215;29215;27419;24668;22515;26114;35954;32747;31872;36276;19117;1990;48224;107192;138234;116700;114235;96999;91979;90493;90921 -5403;'039;Southern Europe;1667;Dissolving wood pulp;5922;Export value;1000 USD;2300;2800;4600;4413;3661;5094;4903;7365;6758;6668;8814;15377;15904;30717;14633;13521;10459;8222;11125;15220;15749;15877;15416;15169;8652;10734;16241;19324;32728;32658;32498;7406;2889;3721;16839;18680;8082;14449;14821;20835;18836;11638;15518;20430;19851;17561;17912;33927;27472;49798;62027;36732;17076;1385;37933;88140;116661.15;105905;85731;63332;83342;88722;86041 -5403;'039;Southern Europe;1668;Pulp from fibres other than wood;5510;Production;t;123000;144700;143800;153300;152600;512100;536600;587900;542200;540800;595400;605400;604400;632400;581400;705400;622400;588400;554100;479200;386200;364400;347400;257400;257400;228400;218400;282400;264400;239400;226400;200400;192400;106400;161300;164000;162400;137200;158550;193000;220400;178644;182007;178106;933018;1030695;1069000;1076380;1112638;1076000;1103000;1102891;1315890;1012680;1030890;617047;399066;324890;202890;202890;202890;202890;202890 -5403;'039;Southern Europe;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;1200;3900;6100;4800;5400;22500;12800;8100;17400;12700;12200;11600;15164;16068;10800;12600;12300;8900;8700;14700;18900;32200;47900;56700;25700;31400;31600;25900;21964;7419;6773;7101;9207;26155;30321;42426;17505;24139;16652;19755;18626;29140;15404;20752;15858;8282;19033;16680;19888;19867;23636;23204;19533;23431;24059;23506;31106;27079;17989;19340 -5403;'039;Southern Europe;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;202;593;1004;775;758;2427;1672;1203;2763;2518;4328;4695;6131;6132;4927;5948;8473;6640;6126;8040;10715;18743;26707;36688;18170;22495;23265;20871;17378;7147;5484;5920;11023;14808;14875;16115;17346;24493;16413;16437;12001;23903;13085;43192;47127;28605;22872;27464;26611;26504;29996;29330;28285;32539.72;34959.21;38654;35712;37809;34425;34577 -5403;'039;Southern Europe;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;2600;1600;800;800;800;400;300;400;700;10400;14700;13200;9200;7800;11900;3200;3200;5400;9100;5300;5300;7000;4700;9100;11400;15300;15075;20175;11324;11100;12000;14000;16000;16000;19289;22806;19193;21264;21269;18090;20063;19102;20530;16472;17478;21296;16651;16477;17585;19525;24573;21366;17777;20625;23162;27126;19594;21384 -5403;'039;Southern Europe;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;391;193;210;210;210;72;47;84;210;5488;6663;6833;4649;4847;7685;1983;2918;3900;6001;5424;5978;4780;3895;7111;7502;7972;19332;19717;20776;23925;23751;25916;28174;24153;31346;37868;34646;44916;51248;39925;44831;47541;56888;42919;46116;70664;47393;43667;46835;39073;45084;56687.24;54014.97;49896;53144;68983;39593;53179 -5403;'039;Southern Europe;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;28034;11223;27693;12022;17727;7178;13809;8187;4240;3828;4361;7114;20521;34890;50112;10243;8832;9302;9242;10957;14283;14245;21679;23497;25381 -5403;'039;Southern Europe;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;6961;4100;19231;5017;9140;4367;4995;3936;5230;3191;3405;4513;11016;14552;16176;7885;5538;6299;9242.21;7793.35;10515;9726;16485;21088;20176 -5403;'039;Southern Europe;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;6000;16636;38000;507;175;9180;16931;1236;2244;323;7096;8433;1211;3284;1993;1818;1597;1229;635;1114;2815;4019;1864;1093;5953 -5403;'039;Southern Europe;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;1933;6764;42220;571;256;4339;7162;2427;5014;1515;871;1614;1004;1995;1667;2734;1252;896;814.87;889.95;1300;1460;1292;812;5161 -5403;'039;Southern Europe;1669;Recovered paper;5510;Production;t;457000;512000;463000;558000;632000;774000;933000;1031000;1063000;1379000;1505000;1622000;2312000;2201000;2185000;2240000;2544000;2633000;2912000;3166000;3337000;3312000;3236000;3357000;3406000;3610000;3709000;4189000;5166000;5056000;5192000;5299000;5301000;4684000;5082000;5082000;5679000;6622447;7865438;8977633;9148078;9359471;9333885;10232000;10952206;12051094;11669684;11490889;10789053;11194755;11268141;12190712;11803821;11978353;12361500;12768300;11309130;11480742;11435278;11490794;12262473;11466827;10977990 -5403;'039;Southern Europe;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;403000;345000;486000;552000;693991;558472;809965;884036;897532;1055599;1013857;954261;987423;963000;1170900;1264100;1224200;1238800;1398500;1667100;1503200;1341200;1470379;1535248;1930449;1372034;1811237;1755368;1843555;1564828;1690392;1787461;1906833;1851623;1753992;1699943;2075493;2098717;2141386;1797531;2277940;2104177;2157910;2299744;2324358;2443475;2658388;2527170;2355138;2413118;2310046;2932838;2334565;2289695 -5403;'039;Southern Europe;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;24578;17429;24349;42447;114793;56817;85575;89479;88509;158650;190616;132414;114469;104935;145994;147625;142751;164519;222858;273984;248272;189915;189448;135904;252633;432750;212685;166159;194611;161538;273198;197950;248342;263201;262724;244399;309265;374321;436433;340166;490991;627398;422938;475536;436714;397306;460332;494546.46;428220.25;378199;293204;577605;529756;363110 -5403;'039;Southern Europe;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;2000;5000;6000;15000;10217;12688;18959;26057;12666;14733;26227;20473;39100;28300;23700;21900;23000;25800;29000;31000;29600;29600;93742;130559;157212;155836;133411;183280;195751;324072;565529;554582;805083;975182;1277132;1861201;1903133;2538226;3067243;4022387;3349596;3675942;3790161;3398787;3646399;3933400;4350887;4257824;4058265;3782788;3763022;3353013;3571097;4472643 -5403;'039;Southern Europe;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;111;192;298;1198;1955;1527;1781;2450;1323;3571;4650;3053;4591;2817;2748;2727;3191;3753;5800;5583;4889;4590;13315;16283;21544;37775;18531;19489;22367;33711;80207;56010;89509;119990;158987;199306;216254;379585;545789;432123;629658;807441;644861;577664;586696;577232;668447;775234.08;640285.05;447484;424170;780002;737031;619700 -5403;'039;Southern Europe;1876;Paper and paperboard;5510;Production;t;2226900;2580100;2941100;3202800;3564800;4021500;4583800;5074900;5556100;5767100;5733400;6409900;6675000;7336100;6625700;7876100;8038400;8338100;9085100;9375000;9375000;9134000;9095000;9935000;9809000;9965000;10407000;11288000;11434000;11256500;11363500;11792500;11797900;12920500;13317700;13571700;14562500;14834672;15789502;16696252;17314680;18159065;18059748;18587120;19464535;20658542;20593670;19633652;17955010;19184226;19818764;18973952;19493154;18878763;19357088;19340969;19497978;19417752;18788944;18381954;19974451;18860437;17220006 -5403;'039;Southern Europe;1876;Paper and paperboard;5610;Import quantity;t;373800;361200;452022;468600;517500;542700;579300;649500;776900;946500;962900;1056200;1214000;1480300;916700;1029100;1077200;1132800;1393700;1504900;1586600;1711300;1997700;2184800;2296600;2722000;3229200;3431500;4277200;4831700;5060700;5829174;6107332;6773464;6348476;6391543;8189929;8028402;8810462;9764017;9432080;9803467;10415406;10450919;10615984;12720699;14012956;11912976;11070581;10837559;10605393;10096541;10155478;10655497;11031605;11301388;11687023;12162200;11610737;10938062;10981765;11786894;10311534 -5403;'039;Southern Europe;1876;Paper and paperboard;5622;Import value;1000 USD;76045;76285;86904;92093;106058;133066;131808;151948;184953;240215;246645;295569;417815;716864;559827;571722;563574;614233;889620;1117836;1059298;1126474;1057520;1142934;1299564;1757035;2509575;3203400;3796205;4622850;4533100;4884042;4410153;4851295;6510290;5918297;6431946;6296945;6274994;6894985;6649262;6728636;8147076;8458484;8806354;9844542;11575498;12315055;9784584;9739221;10808675;9345354;9795201;10097857;8835377;8861324;9610611.5;10874431.65;9720306;8286535;10006623;12788121;10524788 -5403;'039;Southern Europe;1876;Paper and paperboard;5910;Export quantity;t;51500;50200;58100;102600;261800;301100;319600;383300;467900;461500;453900;538200;522600;680000;631100;802800;811070;993200;1111000;957600;1247600;1112900;1354100;1666100;1706900;1774300;1823700;2112400;2229400;2265400;2308400;2415222;3005969;3308625;3353473;3355454;4693282;4472223;4574433;5172298;5614810;5821661;6135028;6218511;7074316;8143812;8557339;8462715;8276368;7999331;8589521;8835458;9057313;9097755;9199700;9228410;9382200;9080129;9099083;8734722;9672702;8596476;7805958 -5403;'039;Southern Europe;1876;Paper and paperboard;5922;Export value;1000 USD;20739;17675;15474;24065;61566;71593;77109;94218;118859;131340;139692;182536;221965;431959;387624;447902;466698;618790;822483;825956;907517;755776;755024;942262;1017978;1169300;1479925;1982435;2171380;2270610;2259880;2506369;2535031;3099114;4252035;3798375;4302307;3829433;3580750;4228451;4225753;4411149;5235868;5432801;6418806;7938161;9059517;9991280;8189499;7637469;9226836;8508799;9124292;9240529;8045946;7865427;8469980.97;9132942.88;8396892;7242575;9620027;11235255;9014531 -5403;'039;Southern Europe;2042;Graphic papers;5510;Production;t;1063700;1128100;1206000;1333700;1426600;1666500;1831900;1999900;2220800;2204600;2231600;2412000;2587600;2734000;2253000;2800000;2836300;3130100;3493000;3414000;3385000;3211000;3221000;3642000;3505000;3653000;3821000;4047000;4119000;4067500;4100500;4127500;4050900;4470500;4547700;4607700;4815500;4991860;5159293;5605418;5702100;6014698;6218432;6564551;6933095;7136206;7312135;6959605;6327634;6435136;6952789;6669713;6216535;6191154;6172810;6088883;5980659;5497486;5167710;4036467;4518579;4382534;3359887 -5403;'039;Southern Europe;2042;Graphic papers;5610;Import quantity;t;143600;130800;138500;156600;202500;176100;165000;174500;188000;251800;237700;259500;302600;400000;339500;351900;326200;331500;398800;500200;614800;752300;820400;862500;1002600;1148800;1482600;1628300;2017700;2406900;2549700;2996105;3194204;3473669;3224710;3119230;4179716;3786725;4490014;5070063;4931384;4831089;5206133;5277650;6185861;6686198;6665471;6158587;5199879;5372355;5174453;4646791;4485121;4562863;4441965;4336765;4203923;4252428;3894985;3263103;3311271;3346746;2707792 -5403;'039;Southern Europe;2042;Graphic papers;5622;Import value;1000 USD;25656;24717;26279;29448;37207;33464;31246;33682;36545;49562;51769;58297;91711;192972;187179;193395;184794;205277;280341;409116;450384;528747;471046;486457;605502;827754;1270598;1538034;1818975;2381784;2421577;2545605;2353509;2611702;3439808;2986806;3318794;3107225;3223070;3656023;3685369;3485949;4223739;4382314;5175637;5260690;6295269;6432185;5056042;4826179;5211143;4283105;4244972;4237885;3440518;3384053;3297736.78;3672594.08;3337837;2555599;2896405;3821536;3198476 -5403;'039;Southern Europe;2042;Graphic papers;5910;Export quantity;t;5300;8900;13800;36200;148000;147100;165100;203700;264000;235300;227100;276000;197800;260300;220100;338700;381970;521600;506200;495100;620600;561900;577900;779100;744000;762700;810400;837600;867700;871300;999300;982540;1344151;1626857;1636929;1495329;2304899;2062939;2185816;2687980;2778708;2989394;3246781;3090677;3888231;4127633;4341636;4242484;4086016;3735247;4580920;4664499;4708165;4718073;4733372;4747496;4716191;4367140;4258688;3474938;3971419;3809455;3022888 -5403;'039;Southern Europe;2042;Graphic papers;5922;Export value;1000 USD;875;1973;2946;6244;30351;31283;34999;44862;58679;59080;64153;84925;82426;172512;139122;193644;231451;341570;412760;454047;504337;455384;386008;531077;537422;623375;794017;912202;926467;1008026;1093857;1104948;1194034;1518129;2035162;1747464;2197704;1832491;1806969;2223334;2274162;2401338;2861712;2805786;3564186;3814180;4468153;4772789;4085183;3899833;4948461;4500885;4740844;4718139;4022705;3966341;4048340.28;4250436.98;3946530;2991843;3937277;5094923;3834270 -5403;'039;Southern Europe;1671;Newsprint;5510;Production;t;418500;443500;449800;500200;507900;564400;609600;573100;567800;501700;457300;532100;473900;468000;432000;462000;436300;468100;477000;439000;399000;326000;355000;375000;351000;399000;421000;485500;463500;446000;389000;387000;292000;387000;489700;401000;416000;498400;527700;566718;593600;572290;603386;655504;730210;795902;763434;797544;746332;775977;753418;653331;552398;493747;494380;502405;526914;490943;501663;366090;346163;342322;349774 -5403;'039;Southern Europe;1671;Newsprint;5610;Import quantity;t;110500;84600;92800;106300;153500;128400;119000;129400;142200;191500;162900;178100;178800;209000;191600;164700;154400;147200;167300;208300;301700;360300;406000;422700;489200;523300;562000;549200;748600;803200;823300;945841;984495;1011585;955826;932846;1276175;1156169;1163691;1301889;1251002;1112629;1214825;1348006;1472485;1499374;1513353;1397854;1137900;1224256;1140967;1033527;1031209;1007432;967604;902528;912936;847937;767553;600594;568243;559752;456867 -5403;'039;Southern Europe;1671;Newsprint;5622;Import value;1000 USD;16934;12825;13739;15928;23258;19721;17907;19587;21122;29500;27499;30794;36052;76189;84175;67710;61295;57775;73505;110714;169168;186211;176435;172476;211091;267219;336298;345167;483279;618649;631119;563428;456982;485691;721596;732186;805803;639902;631200;642951;726151;592980;696446;808646;911978;1007840;1121258;1086917;850218;744536;839468;698934;698838;692576;526294;495163;497602.96;521802.94;474871;320835;320434;478922;369634 -5403;'039;Southern Europe;1671;Newsprint;5910;Export quantity;t;4700;3400;3600;19000;55400;55400;63700;63600;75600;52700;29300;35600;14400;14000;14200;26000;53670;50200;61500;44400;38800;22500;31200;51100;43700;23900;44200;38900;39600;49300;37000;39630;47760;41528;56700;84700;506500;128339;119100;161122;150960;143471;141065;191141;284890;448142;441347;420910;496831;431756;416007;460750;504860;478309;510677;475794;434422;336085;312799;282371;186041;169880;206657 -5403;'039;Southern Europe;1671;Newsprint;5922;Export value;1000 USD;728;599;659;2583;7021;7095;8251;8105;9480;6907;4199;5213;2663;5924;6082;8400;22824;22360;29897;26167;20623;10677;11729;25707;24684;12351;23552;28294;22890;35301;27772;28233;26324;22911;48518;62180;396473;70599;59478;83262;87331;75032;76958;106988;163842;279484;311924;305101;317598;235322;280288;268514;306818;305493;261977;230311;210659.56;195815.49;165658;118480;107788;144203;141046 -5403;'039;Southern Europe;1674;Printing and writing papers;5510;Production;t;645200;684600;756200;833500;918700;1102100;1222300;1426800;1653000;1702900;1774300;1879900;2113700;2266000;1821000;2338000;2400000;2662000;3016000;2975000;2986000;2885000;2866000;3267000;3154000;3254000;3400000;3561500;3655500;3621500;3711500;3740500;3758900;4083500;4058000;4206700;4399500;4493460;4631593;5038700;5108500;5442408;5615046;5909047;6202885;6340304;6548701;6162061;5581302;5659159;6199371;6016382;5664137;5697407;5678430;5586478;5453745;5006543;4666047;3670377;4172416;4040212;3010113 -5403;'039;Southern Europe;1674;Printing and writing papers;5610;Import quantity;t;33100;46200;45700;50300;49000;47700;46000;45100;45800;60300;74800;81400;123800;191000;147900;187200;171800;184300;231500;291900;313100;392000;414400;439800;513400;625500;920600;1079100;1269100;1603700;1726400;2050264;2209709;2462084;2268884;2186384;2903541;2630556;3326323;3768174;3680382;3718460;3991308;3929644;4713376;5186824;5152118;4760733;4061979;4148099;4033486;3613264;3453912;3555431;3474361;3434237;3290987;3404491;3127432;2662509;2743028;2786994;2250925 -5403;'039;Southern Europe;1674;Printing and writing papers;5622;Import value;1000 USD;8722;11892;12540;13520;13949;13743;13339;14095;15423;20062;24270;27503;55659;116783;103004;125685;123499;147502;206836;298402;281216;342536;294611;313981;394411;560535;934300;1192867;1335696;1763135;1790458;1982177;1896527;2126011;2718212;2254620;2512991;2467323;2591870;3013072;2959218;2892969;3527293;3573668;4263659;4252850;5174011;5345268;4205824;4081643;4371675;3584171;3546134;3545309;2914224;2888890;2800133.82;3150791.13;2862966;2234764;2575971;3342614;2828842 -5403;'039;Southern Europe;1674;Printing and writing papers;5910;Export quantity;t;600;5500;10200;17200;92600;91700;101400;140100;188400;182600;197800;240400;183400;246300;205900;312700;328300;471400;444700;450700;581800;539400;546700;728000;700300;738800;766200;798700;828100;822000;962300;942910;1296391;1585329;1580229;1410629;1798399;1934600;2066716;2526858;2627748;2845923;3105716;2899536;3603341;3679491;3900289;3821574;3589185;3303491;4164913;4203749;4203305;4239764;4222695;4271702;4281769;4031055;3945889;3192567;3785378;3639575;2816231 -5403;'039;Southern Europe;1674;Printing and writing papers;5922;Export value;1000 USD;147;1374;2287;3661;23330;24188;26748;36757;49199;52173;59954;79712;79763;166588;133040;185244;208627;319210;382863;427880;483714;444707;374279;505370;512738;611024;770465;883908;903577;972725;1066085;1076715;1167710;1495218;1986644;1685284;1801231;1761892;1747491;2140072;2186831;2326306;2784754;2698798;3400344;3534696;4156229;4467688;3767585;3664511;4668173;4232371;4434026;4412646;3760728;3736030;3837680.72;4054621.49;3780872;2873363;3829489;4950720;3693224 -5403;'039;Southern Europe;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2929700;284000;473310;375500;1040426;1003713;1044150;1120908;1331286;1368262;1238282;1085796;1098738;1067891;1010803;813000;806239;795195;787770;714645;611289;554012;370056;426180;413562;415562 -5403;'039;Southern Europe;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;256056;907335;1158982;1402513;812334;856886;855179;991083;799635;876636;862078;801692;812965;809691;704167;694738;715029;589290;637640;638133;699723;598713;513262;489148;512837;374747 -5403;'039;Southern Europe;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;202688;668836;871767;1076337;515721;618683;651761;782866;610367;718650;771569;698165;608506;707819;581466;575209;597096;395972;417898;413923.9;513718.04;442064;348002;351584;504066;397348 -5403;'039;Southern Europe;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45800;125000;296369;400762;105536;85669;134592;129207;100882;59272;76886;86324;69533;83671;76591;80327;81438;77919;79260;86142;86420;87635;68725;54876;49879;48173 -5403;'039;Southern Europe;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30064;131860;196765;368180;77915;74833;104324;96376;79520;57632;80197;82074;66336;89006;69685;84430;107019;64367;62752;73098.98;99635.16;90975;76466;67708;67542;64487 -5403;'039;Southern Europe;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;984500;1702400;1812486;2171000;1621967;1725000;1805000;1706970;1627501;1658190;1592247;1666271;1549439;2122101;2064739;2033984;2138880;2169310;2202228;2189269;2080873;1981262;1840572;2139434;2178563;1563342 -5403;'039;Southern Europe;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;303000;407459;416549;420496;965335;1032576;985598;1248444;1237246;1420303;1250704;1185016;1246751;1272916;1150388;1137197;1170579;1210388;1143768;1083744;1099128;1102217;972490;1046611;1008608;855991 -5403;'039;Southern Europe;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;289510;290293;385482;370317;832830;1022825;970087;1216739;1244298;1637682;1595321;1351749;1375954;1536255;1286195;1293555;1291332;1118837;1097478;1053353.7;1197859.72;1152515;931280;1104797;1342196;1175630 -5403;'039;Southern Europe;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;555800;575414;704413;724282;1088385;1317102;1112283;1397166;1426631;1507714;1445046;1527700;1091197;1917185;1926488;1953848;2050427;2065506;2074333;2115260;2002904;1942843;1712648;2041026;2111088;1712085 -5403;'039;Southern Europe;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;521834;470082;615254;603015;949953;1234155;1070545;1364616;1408700;1669433;1838988;1713054;1521369;2297638;2070434;2242806;2307204;1996902;1989153;2068657.15;2147260.05;1979430;1585775;2107002;2825202;2230816 -5403;'039;Southern Europe;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;579260;2645193;2752904;2562000;2780015;2886333;3059897;3375007;3381517;3522249;3331532;2829235;3010982;3009379;2940840;2817153;2752288;2713925;2596480;2549831;2314381;2130773;1459749;1606802;1448087;1031209 -5403;'039;Southern Europe;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2071500;2011529;2192643;1857373;1940791;2101846;2088867;2473849;3149943;2855179;2647951;2075271;2088383;1950879;1758709;1621977;1669823;1674683;1652829;1569110;1605640;1426502;1176757;1207269;1265549;1020187 -5403;'039;Southern Europe;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1975125;1632741;1755823;1512564;1544418;1885785;1951820;2264054;2398185;2817679;2978378;2155910;2097183;2127601;1716510;1677370;1656881;1399415;1373514;1332856.23;1439213.37;1268387;955482;1119590;1496352;1255864 -5403;'039;Southern Europe;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1333000;1366302;1526076;1502704;1652002;1702945;1652661;2076968;2151978;2333303;2299642;1975161;2142761;2164057;2200670;2169130;2107899;2079270;2118109;2080367;1941731;1915411;1411194;1689476;1478608;1055973 -5403;'039;Southern Europe;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1209994;1145549;1328053;1215636;1298438;1475766;1523929;1939352;2046476;2429164;2548503;1972457;2076806;2281529;2092252;2106790;1998423;1699459;1684125;1695924.59;1807726.28;1710467;1211122;1654779;2057976;1397921 -5403;'039;Southern Europe;1675;Other paper and paperboard;5510;Production;t;1163200;1452000;1735100;1869100;2138200;2355000;2751900;3075000;3335300;3562500;3501800;3997900;4087400;4602100;4372700;5076100;5202100;5208000;5592100;5961000;5990000;5923000;5874000;6293000;6304000;6312000;6586000;7241000;7315000;7189000;7263000;7665000;7747000;8450000;8770000;8964000;9747000;9842812;10630209;11090834;11612580;12144367;11841316;12022569;12531440;13522336;13281535;12674047;11627376;12749090;12865975;12304239;13276619;12687609;13184278;13252086;13517319;13920266;13621234;14345487;15455872;14477903;13860119 -5403;'039;Southern Europe;1675;Other paper and paperboard;5610;Import quantity;t;230200;230400;313522;312000;315000;366600;414300;475000;588900;694700;725200;796700;911400;1080300;577200;677200;751000;801300;994900;1004700;971800;959000;1177300;1322300;1294000;1573200;1746600;1803200;2259500;2424800;2511000;2833069;2913128;3299795;3123766;3272313;4010213;4241677;4320448;4693954;4500696;4972378;5209273;5173269;4430123;6034501;7347485;5754389;5870702;5465204;5430940;5449750;5670357;6092634;6589640;6964623;7483100;7909772;7715752;7674959;7670494;8440148;7603742 -5403;'039;Southern Europe;1675;Other paper and paperboard;5622;Import value;1000 USD;50389;51568;60625;62645;68851;99602;100562;118266;148408;190653;194876;237272;326104;523892;372648;378327;378780;408956;609279;708720;608914;597727;586474;656477;694062;929281;1238977;1665366;1977230;2241066;2111523;2338437;2056644;2239593;3070482;2931491;3113152;3189720;3051924;3238962;2963893;3242687;3923337;4076170;3630717;4583852;5280229;5882870;4728542;4913042;5597532;5062249;5550229;5859972;5394859;5477271;6312874.72;7201837.57;6382469;5730936;7110218;8966585;7326312 -5403;'039;Southern Europe;1675;Other paper and paperboard;5910;Export quantity;t;46200;41300;44300;66400;113800;154000;154500;179600;203900;226200;226800;262200;324800;419700;411000;464100;429100;471600;604800;462500;627000;551000;776200;887000;962900;1011600;1013300;1274800;1361700;1394100;1309100;1432682;1661818;1681768;1716544;1860125;2388383;2409284;2388617;2484318;2836102;2832267;2888247;3127834;3186085;4016179;4215703;4220231;4190352;4264084;4008601;4170959;4349148;4379682;4466328;4480914;4666009;4712989;4840395;5259784;5701283;4787021;4783070 -5403;'039;Southern Europe;1675;Other paper and paperboard;5922;Export value;1000 USD;19864;15702;12528;17821;31215;40310;42110;49356;60180;72260;75539;97611;139539;259447;248502;254258;235247;277220;409723;371909;403180;300392;369016;411185;480556;545925;685908;1070233;1244913;1262584;1166023;1401421;1340997;1580985;2216873;2050911;2104603;1996942;1773781;2005117;1951591;2009811;2374156;2627015;2854620;4123981;4591364;5218491;4104316;3737636;4278375;4007914;4383448;4522390;4023241;3899086;4421640.69;4882505.9;4450362;4250732;5682750;6140332;5180261 -5403;'039;Southern Europe;1676;Household and sanitary papers;5510;Production;t;;;;;8000;18700;266700;188200;189700;191500;160800;185600;47100;155000;183000;172000;182000;200000;254500;278300;313700;305000;432000;481000;542000;576000;563000;618000;634000;747000;801000;922000;1050000;1175000;1307000;1334000;1828000;1967800;2095500;1919652;2138000;2270865;2044110;2154182;2326490;2261811;2390956;2351864;2266017;2370891;2595699;2409337;2372214;2324590;2435735;2483966;2583664;2630569;2748763;2944502;2837824;2853760;2798208 -5403;'039;Southern Europe;1676;Household and sanitary papers;5610;Import quantity;t;14400;14700;19700;17200;16900;17900;19700;24900;41000;74700;68900;74900;104300;108500;82900;60300;16800;21100;21000;21100;16100;12700;26500;30300;29000;29000;30800;51800;56700;60300;68600;77700;99800;58600;83200;127800;163800;165800;177624;171728;229567;252192;267474;332495;302126;249430;238295;246516;224459;198121;200807;208091;223105;271457;250719;265579;394147;389390;360491;361558;358800;359862;385398 -5403;'039;Southern Europe;1676;Household and sanitary papers;5622;Import value;1000 USD;8344;8559;9492;8643;9062;13772;12788;16210;26290;34707;33454;44216;57969;90743;69211;64937;12065;15471;21303;25440;19234;15242;24536;27347;30028;36439;43685;87913;89573;98255;108046;116106;128044;65739;141275;203469;205812;211102;235845;185726;269839;278142;334246;342715;410419;366762;396691;385971;380474;316154;351047;298987;361982;434431;366318;357437;565549.49;566694.25;467609;401648;431980;545967;548106 -5403;'039;Southern Europe;1676;Household and sanitary papers;5910;Export quantity;t;7100;5000;3900;7100;14200;18800;18700;35900;35600;46300;39200;53000;88100;82000;82200;64000;10800;9900;12100;7700;15500;18400;28400;35100;57100;60100;23900;127900;175000;151900;137200;156200;207200;193800;251700;280900;361400;391300;195400;243052;291192;237474;239509;265419;300194;827623;815336;786628;749272;372218;428175;420440;438469;466687;491461;431226;449919;521931;529962;643035;658063;604900;574371 -5403;'039;Southern Europe;1676;Household and sanitary papers;5922;Export value;1000 USD;7256;5285;3308;4536;9072;11657;12768;17038;20380;25568;26169;35012;52882;77614;78776;60630;6072;6130;10245;7193;17931;17917;22576;27917;47043;51910;25633;159261;214556;210560;187697;211435;229259;208815;355279;407246;418934;392031;193120;242505;302672;238681;289435;316332;362078;1218271;1390475;1478948;1286497;509153;621954;545891;589974;622399;567083;496695;526293.38;680820.34;644375;727021;808411;1001927;860028 -5403;'039;Southern Europe;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7014030;7635209;8129897;8441580;8848958;8758206;8817387;9043269;9915836;9515107;9146520;8296974;9139984;8987231;8572825;9583397;9536260;9854621;9822767;9937307;10267860;9889353;10484251;11570460;10696791;10292720 -5403;'039;Southern Europe;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3648559;3726856;4093384;3753522;4338337;4575794;4625040;3863460;5477615;6834491;5249559;5401644;5117461;5069922;5130281;5251038;5634811;6202828;6458940;6849495;7332272;7174421;7070852;7068804;7835655;6964440 -5403;'039;Southern Europe;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2425707;2311075;2604897;2236635;2593487;3174302;3414232;2691018;3594086;4501879;4848002;3946018;4335984;4942954;4535763;4829307;5099279;4733842;4765976;5352599.34;6266665.92;5580144;4997223;6272702;7985645;6356303 -5403;'039;Southern Europe;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1732820;1887262;2009370;2189752;2418975;2439581;2689913;2663507;2892170;3252594;3187341;3317692;3834005;3468825;3693120;3841147;3838765;3916924;3981592;4081034;4120050;4241757;4538776;4950965;4116786;4152592 -5403;'039;Southern Europe;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1290543;1282415;1448120;1382848;1516798;1730217;1957144;1947003;2161058;2792979;2903160;2441199;2995957;3364613;3236443;3520086;3604967;3187433;3114635;3406390.34;3852642.5;3472617;3208559;4490502;4788942;3955534 -5403;'039;Southern Europe;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;224500;327600;708500;591500;1376400;1417100;1513900;1548500;1783900;1781100;3333000;3109700;3889000;3999000;3906000;4238200;4164800;4145500;4202000;4153000;4467000;4335000;4322000;4574000;5124000;5214000;5218000;5325000;5522000;5732000;6141900;6319000;6536000;7108000;;;;;;;;;;;;;;;;;;;;;;;;;; -5403;'039;Southern Europe;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;147600;155800;210500;203500;213600;248600;277000;332600;432500;451900;522200;571400;630900;745900;320500;488700;577500;636800;780700;861800;802300;764600;986700;1111900;1071900;1253900;1406300;842800;1008700;1869200;2026000;2264565;2244300;2786600;2659600;2506700;3054700;;;;;;;;;;;;;;;;;;;;;;;;;; -5403;'039;Southern Europe;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;21731;23175;26902;27617;31683;47539;47356;56558;76190;87864;91143;119579;165506;275749;155334;182804;192824;216637;348418;509467;418705;390167;411289;472274;482551;610082;829022;674361;719971;1434175;1437161;1747809;1369705;1695786;2337818;1826875;1808829;;;;;;;;;;;;;;;;;;;;;;;;;; -5403;'039;Southern Europe;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;20500;15100;13500;19800;37500;54700;49900;67500;100800;108700;114900;129700;178800;269400;249800;298300;253000;259600;328500;372300;406400;327400;414500;585300;762700;802400;813100;646500;612500;888100;899500;956819;1177227;1178724;1135000;1196600;1364600;;;;;;;;;;;;;;;;;;;;;;;;;; -5403;'039;Southern Europe;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;6160;4670;3486;4301;7915;10926;10858;14334;21516;25136;25740;34293;56158;130293;106067;108331;91536;95221;144809;237852;250713;166956;185789;248828;345071;399512;517492;391607;407831;709333;746991;860301;854534;1125560;1415558;1224346;1047832;;;;;;;;;;;;;;;;;;;;;;;;;; -5403;'039;Southern Europe;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5959605;4856304;5158811;5269883;5506294;5590179;5736260;5843717;6616640;6174985;5946619;5103657;5694334;5687106;5443292;6197370;5983593;6148936;6034299;6127895;6209402;6574041;7025476;7661629;7018094;6488063 -5403;'039;Southern Europe;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2156658;2181960;2396830;2210044;2513423;2650189;2702030;2571391;2865451;2905372;3131539;3284528;2926247;2821845;2878069;2877684;3081284;3490263;3609251;3739049;4106902;4108432;4032640;4037410;4523114;4169533 -5403;'039;Southern Europe;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1134022;1110923;1281674;1097512;1035237;1228845;1325578;1286002;1623554;1855232;1953188;1447240;1765660;2063125;1786391;1947052;1997342;1928496;1926178;2158242.88;2757064.29;2264334;1929151;2674537;3523401;2547187 -5403;'039;Southern Europe;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;503039;599203;618998;877345;964364;1022644;1145806;1031556;1148588;1447177;1428553;1404640;1633728;1561076;1563009;1596137;1503404;1505794;1457673;1288527;1394136;1671079;1948309;2110020;1679149;1945362 -5403;'039;Southern Europe;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;286014;301298;347934;436765;359652;393298;499685;404318;470131;801337;817971;646341;958578;1003773;871848;957433;908504;791134;738291;687567.17;914503.62;868661;843659;1394122;1366048;1077970 -5403;'039;Southern Europe;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;739387;1716397;1475384;1674234;1656651;1457967;1442919;1411865;1391124;1374676;1278933;1223989;1365696;1284635;1192286;1183924;1164610;1194622;1247178;1313759;1440503;803013;927601;892119;870101;838160 -5403;'039;Southern Europe;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;727758;743333;849040;678287;897936;979277;1004043;364976;1644276;2923270;1173395;1144135;1155299;1263027;1234685;1314549;1383168;1551050;1597618;1700806;1793389;1675501;1648649;1664667;1817577;1567638 -5403;'039;Southern Europe;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;757428;668088;753147;582907;860440;1104681;1228633;543248;1044103;1544645;1747505;1522262;1534988;1678015;1621401;1668412;1760127;1711530;1700325;1838857.72;1994547.9;1924414;1806808;2102686;2492150;2240931 -5403;'039;Southern Europe;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;630522;657000;721931;605817;719176;700052;788783;696999;771258;826952;763344;715661;1032019;897891;963102;1013497;1051695;1107474;1191605;1294873;1282222;1225289;1217185;1291132;1056996;961804 -5403;'039;Southern Europe;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;547940;550449;629065;474508;571863;648317;733399;662725;752250;924388;954521;819274;933729;1228383;1204274;1315421;1425565;1294267;1282314;1440732.27;1539699.87;1413858;1310917;1645372;1730418;1535779 -5403;'039;Southern Europe;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;204521;614149;668105;522863;589172;561027;637429;861279;928992;925693;913362;875980;991662;926589;917060;1067885;923967;997606;824268;964477;998144;907643;1036131;1178505;1113127;934718 -5403;'039;Southern Europe;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;648422;678818;741985;741944;757112;771640;750437;801028;811907;820169;791392;834056;909938;810557;837819;867591;929347;969971;1088654;1192059;1250706;1203142;1219945;1179679;1280137;1034583 -5403;'039;Southern Europe;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;471744;467399;515144;489183;610413;736475;758238;791143;819731;965519;1000724;865495;948004;1021661;969196;1050624;1119165;967279;1050750;1207909.35;1416964.67;1296007;1181969;1374675;1791928;1436544 -5403;'039;Southern Europe;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;536959;560809;625387;590995;595282;584816;562807;674329;711180;695565;681173;721105;716456;589246;720188;764813;758510;784624;793576;904284;881353;761854;780270;884790;816293;721134 -5403;'039;Southern Europe;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;425557;395051;442060;410528;522637;624525;635470;775311;817655;911441;948849;814487;894711;891122;910064;1005173;994073;872399;865736;987742.28;1101746.51;911757;797828;1067036;1256920;1020959 -5403;'039;Southern Europe;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110517;448359;827597;974600;1096841;1149033;1000779;926408;979080;1039753;1007606;1093348;1088292;1088901;1020187;1134218;1464090;1513457;1717022;1531176;1619811;1604656;1495043;1838207;1695469;2031779 -5403;'039;Southern Europe;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115721;122745;105529;123247;169866;174688;168530;126065;155981;185680;153233;138925;125977;174493;179708;191214;241012;191544;163417;217581;181275;187346;169618;187048;214827;192686 -5403;'039;Southern Europe;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62513;64665;54932;67033;87397;104301;101783;70625;106698;136483;146585;111021;87332;180153;158775;163219;222645;126537;88723;147589.39;98089.06;95389;79295;120804;178166;131641 -5403;'039;Southern Europe;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62300;70250;43054;115595;140153;132069;192517;260623;261144;282900;314271;476286;451802;420612;446821;466700;525156;519032;538738;593350;562339;583535;593012;665023;564348;524292 -5403;'039;Southern Europe;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31032;35617;29061;61047;62646;64077;88590;104649;121022;155813;181819;161097;208939;241335;250257;242059;276825;229633;228294;290348.62;296692.5;278341;256155;383972;435556;320826 -5403;'039;Southern Europe;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;470700;1533300;1790700;1402300;1611400;1754000;1684400;1901300;2056100;911000;895900;830000;837000;960000;872400;1291900;1314800;1220000;1281000;1337000;1419000;1406000;1441000;1480000;1467000;1224000;1137000;1221000;965000;1133100;1144000;1094000;811000;860982;899500;1041285;1033000;1024544;1039000;1051000;1161681;1344689;1375472;1175663;1064385;1238215;1283045;1322077;1321008;826759;893922;945353;996348;1021837;983118;916734;1047588;927352;769191 -5403;'039;Southern Europe;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;35500;37800;47922;47200;49500;53100;56800;90600;81500;132700;86800;80700;107200;163600;87800;128200;156700;143400;193200;121800;153400;181700;164100;180100;193100;290300;309500;908600;1194100;495300;416400;489777;567383;453629;380000;636847;785500;427318;415968;428842;517607;381849;366005;215734;264537;307456;274699;258314;244599;149622;160211;111378;196214;186366;136093;240104;239458;188110;180840;242549;242890;244631;253904 -5403;'039;Southern Europe;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;13188;14004;15583;16382;18508;25617;23757;38793;37349;58457;57247;55571;77586;126483;93973;130586;173891;176848;239558;173813;170975;192318;150649;156856;181483;282760;366270;903092;1167686;708636;566316;473602;557336;477245;590566;900324;1093180;552911;505004;448339;457419;371058;414789;319223;529280;623004;381659;648897;402050;260904;303531;227499;358940;326262;294699;353858;394725.89;368477.4;334716;332065;405536;434973;421903 -5403;'039;Southern Europe;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;12700;8700;6900;12700;25600;36000;34800;72400;61500;65300;64500;71300;53000;63900;68500;101800;165300;202100;264200;82500;205100;205200;333300;266600;143100;149100;176300;500400;574200;354100;272400;318913;277236;309189;329789;382570;659028;285164;305955;231896;355158;175818;209157;172502;222384;296386;147773;246262;123388;57861;111601;57399;69532;74230;57943;68096;135056;71008;68676;77973;92255;65335;56107 -5403;'039;Southern Europe;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;5290;3775;2428;3355;6916;10233;10265;16944;16558;19853;21595;26036;28723;48189;58147;85297;137639;175869;254669;126864;134536;115519;160651;134440;88442;94503;142783;519365;622526;342691;231335;328965;257141;246507;445933;419216;636639;314368;298246;314492;266071;254332;354504;353539;545539;744652;407910;836383;376620;232526;291808;225580;273388;295024;268725;287756;488956.97;349043.05;333370;315152;383837;349463;364699 -5403;'039;Southern Europe;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5092693.25;5621752.86;5666435;5105739;7026439;7799243;7628535 -5403;'039;Southern Europe;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11461920.37;12236963.11;11735875;10804671;13965879;14848229;14727283 -5403;'039;Southern Europe;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;210874.2;226921.79;220745;188950;241369;271014;228731 -5403;'039;Southern Europe;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;321562.55;348238.85;335240;294515;408340;433799;386736 -5403;'039;Southern Europe;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78121.51;84574.93;78896;85161;110422;118136;94334 -5403;'039;Southern Europe;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75788.56;77006.53;79488;70194;93104;101377;93324 -5403;'039;Southern Europe;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;132752.7;142346.87;141849;103789;130947;152878;134397 -5403;'039;Southern Europe;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;245773.99;271232.32;255752;224321;315236;332422;293412 -5403;'039;Southern Europe;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;471081.91;499162.71;505661;461126;723710;883481;850133 -5403;'039;Southern Europe;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;450173.95;495491.83;496726;431445;602785;745934;742983 -5403;'039;Southern Europe;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;227754.64;234585.02;244965;194088;254219;289033;240066 -5403;'039;Southern Europe;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;160347.49;166457.19;161059;141367;180510;177800;177042 -5403;'039;Southern Europe;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;869357.2;974995.78;881859;890400;1232175;1325642;1333599 -5403;'039;Southern Europe;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1017036.32;1039629.95;985810;939308;1177568;1158646;1148366 -5403;'039;Southern Europe;1636;Glue-laminated timber (glulam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20000;20000 -5403;'039;Southern Europe;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;466285;489292 -5403;'039;Southern Europe;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;408372;358146 -5403;'039;Southern Europe;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30173;32254 -5403;'039;Southern Europe;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43465;47267 -5403;'039;Southern Europe;1688;Cross-laminated timber (CLT or X-lam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1000 -5403;'039;Southern Europe;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34247;51317 -5403;'039;Southern Europe;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34247;40683 -5403;'039;Southern Europe;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3822;3440 -5403;'039;Southern Europe;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4697;3664 -5403;'039;Southern Europe;1684;I-beams (I-joists);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -5403;'039;Southern Europe;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;873;505 -5403;'039;Southern Europe;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;970;810 -5403;'039;Southern Europe;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;704;628 -5403;'039;Southern Europe;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;358;1193 -5403;'039;Southern Europe;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2814791.6;3115018.32;3203882;2875056;3901243;4221362;4199345 -5403;'039;Southern Europe;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8995850.46;9672680.69;9212132;8522074;10949660;11658053;11587969 -5403;'039;Southern Europe;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51348.77;48603.05;82088;42262;83879;139408;136057 -5403;'039;Southern Europe;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97383.33;94767.62;91979;88026;111108;119981;116824 -5403;'039;Southern Europe;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;447484.93;522466.18;527235;453857;589844;669303;640604 -5403;'039;Southern Europe;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;419566.27;419696.98;452929;387936;535908;554016;567363 -5403;'039;Southern Europe;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4125023.58;4505601.74;4751231;4199638;5354169;6333091;6428339 -5403;'039;Southern Europe;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6363063.81;7069762.76;7053867;6811079;8165186;9561084;9149261 -5403;'039;Southern Europe;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72809.61;76935.52;72068;60272;82669;107000;86456 -5403;'039;Southern Europe;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50266.06;60747.22;59216;48506;70167;87072;60721 -5403;'039;Southern Europe;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;837377.96;935946.92;900317;821015;1177977;1359518;1217206 -5403;'039;Southern Europe;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1087713.85;1175704.29;1211645;1087392;1444808;1582922;1347621 -5403;'039;Southern Europe;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;681650.1;760866.2;781431;729389;789585;932914;1032452 -5403;'039;Southern Europe;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1429090.74;1547039.09;1582771;1645458;1620549;2079681;2313580 -5403;'039;Southern Europe;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1390281.82;1520148.11;1744361;1407435;1873504;2275766;2466429 -5403;'039;Southern Europe;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2245444.96;2628723.26;2566975;2542899;3201678;3768537;3461122 -5403;'039;Southern Europe;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1142904.09;1211704.98;1253054;1181527;1430434;1657893;1625796 -5403;'039;Southern Europe;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1550548.2;1657548.9;1633260;1486824;1827984;2042872;1966217 -5404;'155;Western Europe;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83992676.15;92031358;86381590;84542913;104155461;109287623;97412964 -5404;'155;Western Europe;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77373777.74;83825413;78713116;75373879;93427121;98349518;87601266 -5404;'155;Western Europe;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;1337180;1380449;1520117;1805294;1937222;1971345;1885218;2537984;3145318;3547524;3657741;4270871;6080195;8354323;7211572;9286966;9991137;10965175;13995492;16434335;14064938;12943468;12682133;13231712;12956498;16859135;21297425;24264127;26633187;30906035;30105892;30483752;24374040;28593990;36736593;30371825;29040030;30449204;31363815;33729291;30505383;31058659;36576465;39915185;41224846;45249492;54007005;55517655;42425058;49307502;53389008;48037021;47640116;48145278;41460958;40757307;43218641.17;48002310;42643296;40161848;50734820;54038317;46552511 -5404;'155;Western Europe;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;607387;619338;642085;703480;751939;808867;863187;1001875;1174441;1421582;1522139;1818865;2877606;4296713;3340974;4531953;4871308;5609436;7092462;8219549;7323049;6898123;6860007;7385808;7720841;10270381;13504112;15761844;17128076;19334205;19586769;20560371;16869032;20528838;28458839;25222315;25333914;26469301;27653694;30097091;26725484;28751563;34721498;39804648;42146644;44609688;54256038;55259468;42683516;48345398;52204168;46012946;45614849;47273659;41569990;41466217;44373456.25;48117338;43920649;41214929;52815474;56955943;48573934 -5404;'155;Western Europe;1861;Roundwood;5516;Production;m3;87152000;88313000;81526000;84736000;83502000;93160000;92841000;87803000;88168000;94718000;95775000;91440000;101610000;102348000;92219000;96307000;98987000;97166000;99592000;104524000;101177000;99596000;98272000;102545000;102509000;103234000;105191000;129536510;139161340;182970000;128496000;124550000;120292000;130481000;134473720;136609259;137356606;136167939;136291966;157529641;143232612;136995430;145819560;151990971;154530020;164001172;174795421;157306041;143372186;159836629;154945605;151701196;152670501;147647365;149017790;148421222;147335920;156593050;154858394;155934957;167808386;167269693;154343517 -5404;'155;Western Europe;1861;Roundwood;5616;Import quantity;m3;11234800;10316200;10514800;12051900;10863300;10453400;10072500;10748100;13205300;14243500;12640200;11929800;14333700;14789700;11072400;12797700;13002403;12572800;13487300;14612800;12749400;12200000;11698000;11408800;13143900;12134600;12692800;12947100;12317200;10561149;13406733;11861058;10613823;13166100;13103000;10777200;12660700;13308600;16877665;19709085;18802557;16701583;17568858;17495114;18864318;21072452;23949912;21552460;19377110;24036835;23422909;22614789;25787314;24979088;24758292;25738628;25106502;26963549;25285537;26163259;25440143;22917336;20140485 -5404;'155;Western Europe;1861;Roundwood;5622;Import value;1000 USD;313667;282888;295493;367682;347718;339003;307744;351227;424107;418077;416800;463055;742088;821748;636162;857091;872552;936399;1131993;1388238;994461;854767;738662;711218;720959;873090;996814;1026697;999883;1081740;1156144;1265130;884116;1165074;1283969;969148;1066008;1149424;1321915;1277752;1094945;1040859;1203234;1351094;1445445;1710588;2261827;1931226;1600211;2017298;2254449;1964224;2324020;2331185;1873236;1937900;1979820.16;2130774;1778961;1724850;2181082;2235889;2037526 -5404;'155;Western Europe;1861;Roundwood;5916;Export quantity;m3;3881600;3942900;3842600;3850500;3568600;3745000;4149900;4255600;4526400;5040400;5129900;4946300;6888600;9205300;8762200;8044900;7754926;6695800;7088100;8464500;8295200;7694300;7210200;9299900;11519200;11761600;11536200;12063700;13732900;13103795;17265228;13416488;9924623;10846000;10819300;8502200;10161700;11252300;12178819;17810876;16272491;14072682;13693420;14725002;15520734;16371044;17000436;15397039;12657796;14671682;14662475;12509113;12720960;12344470;12748550;12112391;13742760;14929207;18855257;24446568;24940623;20926906;16724099 -5404;'155;Western Europe;1861;Roundwood;5922;Export value;1000 USD;73283;77623;72902;75662;75343;82448;82889;83502;91357;105775;114272;125505;234681;368165;336240;353314;404885;454475;507253;668472;541365;451480;378677;430980;514857;644720;769316;818630;907089;1110472;1220281;1082579;771667;855494;961422;777423;798235;903015;891377;1151606;920350;802605;899917;1070124;1124563;1359363;1673019;1555489;1036353;1209444;1415126;1115152;1182558;1286702;1119508;1085431;1298039.16;1549117;1686765;2110130;2632580;2535017;1885774 -5404;'155;Western Europe;1862;Roundwood, coniferous;5516;Production;m3;52034000;54211000;48117000;50184000;50327000;55701000;57392000;53544000;55953000;57949000;58739000;57260000;65231000;63676000;56222000;61678000;62352000;60622000;62609000;66292000;64339000;63746000;63604000;67088000;66917000;68042000;69349000;72599700;78465530;116793000;65192000;60895000;59767000;69818000;73952330;76150919;78083807;77543964;78003480;96726195;84039947;82448284;88618659;93784819;99450102;106965035;120991843;101072811;91344622;99834705;98938165;91740766;91491190;89841301;89683400;87661563;89550747;98669068;99118767;103349765;110055576;108861141;98066179 -5404;'155;Western Europe;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20483912;22187528;20664075;22040338;21262001;18501381;16661725 -5404;'155;Western Europe;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1521334.66;1620194;1322221;1313091;1718816;1704639;1516933 -5404;'155;Western Europe;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8085121;8937353;13081178;18985652;19020876;15702116;12016121 -5404;'155;Western Europe;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;606487.26;728040;1024740;1507908;1998450;1663687;1189224 -5404;'155;Western Europe;1863;Roundwood, non-coniferous;5516;Production;m3;35118000;34102000;33409000;34552000;33175000;37459000;35449000;34259000;32215000;36769000;37036000;34180000;36379000;38672000;35997000;34629000;36635000;36544000;36983000;38232000;36838000;35850000;34668000;35457000;35592000;35192000;35842000;56936810;60695810;66177000;63304000;63655000;60525000;60663000;60521390;60458340;59272799;58623975;58288486;60803446;59192665;54547146;57200901;58206152;55079918;57036137;53803578;56233230;52027564;60001924;56007440;59960430;61179311;57806064;59334390;60759659;57785173;57923982;55739627;52585192;57752810;58408552;56277338 -5404;'155;Western Europe;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4622590;4776021;4621462;4122921;4178142;4415955;3478760 -5404;'155;Western Europe;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;458485.5;510580;456740;411759;462266;531250;520593 -5404;'155;Western Europe;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5657639;5991854;5774079;5460916;5919747;5224790;4707978 -5404;'155;Western Europe;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;691551.9;821077;662025;602222;634130;871330;696550 -5404;'155;Western Europe;1864;Wood fuel;5516;Production;m3;18705000;17903000;18376000;17212000;15534000;23187000;21575000;20266000;15782000;18050000;17639000;16258000;15788000;15748000;15599000;15642000;15208000;15440000;16309000;16907000;17291000;17739000;17180000;17150000;18065000;18225000;18144000;37218510;38276340;45482000;46198000;47748000;46458000;45039000;46792383;50325814;46956271;44961035;44224693;45226191;48764719;45395735;49961683;51441687;48247274;53031669;48265772;53679663;52787341;61343057;54435936;59870499;62439717;55766871;56898814;58188717;56368359;56473727;55341084;53929286;59621988;61186253;58728918 -5404;'155;Western Europe;1864;Wood fuel;5616;Import quantity;m3;493100;580900;542000;587000;263900;319300;333500;304100;525000;494700;417600;216900;253200;267600;250800;210800;240203;226600;144200;146000;111800;129200;182500;267100;267100;314200;315800;390500;375500;286700;310900;378651;426611;373100;317400;432400;332900;314300;257665;270064;342144;362059;409883;466941;771101;973857;898180;840948;1100261;1182315;1502910;1866531;2286791;2350446;1733633;1529892;1373221;1456617;1097253;799558;865325;908557;854721 -5404;'155;Western Europe;1864;Wood fuel;5622;Import value;1000 USD;4869;6202;5295;5905;2393;3449;3999;3066;8646;5437;4852;2345;3534;5455;5221;4372;5568;7406;4462;6576;4573;4856;5008;6862;6657;10778;12224;12114;11350;10293;11049;14604;12566;10623;9829;14407;18434;19123;17641;11023;11474;13604;20161;28020;34175;53590;53015;60634;102093;105357;151889;155197;209856;213034;147355;121139;124674.8;137918;110160;92541;104620;142550;126586 -5404;'155;Western Europe;1864;Wood fuel;5916;Export quantity;m3;651700;702900;708600;528900;412000;381000;356200;351800;398700;356500;225900;208900;351900;357400;379000;167200;159026;124900;141100;159300;150600;106000;98700;93900;110100;107100;110200;85500;79500;81800;176800;208571;205948;525200;595500;478400;495800;552000;475819;444327;549497;593107;696941;698354;756484;768093;705174;715434;915391;1108951;1109869;1076265;1051007;1011288;1009101;823383;1145943;1167438;1053656;934232;1062141;1187178;1034727 -5404;'155;Western Europe;1864;Wood fuel;5922;Export value;1000 USD;6154;6819;7063;5340;4304;4096;3714;3640;4242;4108;2963;3042;5335;7765;6859;4204;4350;3825;4948;6905;5811;3867;3439;2760;2839;3351;4660;4162;3397;4190;8239;10136;9481;17244;22326;17260;18798;18365;16307;11855;11791;13876;21361;24424;26732;30809;37414;39379;46710;55198;64458;51318;55250;58916;49666;38689;59837.02;77578;67483;52007;48334;71528;62263 -5404;'155;Western Europe;1627;Wood fuel, coniferous;5516;Production;m3;2936000;2934000;3452000;3259000;3331000;6265000;6548000;6506000;6058000;5585000;5666000;5726000;5788000;5840000;5760000;5893000;5801000;5876000;6253000;6411000;6618000;6854000;6475000;6515000;7203000;7670000;7602000;6534700;6680530;7524000;6505000;6962000;7030000;7038000;8631363;10728017;9308721;8520476;8632734;9514766;11159166;9967848;12168767;12978906;13069428;15250233;14863698;16774153;15668102;18194728;16325998;17454281;17187953;15419464;15277422;15111783;15166214;15755210;15571505;15162745;16320966;18061778;17346833 -5404;'155;Western Europe;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;801223;812717;560301;399726;412634;424989;507198 -5404;'155;Western Europe;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59334.64;61634;45011;38558;35542;45810;50182 -5404;'155;Western Europe;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;677501;705912;614815;670039;546236;675654;546903 -5404;'155;Western Europe;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30897.58;29499;25235;35073;26899;40858;30261 -5404;'155;Western Europe;1628;Wood fuel, non-coniferous;5516;Production;m3;15769000;14969000;14924000;13953000;12203000;16922000;15027000;13760000;9724000;12465000;11973000;10532000;10000000;9908000;9839000;9749000;9407000;9564000;10056000;10496000;10673000;10885000;10705000;10635000;10862000;10555000;10542000;30683810;31595810;37958000;39693000;40786000;39428000;38001000;38161020;39597797;37647550;36440559;35591959;35711425;37605553;35427887;37792916;38462781;35177846;37781436;33402074;36905510;37119239;43148329;38109938;42416218;45251764;40347407;41621392;43076934;41202145;40718517;39769579;38766541;43301022;43124475;41382085 -5404;'155;Western Europe;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;571998;643900;536952;399832;452691;483568;347523 -5404;'155;Western Europe;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65340.16;76284;65149;53983;69078;96740;76404 -5404;'155;Western Europe;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;468442;461526;438841;264193;515905;511524;487824 -5404;'155;Western Europe;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28939.44;48079;42248;16934;21435;30670;32002 -5404;'155;Western Europe;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;493100;580900;542000;587000;263900;319300;333500;304100;525000;494700;417600;216900;253200;267600;250800;210800;240203;226600;144200;146000;111800;129200;182500;267100;267100;314200;315800;390500;375500;286700;310900;378651;426611;373100;317400;432400;332900;314300;257665;270064;342144;362059;409883;466941;771101;973857;898180;840948;1100261;1182315;1502910;1866531;2286791;2350446;1733633;1529892;;;;;;; -5404;'155;Western Europe;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;4869;6202;5295;5905;2393;3449;3999;3066;8646;5437;4852;2345;3534;5455;5221;4372;5568;7406;4462;6576;4573;4856;5008;6862;6657;10778;12224;12114;11350;10293;11049;14604;12566;10623;9829;14407;18434;19123;17641;11023;11474;13604;20161;28020;34175;53590;53015;60634;102093;105357;151889;155197;209856;213034;147355;121139;;;;;;; -5404;'155;Western Europe;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;651700;702900;708600;528900;412000;381000;356200;351800;398700;356500;225900;208900;351900;357400;379000;167200;159026;124900;141100;159300;150600;106000;98700;93900;110100;107100;110200;85500;79500;81800;176800;208571;205948;525200;595500;478400;495800;552000;475819;444327;549497;593107;696941;698354;756484;768093;705174;715434;915391;1108951;1109869;1076265;1051007;1011288;1009101;823383;;;;;;; -5404;'155;Western Europe;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;6154;6819;7063;5340;4304;4096;3714;3640;4242;4108;2963;3042;5335;7765;6859;4204;4350;3825;4948;6905;5811;3867;3439;2760;2839;3351;4660;4162;3397;4190;8239;10136;9481;17244;22326;17260;18798;18365;16307;11855;11791;13876;21361;24424;26732;30809;37414;39379;46710;55198;64458;51318;55250;58916;49666;38689;;;;;;; -5404;'155;Western Europe;1865;Industrial roundwood;5516;Production;m3;68447000;70410000;63150000;67524000;67968000;69973000;71266000;67537000;72386000;76668000;78136000;75182000;85822000;86600000;76620000;80665000;83779000;81726000;83283000;87617000;83886000;81857000;81092000;85395000;84444000;85009000;87047000;92318000;100885000;137488000;82298000;76802000;73834000;85442000;87681337;86283445;90400335;91206904;92067273;112303450;94467893;91599695;95857877;100549284;106282746;110969503;126529649;103626378;90584845;98493572;100509669;91830697;90230784;91880494;92118976;90232505;90967561;100119323;99517310;102005671;108186398;106083440;95614599 -5404;'155;Western Europe;1865;Industrial roundwood;5616;Import quantity;m3;10741700;9735300;9972800;11464900;10599400;10134100;9739000;10444000;12680300;13748800;12222600;11712900;14080500;14522100;10821600;12586900;12762200;12346200;13343100;14466800;12637600;12070800;11515500;11141700;12876800;11820400;12377000;12556600;11941700;10274449;13095833;11482407;10187212;12793000;12785600;10344800;12327800;12994300;16620000;19439021;18460413;16339524;17158975;17028173;18093217;20098595;23051732;20711512;18276849;22854520;21919999;20748258;23500523;22628642;23024659;24208736;23733281;25506932;24188284;25363701;24574818;22008779;19285764 -5404;'155;Western Europe;1865;Industrial roundwood;5622;Import value;1000 USD;308798;276686;290198;361777;345325;335554;303745;348161;415461;412640;411948;460710;738554;816293;630941;852719;866984;928993;1127531;1381662;989888;849911;733654;704356;714302;862312;984590;1014583;988533;1071447;1145095;1250526;871550;1154451;1274140;954741;1047574;1130301;1304274;1266729;1083471;1027255;1183073;1323074;1411270;1656998;2208812;1870592;1498118;1911941;2102560;1809027;2114164;2118151;1725881;1816761;1855145.36;1992856;1668801;1632309;2076462;2093339;1910940 -5404;'155;Western Europe;1865;Industrial roundwood;5916;Export quantity;m3;3229900;3240000;3134000;3321600;3156600;3364000;3793700;3903800;4127700;4683900;4904000;4737400;6536700;8847900;8383200;7877700;7595900;6570900;6947000;8305200;8144600;7588300;7111500;9206000;11409100;11654500;11426000;11978200;13653400;13021995;17088428;13207917;9718675;10320800;10223800;8023800;9665900;10700300;11703000;17366549;15722994;13479575;12996479;14026648;14764250;15602951;16295262;14681605;11742405;13562731;13552606;11432848;11669953;11333182;11739449;11289008;12596817;13761769;17801601;23512336;23878482;19739728;15689372 -5404;'155;Western Europe;1865;Industrial roundwood;5922;Export value;1000 USD;67129;70804;65839;70322;71039;78352;79175;79862;87115;101667;111309;122463;229346;360400;329381;349110;400535;450650;502305;661567;535554;447613;375238;428220;512018;641369;764656;814468;903692;1106282;1212042;1072443;762186;838250;939096;760163;779437;884650;875070;1139751;908559;788729;878556;1045700;1097831;1328554;1635605;1516110;989643;1154246;1350668;1063834;1127308;1227786;1069842;1046742;1238202.14;1471539;1619282;2058123;2584246;2463489;1823511 -5404;'155;Western Europe;1866;Industrial roundwood, coniferous;5516;Production;m3;49098000;51277000;44665000;46925000;46996000;49436000;50844000;47038000;49895000;52364000;53073000;51534000;59443000;57836000;50462000;55785000;56551000;54746000;56356000;59881000;57721000;56892000;57129000;60573000;59714000;60372000;61747000;66065000;71785000;109269000;58687000;53933000;52737000;62780000;65320967;65422902;68775086;69023488;69370746;87211429;72880781;72480436;76449892;80805913;86380674;91714802;106128145;84298658;75676520;81639977;82612167;74286485;74303237;74421837;74405978;72549780;74384533;82913858;83547262;88187020;93734610;90799363;80719346 -5404;'155;Western Europe;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4979793;7502072;6251152;5645531;7150900;6677300;5863300;7050900;7345000;10644500;13315062;13383960;11665567;12675121;12583167;13332995;15400102;17448145;16240529;14671397;18696126;17144377;16065202;18685649;17792191;18352161;19814562;19682689;21374811;20103774;21640612;20849367;18076392;16154527 -5404;'155;Western Europe;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;365770;449590;431978;296896;423024;449235;405786;464571;499908;709607;646081;583473;577924;681654;762586;856484;1058105;1403108;1196933;1069834;1446603;1568121;1386619;1657037;1652605;1349789;1435584;1462000.02;1558560;1277210;1274533;1683274;1658829;1466751 -5404;'155;Western Europe;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8026022;11709246;8347424;6225675;6692100;6243900;4678600;6034700;6416300;7054000;11838673;11105480;8997673;8584094;9938339;10374223;11164232;11406859;10414635;8694492;10122152;9939553;7713429;7647522;6820980;7158082;6934385;7407620;8231441;12466363;18315613;18474640;15026462;11469218 -5404;'155;Western Europe;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;608368;736122;589213;367220;413463;456028;356077;379058;388546;392111;494007;446658;415368;481070;605107;646199;769843;1012006;883502;610058;718077;817704;633995;659617;636828;544620;533284;575589.67;698541;999505;1472835;1971551;1622829;1158963 -5404;'155;Western Europe;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4979793;7502072;6251152;5645531;7150900;6677300;5863300;7050900;7345000;10644500;13315062;13383960;11665567;12675121;12583167;13332995;15400102;17448145;16240529;14671397;18696126;17144377;16065202;18685649;17792191;18352161;19814562;19682689;21374811;20103774;21640612;20849367;18076392;16154527 -5404;'155;Western Europe;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;365770;449590;431978;296896;423024;449235;405786;464571;499908;709607;646081;583473;577924;681654;762586;856484;1058105;1403108;1196933;1069834;1446603;1568121;1386619;1657037;1652605;1349789;1435584;1462000.02;1558560;1277210;1274533;1683274;1658829;1466751 -5404;'155;Western Europe;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8026022;11709246;8347424;6225675;6692100;6243900;4678600;6034700;6416300;7054000;11838673;11105480;8997673;8584094;9938339;10374223;11164232;11406859;10414635;8694492;10122152;9939553;7713429;7647522;6820980;7158082;6934385;7407620;8231441;12466363;18315613;18474640;15026462;11469218 -5404;'155;Western Europe;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;608368;736122;589213;367220;413463;456028;356077;379058;388546;392111;494007;446658;415368;481070;605107;646199;769843;1012006;883502;610058;718077;817704;633995;659617;636828;544620;533284;575589.67;698541;999505;1472835;1971551;1622829;1158963 -5404;'155;Western Europe;1867;Industrial roundwood, non-coniferous;5516;Production;m3;19349000;19133000;18485000;20599000;20972000;20537000;20422000;20499000;22491000;24304000;25063000;23648000;26379000;28764000;26158000;24880000;27228000;26980000;26927000;27736000;26165000;24965000;23963000;24822000;24730000;24637000;25300000;26253000;29100000;28219000;23611000;22869000;21097000;22662000;22360370;20860543;21625249;22183416;22696527;25092021;21587112;19119259;19407985;19743371;19902072;19254701;20401504;19327720;14908325;16853595;17897502;17544212;15927547;17458657;17712998;17682725;16583028;17205465;15970048;13818651;14451788;15284077;14895253 -5404;'155;Western Europe;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5294656;5593761;5231255;4541681;5642100;6108300;4481500;5276900;5649300;5975500;6123959;5076453;4673957;4483854;4445006;4760222;4698493;5603587;4470983;3605452;4158394;4775622;4683056;4814874;4836451;4672498;4394174;4050592;4132121;4084510;3723089;3725451;3932387;3131237 -5404;'155;Western Europe;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;705677;695505;818548;574654;731427;824905;548955;583003;630393;594667;620648;499998;449331;501419;560488;554786;598893;805704;673659;428284;465338;534439;422408;457127;465546;376092;381177;393145.34;434296;391591;357776;393188;434510;444189 -5404;'155;Western Europe;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4995973;5379182;4860493;3493000;3628700;3979900;3345200;3631200;4284000;4649000;5527876;4617514;4481902;4412385;4088309;4390027;4438719;4888403;4266970;3047913;3440579;3613053;3719419;4022431;4512202;4581367;4354623;5189197;5530328;5335238;5196723;5403842;4713266;4220154 -5404;'155;Western Europe;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;497914;475920;483230;394966;424787;483068;404086;400379;496104;482959;645744;461901;373361;397486;440593;451632;558711;623599;632608;379585;436169;532964;429839;467691;590958;525222;513458;662612.46;772998;619777;585288;612695;840660;664548 -5404;'155;Western Europe;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1280397;1313143;1289512;736981;844200;910600;909200;977400;1112200;1182410;1303729;1000061;838667;721967;660667;638128;597569;597019;496773;300528;262111;233794;165740;145901;124711;132569;131174;113239;125940;111229;94759;114962;103073;95143 -5404;'155;Western Europe;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;332086;332795;354545;203344;277540;279580;270604;256841;287881;298046;290843;227046;200954;209525;231651;229730;223903;281979;254988;127585;121098;123520;82298;76955;68545;59414;60042;57798.69;68702;57260;54606;75073;65534;61859 -5404;'155;Western Europe;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75500;137400;112900;49000;47800;61300;146000;165757;141885;83868;74890;82441;96356;63068;63957;54433;28283;39352;38334;18236;26689;25153;21273;20476;25201;36773;39969;20718;20558;27331;44573 -5404;'155;Western Europe;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31877;36080;35911;19422;21934;11404;28021;45518;39958;25227;27711;35328;30652;32227;46230;39729;19547;24845;23972;11930;13804;15845;12169;11957;16256.27;19690;23800;13032;14202;35218;28497 -5404;'155;Western Europe;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4014259;4280618;3941743;3804700;4797900;5197700;3572300;4299500;4537100;4793090;4820230;4076392;3835290;3761887;3784339;4122094;4100924;5006568;3974210;3304924;3896283;4541828;4517316;4668973;4711740;4539929;4263000;3937353;4006181;3973281;3628330;3610489;3829314;3036094 -5404;'155;Western Europe;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;373591;362710;464003;371310;453887;545325;278351;326162;342512;296621;329805;272952;248377;291894;328837;325056;374990;523725;418671;300699;344240;410919;340110;380172;397001;316678;321135;335346.65;365594;334331;303170;318115;368976;382330 -5404;'155;Western Europe;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4995973;5379182;4860493;3417500;3491300;3867000;3296200;3583400;4222700;4503000;5362119;4475629;4398034;4337495;4005868;4293671;4375651;4824446;4212537;3019630;3401227;3574719;3701183;3995742;4487049;4560094;4334147;5163996;5493555;5295269;5176005;5383284;4685935;4175581 -5404;'155;Western Europe;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;497914;475920;483230;363089;388707;447157;384664;378445;484700;454938;600226;421943;348134;369775;405265;420980;526484;577369;592879;360038;411324;508992;417909;453887;575113;513053;501501;646356.2;753308;595977;572256;598493;805442;636051 -5404;'155;Western Europe;1868;Sawlogs and veneer logs;5516;Production;m3;46097000;46824000;41569000;44701000;44639000;46984000;47283000;42907000;47124000;49048000;49411000;48420000;57965000;54081000;44673000;50393000;52456000;51589000;52048000;53964000;52040000;48275000;49724000;53060000;52749000;53011000;54103000;57854000;62492000;98876000;54317000;48594000;48221000;56876000;63053345;63957399;66358876;66836791;67932878;84238222;68878263;65401853;68004662;71707966;74628294;79959921;92363789;74448686;63023594;68616428;71220125;63791640;64531860;65794594;66479485;64679433;66454819;75117261;73328281;76765614;81285719;79219153;70881307 -5404;'155;Western Europe;1868;Sawlogs and veneer logs;5616;Import quantity;m3;4790200;4496700;4700000;5517100;4917500;4930100;4593100;5227500;5711400;5216800;5338000;5926200;7193500;6237200;4663100;5787800;5643600;5473200;5741700;5950900;5060900;5093700;5328900;4846300;4989800;4656000;4946300;5222500;5360000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5404;'155;Western Europe;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;204730;192635;212169;267382;256705;256640;231619;275275;317929;277875;300066;369178;614763;605836;451631;687495;669482;725526;878076;1033403;704862;613884;569915;549288;522212;639892;726532;752993;740863;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5404;'155;Western Europe;1868;Sawlogs and veneer logs;5916;Export quantity;m3;1645200;1571000;1554700;1593000;1570600;1716900;2011500;2071400;1836900;1921300;2214600;2259700;3479700;4176500;2845700;3429500;3371900;3054000;3130600;3534000;3387200;3070100;3187000;3752400;4464000;4357800;4689500;5429200;6150900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5404;'155;Western Europe;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;44123;45909;42394;44894;46025;48856;50601;51089;50765;56072;65481;77929;164370;234581;168340;209730;251625;305723;338813;423867;335058;273996;244721;267307;303491;390441;477297;537224;593996;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5404;'155;Western Europe;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;33316000;34365000;29662000;32317000;32113000;34057000;34694000;30605000;34028000;35270000;35290000;35059000;42432000;38328000;30980000;37034000;38033000;36753000;37776000;39527000;38041000;35223000;36869000;39623000;38856000;38926000;39608000;42485000;46591000;82177000;40568000;35819000;36421000;44505000;49113843;50770971;53062837;53037933;54076639;68364869;55632328;54949075;57541804;61053116;63845388;69333830;81141982;63780952;55058779;59734642;61470091;54717002;56235411;56691462;57273606;55208968;57311860;65355735;64146366;68861832;72775360;70102959;62044535 -5404;'155;Western Europe;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;898500;813700;699100;763200;747900;789100;683200;824700;770200;772400;742400;935900;1654400;1661600;1103300;1486700;1525900;1603600;1840200;2040200;1949600;2250700;2325000;1899900;2208000;1906400;2392000;2655000;2762000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5404;'155;Western Europe;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;24846;20797;17081;19585;20603;20617;15905;18290;19192;20929;21398;28837;58140;75468;50108;61802;75412;94820;123624;155952;128030;124439;116901;92858;94517;117935;165591;191308;207274;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5404;'155;Western Europe;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;728000;709800;712100;682900;630200;699300;964100;1025600;762200;730600;897500;909100;1868000;2492800;1477200;1994000;1746300;1440600;1518000;1737200;1577200;1454600;1603000;1925800;2386300;2212300;2518200;2435200;2822600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5404;'155;Western Europe;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;16100;19150;15426;14960;12544;13655;17759;16870;13364;13913;20821;23917;68994;114660;74790;101031;106693;121464;120330;161041;137532;114222;98026;103381;120701;150577;194364;186917;215038;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5404;'155;Western Europe;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;12781000;12459000;11907000;12384000;12526000;12927000;12589000;12302000;13096000;13778000;14121000;13361000;15533000;15753000;13693000;13359000;14423000;14836000;14272000;14437000;13999000;13052000;12855000;13437000;13893000;14085000;14495000;15369000;15901000;16699000;13749000;12775000;11800000;12371000;13939502;13186428;13296039;13798858;13856239;15873353;13245935;10452778;10462858;10654850;10782906;10626091;11221807;10667734;7964815;8881786;9750034;9074638;8296449;9103132;9205879;9470465;9142959;9761526;9181915;7903782;8510359;9116194;8836772 -5404;'155;Western Europe;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;3891700;3683000;4000900;4753900;4169600;4141000;3909900;4402800;4941200;4444400;4595600;4990300;5539100;4575600;3559800;4301100;4117700;3869600;3901500;3910700;3111300;2843000;3003900;2946400;2781800;2749600;2554300;2567500;2598000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5404;'155;Western Europe;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;179884;171838;195088;247797;236102;236023;215714;256985;298737;256946;278668;340341;556623;530368;401523;625693;594070;630706;754452;877451;576832;489445;453014;456430;427695;521957;560941;561685;533589;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5404;'155;Western Europe;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;917200;861200;842600;910100;940400;1017600;1047400;1045800;1074700;1190700;1317100;1350600;1611700;1683700;1368500;1435500;1625600;1613400;1612600;1796800;1810000;1615500;1584000;1826600;2077700;2145500;2171300;2994000;3328300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5404;'155;Western Europe;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;28023;26759;26968;29934;33481;35201;32842;34219;37401;42159;44660;54012;95376;119921;93550;108699;144932;184259;218483;262826;197526;159774;146695;163926;182790;239864;282933;350307;378958;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5404;'155;Western Europe;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23635332;23398048;27322059;24821109;25386725;27022108;28170533;30930018;30259829;33526877;28513094;26881167;29134784;28348948;27146982;24733118;25149201;24748889;24695522;23570957;23972759;25205665;24368705;25849464;25877943;23711273 -5404;'155;Western Europe;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15559671;14898699;18437600;16814895;17027583;18371395;19346809;22112057;21963781;24651723;20158559;20256515;21440266;20572014;19012501;17487101;17151261;16547233;16800649;16481158;17011403;18807265;18789240;20254187;20100645;18040906 -5404;'155;Western Europe;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8075661;8499349;8884459;8006214;8359142;8650713;8823724;8817961;8296048;8875154;8354535;6624652;7694518;7776934;8134481;7246017;7997940;8201656;7894873;7089799;6961356;6398400;5579465;5595277;5777298;5670367 -5404;'155;Western Europe;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5616;Import quantity;m3;4583000;4314600;4291500;4974600;4582800;4332100;4344600;4253500;5839100;7021000;5402400;4300800;5035000;5993400;4791700;5397600;5722100;5511700;6158600;6954700;6268500;5821400;5057700;5113200;6468300;5914300;6138900;6073600;5490100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5404;'155;Western Europe;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5622;Import value;1000 USD;79548;67954;61968;73500;68708;61837;58724;55918;77403;108424;88480;66742;87671;152026;131433;116406;140791;140593;180288;265404;219486;182986;118757;110848;143757;168749;191615;199447;183387;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5404;'155;Western Europe;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5916;Export quantity;m3;454900;613000;569600;803900;820200;846200;1044200;1035400;1354500;1763800;1743000;1629900;2208800;3826400;4225100;3509100;3281300;2636000;3038800;3901000;3943700;3800200;3337600;4805400;6276900;6960000;6136000;6255400;6933000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5404;'155;Western Europe;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5922;Export value;1000 USD;4573;6480;5797;8531;9021;10000;12500;11740;15598;22261;22928;22530;36069;84624;105803;89376;86245;75981;104693;170636;138262;122554;90789;125499;166929;228455;235144;232700;250461;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5404;'155;Western Europe;1870;Pulpwood and particles (1961-1997);5516;Production;m3;11403000;11425000;10732000;13564000;14171000;14256000;15936000;15755000;16862000;19683000;20671000;19394000;20431000;25927000;24869000;23541000;24507000;23521000;24927000;26799000;25741000;26560000;25350000;26164000;25154000;25449000;26601000;28343000;31755000;32161000;25109000;25409000;22745000;25770000;23148257;20885988;22693322;;;;;;;;;;;;;;;;;;;;;;;;;; -5404;'155;Western Europe;1870;Pulpwood and particles (1961-1997);5616;Import quantity;m3;4583000;4314600;4291500;4974600;4582800;4332100;4344600;4253500;5839100;7021000;5402400;4300800;5035000;5993400;4791700;5397600;5722100;5511700;6158600;6954700;6268500;5821400;5057700;5113200;6468300;5914300;6138900;6073600;5490100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5404;'155;Western Europe;1870;Pulpwood and particles (1961-1997);5622;Import value;1000 USD;79548;67954;61968;73500;68708;61837;58724;55918;77403;108424;88480;66742;87671;152026;131433;116406;140791;140593;180288;265404;219486;182986;118757;110848;143757;168749;191615;199447;183387;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5404;'155;Western Europe;1870;Pulpwood and particles (1961-1997);5916;Export quantity;m3;454900;613000;569600;803900;820200;846200;1044200;1035400;1354500;1763800;1743000;1629900;2208800;3826400;4225100;3509100;3281300;2636000;3038800;3901000;3943700;3800200;3337600;4805400;6276900;6960000;6136000;6255400;6933000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5404;'155;Western Europe;1870;Pulpwood and particles (1961-1997);5922;Export value;1000 USD;4573;6480;5797;8531;9021;10000;12500;11740;15598;22261;22928;22530;36069;84624;105803;89376;86245;75981;104693;170636;138262;122554;90789;125499;166929;228455;235144;232700;250461;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5404;'155;Western Europe;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;8578000;8398000;7904000;8772000;8796000;8949000;9982000;9634000;9534000;10749000;11353000;10590000;11122000;14491000;14008000;13323000;13178000;12611000;13517000;14965000;14979000;16141000;15353000;15940000;15712000;16296000;17208000;18839000;20189000;22185000;16501000;16565000;14723000;16707000;15179064;13663210;14840257;;;;;;;;;;;;;;;;;;;;;;;;;; -5404;'155;Western Europe;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;2825000;3027000;2828000;4792000;5375000;5307000;5954000;6121000;7328000;8934000;9318000;8804000;9309000;11436000;10861000;10218000;11329000;10910000;11410000;11834000;10762000;10419000;9997000;10224000;9442000;9153000;9393000;9504000;11566000;9976000;8608000;8844000;8022000;9063000;7969193;7222778;7853065;;;;;;;;;;;;;;;;;;;;;;;;;; -5404;'155;Western Europe;1871;Other industrial roundwood;5516;Production;m3;10947000;12161000;10849000;9259000;9158000;8733000;8047000;8875000;8400000;7937000;8054000;7368000;7426000;6592000;7078000;6731000;6816000;6616000;6308000;6854000;6105000;7022000;6018000;6171000;6541000;6549000;6343000;6121000;6638000;6451000;2872000;2799000;2868000;2796000;1479735;1440058;1348137;734781;736347;743169;768521;811117;831107;670785;724434;749753;638983;664598;680084;742360;940596;892075;965806;936699;890602;857550;941785;1029303;983364;871352;1051215;986344;1022019 -5404;'155;Western Europe;1871;Other industrial roundwood;5616;Import quantity;m3;1368500;924000;981300;973200;1099100;871900;801300;963000;1129800;1511000;1482200;1485900;1852000;2291500;1366800;1401500;1396500;1361300;1442800;1561200;1308200;1155700;1128900;1182200;1418700;1250100;1291800;1260500;1091600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5404;'155;Western Europe;1871;Other industrial roundwood;5622;Import value;1000 USD;24520;16097;16061;20895;19912;17077;13402;16968;20129;26341;23402;24790;36120;58431;47877;48818;56711;62874;69167;82855;65540;53041;44982;44220;48333;53671;66443;62143;64283;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5404;'155;Western Europe;1871;Other industrial roundwood;5916;Export quantity;m3;1129800;1056000;1009700;924700;765800;800900;738000;797000;936300;998800;946400;847800;848200;845000;1312400;939100;942700;880900;777600;870200;813700;718000;586900;648200;668200;336700;600500;293600;569500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5404;'155;Western Europe;1871;Other industrial roundwood;5922;Export value;1000 USD;18433;18415;17648;16897;15993;19496;16074;17033;20752;23334;22900;22004;28907;41195;55238;50004;62665;68946;58799;67064;62234;51063;39728;35414;41598;22473;52215;44544;59235;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5404;'155;Western Europe;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;7204000;8514000;7099000;5836000;6087000;6430000;6168000;6799000;6333000;6345000;6430000;5885000;5889000;5017000;5474000;5428000;5340000;5382000;5063000;5389000;4701000;5528000;4907000;5010000;5146000;5150000;4931000;4741000;5005000;4907000;1618000;1549000;1593000;1568000;1028060;988721;871992;425884;395408;408960;433558;503778;536693;405988;423229;417191;334440;359147;361226;465069;570062;556982;580725;579114;585139;540163;591515;546720;593631;535948;705063;595759;633905 -5404;'155;Western Europe;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;3743000;3647000;3750000;3423000;3071000;2303000;1879000;2076000;2067000;1592000;1624000;1483000;1537000;1575000;1604000;1303000;1476000;1234000;1245000;1465000;1404000;1494000;1111000;1161000;1395000;1399000;1412000;1380000;1633000;1544000;1254000;1250000;1275000;1228000;451675;451337;476145;308897;340939;334209;334963;307339;294414;264797;301205;332562;304543;305451;318858;277291;370534;335093;385081;357585;305463;317387;350270;482583;389733;335404;346152;390585;388114 -5404;'155;Western Europe;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;1368500;924000;981300;973200;1099100;871900;801300;963000;1129800;1511000;1482200;1485900;1852000;2291500;1366800;1401500;1396500;1361300;1442800;1561200;1308200;1155700;1128900;1182200;1418700;1250100;1291800;1260500;1091600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5404;'155;Western Europe;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;24520;16097;16061;20895;19912;17077;13402;16968;20129;26341;23402;24790;36120;58431;47877;48818;56711;62874;69167;82855;65540;53041;44982;44220;48333;53671;66443;62143;64283;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5404;'155;Western Europe;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;1129800;1056000;1009700;924700;765800;800900;738000;797000;936300;998800;946400;847800;848200;845000;1312400;939100;942700;880900;777600;870200;813700;718000;586900;648200;668200;336700;600500;293600;569500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5404;'155;Western Europe;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;18433;18415;17648;16897;15993;19496;16074;17033;20752;23334;22900;22004;28907;41195;55238;50004;62665;68946;58799;67064;62234;51063;39728;35414;41598;22473;52215;44544;59235;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5404;'155;Western Europe;1630;Wood charcoal;5510;Production;t;86706;86719;87132;82444;82957;79264;78772;75979;73186;66394;65507;70736;76762;77514;84502;80530;75159;77270;63301;57257;53181;47888;32163;38213;41878;48864;58938;66548;66052;69059;82636;97341;87390;89696;82117;73047;69414;113060;112564;61074;60882;71060;60074;62080;60102;61100;61105;59607;60522;59699;58233;53487;48352;43393;38559;66510;66355;71523;71597;81614;81587;81220;81158 -5404;'155;Western Europe;1630;Wood charcoal;5610;Import quantity;t;36900;27600;27700;28000;25400;24900;26800;30300;37100;48500;55700;48300;49500;65700;63100;82700;73042;69500;83700;113100;114400;138300;150100;151100;167000;141600;128500;116600;165700;184523;161886;151581;164134;137726;152314;171977;174419;196560;203746;206944;206132;226528;261393;299698;342870;332960;397773;359071;439654;445296;462903;481120;454408;438615;485304;449601;442914;533694;471500;443572;397109;373477;320287 -5404;'155;Western Europe;1630;Wood charcoal;5622;Import value;1000 USD;2125;1677;1643;1700;1872;1818;1878;2133;2496;3447;5449;5660;6307;12122;13986;17393;16304;18379;23236;38773;37747;32418;30436;33230;32014;37661;39502;38714;43248;53260;45428;64576;66142;54936;63142;69153;65008;69893;69124;63962;62053;66096;92325;122787;136198;145723;178626;190576;228049;227876;243007;232142;243708;241380;225844;224781;246882.51;286058;280684;284013;281206;280231;255467 -5404;'155;Western Europe;1630;Wood charcoal;5910;Export quantity;t;17200;17600;17300;12100;12400;9800;8600;7700;8600;9600;9800;9900;11900;15600;16200;19600;17240;16900;17200;16900;13800;18000;27100;20800;21400;19100;22400;24400;42200;45800;49900;47703;39468;37400;38900;41700;39900;44133;36501;29829;31014;34962;72370;90580;94478;84028;110503;100746;117614;107828;101766;83829;81346;79867;102962;114396;126785;118432;107793;96916;86314;115299;114581 -5404;'155;Western Europe;1630;Wood charcoal;5922;Export value;1000 USD;1458;1653;1745;1340;1451;1356;1193;1166;1172;1456;1816;2122;2752;4258;5019;6192;6202;7221;8302;9367;7472;7900;8839;7356;6342;8453;11414;11544;13619;15374;12916;20488;14774;17745;21689;27752;26870;12706;16212;12100;13144;15950;35793;44769;49744;45182;61328;69523;77848;74909;76540;64993;70921;76670;76609;83939;85752.23;95154;98242;118829;109767;115498;123992 -5404;'155;Western Europe;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31403245;31739000;31225000;31035100;30781000;31154000;32303000;32993000;32525288;31430011;29139521;33685590;34751304;41918793;44445359;49195735;48702539;48563848;37438545;38786513;39635106;39149964;40298652;43938937;43709918;41903078 -5404;'155;Western Europe;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6766400;6071000;6569753;6337268;6414429;5665902;7267915;8434290;9428641;14481927;12960772;13944186;14103596;10845291;10535171;10054485;10497614;9657663;7447855;7633851;8703397;8670134;8241116;8383357;8940306;7488823 -5404;'155;Western Europe;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;158297;174219;134267;135854;157317;186685;243332;305169;431489;756240;772670;898096;908534;593962;468272;498796;560491;425630;310242;346913.84;397123;377951;423559;371585;578147;522327 -5404;'155;Western Europe;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10668500;7320000;8937663;8087495;8636269;7789946;10033320;10297353;10066330;13440268;12702161;9836407;10960341;9297987;5659517;6172704;6416632;6170110;5282187;5069315;5608571;5628542;5065417;4969315;5651268;6152549 -5404;'155;Western Europe;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;169376;176822;195047;173597;204794;249590;337506;415293;488277;716794;751748;712812;792080;537077;387742;448357;435736;373216;283490;279088.25;333482;330837;309201;316059;411035;482295 -5404;'155;Western Europe;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12111372;11839000;13357000;13084100;13195000;13774000;14524000;15140000;13855415;15281002;14488466;18552727;18918275;20318423;20320384;21468196;21318629;20873418;21639668;21968603;22274783;23231809;23398558;24764694;24353384;23229584 -5404;'155;Western Europe;1619;Wood chips and particles;5616;Import quantity;m3;;;;3000;3000;3000;500;300;6700;16600;14200;175800;190700;247800;232500;366900;327400;349200;478500;647900;526600;480200;432900;885100;979500;1182600;1199600;1148800;1079400;1230500;1533800;1917464;2706666;4018900;3933500;3774900;2508900;3548500;2809000;3531464;3005468;2685649;2320500;2634746;2980325;3416733;4966761;4524783;4104535;3848276;4137889;3745018;4006045;4253984;3961651;3980547;4283950;4278287;3464175;3286205;3174453;4221454;3925514 -5404;'155;Western Europe;1619;Wood chips and particles;5622;Import value;1000 USD;;;;40;40;42;56;40;122;258;243;2237;2409;4014;4398;8075;6834;9279;15102;26663;17518;14878;11432;16713;16913;35101;42263;39458;37853;45861;53606;68752;65130;91279;136294;135231;74667;76483;85947;58789;58132;60124;65134;80907;84145;107179;206759;231168;160015;174474;213997;181763;234986;253335;186423;179010;202293.27;213324;164302;209553;154140;274305;288076 -5404;'155;Western Europe;1619;Wood chips and particles;5916;Export quantity;m3;;;;;100;1000;1000;1000;1000;3000;1000;8600;4200;134900;154400;126300;168400;168900;168700;211200;184200;223700;160900;295100;280600;421500;498300;999600;1422000;1406900;1760500;1876515;2080688;2949600;3294700;2707900;2724700;3874500;3291000;4747244;3898725;4424728;3531300;5170691;5261762;3959796;6668216;6111868;3888660;4281069;3948819;2817891;2789310;2680774;2582562;3001814;3030813;3748962;3481670;3218926;2725282;3553982;3656096 -5404;'155;Western Europe;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;26;26;30;48;36;46;37;892;335;2622;2854;2403;3192;5395;6085;9394;8448;9659;7000;8545;8602;16224;21703;33288;38461;53543;66321;75054;54930;78156;121343;92586;79337;72502;69300;98801;72483;87672;89818;141285;179190;139837;277957;246673;149811;190443;213880;168548;165833;165426;139326;142777;156697.55;191163;171941;178868;156640;242751;276600 -5404;'155;Western Europe;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400000;9331000;9989000;11207000;11149000;9055000;19291873;19900000;17868000;17951000;17586000;17380000;17779000;17853000;18669873;16149009;14651055;15132863;15833029;21600370;24124975;27727539;27383910;27690430;15798877;16817910;17360323;15918155;16900094;19174243;19356534;18673494 -5404;'155;Western Europe;1620;Wood residues;5616;Import quantity;m3;;;;354000;364800;391900;404000;650500;768100;955400;882500;962400;1066500;1004900;1026300;1473600;1448500;1482000;1563700;1713200;1740100;1718900;1772000;1914000;2005000;2263500;2703900;2577600;3068700;2547500;2823600;2843247;2688684;3045400;2936800;2674300;2606000;3217900;3262000;3038289;3331800;3728780;3345402;4633169;5453965;6011908;9515166;8435989;9839651;10255320;6707402;6790153;6048440;6243630;5696012;3467308;3349901;4425110;5205959;4954911;5208904;4718852;3563309 -5404;'155;Western Europe;1620;Wood residues;5622;Import value;1000 USD;;;;4049;4157;4262;4103;5849;7217;9975;10168;9617;11443;15241;18872;21047;24517;27549;32207;42749;40846;37636;33959;32058;33719;51016;74111;71586;69520;101033;79972;89065;66009;77675;93139;88925;83568;81814;88272;75478;77722;97193;121551;162425;221024;324310;549481;541502;738081;734060;379965;286509;263810;307156;239207;131232;144620.56;183799;213649;214006;217445;303842;234251 -5404;'155;Western Europe;1620;Wood residues;5916;Export quantity;m3;;;;363800;423800;533800;630500;671900;647900;684500;702500;911400;1040000;1182000;1286500;1696600;1530600;1285200;1321900;1592900;1653000;1567200;1689200;2004900;1960300;2379500;2494500;2118200;2756500;2625900;3527200;3767570;3306317;3978600;3439600;4165300;3402700;6794000;4029000;4190419;4188770;4211541;4258646;4862629;5035591;6106534;6772052;6590293;5947747;6679272;5349168;2841626;3383394;3735858;3587548;2280373;2038502;1859609;2146872;1846491;2244033;2097286;2496453 -5404;'155;Western Europe;1620;Wood residues;5922;Export value;1000 USD;;;;4424;4446;5965;7321;7359;7245;10651;8758;10328;13158;21225;26659;32328;30874;28453;32158;47551;43580;40251;35815;39357;40321;64824;78791;69350;73405;95432;117424;148440;94167;103072;110371;139931;108681;96874;107522;96246;101114;117122;159772;196221;236103;348440;438837;505075;563001;601637;323197;219194;282524;270310;233890;140713;122390.7;142319;158896;130333;159419;168284;205695 -5404;'155;Western Europe;1605;Sawdust (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2071641;984497 -5404;'155;Western Europe;1605;Sawdust (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;162442;89380 -5404;'155;Western Europe;1605;Sawdust (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1155843;1047792 -5404;'155;Western Europe;1605;Sawdust (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111383;117334 -5404;'155;Western Europe;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16536200;16345800;16549717;18035650;18334020;18334020;18334020 -5404;'155;Western Europe;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2511910;2348628;2242917;2260535;2437595;2111205;1962488 -5404;'155;Western Europe;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100201.1;99853;94571;88554;99781;123599;114917 -5404;'155;Western Europe;1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1447467;1567413;1420910;1483931;1540019;1162963;1140124 -5404;'155;Western Europe;1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79348.68;87779;84866;87253;100124;87030;85961 -5404;'155;Western Europe;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5342079;5546818;5661030;5164175;5477457;6155167;6871927;8112608;8308224;9177674;9155120;9795251 -5404;'155;Western Europe;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3332987;3233454;2857051;2883724;2717384;3391518;3634994;3914775;5248664;5799445;6473156;5466728 -5404;'155;Western Europe;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;613575;632818;571184;477457;449674;551098.24;661145;720701;954674;1064655;1591836;1389799 -5404;'155;Western Europe;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1864152;2138146;2024431;1909676;1593307;2049283;2483159;2593633;2777041;2991227;3059416;3407475 -5404;'155;Western Europe;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;424985;543546;586394;404696;357842;446776.08;603297;588638;585013;633150;986475;983346 -5404;'155;Western Europe;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4647079;4843018;4960030;4738688;5026513;5820800;6440000;7135000;7719700;8027645;8561060;8986060 -5404;'155;Western Europe;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2686729;2513081;2105555;2196815;2181502;2540682;2573116;3176360;4602515;5098533;5766761;4793395 -5404;'155;Western Europe;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;518211;522934;457408;401567;391260;447703.78;511147;610080;858708;949626;1418365;1239448 -5404;'155;Western Europe;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1636809;1923562;1841684;1720294;1479918;1757017;2151754;2183887;2263759;2518122;2497690;2734122 -5404;'155;Western Europe;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;381180;495861;556875;375889;335604;405102.29;557575;540525;530885;567736;911183;918778 -5404;'155;Western Europe;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;695000;703800;701000;425487;450944;334367;431927;977608;588524;1150029;594060;809191 -5404;'155;Western Europe;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;646258;720373;751496;686909;535882;850836;1061878;738415;646149;700912;706395;673333 -5404;'155;Western Europe;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95364;109884;113776;75890;58414;103394.46;149998;110621;95966;115029;173471;150351 -5404;'155;Western Europe;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;227343;214584;182747;189382;113389;292266;331405;409746;513282;473105;561726;673353 -5404;'155;Western Europe;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43805;47685;29519;28807;22238;41673.79;45722;48113;54128;65414;75292;64568 -5404;'155;Western Europe;1872;Sawnwood;5516;Production;m3;27073000;26914200;25904900;27096100;26183400;26793100;26610000;27336100;28835900;29161700;29978200;30568800;31938000;30822300;27310000;30213000;31141000;30528000;31480000;32195000;29990000;28873000;29963000;30265000;30016000;30340000;30721000;32747000;34813000;36826900;34930900;34118000;30423000;33700000;34812000;34881000;35618000;36944399;39036000;40564400;39952400;40307841;40570308;43591400;46007942;48515862;50357329;42691833;40203995;43146651;43945428;40881092;40996415;41180354;40962579;42616450;44030245;45211962;45774510;47201873;48812477;47336211;43997731 -5404;'155;Western Europe;1872;Sawnwood;5616;Import quantity;m3;9328800;9889600;10503000;11879300;11623900;10869100;10110600;10846100;12076900;12637100;12177800;13208000;14561900;12188700;10224500;12959900;13512300;14628200;16251300;16218000;13480000;13467500;14191300;13239700;13134500;14125100;14745100;14979500;15196300;14879900;13114900;13855077;14422500;15620600;14212800;14071200;15483800;16023100;16598000;17793301;15442964;15409661;15616172;16350933;16425193;17323982;20322737;18302101;14310520;15481221;15481671;14432441;14019325;13935742;13966355;15593848;16321970;17398236;17265304;17405916;18847926;14781533;12093427 -5404;'155;Western Europe;1872;Sawnwood;5622;Import value;1000 USD;455133;470172;508321;609993;623704;580890;521165;570066;682022;752343;759451;899884;1449556;1717146;1322173;2100998;2172749;2584538;3416330;3965251;2810694;2571504;2502159;2230779;2091036;2612750;3396146;3510440;3752276;4605613;4057428;4516321;3619518;4428057;4560153;3992901;4157483;3918107;3905064;3878114;3200874;3544726;3878122;4448888;4636212;5285918;6618576;6081719;4549261;5046291;5591897;4852731;4830049;5017751;4268543;4492316;4763534.44;5437594;4822736;5448583;8776236;6998217;5551263 -5404;'155;Western Europe;1872;Sawnwood;5916;Export quantity;m3;4624900;4429400;4262500;4312300;4261000;4079500;4062900;4831900;5051200;4853300;4683900;4882800;5666100;5496500;4897800;6847700;6348300;6096900;6587300;6642300;6032900;5788300;6592900;6773500;6544000;6549100;6944400;7758600;7956100;7647000;7422800;7377980;7331200;8678500;8855500;8266900;9391700;9654900;11175000;13283462;12955866;14336050;14592119;16887727;18328598;18232171;21773460;24257175;15556975;16540961;15961111;14921290;15026935;15605513;15662146;16745912;17714621;19119246;20260039;20975206;21522941;20827785;18930589 -5404;'155;Western Europe;1872;Sawnwood;5922;Export value;1000 USD;192903;190100;184238;190315;191029;182081;179254;203141;228560;257691;263438;305660;544314;677277;514142;771010;878132;996649;1257163;1444791;1103399;937228;936728;942091;870173;1166700;1443674;1663117;1747150;2071056;1994624;2035679;1649006;2109015;2446829;2289905;2289766;2197547;2471138;2674513;2425009;2737008;3217103;4036288;4369104;4871641;6704125;6070667;4130024;4530013;4813065;4235621;4481370;4756286;4050201;4338518;4786077.52;5572287;5167975;5432565;8747816;8199744;6229986 -5404;'155;Western Europe;1632;Sawnwood, coniferous;5516;Production;m3;20933350;20756600;19700250;20569700;19705850;20194700;19991850;20743300;21760500;21968550;22415550;22691350;23610000;22805000;20447000;22922500;23469500;22665500;23811500;24524500;23115000;22346000;23588000;23803500;23625500;23671000;24098500;25766000;27745000;29531000;28099000;27757500;25463000;28629000;29726000;29835000;30939000;32007515;33702000;35473400;35220400;36169400;36745400;39816400;42298942;44736567;46666847;39222763;37142848;40235069;40969909;38055769;37998876;38232181;38019242;39410105;40923771;42193421;42748549;44654678;45994956;44394749;41325486 -5404;'155;Western Europe;1632;Sawnwood, coniferous;5616;Import quantity;m3;8545250;9090150;9663150;10916350;10632450;9863850;9126850;9629850;10582450;11120050;10648700;11414250;11899800;10063850;8294650;10055750;10446500;11432950;12621450;12872700;10787850;10885300;11287200;10520350;10489500;11182350;11331850;11758350;11801400;11768350;10437800;10538677;11406800;12690700;11545900;11618000;12553000;12995000;13226000;14451877;12567089;12742016;12831189;13552851;13678190;14534515;16897614;15419187;12568115;13605931;13590517;12593901;12358204;12194901;12244511;13868962;14645225;15604543;15190126;15673334;16895194;13117609;10537157 -5404;'155;Western Europe;1632;Sawnwood, coniferous;5622;Import value;1000 USD;398576;413500;447469;534628;545186;500722;442995;472327;557065;623256;618518;704961;1047226;1321623;960657;1233757;1435855;1657066;2157254;2642154;1843755;1689197;1584517;1441980;1376348;1774513;2156662;2314191;2421677;3114496;2725242;2838617;2206277;2882238;2941015;2592834;2741792;2547123;2521929;2451676;1993905;2404943;2551614;2922337;2993612;3516111;4469031;4064679;3214545;3653211;4010252;3468405;3566331;3716318;3091534;3249336;3555046.72;4034481;3516105;4214941;7205572;5385170;4084239 -5404;'155;Western Europe;1632;Sawnwood, coniferous;5916;Export quantity;m3;3969150;3816650;3640750;3655300;3591700;3422800;3436400;4176650;4376250;4041650;3763850;3887900;4271150;4256600;3824450;5106350;4795550;4598400;5161650;5241350;4728150;4512600;5293900;5268000;5030500;5011700;5304250;6061600;6285000;6037750;5912400;5829272;5851800;7203800;7274400;6605400;7894800;8196000;9105500;11279847;11195962;12563081;12955246;15065365;16364621;16132458;18998273;21717529;14219537;15048159;14430873;13451700;13557606;13920280;13925261;14926698;15687052;17090608;18314221;19184514;19610160;19078901;17433430 -5404;'155;Western Europe;1632;Sawnwood, coniferous;5922;Export value;1000 USD;160880;159094;151707;153983;153397;144994;143202;165484;187877;206978;202469;221975;391459;492205;349652;537255;591927;639095;861989;1032295;770734;632879;641467;613184;550999;724458;906667;1064104;1170608;1388391;1303043;1330393;1058815;1424274;1711063;1568341;1591932;1518402;1676543;1830664;1703356;2010649;2401322;3042082;3279345;3725188;5275434;4696598;3258146;3635690;3810710;3309556;3554267;3706444;3068950;3245016;3589247.95;4278636;3964725;4339135;7295317;6783743;4979488 -5404;'155;Western Europe;1633;Sawnwood, non-coniferous;5516;Production;m3;6139650;6157600;6204650;6526400;6477550;6598400;6618150;6592800;7075400;7193150;7562650;7877450;8328000;8017300;6863000;7290500;7671500;7862500;7668500;7670500;6875000;6527000;6375000;6461500;6390500;6669000;6622500;6981000;7068000;7295900;6831900;6360500;4960000;5071000;5086000;5046000;4679000;4936884;5334000;5091000;4732000;4138441;3824908;3775000;3709000;3779295;3690482;3469070;3061147;2911582;2975519;2825323;2997539;2948173;2943337;3206345;3106474;3018541;3025961;2547195;2817521;2941462;2672245 -5404;'155;Western Europe;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;783550;799450;839850;962950;991450;1005250;983750;1216250;1494450;1517050;1529100;1793750;2662100;2124850;1929850;2904150;3065800;3195250;3629850;3345300;2692150;2582200;2904100;2719350;2645000;2942750;3413250;3221150;3394900;3111550;2677100;3316400;3015700;2929900;2666900;2453200;2930800;3028100;3372000;3341424;2875875;2667645;2784983;2798082;2747003;2789467;3425123;2882914;1742405;1875290;1891154;1838540;1661121;1740841;1721844;1724886;1676745;1793693;2075178;1732582;1952732;1663924;1556270 -5404;'155;Western Europe;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;56557;56672;60852;75365;78518;80168;78170;97739;124957;129087;140933;194923;402330;395523;361516;867241;736894;927472;1259076;1323097;966939;882307;917642;788799;714688;838237;1239484;1196249;1330599;1491117;1332186;1677704;1413241;1545819;1619138;1400067;1415691;1370984;1383135;1426438;1206969;1139783;1326508;1526551;1642600;1769807;2149545;2017040;1334716;1393080;1581645;1384326;1263718;1301433;1177009;1242980;1208487.72;1403113;1306631;1233642;1570664;1613047;1467024 -5404;'155;Western Europe;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;655750;612750;621750;657000;669300;656700;626500;655250;674950;811650;920050;994900;1394950;1239900;1073350;1741350;1552750;1498500;1425650;1400950;1304750;1275700;1299000;1505500;1513500;1537400;1640150;1697000;1671100;1609250;1510400;1548708;1479400;1474700;1581100;1661500;1496900;1458900;2069500;2003615;1759904;1772969;1636873;1822362;1963977;2099713;2775187;2539646;1337438;1492802;1530238;1469590;1469329;1685233;1736885;1819214;2027569;2028638;1945818;1790692;1912781;1748884;1497159 -5404;'155;Western Europe;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;32023;31006;32531;36332;37632;37087;36052;37657;40683;50713;60969;83685;152855;185072;164490;233755;286205;357554;395174;412496;332665;304349;295261;328907;319174;442242;537007;599013;576542;682665;691581;705286;590191;684741;735766;721564;697834;679145;794595;843849;721653;726359;815781;994206;1089759;1146453;1428691;1374069;871878;894323;1002355;926065;927103;1049842;981251;1093502;1196829.57;1293651;1203250;1093430;1452499;1416001;1250498 -5404;'155;Western Europe;1634;Veneer sheets;5516;Production;m3;629400;609400;636000;675300;704800;547300;527600;540900;527600;529000;506800;492500;527100;505000;381700;408000;421000;437000;433000;449000;473000;457000;603000;630000;630000;634000;639000;636000;680000;668000;612000;596000;558000;671000;632000;636000;652000;661170;659940;665420;654000;621420;557420;526420;534420;556269;555047;530486;287782;287310;292093;233006;220172;232701;253249;249646;287410;287627;296510;298725;314859;308980;310554 -5404;'155;Western Europe;1634;Veneer sheets;5616;Import quantity;m3;82900;85600;83500;101400;115700;135800;135200;194700;208400;224000;270100;275000;316300;305200;207900;275600;326100;372800;396500;427900;389300;391200;397000;413600;400700;414400;352500;423200;456500;445300;397000;386231;371868;540500;410600;382500;399100;429400;372379;381962;373256;386838;413465;428609;435359;489552;609935;490064;294158;374564;367022;346523;308812;319095;348960;361710;404055;366699;372683;554530;601661;561846;518929 -5404;'155;Western Europe;1634;Veneer sheets;5622;Import value;1000 USD;38785;43730;44561;51383;63302;65771;60262;71821;84488;86186;99423;115855;169326;165845;140381;179555;242680;308347;356247;413699;319161;288621;291275;280619;256781;325425;346240;392741;413760;468958;463351;501777;415620;499724;607143;510042;501412;536537;469200;482733;443406;461507;547581;615907;615180;718082;809822;711375;481804;528720;549596;478263;448817;471481;440826;501708;532527.95;560967;518778;742859;949439;1019780;839441 -5404;'155;Western Europe;1634;Veneer sheets;5916;Export quantity;m3;82600;77700;81600;87600;88700;87700;90900;102600;106200;112400;113600;124900;175400;142200;116500;154000;146000;150100;165500;175800;155000;145300;155200;169800;170500;170500;172100;194800;222100;207800;202800;184435;251928;275700;370700;362800;241600;271700;216300;273347;268613;268318;251750;236077;213275;222176;289730;261671;149337;162478;159999;157603;141737;158861;169495;176442;191968;210866;204493;184401;208610;171417;206630 -5404;'155;Western Europe;1634;Veneer sheets;5922;Export value;1000 USD;42334;42374;43130;48311;53153;55344;57000;64586;71106;74809;77705;92354;158220;146625;124554;159448;166785;221738;266014;302716;226729;199001;200098;205005;210813;244170;298051;331096;382038;421634;361644;401315;353124;429200;545515;503343;516955;550605;463696;527822;481804;500550;534132;599516;571038;661435;656805;610122;403063;423634;417368;333947;316049;337472;304748;317717;335384.97;366487;335265;384816;464834;434782;424981 -5404;'155;Western Europe;1873;Wood-based panels;5516;Production;m3;3798000;4221900;4684700;5390200;5956100;6686700;7322200;8241500;9560300;10348200;11434100;12690200;14239600;14170800;13011600;14583000;14402000;14710000;15233000;15171400;14098900;13400700;13867900;13994200;13878500;14128000;14401000;15657000;16887000;17389000;17081500;17301000;17674400;18838200;19744700;19995000;21332000;22663306;23506141;25233000;25133000;25950000;26834000;29335000;30636000;31331900;31884606;27774613;25373559;25025330;24779526;24609350;24102191;23884961;23297693;24068943;24474645;24201146;23146645;22544124;25466184;22539985;20883208 -5404;'155;Western Europe;1873;Wood-based panels;5616;Import quantity;m3;668600;744800;858500;1066600;1324200;1681844;1766936;1904380;2257132;2437358;2378884;2717354;3315538;3125266;2991059;3807626;4022200;4250400;4626000;4737500;4478500;4182900;4361600;4529400;4670400;5482500;5774400;6346900;6652500;7305000;7184900;7025943;6687161;7321160;7425300;7139800;7853200;8717600;9004300;9708048;9525176;9296291;9830440;10305984;10604526;11158568;13135352;12234157;10053530;11470580;12124580;12009370;11789129;11907533;12229891;12720081;13813432;14150955;13853800;14088987;14931867;13128157;11980943 -5404;'155;Western Europe;1873;Wood-based panels;5622;Import value;1000 USD;64952;70038;82666;103595;122611;133951;140028;160505;206475;234823;258393;327923;477275;540815;500169;714299;803017;947163;1217631;1440921;1177320;1053833;1015683;979712;974290;1327146;1748048;1978407;2014478;2673098;2525385;2731348;2376188;2700068;3221850;2930180;2874284;3095820;2982346;2900279;2716971;2703295;3332085;3957734;4227591;4683940;5881198;5768836;4402053;4899533;5735601;5270777;5299581;5689408;4836815;4939041;5425527.15;5995560;5434832;5411838;7335097;7108002;6904730 -5404;'155;Western Europe;1873;Wood-based panels;5916;Export quantity;m3;520200;591500;680500;748200;861100;997177;1113118;1219664;1466216;1728021;2017243;2316324;3001476;3147490;2877140;3540859;3579254;3699754;4114200;3899300;3581000;3501100;3545000;3885100;4228400;4439100;4751500;5536900;5865900;6090700;6262200;6227885;6344465;7067879;7258000;7997900;9115000;10123000;10362700;12521799;13041912;14751149;15307976;16730233;17813545;18213823;20025449;17487656;13680716;14686676;14114434;14410362;14602973;15099373;15190214;15487468;15663545;15423374;15377679;14829279;16036383;13916126;13260022 -5404;'155;Western Europe;1873;Wood-based panels;5922;Export value;1000 USD;52108;53327;62522;71500;80463;80099;87388;96171;119930;148603;169092;228359;349617;429237;410783;513724;591982;693517;867563;1001250;848301;787620;712477;713608;739103;1031343;1333148;1473969;1615441;1868679;1901777;2090988;1911667;2251036;2700791;2785392;2865574;3251142;3334341;3440352;3580221;4110794;4928212;5997623;6362767;7058391;9145276;8386096;6562272;6827303;7405604;6807949;7080006;7409014;6441796;6524276;6881629.86;7242505;6637800;6489664;8346464;7966748;7767648 -5404;'155;Western Europe;1640;Plywood and LVL;5516;Production;m3;1197000;1252100;1301500;1347200;1357100;1326400;1312800;1344900;1438700;1427800;1462500;1525900;1601500;1373400;1107100;1208000;1172000;1114000;1151000;1127000;1041000;961700;970900;956200;959500;982000;945000;1006000;1150000;1189000;1122500;1154000;1111400;1227200;1291300;1282000;1242000;1187285;1129441;1111000;1067000;968000;881000;940000;881000;921200;891500;827014;690407;854151;778668;774308;731729;731922;625977;686914;677402;698434;607552;586769;641784;553992;532541 -5404;'155;Western Europe;1640;Plywood and LVL;5616;Import quantity;m3;133200;135700;170500;210200;245100;292300;333300;447200;571000;645300;687800;830900;921900;870400;873100;1270200;1281800;1478600;1729000;1684600;1571400;1475500;1570100;1583400;1532900;1888800;1971000;2166800;2063200;2361500;2283900;2373360;2307316;2471300;2386700;2212000;2532100;2569000;2768200;2680656;2726502;2592299;2885247;3058660;2896081;3302547;3585789;3590317;2630152;3110749;3415602;3035711;2904331;3180248;3297336;3433995;3744211;3861460;3561083;3379595;3776282;3161383;2958845 -5404;'155;Western Europe;1640;Plywood and LVL;5622;Import value;1000 USD;22476;22244;28209;35197;40692;47554;51940;69771;94374;110919;130096;171020;246849;270018;251322;379823;447781;534390;728147;808957;671985;602176;582157;557659;525231;675294;898952;1035093;965807;1263251;1185972;1410117;1239163;1328951;1479135;1334998;1394097;1376022;1372710;1333500;1238621;1175238;1444930;1721533;1767440;1984071;2377861;2451977;1513979;1760131;2081968;1911526;1906328;2160022;1872616;1900510;2164690.37;2452497;2161512;2037557;2790599;2737528;2428814 -5404;'155;Western Europe;1640;Plywood and LVL;5916;Export quantity;m3;148100;133400;157500;165400;159900;145600;163700;184400;190800;224100;250000;290200;362100;331500;301200;312600;342700;375309;389400;392100;400600;418800;427400;429900;447100;485600;498500;602700;606400;611500;672600;680476;669696;707200;625100;655200;701200;730800;1056300;1127385;1157104;1014361;1119933;1245212;1235305;1397700;1326773;1422012;1143763;1298303;1340539;1235471;1219984;1283730;1241147;1357270;1394501;1376336;1286563;1204033;1437279;1107198;1290518 -5404;'155;Western Europe;1640;Plywood and LVL;5922;Export value;1000 USD;24715;22353;26376;28887;29299;26556;28833;32093;35864;42055;47818;64038;100146;112222;102646;129840;156124;172228;209903;235703;221018;201982;184300;179613;163014;219444;274088;293335;329813;397517;430458;512688;475911;533363;536465;514634;509220;523605;643576;595190;582658;570938;691595;856769;927454;1065289;1160423;1243651;869870;913921;1004760;865956;965684;1046422;899082;943817;1020969.84;1095317;998733;897579;1202139;1067798;1215254 -5404;'155;Western Europe;1607;Laminated Veneer Lumber (LVL);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;135000;123000 -5404;'155;Western Europe;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;147176;173428 -5404;'155;Western Europe;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68935;66634 -5404;'155;Western Europe;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66836;40074 -5404;'155;Western Europe;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77413;38957 -5404;'155;Western Europe;1646;Particle board and OSB (1961-1994);5516;Production;m3;2034800;2367200;2749500;3327900;3873500;4245500;4909800;5790300;6947200;7732400;8767800;9892900;11354100;11576000;10891400;12229000;12124000;12428000;12943000;12961000;12043000;11535000;11945000;12084000;11981000;12201000;12490000;13563000;14538000;14916000;14830000;14871000;15141000;15964000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5404;'155;Western Europe;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;269600;313100;353400;467900;704500;764200;773800;802800;977700;1062700;970700;1108300;1661700;1589100;1582000;1914600;2132800;2197800;2261700;2306800;2210800;2035800;2096000;2230500;2393900;2768700;2906700;3249600;3621900;3901000;3904500;3715585;3527900;3750900;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5404;'155;Western Europe;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;16807;18917;20889;28084;41369;45862;47021;49426;64520;72064;70652;90980;147551;175229;171990;243812;261701;314389;361209;457042;368586;320609;311687;308679;332065;480494;636302;711794;803405;1106596;1032439;992654;869972;986351;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5404;'155;Western Europe;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;258400;331700;385000;440000;547400;596200;656800;726900;960100;1198500;1429100;1686500;2237300;2437300;2285100;2812000;2861600;2974400;3352500;3180100;2863800;2775700;2794200;3139400;3451300;3603700;3871200;4453700;4745900;4900600;4895600;4899666;5045543;5493100;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5404;'155;Western Europe;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;14504;16947;20098;24424;32711;35509;39374;43301;60467;81236;93604;130593;205713;263058;262519;326738;373071;452267;573141;665029;542111;505410;448605;459076;507871;719273;928928;1027339;1102237;1264782;1245099;1301846;1170686;1356323;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5404;'155;Western Europe;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16568000;16716000;17058000;17600000;17908700;18544000;18035000;16849000;17062000;18645000;19018000;19038500;19374500;17036790;15840981;14581944;14105857;13697351;13335248;13404769;13071587;13205619;13174450;13299369;12547579;11670144;13644695;12333603;11720476 -5404;'155;Western Europe;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3823200;3551200;3588800;3537000;3473500;3323462;3257159;2707687;2899296;3125526;3483010;3756911;4990803;4887913;3323627;3760389;4140282;4022486;3743836;3785925;3726871;3785448;4213083;4030170;3950015;3743688;4059860;3679327;3460732 -5404;'155;Western Europe;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1250102;1071042;960158;986772;909514;771034;701835;588150;724931;877688;1008418;1081834;1410430;1440715;1127028;1178620;1461374;1351242;1291410;1384657;1139563;1135437;1211650.97;1260705;1170386;1099120;1513778;1558828;1705429 -5404;'155;Western Europe;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5621700;6014700;6455800;6684700;6536800;6882519;7017797;7339204;7361991;8037549;8299711;9109794;8902551;9968261;5567698;5962084;5779000;5910308;5869420;6396642;6265831;6362946;6449665;6455610;6620978;5967411;6350104;5584727;5590653 -5404;'155;Western Europe;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1722788;1679338;1589618;1639265;1563306;1421711;1401888;1417714;1644097;1988984;2089461;2411134;3016298;2964049;1916445;1957584;2213341;2062036;2051488;2222023;1892542;1868193;1946514.64;2128244;1969397;1791035;2402865;2493643;2569906 -5404;'155;Western Europe;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;250000;250000;250000;250000;250000;749000;815000;1230000;1415000;1527000;1967000;1917000;1939000;1785859;1754316;1977396;2000569;2035948;2056752;1990920;2081014;2348485;2401673;2180209;2172650;2351527;2474260;2219996;2222803 -5404;'155;Western Europe;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;390000;521200;550325;620866;835581;722943;681239;640914;764369;657807;756120;746280;868713;950677;1041880;1162973;1177822;1296432;1483312;1570329;1701532;1585859;1904618;1764127;1828127;1639992 -5404;'155;Western Europe;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87948;118976;115999;97368;130659;151726;190923;183742;230460;272176;289047;241135;299257;365115;353048;419071;424170;348341;386961;421634.01;560220;474878;509783;812438;688236;602196 -5404;'155;Western Europe;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;181900;49700;416744;379689;774411;824206;1053346;1355216;1315202;1677989;1244710;1194244;1181481;1215801;1132330;1173713;1086465;1061737;1154302;1094030;1099420;1103909;1122736;1448507;1614598;1324926 -5404;'155;Western Europe;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45565;13139;81321;65984;135667;183680;343782;374705;382002;467743;461699;351889;384466;437012;365985;402852;365795;303192;279741;300178.04;342385;318110;352763;627668;626197;520804 -5404;'155;Western Europe;1874;Fibreboard;5516;Production;m3;566200;602600;633700;715100;725500;1114800;1099600;1106300;1174400;1188000;1203800;1271400;1284000;1221400;1013100;1146000;1106000;1168000;1139000;1083400;1014900;904000;952000;954000;938000;945000;966000;1088000;1199000;1284000;1129000;1276000;1422000;1647000;1635400;1747000;2782000;3626021;4218000;4829000;5216000;6903000;7476000;8223000;8770000;9455200;9679606;8124950;7087855;7611839;7894432;8101743;7978462;7757350;7519115;7827925;8221120;8023134;7818864;7935684;8705445;7432394;6407388 -5404;'155;Western Europe;1874;Fibreboard;5616;Import quantity;m3;265800;296000;334600;388500;374600;625344;659836;654380;708432;729358;720384;778154;731938;665766;535959;622826;607600;574000;635300;746100;696300;671600;695500;715500;743600;825000;896700;930500;967400;1042500;996500;936998;851945;1098960;1215400;1376600;1732300;2221600;2241400;3153605;2920649;3160724;3322954;3440559;3584521;3334741;3900953;2999807;3353471;3730729;3618019;3909293;3977989;3763538;3909252;4017326;4285809;4557793;4756843;5061086;5331598;4459320;3921374 -5404;'155;Western Europe;1874;Fibreboard;5622;Import value;1000 USD;25669;28877;33568;40314;40550;40535;41067;41308;47581;51840;57645;65923;82875;95568;76857;90664;93535;98384;128275;174922;136749;131048;121839;113374;116994;171358;212794;231520;245266;303251;306974;328577;267053;384766;492613;524140;520029;645078;581146;679746;679147;809248;1010498;1167590;1267991;1387575;1820731;1587097;1519911;1661525;1827144;1654961;1682772;1720559;1476295;1516133;1627551.81;1722138;1628056;1765378;2218282;2123410;2168291 -5404;'155;Western Europe;1874;Fibreboard;5916;Export quantity;m3;113700;126400;138000;142800;153800;255377;292618;308364;315316;305421;338143;339624;402076;378690;290840;416259;374954;350045;372300;327100;316600;306600;323400;315800;330000;349800;381800;480500;513600;578600;694000;647743;629226;867579;1011200;1328000;1958000;2525600;2719900;4095151;4487322;5623173;6001846;6394126;6923313;6391127;8118136;4852673;5775011;6244808;5779094;6132253;6339856;6332536;6621499;6612950;6725349;6492008;6366229;6535099;6800493;5609603;5053925 -5404;'155;Western Europe;1874;Fibreboard;5922;Export value;1000 USD;12889;14027;16048;18189;18453;18034;19181;20777;23599;25312;27670;33728;43758;53957;45618;57146;62787;69022;84519;100518;85172;80228;79572;74919;68218;92626;130132;153295;183391;206380;226220;276454;265070;361350;441538;591420;766736;1042707;1114320;1342130;1529691;1986475;2408840;2808088;2971147;3199966;4500812;3716697;3424068;3571332;3750491;3513972;3659982;3774774;3346980;3432525;3613967.35;3676559;3351560;3448287;4113792;3779110;3461684 -5404;'155;Western Europe;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;221800;207000;234000;256008;245000;255000;243000;356000;255000;255000;260000;577100;292100;270681;265899;273996;265747;265747;202000;203000;200679;196300;177329;176829;177324;152230;296000;275000;85000 -5404;'155;Western Europe;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;478500;543200;539500;824400;673900;985480;956002;995392;1107728;1105309;1253954;985303;757535;660926;766569;860891;893610;954952;878697;882138;1013138;1039635;1108149;1213125;1082062;1032728;1136170;969398;825704 -5404;'155;Western Europe;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;257707;285616;258901;348592;325563;361008;356553;434959;562296;630388;714856;702727;706376;515151;535757;610395;689618;561656;525381;535981;461423;471439;533135.55;533695;443412;431000;564051;605299;542447 -5404;'155;Western Europe;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;149618;211542;261259;351806;315865;514525;639053;703541;790216;730545;505282;965415;409030;453362;381873;430466;421272;736698;638026;744032;649609;573932;421066;540963;595624;634882;658221;716992;626981 -5404;'155;Western Europe;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103341;161390;201086;239971;208403;322974;431848;492673;626981;614983;459279;805956;772021;397332;451154;454363;484541;428599;369770;401180;325474;275932;199040.59;242012;234570;265670;305256;581006;568297 -5404;'155;Western Europe;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1178000;1243000;2244000;3035913;3588000;4128000;4511000;6072000;6781000;7545000;8076000;8440100;8579400;7308984;5463372;5696441;5888138;6072872;5943173;5747570;6221628;6529325;6737567;6468001;6437730;6490591;6905979;5663905;5025146 -5404;'155;Western Europe;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;497700;589000;860600;1065100;1199300;1615523;1408434;1647302;1634370;1811981;1867190;1850141;2391447;1870104;1995525;2215592;2090133;1929029;1964271;1950884;1985330;1986154;2038668;2129730;2236969;2278464;2344642;1867615;1686836 -5404;'155;Western Europe;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;173151;176616;204679;235166;195553;251561;259117;312048;363629;432095;446555;562841;923237;904955;790412;837092;918617;862594;891373;954610;826502;857126;884760.7;970868;960663;1049298;1309221;1190220;1324112 -5404;'155;Western Europe;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;621182;882758;1376541;1840794;2165635;3061210;3300783;4261419;4584972;5150097;5961017;5156542;7213463;4266328;5021918;5397553;4945673;4722635;4868928;4802316;5170317;5338472;5665821;5453303;5139603;4852683;5231661;4049350;3657651 -5404;'155;Western Europe;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;265470;349797;483053;702264;852963;949336;1026299;1412952;1691907;2092111;2400870;2294002;3593158;3262096;2847756;2996433;3123880;2941863;3048500;3132230;2872310;3047870;3323346.56;3353336;3027626;3033981;3682150;3068333;2757721 -5404;'155;Western Europe;1650;Other fibreboard;5516;Production;m3;109900;110500;114900;129800;123200;472600;448800;423600;429600;415200;393200;420400;371000;335200;257400;276000;253000;233000;242000;243000;246000;194000;191000;213000;197000;208000;219000;236000;248000;254000;267000;265000;299000;236000;235600;297000;304000;334100;385000;446000;462000;475000;440000;423000;434000;438000;808106;545285;1358584;1641402;1740547;1763124;1833289;1806780;1096808;1102300;1306224;1378304;1203810;1292863;1503466;1493489;1297242 -5404;'155;Western Europe;1650;Other fibreboard;5616;Import quantity;m3;62200;68400;74800;75900;75800;298500;314000;298800;293200;320000;307600;348000;278000;254800;201200;208300;195800;192800;206400;287200;300800;262500;303700;312600;320300;335000;374100;318500;364600;386100;324300;174938;176176;217679;239200;244400;332200;332100;368200;552602;556213;518030;580856;523269;463377;499297;751971;468777;591377;654246;634276;1025312;1135021;930516;910784;991537;1138992;1214938;1437812;1749894;1850786;1622307;1408834 -5404;'155;Western Europe;1650;Other fibreboard;5622;Import value;1000 USD;6630;7244;8262;9074;9892;9601;10146;9700;9880;11218;13053;17180;16279;19505;15770;15735;14848;17261;23077;34007;30587;25233;28386;27371;26951;40159;52402;43999;63121;74380;53437;51547;41869;54758;61755;61908;56449;61320;60030;67177;63477;62241;84573;105107;106580;122007;191118;166991;193742;214038;218909;230711;266018;229968;188370;187568;209655.56;217575;223981;285080;345010;327891;301732 -5404;'155;Western Europe;1650;Other fibreboard;5916;Export quantity;m3;27000;26800;31000;30100;28900;128000;146400;146800;139600;113200;157600;154000;212400;196400;131600;224400;162400;158800;200300;157000;161500;146600;149000;138900;159400;155700;185700;227100;248400;304200;252700;192868;139768;207472;240400;233700;320200;333000;238400;519416;547486;658213;626658;513484;457014;269170;495643;132983;371220;416789;412149;672920;832902;786188;801573;700546;638462;497742;631002;1047534;910611;843261;769293 -5404;'155;Western Europe;1650;Other fibreboard;5922;Export value;1000 USD;3336;3273;3483;3635;3633;3765;4055;3970;3974;3568;4994;5603;9884;11387;7992;13648;13451;15645;26724;29488;25621;21876;22443;20913;20216;28413;48164;48024;64306;84929;53562;59853;54884;64147;72727;80233;82597;100472;52954;69820;71544;80850;89952;100994;110998;100008;135633;57269;125158;120536;142070;143510;241712;241364;149196;108723;91580.2;81211;89364;148636;126386;129771;135666 -5404;'155;Western Europe;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;456300;492100;518800;585300;602300;642200;650800;682700;744800;772800;810600;851000;913000;886200;755700;870000;853000;935000;897000;840400;768900;710000;761000;741000;741000;737000;747000;852000;951000;1030000;862000;1011000;1123000;1411000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5404;'155;Western Europe;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;203600;227600;259800;312600;298800;326844;345836;355580;415232;409358;412784;430154;453938;410966;334759;414526;411800;381200;428900;458900;395500;409100;391800;402900;423300;490000;522600;612000;602800;656400;672200;762060;675769;881281;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5404;'155;Western Europe;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;19039;21633;25306;31240;30658;30934;30921;31608;37701;40622;44592;48743;66596;76063;61087;74929;78687;81123;105198;140915;106162;105815;93453;86003;90043;131199;160392;187521;182145;228871;253537;277030;225184;330008;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5404;'155;Western Europe;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;86700;99600;107000;112700;124900;127377;146218;161564;175716;192221;180543;185624;189676;182290;159240;191859;212554;191245;172000;170100;155100;160000;174400;176900;170600;194100;196100;253400;265200;274400;441300;454875;489458;660107;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5404;'155;Western Europe;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;9553;10754;12565;14554;14820;14269;15126;16807;19625;21744;22676;28125;33874;42570;37626;43498;49336;53377;57795;71030;59551;58352;57129;54006;48002;64213;81968;105271;119085;121451;172658;216601;210186;297203;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5404;'155;Western Europe;1879;Total fibre furnish;5510;Production;t;7413600;7445100;7755500;7934800;8275300;8572500;8807300;9310300;10110800;10839700;10675800;11204500;11834700;12599000;10785000;12227000;12766000;12921000;13587500;13599000;14045000;14022000;14633000;15985000;16233000;16841500;17884000;19016000;20053000;19739000;20747000;21721000;21754500;25441000;26144000;25891000;25928000;27669900;28641500;30381750;30497920;31194445;32189000;33793434;35534000;35439367;35917058;34878986;33036565;34200161;33552923;35515934;35239968;35004069;35012564;35122843;35372275;36957824;37234468;36549639;34820310;32813766;30926535 -5404;'155;Western Europe;1879;Total fibre furnish;5610;Import quantity;t;182000;169500;200100;259000;229600;289900;234000;3331400;3819800;4883600;4282900;5055500;5812700;6411072;4810639;5762200;5695680;6305641;6806011;7173421;6983881;6786963;7457100;7959700;8153800;8497800;8932000;9692500;10204600;10460100;10926400;11694206;10657096;11963000;12275100;12301800;12855900;13131367;13970000;15834904;15407773;15907429;16721871;17973881;18867143;20269430;20479752;20663204;18880722;21653405;20671403;21279062;19723160;19021546;19144824;20090546;21211278;21338687;20527348;18830819;20402875;19720529;18200562 -5404;'155;Western Europe;1879;Total fibre furnish;5622;Import value;1000 USD;15218;13990;17198;25546;24487;29999;24213;431097;530265;712197;671844;773782;1004423;1779823;1664955;1909753;1928532;1732416;2347692;3007772;2980931;2624298;2441095;2817374;2618157;3055778;4046131;4934378;5851211;5747277;5266045;4629929;3311776;4694633;7128541;4982228;4541902;4602749;4620638;6469617;5007005;4921765;5519040;6384296;6653408;7494852;9194890;9765594;6326799;10661860;10335018;9532094;8602382;8182593;7479287;7162480;7850453.56;9089930;7372352;5934203;8452504;9645100;7608451 -5404;'155;Western Europe;1879;Total fibre furnish;5910;Export quantity;t;11400;11000;9900;36400;21600;15600;16100;459400;486500;1293300;1048500;1316300;1683000;1788752;1343219;1927508;1936901;2082556;2405826;2357739;2458329;2502246;2595400;3174200;3335200;3345600;3665800;4174800;4207000;4416500;5248000;5615736;5489457;6243784;7836200;7606500;8110100;8986680;10740960;11201308;11393517;11128115;11645546;12982181;13887497;15153912;16350744;16554317;18134677;17517109;17295490;17436719;14548985;13748222;13805493;14439026;14857353;14004307;13177838;11333617;11785383;11871291;13014367 -5404;'155;Western Europe;1879;Total fibre furnish;5922;Export value;1000 USD;878;894;812;4973;2990;2222;2367;59122;69667;128036;100401;128389;203778;360328;229099;327775;316540;322166;515805;608850;500749;465232;449339;563899;576426;674547;869882;1039165;1099005;1058934;1015378;1146762;742914;1200244;1988364;1338505;1297633;1282324;1493010;2420730;1740958;1826941;2121253;2492166;2761547;3367142;4479315;4888650;4020189;5978409;5874916;5654618;4263677;4098857;3614553;3803343;4279428.54;4353920;3497724;2763127;4286001;4910746;4409460 -5404;'155;Western Europe;1878;Pulp for paper;5510;Production;t;4693600;4609100;4678500;4512800;4753300;4855500;4912300;5009300;5319800;5534700;5371800;5502500;5615700;5786000;4926000;5265000;5627000;5588000;5761500;5805000;5731000;5677000;5851000;6333000;6014000;6328500;6503000;6816000;7245000;7221000;7280000;7324000;6638500;7011000;7063000;6528000;7096000;6904900;6636500;7188750;6913760;6997486;7269000;7514434;7858000;7826000;7874335;7579130;6657028;6967417;6955800;6805865;6477281;6389632;6290167;6493978;6369797;6430221;6453125;6296584;6234740;5929196;5065665 -5404;'155;Western Europe;1878;Pulp for paper;5610;Import quantity;t;182000;169500;200100;259000;229600;289900;234000;3331400;3819800;4192600;3661900;4253500;4834700;5176200;3966100;4608900;4601400;5170600;5406400;5660500;5511200;5248000;5817300;5921100;6045900;6420000;6678700;6861600;7147200;7196000;7389200;7832130;7441339;8157100;7781300;7977900;8624300;8697000;8698000;9224167;8970317;9463667;9340360;10045348;10338300;10863526;10614808;10700689;8698872;10966018;9543602;10833979;9763548;9347113;9160403;9696117;9964645;10054294;9010114;8590656;9079221;8599702;8062534 -5404;'155;Western Europe;1878;Pulp for paper;5622;Import value;1000 USD;15218;13990;17198;25546;24487;29999;24213;431097;530265;669943;637261;728534;929532;1594287;1577639;1791761;1819590;1625658;2172402;2776511;2816007;2460967;2283093;2600106;2396119;2833231;3771301;4544519;5352663;5307957;4857456;4262147;3093310;4267171;6306083;4496463;4254761;4305174;4251591;5743132;4509013;4284139;4684231;5454409;5698918;6409332;7627208;8036030;5124848;8693016;7762469;7667564;6887012;6473542;5931217;5490989;5926612.73;7309644;5802204;4696274;6033581;7108952;6094691 -5404;'155;Western Europe;1878;Pulp for paper;5910;Export quantity;t;11400;11000;9900;36400;21600;15600;16100;459400;486500;482300;368500;464300;632000;525500;351800;556500;529452;591500;696500;674600;651100;639200;731300;790200;885400;983300;1026600;1077900;990800;969600;1034500;1216989;1087328;1241684;1342800;1503200;1721000;1747425;2049960;2285674;2322585;2278755;2222266;2429625;2827911;3414653;3768936;3617696;4236178;4853388;3843166;5016212;3414528;3320602;3085198;3674948;3811996;3520981;3503944;2972612;3484956;3747471;4247488 -5404;'155;Western Europe;1878;Pulp for paper;5922;Export value;1000 USD;878;894;812;4973;2990;2222;2367;59122;69667;81530;67438;84051;126116;177453;143546;205933;192128;195817;303599;353595;319679;296083;282611;326586;331059;452684;593680;646121;730935;665003;626406;687471;475079;665309;1061858;818703;904014;877058;985515;1437983;1127161;1045651;1150614;1361094;1574249;2064355;2522878;2646529;2404559;3632352;2886046;3502579;2383541;2347829;2010099;2102159;2316197.5;2696704;2259497;1786868;2569225;3184915;3135441 -5404;'155;Western Europe;1875;Wood pulp;5510;Production;t;4459700;4425900;4554800;4433800;4598200;4737000;4848500;5024300;5419700;5588600;5517800;5694200;5839400;6024000;5262000;5696000;6105000;6072000;6249500;6279000;6224000;6066000;6240000;6732000;6403000;6700000;6878000;7198000;7623000;7572000;7630000;7427000;6759000;7142000;7205000;6672000;7227000;7083900;6810000;7368000;7107010;7203299;7595000;7861354;8205000;8214000;8255336;7927941;6953865;7253553;7247801;7147122;6953523;6874222;6748328;6963155;6845415;6808802;6855759;6681541;6585813;6332831;5481738 -5404;'155;Western Europe;1875;Wood pulp;5610;Import quantity;t;459900;447600;557800;599000;575700;597000;535300;3647000;4133400;4496200;3940800;4510100;5117600;5463400;4196200;4912707;4863294;5386500;5614600;5870400;5716400;5462600;6040200;6129400;6305100;6683600;6956600;7085500;7373000;7399700;7581500;8039049;7636943;8383100;8030200;8222700;8875400;8989100;8954500;9514644;9303874;9837426;9777208;10350295;10633868;11193324;10992290;11085139;9024040;11341583;9976526;11291920;10293903;10005730;9707319;10214146;10489743;10550578;9466207;9013759;9574008;9075082;8446744 -5404;'155;Western Europe;1875;Wood pulp;5622;Import value;1000 USD;59632;58101;72674;80524;80613;80945;69041;487833;588819;735149;700199;784824;995414;1686476;1665066;1908950;1938514;1728565;2276497;2903985;2938133;2599490;2404110;2703920;2539816;2984284;3946705;4714059;5553564;5498054;5028018;4415567;3227747;4416490;6490889;4683305;4419441;4485493;4404592;5928144;4693420;4494263;4962489;5665306;5904116;6623479;7932365;8410721;5384890;9133602;8394599;8249382;7498537;7156035;6437855;5952523;6395464.88;7754222;6173169;5021208;6453718;7516968;6453086 -5404;'155;Western Europe;1875;Wood pulp;5910;Export quantity;t;46000;52600;49700;43000;37500;36200;25800;463900;495900;485300;375300;477200;650700;541700;354700;587000;558252;625700;751000;722200;687500;668200;755200;838900;911100;1020600;1080700;1129900;1028500;1020200;1054900;1207436;1088266;1273384;1371900;1510900;1780800;1750239;2033630;2333555;2431982;2375483;2386942;2569601;2859308;3467936;3889906;3790590;4316076;4914818;3959563;5169784;3798166;3678619;3399050;3947730;4102181;3818156;3815069;3224437;3704396;4042322;4443097 -5404;'155;Western Europe;1875;Wood pulp;5922;Export value;1000 USD;6008;6579;6359;6079;5552;5130;3502;59568;71224;82235;68634;86058;130680;183877;144724;219631;207244;208765;328971;381230;339823;312134;292292;348188;345634;473099;627800;683665;755933;702293;639528;669540;460065;670813;1072495;810459;922765;895500;1001392;1461401;1173184;1079238;1211584;1434010;1617766;2105914;2638954;2834326;2450448;3711827;3017491;3782320;2816572;2702606;2300427;2373567;2615699.68;2996461;2556668;1996833;2782046;3463104;3346871 -5404;'155;Western Europe;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1390907;1374734;1398230;1308868;1200940;1044715;655867 -5404;'155;Western Europe;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;435008;516865;532424;492897;476372;430597;286292 -5404;'155;Western Europe;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;223824.84;303341;302604;253011;271386;299671;206638 -5404;'155;Western Europe;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;216273;175986;176579;101890;255320;235408;261132 -5404;'155;Western Europe;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104377.68;96138;93420;47732;128372;161166;147717 -5404;'155;Western Europe;1654;Mechanical wood pulp (1961-2016);5510;Production;t;1867800;1864900;1868100;1897300;1929800;2026000;2011000;2069700;2255800;2339200;2282300;2294300;2309200;2355000;1977000;2194000;2290000;2350000;2435000;2487000;2531000;2437000;2483000;2737000;2634000;2608000;2720000;2941000;3261000;3336000;3325000;3297000;2984000;2966000;3082000;2637000;2860000;2758600;2748000;2834000;2673310;2680090;2814000;2957056;2976000;2873000;2864242;2756531;2475683;2614574;2487926;2217358;1896340;1800910;1587831;1501678;;;;;;; -5404;'155;Western Europe;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;172500;160800;171700;184000;153800;200000;157500;190700;218100;241600;215700;265600;321900;387300;218200;247100;227500;258200;261500;232900;201200;170900;186700;203600;206500;184200;181100;170300;185600;191700;193100;193291;161545;217100;185400;136900;141900;116200;145000;137607;175305;206946;164143;148559;174578;209859;187563;191444;151917;222362;187713;218740;191425;149737;194551;174616;;;;;;; -5404;'155;Western Europe;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;14232;13112;13964;15125;13617;17143;13614;16594;18684;23389;21420;25695;36996;74997;58260;63373;60764;57787;70353;74617;70205;56569;51755;59381;62168;64621;73208;74244;86263;97093;87848;81780;58756;87472;105930;57631;53188;46875;57890;60153;64862;74055;66280;62184;69522;87854;106243;98561;71456;125138;111656;110007;103041;78534;92803;75843;;;;;;; -5404;'155;Western Europe;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;11400;11000;9900;7200;5000;4600;3300;2600;2400;1800;1500;2200;1600;2400;1700;1400;2100;2000;1200;1900;4900;3700;1100;1200;1400;900;800;1300;700;7300;11200;11820;11345;11500;24100;20300;20500;41700;35330;68330;56768;83312;36657;41677;46572;60337;95435;120280;63504;72114;42166;163330;83657;56327;107805;109128;;;;;;; -5404;'155;Western Europe;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;878;894;812;594;413;382;241;172;207;171;139;222;168;377;277;230;494;433;347;740;1626;1193;350;351;352;423;457;586;359;3670;5284;4275;2880;1852;3160;3754;4140;10279;7602;39708;19885;28401;15993;19105;22104;30359;49929;79560;32689;42845;25442;59540;46911;29791;51400;49379;;;;;;; -5404;'155;Western Europe;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;90600;91600;97400;101700;127700;142300;165700;187200;211400;221500;268700;285800;279000;338000;292000;343000;376000;341000;322000;304000;246000;231000;241000;241000;245000;263000;260000;249000;243000;237000;229000;226000;152000;158000;110000;100000;117000;120100;131000;113000;133000;133000;133000;133000;133000;133000;133007;132079;95825;100311;103088;0;0;0;0;0;;;;;;; -5404;'155;Western Europe;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;9500;8700;27400;29200;31300;42200;39000;46800;54700;65000;58400;52900;55800;70500;45700;39200;44300;38000;48800;54200;40000;30500;23800;39100;33800;44300;35700;34800;48000;54400;74800;108433;91787;124700;149200;162200;222800;246400;280000;319314;330859;299121;261343;236629;317023;423141;445955;375077;245847;205179;189945;236855;249929;218397;156301;167236;;;;;;; -5404;'155;Western Europe;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;986;878;2617;2749;3007;3660;3307;3579;4267;5449;5336;5017;6797;13731;11436;8923;6875;7856;11943;13482;13700;9558;6211;13875;9612;14246;15299;16359;25456;30686;38223;47965;33431;54096;99743;71868;90762;100052;127388;180376;133833;114742;115901;116273;153768;209425;266209;246173;135555;146677;133048;140296;156897;131263;103376;106061;;;;;;; -5404;'155;Western Europe;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1644;720;5084;5200;7300;6000;4025;12360;61105;87606;53726;19957;17046;12196;56514;83495;54252;42905;47535;44413;55386;49553;68858;34146;67182;;;;;;; -5404;'155;Western Europe;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;664;313;2488;2563;3306;2614;1792;4904;37230;39218;22462;9507;8948;5775;42497;53261;35471;23821;33847;27442;34129;31774;40346;18559;31607;;;;;;; -5404;'155;Western Europe;1656;Chemical wood pulp;5510;Production;t;1980100;1924100;2015000;1832800;1965000;2014300;2133000;2174800;2330900;2450300;2431800;2575500;2683500;2757000;2520000;2620000;2883000;2829000;2938500;2948000;2887000;2942000;3064000;3287000;3066000;3388000;3453000;3556000;3670000;3577000;3654000;3729000;3453000;3837000;3821000;3740000;4071000;4024200;3755000;4241000;4106700;4183646;4283000;4381378;4690000;4764000;4763080;4575309;4001384;4166333;4274639;4501965;4498100;4505932;4619546;4909510;4896100;4888313;4905924;4841506;4890983;4759988;4283632 -5404;'155;Western Europe;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;3047500;3500400;3840500;3351400;3890700;4412300;4670800;3666500;4283400;4305200;4841200;5043600;5331800;5231800;5008500;5576800;5643200;5771500;6163800;6430900;6622400;6856600;6897100;7071000;7474533;7126284;7772800;7395900;7612600;8173800;8258400;8194000;8686784;8384970;8872712;8828169;9540103;9745430;10082467;9873092;10018242;8111653;10368810;9026530;10236061;9221109;8840521;8722715;9283455;9461760;9456613;8392110;8006354;8508285;8064778;7680354 -5404;'155;Western Europe;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;402079;498044;631556;601693;687747;871649;1480300;1486736;1701108;1739134;1543545;2058987;2660382;2706774;2370424;2203425;2500526;2295716;2728278;3653967;4422166;5194593;5131192;4683872;4071372;2940507;4076579;6040170;4288578;4022421;4071973;3981213;5412784;4203047;3989620;4397969;5131422;5340132;5913138;7051194;7489741;4680115;8182968;7284742;7234146;6464282;6063191;5614336;5202454;5586731.89;6862710;5342760;4283659;5597584;6607037;5705265 -5404;'155;Western Europe;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;441700;468700;466200;351600;447400;614600;507400;339800;549800;526152;586500;692100;670000;643300;632900;725400;783100;875200;976000;1018400;1069100;969900;959800;1020600;1171185;1049782;1208700;1298900;1456800;1664100;1648200;1926920;2102524;2117388;2064430;2090795;2279415;2652909;3162949;3460984;3299649;4001929;4618227;3666032;4713461;3208603;3096886;2879792;3447320;3544551;3313109;3307027;2840277;3199846;3488134;3964594 -5404;'155;Western Europe;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;56479;67004;78561;63726;80080;121511;170977;138676;203726;190582;192320;299289;349635;314590;292025;276904;320868;326996;448810;589483;641744;710117;658279;617983;648901;444416;648058;1040806;790300;872077;836456;938688;1325381;1034521;954557;1078774;1270789;1465380;1878640;2277627;2389989;2227356;3445644;2761274;3353601;2233654;2162257;1890413;1984620;2170032.12;2560807;2132953;1683894;2385109;2976950;2935596 -5404;'155;Western Europe;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;613200;408600;432500;460800;471100;505400;529000;524400;579100;617300;664000;663000;644000;696000;712000;734000;682000;741000;704000;733000;791000;710000;805000;828000;818000;843000;826000;827000;866000;819000;901000;896000;857000;912000;872700;870000;933000;892740;924000;887360;929941;934800;927200;903743;899197;772127;819980;811052;861191;894216;949623;1034928;1060691;1049586;1049655;1051641;2215602;2212731;2153874;1806364 -5404;'155;Western Europe;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;408700;447800;422900;309800;352900;430300;450600;287400;314600;289300;311700;298100;321000;220900;196000;150500;137500;116300;123100;121700;152000;156600;155100;144600;166249;141265;130300;118100;89700;139400;141400;143000;132267;125964;161042;165055;137314;143657;197274;195792;193713;165222;161053;154188;182758;236777;174361;145489;158160;167222;196996;162165;141454;204822;2529469;533508 -5404;'155;Western Europe;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;48693;55455;59082;47817;58309;74435;128955;113213;114848;103460;82794;115525;140928;98855;79948;51020;54926;46149;54389;62346;83583;96435;97173;114404;88439;60570;60933;69781;56739;65070;59598;57722;67229;55460;63323;73154;66591;71883;103031;167636;130267;89706;110145;116419;121177;161643;122757;87174;88172;97766.19;137117;103869;81203;141344;1959259;341537 -5404;'155;Western Europe;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;27000;27400;25100;24500;26400;19000;12800;21500;22600;21400;44300;64900;55000;51800;44100;41900;40800;37100;35800;39200;34100;35800;30100;30300;34559;23798;31300;33200;46100;46600;48000;68000;55000;48177;63664;50724;65958;69065;51803;67257;72108;60285;71507;65429;55752;79708;64799;56796;70260;59201;64558;70408;67400;105204;152803;113004 -5404;'155;Western Europe;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;2913;3160;3605;3742;3802;3469;3808;7231;7584;6240;11545;24161;24430;20253;15338;11790;13532;12033;13010;17101;15019;18835;13972;14114;16564;9147;13733;16029;23811;22320;22504;28081;28348;24111;29365;25702;35198;36642;30579;48090;49941;34305;47870;49732;45969;58431;44557;35345;40758;36705.39;48744;47439;38071;71467;100009;60568 -5404;'155;Western Europe;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;26700;345200;349600;379800;402100;441400;448200;512600;637500;672300;698000;596000;640000;775000;747000;731000;678000;699000;781000;837000;941000;929000;1068000;1137000;1206000;1260000;1250000;1214000;1323000;1182000;1401000;1415000;1408000;1538000;1544700;1606000;1945000;1935360;1953000;2068320;2128059;2272850;2295400;2274438;2345713;2172884;2183394;2260071;2492543;2584087;2538859;2799189;2954448;2945414;2948633;3084918;1856532;1881904;1828956;1810318 -5404;'155;Western Europe;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;1741100;2144900;2452900;2221400;2599300;2945400;3129500;2575000;3065500;3045600;3629300;3876900;4133000;4199400;4039100;4617500;4714600;4775500;5144900;5420200;5501700;5784700;5795700;5943100;6535679;6303384;7025500;6749100;6942500;7588900;7656900;7526000;8053770;7704790;8181856;8173247;8960930;9140265;9488686;9350677;9492021;7653753;9867118;8588654;9785931;8694761;8486222;8414614;8971297;9147499;9110082;8095401;7733931;8179885;5412929;7061346 -5404;'155;Western Europe;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;230456;308623;406490;400854;461265;586589;982422;1041393;1217366;1261206;1167083;1581003;2071438;2188859;1921496;1831169;2095346;1901470;2259336;3085369;3691879;4374950;4280466;3947860;3542088;2581773;3696146;5611207;3966209;3739721;3814045;3705441;5025690;3866119;3666976;4059133;4801959;4985470;5526322;6609120;7058303;4382589;7788191;6886598;6843610;6016702;5757355;5374427;4971317;5343193.92;6557815;5093030;4058677;5306155;4482469;5245769 -5404;'155;Western Europe;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;145000;161900;171700;149900;220300;343900;241400;108400;228000;227900;252800;261200;236300;205300;227700;286400;312200;468200;530100;593900;613600;560800;603600;573200;690708;602465;669500;765200;844200;1019000;1051000;1339000;1667552;1678244;1590427;1636369;1805460;2165730;2734053;3089123;3005124;3745456;4303208;3350211;4529100;3009442;2940469;2735597;3270823;3390514;3152071;3142041;2655095;2972504;3213251;3714735 -5404;'155;Western Europe;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;17844;22582;27054;26816;39950;65056;74145;45078;82168;77431;77564;106010;115897;97463;103170;101346;121539;163288;231310;332748;338799;395591;388783;309693;355090;228081;337772;599473;455376;545677;538061;663299;1024296;792524;694883;807418;957893;1145316;1586716;1978959;2121742;2025356;3169924;2464086;3130016;2021222;1983735;1747196;1817790;2015229.85;2377827;1956058;1505643;2153793;2706962;2692322 -5404;'155;Western Europe;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;901100;890025;769365;769372;796348;777158;666950 -5404;'155;Western Europe;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;147039;149535;134544;130969;123578;122380;85500 -5404;'155;Western Europe;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;145771.78;167778;145861;143779;150085;165309;117959 -5404;'155;Western Europe;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94836;96480;94578;117782;122138;122080;136855 -5404;'155;Western Europe;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118096.88;134236;129456;140180;159849;169979;182706 -5404;'155;Western Europe;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;148300;476000;371500;359900;327200;339000;314000;290200;265300;249900;145000;121000;123000;121000;106000;58000;67100;59000;56000;76000;71000;45000;70000;80000;76000;76000;70000;69000;69000;71000;63000;59000;60000;56000;47000;0;0;38500;36794;37200;3000;2000;1000;2000;1000;33603;26043;34496;0;0;0;0;0;;;;;;; -5404;'155;Western Europe;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;210100;187500;189900;159300;190900;233300;258900;160300;154100;139300;120900;124300;117700;102400;88600;73100;58200;74500;52200;40300;57600;58600;48700;38000;45103;33460;19700;29500;26000;15800;18400;11000;16085;68399;24666;28590;34363;32639;3835;4404;7404;2610;5127;4527;16171;17678;11603;15256;7687;;;;;;; -5404;'155;Western Europe;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;26898;24417;27969;25211;32456;40265;75858;62913;57697;43463;34814;47961;55845;48586;38106;26757;23567;26921;22855;19902;30305;39330;30915;21792;22599;11587;8929;18306;9972;6690;6218;5134;9497;27368;10225;13779;17116;16360;1862;13207;15606;3757;5979;3425;8398;10719;6632;12260;3351;;;;;;; -5404;'155;Western Europe;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;29200;22300;25700;21700;14700;14300;8600;4500;9400;8452;8200;11500;16100;12700;9300;6100;6000;6900;9100;7100;7600;6600;7200;7400;12195;5488;7400;7100;3500;4100;3100;2920;800;4227;2364;2546;1692;1633;2437;2764;2022;253;634;110;110;14109;6323;6901;3943;;;;;;; -5404;'155;Western Europe;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;3205;2515;3518;3310;2100;2597;2280;1376;1892;2582;2073;3775;3386;3306;3460;2443;1279;1946;3187;3128;3517;2519;2943;2792;5490;2253;4927;5931;2203;1465;1510;1455;1195;2215;1695;1844;1656;1263;1915;2348;2356;596;916;318;892;10486;4735;4303;2349;;;;;;; -5404;'155;Western Europe;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;1044600;735200;860700;932500;974400;1045100;1159100;1104600;1093600;1144000;1250000;1140000;1213000;1291000;1264000;1415500;1520900;1388000;1401000;1418000;1484000;1382000;1445000;1408000;1456000;1491000;1431000;1544000;1471000;1381000;1472000;1451000;1415000;1565000;1559800;1279000;1363000;1240100;1269852;1290120;1320378;1480350;1540400;1582899;1329399;1022770;1136916;1169020;1148231;1019797;1017450;785429;894371;;;;;;; -5404;'155;Western Europe;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;687600;720200;774800;660900;747600;803300;831800;643800;749200;831000;779300;744300;760100;709100;684800;735700;732900;805200;843600;848700;911100;856700;897600;945300;727502;648175;597300;499200;554400;429700;441700;514000;484662;485817;505148;461277;407496;428869;392672;322219;325104;290068;335512;279161;251201;271893;168335;147356;146311;;;;;;; -5404;'155;Western Europe;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;96032;109549;138015;127811;135717;170360;293065;269217;311197;331005;258854;314498;392171;370474;330874;294479;326687;321176;391698;486350;616399;683878;722638;599816;418246;286577;310571;340876;255658;210940;192112;212916;310368;254100;249096;251903;245756;266419;281923;261231;285565;204063;278653;278300;260961;275218;176447;140475;139614;;;;;;; -5404;'155;Western Europe;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;240500;257100;243700;155500;186000;237400;244600;205400;289800;268400;281200;354500;362600;373500;351800;391000;424100;363000;401000;378200;413800;366700;318900;409700;433723;418031;500500;493400;563000;594400;546100;517000;379172;386740;407975;401156;406305;416481;374656;301840;220395;195935;242878;250282;128499;105344;85295;80498;102294;;;;;;; -5404;'155;Western Europe;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;32517;38747;44384;29858;34228;50389;90744;84991;112082;104329;101138;165343;205922;193568;170057;161325;184518;149729;201303;236506;284409;293172;252581;291384;271757;204935;291626;419373;308910;302615;274381;245853;271542;215671;228614;243810;276042;282159;259430;248230;215950;167099;226934;247138;176724;143515;129230;103569;123723;;;;;;; -5404;'155;Western Europe;1667;Dissolving wood pulp;5510;Production;t;521200;545300;574300;602000;575700;554400;538800;592600;621600;577600;535000;538600;567700;574000;473000;539000;556000;552000;554000;540000;560000;456000;452000;467000;458000;441000;445000;452000;449000;422000;422000;175000;170000;181000;192000;195000;179000;181000;176000;180000;194000;206563;365000;389920;406000;444000;495007;464022;380973;372335;382148;427799;559083;567380;540951;551967;558408;545755;551605;531167;493890;528128;542239 -5404;'155;Western Europe;1667;Dissolving wood pulp;5610;Import quantity;t;277900;278100;358700;385800;390600;354800;338800;362000;360200;349100;315300;300900;327600;334800;265800;343007;286294;249100;260700;251500;243400;252700;252900;243500;293300;291300;308900;258000;282800;256500;242600;262792;257327;268500;299700;311000;336900;368100;335500;370939;412740;458647;523553;425004;396837;477857;485680;500376;514623;545232;572338;600264;631440;797075;633752;588839;592975;577100;541673;514508;589351;579707;480098 -5404;'155;Western Europe;1667;Dissolving wood pulp;5622;Import value;1000 USD;44414;44111;56093;62650;63989;60142;52120;65581;67824;74755;71750;66365;79972;117448;108634;135546;131741;119377;135214;155504;147454;162939;142719;130138;172320;177139;204231;201290;247252;239083;218075;214450;195053;198343;245046;265228;253070;266593;238101;274831;291678;315846;382339;355427;340694;413062;508719;576246;497764;678819;865153;764933;774317;883047;627340;568165;584908.15;588171;527805;484538;584748;610260;541183 -5404;'155;Western Europe;1667;Dissolving wood pulp;5910;Export quantity;t;34600;41600;39800;35800;32500;31600;22500;19600;24800;17300;22200;27600;34500;31900;13200;35800;30000;37200;57700;50300;39300;31600;28700;54600;34500;43700;61500;59500;57900;53100;23100;22787;26419;48100;43700;26500;90200;56314;59020;101596;170220;174015;239533;231463;147631;188136;249992;316409;207738;176942;206952;237607;456353;456548;377307;324100;341357;329061;331463;282270;249230;318780;217371 -5404;'155;Western Europe;1667;Dissolving wood pulp;5922;Export value;1000 USD;5130;5685;5547;5485;5139;4748;3261;2917;4013;3503;4769;5756;9001;12523;5771;15675;16168;16012;29335;30855;23607;18916;15038;26969;18286;23866;37860;41335;45457;40344;16261;15700;12456;18415;25966;13099;43934;46973;50198;59082;79560;73818;107310;135168;124507;154418;258137;329306;166582;189491;203333;335050;504233;470212;340055;307961;341289.87;339516;330295;265207;268565;324988;263558 -5404;'155;Western Europe;1668;Pulp from fibres other than wood;5510;Production;t;755100;728500;698000;681000;730800;672900;602600;577600;521700;523700;389000;346900;344000;336000;137000;108000;78000;68000;66000;66000;67000;67000;63000;68000;69000;69500;70000;70000;71000;71000;72000;72000;49500;50000;50000;51000;48000;2000;2500;750;750;750;39000;43000;59000;56000;114006;115211;84136;86199;90147;86542;82841;82790;82790;82790;82790;167174;148971;146210;142817;124493;126166 -5404;'155;Western Europe;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;1000;45800;44500;47700;37500;46400;46600;45500;36400;44300;44700;47600;35700;39200;24400;33200;52500;41600;38200;38100;30000;35200;34100;27700;31000;34100;57000;52800;50300;55873;61723;42500;50800;66200;85800;76000;79000;80462;79183;84888;86705;120057;101269;148059;108198;115926;189455;169667;139414;142323;101085;138458;86836;70810;67877;80816;85580;91405;94564;104327;95888 -5404;'155;Western Europe;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;617;7672;7863;9196;7292;8845;9270;9549;8812;10075;14090;25259;21207;18357;12817;16470;31119;28030;25328;24416;21702;26324;28623;26086;28827;31750;46351;48986;47513;61030;60616;49024;60240;78386;88390;86274;85100;89819;107271;105722;104081;144530;135496;198915;203562;201555;237722;238233;233023;183115;162792;200554;120702;106631;116056;143593;156840;159604;164611;202244;182788 -5404;'155;Western Europe;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;29200;16600;11000;12800;15100;15400;14300;15400;14700;15800;15700;10300;5300;1200;3000;3200;2700;2900;2600;4800;5900;8800;6400;7400;7500;20200;2500;2700;32340;25481;16400;14600;18800;30400;53500;75350;53715;60823;77287;74857;91487;116234;134853;129022;143515;127840;115512;90555;84035;72715;98531;63455;51318;51172;31886;20338;30445;29790;23929;21762 -5404;'155;Western Europe;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;4379;2577;1840;2126;2471;2456;2798;3573;3749;4437;6099;4593;1977;1052;3064;3963;3220;3463;2865;5357;5367;3711;3451;3740;3791;20459;3054;3139;33631;27470;12911;15329;21343;25183;28531;34321;35664;33537;40231;46340;62252;80990;112859;142061;141509;120693;110016;71888;55309;71202;115435;49727;36553;41787.69;39759;33124;55242;55744;46799;52128 -5404;'155;Western Europe;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17300;34000;63900;54675;36775;24339;22573;28063;19991;6740;16347;43621;79974;120031;162260;121019;121123;32299;42121;42259;44064;57617;104857;69089;78005;104272 -5404;'155;Western Europe;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7379;20417;11686;9225;7212;5150;7594;10868;7600;12458;17589;40056;82188;90237;46524;28267;23054;18632;19197;18521.6;24538;30492;38415;37850;41344;32725 -5404;'155;Western Europe;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60000;66008;115160;108704;106188;89837;56954;58410;101881;87741;109976;134028;171222;207035;242748;135195;118903;130826;132866;128855;183610;145458;202911;223137;163012;153262 -5404;'155;Western Europe;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58101;59599;23697;23554;23863;25255;19289;21358;36586;47265;58361;59344;76594;92790;106280;93329;77152;68897;68691;70188.22;102171;79748;116894;145110;125598;118113 -5404;'155;Western Europe;1669;Recovered paper;5510;Production;t;2720000;2836000;3077000;3422000;3522000;3717000;3895000;4301000;4791000;5305000;5304000;5702000;6219000;6813000;5859000;6962000;7139000;7333000;7826000;7794000;8314000;8345000;8782000;9652000;10219000;10513000;11381000;12200000;12808000;12518000;13467000;14397000;15116000;18430000;19081000;19363000;18832000;20765000;22005000;23193000;23584160;24196959;24920000;26279000;27676000;27613367;28042723;27299856;26379537;27232744;26597123;28710069;28762687;28614437;28722397;28628865;29002478;30527603;30781343;30253055;28585570;26884570;25860870 -5404;'155;Western Europe;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;691000;621000;802000;978000;1234872;844539;1153300;1094280;1135041;1399611;1512921;1472681;1538963;1639800;2038600;2107900;2077800;2253300;2830900;3057400;3264100;3537200;3862076;3215757;3805900;4493800;4323900;4231600;4434367;5272000;6610737;6437456;6443762;7381511;7928533;8528843;9405904;9864944;9962515;10181850;10687387;11127801;10445083;9959612;9674433;9984421;10394429;11246633;11284393;11517234;10240163;11323654;11120827;10138028 -5404;'155;Western Europe;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;42254;34583;45248;74891;185536;87316;117992;108942;106758;175290;231261;164924;163331;158002;217268;222038;222547;274830;389859;498548;439320;408589;367782;218466;427462;822458;485765;287141;297575;369047;726485;497992;637626;834809;929887;954490;1085520;1567682;1729564;1201951;1968844;2572549;1864530;1715370;1709051;1548070;1671491;1923840.84;1780286;1570148;1237929;2418923;2536148;1513760 -5404;'155;Western Europe;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;811000;680000;852000;1051000;1263252;991419;1371008;1407449;1491056;1709326;1683139;1807229;1863046;1864100;2384000;2449800;2362300;2639200;3096900;3216200;3446900;4213500;4398747;4402129;5002100;6493400;6103300;6389100;7239255;8691000;8915634;9070932;8849360;9423280;10552556;11059586;11739259;12581808;12936621;13898499;12663721;13452324;12420507;11134457;10427620;10720295;10764078;11045357;10483326;9673894;8361005;8300427;8123820;8766879 -5404;'155;Western Europe;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;46506;32963;44338;77662;182875;85553;121842;124412;126349;212206;255255;181070;169149;166728;237313;245367;221863;276202;393044;368070;393931;388972;459291;267835;534935;926506;519802;393619;405266;507495;982747;613797;781290;970639;1131072;1187298;1302787;1956437;2242121;1615630;2346057;2988870;2152039;1880136;1751028;1604454;1701184;1963231.04;1657216;1238227;976259;1716776;1725831;1274019 -5404;'155;Western Europe;1876;Paper and paperboard;5510;Production;t;9460600;9678600;10134400;10174400;10583900;11360500;11344800;12287100;13435600;14141000;14246300;15002800;16153500;16615400;13762600;15739000;16086000;16819000;18014000;18115000;18334000;18236000;19116000;20654000;20573000;21509000;22583000;24679000;26153000;27496000;28850000;29504000;29704000;32310000;32535000;32822000;35063000;36083829;37218000;39249000;38339530;39608629;40890000;42690962;44080000;44685133;45265233;44097413;40080167;43415407;42370392;41977412;41248504;41570124;41594517;41588955;42054622;41618768;40312898;38588156;41498769;39119795;33840364 -5404;'155;Western Europe;1876;Paper and paperboard;5610;Import quantity;t;2193800;2466200;2789600;3187800;3633500;3950800;3828100;4531300;5660800;5852500;6053300;6649700;7249000;7468500;5737100;7466300;7420400;8129600;8969700;9150900;9126600;9078600;9928500;10840700;10460400;11773800;12466200;13958400;15006700;16456900;17123500;17642448;17014941;18475200;18223000;17009800;19950800;21524492;24107550;24853649;23979948;24412885;25427409;25381321;26501666;26764538;28274349;27548456;24029602;25918487;25751713;25065201;24470840;24656369;25044745;24825488;25005973;24749976;23779900;22177079;22448150;21446888;19429525 -5404;'155;Western Europe;1876;Paper and paperboard;5622;Import value;1000 USD;402886;453843;514142;578656;685342;755467;773649;879665;1140302;1255463;1364220;1606493;2137396;3180121;2801842;3343209;3792211;4281728;5319840;5954765;5538806;5302574;5474713;5999871;6040309;8364029;10403939;12070416;13203706;15890112;16240458;16402404;13374488;14684201;19397316;16428789;15422628;16644405;17562791;18236050;17543372;17840036;21429904;22428126;22854081;24358238;27784649;29701824;23400965;24256383;27130088;23813486;23957361;24173704;20787348;20151803;20818252.47;22730597;20683433;18625762;20600637;23805912;20754682 -5404;'155;Western Europe;1876;Paper and paperboard;5910;Export quantity;t;1040000;1019500;1106300;1260800;1362400;1572100;1753900;1933800;2257500;2514700;2614900;2976100;3671100;4105500;2918800;3978200;4094000;4632500;5187200;5339500;5731900;5788600;6617900;7177600;7534300;8157600;9095600;10839500;11411100;12185900;12914100;14133093;13721508;16081100;17029000;16840300;19855300;19670868;22032922;23649661;22402060;24734299;26592877;28232121;29768817;28091675;30717902;29502344;26215685;29489012;28604161;27086432;26906884;28160351;29166870;29203549;29548646;29370324;29114667;27643016;28735883;27062133;24099994 -5404;'155;Western Europe;1876;Paper and paperboard;5922;Export value;1000 USD;239293;247682;271189;301470;337899;394578;442484;483863;581355;691012;781851;919500;1361750;2274453;1685853;2350084;2456548;2863810;3602784;4096303;4019399;3980836;4115996;4447998;4735918;6395534;8640273;10280350;11206411;12598737;12880143;13543366;11264327;13466461;19536549;17254379;17306929;17997512;18697301;19592142;17287287;18455240;22602933;25072199;26346723;26567253;30513974;32539506;25515029;28243521;31368349;26546609;26630803;27739164;24775711;24295009;25490452.88;27471623;25082494;22552230;26765004;30858282;25798820 -5404;'155;Western Europe;2042;Graphic papers;5510;Production;t;3652100;3725000;3926800;4220500;4414100;4841500;4939500;5439900;5968300;6498000;6444600;6792300;7252500;7612400;5958600;7125000;7373000;8170000;8396000;8613000;8776000;8749000;9266000;10084000;9880000;10332000;11191000;12247000;12808000;13735000;14082000;14497000;14484000;16199000;16346000;16319000;17582000;17805522;18586000;19786000;19004620;19397771;20521000;21633893;21936000;21700407;21993012;21380861;18438145;20056394;19275224;18441922;17439305;17315519;16736825;16477304;16005237;15107297;13757578;11621878;12946986;11790893;8404208 -5404;'155;Western Europe;2042;Graphic papers;5610;Import quantity;t;952000;1019900;1139000;1334200;1527700;1653600;1648700;2051300;2450000;2548400;2522800;2871300;3191800;3367700;2729600;3322800;3551000;3825000;4247200;4424400;4419300;4276900;4633100;5366400;5093300;5693700;6141500;7213500;7707500;8715000;9124000;9589685;9759441;10480800;10200300;9022200;11455800;11966600;14537000;14903989;14002829;14375083;15021963;14964382;15642454;16065559;16662609;15980815;13392727;14056487;13983489;13246088;12593723;12364199;12236212;11885543;11672627;11196477;10342503;8759645;8713727;8123745;7017709 -5404;'155;Western Europe;2042;Graphic papers;5622;Import value;1000 USD;156708;174333;196470;231571;270488;299378;307408;377922;453289;496362;532060;650657;919963;1410622;1376884;1550582;2032481;2251648;2781332;3111338;2853875;2701182;2593187;2954733;3064369;4259367;5240580;6488771;6619404;8656568;8797558;8783925;7263171;8178969;10693232;8581621;8245535;8739659;10252153;11061103;10456176;10846948;12658052;13070066;13482509;14173296;16102557;16962593;13357501;12970646;14083056;12203781;11871472;11773326;9369448;9108455;8998562.36;9657621;8734741;7183900;7453871;9284882;8197494 -5404;'155;Western Europe;2042;Graphic papers;5910;Export quantity;t;467600;485600;500400;603000;678700;760600;887400;1077800;1147000;1347300;1441900;1707200;2038700;2154500;1545700;1946400;2174700;2307500;2562400;2675100;2923900;2990900;3301500;3761600;3950100;4305900;4803900;6180500;6642600;6679900;7122700;8385865;8396208;9863500;10383800;9679800;12106800;11029000;13775000;14419899;13679298;15399714;16566483;17408760;18137132;18390749;18167388;17669615;14911145;17087077;16338422;14428726;13821754;14530149;14523871;14216252;13995627;13061281;12043492;10002616;10862425;9861521;7091746 -5404;'155;Western Europe;2042;Graphic papers;5922;Export value;1000 USD;100883;102332;104403;136318;161887;184983;213913;265539;285984;349783;407366;498662;758118;1215393;893467;1250507;1333102;1473047;1826479;2075434;2082767;2146106;2036457;2318160;2521562;3475488;4474513;6088207;6444978;6998122;7140481;8085594;6793403;8094831;11466673;9429308;9928621;9490670;11118259;11770222;10538796;11931764;13989099;15310942;16043703;16776000;18082268;19118615;15089134;16157662;16807821;13478883;13005409;13824699;11274005;10874352;10720210.35;11253550;10146906;8223596;9363646;11594081;8403238 -5404;'155;Western Europe;1671;Newsprint;5510;Production;t;1199600;1182600;1187600;1238400;1253600;1302500;1293900;1344600;1397400;1510000;1469400;1469600;1473300;1456500;1311900;1381000;1455000;1475000;1580000;1632000;1748000;1656000;1657000;1808000;1871000;1936000;2066000;2335000;2416000;2681000;2822000;2994000;3224000;3413000;3742000;3417000;3709000;3689500;3970000;4094000;4341820;4209872;4676000;5070697;5004000;4931400;4865861;4939510;4065316;4429294;4165933;4062961;4141156;3713180;3627686;3677075;3266228;2935663;2586104;2169056;2640657;2398949;1856621 -5404;'155;Western Europe;1671;Newsprint;5610;Import quantity;t;564400;608100;665100;745200;807600;891900;834100;950100;1219000;1291800;1229100;1305400;1418400;1531600;1243200;1436500;1521800;1533500;1678600;1769800;1620100;1545700;1590300;1757700;1689500;1868600;2031700;2117800;2224400;2437200;2482200;2350971;2495516;2586500;2420200;2321800;2687500;2942900;3204000;3358330;3060180;2879794;2679388;2662904;2833745;2762094;2718249;2616617;2234521;2358205;2399866;2238934;2186278;2033224;1879093;1836630;1785837;1689402;1507047;1214335;1260584;1254326;1121889 -5404;'155;Western Europe;1671;Newsprint;5622;Import value;1000 USD;80020;87603;94960;105762;113234;126500;120208;131433;168417;185688;186405;206285;270833;428324;478846;452056;702079;734707;876344;996246;815311;764331;715188;703559;685205;1010647;1242785;1373275;1330103;1727884;1741871;1414994;1179880;1304869;1691202;1820462;1446838;1521808;1591084;1542468;1692881;1545963;1544261;1581374;1701754;1802101;1978091;2002701;1630782;1387072;1686804;1455914;1390342;1319878;937582;916115;907355.15;998146;893084;649003;663383;1005356;866842 -5404;'155;Western Europe;1671;Newsprint;5910;Export quantity;t;135800;154000;162000;177600;147900;142100;167300;166100;175000;194600;172800;182500;203400;197600;153000;190700;188300;178100;213300;237500;262000;260700;329000;321900;462600;530200;627800;817400;848200;1092100;1183100;1201119;1394478;1497400;1498200;1696600;1999200;1847700;1976000;2245521;2346412;2508257;2660437;3072609;2988503;2928605;2687911;2826107;2399827;2830427;2723942;2709428;2735571;2583619;2484331;2478767;2412207;2093459;1920915;1662684;1789393;1674131;1395830 -5404;'155;Western Europe;1671;Newsprint;5922;Export value;1000 USD;19384;22949;23929;26110;21683;20352;25126;24053;24660;28835;27578;30802;41236;63047;57710;71566;84319;84500;107975;125469;131972;130408;148410;130403;142238;291146;383015;536763;528002;755686;814104;700373;597999;662048;1105372;1218216;1041879;984228;1023389;1077708;1265977;1245923;1414220;1687671;1744986;1890862;1882260;2104941;1718735;1673097;1944431;1741330;1743514;1671330;1211078;1214797;1192358.37;1205336;1102786;880148;1195628;1627580;1166844 -5404;'155;Western Europe;1674;Printing and writing papers;5510;Production;t;2452500;2542400;2739200;2982100;3160500;3539000;3645600;4095300;4570900;4988000;4975200;5322700;5779200;6155900;4646700;5744000;5918000;6695000;6816000;6981000;7028000;7093000;7609000;8276000;8009000;8396000;9125000;9912000;10392000;11054000;11260000;11503000;11260000;12786000;12604000;12902000;13873000;14116022;14616000;15692000;14662800;15187899;15845000;16563196;16932000;16769007;17127151;16441351;14372829;15627100;15109291;14378961;13298149;13602339;13109139;12800229;12739009;12171634;11171474;9452822;10306329;9391944;6547587 -5404;'155;Western Europe;1674;Printing and writing papers;5610;Import quantity;t;387600;411800;473900;589000;720100;761700;814600;1101200;1231000;1256600;1293700;1565900;1773400;1836100;1486400;1886300;2029200;2291500;2568600;2654600;2799200;2731200;3042800;3608700;3403800;3825100;4109800;5095700;5483100;6277800;6641800;7238714;7263925;7894300;7780100;6700400;8768300;9023700;11333000;11545659;10942649;11495289;12342575;12301478;12808709;13303465;13944360;13364198;11158206;11698282;11583623;11007154;10407445;10330975;10357119;10048913;9886790;9507075;8835456;7545310;7453143;6869419;5895820 -5404;'155;Western Europe;1674;Printing and writing papers;5622;Import value;1000 USD;76688;86730;101510;125809;157254;172878;187200;246489;284872;310674;345655;444372;649130;982298;898038;1098526;1330402;1516941;1904988;2115092;2038564;1936851;1877999;2251174;2379164;3248720;3997795;5115496;5289301;6928684;7055687;7368931;6083291;6874100;9002030;6761159;6798697;7217851;8661069;9518635;8763295;9300985;11113791;11488692;11780755;12371195;14124466;14959892;11726719;11583574;12396252;10747867;10481130;10453448;8431866;8192340;8091207.21;8659475;7841657;6534897;6790488;8279526;7330652 -5404;'155;Western Europe;1674;Printing and writing papers;5910;Export quantity;t;331800;331600;338400;425400;530800;618500;720100;911700;972000;1152700;1269100;1524700;1835300;1956900;1392700;1755700;1986400;2129400;2349100;2437600;2661900;2730200;2972500;3439700;3487500;3775700;4176100;5363100;5794400;5587800;5939600;7184746;7001730;8366100;8885600;7983200;10107600;9181300;11799000;12174378;11332886;12891457;13906046;14336151;15148629;15462144;15479477;14843508;12511318;14256650;13614480;11719298;11086183;11946530;12039540;11737485;11583420;10967822;10122577;8339932;9073032;8187390;5695916 -5404;'155;Western Europe;1674;Printing and writing papers;5922;Export value;1000 USD;81499;79383;80474;110208;140204;164631;188787;241486;261324;320948;379788;467860;716882;1152346;835757;1178941;1248783;1388547;1718504;1949965;1950795;2015698;1888047;2187757;2379324;3184342;4091498;5551444;5916976;6242436;6326377;7385221;6195404;7432783;10361301;8211092;8886742;8506442;10094870;10692514;9272819;10685841;12574879;13623271;14298717;14885138;16200008;17013674;13370399;14484565;14863390;11737553;11261895;12153369;10062927;9659555;9527851.98;10048214;9044120;7343448;8168018;9966501;7236394 -5404;'155;Western Europe;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2708796;2619900;2900000;2850690;2909487;3058000;2627880;2707000;2840317;2856770;2951687;2814276;2866434;3107370;2938239;2723332;2747475;2754651;2724765;2763027;2707832;2488818;2226836;2440788;2227342;1712814 -5404;'155;Western Europe;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1593800;1997000;1871654;2020176;2100341;2184877;2317018;2109856;2329379;2713111;2775353;2214671;2149959;2055875;1950455;1784328;1516164;1485878;1466184;1601521;1466156;1223728;1142951;1034915;1055075;962675 -5404;'155;Western Europe;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1091468;1335656;1117553;1276310;1406352;1583751;1807376;1569417;1783472;2224515;2421599;1902778;1675314;1784688;1584318;1461802;1247029;980276;947972;1034751.4;1074387;909414;792208;752254;999338;935159 -5404;'155;Western Europe;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1269700;1654000;1731592;1780036;1765792;2092283;2004558;2104597;2156802;2480023;2573036;2263783;2332481;2329001;2299849;2125073;2024507;2089987;2134819;1935435;1713002;1550143;1353586;1470573;1455675;1007385 -5404;'155;Western Europe;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1026136;1247935;1049095;1095119;1105900;1442089;1507984;1596518;1691927;2057997;2249989;1947624;1770346;1965070;1791409;1631931;1554305;1256559;1223294;1109130.43;1110485;999321;805884;861614;1290810;913373 -5404;'155;Western Europe;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3246872;3456800;3659000;3394620;3624682;3555000;3948410;3888000;3903728;3911265;3485602;3352797;3575503;3337291;3165066;3092741;3333743;3390302;3264711;3245413;3105333;2907541;2518754;2676874;2452116;1854192 -5404;'155;Western Europe;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2296600;2917000;2936984;3112443;3513050;3731993;3668654;3869771;3849649;3699556;3367857;3148150;3407031;3385509;3313716;3157522;3241987;3131753;3057997;2999083;2912315;2889012;2344960;2353499;2326974;2042418 -5404;'155;Western Europe;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1905600;2361581;2710769;2826535;3165058;3733020;3712564;3839497;3917733;4353979;4499450;3710363;3816420;4150052;3712008;3615987;3620348;2896832;2923450;2903977.65;3163060;3031867;2451978;2555935;3154705;2845323 -5404;'155;Western Europe;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1578100;2038000;1989966;1811843;2856912;2868753;2821930;2690527;3017929;2511750;2334594;2386789;2564894;2503480;2414513;2460155;2575718;2673030;2509516;2475292;2350568;2353997;1842621;1852609;1741325;1159451 -5404;'155;Western Europe;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1620482;2007474;2402666;1840858;2789303;3097676;3174149;3010185;3468393;3602796;3718527;3249139;3421598;3614998;3152390;3327774;3443071;2994650;2798288;2759823.64;2846030;2730035;2170297;2189885;2586539;2057948 -5404;'155;Western Europe;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8160354;8539300;9133000;8417490;8653730;9232000;9986906;10337000;10024962;10359116;10004062;8205756;9185163;8664630;8275656;7482076;7521121;6964186;6810753;6730569;6358469;5775115;4707232;5188667;4712486;2980581 -5404;'155;Western Europe;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5133300;6419000;6737021;5810030;5881898;6425705;6315806;6829082;7124437;7531693;7220988;5795385;6141292;6142239;5742983;5465595;5572824;5739488;5524732;5286186;5128604;4722716;4057399;4064729;3487370;2890727 -5404;'155;Western Europe;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4220783;4963832;5690313;4660450;4729575;5797020;5968752;6371841;6669990;7545972;8038843;6113578;6091840;6461512;5451541;5403341;5586071;4554758;4320918;4152478.15;4422028;3900376;3290711;3482299;4125483;3550170 -5404;'155;Western Europe;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6333500;8107000;8452820;7741007;8268753;8945010;9509663;10353505;10287413;10487704;9935878;7860746;9359275;8781999;7004936;6500955;7346305;7276523;7093150;7172693;6904252;6218437;5143725;5749850;4990390;3529080 -5404;'155;Western Europe;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5859824;6839461;7240753;6336842;6790638;8035114;8941138;9692014;9724818;10539215;11045158;8173636;9292621;9283322;6793754;6302190;7155993;5811718;5637973;5658897.9;6091699;5314764;4367267;5116519;6089152;4265073 -5404;'155;Western Europe;1675;Other paper and paperboard;5510;Production;t;5808500;5953600;6207600;5953900;6169800;6519000;6405300;6847200;7467300;7643000;7801700;8210500;8901000;9003000;7804000;8614000;8713000;8649000;9618000;9502000;9558000;9487000;9850000;10570000;10693000;11177000;11392000;12432000;13345000;13761000;14768000;15007000;15220000;16111000;16189000;16503000;17481000;18278307;18632000;19463000;19334910;20210858;20369000;21057069;22144000;22984726;23272221;22716552;21642022;23359013;23095168;23535490;23809199;24254605;24857692;25111651;26049385;26511471;26555320;26966278;28551783;27328902;25436156 -5404;'155;Western Europe;1675;Other paper and paperboard;5610;Import quantity;t;1241800;1446300;1650600;1853600;2105800;2297200;2179400;2480000;3210800;3304100;3530500;3778400;4057200;4100800;3007500;4143500;3869400;4304600;4722500;4726500;4707300;4801700;5295400;5474300;5367100;6080100;6324700;6744900;7299200;7741900;7999500;8052763;7255500;7994400;8022700;7987600;8495000;9557892;9570550;9949660;9977119;10037802;10405446;10416939;10859212;10698979;11611740;11567641;10636875;11862000;11768224;11819113;11877117;12292170;12808533;12939945;13333346;13553499;13437397;13417434;13734423;13323143;12411816 -5404;'155;Western Europe;1675;Other paper and paperboard;5622;Import value;1000 USD;246178;279510;317672;347085;414854;456089;466241;501743;687013;759101;832160;955836;1217433;1769499;1424958;1792627;1759730;2030080;2538508;2843427;2684931;2601392;2881526;3045138;2975940;4104662;5163359;5581645;6584302;7233544;7442900;7618479;6111317;6505232;8704084;7847168;7177093;7904746;7310638;7174947;7087196;6993088;8771852;9358060;9371572;10184942;11682092;12739231;10043464;11285737;13047032;11609705;12085889;12400378;11417900;11043348;11819690.1;13072976;11948692;11441862;13146766;14521030;12557188 -5404;'155;Western Europe;1675;Other paper and paperboard;5910;Export quantity;t;572400;533900;605900;657800;683700;811500;866500;856000;1110500;1167400;1173000;1268900;1632400;1951000;1373100;2031800;1919300;2325000;2624800;2664400;2808000;2797700;3316400;3416000;3584200;3851700;4291700;4659000;4768500;5506000;5791400;5747228;5325300;6217600;6645200;7160500;7748500;8641868;8257922;9229762;8722762;9334585;10026394;10823361;11631685;9700926;12550514;11832729;11304540;12401935;12265739;12657706;13085130;13630202;14642999;14987297;15553019;16309043;17071175;17640400;17873458;17200612;17008248 -5404;'155;Western Europe;1675;Other paper and paperboard;5922;Export value;1000 USD;138410;145350;166786;165152;176012;209595;228571;218324;295371;341229;374485;420838;603632;1059060;792386;1099577;1123446;1390763;1776305;2020869;1936632;1834730;2079539;2129838;2214356;2920046;4165760;4192143;4761433;5600615;5739662;5457772;4470924;5371630;8069876;7825071;7378308;8506842;7579042;7821920;6748491;6523476;8613834;9761257;10303020;9791253;12431706;13420891;10425895;12085859;14560528;13067726;13625394;13914465;13501706;13420657;14770242.54;16218073;14935588;14328634;17401358;19264201;17395582 -5404;'155;Western Europe;1676;Household and sanitary papers;5510;Production;t;140000;181000;199000;218000;420000;444400;494700;513200;555700;611300;649600;728000;818000;837000;803000;796000;817000;855000;972000;1052000;1081000;1091000;1178000;1256000;1271000;1344000;1422000;1532000;1594000;1664000;1788000;1771000;1745000;1920000;1823000;1825000;1998000;1895300;1925000;2029000;2063900;2130147;2181000;2242270;2396000;2422595;2505737;2564727;2626619;2576457;2598524;2681760;2740465;2776188;2809964;2869976;2668942;2659731;2605975;2624920;2560766;2586009;2432144 -5404;'155;Western Europe;1676;Household and sanitary papers;5610;Import quantity;t;5900;7200;9200;10700;11800;13000;11500;46000;55700;74900;76100;93800;111600;89900;81400;97400;78800;95700;120500;153000;151500;149200;150800;161100;171200;192900;198300;281600;335900;378300;612900;493086;385500;343000;388400;357000;377300;378200;472000;358830;406945;433046;500944;480676;477756;419461;365052;405773;371385;372969;395642;394631;420552;398035;909735;884569;889062;898478;879567;881579;356188;425375;415522 -5404;'155;Western Europe;1676;Household and sanitary papers;5622;Import value;1000 USD;3040;3654;4621;5112;5972;6571;6568;19573;26257;32870;37533;49946;71583;71923;81247;83235;67718;81144;113839;150287;137848;128899;124424;111079;123509;190639;244324;377008;497400;630478;965913;890466;652037;589576;754456;649670;617257;451332;589725;362455;485856;527082;788459;823205;829676;701143;654456;785330;633444;648161;735078;667023;743320;717450;1417607;1358951;1371108.41;1418425;1432898;1376578;562221;828403;832978 -5404;'155;Western Europe;1676;Household and sanitary papers;5910;Export quantity;t;6600;6700;8500;9200;10000;10400;11400;41100;43900;43000;37500;61800;93400;83000;51600;67900;67300;74800;81400;102800;112600;117900;142600;122400;121600;136600;154800;240500;298800;312500;452800;262000;251000;290500;331100;296900;283500;312400;368000;278507;333694;358273;415864;407404;422049;365695;325541;299381;254026;228559;260028;280651;334735;290211;767953;886633;872253;883318;855663;803614;265887;258092;260730 -5404;'155;Western Europe;1676;Household and sanitary papers;5922;Export value;1000 USD;2124;2511;3128;3327;3736;4091;4266;18843;20200;22320;20505;37143;61100;62262;46321;58568;58237;61670;77993;117769;118086;116019;138044;113064;99493;145863;201499;401654;469378;501223;707758;334763;327029;348127;491575;404252;345822;323512;487863;379954;425217;483302;678841;736122;732635;735095;725903;703976;568219;498073;590562;554902;591529;587724;1613637;1675666;1682320.89;1718181;1733609;1542521;525062;560019;638282 -5404;'155;Western Europe;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14666278;14969000;15676000;15436960;16242681;16257000;16751904;17573000;18238863;18396456;17867259;17002266;18580792;18286150;18772080;19006651;19389256;19950533;20099514;21145018;21617399;21782868;22181459;23697053;22564972;21013199 -5404;'155;Western Europe;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8197182;8316550;8708783;8436770;8585133;9156474;9329228;9953990;9784548;10903583;10696949;9978001;11209867;10986260;11077109;11161573;11652813;11619309;11767893;12127814;12333298;12258527;12247707;13099256;12618381;11718939 -5404;'155;Western Europe;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5948897;5739408;5671345;5393894;5605867;7078215;7651780;7828281;8295571;10403410;10891035;8729716;9961411;11257182;9952881;10320378;10905357;9151414;8880589;9644248.77;10785643;9689043;9259376;11672206;12820280;10809293 -5404;'155;Western Europe;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7258800;7022922;7831056;7259998;8115961;8831294;9822800;10527259;8225778;11816981;11122508;10836880;11951546;11583972;11993314;12365493;13126742;13470304;13688383;14255540;15037436;15845801;16423597;17174869;16514563;16041915 -5404;'155;Western Europe;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6123125;5699241;5578777;4641897;5224117;6769078;7898762;8046021;6183206;10958852;11297929;9070430;10748726;12478321;11122032;11561588;12157882;10413429;10336968;11643904.17;13110871;11853542;11421966;15177417;17058784;13895911 -5404;'155;Western Europe;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;2113000;2139000;2181000;1876000;4008500;4293700;4485800;4915600;5371000;5211700;5260500;5714000;5615000;6067000;5210000;6313000;6904000;6880000;7223000;7082000;7106000;7128000;7909000;8414000;8509000;8914000;9003000;9642000;10332000;10591000;11393000;11757000;11992000;12862000;12799000;13192000;14019000;;;;;;;;;;;;;;;;;;;;;;;;;; -5404;'155;Western Europe;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;286400;357800;469900;555000;617900;725300;715100;2043800;2463000;2454800;2701300;2943000;3135100;3201800;2216800;3030300;3024600;3012200;3185200;3160000;3161700;3222600;3381200;3518100;3363100;3850800;3836600;3858900;4433200;4801400;5717000;6938079;6466000;7225600;7203300;7152200;7544700;;;;;;;;;;;;;;;;;;;;;;;;;; -5404;'155;Western Europe;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;53983;65811;82874;91476;112842;134106;145394;352722;437743;468122;508516;600845;762541;1183763;965408;1107690;1163906;1235509;1412240;1579449;1515050;1456413;1478043;1480102;1442528;2112979;2481657;2597362;3247533;3668229;4547786;5768755;4831904;5248466;7128845;6343094;5709515;;;;;;;;;;;;;;;;;;;;;;;;;; -5404;'155;Western Europe;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;106900;97400;122800;138700;147100;235600;260200;633600;744300;757600;786100;911400;1133000;1242600;958400;1292200;1440400;1552000;1755400;1716300;1863800;1870500;2282400;2147400;2317400;2474600;2663500;2796000;2945600;3464600;4710300;4917100;4755300;5570400;5892300;6273000;6845000;;;;;;;;;;;;;;;;;;;;;;;;;; -5404;'155;Western Europe;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;28676;31625;37330;40614;44038;63883;69304;128677;155081;172372;203918;228524;327008;560192;447861;530749;612074;803065;1005219;979296;992656;963976;1104562;968428;1054580;1387299;1990584;1937504;2309677;2802557;4054826;4204094;3658090;4487413;6806469;6321160;5997295;;;;;;;;;;;;;;;;;;;;;;;;;; -5404;'155;Western Europe;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8878494;9122800;9569000;9568490;10091926;10290000;10636827;11445000;12009927;12095273;11906975;11491531;12691699;12591967;12695731;12854523;13122826;13592536;13954536;14875203;15236801;15602060;16090374;17628102;16671047;16102623 -5404;'155;Western Europe;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3954745;4007000;4218745;4024736;4103703;4404289;4620028;4912854;4428741;5125368;4996057;4860385;5539813;5466686;5696019;5875251;6065932;5957045;5974583;6156069;6383625;6335245;6408086;6712583;6450954;6185386 -5404;'155;Western Europe;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2199880;2168274;1839430;1733284;1727674;2080893;2297369;2383901;2374233;3301667;3311693;2465545;3169444;3706347;3249247;3544847;3768848;3007790;2911191;3237102.15;3837132;3092700;2956683;4083463;4636843;3502214 -5404;'155;Western Europe;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3755324;3725000;3727746;3985881;4498371;5077151;5633559;6189010;4868463;6777603;6166560;6528868;7067208;6588058;6967943;7306476;7936714;8050219;8109935;8238334;9040526;9861710;10220074;10338863;10106546;10266459 -5404;'155;Western Europe;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2453971;2303341;1823929;1584150;1765277;2218414;2649636;2734748;2294431;4152368;3739303;2980528;4030284;4224055;3626650;4147205;4857856;3928794;3833997;4534606.78;5508645;4669959;4378306;6343847;7342990;5450405 -5404;'155;Western Europe;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2163966;2168500;2239000;2581290;2763403;2756000;2824293;2892000;3039467;3133316;2964183;2760105;2957938;2859839;3143574;3232963;3187850;3315220;3250794;3374905;3449707;3378132;3362689;3246954;2950192;2512051 -5404;'155;Western Europe;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2308822;2298550;2559227;2689873;2594932;2782790;2841970;2903084;3173625;3440431;3329918;3127744;3422041;3201439;3154550;3003861;3184506;3200603;3276841;3321478;3276058;3233914;3214182;3510709;3485750;3196751 -5404;'155;Western Europe;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2276602;2152334;2423933;2390171;2465980;3171221;3506921;3492532;3858019;4612733;4696247;4106890;4341981;4664673;4198437;4139677;4411602;3712848;3589882;3781845.91;3984134;3775149;3713629;4407085;4631083;4279936 -5404;'155;Western Europe;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1296826;1396000;1541175;1585602;1890348;1967472;2371596;2447353;1104153;3012238;2883623;2505787;2858332;2987215;3102168;3165336;3116839;3270260;3350385;3709706;3553961;3590167;3601571;3935455;3574375;3224777 -5404;'155;Western Europe;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1799230;1774103;2009333;1889280;2199074;2926298;3464603;3520639;1735216;4554481;4832731;4088355;4475799;5362048;4959071;4972817;4931465;4162961;4145113;4545521.01;4635096;4396867;4247741;5206635;5594957;5007898 -5404;'155;Western Europe;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;990678;921600;949000;915150;931431;879000;901500;851000;889735;861626;788641;752219;800323;788243;916764;933205;978710;966612;975922;1010624;1050863;984155;1006847;1049484;1226562;977993 -5404;'155;Western Europe;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1336735;1362000;1481057;1316056;1473392;1556138;1502400;1606355;1691350;1709388;1772156;1565666;1795339;1770414;1670520;1743937;1900599;1920968;1929233;2065745;2079004;2089902;2040271;2238622;2125459;1815455 -5404;'155;Western Europe;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1142672;1084285;1223310;1124994;1252184;1586769;1658107;1705908;1817298;2184640;2401873;1914660;2185212;2447860;2108960;2240661;2411235;2082085;1998673;2206599.67;2506414;2380797;2135806;2615557;2980746;2527088 -5404;'155;Western Europe;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;981243;1083000;1225157;1058443;1177231;1163593;1278132;1276429;1631752;1341746;1411936;1229019;1438807;1388856;1322242;1294069;1451315;1548150;1623465;1744726;1888630;1852368;2029601;2305444;2284088;2092368 -5404;'155;Western Europe;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1044272;1034106;1205623;964950;1029269;1193074;1395578;1370385;1842617;1881322;2202777;1672312;1883564;2372194;2070319;1972757;1952104;1925624;1971134;2184007.59;2562315;2410529;2401895;3115639;3560265;2982385 -5404;'155;Western Europe;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2633140;2756100;2919000;2372030;2455921;2332000;2389284;2385000;2299734;2306241;2207460;1998411;2130832;2046101;2016011;1985960;2099870;2076165;1918262;1884286;1880028;1818521;1721549;1772513;1717171;1420532 -5404;'155;Western Europe;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;596880;649000;449754;406105;413106;413257;364830;531697;490832;628396;598818;424206;452674;547721;556020;538524;501776;540693;587236;584522;594611;599466;585168;637342;556218;521347 -5404;'155;Western Europe;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;329743;334515;184672;145445;160029;239332;189383;245940;246021;304370;481222;242621;264774;438302;396237;395193;313672;348691;380843;418701.05;457963;440397;453258;566101;571608;500055 -5404;'155;Western Europe;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1225407;818922;1336978;630072;550011;623078;539513;614467;621410;685394;660389;573206;587199;619843;600961;599612;621874;601675;604598;562774;554319;541556;572351;595107;549554;458311 -5404;'155;Western Europe;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;825652;587691;539892;203517;230497;431292;388945;420249;310942;370681;523118;329235;359079;520024;465992;468809;416457;396050;386724;379768.78;404815;376187;394024;511296;560572;455223 -5404;'155;Western Europe;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;808000;818000;834000;717000;1446300;1481400;1424800;1418400;1540600;1820000;1891600;1768500;2468000;2099000;1791000;1505000;992000;914000;1423000;1368000;1371000;1268000;763000;900000;913000;919000;967000;1258000;1419000;1506000;1587000;1479000;1483000;1329000;1567000;1486000;1464000;1716729;1738000;1758000;1834050;1838030;1931000;2062895;2175000;2323268;2370028;2284566;2013137;2201764;2210494;2081650;2062083;2089161;2097195;2142161;2235425;2234341;2166477;2159899;2293964;2177921;1990813 -5404;'155;Western Europe;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;41300;52200;69100;82600;92900;113400;116300;390200;692100;774400;753100;741600;810500;809100;709300;1015800;766000;1196700;1416800;1413500;1394100;1429900;1763400;1795100;1832800;2036400;2289800;2604400;2530100;2562200;1669600;621598;404000;425800;431000;478400;573000;982510;782000;882047;1133404;1019623;748028;607035;427466;494970;343105;464919;287489;279164;386322;347373;294992;241322;279489;287483;316470;321723;299303;288148;278979;279387;277355 -5404;'155;Western Europe;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;15566;19465;24823;28934;38180;48269;54953;129448;223013;258109;286111;305045;383309;513813;378303;601702;528106;713427;1012429;1113691;1032033;1016080;1279059;1453957;1409903;1801044;2437378;2607275;2839369;2934837;1929201;959258;627376;667190;820783;854404;850321;1504517;981505;1141147;1207446;860139;905178;883075;713615;1188228;624226;1062866;680304;676165;1054772;989801;1022191;777571;848879;803808;804332.93;868908;826751;805908;912339;872347;914917 -5404;'155;Western Europe;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;65800;61000;77300;86600;92500;119000;127400;181300;322300;366800;349400;295700;406000;625400;363100;671700;411600;698200;788000;845300;831600;809300;891400;1146200;1145200;1240500;1473400;1622500;1524100;1728900;628300;568128;319000;356700;421800;590600;620000;1070668;867000;1120199;1129070;860351;779236;593157;682377;1109453;407992;410840;213634;221830;421739;383741;384902;213249;404742;412281;425226;388289;369711;413189;432702;427957;705603 -5404;'155;Western Europe;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;26154;29006;34406;37380;40639;51343;54720;70804;120090;146537;150062;155171;215524;436606;298204;510260;453135;526028;693093;923804;825890;754735;836933;1048346;1060283;1386884;1973677;1852985;1982378;2296835;977078;918915;485805;536090;771832;1099659;1035191;2060205;1391938;1863189;1681377;816057;1165915;1126373;1524364;2872952;746951;1418986;787246;839060;1491645;1390792;1472277;1168859;1474640;1408023;1444017.47;1389021;1348437;1364147;1698879;1645398;2861389 -5404;'155;Western Europe;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25641921.44;27556368;27453070;28067037;34659140;34364518;30810233 -5404;'155;Western Europe;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15879361.21;17071790;16729989;16516661;20512219;20264445;18813378 -5404;'155;Western Europe;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;900454.14;978703;1004700;1027231;1389842;1280619;919271 -5404;'155;Western Europe;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;530736.84;571592;559068;533218;663256;632702;481640 -5404;'155;Western Europe;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;333333.17;372468;374266;469954;696641;579876;425265 -5404;'155;Western Europe;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;303602.69;351622;330184;347799;473191;423901;289690 -5404;'155;Western Europe;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;567120.96;606235;630434;557277;693201;700743;494006 -5404;'155;Western Europe;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;227134.15;219970;228884;185419;190065;208801;191950 -5404;'155;Western Europe;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1581973.82;1810427;1708947;1584673;2508190;2971436;2226806 -5404;'155;Western Europe;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1449441.39;1612528;1558936;1474146;1937882;2271240;1997797 -5404;'155;Western Europe;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;838699.14;931748;917044;878810;1137412;1240200;1026315 -5404;'155;Western Europe;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;415923.95;463974;475485;470129;609801;623286;611769 -5404;'155;Western Europe;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3425717.44;3678923;3670150;3712528;4613073;4286289;4046237 -5404;'155;Western Europe;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3276731.23;3405903;3399317;3364202;4400247;4226130;3734024 -5404;'155;Western Europe;1636;Glue-laminated timber (glulam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3730648;3583308 -5404;'155;Western Europe;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;515096;507532 -5404;'155;Western Europe;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;504801;482497 -5404;'155;Western Europe;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1819465;1827286 -5404;'155;Western Europe;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1247193;1051012 -5404;'155;Western Europe;1688;Cross-laminated timber (CLT or X-lam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1511777;982092 -5404;'155;Western Europe;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;156900;179791 -5404;'155;Western Europe;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;164020;153501 -5404;'155;Western Europe;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;452892;443734 -5404;'155;Western Europe;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;367692;337141 -5404;'155;Western Europe;1684;I-beams (I-joists);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -5404;'155;Western Europe;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17902;13625 -5404;'155;Western Europe;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25617;19918 -5404;'155;Western Europe;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1408;1014 -5404;'155;Western Europe;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4072;1841 -5404;'155;Western Europe;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16573659.22;17575029;17612588;18128501;21528871;21026910;19769553 -5404;'155;Western Europe;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8954601.33;9533480;9351147;9336207;11139421;10720983;10462027 -5404;'155;Western Europe;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;524555.37;565776;535615;594640;741314;717443;576364 -5404;'155;Western Europe;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;344632.18;404161;347462;313586;442139;430877;355415 -5404;'155;Western Europe;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1796862.33;2015762;2004026;2140654;2740438;2841621;2245687 -5404;'155;Western Europe;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;907294.3;1080152;1038574;1025173;1319473;1359227;1170706 -5404;'155;Western Europe;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15132113.54;16472680;16285224;16314028;18761501;20884788;20050220 -5404;'155;Western Europe;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17120960.27;18636285;18062478;17642289;20099428;21129130;20213954 -5404;'155;Western Europe;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;181950.76;205251;196054;171148;202357;234862;209637 -5404;'155;Western Europe;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;499640.19;523658;473188;435147;454214;508442;409771 -5404;'155;Western Europe;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1915459.98;2109565;2005111;1925999;2376087;2618774;2283572 -5404;'155;Western Europe;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3129529.4;3600981;3380145;3257658;3964646;4248573;3619334 -5404;'155;Western Europe;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2803572.48;3029091;2981930;3147916;3032138;3736920;4111946 -5404;'155;Western Europe;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2691916.35;2961103;2885582;2870054;2834604;3360769;3484721 -5404;'155;Western Europe;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6190156.1;6768553;6744224;6821426;8111882;8915032;8258386 -5404;'155;Western Europe;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6857158.12;7361846;7256697;7167040;8360143;8274079;7914524 -5404;'155;Western Europe;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4040974.22;4360220;4357905;4247539;5039037;5379200;5186679 -5404;'155;Western Europe;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3942716.22;4188697;4066866;3912390;4485821;4737267;4785604 -5500;'009;Oceania;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7219625.4;7885973;7382613;7214174;9335153.23;10280237.5;7722578.5 -5500;'009;Oceania;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8667881;9616572;8219156;6922772;8105823.9;7551415.96;6254727.57 -5500;'009;Oceania;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;157236;122944;138925;145653;162044;148524;155051;198091;208039;234838;263558;242288;343256;530691;535297;483134;609667;590294;717599;877427;928059;1020293;721809;878173;981979;971883;1079115;1455649;1673232;1699961;1460561;1562755;1657241;1857300;2203119;2198405;1862452;1764743;1918696;2104625;1586292;1789595;2014408;2423432;2585201;2580748;2839162;3054185;2301138;3127081;3365563;3172036.1;2947726.25;3128279;2764877;2684929;2719798;2948221;2724167;2564162;3484768.23;4019856.5;2870830.5 -5500;'009;Oceania;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;26945;25976;36321;40969;42767;37536;49943;74449;85961;100930;122841;148034;230391;308909;274844;314177;374425;407452;576907;750219;778762;701172;612234;678295;629808;650670;871543;974893;1245659;1390639;1667405;1822684;2422657;2880271;3032977;2791129;2772705;2025579;2284152;2547858;2358225;2833783;2963117;3559396;3675589;3900323;4419438;5106315;4215444;5811567.47;6593616;6227170.52;7007481;7599978;6827809;6841500;8205094;9205673;7836946;6588330;7718867.9;7173067.96;5923334.57 -5500;'009;Oceania;1861;Roundwood;5516;Production;m3;23346121;22509591;23432163;24671837;24917114;25135995;25455767;26391765;27348930;27878449;28635522;28760946;30718140;29330999;31056962;32505733;33258554;33006068;32592237;36385762;37027561;35509186;34348213;35189545;37606489;38931992;38501525;39003874;39838623;43217781;43401874;44225549;47127600;50073362;51414597;51346258;54143196;53600200;55620650;59801256;60606296;60995041;62488052;61640934;61260791;61772896;63607362;63770186;61787805;67804098;70434444;68283882;70095916;73043175;73929694;76651650;85794544;87204633;86627977;80143166;80644039;78249611;75631992 -5500;'009;Oceania;1861;Roundwood;5616;Import quantity;m3;204800;119900;161900;145300;186300;116800;142700;180400;181700;144800;133000;108300;111900;114100;49100;56400;34500;29900;24800;8500;9100;11800;5800;5200;6400;6600;8700;12800;14600;9859;10818;26134;16253;9461;9622;8100;8134;12957;10359;12760;11471;16988;29927;29181;16793;20089;17863;15205;17288;24877;24008;28995;28847;36351;17377;22531;18571;15951;21440;16878;21919.43;31081;14067 -5500;'009;Oceania;1861;Roundwood;5622;Import value;1000 USD;4599;2706;3753;3492;4528;2985;3699;5213;5012;4866;4082;3690;5077;7852;3797;4052;3576;3422;3506;2844;3272;4684;1931;1691;1616;1871;3843;4508;4817;2318;1708;2689;2828;2001;2261;2458;1823;2730;2015;2895;2934;3790;3436;4117;3639;4441;5343;4801;4195;6086;6122;6668.1;7705.25;15040;8133;10549;11136;6707;9788;7024;9235.1;10033;9172 -5500;'009;Oceania;1861;Roundwood;5916;Export quantity;m3;296300;297000;335700;454300;519300;654300;1032000;1744600;1994500;2255300;2532200;2532600;2640000;2323400;1160800;1676700;1715700;1673200;2004300;1936200;1637500;1932200;1901300;2084300;1943900;2084000;2216800;2518109;2948458;3050221;5361140;6813273;6905967;9056038;9257892;9246805;10313184;7025227;9399061;9582139;10384996;11577670;11613835;9373658;9047915;10000800;11337417;11696606;13294577;16695756;19941199;20421725;24073139;25525248;25315562;25421188;30261420;33649917;33134814;30428105;29269082;26212345;26066602 -5500;'009;Oceania;1861;Roundwood;5922;Export value;1000 USD;4091;4115;4781;6060;6976;8544;13330;22795;29684;34269;42471;44890;62312;72372;32838;45287;51183;61917;96676;121586;94525;115533;100502;120138;100758;116417;162421;176807;173800;244611;410033;551684;1005694;1221010;1076658;938840;962933;421323;556510;566725;486654;645151;730072;619001;649962;800106;954679;1358705;1227355;2043747.47;2649857;2496964.52;3320819;3755152;3160060;3282272;4330112;5015303;4083811;3466316;4015556;3395664;2911671 -5500;'009;Oceania;1862;Roundwood, coniferous;5516;Production;m3;6833000;6714000;7276700;7963500;8169900;8527000;9058888;9690000;10706777;11182000;11038111;11450000;13270666;10984000;10740000;12302000;12289000;11910900;12009500;14187500;14938500;14748500;14201500;14041500;15953386;16964762;16463504;16299096;17847303;20682147;21197751;22279711;23979046;26166188;26175188;26995387;27764300;26758830;29137630;32166330;33806330;35769330;35494550;34782550;34011350;34259636;35425451;34940872;34551872;39586750;41770750;42023750;43967750;44221750;44535427;45986103;52350459;53924340;53375565;50673876;52732750;49567750;46982750 -5500;'009;Oceania;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6387;5922;10833;10288;11222;7924;8174 -5500;'009;Oceania;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2800;1901;3744;3654;4048;4339;3043 -5500;'009;Oceania;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22781140;25704596;25766637;24309486;24458923;21251000;21742182 -5500;'009;Oceania;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2890003;3337265;2747962;2433894;3024110;2346990;2047801 -5500;'009;Oceania;1863;Roundwood, non-coniferous;5516;Production;m3;16513121;15795591;16155463;16708337;16747214;16608995;16396879;16701765;16642153;16696449;17597411;17310946;17447474;18346999;20316962;20203733;20969554;21095168;20582737;22198262;22089061;20760686;20146713;21148045;21653103;21967230;22038021;22704778;21991320;22535634;22204123;21945838;23148554;23907174;25239409;24350871;26378896;26841370;26483020;27634926;26799966;25225711;26993502;26858384;27249441;27513260;28181911;28829314;27235933;28217348;28663694;26260132;26128166;28821425;29394267;30665547;33444085;33280293;33252412;29469290;27911289;28681861;28649242 -5500;'009;Oceania;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12184;10029;10607;6590;10697.43;23157;5893 -5500;'009;Oceania;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8336;4806;6044;3370;5187.1;5694;6129 -5500;'009;Oceania;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7480280;7945321;7368177;6118619;4810159;4961345;4324420 -5500;'009;Oceania;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1440109;1678038;1335849;1032422;991446;1048674;863870 -5500;'009;Oceania;1864;Wood fuel;5516;Production;m3;7502021;7486491;7418363;7344237;7328114;7028995;7253767;7406765;7515930;7600449;7706522;7814946;7659140;7877999;7996962;8099733;8243554;8376368;8307837;8455162;8647261;7722486;8134913;8548145;8246789;8450592;8675625;8917474;9168453;9416091;9657497;9891606;10122500;10361862;10614097;10889937;12828755;12764063;12767240;12714546;12635786;11461031;11831279;11542534;11542791;10984016;11109645;10989181;10759800;10786298;10796644;10680874;10682116;10683375;10035930;9984831;10072650;10032341;10045703;9815262;9815239;9858811;10037192 -5500;'009;Oceania;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1446;3736;756;456;470;1063;1063;2150;2261;2361;2361;2251;2251;2251;2259;2257;2252;2252;1414;906;893;1478;1219;1460;1224;209;542;1334;3196;3160.43;1913;2004 -5500;'009;Oceania;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;141;69;39;55;74;74;211;215;222;224;221;221;221;223;222;229;229;222;137;96;320;222;399;551;170;308;553;1078;1587.1;1245;1261 -5500;'009;Oceania;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;51;266;200;100;200;100;596;596;596;596;596;596;596;673;1698;1874;1523;1927;924;2157;9397;7806;26147;93354;162774;24164;39817;61291;51460;19049;25241 -5500;'009;Oceania;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;37;28;27;174;82;15;15;15;15;15;15;15;36;134;157;436;523;198;239;1421;1664;2894;7874;12406;2136;3837;4809;3362;5193;4857 -5500;'009;Oceania;1627;Wood fuel, coniferous;5516;Production;m3;453000;453000;453000;453000;453000;453000;627888;631000;634777;639000;642111;645000;319666;425000;425000;405000;405000;405000;305000;305000;345000;405000;425000;625000;556886;601462;650504;703096;757903;812847;866451;918411;969746;1022888;1078888;1140087;66000;66000;65000;65000;64000;57000;59000;58000;58000;54000;55000;55000;53000;52000;53000;54000;54000;54000;49614;49304;49828;49582;64116;48270;48000;49000;49000 -5500;'009;Oceania;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;97;406;2181;1235;1326;1523 -5500;'009;Oceania;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;81;212;419;514;748;890 -5500;'009;Oceania;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;23660;39315;60964;51321;18734;25026 -5500;'009;Oceania;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1753;3545;4406;3043;2980;3607 -5500;'009;Oceania;1628;Wood fuel, non-coniferous;5516;Production;m3;7049021;7033491;6965363;6891237;6875114;6575995;6625879;6775765;6881153;6961449;7064411;7169946;7339474;7452999;7571962;7694733;7838554;7971368;8002837;8150162;8302261;7317486;7709913;7923145;7689903;7849130;8025121;8214378;8410550;8603244;8791046;8973195;9152754;9338974;9535209;9749850;12762755;12698063;12702240;12649546;12571786;11404031;11772279;11484534;11484791;10930016;11054645;10934181;10706800;10734298;10743644;10626874;10628116;10629375;9986316;9935527;10022822;9982759;9981587;9766992;9767239;9809811;9988192 -5500;'009;Oceania;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;167;445;928;1015;1925.43;587;481 -5500;'009;Oceania;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119;227;341;659;1073.1;497;371 -5500;'009;Oceania;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;162774;504;502;327;139;315;215 -5500;'009;Oceania;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12406;383;292;403;319;2213;1250 -5500;'009;Oceania;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1446;3736;756;456;470;1063;1063;2150;2261;2361;2361;2251;2251;2251;2259;2257;2252;2252;1414;906;893;1478;1219;1460;1224;;;;;;; -5500;'009;Oceania;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;141;69;39;55;74;74;211;215;222;224;221;221;221;223;222;229;229;222;137;96;320;222;399;551;;;;;;; -5500;'009;Oceania;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;51;266;200;100;200;100;596;596;596;596;596;596;596;673;1698;1874;1523;1927;924;2157;9397;7806;26147;93354;;;;;;; -5500;'009;Oceania;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;37;28;27;174;82;15;15;15;15;15;15;15;36;134;157;436;523;198;239;1421;1664;2894;7874;;;;;;; -5500;'009;Oceania;1865;Industrial roundwood;5516;Production;m3;15844100;15023100;16013800;17327600;17589000;18107000;18202000;18985000;19833000;20278000;20929000;20946000;23059000;21453000;23060000;24406000;25015000;24629700;24284400;27930600;28380300;27786700;26213300;26641400;29359700;30481400;29825900;30086400;30670170;33801690;33744377;34333943;37005100;39711500;40800500;40456321;41314441;40836137;42853410;47086710;47970510;49534010;50656773;50098400;49718000;50788880;52497717;52781005;51028005;57017800;59637800;57603008;59413800;62359800;63893764;66666819;75721894;77172292;76582274;70327904;70828800;68390800;65594800 -5500;'009;Oceania;1865;Industrial roundwood;5616;Import quantity;m3;204800;119900;161900;145300;186300;116800;142700;180400;181700;144800;133000;108300;111900;114100;49100;56400;34500;29900;24800;8500;9100;11800;5800;5200;6400;6600;8700;12800;14600;9859;10818;24688;12517;8705;9166;7630;7071;11894;8209;10499;9110;14627;27676;26930;14542;17830;15606;12953;15036;23463;23102;28102;27369;35132;15917;21307;18362;15409;20106;13682;18759;29168;12063 -5500;'009;Oceania;1865;Industrial roundwood;5622;Import value;1000 USD;4599;2706;3753;3492;4528;2985;3699;5213;5012;4866;4082;3690;5077;7852;3797;4052;3576;3422;3506;2844;3272;4684;1931;1691;1616;1871;3843;4508;4817;2318;1708;2615;2687;1932;2222;2403;1749;2656;1804;2680;2712;3566;3215;3896;3418;4218;5121;4572;3966;5864;5985;6572.1;7385.25;14818;7734;9998;10966;6399;9235;5946;7648;8788;7911 -5500;'009;Oceania;1865;Industrial roundwood;5916;Export quantity;m3;296300;297000;335700;454300;519300;654300;1032000;1744600;1994500;2255300;2532200;2532600;2640000;2323400;1160800;1676700;1715700;1673200;2004300;1936200;1637500;1932200;1901300;2084300;1943900;2084000;2216800;2518109;2948458;3050221;5361140;6813222;6905916;9055772;9257692;9246705;10312984;7025127;9398465;9581543;10384400;11577074;11613239;9373062;9047319;10000127;11335719;11694732;13293054;16693829;19940275;20419568;24063742;25517442;25289415;25327834;30098646;33625753;33094997;30366814;29217622;26193296;26041361 -5500;'009;Oceania;1865;Industrial roundwood;5922;Export value;1000 USD;4091;4115;4781;6060;6976;8544;13330;22795;29684;34269;42471;44890;62312;72372;32838;45287;51183;61917;96676;121586;94525;115533;100502;120138;100758;116417;162421;176807;173800;244611;410033;551675;1005685;1220973;1076630;938813;962759;421241;556495;566710;486639;645136;730057;618986;649947;800070;954545;1358548;1226919;2043224.47;2649659;2496725.52;3319398;3753488;3157166;3274398;4317706;5013167;4079974;3461507;4012194;3390471;2906814 -5500;'009;Oceania;1866;Industrial roundwood, coniferous;5516;Production;m3;6380000;6261000;6823700;7510500;7716900;8074000;8431000;9059000;10072000;10543000;10396000;10805000;12951000;10559000;10315000;11897000;11884000;11505900;11704500;13882500;14593500;14343500;13776500;13416500;15396500;16363300;15813000;15596000;17089400;19869300;20331300;21361300;23009300;25143300;25096300;25855300;27698300;26692830;29072630;32101330;33742330;35712330;35435550;34724550;33953350;34205636;35370451;34885872;34498872;39534750;41717750;41969750;43913750;44167750;44485813;45936799;52300631;53874758;53311449;50625606;52684750;49518750;46933750 -5500;'009;Oceania;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2922;5903;19523;6978;3248;5408;3272;1991;4268;5574;3299;2834;6235;11758;18517;7093;10712;8713;8469;7468;15164;12758;20571;20089;24697;7534;7797;6345;5825;10427;8107;9987;6598;6651 -5500;'009;Oceania;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;468;513;1582;1224;922;768;498;205;384;818;347;575;516;766;1189;1072;1182;1090;1373;893;1316;1138;2182;1887;5233;3331;2686;2749;1820;3532;3235;3534;3591;2153 -5500;'009;Oceania;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1684567;3703320;4399147;4539615;5265427;5559443;5987559;6556259;4680659;6654313;6869317;8095497;8905297;8631438;6096490;5800139;6451776;6859466;7374605;9740088;12049540;14408910;14986292;18326900;19034461;19360729;19822461;22781140;25680936;25727322;24248522;24407602;21232266;21717156 -5500;'009;Oceania;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94701;210359;232233;455128;457137;447947;486269;484131;240943;319834;358284;324595;459420;380032;352840;339138;416190;495732;552616;654499;1113700;1478492;1386115;2105390;2143252;1742305;1981721;2890003;3335512;2744417;2429488;3021067;2344010;2044194 -5500;'009;Oceania;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2922;5903;19523;6978;3248;5408;3272;1991;4268;5574;3299;2834;6235;11758;18517;7093;10712;8713;8469;7468;15164;12758;20571;20089;24697;7534;7797;6345;5825;10427;8107;9987;6598;6651 -5500;'009;Oceania;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;468;513;1582;1224;922;768;498;205;384;818;347;575;516;766;1189;1072;1182;1090;1373;893;1316;1138;2182;1887;5233;3331;2686;2749;1820;3532;3235;3534;3591;2153 -5500;'009;Oceania;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1684567;3703320;4399147;4539615;5265427;5559443;5987559;6556259;4680659;6654313;6869317;8095497;8905297;8631438;6096490;5800139;6451776;6859466;7374605;9740088;12049540;14408910;14986292;18326900;19034461;19360729;19822461;22781140;25680936;25727322;24248522;24407602;21232266;21717156 -5500;'009;Oceania;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94701;210359;232233;455128;457137;447947;486269;484131;240943;319834;358284;324595;459420;380032;352840;339138;416190;495732;552616;654499;1113700;1478492;1386115;2105390;2143252;1742305;1981721;2890003;3335512;2744417;2429488;3021067;2344010;2044194 -5500;'009;Oceania;1867;Industrial roundwood, non-coniferous;5516;Production;m3;9464100;8762100;9190100;9817100;9872100;10033000;9771000;9926000;9761000;9735000;10533000;10141000;10108000;10894000;12745000;12509000;13131000;13123800;12579900;14048100;13786800;13443200;12436800;13224900;13963200;14118100;14012900;14490400;13580770;13932390;13413077;12972643;13995800;14568200;15704200;14601021;13616141;14143307;13780780;14985380;14228180;13821680;15221223;15373850;15764650;16583244;17127266;17895133;16529133;17483050;17920050;15633258;15500050;18192050;19407951;20730020;23421263;23297534;23270825;19702298;18144050;18872050;18661050 -5500;'009;Oceania;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6937;4915;5165;5539;5457;3758;4358;5080;7626;2635;7200;6276;8392;15918;8413;7449;7118;6893;4484;7568;8299;10344;7531;7280;10435;8383;13510;12017;9584;9679;5575;8772;22570;5412 -5500;'009;Oceania;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1850;1195;1033;1463;1010;1454;1905;1544;2272;986;2333;2137;3050;2449;2707;2346;3036;4031;3199;3073;4548;4847;4390.1;5498.25;9585;4403;7312;8217;4579;5703;2711;4114;5197;5758 -5500;'009;Oceania;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1365654;1657820;2414075;2366301;3790345;3698249;3259146;3756725;2344468;2744152;2712226;2288903;2671777;2981801;3276572;3247180;3548351;4476253;4320127;3552966;4644289;5531365;5433276;5736842;6482981;5928686;5505373;7317506;7944817;7367675;6118292;4810020;4961030;4324205 -5500;'009;Oceania;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;149910;199674;319442;550557;763836;628683;452544;478628;180298;236661;208426;162044;185716;350025;266146;310809;383880;458813;805932;572420;929524.47;1171167;1110610.52;1214008;1610236;1414861;1292677;1427703;1677655;1335557;1032019;991127;1046461;862620 -5500;'009;Oceania;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2695;2297;1286;1071;539;1249;1049;1063;1063;1063;1063;1139;2139;3281;2226;1628;1029;1460;1411;1847;1311;3363;1143;1622;3849;2594;1361;1763;2370;8154;1004;3111;904;465 -5500;'009;Oceania;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;614;434;186;357;155;426;425;460;334;354;692;612;1240;1129;1172;896;642;811;1202;1301;1527;1415;1024.1;1219;4149;1708;877;1224;1535;4936;642;1640;1405;990 -5500;'009;Oceania;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1350357;1600252;2227959;2193980;3663945;3557849;3253146;3656585;2222097;2605906;2529960;2104937;2422148;2810762;3073873;3134481;3359555;4285550;4103779;3384084;4382571;5286160;5259569;5465427;6270212;5577457;5104240;6253458;6956968;6489713;5167781;4360264;4553108;4112749 -5500;'009;Oceania;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;146507;192684;294037;532173;743805;605147;449523;474791;177239;232857;204862;159022;167227;329304;238925;294772;360337;435069;780308;549559;897906;1135679;1079415;1182106;1560859;1365448;1238683;1294973;1556867;1241749;923694;929161;988635;836955 -5500;'009;Oceania;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4242;2618;3879;4468;4918;2509;3309;4017;6563;1572;6137;5137;6253;12637;6187;5821;6089;5433;3073;5721;6988;6981;6388;5658;6586;5789;12149;10254;7214;1525;4571;5661;21666;4947 -5500;'009;Oceania;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1236;761;847;1106;855;1028;1480;1084;1938;632;1641;1525;1810;1320;1535;1450;2394;3220;1997;1772;3021;3432;3366;4279.25;5436;2695;6435;6993;3044;767;2069;2474;3792;4768 -5500;'009;Oceania;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15297;57568;186116;172321;126400;140400;6000;100140;122371;138246;182266;183966;249629;171039;202699;112699;188796;190703;216348;168882;261718;245205;173707;271415;212769;351229;401133;1064048;987849;877962;950511;449756;407922;211456 -5500;'009;Oceania;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3403;6990;25405;18384;20031;23536;3021;3837;3059;3804;3564;3022;18489;20721;27221;16037;23543;23744;25624;22861;31618.47;35488;31195.52;31902;49377;49413;53994;132730;120788;93808;108325;61966;57826;25665 -5500;'009;Oceania;1868;Sawlogs and veneer logs;5516;Production;m3;12954100;12173100;12733800;13844600;13942000;14322000;14548000;15334000;15566000;15673000;16177000;16201000;16538000;15144000;14224000;15842000;15153000;14879700;14525400;16364400;16646300;16815500;14842000;14418000;16336400;16884400;16502900;16347900;17084370;20424890;20314577;21788143;23830500;26160300;26187300;26913121;27619241;26405137;28986410;29909710;30426510;33212010;33568773;32569400;32165000;33072560;33797526;33365120;33049120;39110800;40000800;40304008;42935800;44230800;44103321;44643090;51520991;53392902;52582743;49560880;52440800;49412800;47593800 -5500;'009;Oceania;1868;Sawlogs and veneer logs;5616;Import quantity;m3;190500;110300;155500;134700;172700;68600;87500;127600;128900;131100;97500;100800;107500;109000;43300;51400;28100;19500;14000;4000;3600;8000;2700;2200;2000;2900;5000;10400;11700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5500;'009;Oceania;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;3987;2426;3397;3068;4069;1998;2679;4302;4101;4285;3203;3317;4818;7468;2785;3262;2794;2429;2466;1598;1262;3004;773;689;555;987;2861;3726;3726;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5500;'009;Oceania;1868;Sawlogs and veneer logs;5916;Export quantity;m3;294500;293000;334000;451400;516100;650200;995700;1717400;1984600;2242900;2495000;2506000;2603200;2181200;1127900;1648000;1670900;1628900;1945500;1892400;1604200;1886400;1872900;2058600;1919500;2069600;2208600;2504709;2907458;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5500;'009;Oceania;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;4041;4001;4736;5971;6894;8416;12668;22270;29401;33888;41804;44278;61236;68759;31867;44424;50031;60508;94402;119610;92127;111858;97306;117917;99203;113958;161698;174520;163689;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5500;'009;Oceania;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;5376000;5136000;5343700;5999500;6161900;6333000;6510000;7133000;7659000;7905000;7683000;8024000;8436000;6648000;6466000;7708000;7291000;7033900;7177500;8618500;8763500;8481500;7790500;7397500;8901500;9334300;8666000;8599000;9427400;12580300;12966300;14589300;15607300;17141300;17031300;18112300;19603300;18576830;21059630;22886330;24330330;26681330;26630550;25514550;24716350;25519316;26246260;25605987;25932987;30187750;31311750;31978750;34520750;35012750;35045363;35539928;41173026;42962206;42302965;39878111;42618750;39651750;38059750 -5500;'009;Oceania;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;5100;8900;10100;8700;4100;9500;17800;17600;12900;4000;4200;6200;6100;3000;2400;5700;2600;2700;2600;2500;2300;1200;1600;1300;1400;1300;1400;700;2100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5500;'009;Oceania;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;150;185;267;221;101;306;514;684;240;179;146;160;196;178;188;327;251;363;775;778;728;374;459;413;388;392;408;213;644;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5500;'009;Oceania;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;261300;268700;277900;359400;446200;544800;796900;1432300;1664000;1810500;1797400;1844400;1915600;1302400;534300;958200;1027200;935900;1236500;983600;531700;481600;509100;467600;364800;392600;439000;830200;1710500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5500;'009;Oceania;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;3199;3396;3546;4519;5588;6687;9700;18363;25154;27639;31973;35344;47984;44426;18085;26635;28812;37699;56662;57246;29776;22398;24880;18395;18794;20896;25495;48058;79682;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5500;'009;Oceania;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;7578100;7037100;7390100;7845100;7780100;7989000;8038000;8201000;7907000;7768000;8494000;8177000;8102000;8496000;7758000;8134000;7862000;7845800;7347900;7745900;7882800;8334000;7051500;7020500;7434900;7550100;7836900;7748900;7656970;7844590;7348277;7198843;8223200;9019000;9156000;8800821;8015941;7828307;7926780;7023380;6096180;6530680;6938223;7054850;7448650;7553244;7551266;7759133;7116133;8923050;8689050;8325258;8415050;9218050;9057958;9103162;10347965;10430696;10279778;9682769;9822050;9761050;9534050 -5500;'009;Oceania;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;185400;101400;145400;126000;168600;59100;69700;110000;116000;127100;93300;94600;101400;106000;40900;45700;25500;16800;11400;1500;1300;6800;1100;900;600;1600;3600;9700;9600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5500;'009;Oceania;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;3837;2241;3130;2847;3968;1692;2165;3618;3861;4106;3057;3157;4622;7290;2597;2935;2543;2066;1691;820;534;2630;314;276;167;595;2453;3513;3082;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5500;'009;Oceania;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;33200;24300;56100;92000;69900;105400;198800;285100;320600;432400;697600;661600;687600;878800;593600;689800;643700;693000;709000;908800;1072500;1404800;1363800;1591000;1554700;1677000;1769600;1674509;1196958;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5500;'009;Oceania;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;842;605;1190;1452;1306;1729;2968;3907;4247;6249;9831;8934;13252;24333;13782;17789;21219;22809;37740;62364;62351;89460;72426;99522;80409;93062;136203;126462;84007;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5500;'009;Oceania;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13883000;13266000;16517000;16861000;15770000;16589000;17038000;17061000;17081320;17950191;18755885;17409885;17332000;19062000;16648000;15814000;17541000;19237255;21510479;23677744;23175673;23348936;19990062;17541000;18273000;17332000 -5500;'009;Oceania;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7702000;7544000;8737000;8878000;8610000;8422000;8861000;8888000;8265320;8646191;8845885;8167885;8935000;10027000;9590000;8957000;8768000;9102251;10045858;10794047;10502258;10541916;10194741;9471000;9391000;8438000 -5500;'009;Oceania;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6181000;5722000;7780000;7983000;7160000;8167000;8177000;8173000;8816000;9304000;9910000;9242000;8397000;9035000;7058000;6857000;8773000;10135004;11464621;12883697;12673415;12807020;9795321;8070000;8882000;8894000 -5500;'009;Oceania;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5916;Export quantity;m3;;;;;;;;;;1200;20000;13000;32000;126000;24000;26000;42000;39000;49500;35000;28400;39100;19400;19400;19400;5500;5500;5500;25000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5500;'009;Oceania;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5922;Export value;1000 USD;;;;;;;;;;12;203;237;756;2908;569;462;889;913;1417;1064;1034;1670;485;485;485;132;132;132;1600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5500;'009;Oceania;1870;Pulpwood and particles (1961-1997);5516;Production;m3;1941000;1972000;2395000;2451000;2539000;2691000;2727000;2717000;3284000;3557000;3745000;3640000;5374000;5081000;7780000;7334000;8767000;8505000;8500000;10178000;10395000;9731000;10083000;10673000;11291000;11938000;12080000;12654000;12481000;12704000;12770000;11957000;12605000;12986000;14020000;12938000;13219000;;;;;;;;;;;;;;;;;;;;;;;;;; -5500;'009;Oceania;1870;Pulpwood and particles (1961-1997);5916;Export quantity;m3;;;;;;;;;;1200;20000;13000;32000;126000;24000;26000;42000;39000;49500;35000;28400;39100;19400;19400;19400;5500;5500;5500;25000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5500;'009;Oceania;1870;Pulpwood and particles (1961-1997);5922;Export value;1000 USD;;;;;;;;;;12;203;237;756;2908;569;462;889;913;1417;1064;1034;1670;485;485;485;132;132;132;1600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5500;'009;Oceania;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;907000;1033000;1351000;1306000;1335000;1503000;1712000;1679000;2110000;2225000;2320000;2311000;4024000;3393000;3403000;3601000;3959000;3808000;3853000;4465000;4978000;5124000;5296000;5362000;5780000;6373000;6512000;6352000;6989000;6924000;7098000;6522000;7070000;7643000;7677000;7320000;7742000;;;;;;;;;;;;;;;;;;;;;;;;;; -5500;'009;Oceania;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;1034000;939000;1044000;1145000;1204000;1188000;1015000;1038000;1174000;1332000;1425000;1329000;1350000;1688000;4377000;3733000;4808000;4697000;4647000;5713000;5417000;4607000;4787000;5311000;5511000;5565000;5568000;6302000;5492000;5780000;5672000;5435000;5535000;5343000;6343000;5618000;5477000;;;;;;;;;;;;;;;;;;;;;;;;;; -5500;'009;Oceania;1871;Other industrial roundwood;5516;Production;m3;949000;878000;885000;1032000;1108000;1094000;927000;934000;983000;1048000;1007000;1105000;1147000;1228000;1056000;1230000;1095000;1245000;1259000;1388200;1339000;1240200;1288300;1550400;1732300;1659000;1243000;1084500;1104800;672800;659800;588800;569600;565200;593200;605200;476200;548000;601000;660000;683000;552000;499000;491000;492000;635000;750000;660000;569000;575000;575000;651000;664000;588000;553188;513250;523159;603717;650595;776962;847000;705000;669000 -5500;'009;Oceania;1871;Other industrial roundwood;5616;Import quantity;m3;14300;9600;6400;10600;13600;48200;55200;52800;52800;13700;35500;7500;4400;5100;5800;5000;6400;10400;10800;4500;5500;3800;3100;3000;4400;3700;3700;2400;2900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5500;'009;Oceania;1871;Other industrial roundwood;5622;Import value;1000 USD;612;280;356;424;459;987;1020;911;911;581;879;373;259;384;1012;790;782;993;1040;1246;2010;1680;1158;1002;1061;884;982;782;1091;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5500;'009;Oceania;1871;Other industrial roundwood;5916;Export quantity;m3;1800;4000;1700;2900;3200;4100;36300;27200;9900;11200;17200;13600;4800;16200;8900;2700;2800;5300;9300;8800;4900;6700;9000;6300;5000;8900;2700;7900;16000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5500;'009;Oceania;1871;Other industrial roundwood;5922;Export value;1000 USD;50;114;45;89;82;128;662;525;283;369;464;375;320;705;402;401;263;496;857;912;1364;2005;2711;1736;1070;2327;591;2155;8511;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5500;'009;Oceania;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;97000;92000;129000;205000;220000;238000;209000;247000;303000;413000;393000;470000;491000;518000;446000;588000;634000;664000;674000;799000;852000;738000;690000;657000;715000;656000;635000;645000;673000;365000;267000;250000;332000;359000;388000;423000;353000;414000;469000;478000;534000;421000;383000;349000;349000;421000;478000;434000;398000;412000;379000;401000;436000;387000;338199;351013;333558;410294;466568;552754;595000;476000;436000 -5500;'009;Oceania;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;852000;786000;756000;827000;888000;856000;718000;687000;680000;635000;614000;635000;656000;710000;610000;642000;461000;581000;585000;589200;487000;502200;598300;893400;1017300;1003000;608000;439500;431800;307800;392800;338800;237600;206200;205200;182200;123200;134000;132000;182000;149000;131000;116000;142000;143000;214000;272000;226000;171000;163000;196000;250000;228000;201000;214989;162237;189601;193423;184027;224208;252000;229000;233000 -5500;'009;Oceania;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;14300;9600;6400;10600;13600;48200;55200;52800;52800;13700;35500;7500;4400;5100;5800;5000;6400;10400;10800;4500;5500;3800;3100;3000;4400;3700;3700;2400;2900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5500;'009;Oceania;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;612;280;356;424;459;987;1020;911;911;581;879;373;259;384;1012;790;782;993;1040;1246;2010;1680;1158;1002;1061;884;982;782;1091;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5500;'009;Oceania;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;1800;4000;1700;2900;3200;4100;36300;27200;9900;11200;17200;13600;4800;16200;8900;2700;2800;5300;9300;8800;4900;6700;9000;6300;5000;8900;2700;7900;16000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5500;'009;Oceania;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;50;114;45;89;82;128;662;525;283;369;464;375;320;705;402;401;263;496;857;912;1364;2005;2711;1736;1070;2327;591;2155;8511;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5500;'009;Oceania;1630;Wood charcoal;5510;Production;t;20681;20938;21203;21471;21341;22219;22100;22387;22578;22874;23246;23744;24133;24649;25153;25443;25755;25565;25717;26028;26434;27163;27307;27634;27963;28264;28547;28810;29145;13813;17641;31405;30572;31528;33140;33297;24069;24259;24518;44767;36951;37138;37329;34526;34724;34914;35106;35303;35955;35159;35874;36083;37459;37775;36734;37918;38102;38291;38481;38675;38869;39070;44465 -5500;'009;Oceania;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;625;1286;172;144;44;249;451;175;485;1244;1065;1110;2110;3110;2807;3400;4928;5205;5337;9330;12528;22463;19161;15596;16839;20700;23069;25783;23894;30553.55;33717.97;32203.97 -5500;'009;Oceania;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;237;463;110;127;25;126;121;85;153;271;313;549;945;1214;1157;1356;2256;2562;2915;4792;6728;10741;9612;8045;9122;12043;12648;13711;13301;20356.33;28036.25;21576.25 -5500;'009;Oceania;1630;Wood charcoal;5910;Export quantity;t;300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1493;424;1100;2400;2000;800;1400;1000;1000;1000;4001;4001;6001;6001;6072;58;983;1393;1366;2878;1540;1612;1601;2155;2145;274;517;464;657;1256.38;812;865 -5500;'009;Oceania;1630;Wood charcoal;5922;Export value;1000 USD;50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;424;254;455;985;980;368;538;413;422;691;2199;2159;3124;3388;3679;34;365;458;421;1047;651;711;731;1170;1134;152;361;310;354;458;172;664 -5500;'009;Oceania;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16148000;15658000;18607000;18821000;18223000;19431000;20497000;21301000;20645000;20930000;23428000;21837000;17722000;17454000;15274000;15274000;15274000;17988281;20148563;22028145;22206274;22402538;19074693;14376400;14828400;14707400 -5500;'009;Oceania;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6292;15248;8700;7677;6279;6487;3894;11550;21560;20897;42856;25535;32682;44569;55882;7185;7867;5817;6505;5730;5637;10405;6857;15279.75;13050;4182 -5500;'009;Oceania;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;669;1291;971;903;769;820;1306;2612;2341;1757;3243;2449;3125;3946;4529;4341;5511;5025;5303;5374;5595;5698;5168;7342.37;7272;5210 -5500;'009;Oceania;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8987700;8805100;10930400;10170400;11239276;11079102;11753038;11285038;12556998;13425826;13381368;10244201;11729027;12390666;10278675;10413374;12796833;13844804;15012499;16423687;17592540;14628000;10541322;12451136.87;13710609;10798716 -5500;'009;Oceania;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;448040;415388;468169;417342;478164;545484;662043;675957;724680;901727;1027172;724321;924105;885648;770349;697482;831931;855564;898004;1006298;1192021;1106972;735443;884171.74;980114;888237 -5500;'009;Oceania;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13965000;13539000;16031000;16306000;15397000;16646000;17648000;18298000;18012000;18630000;21128000;19537000;15145000;14877000;12697000;12697000;12697000;15411281;17571563;19451145;19629274;19825538;16497693;4990400;5299400;4836400 -5500;'009;Oceania;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1983;3361;4687;3000;4000;4400;6000;9000;8002;7002;5104;5081;959;6615;17395;16748;39707;23307;29475;40705;51317;3325;3991;2614;4639;5131;5096;9414;5726;14301.75;12443;3678 -5500;'009;Oceania;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;167;273;314;220;413;534;655;1070;895;775;654;658;809;1888;1619;1038;2421;1586;1723;2299;2741;3259;3906;3523;4200;5052;5504;5462;4854;7118.37;6833;4863 -5500;'009;Oceania;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;183300;536400;1033000;2167000;2808600;3060200;3929000;5454603;5205400;5477000;7130200;6713200;6348900;6239600;7484100;7482700;7282000;8205500;8849000;8558400;5907200;6912000;6057803;7077009;7368720;8391900;7755100;8563600;8987700;8798100;10926400;10165400;11236276;11077090;11750687;11282687;12553996;13420769;13378311;10233136;11669946;12329414;10231570;10380570;12792616;13842616;15010301;16422957;17591465;14627065;10537775;12446078.87;13709654;10779403 -5500;'009;Oceania;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;2064;10826;26076;71619;99399;73667;74005;103306;107819;120960;170180;207979;200046;162788;195993;173278;181322;277319;330763;357789;349485;404755;329627;360771;387745;486608;471803;475043;448040;414258;467324;416765;477744;545127;661849;675687;724507;901269;1026497;722893;917535;877364;765087;691035;829972;854477;897003;1004880;1189061;1104000;732805;883583.74;979639;887662 -5500;'009;Oceania;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 -5500;'009;Oceania;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4731;5585;359;242;1002;1015;292;6248;698;675;1175;1406;2935;4935;4165;4149;3149;2228;3207;3864;4565;3860;3876;3203;1866;599;541;991;1131;978;607;504 -5500;'009;Oceania;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;175;187;12;9;40;41;14;221;76;128;115;162;497;724;722;719;822;863;1402;1647;1788;1082;1605;1502;1103;322;91;236;314;224;439;347 -5500;'009;Oceania;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9197;26574;19800;0;0;0;0;7000;4000;5000;3000;2012;2351;2351;3002;5057;3057;11065;59081;61252;47105;32804;4217;2188;2198;730;1075;935;3547;5058;955;19313 -5500;'009;Oceania;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;404;1029;828;0;0;0;0;1130;845;577;420;357;194;270;173;458;675;1428;6570;8284;5262;6447;1959;1087;1001;1418;2960;2972;2638;588;475;575 -5500;'009;Oceania;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -5500;'009;Oceania;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -5500;'009;Oceania;1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -5500;'009;Oceania;1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -5500;'009;Oceania;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32000;32000;135000;154495;161128;250826;205817;136312;150922;175085;175085;175085 -5500;'009;Oceania;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;551;554;724;1318;3078;6511;4274;7477;9035;17691.34;20544.23;16198.23 -5500;'009;Oceania;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;334;405;470;588;1400;2564;3399;2599;3005;5453.71;7000.57;7592.57 -5500;'009;Oceania;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1639;1046;1576;2489;2329;70814;79354;62054;76932;96984.89;64204;49259 -5500;'009;Oceania;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;496;566;802;1064;1272;7912;8730;7595;10752;13897.18;10169;7778 -5500;'009;Oceania;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32000;32000;135000;153000;160000;250000;205000;135967;150402;174910;174910;174910 -5500;'009;Oceania;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;307;355;449;897;2101;1957;1448;2730;6351;6565;11466;11789 -5500;'009;Oceania;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;136;200;299;352;605;581;547;959;1667;2522;4011;4549 -5500;'009;Oceania;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1422;721;1058;746;814;69814;78334;60967;75402;93997.89;62763;48726 -5500;'009;Oceania;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;343;364;524;375;383;7455;8246;7274;10259;13245.18;9704;7543 -5500;'009;Oceania;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1495;1128;826;817;345;520;175;175;175 -5500;'009;Oceania;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;244;199;275;421;977;4554;2826;4747;2684;11126.34;9078.23;4409.23 -5500;'009;Oceania;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;198;205;171;236;795;1983;2852;1640;1338;2931.71;2989.57;3043.57 -5500;'009;Oceania;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;217;325;518;1743;1515;1000;1020;1087;1530;2987;1441;533 -5500;'009;Oceania;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;153;202;278;689;889;457;484;321;493;652;465;235 -5500;'009;Oceania;1872;Sawnwood;5516;Production;m3;5117600;4884600;4747600;5485900;5623000;5643500;5371400;5609400;5494400;5596000;5404400;5569700;5803400;5870900;5863100;5979000;5732000;5122000;5270000;5801000;6027000;5896650;5391100;5362100;5791490;5874173;5258973;5489273;5561088;5610489;5426989;5906689;6268489;6666789;7005789;6926789;7075789;7369309;7556309;8155509;7905509;8707709;8879409;9298909;9179979;9259479;9712479;9357479;8545479;9376390;8628584;8706078;8805479;8760184;9394479;9531210;9682834;9460826;9441962;8980776;9439667;9493985;8525865 -5500;'009;Oceania;1872;Sawnwood;5616;Import quantity;m3;973800;752263;767900;924200;970300;917400;873200;928300;995700;1003800;1013400;999700;1193900;1389300;978100;1099600;1242600;1008800;1038100;1075700;1154400;1264700;945500;1210900;1526400;1424200;1185574;1353774;1819524;1515306;1336406;1347019;1317134;1207844;1182376;860011;870666;909899;917465;1158838;707607;860188;921879;995665;878430;759285;756349;898529;666990;901592;898566;757581;815827;891794;942504;923980;830967;1170215;775837;709889;1034208;1294923;740217 -5500;'009;Oceania;1872;Sawnwood;5622;Import value;1000 USD;35377;32050;35591;44337;49502;44489;42586;48540;57235;64591;62378;62969;101079;177305;120356;137532;170520;181424;190955;238506;239175;254210;175634;230093;254563;259172;235532;313129;430160;400379;341292;342758;376945;478684;446593;331744;322726;306834;322327;394496;239099;287401;327896;376787;373261;347020;408039;438092;306924;424312;450455;405325;412537;462252;419690;409724;439131;579183;393468;353313;624492;929306;432154 -5500;'009;Oceania;1872;Sawnwood;5916;Export quantity;m3;172700;193100;177000;191900;170400;137500;203400;275900;311900;339800;374100;344100;375800;372500;266000;362284;422400;483900;649800;782400;655700;620000;492900;472300;558700;459000;380851;488167;576909;661502;895002;1023528;1053689;1120027;1171425;1067424;1275546;1301091;1520150;1713882;1812782;1927661;1775470;2101464;2125889;2390606;2237585;2228596;2253050;2533192;2263851;2389862;2387821;2177470;2201638;2112368;2215348;2296143;2231711;2031098;1901344;1672424;1576857 -5500;'009;Oceania;1872;Sawnwood;5922;Export value;1000 USD;9427;9780;8992;9363;9150;7358;11136;13111;14928;18004;19507;21721;25997;37223;28468;35089;39960;49364;80183;117219;95676;81283;65945;84341;78721;73417;63328;88290;128066;137710;184762;211102;296071;344390;348216;303259;343245;321204;395103;420297;394502;492082;461775;629399;615138;654531;675900;655940;569729;771562;731644;764564;801928;761024;694877;702956;731108;761804;689151;694393;797466;736269;636380 -5500;'009;Oceania;1632;Sawnwood, coniferous;5516;Production;m3;2343200;2321700;3167100;2661800;2687300;2702000;2543400;2636200;2675200;2748200;2494500;2702500;2990000;3020000;2993000;3223000;3065000;2717500;2918000;3315500;3553500;3587500;3308650;3327650;3658650;3774250;3152550;3595650;3723448;3650609;3668609;4090609;4554609;4836609;5141609;5158609;5349609;5613609;6025609;6551609;6473609;7213609;7408609;7880609;7765609;7932609;8431609;8099609;7385609;8327520;7735609;7780609;7875609;7907609;8582262;8630859;8706341;8428573;8438219;7916942;8352333;8420994;7609874 -5500;'009;Oceania;1632;Sawnwood, coniferous;5616;Import quantity;m3;722150;595963;582150;729200;692750;719100;700600;690800;766500;717600;733450;738750;847200;931100;680850;733150;788800;680400;729700;756450;847500;961800;727800;919400;1200800;1149800;916324;1089924;1482417;1237506;1147006;1159973;1135173;1055979;1023104;749257;755484;785106;789779;1007185;588489;725141;767712;808486;704850;596645;573410;753063;559488;784180;781556;650464;716338;778514;853471;815367;734316;1080615;691507;629611;917124;1195236;658991 -5500;'009;Oceania;1632;Sawnwood, coniferous;5622;Import value;1000 USD;23827;24294;25949;33762;33163;33402;32846;34182;43189;46556;43363;45203;68158;113519;76085;86601;100100;123839;127730;151950;149807;169646;122865;157116;130999;192926;162166;229124;316911;291125;260593;261748;287261;379275;345779;259758;253190;243243;250705;310910;178745;217502;248501;275517;263934;230565;269546;313746;213070;317559;329138;283199;304093;346960;326979;319180;340551;479843;306396;271537;517343;805075;343183 -5500;'009;Oceania;1632;Sawnwood, coniferous;5916;Export quantity;m3;95300;113450;112550;129250;112700;96650;138800;233650;267000;284400;325500;289800;277200;268750;192700;277917;330000;395600;541000;651250;573300;539600;422750;403300;499800;409700;353300;423100;515200;599600;864400;920739;993599;1048990;1113908;993708;1185804;1215547;1417511;1587797;1693297;1831967;1680040;1985421;2019830;2267929;2120070;2091911;2146542;2410728;2118596;2318407;2270510;2064759;2071821;2000468;2099816;2121619;2004893;1921118;1664096;1488456;1457554 -5500;'009;Oceania;1632;Sawnwood, coniferous;5922;Export value;1000 USD;4406;4946;5023;5573;5189;4424;6758;9894;11301;13428;15868;15670;15704;22075;17869;21828;24390;34038;58433;85482;73901;60267;49196;66257;64272;60161;55627;66844;105562;116553;173253;186404;277436;318416;321996;266095;301746;291170;356541;371726;356319;446390;420827;570246;556916;588363;610659;567189;506192;683523;654564;698236;730564;690007;635019;638670;668567;698699;613046;591319;696084;649934;566938 -5500;'009;Oceania;1633;Sawnwood, non-coniferous;5516;Production;m3;2774400;2562900;1580500;2824100;2935700;2941500;2828000;2973200;2819200;2847800;2909900;2867200;2813400;2850900;2870100;2756000;2667000;2404500;2352000;2485500;2473500;2309150;2082450;2034450;2132840;2099923;2106423;1893623;1837640;1959880;1758380;1816080;1713880;1830180;1864180;1768180;1726180;1755700;1530700;1603900;1431900;1494100;1470800;1418300;1414370;1326870;1280870;1257870;1159870;1048870;892975;925469;929870;852575;812217;900351;976493;1032253;1003743;1063834;1087334;1072991;915991 -5500;'009;Oceania;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;251650;156300;185750;195000;277550;198300;172600;237500;229200;286200;279950;260950;346700;458200;297250;366450;453800;328400;308400;319250;306900;302900;217700;291500;325600;274400;269250;263850;337107;277800;189400;187046;181961;151865;159272;110754;115182;124793;127686;151653;119118;135047;154167;187179;173580;162640;182939;145466;107502;117412;117010;107117;99489;113280;89033;108613;96651;89600;84330;80278;117084;99687;81226 -5500;'009;Oceania;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;11550;7756;9642;10575;16339;11087;9740;14358;14046;18035;19015;17766;32921;63786;44271;50931;70420;57585;63225;86556;89368;84564;52769;72977;123564;66246;73366;84005;113249;109254;80699;81010;89684;99409;100814;71986;69536;63591;71622;83586;60354;69899;79395;101270;109327;116455;138493;124346;93854;106753;121317;122126;108444;115292;92711;90544;98580;99340;87072;81776;107149;124231;88971 -5500;'009;Oceania;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;77400;79650;64450;62650;57700;40850;64600;42250;44900;55400;48600;54300;98600;103750;73300;84367;92400;88300;108800;131150;82400;80400;70150;69000;58900;49300;27551;65067;61709;61902;30602;102789;60090;71037;57517;73716;89742;85544;102639;126085;119485;95694;95430;116043;106059;122677;117515;136685;106508;122464;145255;71455;117311;112711;129817;111900;115532;174524;226818;109980;237248;183968;119303 -5500;'009;Oceania;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;5021;4834;3969;3790;3961;2934;4378;3217;3627;4576;3639;6051;10293;15148;10599;13261;15570;15326;21750;31737;21775;21016;16749;18084;14449;13256;7701;21446;22504;21157;11509;24698;18635;25974;26220;37164;41499;30034;38562;48571;38183;45692;40948;59153;58222;66168;65241;88751;63537;88039;77080;66328;71364;71017;59858;64286;62541;63105;76105;103074;101382;86335;69442 -5500;'009;Oceania;1634;Veneer sheets;5516;Production;m3;31300;28200;38300;31600;35800;43500;37500;41500;47100;47300;35800;29900;41400;29500;62700;52500;49000;51300;57000;48300;55000;60000;56000;57000;58000;58400;58300;63600;63600;76600;92100;104100;84935;119004;140090;150183;327375;278000;375000;427000;523000;633000;727000;774000;773849;791000;662000;691000;611000;876433;947366;874674;816315;867353;825738;726160;703165;700266;700014;583720;681214;686528;593825 -5500;'009;Oceania;1634;Veneer sheets;5616;Import quantity;m3;3200;2800;4600;4800;7800;6700;7300;12000;18100;19900;20600;21200;21300;31400;40800;27400;27900;20700;19700;19600;23400;24000;19000;23300;27700;24000;20800;26900;30000;24000;13100;16980;14751;24293;22935;13726;18957;23496;20200;17313;16391;20249;17217;21568;25923;34610;47683;35901;19187;10924;18661;15117;8817;10295;14931;13314;15766;13989;16666;12623;13018;13350;7555 -5500;'009;Oceania;1634;Veneer sheets;5622;Import value;1000 USD;534;559;928;1023;1657;1490;1886;2577;3926;3924;4359;4507;6176;11825;10210;11466;11515;8508;11122;12103;14496;12372;11721;14733;14061;15049;13811;18235;23172;20935;13253;14410;16768;16714;20713;18354;16655;16711;18381;16422;12325;14414;17020;18713;21611;34027;41140;32422;20540;23007;34398;30983;21888;21206;26505;19777;17775;16917;19778;15989;26234;24031;18010 -5500;'009;Oceania;1634;Veneer sheets;5916;Export quantity;m3;1000;1100;1100;1100;900;1400;1300;2900;3700;4100;5700;4800;5800;7200;17900;11900;10000;10200;13200;12200;16000;14700;16700;15400;16200;4100;4400;3700;7100;6400;6300;7124;11004;19118;18600;17500;18531;22431;24831;33000;64000;138277;200917;206222;209889;197219;164389;219042;217592;197007;201431;180962;166041;167990;155969;151028;168454;181432;174764;133738;150398;152051;117405 -5500;'009;Oceania;1634;Veneer sheets;5922;Export value;1000 USD;156;162;171;208;154;245;276;327;538;864;978;890;1481;1667;1498;1524;1492;1589;2744;2609;4095;3798;3588;4236;3877;3400;4261;3009;4643;4422;3969;5060;7980;11357;14156;14394;12005;9583;9969;12590;14357;37936;56340;74774;86733;52018;48045;63889;59263;90419;113457;81694;61442;66519;65916;65211;71871;62843;57109;48956;50917;58212;42744 -5500;'009;Oceania;1873;Wood-based panels;5516;Production;m3;299300;291500;1031300;373500;438200;535700;549700;627600;657900;761300;787000;738100;916700;987900;889300;1029900;1025500;1042600;1052300;1148700;1194000;1201200;1032900;1189900;1273200;1311900;1479300;1601200;1720500;1657000;1577500;1634500;1769290;2043562;2112426;2298154;2411077;2501000;2705000;3064000;3060000;3289056;3484714;3579946;3473386;3573889;3327859;3248030;2790803;2837773;3023425;2778784;2678178;2816117;2992866;3152485;3157846;3090193;3051137;2814794;2990325;2956401;2748602 -5500;'009;Oceania;1873;Wood-based panels;5616;Import quantity;m3;27951;29380;28321;28534;39800;51290;58101;66354;63068;60086;69739;68084;85900;114193;98395;125006;107806;83506;100600;85400;98800;106800;84100;105700;104109;112664;104303;98138;107357;166321;182521;233596;236096;231157;272611;227604;235826;250666;334438;357235;308057;389797;386308;443976;429552;455179;496902;511322;394392;594102;608470;657981;613926;722799;773918;737805;884669;1092798;1004606;951240;1386664.91;1288175;1192401 -5500;'009;Oceania;1873;Wood-based panels;5622;Import value;1000 USD;3728;3708;3491;3849;5337;6475;6953;8810;8368;9277;10582;10253;14437;27843;22624;30984;32802;27357;38673;39543;47066;48551;38835;44087;35811;38649;40519;48414;49615;67206;66576;86413;82295;101767;111248;101613;95919;95568;105412;107804;86197;125348;139370;171157;182616;215446;259953;258784;194338;326266;358456;392568;370548;433733;393600;381948;480052;586658;557628;546933;913613;997615;719889 -5500;'009;Oceania;1873;Wood-based panels;5916;Export quantity;m3;17200;20500;26700;38000;45700;48755;47864;57109;74055;78302;97928;83684;104756;66307;67413;38200;36600;57800;108000;144300;141600;101900;114400;97700;80500;98300;168500;263300;291300;413800;506100;614272;598020;782814;825319;785905;833277;778877;1015072;1165072;1301072;1338044;1373969;1416078;1415137;1330641;1199427;1009927;906356;826559;908142;846568;751341;783762;843078;860634;843624;850325;710932;733608;746894;756741.59;580068.59 -5500;'009;Oceania;1873;Wood-based panels;5922;Export value;1000 USD;2818;2993;2935;4074;4758;4796;5190;5884;6667;7697;9127;8459;11427;11477;9437;9112;8550;12646;24939;35234;36029;28092;26564;23056;16370;22260;40945;46870;87861;113169;138099;165919;187138;299097;320360;301275;276944;199604;263156;285818;296213;373944;337066;455301;448482;399521;415018;373668;306481;342388;394355;390645;329853;334462;359669;285749;294717;345538;319772;270107;275264;294995.72;244041.72 -5500;'009;Oceania;1640;Plywood and LVL;5516;Production;m3;140800;136600;155200;140100;142000;137100;128400;140800;134600;175800;187700;172800;193800;186300;141000;115500;127500;148600;147300;154700;161600;161000;138900;142900;158200;171900;180300;186200;206500;211500;173500;202500;232290;290562;321426;314154;361077;373000;421000;458000;434000;505056;582714;568147;581596;581066;578593;546540;398490;503941;570069;562516;525376;594185;595075;671490;661872;588216;615508;526398;552050;553491;469418 -5500;'009;Oceania;1640;Plywood and LVL;5616;Import quantity;m3;18251;16280;14321;15834;24500;29700;31100;42300;40300;47100;56500;56100;66400;92300;70500;106700;91800;74900;90300;76000;89600;96900;71000;90700;84524;94090;81078;82390;85266;88591;74891;98638;87238;83959;91635;87684;97819;114415;133583;135617;127033;166214;199964;228700;234276;279115;258403;287267;213732;368124;346290;388446;339855;458760;457810;427616;501220;648093;584789;582969;984975;930390;767306 -5500;'009;Oceania;1640;Plywood and LVL;5622;Import value;1000 USD;3105;2853;2562;3056;4389;5322;5816;7464;7124;8174;9341;9080;12625;25292;18879;27804;29693;25014;35856;36608;44051;45316;34659;39957;31184;34059;33011;42265;39704;40611;34195;44147;35073;45001;47211;46257;49535;52301;59819;57859;49370;78167;90171;105334;115794;145705;169807;166525;115130;220035;223764;250618;226819;275789;250610;237659;319089;395632;380999;393722;709307;782907;532963 -5500;'009;Oceania;1640;Plywood and LVL;5916;Export quantity;m3;10200;12100;7900;9500;9900;8600;11200;12200;14500;19000;23300;16700;22400;21300;14500;12100;10900;17600;33900;35700;46800;36900;25200;18100;15700;18700;21000;15900;22200;23500;30800;56943;64722;96614;132819;112205;107477;110877;135072;115072;122072;120698;120711;153789;123192;91011;89051;110551;90036;102746;113141;97770;68205;74376;76268;71153;101109;126083;119619;99240;63038;63450;58173 -5500;'009;Oceania;1640;Plywood and LVL;5922;Export value;1000 USD;2227;2324;1763;2358;2455;2504;2868;3110;3344;3987;4306;3897;5541;6962;4966;5964;5063;7006;12030;15584;19008;15574;11001;9204;6853;7451;8490;11469;14795;14254;15445;23163;29028;55884;72593;81237;75832;59613;72472;63532;67544;87511;90002;127344;105384;83191;93787;89334;73687;101643;125024;113522;81430;48096;41999;39347;61205;101141;93554;73252;53415;46737;50706 -5500;'009;Oceania;1607;Laminated Veneer Lumber (LVL);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;360352;256000 -5500;'009;Oceania;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109908;111182 -5500;'009;Oceania;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105059;88344 -5500;'009;Oceania;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28851;37773 -5500;'009;Oceania;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19643;24965 -5500;'009;Oceania;1646;Particle board and OSB (1961-1994);5516;Production;m3;13200;20900;729800;64800;99800;148400;177900;229200;274500;317700;337800;320500;462000;544800;507000;641000;608000;638000;652000;769000;791000;792000;675000;803000;863000;868000;925000;899000;970000;895000;794000;804000;888000;1001000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5500;'009;Oceania;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;8000;7900;8600;8500;11800;16600;17400;16800;14640;3200;3200;4400;13200;15900;22100;8500;5000;3800;4300;4900;5000;5400;6200;6800;11608;10986;14987;6776;8693;15299;19299;26177;23891;25287;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5500;'009;Oceania;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;350;389;387;357;505;640;681;718;450;328;350;373;856;1333;2353;1298;1014;939;1277;1720;1878;2038;2214;1907;2559;2570;5177;2757;3000;5401;5080;6848;5979;6182;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5500;'009;Oceania;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;100;100;200;500;1700;2000;2200;7200;4800;5300;3700;8500;8300;14100;5300;8800;20300;49500;83400;64700;36900;53200;45900;38400;38600;37500;44700;48900;85100;115000;89131;129719;182400;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5500;'009;Oceania;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;5;4;16;42;116;170;180;277;583;564;456;832;868;391;747;1187;2761;8099;14196;9577;6047;7354;6975;5866;5128;6435;9164;12182;17726;26538;20200;32718;51648;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5500;'009;Oceania;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1031000;992000;1005000;1047000;1079000;1190000;1095000;1170000;1247000;1291799;1181790;1243823;1189266;1183490;1066313;1070045;1142196;1029703;987037;1028994;1104223;1121659;1125461;1117124;1100078;1077161;1110637;1093316;1084844 -5500;'009;Oceania;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37959;27211;20389;13964;24668;13025;38874;100703;83879;88663;76663;57441;84258;54503;37972;58639;70403;74610;67072;73483;79267;68670;101432;116549;135589;87991;114235.3;85461;162370 -5500;'009;Oceania;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8128;7090;5456;4441;7298;4326;6015;15935;15381;21549;19269;14800;22640;17475;14785;17662;23616;25403;23333;26727;23726;23325;34306;39796;42006;27615;45693;38005;53491 -5500;'009;Oceania;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;192200;229300;197900;131000;132000;126000;115000;116448;145228;140962;131618;121322;143046;135046;99206;72496;74635;71829;79926;85364;85088;78809;86065;79843;87105;60580;92577;74351;69140 -5500;'009;Oceania;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64038;80494;69049;33403;32057;29027;28642;36391;43744;55588;46075;38230;46974;43164;36515;33392;35970;34950;36062;32383;35625;26903;21718;27382;24329;20720;21941;18206;16240 -5500;'009;Oceania;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -5500;'009;Oceania;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7564;898;898;198;1786;2656;2656;1985;14204;12639;12305;26273;25797;16286;28461;26240;25732;26509;35021;45219;32453;30096;41228;67176;20810 -5500;'009;Oceania;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;255;255;100;855;436;436;1035;6363;4682;3441;6826;8663;8537;10913;10688;9414;10711;13475;18270;12040;12183;19510;39430;10687 -5500;'009;Oceania;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;227;0;0;34;5;111;44.59;44.59 -5500;'009;Oceania;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;222;0;0;8;3;46;39.72;39.72 -5500;'009;Oceania;1874;Fibreboard;5516;Production;m3;145300;134000;146300;168600;196400;250200;243400;257600;248800;267800;261500;244800;260900;256800;241300;273400;290000;256000;253000;225000;241400;248200;219000;244000;252000;272000;374000;516000;544000;550500;610000;628000;649000;752000;760000;992000;1045000;1081000;1205000;1416000;1531000;1614000;1655000;1720000;1710000;1749000;1560000;1518000;1326000;1263787;1311160;1186565;1165765;1192938;1293568;1359336;1370513;1384853;1335551;1211235;1327638;1309594;1194340 -5500;'009;Oceania;1874;Fibreboard;5616;Import quantity;m3;1700;5200;5400;4200;3500;4990;9601;7254;8128;9786;10039;7584;6300;5993;5795;9806;11006;4806;6000;4500;4200;4500;6900;8200;7977;7588;8238;8972;13398;62431;88331;108781;124967;121911;143017;112709;117618;122287;168623;207695;141252;122682;100679;123957;115957;116638;140037;156913;130383;141066;165980;178639;178538;164316;211109;215010;246996;282937;251775;250184;246226.6;205148;241915 -5500;'009;Oceania;1874;Fibreboard;5622;Import value;1000 USD;273;466;542;436;443;513;456;628;794;775;891;800;956;1218;1392;1882;2095;1404;1540;1215;1137;1197;1962;2223;2068;2020;2331;3392;6911;21194;27301;35418;41243;50584;55909;48266;40928;38826;38219;45364;30557;31146;32963;43838;47117;53906;61143;70102;60982;81743;102413;108010;109483;120529;109850;110253;113182;132960;122583;113413;139103;137273;122748 -5500;'009;Oceania;1874;Fibreboard;5916;Export quantity;m3;7000;8300;18700;28300;35300;38455;34664;42709;52355;54502;69328;63284;73856;36707;38813;20800;16900;19900;24600;25200;30100;28100;36000;33700;26400;41000;110000;202700;220200;305200;360300;468198;403579;503800;500300;444400;527900;537000;748000;924000;1064000;1100898;1108030;1121327;1160327;1118308;967329;764329;717113;651316;720365;676968;603209;624021;681721;710445;656450;644399;504174;573783;591168;618896;452711 -5500;'009;Oceania;1874;Fibreboard;5922;Export value;1000 USD;591;664;1168;1700;2261;2176;2152;2594;3046;3127;4257;4106;5054;3647;4080;2401;2300;2879;4810;5454;7444;6471;8209;6877;3651;9681;26020;26237;60884;81189;96116;122556;125392;191565;183729;139544;132063;106588;158627;193259;200027;250042;203320;272369;297023;278100;274256;241169;196278;207352;233360;242172;212360;253982;282044;219277;211794;217015;201881;176132;199862;230013;177056 -5500;'009;Oceania;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56000;51000;54000;51000;52000;58000;60000;65000;12000;62000;64000;53000;52000;47000;49000;40000;0;0;0;0;0;0;0;0;0;0;0;0;0 -5500;'009;Oceania;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19600;14600;10631;13803;42447;14894;9905;10893;12489;27544;35544;44861;36177;39575;33308;51035;69933;76576;87249;86052;96120;98727;113053;107994;87253;72383;74574;68207;68198 -5500;'009;Oceania;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8205;7526;5245;6742;6300;5779;4828;5435;7817;16055;21069;27675;27282;28316;23718;39149;56810;62400;63993;69357;57912;57055;58918;58526;52148;42927;53511;52478;44666 -5500;'009;Oceania;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9000;3300;3300;7000;7000;13000;18000;20009;15009;18661;18661;14642;15640;4640;2197;2673;3668;2435;3687;4720;10909;21526;3901;2267;3032;6375;8790;5219;4012 -5500;'009;Oceania;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1894;1522;1464;2174;4013;7939;7941;6407;5562;7336;8308;6919;6310;1814;1550;1847;2670;2048;2569;2150;3087;5260;2625;2450;2056;1585;2536;1504;1563 -5500;'009;Oceania;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;540000;786000;853000;899000;1025000;1241000;1350000;1419000;1627000;1639000;1622000;1670000;1481000;1454000;1277000;1223787;1311160;1186565;1165765;1192938;1293568;1359336;1370513;1384853;1335551;1211235;1327638;1309594;1194340 -5500;'009;Oceania;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106284;83659;87452;84672;95991;156134;114849;91000;62474;71992;54992;46501;85890;97843;85958;79144;86727;92051;83400;73723;107303;107909;126411;166749;156705;162094;165190.6;122937;163718 -5500;'009;Oceania;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41716;35724;28385;24866;23240;32251;21265;20498;17065;21237;17412;17965;29200;36981;33569;38867;41331;41067;41962;48495;49058;49643;50392;69034;68222;67841;83819;81260;75228 -5500;'009;Oceania;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;480200;430700;503600;518000;718000;895000;1032000;1061000;1059000;1073570;1108570;1050570;924570;757570;705571;639278;707353;665210;594747;614226;665027;686527;651380;641152;500415;565661;574701;604773;436972 -5500;'009;Oceania;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;179262;135749;127541;102561;150637;180841;188472;238206;189268;255180;277180;258316;259780;237882;191839;203420;228761;237860;207814;247502;276495;213189;208859;214236;199725;174384;196730;227908;174395 -5500;'009;Oceania;1650;Other fibreboard;5516;Production;m3;16100;14200;14400;15300;15700;63200;60000;61600;62800;72800;74000;69200;75200;72400;76800;116400;130000;127000;128000;45000;42400;45200;39000;44000;45000;48000;67000;99000;108000;112500;128000;133000;138000;161000;164000;155000;138000;131000;128000;117000;121000;130000;16000;19000;24000;26000;27000;17000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -5500;'009;Oceania;1650;Other fibreboard;5616;Import quantity;m3;100;200;100;100;100;1600;6000;2400;2000;4000;2800;2800;1200;1400;2400;700;1200;600;800;800;800;1000;1000;900;500;700;700;3000;2200;1400;4400;15463;14130;16394;17133;14450;19535;23812;30185;36667;16498;20789;25716;24421;25421;25276;17970;19495;11117;10887;9320;10012;7889;4541;7686;8374;7532;8194;7817;15707;6462;14004;9999 -5500;'009;Oceania;1650;Other fibreboard;5622;Import value;1000 USD;37;38;42;35;61;141;107;150;158;110;75;83;104;122;207;90;194;73;164;175;175;223;163;156;77;164;164;1030;830;460;1884;5454;4491;6132;5988;5016;7298;7218;8679;7334;4464;5213;8081;6546;8636;8266;4661;4805;3695;3727;4272;4543;3528;2677;2880;3555;3872;5400;2213;2645;1773;3535;2854 -5500;'009;Oceania;1650;Other fibreboard;5916;Export quantity;m3;;100;300;300;400;1600;1600;800;1600;2800;3200;4000;3200;800;800;900;1200;1500;5700;1600;1400;1700;1700;6400;3600;1300;1800;10200;15800;38700;27900;26194;14221;13300;11100;10400;21000;12000;23000;16000;14000;19889;34021;29096;33096;53096;27119;2119;9345;9365;9344;9323;4775;5075;5785;2392;1169;980;727;1747;7677;8904;11727 -5500;'009;Oceania;1650;Other fibreboard;5922;Export value;1000 USD;;39;54;52;79;72;91;68;82;95;124;121;128;129;169;72;79;245;1118;407;392;272;271;733;778;208;476;429;9784;16689;15705;6852;4128;1926;2573;2273;3058;1853;3977;4479;3614;5429;8490;9853;11535;12865;8166;1473;2889;2085;1929;2264;1977;4330;2462;828;310;329;100;163;596;601;1098 -5500;'009;Oceania;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;129200;119800;131900;153300;180700;187000;183400;196000;186000;195000;187500;175600;185700;184400;164500;157000;160000;129000;125000;180000;199000;203000;180000;200000;207000;224000;307000;417000;436000;438000;482000;495000;511000;591000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5500;'009;Oceania;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;1600;5000;5300;4100;3400;3390;3601;4854;6128;5786;7239;4784;5100;4593;3395;9106;9806;4206;5200;3700;3400;3500;5900;7300;7477;6888;7538;5972;11198;61031;83931;93318;110837;105517;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5500;'009;Oceania;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;236;428;500;401;382;372;349;478;636;665;816;717;852;1096;1185;1792;1901;1331;1376;1040;962;974;1799;2067;1991;1856;2167;2362;6081;20734;25417;29964;36752;44452;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5500;'009;Oceania;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;7000;8200;18400;28000;34900;36855;33064;41909;50755;51702;66128;59284;70656;35907;38013;19900;15700;18400;18900;23600;28700;26400;34300;27300;22800;39700;108200;192500;204400;266500;332400;442004;389358;490500;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5500;'009;Oceania;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;591;625;1114;1648;2182;2104;2061;2526;2964;3032;4133;3985;4926;3518;3911;2329;2221;2634;3692;5047;7052;6199;7938;6144;2873;9473;25544;25808;51100;64500;80411;115704;121264;189639;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5500;'009;Oceania;1879;Total fibre furnish;5510;Production;t;652000;691500;835400;914400;990100;775100;845000;869500;996000;1551200;1581800;1642900;1818000;2020000;1996000;2177000;2215000;2291000;2275000;2445000;2529000;2568000;2384000;2501000;2694000;2655000;2774000;3074000;3061000;3068000;3337000;3424000;3513000;3474000;3615000;3816000;3989000;3907000;3995000;4717000;4697000;4806000;4672000;4870787;5176961;5421732;5738040;6272681;6129386;6599795;6707264;6773490;6439927;6559529;6458189;6621264;6529853;6565488;6429320;5800408;5782281;5752187;5062406 -5500;'009;Oceania;1879;Total fibre furnish;5610;Import quantity;t;7100;8000;12200;11000;14100;18400;17900;254700;271300;329200;306600;250500;323100;359000;309900;253000;286600;269700;300900;292700;306200;267700;224900;250700;212500;242700;280900;301200;276200;281500;203500;268571;279534;261451;238549;227169;264879;245827;360072;342422;322722;356727;366522;435596;388655;365226;427114;450438;304942;265869;259224;275859;289210;340015;349783;334028;353884;373229;347760;360437;429758.21;437899;311612 -5500;'009;Oceania;1879;Total fibre furnish;5622;Import value;1000 USD;508;573;889;902;1030;1939;1587;27863;30128;43198;43594;35249;53033;67912;92955;71342;75093;66196;81103;107457;128683;109304;77905;93569;77598;76220;130803;186204;183172;194361;120616;129283;112808;100190;133592;157017;106741;93891;131968;177581;127495;129123;138232;173236;183099;190523;255172;289327;156432;190242;204276;182476;171855;207354;192481;190699;192999;234180;231410;191157;303790.54;349807;238356 -5500;'009;Oceania;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;100;94000;79500;97200;100400;112000;144500;236800;340200;381600;459200;443700;472300;483300;527100;430300;494300;495200;472200;555900;564700;574500;660000;750000;755700;743093;838386;870400;938800;906200;732700;877000;1006000;1037849;1146249;1177338;1197543;1532751;1872769;2056352;2322440;2494379;2488677;2453812;2420424;2649887;2587022;2602845;2669656;2591479;2657696;2361940;2329079;2199794;2261528.46;2193266;2050686 -5500;'009;Oceania;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;15;7688;7498;9952;10773;12702;20313;36516;66644;63924;71888;74167;112889;131379;144357;117980;116351;118775;106730;120360;159899;162664;262376;266699;230688;222509;221415;253919;383931;299118;220504;223369;226792;334663;271508;266916;287525;410310;441249;525125;670148;698014;554421;737685;796124;724260;734910;779816;702628;665479;803662;818521;628224;547394;781861.31;852457;546942 -5500;'009;Oceania;1878;Pulp for paper;5510;Production;t;652000;691500;835400;914400;990100;775100;845000;869500;996000;1123200;1137800;1174900;1326000;1505000;1524000;1660000;1665000;1699000;1699000;1824000;1913000;1896000;1794000;1905000;2033000;2032000;2039000;2217000;2307000;2281000;2399000;2310000;2370000;2362000;2420000;2316000;2352000;2354000;2349000;2634000;2707000;2945000;2589000;2703787;2763961;2640732;2715040;2988681;2746386;2846795;3034264;3010490;2864049;2948442;2879964;2867502;2843188;2953392;2962914;2726751;2717875;2678781;2021000 -5500;'009;Oceania;1878;Pulp for paper;5610;Import quantity;t;7100;8000;12200;11000;14100;18400;17900;254700;271300;322200;299600;243500;316100;352300;303800;237600;278100;239600;279900;281700;286400;261800;220800;246000;211200;242500;280400;298800;274100;279500;199800;239209;253695;240959;214160;201060;217470;202269;304362;298069;292169;319169;338049;375263;378163;353001;415260;443613;300850;260983;256124;272671;284261;335165;345685;331617;347766;364408;338763;338456;423538.21;419283;310353 -5500;'009;Oceania;1878;Pulp for paper;5622;Import value;1000 USD;508;573;889;902;1030;1939;1587;27863;30128;42652;43048;34703;52487;66700;91945;69274;74074;62351;77964;105255;125110;108554;77356;92110;77425;76202;130659;185643;182904;193765;119393;125309;110109;97256;129644;152238;100165;89395;127486;172171;123541;124423;134301;169250;180991;187835;252119;287835;155363;189075;202872;181400;169935;205447;191378;190225;192420;233005;230025;188406;303376.54;348713;237978 -5500;'009;Oceania;1878;Pulp for paper;5910;Export quantity;t;;;;;;;100;94000;79500;95200;97400;109000;141500;232000;335200;374600;451800;434900;463900;475100;518000;420700;470500;458900;428200;503800;483400;483400;567900;625600;648200;638024;698839;665600;640900;679800;586000;708000;627000;743600;797000;771500;678001;865002;843002;848002;877002;808002;901791;797125;826329;853640;886105;897762;935351;928724;946831;889731;953884;880761;884127;879792;638258 -5500;'009;Oceania;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;15;7688;7498;9847;10622;12551;20162;35802;66224;63509;71459;73607;111972;130369;143154;116392;113501;114907;100951;113915;149796;149796;248628;249503;218476;211382;203443;235844;338330;267333;205676;210179;199173;306823;235141;228486;236859;338406;321907;385992;458216;418845;376770;465293;494199;439201;473427;511586;469518;437445;530819;596333;472105;408508;525054.34;604628;386570 -5500;'009;Oceania;1875;Wood pulp;5510;Production;t;648100;688400;832400;912400;988100;772100;842000;866500;993000;1120200;1134800;1174900;1326000;1505000;1524000;1660000;1663000;1695000;1693000;1819000;1908000;1887000;1793000;1895000;2022000;2020000;2027000;2205000;2295000;2269000;2387000;2306000;2369000;2361000;2418000;2314000;2357000;2354000;2349000;2500000;2575000;2818000;2589000;2703787;2763961;2640732;2715040;2988681;2746386;2846795;3034264;3010490;2864049;2948442;2879964;2867502;2843188;2953392;2962914;2726751;2717875;2678781;2021000 -5500;'009;Oceania;1875;Wood pulp;5610;Import quantity;t;10400;13100;20600;21300;20800;16000;16900;259600;275500;328200;303700;247800;321300;355600;308100;239700;286000;243000;286500;285400;287300;263700;222200;247300;213700;242900;280800;299200;279100;281500;201100;237617;252830;239659;213560;200160;214263;197263;296362;327068;316768;349769;354049;390263;376163;351156;408136;437234;297749;259563;255304;271992;283690;333180;344307;330252;346896;363191;337588;337495;420977.48;417779;304902 -5500;'009;Oceania;1875;Wood pulp;5622;Import value;1000 USD;1058;1387;2244;2546;2085;1674;1880;29012;30906;43790;43871;35564;53645;67527;93593;70110;76865;63311;80042;106813;125958;109595;78214;92893;78626;76701;131158;186142;185169;194615;120007;124000;109482;96599;129137;151262;98275;86899;123839;189651;134706;135556;139936;175642;179245;185991;246310;282261;152339;186415;201377;179958;168687;202607;188940;187998;190745;230039;225339;183558;295296.6;342030;232438 -5500;'009;Oceania;1875;Wood pulp;5910;Export quantity;t;;;;;;;100;94000;79500;95200;97400;109000;141500;232000;335200;374600;451800;434900;463900;475100;518000;420700;470500;458900;428200;503800;483400;483400;567900;625600;648200;643098;699387;665600;640900;679800;586099;708099;627000;743600;797000;771500;678001;865002;843002;848002;877002;808002;901791;797125;826329;853625;886045;897747;935327;928745;946847;889726;954985;881980;885150;882351;641387 -5500;'009;Oceania;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;15;7688;7498;9847;10622;12551;20162;35802;66224;63509;71459;73607;111972;130369;143154;116392;113501;114907;100951;113915;149796;149796;248628;249503;218476;213553;203755;235844;338330;267333;205775;210278;199173;306823;235141;228486;236859;338406;321907;385992;458216;418845;376770;465293;494199;439097;473057;511475;469371;437328;530602;596138;471938;408524;525078.34;604783;386707 -5500;'009;Oceania;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1158256;1138969;1093373;929626;938901;818206;581802 -5500;'009;Oceania;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12222;15028;12447;12807;9725.5;10019;6392 -5500;'009;Oceania;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8193;10015;8974;7411;6927.81;7437;4520 -5500;'009;Oceania;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;464148;462650;476972;420965;454179;456495;240652 -5500;'009;Oceania;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;229638;245617;193006;165971;198421.34;243897;113333 -5500;'009;Oceania;1654;Mechanical wood pulp (1961-2016);5510;Production;t;340400;363100;454700;497400;543600;284100;297900;309900;342500;392700;389100;411500;495000;556000;563000;689000;656000;667000;662000;778000;800000;855000;792000;862000;929000;942000;954000;1024000;1034000;1006000;1038000;1141000;1109000;1027000;1130000;1079000;1091000;1106000;1126000;1179000;1333000;1378000;1244000;1233787;1239961;1115732;1120040;1187681;1216386;1127795;1146264;1109579;1036049;1045806;1028138;1060775;;;;;;; -5500;'009;Oceania;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;7100;8000;12200;11000;14100;10500;13000;17100;18200;21200;18900;12900;13000;13500;8300;5200;4600;6100;16900;4400;3000;900;2900;7000;3500;5100;3700;9000;6000;6900;3600;311;500;2400;300;300;2103;3003;9003;9002;5002;5002;5002;5002;11002;6040;7182;2765;1599;1171;1388;1318;2865;2739;3195;2450;;;;;;; -5500;'009;Oceania;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;508;573;889;902;1030;795;993;1288;1403;1739;1768;1173;1295;1709;1594;968;889;1088;4170;1608;1314;397;854;2210;1179;1461;1437;5073;3696;4619;2264;120;166;881;122;180;975;1357;4077;4525;2825;2012;2001;1681;5473;3484;2515;1587;1167;739;846;908;2321;2234;2400;1802;;;;;;; -5500;'009;Oceania;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;100;2500;2000;6700;9600;7900;7200;72100;147000;164300;241500;205500;233100;258500;273200;218000;251000;279100;258800;317600;309400;309400;313900;330100;355300;317909;309130;329600;341300;351100;296000;361000;228000;324000;347000;377500;306000;413000;400000;223000;237000;220000;251377;194979;201771;175247;229311;227533;250817;265243;;;;;;; -5500;'009;Oceania;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;15;183;160;546;802;680;735;8200;18949;17312;26862;25081;38938;45705;47547;42834;48885;52567;46040;62376;77205;77205;95918;92800;92132;77011;72634;95156;127505;99366;77257;77616;42365;70310;62456;70483;75500;117316;115621;60000;70100;62010;79913;66955;75006;67954;98275;103243;101625;102308;;;;;;; -5500;'009;Oceania;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;5600;6000;5200;4500;6300;6800;107600;112300;152600;209600;224000;225700;200000;282000;248000;248000;221000;248000;271000;285000;274000;249000;234000;229000;241000;240000;204000;216000;241000;278000;296000;134000;131000;233000;149000;176000;171000;155000;151000;166000;151000;148000;122000;115000;146000;125000;123000;128000;126000;123000;126000;121911;122000;133311;126000;127311;;;;;;; -5500;'009;Oceania;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;6059;5200;5000;9700;11000;9000;24000;16000;21000;32000;31000;31002;28002;14002;15002;19002;16002;16002;13295;16284;10844;26232;27760;12805;;;;;;; -5500;'009;Oceania;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;1982;1637;2971;7632;4553;3733;9496;4603;8386;12190;13117;14281;13893;7801;9993;12882;8406;11631;11231;10704;6415;17998;20227;9495;;;;;;; -5500;'009;Oceania;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10833;28697;14600;0;0;0;0;0;0;0;0;0;1;1;139001;169001;152001;182196;177892;191782;208002;201496;207347;219762;202890;;;;;;; -5500;'009;Oceania;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4731;10101;5544;0;0;0;0;0;0;0;0;0;0;0;61966;80038;80122;66079;85684;86094;90393;88167;95264;82122;75718;;;;;;; -5500;'009;Oceania;1656;Chemical wood pulp;5510;Production;t;302100;319300;372500;410500;438200;481200;436500;444300;497900;517900;521700;537700;631000;667000;713000;723000;786000;780000;760000;756000;834000;783000;767000;804000;852000;838000;869000;965000;1020000;985000;1053000;1026000;1124000;1096000;1134000;1054000;1090000;1093000;1072000;1155000;1091000;1292000;1223000;1355000;1378000;1400000;1472000;1673000;1404000;1596000;1762000;1779000;1706000;1769325;1725826;1679416;1684932;1814423;1869541;1797125;1778974;1860575;1439198 -5500;'009;Oceania;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;236700;252700;300900;280600;230500;302600;338300;294200;230800;271800;232800;259500;272300;278400;259200;215900;237100;207200;233100;271000;287300;267500;268000;193100;230784;246015;231959;208260;190160;201160;185260;263359;269066;265766;281766;301046;337257;337157;331112;385942;415457;280136;242378;240239;254024;269349;303577;313131;314705;334012;347985;324638;324136;410347.98;407326;297864 -5500;'009;Oceania;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;26445;28642;40887;41254;33504;51113;64874;89757;67677;72675;61071;72747;101946;122095;107495;75776;89230;76051;73464;126939;179679;178834;186684;115454;121136;107157;94039;126044;143450;92747;81809;110266;160788;112119;109852;118236;151676;159875;174702;233770;267760;142730;174009;188783;167745;158855;181279;166049;176321;181759;219800;215724;175669;287193.26;333830;226550 -5500;'009;Oceania;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;91500;77500;88500;87800;101100;134300;159900;188200;210300;210300;229400;230800;216600;244800;202700;219500;179800;169400;186200;174000;174000;254000;295500;292900;309282;361012;321400;299600;328700;290000;347000;399000;419600;450000;394000;372001;452001;443001;486001;471001;436001;468218;424254;432776;470376;455237;462867;464748;460559;482646;427054;476720;459791;429799;423269;397575 -5500;'009;Oceania;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;7505;7338;9301;9820;11871;19427;27602;47275;46197;44597;48526;73034;84664;95607;73558;64616;62340;54911;51539;72591;72591;152710;156703;126344;129640;120708;135144;210825;167967;128419;132563;156808;236513;172685;158003;161359;221090;206286;264026;308078;276713;230778;312654;333099;280750;286615;312968;285624;259259;300921;350517;278687;242512;326512;360560;273077 -5500;'009;Oceania;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;191600;127600;147800;265800;257200;290700;283700;283200;300100;395000;440000;426000;447000;424000;428000;426000;384000;419000;408000;403000;418000;460000;438000;458000;505000;530000;643000;488000;459000;494000;514000;513000;444000;503000;476000;486000;529000;472000;450000;457000;473000;476000;444000;458000;744000;735000;839000;1007000;999000;975000;1038968;1128157;1051739;561728;731518;750547;715732;707681;814293;616000 -5500;'009;Oceania;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;41601;35301;26001;24001;14000;17000;23000;23000;31000;29000;19000;30000;31200;33000;31000;33000;32302;31919;35872;38521;37024;39574;38739;40589;40669;35451;48248.54;48988;39542 -5500;'009;Oceania;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;19505;23578;16641;10320;6205;9155;10398;8748;11742;13953;10336;16000;19569;20743;16419;24132;26050;23220;21588;25538;23910;26014;24647;28500;32332;22251;39815.44;45507;32497 -5500;'009;Oceania;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;89400;75000;85900;85700;98600;126200;145700;147900;153100;151300;166800;158100;152200;172700;133500;137400;123000;127000;117200;110900;110900;152400;175500;192900;128300;154900;150900;116900;146200;150000;161000;173000;133000;113000;100000;97000;83000;92000;115000;111000;107000;105933;97071;94052;108521;108896;140743;131002;110175;147575;184914;252229;272911;255316;253391;235703 -5500;'009;Oceania;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;7258;7000;8938;9502;11470;17981;24389;34784;30697;28648;31863;47046;57515;63829;45476;37663;41030;38853;27949;42104;42104;82327;85000;80000;50936;49606;58365;69531;78126;63650;59141;62715;66415;43190;39143;40813;38082;44912;60950;71659;68235;53075;72090;72442;69917;72330;99318;85681;68576;99050;154741;154357;144844;192596;211830;161165 -5500;'009;Oceania;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;62400;72900;153200;166100;159400;186400;190700;189800;208000;194000;249000;238000;323000;318000;295000;327000;377000;335000;324000;344000;355000;363000;364000;420000;449000;299000;522000;515000;578000;533000;544000;527000;506000;509000;501000;539000;529000;555000;438000;537000;554000;590000;625000;605000;596000;686000;689000;760000;711000;710357;597669;627677;633204;611905;639994;602393;592293;567282;357198 -5500;'009;Oceania;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;81200;96500;130000;118800;101700;140600;150900;123300;90900;123600;119400;153700;145400;149100;135600;110800;130900;126100;162500;192800;206400;190900;185400;124200;170900;181627;178459;152559;144259;162459;146259;220259;240566;225766;242766;247043;283051;293051;283051;331751;349051;221051;189051;185355;204350;226139;263794;274984;273058;293994;304091;277595;285676;354752.89;354102;254190 -5500;'009;Oceania;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;9314;11760;19510;18265;16114;25178;27100;44349;31832;41505;37146;47045;58055;69154;59112;40539;51496;47970;52425;94153;134380;127332;141047;80726;90620;79712;71892;95709;111817;70183;65060;91943;144881;93503;94362;96205;125882;136925;147532;198557;224228;110311;133937;145788;132101;131591;153959;140732;148326;155395;188231;178087;151029;240513.32;283151;190013 -5500;'009;Oceania;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;2100;2500;2600;2100;2500;8100;14200;40300;57200;59000;62600;72700;64400;72100;69200;82100;56800;42400;69000;63100;63100;101600;120000;100000;180982;206112;170500;182700;182500;140000;186000;226000;285600;336000;288000;271000;364000;347000;362000;351000;312000;342777;311143;329023;361327;346339;322113;333668;350381;335065;242140;224491;186880;174479;169875;161871 -5500;'009;Oceania;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;247;338;363;318;401;1446;3213;12491;15500;15949;16663;25988;27149;31778;28082;26953;21310;16058;23590;30487;30487;70383;71703;46344;78704;71102;76779;141294;89841;64769;73422;94093;169611;128763;116061;118006;179988;158758;197900;231243;196423;166171;227914;250382;210398;214270;213608;199870;190679;201863;195776;124330;97668;133909;148714;111892 -5500;'009;Oceania;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;490000;471000;479000;479000;479000;479000;466000 -5500;'009;Oceania;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1279;3305;6374;3009;7346.54;4236;4132 -5500;'009;Oceania;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1717;3069;5305;2389;6864.5;5172;4040 -5500;'009;Oceania;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;0;0;0;4;3;1 -5500;'009;Oceania;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;0;0;0;7;16;20 -5500;'009;Oceania;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;;;;;;; -5500;'009;Oceania;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;18900;12600;12700;16200;11100;15200;27300;17500;6500;11300;10100;2200;2600;1900;1200;7300;2700;5000;4100;3100;3300;1400;4600;4400;1977;4087;6900;4500;2800;2000;2000;1000;500;0;0;2000;100;100;50;251;224;263;207;544;197;119;106;89;50;;;;;;; -5500;'009;Oceania;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;1991;1271;1607;2496;1657;2410;5899;5193;1591;2846;2079;711;977;809;725;2776;1431;2008;1575;1466;1997;930;2851;2407;1178;1751;3312;3923;2742;1184;810;284;110;0;0;852;200;301;100;179;293;190;172;171;198;102;110;120;58;;;;;;; -5500;'009;Oceania;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;;0;;;;;;;;;;;;;;;;;;;;1;1;78;3;;;;;;; -5500;'009;Oceania;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;;0;;;;;;;;;;;;;;;;;;;;12;6;73;4;;;;;;; -5500;'009;Oceania;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;;;;;;; -5500;'009;Oceania;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;37700;38100;49400;49100;34600;45800;51900;31400;24600;16700;10400;9300;21400;12600;14900;14300;18900;19700;16100;25300;23600;30800;24100;24100;12768;9001;6300;9600;7800;10700;13000;28100;11000;17000;16000;21003;25106;25006;18011;22740;33182;27822;20120;22038;17558;7219;1156;1034;2023;;;;;;; -5500;'009;Oceania;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;4973;5184;7516;8494;5813;8585;11954;12376;9914;5942;3456;3171;9893;6016;6420;5086;7392;7222;5401;12818;16302;24856;14101;14101;7748;4673;2873;6907;5313;4739;5619;11834;6642;8218;6742;9437;11641;12313;11070;15465;22496;15810;15768;16774;12226;5574;1672;1287;1923;;;;;;; -5500;'009;Oceania;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;1000;1000;6000;4001;5001;4001;9001;9001;17001;19508;16040;9701;528;1;10;0;0;;;;;;; -5500;'009;Oceania;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;487;732;2799;2540;3020;2616;5176;5176;12055;11532;12650;10275;435;3;36;0;0;;;;;;; -5500;'009;Oceania;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;0;0;0;0 -5500;'009;Oceania;1667;Dissolving wood pulp;5610;Import quantity;t;3300;5100;8400;10300;6700;5500;3900;5800;4600;6100;4200;4400;5500;3700;5100;3400;9100;3600;7100;5700;2900;2800;2600;2600;2600;2600;2600;2600;5100;4600;1800;705;256;100;0;0;0;0;0;33000;25000;31001;17001;17002;2;2;10;10;12;12;382;366;632;632;221;292;662;178;503;552;904;434;646 -5500;'009;Oceania;1667;Dissolving wood pulp;5622;Import value;1000 USD;550;814;1355;1644;1055;879;887;1279;861;1164;849;887;1209;931;1970;1363;3183;1034;2217;2351;1641;1372;1253;1253;1253;1253;1253;1253;2389;2389;929;426;177;42;0;0;0;0;0;19735;11376;11502;6582;8004;4;4;32;32;36;36;517;601;1096;1096;264;380;793;224;641;478;1175.52;763;1368 -5500;'009;Oceania;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5074;548;0;0;0;99;99;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;53;53;22;1293;1224;1172;2587;3160 -5500;'009;Oceania;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2171;312;0;0;0;99;99;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;43;43;4;245;41;145;326;297 -5500;'009;Oceania;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 -5500;'009;Oceania;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;2297;1121;1400;600;900;3207;5006;8000;4001;401;401;1001;2002;2002;1847;7134;6389;3113;1432;1202;1045;1203;2617;1599;1657;1532;1395;1678;1513;3464.74;1938;6097 -5500;'009;Oceania;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;1735;804;699;507;976;1890;2496;3647;2255;211;369;947;1612;1750;1848;5841;5606;3060;2696;2012;2043;2344;3936;2702;2607;2468;3190;5327;5326;9255.46;7446;6908 -5500;'009;Oceania;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;15;61;15;24;32;37;27;192;5;149;28;31 -5500;'009;Oceania;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;104;370;111;147;160;260;199;412;25;121;171;160 -5500;'009;Oceania;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;400;1000;1000;300;200;1029;1029;150;174;1034;1139;1121;1195;3432;14195;16641;10047;1439;1728;3057;2814;2407;2978;2826;2054 -5500;'009;Oceania;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;327;200;542;827;258;150;710;710;100;112;748;773;565;993;2771;10503;13534;7038;1167;1314;1991;1870;1650;2875.97;3042;1684 -5500;'009;Oceania;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;1000;10000;14000;1000;500;344;344;19;19;3019;1019;89;93;91;140;34;55;209;74;35;29;615;46;23;234 -5500;'009;Oceania;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;150;165;1079;1207;200;120;114;114;14;14;424;148;84;101;106;82;24;39;94;64;24;22;283;40;18;58 -5500;'009;Oceania;1669;Recovered paper;5510;Production;t;;;;;;;;;;428000;444000;468000;492000;515000;472000;517000;550000;592000;576000;621000;616000;672000;590000;596000;661000;623000;735000;857000;754000;787000;938000;1114000;1143000;1112000;1195000;1500000;1637000;1553000;1646000;2083000;1990000;1861000;2083000;2167000;2413000;2781000;3023000;3284000;3383000;3753000;3673000;3763000;3575878;3611087;3578225;3753762;3686665;3612096;3466406;3073657;3064406;3073406;3041406 -5500;'009;Oceania;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;29362;25839;20492;24389;26109;47409;43558;55710;44353;30553;37558;28473;60333;10492;12225;11854;6825;4092;4886;3100;3188;4949;4850;4098;2411;6118;8821;8997;21981;6220;18616;1259 -5500;'009;Oceania;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;3974;2699;2934;3948;4779;6576;4496;4482;5410;3954;4700;3931;3986;2108;2688;3053;1492;1069;1167;1404;1076;1920;1907;1103;474;579;1175;1385;2751;414;1094;378 -5500;'009;Oceania;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;2000;3000;3000;3000;4800;5000;7000;7400;8800;8400;8200;9100;9600;23800;36300;44000;52100;81300;91100;92100;124400;107500;105069;139547;204800;297900;226400;146700;169000;379000;294249;349249;405838;519542;667749;1029767;1208350;1445438;1686377;1586886;1656687;1594095;1796247;1700917;1705083;1734305;1662755;1710865;1472209;1375195;1319033;1377401.46;1313474;1412428 -5500;'009;Oceania;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;105;151;151;151;714;420;415;429;560;917;1010;1203;1588;2850;3868;5779;6445;10103;12868;13748;17196;12212;11127;17972;18075;45601;31785;14828;13190;27619;27840;36367;38430;50666;71904;119342;139133;211932;279169;177651;272392;301925;285059;261483;268230;233110;228034;272843;222188;156119;138886;256806.97;247829;160372 -5500;'009;Oceania;1876;Paper and paperboard;5510;Production;t;717900;754100;955900;1109400;1234100;1130000;1202700;1214500;1368400;1514300;1540400;1545600;1685800;1732400;1697000;1761000;1919000;1896000;1971000;2132000;2180000;2188000;2101000;2214000;2316000;2267000;2170000;2492000;2605000;3385000;3450000;2728000;2875000;3061000;3155000;3185000;3308000;3385000;3381000;3713000;3511000;3518585;3900130;4013913;4195181;4102399;4056451;4154047;4162639;4091822;3963677;4038189;3789520;3802595;3912068;3963193;3960170;3947393;3936764;3731026;3721168;3651154;3446247 -5500;'009;Oceania;1876;Paper and paperboard;5610;Import quantity;t;502100;353400;392800;429700;473400;447700;464700;498600;496700;515500;537800;499500;571900;688579;695000;480600;666700;600600;691500;763300;760600;814900;582900;691700;918908;832893;843941;1048041;1070800;1053334;913234;1032151;1173794;1236355;1570825;1308180;1401254;1595415;1646698;1751633;1517796;1722543;1887233;2112416;2172416;2081549;2042922;2165574;1890741;2214136;2140269;2005630;1941705;1961862;1865188;1868709;1765643;1722403;1651210;1530808;1431106.49;1335544.37;1175794.37 -5500;'009;Oceania;1876;Paper and paperboard;5622;Import value;1000 USD;111912;82515;92898;90388;98859;90256;97442;103798;102494;107802;137698;124714;162228;237009;283354;226364;312947;302251;389921;474521;493701;589775;414505;492722;597052;579644;653329;883881;979882;1011716;915637;986197;1064497;1157466;1488356;1586741;1317887;1247892;1337017;1384026;1104865;1216677;1380353;1668457;1816435;1785689;1866258;2024480;1612889;2150527;2301608;2139053;1936107;1958471;1703508;1654860;1556617;1500719;1487576;1426144;1570199.7;1662950.68;1415818.68 -5500;'009;Oceania;1876;Paper and paperboard;5910;Export quantity;t;52600;49900;118000;128900;134200;131700;138300;164900;181600;186000;188500;201900;189400;213800;203800;268600;301700;332400;359000;418100;447000;339500;361000;342000;353900;336200;330200;300100;403900;499200;541200;628124;688505;644132;578732;626332;828751;848827;838322;923634;1041884;1093978;1152409;1408555;1414355;1409324;1203520;1484988;1474540;1323616;1368259;1444055;1648985;1597111;1551665;1616934;1643664;1555734;1448350;1405680;1341601.57;1174168.78;1152976.28 -5500;'009;Oceania;1876;Paper and paperboard;5922;Export value;1000 USD;10403;8926;19442;21264;21729;16593;19996;24644;26646;28080;29159;33296;37242;50255;62292;85236;98046;99950;138516;172012;196101;154440;136496;131756;150074;133494;163370;166490;231124;274543;295099;333784;341993;361470;402063;461460;481564;401669;416656;458095;475751;537191;542576;705330;754566;740649;753873;928138;773268;901156;1021383;997441;1059688;1069517;986822;939286;959155;1000524;943735;814291;899091.68;844671.23;644521.85 -5500;'009;Oceania;2042;Graphic papers;5510;Production;t;263300;266500;690800;388800;412600;424000;436000;434900;477300;543200;548600;548200;585700;619400;609000;636000;675000;660000;691000;783000;845000;859000;859000;880000;927000;876000;846000;997000;1041000;1110000;1141000;1104000;1116000;1160000;1218000;1188000;1196000;1273000;1273000;1388000;1361000;1329585;1379130;1376913;1481181;1385399;1371451;1450047;1472639;1248822;1086677;1061364;918520;899993;937929;977095;953570;924059;889795;686326;619402;500000;337000 -5500;'009;Oceania;2042;Graphic papers;5610;Import quantity;t;388900;268500;303900;338600;365700;360900;372200;405900;404800;418200;427300;373400;430300;474900;508700;326100;486000;424700;486400;550100;538900;583000;356500;427700;636700;563800;618126;629778;879574;849725;715825;706738;867903;871645;1129032;940970;1026912;1068083;1093116;1159610;978291;1168574;1352853;1572541;1623541;1481191;1374858;1585736;1288087;1590907;1477788;1351121;1294059;1249506;1141243;1054294;939621;853157;766508;662427;588566.26;512738;454547 -5500;'009;Oceania;2042;Graphic papers;5622;Import value;1000 USD;68168;48773;56085;59715;62959;60079;63146;67647;67191;70391;75933;78410;104452;132949;172472;127049;189637;177342;233359;300645;300074;363063;223230;267014;372653;343173;436826;481973;772782;776529;666364;641337;688887;725559;962711;1066605;895136;777435;838127;870803;696907;839491;966396;1184634;1298755;1233522;1216947;1451425;1056858;1447400;1481116;1314302;1164991;1111336;909561;795136;701731;630345;596343;502799;542036.24;568630;502739 -5500;'009;Oceania;2042;Graphic papers;5910;Export quantity;t;49700;45600;113900;124400;126900;124400;126900;133500;134700;136200;143100;147100;129900;140000;119800;170700;200100;210300;223800;260200;250300;175200;167500;195200;208400;168100;151600;152800;207500;269600;277700;340666;308979;303205;260505;289905;300025;297725;295220;297331;325531;452852;352027;467803;474603;361374;271324;320208;322226;337795;324656;371627;379416;330515;327626;389459;389968;359280;202625;175595;112615.95;118182.51;84576.01 -5500;'009;Oceania;2042;Graphic papers;5922;Export value;1000 USD;9153;7369;18026;19184;19459;14475;16528;19829;19726;20169;20960;21595;21956;27926;32371;50575;61214;58082;80571;105668;112388;83068;65128;66995;89916;68804;86859;89341;131336;162856;168772;191574;162919;179283;186137;224742;180884;167692;174073;175571;195388;282989;243432;298405;313337;236013;221633;260810;234811;276952;282203;285344;270379;264678;243292;230498;220360;212811;136806;110785;76104.45;81532.24;47371.13 -5500;'009;Oceania;1671;Newsprint;5510;Production;t;182300;206500;603700;280800;293300;281500;297500;296800;333300;387200;396700;394700;416900;409900;415000;481000;483000;485000;468000;540000;569000;629000;645000;620000;652000;575000;568000;617000;658000;666000;716000;783000;802000;798000;840000;824000;818000;837000;766000;842000;807000;822585;861130;816913;821181;722399;695451;744047;749639;724822;744677;703364;549520;508993;467929;464095;471570;468059;437795;284326;217402;101000;107000 -5500;'009;Oceania;1671;Newsprint;5610;Import quantity;t;301000;201800;224400;261500;289300;280900;281800;303400;296000;277800;290100;223300;268800;291100;329600;228600;323500;276200;298100;340200;286600;257800;153400;207700;325300;307600;299200;278521;305936;310808;199108;176020;213750;214858;265139;290676;253293;297302;284062;309255;243484;256819;286957;337109;358109;282282;291826;207411;186956;260067;195016;126808;105342;111187;99669;83718;76239;44388;28876;99624;87152.41;88728;65201 -5500;'009;Oceania;1671;Newsprint;5622;Import value;1000 USD;44833;30896;34847;41044;44309;41782;41673;44085;41142;39033;42537;34871;50392;60469;87172;67987;99205;81677;97918;130008;123865;117645;71679;96680;131073;126680;129780;153293;164971;174729;106816;99693;99662;110508;146023;234170;163474;155064;160909;167490;124715;129074;150733;201004;222574;181260;199867;146227;126825;194538;161975;94042;73441;63280;50244;43076;38204;20804;15103;48179;57007.11;78541;57464 -5500;'009;Oceania;1671;Newsprint;5910;Export quantity;t;45300;42300;107700;114700;112200;113200;109600;119700;121200;118700;127000;124200;111300;120300;106600;164100;190000;198700;208700;242400;234200;159900;153800;177700;191300;147600;122700;121900;170200;224600;240700;286439;261109;254300;229500;259200;260300;272000;237600;229000;214000;218001;198004;282340;304140;223286;142243;203089;190135;210628;227094;224220;204455;136470;141133;211399;278031;278194;130699;85677;37008.73;43466;71443 -5500;'009;Oceania;1671;Newsprint;5922;Export value;1000 USD;7501;6389;16125;16757;16132;11717;12141;16107;16027;15298;16034;15753;15100;18384;23522;45851;55634;50748;70179;91471;96422;69253;53025;51214;74609;52972;53537;53261;93491;117339;127114;140700;117317;129894;147717;187874;132495;143063;126018;125331;114599;102791;134162;158509;177429;128744;102617;144733;128606;158890;176405;145637;117113;82624;69391;88698;130960;144146;73488;44219;20690.87;26019;36539 -5500;'009;Oceania;1674;Printing and writing papers;5510;Production;t;81000;60000;87100;108000;119300;142500;138500;138100;144000;156000;151900;153500;168800;209500;194000;155000;192000;175000;223000;243000;276000;230000;214000;260000;275000;301000;278000;380000;383000;444000;425000;321000;314000;362000;378000;364000;378000;436000;507000;546000;554000;507000;518000;560000;660000;663000;676000;706000;723000;524000;342000;358000;369000;391000;470000;513000;482000;456000;452000;402000;402000;399000;230000 -5500;'009;Oceania;1674;Printing and writing papers;5610;Import quantity;t;87900;66700;79500;77100;76400;80000;90400;102500;108800;140400;137200;150100;161500;183800;179100;97500;162500;148500;188300;209900;252300;325200;203100;220000;311400;256200;318926;351257;573638;538917;516717;530718;654153;656787;863893;650294;773619;770781;809054;850355;734807;911755;1065896;1235432;1265432;1198909;1083032;1378325;1101131;1330840;1282772;1224313;1188717;1138319;1041574;970576;863382;808769;737632;562803;501413.85;424010;389346 -5500;'009;Oceania;1674;Printing and writing papers;5622;Import value;1000 USD;23335;17877;21238;18671;18650;18297;21473;23562;26049;31358;33396;43539;54060;72480;85300;59062;90432;95665;135441;170637;176209;245418;151551;170334;241580;216493;307046;328680;607811;601800;559548;541644;589225;615051;816688;832435;731662;622371;677218;703313;572192;710417;815663;983630;1076181;1052262;1017080;1305198;930033;1252862;1319141;1220260;1091550;1048056;859317;752060;663527;609541;581240;454620;485029.14;490089;445275 -5500;'009;Oceania;1674;Printing and writing papers;5910;Export quantity;t;4400;3300;6200;9700;14700;11200;17300;13800;13500;17500;16100;22900;18600;19700;13200;6600;10100;11600;15100;17800;16100;15300;13700;17500;17100;20500;28900;30900;37300;45000;37000;54227;47870;48905;31005;30705;39725;25725;57620;68331;111531;234851;154023;185463;170463;138088;129081;117119;132091;127167;97562;147407;174961;194045;186493;178060;111937;81086;71926;89918;75607.22;74716.51;13133.01 -5500;'009;Oceania;1674;Printing and writing papers;5922;Export value;1000 USD;1652;980;1901;2427;3327;2758;4387;3722;3699;4871;4926;5842;6856;9542;8849;4724;5580;7334;10392;14197;15966;13815;12103;15781;15307;15832;33322;36080;37845;45517;41658;50874;45602;49389;38420;36868;48389;24629;48055;50240;80789;180198;109270;139896;135908;107269;119016;116077;106205;118062;105798;139707;153266;182054;173901;141800;89400;68665;63318;66566;55413.59;55513.24;10832.13 -5500;'009;Oceania;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100000;93000;107000;81000;32000;28000;74000;74000;107000;101000;127000;116000;89000;80000;80000;82000;87000;69000;71000;64000;324000;329000;294000;294000;297000;137000 -5500;'009;Oceania;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117650;145857;146625;134340;169316;167319;188468;189468;180436;217838;234538;167592;161853;155985;174669;129655;154087;145425;125154;128432;146616;161009;99753;43535.27;41264;29234 -5500;'009;Oceania;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69917;101797;93386;85555;116094;100982;113914;127162;126468;169907;181846;129979;127745;131433;142374;90741;109901;85992;74470;75780;77595;92094;59813;34602.03;45204;30826 -5500;'009;Oceania;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;300;311;511;9311;2328;4268;4268;6273;6384;3294;1106;2328;671;675;379;311;301;572;602;594;598;531;367;618.5;241 -5500;'009;Oceania;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;581;318;357;638;7390;1897;3640;3640;4581;4620;3646;1410;1842;1568;2332;788;765;632;969;1101;1062;1151;1212;1011.8;1203.1;600 -5500;'009;Oceania;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 -5500;'009;Oceania;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;129779;140511;127694;132712;237376;295558;355174;327174;327501;308105;319861;329234;273132;266926;273811;282261;280593;269963;244986;197774;172295;145433;142124;158716.1;97745;144385 -5500;'009;Oceania;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116140;119572;111175;108771;196999;247007;313299;306167;306082;312384;337107;233475;297151;319900;315468;303862;303351;268153;229892;187260;166994;155009;146182;175265.71;129541;181273 -5500;'009;Oceania;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23220;54320;61020;90020;216540;141183;170509;155509;126307;117188;105295;124286;115800;81083;128768;143355;151565;137759;126639;93388;78121;67315;82398;72606.22;64364;8869 -5500;'009;Oceania;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20308;42027;44543;65217;162617;97208;126008;119088;96789;108498;101191;96576;104995;85164;117155;120184;127218;105992;94112;72318;64833;59164;63338;52299.79;50899;6706 -5500;'009;Oceania;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 -5500;'009;Oceania;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;523352;522686;576036;467755;505063;603019;691790;748790;690972;557089;823926;604305;895855;859861;775833;776801;703639;626186;600436;537176;489858;431190;320926;299162.48;285001;215727 -5500;'009;Oceania;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;436314;455849;498752;377866;397324;467674;556417;642852;619712;534789;786245;566579;827966;867808;762418;696947;634804;505172;447698;400487;364952;334137;248625;275161.4;315344;233176 -5500;'009;Oceania;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2005;3000;7000;21000;9000;10512;10686;10686;5508;5509;8530;6699;9039;15808;17964;31227;42169;48433;50849;17947;2371;4013;6989;2634;9734.01;4023.01 -5500;'009;Oceania;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3740;5710;5340;14934;10191;10165;10248;13180;5899;5898;11240;8219;11225;19066;20220;32294;54071;67277;46719;15981;2770;3003;2016;2102;3411.13;3526.13 -5500;'009;Oceania;1675;Other paper and paperboard;5510;Production;t;454600;487600;265100;720600;821500;706000;766700;779600;891100;971100;991800;997400;1100100;1113000;1088000;1125000;1244000;1236000;1280000;1349000;1335000;1329000;1242000;1334000;1389000;1391000;1324000;1495000;1564000;2275000;2309000;1624000;1759000;1901000;1937000;1997000;2112000;2112000;2108000;2325000;2150000;2189000;2521000;2637000;2714000;2717000;2685000;2704000;2690000;2843000;2877000;2976825;2871000;2902602;2974139;2986098;3006600;3023334;3046969;3044700;3101766;3151154;3109247 -5500;'009;Oceania;1675;Other paper and paperboard;5610;Import quantity;t;113200;84900;88900;91100;107700;86800;92500;92700;91900;97300;110500;126100;141600;213679;186300;154500;180700;175900;205100;213200;221700;231900;226400;264000;282208;269093;225815;418263;191226;203609;197409;325413;305891;364710;441793;367210;374342;527332;553582;592023;539505;553969;534380;539875;548875;600358;668064;579838;602654;623229;662481;654509;647646;712356;723945;814415;826022;869246;884702;868381;842540.24;822806.37;721247.37 -5500;'009;Oceania;1675;Other paper and paperboard;5622;Import value;1000 USD;43744;33742;36813;30673;35900;30177;34296;36151;35303;37411;61765;46304;57776;104060;110882;99315;123310;124909;156562;173876;193627;226712;191275;225708;224399;236471;216503;401908;207100;235187;249273;344860;375610;431907;525645;520136;422751;470457;498890;513223;407958;377186;413957;483823;517680;552167;649311;573055;556031;703127;820492;824751;771116;847135;793947;859724;854886;870374;891233;923345;1028163.45;1094320.68;913079.68 -5500;'009;Oceania;1675;Other paper and paperboard;5910;Export quantity;t;2900;4300;4100;4500;7300;7300;11400;31400;46900;49800;45400;54800;59500;73800;84000;97900;101600;122100;135200;157900;196700;164300;193500;146800;145500;168100;178600;147300;196400;229600;263500;287458;379526;340927;318227;336427;528726;551102;543102;626303;716353;641126;800382;940752;939752;1047950;932196;1164780;1152314;985821;1043603;1072428;1269569;1266596;1224039;1227475;1253696;1196454;1245725;1230085;1228985.62;1055986.27;1068400.27 -5500;'009;Oceania;1675;Other paper and paperboard;5922;Export value;1000 USD;1250;1557;1416;2080;2270;2118;3468;4815;6920;7911;8199;11701;15286;22329;29921;34661;36832;41868;57945;66344;83713;71372;71368;64761;60158;64690;76511;77149;99788;111687;126327;142210;179074;182187;215926;236718;300680;233977;242583;282524;280363;254202;299144;406925;441229;504636;532240;667328;538457;624204;739180;712097;789309;804839;743530;708788;738795;787713;806929;703506;822987.22;763139;597150.71 -5500;'009;Oceania;1676;Household and sanitary papers;5510;Production;t;;;135000;135000;145600;56700;62600;70500;76000;83600;91500;103600;102300;112000;124000;123000;124000;129000;134000;149000;140000;147000;153000;166000;157000;172000;168000;196000;217000;240000;211000;185000;232000;237000;260000;263000;255000;248000;241000;292000;263000;257000;256000;246000;256000;275000;261000;248000;255000;256000;245000;227000;237000;254848;251000;261000;283038;295000;294000;304000;304000;318000;315000 -5500;'009;Oceania;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;8335;17900;25000;31400;29800;28400;33122;40918;48489;58400;69659;71980;81471;74471;83959;75992;61350;76713;91297;96712;145763;110618;129168;131876;146484;159024;156439;156701;177134;135025.25;152893;143994 -5500;'009;Oceania;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;12532;19027;28534;35295;44956;34458;36650;38710;44694;54568;66625;68780;87740;91923;106612;102784;86340;97549;132948;154975;227601;162187;194254;188885;206027;208145;197196;206079;228643;190382.23;252574;193850 -5500;'009;Oceania;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;900;1700;2800;7400;7500;14300;16200;19700;21800;10200;15000;14001;17001;9001;4511;10011;15011;10018;10018;9018;9245;14086;13106;10882;4565;1283;1240;8690;4569;3494;20628;13429;10454.71;14157.27;5686.27 -5500;'009;Oceania;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2629;2650;4862;15003;13795;26485;34557;48559;52863;15378;14591;10856;12635;6929;4631;10409;20536;14162;16556;16002;14737;22208;24227;18384;8905;3363;2871;17774;9430;5847;18498;11222;10364.56;10732;5955.71 -5500;'009;Oceania;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1855000;1859000;2024000;1864000;1923000;2255000;2375000;2449000;2432000;2414000;2446000;2425000;2577000;2622000;2739825;2608000;2610755;2658000;2662000;2723562;2728334;2752969;2740700;2797766;2833154;2794247 -5500;'009;Oceania;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;431799;461399;486267;450422;378892;436153;425066;442066;492063;568484;490356;458522;507555;544171;492417;527977;573348;579335;647252;649849;681596;692985;663505;676780.19;639087.37;556028.37 -5500;'009;Oceania;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;303345;350444;355573;314018;262558;296640;332988;364440;391468;492083;425956;415718;497733;587364;534895;554740;594960;543107;586429;592698;619950;624888;631182;763393.33;764664.68;648252.68 -5500;'009;Oceania;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;534900;522000;598200;692250;631009;794807;929593;906593;948806;867667;904534;905816;776492;818238;820564;1027365;1040720;1002826;991296;1018387;960647;987098;1031021;1046033.51;888331;912592 -5500;'009;Oceania;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;205462;214856;258126;259432;245875;293690;395746;406131;445881;488346;513042;419293;492365;577345;549316;630716;660729;617674;555703;590080;626325;628421;586926;695710.51;643714;510103 -5500;'009;Oceania;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;468800;675900;649300;702200;707900;743900;817700;824100;816300;924100;961000;858000;894000;983000;971000;1091000;1144000;1127000;704000;630000;663000;652000;656000;620000;687000;716000;1406000;1469000;1427000;1514000;1592000;1603000;1720000;1850000;;;;;;;;;;;;;;;;;;;;;;;;;; -5500;'009;Oceania;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;131300;247000;130800;122800;125200;184900;158600;190000;230000;255300;269600;;;;;;;;;;;;;;;;;;;;;;;;;; -5500;'009;Oceania;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;100409;183347;109965;117216;125819;151525;158490;190137;232477;287987;245010;;;;;;;;;;;;;;;;;;;;;;;;;; -5500;'009;Oceania;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;1900;3100;2200;3400;6300;7000;11000;25900;45200;47200;40200;51900;58000;72300;82200;96500;98100;116800;134100;153900;176900;150200;176800;130000;130300;144800;132800;104000;174000;209100;240900;239600;358500;311900;286100;279200;470000;;;;;;;;;;;;;;;;;;;;;;;;;; -5500;'009;Oceania;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;771;1003;967;1500;1705;1792;2981;3817;5939;6787;6388;9121;12767;19713;26759;32013;32989;36606;55514;61862;65109;56018;52886;46834;42901;42459;47867;48100;75288;80742;95591;89821;143287;130179;150413;134519;195771;;;;;;;;;;;;;;;;;;;;;;;;;; -5500;'009;Oceania;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;872000;733000;507000;614000;640000;540000;638000;647000;655000;733000;937000;964000;984000;2235000;2365825;2251000;2271123;2328000;2505000;2551562;2560334;2581969;2574700;2631766;2654154;2618247 -5500;'009;Oceania;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116323;171618;222654;177639;150641;183343;171367;180367;217049;263829;246963;193143;223065;262938;244181;262659;281454;282462;321517;340548;334655;343075;309964;287624.06;269223;260608 -5500;'009;Oceania;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58594;89289;100939;77134;64879;96418;102702;107986;126761;171790;157988;118766;150485;206852;186192;203514;217096;198459;195438;203735;211141;189322;181664;204339.32;184307;162929 -5500;'009;Oceania;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;309000;322000;301000;364000;363001;385272;555793;461793;412265;369317;421210;388200;419876;444150;410945;604004;661629;626798;621147;612437;568637;577010;622072;609166;472083;550160 -5500;'009;Oceania;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102733;108528;115716;116519;123435;129837;214631;188783;176841;189772;218272;155012;229125;277359;234697;334511;386607;377316;314969;312562;323775;307127;305583;359704.75;283005;266520 -5500;'009;Oceania;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;849000;926000;920000;759000;789000;967000;953000;1009000;1000000;921000;299000;286000;244000;261000;245000;235000;215608;203000;76000;84000;84000;84000;84000;84000;84000;84000 -5500;'009;Oceania;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;191295;189867;171183;181842;116504;124207;136681;143681;153622;177053;137831;162616;185690;179652;151630;157975;191150;200439;231556;232044;262235;266502;270525;300280.83;297741;228992 -5500;'009;Oceania;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126162;156048;156922;148083;98927;93726;120703;133959;135797;186405;135147;181279;223531;240107;212375;216408;252270;237694;283817;297786;303759;331413;346757;434916.26;458812;369963 -5500;'009;Oceania;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62000;99000;107000;114000;179000;365013;320024;391024;440027;393427;405034;418270;231876;235253;268758;270839;234815;242511;247301;276815;286388;291069;293961;319774.14;311458;243569 -5500;'009;Oceania;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41183;61854;59868;59820;85762;134178;145414;180714;209528;215791;233292;200908;167815;182157;194952;185752;171222;157051;161112;190997;219727;222563;207239;250716.17;269729;162120 -5500;'009;Oceania;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96000;147000;568000;429000;430000;681000;747000;755000;738000;721000;1172000;1130000;1305000;82000;85000;81000;83024;85000;81000;88000;84000;87000;82000;82000;95000;92000 -5500;'009;Oceania;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83886;88223;83685;81026;108661;125474;113561;114561;118310;125505;100394;96891;91975;93767;88462;98578;90139;87143;84528;69781;76381;74938;76063;80285.08;62867;57999 -5500;'009;Oceania;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93085;94722;88163;80255;97159;104747;107574;120411;127033;132372;128380;110479;117071;132359;128474;127591;116751;99824;100433;85340;98477;97360;96984;115435.25;110217;107271 -5500;'009;Oceania;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;154600;88000;173000;184000;88008;44271;53469;53469;96207;104916;76283;98907;124070;138087;138148;150035;143258;133372;122627;128792;105403;118999;114952;116913.38;104748;118827 -5500;'009;Oceania;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57247;39096;75616;72201;35228;29356;35287;36129;59007;82778;60544;63026;94757;117320;117449;108335;102141;83003;79341;85735;82484;98580;73957;84993.59;90840;81315 -5500;'009;Oceania;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38000;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 -5500;'009;Oceania;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40295;11691;8745;9915;3086;3129;3457;3457;3082;2097;5168;5872;6825;7814;8144;8765;10605;9291;9651;7476;8325;8470;6953;8590.22;9256.37;8429.37 -5500;'009;Oceania;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25504;10385;9549;8546;1593;1749;2009;2084;1877;1516;4441;5194;6646;8046;7854;7227;8843;7130;6741;5837;6573;6793;5777;8702.5;11328.68;8089.68 -5500;'009;Oceania;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9300;13000;17200;30250;1000;251;307;307;307;7;2007;439;670;748;2713;2487;1018;145;221;343;219;20;36;180;42;36 -5500;'009;Oceania;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4299;5378;6926;10892;1450;319;414;505;505;5;934;347;668;509;2218;2118;759;304;281;786;339;151;147;296;140;148 -5500;'009;Oceania;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;1900;1200;71200;69800;76200;77500;73700;40000;106000;108000;137000;136000;55000;56000;68000;478000;459000;505000;580000;563000;536000;612000;631000;629000;629000;12000;13000;72000;74000;14000;7000;9000;8000;9000;23000;9000;10000;16000;9000;10000;10000;10000;10000;10000;10000;10000;26000;36999;65139;63098;0;0;0;0;0;0;0 -5500;'009;Oceania;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;26500;20000;21300;21900;24900;33600;32700;63800;31300;32800;34100;52500;68400;80900;68800;55300;71800;73600;70200;81800;85900;81700;54300;66700;70700;93000;82300;161100;53800;75300;65500;130399;125676;146854;178554;79900;74000;62411;51265;57267;30683;105418;26247;33338;32338;24336;23588;28132;67419;24377;21598;16329;9051;9840;12734;20679;17149;31211;35016;27742;30734.79;30826;21225 -5500;'009;Oceania;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;10376;8102;9358;7697;8767;11829;12452;26137;15041;15060;33488;18923;25391;41401;42687;42244;53940;57006;67281;75922;102866;91934;79766;93226;85737;91436;103062;207017;87865;109825;114929;178613;193791;209588;255036;184388;139671;130462;109736;112956;39372;48003;48537;63095;61317;54087;54444;60759;42764;72446;78153;62255;54189;57921;61955;67268;54043;53228;60266;63520;74387.89;77082;70977 -5500;'009;Oceania;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;19800;14100;16700;16800;15200;23300;45800;43300;21500;18800;19800;40458;13500;14700;15900;37500;36900;6002;6102;14102;7102;1116;1064;1148;18148;89126;54511;251228;237253;195243;212259;240982;237639;224593;219973;227489;230740;232313;237999;185635;172497.4;153498;150122 -5500;'009;Oceania;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;18604;15354;18482;17927;17257;22231;28644;29049;21871;28295;25874;37386;21981;25511;30944;53628;52035;13137;13136;13542;8296;1398;823;770;14562;44593;27338;138284;104427;109631;137608;144397;149688;140747;122985;135311;139285;155541;160010;105358;116912.16;108693;81092 -5500;'009;Oceania;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2987083.4;3288882;3079461;3078572;3998645;4135114;2953771 -5500;'009;Oceania;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;240016;192245;190101;153209;175033;177703;155894 -5500;'009;Oceania;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;364283.9;396349;342519;366876;501304;501995;316172 -5500;'009;Oceania;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78389;70457;70331;60464;69174;70445;54083 -5500;'009;Oceania;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;144726.7;163239;157039;152659;235677;233450;143038 -5500;'009;Oceania;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75866;68212;68154;59198;66872;67259;52267 -5500;'009;Oceania;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;219557.2;233110;185480;214217;265627;268545;173134 -5500;'009;Oceania;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2523;2245;2177;1266;2302;3186;1816 -5500;'009;Oceania;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78388.5;84295;74762;73886;90163;82495;67330 -5500;'009;Oceania;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12874;13058;13728;11115;15492;16974;15539 -5500;'009;Oceania;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85544;97344;96404;94790;156773;143755;117493 -5500;'009;Oceania;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4181;4236;3263;3103;5214;4797;3859 -5500;'009;Oceania;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;410938;440239;400938;327638;440202;529956;369746 -5500;'009;Oceania;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49447;38139;37987;35096;36565;28078;31437 -5500;'009;Oceania;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34566;37942 -5500;'009;Oceania;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39824;38002 -5500;'009;Oceania;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;616;181 -5500;'009;Oceania;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;493;165 -5500;'009;Oceania;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6701;1789 -5500;'009;Oceania;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6550;1711 -5500;'009;Oceania;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;152;4 -5500;'009;Oceania;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;154;3 -5500;'009;Oceania;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31605;25547 -5500;'009;Oceania;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46355;36933 -5500;'009;Oceania;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;749;1371 -5500;'009;Oceania;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1380;2267 -5500;'009;Oceania;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1927217;2148232;2042840;2085431;2634414;2696468;1944393 -5500;'009;Oceania;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44084;46462;43618;29304;34480;37772;35132 -5500;'009;Oceania;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10486;9525;12435;16867;20170;27509;19395 -5500;'009;Oceania;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5168;1264;2395;3136;3114;1957;779 -5500;'009;Oceania;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110226;112898;109563;113084;155619;152936;119242 -5500;'009;Oceania;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45873;18629;18779;10991;10994;17680;15065 -5500;'009;Oceania;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1512744;1648870;1578985;1571440;1851740;2125267;1897977 -5500;'009;Oceania;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;222771;218654;192109;181233;211923;200645;175499 -5500;'009;Oceania;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7355;7152;6727;4834;5322;5006;3869 -5500;'009;Oceania;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1836;1845;379;749;199;100;153 -5500;'009;Oceania;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;248898;284471;264028;258135;291124;302321;263843 -5500;'009;Oceania;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6675;7247;6573;8415;14284;10040;7021 -5500;'009;Oceania;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;310175;321128;311707;346310;346574;442934;378795 -5500;'009;Oceania;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69976;57770;54325;50535;56308;56902;49471 -5500;'009;Oceania;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;386387;445759;446069;450543;580406;650633;601161 -5500;'009;Oceania;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56308;63157;54194;54695;61046;67039;59759 -5500;'009;Oceania;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;559929;590360;550454;511618;628314;724373;650309 -5500;'009;Oceania;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87976;88635;76638;66839;80086;66564;59095 -5501;'053;Australia and New Zealand;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6854241;7508359;7013675;6867558;8940184.08;9817690;7327554 -5501;'053;Australia and New Zealand;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7255568;7931966;6873176;5868746;7012307.1;6415332;5292809 -5501;'053;Australia and New Zealand;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;154090;119790;135471;141123;157053;142662;148811;190543;198768;224560;253877;230528;329568;516573;518961;465912;587296;565171;683090;836304;886392;972590;667356;826904;940668;920696;1039374;1416432;1628168;1653548;1406457;1508947;1602610;1790865;2134581;2138485;1807961;1706837;1845507;2034590;1510899;1717390;1907164;2304445;2467678;2458710;2709187;2920217;2189636;2991683;3213448;3027786;2811106;2959744;2638356;2522604;2574697;2794971;2556872;2404644;3282888.08;3834780;2710395 -5501;'053;Australia and New Zealand;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;24206;23086;32962;36620;38172;32346;43374;66882;77719;90263;108267;133223;208532;271041;250539;278844;335118;364494;517465;654758;691429;586483;518666;554259;532003;543808;718638;815094;1120308;1204382;1416527;1476894;1850466;2093767;2379297;2292780;2244945;1793749;2007580;2288763;2157906;2612205;2577552;3248901;3299430;3452139;3899517;4240174;3609171;4830359;5371798;5071054;5744025;5935789;5377136;5533328;6847129;7552917;6517427;5556229;6645915.1;6064988;4983892 -5501;'053;Australia and New Zealand;1861;Roundwood;5516;Production;m3;19530012;18570013;19398015;20514016;20585018;20645020;20802910;21504024;22272803;22588029;22977140;22836072;24698757;23055072;24559072;25671072;26411072;25852072;25279072;28426072;29063072;26779072;25767072;26611072;28974561;30034153;29299842;29767505;30627136;33935384;34260593;34977415;36867420;39250559;40946562;40729955;43719063;43402062;45467061;50510060;51808059;51863058;52907057;51829056;51069055;51248054;52707053;52795053;51193052;54954052;57575068;55707068;57140066;59258065;60404312;63192674;71758971;73174451;72597181;66111748;66612059;64217058;61451057 -5501;'053;Australia and New Zealand;1861;Roundwood;5616;Import quantity;m3;204800;119900;161900;145300;186300;116800;142700;180400;181700;144800;133000;108300;111900;114100;48700;54700;32600;28000;21100;4800;5600;9500;3600;3100;4000;4200;6300;11300;12900;8926;5470;21587;9189;6000;4400;4700;4900;8100;5100;8300;6250;8300;5300;4300;4200;5108;7506;4733;5525;5010;3291;5249;5733;14099;10001;7839;11366;9066;15467;13512;15148.43;21301;7944 -5501;'053;Australia and New Zealand;1861;Roundwood;5622;Import value;1000 USD;4599;2706;3753;3492;4528;2985;3699;5213;5012;4866;4082;3690;5077;7852;3767;3793;3143;3017;2456;1634;2052;3805;1053;1010;902;1157;3129;4102;4355;2178;1227;2197;2037;1685;1751;2044;1460;2198;1442;2395;2050;2893;2192;2318;2641;2721;4238;3067;2485;3853;2598;3906;5156;11152;6007;5048;8621;4307;7811;5518;6513.1;7312;6778 -5501;'053;Australia and New Zealand;1861;Roundwood;5916;Export quantity;m3;292500;292100;289000;378300;460100;549400;833400;1470500;1681400;1833300;1847100;1885100;1961000;1456900;580500;991200;1075200;982000;1296200;1018300;566300;528700;539500;481600;389400;406900;459500;856100;1766500;1698485;3753907;4460146;4701429;5378453;5684900;5985900;6646800;4793100;6776000;7036000;8281700;9160300;8793000;6288283;5891582;6635358;7044379;7586955;9914925;12310078;14642977;15154588;18562769;19217517;19722624;20314290;24015706;26730940;26722840;25344590;24888569;21651574;21947918 -5501;'053;Australia and New Zealand;1861;Roundwood;5922;Export value;1000 USD;3984;4006;3870;4961;5972;6946;10430;19267;25565;28353;32963;36232;49438;48836;19819;27958;30081;39217;59066;58085;32258;26157;28254;19956;20528;23437;26364;50749;91355;97782;216373;241366;472294;475141;468681;488170;486942;242867;321963;360292;333458;483845;408091;381908;354756;438514;518028;576748;677798;1145501;1511590;1416667;2124777;2180049;1791321;2043725;3038451;3475492;2866231;2560906;3081965;2403679;2072285 -5501;'053;Australia and New Zealand;1862;Roundwood, coniferous;5516;Production;m3;6786000;6666000;7232000;7911000;8107000;8426000;8961888;9582000;10604777;11078000;10931111;11338000;13173666;10873000;10630000;12189000;12176000;11790000;11853000;14012000;14782000;14624000;14114000;13952000;15877886;16865462;16337504;16103096;17678903;20514847;21030451;22112411;23542746;25708888;25669888;26490087;27270000;26255000;28695000;31764000;33378000;35469000;35189000;34396000;33640000;33836000;34972000;34525000;34180000;38943000;41149000;41402000;43346000;43596000;43909677;45360353;51724709;53298590;52749815;50048126;52107000;48942000;46357000 -5501;'053;Australia and New Zealand;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3581;1601;6431;7872;5855;5169;3461 -5501;'053;Australia and New Zealand;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1818;370;2510;2714;1691;2696;1533 -5501;'053;Australia and New Zealand;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22776495;25679090;25766212;24306152;24437828;21244267;21736236 -5501;'053;Australia and New Zealand;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2888640;3332582;2747809;2433354;3019395;2345042;2046663 -5501;'053;Australia and New Zealand;1863;Roundwood, non-coniferous;5516;Production;m3;12744012;11904013;12166015;12603016;12478018;12219020;11841022;11922024;11668026;11510029;12046029;11498072;11525091;12182072;13929072;13482072;14235072;14062072;13426072;14414072;14281072;12155072;11653072;12659072;13096675;13168691;12962338;13664409;12948233;13420537;13230142;12865004;13324674;13541671;15276674;14239868;16449063;17147062;16772061;18746060;18430059;16394058;17718057;17433056;17429055;17412054;17735053;18270053;17013052;16011052;16426068;14305068;13794066;15662065;16494635;17832321;20034262;19875861;19847366;16063622;14505059;15275058;15094057 -5501;'053;Australia and New Zealand;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7785;7465;9036;5640;9293.43;16132;4483 -5501;'053;Australia and New Zealand;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6803;3937;5301;2804;4822.1;4616;5245 -5501;'053;Australia and New Zealand;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1239211;1051850;956628;1038438;450741;407307;211682 -5501;'053;Australia and New Zealand;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;149811;142910;118422;127552;62570;58637;25622 -5501;'053;Australia and New Zealand;1864;Wood fuel;5516;Production;m3;3910012;3785013;3665015;3540016;3425018;3010020;3184910;3188024;3191803;3196029;3199140;3202072;2944757;3050072;3050072;3030072;3030072;3030072;2830072;2830072;2870072;1950072;2350072;2750072;2443561;2644153;2864842;3101505;3348136;3595384;3836593;4070415;4301420;4540559;4792562;5067955;7007063;6942062;6879061;6824060;6745059;5570058;5940057;5651056;5651055;5092054;5231053;5109053;4878052;4903052;4912068;4795068;4795066;4795065;4146348;4094655;4181877;4140959;4153707;3922644;3922059;3965058;3995057 -5501;'053;Australia and New Zealand;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1446;3521;400;100;100;100;100;100;100;200;200;200;200;200;208;206;200;200;964;550;209;496;317;561;802;209;542;1331;3193;3157.43;1905;1996 -5501;'053;Australia and New Zealand;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;132;53;23;38;32;32;32;32;39;41;41;41;41;43;42;41;41;191;114;76;271;175;360;453;170;308;551;1076;1585.1;1233;1249 -5501;'053;Australia and New Zealand;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;51;100;200;100;200;100;0;0;0;0;0;0;0;76;1097;1273;922;1320;324;1559;8788;7197;25516;92711;162640;24127;39815;61287;51458;18989;25127 -5501;'053;Australia and New Zealand;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;14;28;27;174;82;0;0;0;0;0;0;0;20;114;137;416;502;165;193;1338;1581;2863;7842;12381;2113;3836;4804;3356;4786;4344 -5501;'053;Australia and New Zealand;1627;Wood fuel, coniferous;5516;Production;m3;453000;453000;453000;453000;453000;453000;627888;631000;634777;639000;642111;645000;319666;425000;425000;405000;405000;405000;305000;305000;345000;405000;425000;625000;556886;601462;650504;703096;757903;812847;866451;918411;969746;1022888;1078888;1140087;66000;66000;65000;65000;64000;57000;59000;58000;58000;54000;55000;55000;53000;52000;53000;54000;54000;54000;49614;49304;49828;49582;64116;48270;48000;49000;49000 -5501;'053;Australia and New Zealand;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;97;406;2181;1235;1321;1518 -5501;'053;Australia and New Zealand;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;81;212;419;514;738;880 -5501;'053;Australia and New Zealand;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;23660;39315;60964;51321;18734;25026 -5501;'053;Australia and New Zealand;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1753;3545;4406;3043;2980;3607 -5501;'053;Australia and New Zealand;1628;Wood fuel, non-coniferous;5516;Production;m3;3457012;3332013;3212015;3087016;2972018;2557020;2557022;2557024;2557026;2557029;2557029;2557072;2625091;2625072;2625072;2625072;2625072;2625072;2525072;2525072;2525072;1545072;1925072;2125072;1886675;2042691;2214338;2398409;2590233;2782537;2970142;3152004;3331674;3517671;3713674;3927868;6941063;6876062;6814061;6759060;6681059;5513058;5881057;5593056;5593055;5038054;5176053;5054053;4825052;4851052;4859068;4741068;4741066;4741065;4096734;4045351;4132049;4091377;4089591;3874374;3874059;3916058;3946057 -5501;'053;Australia and New Zealand;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;167;445;925;1012;1922.43;584;478 -5501;'053;Australia and New Zealand;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119;227;339;657;1071.1;495;369 -5501;'053;Australia and New Zealand;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;162640;467;500;323;137;255;101 -5501;'053;Australia and New Zealand;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12381;360;291;398;313;1806;737 -5501;'053;Australia and New Zealand;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1446;3521;400;100;100;100;100;100;100;200;200;200;200;200;208;206;200;200;964;550;209;496;317;561;802;;;;;;; -5501;'053;Australia and New Zealand;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;132;53;23;38;32;32;32;32;39;41;41;41;41;43;42;41;41;191;114;76;271;175;360;453;;;;;;; -5501;'053;Australia and New Zealand;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;1097;1273;922;1320;324;1559;8788;7197;25516;92711;;;;;;; -5501;'053;Australia and New Zealand;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;114;137;416;502;165;193;1338;1581;2863;7842;;;;;;; -5501;'053;Australia and New Zealand;1865;Industrial roundwood;5516;Production;m3;15620000;14785000;15733000;16974000;17160000;17635000;17618000;18316000;19081000;19392000;19778000;19634000;21754000;20005000;21509000;22641000;23381000;22822000;22449000;25596000;26193000;24829000;23417000;23861000;26531000;27390000;26435000;26666000;27279000;30340000;30424000;30907000;32566000;34710000;36154000;35662000;36712000;36460000;38588000;43686000;45063000;46293000;46967000;46178000;45418000;46156000;47476000;47686000;46315000;50051000;52663000;50912000;52345000;54463000;56257964;59098019;67577094;69033492;68443474;62189104;62690000;60252000;57456000 -5501;'053;Australia and New Zealand;1865;Industrial roundwood;5616;Import quantity;m3;204800;119900;161900;145300;186300;116800;142700;180400;181700;144800;133000;108300;111900;114100;48700;54700;32600;28000;21100;4800;5600;9500;3600;3100;4000;4200;6300;11300;12900;8926;5470;20141;5668;5600;4300;4600;4800;8000;5000;8200;6050;8100;5100;4100;4000;4900;7300;4533;5325;4046;2741;5040;5237;13782;9440;7037;11157;8524;14136;10319;11991;19396;5948 -5501;'053;Australia and New Zealand;1865;Industrial roundwood;5622;Import value;1000 USD;4599;2706;3753;3492;4528;2985;3699;5213;5012;4866;4082;3690;5077;7852;3767;3793;3143;3017;2456;1634;2052;3805;1053;1010;902;1157;3129;4102;4355;2178;1227;2123;1905;1632;1728;2006;1428;2166;1410;2363;2011;2852;2151;2277;2600;2678;4196;3026;2444;3662;2484;3830;4885;10977;5647;4595;8451;3999;7260;4442;4928;6079;5529 -5501;'053;Australia and New Zealand;1865;Industrial roundwood;5916;Export quantity;m3;292500;292100;289000;378300;460100;549400;833400;1470500;1681400;1833300;1847100;1885100;1961000;1456900;580500;991200;1075200;982000;1296200;1018300;566300;528700;539500;481600;389400;406900;459500;856100;1766500;1698485;3753907;4460095;4701378;5378353;5684700;5985800;6646600;4793000;6776000;7036000;8281700;9160300;8793000;6288283;5891582;6635282;7043282;7585682;9914003;12308758;14642653;15153029;18553981;19210320;19697108;20221579;23853066;26706813;26683025;25283303;24837111;21632585;21922791 -5501;'053;Australia and New Zealand;1865;Industrial roundwood;5922;Export value;1000 USD;3984;4006;3870;4961;5972;6946;10430;19267;25565;28353;32963;36232;49438;48836;19819;27958;30081;39217;59066;58085;32258;26157;28254;19956;20528;23437;26364;50749;91355;97782;216373;241357;472285;475127;468653;488143;486768;242785;321963;360292;333458;483845;408091;381908;354756;438494;517914;576611;677382;1144999;1511425;1416474;2123439;2178468;1788458;2035883;3026070;3473379;2862395;2556102;3078609;2398893;2067941 -5501;'053;Australia and New Zealand;1866;Industrial roundwood, coniferous;5516;Production;m3;6333000;6213000;6779000;7458000;7654000;7973000;8334000;8951000;9970000;10439000;10289000;10693000;12854000;10448000;10205000;11784000;11771000;11385000;11548000;13707000;14437000;14219000;13689000;13327000;15321000;16264000;15687000;15400000;16921000;19702000;20164000;21194000;22573000;24686000;24591000;25350000;27204000;26189000;28630000;31699000;33314000;35412000;35130000;34338000;33582000;33782000;34917000;34470000;34127000;38891000;41096000;41348000;43292000;43542000;43860063;45311049;51674881;53249008;52685699;49999856;52059000;48893000;46308000 -5501;'053;Australia and New Zealand;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2243;1383;16552;2082;1200;700;600;0;1000;2600;1200;50;100;100;100;1000;1000;1000;1000;806;6;12;752;56;6186;5629;4170;3539;1504;6025;5691;4620;3848;1943 -5501;'053;Australia and New Zealand;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;366;193;1326;785;745;319;188;0;40;511;119;11;25;12;15;630;566;566;566;42;51;22;186;34;2207;2441;1757;1767;289;2298;2295;1177;1958;653 -5501;'053;Australia and New Zealand;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1683188;3696339;4273322;4528400;5251700;5544300;5979800;6546600;4671000;6639000;6854000;8084000;8894000;8620000;6091000;5796000;6449000;6857000;7367000;9738463;12047087;14399649;14983203;18285881;18996693;19342384;19816430;22776495;25655430;25726897;24245188;24386507;21225533;21711210 -5501;'053;Australia and New Zealand;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94379;209383;215845;453794;455009;445117;485122;482953;239765;318308;356758;323639;458480;379187;352241;338555;415550;494970;550121;654309;1113305;1476441;1385839;2092318;2129261;1737292;1980406;2888640;3330829;2744264;2428948;3016352;2342062;2043056 -5501;'053;Australia and New Zealand;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2243;1383;16552;2082;1200;700;600;0;1000;2600;1200;50;100;100;100;1000;1000;1000;1000;806;6;12;752;56;6186;5629;4170;3539;1504;6025;5691;4620;3848;1943 -5501;'053;Australia and New Zealand;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;366;193;1326;785;745;319;188;0;40;511;119;11;25;12;15;630;566;566;566;42;51;22;186;34;2207;2441;1757;1767;289;2298;2295;1177;1958;653 -5501;'053;Australia and New Zealand;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1683188;3696339;4273322;4528400;5251700;5544300;5979800;6546600;4671000;6639000;6854000;8084000;8894000;8620000;6091000;5796000;6449000;6857000;7367000;9738463;12047087;14399649;14983203;18285881;18996693;19342384;19816430;22776495;25655430;25726897;24245188;24386507;21225533;21711210 -5501;'053;Australia and New Zealand;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94379;209383;215845;453794;455009;445117;485122;482953;239765;318308;356758;323639;458480;379187;352241;338555;415550;494970;550121;654309;1113305;1476441;1385839;2092318;2129261;1737292;1980406;2888640;3330829;2744264;2428948;3016352;2342062;2043056 -5501;'053;Australia and New Zealand;1867;Industrial roundwood, non-coniferous;5516;Production;m3;9287000;8572000;8954000;9516000;9506000;9662000;9284000;9365000;9111000;8953000;9489000;8941000;8900000;9557000;11304000;10857000;11610000;11437000;10901000;11889000;11756000;10610000;9728000;10534000;11210000;11126000;10748000;11266000;10358000;10638000;10260000;9713000;9993000;10024000;11563000;10312000;9508000;10271000;9958000;11987000;11749000;10881000;11837000;11840000;11836000;12374000;12559000;13216000;12188000;11160000;11567000;9564000;9053000;10921000;12397901;13786970;15902213;15784484;15757775;12189248;10631000;11359000;11148000 -5501;'053;Australia and New Zealand;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6683;4087;3589;3586;4400;3600;4000;4800;7000;2400;7000;6000;8000;5000;4000;3000;3900;6300;3533;4519;4040;2729;4288;5181;7596;3811;2867;7618;7020;8111;4628;7371;15548;4005 -5501;'053;Australia and New Zealand;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1812;1034;797;1120;887;1409;1818;1428;2126;899;2244;2000;2827;2139;2262;1970;2112;3630;2460;2402;3611;2462;3644;4851;8770;3206;2838;6684;3710;4962;2147;3751;4121;4876 -5501;'053;Australia and New Zealand;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15297;57568;186773;172978;126653;140400;6000;100000;122000;137000;182000;197700;266300;173000;197283;95582;186282;186282;218682;175540;261671;243004;169826;268100;213627;354724;405149;1076571;1051383;956128;1038115;450604;407052;211581 -5501;'053;Australia and New Zealand;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3403;6990;25512;18491;20118;23536;3021;3815;3020;3655;3534;9819;25365;28904;29667;16201;22944;22944;26490;23073;31694;34984;30635;31121;49207;51166;55477;137430;142550;118131;127154;62257;56831;24885 -5501;'053;Australia and New Zealand;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2695;2265;1283;1068;500;1200;1000;1000;1000;1000;1000;1000;2000;2000;2000;1500;900;1300;1149;1599;1137;523;1010;1109;3394;1082;614;1281;1671;7839;997;2490;209;185 -5501;'053;Australia and New Zealand;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;614;431;185;356;141;410;409;418;292;312;650;522;1150;1026;1026;857;600;730;744;1128;1364;491;937;1053;3841;1070;540;1087;1443;4807;629;1545;1378;646 -5501;'053;Australia and New Zealand;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;657;657;253;0;0;0;0;0;0;14000;17000;33000;15283;3582;3582;3582;3582;7000;442;527;367;942;2125;3559;4016;12523;63534;78166;87604;848;2894;125 -5501;'053;Australia and New Zealand;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107;107;87;0;0;0;0;0;0;6827;7000;9000;3667;1385;1385;1385;1385;463;213;59;316;289;417;1763;1483;4700;21762;24323;18829;291;501;62 -5501;'053;Australia and New Zealand;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3988;1822;2306;2518;3900;2400;3000;3800;6000;1400;6000;5000;6000;3000;2000;1500;3000;5000;2384;2920;2903;2206;3278;4072;4202;2729;2253;6337;5349;272;3631;4881;15339;3820 -5501;'053;Australia and New Zealand;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1198;603;612;764;746;999;1409;1010;1834;587;1594;1478;1677;1113;1236;1113;1512;2900;1716;1274;2247;1971;2707;3798;4929;2136;2298;5597;2267;155;1518;2206;2743;4230 -5501;'053;Australia and New Zealand;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15297;57568;186116;172321;126400;140400;6000;100000;122000;137000;182000;183700;249300;140000;182000;92000;182700;182700;215100;168540;261229;242477;169459;267158;211502;351165;401133;1064048;987849;877962;950511;449756;404158;211456 -5501;'053;Australia and New Zealand;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3403;6990;25405;18384;20031;23536;3021;3815;3020;3655;3534;2992;18365;19904;26000;14816;21559;21559;25105;22610;31481;34925;30319;30832;48790;49403;53994;132730;120788;93808;108325;61966;56330;24823 -5501;'053;Australia and New Zealand;1868;Sawlogs and veneer logs;5516;Production;m3;12731000;11938000;12456000;13495000;13518000;13854000;13966000;14668000;14818000;14793000;15033000;14896000;15241000;13777000;12846000;14226000;13696000;13249000;12867000;14324000;14684000;14082000;12272000;11864000;13737000;14019000;13335000;13151000;13919000;17146000;17177000;18545000;19819000;21592000;22027000;22605000;23503000;22334000;24976000;26889000;27900000;30238000;30176000;28962000;28165000;28780000;29102000;28570000;28595000;32609000;33489000;34076000;36330000;36797000;36930521;37537290;43839191;45717102;44906943;41885080;44765000;41737000;39918000 -5501;'053;Australia and New Zealand;1868;Sawlogs and veneer logs;5616;Import quantity;m3;190500;110300;155500;134700;172700;68600;87500;127600;128900;131100;97500;100800;107500;109000;42900;50300;27500;18900;11600;1600;1400;6900;1600;1100;900;1800;3900;10200;11300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5501;'053;Australia and New Zealand;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;3987;2426;3397;3068;4069;1998;2679;4302;4101;4285;3203;3317;4818;7468;2755;3130;2659;2322;1716;848;562;2654;423;339;205;637;2511;3684;3628;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5501;'053;Australia and New Zealand;1868;Sawlogs and veneer logs;5916;Export quantity;m3;290700;288100;287300;375400;456900;545300;797100;1443300;1671500;1820900;1809900;1858500;1924200;1314700;547600;962500;1030400;937700;1237400;974500;533000;482900;511100;455900;365000;392500;451300;842700;1725500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5501;'053;Australia and New Zealand;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;3934;3892;3825;4872;5890;6818;9768;18742;25282;27972;32296;35620;48362;45223;18848;27095;28929;37808;56792;56109;29860;22482;25058;17735;18973;20978;25641;48462;81244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5501;'053;Australia and New Zealand;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;5329000;5088000;5299000;5947000;6099000;6232000;6413000;7025000;7557000;7801000;7576000;7912000;8339000;6537000;6356000;7595000;7178000;6913000;7021000;8443000;8607000;8357000;7703000;7308000;8826000;9235000;8540000;8403000;9259000;12413000;12799000;14422000;15418000;16936000;16832000;17913000;19415000;18373000;20867000;22734000;24181000;26546000;26490000;25354000;24561000;25348000;26031000;25402000;25773000;29962000;31108000;31775000;34317000;34805000;34837613;35332178;40965276;42754456;42095215;39670361;42411000;39444000;37852000 -5501;'053;Australia and New Zealand;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;5100;8900;10100;8700;4100;9500;17800;17600;12900;4000;4200;6200;6100;3000;2000;4600;2000;2100;200;100;100;100;500;200;300;200;300;500;1700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5501;'053;Australia and New Zealand;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;150;185;267;221;101;306;514;684;240;179;146;160;196;178;158;195;116;256;25;28;28;24;109;63;38;42;58;171;546;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5501;'053;Australia and New Zealand;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;261300;268700;274200;356900;443300;537500;796000;1431800;1660800;1809700;1797300;1844300;1915500;1302300;534200;958100;1027100;935800;1236400;970500;529400;479300;507500;452100;360700;388500;429200;820400;1700700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5501;'053;Australia and New Zealand;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;3199;3396;3489;4459;5526;6547;9684;18353;25081;27620;31969;35340;47980;44422;18081;26631;28808;37695;56658;55712;29592;22214;24789;17423;18583;20685;24802;47365;79128;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5501;'053;Australia and New Zealand;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;7402000;6850000;7157000;7548000;7419000;7622000;7553000;7643000;7261000;6992000;7457000;6984000;6902000;7240000;6490000;6631000;6518000;6336000;5846000;5881000;6077000;5725000;4569000;4556000;4911000;4784000;4795000;4748000;4660000;4733000;4378000;4123000;4401000;4656000;5195000;4692000;4088000;3961000;4109000;4155000;3719000;3692000;3686000;3608000;3604000;3432000;3071000;3168000;2822000;2647000;2381000;2301000;2013000;1992000;2092908;2205112;2873915;2962646;2811728;2214719;2354000;2293000;2066000 -5501;'053;Australia and New Zealand;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;185400;101400;145400;126000;168600;59100;69700;110000;116000;127100;93300;94600;101400;106000;40900;45700;25500;16800;11400;1500;1300;6800;1100;900;600;1600;3600;9700;9600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5501;'053;Australia and New Zealand;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;3837;2241;3130;2847;3968;1692;2165;3618;3861;4106;3057;3157;4622;7290;2597;2935;2543;2066;1691;820;534;2630;314;276;167;595;2453;3513;3082;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5501;'053;Australia and New Zealand;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;29400;19400;13100;18500;13600;7800;1100;11500;10700;11200;12600;14200;8700;12400;13400;4400;3300;1900;1000;4000;3600;3600;3600;3800;4300;4000;22100;22300;24800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5501;'053;Australia and New Zealand;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;735;496;336;413;364;271;84;389;201;352;327;280;382;801;767;464;121;113;134;397;268;268;269;312;390;293;839;1097;2116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5501;'053;Australia and New Zealand;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13583000;13016000;16142000;16491000;15514000;16303000;16736000;16773000;16753000;17636000;18468000;17163000;16891000;18623000;16209000;15375000;17102000;18798255;21071479;23238744;22736673;22909936;19551062;17102000;17834000;16893000 -5501;'053;Australia and New Zealand;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7402000;7294000;8487000;8605000;8451000;8263000;8641000;8678000;8019000;8414000;8640000;7962000;8535000;9627000;9190000;8557000;8368000;8702251;9645858;10394047;10102258;10141916;9794741;9071000;8991000;8038000 -5501;'053;Australia and New Zealand;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6181000;5722000;7655000;7886000;7063000;8040000;8095000;8095000;8734000;9222000;9828000;9201000;8356000;8996000;7019000;6818000;8734000;10096004;11425621;12844697;12634415;12768020;9756321;8031000;8843000;8855000 -5501;'053;Australia and New Zealand;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5916;Export quantity;m3;;;;;;;;;;1200;20000;13000;32000;126000;24000;26000;42000;39000;49500;35000;28400;39100;19400;19400;19400;5500;5500;5500;25000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5501;'053;Australia and New Zealand;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5922;Export value;1000 USD;;;;;;;;;;12;203;237;756;2908;569;462;889;913;1417;1064;1034;1670;485;485;485;132;132;132;1600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5501;'053;Australia and New Zealand;1870;Pulpwood and particles (1961-1997);5516;Production;m3;1941000;1972000;2395000;2451000;2539000;2691000;2727000;2717000;3284000;3557000;3745000;3640000;5374000;5006000;7613000;7191000;8596000;8335000;8330000;9890000;10177000;9513000;9865000;10455000;11073000;11720000;11862000;12436000;12263000;12529000;12595000;11782000;12183000;12559000;13539000;12457000;12738000;;;;;;;;;;;;;;;;;;;;;;;;;; -5501;'053;Australia and New Zealand;1870;Pulpwood and particles (1961-1997);5916;Export quantity;m3;;;;;;;;;;1200;20000;13000;32000;126000;24000;26000;42000;39000;49500;35000;28400;39100;19400;19400;19400;5500;5500;5500;25000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5501;'053;Australia and New Zealand;1870;Pulpwood and particles (1961-1997);5922;Export value;1000 USD;;;;;;;;;;12;203;237;756;2908;569;462;889;913;1417;1064;1034;1670;485;485;485;132;132;132;1600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5501;'053;Australia and New Zealand;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;907000;1033000;1351000;1306000;1335000;1503000;1712000;1679000;2110000;2225000;2320000;2311000;4024000;3393000;3403000;3601000;3959000;3808000;3853000;4465000;4978000;5124000;5296000;5362000;5780000;6373000;6512000;6352000;6989000;6924000;7098000;6522000;6823000;7391000;7371000;7014000;7436000;;;;;;;;;;;;;;;;;;;;;;;;;; -5501;'053;Australia and New Zealand;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;1034000;939000;1044000;1145000;1204000;1188000;1015000;1038000;1174000;1332000;1425000;1329000;1350000;1613000;4210000;3590000;4637000;4527000;4477000;5425000;5199000;4389000;4569000;5093000;5293000;5347000;5350000;6084000;5274000;5605000;5497000;5260000;5360000;5168000;6168000;5443000;5302000;;;;;;;;;;;;;;;;;;;;;;;;;; -5501;'053;Australia and New Zealand;1871;Other industrial roundwood;5516;Production;m3;948000;875000;882000;1028000;1103000;1090000;925000;931000;979000;1042000;1000000;1098000;1139000;1222000;1050000;1224000;1089000;1238000;1252000;1382000;1332000;1234000;1280000;1542000;1721000;1651000;1238000;1079000;1097000;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 -5501;'053;Australia and New Zealand;1871;Other industrial roundwood;5616;Import quantity;m3;14300;9600;6400;10600;13600;48200;55200;52800;52800;13700;35500;7500;4400;5100;5800;4400;5100;9100;9500;3200;4200;2600;2000;2000;3100;2400;2400;1100;1600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5501;'053;Australia and New Zealand;1871;Other industrial roundwood;5622;Import value;1000 USD;612;280;356;424;459;987;1020;911;911;581;879;373;259;384;1012;663;484;695;740;786;1490;1151;630;671;697;520;618;418;727;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5501;'053;Australia and New Zealand;1871;Other industrial roundwood;5916;Export quantity;m3;1800;4000;1700;2900;3200;4100;36300;27200;9900;11200;17200;13600;4800;16200;8900;2700;2800;5300;9300;8800;4900;6700;9000;6300;5000;8900;2700;7900;16000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5501;'053;Australia and New Zealand;1871;Other industrial roundwood;5922;Export value;1000 USD;50;114;45;89;82;128;662;525;283;369;464;375;320;705;402;401;263;496;857;912;1364;2005;2711;1736;1070;2327;591;2155;8511;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5501;'053;Australia and New Zealand;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;97000;92000;129000;205000;220000;238000;209000;247000;303000;413000;393000;470000;491000;518000;446000;588000;634000;664000;674000;799000;852000;738000;690000;657000;715000;656000;635000;645000;673000;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 -5501;'053;Australia and New Zealand;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;851000;783000;753000;823000;883000;852000;716000;684000;676000;629000;607000;628000;648000;704000;604000;636000;455000;574000;578000;583000;480000;496000;590000;885000;1006000;995000;603000;434000;424000;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 -5501;'053;Australia and New Zealand;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;14300;9600;6400;10600;13600;48200;55200;52800;52800;13700;35500;7500;4400;5100;5800;4400;5100;9100;9500;3200;4200;2600;2000;2000;3100;2400;2400;1100;1600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5501;'053;Australia and New Zealand;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;612;280;356;424;459;987;1020;911;911;581;879;373;259;384;1012;663;484;695;740;786;1490;1151;630;671;697;520;618;418;727;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5501;'053;Australia and New Zealand;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;1800;4000;1700;2900;3200;4100;36300;27200;9900;11200;17200;13600;4800;16200;8900;2700;2800;5300;9300;8800;4900;6700;9000;6300;5000;8900;2700;7900;16000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5501;'053;Australia and New Zealand;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;50;114;45;89;82;128;662;525;283;369;464;375;320;705;402;401;263;496;857;912;1364;2005;2711;1736;1070;2327;591;2155;8511;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5501;'053;Australia and New Zealand;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;24008;23008;23007;23007;24172;24269;23007;24007;24007;24007;24006;24006;24006;24006;29199 -5501;'053;Australia and New Zealand;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;414;1198;100;100;0;150;100;100;400;1000;1000;1000;2000;3000;2600;3100;4671;4952;5024;9008;12246;22181;18767;15249;16567;20448;22698;23702;23516;26554.55;33188;31957 -5501;'053;Australia and New Zealand;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;164;422;71;102;0;92;54;60;109;184;276;404;800;1069;927;1104;1952;2314;2596;4473;6480;10390;9093;7631;8923;11847;12379;13187;12886;19919.33;27542;21222 -5501;'053;Australia and New Zealand;1630;Wood charcoal;5910;Export quantity;t;300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1493;424;1100;2400;2000;800;1400;1000;1000;1000;4000;4000;6000;6000;6023;50;199;33;6;6;19;79;86;599;615;23;277;225;265;302;24;538 -5501;'053;Australia and New Zealand;1630;Wood charcoal;5922;Export value;1000 USD;50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;424;254;455;985;980;368;538;413;422;691;2186;2146;3111;3375;3665;31;67;44;7;11;22;73;106;484;488;51;222;194;186;225;52;518 -5501;'053;Australia and New Zealand;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15879000;15392000;18348000;18548000;18064000;19272000;20277000;21091000;20435000;20720000;23218000;21627000;17512000;17244000;15064000;15064000;15064000;17778281;19938563;21779522;21774215;22002119;18674293;13976000;14428000;14307000 -5501;'053;Australia and New Zealand;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6000;15000;8600;7500;6000;6300;2744;10400;17900;16700;41500;24100;31428;43703;53480;5601;6500;4435;4771;3462;3123;2679;4136;4599.81;3725;2034 -5501;'053;Australia and New Zealand;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;655;1279;966;897;755;781;1241;2547;2191;1585;2638;1863;2661;3631;3975;4002;5017;4558;4707;4356;4608;4422;4112;6041.37;6291;3898 -5501;'053;Australia and New Zealand;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8587000;8515000;10587000;9880000;10929000;10809000;11425000;10957000;12124000;13137000;13247000;10098000;11437000;12168069;10056902;10235525;12241005;13442013;14682739;16152661;17040947;14392028;10185646;11918606.87;13445298;10773768 -5501;'053;Australia and New Zealand;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;422102;400166;450087;400606;460399;530598;644356;658270;703637;878703;1015857;715937;900900;867188;752838;687318;802433;830676;880237;981229;1131444;1070673;709337;847468.74;957847;867713 -5501;'053;Australia and New Zealand;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13696000;13273000;15772000;16033000;15238000;16487000;17428000;18088000;17802000;18420000;20918000;19327000;14935000;14667000;12487000;12487000;12487000;15201281;17361563;19202522;19197215;19425119;16097293;4590000;4899000;4436000 -5501;'053;Australia and New Zealand;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1983;3361;4361;3000;4000;4400;6000;9000;8000;7000;5000;5000;744;6400;13900;12700;38500;22100;28428;40033;50062;2115;3098;1786;3202;2996;2878;2016;3226;3954.81;3229;1617 -5501;'053;Australia and New Zealand;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;167;273;300;220;413;534;655;1070;895;775;646;646;791;1870;1514;908;1879;1044;1322;2036;2487;3022;3637;3359;3716;4130;4578;4263;3862;5907.37;5876;3570 -5501;'053;Australia and New Zealand;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;183300;536400;1033000;2167000;2799000;2992000;3786000;5284003;5035400;5307000;6999400;6618100;6200500;6085200;7325800;7356200;7182000;8063500;8465000;8187500;5572500;6595300;5673313;6637500;6966600;7911900;7326000;8252000;8587000;8508000;10583000;9875000;10926000;10807000;11423000;10955000;12121000;13132000;13244000;10087000;11378000;12107000;10010000;10203000;12237000;13440000;14680685;16152141;17040000;14391221;10182227;11913676.87;13444369;10754524 -5501;'053;Australia and New Zealand;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;2064;10826;26076;71619;99135;71685;69762;97904;100579;113720;159601;199859;192351;155687;189131;167916;177122;268123;304263;330889;321166;376518;309180;335716;367282;461372;447703;449531;422102;399036;449242;400029;459979;530328;644176;658014;703471;878357;1015294;714621;894529;859288;748105;681383;800822;829793;879330;979901;1128577;1067794;706792;846973.74;957398;867231 -5501;'053;Australia and New Zealand;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 -5501;'053;Australia and New Zealand;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4556;5293;0;0;0;0;0;6000;600;500;1000;1300;2000;4000;4000;4000;3000;2000;3000;3670;3418;3486;3402;2649;1569;466;245;663;910;645;496;417 -5501;'053;Australia and New Zealand;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;164;177;0;0;0;0;0;209;71;122;109;135;450;677;677;677;759;819;1339;1595;1488;980;1380;1199;991;226;30;159;250;134;415;328 -5501;'053;Australia and New Zealand;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9197;26574;19800;0;0;0;0;7000;4000;5000;3000;2000;2000;2000;3000;5000;3000;11000;59000;61069;46902;32525;4005;2013;2054;520;947;807;3419;4930;929;19244 -5501;'053;Australia and New Zealand;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;404;1029;828;0;0;0;0;1130;845;577;420;270;180;256;166;346;563;1316;6371;7900;4733;5935;1611;883;907;1328;2867;2879;2545;495;449;482 -5501;'053;Australia and New Zealand;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -5501;'053;Australia and New Zealand;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -5501;'053;Australia and New Zealand;1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -5501;'053;Australia and New Zealand;1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -5501;'053;Australia and New Zealand;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32000;32000;135000;154495;161128;250826;205817;136312;150922;175085;175085;175085 -5501;'053;Australia and New Zealand;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;551;554;724;1318;3078;6511;4274;5877;8942;16527.34;20449;12814 -5501;'053;Australia and New Zealand;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;334;405;470;588;1400;2564;3399;2516;2910;5351.71;6899;6916 -5501;'053;Australia and New Zealand;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1639;1046;1576;2489;2329;70814;79354;62051;76908;96982.89;64178;49257 -5501;'053;Australia and New Zealand;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;496;566;802;1064;1272;7912;8730;7590;10740;13892.18;10163;7772 -5501;'053;Australia and New Zealand;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32000;32000;135000;153000;160000;250000;205000;135967;150402;174910;174910;174910 -5501;'053;Australia and New Zealand;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;307;355;449;897;2101;1957;1448;2725;6325;6551;11460;8569 -5501;'053;Australia and New Zealand;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;136;200;299;352;605;581;547;953;1632;2500;4003;4006 -5501;'053;Australia and New Zealand;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1422;721;1058;746;814;69814;78334;60967;75402;93997.89;62763;48726 -5501;'053;Australia and New Zealand;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;343;364;524;375;383;7455;8246;7274;10259;13245.18;9704;7543 -5501;'053;Australia and New Zealand;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1495;1128;826;817;345;520;175;175;175 -5501;'053;Australia and New Zealand;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;244;199;275;421;977;4554;2826;3152;2617;9976.34;8989;4245 -5501;'053;Australia and New Zealand;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;198;205;171;236;795;1983;2852;1563;1278;2851.71;2896;2910 -5501;'053;Australia and New Zealand;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;217;325;518;1743;1515;1000;1020;1084;1506;2985;1415;531 -5501;'053;Australia and New Zealand;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;153;202;278;689;889;457;484;316;481;647;459;229 -5501;'053;Australia and New Zealand;1872;Sawnwood;5516;Production;m3;5042000;4805000;4671000;5372000;5487000;5491000;5216000;5448000;5316000;5409000;5225000;5290000;5553000;5607000;5586000;5723000;5469000;4857000;4997000;5451000;5756000;5652000;5141000;5112000;5536000;5632000;5007000;5223000;5300000;5349000;5121000;5585000;5992000;6292000;6641000;6562000;6680000;6967000;7396000;8003000;7742000;8516000;8700000;9092000;8958000;9076000;9521000;9159000;8327000;9157911;8387963;8446599;8546000;8500705;9134000;9232731;9384155;9059347;9040483;8459303;8895303;8949621;7981501 -5501;'053;Australia and New Zealand;1872;Sawnwood;5616;Import quantity;m3;937700;715700;735900;876700;917600;864100;816200;867900;937200;932600;960500;938000;1130900;1335000;931400;1060900;1198700;965200;993100;1018100;1087400;1171100;851800;1105600;1429100;1308800;1123400;1294300;1757900;1452000;1272400;1233356;1232761;1115940;1092940;781440;791540;816540;812540;1062540;616540;772540;817540;845540;750540;620540;627740;776540;564750;769273;746848;616512;678677;746647;829734;763881;729007;1043745;652119;585230;833635;1139246;607471 -5501;'053;Australia and New Zealand;1872;Sawnwood;5622;Import value;1000 USD;33315;30032;33802;41681;46533;41314;39182;44562;53070;59541;58234;57362;94759;171581;114293;131739;163362;173323;181855;226569;228054;235427;156578;213254;237825;233547;225249;302403;416875;387216;326639;319740;356888;456312;422404;311480;302669;285456;299479;367909;212435;262812;294048;338665;337178;306095;365361;395724;273838;380932;413062;364645;368621;413198;382332;360947;403349;535650;351520;310249;556500;873799;388003 -5501;'053;Australia and New Zealand;1872;Sawnwood;5916;Export quantity;m3;162900;183600;165500;177800;154100;118600;187200;257500;293900;319000;350000;308200;332500;309100;229800;298884;356500;419700;582700;703300;606500;567000;446200;421500;524700;434900;363500;464600;531500;634200;794600;982767;1017870;1069900;1126500;1016400;1215200;1233000;1458500;1633000;1750000;1867000;1700000;2002000;2048000;2304000;2158000;2139000;2184968;2461934;2177712;2345523;2313108;2114557;2135068;2049874;2154568;2207345;2081545;1955437;1710405;1596128;1522307 -5501;'053;Australia and New Zealand;1872;Sawnwood;5922;Export value;1000 USD;8815;9155;8176;8354;7895;5970;9846;11742;13568;16338;17700;18393;21153;29031;23800;26896;30720;40577;70155;101419;85651;70257;57305;73157;70658;67105;59406;82873;116624;130377;159029;202040;285676;329654;334059;286064;322116;300960;374117;392003;370249;466237;436939;598601;582560;616466;638330;604868;534710;726137;688121;723385;755741;716076;655120;667002;703670;725314;638664;613281;718077;668846;581066 -5501;'053;Australia and New Zealand;1632;Sawnwood, coniferous;5516;Production;m3;2330000;2306000;3153500;2633500;2653000;2666500;2509000;2595500;2634000;2709000;2450000;2654000;2953500;2978000;2951000;3180000;3023000;2676500;2877000;3241500;3490500;3526500;3246000;3268000;3601000;3713000;3082500;3502000;3639000;3566000;3535000;4007000;4454000;4746000;5055000;5072000;5250000;5506000;5981000;6519000;6441000;7160000;7363000;7825000;7715000;7877000;8376000;8044000;7330000;8271911;7650000;7695000;7790000;7822000;8495653;8544250;8619632;8338964;8348610;7827339;8263339;8332000;7520880 -5501;'053;Australia and New Zealand;1632;Sawnwood, coniferous;5616;Import quantity;m3;687150;560300;551650;683000;641550;666300;647000;633100;708500;654200;681450;677650;792800;886000;643450;703750;754200;646100;685200;699250;780900;881200;642200;823200;1112600;1043500;862950;1033550;1426200;1179100;1087900;1053806;1053618;968484;936284;672284;679484;694484;689484;913484;501484;641484;671484;676484;593484;470484;453684;639484;461056;664911;636660;522389;593613;653792;747295;667275;643687;963341;576609;507768;723495;1043588;530959 -5501;'053;Australia and New Zealand;1632;Sawnwood, coniferous;5622;Import value;1000 USD;21873;22347;24294;31220;30341;30287;29652;30393;39090;41931;39322;39676;62870;109151;71388;82174;94308;117104;118809;140075;138748;153631;105508;141985;115969;169009;153521;219554;305264;279549;247527;241314;268675;358806;323051;240373;234444;223134;228845;285616;153875;194527;219443;242842;233171;196791;234075;279955;183415;282430;296886;250928;268770;308733;294734;274658;309926;440887;268886;230497;452037;752523;300771 -5501;'053;Australia and New Zealand;1632;Sawnwood, coniferous;5916;Export quantity;m3;89800;109750;103450;117850;99700;81650;127700;223150;253800;269000;311700;273400;263100;251450;179100;253817;310600;378000;525400;633450;558600;524000;406050;380900;488800;400900;348000;408600;481000;583000;774700;919508;983668;1046700;1098400;985900;1177000;1203000;1402000;1572000;1685000;1827000;1665000;1966000;2010000;2261000;2115000;2086000;2139322;2406431;2109924;2317858;2269548;2062819;2070911;1999556;2098126;2117806;2004546;1920604;1660164;1487887;1456659 -5501;'053;Australia and New Zealand;1632;Sawnwood, coniferous;5922;Export value;1000 USD;4040;4681;4383;4740;4181;3306;5829;9065;10232;12138;14734;14136;14098;19782;16013;18931;21856;31492;55830;82211;71415;57508;46325;61705;61692;57814;54051;63739;97203;112553;150853;185942;273831;317297;317379;263950;298169;285726;351175;366586;353530;443148;415744;564200;554840;586650;608890;564768;504059;682051;652954;697868;729965;688794;634348;638125;667946;696229;612806;590770;694173;649328;563918 -5501;'053;Australia and New Zealand;1633;Sawnwood, non-coniferous;5516;Production;m3;2712000;2499000;1517500;2738500;2834000;2824500;2707000;2852500;2682000;2700000;2775000;2636000;2599500;2629000;2635000;2543000;2446000;2180500;2120000;2209500;2265500;2125500;1895000;1844000;1935000;1919000;1924500;1721000;1661000;1783000;1586000;1578000;1538000;1546000;1586000;1490000;1430000;1461000;1415000;1484000;1301000;1356000;1337000;1267000;1243000;1199000;1145000;1115000;997000;886000;737963;751599;756000;678705;638347;688481;764523;720383;691873;631964;631964;617621;460621 -5501;'053;Australia and New Zealand;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;250550;155400;184250;193700;276050;197800;169200;234800;228700;278400;279050;260350;338100;449000;287950;357150;444500;319100;307900;318850;306500;289900;209600;282400;316500;265300;260450;260750;331700;272900;184500;179550;179143;147456;156656;109156;112056;122056;123056;149056;115056;131056;146056;169056;157056;150056;174056;137056;103694;104362;110188;94123;85064;92855;82439;96606;85320;80404;75510;77462;110140;95658;76512 -5501;'053;Australia and New Zealand;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;11442;7685;9508;10461;16192;11027;9530;14169;13980;17610;18912;17686;31889;62430;42905;49565;69054;56219;63046;86494;89306;81796;51070;71269;121856;64538;71728;82849;111611;107667;79112;78426;88213;97506;99353;71107;68225;62322;70634;82293;58560;68285;74605;95823;104007;109304;131286;115769;90423;98502;116176;113717;99851;104465;87598;86289;93423;94763;82634;79752;104463;121276;87232 -5501;'053;Australia and New Zealand;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;73100;73850;62050;59950;54400;36950;59500;34350;40100;50000;38300;34800;69400;57650;50700;45067;45900;41700;57300;69850;47900;43000;40150;40600;35900;34000;15500;56000;50500;51200;19900;63259;34202;23200;28100;30500;38200;30000;56500;61000;65000;40000;35000;36000;38000;43000;43000;53000;45646;55503;67788;27665;43560;51738;64157;50318;56442;89539;76999;34833;50241;108241;65648 -5501;'053;Australia and New Zealand;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;4775;4474;3793;3614;3714;2664;4017;2677;3336;4200;2966;4257;7055;9249;7787;7965;8864;9085;14325;19208;14236;12749;10980;11452;8966;9291;5355;19134;19421;17824;8176;16098;11845;12357;16680;22114;23947;15234;22942;25417;16719;23089;21195;34401;27720;29816;29440;40100;30651;44086;35167;25517;25776;27282;20772;28877;35724;29085;25858;22511;23904;19518;17148 -5501;'053;Australia and New Zealand;1634;Veneer sheets;5516;Production;m3;30600;27400;37500;30800;35100;42600;36300;38900;44200;44000;31400;25800;33700;21900;50700;41000;34000;34300;39000;31300;34000;40000;33000;33000;33000;33000;33000;33000;33000;33000;49000;61000;70000;103000;129000;143000;316000;267000;366000;404000;452000;558000;639000;686000;676000;693000;564000;601000;521000;786433;833566;800874;742515;783553;741938;642260;619265;606366;596114;466620;544114;549428;456725 -5501;'053;Australia and New Zealand;1634;Veneer sheets;5616;Import quantity;m3;3200;2800;4600;4800;7800;6700;7300;12000;18100;19900;20600;21200;21300;31400;40800;27400;27900;20700;19700;19600;23400;24000;19000;23300;27700;24000;20800;26900;30000;24000;13100;13817;14338;24101;22701;13501;18701;23001;20001;17001;16001;19814;17001;21001;25001;33570;46371;34001;18252;10120;17094;12912;7914;9032;13882;12006;14839;12436;16098;12209;12670;13066;7000 -5501;'053;Australia and New Zealand;1634;Veneer sheets;5622;Import value;1000 USD;534;559;928;1023;1657;1490;1886;2577;3926;3924;4359;4507;6176;11825;10210;11466;11515;8508;11122;12103;14496;12372;11721;14733;14061;15049;13811;18235;23172;20935;13253;13963;16523;16555;20600;18205;16467;16419;18260;16250;12097;14158;16705;18279;21051;33281;40087;30725;19613;21624;31526;27562;20084;19912;22878;17774;16954;15347;18734;15135;24114;23186;17334 -5501;'053;Australia and New Zealand;1634;Veneer sheets;5916;Export quantity;m3;300;300;300;400;200;500;500;700;800;1700;1300;900;1500;1200;6400;400;900;700;2700;3700;4800;4800;3500;1200;1500;1300;1200;2400;1500;2200;2900;2824;7054;12100;12800;11300;8400;17000;20000;26000;57000;101248;132000;141000;151000;155000;144000;202000;213418;194302;196803;172556;157687;160225;144239;141875;161014;166183;149346;95213;106865;110336;74791 -5501;'053;Australia and New Zealand;1634;Veneer sheets;5922;Export value;1000 USD;71;92;90;132;72;153;183;192;255;614;439;385;794;701;368;268;511;532;1354;1302;2054;1805;1341;1476;1358;1238;1739;2393;1625;2192;2267;2769;5555;7481;9994;10233;8488;5960;7892;10047;11783;30250;40377;62100;66674;35900;37830;55219;57047;88661;110883;77581;56394;61515;57627;60048;68503;56378;50068;37590;37376;44315;30516 -5501;'053;Australia and New Zealand;1873;Wood-based panels;5516;Production;m3;289600;277300;1020600;363200;418000;524100;537500;610800;641900;745000;768900;721700;898900;966100;869300;1013400;1009000;1025000;1034000;1135000;1181400;1188200;1020000;1177000;1259000;1297000;1465000;1587000;1706000;1638500;1559000;1616000;1756000;2028000;2100000;2286000;2396000;2476000;2688000;3046000;3042000;3275056;3464714;3559946;3452764;3553889;3306859;3224030;2765803;2813773;2967925;2731821;2639178;2777117;2952866;3077485;3077846;3015193;2976137;2739794;2915325;2881401;2673602 -5501;'053;Australia and New Zealand;1873;Wood-based panels;5616;Import quantity;m3;19700;21300;18400;18400;24400;31490;38001;40554;39648;45306;52222;52201;70917;100301;82716;110900;93500;69000;80000;67900;80900;87400;59500;78200;83800;97300;85300;85500;85700;143200;162200;194971;214229;203375;244724;198324;209124;222124;248124;327124;272124;364124;345124;370124;354124;404524;464677;475424;361824;552075;558447;602261;559723;662618;715592;686041;828308;1037966;933386;845880;1288813;1230889;1123463 -5501;'053;Australia and New Zealand;1873;Wood-based panels;5622;Import value;1000 USD;3062;3027;2690;3049;4030;5014;5304;6488;6031;6549;7632;7147;10668;23966;17981;25867;26911;21104;29489;31577;38012;37851;26075;30394;27153;31236;33158;40830;40917;57788;57938;71459;74373;91067;100138;89726;86321;85048;92845;98167;75389;113189;119789;153277;163486;193583;239283;233128;175060;300361;328073;356891;337916;392771;356780;351857;447786;553413;528257;519510;881783;963261;689793 -5501;'053;Australia and New Zealand;1873;Wood-based panels;5916;Export quantity;m3;7500;8800;19100;28800;36100;40855;38364;46409;63555;66402;86028;74484;91656;50507;54913;27400;31000;51400;101600;137900;133400;94600;109000;92000;77500;96200;166400;261200;288900;413000;503400;605993;596794;780600;817000;782800;831100;771000;1004000;1154000;1294000;1328030;1364220;1402640;1406296;1321000;1189000;997000;893260;812051;890118;832420;745994;776790;834944;849982;831351;837751;695379;724758;737379;746175;567021 -5501;'053;Australia and New Zealand;1873;Wood-based panels;5922;Export value;1000 USD;883;907;1384;1909;2504;2684;2904;3349;4187;4862;6407;6139;7973;6567;5931;4800;5968;9472;21765;30960;31149;23493;23232;20008;14739;21052;39737;45662;86315;111623;136553;162248;186238;297553;318228;299068;275471;196166;259444;282130;292708;366001;331629;449229;443880;394441;408195;366361;300095;334530;381684;381282;326643;328390;352850;277781;287233;338699;313720;264639;268555;284987;235453 -5501;'053;Australia and New Zealand;1640;Plywood and LVL;5516;Production;m3;131100;122400;144500;129800;121800;125500;116200;124000;118600;159500;169600;156400;176000;164500;121000;99000;111000;131000;129000;141000;149000;148000;126000;130000;144000;157000;166000;172000;192000;193000;155000;184000;219000;275000;309000;302000;346000;348000;404000;440000;416000;491056;562714;548147;560974;561066;557593;522540;373490;479941;514569;515553;486376;555185;555075;596490;581872;513216;540508;451398;477050;478491;394418 -5501;'053;Australia and New Zealand;1640;Plywood and LVL;5616;Import quantity;m3;16400;15100;12600;14200;21500;26600;27800;34700;32600;38500;47100;46400;56400;83300;61900;99300;83500;66400;76200;64700;77600;83100;55300;72000;74500;84300;70700;73900;69100;72000;61100;75066;73270;65432;72532;70532;78032;96032;112032;118032;107032;157032;181032;207032;211032;253432;239032;266332;196035;341642;310113;346202;301560;416850;417808;390884;465332;615268;550970;552809;944026;900709;736183 -5501;'053;Australia and New Zealand;1640;Plywood and LVL;5622;Import value;1000 USD;2767;2619;2249;2752;3740;4633;4983;6102;5616;6273;7402;6901;9879;22737;16024;24745;25775;20764;28795;30925;37246;36871;25288;29228;25529;28664;28436;36438;32973;33587;27936;34795;30401;38237;39441;38940;42390;45331;51777;51572;42230;69492;79937;97879;107089;132761;157727;152683;105551;206319;205392;228392;206714;249991;228553;217178;300665;376879;365461;380291;692726;764669;516849 -5501;'053;Australia and New Zealand;1640;Plywood and LVL;5916;Export quantity;m3;500;400;300;300;300;700;1700;1500;4000;7100;11400;7500;9300;5500;2000;1300;5300;11200;27500;29300;38600;29600;19800;12400;12700;16600;18900;13800;19800;22700;28100;48664;63496;94400;130400;109100;105300;103000;124000;104000;115000;110706;111000;143000;117000;84000;81000;100000;79321;90640;97488;85376;64720;69218;68578;60923;89286;113971;104572;91108;54637;53440;45655 -5501;'053;Australia and New Zealand;1640;Plywood and LVL;5922;Export value;1000 USD;292;238;212;193;201;392;582;575;864;1152;1586;1577;2087;2052;1460;1652;2481;3832;8856;11310;14128;10975;7669;6156;5222;6243;7282;10261;13249;12708;13899;19492;28128;54340;70666;79030;74359;56175;68760;59844;64039;79578;84600;121990;101500;78837;87869;82932;68208;94675;113046;104621;78713;42582;35390;31508;53862;94458;87714;68098;47123;36933;42303 -5501;'053;Australia and New Zealand;1607;Laminated Veneer Lumber (LVL);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;360352;256000 -5501;'053;Australia and New Zealand;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109908;110854 -5501;'053;Australia and New Zealand;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105059;87939 -5501;'053;Australia and New Zealand;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28851;37773 -5501;'053;Australia and New Zealand;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19643;24965 -5501;'053;Australia and New Zealand;1646;Particle board and OSB (1961-1994);5516;Production;m3;13200;20900;729800;64800;99800;148400;177900;229200;274500;317700;337800;320500;462000;544800;507000;641000;608000;638000;652000;769000;791000;792000;675000;803000;863000;868000;925000;899000;970000;895000;794000;804000;888000;1001000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5501;'053;Australia and New Zealand;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;20100;6300;3100;1600;1700;1700;1800;2100;2000;3300;6000;8200;9800;4200;6300;12600;16900;23025;22259;24083;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5501;'053;Australia and New Zealand;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;1757;525;272;124;221;279;350;423;329;487;884;1283;3433;1534;2085;4286;3980;5691;5243;5629;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5501;'053;Australia and New Zealand;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;100;100;200;500;1700;2000;2200;7200;4800;5300;3700;8500;8300;14100;5300;8800;20300;49500;83400;64700;36900;53200;45900;38400;38600;37500;44700;48900;85100;115000;89131;129719;182400;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5501;'053;Australia and New Zealand;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;5;4;16;42;116;170;180;277;583;564;456;832;868;391;747;1187;2761;8099;14196;9577;6047;7354;6975;5866;5128;6435;9164;12182;17726;26538;20200;32718;51648;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5501;'053;Australia and New Zealand;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1031000;992000;1005000;1047000;1079000;1190000;1095000;1170000;1247000;1291799;1181790;1243823;1189266;1183490;1066313;1070045;1142196;1029703;987037;1028994;1104223;1121659;1125461;1117124;1100078;1077161;1110637;1093316;1084844 -5501;'053;Australia and New Zealand;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36583;22483;15783;9083;19083;9083;34083;97083;76083;63083;51083;52083;79833;48980;30886;52207;64625;69850;65370;69573;75407;66213;96001;111118;116046;63193;77071;72327;139078 -5501;'053;Australia and New Zealand;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7431;5218;3766;2615;5384;3152;4437;14336;11236;17215;14935;12591;20009;12440;10110;12314;18279;19660;20751;23769;20790;21754;29864;35354;36300;22700;38902;30989;47072 -5501;'053;Australia and New Zealand;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;192200;229300;197900;131000;132000;126000;115000;116444;145220;140640;131296;121000;143000;135000;99160;72478;74617;71824;79921;85352;85074;78792;86019;79797;87028;60426;92259;74224;69042 -5501;'053;Australia and New Zealand;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64038;80494;69049;33403;32057;29027;28642;36390;43740;55533;46020;38175;46925;43115;36466;33381;35959;34943;36055;32367;35606;26886;21688;27352;24270;20652;21824;18130;16185 -5501;'053;Australia and New Zealand;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -5501;'053;Australia and New Zealand;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12250;12103;12000;25756;25265;15837;28008;25394;25192;25670;33253;44255;31551;28579;40079;65564;20127 -5501;'053;Australia and New Zealand;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4704;4069;3206;6343;8082;8054;10457;10043;8871;9970;12664;17366;11383;10994;18564;37817;10141 -5501;'053;Australia and New Zealand;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;226;0;0;34;5;106;40;40 -5501;'053;Australia and New Zealand;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;221;0;0;8;3;44;38;38 -5501;'053;Australia and New Zealand;1874;Fibreboard;5516;Production;m3;145300;134000;146300;168600;196400;250200;243400;257600;248800;267800;261500;244800;260900;256800;241300;273400;290000;256000;253000;225000;241400;248200;219000;244000;252000;272000;374000;516000;544000;550500;610000;628000;649000;752000;760000;992000;1045000;1081000;1205000;1416000;1531000;1614000;1655000;1720000;1710000;1749000;1560000;1518000;1326000;1263787;1311160;1186565;1165765;1192938;1293568;1359336;1370513;1384853;1335551;1211235;1327638;1309594;1194340 -5501;'053;Australia and New Zealand;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;96880;118700;113860;135609;105309;115309;117009;117009;200009;131009;110009;88009;100009;92009;99009;133562;148009;122903;132470;158444;170372;164785;150801;197185;203274;233722;267325;234819;201299;227637;192289;228075 -5501;'053;Australia and New Zealand;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;30973;38729;47201;53266;45568;40165;37102;35684;43443;28722;29361;28616;38183;41462;48231;56843;63936;56193;75385;96320;100785;99994;108968;98566;102955;104593;123814;115113;105525;131591;129786;115731 -5501;'053;Australia and New Zealand;1874;Fibreboard;5916;Export quantity;m3;7000;8300;18700;28300;35300;38455;34664;42709;52355;54502;69328;63284;73856;36707;38813;20800;16900;19900;24600;25200;30100;28100;36000;33700;26400;41000;110000;202700;220200;305200;360300;468198;403579;503800;494400;444400;527900;537000;748000;924000;1064000;1100880;1108000;1119000;1158000;1116000;965000;762000;714779;648933;718013;675220;601353;622220;681292;710041;656046;643983;503745;573219;590377;618471;452284 -5501;'053;Australia and New Zealand;1874;Fibreboard;5922;Export value;1000 USD;591;664;1168;1700;2261;2176;2152;2594;3046;3127;4257;4106;5054;3647;4080;2401;2300;2879;4810;5454;7444;6471;8209;6877;3651;9681;26020;26237;60884;81189;96116;122556;125392;191565;183524;139544;132063;106588;158627;193259;200027;250033;203289;271706;296360;277429;273401;240314;195421;206474;232679;241718;211875;253441;281854;219166;211683;216889;201728;175886;199564;229886;176927 -5501;'053;Australia and New Zealand;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56000;51000;54000;51000;52000;58000;60000;65000;12000;62000;64000;53000;52000;47000;49000;40000;0;0;0;0;0;0;0;0;0;0;0;0;0 -5501;'053;Australia and New Zealand;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16600;12000;10300;11000;10000;12000;8000;9000;9000;21000;29000;40000;32807;34000;29929;47106;66590;73053;81465;81234;93546;97768;110026;102355;81201;64567;68372;65492;63908 -5501;'053;Australia and New Zealand;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7160;6426;5083;5675;5189;4757;3741;4433;5240;13019;18033;24812;25254;25413;22109;37020;54621;60154;60874;66575;56293;56342;56800;55368;48854;39598;50966;50921;42490 -5501;'053;Australia and New Zealand;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3100;3300;3300;7000;7000;13000;18000;20000;15000;18000;18000;14000;15000;4000;1557;2033;3028;2434;3687;4720;10909;21526;3901;2267;3014;6357;8772;5212;3988 -5501;'053;Australia and New Zealand;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1689;1522;1464;2174;4013;7939;7941;6400;5541;7068;8040;6643;6048;1552;1288;1585;2408;2046;2569;2150;3087;5260;2625;2450;2032;1561;2512;1497;1538 -5501;'053;Australia and New Zealand;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;540000;786000;853000;899000;1025000;1241000;1350000;1419000;1627000;1639000;1622000;1670000;1481000;1454000;1277000;1223787;1311160;1186565;1165765;1192938;1293568;1359336;1370513;1384853;1335551;1211235;1327638;1309594;1194340 -5501;'053;Australia and New Zealand;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104100;81300;86000;83000;80000;153000;108000;85000;59000;63000;46000;40000;83646;95000;82323;75150;83313;88258;76403;66152;96270;97390;116554;157865;148566;129943;153622;114618;156443 -5501;'053;Australia and New Zealand;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40764;34806;27920;24383;22132;31657;20708;20173;16232;19700;15875;16090;27603;34622;30724;35400;38137;37006;36483;40773;39639;43251;44241;63726;64312;63755;79039;76173;71189 -5501;'053;Australia and New Zealand;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;480200;430700;503600;518000;718000;895000;1032000;1061000;1059000;1072000;1107000;1049000;923000;756000;703996;637654;705729;663550;592978;612512;664685;686223;651076;640828;500108;565209;574112;604490;436683 -5501;'053;Australia and New Zealand;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;179262;135749;127541;102561;150637;180841;188472;238206;189268;254800;276800;257936;259400;237502;191457;203017;228357;237429;207350;246982;276333;213094;208764;214128;199622;174185;196489;227811;174312 -5501;'053;Australia and New Zealand;1650;Other fibreboard;5516;Production;m3;16100;14200;14400;15300;15700;63200;60000;61600;62800;72800;74000;69200;75200;72400;76800;116400;130000;127000;128000;45000;42400;45200;39000;44000;45000;48000;67000;99000;108000;112500;128000;133000;138000;161000;164000;155000;138000;131000;128000;117000;121000;130000;16000;19000;24000;26000;27000;17000;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -5501;'053;Australia and New Zealand;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;10885;13301;15109;14909;12009;19009;23009;27009;35009;15009;16009;20009;16009;17009;19009;17109;19009;10651;10214;8541;9061;6917;3415;7369;8116;7142;7105;5052;6789;5643;12179;7724 -5501;'053;Australia and New Zealand;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;3650;4098;5399;5342;4336;7162;7044;8363;7029;4273;4755;7144;5464;7554;7329;3986;3901;3360;2965;3562;3625;2637;1620;2634;3362;3552;4720;1947;2172;1586;2692;2052 -5501;'053;Australia and New Zealand;1650;Other fibreboard;5916;Export quantity;m3;;100;300;300;400;1600;1600;800;1600;2800;3200;4000;3200;800;800;900;1200;1500;5700;1600;1400;1700;1700;6400;3600;1300;1800;10200;15800;38700;27900;26194;14221;13300;11100;10400;21000;12000;23000;16000;14000;19880;34000;29000;33000;53000;27000;2000;9226;9246;9256;9236;4688;4988;5698;2292;1069;888;623;1653;7493;8769;11613 -5501;'053;Australia and New Zealand;1650;Other fibreboard;5922;Export value;1000 USD;;39;54;52;79;72;91;68;82;95;124;121;128;129;169;72;79;245;1118;407;392;272;271;733;778;208;476;429;9784;16689;15705;6852;4128;1926;2573;2273;3058;1853;3977;4479;3614;5427;8480;9838;11520;12850;7953;1260;2676;1872;1914;2243;1956;4309;2434;812;294;311;74;140;563;578;1077 -5501;'053;Australia and New Zealand;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;129200;119800;131900;153300;180700;187000;183400;196000;186000;195000;187500;175600;185700;184400;164500;157000;160000;129000;125000;180000;199000;203000;180000;200000;207000;224000;307000;417000;436000;438000;482000;495000;511000;591000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5501;'053;Australia and New Zealand;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;85995;105399;98751;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5501;'053;Australia and New Zealand;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;27323;34631;41802;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5501;'053;Australia and New Zealand;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;7000;8200;18400;28000;34900;36855;33064;41909;50755;51702;66128;59284;70656;35907;38013;19900;15700;18400;18900;23600;28700;26400;34300;27300;22800;39700;108200;192500;204400;266500;332400;442004;389358;490500;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5501;'053;Australia and New Zealand;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;591;625;1114;1648;2182;2104;2061;2526;2964;3032;4133;3985;4926;3518;3911;2329;2221;2634;3692;5047;7052;6199;7938;6144;2873;9473;25544;25808;51100;64500;80411;115704;121264;189639;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5501;'053;Australia and New Zealand;1879;Total fibre furnish;5510;Production;t;652000;691500;835400;914400;990100;775100;845000;869500;996000;1551200;1581800;1642900;1818000;2020000;1996000;2177000;2215000;2291000;2275000;2445000;2529000;2568000;2384000;2501000;2694000;2655000;2774000;3074000;3061000;3068000;3337000;3424000;3513000;3474000;3615000;3816000;3989000;3907000;3995000;4717000;4697000;4806000;4672000;4870787;5176961;5421732;5738040;6271681;6128386;6596795;6704264;6770490;6430049;6550442;6448964;6614502;6522447;6558082;6421914;5793002;5774875;5744781;5055000 -5501;'053;Australia and New Zealand;1879;Total fibre furnish;5610;Import quantity;t;7100;8000;12200;11000;14100;18400;17900;254700;271300;329200;306600;250500;323100;359000;309900;253000;286600;269700;300900;292700;306200;267700;224900;250700;212500;242700;280900;301200;276200;281500;203500;267718;279020;260900;238100;226600;264200;245000;359100;341800;318400;352400;362000;430200;383259;359903;421599;446074;300461;260429;254246;274139;287310;338712;348487;332487;352340;371678;345916;342219;428419.21;436485;310561 -5501;'053;Australia and New Zealand;1879;Total fibre furnish;5622;Import value;1000 USD;508;573;889;902;1030;1939;1587;27863;30128;43198;43594;35249;53033;67912;92955;71342;75093;66196;81103;107457;128683;109304;77905;93569;77598;76220;130803;186204;183172;194361;120616;129101;112540;99956;133365;156756;106482;93637;131725;177330;125791;127411;136458;171086;180949;188289;252837;287317;154353;188080;201566;181342;170612;206491;191425;189485;191972;233144;230303;188026;302909.54;348912;237532 -5501;'053;Australia and New Zealand;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;100;94000;79500;97200;100400;112000;144500;236800;340200;381600;459200;443700;472300;483300;527100;430300;494300;495200;472200;555900;564700;574500;660000;750000;755700;743085;838378;870400;938800;906200;732700;877000;1006000;1037600;1146000;1175500;1196000;1531000;1871000;2054000;2319000;2492000;2485257;2448275;2411882;2641550;2578688;2595800;2661924;2585520;2651152;2354638;2321497;2193228;2253816.46;2187440;2043946 -5501;'053;Australia and New Zealand;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;15;7688;7498;9952;10773;12702;20313;36516;66644;63924;71888;74167;112889;131379;144357;117980;116351;118775;106730;120360;159899;162664;262376;266699;230688;222508;221414;253919;383931;299118;220504;223369;226792;334644;271489;266422;286046;409899;440982;524291;669796;697736;554049;737036;794620;723153;733980;779085;702153;664719;802527;817529;627618;546844;781179.31;852002;546254 -5501;'053;Australia and New Zealand;1878;Pulp for paper;5510;Production;t;652000;691500;835400;914400;990100;775100;845000;869500;996000;1123200;1137800;1174900;1326000;1505000;1524000;1660000;1665000;1699000;1699000;1824000;1913000;1896000;1794000;1905000;2033000;2032000;2039000;2217000;2307000;2281000;2399000;2310000;2370000;2362000;2420000;2316000;2352000;2354000;2349000;2634000;2707000;2945000;2589000;2703787;2763961;2640732;2715040;2988681;2746386;2846795;3034264;3010490;2864049;2948442;2879964;2867502;2843188;2953392;2962914;2726751;2717875;2678781;2021000 -5501;'053;Australia and New Zealand;1878;Pulp for paper;5610;Import quantity;t;7100;8000;12200;11000;14100;18400;17900;254700;271300;322200;299600;243500;316100;352300;303800;237600;278100;239600;279900;281700;286400;261800;220800;246000;211200;242500;280400;298800;274100;279500;199800;239110;253362;240700;213900;200800;217100;202000;304100;297800;289400;316400;335000;372200;375100;349893;411974;439602;297013;257136;252114;271239;282723;334045;344527;330377;346637;363272;337508;337435;422581.21;418340;309410 -5501;'053;Australia and New Zealand;1878;Pulp for paper;5622;Import value;1000 USD;508;573;889;902;1030;1939;1587;27863;30128;42652;43048;34703;52487;66700;91945;69274;74074;62351;77964;105255;125110;108554;77356;92110;77425;76202;130659;185643;182904;193765;119393;125232;109866;97073;129460;152054;99968;89199;127302;171978;122317;123199;133016;167960;179701;186459;250639;285876;153544;187278;201012;180439;168844;204638;190378;189139;191499;232075;229114;187577;302599.54;347939;237197 -5501;'053;Australia and New Zealand;1878;Pulp for paper;5910;Export quantity;t;;;;;;;100;94000;79500;95200;97400;109000;141500;232000;335200;374600;451800;434900;463900;475100;518000;420700;470500;458900;428200;503800;483400;483400;567900;625600;648200;638024;698839;665600;640900;679800;586000;708000;627000;743600;797000;771500;678000;865000;843000;848000;877000;808000;901789;797123;826327;853334;885799;897457;935046;928419;946526;889426;953565;880442;883808;879473;637939 -5501;'053;Australia and New Zealand;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;15;7688;7498;9847;10622;12551;20162;35802;66224;63509;71459;73607;111972;130369;143154;116392;113501;114907;100951;113915;149796;149796;248628;249503;218476;211382;203443;235844;338330;267333;205676;210179;199173;306823;235141;228486;236858;338405;321906;385991;458215;418844;376767;465290;494196;439095;473321;511483;469415;437342;530716;596230;471996;408399;524945.34;604519;386461 -5501;'053;Australia and New Zealand;1875;Wood pulp;5510;Production;t;648100;688400;832400;912400;988100;772100;842000;866500;993000;1120200;1134800;1174900;1326000;1505000;1524000;1660000;1663000;1695000;1693000;1819000;1908000;1887000;1793000;1895000;2022000;2020000;2027000;2205000;2295000;2269000;2387000;2306000;2369000;2361000;2418000;2314000;2357000;2354000;2349000;2500000;2575000;2818000;2589000;2703787;2763961;2640732;2715040;2988681;2746386;2846795;3034264;3010490;2864049;2948442;2879964;2867502;2843188;2953392;2962914;2726751;2717875;2678781;2021000 -5501;'053;Australia and New Zealand;1875;Wood pulp;5610;Import quantity;t;10400;13100;20600;21300;20800;16000;16900;259600;275500;328200;303700;247800;321300;355600;308100;239700;286000;243000;286500;285400;287300;263700;222200;247300;213700;242900;280800;299200;279100;281500;201100;237518;252497;239400;213300;199900;214000;197000;296100;326800;314000;347000;351000;387200;373100;348050;404851;433224;293921;255723;251301;270599;282205;332114;343210;329137;345792;362078;336340;336495;420031.48;416848;303969 -5501;'053;Australia and New Zealand;1875;Wood pulp;5622;Import value;1000 USD;1058;1387;2244;2546;2085;1674;1880;29012;30906;43790;43871;35564;53645;67527;93593;70110;76865;63311;80042;106813;125958;109595;78214;92893;78626;76701;131158;186142;185169;194615;120007;123923;109239;96416;128953;151078;98088;86712;123655;189459;133483;134327;138649;174350;177953;184637;244850;280316;150557;184623;199522;179169;167787;202004;188152;187206;189954;229243;224482;182796;294562.6;341304;231707 -5501;'053;Australia and New Zealand;1875;Wood pulp;5910;Export quantity;t;;;;;;;100;94000;79500;95200;97400;109000;141500;232000;335200;374600;451800;434900;463900;475100;518000;420700;470500;458900;428200;503800;483400;483400;567900;625600;648200;643098;699387;665600;640900;679800;586000;708000;627000;743600;797000;771500;678000;865000;843000;848000;877000;808000;901789;797123;826327;853319;885739;897442;935022;928440;946542;889421;954666;881661;884831;882032;641068 -5501;'053;Australia and New Zealand;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;15;7688;7498;9847;10622;12551;20162;35802;66224;63509;71459;73607;111972;130369;143154;116392;113501;114907;100951;113915;149796;149796;248628;249503;218476;213553;203755;235844;338330;267333;205676;210179;199173;306823;235141;228486;236858;338405;321906;385991;458215;418844;376767;465290;494196;438991;472951;511372;469268;437225;530499;596035;471829;408415;524969.34;604674;386598 -5501;'053;Australia and New Zealand;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1158256;1138969;1093373;929626;938901;818206;581802 -5501;'053;Australia and New Zealand;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12222;15019;12302;12700;9672.5;9981;6354 -5501;'053;Australia and New Zealand;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8193;10010;8907;7359;6900.81;7418;4501 -5501;'053;Australia and New Zealand;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;464148;462650;476958;420951;454165;456481;240638 -5501;'053;Australia and New Zealand;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;229638;245617;193000;165965;198415.34;243891;113327 -5501;'053;Australia and New Zealand;1654;Mechanical wood pulp (1961-2016);5510;Production;t;340400;363100;454700;497400;543600;284100;297900;309900;342500;392700;389100;411500;495000;556000;563000;689000;656000;667000;662000;778000;800000;855000;792000;862000;929000;942000;954000;1024000;1034000;1006000;1038000;1141000;1109000;1027000;1130000;1079000;1091000;1106000;1126000;1179000;1333000;1378000;1244000;1233787;1239961;1115732;1120040;1187681;1216386;1127795;1146264;1109579;1036049;1045806;1028138;1060775;;;;;;; -5501;'053;Australia and New Zealand;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;7100;8000;12200;11000;14100;10500;13000;17100;18200;21200;18900;12900;13000;13500;8300;5200;4600;6100;16900;4400;3000;900;2900;7000;3500;5100;3700;9000;6000;6900;3600;311;500;2400;300;300;2100;3000;9000;9000;5000;5000;5000;5000;11000;6000;7100;2000;1019;579;633;1024;2479;2728;3195;2450;;;;;;; -5501;'053;Australia and New Zealand;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;508;573;889;902;1030;795;993;1288;1403;1739;1768;1173;1295;1709;1594;968;889;1088;4170;1608;1314;397;854;2210;1179;1461;1437;5073;3696;4619;2264;120;166;881;122;180;972;1354;4076;4524;2824;2011;2000;1680;5472;3450;2473;1098;848;410;454;753;2055;2215;2396;1802;;;;;;; -5501;'053;Australia and New Zealand;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;100;2500;2000;6700;9600;7900;7200;72100;147000;164300;241500;205500;233100;258500;273200;218000;251000;279100;258800;317600;309400;309400;313900;330100;355300;317909;309130;329600;341300;351100;296000;361000;228000;324000;347000;377500;306000;413000;400000;223000;237000;220000;251377;194979;201771;175247;229311;227533;250817;265243;;;;;;; -5501;'053;Australia and New Zealand;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;15;183;160;546;802;680;735;8200;18949;17312;26862;25081;38938;45705;47547;42834;48885;52567;46040;62376;77205;77205;95918;92800;92132;77011;72634;95156;127505;99366;77257;77616;42365;70310;62456;70483;75500;117316;115621;60000;70100;62010;79913;66955;75006;67954;98275;103243;101625;102308;;;;;;; -5501;'053;Australia and New Zealand;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;5600;6000;5200;4500;6300;6800;107600;112300;152600;209600;224000;225700;200000;282000;248000;248000;221000;248000;271000;285000;274000;249000;234000;229000;241000;240000;204000;216000;241000;278000;296000;134000;131000;233000;149000;176000;171000;155000;151000;166000;151000;148000;122000;115000;146000;125000;123000;128000;126000;123000;126000;121911;122000;133311;126000;127311;;;;;;; -5501;'053;Australia and New Zealand;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;6059;5200;5000;9700;11000;9000;24000;16000;21000;32000;31000;31000;28000;14000;15000;19000;16000;16000;13293;16282;10842;26232;27760;12787;;;;;;; -5501;'053;Australia and New Zealand;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;1982;1637;2971;7632;4553;3733;9496;4603;8386;12190;13117;14280;13892;7800;9992;12881;8405;11630;11230;10703;6414;17998;20226;9486;;;;;;; -5501;'053;Australia and New Zealand;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10833;28697;14600;0;0;0;0;0;0;0;0;0;0;0;139000;169000;152000;182195;177891;191781;208002;201496;207347;219762;202890;;;;;;; -5501;'053;Australia and New Zealand;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4731;10101;5544;0;0;0;0;0;0;0;0;0;0;0;61966;80038;80122;66079;85684;86094;90393;88167;95264;82122;75718;;;;;;; -5501;'053;Australia and New Zealand;1656;Chemical wood pulp;5510;Production;t;302100;319300;372500;410500;438200;481200;436500;444300;497900;517900;521700;537700;631000;667000;713000;723000;786000;780000;760000;756000;834000;783000;767000;804000;852000;838000;869000;965000;1020000;985000;1053000;1026000;1124000;1096000;1134000;1054000;1090000;1093000;1072000;1155000;1091000;1292000;1223000;1355000;1378000;1400000;1472000;1673000;1404000;1596000;1762000;1779000;1706000;1769325;1725826;1679416;1684932;1814423;1869541;1797125;1778974;1860575;1439198 -5501;'053;Australia and New Zealand;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;236700;252700;300900;280600;230500;302600;338300;294200;230800;271800;232800;259500;272300;278400;259200;215900;237100;207200;233100;271000;287300;267500;268000;193100;230685;245682;231700;208000;189900;200900;185000;263100;268800;263000;279000;298000;334200;334100;328050;382751;412224;276902;239144;237005;252931;268256;302526;312038;313612;332919;346892;323545;323253;409464.98;406443;296979 -5501;'053;Australia and New Zealand;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;26445;28642;40887;41254;33504;51113;64874;89757;67677;72675;61071;72747;101946;122095;107495;75776;89230;76051;73464;126939;179679;178834;186684;115454;121059;106914;93856;125860;143266;92563;81625;110083;160597;110897;108630;116953;150390;158589;173387;232385;266337;141304;172583;187357;167120;158230;180703;165274;175546;180984;219025;214949;174974;286501.26;333138;225853 -5501;'053;Australia and New Zealand;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;91500;77500;88500;87800;101100;134300;159900;188200;210300;210300;229400;230800;216600;244800;202700;219500;179800;169400;186200;174000;174000;254000;295500;292900;309282;361012;321400;299600;328700;290000;347000;399000;419600;450000;394000;372000;452000;443000;486000;471000;436000;468217;424253;432775;470070;454931;462562;464443;460254;482341;426749;476415;459486;429494;422964;397270 -5501;'053;Australia and New Zealand;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;7505;7338;9301;9820;11871;19427;27602;47275;46197;44597;48526;73034;84664;95607;73558;64616;62340;54911;51539;72591;72591;152710;156703;126344;129640;120708;135144;210825;167967;128419;132563;156808;236513;172685;158003;161358;221089;206285;264025;308077;276712;230775;312651;333096;280644;286509;312865;285521;259156;300818;350414;278584;242409;326409;360457;272974 -5501;'053;Australia and New Zealand;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;191600;127600;147800;265800;257200;290700;283700;283200;300100;395000;440000;426000;447000;424000;428000;426000;384000;419000;408000;403000;418000;460000;438000;458000;505000;530000;643000;488000;459000;494000;514000;513000;444000;503000;476000;486000;529000;472000;450000;457000;473000;476000;444000;458000;744000;735000;839000;1007000;999000;975000;1038968;1128157;1051739;561728;731518;750547;715732;707681;814293;616000 -5501;'053;Australia and New Zealand;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;41600;35300;26000;24000;14000;17000;23000;23000;31000;29000;19000;30000;31200;33000;31000;33000;32302;31919;35872;38521;37024;39574;38739;40589;40669;35451;48248.54;48988;39542 -5501;'053;Australia and New Zealand;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;19504;23577;16640;10319;6205;9155;10398;8748;11742;13953;10336;16000;19569;20743;16419;24132;26050;23220;21588;25538;23910;26014;24647;28500;32332;22251;39815.44;45507;32497 -5501;'053;Australia and New Zealand;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;89400;75000;85900;85700;98600;126200;145700;147900;153100;151300;166800;158100;152200;172700;133500;137400;123000;127000;117200;110900;110900;152400;175500;192900;128300;154900;150900;116900;146200;150000;161000;173000;133000;113000;100000;97000;83000;92000;115000;111000;107000;105933;97071;94052;108521;108896;140743;131002;110175;147575;184914;252229;272911;255316;253391;235703 -5501;'053;Australia and New Zealand;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;7258;7000;8938;9502;11470;17981;24389;34784;30697;28648;31863;47046;57515;63829;45476;37663;41030;38853;27949;42104;42104;82327;85000;80000;50936;49606;58365;69531;78126;63650;59141;62715;66415;43190;39143;40813;38082;44912;60950;71659;68235;53075;72090;72442;69917;72330;99318;85681;68576;99050;154741;154357;144844;192596;211830;161165 -5501;'053;Australia and New Zealand;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;62400;72900;153200;166100;159400;186400;190700;189800;208000;194000;249000;238000;323000;318000;295000;327000;377000;335000;324000;344000;355000;363000;364000;420000;449000;299000;522000;515000;578000;533000;544000;527000;506000;509000;501000;539000;529000;555000;438000;537000;554000;590000;625000;605000;596000;686000;689000;760000;711000;710357;597669;627677;633204;611905;639994;602393;592293;567282;357198 -5501;'053;Australia and New Zealand;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;81200;96500;130000;118800;101700;140600;150900;123300;90900;123600;119400;153700;145400;149100;135600;110800;130900;126100;162500;192800;206400;190900;185400;124200;170801;181294;178200;152300;144000;162200;146000;220000;240300;223000;240000;244000;280000;290000;280000;328700;346000;218000;186000;182304;203299;225088;262743;273891;271965;292901;302998;276502;284793;353869.89;353219;253307 -5501;'053;Australia and New Zealand;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;9314;11760;19510;18265;16114;25178;27100;44349;31832;41505;37146;47045;58055;69154;59112;40539;51496;47970;52425;94153;134380;127332;141047;80726;90543;79469;71709;95526;111634;70000;64877;91760;144690;92281;93140;94926;124600;135643;146250;197275;222946;109029;132655;144506;131525;131015;153383;139957;147551;154620;187456;177312;150334;239821.32;282459;189321 -5501;'053;Australia and New Zealand;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;2100;2500;2600;2100;2500;8100;14200;40300;57200;59000;62600;72700;64400;72100;69200;82100;56800;42400;69000;63100;63100;101600;120000;100000;180982;206112;170500;182700;182500;140000;186000;226000;285600;336000;288000;271000;364000;347000;362000;351000;312000;342777;311143;329023;361022;346034;321808;333363;350076;334760;241835;224186;186575;174174;169570;161566 -5501;'053;Australia and New Zealand;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;247;338;363;318;401;1446;3213;12491;15500;15949;16663;25988;27149;31778;28082;26953;21310;16058;23590;30487;30487;70383;71703;46344;78704;71102;76779;141294;89841;64769;73422;94093;169611;128763;116061;118006;179988;158758;197900;231243;196423;166171;227914;250382;210295;214167;213505;199767;190576;201760;195673;124227;97565;133806;148611;111789 -5501;'053;Australia and New Zealand;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;490000;471000;479000;479000;479000;479000;466000 -5501;'053;Australia and New Zealand;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1279;3305;6374;3009;7346.54;4236;4130 -5501;'053;Australia and New Zealand;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1717;3069;5305;2389;6864.5;5172;4035 -5501;'053;Australia and New Zealand;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;0;0;0;4;3;1 -5501;'053;Australia and New Zealand;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;0;0;0;7;16;20 -5501;'053;Australia and New Zealand;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;;;;;;; -5501;'053;Australia and New Zealand;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;18900;12600;12700;16200;11100;15200;27300;17500;6500;11300;10100;2200;2600;1900;1200;7300;2700;5000;4100;3100;3300;1400;4600;4400;1977;4087;6900;4500;2800;2000;2000;1000;500;0;0;2000;100;100;50;251;224;263;207;544;197;119;106;89;50;;;;;;; -5501;'053;Australia and New Zealand;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;1991;1271;1607;2496;1657;2410;5899;5193;1591;2846;2079;711;977;809;725;2776;1431;2008;1575;1466;1997;930;2851;2407;1178;1751;3312;3923;2742;1184;810;284;110;0;0;852;200;301;100;179;293;190;172;171;198;102;110;120;58;;;;;;; -5501;'053;Australia and New Zealand;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;;0;;;;;;;;;;;;;;;;;;;;1;1;78;3;;;;;;; -5501;'053;Australia and New Zealand;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;;0;;;;;;;;;;;;;;;;;;;;12;6;73;4;;;;;;; -5501;'053;Australia and New Zealand;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;;;;;;; -5501;'053;Australia and New Zealand;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;37700;38100;49400;49100;34600;45800;51900;31400;24600;16700;10400;9300;21400;12600;14900;14300;18900;19700;16100;25300;23600;30800;24100;24100;12768;9001;6300;9600;7800;10700;13000;28100;11000;17000;16000;21000;25100;25000;18000;22600;33000;27639;19937;21855;17516;7177;1156;1034;2023;;;;;;; -5501;'053;Australia and New Zealand;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;4973;5184;7516;8494;5813;8585;11954;12376;9914;5942;3456;3171;9893;6016;6420;5086;7392;7222;5401;12818;16302;24856;14101;14101;7748;4673;2873;6907;5313;4739;5619;11834;6642;8218;6742;9433;11637;12309;11037;15362;22355;15666;15624;16630;12177;5525;1672;1287;1923;;;;;;; -5501;'053;Australia and New Zealand;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;6000;4000;5000;4000;9000;9000;17000;19507;16039;9700;527;0;10;0;0;;;;;;; -5501;'053;Australia and New Zealand;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;487;732;2799;2539;3019;2615;5175;5175;12054;11529;12647;10272;432;0;36;0;0;;;;;;; -5501;'053;Australia and New Zealand;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;0;0;0;0 -5501;'053;Australia and New Zealand;1667;Dissolving wood pulp;5610;Import quantity;t;3300;5100;8400;10300;6700;5500;3900;5800;4600;6100;4200;4400;5500;3700;5100;3400;9100;3600;7100;5700;2900;2800;2600;2600;2600;2600;2600;2600;5100;4600;1800;705;256;100;0;0;0;0;0;33000;25000;31000;17000;17000;0;0;0;0;0;0;370;362;628;628;217;288;651;167;493;542;894;424;636 -5501;'053;Australia and New Zealand;1667;Dissolving wood pulp;5622;Import value;1000 USD;550;814;1355;1644;1055;879;887;1279;861;1164;849;887;1209;931;1970;1363;3183;1034;2217;2351;1641;1372;1253;1253;1253;1253;1253;1253;2389;2389;929;426;177;42;0;0;0;0;0;19735;11376;11496;6579;8000;0;0;0;0;0;0;481;593;1088;1088;256;372;777;208;626;463;1160.52;748;1353 -5501;'053;Australia and New Zealand;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5074;548;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;53;53;22;1293;1224;1172;2587;3160 -5501;'053;Australia and New Zealand;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2171;312;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;43;43;4;245;41;145;326;297 -5501;'053;Australia and New Zealand;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 -5501;'053;Australia and New Zealand;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;2297;1121;1400;600;900;3100;5000;8000;4000;400;400;1000;2000;2000;1843;7123;6378;3092;1413;1183;1002;1146;2559;1534;1528;1496;1361;1661;1482;3443.74;1916;6077 -5501;'053;Australia and New Zealand;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;1735;804;699;507;976;1880;2487;3647;2254;210;368;946;1610;1748;1822;5789;5560;2987;2655;1971;1863;2145;3722;2482;2305;2322;3040;5258;5244;9197.46;7383;6843 -5501;'053;Australia and New Zealand;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;15;61;15;24;32;37;27;192;5;149;28;31 -5501;'053;Australia and New Zealand;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;104;370;111;147;160;260;199;412;25;121;171;160 -5501;'053;Australia and New Zealand;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;400;1000;1000;300;200;1029;1029;150;150;1000;1101;1084;1157;3416;14181;16628;10034;1416;1705;2967;2728;2321;2848;2740;1968 -5501;'053;Australia and New Zealand;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;327;200;542;827;258;150;710;710;100;100;720;741;533;959;2737;10479;13517;7021;1131;1284;1922;1804;1584;2747.97;2976;1618 -5501;'053;Australia and New Zealand;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;121;15;36;190;55;16;10;596;27;4;13 -5501;'053;Australia and New Zealand;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;68;10;25;80;50;10;8;269;26;4;3 -5501;'053;Australia and New Zealand;1669;Recovered paper;5510;Production;t;;;;;;;;;;428000;444000;468000;492000;515000;472000;517000;550000;592000;576000;621000;616000;672000;590000;596000;661000;623000;735000;857000;754000;787000;938000;1114000;1143000;1112000;1195000;1500000;1637000;1553000;1646000;2083000;1990000;1861000;2083000;2167000;2413000;2781000;3023000;3283000;3382000;3750000;3670000;3760000;3566000;3602000;3569000;3747000;3679259;3604690;3459000;3066251;3057000;3066000;3034000 -5501;'053;Australia and New Zealand;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;28608;25658;20200;24200;25800;47100;43000;55000;44000;29000;36000;27000;58000;8159;10010;9625;6472;3448;3293;2132;2900;4587;4667;3960;2110;5703;8406;8408;4784;5838;18145;1151 -5501;'053;Australia and New Zealand;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;3869;2674;2883;3905;4702;6514;4438;4423;5352;3474;4212;3442;3126;1248;1830;2198;1441;809;802;554;903;1768;1853;1047;346;473;1069;1189;449;310;973;335 -5501;'053;Australia and New Zealand;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;2000;3000;3000;3000;4800;5000;7000;7400;8800;8400;8200;9100;9600;23800;36300;44000;52100;81300;91100;92100;124400;107500;105061;139539;204800;297900;226400;146700;169000;379000;294000;349000;404000;518000;666000;1028000;1206000;1442000;1684000;1583468;1651152;1585555;1788216;1692889;1698343;1726878;1657101;1704626;1465212;1367932;1312786;1370008.46;1307967;1406007 -5501;'053;Australia and New Zealand;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;105;151;151;151;714;420;415;429;560;917;1010;1203;1588;2850;3868;5779;6445;10103;12868;13748;17196;12212;11126;17971;18075;45601;31785;14828;13190;27619;27821;36348;37936;49188;71494;119076;138300;211581;278892;177282;271746;300424;284058;260659;267602;232738;227377;271811;221299;155622;138445;256233.97;247483;159793 -5501;'053;Australia and New Zealand;1876;Paper and paperboard;5510;Production;t;717900;754100;955900;1109400;1234100;1130000;1202700;1214500;1368400;1514300;1540400;1545600;1685800;1732400;1697000;1761000;1919000;1896000;1971000;2132000;2180000;2188000;2101000;2214000;2316000;2267000;2170000;2492000;2605000;3385000;3450000;2728000;2875000;3061000;3155000;3185000;3308000;3385000;3381000;3713000;3511000;3518585;3900130;4013913;4195181;4102399;4056451;4154047;4162639;4091822;3963677;4038189;3789520;3802595;3912068;3963193;3960170;3947393;3936764;3731026;3721168;3651154;3446247 -5501;'053;Australia and New Zealand;1876;Paper and paperboard;5610;Import quantity;t;501000;352200;390600;426800;471500;445100;462100;495500;488000;508000;530700;492100;562500;678279;683200;469500;652200;583700;671100;738600;736200;794400;558100;669500;898900;812500;817200;1024200;1042900;1021000;875700;1017645;1142999;1199202;1536302;1281502;1373902;1565086;1597086;1705086;1466086;1602086;1792086;2028086;2088086;2021086;1968386;2105203;1829378;2153090;2066770;1949223;1883478;1894843;1821353;1800132;1688690;1647701;1565758;1446544;1340869.2;1260728;1105216 -5501;'053;Australia and New Zealand;1876;Paper and paperboard;5622;Import value;1000 USD;111494;82060;92034;89314;98144;89030;96255;102550;99725;105302;135111;121667;158629;232492;277754;220311;304058;291887;374746;454511;473429;572434;392746;472666;581851;562209;631946;863380;957263;988024;885305;971566;1039200;1124877;1456001;1559861;1293936;1223043;1300217;1351187;1069853;1184142;1330058;1610069;1758047;1731523;1804592;1964946;1559369;2091043;2227079;2079321;1882353;1887035;1658880;1580960;1485187;1430594;1397692;1344251;1475847.55;1573854;1335948 -5501;'053;Australia and New Zealand;1876;Paper and paperboard;5910;Export quantity;t;52600;49900;118000;128900;134200;131700;138300;164900;181600;186000;188500;201900;189400;213800;203800;268600;301700;332400;359000;418100;447000;339500;361000;342000;353900;336200;330200;300100;403900;499200;541200;628124;688474;644100;578700;626300;828700;848800;838300;923600;1041850;1093300;1151050;1398995;1404795;1401295;1195254;1476800;1467445;1317463;1362156;1442170;1647448;1595853;1550932;1615932;1641938;1554231;1447198;1403968;1339613.02;1172248;1150681 -5501;'053;Australia and New Zealand;1876;Paper and paperboard;5922;Export value;1000 USD;10403;8926;19442;21264;21729;16593;19996;24644;26646;28080;29159;33296;37242;50255;62292;85236;98046;99950;138516;172012;196101;154440;136496;131756;150074;133494;163370;166490;231124;274543;295099;333784;341978;361454;402047;461444;481525;401637;416628;458059;475715;536665;541606;699597;748833;735225;748604;922908;769357;897517;1017614;995538;1058465;1067323;985816;937933;957460;999095;942416;812396;897005.88;842767;642015 -5501;'053;Australia and New Zealand;2042;Graphic papers;5510;Production;t;263300;266500;690800;388800;412600;424000;436000;434900;477300;543200;548600;548200;585700;619400;609000;636000;675000;660000;691000;783000;845000;859000;859000;880000;927000;876000;846000;997000;1041000;1110000;1141000;1104000;1116000;1160000;1218000;1188000;1196000;1273000;1273000;1388000;1361000;1329585;1379130;1376913;1481181;1385399;1371451;1450047;1472639;1248822;1086677;1061364;918520;899993;937929;977095;953570;924059;889795;686326;619402;500000;337000 -5501;'053;Australia and New Zealand;2042;Graphic papers;5610;Import quantity;t;388400;268000;303500;338100;365200;360100;371500;404800;403300;415700;425100;371100;426900;472100;503300;320700;481400;419900;481300;544600;532100;574700;347400;418100;631300;556700;611300;621900;870800;839500;703400;700188;854507;852423;1112423;924023;1016423;1051007;1072007;1142007;961007;1153007;1313007;1532007;1583007;1456007;1349707;1565124;1267024;1571835;1448639;1319644;1263045;1220765;1123535;1028896;914038;833573;730962;627570;554010.61;492883;433406 -5501;'053;Australia and New Zealand;2042;Graphic papers;5622;Import value;1000 USD;68033;48634;55931;59554;62782;59835;62911;67328;66898;69899;75389;77660;103224;131561;170217;125048;187567;174997;229208;295787;293680;355315;213602;256952;368013;336039;429804;473959;764518;770302;655654;634365;678560;708256;946390;1049452;882939;760843;819754;855502;681726;826083;942044;1155946;1270067;1208036;1191271;1426394;1033877;1425597;1448770;1282732;1136220;1079172;887918;766176;674592;609122;556306;470203;505179.01;542320;475169 -5501;'053;Australia and New Zealand;2042;Graphic papers;5910;Export quantity;t;49700;45600;113900;124400;126900;124400;126900;133500;134700;136200;143100;147100;129900;140000;119800;170700;200100;210300;223800;260200;250300;175200;167500;195200;208400;168100;151600;152800;207500;269600;277700;340666;308974;303200;260500;289900;300000;297700;295200;297300;325500;452300;351800;460695;467495;354995;264954;313800;316884;332560;319435;370435;378245;330303;327423;389090;389573;358895;202358;175241;112335.95;117942;84276 -5501;'053;Australia and New Zealand;2042;Graphic papers;5922;Export value;1000 USD;9153;7369;18026;19184;19459;14475;16528;19829;19726;20169;20960;21595;21956;27926;32371;50575;61214;58082;80571;105668;112388;83068;65128;66995;89916;68804;86859;89341;131336;162856;168772;191574;162915;179279;186133;224738;180856;167664;174049;175541;195358;282672;243016;294233;309165;232145;217886;256985;232087;274394;279667;284515;269696;264207;243005;229962;219676;212142;136277;110015;75070.65;80789;46640 -5501;'053;Australia and New Zealand;1671;Newsprint;5510;Production;t;182300;206500;603700;280800;293300;281500;297500;296800;333300;387200;396700;394700;416900;409900;415000;481000;483000;485000;468000;540000;569000;629000;645000;620000;652000;575000;568000;617000;658000;666000;716000;783000;802000;798000;840000;824000;818000;837000;766000;842000;807000;822585;861130;816913;821181;722399;695451;744047;749639;724822;744677;703364;549520;508993;467929;464095;471570;468059;437795;284326;217402;101000;107000 -5501;'053;Australia and New Zealand;1671;Newsprint;5610;Import quantity;t;300700;201500;224200;261400;289100;280400;281400;302700;295200;275800;288300;221400;266000;289200;326800;225200;320900;273400;295000;337100;281900;252000;147600;202000;323000;304000;295900;275200;301500;306800;194600;174165;205324;206102;257102;281602;250002;289002;278002;305002;239002;253002;278002;324002;345002;274002;284002;200119;182162;253698;188923;111159;91942;103791;93838;79034;73084;42341;22361;91382;80296.41;84180;60410 -5501;'053;Australia and New Zealand;1671;Newsprint;5622;Import value;1000 USD;44770;30829;34781;41005;44267;41670;41588;43949;41004;38740;42203;34390;49607;59766;85515;66414;97563;79760;95757;127714;120266;112845;67022;92100;129606;123436;126726;150869;161928;172015;103783;98346;95452;105282;140941;227678;161312;150021;157374;165082;122305;126867;144583;194321;215891;175128;194126;140331;122907;189497;157078;83650;65188;57499;45290;38564;36148;19299;10589;44792;53187.11;74864;53485 -5501;'053;Australia and New Zealand;1671;Newsprint;5910;Export quantity;t;45300;42300;107700;114700;112200;113200;109600;119700;121200;118700;127000;124200;111300;120300;106600;164100;190000;198700;208700;242400;234200;159900;153800;177700;191300;147600;122700;121900;170200;224600;240700;286439;261109;254300;229500;259200;260300;272000;237600;229000;214000;218000;198000;278000;299800;219195;138154;199000;185000;205493;221959;223169;203404;136463;141126;211392;278028;278169;130674;85647;37003.73;43418;71322 -5501;'053;Australia and New Zealand;1671;Newsprint;5922;Export value;1000 USD;7501;6389;16125;16757;16132;11717;12141;16107;16027;15298;16034;15753;15100;18384;23522;45851;55634;50748;70179;91471;96422;69253;53025;51214;74609;52972;53537;53261;93491;117339;127114;140700;117317;129894;147717;187874;132495;143063;126018;125331;114599;102789;134159;156460;175380;126807;100687;142803;126182;156466;173981;145141;116617;82613;69380;88690;130957;144129;73471;44178;20680.87;25960;36455 -5501;'053;Australia and New Zealand;1674;Printing and writing papers;5510;Production;t;81000;60000;87100;108000;119300;142500;138500;138100;144000;156000;151900;153500;168800;209500;194000;155000;192000;175000;223000;243000;276000;230000;214000;260000;275000;301000;278000;380000;383000;444000;425000;321000;314000;362000;378000;364000;378000;436000;507000;546000;554000;507000;518000;560000;660000;663000;676000;706000;723000;524000;342000;358000;369000;391000;470000;513000;482000;456000;452000;402000;402000;399000;230000 -5501;'053;Australia and New Zealand;1674;Printing and writing papers;5610;Import quantity;t;87700;66500;79300;76700;76100;79700;90100;102100;108100;139900;136800;149700;160900;182900;176500;95500;160500;146500;186300;207500;250200;322700;199800;216100;308300;252700;315400;346700;569300;532700;508800;526023;649183;646321;855321;642421;766421;762005;794005;837005;722005;900005;1035005;1208005;1238005;1182005;1065705;1365005;1084862;1318137;1259716;1208485;1171103;1116974;1029697;949862;840954;791232;708601;536188;473714.2;408703;372996 -5501;'053;Australia and New Zealand;1674;Printing and writing papers;5622;Import value;1000 USD;23263;17805;21150;18549;18515;18165;21323;23379;25894;31159;33186;43270;53617;71795;84702;58634;90004;95237;133451;168073;173414;242470;146580;164852;238407;212603;303078;323090;602590;598287;551871;536019;583108;602974;805449;821774;721627;610822;662380;690420;559421;699216;797461;961625;1054176;1032908;997145;1286063;910970;1236100;1291692;1199082;1071032;1021673;842628;727612;638444;589823;545717;425411;451991.9;467456;421684 -5501;'053;Australia and New Zealand;1674;Printing and writing papers;5910;Export quantity;t;4400;3300;6200;9700;14700;11200;17300;13800;13500;17500;16100;22900;18600;19700;13200;6600;10100;11600;15100;17800;16100;15300;13700;17500;17100;20500;28900;30900;37300;45000;37000;54227;47865;48900;31000;30700;39700;25700;57600;68300;111500;234300;153800;182695;167695;135800;126800;114800;131884;127067;97476;147266;174841;193840;186297;177698;111545;80726;71684;89594;75332.22;74524;12954 -5501;'053;Australia and New Zealand;1674;Printing and writing papers;5922;Export value;1000 USD;1652;980;1901;2427;3327;2758;4387;3722;3699;4871;4926;5842;6856;9542;8849;4724;5580;7334;10392;14197;15966;13815;12103;15781;15307;15832;33322;36080;37845;45517;41658;50874;45598;49385;38416;36864;48361;24601;48031;50210;80759;179883;108857;137773;133785;105338;117199;114182;105905;117928;105686;139374;153079;181594;173625;141272;88719;68013;62806;65837;54389.79;54829;10185 -5501;'053;Australia and New Zealand;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100000;93000;107000;81000;32000;28000;74000;74000;107000;101000;127000;116000;89000;80000;80000;82000;87000;69000;71000;64000;324000;329000;294000;294000;297000;137000 -5501;'053;Australia and New Zealand;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117000;145000;146000;134000;169000;167000;187000;188000;178000;215700;234000;165262;161458;155282;170937;128149;149804;143878;120445;122234;145743;155737;95471;40567.95;38097;26467 -5501;'053;Australia and New Zealand;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68941;100655;92446;84913;115687;100580;112752;126000;124500;167705;181063;127394;126945;130225;138153;89106;105808;83247;67111;68245;76441;85233;54502;29785.6;39425;26056 -5501;'053;Australia and New Zealand;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;300;300;500;9300;2300;2195;2195;4300;4300;1300;1038;2282;627;624;327;199;213;322;339;331;428;278;226;489;177 -5501;'053;Australia and New Zealand;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;581;318;351;632;7384;1850;2053;2053;3050;3050;2128;1345;1815;1547;2229;749;540;524;679;631;592;743;652;374;703;331 -5501;'053;Australia and New Zealand;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 -5501;'053;Australia and New Zealand;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;124005;130005;118005;123005;229005;275005;340005;312005;319005;299105;313005;322080;266689;252263;268127;272070;270973;264538;233366;188795;161439;128763;125688;141351.99;91246;134948 -5501;'053;Australia and New Zealand;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108640;110057;102547;99699;189196;236098;301608;294476;296708;303023;327442;224358;288682;303075;308547;292972;290824;261030;217534;176919;155336;135745;128774;156387.88;120859;168622 -5501;'053;Australia and New Zealand;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23200;54300;61000;90000;216000;141000;170000;155000;126000;117000;105000;124175;115760;81055;128729;143310;151527;137715;126556;93279;78058;67268;82378;72586.22;64346;8865 -5501;'053;Australia and New Zealand;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20284;42003;44519;65193;162308;96860;125620;118700;96413;108274;100854;96378;104919;85108;117074;120090;127138;105880;93952;72145;64723;59103;63297;52255.79;50855;6650 -5501;'053;Australia and New Zealand;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 -5501;'053;Australia and New Zealand;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;521000;519000;573000;465000;502000;593000;681000;738000;685000;550900;818000;597520;889990;852171;769421;770884;696197;621281;596051;529925;484050;424101;315029;291794.26;279360;211581 -5501;'053;Australia and New Zealand;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;433241;451668;495427;374809;394333;460783;547265;633700;611700;526417;777558;559218;820473;858392;752382;688954;625041;498351;442967;393280;358046;324739;242135;265818.42;307172;227006 -5501;'053;Australia and New Zealand;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;3000;7000;21000;9000;10500;10500;10500;5500;5500;8500;6671;9025;15794;17913;31204;42114;48369;50820;17927;2337;3988;6938;2520;9689;3912 -5501;'053;Australia and New Zealand;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3736;5710;5340;14934;10191;10147;10100;13032;5875;5875;11200;8182;11194;19031;20071;32240;53916;67221;46641;15943;2698;2960;1888;1760;3271;3204 -5501;'053;Australia and New Zealand;1675;Other paper and paperboard;5510;Production;t;454600;487600;265100;720600;821500;706000;766700;779600;891100;971100;991800;997400;1100100;1113000;1088000;1125000;1244000;1236000;1280000;1349000;1335000;1329000;1242000;1334000;1389000;1391000;1324000;1495000;1564000;2275000;2309000;1624000;1759000;1901000;1937000;1997000;2112000;2112000;2108000;2325000;2150000;2189000;2521000;2637000;2714000;2717000;2685000;2704000;2690000;2843000;2877000;2976825;2871000;2902602;2974139;2986098;3006600;3023334;3046969;3044700;3101766;3151154;3109247 -5501;'053;Australia and New Zealand;1675;Other paper and paperboard;5610;Import quantity;t;112600;84200;87100;88700;106300;85000;90600;90700;84700;92300;105600;121000;135600;206179;179900;148800;170800;163800;189800;194000;204100;219700;210700;251400;267600;255800;205900;402300;172100;181500;172300;317457;288492;346779;423879;357479;357479;514079;525079;563079;505079;449079;479079;496079;505079;565079;618679;540079;562354;581255;618131;629579;620433;674078;697818;771236;774652;814128;834796;818974;786858.58;767845;671810 -5501;'053;Australia and New Zealand;1675;Other paper and paperboard;5622;Import value;1000 USD;43461;33426;36103;29760;35362;29195;33344;35222;32827;35403;59722;44007;55405;100931;107537;95263;116491;116890;145538;158724;179749;217119;179144;215714;213838;226170;202142;389421;192745;217722;229651;337201;360640;416621;509611;510409;410997;462200;480463;495685;388127;358059;388014;454123;487980;523487;613321;538552;525492;665446;778309;796589;746133;807863;770962;814784;810595;821472;841386;874048;970668.54;1031534;860779 -5501;'053;Australia and New Zealand;1675;Other paper and paperboard;5910;Export quantity;t;2900;4300;4100;4500;7300;7300;11400;31400;46900;49800;45400;54800;59500;73800;84000;97900;101600;122100;135200;157900;196700;164300;193500;146800;145500;168100;178600;147300;196400;229600;263500;287458;379500;340900;318200;336400;528700;551100;543100;626300;716350;641000;799250;938300;937300;1046300;930300;1163000;1150561;984903;1042721;1071735;1269203;1265550;1223509;1226842;1252365;1195336;1244840;1228727;1227277.07;1054306;1066405 -5501;'053;Australia and New Zealand;1675;Other paper and paperboard;5922;Export value;1000 USD;1250;1557;1416;2080;2270;2118;3468;4815;6920;7911;8199;11701;15286;22329;29921;34661;36832;41868;57945;66344;83713;71372;71368;64761;60158;64690;76511;77149;99788;111687;126327;142210;179063;182175;215914;236706;300669;233973;242579;282518;280357;253993;298590;405364;439668;503080;530718;665923;537270;623123;737947;711023;788769;803116;742811;707971;737784;786953;806139;702381;821935.22;761978;595375 -5501;'053;Australia and New Zealand;1676;Household and sanitary papers;5510;Production;t;;;135000;135000;145600;56700;62600;70500;76000;83600;91500;103600;102300;112000;124000;123000;124000;129000;134000;149000;140000;147000;153000;166000;157000;172000;168000;196000;217000;240000;211000;185000;232000;237000;260000;263000;255000;248000;241000;292000;263000;257000;256000;246000;256000;275000;261000;248000;255000;256000;245000;227000;237000;254848;251000;261000;283038;295000;294000;304000;304000;318000;315000 -5501;'053;Australia and New Zealand;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;8335;17900;23200;30000;29100;28400;33002;40002;47002;54002;66002;66002;75002;68002;78002;69202;56002;72073;85184;89597;136000;103195;122634;127076;139493;150576;149236;146052;165980;125808.22;144282;136351 -5501;'053;Australia and New Zealand;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;12532;19027;26636;33701;44216;34458;36561;37626;43070;49701;63157;62302;81133;85316;98752;93158;77497;91104;123650;143773;212745;152693;183672;180563;194696;196124;186789;190228;211877;175584.67;236702;179824 -5501;'053;Australia and New Zealand;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;900;1700;2800;7400;7500;14300;16200;19700;21800;10200;15000;14000;17000;9000;4500;10000;15000;10000;10000;9000;9228;14038;13081;10854;4534;1253;1174;8637;4523;3423;20554;13355;10372.71;14086;5617 -5501;'053;Australia and New Zealand;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2629;2650;4862;15003;13795;26485;34557;48559;52863;15378;14591;10854;12633;6927;4600;10395;20522;14140;16534;15980;14719;22182;24188;18261;8783;3233;2694;17698;9365;5741;18410;11136;10276.56;10657;5883 -5501;'053;Australia and New Zealand;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1855000;1859000;2024000;1864000;1923000;2255000;2375000;2449000;2432000;2414000;2446000;2425000;2577000;2622000;2739825;2608000;2610755;2658000;2662000;2723562;2728334;2752969;2740700;2797766;2833154;2794247 -5501;'053;Australia and New Zealand;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;427000;450000;474000;427000;356000;393000;395000;412000;466000;529400;460000;426813;475945;510706;479362;510686;546043;560235;616762;611637;637584;654156;628075;633641.57;596001;516551 -5501;'053;Australia and New Zealand;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;299489;343391;348112;302952;250682;282666;316962;348414;375573;471113;407949;398377;478373;564493;524412;542823;572770;530684;559922;565828;586232;594887;604232;728740.98;723383;614189 -5501;'053;Australia and New Zealand;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;534900;522000;598200;692250;631000;794250;927300;904300;947300;866100;903000;904333;775852;817610;820126;1027249;1039959;1002588;991015;1017401;959903;986574;1030038;1044619.96;886929;910871 -5501;'053;Australia and New Zealand;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;205462;214856;258126;259432;245863;293340;394361;404746;444690;487084;511708;418198;491353;576191;548419;630342;659247;617200;555195;589367;625926;627927;586136;694785.51;642650;508425 -5501;'053;Australia and New Zealand;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;468800;675900;649300;702200;707900;743900;817700;824100;816300;924100;961000;858000;894000;983000;971000;1091000;1144000;1127000;704000;630000;663000;652000;656000;620000;687000;716000;1406000;1469000;1427000;1514000;1592000;1603000;1720000;1850000;;;;;;;;;;;;;;;;;;;;;;;;;; -5501;'053;Australia and New Zealand;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;184000;151500;182500;222000;251800;267000;;;;;;;;;;;;;;;;;;;;;;;;;; -5501;'053;Australia and New Zealand;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;150804;152948;183980;225147;284682;243051;;;;;;;;;;;;;;;;;;;;;;;;;; -5501;'053;Australia and New Zealand;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;1900;3100;2200;3400;6300;7000;11000;25900;45200;47200;40200;51900;58000;72300;82200;96500;98100;116800;134100;153900;176900;150200;176800;130000;130300;144800;132800;104000;174000;209100;240900;239600;358500;311900;286100;279200;470000;;;;;;;;;;;;;;;;;;;;;;;;;; -5501;'053;Australia and New Zealand;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;771;1003;967;1500;1705;1792;2981;3817;5939;6787;6388;9121;12767;19713;26759;32013;32989;36606;55514;61862;65109;56018;52886;46834;42901;42459;47867;48100;75288;80742;95591;89821;143287;130179;150413;134519;195771;;;;;;;;;;;;;;;;;;;;;;;;;; -5501;'053;Australia and New Zealand;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;872000;733000;507000;614000;640000;540000;638000;647000;655000;733000;937000;964000;984000;2235000;2365825;2251000;2271123;2328000;2505000;2551562;2560334;2581969;2574700;2631766;2654154;2618247 -5501;'053;Australia and New Zealand;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113000;164000;215000;168000;146000;176000;165000;174000;212000;256000;237000;186474;213639;252955;236428;251239;274112;277387;317362;309760;298027;318305;283660;261330.27;234861;228640 -5501;'053;Australia and New Zealand;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56036;84957;96563;72212;62337;92809;98880;104164;123500;167651;152536;115586;145631;201073;180382;196453;211656;194841;189119;185358;187006;173310;166182;185721.46;156652;140569 -5501;'053;Australia and New Zealand;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;309000;322000;301000;364000;363000;385000;554000;460000;411000;368100;420000;386994;419857;444119;410908;603967;661592;626761;621106;611726;568158;576845;621749;608423.44;471547;549624 -5501;'053;Australia and New Zealand;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102733;108528;115716;116519;123433;129741;213548;187700;176000;189004;217523;154271;229107;277338;234667;334481;386577;377286;314935;312382;323716;307042;305490;359484.75;282831;266346 -5501;'053;Australia and New Zealand;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;849000;926000;920000;759000;789000;967000;953000;1009000;1000000;921000;299000;286000;244000;261000;245000;235000;215608;203000;76000;84000;84000;84000;84000;84000;84000;84000 -5501;'053;Australia and New Zealand;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;191000;189000;170000;180000;114000;122000;134000;141000;151000;172400;120000;150217;165286;158455;147860;153557;174056;188398;220020;230292;261006;257899;268050;298389.83;296205;227234 -5501;'053;Australia and New Zealand;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125738;155045;155763;146721;97737;92740;119594;132850;134300;184273;125713;175221;211747;226393;209739;213269;239867;231183;277536;294916;301459;324465;343267;431881.26;455591;366429 -5501;'053;Australia and New Zealand;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62000;99000;107000;114000;179000;365000;320000;391000;440000;393400;405000;418064;231659;235036;268737;270817;234692;242385;247129;276608;286205;290827;293724;319522.14;310990;242854 -5501;'053;Australia and New Zealand;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41183;61854;59868;59820;85762;134161;145400;180700;209500;215763;233252;200624;167519;181861;194922;185718;171125;156943;160978;190804;219588;222373;207032;250485.17;269284;161235 -5501;'053;Australia and New Zealand;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96000;147000;568000;429000;430000;681000;747000;755000;738000;721000;1172000;1130000;1305000;82000;85000;81000;83024;85000;81000;88000;84000;87000;82000;82000;95000;92000 -5501;'053;Australia and New Zealand;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83000;86000;81000;70000;93000;92000;93000;94000;100000;99000;98000;84348;90275;91612;87200;97361;87707;85231;70889;64432;70711;69731;69572;65589.25;55866;52543 -5501;'053;Australia and New Zealand;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92719;93880;87133;76397;89158;95600;96763;109600;116000;117800;125446;102535;114520;129287;126866;126203;112724;97665;87193;79969;91614;90519;89181;102671.76;100065;99378 -5501;'053;Australia and New Zealand;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;154600;88000;173000;184000;88000;44000;53000;53000;96000;104600;76000;98843;123673;137714;137775;149985;142664;133305;122569;128734;105331;118892;114544;116509.38;104367;118374 -5501;'053;Australia and New Zealand;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57247;39096;75616;72201;35218;29120;35004;35846;58690;82317;60004;62961;94064;116488;116617;108116;100877;82759;79102;85496;82384;98462;73566;84618.59;90498;80799 -5501;'053;Australia and New Zealand;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38000;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 -5501;'053;Australia and New Zealand;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40000;11000;8000;9000;3000;3000;3000;3000;3000;2000;5000;5774;6745;7684;7874;8529;10168;9219;8491;7153;7840;8221;6793;8332.22;9069;8134 -5501;'053;Australia and New Zealand;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24996;9509;8653;7622;1450;1517;1725;1800;1773;1389;4254;5035;6475;7740;7425;6898;8523;6995;6074;5585;6153;6593;5602;8466.5;11075;7813 -5501;'053;Australia and New Zealand;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9300;13000;17200;30250;1000;250;300;300;300;0;2000;432;663;741;2706;2480;1011;137;211;333;209;10;21;165;25;19 -5501;'053;Australia and New Zealand;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4299;5378;6926;10892;1450;318;409;500;500;0;929;342;663;504;2213;2027;668;212;180;685;238;50;48;197;37;45 -5501;'053;Australia and New Zealand;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;1900;1200;71200;69800;76200;77500;73700;40000;106000;108000;137000;136000;55000;56000;68000;478000;459000;505000;580000;563000;536000;612000;631000;629000;629000;12000;13000;72000;74000;14000;7000;9000;8000;9000;23000;9000;10000;16000;9000;10000;10000;10000;10000;10000;10000;10000;26000;36999;65139;63098;0;0;0;0;0;0;0 -5501;'053;Australia and New Zealand;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;26000;19500;19700;19700;23700;32000;31000;62000;24300;28400;29800;48000;63000;74300;63600;51300;63700;63300;56700;64400;70100;70700;40600;55500;58000;80300;69000;149700;39500;62400;52600;125100;118900;141000;171800;76500;62000;54077;35077;42077;24077;27077;20077;26077;25077;21077;20077;24077;63468;20126;17828;14217;6552;5401;10507;14981;12439;27308;34588;24919;27408.79;27562;18908 -5501;'053;Australia and New Zealand;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;10143;7880;8742;6878;8323;10941;11594;25302;12659;13325;31775;16909;23346;38872;40342;40423;49786;51652;58922;63435;91653;84184;70178;85210;76790;81806;94361;198702;78048;100600;105704;173830;188587;205953;250711;181459;133436;126150;99446;104503;35474;44220;43046;56028;54250;49162;49050;53106;36011;63423;70043;59432;50617;51421;59715;60166;48643;48451;56271;57939;66342.89;71449;66766 -5501;'053;Australia and New Zealand;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;19800;14100;16700;16800;15200;23300;45800;43300;21500;18800;19800;40458;13500;14700;15900;37500;36900;6000;6100;14100;7100;1000;500;1000;18000;89000;54200;251000;237000;195013;212030;240755;237420;224338;219747;227190;230441;232010;237712;185334;172284.4;153291;149917 -5501;'053;Australia and New Zealand;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;18604;15354;18482;17927;17257;22231;28644;29049;21871;28295;25874;37386;21981;25511;30944;53628;52035;13133;13132;13538;8292;1203;650;608;14400;44250;27100;138235;104353;109588;137568;144343;149644;140636;122917;135078;139052;155286;159802;105109;116873.16;108671;81067 -5501;'053;Australia and New Zealand;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2896592;3200308;2992885;3000185;3920979;4026539;2855009 -5501;'053;Australia and New Zealand;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;198508;174279;174502;141774;166320;161252;143603 -5501;'053;Australia and New Zealand;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;356194;388057;332666;359444;492292;493483;310089 -5501;'053;Australia and New Zealand;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77636;69063;69477;59893;68267;69365;52914 -5501;'053;Australia and New Zealand;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;141239;159672;153147;151332;231793;230911;140424 -5501;'053;Australia and New Zealand;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75498;67803;67816;58852;66507;66927;51914 -5501;'053;Australia and New Zealand;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;214955;228385;179519;208112;260499;262572;169665 -5501;'053;Australia and New Zealand;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2138;1260;1661;1041;1760;2438;1000 -5501;'053;Australia and New Zealand;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76741;82871;73826;72691;88451;81279;66171 -5501;'053;Australia and New Zealand;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12637;12802;13393;11009;15386;16827;15389 -5501;'053;Australia and New Zealand;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83241;95010;93522;92931;154237;140688;115175 -5501;'053;Australia and New Zealand;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3468;3568;2593;2528;4983;4398;3380 -5501;'053;Australia and New Zealand;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;392242;425621;385451;310883;421620;514421;354513 -5501;'053;Australia and New Zealand;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49246;37868;37696;29648;30399;22751;28859 -5501;'053;Australia and New Zealand;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34437;37190 -5501;'053;Australia and New Zealand;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39655;36580 -5501;'053;Australia and New Zealand;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;616;181 -5501;'053;Australia and New Zealand;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;493;165 -5501;'053;Australia and New Zealand;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6701;1789 -5501;'053;Australia and New Zealand;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6550;1711 -5501;'053;Australia and New Zealand;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;152;4 -5501;'053;Australia and New Zealand;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;154;3 -5501;'053;Australia and New Zealand;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31591;25506 -5501;'053;Australia and New Zealand;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46325;36855 -5501;'053;Australia and New Zealand;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;749;1371 -5501;'053;Australia and New Zealand;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1380;2267 -5501;'053;Australia and New Zealand;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1878527;2092469;1994410;2041101;2594874;2625330;1876154 -5501;'053;Australia and New Zealand;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42943;44714;42426;28763;33885;36110;33583 -5501;'053;Australia and New Zealand;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6129;7658;9688;14333;18769;25050;18334 -5501;'053;Australia and New Zealand;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5168;1264;2395;3136;3114;1957;779 -5501;'053;Australia and New Zealand;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103518;108622;103322;108802;150736;146288;114573 -5501;'053;Australia and New Zealand;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7410;5000;6522;6797;10286;9844;8699 -5501;'053;Australia and New Zealand;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1382952;1513080;1463918;1462729;1736317;1956371;1762150 -5501;'053;Australia and New Zealand;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;209931;204770;181247;170743;200072;189092;165314 -5501;'053;Australia and New Zealand;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7158;6819;6167;4419;5156;4877;3737 -5501;'053;Australia and New Zealand;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1836;1799;319;694;197;98;153 -5501;'053;Australia and New Zealand;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;244442;279319;259957;254338;285883;294398;258032 -5501;'053;Australia and New Zealand;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6552;6725;6360;8245;14074;9709;6938 -5501;'053;Australia and New Zealand;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;281756;295417;288253;320833;318969;398306;342306 -5501;'053;Australia and New Zealand;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67029;54854;51397;49185;54823;54500;47783 -5501;'053;Australia and New Zealand;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;351399;409896;406725;415244;540372;599100;561442 -5501;'053;Australia and New Zealand;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47770;53915;47308;46596;53165;59107;52177 -5501;'053;Australia and New Zealand;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;498197;521629;502816;467895;585937;659690;596633 -5501;'053;Australia and New Zealand;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86744;87477;75863;66023;77813;65678;58263 -5502;'054;Melanesia;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;251372;246772;223705;209913;227802.15;298267;267850 -5502;'054;Melanesia;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1409792;1681784;1343745;1046602;1084630.8;1127199.72;956223.72 -5502;'054;Melanesia;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;1838;1721;2013;2991;3206;3015;3325;3876;5019;5897;5634;6643;8040;8854;11061;9412;12247;14162;19387;28611;29164;26226;27487;25867;25316;24521;24844;27866;28496;29266;36816;22233;25828;34253;39512;33408;23396;25354;37714;33660;37395;37312;54078;62188;64994;67691;74083;74513;63934;78533;98784;92198.1;84815.25;111692;77522;105805;98549;94412;103565;96678;110591.15;109220;105397 -5502;'054;Melanesia;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;2739;2890;3359;4349;4595;5190;6569;7563;8233;10660;14310;14191;21249;37254;24118;35194;39041;42704;59148;95152;87045;113419;93028;122558;96327;105384;152854;159745;125351;186241;250846;345279;570943;785660;652772;497182;526719;230726;274577;257185;199005;220273;384161;309591;375279;447677;519259;865658;605838;980951.47;1221254;1155461.52;1262635;1663354;1449690;1307156;1356468;1651548;1318524;1030650;1071731.8;1106329.72;937547.72 -5502;'054;Melanesia;1861;Roundwood;5516;Production;m3;3753541;3876971;3971502;4095132;4269363;4428194;4590025;4823856;5010187;5211419;5552266;5801607;5887158;6143934;6369507;6741428;6724125;7023589;7174664;7820941;7825564;8583576;8438897;8436126;8488101;8753666;9057329;9091894;9066827;9139809;8998568;9105302;10112484;10675052;10320174;10468124;10276288;10049832;10006864;9186026;8690154;9023284;9478679;9710941;10087077;10429265;10804612;10879311;10498804;12753969;12763194;12480524;12859450;13688596;13428756;13362268;13938785;13933308;13933835;13934369;13934850;13935338;14083635 -5502;'054;Melanesia;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;400;1100;600;600;2400;2400;2200;1100;1100;1100;1100;1100;1100;200;400;198;1285;997;1148;620;621;674;63;950;682;775;775;857;2575;5403;5358;6922;1031;2246;2166;1508;6045;6076;8203;5995;3743;1423;2058;1200;861;1164;1031;4176;1130 -5502;'054;Melanesia;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;30;132;135;107;750;750;700;350;350;350;350;350;350;42;98;24;224;152;235;82;69;121;7;112;104;104;104;172;292;504;384;1069;222;406;380;595;1412;940.1;977.25;2142;1351;521;900;633;595;531;611;1215;889 -5502;'054;Melanesia;1861;Roundwood;5916;Export quantity;m3;3800;4900;46700;76000;59200;104900;198600;274100;313100;422000;685100;647500;679000;866500;580300;685500;640500;691200;708100;917900;1071200;1403500;1361800;1602700;1554500;1677100;1757300;1662009;1181958;1351713;1607159;2351389;2198480;3673139;3568562;3256455;3661934;2227149;2611829;2534856;2095556;2409630;2811426;3077261;3148671;3362345;4288060;4107455;3378365;4384210;5295280;5261995;5505228;6305562;5592759;5106549;6245680;6918658;6411827;5083515;4380513;4560456;4118684 -5502;'054;Melanesia;1861;Roundwood;5922;Export value;1000 USD;107;109;911;1099;1004;1598;2900;3528;4119;5916;9508;8658;12874;23536;13019;17329;21102;22700;37610;63501;62267;89376;72248;100182;80230;92980;136057;126058;82445;146824;193639;309841;532206;745101;607191;449872;475193;177596;233305;205175;152534;160644;321226;236476;294613;361268;436243;781713;549366;898175.47;1138109;1080009.52;1195754;1574990;1368692;1238469;1291660;1539753;1217495;905404;933591;991718;839386 -5502;'054;Melanesia;1862;Roundwood, coniferous;5516;Production;m3;47000;48000;44700;52500;62900;101000;97000;108000;102000;104000;107000;112000;97000;111000;110000;113000;113000;120900;156500;175500;156500;118500;85500;87500;73500;97300;124000;194000;166400;166400;166400;166400;430400;451400;499400;499400;488400;497530;436530;396530;422530;294530;299750;380750;365750;417636;447451;409872;365872;637750;615750;615750;615750;619750;619750;619750;619750;619750;619750;619750;619750;619750;619750 -5502;'054;Melanesia;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1292;824;416;833;887;961;577 -5502;'054;Melanesia;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;336;374;194;308;500;480;408 -5502;'054;Melanesia;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4645;25456;370;3334;21095;6733;5946 -5502;'054;Melanesia;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1363;4663;139;540;4715;1948;1138 -5502;'054;Melanesia;1863;Roundwood, non-coniferous;5516;Production;m3;3706541;3828971;3926802;4042632;4206463;4327194;4493025;4715856;4908187;5107419;5445266;5689607;5790158;6032934;6259507;6628428;6611125;6902689;7018164;7645441;7669064;8465076;8353397;8348626;8414601;8656366;8933329;8897894;8900427;8973409;8832168;8938902;9682084;10223652;9820774;9968724;9787888;9552302;9570334;8789496;8267624;8728754;9178929;9330191;9721327;10011629;10357161;10469439;10132932;12116219;12147444;11864774;12243700;13068846;12809006;12742518;13319035;13313558;13314085;13314619;13315100;13315588;13463885 -5502;'054;Melanesia;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;766;376;445;331;144;3215;553 -5502;'054;Melanesia;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;564;259;401;223;111;735;481 -5502;'054;Melanesia;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6241035;6893202;6411457;5080181;4359418;4553723;4112738 -5502;'054;Melanesia;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1290297;1535090;1217356;904864;928876;989770;838248 -5502;'054;Melanesia;1864;Wood fuel;5516;Production;m3;3530441;3639871;3691702;3742532;3841363;3957194;4007025;4156856;4262187;4337419;4440266;4545607;4647158;4760934;4879507;5002428;5136125;5268889;5400264;5547341;5699264;5694376;5706597;5719726;5724801;5727866;5732029;5737094;5741257;5741419;5741491;5741659;5741684;5741852;5741974;5742103;5742147;5742395;5809554;5809716;5809844;5809974;5810106;5810241;5810377;5810485;5796995;5798406;5799899;5801269;5802494;5803616;5804750;5805896;5807056;5807568;5808085;5808608;5809135;5809669;5810150;5810638;5958935 -5502;'054;Melanesia;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;0;0;0;111;111;111;1;1;1;1;1;1;1;1;1;538;538;538;538;24;0;0;0;0;0;0;0 -5502;'054;Melanesia;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;0;0;0;4;4;4;1;1;1;1;1;1;1;1;2;7;7;7;7;61;0;0;0;0;0;0;0 -5502;'054;Melanesia;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;166;0;0;0;0;596;596;596;596;596;596;596;597;601;601;601;607;600;598;609;609;600;643;134;37;2;4;2;60;114 -5502;'054;Melanesia;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;0;0;0;0;15;15;15;15;15;15;15;16;20;20;20;21;33;46;83;83;22;32;25;23;1;5;6;407;513 -5502;'054;Melanesia;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -5502;'054;Melanesia;1628;Wood fuel, non-coniferous;5516;Production;m3;3530441;3639871;3691702;3742532;3841363;3957194;4007025;4156856;4262187;4337419;4440266;4545607;4647158;4760934;4879507;5002428;5136125;5268889;5400264;5547341;5699264;5694376;5706597;5719726;5724801;5727866;5732029;5737094;5741257;5741419;5741491;5741659;5741684;5741852;5741974;5742103;5742147;5742395;5809554;5809716;5809844;5809974;5810106;5810241;5810377;5810485;5796995;5798406;5799899;5801269;5802494;5803616;5804750;5805896;5807056;5807568;5808085;5808608;5809135;5809669;5810150;5810638;5958935 -5502;'054;Melanesia;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -5502;'054;Melanesia;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -5502;'054;Melanesia;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;134;37;2;4;2;60;114 -5502;'054;Melanesia;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;23;1;5;6;407;513 -5502;'054;Melanesia;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;20;20;0;0;0;111;111;111;1;1;1;1;1;1;1;1;1;538;538;538;538;24;;;;;;; -5502;'054;Melanesia;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;0;0;0;4;4;4;1;1;1;1;1;1;1;1;2;7;7;7;7;61;;;;;;; -5502;'054;Melanesia;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;166;0;0;0;0;596;596;596;596;596;596;596;597;601;601;601;607;600;598;609;609;600;643;;;;;;; -5502;'054;Melanesia;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;0;0;0;0;15;15;15;15;15;15;15;16;20;20;20;21;33;46;83;83;22;32;;;;;;; -5502;'054;Melanesia;1865;Industrial roundwood;5516;Production;m3;223100;237100;279800;352600;428000;471000;583000;667000;748000;874000;1112000;1256000;1240000;1383000;1490000;1739000;1588000;1754700;1774400;2273600;2126300;2889200;2732300;2716400;2763300;3025800;3325300;3354800;3325570;3398390;3257077;3363643;4370800;4933200;4578200;4726021;4534141;4307437;4197310;3376310;2880310;3213310;3668573;3900700;4276700;4618780;5007617;5080905;4698905;6952700;6960700;6676908;7054700;7882700;7621700;7554700;8130700;8124700;8124700;8124700;8124700;8124700;8124700 -5502;'054;Melanesia;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;400;1100;600;600;2400;2400;2200;1100;1100;1100;1100;1100;1100;200;400;198;1285;997;1148;600;601;654;63;950;682;664;664;746;2574;5402;5357;6921;1030;2245;2165;1507;6044;5538;7665;5457;3205;1399;2058;1200;861;1164;1031;4176;1130 -5502;'054;Melanesia;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;30;132;135;107;750;750;700;350;350;350;350;350;350;42;98;24;224;152;235;81;68;120;7;112;104;100;100;168;291;503;383;1068;221;405;379;594;1410;933.1;970.25;2135;1344;460;900;633;595;531;611;1215;889 -5502;'054;Melanesia;1865;Industrial roundwood;5916;Export quantity;m3;3800;4900;46700;76000;59200;104900;198600;274100;313100;422000;685100;647500;679000;866500;580300;685500;640500;691200;708100;917900;1071200;1403500;1361800;1602700;1554500;1677100;1757300;1662009;1181958;1351713;1607159;2351389;2198480;3672973;3568562;3256455;3661934;2227149;2611233;2534260;2094960;2409034;2810830;3076665;3148075;3361748;4287459;4106854;3377764;4383603;5294680;5261397;5504619;6304953;5592159;5105906;6245546;6918621;6411825;5083511;4380511;4560396;4118570 -5502;'054;Melanesia;1865;Industrial roundwood;5922;Export value;1000 USD;107;109;911;1099;1004;1598;2900;3528;4119;5916;9508;8658;12874;23536;13019;17329;21102;22700;37610;63501;62267;89376;72248;100182;80230;92980;136057;126058;82445;146824;193639;309841;532206;745078;607191;449872;475193;177596;233290;205160;152519;160629;321211;236461;294598;361252;436223;781693;549346;898154.47;1138076;1079963.52;1195671;1574907;1368670;1238437;1291635;1539730;1217494;905399;933585;991311;838873 -5502;'054;Melanesia;1866;Industrial roundwood, coniferous;5516;Production;m3;47000;48000;44700;52500;62900;101000;97000;108000;102000;104000;107000;112000;97000;111000;110000;113000;113000;120900;156500;175500;156500;118500;85500;87500;73500;97300;124000;194000;166400;166400;166400;166400;430400;451400;499400;499400;488400;497530;436530;396530;422530;294530;299750;380750;365750;417636;447451;409872;365872;637750;615750;615750;615750;619750;619750;619750;619750;619750;619750;619750;619750;619750;619750 -5502;'054;Melanesia;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;148;1131;720;600;600;601;454;63;924;682;664;664;616;2079;2954;2873;4013;765;1667;1368;1117;2358;5464;7171;3781;389;321;1292;824;416;833;887;961;577 -5502;'054;Melanesia;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;181;77;81;81;68;78;7;99;104;100;100;89;166;226;175;255;85;177;191;146;248;850;796;1873;458;116;336;374;194;308;500;480;408 -5502;'054;Melanesia;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1379;6981;125825;6895;9407;10807;3400;5300;5300;4700;4704;4404;4204;4214;4107;3208;1845;1535;6674;694;1522;8330;2214;40144;36911;18345;5835;4645;25456;370;3334;21095;6733;5946 -5502;'054;Melanesia;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;322;976;16388;617;1411;2107;418;449;449;415;415;432;416;314;438;446;503;625;2358;53;388;2044;272;13068;13988;5013;1276;1363;4663;139;540;4715;1948;1138 -5502;'054;Melanesia;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;148;1131;720;600;600;601;454;63;924;682;664;664;616;2079;2954;2873;4013;765;1667;1368;1117;2358;5464;7171;3781;389;321;1292;824;416;833;887;961;577 -5502;'054;Melanesia;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;181;77;81;81;68;78;7;99;104;100;100;89;166;226;175;255;85;177;191;146;248;850;796;1873;458;116;336;374;194;308;500;480;408 -5502;'054;Melanesia;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1379;6981;125825;6895;9407;10807;3400;5300;5300;4700;4704;4404;4204;4214;4107;3208;1845;1535;6674;694;1522;8330;2214;40144;36911;18345;5835;4645;25456;370;3334;21095;6733;5946 -5502;'054;Melanesia;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;322;976;16388;617;1411;2107;418;449;449;415;415;432;416;314;438;446;503;625;2358;53;388;2044;272;13068;13988;5013;1276;1363;4663;139;540;4715;1948;1138 -5502;'054;Melanesia;1867;Industrial roundwood, non-coniferous;5516;Production;m3;176100;189100;235100;300100;365100;370000;486000;559000;646000;770000;1005000;1144000;1143000;1272000;1380000;1626000;1475000;1633800;1617900;2098100;1969800;2770700;2646800;2628900;2689800;2928500;3201300;3160800;3159170;3231990;3090677;3197243;3940400;4481800;4078800;4226621;4045741;3809907;3760780;2979780;2457780;2918780;3368823;3519950;3910950;4201144;4560166;4671033;4333033;6314950;6344950;6061158;6438950;7262950;7001950;6934950;7510950;7504950;7504950;7504950;7504950;7504950;7504950 -5502;'054;Melanesia;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;154;277;548;0;0;200;0;26;0;0;0;130;495;2448;2484;2908;265;578;797;390;3686;74;494;1676;2816;1078;766;376;445;331;144;3215;553 -5502;'054;Melanesia;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;43;75;154;0;0;42;0;13;0;0;0;79;125;277;208;813;136;228;188;448;1162;83.1;174.25;262;886;344;564;259;401;223;111;735;481 -5502;'054;Melanesia;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1350334;1600178;2225564;2191585;3663566;3557755;3253055;3656634;2221849;2606533;2529556;2090556;2404830;2806616;3072558;3144867;3359903;4285924;4100180;3377070;4382081;5286350;5259183;5464475;6268042;5573814;5100071;6240901;6893165;6411455;5080177;4359416;4553663;4112624 -5502;'054;Melanesia;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;146502;192663;293453;531589;743667;605084;449454;474744;177147;232875;204745;152087;160213;320897;236023;294152;360749;435598;779335;549293;897766.47;1136032;1079691.52;1182603;1560919;1363657;1237161;1290272;1535067;1217355;904859;928870;989363;837735 -5502;'054;Melanesia;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;115;130;32;33;59;121;161;56;2764;57;397;58;120;33;2;10;72;6;47;125;175 -5502;'054;Melanesia;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;49;123;16;19;32;72;107;39;831;39.1;89;53;417;76;2;6;67;11;60;0;252 -5502;'054;Melanesia;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1350334;1600178;2225564;2191585;3663566;3557755;3253055;3656494;2221594;2605403;2529406;2090406;2404617;2777231;3058490;3130799;3355873;4281893;4100122;3377009;4382054;5285558;5259127;5464410;6268012;5573750;5100071;6240901;6893165;6411455;5080177;4359416;4549899;4112624 -5502;'054;Melanesia;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;146502;192663;293453;531589;743667;605084;449454;474722;177120;232738;204727;152069;160101;320178;235193;293322;358887;433647;778886;549059;897656;1135583;1079062;1181780;1560405;1363647;1237161;1290272;1535067;1217355;904859;928870;987867;836893 -5502;'054;Melanesia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;154;277;548;0;0;200;0;26;0;0;0;130;380;2318;2452;2875;206;457;636;334;922;17;97;1618;2696;1045;764;366;373;325;97;3090;378 -5502;'054;Melanesia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;43;75;154;0;0;42;0;13;0;0;0;79;76;154;192;794;104;156;81;409;331;44;85.25;209;469;268;562;253;334;212;51;735;229 -5502;'054;Melanesia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140;255;1130;150;150;213;29385;14068;14068;4030;4031;58;61;27;792;56;65;30;64;0;0;0;0;0;0;3764;0 -5502;'054;Melanesia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;27;137;18;18;112;719;830;830;1862;1951;449;234;110.47;449;629.52;823;514;10;0;0;0;0;0;0;1496;842 -5502;'054;Melanesia;1868;Sawlogs and veneer logs;5516;Production;m3;222100;234100;276800;348600;423000;467000;581000;664000;745000;871000;1108000;1252000;1235000;1305000;1320000;1593000;1414000;1580700;1600400;1982400;1904300;2668000;2509000;2493000;2537000;2802800;3105300;3134300;3102770;3218590;3077277;3182843;3946200;4503000;4095000;4242821;4050941;4005437;3945310;2999310;2502310;2949310;3374573;3590700;3980700;4282460;4685426;4785020;4444020;6491700;6501700;6217908;6595700;7423700;7162700;7095700;7671700;7665700;7665700;7665700;7665700;7665700;7665700 -5502;'054;Melanesia;1868;Sawlogs and veneer logs;5616;Import quantity;m3;;;;;;;;;;;;;;;400;1100;600;600;2400;2400;2200;1100;1100;1100;1100;1100;1100;200;400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5502;'054;Melanesia;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;;;;;;;;;;;;;;;30;132;135;107;750;750;700;350;350;350;350;350;350;42;98;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5502;'054;Melanesia;1868;Sawlogs and veneer logs;5916;Export quantity;m3;3800;4900;46700;76000;59200;104900;198600;274100;313100;422000;685100;647500;679000;866500;580300;685500;640500;691200;708100;917900;1071200;1403500;1361800;1602700;1554500;1677100;1757300;1662009;1181958;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5502;'054;Melanesia;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;107;109;911;1099;1004;1598;2900;3528;4119;5916;9508;8658;12874;23536;13019;17329;21102;22700;37610;63501;62267;89376;72248;100182;80230;92980;136057;126058;82445;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5502;'054;Melanesia;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;47000;48000;44700;52500;62900;101000;97000;108000;102000;104000;107000;112000;97000;111000;110000;113000;113000;120900;156500;175500;156500;118500;85500;87500;73500;97300;124000;194000;166400;166400;166400;166400;183400;199400;193400;193400;182400;197530;186530;146530;143530;129530;134750;154750;149750;165316;209260;197987;153987;219750;197750;197750;197750;201750;201750;201750;201750;201750;201750;201750;201750;201750;201750 -5502;'054;Melanesia;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;400;1100;600;600;2400;2400;2200;1100;1100;1100;1100;1100;1100;200;400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5502;'054;Melanesia;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;30;132;135;107;750;750;700;350;350;350;350;350;350;42;98;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5502;'054;Melanesia;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5502;'054;Melanesia;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5502;'054;Melanesia;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;175100;186100;232100;296100;360100;366000;484000;556000;643000;767000;1001000;1140000;1138000;1194000;1210000;1480000;1301000;1459800;1443900;1806900;1747800;2549500;2423500;2405500;2463500;2705500;2981300;2940300;2936370;3052190;2910877;3016443;3762800;4303600;3901600;4049421;3868541;3807907;3758780;2852780;2358780;2819780;3239823;3435950;3830950;4117144;4476166;4587033;4290033;6271950;6303950;6020158;6397950;7221950;6960950;6893950;7469950;7463950;7463950;7463950;7463950;7463950;7463950 -5502;'054;Melanesia;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;3800;4900;43000;73500;56300;97600;197700;273600;309900;421200;685000;647400;678900;866400;580200;685400;640400;691100;708000;904800;1068900;1401200;1360200;1587200;1550400;1673000;1747500;1652209;1172158;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5502;'054;Melanesia;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;107;109;854;1039;942;1458;2884;3518;4046;5897;9504;8654;12870;23532;13015;17325;21098;22696;37606;61967;62083;89192;72157;99210;80019;92769;135364;125365;81891;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5502;'054;Melanesia;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300000;250000;375000;370000;256000;286000;302000;288000;328320;314191;287885;246885;441000;439000;439000;439000;439000;439000;439000;439000;439000;439000;439000;439000;439000;439000 -5502;'054;Melanesia;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 -5502;'054;Melanesia;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125000;97000;97000;127000;82000;78000;82000;82000;82000;41000;41000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000 -5502;'054;Melanesia;1870;Pulpwood and particles (1961-1997);5516;Production;m3;;;;;;;;;;;;;;75000;167000;143000;171000;170000;170000;288000;218000;218000;218000;218000;218000;218000;218000;218000;218000;175000;175000;175000;422000;427000;481000;481000;481000;;;;;;;;;;;;;;;;;;;;;;;;;; -5502;'054;Melanesia;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;247000;252000;306000;306000;306000;;;;;;;;;;;;;;;;;;;;;;;;;; -5502;'054;Melanesia;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;;;;;;75000;167000;143000;171000;170000;170000;288000;218000;218000;218000;218000;218000;218000;218000;218000;218000;175000;175000;175000;175000;175000;175000;175000;175000;;;;;;;;;;;;;;;;;;;;;;;;;; -5502;'054;Melanesia;1871;Other industrial roundwood;5516;Production;m3;1000;3000;3000;4000;5000;4000;2000;3000;3000;3000;4000;4000;5000;3000;3000;3000;3000;4000;4000;3200;4000;3200;5300;5400;8300;5000;2000;2500;4800;4800;4800;5800;2600;3200;2200;2200;2200;2000;2000;2000;8000;8000;8000;8000;8000;8000;8000;8000;8000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000 -5502;'054;Melanesia;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6000;6000;6000;6000;6000;6000;6000;6000;6000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000;18000 -5502;'054;Melanesia;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;1000;3000;3000;4000;5000;4000;2000;3000;3000;3000;4000;4000;5000;3000;3000;3000;3000;4000;4000;3200;4000;3200;5300;5400;8300;5000;2000;2500;4800;4800;4800;5800;2600;3200;2200;2200;2200;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 -5502;'054;Melanesia;1630;Wood charcoal;5510;Production;t;3588;3669;3755;3843;3933;4026;4120;4219;4319;4422;4499;4625;4689;4782;4962;5136;5254;5336;5387;5620;5780;5994;6162;6319;6474;6525;6714;6847;6963;7170;7258;7170;7289;7449;7697;7963;8289;8473;8720;8956;9128;9303;9484;9668;9853;10029;10207;10389;10575;10751;10939;11118;11300;11486;11676;11832;11987;12148;12309;12474;12640;12812;12985 -5502;'054;Melanesia;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;124;9;9;11;11;23;43;15;44;44;17;78;78;78;100;154;91;36;127;158;128;123;227;180;95;72;82;1851;119;3751;344;157 -5502;'054;Melanesia;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;7;7;9;9;7;16;2;22;22;5;96;96;96;112;126;104;37;124;178;89;162;327;208;79;74;85;236;136;119;206;202 -5502;'054;Melanesia;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;49;8;784;1360;1360;2872;1521;1533;1515;1556;1530;251;240;239;392;954.38;788;327 -5502;'054;Melanesia;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;14;3;298;414;414;1036;629;638;625;686;646;101;139;116;168;233;120;146 -5502;'054;Melanesia;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 -5502;'054;Melanesia;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;25;102;204;36;517;517;3412;3976;1027;1108;804;731;830;841;756;579;1006;2110;2380;7436;2424;10132.94;9238;2017 -5502;'054;Melanesia;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;2;3;11;18;33;33;116;147;451;433;320;285;310;263;382;353;511;981;959;1189;974;1198;952;1291 -5502;'054;Melanesia;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400700;290100;343400;290400;310276;270102;328038;328038;432998;288826;134368;146201;292027;222597;221773;177849;555782;402745;329714;270980;551547;235926;355630;532484;265265;24902 -5502;'054;Melanesia;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25938;15222;18082;16736;17765;14886;17687;17687;21043;23024;11315;8384;23205;18460;17511;10164;29485;24875;17754;25056;60564;36286;26093;36690;22254;20511 -5502;'054;Melanesia;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 -5502;'054;Melanesia;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;104;5;75;75;3364;3917;970;970;695;632;636;629;551;306;963;2055;2179;7180;2282;10023.94;9208;2009 -5502;'054;Melanesia;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;8;1;5;5;92;117;404;404;278;247;214;211;217;104;437;899;911;1122;920;1128;943;1285 -5502;'054;Melanesia;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;9600;68200;143000;170600;170000;170000;130800;95100;148400;154400;158300;126500;100000;142000;384000;370900;334700;316700;384490;439509;402120;480000;429100;311600;400700;290100;343400;290400;310276;270090;327687;327687;432996;288769;134311;146136;291946;222414;221570;177570;555570;402570;329570;270770;551419;235798;355502;532356;265239;24833 -5502;'054;Melanesia;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;264;1982;4243;5402;7240;7240;10579;8120;7695;7101;6862;5362;4200;9196;26500;26900;28319;28237;20447;25055;20463;25236;24100;25512;25938;15222;18082;16736;17765;14799;17673;17673;21036;22912;11203;8272;23006;18076;16982;9652;29137;24671;17660;24966;60471;36193;26000;36597;22228;20418 -5502;'054;Melanesia;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;40;40;0;0;13;1;0;23;100;100;31;442;442;48;59;57;138;109;99;194;212;205;273;43;55;201;256;142;109;30;8 -5502;'054;Melanesia;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;0;0;1;0;0;2;3;3;17;28;28;24;30;47;29;42;38;96;52;165;249;74;82;48;67;54;70;9;6 -5502;'054;Melanesia;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;12;351;351;2;57;57;65;81;183;203;279;212;175;144;210;128;128;128;128;26;69 -5502;'054;Melanesia;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;87;14;14;7;112;112;112;199;384;529;512;348;204;94;90;93;93;93;93;26;93 -5502;'054;Melanesia;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1515;56;1128;45;3337 -5502;'054;Melanesia;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48;59;66;47;628 -5502;'054;Melanesia;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;24;2;26;2 -5502;'054;Melanesia;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;12;5;6;6 -5502;'054;Melanesia;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;26;14;6;3220 -5502;'054;Melanesia;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;35;22;8;543 -5502;'054;Melanesia;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1510;30;1114;39;117 -5502;'054;Melanesia;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;24;44;39;85 -5502;'054;Melanesia;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;24;2;26;2 -5502;'054;Melanesia;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;12;5;6;6 -5502;'054;Melanesia;1872;Sawnwood;5516;Production;m3;75500;78800;75800;111600;133700;150200;154700;160500;176800;183800;162400;249700;218400;237900;246100;242000;245000;245000;252000;329000;250000;221000;228000;228000;233000;219600;229400;243700;239000;239000;283500;299200;254000;352300;342300;342300;373300;379300;137300;145300;155300;183300;173300;201300;215300;180300;188300;195300;215300;215300;237442;256300;256300;256300;257300;295300;295300;398300;398300;518294;541294;541294;541294 -5502;'054;Melanesia;1872;Sawnwood;5616;Import quantity;m3;21200;20363;15300;29800;36300;17800;20700;26100;21000;34500;27400;31800;34000;30400;26300;23000;25200;20800;12000;31600;29300;33300;32600;32400;36500;16600;16300;20519;22871;22981;23681;22135;19383;19678;20335;17011;2615;12346;16651;21275;11300;5630;15247;34938;37045;27741;26491;35615;32653;43331;45311;41647;48600;54152;42052;70025;40143;31980;26629;25958;30507;24366;22614 -5502;'054;Melanesia;1872;Sawnwood;5622;Import value;1000 USD;1127;1066;819;1612;1979;1121;1281;1531;1139;2186;1821;2396;2988;2961;3689;2896;3355;3461;2274;6211;5276;6075;5857;5839;6586;2963;2893;4152;3776;3784;5274;3886;3836;3938;6209;4251;1156;2472;2669;3577;4007;1762;6564;6886;8436;10164;9718;11765;10794;14187;13368;16072;17946;21623;15472;21483;13484;11565;9959;10162;11458;9490;8847 -5502;'054;Melanesia;1872;Sawnwood;5916;Export quantity;m3;9800;9500;11500;14100;16300;18900;16200;18300;17900;20700;18700;27900;33800;55400;33300;61700;62300;59900;63300;76100;47000;46800;44300;47800;31000;21100;17200;23413;45409;27270;100370;40669;35642;49970;44666;50322;60103;67848;59920;79326;61226;59105;69781;99192;77617;86394;79379;89353;67943;71103;85859;44197;74571;62589;66070;62418;60138;88156;149861;75460;190901;76264;54508 -5502;'054;Melanesia;1872;Sawnwood;5922;Export value;1000 USD;612;625;816;1009;1255;1388;1290;1365;1351;1659;1543;2708;4234;7578;4481;8054;8974;8533;9734;15491;9737;9756;8100;9706;6585;4834;3871;5363;11442;7322;25722;9028;10341;14660;14035;16826;20938;20053;20286;27714;23673;25265;24240;30715;32495;37996;37500;50978;34944;45397;43455;41154;46162;44856;39442;35950;27039;36354;50372;80793;79383;67401;55307 -5502;'054;Melanesia;1632;Sawnwood, coniferous;5516;Production;m3;13200;15700;13600;28300;34300;35500;34400;40700;41200;39200;44500;48500;36500;42000;42000;43000;42000;41000;41000;74000;63000;59000;62000;59000;57000;60600;69400;93000;84000;84000;133000;83000;100000;90000;86000;86000;99000;107000;44000;32000;32000;53000;45000;55000;50000;55000;55000;55000;55000;55000;85000;85000;85000;85000;86000;86000;86000;89000;89000;88994;88994;88994;88994 -5502;'054;Melanesia;1632;Sawnwood, coniferous;5616;Import quantity;m3;20100;19463;13800;28500;34800;17300;17300;23400;20500;26700;26500;31200;25400;21200;17000;13700;15900;11500;11500;31200;28900;32600;32000;32000;36100;16200;16200;20419;22764;22881;23581;20130;19160;19483;19307;16871;812;11698;15061;20090;8600;3258;11110;27236;30942;22802;21463;31752;31312;39187;42026;37698;45044;47842;38744;65467;37857;30903;24580;25264;30116;23789;20840 -5502;'054;Melanesia;1632;Sawnwood, coniferous;5622;Import value;1000 USD;1019;995;685;1498;1832;1061;1071;1342;1073;1761;1718;2316;1956;1605;2323;1530;1989;2095;2095;6149;5214;5921;5735;5735;6482;2859;2859;4118;3740;3750;5240;3255;3634;3725;5603;4131;538;2111;2425;3091;3004;968;4612;4745;6422;7510;6176;8082;9611;11111;11445;12640;15059;15609;12639;20097;11870;10413;8889;9196;10819;8982;8587 -5502;'054;Melanesia;1632;Sawnwood, coniferous;5916;Export quantity;m3;5500;3700;9100;11400;13000;15000;11100;10500;13200;15400;13800;16400;14100;17300;13600;24100;19400;17600;15600;17800;14700;15600;16700;22400;11000;8800;5300;14500;34200;16600;89700;1231;9931;2290;15508;7808;8804;12547;14020;14300;6800;3470;13543;19291;9700;6799;4940;5731;7119;4198;8573;443;856;1834;776;838;1304;3258;129;472;3895;543;883 -5502;'054;Melanesia;1632;Sawnwood, coniferous;5922;Export value;1000 USD;366;265;640;833;1008;1118;929;829;1069;1290;1134;1534;1606;2293;1856;2897;2534;2546;2603;3271;2486;2759;2871;4552;2580;2347;1576;3105;8359;4000;22400;462;3605;1119;4617;2145;3577;5444;4851;4624;2273;2726;4567;6024;2054;1691;1747;2375;2099;1469;1607;364;595;1209;610;542;548;2380;173;363;1905;585;3018 -5502;'054;Melanesia;1633;Sawnwood, non-coniferous;5516;Production;m3;62300;63100;62200;83300;99400;114700;120300;119800;135600;144600;117900;201200;181900;195900;204100;199000;203000;204000;211000;255000;187000;162000;166000;169000;176000;159000;160000;150700;155000;155000;150500;216200;154000;262300;256300;256300;274300;272300;93300;113300;123300;130300;128300;146300;165300;125300;133300;140300;160300;160300;152442;171300;171300;171300;171300;209300;209300;309300;309300;429300;452300;452300;452300 -5502;'054;Melanesia;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;1100;900;1500;1300;1500;500;3400;2700;500;7800;900;600;8600;9200;9300;9300;9300;9300;500;400;400;700;600;400;400;400;100;100;107;100;100;2005;223;195;1028;140;1803;648;1590;1185;2700;2372;4137;7702;6103;4939;5028;3863;1341;4144;3285;3949;3556;6310;3308;4558;2286;1077;2049;694;391;577;1774 -5502;'054;Melanesia;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;108;71;134;114;147;60;210;189;66;425;103;80;1032;1356;1366;1366;1366;1366;179;62;62;154;122;104;104;104;34;34;36;34;34;631;202;213;606;120;618;361;244;486;1003;794;1952;2141;2014;2654;3542;3683;1183;3076;1923;3432;2887;6014;2833;1386;1614;1152;1070;966;639;508;260 -5502;'054;Melanesia;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;4300;5800;2400;2700;3300;3900;5100;7800;4700;5300;4900;11500;19700;38100;19700;37600;42900;42300;47700;58300;32300;31200;27600;25400;20000;12300;11900;8913;11209;10670;10670;39438;25711;47680;29158;42514;51299;55301;45900;65026;54426;55635;56238;79901;67917;79595;74439;83622;60824;66905;77286;43754;73715;60755;65294;61580;58834;84898;149732;74988;187006;75721;53625 -5502;'054;Melanesia;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;246;360;176;176;247;270;361;536;282;369;409;1174;2628;5285;2625;5157;6440;5987;7131;12220;7251;6997;5229;5154;4005;2487;2295;2258;3083;3322;3322;8566;6736;13541;9418;14681;17361;14609;15435;23090;21400;22539;19673;24691;30441;36305;35753;48603;32845;43928;41848;40790;45567;43647;38832;35408;26491;33974;50199;80430;77478;66816;52289 -5502;'054;Melanesia;1634;Veneer sheets;5516;Production;m3;700;800;800;800;700;900;1200;2600;2900;3300;4400;4100;7700;7600;12000;11500;15000;17000;18000;17000;21000;20000;23000;24000;25000;25400;25300;30600;30600;43600;43100;43100;14935;16004;11090;7183;11375;11000;9000;23000;71000;75000;88000;88000;97849;98000;98000;90000;90000;90000;113800;73800;73800;83800;83800;83800;83800;93800;103800;117000;137000;137000;137000 -5502;'054;Melanesia;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1430;114;69;25;25;28;70;110;43;43;48;28;204;559;498;936;1542;671;405;836;1194;144;274;354;488;438;963;111;64;142;132;152 -5502;'054;Melanesia;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;70;54;15;15;16;67;57;17;17;28;47;146;272;465;674;1319;483;476;1182;1576;248;295;487;577;343;807;476;453;527;452;302 -5502;'054;Melanesia;1634;Veneer sheets;5916;Export quantity;m3;700;800;800;700;700;900;800;2200;2900;2400;4400;3900;4300;6000;11500;11500;9100;9500;10500;8500;11200;9900;13200;14200;14700;2800;3200;1300;5600;4200;3400;4300;3950;7018;5800;6200;10131;5431;4831;7000;7000;37029;68917;65198;58865;42195;20365;17013;4145;2700;4623;8401;8349;7760;11730;9151;7437;15248;25418;38525;43406;41715;42452 -5502;'054;Melanesia;1634;Veneer sheets;5922;Export value;1000 USD;85;70;81;76;82;92;93;135;283;250;539;505;687;966;1130;1256;981;1057;1390;1307;2041;1993;2247;2760;2519;2162;2522;616;3018;2230;1702;2291;2425;3876;4162;4161;3517;3623;2077;2543;2574;7686;15963;12655;20040;16099;10196;8648;2194;1755;2571;4110;5045;5001;8289;5158;3345;6463;7041;11305;13486;13897;12094 -5502;'054;Melanesia;1873;Wood-based panels;5516;Production;m3;9700;14200;10700;10300;20200;11600;12200;16800;16000;16300;18100;16400;17800;21800;20000;16500;16500;17600;18300;13700;12600;13000;12900;12900;14200;14900;14300;14200;14500;18500;18500;18500;13290;15562;12426;12154;15077;25000;17000;18000;18000;14000;20000;20000;20622;20000;21000;24000;25000;24000;55500;46963;39000;39000;40000;75000;80000;75000;75000;75000;75000;75000;75000 -5502;'054;Melanesia;1873;Wood-based panels;5616;Import quantity;m3;6657;6161;7971;8034;11700;16100;16400;20200;18120;9180;11317;9783;8383;7292;9079;7706;7306;7506;9500;9800;10700;10200;10300;10100;9700;9500;7100;8481;11106;11033;8233;15610;5707;8987;11998;12433;8313;8758;12546;11497;11350;10748;19617;41044;42620;29570;16428;19086;17560;24756;33084;38125;35816;39265;33659;32682;34874;31195;49630;81029;65316.91;36230;52261 -5502;'054;Melanesia;1873;Wood-based panels;5622;Import value;1000 USD;363;309;424;399;606;762;951;1217;1231;1577;1671;1583;1947;2055;2821;2632;2622;2984;3942;4394;5670;5582;5669;5306;5137;5056;3221;5626;4994;5104;4324;6449;2189;3041;4997;5113;3284;3430;4137;3376;3753;5724;7575;9267;10517;11770;10435;13762;10305;14153;19747;23851;20558;27335;23775;18449;20348;19442;17148;14601;16638;19519;19028 -5502;'054;Melanesia;1873;Wood-based panels;5916;Export quantity;m3;9700;11700;7600;9200;9600;7900;9500;10700;10500;11900;11900;9200;13100;15800;12500;10800;5600;6400;6400;6400;8200;7300;5400;5700;3000;2100;2100;2100;2400;800;2700;8279;1226;2214;8319;3105;2105;7805;11000;11000;7000;9942;9677;13366;8769;9569;10351;12851;13020;14504;18019;14140;5339;6957;8122;10580;12264;12169;15487;8819;8899;10361.59;12962.59 -5502;'054;Melanesia;1873;Wood-based panels;5922;Export value;1000 USD;1935;2086;1551;2165;2254;2112;2286;2535;2480;2835;2720;2320;3454;4910;3506;4312;2582;3174;3174;4274;4880;4599;3332;3048;1631;1208;1208;1208;1546;1546;1546;3671;900;1544;2132;2207;1445;3410;3684;3660;3477;7915;5409;6044;4574;5052;6795;7279;6358;7858;12662;9352;3195;6052;6806;7931;7473;6758;5990;5440;6571;9847.72;8549.72 -5502;'054;Melanesia;1640;Plywood and LVL;5516;Production;m3;9700;14200;10700;10300;20200;11600;12200;16800;16000;16300;18100;16400;17800;21800;20000;16500;16500;17600;18300;13700;12600;13000;12900;12900;14200;14900;14300;14200;14500;18500;18500;18500;13290;15562;12426;12154;15077;25000;17000;18000;18000;14000;20000;20000;20622;20000;21000;24000;25000;24000;55500;46963;39000;39000;40000;75000;80000;75000;75000;75000;75000;75000;75000 -5502;'054;Melanesia;1640;Plywood and LVL;5616;Import quantity;m3;1157;361;871;634;800;1000;1200;3800;4000;5100;5700;5100;4900;3900;3500;2900;3000;3200;4700;5300;6500;6400;6500;6600;6500;6300;3900;5315;8561;8604;5804;6990;1295;3788;5622;4821;4053;3466;4210;3418;4400;1401;3981;8756;10332;9604;7595;9360;7471;14759;23908;28046;24166;24882;19991;21486;20065;15791;17270;13454;19107;16845;18953 -5502;'054;Melanesia;1640;Plywood and LVL;5622;Import value;1000 USD;200;67;141;108;160;202;347;539;625;1048;1023;940;1277;1086;1386;1174;1291;1623;2461;2753;4063;4058;4106;4130;4097;3928;2039;4336;4098;4126;3361;3442;540;1111;2664;2456;1949;1831;1895;1554;2029;3883;2730;3179;4429;5420;4798;6482;4341;6375;11374;13496;11035;15273;12287;11244;10101;9439;6671;5162;6553;9796;9072 -5502;'054;Melanesia;1640;Plywood and LVL;5916;Export quantity;m3;9700;11700;7600;9200;9600;7900;9500;10700;10500;11900;11900;9200;13100;15800;12500;10800;5600;6400;6400;6400;8200;7300;5400;5700;3000;2100;2100;2100;2400;800;2700;8279;1226;2214;2419;3105;2105;7805;11000;11000;7000;9920;9639;10717;6120;6939;7975;10475;10639;12102;15648;12389;3480;5153;7688;10168;11821;11714;15008;8132;7816;9836;12509 -5502;'054;Melanesia;1640;Plywood and LVL;5922;Export value;1000 USD;1935;2086;1551;2165;2254;2112;2286;2535;2480;2835;2720;2320;3454;4910;3506;4312;2582;3174;3174;4274;4880;4599;3332;3048;1631;1208;1208;1208;1546;1546;1546;3671;900;1544;1927;2207;1445;3410;3684;3660;3477;7905;5374;5326;3856;4326;5890;6374;5451;6968;11969;8893;2705;5506;6608;7814;7341;6611;5803;5153;6181;9670;8402 -5502;'054;Melanesia;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;235 -5502;'054;Melanesia;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;283 -5502;'054;Melanesia;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;5500;5800;7100;7400;10900;15100;15200;15200;12140;2100;2100;1400;1400;1300;2000;1800;1300;1600;2000;2600;2600;2600;2500;2300;2000;2000;2000;1916;1309;1324;1024;1524;681;610;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5502;'054;Melanesia;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;163;242;283;291;446;560;604;651;370;266;291;231;234;269;596;628;492;565;806;1191;1278;1281;1269;939;796;884;884;907;464;473;458;507;236;210;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5502;'054;Melanesia;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;310;2614;2461;2455;3716;2298;1855;1691;3672;13065;13065;4352;3264;2785;4408;3768;3312;2837;737;3014;3064;1695;3273;3273;17022;23027;32023.31;9555;22115 -5502;'054;Melanesia;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;172;956;782;806;1072;608;526;623;1622;2124;2124;1652;1844;2902;2695;3372;3665;4372;2053;2418;2399;1222;2792;2792;4009;3449;4377;3961;4231 -5502;'054;Melanesia;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;4;8;322;322;322;46;46;46;18;18;2;2;2;4;7;39;39;50;123;287;96;40 -5502;'054;Melanesia;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;1;4;55;55;55;49;49;49;11;11;4;4;4;7;5;21;21;34;41;90;49;20 -5502;'054;Melanesia;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;645;645;116;1692;2416;2416;1102;1394;157;137;318;308;390;235;456;481;519;566;512;720;651;503;620;634 -5502;'054;Melanesia;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;196;196;71;705;397;397;486;1060;126;84;256;343;405;199;412;487;343;355;316;464;447;371;617;489 -5502;'054;Melanesia;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;0;0;0;0;5;4.59;4.59 -5502;'054;Melanesia;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;0;0;0;0;2;1.72;1.72 -5502;'054;Melanesia;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;1200;1980;1980;3517;3283;2083;2092;3579;3006;3006;2706;2800;1900;1600;1200;1300;1200;1200;1200;1200;1250;1236;1105;1405;7096;3731;4589;6066;4998;1799;2837;4620;5136;4450;7540;10272;16807;16807;14512;4175;6784;5544;5911;5556;6852;10678;10913;10123;8982;10970;11619;14618;43897;13683.6;9210;10559 -5502;'054;Melanesia;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;27;236;263;357;412;436;700;839;830;839;796;675;450;329;243;294;237;244;244;298;383;432;505;505;2500;1413;1720;2161;1701;553;793;1170;1018;1002;1147;2518;3567;3567;4212;2733;4252;3185;4150;4365;5578;7271;9232;8602;5640;7100;6895;6004;5543;5337;5145;5236 -5502;'054;Melanesia;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;5900;0;0;0;0;0;0;18;30;2327;2327;2308;2329;2329;2334;2383;2352;1748;1856;1801;429;404;404;416;429;564;791;425;409 -5502;'054;Melanesia;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;205;0;0;0;0;0;0;9;31;663;663;671;855;855;857;878;681;454;485;541;190;111;111;126;153;246;298;127;126 -5502;'054;Melanesia;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;1600;226;862;1000;1051;750;1161;1975;3281;3281;2662;1740;4246;2529;3509;3049;3153;4977;4496;2017;659;2753;4527;5395;4121;3761;1102;3103 -5502;'054;Melanesia;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1045;592;115;286;302;324;434;521;1193;1522;1522;1650;1078;1899;1076;1851;1986;1902;2677;2503;1231;517;1958;2694;2883;1856;1613;796;1555 -5502;'054;Melanesia;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5900;0;0;0;0;0;0;9;9;661;661;642;640;640;640;640;640;1;0;0;0;0;0;0;18;18;18;7;24 -5502;'054;Melanesia;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;205;0;0;0;0;0;0;7;21;268;268;276;262;262;262;262;262;2;0;0;0;0;0;0;24;24;24;7;25 -5502;'054;Melanesia;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1934;2111;1216;1547;2437;2966;2600;1751;2920;7325;7325;5795;1738;2295;2724;2097;1776;2873;4862;5702;7951;8183;7969;6861;6867;31199;9419.6;6964;5874 -5502;'054;Melanesia;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;841;802;361;426;664;506;449;217;706;1252;1252;1689;1189;1933;1940;1828;1705;2896;3803;6071;7257;5032;4953;3993;2968;3383;3627;3803;3185 -5502;'054;Melanesia;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1570;1570;1570;1570;1570;1575;1624;1624;1660;1769;1714;342;304;304;324;307;452;589;283;271 -5502;'054;Melanesia;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;380;380;380;380;380;382;403;404;431;464;520;162;95;95;108;103;199;241;97;80 -5502;'054;Melanesia;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;1200;400;400;1200;2000;800;1000;2000;500;500;500;400;200;200;200;200;200;200;200;200;200;200;200;200;3388;349;231;1132;1287;357;428;1183;1119;1100;4628;5377;6201;6201;6055;697;243;291;305;731;826;839;715;155;140;248;231;2356;8577;503;1144;1582 -5502;'054;Melanesia;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;27;9;13;31;70;83;101;186;62;61;62;57;30;30;30;30;30;30;30;30;30;30;30;30;1186;106;88;275;307;77;81;204;188;119;409;619;793;793;873;466;420;169;471;674;780;791;658;114;91;189;208;153;304;97;546;496 -5502;'054;Melanesia;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;9;21;96;96;96;119;119;119;119;88;87;87;87;87;100;100;92;104;94;184;135;114 -5502;'054;Melanesia;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;2;10;15;15;15;213;213;213;213;15;21;21;21;28;16;16;18;26;23;33;23;21 -5502;'054;Melanesia;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;1580;1580;2317;1283;1283;1092;1579;2506;2506;2206;2400;1700;1400;1000;1100;1000;1000;1000;1000;1050;1036;905;1205;3708;3382;4358;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5502;'054;Melanesia;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;227;250;326;342;353;599;653;768;778;734;618;420;299;213;264;207;214;214;268;353;402;475;475;1314;1307;1632;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5502;'054;Melanesia;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;3000;3000;3000;5878;5087;4725;4762;4906;4906;4906;4906;4906;4906;4906 -5502;'054;Melanesia;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;798;195;270;93;235;342;244;403;203;3903;3908;3910;4505;4505;4428;4571;3454;3571;4541;3922;983;1177;600;583;800;542;549;685;17473;583;932;551 -5502;'054;Melanesia;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;175;78;48;21;60;55;54;48;46;1499;1507;1510;1857;1857;1922;1995;1644;1713;1831;2304;765;897;557;535;681;459;468;515;2657;411;473;395 -5502;'054;Melanesia;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;0;0;0;0;0;0;0;0;1673;1378;456;474;2024;1397;1375;1856;3102;6365;6017;4677;3444;3098;3607;3562;1763;2280;2218;1824;666;1471 -5502;'054;Melanesia;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;0;0;0;0;0;0;0;484;1468;283;139;798;257;225;294;534;1405;1006;753;565;308;377;573;480;385;362;426;183;386 -5502;'054;Melanesia;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;74;0;1;1;108;7;0;0;2500;2500;2502;2504;2504;2548;2677;3436;3262;3277;3440;861;954;550;541;625;514;521;625;600;537;523;521 -5502;'054;Melanesia;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;60;0;1;1;11;10;0;0;1031;1031;1034;1034;1034;1100;1176;1629;1489;1502;1565;664;776;530;517;606;441;450;435;434;385;382;384 -5502;'054;Melanesia;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;1;2;2;2;2;2;2;2;2;306;306;305;305;305;305;305;319;319;319;319;319 -5502;'054;Melanesia;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;1;1;1;1;1;1;3;3;3;106;106;103;103;103;103;103;109;109;109;109;109 -5502;'054;Melanesia;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;74;0;1;1;1;1;0;0;2500;2501;2503;2504;2504;2547;2684;3443;3259;3271;3434;824;916;512;501;519;508;517;624;586;532;517;517 -5502;'054;Melanesia;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;60;0;1;1;1;1;0;0;1031;1037;1037;1036;1036;1098;1196;1655;1488;1498;1561;495;606;347;328;337;336;341;387;374;349;341;341 -5502;'054;Melanesia;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;99;99;0;0;0;0;1;2;2;2;2;2;2;2;2;306;306;305;305;305;305;305;319;319;319;319;319 -5502;'054;Melanesia;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;99;99;0;0;0;0;1;1;1;1;1;1;3;3;3;106;106;103;103;103;103;103;109;109;109;109;109 -5502;'054;Melanesia;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;9;116;78;24;9;9 -5502;'054;Melanesia;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;5;51;38;13;5;5 -5502;'054;Melanesia;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;14;14 -5502;'054;Melanesia;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6 -5502;'054;Melanesia;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;38;755;570;582;745;284;376;11;0;0;;;;;;; -5502;'054;Melanesia;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;33;454;284;294;357;120;231;19;0;0;;;;;;; -5502;'054;Melanesia;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;;;;;;; -5502;'054;Melanesia;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;;;;;;; -5502;'054;Melanesia;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;0;0;0;0;0;;;;;;; -5502;'054;Melanesia;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;;;;;;; -5502;'054;Melanesia;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;74;0;1;1;1;1;0;0;2500;2500;2502;2503;2503;2508;2637;2679;2680;2680;2680;539;539;500;500;500;500;500;500;500;500;500;500 -5502;'054;Melanesia;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;60;0;1;1;1;1;0;0;1031;1031;1034;1033;1033;1062;1132;1170;1173;1173;1173;372;372;325;325;325;325;325;325;325;325;325;325 -5502;'054;Melanesia;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;1;1;1;1;1;1;1;1;1;306;306;305;305;305;305;305;305;305;305;305;305 -5502;'054;Melanesia;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;1;1;1;1;1;1;3;3;3;106;106;103;103;103;103;103;103;103;103;103;103 -5502;'054;Melanesia;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;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;0;0;0 -5502;'054;Melanesia;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;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;0;0;0 -5502;'054;Melanesia;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;74;0;0;0;0;0;0;0;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500;2500;500;500;500;500;500;500;500;500;500;500;500;500 -5502;'054;Melanesia;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;60;0;0;0;0;0;0;0;1031;1031;1031;1031;1031;1031;1031;1031;1031;1031;1031;325;325;325;325;325;325;325;325;325;325;325;325 -5502;'054;Melanesia;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;305;305;305;305;305;305;305;305;305;305;305;305 -5502;'054;Melanesia;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;103;103;103;103;103;103;103;103;103;103;103;103 -5502;'054;Melanesia;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -5502;'054;Melanesia;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -5502;'054;Melanesia;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -5502;'054;Melanesia;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -5502;'054;Melanesia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;3;3;8;137;179;180;180;180;39;39;0;0;0;;;;;;; -5502;'054;Melanesia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;2;2;31;101;139;142;142;142;47;47;0;0;0;;;;;;; -5502;'054;Melanesia;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;;;;;;; -5502;'054;Melanesia;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;;;;;;; -5502;'054;Melanesia;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;9;9;9;9;9;1;1;1;1;1;8;8;8;8;8;8;8 -5502;'054;Melanesia;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;3;3;3;3;31;31;31;31;31;3;3;3;3;3;11;11;11;11;11;11;11 -5502;'054;Melanesia;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;99;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -5502;'054;Melanesia;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99;99;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -5502;'054;Melanesia;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;107;6;0;0;0;0;0;1;1;2;2;2;12;15;15;38;39;39;41;107;14;12;9;22;13;14;12 -5502;'054;Melanesia;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;10;9;0;0;0;0;0;1;1;5;11;5;32;35;35;172;173;186;192;272;116;120;59;71;47;52;54 -5502;'054;Melanesia;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 -5502;'054;Melanesia;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 -5502;'054;Melanesia;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;29;33;32;33;11;9;8;8;18;18;85;85;85;129;85;85 -5502;'054;Melanesia;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;22;26;26;28;28;18;11;11;30;24;63;63;63;125;63;63 -5502;'054;Melanesia;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;221 -5502;'054;Melanesia;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;55 -5502;'054;Melanesia;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;3000;3000;3000;5878;5087;4725;4762;4906;4906;4906;4906;4906;4906;4906 -5502;'054;Melanesia;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;699;121;270;92;234;234;237;403;203;1403;1408;1408;2001;2001;1880;1894;18;309;1264;482;122;223;50;42;175;28;28;60;16873;46;409;30 -5502;'054;Melanesia;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98;18;48;20;59;44;44;48;46;468;476;476;823;823;822;819;15;224;329;739;101;121;27;18;75;18;18;80;2223;26;91;11 -5502;'054;Melanesia;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;8;0;0;0;0;0;0;0;0;1673;1377;454;472;2022;1395;1373;1854;3100;6363;5711;4371;3139;2793;3302;3257;1458;1961;1899;1505;347;1152 -5502;'054;Melanesia;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;0;0;0;0;0;0;0;0;484;1467;282;138;797;256;224;291;531;1402;900;647;462;205;274;470;377;276;253;317;74;277 -5502;'054;Melanesia;1876;Paper and paperboard;5610;Import quantity;t;900;900;2000;2700;1700;2400;2400;2700;8300;6300;5900;6400;8300;9100;10300;9300;12600;15000;18500;22800;22500;18100;20600;18400;17900;18900;23200;21200;24700;28700;33900;12231;24705;31778;30917;24081;23469;25934;44251;40999;43731;116907;82398;64834;64834;51753;66282;51031;50162;51903;62811;47409;50235;58030;37021;59788;69393;67105;73492;74209;80820.3;68787;67413 -5502;'054;Melanesia;1876;Paper and paperboard;5622;Import value;1000 USD;348;346;770;980;621;1132;1093;1128;2649;2134;2142;2664;3105;3838;4521;3752;6135;7610;12421;17256;17518;14219;15611;14372;13243;16152;18380;18046;19628;20354;26994;11499;19412;27082;28192;23839;18870;19203;30697;26516;27990;28097;37973;43396;43396;42070;50723;45009;39732;46790;60249;48564;43743;59017;35327;63471;61925;60379;73325;67031;79427.15;76792;73741 -5502;'054;Melanesia;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;31;32;32;32;31;6;1;13;13;657;1341;9531;9531;7999;8199;8121;7029;6087;6004;1786;1438;1032;507;711;1430;1158;745;827;1212.55;890;1005 -5502;'054;Melanesia;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;15;16;16;16;15;7;3;11;11;501;956;5704;5704;5393;5227;5188;3870;3599;3542;1676;910;1766;578;857;1207;1023;820;1059;1332.8;889;1107 -5502;'054;Melanesia;2042;Graphic papers;5610;Import quantity;t;400;400;400;500;500;800;700;900;1300;1900;1600;1900;2900;2500;5100;5300;4500;4700;5000;5400;6700;7200;7000;7300;5300;7000;6700;6600;7200;8600;10800;5555;9798;15532;14156;15540;8551;13939;17718;14074;14427;13290;30382;27400;27400;19030;19322;14101;15633;13492;22966;26341;25923;22405;13245;20098;20657;15083;27580;28075;28197.64;16407;18764 -5502;'054;Melanesia;2042;Graphic papers;5622;Import value;1000 USD;115;124;154;161;177;244;235;293;267;399;429;650;1060;1309;2176;1931;1981;2256;4062;4769;6305;6541;6119;6452;4392;6999;6809;6861;6941;5144;9627;5390;7223;13899;14005;15731;9925;13122;14830;11847;11767;11222;16484;19674;19674;18238;18960;16496;15890;15130;25130;25264;22646;24894;16123;23613;22082;16303;30521;25012;28983.24;20896;23732 -5502;'054;Melanesia;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;0;11;11;532;224;7101;7101;6372;6326;6364;5298;5191;5175;1146;1125;166;157;323;349;308;229;272;262;178;205 -5502;'054;Melanesia;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;0;6;6;293;410;4163;4163;3859;3727;3805;2704;2538;2513;806;660;448;264;513;661;618;490;691;1002.8;657;648 -5502;'054;Melanesia;1671;Newsprint;5610;Import quantity;t;200;200;200;100;200;500;400;500;600;1400;1200;1500;2300;1600;2500;3300;2500;2700;3000;3000;4600;4800;4800;4500;2300;3600;3300;2200;3000;2500;3000;1809;6308;6715;6263;8201;2962;7587;5418;3626;3900;3235;5957;8223;8223;5866;5824;4601;2595;3715;3649;13757;11760;6069;4241;4134;2587;1255;5319;7474;6245;4293;4444 -5502;'054;Melanesia;1671;Newsprint;5622;Import value;1000 USD;43;52;66;39;42;112;85;110;112;200;219;381;617;624;1578;1503;1553;1828;2072;2205;3510;3866;3883;3705;1467;3244;3054;1529;1995;1830;2149;1319;3141;4177;3910;5889;1955;4628;3179;2085;2109;1906;3930;4194;4194;4371;4408;3622;1915;2730;2870;8705;6862;4659;3462;4018;1678;987;3551;2807;3197;3376;3591 -5502;'054;Melanesia;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;2;4338;4338;4089;4087;4087;5133;5133;5133;1049;1049;5;5;5;1;23;23;3;5;0;39 -5502;'054;Melanesia;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2048;2048;1936;1929;1929;2423;2423;2423;495;495;10;10;7;2;16;16;6;10;0;28 -5502;'054;Melanesia;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;3400;3400;4400;4200;6100;7800;3746;3490;8817;7893;7339;5589;6352;12300;10448;10527;10055;24425;19177;19177;13164;13498;9500;13038;9777;19317;12584;14163;16336;9004;15964;18070;13828;22261;20601;21952.64;12114;14320 -5502;'054;Melanesia;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;3755;3755;5332;4946;3314;7478;4071;4082;9722;10095;9842;7970;8494;11651;9762;9658;9316;12554;15480;15480;13867;14552;12874;13975;12400;22260;16559;15784;20235;12661;19595;20404;15316;26970;22205;25786.24;17520;20141 -5502;'054;Melanesia;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;0;11;11;531;222;2763;2763;2283;2239;2277;165;58;42;97;76;161;152;318;348;285;206;269;257;178;166 -5502;'054;Melanesia;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;0;6;6;291;408;2115;2115;1923;1798;1876;281;115;90;311;165;438;254;506;659;602;474;685;992.8;657;620 -5502;'054;Melanesia;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;467;645;545;227;162;193;1277;1277;2377;2013;456;2291;370;683;3485;1424;3610;1423;4358;5927;614;4994;4067;2787.31;2934;2724 -5502;'054;Melanesia;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;734;888;830;524;223;251;1007;1007;1871;2025;660;2469;693;1131;3815;1446;3623;2395;6802;7117;784;6350;4927;4404.42;5199;4503 -5502;'054;Melanesia;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;11;11;28;2072;2072;1972;2046;1956;30;8;6;13;14;74;50;212;225;225;170;215;139;128;64 -5502;'054;Melanesia;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;47;1586;1586;1530;1558;1506;53;15;9;91;27;213;96;278;458;458;407;548;637.8;500;269 -5502;'054;Melanesia;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4463;9002;7730;8100;7558;18778;11712;11712;6958;7108;5232;5764;5347;13016;4708;8815;7574;4136;8392;6068;8394;11948;11991;13070.1;4578;7728 -5502;'054;Melanesia;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5792;7728;6496;6688;6725;7918;8954;8954;7090;6663;6890;6868;6663;14475;5388;9172;9756;5396;9239;7311;9028;13654;12432;13807.83;5894;10113 -5502;'054;Melanesia;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;520;182;507;507;305;186;293;109;38;24;35;41;34;40;79;105;41;25;18;18;18;4 -5502;'054;Melanesia;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;285;343;387;387;375;223;336;197;75;52;77;90;76;108;156;169;97;48;38;41;40;52 -5502;'054;Melanesia;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1422;2653;2173;2200;2335;5454;6188;6188;3829;4377;3812;4983;4060;5618;4391;3924;5152;3445;3214;6075;4820;5319;4543;6095.22;4602;3868 -5502;'054;Melanesia;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1968;3035;2436;2446;2368;4385;5519;5519;4906;5864;5324;4638;5044;6654;7356;5166;6856;4870;3554;5976;5504;6966;4846;7573.99;6427;5525 -5502;'054;Melanesia;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;0;0;0;0;12;184;184;6;7;28;26;12;12;49;21;53;62;27;18;19;11;36;100;32;98 -5502;'054;Melanesia;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;0;0;0;0;18;142;142;18;17;34;31;25;29;143;48;149;50;72;32;47;19;99;314;117;299 -5502;'054;Melanesia;1675;Other paper and paperboard;5610;Import quantity;t;500;500;1600;2200;1200;1600;1700;1800;7000;4400;4300;4500;5400;6600;5200;4000;8100;10300;13500;17400;15800;10900;13600;11100;12600;11900;16500;14600;17500;20100;23100;6676;14907;16246;16761;8541;14918;11995;26533;26925;29304;103617;52016;37434;37434;32723;46960;36930;34529;38411;39845;21068;24312;35625;23776;39690;48736;52022;45912;46134;52622.66;52380;48649 -5502;'054;Melanesia;1675;Other paper and paperboard;5622;Import value;1000 USD;233;222;616;819;444;888;858;835;2382;1735;1713;2014;2045;2529;2345;1821;4154;5354;8359;12487;11213;7678;9492;7920;8851;9153;11571;11185;12687;15210;17367;6109;12189;13183;14187;8108;8945;6081;15867;14669;16223;16875;21489;23722;23722;23832;31763;28513;23842;31660;35119;23300;21097;34123;19204;39858;39843;44076;42804;42019;50443.91;55896;50009 -5502;'054;Melanesia;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;26;27;27;27;26;1;1;2;2;125;1117;2430;2430;1627;1873;1757;1731;896;829;640;313;866;350;388;1081;850;516;555;950.55;712;800 -5502;'054;Melanesia;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;11;12;12;12;11;3;3;5;5;208;546;1541;1541;1534;1500;1383;1166;1061;1029;870;250;1318;314;344;546;405;330;368;330;232;459 -5502;'054;Melanesia;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1800;1400;700;0;0;80;669;2850;3003;4617;4758;4758;4258;5447;3753;2913;4577;5515;7906;5721;4841;3123;5094;6776;5211;8415;8716;7047.04;6779;7330 -5502;'054;Melanesia;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1898;1594;740;0;0;72;585;3345;2844;4767;4768;4768;5411;7874;6062;3991;6937;8918;11973;6942;8051;5671;8803;9833;7851;12297;12245;10937.56;12237;13185 -5502;'054;Melanesia;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;11;2;2;9;9;9;8;39;10;13;16;15;51;38;31;56;10;8;8;3;1 -5502;'054;Melanesia;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;31;4;4;12;12;12;8;16;23;107;106;114;161;60;49;90;21;12;15;8;4 -5502;'054;Melanesia;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4799;11051;11641;22324;22542;42545;29085;29085;25800;38780;29831;28419;30626;31365;11262;16319;26813;18594;29413;37556;43318;37156;34689;42357.62;42421;39039 -5502;'054;Melanesia;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3856;6568;6922;10432;11172;13288;15419;15419;15281;20225;17076;15266;18069;20375;8818;10945;21272;11687;25456;25963;32670;27815;25610;33078.35;39545;32966 -5502;'054;Melanesia;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;9;543;2284;2284;1497;1558;1525;1474;631;594;404;82;607;84;123;823;568;296;323;731.55;504;596 -5502;'054;Melanesia;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;12;343;1379;1379;1185;1256;1328;1089;1007;971;714;105;1122;114;144;357;179;220;226;279;206;433 -5502;'054;Melanesia;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;4000;4000;8000;11000;900;7100;7500;8000;3500;2600;;;;;;;;;;;;;;;;;;;;;;;;;; -5502;'054;Melanesia;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;;;;;;;;;;;;;;;;;;;;;;;;;; -5502;'054;Melanesia;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3323;7615;7626;9611;4601;7134;6311;6311;5022;7762;9898;4438;9181;9717;7421;11079;7256;4989;3914;30693;36493;23610;26280;26148.79;34326;31915 -5502;'054;Melanesia;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2558;4328;4340;4886;2520;3588;3782;3782;3215;4066;5356;2264;4652;5595;5645;6835;5286;3461;6066;18174;23910;15089;15446;18344.86;27281;22281 -5502;'054;Melanesia;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;272;1793;1793;1265;1217;1210;1206;19;19;25;25;25;25;25;696;463;149;166;585.55;379;379 -5502;'054;Melanesia;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;96;1083;1083;841;768;749;741;18;18;27;27;27;27;27;173;50;76;16;134;88;88 -5502;'054;Melanesia;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;295;696;883;1704;2470;2115;2557;2557;2528;4610;17713;11597;19767;19639;2497;3953;16927;11769;10888;1348;1069;8399;2061;1671;1359;1572 -5502;'054;Melanesia;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;424;739;886;1268;1158;897;1038;1038;1315;1983;9187;5395;11132;12497;1718;2808;12168;6204;5828;2404;1985;6325;2906;2567;2781;3031 -5502;'054;Melanesia;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;12;23;23;26;26;33;205;216;216;20;21;2;5;51;80;56;64;59;52;52;72 -5502;'054;Melanesia;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;16;13;13;27;27;39;283;296;296;30;34;6;17;43;110;56;57;68;46;48;98 -5502;'054;Melanesia;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;886;2062;2401;10108;15399;33250;19962;19962;18175;26320;2165;12328;1607;1924;1110;1074;2211;1788;13460;5252;5383;4956;6241;14358.83;6660;5355 -5502;'054;Melanesia;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;366;641;806;3360;7357;8724;10440;10440;10668;14076;2454;7509;2140;2131;1142;1017;3542;1956;12935;5194;6449;6278;7163;11998.49;9418;7491 -5502;'054;Melanesia;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8;259;462;462;200;309;276;57;390;353;353;30;574;47;38;38;40;74;84;80;57;129 -5502;'054;Melanesia;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;231;279;279;313;457;536;61;689;653;653;40;1085;65;60;60;59;73;130;87;54;231 -5502;'054;Melanesia;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;295;678;731;901;72;46;255;255;75;88;55;56;71;85;234;213;419;48;1151;263;373;191;107;179;76;197 -5502;'054;Melanesia;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;508;860;890;918;137;79;159;159;83;100;79;98;145;152;313;285;276;66;627;191;326;123;95;168;65;163 -5502;'054;Melanesia;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;6;6;6;6;7;9;9;9;9;14;14;16;16 -5502;'054;Melanesia;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4;4;4;4;4;4;4;5;14;14;14;14;12;12;16;16 -5502;'054;Melanesia;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;500;500;1600;2200;1200;1600;1700;1800;7000;4400;4300;4500;5400;6600;5200;4000;8100;10300;13500;17400;15800;10900;13600;11100;12600;11900;12500;10600;13500;12100;12100;5190;6687;5804;6704;3300;11900;7196;15402;14615;4130;78072;4854;3591;3591;2665;2733;3346;3197;3208;2965;1900;2272;3971;2059;5183;4404;3493;341;2729;3218;3180;2280 -5502;'054;Melanesia;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;233;222;616;819;444;888;858;835;2382;1735;1713;2014;2045;2529;2345;1821;4154;5354;8359;12487;11213;7678;9492;7920;8851;9153;8224;7838;9340;8748;8748;4665;5066;3530;4227;2792;6098;2225;9227;7162;2446;2859;3434;3535;3535;3140;3664;5375;4585;6654;5826;2509;3210;4800;1846;5599;4047;3555;2692;4164;6428;4114;3858 -5502;'054;Melanesia;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;115;563;144;144;121;306;223;249;226;225;223;215;244;215;227;227;226;210;224;211;205;203 -5502;'054;Melanesia;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;194;172;158;158;337;232;43;69;38;35;49;39;82;39;140;140;136;89;130;36;18;22 -5502;'054;Melanesia;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58812;55143;46775;46018;43754;65914;64632 -5502;'054;Melanesia;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40784;16797;14666;5703;2303;9821;8825 -5502;'054;Melanesia;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4377;3959;4492;4121;3480;3449;2266 -5502;'054;Melanesia;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;625;1266;715;443;779;942;1018 -5502;'054;Melanesia;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1180;838;1387;441;566;288;262 -5502;'054;Melanesia;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;240;281;199;218;237;204;225 -5502;'054;Melanesia;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3197;3121;3105;3680;2914;3161;2004 -5502;'054;Melanesia;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;385;985;516;225;542;738;793 -5502;'054;Melanesia;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1250;1161;535;879;1144;726;838 -5502;'054;Melanesia;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;234;255;324;104;105;146;149 -5502;'054;Melanesia;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1468;1292;1445;1135;1732;1425;1504 -5502;'054;Melanesia;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;486;466;531;413;109;173;297 -5502;'054;Melanesia;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12727;9345;8787;9372;11188;8306;7833 -5502;'054;Melanesia;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;144;210;231;203;294;107;270 -5502;'054;Melanesia;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107;339 -5502;'054;Melanesia;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140;324 -5502;'054;Melanesia;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;41 -5502;'054;Melanesia;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;78 -5502;'054;Melanesia;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31775;34718;26324;27102;22524;48178;49040 -5502;'054;Melanesia;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;835;973;752;432;392;663;751 -5502;'054;Melanesia;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2749;1557;1017;898;1039;592;342 -5502;'054;Melanesia;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -5502;'054;Melanesia;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4466;3111;4175;2511;2647;3238;2809 -5502;'054;Melanesia;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38460;13627;12113;4108;624;7790;6340 -5502;'054;Melanesia;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94011;97217;73365;67217;73457;123133;97821 -5502;'054;Melanesia;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12540;13439;10555;10249;10596;11049;9851 -5502;'054;Melanesia;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;87;383;252;85;36;69 -5502;'054;Melanesia;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;46;60;55;2;2;0 -5502;'054;Melanesia;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3607;3831;2904;2609;4117;6684;4656 -5502;'054;Melanesia;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98;514;211;169;205;309;80 -5502;'054;Melanesia;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18783;15229;12474;13304;15519;31958;26779 -5502;'054;Melanesia;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2911;2895;2888;1311;1355;2322;1605 -5502;'054;Melanesia;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20889;20614;21106;20835;24230;33522;25174 -5502;'054;Melanesia;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8408;8982;6790;8004;7725;7640;7400 -5502;'054;Melanesia;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50665;57456;36498;30217;29506;50933;41143 -5502;'054;Melanesia;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1123;1002;606;710;1309;776;766 -5503;'057;Micronesia;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24759.4;27647;37141;29993;33613;35417;25781 -5503;'057;Micronesia;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;439;599;481;5671;6679;5917;2652 -5503;'057;Micronesia;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;;5594;6416;6208;6181;6181;6181;6110;6110;6110;6110;6110;6110;6110;6110;6110;6110;6110;6110;5556;7349;7718;8422;9086;13149;10821;8727;9846;14348;13872;18693;15110;11889 -5503;'057;Micronesia;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;;0;0;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;0;0;0;0;89;301;53;43;104;102;307;116;501;117 -5503;'057;Micronesia;1861;Roundwood;5516;Production;m3;1660;1714;1767;1824;1881;1941;2002;2066;2131;2200;2276;2289;2295;2233;2279;2433;2516;2597;2709;3013;3100;3133;3239;3276;3378;3431;3521;3536;3618;3749;3801;3869;3693;3670;3736;3854;3982;4030;4098;4504;4581;4660;4740;4822;4906;4996;5089;5184;5282;5381;5462;5544;5628;5714;5800;5870;5940;6012;6085;6158;6231;6305;6380 -5503;'057;Micronesia;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;;95;1058;1470;1470;1470;1470;1470;1470;1470;1470;1470;1470;1470;1470;1470;1470;1470;1470;1470;1130;1408;1961;4414;2758;3675;2198;2477;633;933;3328;3779;3333 -5503;'057;Micronesia;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;;6;75;91;91;91;91;91;91;91;91;91;91;91;91;91;91;91;91;218;263;220;349;416;474;902;734;554;296;467;1100;887;508 -5503;'057;Micronesia;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;;;;;;;;;;;;;;;;;;;;;;;;;31;104;0;66;88;0;0;315;0 -5503;'057;Micronesia;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;;;;;;;;;;;;;;;;;;;;;;;;;9;30;0;33;28;0;0;267;0 -5503;'057;Micronesia;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -5503;'057;Micronesia;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;774;2330;260;448;2707;561;2885 -5503;'057;Micronesia;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;338;477;191;182;928;586;336 -5503;'057;Micronesia;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -5503;'057;Micronesia;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -5503;'057;Micronesia;1863;Roundwood, non-coniferous;5516;Production;m3;1660;1714;1767;1824;1881;1941;2002;2066;2131;2200;2276;2289;2295;2233;2279;2433;2516;2597;2709;3013;3100;3133;3239;3276;3378;3431;3521;3536;3618;3749;3801;3869;3693;3670;3736;3854;3982;4030;4098;4504;4581;4660;4740;4822;4906;4996;5089;5184;5282;5381;5462;5544;5628;5714;5800;5870;5940;6012;6085;6158;6231;6305;6380 -5503;'057;Micronesia;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1424;147;373;485;621;3218;448 -5503;'057;Micronesia;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;396;77;105;285;172;301;172 -5503;'057;Micronesia;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;66;88;0;0;315;0 -5503;'057;Micronesia;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;33;28;0;0;267;0 -5503;'057;Micronesia;1864;Wood fuel;5516;Production;m3;1660;1714;1767;1824;1881;1941;2002;2066;2131;2200;2276;2289;2295;2233;2279;2433;2516;2597;2709;3013;3100;3133;3239;3276;3378;3431;3521;3536;3618;3749;3801;3869;3693;3670;3736;3854;3982;4030;4098;4504;4581;4660;4740;4822;4906;4996;5089;5184;5282;5381;5462;5544;5628;5714;5800;5870;5940;6012;6085;6158;6231;6305;6380 -5503;'057;Micronesia;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;215;336;336;336;336;336;336;336;336;336;336;336;336;336;336;336;336;336;336;127;359;359;359;359;;;;;;; -5503;'057;Micronesia;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;7;27;27;27;27;;;;;;; -5503;'057;Micronesia;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;0;;;;;;; -5503;'057;Micronesia;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;0;;;;;;; -5503;'057;Micronesia;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -5503;'057;Micronesia;1628;Wood fuel, non-coniferous;5516;Production;m3;1660;1714;1767;1824;1881;1941;2002;2066;2131;2200;2276;2289;2295;2233;2279;2433;2516;2597;2709;3013;3100;3133;3239;3276;3378;3431;3521;3536;3618;3749;3801;3869;3693;3670;3736;3854;3982;4030;4098;4504;4581;4660;4740;4822;4906;4996;5089;5184;5282;5381;5462;5544;5628;5714;5800;5870;5940;6012;6085;6158;6231;6305;6380 -5503;'057;Micronesia;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;215;336;336;336;336;336;336;336;336;336;336;336;336;336;336;336;336;336;336;127;359;359;359;359;;;;;;; -5503;'057;Micronesia;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;7;27;27;27;27;;;;;;; -5503;'057;Micronesia;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;0;;;;;;; -5503;'057;Micronesia;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;0;;;;;;; -5503;'057;Micronesia;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;;95;843;1134;1134;1134;1134;1134;1134;1134;1134;1134;1134;1134;1134;1134;1134;1134;1134;1134;794;1281;1602;4055;2399;3316;2198;2477;633;933;3328;3779;3333 -5503;'057;Micronesia;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;;6;66;76;76;76;76;76;76;76;76;76;76;76;76;76;76;76;76;203;248;213;322;389;447;875;734;554;296;467;1100;887;508 -5503;'057;Micronesia;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;;;;;;;;;;;;;;;;;;;;;;;;;0;104;0;66;88;0;0;315;0 -5503;'057;Micronesia;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;;;;;;;;;;;;;;;;;;;;;;;;;0;30;0;33;28;0;0;267;0 -5503;'057;Micronesia;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;843;1125;1125;1125;1125;1125;1125;1125;1125;1125;1125;1125;1125;1125;1125;1125;1125;1125;785;1272;1593;4046;1123;2176;774;2330;260;448;2707;561;2885 -5503;'057;Micronesia;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;66;73;73;73;73;73;73;73;73;73;73;73;73;73;73;73;73;200;245;210;319;386;255;473;338;477;191;182;928;586;336 -5503;'057;Micronesia;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -5503;'057;Micronesia;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -5503;'057;Micronesia;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;843;1125;1125;1125;1125;1125;1125;1125;1125;1125;1125;1125;1125;1125;1125;1125;1125;1125;785;1272;1593;4046;1123;2176;774;2330;260;448;2707;561;2885 -5503;'057;Micronesia;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;66;73;73;73;73;73;73;73;73;73;73;73;73;73;73;73;73;200;245;210;319;386;255;473;338;477;191;182;928;586;336 -5503;'057;Micronesia;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -5503;'057;Micronesia;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -5503;'057;Micronesia;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;;;;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;9;1276;1140;1424;147;373;485;621;3218;448 -5503;'057;Micronesia;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;;;;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;192;402;396;77;105;285;172;301;172 -5503;'057;Micronesia;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;;;;;;;;;;;;;;;;;;;;;;;;;0;104;0;66;88;0;0;315;0 -5503;'057;Micronesia;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;;;;;;;;;;;;;;;;;;;;;;;;;0;30;0;33;28;0;0;267;0 -5503;'057;Micronesia;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;1200;553;190;102;39;1;4;0;103 -5503;'057;Micronesia;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;172;152;120;17;10;2;8;0;91 -5503;'057;Micronesia;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23;;;;;;;;;;;;;;;;;;;;;;;;;0;104;0;66;88;0;0;315;0 -5503;'057;Micronesia;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;;;;;;;;;;;;;;;;;;;;;;;;;0;30;0;33;28;0;0;267;0 -5503;'057;Micronesia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;;;;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;76;587;1234;45;334;484;617;3218;345 -5503;'057;Micronesia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;20;250;276;60;95;283;164;301;81 -5503;'057;Micronesia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -5503;'057;Micronesia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -5503;'057;Micronesia;1630;Wood charcoal;5510;Production;t;188;194;201;207;214;221;230;237;246;254;266;266;269;263;270;289;300;307;322;360;373;376;389;392;407;416;426;428;439;457;465;473;479;490;500;516;533;540;550;560;571;582;592;604;616;630;644;658;673;688;700;713;725;739;752;764;776;788;800;812;824;836;848 -5503;'057;Micronesia;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;30;14;14;14;12;81;22;18;36 -5503;'057;Micronesia;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;44;23;23;23;16;78;24;21;42 -5503;'057;Micronesia;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;61;61;61;61;61;61;61;61;61;61;61;61;90;941;65;65;65;65;65;65;65;65;65;65;65 -5503;'057;Micronesia;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;2;2;2;2;7;182;5;5;5;5;5;5;5;5;5;5;5 -5503;'057;Micronesia;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;46;46;46;46;46;46;46;46;46 -5503;'057;Micronesia;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;13;13;13;13;13;13 -5503;'057;Micronesia;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;46;46;46;46;46;46;46;46;46 -5503;'057;Micronesia;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;13;13;13;13;13;13 -5503;'057;Micronesia;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61;61;61;61;61;61;61;61;61;61;61;61;61;61;61;61;61;90;941;65;65;65;65;65;65;65;65;65;65;65 -5503;'057;Micronesia;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;7;182;5;5;5;5;5;5;5;5;5;5;5 -5503;'057;Micronesia;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;35;35;35;35 -5503;'057;Micronesia;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;33;32;32;32 -5503;'057;Micronesia;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;35;35;35;35 -5503;'057;Micronesia;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;33;32;32;32 -5503;'057;Micronesia;1872;Sawnwood;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -5503;'057;Micronesia;1872;Sawnwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16039;16069;18346;18346;18346;18346;18346;18346;18346;18346;18346;18346;18346;18346;18346;18346;18346;18346;7348;13872;18639;17604;14307;13997;15760;13522;14340;22964;20103;28156;47942;42836 -5503;'057;Micronesia;1872;Sawnwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3565;4324;4224;4224;4224;4224;4224;4224;4224;4224;4224;4224;4224;4224;4224;4224;4224;4224;2986;3630;3163;3918;3919;4929;5171;4172;5409;6218;6436;9886;9341;6890 -5503;'057;Micronesia;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;0;0;0;0;182;215;2;76;76;134;53;0;0;30 -5503;'057;Micronesia;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;0;0;0;0;67;269;1;21;21;35;218;0;0;5 -5503;'057;Micronesia;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -5503;'057;Micronesia;1632;Sawnwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15112;14427;18031;18031;18031;18031;18031;18031;18031;18031;18031;18031;18031;18031;18031;18031;18031;18031;7033;13060;15657;17041;10123;12914;13980;6835;10930;21172;19092;26883;46560;41113 -5503;'057;Micronesia;1632;Sawnwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3262;3579;4061;4061;4061;4061;4061;4061;4061;4061;4061;4061;4061;4061;4061;4061;4061;4061;2267;2992;2805;3430;3198;4048;4493;2693;3799;5728;6135;9232;8992;6444 -5503;'057;Micronesia;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;0;76;76;134;0;0;0;0 -5503;'057;Micronesia;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;0;21;21;35;126;0;0;0 -5503;'057;Micronesia;1633;Sawnwood, non-coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -5503;'057;Micronesia;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;927;1642;315;315;315;315;315;315;315;315;315;315;315;315;315;315;315;315;315;812;2982;563;4184;1083;1780;6687;3410;1792;1011;1273;1382;1723 -5503;'057;Micronesia;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;303;745;163;163;163;163;163;163;163;163;163;163;163;163;163;163;163;163;719;638;358;488;721;881;678;1479;1610;490;301;654;349;446 -5503;'057;Micronesia;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;16;0;0;0;0;182;120;2;0;0;0;53;0;0;30 -5503;'057;Micronesia;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;23;0;0;0;0;67;243;1;0;0;0;92;0;0;5 -5503;'057;Micronesia;1634;Veneer sheets;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -5503;'057;Micronesia;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;122;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;31;105;564;702;606;699;431;312;194;316;118;142;67;32;45 -5503;'057;Micronesia;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;51;26;26;26;26;26;26;26;26;26;26;26;26;26;26;26;26;208;1206;1088;1261;503;2584;949;335;434;135;233;195;92;104 -5503;'057;Micronesia;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;127;0;0 -5503;'057;Micronesia;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;61;55;0;0 -5503;'057;Micronesia;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -5503;'057;Micronesia;1873;Wood-based panels;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5713;5825;5428;5314;5314;5314;5314;5314;5314;5314;5314;5314;5314;5314;5314;5314;5314;5314;3309;3363;4231;1185;4241;6843;4169;4177;3896;6164;5204;9531;4110;4987 -5503;'057;Micronesia;1873;Wood-based panels;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1819;1696;1543;1516;1516;1516;1516;1516;1516;1516;1516;1516;1516;1516;1516;1516;1516;1516;1891;1818;2430;2277;3515;4326;3053;2740;2703;2882;2518;4213;3239;2595 -5503;'057;Micronesia;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;7;9;7;7;279;7;7;25;181;61 -5503;'057;Micronesia;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;9;10;9;9;37;15;9;34;143;21 -5503;'057;Micronesia;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -5503;'057;Micronesia;1640;Plywood and LVL;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5362;5658;5284;5284;5284;5284;5284;5284;5284;5284;5284;5284;5284;5284;5284;5284;5284;5284;3279;3177;4024;1001;4071;6678;4014;4022;3741;5918;5169;8223;2699;4934 -5503;'057;Micronesia;1640;Plywood and LVL;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1724;1645;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1875;1754;2353;2212;3431;4168;2992;2679;2642;2724;2472;3412;2319;2428 -5503;'057;Micronesia;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;2;0;0;272;0;0;18;174;9 -5503;'057;Micronesia;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;0;28;6;0;25;134;1 -5503;'057;Micronesia;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32 -5503;'057;Micronesia;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57 -5503;'057;Micronesia;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;134;74;28;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5503;'057;Micronesia;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;23;13;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5503;'057;Micronesia;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;28;28;28;28;28;28;28;28;28;28;28;28;28;28;47;52;31;15;28;15;15;15;101;25;1293;1409;36 -5503;'057;Micronesia;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;13;17;22;13;28;98;12;12;12;98;38;790;917;155 -5503;'057;Micronesia;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;7;7;7;7;7;7;7;34 -5503;'057;Micronesia;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;9;9;9;9;17 -5503;'057;Micronesia;1874;Fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;217;93;116;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;139;155;153;155;137;140;140;140;145;10;15;2;17 -5503;'057;Micronesia;1874;Fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;28;30;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;3;47;55;52;56;60;49;49;49;60;8;11;3;12 -5503;'057;Micronesia;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18 -5503;'057;Micronesia;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3 -5503;'057;Micronesia;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;137;153;153;155;137;140;140;140;145;10;15;2;13 -5503;'057;Micronesia;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;52;52;56;60;49;49;49;60;8;11;3;11 -5503;'057;Micronesia;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18 -5503;'057;Micronesia;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3 -5503;'057;Micronesia;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;0;4 -5503;'057;Micronesia;1650;Other fibreboard;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;0;0;0;0;0;0;0;0;0;0;1 -5503;'057;Micronesia;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;217;91;114;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5503;'057;Micronesia;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;25;27;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5503;'057;Micronesia;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;43;145;87;105;72;100;100;100;243;38;38;38;38 -5503;'057;Micronesia;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;9;41;20;24;21;38;38;38;63;26;26;26;26 -5503;'057;Micronesia;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;115;23;155;357;357 -5503;'057;Micronesia;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;6;1;9;73;73 -5503;'057;Micronesia;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;2;7;5;5;5;5;5;5;5;5 -5503;'057;Micronesia;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1;3;3;5;5;5;5;5;5;5;5 -5503;'057;Micronesia;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;2;7;5;5;5;5;5;5;5;5 -5503;'057;Micronesia;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1;3;3;5;5;5;5;5;5;5;5 -5503;'057;Micronesia;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;43;144;86;103;65;95;95;95;238;33;33;33;33 -5503;'057;Micronesia;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;9;39;19;21;18;33;33;33;58;21;21;21;21 -5503;'057;Micronesia;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;115;23;155;357;357 -5503;'057;Micronesia;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;6;1;9;73;73 -5503;'057;Micronesia;1876;Paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;194;283;319;319;319;319;275;275;275;275;275;275;275;275;275;275;275;275;275;334;416;452;493;542;426;426;426;3997;3072;2268;761;1067 -5503;'057;Micronesia;1876;Paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;186;270;322;322;322;322;251;251;251;251;251;251;251;251;251;251;251;251;251;416;594;592;671;766;680;680;680;4701;4076;3212;1467;1687 -5503;'057;Micronesia;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;1;0;0;0;0 -5503;'057;Micronesia;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;5;5;5;5;5 -5503;'057;Micronesia;2042;Graphic papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92;135;146;146;146;146;103;103;103;103;103;103;103;103;103;103;103;103;103;103;150;153;236;274;180;180;180;2552;1930;1904;594;908 -5503;'057;Micronesia;2042;Graphic papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77;108;154;154;154;154;84;84;84;84;84;84;84;84;84;84;84;84;84;88;184;151;278;294;252;252;252;3061;2089;2403;1008;1255 -5503;'057;Micronesia;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -5503;'057;Micronesia;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4 -5503;'057;Micronesia;1671;Newsprint;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;2;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;4;12;10;26;13;18;16;16;16;14;12;24;12;88 -5503;'057;Micronesia;1671;Newsprint;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;1;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;7;12;17;12;13;17;17;17;10;7;18;8;57 -5503;'057;Micronesia;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;133;142;142;142;142;99;99;99;99;99;99;99;99;99;99;99;99;99;91;140;127;223;256;164;164;164;2538;1918;1880;582;820 -5503;'057;Micronesia;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;107;152;152;152;152;82;82;82;82;82;82;82;82;82;82;82;82;82;81;172;134;266;281;235;235;235;3051;2082;2385;1000;1198 -5503;'057;Micronesia;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -5503;'057;Micronesia;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4 -5503;'057;Micronesia;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;6;16;3;3;3;3;27;73;9;50;2 -5503;'057;Micronesia;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;6;6;10;6;6;6;132;60;26;257;29 -5503;'057;Micronesia;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49;49;49;49;49;49;49;49;49;49;49;49;49;51;59;84;96;122;83;83;83;2190;1805;1816;483;794 -5503;'057;Micronesia;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;42;42;42;42;42;42;42;42;42;42;42;42;45;55;80;104;83;82;82;82;2418;1957;2229;639;1114 -5503;'057;Micronesia;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -5503;'057;Micronesia;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -5503;'057;Micronesia;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;50;50;50;50;50;50;50;50;50;50;50;50;40;76;37;111;131;78;78;78;321;40;55;49;24 -5503;'057;Micronesia;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;40;40;40;40;40;40;40;40;40;40;40;40;36;113;48;156;188;147;147;147;501;65;130;104;55 -5503;'057;Micronesia;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -5503;'057;Micronesia;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;4;4;4;4 -5503;'057;Micronesia;1675;Other paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102;148;173;173;173;173;172;172;172;172;172;172;172;172;172;172;172;172;172;231;266;299;257;268;246;246;246;1445;1142;364;167;159 -5503;'057;Micronesia;1675;Other paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109;162;168;168;168;168;167;167;167;167;167;167;167;167;167;167;167;167;167;328;410;441;393;472;428;428;428;1640;1987;809;459;432 -5503;'057;Micronesia;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;1;0;0;0;0 -5503;'057;Micronesia;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;1;1;1;1;1 -5503;'057;Micronesia;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;113;113;113;113;113;113;113;113;113;113;113;113;113;161;218;191;174;206;209;209;209;349;814;311;131;84 -5503;'057;Micronesia;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;84;84;84;84;84;84;84;84;84;84;84;84;213;310;254;264;365;342;342;342;843;1626;698;376;268 -5503;'057;Micronesia;1676;Household and sanitary 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 -5503;'057;Micronesia;1676;Household and sanitary 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 -5503;'057;Micronesia;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;43;74;80;57;32;32;32;1089;323;48;36;75 -5503;'057;Micronesia;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;67;99;95;53;59;59;59;785;328;81;74;146 -5503;'057;Micronesia;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0 -5503;'057;Micronesia;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1 -5503;'057;Micronesia;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;3;4;2;2;0;0;0;1068;21;19;19;48 -5503;'057;Micronesia;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;2;2;7;6;4;4;4;722;21;16;24;59 -5503;'057;Micronesia;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -5503;'057;Micronesia;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -5503;'057;Micronesia;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;3;2;2;1;1;1;1;258;1;11;2 -5503;'057;Micronesia;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;3;2;2;2;1;1;1;2;230;6;25;5 -5503;'057;Micronesia;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -5503;'057;Micronesia;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0 -5503;'057;Micronesia;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;37;63;72;49;27;27;27;16;40;27;5;24 -5503;'057;Micronesia;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;56;75;66;25;34;34;34;41;57;59;25;82 -5503;'057;Micronesia;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;0;0;0;0 -5503;'057;Micronesia;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1 -5503;'057;Micronesia;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;1;4;4;4;4;4;4;4;4;1;1;1 -5503;'057;Micronesia;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;6;20;20;20;20;20;20;20;20;0;0;0 -5503;'057;Micronesia;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;5;34;3;5;5;5;5;7;5;5;0;0 -5503;'057;Micronesia;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;83;83;83;83;83;83;83;83;83;83;83;83;83;33;88;34;54;27;27;27;12;33;30;9;18 -5503;'057;Micronesia;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 -5503;'057;Micronesia;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 -5503;'057;Micronesia;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7207.4;9140;10447;7822;6088;11377;7409 -5503;'057;Micronesia;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;226;231;275;5252;5573;5169;2351 -5503;'057;Micronesia;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54.9;355;357;352;592;566;1626 -5503;'057;Micronesia;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;9;23 -5503;'057;Micronesia;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17.7;29;29;44;179;43;1277 -5503;'057;Micronesia;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -5503;'057;Micronesia;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37.2;326;328;308;413;523;349 -5503;'057;Micronesia;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;23 -5503;'057;Micronesia;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25.5;12;172;21;220;125;43 -5503;'057;Micronesia;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0 -5503;'057;Micronesia;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;435;525;559;173;143;804;218 -5503;'057;Micronesia;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1 -5503;'057;Micronesia;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1443;1528;1509;2314;2372;2051;1306 -5503;'057;Micronesia;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;5179;5489;4832;2223 -5503;'057;Micronesia;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;192 -5503;'057;Micronesia;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;177 -5503;'057;Micronesia;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4969;6343;7599;4620;2502;6980;3739 -5503;'057;Micronesia;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;225;230;272;72;37;327;102 -5503;'057;Micronesia;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;60;574;16 -5503;'057;Micronesia;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;280;377;251;342;199;277;461 -5503;'057;Micronesia;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;2;0;46;0;2 -5503;'057;Micronesia;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8825;8661;12346;8299;8832;8930;6483 -5503;'057;Micronesia;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;170;264;104;112;990;247;184 -5503;'057;Micronesia;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26;123;77;101;48;51;51 -5503;'057;Micronesia;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67;111;269;46;72;159;56 -5503;'057;Micronesia;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;2;2;0;2;19;0 -5503;'057;Micronesia;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3437;3876;3001;3832;3200;3298;1628 -5503;'057;Micronesia;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;2;5;2;3;8;15 -5503;'057;Micronesia;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2382;1832;6345;1807;2128;2359;1997 -5503;'057;Micronesia;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108;242;56;54;118;161;166 -5503;'057;Micronesia;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2913;2719;2654;2513;3384;3063;2751 -5503;'057;Micronesia;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;18;41;56;867;59;3 -5504;'061;Polynesia;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89253;103195;108092;106710;133554;128863.5;101393.5 -5504;'061;Polynesia;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2082;2223;1754;1753;2207;2967.24;3042.85 -5504;'061;Polynesia;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;1308;1433;1441;1539;1785;2847;2915;3672;4252;4381;4047;5117;5648;5264;5275;7810;10124;10961;15122;12512;12503;21477;26966;25402;15995;26666;14897;11351;16568;17135;17288;25981;22387;25974;22845;20331;24914;26442;29365;30265;31888;28783;47056;50689;46419;48237;49782;53345;41458;51309;45982;44334;43383;47757;35850;45699;37825;48992;49382;48968;72596;60746.5;43149.5 -5504;'061;Polynesia;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;4;9;7;264;620;610;614;187;139;266;254;294;309;288;1270;540;1478;1478;1478;51;54;0;11;32;511;1248;821;885;1144;1018;1081;1972;1887;1291;1282;1381;881;857;484;639;460;412;257;564;655;821;746;682;963;1454;1104;893;1144;1105;1249.24;1777.85 -5504;'061;Polynesia;1861;Roundwood;5516;Production;m3;60908;60893;60879;60865;60852;60840;60830;61819;63809;76801;103840;120978;129930;129760;126104;90800;120841;127810;135792;135736;135825;143405;139005;139071;140449;140742;140833;140939;141042;138839;138912;138963;144003;144081;144125;144325;143863;144276;142627;100666;103502;104039;97576;96115;99753;90581;90608;90638;90667;90696;90720;90746;90772;90800;90826;90838;90848;90862;90876;90891;90899;90910;90920 -5504;'061;Polynesia;1861;Roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;600;1300;1300;1300;1300;1300;1200;1100;1000;1300;1300;1300;1300;1300;701;4063;3455;4858;1371;3131;1256;1701;2437;3107;2215;2976;6361;20582;18008;5765;6589;7856;6756;8127;16889;13542;16262;12950;11843;875;9594;2949;3208;4479;1269;2412;1825;1660 -5504;'061;Polynesia;1861;Roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;127;298;298;300;460;520;529;528;331;364;364;364;364;364;104;257;334;481;143;350;202;265;329;378;305;689;634;861;1204;523;560;792;1237;1239;1420;1849;1602;1223;1330;301;4078;881;1213;1086;508;1011;619;997 -5504;'061;Polynesia;1861;Roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;1738;6058;4446;4430;4450;4450;4978;11232;11283;7740;7740;9409;8114;7662;3097;4978;2196;1287;1468;2942;5142;5142;2169;148;245;34;253;59;0;0;0;0 -5504;'061;Polynesia;1861;Roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;477;1194;768;786;798;798;860;1242;1258;662;662;755;617;593;324;408;244;191;71;158;288;288;113;38;48;1;25;57;6;0;0;0 -5504;'061;Polynesia;1862;Roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;6000;2000;2000;2000;2000;2000;2000;2000;900;900;900;5900;5900;5900;5900;5900;6300;6100;5800;5800;5800;5800;5800;5600;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000 -5504;'061;Polynesia;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;740;1167;3726;1135;1773;1233;1251 -5504;'061;Polynesia;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;308;680;849;450;929;577;766 -5504;'061;Polynesia;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;50;55;0;0;0;0 -5504;'061;Polynesia;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;20;14;0;0;0;0 -5504;'061;Polynesia;1863;Roundwood, non-coniferous;5516;Production;m3;60908;60893;60879;60865;60852;60840;60830;61819;63809;76801;103840;120978;129930;129760;126104;90800;120841;127810;135792;135736;135825;137405;137005;137071;138449;138742;138833;138939;139042;137939;138012;138063;138103;138181;138225;138425;137963;137976;136527;94866;97702;98239;91776;90315;94153;84581;84608;84638;84667;84696;84720;84746;84772;84800;84826;84838;84848;84862;84876;84891;84899;84910;84920 -5504;'061;Polynesia;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2209;2041;753;134;639;592;409 -5504;'061;Polynesia;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;573;533;237;58;82;42;231 -5504;'061;Polynesia;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34;203;4;0;0;0;0 -5504;'061;Polynesia;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;5;43;6;0;0;0 -5504;'061;Polynesia;1864;Wood fuel;5516;Production;m3;59908;59893;59879;59865;59852;59840;59830;59819;59809;64801;64840;64978;64930;64760;65104;64800;74841;74810;74792;74736;74825;74905;75005;75071;75049;75142;75233;75339;75442;75539;75612;75663;75703;75781;75825;76025;75563;75576;74527;76266;76302;76339;76376;76415;76453;76481;76508;76538;76567;76596;76620;76646;76672;76700;76726;76738;76748;76762;76776;76791;76799;76810;76820 -5504;'061;Polynesia;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;627;627;1714;1714;1714;1714;1714;1714;1714;1714;1714;1715;1715;113;19;19;85;5;2;39;;;3;3;3;8;8 -5504;'061;Polynesia;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;27;27;164;164;164;164;164;164;164;164;164;172;172;15;6;6;15;13;5;10;;;2;2;2;12;12 -5504;'061;Polynesia;1627;Wood fuel, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -5504;'061;Polynesia;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5 -5504;'061;Polynesia;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10 -5504;'061;Polynesia;1628;Wood fuel, non-coniferous;5516;Production;m3;59908;59893;59879;59865;59852;59840;59830;59819;59809;64801;64840;64978;64930;64760;65104;64800;74841;74810;74792;74736;74825;74905;75005;75071;75049;75142;75233;75339;75442;75539;75612;75663;75703;75781;75825;76025;75563;75576;74527;76266;76302;76339;76376;76415;76453;76481;76508;76538;76567;76596;76620;76646;76672;76700;76726;76738;76748;76762;76776;76791;76799;76810;76820 -5504;'061;Polynesia;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3 -5504;'061;Polynesia;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2 -5504;'061;Polynesia;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;627;627;1714;1714;1714;1714;1714;1714;1714;1714;1714;1715;1715;113;19;19;85;5;2;39;;;;;;; -5504;'061;Polynesia;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;27;27;164;164;164;164;164;164;164;164;164;172;172;15;6;6;15;13;5;10;;;;;;; -5504;'061;Polynesia;1865;Industrial roundwood;5516;Production;m3;1000;1000;1000;1000;1000;1000;1000;2000;4000;12000;39000;56000;65000;65000;61000;26000;46000;53000;61000;61000;61000;68500;64000;64000;65400;65600;65600;65600;65600;63300;63300;63300;68300;68300;68300;68300;68300;68700;68100;24400;27200;27700;21200;19700;23300;14100;14100;14100;14100;14100;14100;14100;14100;14100;14100;14100;14100;14100;14100;14100;14100;14100;14100 -5504;'061;Polynesia;1865;Industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;600;1300;1300;1300;1300;1300;1200;1100;1000;1300;1300;1300;1300;1300;701;4063;3455;4858;1371;3131;1242;1074;1810;1393;501;1262;4647;18868;16294;4051;4875;6142;5041;6412;16776;13523;16243;12865;11838;873;9555;2949;3208;4476;1266;2409;1817;1652 -5504;'061;Polynesia;1865;Industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;127;298;298;300;460;520;529;528;331;364;364;364;364;364;104;257;334;481;143;350;201;238;302;214;141;525;470;697;1040;359;396;628;1065;1067;1405;1843;1596;1208;1317;296;4068;881;1213;1084;506;1009;607;985 -5504;'061;Polynesia;1865;Industrial roundwood;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;1738;6058;4446;4430;4450;4450;4978;11232;11283;7740;7740;9409;8114;7662;3097;4978;2196;1287;1468;2942;5142;5142;2169;148;245;34;253;59;0;0;0;0 -5504;'061;Polynesia;1865;Industrial roundwood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;477;1194;768;786;798;798;860;1242;1258;662;662;755;617;593;324;408;244;191;71;158;288;288;113;38;48;1;25;57;6;0;0;0 -5504;'061;Polynesia;1866;Industrial roundwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;6000;2000;2000;2000;2000;2000;2000;2000;900;900;900;5900;5900;5900;5900;5900;6300;6100;5800;5800;5800;5800;5800;5600;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000 -5504;'061;Polynesia;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;531;3389;2156;3453;323;2982;1093;803;1219;1167;310;995;4394;8454;14338;2095;4574;5823;4677;4169;12916;9603;13083;11269;10684;393;1130;740;1167;3726;1135;1773;1228;1246 -5504;'061;Polynesia;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88;139;173;292;23;308;159;125;172;130;55;391;329;515;875;194;288;366;557;587;919;623;936;738;767;177;340;308;680;849;450;929;567;756 -5504;'061;Polynesia;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4320;4320;4336;4359;4359;4359;10613;10613;7093;7093;7224;1383;931;931;931;931;931;931;931;875;875;857;0;196;0;50;55;0;0;0;0 -5504;'061;Polynesia;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;717;717;723;729;729;729;1111;1111;524;524;531;161;137;137;137;137;137;7;7;4;4;3;0;39;0;20;14;0;0;0;0 -5504;'061;Polynesia;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;531;3389;2156;3453;323;2982;1093;803;1219;1167;310;995;4394;8454;14338;2095;4574;5823;4677;4169;12916;9603;13083;11269;10684;393;1130;740;1167;3726;1135;1773;1228;1246 -5504;'061;Polynesia;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88;139;173;292;23;308;159;125;172;130;55;391;329;515;875;194;288;366;557;587;919;623;936;738;767;177;340;308;680;849;450;929;567;756 -5504;'061;Polynesia;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4320;4320;4336;4359;4359;4359;10613;10613;7093;7093;7224;1383;931;931;931;931;931;931;931;875;875;857;0;196;0;50;55;0;0;0;0 -5504;'061;Polynesia;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;717;717;723;729;729;729;1111;1111;524;524;531;161;137;137;137;137;137;7;7;4;4;3;0;39;0;20;14;0;0;0;0 -5504;'061;Polynesia;1867;Industrial roundwood, non-coniferous;5516;Production;m3;1000;1000;1000;1000;1000;1000;1000;2000;4000;12000;39000;56000;65000;65000;61000;26000;46000;53000;61000;61000;61000;62500;62000;62000;63400;63600;63600;63600;63600;62400;62400;62400;62400;62400;62400;62400;62400;62400;62000;18600;21400;21900;15400;13900;17700;8100;8100;8100;8100;8100;8100;8100;8100;8100;8100;8100;8100;8100;8100;8100;8100;8100;8100 -5504;'061;Polynesia;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;170;674;1299;1405;1048;149;149;271;591;226;191;267;253;10414;1956;1956;301;319;364;2243;3860;3920;3160;1596;1154;480;8425;2209;2041;750;131;636;589;406 -5504;'061;Polynesia;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;118;161;189;120;42;42;113;130;84;86;134;141;182;165;165;108;262;508;480;486;1220;660;470;550;119;3728;573;533;235;56;80;40;229 -5504;'061;Polynesia;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;1738;1738;126;94;91;91;619;619;670;647;647;2185;6731;6731;2166;4047;1265;356;537;2011;4267;4267;1312;148;49;34;203;4;0;0;0;0 -5504;'061;Polynesia;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;477;477;51;63;69;69;131;131;147;138;138;224;456;456;187;271;107;54;64;151;284;284;110;38;9;1;5;43;6;0;0;0 -5504;'061;Polynesia;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;3;3;33;43;43;57;57;57;57;133;133;1160;90;90;90;95;135;81;112;70;70;110;391;192;161;290;587;204;0;570;570;2 -5504;'061;Polynesia;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;1;1;12;14;14;40;40;40;40;88;88;52;21;21;21;47;384;64;122;91;46;75;253;49;109;15;69;52;0;27;27;1 -5504;'061;Polynesia;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74;1738;1738;126;94;91;91;503;503;554;531;531;531;100;100;100;75;75;75;75;75;75;75;75;148;49;34;203;4;0;0;0;0 -5504;'061;Polynesia;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;477;477;51;63;69;69;119;119;135;126;126;126;65;65;65;37;37;37;37;37;37;37;37;38;9;1;5;43;6;0;0;0 -5504;'061;Polynesia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;170;642;1296;1402;1015;106;106;214;534;169;134;134;120;9254;1866;1866;211;224;229;2162;3748;3850;3090;1486;763;288;8264;1919;1454;546;131;66;19;404 -5504;'061;Polynesia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;115;160;188;108;28;28;73;90;44;46;46;53;130;144;144;87;215;124;416;364;1129;614;395;297;70;3619;558;464;183;56;53;13;228 -5504;'061;Polynesia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116;116;116;116;116;1654;6631;6631;2066;3972;1190;281;462;1936;4192;4192;1237;0;0;0;0;0;0;0;0;0 -5504;'061;Polynesia;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;12;12;98;391;391;122;234;70;17;27;114;247;247;73;0;0;0;0;0;0;0;0;0 -5504;'061;Polynesia;1868;Sawlogs and veneer logs;5516;Production;m3;1000;1000;1000;1000;1000;1000;1000;2000;3000;9000;36000;53000;62000;62000;58000;23000;43000;50000;58000;58000;58000;65500;61000;61000;62400;62600;62600;62600;62600;60300;60300;60300;65300;65300;65300;65300;65300;65700;65100;21400;24200;24700;18200;16700;19300;10100;10100;10100;10100;10100;10100;10100;10100;10100;10100;10100;10100;10100;10100;10100;10100;10100;10100 -5504;'061;Polynesia;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;6000;2000;2000;2000;2000;2000;2000;2000;900;900;900;5900;5900;5900;5900;5900;6300;6100;5800;5800;5800;5800;5800;5600;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000;6000 -5504;'061;Polynesia;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;1000;1000;1000;1000;1000;1000;1000;2000;3000;9000;36000;53000;62000;62000;58000;23000;43000;50000;58000;58000;58000;59500;59000;59000;60400;60600;60600;60600;60600;59400;59400;59400;59400;59400;59400;59400;59400;59400;59000;15600;18400;18900;12400;10900;13700;4100;4100;4100;4100;4100;4100;4100;4100;4100;4100;4100;4100;4100;4100;4100;4100;4100;4100 -5504;'061;Polynesia;1871;Other industrial roundwood;5516;Production;m3;;;;;;;;;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;3000;3000;3000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000 -5504;'061;Polynesia;1871;Other industrial roundwood;5616;Import quantity;m3;;;;;;;;;;;;;;;;600;1300;1300;1300;1300;1300;1200;1100;1000;1300;1300;1300;1300;1300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5504;'061;Polynesia;1871;Other industrial roundwood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;127;298;298;300;460;520;529;528;331;364;364;364;364;364;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5504;'061;Polynesia;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;;;;;;;;;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;3000;3000;3000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000;4000 -5504;'061;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5504;'061;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5504;'061;Polynesia;1630;Wood charcoal;5510;Production;t;161;163;164;166;166;168;169;171;172;174;175;179;186;184;220;187;189;188;191;191;190;192;193;193;192;195;202;211;215;223;224;222;230;231;233;238;247;246;248;251;252;253;253;254;255;255;255;256;699;712;1228;1245;1262;1281;1299;1315;1332;1348;1366;1383;1399;1416;1433 -5504;'061;Polynesia;1630;Wood charcoal;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87;79;63;33;33;76;308;60;41;200;48;32;32;32;107;146;166;217;186;164;154;159;155;137;163;166;275;218;178;226;167.97;53.97 -5504;'061;Polynesia;1630;Wood charcoal;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;34;32;16;16;27;51;23;22;65;32;49;49;49;118;126;200;211;195;141;159;189;159;162;97;99;161;272;201;294;267.25;110.25 -5504;'061;Polynesia;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;230;187;14;14;14;90;572;572;187;160;268;266;389;45;631;678;546;738;663;93;69;225;232;482;22;66 -5504;'061;Polynesia;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;10;1;1;1;19;30;30;32;23;152;151;142;23;62;71;107;109;80;32;23;82;77;98;24;16 -5504;'061;Polynesia;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;326;0;0;0;0;0;0;0;0;76;140;140;131;131;237;237;352;40;619;581;342;522;474;80;39;218;218;323;6;52 -5504;'061;Polynesia;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;0;0;0;0;0;0;0;0;11;13;13;13;13;138;138;123;16;40;26;52;60;47;23;15;77;72;83;14;8 -5504;'061;Polynesia;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;163;252;258;181;941;941;230;187;14;14;14;14;432;432;56;29;31;29;37;5;12;97;204;216;189;13;30;7;14;159;16;14 -5504;'061;Polynesia;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;9;9;7;38;38;12;10;1;1;1;8;17;17;19;10;14;13;19;7;22;45;55;49;33;9;8;5;5;15;10;8 -5504;'061;Polynesia;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;1;15.23;12.23 -5504;'061;Polynesia;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;4;22.57;16.57 -5504;'061;Polynesia;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;1;15.23;12.23 -5504;'061;Polynesia;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;4;22.57;16.57 -5504;'061;Polynesia;1872;Sawnwood;5516;Production;m3;100;800;800;2300;2300;2300;700;900;1600;3200;17000;30000;32000;26000;31000;14000;18000;20000;21000;21000;21000;23650;22100;22100;22490;22573;22573;22573;22088;22489;22489;22489;22489;22489;22489;22489;22489;23009;23009;7209;8209;8409;6109;5609;6679;3179;3179;3179;3179;3179;3179;3179;3179;3179;3179;3179;3379;3179;3179;3179;3070;3070;3070 -5504;'061;Polynesia;1872;Sawnwood;5616;Import quantity;m3;14900;16200;16700;17700;16400;35500;36300;34300;37500;36700;25500;29900;29000;23900;20400;15700;18700;22800;33000;26000;37700;60300;61100;72900;60800;98800;45874;38955;38753;40325;40325;75489;48921;53880;50755;43214;58165;62667;69928;56677;61421;63672;70746;96841;72499;92658;83772;68028;51241;81640;92535;80783;70946;76688;56721;74314;48295;80150;74125;78598;141910;83369;67296 -5504;'061;Polynesia;1872;Sawnwood;5622;Import value;1000 USD;935;952;970;1044;990;2054;2123;2447;3026;2864;2323;3211;3332;2763;2374;2897;3803;4640;6826;5726;5845;12708;13199;11000;10152;22662;7390;6574;9509;9379;9379;15567;11897;14210;13756;11789;14677;14682;15955;18786;18433;18603;23060;27012;23423;26537;28736;26379;18068;26207;20395;21445;22052;23512;16957;22123;18126;26559;25771;26466;46648;36676;28414 -5504;'061;Polynesia;1872;Sawnwood;5916;Export quantity;m3;;;;;;;;100;100;100;5400;8000;9500;8000;2900;1700;3600;4300;3800;3000;2200;6200;2400;3000;3000;3000;151;154;0;32;32;92;177;141;243;686;227;227;1714;1540;1540;1540;5673;256;256;196;190;227;123;155;280;142;142;142;285;74;566;566;171;148;38;32;12 -5504;'061;Polynesia;1872;Sawnwood;5922;Export value;1000 USD;;;;;;;;4;9;7;264;620;610;614;187;139;266;254;294;309;288;1270;540;1478;1478;1478;51;54;0;11;11;34;54;53;99;346;168;168;677;557;557;557;573;60;60;46;47;71;52;28;68;25;25;25;46;3;378;115;80;101;6;22;2 -5504;'061;Polynesia;1632;Sawnwood, coniferous;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;2000;650;650;650;650;650;650;448;609;609;609;609;609;609;609;609;609;609;609;609;609;609;609;609;609;609;609;609;609;609;609;609;609;609;609;709;609;609;609;0;0;0 -5504;'061;Polynesia;1632;Sawnwood, coniferous;5616;Import quantity;m3;14900;16200;16700;17700;16400;35500;36300;34300;37500;36700;25500;29900;29000;23900;20400;15700;18700;22800;33000;26000;37700;48000;53600;64200;52100;90100;37174;35955;33453;35525;35525;70925;47968;49981;49482;42071;57157;60893;67203;55580;60374;62368;67087;86735;62393;85328;80232;63796;49089;73049;89810;74720;60640;66757;54518;68645;45937;75441;69146;77487;136630;81299;66079 -5504;'061;Polynesia;1632;Sawnwood, coniferous;5622;Import value;1000 USD;935;952;970;1044;990;2054;2123;2447;3026;2864;2323;3211;3332;2763;2374;2897;3803;4640;6826;5726;5845;10094;11622;9396;8548;21058;5786;5452;7907;7826;7826;13917;11373;12683;13064;11193;14147;13937;15374;18142;17805;17946;20385;23869;20280;22203;25234;21648;15983;21751;17815;16826;16834;19420;15558;19932;16062;24744;22893;25709;45255;34578;27381 -5504;'061;Polynesia;1632;Sawnwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1491;1497;1497;1497;1497;130;130;130;130;180;101;99;99;106;106;106;39;74;310;479;84;42;37;26;12 -5504;'061;Polynesia;1632;Sawnwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;515;516;516;516;516;22;22;22;22;46;34;3;3;4;4;4;35;3;52;69;32;60;6;21;2 -5504;'061;Polynesia;1633;Sawnwood, non-coniferous;5516;Production;m3;100;800;800;2300;2300;2300;700;900;1600;3200;17000;30000;32000;26000;31000;14000;18000;20000;21000;21000;21000;21650;21450;21450;21840;21923;21923;21923;21640;21880;21880;21880;21880;21880;21880;21880;21880;22400;22400;6600;7600;7800;5500;5000;6070;2570;2570;2570;2570;2570;2570;2570;2570;2570;2570;2570;2670;2570;2570;2570;3070;3070;3070 -5504;'061;Polynesia;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;12300;7500;8700;8700;8700;8700;3000;5300;4800;4800;4564;953;3899;1273;1143;1008;1774;2725;1097;1047;1304;3659;10106;10106;7330;3540;4232;2152;8591;2725;6063;10306;9931;2203;5669;2358;4709;4979;1111;5280;2070;1217 -5504;'061;Polynesia;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;2614;1577;1604;1604;1604;1604;1122;1602;1553;1553;1650;524;1527;692;596;530;745;581;644;628;657;2675;3143;3143;4334;3502;4731;2085;4456;2580;4619;5218;4092;1399;2191;2064;1815;2878;757;1393;2098;1033 -5504;'061;Polynesia;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;;;;;;;;100;100;100;5400;8000;9500;8000;2900;1700;3600;4300;3800;3000;2200;6200;2400;3000;3000;3000;151;154;0;32;32;92;177;141;243;686;227;227;223;43;43;43;4176;126;126;66;60;47;22;56;181;36;36;36;246;0;256;87;87;106;1;6;0 -5504;'061;Polynesia;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;4;9;7;264;620;610;614;187;139;266;254;294;309;288;1270;540;1478;1478;1478;51;54;0;11;11;34;54;53;99;346;168;168;162;41;41;41;57;38;38;24;25;25;18;25;65;21;21;21;11;0;326;46;48;41;0;1;0 -5504;'061;Polynesia;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;100;100;100;100;100;100;100;100 -5504;'061;Polynesia;1634;Veneer sheets;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1700;177;92;178;169;197;394;58;238;316;356;157;332;332;511;345;327;233;294;167;309;153;290;264;508;295;274;339;208;139;120;358 -5504;'061;Polynesia;1634;Veneer sheets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;391;124;79;72;108;146;199;38;129;185;202;242;262;262;255;353;352;418;699;484;757;295;496;556;477;143;329;433;168;1398;301;270 -5504;'061;Polynesia;1634;Veneer sheets;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;24;24;24;29;29;5;5;5;5;5;0;2;3;1;0;0;0;0;162 -5504;'061;Polynesia;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;19;22;22;3;3;3;3;3;0;5;23;2;0;0;0;0;134 -5504;'061;Polynesia;1873;Wood-based panels;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -5504;'061;Polynesia;1873;Wood-based panels;5616;Import quantity;m3;1594;1919;1950;2100;3700;3700;3700;5600;5300;5600;6200;6100;6600;6600;6600;6400;7000;7000;11100;7700;7200;9200;14300;17400;10609;5864;11903;4157;10551;12088;12088;17302;10335;13367;10575;11533;13075;14470;68454;13300;19269;9611;16253;27494;27494;15771;10483;11498;9694;13962;13576;13364;17202;16675;17824;14913;17310;19741;15426;19127;23004;16946;11690 -5504;'061;Polynesia;1873;Wood-based panels;5622;Import value;1000 USD;303;372;377;401;701;699;698;1105;1106;1151;1279;1523;1822;1822;1822;2485;3269;3269;5242;3572;3384;5118;7091;8387;3521;2357;4140;1958;3704;4314;4314;6686;4037;6116;4597;5258;4798;5574;6914;4745;5539;4919;10490;7097;7097;8577;8719;10378;7457;9861;8818;9396;9797;10112;8719;8589;9178;11100;9341;10304;10979;11596;8473 -5504;'061;Polynesia;1873;Wood-based panels;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;72;72;72;72;72;72;72;72;72;76;76;76;4;5;8;8;8;3;65;2;126;59;24;591;24;24 -5504;'061;Polynesia;1873;Wood-based panels;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;28;28;28;28;28;28;28;28;28;28;28;0;9;11;15;11;3;28;2;44;47;19;104;18;18 -5504;'061;Polynesia;1640;Plywood and LVL;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0 -5504;'061;Polynesia;1640;Plywood and LVL;5616;Import quantity;m3;694;819;850;1000;2200;2100;2100;3800;3700;3500;3700;4600;5100;5100;5100;4500;5300;5300;9400;6000;5500;7400;9200;12100;3524;3490;6478;3175;7605;7987;7987;11220;7015;9455;8197;7047;10450;9633;12057;8883;10317;2497;9667;7628;7628;10795;6492;6291;4942;8444;9092;10174;13128;12957;13333;11232;11801;13293;10631;11537;13619;10137;7236 -5504;'061;Polynesia;1640;Plywood and LVL;5622;Import value;1000 USD;138;167;172;196;489;487;486;823;883;853;916;1239;1469;1469;1469;1885;2627;2627;4600;2930;2742;4387;5265;6599;1558;1467;2536;1491;2633;2898;2898;4186;2487;4153;3606;3361;3696;3639;4647;3233;3611;3292;6004;2776;2776;6024;5782;5860;3738;5466;5244;6377;6858;7094;5602;6245;5644;6672;6143;5797;6616;6123;4614 -5504;'061;Polynesia;1640;Plywood and LVL;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;72;72;72;72;72;72;72;72;72;76;76;76;4;5;5;5;5;0;62;2;126;39;0;567;0;0 -5504;'061;Polynesia;1640;Plywood and LVL;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;28;28;28;28;28;28;28;28;28;28;28;0;9;8;12;8;0;25;2;44;31;1;86;0;0 -5504;'061;Polynesia;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61 -5504;'061;Polynesia;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65 -5504;'061;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;1494;877;566;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5504;'061;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;610;477;330;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5504;'061;Polynesia;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1038;2086;2117;2398;1841;1616;2908;1901;4096;12487;12487;978;1133;2710;2650;2636;2419;1871;934;881;768;747;2143;2143;2420;1746;3848;2170;1141 -5504;'061;Polynesia;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;512;903;895;1007;829;553;1039;963;2510;2197;2197;544;774;2120;1967;1963;1655;1349;516;512;439;337;1638;1638;1599;1428;1624;2138;2033 -5504;'061;Polynesia;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;0;0;20;24;24;24;24 -5504;'061;Polynesia;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;0;0;16;18;18;18;18 -5504;'061;Polynesia;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7564;253;253;82;94;240;240;883;560;379;168;199;224;59;218;390;59;320;1202;452;182;866;646;992;49 -5504;'061;Polynesia;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76;59;59;29;150;39;39;549;599;487;151;227;238;78;257;233;56;398;456;588;193;742;575;996;57 -5504;'061;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;4588;2443;3346;1340;2400;508;2439;46992;2548;5791;5131;2396;7139;7139;3115;2298;2118;1934;2683;1841;1260;2922;2447;3664;2614;2164;3853;2193;4978;4891;3647;3264 -5504;'061;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;1890;1073;1633;479;994;207;928;1362;900;830;635;1826;2085;2085;1460;1564;1911;1601;2205;1681;1592;2166;2273;2622;1609;1440;2202;1406;2337;2164;2339;1769 -5504;'061;Polynesia;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;105;1941;31447;1843;1155;732;1514;3263;3263;2199;1630;1329;850;420;294;370;807;322;557;300;274;1112;657;3695;2441;1613;1187 -5504;'061;Polynesia;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;508;47;781;809;698;653;481;1384;1514;1514;1213;950;1004;533;278;203;344;442;279;388;196;160;464;411;1473;932;761;621 -5504;'061;Polynesia;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;250;248;236;125;13554;168;4249;4249;554;1667;1667;706;506;548;911;1897;1501;767;1982;1714;2945;2196;1748;1883;1127;942;2134;1353;1388 -5504;'061;Polynesia;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111;116;104;57;444;88;108;108;127;285;285;186;408;426;905;1639;1445;1113;1624;1595;2102;1311;1149;1266;882;695;1142;1281;843 -5504;'061;Polynesia;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1190;478;1052;1090;1152;167;373;1991;537;387;150;328;2209;2209;210;162;241;173;366;46;123;133;411;162;118;142;858;409;341;316;681;689 -5504;'061;Polynesia;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;618;284;642;368;370;56;90;109;114;69;46;315;286;286;61;206;481;163;288;33;135;100;399;132;102;131;472;113;169;90;297;305 -5504;'061;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;3398;1965;2294;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5504;'061;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;1272;789;991;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5504;'061;Polynesia;1879;Total fibre furnish;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;4000;4500;2000;2500;2500;2500;2500;2500;2500;2500 -5504;'061;Polynesia;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;319;281;356;334;337;583;569;419;419;419;612;891;891;895;944;910;910;899;1013;592;636;598;641;641;902;902;916;707;718;444;462 -5504;'061;Polynesia;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;190;186;206;201;204;200;195;205;205;205;264;293;293;312;340;366;366;331;397;328;326;282;500;495;530;530;529;448;444;396;403 -5504;'061;Polynesia;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;249;249;165;165;1295;1295;328;2043;1004;1564;2435;2177;2320;3657;3601;4634;2352;2982;5539;5187;4325;5733;4803;4912 -5504;'061;Polynesia;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;19;19;10;11;128;128;36;95;53;78;115;99;101;177;166;167;383;562;512;215;187;247;199;229 -5504;'061;Polynesia;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;259;259;259;259;262;262;262;269;269;269;547;559;559;560;609;575;575;570;570;570;583;568;610;610;610;610;625;416;415;415;417 -5504;'061;Polynesia;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;183;183;183;183;186;186;184;193;193;193;251;256;256;276;304;330;330;295;295;295;314;276;480;475;475;475;471;390;387;387;392 -5504;'061;Polynesia;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 -5504;'061;Polynesia;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 -5504;'061;Polynesia;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;259;259;259;259;262;262;262;268;268;268;546;559;559;559;601;567;569;569;569;569;569;554;596;596;596;596;624;414;414;414;416 -5504;'061;Polynesia;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;183;183;183;183;186;186;184;192;192;192;250;256;256;256;264;290;294;294;294;294;294;256;460;455;455;455;470;388;385;385;390 -5504;'061;Polynesia;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 -5504;'061;Polynesia;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 -5504;'061;Polynesia;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29;29;29;29;29 -5504;'061;Polynesia;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;14;14;14;14 -5504;'061;Polynesia;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;2;2;2;2;2;2;2;44;10;10;10;10;10;10;0;0;0;;;;;;; -5504;'061;Polynesia;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;1;1;1;1;1;1;1;1;9;35;35;35;35;35;35;0;4;0;;;;;;; -5504;'061;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;;;;;;; -5504;'061;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;;;;;;; -5504;'061;Polynesia;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;259;259;259;259;259;259;259;266;266;266;544;554;554;554;554;554;554;554;554;554;554;551;593;593;593;593;593;383;383;383;385 -5504;'061;Polynesia;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;183;183;183;183;183;183;183;191;191;191;249;253;253;253;253;253;253;253;253;253;253;251;450;450;450;450;450;370;367;367;372 -5504;'061;Polynesia;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;0 -5504;'061;Polynesia;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;0 -5504;'061;Polynesia;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;259;259;259;259;259;259;259;266;266;266;543;551;551;551;551;551;551;551;551;551;551;551;593;593;593;593;593;383;383;383;383 -5504;'061;Polynesia;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;183;183;183;183;183;183;183;191;191;191;248;251;251;251;251;251;251;251;251;251;251;251;450;450;450;450;450;370;367;367;367 -5504;'061;Polynesia;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;0 -5504;'061;Polynesia;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;0 -5504;'061;Polynesia;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;2 -5504;'061;Polynesia;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;5 -5504;'061;Polynesia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;1;3;3;3;3;3;3;3;3;3;3;0;0;0;;;;;;; -5504;'061;Polynesia;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;1;2;2;2;2;2;2;2;2;2;2;0;0;0;;;;;;; -5504;'061;Polynesia;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;0;0;0;;;;;;; -5504;'061;Polynesia;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;0;0;0;;;;;;; -5504;'061;Polynesia;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;3;3;3;3;3;3;3;3;3;3;2;2;2;2;2 -5504;'061;Polynesia;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;5;5;5;5;5;5;5;5;5;5;4;4;4;4;4 -5504;'061;Polynesia;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 -5504;'061;Polynesia;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 -5504;'061;Polynesia;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;2;9;9;9;4;4;4;17;17;17;17;17;17;3;4;3;3;3 -5504;'061;Polynesia;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;21;41;41;41;6;6;6;25;25;25;25;25;25;5;6;6;6;6 -5504;'061;Polynesia;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;5;5;5;5;5;5;1;1;1;1;1 -5504;'061;Polynesia;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;6;6;6;6;3;3;3;3;3 -5504;'061;Polynesia;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;4000;4500;2000;2500;2500;2500;2500;2500;2500;2500 -5504;'061;Polynesia;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55;60;22;97;75;75;321;307;150;150;150;65;332;332;335;335;335;335;329;443;22;53;30;31;31;292;292;291;291;303;29;45 -5504;'061;Polynesia;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;7;3;23;18;18;14;11;12;12;12;13;37;37;36;36;36;36;36;102;33;12;6;20;20;55;55;58;58;57;9;11 -5504;'061;Polynesia;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;249;249;165;165;1295;1295;328;2043;1004;1564;2435;2177;2320;3657;3601;4634;2352;2982;5539;5187;4325;5733;4803;4912 -5504;'061;Polynesia;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;19;19;10;11;128;128;36;95;53;78;115;99;101;177;166;167;383;562;512;215;187;247;199;229 -5504;'061;Polynesia;1876;Paper and paperboard;5610;Import quantity;t;200;300;200;200;200;200;200;400;400;1200;1200;1000;1100;1200;1500;1800;1900;1900;1900;1900;1900;2400;4200;3800;2108;1493;3541;2641;3200;3634;3634;2081;5807;5056;3287;2278;3564;4120;5086;5273;7704;3275;12474;19221;19221;8435;7979;9065;10926;8868;10354;8582;7540;8496;6272;8363;7134;7171;7963;6983;7149;5268.37;2098.37 -5504;'061;Polynesia;1876;Paper and paperboard;5622;Import value;1000 USD;70;109;94;94;94;94;94;120;120;366;445;383;494;679;1079;2301;2754;2754;2754;2754;2754;3122;6148;5684;1958;1283;3003;2455;2991;3338;3338;2946;5615;5185;3841;2719;4759;5395;5852;6072;6771;4187;12071;14741;14741;11845;10692;14274;13537;12443;13864;10574;9419;11748;8535;9749;8825;9066;11858;10786;11713;10837.68;4442.68 -5504;'061;Polynesia;1876;Paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;20;21;21;21;21;21;18;29;29;30;67;67;66;66;99;99;99;226;226;291;296;345;406;885;776;1030.78;1290.28 -5504;'061;Polynesia;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;24;25;25;25;25;25;14;29;29;31;42;42;41;40;227;227;313;428;428;496;488;406;494;831;748;1010.24;1394.85 -5504;'061;Polynesia;2042;Graphic papers;5610;Import quantity;t;100;100;;;;;;200;200;600;600;400;500;300;300;100;100;100;100;100;100;1100;2100;2300;100;100;126;1278;1574;1625;1625;903;3463;3544;2307;1261;1792;3034;3288;3426;2754;2174;9361;13031;13031;6051;5726;6408;5327;5477;6080;4986;4938;6100;4189;5120;4746;4321;5414;4852;4454;2854;1469 -5504;'061;Polynesia;2042;Graphic papers;5622;Import value;1000 USD;20;15;;;;;;26;26;93;115;100;168;79;79;70;89;89;89;89;89;1207;3509;3610;248;135;213;1153;1323;1083;1083;1505;2996;3250;2162;1268;2118;3386;3459;3370;3330;2102;7784;8930;8930;7164;6632;8451;7007;6589;7128;6122;5974;6992;5226;5095;4805;4668;6455;5495;5471;4406;2583 -5504;'061;Polynesia;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;20;20;20;20;20;20;3;7;7;7;44;44;44;44;46;46;46;46;46;46;46;77;38;82;18;62.51;95.01 -5504;'061;Polynesia;2042;Graphic papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;24;24;24;24;24;24;6;9;9;9;20;20;20;20;23;23;23;23;23;23;23;51;35;75;27;82.23;79.13 -5504;'061;Polynesia;1671;Newsprint;5610;Import quantity;t;100;100;;;;;;200;200;600;600;400;500;300;300;100;100;100;100;100;100;1000;1000;1200;0;0;0;1121;1436;1508;1508;;2116;2037;1770;869;325;709;638;623;578;578;2994;4880;4880;2410;1996;2687;2195;2650;2432;1882;1614;1314;1572;534;552;776;1182;756;587;243;259 -5504;'061;Polynesia;1671;Newsprint;5622;Import value;1000 USD;20;15;;;;;;26;26;93;115;100;168;79;79;70;89;89;89;89;89;934;774;875;0;0;0;895;1048;884;884;;1068;1047;1170;601;205;413;354;321;299;299;2218;2487;2487;1759;1331;2272;2001;2309;2020;1675;1374;1110;1479;477;361;501;953;573;605;293;331 -5504;'061;Polynesia;1671;Newsprint;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;27;0;48;82 -5504;'061;Polynesia;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;35;0;59;56 -5504;'061;Polynesia;1674;Printing and writing papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;100;1100;1100;100;100;126;157;138;117;117;903;1347;1507;537;392;1467;2325;2650;2803;2176;1596;6367;8151;8151;3641;3730;3721;3132;2827;3648;3104;3324;4786;2617;4586;4194;3545;4232;4096;3867;2611;1210 -5504;'061;Polynesia;1674;Printing and writing papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;273;2735;2735;248;135;213;258;275;199;199;1505;1928;2203;992;667;1913;2973;3105;3049;3031;1803;5566;6443;6443;5405;5301;6179;5006;4280;5108;4447;4600;5882;3747;4618;4444;4167;5502;4922;4866;4113;2252 -5504;'061;Polynesia;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;20;20;20;20;20;20;1;5;5;5;42;42;42;42;44;44;44;44;44;44;44;75;36;55;18;14.51;13.01 -5504;'061;Polynesia;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;24;24;24;24;24;24;5;8;8;8;19;19;19;19;22;22;22;22;22;22;22;50;34;40;27;23.23;23.13 -5504;'061;Polynesia;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;183;212;80;113;154;126;191;191;59;125;82;39;25;20;242;76;657;121;348;268;256;251;142;171;183;41 -5504;'061;Polynesia;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;242;254;110;118;184;151;155;155;97;177;123;116;107;77;402;183;464;340;551;412;364;379;324;386;323;238 -5504;'061;Polynesia;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;1;1;1;38;38;38;38;38;38;38;38;38;38;38;38;0;38;2;1.5;0 -5504;'061;Polynesia;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;1;1;1;12;12;12;12;12;12;12;12;12;12;12;12;1;12;0;0.1;0 -5504;'061;Polynesia;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1262;1455;1910;1558;764;1726;3408;3408;1489;1843;1575;1341;1047;1596;917;1292;1950;1167;3145;2828;2379;2532;2640;2478;1438;915 -5504;'061;Polynesia;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1666;1745;2090;2342;1036;2949;2695;2695;2242;2656;2733;2207;1764;2305;1478;1638;2667;1644;3037;2948;2548;3192;3019;2841;2149;1424 -5504;'061;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;4;4;4;4;4;4;4;22;22;2;2;0;0 -5504;'061;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;4;4;4;4;4;4;4;13;13;3;3;4;4 -5504;'061;Polynesia;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;880;983;813;505;678;4515;4552;4552;2093;1762;2064;1752;1755;2032;1945;1956;2179;1329;1093;1098;910;1449;1314;1218;990;254 -5504;'061;Polynesia;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1065;1106;849;571;583;2466;3593;3593;3066;2468;3323;2683;2409;2726;2567;2779;2751;1763;1030;1084;1255;1931;1579;1639;1641;590 -5504;'061;Polynesia;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;2;2;2;2;2;2;2;2;2;2;2;15;14;15;14;13.01;13.01 -5504;'061;Polynesia;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;6;6;6;6;6;6;6;6;6;6;6;6;6;25;20;25;24;19.13;19.13 -5504;'061;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;1300;2100;1500;2008;1393;3415;1363;1626;2009;2009;1178;2344;1512;980;1017;1772;1086;1798;1847;4950;1101;3113;6190;6190;2384;2253;2657;5599;3391;4274;3596;2602;2396;2083;3243;2388;2850;2549;2131;2695;2414.37;629.37 -5504;'061;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;1915;2639;2074;1710;1148;2790;1302;1668;2255;2255;1441;2619;1935;1679;1451;2641;2009;2393;2702;3441;2085;4287;5811;5811;4681;4060;5823;6530;5854;6736;4452;3445;4756;3309;4654;4020;4398;5403;5291;6242;6431.68;1859.68 -5504;'061;Polynesia;1675;Other paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;1;1;1;1;1;15;22;22;23;23;23;22;22;53;53;53;180;180;245;250;268;368;803;758;968.27;1195.28 -5504;'061;Polynesia;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;1;1;1;1;1;8;20;20;22;22;22;21;20;204;204;290;405;405;473;465;355;459;756;721;928;1315.71 -5504;'061;Polynesia;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;723;705;1435;541;1248;1598;1598;1586;1230;1482;1614;1423;1439;1639;1511;1519;1471;1688;1463;1783;1885;1624;1859;1701;229 -5504;'061;Polynesia;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;928;955;1438;540;1627;1755;1755;2365;1668;2697;2370;2277;2071;2573;2298;2267;2286;2186;1846;2214;2711;2895;3162;3259;573 -5504;'061;Polynesia;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;9;9;9;9;9;9;15;15;15;15;15;15;15;15;64;66;74;68.28;68.28 -5504;'061;Polynesia;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;10;10;10;16;16;16;16;16;16;16;16;67;74;73;67;68.71 -5504;'061;Polynesia;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;348;626;1098;350;608;981;981;263;304;525;3290;984;2089;1750;898;412;449;1045;624;662;584;418;733;629.37;363.37 -5504;'061;Polynesia;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;485;539;634;704;686;607;607;614;745;931;2075;1291;2464;1598;873;823;683;992;848;989;1401;1012;1493;1662.68;951.68 -5504;'061;Polynesia;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;14;9;9;9;9;9;9;9;34;34;34;154;154;158;163;176;227;660;682;898;1125 -5504;'061;Polynesia;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;7;6;6;6;6;6;6;5;183;183;269;360;360;364;356;220;273;563;645;857;1244 -5504;'061;Polynesia;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;28;28;40;209;56;56;27;67;65;2231;245;264;329;337;84;84;241;95;135;92;3;126;17;5 -5504;'061;Polynesia;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;36;36;22;21;40;40;46;73;96;916;202;183;163;224;147;151;249;199;221;201;15;257;350;20 -5504;'061;Polynesia;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;12;12;12;12;16;15;16;16;157;157;157;157 -5504;'061;Polynesia;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;7;7;9;9;77;86;86;86 -5504;'061;Polynesia;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;171;300;138;34;92;124;124;94;43;118;802;637;1556;1271;462;165;270;647;403;159;203;156;219;166;184 -5504;'061;Polynesia;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;264;273;94;32;89;71;71;182;149;247;663;652;1215;915;329;233;305;452;465;314;621;354;462;415;498 -5504;'061;Polynesia;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;1;1;1;1;1;1;1;1;1;1;1;121;121;121;127;127;178;178;200;416;643 -5504;'061;Polynesia;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;1;1;1;1;1;1;1;0;0;0;0;91;91;91;83;83;133;139;185;397;787 -5504;'061;Polynesia;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;161;284;918;262;224;599;599;135;185;229;215;93;228;115;80;149;75;152;70;260;235;210;310;336;77 -5504;'061;Polynesia;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;201;224;498;644;423;371;371;365;496;480;435;411;936;410;296;419;178;271;143;380;522;583;706;709;320 -5504;'061;Polynesia;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;7;7;7;7;7;7;7;20;20;20;20;20;20;20;32;32;324;324;324;324 -5504;'061;Polynesia;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;4;4;4;4;4;4;4;179;179;179;179;179;179;179;41;44;260;287;287;284 -5504;'061;Polynesia;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;14;14;14;83;202;202;7;9;113;42;9;41;35;19;14;20;5;56;108;54;49;78;110.37;97.37 -5504;'061;Polynesia;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;6;6;6;153;125;125;21;27;108;61;26;130;110;24;24;49;20;41;74;57;60;68;188.68;113.68 -5504;'061;Polynesia;1622;Other papers mainly for packaging;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 -5504;'061;Polynesia;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;1;1;1;1;87;87;87;87;87;87;87;87;87;87;87 -5504;'061;Polynesia;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;100;100;100;100;800;800;800;800;800;800;109;89;50;50;100;100;1079;727;516;2417;210;1257;3611;3611;535;719;650;695;984;746;207;193;465;163;510;301;405;80;89;103;84;37 -5504;'061;Polynesia;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;72;96;96;96;477;477;477;477;477;477;118;138;105;98;137;137;2004;980;1208;1369;841;1974;3449;3449;1702;1647;2195;2085;2286;2201;281;274;1666;340;1476;1326;1195;1291;1384;1587;1510;335 -5504;'061;Polynesia;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;4;4;5;5;5;4;4;4;4;4;11;11;72;72;77;77;77;2;2;2 -5504;'061;Polynesia;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;1;4;4;6;6;6;5;5;5;5;5;29;29;93;93;119;119;119;3;4;3 -5504;'061;Polynesia;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24472;24291;29354;24547;27824;31284;26721 -5504;'061;Polynesia;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;498;938;658;480;837;1461;1115 -5504;'061;Polynesia;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3658;3978;5004;2959;4940;4497;2191 -5504;'061;Polynesia;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;128;128;139;128;128;129;128 -5504;'061;Polynesia;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2290;2700;2476;842;3139;2208;1075 -5504;'061;Polynesia;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;128;128;139;128;128;128;128 -5504;'061;Polynesia;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1368;1278;2528;2117;1801;2289;1116 -5504;'061;Polynesia;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;1;0 -5504;'061;Polynesia;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;372;251;229;295;348;365;278 -5504;'061;Polynesia;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;1;11;2;1;1;1 -5504;'061;Polynesia;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;517;878;551;661;838;596 -5504;'061;Polynesia;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;226;201;138;161;121;225;181 -5504;'061;Polynesia;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4526;3745;5191;5069;5022;5178;6094 -5504;'061;Polynesia;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57;61;60;66;383;388;85 -5504;'061;Polynesia;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;221 -5504;'061;Polynesia;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27;921 -5504;'061;Polynesia;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11946;14702;14507;12608;14514;15980;15460 -5504;'061;Polynesia;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;545;168;37;166;672;696 -5504;'061;Polynesia;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1608;310;1730;1636;302;1293;703 -5504;'061;Polynesia;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1962;788;1815;1429;2037;3133;1399 -5504;'061;Polynesia;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;2;142;86;38;46;24 -5504;'061;Polynesia;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26956;29912;29356;33195;33134;36833;31523 -5504;'061;Polynesia;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;130;181;203;129;265;257;150 -5504;'061;Polynesia;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104;123;100;62;33;42;12 -5504;'061;Polynesia;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;782;1210;898;1142;1052;1080;1099 -5504;'061;Polynesia;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;6;0;1;3;3;3 -5504;'061;Polynesia;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6199;6606;7979;8341;8886;9372;8082 -5504;'061;Polynesia;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;19;35;37;127;72;68 -5504;'061;Polynesia;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11717;13417;11893;12657;13676;15652;12548 -5504;'061;Polynesia;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22;18;40;41;38;131;16 -5504;'061;Polynesia;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8154;8556;8486;10993;9487;10687;9782 -5504;'061;Polynesia;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;138;128;50;97;51;63 -5707;'097;European Union (27);1861;Roundwood;5516;Production;m3;260371000;260411000;252418000;259334600;258848900;266186700;270295200;262787700;267278000;283962700;284390016;270936716;283098016;285259716;260073700;263256008;260418000;265199000;276067000;281733000;278328016;278674008;282783000;288523708;288386000;289237400;289298308;315388818;329504656;355049600;290956300;305252599;320342899;347751898;365398520;356663159;375261907;378632461;388417284;420149734;399323267;404731846;419523373;428551326;460364531;434590765;468675274;432919051;398029016;446610051;445559008;441668993;448469865;453458474;461155499;467899619;474683788;500441139;501528865;491114386;516092289;511846817;481342848 -5707;'097;European Union (27);1862;Roundwood, coniferous;5516;Production;m3;162623000;159289000;151114000;158870100;156991300;160390400;163915200;159511200;167237200;178852200;182876816;173548016;185747016;188126016;168698000;174065008;170696000;174378000;187140000;187338000;181985016;183264008;185606000;188813008;187944000;189746000;191098008;196708208;206691546;234763799;172226700;180160199;197940599;221922199;236976030;230131519;243738308;245280085;249946941;278300560;260101272;268535365;277162165;283081572;321207033;292027501;330107453;290662505;264966495;294656053;294196269;282241487;287651262;297001875;302813106;307066038;313659996;335968653;340142915;336557373;352637806;346011908;318415692 -5707;'097;European Union (27);1863;Roundwood, non-coniferous;5516;Production;m3;97748000;101122000;101304000;100464500;101857600;105796300;106380000;103276500;100040800;105110500;101513200;97388700;97351000;97133700;91375700;89191000;89722000;90821000;88927000;94395000;96343000;95410000;97177000;99710700;100442000;99491400;98200300;118680610;122813110;120285801;118729600;125092400;122402300;125829699;128422490;126531640;131523599;133352376;138470343;141849174;139221995;136196481;142361208;145469754;139157498;142563264;138567821;142256546;133062521;151953998;151362739;159427506;160818603;156456599;158342393;160833581;161023792;164472486;161385950;154557013;163454483;165834909;162927156 -5707;'097;European Union (27);1864;Wood fuel;5516;Production;m3;70583000;68352000;67657000;63103000;60240500;65383000;63252000;60714000;52735000;53396000;50213000;48677000;44235000;42576000;41045000;41205000;39048000;38395000;38796000;41616500;43895000;44126000;44592000;44923700;47096500;48370400;45638300;63446810;63678640;67625400;70049800;77294500;77627200;76683000;76985883;83180614;86063671;83150800;84088365;85072333;88257992;85050644;91229139;93292460;91256114;97179731;91932122;99764679;100510527;115590433;109100652;116437674;120469209;113542191;118036351;117659546;117774132;120271764;118551243;119563996;126427742;130611715;127970953 -5707;'097;European Union (27);1627;Wood fuel, coniferous;5516;Production;m3;14283000;13182000;13388000;14191000;12248000;14438000;13596000;13611000;12901000;11928000;11682000;12057000;11113000;10760000;10779000;10650000;10115000;10024000;10953000;12085500;13029000;13166000;13317000;13455000;14066000;15220000;14472000;12787200;12544030;14109600;12454900;14645900;16100500;16025800;16947963;20005217;19472521;18714676;19726964;20349211;22765726;22576709;24871961;25514640;26982685;29413280;28620298;30501954;30659394;34138281;32697885;34492303;35348504;33624086;36802408;34399837;34660392;37578734;37435625;38818376;40488341;42821225;39819797 -5707;'097;European Union (27);1628;Wood fuel, non-coniferous;5516;Production;m3;56300000;55170000;54269000;48912000;47992500;50945000;49656000;47103000;39834000;41468000;38531000;36620000;33122000;31816000;30266000;30555000;28933000;28371000;27843000;29531000;30866000;30960000;31275000;31468700;33030500;33150400;31166300;50659610;51134610;53515800;57594900;62648600;61526700;60657200;60037920;63175397;66591150;64436124;64361401;64723122;65492266;62473935;66357178;67777820;64273429;67766451;63311824;69262725;69851133;81452152;76402767;81945371;85120705;79918105;81233943;83259709;83113740;82693030;81115618;80745620;85939401;87790490;88151156 -5707;'097;European Union (27);1865;Industrial roundwood;5516;Production;m3;189788000;192059000;184761000;196231600;198608400;200803700;207043200;202073700;214543000;230566700;234177016;222259716;238863016;242683716;219028700;222051008;221370000;226804000;237271000;240116500;234433016;234548008;238191000;243600008;241289500;240867000;243660008;251942008;265826016;287424200;220906500;227958099;242715699;271068898;288412637;273482545;289198236;295481661;304328919;335077401;311065275;319681202;328294234;335258866;369108417;337411034;376743152;333154372;297518489;331019618;336458356;325231319;328000656;339916283;343119148;350240073;356909656;380169375;382977622;371550390;389664547;381235102;353371895 -5707;'097;European Union (27);1866;Industrial roundwood, coniferous;5516;Production;m3;148340000;146107000;137726000;144679100;144743300;145952400;150319200;145900200;154336200;166924200;171194816;161491016;174634016;177366016;157919000;163415008;160581000;164354000;176187000;175252500;168956016;170098008;172289000;175358008;173878000;174526000;176626008;183921008;194147516;220654199;159771800;165514299;181840099;205896399;220028067;210126302;224265787;226565409;230219977;257951349;237335546;245958656;252290204;257566932;294224348;262614221;301487155;260160551;234307101;260517772;261498384;247749184;252302758;263377789;266010698;272666201;278999604;298389919;302707290;297738997;312149465;303190683;278595895 -5707;'097;European Union (27);1867;Industrial roundwood, non-coniferous;5516;Production;m3;41448000;45952000;47035000;51552500;53865100;54851300;56724000;56173500;60206800;63642500;62982200;60768700;64229000;65317700;61109700;58636000;60789000;62450000;61084000;64864000;65477000;64450000;65902000;68242000;67411500;66341000;67034000;68021000;71678500;66770001;61134700;62443800;60875600;65172499;68384570;63356243;64932449;68916252;74108942;77126052;73729729;73722546;76004030;77691934;74884069;74796813;75255997;72993821;63211388;70501846;74959972;77482135;75697898;76538494;77108450;77573872;77910052;81779456;80270332;73811393;77515082;78044419;74776000 -5707;'097;European Union (27);1868;Sawlogs and veneer logs;5516;Production;m3;103378000;103438000;99477000;108571100;110584300;109765500;110430000;109670300;116478800;122757300;123240208;121964708;135564008;129909708;108738700;118032008;121910000;124977000;129786000;131247000;122806008;120345008;126032000;126986008;124732000;121667000;120796008;127025008;135728008;170638962;118972427;120802120;131780062;151936427;165340373;161677012;172753825;173885322;179115328;201888889;181160660;184379633;192313436;195860794;218546520;196777729;225855034;188459828;166120258;187023328;188836172;182383318;181849823;193012467;193359656;196705132;203326728;218589646;220712257;217897114;229843787;223313234;203914809 -5707;'097;European Union (27);1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;80022000;78175000;74133000;82053000;83625000;82020000;81819000;81589000;86868000;91903000;93355008;92932008;104332008;99956008;81620000;91071008;93813000;95607000;101293000;102262000;94404008;93325008;99033000;99129008;97978000;96261000;95253008;100212008;107885008;142225145;93631663;95650387;107706772;124967083;135358747;134017503;144310926;143383662;146870334;167795052;149973014;154408355;160498495;163587049;188302937;166819262;194930536;159258324;142249506;160629571;161571694;151892838;153960159;164198317;164667411;167610526;174741959;188725720;191539139;191204767;201583482;194111400;176595186 -5707;'097;European Union (27);1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;23356000;25263000;25344000;26518100;26959300;27745500;28611000;28081300;29610800;30854300;29885200;29032700;31232000;29953700;27118700;26961000;28097000;29370000;28493000;28985000;28402000;27020000;26999000;27857000;26754000;25406000;25543000;26813000;27843000;28413817;25340764;25151733;24073290;26969344;29981626;27659509;28442899;30501660;32244994;34093837;31187646;29971278;31814941;32273745;30243583;29958467;30924498;29201504;23870752;26393757;27264478;30490480;27889664;28814150;28692245;29094606;28584769;29863926;29173118;26692347;28260305;29201834;27319623 -5707;'097;European Union (27);2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110114960;111600740;121034418;117611932;123187848;124391828;127918416;139135031;129291888;141959952;136568917;123884187;136888617;140587139;135834107;138877931;139574269;142580124;147056782;147188093;155077617;155075942;147048279;152856048;151104927;142869983 -5707;'097;European Union (27);1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77290622;76666215;83744026;81584095;85230083;85321595;87672313;99185106;89587866;101370032;96097491;87702447;95550492;95720916;91489554;94115511;94799991;97077326;101302514;100497854;106033570;106970284;102671746;106653017;105164933;98225174 -5707;'097;European Union (27);1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32824338;34934525;37290392;36027837;37957765;39070233;40246103;39949925;39704022;40589920;40471426;36181740;41338125;44866223;44344553;44762420;44774278;45502798;45754268;46690239;49044047;48105658;44376533;46203031;45939994;44644809 -5707;'097;European Union (27);1870;Pulpwood and particles (1961-1997);5516;Production;m3;59798000;59795000;56912000;63462000;63554000;66857000;73729000;67987000;74584000;84480000;88094008;79171008;82099008;92832008;90166000;84071000;79023000;82005000;89824000;90000000;92222008;91978000;90702000;94646000;94263000;97938000;103346000;106152000;110081008;100972555;89230477;93025161;95166165;103833211;109163167;99458034;104376512;;;;;;;;;;;;;;;;;;;;;;;;;; -5707;'097;European Union (27);1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;52433000;50175000;46853000;49026000;47183000;50110000;55121000;50209000;53946000;61445000;64530008;56132008;57593008;65721008;63858000;60227000;54227000;56574000;62942000;60267000;63127008;63586000;60526000;63491000;63209000;65910000;70211000;72662000;74520008;69209474;60376055;62666687;65448743;72666201;77503556;69541480;74066647;;;;;;;;;;;;;;;;;;;;;;;;;; -5707;'097;European Union (27);1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;7365000;9620000;10059000;14436000;16371000;16747000;18608000;17778000;20638000;23035000;23564000;23039000;24506000;27111000;26308000;23844000;24796000;25431000;26882000;29733000;29095000;28392000;30176000;31155000;31054000;32028000;33135000;33490000;35561000;31763081;28854422;30358474;29717422;31167010;31659611;29916554;30309865;;;;;;;;;;;;;;;;;;;;;;;;;; -5707;'097;European Union (27);1871;Other industrial roundwood;5516;Production;m3;26612000;28826000;28372000;24198500;24470100;24181200;22884200;24416400;23480200;23329400;22842800;21124000;21200000;19942000;20124000;19948000;20437000;19822000;17661000;18869500;19405000;22225000;21457000;21968000;22294500;21262000;19518000;18765000;20017000;15812683;12703596;14130818;15769472;15299260;13909097;12347499;12067899;11481379;13612851;12154094;12292683;12113721;11588970;11479656;11426866;11341417;8928166;8125627;7514044;7107673;7035045;7013894;7272902;7329547;7179368;6478159;6394835;6502112;7189423;6604997;6964712;6816941;6587103 -5707;'097;European Union (27);1623;Other industrial roundwood, coniferous (production);5516;Production;m3;15885000;17757000;16740000;13600100;13935300;13822400;13379200;14102200;13522200;13576200;13309800;12427000;12709000;11689000;12441000;12117000;12541000;12173000;11952000;12723500;11425000;13187000;12730000;12738000;12691000;12355000;11162000;11047000;11742500;9219580;5764082;7197225;8684584;8263115;7165764;6567319;5888214;5891125;6683428;6412271;5778437;6320218;6470114;6307570;6736305;6207093;5186587;4804736;4355148;4337709;4205774;4366792;4227088;4379481;4265961;3753161;3759791;3630629;4197867;3862484;3912966;3914350;3775535 -5707;'097;European Union (27);1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;10727000;11069000;11632000;10598400;10534800;10358800;9505000;10314200;9958000;9753200;9533000;8697000;8491000;8253000;7683000;7831000;7896000;7649000;5709000;6146000;7980000;9038000;8727000;9230000;9603500;8907000;8356000;7718000;8274500;6593103;6939514;6933593;7084888;7036145;6743333;5780180;6179685;5590254;6929423;5741823;6514246;5793503;5118856;5172086;4690561;5134324;3741579;3320891;3158896;2769964;2829271;2647102;3045814;2950066;2913407;2724998;2635044;2871483;2991556;2742513;3051746;2902591;2811568 -5707;'097;European Union (27);1630;Wood charcoal;5510;Production;t;297765;321731;331511;323107;326634;328745;337388;322246;338325;319817;308226;312761;309781;323588;341732;317443;318070;324439;319538;341293;332546;344785;355331;334858;327227;328207;336990;357631;351249;373599;377824;432964;439660;443259;357638;345853;345778;325900;314490;214591;229220;281844;308042;312786;308823;472573;463814;308958;289745;249498;273878;257044;264154;289216;248597;297425;310754;273323;272510;338287;321627;336093;316073 -5707;'097;European Union (27);1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58841745;74101936;83933330;83437550;84152763;88582709;92968062;93692061;96058251;100810917;95354256;93459797;105275137;109976307;111495264;117264799;121205351;121740441;110879183;114091232;115353173;114151767;111852644;115756026;120734183;114311418 -5707;'097;European Union (27);1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26869872;39665039;44268890;43308030;44500358;47373312;49728824;49232840;50521182;55717667;53281507;53260536;59039988;60783530;60854053;57952733;60262866;59363483;62951466;65322358;64816289;66368836;64391778;67071005;68706914;64645042 -5707;'097;European Union (27);1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14791000;24572000;28606000;28228800;27462900;27672000;31971873;34436897;39664440;40129520;39652405;41209397;43239238;44459221;45537069;45093250;42072749;40199261;46235149;49192777;50641211;59312066;60942485;62376958;47927717;48768874;50536884;47782931;47460866;48685021;52027269;49666376 -5707;'097;European Union (27);1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21545487;21629604;23503911;25106265;24404098;24009251;25433898 -5707;'097;European Union (27);1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12731680;14153933;15254692;15769812;15971811;16898600;18225409;21122301;20450030;21612111;22092274;22018812 -5707;'097;European Union (27);1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10687166;11988202;12979627;13765113;13942910;15592950;16638645;18999191;18855563;19443301;20378691;20150102 -5707;'097;European Union (27);1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2044514;2165731;2275065;2004699;2028901;1305650;1586764;2123110;1594467;2168810;1713583;1868710 -5707;'097;European Union (27);1872;Sawnwood;5516;Production;m3;61410000;60590900;59839900;63512200;64047500;63941002;64291600;66111000;68923500;70341300;72785700;73107000;76769300;73888400;64701900;69324100;70892200;70959900;74953900;75352500;69352500;67991700;70404500;72323800;69442900;68497200;68462500;69411100;71521450;72540100;67247330;69169760;71491160;79079900;80589900;80329600;86005600;88649389;92248750;98084944;95605334;96953783;99916624;103623652;105926438;109900252;113070022;97227751;88861809;97747279;98711064;95079828;96323708;99369889;101321501;104590403;107130822;108795645;108755033;108474379;112405349;110168063;101936854 -5707;'097;European Union (27);1632;Sawnwood, coniferous;5516;Production;m3;49042550;47976950;46766850;49596300;49915000;49547701;49607850;51084000;53457250;54664750;56496200;56944650;60066550;58059600;50299400;54096350;55277400;55095550;58934300;59707350;54814600;53839600;56457000;57760300;55296000;54977800;55337000;56079850;58500350;59273600;55102000;56673800;60448700;67811000;69196400;69348800;75430000;77547765;80343417;85812276;83655496;85201012;88149682;91688463;94398099;98245010;101048145;86911386;80002754;88041706;89186820;85272016;86397022;89488189;91363225;94300470;96949729;98517206;98689862;99446584;102710222;100636471;93617561 -5707;'097;European Union (27);1633;Sawnwood, non-coniferous;5516;Production;m3;12367450;12613950;13073050;13915900;14132500;14393301;14683750;15027000;15466250;15676550;16289500;16162350;16702750;15828800;14402500;15227750;15614800;15864350;16019600;15645150;14537900;14152100;13947500;14563500;14146900;13519400;13125500;13331250;13021100;13266500;12145330;12495960;11042460;11268900;11393500;10980800;10575600;11101624;11905333;12272668;11949838;11752771;11766942;11935189;11528339;11655242;12021877;10316365;8859055;9705573;9524244;9807812;9926686;9881700;9958276;10289933;10181093;10278439;10065171;9027795;9695127;9531592;8319293 -5707;'097;European Union (27);1634;Veneer sheets;5516;Production;m3;736300;917500;954900;1021500;1051000;896300;898600;928000;942700;959100;964100;973300;1199300;1193400;1154200;1201000;1172000;1127000;1131000;1158000;1201000;1159000;1335000;1402000;1387000;1398000;1359000;1590000;1707000;1648000;1370000;1410000;1501600;1616600;1640000;1824000;1832000;1585470;1570613;1565774;1609500;1683920;1540720;1550020;1602420;1631269;1595168;1559789;1426698;1558012;1525946;1288174;1239462;1286393;1292075;1341304;1333082;1416682;1244224;1210031;1360391;1325831;1332547 -5707;'097;European Union (27);1873;Wood-based panels;5516;Production;m3;6446900;7266100;8426400;9483200;10460700;12026000;13157200;14751500;16603900;18064100;19887500;22842200;25788700;24926000;23611300;25909900;26242500;27064200;27908200;27740600;25977100;25052900;25258100;25576400;25524700;26006200;26533200;29286200;30905200;30443000;29526100;29046100;30980300;32609000;35594700;36059100;39019200;42801666;44171801;48493011;48508292;50328830;52206515;56220056;58007930;61224228;63560773;57088002;51107198;53229196;53104706;52565341;53508989;54643690;55958712;58188686;59977621;59747591;59514141;57879253;65856649;58972119;56107548 -5707;'097;European Union (27);1640;Plywood and LVL;5516;Production;m3;2338300;2519600;2845100;2877600;2949800;2938800;3048300;3198000;3427600;3515200;3662400;3989100;4080300;3334800;3035700;3260000;3085300;2994000;3121000;3085000;2963000;2803700;2622900;2706200;2656500;2769000;2716000;2808000;3000000;2926800;2575300;2730300;3045300;3179000;3469800;3462500;3614800;3832845;3964201;4158416;4152716;4155100;4086340;4276902;4355620;4526300;4546960;4011064;3219047;3832035;4022025;4030703;4239692;4331039;4354806;4612631;5017837;4970620;4977170;4656749;5110138;4509064;4371704 -5707;'097;European Union (27);1607;Laminated Veneer Lumber (LVL);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;590000;564609 -5707;'097;European Union (27);1646;Particle board and OSB (1961-1994);5516;Production;m3;2510300;3014500;3712400;4515700;5333400;5988800;6955400;8256000;9712200;10970300;12541600;15001200;17545700;17522000;17020400;18804000;19403000;20158000;20890000;20823000;19535000;18967000;19327000;19518000;19527000;19649000;20172000;22718000;24035000;23692000;23398600;22681400;23883000;25207000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5707;'097;European Union (27);1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26578000;26811000;28362300;29036500;29752100;32456116;32199316;31535850;32587910;35155410;35132210;37133000;38476339;34921429;30985229;30785667;30083212;28564629;28529878;29278979;29595539;30016697;30232670;30066154;29958459;28601614;33735556;30577642;29670043 -5707;'097;European Union (27);1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;250000;391000;496000;710000;900000;1349000;1373000;1978000;2263000;2486100;3067000;3255000;3623207;3586449;3556490;4603564;4527268;4989065;5279813;5200633;5803078;6686002;6994079;6924581;6826119;6856503;6975569;6253695;6352729 -5707;'097;European Union (27);1874;Fibreboard;5516;Production;m3;1598300;1732000;1868900;2089900;2177500;3098400;3153500;3297500;3464100;3578600;3683500;3851900;4162700;4069200;3555200;3845900;3754200;3912200;3897200;3832600;3479100;3282200;3308200;3352200;3341200;3588200;3645200;3760200;3870200;3824200;3552200;3634400;4052000;4223000;5296900;5394600;6546100;9222321;9555500;10529479;10783260;12659880;13269265;14301644;15453100;16309928;16914267;14569060;13346432;14007930;14472201;14980944;15459606;15833039;16205289;16873356;17733035;17786236;17752393;17764387;20035386;17631718;15713072 -5707;'097;European Union (27);1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1498200;1462100;1585300;2210508;1962100;2074993;1987360;1621530;1331022;1529019;1571100;1639728;1311621;988305;844988;796161;735319;631022;621094;618829;483138;487296;500668;493343;510482;566469;783798;729220;538187 -5707;'097;European Union (27);1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3196300;3324300;4386300;6388913;6946500;7611493;7977590;10093590;10897990;11731105;12799400;13449200;13643520;11927925;10308436;10735129;11159560;11773528;12236387;12585729;13848377;14149280;14460376;14455461;14719313;14177532;15367824;13308937;12218942 -5707;'097;European Union (27);1650;Other fibreboard;5516;Production;m3;273900;276300;288100;320400;322500;1182200;1176800;1176200;1208200;1226200;1235800;1309400;1284800;1262400;1108400;1186000;1137000;1085000;1182000;1164000;951000;938000;896000;896000;834000;914000;940000;949000;950000;779000;753000;824400;824000;554000;602400;608200;574500;622900;646900;842993;818310;944760;1040253;1041520;1082600;1221000;1959126;1652830;2193008;2476640;2577322;2576394;2602125;2628481;1873774;2236780;2771991;2837432;2522598;3020386;3883764;3593561;2955943 -5707;'097;European Union (27);1649;Fibreboard, compressed (1961-1994);5516;Production;m3;1324400;1455700;1580800;1769500;1855000;1916200;1976700;2121300;2255900;2352400;2447700;2542500;2877900;2806800;2446800;2659900;2617200;2827200;2715200;2668600;2528100;2344200;2412200;2456200;2507200;2674200;2705200;2811200;2920200;3045200;2799200;2810000;3228000;3669000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5707;'097;European Union (27);1879;Total fibre furnish;5510;Production;t;18372600;18412700;19606000;21305100;22394500;23608500;24382000;25867400;27920100;30243600;29816500;31753800;34886800;36220400;31549400;33636000;33658000;35843000;38093800;38317800;38738800;37369100;39611400;42566100;43061000;44385500;46733000;49676000;51595000;50281000;50981000;52458700;54370300;58655100;60170900;59045700;62024000;65080700;67918520;73271721;72561240;74648007;76500350;80719323;82675386;86792026;87016457;84241733;77662894;81426358;80905524;83676667;83552768;83220168;83595071;84873704;84585189;86916838;86563073;84950081;85608363;81660971;76627353 -5707;'097;European Union (27);1878;Pulp for paper;5510;Production;t;14922600;14872700;15906000;17079100;18011500;18870500;19353000;20287400;21814100;22837600;22271500;23546800;25383800;26121400;22237400;23212000;22630000;24499000;26111800;26022800;25794800;24373100;26284400;28237100;27996000;28684500;30168000;31651000;32146000;30857000;30396000;30634200;31638300;32902100;33366900;31858700;34591000;35087800;35327820;37859350;36390950;37353853;38181510;39665933;39197580;41797129;41871842;39761367;35086945;37266529;37715424;37458444;36922087;36268259;35980821;36819698;37287387;37927510;37286758;36419363;37209479;35874710;32528641 -5707;'097;European Union (27);1875;Wood pulp;5510;Production;t;15301700;15251000;16391500;17638400;18482800;18902900;19444100;20374200;22022500;23006500;22401300;23719100;25632200;26381400;22578400;23411000;22973000;24892000;26499100;26479000;26263000;24773100;26673400;28734000;28367000;29223000;30740000;32204000;32809000;31517000;31092000;31049100;32071700;33388000;33796900;32267800;35009000;35289400;35458570;37591700;35975200;36982459;38286503;39791757;38760762;41296334;41173219;39016580;34347884;36547172;37027105;37133110;36906328;36671293;36433647;37965966;38734644;39319752;38720711;37722347;38351941;37057591;33711871 -5707;'097;European Union (27);1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9706787;10013712;9308768;8764473;8188456;7628227;6255956 -5707;'097;European Union (27);1654;Mechanical wood pulp (1961-2016);5510;Production;t;4882900;4697300;4823700;5089700;5298900;5562500;5367500;5667900;6136900;6459500;6355400;6671500;7135100;7264800;5965400;6267000;6490000;7019000;7566000;7683000;7711000;7276000;7658000;8681000;8619000;8681000;9238000;9806000;10163000;10249000;9770000;9654300;9802200;10210000;10557400;9628800;10472000;10685500;10536570;11013200;10427500;10354159;10659202;11233994;10906683;11686634;11874222;11065364;9379205;10005665;9707964;9032440;8476815;8192695;7910527;8377741;;;;;;; -5707;'097;European Union (27);1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;358700;452900;484800;586500;667200;738200;761800;942600;1192000;1234600;1274800;1353600;1501300;1606900;1188000;1344000;1284000;1301000;1308000;1310000;1193000;1129000;1131000;1135000;1163000;1257000;1297000;1481000;1401000;1395000;1365000;1394000;1308500;1353000;1265000;1167000;1271000;1217400;1181700;1384000;1367000;1395000;1434348;1437416;1393900;1397100;1447677;1380402;1184160;1160321;1193018;1261433;1209262;1172949;1144645;1481542;;;;;;; -5707;'097;European Union (27);1656;Chemical wood pulp;5510;Production;t;8747600;8759700;9648100;10447900;11025500;11226800;11898200;12310800;13238200;13883200;13452100;14360400;15604100;16069700;14192000;14599000;13971000;15341000;16460100;16356000;16290000;15407100;16938400;17944000;17748000;18323000;19203000;19858000;20114000;18825000;18894000;19222800;20188000;21106000;21264500;20767000;22565000;23021100;23422000;24875400;23988700;25037300;25838953;26764417;25884179;27602600;27234013;25990652;23193446;24819463;25456026;25788438;25655668;25616363;25687565;26144461;26990049;27363018;27508229;27078090;28367516;27619683;25668898 -5707;'097;European Union (27);1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;59800;72000;78100;5773100;3831000;3913600;4208900;4245400;4479600;4606700;4315500;4904300;5293400;5589700;4724000;4935000;4651000;5134000;5447400;5124000;4917000;4698000;5054000;5256000;4953000;4957000;5161000;5179000;5126000;4709000;4690000;4491000;4755000;4754000;4844500;4588500;4713000;4759300;4920500;5262300;5139440;5135300;5154485;5301999;5130800;5269400;5174959;4827555;4259990;4519424;4489387;4837364;4946358;4818620;5001111;5200719;5599769;4326607;4677913;5905758;5922391;5918116;5139782 -5707;'097;European Union (27);1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;32700;29600;37400;83700;2688200;2788800;3323200;3798100;4410900;4797700;4940600;5323000;5950300;6111000;5740000;5969000;6087000;6992000;7667300;7838000;8220000;7840000;8831000;9526000;10088000;10739000;11338000;11975000;12272000;11544000;11627000;12118000;12698000;13548000;13820500;13748500;15164000;15583000;16215300;17152600;16478360;17488000;18368411;19183230;18207850;19797800;19573460;19050444;17203553;18386678;19098516;19342843;19601180;19648063;19807650;19991276;20429474;21097803;21414296;19754022;20907723;20243508;18837596 -5707;'097;European Union (27);1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;960806;1938608;1416020;1418310;1537402;1458059;1691520 -5707;'097;European Union (27);1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;12400;4300;11600;1273700;2056600;1950900;1835400;1760000;1749400;1715000;1596300;1578600;1629400;1567000;1329000;1143000;856000;804000;809100;788100;719000;630100;699400;725000;425000;391000;412000;408000;403000;373000;347000;337800;477000;295000;230500;196000;178000;150000;102100;108400;100000;53000;21000;19071;20000;22000;1000;0;37603;45765;47046;61206;13410;14430;13938;13768;;;;;;; -5707;'097;European Union (27);1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;14000;22400;31400;2787800;2186600;2353500;2530700;2507300;2598300;2763800;2599700;2554500;2731000;2802000;2399000;2552000;2377000;2411000;2536300;2605900;2434000;2239000;2354000;2437000;2282000;2236000;2292000;2296000;2313000;2199000;2230000;2276000;2258000;2509000;2369000;2234000;2510000;2528800;2184100;2352100;2270900;2361000;2295057;2260117;2525529;2513400;2484594;2112653;1692300;1867596;1821077;1547025;1094720;1135250;864866;938698;;;;;;; -5707;'097;European Union (27);1667;Dissolving wood pulp;5510;Production;t;1312500;1341100;1434900;1514300;1491200;1375400;1416600;1452900;1455400;1429200;1319000;1333600;1391700;1440000;1233000;1201000;1228000;1231000;1165000;1130000;1069000;961000;946000;974000;837000;962000;1002000;1059000;1131000;1048000;1063000;778000;773000;719000;710000;705000;701000;365400;318300;319100;192000;196000;354000;355930;576000;610000;617307;580162;591073;561723;670097;1050799;1564583;1689286;1690910;1962222;2037808;1943022;1903714;1879784;1795969;1809681;1787017 -5707;'097;European Union (27);1668;Pulp from fibres other than wood;5510;Production;t;933400;962800;949400;955000;1019900;1343000;1325500;1366100;1247000;1260300;1189200;1161300;1143300;1180000;892000;1002000;885000;838000;777700;673800;600800;561000;557000;477100;466000;423500;430000;506000;468000;388000;367000;363100;339600;233100;280000;295900;283000;163800;187550;586750;607750;567394;249007;230106;1012818;1110795;1315930;1324949;1330134;1281080;1358416;1376133;1580342;1286252;1238084;815954;590551;550780;469761;576800;653507;626800;603787 -5707;'097;European Union (27);1669;Recovered paper;5510;Production;t;3450000;3540000;3700000;4226000;4383000;4738000;5029000;5580000;6106000;7406000;7545000;8207000;9503000;10099000;9312000;10424000;11028000;11344000;11982000;12295000;12944000;12996000;13327000;14329000;15065000;15701000;16565000;18025000;19449000;19424000;20585000;21824500;22732000;25753000;26804000;27187000;27433000;29992900;32590700;35412371;36170290;37294154;38318840;41053390;43477806;44994897;45144615;44480366;42575949;44159829;43190100;46218223;46630681;46951909;47614250;48054006;47297802;48989328;49276315;48530718;48398884;45786261;44098712 -5707;'097;European Union (27);1876;Paper and paperboard;5510;Production;t;17045800;17726500;19078400;19812300;20955900;22523400;23372900;25553300;28126900;29577400;29930100;32192000;34771200;36483400;30489600;34879000;35524300;37556100;40766700;40785800;41018000;40215400;42113000;45856000;45855000;47429000;49824000;53807000;55559000;56695000;57834000;59596100;62052000;67211900;67910900;67944000;74310000;76032729;78876300;83498547;82274547;84794009;86894763;91242633;92137073;96527131;96757527;93327666;84395235;91017893;90426825;88991030;87924131;87485786;87535127;87664806;88806903;88691560;85450551;81520186;86667635;82088966;71565843 -5707;'097;European Union (27);2042;Graphic papers;5510;Production;t;6977800;7143200;7524700;8104900;8613000;9463000;9729800;10739200;11811100;12602900;12687600;13609500;14816600;15271400;12328600;14191000;14855300;16523100;17802000;18145000;18531000;17932000;18963000;21435000;21318000;22286000;23863000;25813000;26663000;27617000;27814000;28740100;29799400;33026900;33413900;33132700;36894000;37715222;39167700;41532947;40043097;40484645;42226053;45111794;44508366;45981331;45634223;43916731;37675376;40001342;39686931;38004698;35582843;34758374;33512561;32395187;31701619;30395080;27720961;22454881;23806782;21438670;16076301 -5707;'097;European Union (27);1671;Newsprint;5510;Production;t;3190300;3230400;3221000;3457700;3626500;3831000;3789100;3831200;4079900;4275600;4173600;4286900;4324300;4276500;3857900;3881000;3894300;4234100;4969000;5113000;5370000;4734000;4904000;5489000;5540000;5651000;5980000;6113000;6153000;6618000;6404000;6533400;7123000;7614000;7937700;7358000;8295500;8049900;8705500;8905018;8979500;8162290;8690386;9055201;8819050;8836992;8703836;8651626;7004026;7396221;6932636;6597311;6032566;5353162;5170630;5073150;4615602;4234639;3760405;2858822;2988239;2589070;2008950 -5707;'097;European Union (27);1674;Printing and writing papers;5510;Production;t;3787500;3912800;4303700;4647200;4986500;5632000;5940700;6908000;7731200;8327300;8514000;9322600;10492300;10994900;8470700;10310000;10961000;12289000;12833000;13032000;13161000;13198000;14059000;15946000;15778000;16635000;17883000;19700000;20510000;20999000;21410000;22206700;22676400;25412900;25476200;25774700;28598500;29665322;30462200;32627929;31063597;32322355;33535667;36056593;35689316;37144339;36930387;35265105;30671350;32605121;32754295;31407387;29550277;29405212;28341931;27322037;27086017;26160441;23960556;19596059;20818543;18849600;14067351 -5707;'097;European Union (27);1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7721996;5832500;6196360;6684167;6972426;7120713;7133830;6899208;7989039;8007482;8200593;6926117;6991559;7034707;6684240;5724783;5466749;5495813;5476808;5496726;5320169;4873241;4091577;4488885;3895787;3191277 -5707;'097;European Union (27);1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7850072;7938500;8506876;8401760;8346582;8686046;9496583;9382730;9472212;9126683;8313964;8383415;8431382;8771375;8518345;8564413;8880362;8687600;8418777;8311900;8099393;7565453;6689741;7240827;6852859;5264864 -5707;'097;European Union (27);1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14093254;16691200;17924693;15977670;17003347;17728908;19426180;19407378;19683088;19796222;18750548;15361818;17182180;16948213;16204802;15261081;15058101;14158518;13426452;13277391;12740879;11521862;8814741;9088831;8100954;5611210 -5707;'097;European Union (27);1675;Other paper and paperboard;5510;Production;t;10068000;10583300;11553700;11707400;12342900;13060400;13643100;14814100;16315800;16974500;17242500;18582500;19954600;21212000;18161000;20688000;20669000;21033000;22964700;22640800;22487000;22283400;23150000;24421000;24537000;25143000;25961000;27994000;28896000;29078000;30020000;30856000;32252600;34185000;34497000;34811300;37416000;38317507;39708600;41965600;42231450;44309364;44668710;46130839;47628707;50545800;51123304;49410935;46719859;51016551;50739894;50986332;52341288;52727412;54022566;55269619;57105284;58296480;57729590;59065305;62860853;60650296;55489542 -5707;'097;European Union (27);1676;Household and sanitary papers;5510;Production;t;140000;190000;208000;248000;480200;545500;952800;894500;984200;1083800;1111200;1219300;1216800;1396000;1400000;1336000;1374000;1517000;1773100;1843100;1884700;1890800;2141000;2287000;2362000;2453000;2511000;2694000;2769000;2895000;3078000;3168000;3303000;3621000;3794000;3864000;4429000;4548700;4675200;4681142;4957640;5184865;4971410;5197152;5585390;5623706;5877340;5949502;5987654;6076708;6298744;6242082;6316655;6401916;6402751;6589760;6933952;6612469;6630396;6857792;6672432;6886945;6640855 -5707;'097;European Union (27);2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30549478;31606200;33532573;33747370;35591938;36033600;37140773;38274623;40673834;40858626;39450076;37199581;40894866;40526758;40771785;42257460;42993398;44220287;45122346;46086292;47955121;47577618;47997256;51649485;49795270;45426888 -5707;'097;European Union (27);1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;2113000;2139000;2181000;3237000;7087800;7939300;8688200;10237100;11236400;11399900;11675400;12701000;13124500;15131000;12845000;15896000;16472000;16818000;17929200;17170800;16939500;17074600;18357000;19345000;19306000;19811000;20500000;22016000;22674000;22856000;23843000;24667000;25646000;27585000;27600000;28101300;29988000;;;;;;;;;;;;;;;;;;;;;;;;;; -5707;'097;European Union (27);1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17890294;17116400;17789962;17870120;18957246;20099364;20905978;22138530;23438611;23218227;22618473;21374212;23661720;23596136;23608370;24739134;24874363;25523333;25989770;27092672;27837325;28517366;29556815;32210124;30454730;28783827 -5707;'097;European Union (27);1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5986366;6866400;7281058;7662160;8194924;8486913;8596107;8595384;9045148;9178883;8819961;8421500;9190772;9042039;9358838;9463881;9689916;9993510;10412990;10428106;11208684;10324816;10304967;10447988;10350273;8512437 -5707;'097;European Union (27);1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3772278;4244200;4602031;4450590;4559254;3629186;3927740;3961791;4359806;4495893;4284932;3990248;4412530;4262324;4354970;4556450;4514626;4697648;4597697;4709869;4873286;4761769;4462733;4916399;5118855;4284148 -5707;'097;European Union (27);1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2900540;3379200;3859522;3764500;3880514;3818137;3710948;3578918;3830269;3965623;3726710;3413621;3629844;3626259;3449607;3497995;3914493;4005796;4121889;3855645;4035826;3973667;3672741;4074974;3871412;3846476 -5707;'097;European Union (27);1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;808000;818000;834000;820000;2696100;3901200;3752200;3398500;3802200;4204800;4146800;4331800;5199100;4224000;3439000;2824000;2183000;2234000;2696400;3049900;3066800;2735000;2289000;2420000;2496000;2500000;2572000;2893000;3453000;3327000;3099000;3021000;3303600;2979000;3103000;2846000;2999000;3219329;3427200;3751885;3526440;3532561;3663700;3792914;3768694;4248260;4387338;4011357;3532624;4044977;3914392;3972465;3767173;3332098;3399528;3557513;4085040;3728890;3521576;4210257;4538936;3968081;3421799 -5707;'097;European Union (27);1636;Glue-laminated timber (glulam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5099261;4840556 -5707;'097;European Union (27);1688;Cross-laminated timber (CLT or X-lam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1620497;1103370 -5707;'097;European Union (27);1684;I-beams (I-joists);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;265235;258356 -5801;'199;Least Developed Countries;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5224212.66;5608273.66;6003065.66;5490611.66;6177881.36;6923310.52;6532461.9 -5801;'199;Least Developed Countries;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2878834.9;3229755;3028921;2500408;3712011.03;3750931.98;3495595.93 -5801;'199;Least Developed Countries;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;25990;28329;34442;46143;50993;54126;52746;63236;63664;68530;85117;93314;111724;157088;159038;152292;163361;166762;184661;226104;257440;234757;229427;221199;244202;216877;263619;277853;215205;209219;204761;218303;188076;199748;272948;298230;345827;409089;420777;393692;493498;445208;700061;880390;869172.2;867452;1184574;1405771.1;1471649.5;1775748.1;2029032.2;2013822.66;2420155.76;2977711.02;2336190.91;2699214.66;2907858.66;3208081.66;3542769.66;3221664.66;3682128.36;3974274.52;3759277.9 -5801;'199;Least Developed Countries;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;42849;47789;58835;60166;61246;65508;59376;71496;84432;73637;82612;91614;128724;142736;101693;150480;147829;196623;269060;332550;271648;232734;244704;239042;249031;216879;223376;302048;310844;463247;629384;729487;643956;672915;746024;693595;568810;562025;534292;799624;901897;965377;1009920;934859;1348106;1500225;1870844;2112339;1688831;2423910.4;3147782;3359170.14;4201748.26;5481882.82;3501508;2674461;2601580;2626630;2594337;2179772;3207376.03;3154327.98;2763201.93 -5801;'199;Least Developed Countries;1861;Roundwood;5516;Production;m3;232179122;235224205;239622010;244614738;249423228;255952832;261927432;267155171;272922145;277771179;283624956;287509722;292720645;295827425;301878251;306465267;312984618;319482649;325656775;332759597;337339233;343641488;349673381;357807022;367602425;374117139;379759831;386938519;396037103;418661036;428751729;437429460;445860241;454969345;465106574;471387094;474508302;479633547;487312064;500184651;509161217;512482489;522266719;528467141;537955324;546705205;552990943;560740107;565832956;572965435;581690380;583296685;589739654;595887831;599829571;604667499;609637541;614115486;619122932;623748199;629349570;635203635;646755696 -5801;'199;Least Developed Countries;1861;Roundwood;5616;Import quantity;m3;26200;28800;29000;15200;13000;18500;24100;47300;52300;65300;107100;31000;42500;61100;38000;41600;35000;29700;57300;47200;51500;88200;86300;80200;172800;92890;107410;120353;132500;36685;6868;21678;38421;81051;44323;61369;57887;114853;89421;79836;87079;218471;294342;444775;102422;69906;83390;78701;58634;85709;89987;112562;140379.71;329433.13;163360;207044;241579;243955;311753;233411;255481;325358.28;1305126.19 -5801;'199;Least Developed Countries;1861;Roundwood;5622;Import value;1000 USD;622;813;788;454;510;834;1113;1586;1521;1660;2372;1124;2067;4483;2291;2964;3902;2783;5779;6558;8064;8238;7878;8805;16963;9167;10715;12321;15222;1182;911;2860;4814;10155;11400;12252;11265;17383;13032;13636;15169;26461;38004;34136;12039.2;8529;11398;24309;15323.3;26768.1;22208.2;27854.28;43666.28;72223.72;27180;31501;48056;46629;53737;44861;37518;52842.91;37982.52 -5801;'199;Least Developed Countries;1861;Roundwood;5916;Export quantity;m3;516400;455100;561100;646300;596100;614600;611000;753600;928100;873800;980400;1006900;1353100;1130200;785850;1078607;979800;965100;1123400;1308400;1142900;1066200;1112800;1071700;1134800;1270986;1126928;1667827;1796200;2630497;2369387;3269909;2271552;2397528;2663806;2283819;1745583;1957818;2528645;3442795;3050430;3068153;3100466;3624422;5124276;4170961;4459112;4106821;3335910;4692089;5901177;6051160;6598684;7511241;6472262;5819020;5538595;5019365;4147060;3426795;4023318;3223584;2785776 -5801;'199;Least Developed Countries;1861;Roundwood;5922;Export value;1000 USD;18175;21568;27845;30496;29336;30944;27184;36329;43331;34344;44087;47178;77381;79037;56233;88917;88395;128285;172359;210243;175208;149817;159353;165278;162799;146622;163987;244691;231006;381985;403436;528109;453060;485073;528601;459005;332693;312317;390568;665912;656939;699614;705606;643003;1008413;1051369;1311148;1440934;1082169;1654940;2186002;2394381.45;3048459.4;3881929;2049792;1697510;1663674;1550828;1295317;893996;1180855;912577;680335 -5801;'199;Least Developed Countries;1862;Roundwood, coniferous;5516;Production;m3;2487570;2508481;2561948;2605981;2694593;2798907;2885895;2975802;3103733;3185202;3238713;3311957;3310372;3365732;3429552;3494697;3547335;3607492;3634880;3736624;3755629;3749218;3756709;3884879;4135526;4287288;4414470;4492083;4592238;4839879;5111757;5521166;8349537;8657081;9163326;8962775;9178992;9363807;9654454;9525938;9679984;9794639;10008849;10050354;10194699;10257768;10585230;10749044;10815019;11002533;11417455;11967078;12303989;12420980;12573160;12713098;13161723;13509076;13610735;13712811;13814606;13918133;14023424 -5801;'199;Least Developed Countries;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87511;156600;205506;152072;169893;171436.28;153899.19 -5801;'199;Least Developed Countries;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15751;22544;31785;24652;19052;18622.91;15688.52 -5801;'199;Least Developed Countries;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22630;31704;75412;116271;140326;93735;24627 -5801;'199;Least Developed Countries;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7374;5155;17103;15742;21772;18478;3622 -5801;'199;Least Developed Countries;1863;Roundwood, non-coniferous;5516;Production;m3;229691552;232715724;237060062;242008757;246728635;253153925;259041537;264179369;269818412;274585977;280386243;284197765;289410273;292461693;298448699;302970570;309437283;315875157;322021895;329022973;333583604;339892270;345916672;353922143;363466899;369829851;375345361;382446436;391444865;413821157;423639972;431908294;437510704;446312264;455943248;462424319;465329310;470269740;477657610;490658713;499481233;502687850;512257870;518416787;527760625;536447437;542405713;549991063;555017937;561962902;570272925;571329607;577435665;583466851;587256411;591954401;596475818;600606410;605512197;610035388;615534964;621285502;632732272 -5801;'199;Least Developed Countries;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;154068;87355;106247;81339;85588;153922;1151227 -5801;'199;Least Developed Countries;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32305;24085;21952;20209;18466;34220;22294 -5801;'199;Least Developed Countries;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5515965;4987661;4071648;3310524;3882992;3129849;2761149 -5801;'199;Least Developed Countries;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1656300;1545673;1278214;878254;1159083;894099;676713 -5801;'199;Least Developed Countries;1864;Wood fuel;5516;Production;m3;217378122;220449205;224524010;228720738;232879228;238773832;243617432;248010871;252575145;257177579;262097556;267088422;271755445;275186925;281328751;285552767;291071718;297065649;302424775;309013997;313619883;319431688;325616281;333927622;342476765;348469128;353821463;360475360;368349398;390306849;399765038;407232065;415556050;424299516;432910760;438590818;440873787;446357375;451940967;464732000;473548327;476137720;485180454;491118761;500206814;507959974;513410988;520065507;525519007;531414161;538372357;539208187;543799055;548543436;554117431;558406622;562812968;567343622;571909148;576574073;581283444;586118509;597720570 -5801;'199;Least Developed Countries;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;40000;43000;32700;32700;32700;32700;32700;32700;32700;1400;0;910;1074;967;967;1342;207;3701;3671;301;301;430;363;363;367;966;2817;1813;2465;2751;2585;5882.58;15575;33636;38575;703;1110;767;1194;337;572.28;2633.19 -5801;'199;Least Developed Countries;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;745;885;612;612;612;612;612;612;612;115;0;38;52;48;48;64;10;77;77;11;11;51;100;100;20;351;419;254;829;1153;790;1009.56;1656;4285;5167;99;122;306;595;197;374.91;1504.52 -5801;'199;Least Developed Countries;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;316;1900;2499;2294;1094;594;594;9544;170;170;203;2825;2825;2825;2089;3305;3141;3150;5341;5361;28385;30587;45743;16001;12924;7;5649;42028;88129;104581;68187;13675 -5801;'199;Least Developed Countries;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;160;286;272;123;72;72;296;13;13;15;381;381;381;228;425;435;457;2045;1755;2583.45;3821;5212;2474;2272;1;171;3517;7000;9548;5996;1981 -5801;'199;Least Developed Countries;1627;Wood fuel, coniferous;5516;Production;m3;1745570;1774481;1816948;1822981;1889593;1899907;1931895;1973502;2015733;2002602;1993313;2024657;2034172;2071232;2132052;2164197;2204435;2258492;2289880;2319024;2355529;2397418;2422709;2517879;2619526;2645288;2663470;2745083;2833238;2907879;3039757;3164166;5818537;5998081;6141526;6233775;6390192;6474307;6613954;6753738;6859784;6967839;7077949;7190154;7304499;7314768;7510680;7616614;7724206;7842788;7937710;8042333;8149288;8258157;8368887;8464069;8560823;8659176;8760835;8862911;8964706;9068233;9173524 -5801;'199;Least Developed Countries;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;550;594;501;686;288;478.28;1394.19 -5801;'199;Least Developed Countries;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;49;143;261;105;138.91;236.52 -5801;'199;Least Developed Countries;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5327;32703;86062;102514;64770;10975 -5801;'199;Least Developed Countries;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85;2882;6857;9405;5310;1254 -5801;'199;Least Developed Countries;1628;Wood fuel, non-coniferous;5516;Production;m3;215632552;218674724;222707062;226897757;230989635;236873925;241685537;246037369;250559412;255174977;260104243;265063765;269721273;273115693;279196699;283388570;288867283;294807157;300134895;306694973;311264354;317034270;323193572;331409743;339857239;345823840;351157993;357730277;365516160;387398970;396725281;404067899;409737513;418301435;426769234;432357043;434483595;439883068;445327013;457978262;466688543;469169881;478102505;483928607;492902315;500645206;505900308;512448893;517794801;523571373;530434647;531165854;535649767;540285279;545748544;549942553;554252145;558684446;563148313;567711162;572318738;577050276;588547046 -5801;'199;Least Developed Countries;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;153;516;266;508;49;94;1239 -5801;'199;Least Developed Countries;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;73;163;334;92;236;1268 -5801;'199;Least Developed Countries;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;322;9325;2067;2067;3417;2700 -5801;'199;Least Developed Countries;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;86;635;143;143;686;727 -5801;'199;Least Developed Countries;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;40000;43000;32700;32700;32700;32700;32700;32700;32700;1400;0;910;1074;967;967;1342;207;3701;3671;301;301;430;363;363;367;966;2817;1813;2465;2751;2585;5882.58;15575;33636;38575;;;;;;; -5801;'199;Least Developed Countries;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;38;52;48;48;64;10;77;77;11;11;51;100;100;20;351;419;254;829;1153;790;1009.56;1656;4285;5167;;;;;;; -5801;'199;Least Developed Countries;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;316;1900;2499;2294;1094;594;594;9544;170;170;203;2825;2825;2825;2089;3305;3141;3150;5341;5361;28385;30587;45743;16001;12924;;;;;;; -5801;'199;Least Developed Countries;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;160;286;272;123;72;72;296;13;13;15;381;381;381;228;425;435;457;2045;1755;2583.45;3821;5212;2474;2272;;;;;;; -5801;'199;Least Developed Countries;1865;Industrial roundwood;5516;Production;m3;14801000;14775000;15098000;15894000;16544000;17179000;18310000;19144300;20347000;20593600;21527400;20421300;20965200;20640500;20549500;20912500;21912900;22417000;23232000;23745600;23719350;24209800;24057100;23879400;25125660;25648011;25938368;26463159;27687705;28354187;28986691;30197395;30304191;30669829;32195814;32796276;33634515;33276172;35371097;35452651;35612890;36344769;37086265;37348380;37748510;38745231;39579955;40674600;40313949;41551274;43318023;44088498;45940599;47344395;45712140;46260877;46824573;46771864;47213784;47174126;48066126;49085126;49035126 -5801;'199;Least Developed Countries;1865;Industrial roundwood;5616;Import quantity;m3;26200;28800;29000;15200;13000;18500;24100;47300;52300;65300;107100;31000;42500;61100;38000;41600;35000;29700;57300;47200;51500;48200;43300;47500;140100;60190;74710;87653;99800;3985;5468;21678;37511;79977;43356;60402;56545;114646;85720;76165;86778;218170;293912;444412;102059;69539;82424;75884;56821;83244;87236;109977;134497.13;313858.13;129724;168469;240876;242845;310986;232217;255144;324786;1302493 -5801;'199;Least Developed Countries;1865;Industrial roundwood;5622;Import value;1000 USD;622;813;788;454;510;834;1113;1586;1521;1660;2372;1124;2067;4483;2291;2964;3902;2783;5779;6558;8064;7493;6993;8193;16351;8555;10103;11709;14610;570;796;2860;4776;10103;11352;12204;11201;17373;12955;13559;15158;26450;37953;34036;11939.2;8509;11047;23890;15069.3;25939.1;21055.2;27064.28;42656.72;70567.72;22895;26334;47957;46507;53431;44266;37321;52468;36478 -5801;'199;Least Developed Countries;1865;Industrial roundwood;5916;Export quantity;m3;516400;455100;561100;646300;596100;614600;611000;753600;928100;873800;980400;1006900;1353100;1130200;785850;1078607;979800;965100;1123400;1308400;1142900;1066200;1112800;1071700;1134800;1270986;1126928;1667827;1796200;2630497;2369387;3269593;2269652;2395029;2661512;2282725;1744989;1957224;2519101;3442625;3050260;3067950;3097641;3621597;5121451;4168872;4455807;4103680;3332760;4686748;5895816;6022775;6568097;7465498;6456261;5806096;5538588;5013716;4105032;3338666;3918737;3155397;2772101 -5801;'199;Least Developed Countries;1865;Industrial roundwood;5922;Export value;1000 USD;18175;21568;27845;30496;29336;30944;27184;36329;43331;34344;44087;47178;77381;79037;56233;88917;88395;128285;172359;210243;175208;149817;159353;165278;162799;146622;163987;244691;231006;381985;403436;528090;452900;484787;528329;458882;332621;312245;390272;665899;656926;699599;705225;642622;1008032;1051141;1310723;1440499;1081712;1652895;2184247;2391798;3044638.4;3876717;2047318;1695238;1663673;1550657;1291800;886996;1171307;906581;678354 -5801;'199;Least Developed Countries;1866;Industrial roundwood, coniferous;5516;Production;m3;742000;734000;745000;783000;805000;899000;954000;1002300;1088000;1182600;1245400;1287300;1276200;1294500;1297500;1330500;1342900;1349000;1345000;1417600;1400100;1351800;1334000;1367000;1516000;1642000;1751000;1747000;1759000;1932000;2072000;2357000;2531000;2659000;3021800;2729000;2788800;2889500;3040500;2772200;2820200;2826800;2930900;2860200;2890200;2943000;3074550;3132430;3090813;3159745;3479745;3924745;4154701;4162823;4204273;4249029;4600900;4849900;4849900;4849900;4849900;4849900;4849900 -5801;'199;Least Developed Countries;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2841;4790;13626;13058;12710;10352;18645;14387;13438;28311;14679;14542;17520;25887;60451;38192;29155;42341;45218;24761;39919;28234;42866;29241;81813;36196;49124;86961;156006;205005;151386;169605;170958;152505 -5801;'199;Least Developed Countries;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;461;670;2086;2038;1924;1532;2570;2168;2028;2838;2172;2114;2067;2769;4381;3482.2;2675;3595;3889;1772.3;6334;4670.2;8567;4801;24316;7674;8235;15714;22495;31642;24391;18947;18484;15452 -5801;'199;Least Developed Countries;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34614;173730;233762;265888;425141;397844;202162;114662;125488;165395;12847;12447;104257;149731;219769;186631;155117;200426;69418;57246;100726;71278;58373;51130;87183;53313;26369;22630;26377;42709;30209;37812;28965;13652 -5801;'199;Least Developed Countries;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1569;7859;14923;18590;68643;23450;18803;11455;13877;11676;895;886;5796;10998;13265;14961;8313;12574;10511;4928;8638;9451;7906;10356;13486;11905;6646;7374;5070;14221;8885;12367;13168;2368 -5801;'199;Least Developed Countries;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2841;4790;13626;13058;12710;10352;18645;14387;13438;28311;14679;14542;17520;25887;60451;38192;29155;42341;45218;24761;39919;28234;42866;29241;81813;36196;49124;86961;156006;205005;151386;169605;170958;152505 -5801;'199;Least Developed Countries;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;461;670;2086;2038;1924;1532;2570;2168;2028;2838;2172;2114;2067;2769;4381;3482.2;2675;3595;3889;1772.3;6334;4670.2;8567;4801;24316;7674;8235;15714;22495;31642;24391;18947;18484;15452 -5801;'199;Least Developed Countries;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34614;173730;233762;265888;425141;397844;202162;114662;125488;165395;12847;12447;104257;149731;219769;186631;155117;200426;69418;57246;100726;71278;58373;51130;87183;53313;26369;22630;26377;42709;30209;37812;28965;13652 -5801;'199;Least Developed Countries;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1569;7859;14923;18590;68643;23450;18803;11455;13877;11676;895;886;5796;10998;13265;14961;8313;12574;10511;4928;8638;9451;7906;10356;13486;11905;6646;7374;5070;14221;8885;12367;13168;2368 -5801;'199;Least Developed Countries;1867;Industrial roundwood, non-coniferous;5516;Production;m3;14059000;14041000;14353000;15111000;15739000;16280000;17356000;18142000;19259000;19411000;20282000;19134000;19689000;19346000;19252000;19582000;20570000;21068000;21887000;22328000;22319250;22858000;22723100;22512400;23609660;24006011;24187368;24716159;25928705;26422187;26914691;27840395;27773191;28010829;29174014;30067276;30845715;30386672;32330597;32680451;32792690;33517969;34155365;34488180;34858310;35802231;36505405;37542170;37223136;38391529;39838278;40163753;41785898;43181572;41507867;42011848;42223673;41921964;42363884;42324226;43216226;44235226;44185226 -5801;'199;Least Developed Countries;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1144;678;8052;24453;67267;33004;41757;42158;101208;57409;61486;72236;200650;268025;383961;63867;40384;40083;30666;32060;43325;59002;67111;105256.13;232045.13;93528;119345;153915;86839;105981;80831;85539;153828;1149988 -5801;'199;Least Developed Countries;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109;126;774;2738;8179;9820;9634;9033;15345;10117;11387;13044;24383;35184;29655;8457;5834;7452;20001;13297;19605.1;16385;18497.28;37855.72;46251.72;15221;18099;32243;24012;21789;19875;18374;33984;21026 -5801;'199;Least Developed Countries;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2595883;2195657;3035831;2003764;1969888;2263668;2080563;1630327;1831736;2353706;3429778;3037813;2963693;2947910;3401828;4934820;4013755;4255381;4034262;3275514;4586022;5824538;5964402;6516967;7378315;6402948;5779727;5515958;4987339;4062323;3308457;3880925;3126432;2758449 -5801;'199;Least Developed Countries;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;380416;395577;513167;434310;416144;504879;440079;321166;298368;378596;665004;656040;693803;694227;629357;993071;1042828;1298149;1429988;1076784;1644257;2174796;2383892;3034282.4;3863231;2035413;1688592;1656299;1545587;1277579;878111;1158940;893413;675986 -5801;'199;Least Developed Countries;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;824;208;4139;20439;66738;19814;28239;28726;76443;51897;57355;57355;72888;72030;25458;23941;9361;11126;13607;18624;15769;14769;34725;54910;188138;84119;110054;134246;31976;31717;10192;12320;25331;674240 -5801;'199;Least Developed Countries;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71;28;370;2374;8101;2456;4042;4528;9251;9161;10556;10500;12210;12166;4755;4583;1610;1713;4038;6547;11221;4081;8735.28;20222;27252;11724;15551;25585;11256;8617;2713;3414;7109;6825 -5801;'199;Least Developed Countries;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2595248;2195167;3034753;2002686;1969860;2212665;2034617;1598312;1677642;2157699;3200309;2948295;2872403;2843412;3154125;4647931;3825507;4194631;4008213;3250463;4483466;5592665;5898497;6491904;7356240;6400353;5772537;5515398;4987251;4061829;3308165;3880072;3086931;2757611 -5801;'199;Least Developed Countries;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;380276;395498;513017;434160;416140;489994;427174;311429;277731;347702;618803;629455;664330;654491;584892;946795;1014711;1275683;1418897;1065554;1609764;2100242;2360697;3024290;3853548;2034771;1687123;1656186;1545570;1277475;877955;1158717;865067;674860 -5801;'199;Least Developed Countries;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;320;470;3913;4014;529;13190;13518;13432;24765;5512;4131;14881;127762;195995;358503;39926;31023;28957;17059;13436;27556;44233;32386;50346.13;43907.13;9409;9291;19669;54863;74264;70639;73219;128497;475748 -5801;'199;Least Developed Countries;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;98;404;364;78;7364;5592;4505;6094;956;831;2544;12173;23018;24900;3874;4224;5739;15963;6750;8384.1;12304;9762;17633.72;18999.72;3497;2548;6658;12756;13172;17162;14960;26875;14201 -5801;'199;Least Developed Countries;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;635;490;1078;1078;28;51003;45946;32015;154094;196007;229469;89518;91290;104498;247703;286889;188248;60750;26049;25051;102556;231873;65905;25063;22075;2595;7190;560;88;494;292;853;39501;838 -5801;'199;Least Developed Countries;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140;79;150;150;4;14885;12905;9737;20637;30894;46201;26585;29473;39736;44465;46276;28117;22466;11091;11230;34493;74554;23195;9992.4;9683;642;1469;113;17;104;156;223;28346;1126 -5801;'199;Least Developed Countries;1868;Sawlogs and veneer logs;5516;Production;m3;5788000;5489000;5574000;6128000;6517000;6885000;7665000;8233300;9133000;9097600;9694400;8311300;8589200;8286500;7872500;7889500;8335900;8475000;8720000;8868000;8484250;8391100;7922500;7433800;8054400;8155411;7849768;8025559;8392105;8814587;8973091;9466795;8788491;8574129;8961214;9022626;9360715;10120622;10448197;10886751;11358990;11593469;11496465;11411480;11555610;12100331;12806055;13912300;13551649;14784340;17729078;19097753;20890024;21719820;20355485;20742581;21194024;21052404;21490404;21450404;22342404;23361404;23311404 -5801;'199;Least Developed Countries;1868;Sawlogs and veneer logs;5616;Import quantity;m3;23800;23800;22900;11700;9700;13700;20800;29400;32300;39900;41000;16900;33900;46500;32600;34700;27400;22100;51500;47000;46300;43000;38100;42300;134900;54990;69510;82453;94600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5801;'199;Least Developed Countries;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;547;547;591;249;265;580;762;1152;1069;1322;1416;766;1759;4018;2042;2633;3525;2406;5474;6487;5516;4945;4445;5645;13803;6007;7555;9161;12062;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5801;'199;Least Developed Countries;1868;Sawlogs and veneer logs;5916;Export quantity;m3;508000;441900;543700;638900;584500;606000;604500;746700;921400;865300;971200;1004900;1350300;1129100;784750;1077507;979400;964800;1121800;1307500;1142700;1066000;1112200;1071100;1134200;1270786;1126728;1667627;1796000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5801;'199;Least Developed Countries;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;18137;21522;27740;30411;29196;30855;27109;36241;43217;34216;43950;47085;77273;79015;56211;88895;88344;128239;172090;210112;175184;149793;159301;165226;162747;146608;163973;244677;230992;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5801;'199;Least Developed Countries;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;645000;635000;644000;674000;694000;785000;838000;883300;967000;1058600;1113400;1152300;1140200;1158500;1158500;1189500;1199900;1205000;1200000;1269000;1251000;1188600;1169000;1192000;1273000;1310000;1326000;1322000;1333000;1495000;1628000;1707000;1896000;2082000;2407300;2121000;2176800;2229300;2382300;2116000;2164000;2170600;2264700;2194000;2219000;2271800;2404350;2473830;2432213;2501145;2821145;3296145;3554101;3562223;3600223;3641223;3879223;3980223;3980223;3980223;3980223;3980223;3980223 -5801;'199;Least Developed Countries;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;7600;100;1400;4700;2200;9800;2400;8700;8500;8500;8500;8500;11086;8410;8400;8400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5801;'199;Least Developed Countries;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;1619;42;336;1134;361;1331;510;1119;1058;1058;1058;1058;1513;1021;1019;1019;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5801;'199;Least Developed Countries;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;;8200;28700;12700;5700;5700;31700;24100;50300;28900;3500;3500;3500;3500;3500;3500;3500;3500;3500;3500;3500;100;100;100;100;100;100;100;2000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5801;'199;Least Developed Countries;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;;58;304;132;164;168;463;392;1472;825;60;60;60;60;60;60;60;60;60;60;60;15;15;15;15;15;15;15;364;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5801;'199;Least Developed Countries;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;5143000;4854000;4930000;5454000;5823000;6100000;6827000;7350000;8166000;8039000;8581000;7159000;7449000;7128000;6714000;6700000;7136000;7270000;7520000;7599000;7233250;7202500;6753500;6241800;6781400;6845411;6523768;6703559;7059105;7319587;7345091;7759795;6892491;6492129;6553914;6901626;7183915;7891322;8065897;8770751;9194990;9422869;9231765;9217480;9336610;9828531;10401705;11438470;11119436;12283195;14907933;15801608;17335923;18157597;16755262;17101358;17314801;17072181;17510181;17470181;18362181;19381181;19331181 -5801;'199;Least Developed Countries;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;23800;23800;22900;11700;9700;13700;20800;29400;32300;39900;41000;16900;33900;38900;32500;33300;22700;19900;41700;44600;37600;34500;29600;33800;126400;43904;61100;74053;86200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5801;'199;Least Developed Countries;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;547;547;591;249;265;580;762;1152;1069;1322;1416;766;1759;2399;2000;2297;2391;2045;4143;5977;4397;3887;3387;4587;12745;4494;6534;8142;11043;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5801;'199;Least Developed Countries;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;508000;433700;515000;626200;578800;600300;572800;722600;871100;836400;967700;1001400;1346800;1125600;781250;1074007;975900;961300;1118300;1304000;1139200;1065900;1112100;1071000;1134100;1270686;1126628;1667527;1794000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5801;'199;Least Developed Countries;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;18137;21464;27436;30279;29032;30687;26646;35849;41745;33391;43890;47025;77213;78955;56151;88835;88284;128179;172030;210052;175124;149778;159286;165211;162732;146593;163958;244662;230628;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5801;'199;Least Developed Countries;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;270000;264000;252000;217000;201000;201000;201000;201000;201000;200000;188400;188400;188400;404400;573400;545400;537400;539400;533400;647900;798566;798667;799009;799009;799009;799009 -5801;'199;Least Developed Countries;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;163000;157000;145000;145000;145000;145000;145000;145000;145000;144000;132400;132400;132400;132400;216400;188400;188400;188400;188400;307400;455400;455400;455400;455400;455400;455400 -5801;'199;Least Developed Countries;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107000;107000;107000;72000;56000;56000;56000;56000;56000;56000;56000;56000;56000;272000;357000;357000;349000;351000;345000;340500;343166;343267;343609;343609;343609;343609 -5801;'199;Least Developed Countries;1870;Pulpwood and particles (1961-1997);5516;Production;m3;;50000;90000;120000;115000;100000;120000;125000;160000;170000;235000;230000;221000;214000;203000;203000;203000;203000;203000;203000;203000;103000;145000;104000;75660;69000;226000;214000;214000;214000;214000;450000;303000;222000;244500;229000;229000;;;;;;;;;;;;;;;;;;;;;;;;;; -5801;'199;Least Developed Countries;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;198000;183000;116000;134500;122000;122000;;;;;;;;;;;;;;;;;;;;;;;;;; -5801;'199;Least Developed Countries;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;;50000;90000;120000;115000;100000;120000;125000;160000;170000;235000;230000;221000;214000;203000;203000;203000;203000;203000;203000;203000;103000;145000;104000;75660;69000;226000;214000;214000;214000;214000;252000;120000;106000;110000;107000;107000;;;;;;;;;;;;;;;;;;;;;;;;;; -5801;'199;Least Developed Countries;1871;Other industrial roundwood;5516;Production;m3;9013000;9236000;9434000;9646000;9912000;10194000;10525000;10786000;11054000;11326000;11598000;11880000;12155000;12140000;12474000;12820000;13374000;13739000;14309000;14674600;15032100;15715700;15989600;16341600;16995600;17423600;17862600;18223600;19081600;19325600;19799600;20280600;21212700;21873700;22990100;23544650;24044800;22885550;24658900;24313900;24036900;24550300;25388800;25735900;25991900;26443900;26573900;26573900;26573900;26578534;25184545;24417345;24505175;25087175;24817255;24984896;24982649;24920894;24924713;24924713;24924713;24924713;24924713 -5801;'199;Least Developed Countries;1871;Other industrial roundwood;5616;Import quantity;m3;2400;5000;6100;3500;3300;4800;3300;17900;20000;25400;66100;14100;8600;14600;5400;6900;7600;7600;5800;200;5200;5200;5200;5200;5200;5200;5200;5200;5200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5801;'199;Least Developed Countries;1871;Other industrial roundwood;5622;Import value;1000 USD;75;266;197;205;245;254;351;434;452;338;956;358;308;465;249;331;377;377;305;71;2548;2548;2548;2548;2548;2548;2548;2548;2548;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5801;'199;Least Developed Countries;1871;Other industrial roundwood;5916;Export quantity;m3;8400;13200;17400;7400;11600;8600;6500;6900;6700;8500;9200;2000;2800;1100;1100;1100;400;300;1600;900;200;200;600;600;600;200;200;200;200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5801;'199;Least Developed Countries;1871;Other industrial roundwood;5922;Export value;1000 USD;38;46;105;85;140;89;75;88;114;128;137;93;108;22;22;22;51;46;269;131;24;24;52;52;52;14;14;14;14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5801;'199;Least Developed Countries;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;97000;99000;101000;109000;111000;114000;116000;119000;121000;124000;132000;135000;136000;136000;139000;141000;143000;144000;145000;148600;149100;163200;165000;175000;243000;332000;425000;425000;426000;437000;444000;452000;452000;461000;480000;486000;490000;497200;501200;511200;511200;511200;521200;521200;526200;526200;526200;526200;526200;526200;526200;412200;412200;412200;415650;419406;414277;414277;414277;414277;414277;414277;414277 -5801;'199;Least Developed Countries;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;8916000;9137000;9333000;9537000;9801000;10080000;10409000;10667000;10933000;11202000;11466000;11745000;12019000;12004000;12335000;12679000;13231000;13595000;14164000;14526000;14883000;15552500;15824600;16166600;16752600;17091600;17437600;17798600;18655600;18888600;19355600;19828600;20760700;21412700;22510100;23058650;23554800;22388350;24157700;23802700;23525700;24039100;24867600;25214700;25465700;25917700;26047700;26047700;26047700;26052334;24658345;24005145;24092975;24674975;24401605;24565490;24568372;24506617;24510436;24510436;24510436;24510436;24510436 -5801;'199;Least Developed Countries;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;2400;5000;6100;3500;3300;4800;3300;17900;20000;25400;66100;14100;8600;14600;5400;6900;7600;7600;5800;200;5200;5200;5200;5200;5200;5200;5200;5200;5200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5801;'199;Least Developed Countries;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;75;266;197;205;245;254;351;434;452;338;956;358;308;465;249;331;377;377;305;71;2548;2548;2548;2548;2548;2548;2548;2548;2548;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5801;'199;Least Developed Countries;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;8400;13200;17400;7400;11600;8600;6500;6900;6700;8500;9200;2000;2800;1100;1100;1100;400;300;1600;900;200;200;600;600;600;200;200;200;200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5801;'199;Least Developed Countries;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;38;46;105;85;140;89;75;88;114;128;137;93;108;22;22;22;51;46;269;131;24;24;52;52;52;14;14;14;14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5801;'199;Least Developed Countries;1630;Wood charcoal;5510;Production;t;3595143;3706857;3822675;4234661;4361994;4472484;4624672;4749207;4917454;5029767;5143553;5294148;5483111;5646843;5834243;6007124;6218557;6441864;6663247;6948506;7170596;7432854;7731910;8119455;8548245;8859730;9081979;9418471;9747160;10154720;10511764;10052577;10396662;10901799;12025661;12653979;12761013;13111796;13076817;13232712;13764117;14355538;14850355;15489726;15959240;16412322;17105487;17785147;18293735;19137256;19436919;19799239;20891474;21325000;21760206;22155459;22626827;23163512;23366058;23774178;24651796;26074028;26395119 -5801;'199;Least Developed Countries;1630;Wood charcoal;5610;Import quantity;t;4900;500;100;2100;17600;15200;20800;14100;13300;11600;7700;6700;2300;800;;;;;;;;;;;;;;;;;;58;78;47;624;594;1809;1714;2015;2001;999;984;338;338;338;376;722;1353;1064.2;3028;1408;4420.25;9701.26;9275.26;4955.29;7534;24391;23528;7935;5073;13850.95;126281;151646 -5801;'199;Least Developed Countries;1630;Wood charcoal;5622;Import value;1000 USD;153;7;2;35;285;240;332;275;296;254;165;152;48;23;;;;;;;;;;;;;;;;;;10;14;11;130;123;256;210;265;265;214;211;147;147;147;114;397;586;597;1358;882;2225.38;3198.58;2932.39;1648.25;2265;8528;7915;2327;4560;4954;44954;20955 -5801;'199;Least Developed Countries;1630;Wood charcoal;5910;Export quantity;t;28200;;;;;;;;;;;;200;200;400;400;100;100;100;100;100;100;100;100;100;100;100;100;100;100;100;22983;28140;41512;17513;57413;45292;30451;31900;102407;129475;131457;190003;196844;202600;246893;211427;353213;398721;431310;527387;429140;281953;400255;323661;260319;265829;302487;332670;255356;168705;431959;581049 -5801;'199;Least Developed Countries;1630;Wood charcoal;5922;Export value;1000 USD;853;;;;;;;;;;;;36;36;69;69;15;15;15;15;15;15;15;15;15;15;15;15;15;15;15;2185;3065;5555;1359;9876;6858;3874;4050;15676;25412;25222;32284;27579;35225;47545;46698;49020;58163;62577;86396;79607;62557;89009;76844;73887;71117;77164;88884;73427;66364;151054;205283 -5801;'199;Least Developed Countries;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82700;85300;87300;92700;113600;108800;119600;115600;126000;119600;121000;120210;120752;120752;123752;423204;1052150;1007110;1057567;1157781;1368881;1368881;1368881;1368881;1368881;1368881 -5801;'199;Least Developed Countries;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5421;533;599;1499;1507;2660;8384;8384;6186;11282;18705;5683;5264;7198;8736.2;7898.27;14130.82;8342.85;7692.85;16073.85;716542.85;867426.82;837759.82;221224.82;1445813.28;1424767.82 -5801;'199;Least Developed Countries;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;236;29;33;55;58;224;333;333;403;3420;4266;1737.2;1860;2965;3053;3229.4;5995.66;3602.66;3250.66;2743.66;40351.66;58858.66;62681.66;17833.66;98489.76;105993.84 -5801;'199;Least Developed Countries;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1380;6740;1056;736;708;1327;9710;9710;11963;2908;119617;322629;535048;706708;608674;190683;194102;175410;76216;135632;16736;18709;17935;19918;23954;37926 -5801;'199;Least Developed Countries;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56;209;49;35;37;295;653;653;741;452;12969;20840;32601;42225;37894;16255;22124;18906;11209;14937;4510;3708;1372;1473;1561;2822 -5801;'199;Least Developed Countries;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7200;7200;7200;12600;33500;33500;42000;38000;49300;45100;45100;45100;45100;45100;45100;241552;422498;425458;424760;466516;541616;541616;541616;541616;541616;541616 -5801;'199;Least Developed Countries;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60;41;47;3567;3567;1618;67;382;447;447;338;220;1000;1000;970;7668;7918;2542;4338;2882;4466.2;2279;6960;4985.03;4730.03;3448.03;703302.03;772911;836636;220412;1444845.47;1416821 -5801;'199;Least Developed Countries;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;2;2;1361;1361;78;2;11;15;15;10;20;53;53;62;3137;3006;1293.2;1381;1078;1265;1307;3339;2236;2348;1440;38910;53837;62113;17579;98043.1;104067.18 -5801;'199;Least Developed Countries;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;112;112;112;53;53;6121;117;117;78;727;8270;8270;10152;1806;109795;309318;498108;683721;576687;161544;179000;165546;72837;128848;8547;13307;16885;18746;22407;36338 -5801;'199;Least Developed Countries;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;5;5;5;2;2;177;3;3;3;64;416;416;487;136;12347;20075;31418;40820;36010;14086;20347;18306;10460;12734;1643;3161;1114;1214;1355;2513 -5801;'199;Least Developed Countries;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;10000;30000;53000;50000;65500;73500;73500;73500;73500;73500;75500;78100;80100;80100;80100;75300;77600;77600;76700;74500;75900;75110;75652;75652;78652;181652;629652;581652;632807;691265;827265;827265;827265;827265;827265;827265 -5801;'199;Least Developed Countries;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;444;369;369;255;5368;5671;5354;151;152;1052;1169;2440;7384;7384;5216;3614;10787;3141;926;4316;4270;5619.27;7170.82;3357.82;2962.82;12625.82;13240.82;94515.82;1123.82;812.82;967.82;7946.82 -5801;'199;Least Developed Countries;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;13;13;12;223;326;234;18;18;40;48;204;280;280;341;283;1260;444;479;1887;1788;1922.4;2656.66;1366.66;902.66;1303.66;1441.66;5021.66;568.66;254.66;446.66;1926.66 -5801;'199;Least Developed Countries;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3407;4013;5073;3452;1863;1463;1327;619;939;619;630;600;1440;1440;1811;1102;9822;13311;36940;22987;31987;29139;15102;9864;3379;6784;8189;5402;1050;1172;1547;1588 -5801;'199;Least Developed Countries;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119;352;387;291;81;57;54;32;46;32;34;231;237;237;254;316;622;765;1183;1405;1884;2169;1777;600;749;2203;2867;547;258;259;206;309 -5801;'199;Least Developed Countries;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35000;48000;56000;56000;56000;56000;56000 -5801;'199;Least Developed Countries;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;557.7;1000;115;1059;1059;20241;38557;10287;16953.5;8430.98;1804.71 -5801;'199;Least Developed Countries;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;174.3;356;18;241;242;1215;4434;1686;2078;1663.67;1139.49 -5801;'199;Least Developed Countries;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1989;23858;9118;15977.39;13865.03;8651.64 -5801;'199;Least Developed Countries;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;693;5011;3862;4041;3843.87;2610.09 -5801;'199;Least Developed Countries;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23000;29000;29000;29000;29000;29000;29000 -5801;'199;Least Developed Countries;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;557;997;114;600;600;600;1294;333;292;365.87;95.6 -5801;'199;Least Developed Countries;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;174;337;15;46;47;47;380;229;247;353.95;75.76 -5801;'199;Least Developed Countries;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3161;2812;2819;426.82;1056.82 -5801;'199;Least Developed Countries;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;238;60;61;66.76;165.76 -5801;'199;Least Developed Countries;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12000;19000;27000;27000;27000;27000;27000 -5801;'199;Least Developed Countries;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.7;3;1;459;459;19641;37263;9954;16661.5;8065.11;1709.11 -5801;'199;Least Developed Countries;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.3;19;3;195;195;1168;4054;1457;1831;1309.73;1063.73 -5801;'199;Least Developed Countries;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1989;20697;6306;13158.39;13438.21;7594.82 -5801;'199;Least Developed Countries;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;693;4773;3802;3980;3777.11;2444.33 -5801;'199;Least Developed Countries;1872;Sawnwood;5516;Production;m3;2116100;2102000;2190100;2420600;2499900;3683500;3571600;3568200;3198800;3079900;3235400;2885600;2964200;2882000;2679700;2434000;2644800;2566200;2766000;2750100;2736300;2675500;2592800;2574200;2492700;2495600;2567000;2488950;2385550;2624300;2891200;2818700;3097750;3246350;3490300;3237300;3255800;3000400;3081400;3033500;3164000;3721800;3770050;3938750;4284536;4477763;4534636;4646775;4825949;5041157;5523613;5994130;6669980;7210792;6831573;6354106;6601168;6364801;6618029;6214209;6953731;7391157;7391157 -5801;'199;Least Developed Countries;1872;Sawnwood;5616;Import quantity;m3;138100;158950;190200;219400;220400;251550;257700;292400;267150;263800;308450;186850;157800;179510;182900;133150;144750;162000;160900;229700;230000;177200;159650;142050;204558;206113;206457;269082;226097;174819;184091;281864;114090;99989;206079;277277;280598;277340;301085;298333;336419;392360;473609;654208;650422;794367;812368;745363;945177;1074666;999887;1000044;1191022;1222130;975910;1018285;990740;1001403;1313199;1420965;1232696;984062;983579 -5801;'199;Least Developed Countries;1872;Sawnwood;5622;Import value;1000 USD;6160;7337;10246;11435;10845;12085;12174;14748;13366;14878;19544;11555;11953;24726;28751;23867;24696;25891;27364;39000;47145;34825;35451;27131;33165;35674;40314;51884;41782;35279;37236;55892;18919;17997;48567;64288;68622;61334;54845;53290;60099;67422;82637;118682;118094;150920;225348;239969.1;260946;295960;293360;305142;402938;417483;260085;257239;278031;335645;328077;336817;358581;255082;226344 -5801;'199;Least Developed Countries;1872;Sawnwood;5916;Export quantity;m3;283050;307350;345650;405500;395850;439350;419250;415200;449900;434600;436800;438900;466000;413700;365300;304300;300800;328800;372400;308900;235700;204650;209100;194100;171000;157418;129272;144725;265105;245247;649747;524541;634397;620134;608732;604747;559783;501508;382880;307123;565030;674096;837249;680165;763970;861078;1110372;823569;803929;962933;1134312;1163306;1604505;2167791;1682542;1028535;1034134;913993;971162;1041523;1367243;1432610;1639705 -5801;'199;Least Developed Countries;1872;Sawnwood;5922;Export value;1000 USD;20506;22687;27401;26621;28442;30347;29277;30097;34757;32293;30816;31940;40182;53396;40068;54197;52751;56886;81950;100339;74143;61428;65400;51465;64253;55584;45493;42512;64242;72192;211873;174314;174205;163100;187162;188467;158868;134944;93003;78713;193148;211945;228149;209037;248744;338687;434327;496174;418101;541072;701911.1;713592;937567;1341049;1144991;617167;593798;571873;510921;469716;566238;635346;691913 -5801;'199;Least Developed Countries;1632;Sawnwood, coniferous;5516;Production;m3;290050;297400;312050;335350;337650;731650;653200;665150;460700;519400;567050;536200;582400;582600;548600;616100;621400;606400;604000;542500;534400;513000;506050;526700;520700;572950;572250;590575;592775;619500;621900;640800;910600;1108000;1206100;994600;972600;830600;880600;732600;732600;710300;714300;795800;737700;750000;751200;809400;819400;840300;872000;881300;944923;945200;956691;930064;982971;976135;997135;916135;916835;916835;916835 -5801;'199;Least Developed Countries;1632;Sawnwood, coniferous;5616;Import quantity;m3;68850;89800;111400;130050;99750;128350;123150;164050;131750;144900;174300;106250;87750;97760;111900;51100;42250;61450;49500;53200;114150;89550;82900;72400;118003;134807;115391;164144;118747;90299;97171;81492;65024;66510;87304;139200;136024;115628;149325;139293;156040;206116;283878;449873;448718;557580;590809;521427;720794;796311;720221;746836;809049;750255;791683;804992;714734;745274;836371;880521;681578;558629;599319 -5801;'199;Least Developed Countries;1632;Sawnwood, coniferous;5622;Import value;1000 USD;3251;4481;6123;6742;4982;5936;6604;8755;7010;9069;11971;6239;5962;16037;19635;12365;9842;10910;9568;8199;27774;14406;16783;13836;17656;21266;21314;30310;20292;16896;12577;13986;10106;11876;17993;32587;31411;30233;23404;22264;21185;27471;37950;61150;62159;88908;127968;129857;143812;169979;153934;163184;189103;171676;163139;148471;144461;184227;186918;170668;185747;150754;139918 -5801;'199;Least Developed Countries;1632;Sawnwood, coniferous;5916;Export quantity;m3;1500;2200;1800;2800;3700;5800;5300;6100;4800;6000;2400;1700;1200;2900;2800;1000;1900;2100;2500;900;200;400;400;400;400;512;173;270;40;51;51;37663;38767;85962;89234;70652;57991;42531;58059;42578;59687;75486;80041;95807;91434;61590;48869;82913;74523;67635;53400;56851;45981;55704;54215;24572;74070;71882;81402;202633;184854;112995;117653 -5801;'199;Least Developed Countries;1632;Sawnwood, coniferous;5922;Export value;1000 USD;76;113;93;157;196;254;266;305;245;283;107;75;61;176;227;127;252;344;392;153;50;101;101;101;101;121;31;61;6;11;11;4587;5165;11442;12925;9738;6792;7930;8074;5035;8419;9509;11412;13366;13726;12993;13971;25434;17428;17825;15385;17761;14719;19151;16183;7728;14540;13064;14031;44345;50473;38910;38854 -5801;'199;Least Developed Countries;1633;Sawnwood, non-coniferous;5516;Production;m3;1826050;1804600;1878050;2085250;2162250;2951850;2918400;2903050;2738100;2560500;2668350;2349400;2381800;2299400;2131100;1817900;2023400;1959800;2162000;2207600;2201900;2162500;2086750;2047500;1972000;1922650;1994750;1898375;1792775;2004800;2269300;2177900;2187150;2138350;2284200;2242700;2283200;2169800;2200800;2300900;2431400;3011500;3055750;3142950;3546836;3727763;3783436;3837375;4006549;4200857;4651613;5112830;5725057;6265592;5874882;5424042;5618197;5388666;5620894;5298074;6036896;6474322;6474322 -5801;'199;Least Developed Countries;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;69250;69150;78800;89350;120650;123200;134550;128350;135400;118900;134150;80600;70050;81750;71000;82050;102500;100550;111400;176500;115850;87650;76750;69650;86555;71306;91066;104938;107350;84520;86920;200372;49066;33479;118775;138077;144574;161712;151760;159040;180379;186244;189731;204335;201704;236787;221559;223936;224383;278355;279666;253208;381973;471875;184227;213293;276006;256129;476828;540444;551118;425433;384260 -5801;'199;Least Developed Countries;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;2909;2856;4123;4693;5863;6149;5570;5993;6356;5809;7573;5316;5991;8689;9116;11502;14854;14981;17796;30801;19371;20419;18668;13295;15509;14408;19000;21574;21490;18383;24659;41906;8813;6121;30574;31701;37211;31101;31441;31026;38914;39951;44687;57532;55935;62012;97380;110112.1;117134;125981;139426;141958;213835;245807;96946;108768;133570;151418;141159;166149;172834;104328;86426 -5801;'199;Least Developed Countries;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;281550;305150;343850;402700;392150;433550;413950;409100;445100;428600;434400;437200;464800;410800;362500;303300;298900;326700;369900;308000;235500;204250;208700;193700;170600;156906;129099;144455;265065;245196;649696;486878;595630;534172;519498;534095;501792;458977;324821;264545;505343;598610;757208;584358;672536;799488;1061503;740656;729406;895298;1080912;1106455;1558524;2112087;1628327;1003963;960064;842111;889760;838890;1182389;1319615;1522052 -5801;'199;Least Developed Countries;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;20430;22574;27308;26464;28246;30093;29011;29792;34512;32010;30709;31865;40121;53220;39841;54070;52499;56542;81558;100186;74093;61327;65299;51364;64152;55463;45462;42451;64236;72181;211862;169727;169040;151658;174237;178729;152076;127014;84929;73678;184729;202436;216737;195671;235018;325694;420356;470740;400673;523247;686526.1;695831;922848;1321898;1128808;609439;579258;558809;496890;425371;515765;596436;653059 -5801;'199;Least Developed Countries;1634;Veneer sheets;5516;Production;m3;34600;37100;34100;42600;48300;43900;49700;110000;111600;103300;85600;72100;66100;67200;55200;58100;47700;52200;29900;28900;28900;25200;28800;29800;42300;42800;47200;52200;49500;52400;55700;27400;27150;30700;50950;52900;201600;200800;80800;51800;41800;145300;130300;134600;150600;175800;184800;185800;185800;184800;188800;190800;189800;253978;389113;526112;465000;477190;503290;510035;650035;632630;786692 -5801;'199;Least Developed Countries;1634;Veneer sheets;5616;Import quantity;m3;1200;800;2000;2200;2100;300;300;1200;1100;1400;1100;2000;1900;2200;5200;7500;4700;8500;4200;3900;3200;3900;3900;3900;3900;2636;2501;2530;2509;2550;2550;3227;1156;1077;1274;2689;4292;4348;5508;3928;5037;4228;5940;23314;22241;21861;44019;11688;9415;11250;36132;23086;127974;134973;66741;86758;54732;77875;149662;171843;235745;139636;128632 -5801;'199;Least Developed Countries;1634;Veneer sheets;5622;Import value;1000 USD;183;124;293;333;328;45;89;132;117;172;199;231;335;618;1209;1347;709;1909;741;1452;2609;3416;3426;3426;3426;2078;2021;2030;2043;2040;2040;2061;933;533;645;1106;1973;1650;2375;2083;2670;2333;4215;17361;16786;16602;34991;9787;6557;9291;18693;21038;55300;62473;36505;46781;53787;72559;94518;109181;171715;116634;115453 -5801;'199;Least Developed Countries;1634;Veneer sheets;5916;Export quantity;m3;30700;30300;26200;36700;25000;34100;15700;14400;40200;31000;24500;23000;7800;17900;17900;17900;3800;14300;19900;28200;35700;28500;20500;14400;11100;9500;9900;13100;6800;7000;8000;6737;4192;14197;25597;37716;188073;186525;69734;47154;26913;14377;8604;18415;13137;20240;34037;35371;40211;42565;42160.4;40666;47413;69948;199130;299255;223597;150170;143489;169270;316395;375891;411687 -5801;'199;Least Developed Countries;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;3373;5352;9944;12385;9455;9240;3516;2655;3002;2525;4407;2437;2768;2442;8450;4187;12381;17382;20363;56024;89807;32115;16369;9209;5411;4919;6725;6691;12782;15258;19334;18535;21008;20021.9;21029;23626;41065;95741;137595;119038;78987;80543;65195;84407;103735;107227 -5801;'199;Least Developed Countries;1873;Wood-based panels;5516;Production;m3;16900;29200;40600;55600;41800;39200;48800;77000;88000;97600;89148;110864;121274;129991;116328;112697;91374;96874;96574;111465;119212;125597;134363;148573;156473;143488;132403;124523;139123;134900;125900;128500;128560;123260;144960;244360;292660;287160;199660;234568;220550;234604;307362;276978;315652;311937;312272;312825;320895;367702;373202;374202;399455;429703;445647;526673;550279;589090;761390;882642;991693;1556175;1581171 -5801;'199;Least Developed Countries;1873;Wood-based panels;5616;Import quantity;m3;10982;11000;18618;21700;26600;35362;39256;74519;75841;55640;62418;96760;95629;114242;117309;99827;91735;100405;102705;98605;105605;107305;101405;104805;77348;48816;50936;45338;40537;35370;30730;108647;43554;49618;103479;80467;89056;145392;289965;146025;196980;179028;264808;305928;320727;372309;393063;418117;484055;653613;557578;667543.3;779147;892383;746790;1007994;1257042;1125452;1554032;1540263;1489482.46;1244191.77;1163406 -5801;'199;Least Developed Countries;1873;Wood-based panels;5622;Import value;1000 USD;1632;1843;2694;3388;4196;5144;5271;5669;6426;7318;8617;17353;24603;29999;30168;33040;32982;35510;38943;39927;43770;44182;41029;40213;35005;16896;18945;17572;14972;14540;11502;35987;20061;19842;36359;33871;35005;42117;40869;38061;50794;48598;76301;87118;91886;111776;148347;209634;215630;257817;287396;352480;391864;465391;394212;454980;539997;515146;555707;516658;519532.34;468979.05;446852 -5801;'199;Least Developed Countries;1873;Wood-based panels;5916;Export quantity;m3;7648;6948;8548;9848;15948;16248;13448;17248;8248;6300;4000;2500;2600;2616;1621;3700;2500;9000;9700;6700;9300;14100;12730;9030;8230;6730;7350;4300;6900;4711;4411;16967;20785;17891;32573;42707;39635;54926;26073;82891;67038;59992;95297;106466;114359;96536;97584;69352;52462;62577;56159;63225;72340;66005.51;70316;113778;126302;173917;285940;328898;465527.6;486906.07;466184.07 -5801;'199;Least Developed Countries;1873;Wood-based panels;5922;Export value;1000 USD;1103;787;976;1090;1495;1661;1471;1696;1297;883;825;548;669;662;293;862;450;1421;2434;1979;3233;4555;4432;2722;2575;2246;1946;1203;1584;1264;939;6048;7287;5466;8824;13176;9557;16271;8851;17040;9738;15935;26351;30077;30595;31995;31727;42216;27438;32734;32544;39376.4;41055.4;37525.22;41043;68021;54888;96547;211094;259544;363586;380448.41;307206.88 -5801;'199;Least Developed Countries;1640;Plywood and LVL;5516;Production;m3;16900;29200;40600;55400;41500;35900;39700;65200;72000;77800;66100;82900;95100;100300;86700;78800;57000;61800;65300;81291;88038;97023;103323;106473;111373;102148;83573;76523;82623;80200;74300;76900;76960;74760;101460;200960;230760;216460;112260;146968;136150;152604;255362;225378;274552;270837;274972;275325;282895;315702;317702;316702;333955;347203;363770;426691;427179;455990;625990;745542;854593;1233714;1238392 -5801;'199;Least Developed Countries;1640;Plywood and LVL;5616;Import quantity;m3;6582;7600;11418;11100;15500;19100;26400;25800;28300;38300;31900;53800;47100;55100;54800;45600;40400;50400;54200;49900;52000;53300;53400;56900;56743;33797;36233;34010;30176;26387;21647;80364;28773;35947;84143;62478;73235;124968;96238;84540;113539;108623;137271;146902;152695;183339;168394;219823;265110;376676;337099;426072;471132;482544;391840;598416;783272;716488;859510;750410;818758;688399;683990 -5801;'199;Least Developed Countries;1640;Plywood and LVL;5622;Import value;1000 USD;1127;1445;1865;2115;2905;3423;4057;4138;4838;6186;5485;13442;18132;21639;22585;24411;23778;26161;28984;29437;30807;31122;30351;29635;30083;13205;14976;14645;12560;12467;9435;28264;16486;14829;30333;29123;30138;36058;31264;28029;37151;38083;47246;53101;56499;69883;86425;138798;132552;156791;163519;219919;222431;264274;207195;274193;362154;351797;337563;270480;285077;267644;237563 -5801;'199;Least Developed Countries;1640;Plywood and LVL;5916;Export quantity;m3;7648;6848;8448;9748;15848;16148;12848;16248;7148;5000;3000;1700;1700;1300;800;2300;2100;8600;9400;6400;8400;13500;12200;8500;7700;6200;6750;3700;6300;4211;3911;13669;18757;15862;32355;42455;39296;54553;25280;81696;65843;58792;91284;74385;82278;88725;88661;60808;39621;48732;40113;45003;49889;48652.51;47280;75671;63684;105822;228781;272438;405340;392928;346931 -5801;'199;Least Developed Countries;1640;Plywood and LVL;5922;Export value;1000 USD;1103;778;963;1079;1484;1650;1419;1622;1213;798;734;436;504;374;184;604;358;1295;2339;1884;2823;4243;4151;2441;2294;1965;1828;1085;1466;1160;835;5072;6792;4971;8778;13121;9441;16136;8693;16807;9505;15706;25835;24578;25096;29947;29063;38675;22013;23119;24894;31350;31532;30828.22;32468;52789;32826;69124;188986;240613;342796;353451;270316 -5801;'199;Least Developed Countries;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;325 -5801;'199;Least Developed Countries;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;232 -5801;'199;Least Developed Countries;1646;Particle board and OSB (1961-1994);5516;Production;m3;;;;200;300;3300;9100;11800;16000;15800;18100;18700;15000;13500;12800;15200;17100;17600;14700;13200;14100;14200;15240;23800;25500;25840;28230;29500;37100;35700;33500;31000;32500;31900;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5801;'199;Least Developed Countries;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;2200;1400;1300;900;1100;2000;2300;4500;3800;3300;2300;36400;40500;40900;41200;36800;40700;40500;40700;40500;40600;41000;40500;40600;1000;1000;2000;1524;800;600;600;5961;1975;2324;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5801;'199;Least Developed Countries;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;232;163;138;80;101;147;175;265;267;225;165;3192;4994;5068;5167;5881;6434;6788;7104;7467;8356;8453;8213;8249;220;234;620;343;239;127;127;1302;647;686;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5801;'199;Least Developed Countries;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;500;900;1000;1200;900;800;900;900;300;900;200;200;100;100;100;;;;;;;;;;;0;4;4;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5801;'199;Least Developed Countries;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;41;63;71;70;80;112;165;218;52;143;26;65;34;34;40;;;;;;;;;;;0;1;1;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5801;'199;Least Developed Countries;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28900;28300;28800;28600;41300;41300;41300;39300;39300;39300;28800;28800;28800;28800;29300;43300;41800;41800;41800;61800;61800;61800;61800;61800;64100;65800;65800;69100;69100 -5801;'199;Least Developed Countries;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6631;8000;7168;7618;41922;23463;32150;20751;44956;65618;72493;43257;44358;39774;43509;55492;42480;27337;58313;100545;40480;49258;43830;43830;120969;115587;125983.15;140743;129398 -5801;'199;Least Developed Countries;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1952;2219;2442;2444;3480;3856;5636;3681;11155;11200;12502;10154;12116;15925;24044;23529;26694;17603;31927;48228;22182;24986;21730;21730;41292;37960;49730.78;54396;47340 -5801;'199;Least Developed Countries;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;170;204;291;299;394;746;746;751;2866;30908;30908;6730;7627;7064;11801;11566;9972;5973;5310;3134;9296;10975;10312;10312;11223;19559;18823.6;15782.29;19489.29 -5801;'199;Least Developed Countries;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38;47;108;109;127;176;176;172;331;5239;5239;1710;2184;2888;4906;8102;4424;2948.4;2804;2063;3825;5438;4874;4874;3381;3635;2899;2299.04;3253.52 -5801;'199;Least Developed Countries;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1231;97;97;92;3791;6245;6460;15827;18396;14212;12918;4560;3493;1224;2265;2662;2334;4105;1068;994;10952;10298;6781.64;6463;5608 -5801;'199;Least Developed Countries;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;14;14;62;1174;1040;1075;2775;3889;2871;2462;2503;1493;972;1412;2034;1740;2234;718;814;3923;3462;2840.82;2428;4195 -5801;'199;Least Developed Countries;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;14;2;2;2;11;11;11;11;0;30;8;54;45;256;256;363;363 -5801;'199;Least Developed Countries;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;14;8;8;8;14;14;14;14;0;11;3;28;20;67;67;121;121 -5801;'199;Least Developed Countries;1874;Fibreboard;5516;Production;m3;;;;;;;;;;4000;4948;9264;11174;16191;16828;18697;17274;17474;16574;16974;17074;14374;15800;18300;19600;15500;20600;18500;19400;19000;18100;20600;19100;16600;14600;15100;33100;42100;46100;46300;43100;42700;12700;12300;12300;12300;8500;8700;8700;8700;13700;15700;23700;20700;20077;38182;61300;71300;71300;71300;71300;253361;273679 -5801;'199;Least Developed Countries;1874;Fibreboard;5616;Import quantity;m3;2200;2000;5900;9700;10000;14262;10556;44219;43741;14040;28218;6560;8029;18242;21309;17427;10635;9505;7805;8205;13005;13005;7505;7305;19605;14019;12703;9804;9561;8383;8483;22322;12806;11347;12705;9989;8653;12806;150574;37925;51194;49562;78790;87163;89079;129886;161915;144308;162518;216885;174506;212910.3;247437;306632;312136;356215;428872;364140;562601;663968;537959.67;408586.77;344410 -5801;'199;Least Developed Countries;1874;Fibreboard;5622;Import value;1000 USD;273;235;691;1193;1190;1574;1039;1266;1321;907;2967;719;1477;3292;2416;2748;2770;2561;2855;3023;4607;4607;2465;2329;4702;3457;3349;2584;2173;1946;1940;6421;2928;4327;4074;2529;2425;3615;6109;6162;7993;6772;16726;21777;21810;28964;45917;52040;56572;74994;95690;113986;136094;150855;163095;153567;155395;140805;172929;204756;181883.73;144511.05;157754 -5801;'199;Least Developed Countries;1874;Fibreboard;5916;Export quantity;m3;;100;100;100;100;100;100;100;100;100;100;0;0;416;521;500;200;200;200;200;800;600;530;530;530;530;600;600;600;500;500;3298;2024;2025;48;48;48;74;399;449;449;449;1147;1173;1173;1080;1282;1478;1038;2277;6063;12238;17130;14208;13740;27102;52298;57729;45891;36645;41108;77832.78;99400.78 -5801;'199;Least Developed Countries;1874;Fibreboard;5922;Export value;1000 USD;;9;13;11;11;11;11;11;13;15;11;0;0;70;57;115;66;61;61;61;370;312;281;281;281;281;118;118;118;104;104;976;494;494;8;8;8;26;31;57;57;57;185;260;260;335;466;645;511;1505;3212;5064;6705.4;4620;4750;9783;17185;22521;18707;15229;17824;24577.37;33516.36 -5801;'199;Least Developed Countries;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12100;12100;30100;42100;46100;46300;43100;42700;12700;12300;12300;12300;8500;8700;8700;8700;8700;8700;8700;8700;7950;10182;7300;7300;7300;7300;7300;25122;20931 -5801;'199;Least Developed Countries;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4401;4100;5205;7992;105541;20837;24793;14773;43729;29353;28363;48468;39296;34523;22600;30239;33381;59827;75487;49478;55023;49252;44531;50848;62246;77642;58343.53;18447;36827 -5801;'199;Least Developed Countries;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1346;1216;1528;2369;4178;4545;5784;3401;11983;13406;13128;15991;15992;15172;10343;13646;19241;30818;39322;26852;27791;21521;21137;21234;28006;31039;26200.96;9711;16762 -5801;'199;Least Developed Countries;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;23;284;284;284;284;130;215;215;141;232;216;159;901;1642;1678;1700;1139;1133;1368;1134;1028;4404;1015;952;1307.78;9849.78 -5801;'199;Least Developed Countries;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;13;17;17;17;17;27;61;61;57;134;152;78;715;1070;1091;1072;514;508;642;508;455;812;454;432;578.37;2213.36 -5801;'199;Least Developed Countries;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;7000;15000;12000;12127;28000;54000;64000;64000;64000;64000;228239;252748 -5801;'199;Least Developed Countries;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;287;277;637;1591;33183;11143;14401;25059;14491;32129;32234;52258;86366;86835;110653;142946;73960;100950.3;115850;143952;159597;213029;234781;189041;354690;425981;337480.01;279981;257659 -5801;'199;Least Developed Countries;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;161;152;358;599;889;846;1092;2420;2253;5322;5418;9158;22021;28103;33034;39937;37952;53684;68828;83076;97192;90095;90586;83874;106683;127641;126816.22;111039;109801 -5801;'199;Least Developed Countries;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;3;3;3;3;858;809;809;473;496;680;576;1015;4193;10170;14738;12511;12063;25216;50554;56221;40424;34357;39036;60600;86430 -5801;'199;Least Developed Countries;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;5;123;157;157;119;149;288;259;568;1953;3644;5178.4;3761;3902;8827;16343;21812;17444;14296;16938;21863;30574 -5801;'199;Least Developed Countries;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;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 -5801;'199;Least Developed Countries;1650;Other fibreboard;5616;Import quantity;m3;;;;400;500;400;3200;33200;32400;4400;5200;2800;800;1800;11200;10900;4600;4600;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;3300;10715;3999;3315;8017;5612;2811;3223;11850;5945;12000;9730;20570;25681;28482;29160;36253;22950;29265;43700;67165;52133;56100;113202;97516;93934;149560;124251;145665;160345;142136.14;110158.77;49924 -5801;'199;Least Developed Countries;1650;Other fibreboard;5622;Import value;1000 USD;;;;61;210;207;246;220;202;53;76;82;57;78;93;68;83;84;304;86;304;304;304;304;304;304;304;304;304;304;304;3188;629;2206;2567;1161;539;647;1042;771;1117;951;2490;3049;3264;3815;7904;8765;13195;21411;38497;29484;27944;40927;38112;41951;43672;35697;38240;46076;28866.55;23761.06;31191 -5801;'199;Least Developed Countries;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;48;48;48;48;112;162;162;162;159;149;149;466;554;582;303;361;228;390;692;558;544;518;610;480;1063;1273;1120;15925;3121 -5801;'199;Least Developed Countries;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;8;8;8;8;9;35;35;35;35;42;42;159;183;205;174;222;189;329;455;345;340;314;334;254;451;479;454;2136;729 -5801;'199;Least Developed Countries;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;;;;;;;;;;;948;1264;3174;8191;8828;10697;9274;9474;8574;8974;9074;6374;9800;12300;13600;11500;16100;15400;15600;15900;15600;18100;16100;14100;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5801;'199;Least Developed Countries;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;2200;2000;5900;9300;9500;13862;7356;11019;11341;9640;23018;3760;7229;16442;10109;6527;6035;4905;4505;4905;9705;9705;4205;4005;16305;10719;9403;6504;6261;5083;5183;11607;8807;8032;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5801;'199;Least Developed Countries;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;273;235;691;1132;980;1367;793;1046;1119;854;2891;637;1420;3214;2323;2680;2687;2477;2551;2937;4303;4303;2161;2025;4398;3153;3045;2280;1869;1642;1636;3233;2299;2121;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5801;'199;Least Developed Countries;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;100;100;100;100;100;100;100;100;100;100;0;0;416;521;500;200;200;200;200;800;600;530;530;530;530;600;600;600;500;500;3298;2024;2025;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5801;'199;Least Developed Countries;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;9;13;11;11;11;11;11;13;15;11;0;0;70;57;115;66;61;61;61;370;312;281;281;281;281;118;118;118;104;104;976;494;494;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5801;'199;Least Developed Countries;1879;Total fibre furnish;5510;Production;t;28000;52600;55500;62000;48200;50300;47200;75900;80200;84400;97700;108500;128800;109000;102073;129300;124100;153000;167409;167409;179409;179409;158600;149200;172200;163200;197200;203200;199200;218170;211500;215440;218700;222100;214900;207100;278100;180500;198000;201800;214800;195100;240200;233200;256000;251600;263600;276600;282600;293600;304600;307600;316800;399200;379300;402587;409020;534270;1163670;1070670;982670;851670;786044 -5801;'199;Least Developed Countries;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;;;2700;6500;27400;23900;20009;5012;7681;15026;18254;16664;17400;19900;28200;28100;42600;53645;43975;45002;30026;24615;22064;22664;29700;34014;31520;33457;32563;48248;72020;71581;76836;98897;87101;172215;349132;348014;158377;193028;180706;207741;147588;271842;266794;422037.06;478879;439405;656539;467426;579080;880073;730364;1357309.71;1433894.3;1767735.53 -5801;'199;Least Developed Countries;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;;;1115;1994;9266;8714;11462;1920;3410;5534;6327;6632;6774;7093;11816;13444;20318;22082;16817;18055;12630;11966;12337;10018;10340;10105;9125;13752;10813;16327;19878;19939;25396;29901;25529;44191;62861;62184;54858;60522;93709;76922;74938;142113;130144;224585.2;249999.25;207156;283558;225321;319184;339473;252740;480356.29;577699.69;584148.91 -5801;'199;Least Developed Countries;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;27100;31700;33900;31900;30900;33300;18600;;;;;;;;;;;;;;;;;;360;4060;2148;2563;2912;2462;2340;3467;3527;3501;3940;12618;27311;27311;29428;39489;47211;57806;60029;62617;65173;74409;72866;65735;86821;112861;211150;207559;101844;80104.84;72748.37;62399.37 -5801;'199;Least Developed Countries;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;2607;3213;3877;3987;4085;4768;3259;;;;;;;;;;;;;;;;;;240;442;599;891;1136;1073;1757;1914;1752;1740;1731;3712;6432;6432;5970;6977;10814;10457;16712.4;19357;17456;17489;15783;14177;15864;22499;162877;132282;38091;25411.15;23252.5;11742.5 -5801;'199;Least Developed Countries;1878;Pulp for paper;5510;Production;t;28000;52600;54500;61000;47200;49300;46200;74900;79200;81400;94700;104500;115800;105000;98073;125300;120100;149000;163409;163409;175409;175409;145600;141200;164200;155200;187200;189200;186200;209200;201600;201600;200700;208200;201100;193300;195400;133100;154900;158100;163100;134300;169600;163300;187900;187900;187900;187900;187900;187900;187900;187900;187900;187900;187900;187900;186000;314000;304400;203400;172400;159400;148400 -5801;'199;Least Developed Countries;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;;;2700;6500;27400;23900;17200;2100;5200;11200;16700;15400;15400;13800;18400;22300;40200;47600;36300;42200;20400;17800;16500;16900;18539;24975;13390;12825;14336;24011;22168;23219;28123;31854;26281;30504;60936;60308;60321;59436;76970;116653;63183;189632;185742;303959.06;364696;289439;541951;391893;457293;543234;405610;406442.96;338274.3;527862.54 -5801;'199;Least Developed Countries;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;;;1115;1994;9266;8714;10907;1278;2928;4763;5987;6404;6404;5760;8121;10671;19622;21279;15158;17537;11262;10619;11518;9137;8485;8281;5280;8568;6703;10985;10805;9923;15118;17402;13237;23810;30514;29958;33341;33973;67518;56547;48408;115677;107730;188865.2;214818.25;166262;257367;205261;290861;287088;201010;245943.02;259637.68;360604.91 -5801;'199;Least Developed Countries;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;27100;31700;33900;31900;30900;33300;18600;;;;;;;;;;;;;;;;;;40;10;10;237;637;1177;1543;2335;2374;2348;2412;3754;6919;6919;4585;3683;4821;5008;13252;19178;9777;8295;7554;5082;3672;4202;133223;159062;62295;30654;15873.12;4289.12 -5801;'199;Least Developed Countries;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;2607;3213;3877;3987;4085;4768;3259;;;;;;;;;;;;;;;;;;36;19;19;267;521;927;1656;1806;1636;1624;1460;2697;4362;4362;3408;2313;3821;3122;11107;13424;9659;8640;7096;6165;5105;5397;149255;124985;33004;18990;15639;3505 -5801;'199;Least Developed Countries;1875;Wood pulp;5510;Production;t;26000;44600;47000;52500;36900;38000;34000;60800;62900;64500;57500;60900;72800;57000;50073;58300;53100;68300;80900;80900;92900;92900;63600;59200;82200;80200;124200;134200;134200;158200;149600;149600;149700;149200;137100;129300;118700;71700;71500;71700;71700;71700;111400;105100;104900;104900;104900;104900;104900;104900;104900;104900;104900;104900;104900;104900;103000;261000;389000;389000;396000;433000;426000 -5801;'199;Least Developed Countries;1875;Wood pulp;5610;Import quantity;t;;;;;;;;;;;2700;24000;18300;9500;1500;4600;10600;9800;9800;9800;8200;14300;18200;32100;40600;31600;38200;20400;17800;16500;16900;19426;26034;14436;12464;14333;24490;22604;23535;27854;31645;26047;30248;53114;52486;52098;56003;75303;114440;55543;187021;184492;282727.06;348862;293410;541695;400261;457021;541486;407098;408102.89;345162.34;534603.57 -5801;'199;Least Developed Countries;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;;;;879;8151;6714;7871;859;2509;4344;3399;4355;4355;3711;5485;8035;14737;17682;13166;15057;11262;10619;11518;9137;8984;8847;5853;8372;6692;11223;11057;9984;14803;17142;12966;19738;24079;23523;26580;31855;65669;54177;41896;112570;106807;158529.2;190774.25;167207;256714;210456;290128;285614;201373;246182.83;267154.89;368917.11 -5801;'199;Least Developed Countries;1875;Wood pulp;5910;Export quantity;t;;;;;;;;27100;31700;33900;31900;30900;33300;18600;;;;;;;;;;;;;;;;;;;10;10;105;505;1032;1079;2036;2175;2149;1966;2514;2911;2911;2895;3045;3598;3632;4431;4810;4462;4547;2819;2677;2420;2244;162455;288070;292774;299410;333320.12;326811.12 -5801;'199;Least Developed Countries;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;2607;3213;3877;3987;4085;4768;3259;;;;;;;;;;;;;;;;;;;19;19;116;370;622;646;1217;1277;1265;983;1337;1406;1406;1416;1510;2066;2030;2484;2569;2667;2691;1971;1884;1770;1709;174995;214488;176265;287995;333283;276612 -5801;'199;Least Developed Countries;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48000;48000;48000;48000;48000;48000;48000 -5801;'199;Least Developed Countries;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1345;2545;9240;3286;1831;2299;5334 -5801;'199;Least Developed Countries;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1163;2191;4681;2303;1894;2759;4917 -5801;'199;Least Developed Countries;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;0;1050;1050;1050;1051;1051 -5801;'199;Least Developed Countries;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;0;788;788;788;788;794 -5801;'199;Least Developed Countries;1654;Mechanical wood pulp (1961-2016);5510;Production;t;26000;30000;26000;28000;13000;12000;9000;31800;27800;27900;24300;22000;27000;16500;6200;11900;6700;9700;17700;17700;17700;17700;23000;18800;45200;43900;52700;59700;61700;59100;54300;54300;54400;53900;46800;39000;32400;16400;16200;16400;16400;16400;55400;48400;48400;48400;48400;48400;48400;48400;48400;48400;48400;48400;48400;48400;;;;;;; -5801;'199;Least Developed Countries;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;3000;7100;3000;3400;2000;2000;2300;2300;1343;769;2666;2666;2723;2153;1453;1425;1425;2025;2065;1889;1423;1423;1286;1300;1307;1494;827;1513;1396;1256.06;1107;646;996;;;;;;; -5801;'199;Least Developed Countries;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;1291;2985;1582;1392;676;676;286;286;480;222;1049;1049;865;911;493;475;475;892;700;796;553;553;505;522;521;720;528;1058;1000;1203.2;643;433;520;;;;;;; -5801;'199;Least Developed Countries;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;15;16;16;17;16;81;30;0;;;;;;; -5801;'199;Least Developed Countries;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;16;20;20;20;20;39;14;0;;;;;;; -5801;'199;Least Developed Countries;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;500;500;373;1600;1600;11600;11600;11600;23600;23600;24000;23800;1000;1300;500;500;500;1100;300;300;300;300;300;300;300;300;300;300;300;300;1000;1700;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;1500;;;;;;; -5801;'199;Least Developed Countries;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;6400;200;1300;2100;600;700;700;1300;2600;2600;400;400;;;;;;;11;44;18;18;18;162;159;2817;2822;622;221;737;922;922;1974;3318;8051;14478;8458;9350;10065;7304;953;1138;1284;;;;;;; -5801;'199;Least Developed Countries;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;4813;151;916;1410;278;325;325;649;1300;1300;198;198;;;;;;;9;22;7;7;7;53;52;842;844;273;69;343;363;363;759;1800;7653;9881;8714;9548;9461;7170;622.25;788;698;;;;;;; -5801;'199;Least Developed Countries;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108;108;108;151;152;152;987;1792;1275;1275;119;117;117;;;;;;; -5801;'199;Least Developed Countries;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;40;40;97;108;108;147;524;500;500;42;40;40;;;;;;; -5801;'199;Least Developed Countries;1656;Chemical wood pulp;5510;Production;t;;14600;21000;24500;23900;26000;25000;29000;35100;36600;33200;38900;45300;40000;43500;44800;44800;47000;51600;51600;51600;51600;16600;16600;36000;35000;71000;74000;72000;98000;95000;95000;95000;95000;90000;90000;86000;55000;55000;55000;55000;55000;55000;55000;55000;55000;55000;55000;55000;55000;55000;55000;55000;55000;55000;55000;55000;183000;211000;110000;79000;66000;55000 -5801;'199;Least Developed Countries;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;2700;24000;18300;3100;1300;3300;8500;9200;9100;9100;6900;11700;15600;28700;33100;28600;34800;18400;15800;14200;14600;17106;24083;10706;9616;11428;21529;20400;18872;23580;28911;23699;27500;50157;49529;48685;51267;65815;98380;46099;175713;172446;273385;345770;286336;537681;388464;452886;530895;400399;402016.67;334071.82;520249.05 -5801;'199;Least Developed Countries;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;879;8151;6714;3058;708;1593;2934;3121;4030;4030;3062;4185;6735;13248;14499;11584;13665;10586;9943;11232;8851;7956;7997;4224;7173;5677;9867;10123;8482;13469;15907;12138;18505;22748;22192;25194;29403;57355;43481;32494;101664;95900;149070;188768;163493;254385;202286;287044;279983;197017;241113.75;254250.17;352732.39 -5801;'199;Least Developed Countries;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;27100;31700;33900;31900;30900;33300;18600;;;;;;;;;;;;;;;;;;;10;10;105;505;936;983;1940;2079;2053;1870;2418;2706;2706;2690;2776;3301;3406;3364;2938;3106;3192;2555;2470;2243;2177;132665;157716;61097;29427;13303.12;2967.12 -5801;'199;Least Developed Countries;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;2607;3213;3877;3987;4085;4768;3259;;;;;;;;;;;;;;;;;;;19;19;116;370;526;550;1121;1181;1169;887;1241;1269;1269;1279;1295;1835;1886;2296;2004;2126;2150;1869;1812;1712;1676;148109;123508;31445;17413;10449;2012 -5801;'199;Least Developed Countries;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;15000;15000;15000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000 -5801;'199;Least Developed Countries;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;400;800;100;100;700;200;227;627;1607;1707;1669;2017;3441;1666;1666;1587;1679;1413;1463;1538;1517;1194;1144;1905;1618;1172;1172;2701;10438;5417.46;9117.82;27674.05 -5801;'199;Least Developed Countries;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;130;253;37;37;345;113;123;237;871;913;733;912;1719;731;736;740;738;742;772;919;1332;1010;1099;1176;1259;778;778;1784;6973;4963.4;7922.17;19310.39 -5801;'199;Least Developed Countries;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;10;10;35;35;35;54;160;153;346;545;544;519;627;608;3288;678;4507;3574;600;600 -5801;'199;Least Developed Countries;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;3;3;5;5;5;12;209;216;349;458;450;448;509;502;2524;543;2270;2168;503;503 -5801;'199;Least Developed Countries;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;14600;21000;24500;23900;26000;25000;25000;31500;35000;32000;37700;43300;38000;41500;42800;42800;45000;49600;49600;49600;49600;16600;16600;36000;35000;56000;59000;57000;71000;68000;68000;68000;68000;63000;63000;59000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;28000;156000;184000;83000;52000;39000;28000 -5801;'199;Least Developed Countries;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;13579;16698;8047;6902;8438;18461;19108;17546;19144;18075;21472;23141;43723;43342;45275;48058;63384;95595;40017;172724;168664;269946;343941;282245;535048;387174;451113;524782;386337;395746.21;324538;491016 -5801;'199;Least Developed Countries;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;6242;5639;2918;5811;4168;8724;9511;8016;10252;11525;11044;16142;19620;19142;23192;27461;55903;40951;27446;99487;92452;145204;186959;159767;252276;201273;286011;275774;187234;235392.34;245838;331947 -5801;'199;Least Developed Countries;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;105;505;658;705;862;970;944;968;1167;2172;2172;2079;2079;2607;2664;2516;2100;2100;1987;1938;1932;1571;1569;129377;157038;56590;25853;12703;2367 -5801;'199;Least Developed Countries;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;116;370;389;413;484;530;518;526;620;1010;1010;983;983;1527;1568;1781;1479;1479;1394;1363;1354;1176;1174;145585;122965;29175;15244;9945;1508 -5801;'199;Least Developed Countries;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118;601;3412;3624;853;416;1559 -5801;'199;Least Developed Countries;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;235;255;2425;2810;758;490;1475 -5801;'199;Least Developed Countries;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0.12;0.12 -5801;'199;Least Developed Countries;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;1;1;1 -5801;'199;Least Developed Countries;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;261;261;261;261;321;765;786;195;195;1457;310;976;408;;;;;;; -5801;'199;Least Developed Countries;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;96;96;96;96;108;1109;1128;61;61;1889;331;1572;345;;;;;;; -5801;'199;Least Developed Countries;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;31;31;60;60;57;32;32;32;0;26;;;;;;; -5801;'199;Least Developed Countries;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;22;22;25;14;14;32;0;15;;;;;;; -5801;'199;Least Developed Countries;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;6500;6500;3127;6585;2559;2614;2290;2868;1065;699;2829;9129;558;2342;2732;4260;1483;1361;431;607;3833;1256;2070;788;375;1210;607;;;;;;; -5801;'199;Least Developed Countries;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;5232;5232;1584;2105;1269;1325;1164;1030;489;229;2346;3469;361;1451;1313;2223;1170;1106;606;679;3148;1197;2055;967;379;978;505;;;;;;; -5801;'199;Least Developed Countries;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;278;278;1078;1109;1109;902;1251;524;524;545;631;628;628;628;628;628;628;41;19;19;;;;;;; -5801;'199;Least Developed Countries;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;137;137;637;651;651;361;621;256;256;272;288;284;284;284;284;284;284;24;10;12;;;;;;; -5801;'199;Least Developed Countries;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30000;130000;231000;269000;319000;323000 -5801;'199;Least Developed Countries;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;966;1138;1046;164;164;646;592;421;27;87;62;122;612;612;153;118;130;88;159;445;585;782;1032;5290;1734;10452;1590;1351;3413;4255.22;8791.52;9020.52 -5801;'199;Least Developed Countries;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;539;606;573;143;143;392;389;185;15;70;59;94;415;415;122;130;140;95;160;300;446;1086;741;2493;1111;7007;893;950;2053;3175.09;10145.72;11267.72 -5801;'199;Least Developed Countries;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;96;96;96;96;96;96;96;97;97;97;113;140;59;64;64;64;64;64;60;60;60;29790;129304;230627;268933;318966;322793 -5801;'199;Least Developed Countries;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;96;96;96;96;96;96;96;97;97;97;104;109;20;21;21;21;21;21;18;18;18;26886;90192;144032;269794;322046;273806 -5801;'199;Least Developed Countries;1668;Pulp from fibres other than wood;5510;Production;t;2000;8000;7500;8500;10300;11300;12200;14100;16300;16900;37200;43600;43000;48000;48000;67000;67000;80700;82509;82509;82509;82509;82000;82000;82000;75000;63000;55000;52000;51000;52000;52000;51000;59000;64000;64000;76700;61400;83400;86400;91400;62600;58200;58200;83000;83000;83000;83000;83000;83000;83000;83000;83000;83000;83000;83000;83000;83000;45400;45400;45400;45400;45400 -5801;'199;Least Developed Countries;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;8100;7000;4700;4000;0;0;0;0;79;79;0;525;167;167;156;105;296;296;296;378;8434;8434;8376;3551;1797;2301;7799;3056;1835;22014;16866;1319;1990;2084;1862;3099;1925;2595.28;1903.48;2279.49 -5801;'199;Least Developed Countries;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;4885;3597;1992;2480;0;0;0;0;40;40;0;339;154;154;137;124;330;330;330;4166;6850;6850;6883;2248;1989;2465;6672;3407;1369;31422;24785;1548;1764;1812;1626;2424;1690;2935.28;2628.52;2955.52 -5801;'199;Least Developed Countries;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;0;0;132;132;241;560;395;295;295;542;1336;4105;4105;1787;751;1363;1435;8885;14432;5379;3812;4799;2465;1312;2018;558;296;148;177;1519;271 -5801;'199;Least Developed Countries;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36;0;0;151;151;401;1106;685;455;455;573;1456;3053;3053;2089;907;1864;1112;8644;10876;7013;5970;5146;4299;3353;3706;1146;689;771;789;4402;699 -5801;'199;Least Developed Countries;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126;40;40;258;287;1211;180;407;569;2784;634;587;353;384;897;1976;9561;106065;15507;35545.08;11151.92 -5801;'199;Least Developed Countries;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59;26;26;116;173;828;155;361;429;1443;1261;680;553;569;722;1140;2035;14398;12319;27386.17;7504.43 -5801;'199;Least Developed Countries;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;28;28;219;219;204;204;352;347;347;347;347;398;399;3111;3114;245309;440447;32661;71342;27083 -5801;'199;Least Developed Countries;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;2;2;26;26;34;34;234;230;230;230;230;272;273;586;587;80075;132273;12446;26517;8976 -5801;'199;Least Developed Countries;1669;Recovered paper;5510;Production;t;;;1000;1000;1000;1000;1000;1000;1000;3000;3000;4000;13000;4000;4000;4000;4000;4000;4000;4000;4000;4000;13000;8000;8000;8000;10000;14000;13000;8970;9900;13840;18000;13900;13800;13800;82700;47400;43100;43700;51700;60800;70600;69900;68100;63700;75700;88700;94700;105700;116700;119700;128900;211300;191400;214687;223020;220270;859270;867270;810270;692270;637644 -5801;'199;Least Developed Countries;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;2809;2912;2481;3826;1554;1264;2000;6100;9800;5800;2400;6045;7675;2802;9626;6815;5564;5764;11161;9039;18130;20632;18227;24237;49852;48362;48713;67043;60820;141711;288196;287706;98056;133592;103736;91088;84405;82210;81052;118078;114183;149966;114588;75533;121787;336839;324754;950866.76;1095620;1239873 -5801;'199;Least Developed Countries;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;555;642;482;771;340;228;370;1333;3695;2773;696;803;1659;518;1368;1347;819;881;1855;1824;3845;5184;4110;5342;9073;10016;10278;12499;12292;20381;32347;32226;21517;26549;26191;20375;26530;26436;22414;35720;35181;40894;26191;20060;28323;52385;51730;234413.27;318062;223544 -5801;'199;Least Developed Countries;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;320;4050;2138;2326;2275;1285;797;1132;1153;1153;1528;8864;20392;20392;24843;35806;42390;52798;46777;43439;55396;66114;65312;60653;83149;108659;77927;48497;39549;49450.84;56875.25;58110.25 -5801;'199;Least Developed Countries;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;204;423;580;624;615;146;101;108;116;116;271;1015;2070;2070;2562;4664;6993;7335;5605.4;5933;7797;8849;8687;8012;10759;17102;13622;7297;5087;6421.15;7613.5;8237.5 -5801;'199;Least Developed Countries;1876;Paper and paperboard;5510;Production;t;67700;66800;73320;86300;80000;88900;87500;95900;101500;103200;91400;78500;94700;108100;100117;100100;117700;113900;126700;133600;145935;165212;205787;202265;164147;187435;197602;192128;196704;193629;187621;171240;235525;246095;203226;171775;180180;147882;142204;150073;151620;158073;193552;171196;173837;173537;175737;170737;216777;253777;253777;257077;344853;315833;331674;281475;280091;280091;590991;590991;1438991;1316991;1473991 -5801;'199;Least Developed Countries;1876;Paper and paperboard;5610;Import quantity;t;66700;69700;74700;111730;112000;103700;104300;138200;157800;151000;163700;147300;159990;150900;140600;131900;151610;149960;152700;168700;180100;170500;157600;147700;174637;182322;219950;218775;138099;174451;154630;156095;177803;194028;186763;240059;292685;330542;516030;435504;576324;472980;656555;809966;820801;845467;901475;867545;1087858;1224927;1342960;1435470.44;1524519;1968281;1778404;2102713;2285199;2291656;2645379;2421028;2247674.59;2195945.07;2279318 -5801;'199;Least Developed Countries;1876;Paper and paperboard;5622;Import value;1000 USD;17240;18205;20419;30498;34829;35778;33767;40826;41938;43133;52226;53633;64004;85777;94699;87664;95538;94342;105202;132393;148759;132280;128199;121306;133561;136245;173569;181416;129220;143841;143054;110591;132609;141497;160579;174050;211583;265892;289238;260913;334526;274537;454189;559311;567262;524012;699848;822543;893687;1107235;1260686;1169939;1292853;1699436;1402738;1617719;1743424;1867404;2102653;1876029;2074065.98;2320397.56;2201637 -5801;'199;Least Developed Countries;1876;Paper and paperboard;5910;Export quantity;t;;;;;600;800;1300;1000;1900;1200;1900;29900;13400;10000;6200;7300;16700;20000;21000;20300;12300;13300;10800;22800;24900;7800;7800;11700;13700;6300;17800;14281;2042;502;2344;2274;5703;4354;4655;4522;7469;6416;11196;15372;15372;14185;75863;47045;56028;54555.24;53148.3;47864.75;50346.55;55679.58;55625.48;56519.48;69775.48;58349.48;96990.48;111186;962910.62;913970.1;1051577.47 -5801;'199;Least Developed Countries;1876;Paper and paperboard;5922;Export value;1000 USD;;;;;159;230;347;297;268;340;397;5463;3288;3146;1830;3235;5518;6643;6950;10030;6664;7464;6264;16046;16734;9410;9410;9220;11560;5023;10679;10022;1357;349;1509;1486;3582;2903;3486;4017;5580;5386;8506;11254;11254;11013;24127;40735;53074;62011;59074;55583.29;54488.46;53147.6;59724;52917;61025;55678;96310;98264;632760.89;593947.2;471280.45 -5801;'199;Least Developed Countries;2042;Graphic papers;5510;Production;t;60500;57900;60320;72300;66600;72200;68500;76400;79400;74600;62200;51600;60700;68100;66517;64200;81200;76200;89200;89200;91200;98400;146000;145600;111400;122850;127040;118040;122040;114250;112470;109320;124120;130220;110570;90700;112700;73100;68830;69860;71160;71760;108732;84992;85892;85892;87092;87092;92932;123932;123932;123932;123932;123932;123150;122573;120738;120738;128638;128638;128638;112638;110638 -5801;'199;Least Developed Countries;2042;Graphic papers;5610;Import quantity;t;31200;36400;40500;73800;67800;49200;48100;59900;71500;67100;72100;62100;63290;60800;64500;62000;70810;65460;68200;74300;85100;84300;77300;80100;76443;69983;67949;85784;58085;54629;59208;72877;77148;102203;82952;122626;176033;205540;291140;236394;272220;222836;274239;373511;382330;453694;464363;444278;563265;634293;690692;771949.44;771761;987492;860887;1025637;1081842;996328;1054362;793227;689662.97;673309.07;806567 -5801;'199;Least Developed Countries;2042;Graphic papers;5622;Import value;1000 USD;7099;8159;9640;18205;19386;14499;12790;15233;14980;16900;19325;21259;24894;33799;43439;37417;38707;39114;44143;54546;67112;63413;58901;63820;62333;58685;63780;72027;51763;53662;56916;54747;61644;76241;73229;93214;128457;165293;156673;144732;175762;137191;203047;259600;267479;272539;359560;424071;474573;577646;655730;662477;685435;881281;737608;823426;899073;895774;925274;659628;624386.05;781642.56;914374 -5801;'199;Least Developed Countries;2042;Graphic papers;5910;Export quantity;t;;;;;;;;;0;0;1000;28900;11600;8000;5700;6300;15700;19500;20500;19000;11200;12200;9700;18300;20400;3300;3300;2300;2300;2300;2300;5135;412;218;297;281;1346;1303;3195;3218;5096;4059;5012;8467;8467;5192;6155;8701;9852;14610.24;17402.3;15918.75;10961.55;13890.58;8669.48;9261.48;13674.48;21166.48;26230.48;16544;16744.46;15464.44;23897.44 -5801;'199;Least Developed Countries;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;2915;283;162;298;298;1127;1095;2290;2398;3684;3341;4358;6200;6200;4589;6126;9041;13333;23340;19584;19838.29;15331.46;14533;10815;12282;15953;22336;26200;15442;18821.61;19621.74;25620.63 -5801;'199;Least Developed Countries;1671;Newsprint;5510;Production;t;30500;31900;31320;39300;34600;35200;37600;41000;41400;36800;30600;28500;27500;32000;20817;23500;35500;35500;40500;40500;37500;44700;55000;54600;47800;46850;52240;58240;59240;54350;58270;58320;54320;56220;48170;39400;38800;18200;17100;17100;21600;23100;60000;34360;34560;34560;34760;34760;36600;39600;39600;39600;39600;39600;40050;39473;38638;38638;33238;33238;33238;33238;33238 -5801;'199;Least Developed Countries;1671;Newsprint;5610;Import quantity;t;18800;22700;24400;12500;15900;15100;20500;27000;30100;27600;28200;26400;26290;25500;28850;24400;29250;27200;28000;21500;34400;29200;26600;31000;28213;18586;25316;26985;22071;14110;15410;14931;12021;7776;44622;52720;85366;90471;96975;70978;91999;73615;89326;108224;107146;152022;126527;124683;158109;188486;182892;187641;189237;198296;224196;198832;172474;139711;176805;102685;79022.69;62446.07;75371 -5801;'199;Least Developed Countries;1671;Newsprint;5622;Import value;1000 USD;3406;3772;4340;2701;3704;2528;3971;4597;4844;5156;5316;5324;6289;10515;13270;10450;12516;12310;13371;11003;16438;13847;13469;15992;16774;11388;16061;15036;13681;8702;10213;7753;9299;5411;30682;29166;42717;62064;40054;32036;52614;40190;45974;55473;55185;54320;81991;100243;98991;133878;139550;143330;141786;151070;144222;112228;98498;98539;114166;59214;52934.08;65561.55;68507 -5801;'199;Least Developed Countries;1671;Newsprint;5910;Export quantity;t;;;;;;;;;0;0;1000;26700;10600;7700;5300;5000;14400;19000;20000;18000;9500;10500;8000;16000;18100;1000;1000;;;;;4889;;0;77;77;91;91;1133;1184;1184;1168;1016;971;971;1559;1038;1145;1347;2056;4295;2951.48;3034;3398;3322;2863;2955;5735;3228;1724;2512;1777.05;1398.05 -5801;'199;Least Developed Countries;1671;Newsprint;5922;Export value;1000 USD;;;;;;;;;;;144;4435;2489;2268;1121;1217;3500;5643;5950;7345;3900;4700;3500;7000;7688;364;364;;;;;2691;;0;48;48;57;57;619;584;584;563;584;462;462;833;649;718;2307;2839;4622;3575;3594;2339;2614;2003;1949;3145;1865;1124;1709;2007.72;914.72 -5801;'199;Least Developed Countries;1674;Printing and writing papers;5510;Production;t;30000;26000;29000;33000;32000;37000;30900;35400;38000;37800;31600;23100;33200;36100;45700;40700;45700;40700;48700;48700;53700;53700;91000;91000;63600;76000;74800;59800;62800;59900;54200;51000;69800;74000;62400;51300;73900;54900;51730;52760;49560;48660;48732;50632;51332;51332;52332;52332;56332;84332;84332;84332;84332;84332;83100;83100;82100;82100;95400;95400;95400;79400;77400 -5801;'199;Least Developed Countries;1674;Printing and writing papers;5610;Import quantity;t;12400;13700;16100;61300;51900;34100;27600;32900;41400;39500;43900;35700;37000;35300;35650;37600;41560;38260;40200;52800;50700;55100;50700;49100;48230;51397;42633;58799;36014;40519;43798;57946;65127;94427;38330;69906;90667;115069;194165;165416;180221;149221;184913;265287;275184;301672;337836;319595;405156;445807;507800;584308.44;582524;789196;636691;826805;909368;856617;877557;690542;610640.28;610863;731196 -5801;'199;Least Developed Countries;1674;Printing and writing papers;5622;Import value;1000 USD;3693;4387;5300;15504;15682;11971;8819;10636;10136;11744;14009;15935;18605;23284;30169;26967;26191;26804;30772;43543;50674;49566;45432;47828;45559;47297;47719;56991;38082;44960;46703;46994;52345;70830;42547;64048;85740;103229;116619;112696;123148;97001;157073;204127;212294;218219;277569;323828;375582;443768;516180;519147;543649;730211;593386;711198;800575;797235;811108;600414;571451.96;716081;845867 -5801;'199;Least Developed Countries;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;246;412;218;220;204;1255;1212;2062;2034;3912;2891;3996;7496;7496;3633;5117;7556;8505;12554.24;13107.3;12967.27;7927.55;10492.58;5347.48;6398.48;10719.48;15431.48;23002.48;14820;14232.46;13687.39;22499.39 -5801;'199;Least Developed Countries;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;224;283;162;250;250;1070;1038;1671;1814;3100;2778;3774;5738;5738;3756;5477;8323;11026;20501;14962;16263.29;11737.46;12194;8201;10279;14004;19191;24335;14318;17112.61;17614.01;24705.91 -5801;'199;Least Developed Countries;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13500;11000;12000;9000;9100;9300;9300;9300;9300;9300;9300;9300;25300;25300;25300;25300;25300;24100;24100;24100;24100;32000;32000;32000;16000;16000 -5801;'199;Least Developed Countries;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12649;14001;12482;9829;10637;22935;44279;43900;28681;28869;51772;37092;51400;48560;64069;71883;108681;115829;107725;134016;109614;85985;45961;44720.03;32805;41517 -5801;'199;Least Developed Countries;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12775;10884;9859;6730;5899;19987;34567;34338;20084;25953;47878;37051;48047;45432;59250;70216;111765;136260;129807;157877;127108;67245;42376;49598.95;44524;51069 -5801;'199;Least Developed Countries;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;53;83;183;183;790;990;990;201;931;1956;2238;2708;2289.3;1422.27;1353.07;1090.1;1233;1311;2578;6660;6511;3283;2396.48;3752.1;5614.1 -5801;'199;Least Developed Countries;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;42;75;91;145;668;773;773;209;793;1674;1899;2198;1704;1135.05;1052.96;1003;1224;1234;2909;6888;4839;2219;1656;2920.01;2726.01 -5801;'199;Least Developed Countries;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41400;40730;40760;40560;39560;39432;41332;42032;42032;43032;43032;43032;43032;43032;43032;43032;43032;43000;43000;42000;42000;47400;47400;47400;47400;45400 -5801;'199;Least Developed Countries;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69450;115617;83750;91737;74703;109518;140048;149768;138472;163417;184866;189492;223725;249091;280403;269364;425893;325513;441583;526142;536139;557968;431120;378341.75;390662;494136 -5801;'199;Least Developed Countries;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55088;67191;59992;66771;51592;95365;107787;115096;106989;143865;189801;198729;230399;273810;264795;268522;393602;295836;372751;438525;482839;522169;366870;334606.97;440249;557543 -5801;'199;Least Developed Countries;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;568;1108;1114;3038;2106;2099;5468;5468;2269;2883;3037;3291;7382.24;8420;8403;4363.48;6864.48;2229.48;3071.48;5821.48;6809.48;13091.48;8574;8222.95;5807;12212 -5801;'199;Least Developed Countries;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;494;735;890;2193;1857;1901;4122;4122;2454;3122;3667;3478;15194;10142;10956.24;8139.5;8238;4583;7049;8621;9679;16567;10003;11818.8;10658;16183 -5801;'199;Least Developed Countries;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000;16000 -5801;'199;Least Developed Countries;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32970;64547;69184;78655;63881;52460;80960;81516;134519;145550;82957;178572;170682;210149;239836.44;241277;254622;195349;277497;249210;210864;233604;213461;187578.5;187396;195543 -5801;'199;Least Developed Countries;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35366;38544;42845;49647;39510;41721;61773;62860;91146;107751;86149;139802;165322;196938;195102;204911;224844;161290;208640;204173;187288;221694;191168;187246.04;231308;237255 -5801;'199;Least Developed Countries;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;626;901;837;691;602;1107;1038;1038;1163;1303;2563;2976;2464;2398;3142;2211;2538;1885;2016;2320;1962;3400;2963;3613.03;4128.29;4673.29 -5801;'199;Least Developed Countries;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;532;894;849;816;776;1205;843;843;1093;1562;2982;5649;3109;3116;4172;2545;2953;2394;1996;2474;2624;2929;2096;3637.81;4036;5796.89 -5801;'199;Least Developed Countries;1675;Other paper and paperboard;5510;Production;t;7200;8900;13000;14000;13400;16700;19000;19500;22100;28600;29200;26900;34000;40000;33600;35900;36500;37700;37500;44400;54735;66812;59787;56665;52747;64585;70562;74088;74664;79379;75151;61920;111405;115875;92656;81075;67480;74782;73374;80213;80460;86313;84820;86204;87945;87645;88645;83645;123845;129845;129845;133145;220921;191901;208524;158902;159353;159353;462353;462353;1310353;1204353;1363353 -5801;'199;Least Developed Countries;1675;Other paper and paperboard;5610;Import quantity;t;35500;33300;34200;37930;44200;54500;56200;78300;86300;83900;91600;85200;96700;90100;76100;69900;80800;84500;84500;94400;95000;86200;80300;67600;98194;112339;152001;132991;80014;119822;95422;83218;100655;91825;103811;117433;116652;125002;224890;199110;304104;250144;382316;436455;438471;391773;437112;423267;524593;590634;652268;663521;752758;980789;917517;1077076;1203357;1295328;1591017;1627801;1558011.62;1522636;1472751 -5801;'199;Least Developed Countries;1675;Other paper and paperboard;5622;Import value;1000 USD;10141;10046;10779;12293;15443;21279;20977;25593;26958;26233;32901;32374;39110;51978;51260;50247;56831;55228;61059;77847;81647;68867;69298;57486;71228;77560;109789;109389;77457;90179;86138;55844;70965;65256;87350;80836;83126;100599;132565;116181;158764;137346;251142;299711;299783;251473;340288;398472;419114;529589;604956;507462;607418;818155;665130;794293;844351;971630;1177379;1216401;1449679.94;1538755;1287263 -5801;'199;Least Developed Countries;1675;Other paper and paperboard;5910;Export quantity;t;;;;;600;800;1300;1000;1900;1200;900;1000;1800;2000;500;1000;1000;500;500;1300;1100;1100;1100;4500;4500;4500;4500;9400;11400;4000;15500;9146;1630;284;2047;1993;4357;3051;1460;1304;2373;2357;6184;6905;6905;8993;69708;38344;46176;39945;35746;31946;39385;41789;46956;47258;56101;37183;70760;94642;946166.16;898505.66;1027680.03 -5801;'199;Least Developed Countries;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;;159;230;347;297;268;340;253;352;479;710;577;1500;1500;765;765;2025;1769;1769;1769;7238;7238;7238;7238;7412;9752;3215;8871;7107;1074;187;1211;1188;2455;1808;1196;1619;1896;2045;4148;5054;5054;6424;18001;31694;39741;38671;39490;35745;39157;38614.6;48909;40635;45072;33342;70110;82822;613939.28;574325.46;445659.83 -5801;'199;Least Developed Countries;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;;0;0;0;1000;1028;1091;1066;1066;466;760;2760;1760;1760;2760;2760;10760;17760;17760;17760;17760;17760;17872;17865;18395;18395;44695;44695;44695;41695;45695 -5801;'199;Least Developed Countries;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;300;300;300;300;300;300;300;300;300;100;100;100;100;100;100;100;100;100;100;100;0;0;0;0;0;129;3182;4640;9592;8667;11862;12353;13517;16703;19826;24466;25872;37363;25249;26523;39941;40664;55095;46689;52422;54408;71768;71503;67793.7;66398;70026 -5801;'199;Least Developed Countries;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;253;270;270;270;270;270;270;270;270;100;100;100;100;100;100;100;100;100;100;100;0;0;0;0;0;135;2837;4284;11135;10589;16389;13689;14383;17721;22599;32666;30556;45500;35123;36774;55272;58609;83499;57047;58869;62353;95511;80034;82878.84;96322;95608 -5801;'199;Least Developed Countries;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40;46;198;498;505;326;622;622;568;709;577;360;1448;1740;1684;3504;3326;2842;2872;4029;4785;6188;10236;10430.41;11844.03;6929.03 -5801;'199;Least Developed Countries;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25;28;208;470;481;290;673;673;635;814;701;435;1844;1519;1810;4126;4107;3192;3329;4134;4688;6476;10036;10016.75;13847.99;8704.99 -5801;'199;Least Developed Countries;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43930;40520;43220;43620;49520;48070;47770;50070;49770;49770;49770;88370;87370;87370;87370;175502;144482;160993;111378;112299;112299;388499;388499;1236499;1133499;1284499 -5801;'199;Least Developed Countries;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31997;83738;68180;240488;206521;319337;368974;370024;302005;361960;350450;452492;506361;572540;595733;661944;870623;799180;947625;1107365;1193283;1444119;1504928;1438744.61;1397720;1340771 -5801;'199;Least Developed Countries;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25203;57603;47608;113269;96589;187575;228501;228031;172359;249005;290176;313512;398008;464722;406900;472671;640281;526197;631832;727760;844025;998298;1060747;1283841.56;1359918;1108392 -5801;'199;Least Developed Countries;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2266;624;671;1440;1511;5227;5096;5096;7786;68257;35705;44332;35420;32167;28989;34650;36211;39591;43456;50969;31297;63807;83629;935029.75;886258;1020340 -5801;'199;Least Developed Countries;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1348;434;995;1082;1215;3158;3111;3111;4862;15923;28186;34944;31545;33856;30881;32882;30880;34134;35889;39504;25173;58476;70041;600781.52;558260.83;434938.83 -5801;'199;Least Developed Countries;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;800;1800;1900;5000;5300;5800;8500;15600;16600;18700;18700;17700;18700;22000;23100;26000;28800;29500;26700;31700;42300;33300;33300;30000;28000;28000;54000;56000;53000;43300;36800;;;;;;;;;;;;;;;;;;;;;;;;;; -5801;'199;Least Developed Countries;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;2900;4400;5400;7500;8700;16800;8700;11500;14800;20900;28000;24000;23300;25800;19700;19800;17300;16500;17800;23900;22500;18500;21100;19800;25800;33600;40100;38000;19900;26600;23700;7612;7676;10269;11065;13300;9700;;;;;;;;;;;;;;;;;;;;;;;;;; -5801;'199;Least Developed Countries;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;634;1422;2286;2021;2354;4881;2453;2658;3563;4546;8444;7527;8302;11811;11008;12211;10143;9347;10381;15143;17986;11730;13981;14071;13664;17959;23777;25585;15103;18336;16785;7466;6167;8502;10322;9935;9662;;;;;;;;;;;;;;;;;;;;;;;;;; -5801;'199;Least Developed Countries;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2379;998;59;1669;1669;1629;;;;;;;;;;;;;;;;;;;;;;;;;; -5801;'199;Least Developed Countries;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1438;434;38;948;948;919;;;;;;;;;;;;;;;;;;;;;;;;;; -5801;'199;Least Developed Countries;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8600;8300;8800;8800;8800;8400;8400;8400;8400;8400;8400;10400;9400;9400;9400;41532;36512;59238;9297;9640;9640;309640;309640;1157640;1054640;1205640 -5801;'199;Least Developed Countries;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13176;26525;22064;126977;109132;134363;134544;138059;136026;137912;152119;226392;233710;252727;295364;326364;363045;345842;383121;582426;641537;836884;872824;799366.87;756580;785981 -5801;'199;Least Developed Countries;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10708;16426;13257;48124;42443;65330;80523;82232;64557;76004;108654;113374;143626;166402;173526;204756;220003;203050;199556;316530;387905;438110;438281;527811.96;563549;462111 -5801;'199;Least Developed Countries;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1538;452;205;805;821;1519;1628;1628;3663;37983;23201;24662;17121;16381;14752;19593;20796;26713;30394;29203;14791;27036;39694;902208.18;849748.01;1000054.02 -5801;'199;Least Developed Countries;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1012;221;109;427;429;688;759;759;1760;4281;16814;18552;15205;15961;13591;17826;16940;20953;21499;18852;9537;21424;25435;570748.27;524533.21;417288.21 -5801;'199;Least Developed Countries;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2900;2400;4300;3600;2500;2000;2400;2700;2700;2700;2700;2100;2100;2100;2100;58100;32100;25885;25885;25885;25885;24785;24785;24785;24785;24785 -5801;'199;Least Developed Countries;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9549;28732;19840;31984;27329;61375;104687;105642;73669;80698;101432;122777;141898;188514;203062;242612;350245;318037;370107;354076;387008;397630;399688;399367.46;456489;393927 -5801;'199;Least Developed Countries;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7786;20347;16179;24970;18682;41146;66935;67197;52487;82847;98993;113622;142945;190415;151612;184430;287767;219657;297063;279336;326943;378304;424841;511962.31;590674;462323 -5801;'199;Least Developed Countries;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;659;93;383;498;516;576;1190;1190;972;1758;2932;6600;5435;4689;2601;2282;3657;3828;3639;3007;2921;12351;14050;11644.43;10981;5598 -5801;'199;Least Developed Countries;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;291;159;830;583;611;621;935;935;914;1836;2937;6552;5770;7703;5574;2921;3742;3330;3854;3429;2365;4436;8046;5720.93;6333;3576 -5801;'199;Least Developed Countries;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19400;18800;19100;19200;20000;18100;17100;17600;17600;17600;17600;46600;46600;46600;46600;46600;46600;46600;46280;46858;46858;42258;42258;42258;42258;42258 -5801;'199;Least Developed Countries;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8814;26712;24535;70426;59408;112568;112992;109660;83993;136613;93884;98708;125488;126458;91658;83670;142959;130345;181084;157381;156359;198051;223771;227593.59;173846;143511 -5801;'199;Least Developed Countries;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6490;20104;17420;36937;32385;71572;71095;68731;51023;85604;80001;83835;107680;104519;73229;71851;121221;96081;126519;117919;123435;170628;184008;222490.98;189101;160802 -5801;'199;Least Developed Countries;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;63;67;121;158;2974;1709;1709;2575;27910;9388;10735;10513;10898;11398;12549;11521;8738;9097;17909;12582;23560;29555;20730.14;25107;10570 -5801;'199;Least Developed Countries;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;49;51;67;170;1731;1080;1080;1843;9415;8264;8727;9418;10008;11507;11924;9967;7960;8629;15175;11154;30574;34688;22394.32;25599;10991 -5801;'199;Least Developed Countries;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13030;11020;11020;12020;18220;19570;19870;21370;21070;21070;21070;29270;29270;29270;29270;29270;29270;29270;29916;29916;29916;11816;11816;11816;11816;11816 -5801;'199;Least Developed Countries;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;458;1769;1741;11101;10652;11031;16751;16663;8317;6737;3015;4615;5265;4841;5649;9298;14374;4956;13313;13482;8379;11554;8645;12416.7;10805;17352 -5801;'199;Least Developed Countries;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;219;726;752;3238;3079;9527;9948;9871;4292;4550;2528;2681;3757;3386;8533;11634;11290;7409;8694;13975;5742;11256;13617;21576.31;16594;23156 -5801;'199;Least Developed Countries;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16;16;16;16;158;569;569;576;606;184;2335;2351;199;238;226;237;312;326;850;1003;860;330;447;421.99;4117.99 -5801;'199;Least Developed Countries;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;5;118;337;337;345;391;171;1113;1152;184;209;211;231;1891;1907;2048;2117;2042;1872;1918;1795.62;3083.62 -5801;'199;Least Developed Countries;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;3500;3500;3500;3500;3600;1600;1700;1900;1900;1200;4100;2100;2100;2700;4900;3700;7300;17235;19412;21087;20265;20647;22885;19262;33788;41364;49379;47151;33920;57405;59875;39656;37775;29680;29824;31763;35927;35774;36327;35990;35674;36115;36115;36115;31115;24715;24715;24715;28015;27659;29659;29659;29659;28659;28659;29159;29159;29159;29159;33159 -5801;'199;Least Developed Countries;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;4000;5300;4100;4600;5600;6500;9700;27900;28700;38800;40900;36000;49000;41400;38200;32600;34300;34800;36500;28700;27800;23200;21900;18100;25100;24300;56000;36100;22200;22500;21700;54074;58111;57603;61502;81504;83345;92876;137970;126290;54024;34956;51117;55128;54930;73065;55326;48351;46229;46910;54479;41265;50873;69502;63242;82762;43570;47637;75130;51370;51473.31;58518;61954 -5801;'199;Least Developed Countries;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;1933;2492;1972;2445;3396;4467;5453;11250;11565;13893;15743;15220;21260;24694;26947;26928;27120;25227;31079;28950;30370;25400;24375;19598;22067;20531;39638;29392;25031;28184;27119;33873;39157;36444;49607;50521;50113;75261;72125;64289;34360;30168;47178;57521;57369;61393;68684;75630;75046;86081;105111;63788;79475;119265;55434;105414;57722;65252;83570;75620;82959.54;82515;83263 -5801;'199;Least Developed Countries;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;6005;78;44;144;144;1144;745;790;435;435;341;631;1187;1187;639;742;2062;1484;3077;1839;1273;1231;2252;4523;930;1103;1101;765;777;706;403.62;411 -5801;'199;Least Developed Countries;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;4946;57;26;130;130;617;435;734;416;344;349;700;1270;1270;927;1264;2807;4362;5282;4115;3054;2149;3627.6;11583;1417;1434;3481;5158;2745;3141;2216.64;2016 -5801;'199;Least Developed Countries;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;707464;737350;748066;600247;649556;914821;840796 -5801;'199;Least Developed Countries;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;177286.9;316054;313412;210148;350823;432718;569964 -5801;'199;Least Developed Countries;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33397;20661;54641;35718;36805;24778;17525 -5801;'199;Least Developed Countries;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58317;71952;54091;40138;61608;47089;68217 -5801;'199;Least Developed Countries;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12766;14471;13085;13365;14573;12749;12356 -5801;'199;Least Developed Countries;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5216;1004;1865;15500;26553;29795;50592 -5801;'199;Least Developed Countries;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20631;6190;41556;22353;22232;12029;5169 -5801;'199;Least Developed Countries;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53101;70948;52226;24638;35055;17294;17625 -5801;'199;Least Developed Countries;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22806;24469;21717;18752;21853;29181;24320 -5801;'199;Least Developed Countries;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1963;13339;3026;4140;4349;5061;4203 -5801;'199;Least Developed Countries;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12046;15401;18392;12298;14466;20127;18400 -5801;'199;Least Developed Countries;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3396;32108;7759;6698;8152;7562;8260 -5801;'199;Least Developed Countries;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95256;107352;106647;93817;103588;94897;111924 -5801;'199;Least Developed Countries;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35497.9;85954;112683;20859;30141;23832;23035 -5801;'199;Least Developed Countries;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;625;1297 -5801;'199;Least Developed Countries;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;741;1240 -5801;'199;Least Developed Countries;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;151;835 -5801;'199;Least Developed Countries;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;227;169 -5801;'199;Least Developed Countries;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;52 -5801;'199;Least Developed Countries;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;131;76 -5801;'199;Least Developed Countries;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;304;343 -5801;'199;Least Developed Countries;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;587;561 -5801;'199;Least Developed Countries;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27 -5801;'199;Least Developed Countries;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34 -5801;'199;Least Developed Countries;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;483565;515432;488074;379665;408035;672489;593062 -5801;'199;Least Developed Countries;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50125;79887;112546;121278;181732;269111;392035 -5801;'199;Least Developed Countries;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23750;23893;18275;13783;11645;12951;11943 -5801;'199;Least Developed Countries;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;260;68;94;122;83;73;162 -5801;'199;Least Developed Countries;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36644;30142;40320;46214;53164;60398;63622 -5801;'199;Least Developed Countries;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27728;32746;23213;16913;64758;79990;74052 -5801;'199;Least Developed Countries;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1608890;1662842;1712230;1668700;1846197;2034215;1932388 -5801;'199;Least Developed Countries;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99968;287071;121172;110488;153812;163886;162430 -5801;'199;Least Developed Countries;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6736;7023;4008;3849;3731;4170;2760 -5801;'199;Least Developed Countries;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2671;2286;2292;2295;2648;2657;2293 -5801;'199;Least Developed Countries;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;122945;121504;135206;132973;187033;206174;191615 -5801;'199;Least Developed Countries;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1253;2695;1757;1136;1455;5170;14716 -5801;'199;Least Developed Countries;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;123549;112595;120939;121903;114353;118340;167201 -5801;'199;Least Developed Countries;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12676;10848;10943;7930;12547;15611;8871 -5801;'199;Least Developed Countries;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;561143;600587;645632;633856;688233;770153;629924 -5801;'199;Least Developed Countries;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46341;189402;65301;65225;96061;98005;99760 -5801;'199;Least Developed Countries;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;794517;821133;806445;776119;852847;935378;940888 -5801;'199;Least Developed Countries;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37027;81840;40879;33902;41101;42443;36790 -5802;'432;Land Locked Developing Countries;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5417274.55;5927245;6245790;5467642;6613947.53;7581341.2;7238772.69 -5802;'432;Land Locked Developing Countries;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1181309.63;1442091;1553178;1312188;2441832.88;2459376.23;2356218.65 -5802;'432;Land Locked Developing Countries;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;17158;16526;14767;20225;24693;28947;31321;37828;40287;39027;42751;50035;57168;73325;81091;79378;89018;91595;107118;148479;139617;124674;111495;107115;109843;83531;106512;98462;96525;116134;118307;129470;138871;179883;243798;293487;355891;357914;430189;465729;474359;513278;673007;873976;1071308.2;1390779;1839076;2132753.1;1965858;2376522.1;3171180.35;3298273.52;3536221.48;3742797.49;2948470.24;2982028;3231484.55;3632837;3836897;3298634;4112394.53;4721861.2;4420834.69 -5802;'432;Land Locked Developing Countries;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;13071;12349;11488;20646;24247;22934;22422;33193;36444;45011;45978;49062;73779;98887;101268;110627;106104;130472;177561;225600;201890;212131;179736;223926;213927;201583;183196;149378;200060;206532;213797;268016;332454;418281;381858;397251;363432;313520;293745;353003;399486;286314;340391;367212;370332;416915;590801;637392;608653;751292;1065606.18;1022541.48;1373189;2158942.04;1372473;856722;917878.82;1108319;1180214;1023088;1850893.88;2027570.23;1936029.65 -5802;'432;Land Locked Developing Countries;1861;Roundwood;5516;Production;m3;73243778;74886406;77527053;79937558;81939289;84239347;87804565;89679006;91613523;93811030;96806624;96329249;97969365;99539244;103397514;104996271;106200364;109375895;111294678;114684363;117399252;119306238;119157740;121940504;124405606;125706369;127961135;129448089;132299252;133365798;135050599;138473500;220347240;226569451;230101190;232917382;238853969;241864349;240466372;250444961;255659535;257797810;261666936;267545650;273938377;277845587;282049639;288419052;291944920;296775211;302861668;306334220;310489280;317344742;320808846;324079908;326645165;329808800;332465878;334533002;335571640;338724612;345571229 -5802;'432;Land Locked Developing Countries;1861;Roundwood;5616;Import quantity;m3;12700;10500;7301;12401;13100;13200;12600;20800;28900;39800;41600;36100;29100;37800;28500;25900;19400;19000;26600;45200;83900;123500;128400;118100;118100;116400;116400;97900;80500;42532;2341;1040;6851;38997;38419;190225;197103;53311;52716;227573;193488;243844;426989;481317;537437;550973;658695;667929;515236;586198;937392;787196;801039;797132;843496;700051;647399;878917;1132622;1019205;1383931.43;1086931.6;1184899.6 -5802;'432;Land Locked Developing Countries;1861;Roundwood;5622;Import value;1000 USD;248;239;158;389;511;549;518;763;762;601;877;692;637;743;563;520;474;449;1406;1153;1941;2617;2870;2597;2597;2746;2747;2717;2672;826;431;326;906;1835;2074;7579;9973;3191;11856;7803;7619;7873;12219;16148;22537.2;33138;46618;56877;41957;46758.1;61675.35;73349.28;85705.24;67504;44674;45381;54386.23;61308;79411;73638;79771.12;69165.52;64405.52 -5802;'432;Land Locked Developing Countries;1861;Roundwood;5916;Export quantity;m3;319300;287200;286200;472800;572800;580200;493700;531200;454100;488800;483500;354800;396300;577500;426800;458700;492100;496200;518600;454000;539100;528600;483500;507600;410300;206409;170310;122610;138358;84355;50792;150882;206661;370234;441721;426674;249846;176791;251375;1091513;1049162;170126;282781;429333;409583;327269;351317;463046;305328;731713;1062760;846176;819713;1205275;2211471;2105986;1414105;1369340;1397949;1196381;1456066.2;1507084;1817396 -5802;'432;Land Locked Developing Countries;1861;Roundwood;5922;Export value;1000 USD;7177;6734;6446;11671;14894;13406;10988;10845;10500;12260;12086;9383;16153;21231;18005;16167;23079;37495;54957;49475;45646;34700;32205;34171;20909;27002;12917;13762;21123;16047;8725;21469;36251;105691;64750;59880;28908;35976;69959;140551;164252;50681;84556;96788;93845;90726;144221;153211;136475;196400;378528;330174;521202.4;1097742;634194;391097;450888.01;366400;305798;212698;273491.92;210526;264875 -5802;'432;Land Locked Developing Countries;1862;Roundwood, coniferous;5516;Production;m3;1961595;2074778;2301990;2771227;2943496;3128792;3316115;3542771;3821855;3967468;4467059;4650316;4691778;4730753;5408907;5458132;5918564;6009025;5531306;5765836;6101439;6775193;5228828;5174649;5416807;4403538;4193187;4798867;4539938;4347970;4145835;4746041;10228835;10920716;11305746;11115640;11366358;11498288;11572470;11494048;11829581;11697025;11691445;12015737;12350207;11745014;12207970;12289004;12348543;12461651;12571490;12574564;12882169;14752093;14951664;15116764;15601128;15964345;16066171;16303502;16504518;16506489;16638963 -5802;'432;Land Locked Developing Countries;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;563419;782780;1014814;867568;1241705.66;912680.6;1006067.6 -5802;'432;Land Locked Developing Countries;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44451.23;52480;69014;60324;68633.12;52806.52;49405.52 -5802;'432;Land Locked Developing Countries;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;265695;363092;394454;160315;134394.36;76213;50704 -5802;'432;Land Locked Developing Countries;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16790;20662;25859;9352;10958;5261;3871 -5802;'432;Land Locked Developing Countries;1863;Roundwood, non-coniferous;5516;Production;m3;71282183;72811628;75225063;77166331;78995793;81110555;84488450;86136235;87791668;89843562;92339565;91678933;93277587;94808491;97988607;99538139;100281800;103366870;105763372;108918527;111297813;112531045;113928912;116765855;118988799;121302831;123767948;124649222;127759314;129017828;130904764;133727459;210118405;215648735;218795444;221801742;227487611;230366061;228893902;238950913;243829954;246100785;249975491;255529913;261588170;266100573;269841669;276130048;279596377;284313560;290290178;293759656;297607111;302592649;305857182;308963144;311044037;313844455;316399707;318229500;319067122;322218123;328932266 -5802;'432;Land Locked Developing Countries;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83980;96137;117808;151637;142225.77;174251;178832 -5802;'432;Land Locked Developing Countries;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9935;8828;10397;13314;11138;16359;15000 -5802;'432;Land Locked Developing Countries;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1148410;1006248;1003495;1036066;1321671.84;1430871;1766692 -5802;'432;Land Locked Developing Countries;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;434098.01;345738;279939;203346;262533.92;205265;261004 -5802;'432;Land Locked Developing Countries;1864;Wood fuel;5516;Production;m3;68180778;69668406;71651053;73647558;75274289;76994347;80042565;81960706;83287523;85234830;87536224;86830949;88089165;89518744;92636014;94336771;95017464;97331895;99081678;101686963;104282852;105292338;106245340;108605304;110420306;112185269;114231635;115383389;117654552;118482398;119638099;122614300;201287440;206092851;208286490;211061282;216521769;218970949;216863672;227293311;232651425;234275610;237568336;242874350;248676775;252521026;256161041;261729309;265689414;269925101;275182294;278791371;281935016;287971038;291359677;294257343;296496517;298975012;301557909;303607344;304402614;306987635;313913873 -5802;'432;Land Locked Developing Countries;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;40000;43000;32700;32700;32700;32700;32700;32700;32700;1400;0;320;4040;933;3033;913;2913;3147;41943;14581;15741;6317;7194;7394;2507;2864;4878;48437;106973;63606;99282;219450;239405;329941;251257;151652;279511;319461;358646;660763.43;692050.6;645733.6 -5802;'432;Land Locked Developing Countries;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;745;885;612;612;612;612;612;612;612;115;0;11;267;126;173;85;182;214;1092;394;413;291;263;178;182;197;513;2488;5695;3438;7042;7317.24;6885;8066;6006;5725.49;11914;12799;13443;23721.12;25392.52;20936.52 -5802;'432;Land Locked Developing Countries;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;264;842;1159;1196;8876;1770;1970;1770;13070;13070;308;1392;4210;4664;5027;7461;5252;2471;313903;396232;294053;294687;296560;447816;827217;724483;759092;845778;596410;844371.2;975384;899882 -5802;'432;Land Locked Developing Countries;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;30;130;226;712;269;291;684;427;427;11;34;219;145;159;454;383;247;13655;13407;11446;11261;11762;13669;27431;24600;26326;28507;20115;34390.92;34876;37809 -5802;'432;Land Locked Developing Countries;1627;Wood fuel, coniferous;5516;Production;m3;833595;880778;755990;1009227;1097496;1154792;1247115;1348471;1424855;1446268;1460659;1489016;1479578;1485253;1548407;1564632;1728664;1778025;1940306;1885836;1964439;1743193;1147828;1094649;1140807;1150538;1116187;994867;995938;851770;528635;1018041;6229235;6371116;6477946;6544640;6708258;7023328;6782060;7379033;7694841;7626395;7594085;7781938;7902984;7829724;8013780;8125814;8401853;8549861;8640700;8498774;8596269;10436293;10591864;10725964;10931608;10968785;11079611;11316942;11439756;11550709;11665552 -5802;'432;Land Locked Developing Countries;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;122782;228823;271398;311478;612336.66;644774.6;600599.6 -5802;'432;Land Locked Developing Countries;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4553.26;7616;8614;9229;19250.12;21128.52;16175.52 -5802;'432;Land Locked Developing Countries;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;240385;232362;211522;8845;15199.36;7901;32380 -5802;'432;Land Locked Developing Countries;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7623;6440;5079;196;337;255;861 -5802;'432;Land Locked Developing Countries;1628;Wood fuel, non-coniferous;5516;Production;m3;67347183;68787628;70895063;72638331;74176793;75839555;78795450;80612235;81862668;83788562;86075565;85341933;86609587;88033491;91087607;92772139;93288800;95553870;97141372;99801127;102318413;103549145;105097512;107510655;109279499;111034731;113115448;114388522;116658614;117630628;119109464;121596259;195058205;199721735;201808544;204516642;209813511;211947621;210081612;219914278;224956584;226649215;229974251;235092412;240773791;244691302;248147261;253603495;257287561;261375240;266541594;270292597;273338747;277534745;280767813;283531379;285564909;288006227;290478298;292290402;292962858;295436926;302248321 -5802;'432;Land Locked Developing Countries;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28870;50688;48063;47168;48426.77;47276;45134 -5802;'432;Land Locked Developing Countries;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1172.22;4298;4185;4214;4471;4264;4761 -5802;'432;Land Locked Developing Countries;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;484098;526730;634256;587565;829171.84;967483;867502 -5802;'432;Land Locked Developing Countries;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16977;19886;23428;19919;34053.92;34621;36948 -5802;'432;Land Locked Developing Countries;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;40000;43000;32700;32700;32700;32700;32700;32700;32700;1400;0;320;4040;933;3033;913;2913;3147;41943;14581;15741;6317;7194;7394;2507;2864;4878;48437;106973;63606;99282;219450;239405;329941;251257;;;;;;; -5802;'432;Land Locked Developing Countries;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;11;267;126;173;85;182;214;1092;394;413;291;263;178;182;197;513;2488;5695;3438;7042;7317.24;6885;8066;6006;;;;;;; -5802;'432;Land Locked Developing Countries;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;264;842;1159;1196;8876;1770;1970;1770;13070;13070;308;1392;4210;4664;5027;7461;5252;2471;313903;396232;294053;294687;296560;447816;827217;;;;;;; -5802;'432;Land Locked Developing Countries;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;30;130;226;712;269;291;684;427;427;11;34;219;145;159;454;383;247;13655;13407;11446;11261;11762;13669;27431;;;;;;; -5802;'432;Land Locked Developing Countries;1865;Industrial roundwood;5516;Production;m3;5063000;5218000;5876000;6290000;6665000;7245000;7762000;7718300;8326000;8576200;9270400;9498300;9880200;10020500;10761500;10659500;11182900;12044000;12213000;12997400;13116400;14013900;12912400;13335200;13985300;13521100;13729500;14064700;14644700;14883400;15412500;15859200;19059800;20476600;21814700;21856100;22332200;22893400;23602700;23151650;23008110;23522200;24098600;24671300;25261602;25324561;25888598;26689743;26255506;26850110;27679374;27542849;28554264;29373704;29449169;29822565;30148648;30833788;30907969;30925658;31169026;31736977;31657356 -5802;'432;Land Locked Developing Countries;1865;Industrial roundwood;5616;Import quantity;m3;12700;10500;7301;12401;13100;13200;12600;20800;28900;39800;41600;36100;29100;37800;28500;25900;19400;19000;26600;45200;83900;83500;85400;85400;85400;83700;83700;65200;47800;9832;941;1040;6531;34957;37486;187192;196190;50398;49569;185630;178907;228103;420672;474123;530043;548466;655831;663051;466799;479225;873786;687914;581589;557727;513555;448794;495747;599406;813161;660559;723168;394881;539166 -5802;'432;Land Locked Developing Countries;1865;Industrial roundwood;5622;Import value;1000 USD;248;239;158;389;511;549;518;763;762;601;877;692;637;743;563;520;474;449;1406;1153;1941;1872;1985;1985;1985;2134;2135;2105;2060;214;316;326;895;1568;1948;7406;9888;3009;11642;6711;7225;7460;11928;15885;22359.2;32956;46421;56364;39469;41063.1;58237.35;66307.28;78388;60619;36608;39375;48660.74;49394;66612;60195;56050;43773;43469 -5802;'432;Land Locked Developing Countries;1865;Industrial roundwood;5916;Export quantity;m3;319300;287200;286200;472800;572800;580200;493700;531200;454100;488800;483500;354800;396300;577500;426800;458700;492100;496200;518600;454000;539100;528600;483500;507600;410300;206409;170310;122610;138358;84355;50792;150618;205819;369075;440525;417798;248076;174821;249605;1078443;1036092;169818;281389;425123;404919;322242;343856;457794;302857;417810;666528;552123;525026;908715;1763655;1278769;689622;610248;552171;599971;611695;531700;917514 -5802;'432;Land Locked Developing Countries;1865;Industrial roundwood;5922;Export value;1000 USD;7177;6734;6446;11671;14894;13406;10988;10845;10500;12260;12086;9383;16153;21231;18005;16167;23079;37495;54957;49475;45646;34700;32205;34171;20909;27002;12917;13762;21123;16047;8725;21458;36221;105561;64524;59168;28639;35685;69275;140124;163825;50670;84522;96569;93700;90567;143767;152828;136228;182745;365121;318728;509941.4;1085980;620525;363666;426288.01;340074;277291;192583;239101;175650;227066 -5802;'432;Land Locked Developing Countries;1866;Industrial roundwood, coniferous;5516;Production;m3;1128000;1194000;1546000;1762000;1846000;1974000;2069000;2194300;2397000;2521200;3006400;3161300;3212200;3245500;3860500;3893500;4189900;4231000;3591000;3880000;4137000;5032000;4081000;4080000;4276000;3253000;3077000;3804000;3544000;3496200;3617200;3728000;3999600;4549600;4827800;4571000;4658100;4474960;4790410;4115015;4134740;4070630;4097360;4233799;4447223;3915290;4194190;4163190;3946690;3911790;3930790;4075790;4285900;4315800;4359800;4390800;4669520;4995560;4986560;4986560;5064762;4955780;4973411 -5802;'432;Land Locked Developing Countries;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9832;766;865;1501;18952;21685;171572;184070;38011;39047;140338;127548;187200;277293;333851;403982;490026;588909;596117;408199;424052;788811;580839;453989;461165;437218;401570;440637;553957;743416;556090;629369;267906;405468 -5802;'432;Land Locked Developing Countries;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;214;298;308;373;744;1079;6565;9316;1997;10631;5561;5500;6377;10052;14256;20481.2;29575;40964;49113;32706;34905;48046;49067;47543;45488;28941;33317;39897.97;44864;60400;51095;49383;31678;33230 -5802;'432;Land Locked Developing Countries;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31000;17972;88683;108897;206420;204931;126154;95873;14773;27578;99558;99048;14587;39407;88891;89488;12647;16920;15556;7547;14289;14764;11662;13925;42376;14859;7286;25310;130730;182932;151470;119195;68312;18324 -5802;'432;Land Locked Developing Countries;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1069;1174;8994;11372;60004;16086;14696;10318;7891;10950;6554;6535;1877;4845;7495;7491;770;1194;1170;597;4198;3073;2355;2164;6048;1741;1053;9167;14222;20780;9156;10621;5006;3010 -5802;'432;Land Locked Developing Countries;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9832;766;865;1501;18952;21685;171572;184070;38011;39047;140338;127548;187200;277293;333851;403982;490026;588909;596117;408199;424052;788811;580839;453989;461165;437218;401570;440637;553957;743416;556090;629369;267906;405468 -5802;'432;Land Locked Developing Countries;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;214;298;308;373;744;1079;6565;9316;1997;10631;5561;5500;6377;10052;14256;20481.2;29575;40964;49113;32706;34905;48046;49067;47543;45488;28941;33317;39897.97;44864;60400;51095;49383;31678;33230 -5802;'432;Land Locked Developing Countries;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31000;17972;88683;108897;206420;204931;126154;95873;14773;27578;99558;99048;14587;39407;88891;89488;12647;16920;15556;7547;14289;14764;11662;13925;42376;14859;7286;25310;130730;182932;151470;119195;68312;18324 -5802;'432;Land Locked Developing Countries;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1069;1174;8994;11372;60004;16086;14696;10318;7891;10950;6554;6535;1877;4845;7495;7491;770;1194;1170;597;4198;3073;2355;2164;6048;1741;1053;9167;14222;20780;9156;10621;5006;3010 -5802;'432;Land Locked Developing Countries;1867;Industrial roundwood, non-coniferous;5516;Production;m3;3935000;4024000;4330000;4528000;4819000;5271000;5693000;5524000;5929000;6055000;6264000;6337000;6668000;6775000;6901000;6766000;6993000;7813000;8622000;9117400;8979400;8981900;8831400;9255200;9709300;10268100;10652500;10260700;11100700;11387200;11795300;12131200;15060200;15927000;16986900;17285100;17674100;18418440;18812290;19036635;18873370;19451570;20001240;20437501;20814379;21409271;21694408;22526553;22308816;22938320;23748584;23467059;24268364;25057904;25089369;25431765;25479128;25838228;25921409;25939098;26104264;26781197;26683945 -5802;'432;Land Locked Developing Countries;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;175;175;5030;16005;15801;15620;12120;12387;10522;45292;51359;40903;143379;140272;126061;58440;66922;66934;58600;55173;84975;107075;127600;96562;76337;47224;55110;45449;69745;104469;93799;126975;133698 -5802;'432;Land Locked Developing Countries;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;522;824;869;841;572;1012;1011;1150;1725;1083;1876;1629;1878;3381;5457;7251;6763;6158.1;10191.35;17240.28;30845;15131;7667;6058;8762.77;4530;6212;9100;6667;12095;10239 -5802;'432;Land Locked Developing Countries;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53355;32820;61935;96922;162655;235594;291644;152203;160048;222027;978885;937044;155231;241982;336232;315431;309595;326936;442238;295310;403521;651764;540461;511101;866339;1748796;1271483;664312;479518;369239;448501;492500;463388;899190 -5802;'432;Land Locked Developing Countries;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14978;7551;12464;24849;45557;48438;44472;18321;27794;58325;133570;157290;48793;79677;89074;86209;89797;142573;151658;135631;178547;362048;316373;507777.4;1079932;618784;362613;417121.01;325852;256511;183427;228480;170644;224056 -5802;'432;Land Locked Developing Countries;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;175;175;175;181;181;0;0;3242;1342;1289;947;4787;13234;7831;7234;7784;7509;3687;1980;9385;21045;31980;64024;43552;26083;16974;19385;6426;3908;3319;1592;8081;2172 -5802;'432;Land Locked Developing Countries;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;18;28;28;0;0;102;60;128;123;208;299;531;707;657;686;772;660;1214;3458;7500.28;17071;7936;3200;3100;5713.79;1934;579;547;453;772;420 -5802;'432;Land Locked Developing Countries;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52720;32330;60775;90367;160738;230796;286816;145623;154447;213176;526935;476074;128873;192063;286479;243553;275666;281829;401947;257066;372974;626580;508593;479151;799912;1739565;1240033;632097;469666;344938;424391;452276;381526;531714 -5802;'432;Land Locked Developing Countries;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14838;7472;12276;23959;45276;47757;43791;17490;26886;35561;109924;133216;45510;74860;85396;82351;84949;131177;141019;125794;170928;354023;308236;499772;1065966;613585;355828;412311.06;322115;251752;178754;220967;136789;217089 -5802;'432;Land Locked Developing Countries;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4855;15824;15620;15620;12120;9145;9180;44003;50412;36116;130145;132441;118827;50656;59413;63247;56620;45788;63930;75095;63576;53010;50254;30250;35725;39023;65837;101150;92207;118894;131526 -5802;'432;Land Locked Developing Countries;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;504;796;841;841;572;910;951;1022;1602;875;1577;1098;1171;2724;4771;6479;6103;4944.1;6733.35;9740;13774;7195;4467;2958;3048.98;2596;5633;8553;6214;11323;9819 -5802;'432;Land Locked Developing Countries;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;635;490;1160;6555;1917;4798;4828;6580;5601;8851;451950;460970;26358;49919;49753;71878;33929;45107;40291;38244;30547;25184;31868;31950;66427;9231;31450;32215;9852;24301;24110;40224;81862;367476 -5802;'432;Land Locked Developing Countries;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;140;79;188;890;281;681;681;831;908;22764;23646;24074;3283;4817;3678;3858;4848;11396;10639;9837;7619;8025;8137;8005.4;13966;5199;6785;4809.95;3737;4759;4673;7513;33855;6967 -5802;'432;Land Locked Developing Countries;1868;Sawlogs and veneer logs;5516;Production;m3;2368000;2463000;2525000;2739000;3034000;3482000;3936000;3750300;4242000;4365200;4662400;4678300;4899200;4964500;4964500;4931500;5290900;5862000;6100000;6795400;6793400;7602400;6525900;6776700;7026800;7348600;7591000;7202200;7352200;7634900;7980000;7946700;8832900;9838000;10320800;10091000;10379900;11117900;11508450;10820900;11021260;10796090;10726620;11076350;11341452;11222711;11712848;12525993;12069356;12678860;13504124;14183399;15037514;15782776;15786791;16094937;16416330;16905070;16950070;16962070;17130063;17666326;17609289 -5802;'432;Land Locked Developing Countries;1868;Sawlogs and veneer logs;5616;Import quantity;m3;6400;5100;4301;8101;9600;10300;11300;11100;12200;12500;13600;13600;13600;14800;12800;10300;4400;4000;11600;3900;11800;11400;13300;13300;13300;11600;11600;11600;11600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5802;'432;Land Locked Developing Countries;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;112;108;84;292;344;384;441;429;329;347;441;441;441;405;355;323;316;291;1248;292;1211;1142;1255;1255;1255;1404;1405;1405;1405;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5802;'432;Land Locked Developing Countries;1868;Sawlogs and veneer logs;5916;Export quantity;m3;313600;284600;269900;430300;497500;506100;411200;422900;351200;389300;403900;272800;296600;415200;260000;211900;252800;282800;274000;289200;266500;230900;204700;230400;133100;106209;46910;68210;87558;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5802;'432;Land Locked Developing Countries;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;7029;6655;6213;11383;14339;12874;10406;10258;9845;11755;11607;8684;14098;19934;15894;13466;20352;34454;51450;46908;41709;29503;27955;30006;16744;24611;10172;11455;20392;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5802;'432;Land Locked Developing Countries;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;977000;1041000;1011000;1131000;1213000;1328000;1421000;1543300;1714000;1805200;1959400;1999300;2049200;2082500;2157500;2188500;2434900;2474000;2280000;2546000;2678000;3595000;2641000;2609000;2769000;2632000;2628000;2744000;2655000;2605200;2693200;2786000;3021600;3545600;3754300;3470000;3582300;3435130;3716305;3022020;3043745;2986365;2998320;3104842;3243262;2807595;3033895;2990895;2778395;2726395;2743395;2941395;3135700;3159400;3203400;3234400;3500330;3671070;3667070;3669070;3766272;3625958;3623921 -5802;'432;Land Locked Developing Countries;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;100;200;1;1;200;200;200;0;0;0;0;0;0;0;0;0;1400;1400;9000;1400;8400;8400;8400;8400;8400;8400;8400;8400;8400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5802;'432;Land Locked Developing Countries;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;2;4;1;2;4;4;4;0;0;0;0;0;0;0;0;0;105;105;1075;176;1019;1019;1019;1019;1019;1019;1019;1019;1019;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5802;'432;Land Locked Developing Countries;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;;8200;28700;12700;5700;5700;;43200;46600;46600;59000;13400;13500;13500;14400;10900;2400;2200;400;400;400;400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5802;'432;Land Locked Developing Countries;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;;58;304;132;164;168;;143;262;262;333;101;148;148;247;144;28;32;18;19;19;19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5802;'432;Land Locked Developing Countries;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;1391000;1422000;1514000;1608000;1821000;2154000;2515000;2207000;2528000;2560000;2703000;2679000;2850000;2882000;2807000;2743000;2856000;3388000;3820000;4249400;4115400;4007400;3884900;4167700;4257800;4716600;4963000;4458200;4697200;5029700;5286800;5160700;5811300;6292400;6566500;6621000;6797600;7682770;7792145;7798880;7977515;7809725;7728300;7971508;8098190;8415116;8678953;9535098;9290961;9952465;10760729;11242004;11901814;12623376;12583391;12860537;12916000;13234000;13283000;13293000;13363791;14040368;13985368 -5802;'432;Land Locked Developing Countries;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;6300;4900;4300;8100;9400;10100;11100;11100;12200;12500;13600;13600;13600;14800;12800;10300;3000;2600;2600;2500;3400;3000;4900;4900;4900;3200;3200;3200;3200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5802;'432;Land Locked Developing Countries;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;110;104;83;290;340;380;437;429;329;347;441;441;441;405;355;323;211;186;173;116;192;123;236;236;236;385;386;386;386;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5802;'432;Land Locked Developing Countries;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;313600;276400;241200;417600;491800;500400;411200;379700;304600;342700;344900;259400;283100;401700;245600;201000;250400;280600;273600;288800;266100;230500;204700;230400;133100;106209;46910;68210;87558;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5802;'432;Land Locked Developing Countries;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;7029;6597;5909;11251;14175;12706;10406;10115;9583;11493;11274;8583;13950;19786;15647;13322;20324;34422;51432;46889;41690;29484;27955;30006;16744;24611;10172;11455;20392;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5802;'432;Land Locked Developing Countries;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;713600;737700;736800;724000;728380;719090;733200;759300;697900;713800;713800;696000;623100;624100;623300;629440;629268;629268;629268;769528;915868;915868;915868;921246;921526;926270 -5802;'432;Land Locked Developing Countries;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;670600;683700;689000;680350;676800;675680;687281;717783;672100;684900;684900;667900;615000;615000;615000;615000;615000;615000;615000;755260;901600;901600;901600;901600;901600;901600 -5802;'432;Land Locked Developing Countries;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43000;54000;47800;43650;51580;43410;45919;41517;25800;28900;28900;28100;8100;9100;8300;14440;14268;14268;14268;14268;14268;14268;14268;19646;19926;24670 -5802;'432;Land Locked Developing Countries;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5802;'432;Land Locked Developing Countries;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5802;'432;Land Locked Developing Countries;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;1736000;1736000;1373000;1359000;1368000;1372000;1365000;1404000;1379000;489000;343000;937000;765000;756000;794000;1085000;1061000;1093000;1144500;1139000;1108000;;;;;;;;;;;;;;;;;;;;;;;;;; -5802;'432;Land Locked Developing Countries;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5802;'432;Land Locked Developing Countries;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5802;'432;Land Locked Developing Countries;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;1625000;1625000;1178000;1200000;1323000;1305000;1311000;1345000;1312000;428000;257000;863000;691000;682000;698000;698000;698000;696000;739500;736000;709000;;;;;;;;;;;;;;;;;;;;;;;;;; -5802;'432;Land Locked Developing Countries;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;;10000;10000;20000;20000;20000;98000;98000;111000;111000;195000;159000;45000;67000;54000;59000;67000;61000;86000;74000;74000;74000;96000;387000;363000;397000;405000;403000;399000;;;;;;;;;;;;;;;;;;;;;;;;;; -5802;'432;Land Locked Developing Countries;1871;Other industrial roundwood;5516;Production;m3;2635000;2695000;2911000;3021000;3101000;3223000;3286000;3428000;3514000;3601000;3670000;3760000;3921000;3996000;4122000;4053000;4156000;4446000;4740000;4843000;4955000;5039500;5021500;5154500;5579500;5683500;5795500;5925500;6527500;6492500;6638500;6827500;9165900;9545600;10349400;10626100;10844300;11061900;11356550;11593950;11262850;11997730;12652890;12861750;13160850;13403950;13461950;13449950;13490150;13548150;13551150;12736150;12887310;12961660;13033110;13098360;12962790;13012850;13042031;13047720;13117717;13149125;13121797 -5802;'432;Land Locked Developing Countries;1871;Other industrial roundwood;5616;Import quantity;m3;6300;5400;3000;4300;3500;2900;1300;9700;16700;27300;28000;22500;15500;23000;15700;15600;15000;15000;15000;41300;72100;72100;72100;72100;72100;72100;72100;53600;36200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5802;'432;Land Locked Developing Countries;1871;Other industrial roundwood;5622;Import value;1000 USD;136;131;74;97;167;165;77;334;433;254;436;251;196;338;208;197;158;158;158;861;730;730;730;730;730;730;730;700;655;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5802;'432;Land Locked Developing Countries;1871;Other industrial roundwood;5916;Export quantity;m3;5700;2600;16300;42500;75300;74100;82500;84500;79100;97000;78200;81000;98100;94800;96800;119800;139600;138600;132600;80700;99300;124400;105500;103900;103900;100200;123400;54400;50800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5802;'432;Land Locked Developing Countries;1871;Other industrial roundwood;5922;Export value;1000 USD;148;79;233;288;555;532;582;535;603;487;463;688;2037;1238;2002;2301;2234;2586;3080;2095;2367;3627;2680;2595;2595;2391;2745;2307;731;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5802;'432;Land Locked Developing Countries;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;91000;93000;95000;101000;103000;106000;108000;111000;113000;116000;119000;122000;123000;123000;126000;128000;130000;132000;133000;134000;136000;132000;129000;126000;195000;193000;192000;197000;198000;209000;226000;244000;280000;308000;334000;365000;366800;369230;390405;403995;410645;407465;423360;441676;486178;435595;475395;487395;500395;570395;572395;519395;535200;541400;541400;541400;413930;422890;417890;415890;396890;428222;447890 -5802;'432;Land Locked Developing Countries;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;2544000;2602000;2816000;2920000;2998000;3117000;3178000;3317000;3401000;3485000;3551000;3638000;3798000;3873000;3996000;3925000;4026000;4314000;4607000;4709000;4819000;4907500;4892500;5028500;5384500;5490500;5603500;5728500;6329500;6283500;6412500;6583500;8885900;9237600;10015400;10261100;10477500;10692670;10966145;11189955;10852205;11590265;12229530;12420074;12674672;12968355;12986555;12962555;12989755;12977755;12978755;12216755;12352110;12420260;12491710;12556960;12548860;12589960;12624141;12631830;12720827;12720903;12673907 -5802;'432;Land Locked Developing Countries;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;6300;5400;3000;4300;3500;2900;1300;9700;16700;27300;28000;22500;15500;23000;15700;15600;15000;15000;15000;41300;72100;72100;72100;72100;72100;72100;72100;53600;36200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5802;'432;Land Locked Developing Countries;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;136;131;74;97;167;165;77;334;433;254;436;251;196;338;208;197;158;158;158;861;730;730;730;730;730;730;730;700;655;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5802;'432;Land Locked Developing Countries;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;5700;2600;16300;42500;75300;74100;82500;84500;79100;97000;78200;81000;98100;94800;96800;119800;139600;138600;132600;80700;99300;124400;105500;103900;103900;100200;123400;54400;50800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5802;'432;Land Locked Developing Countries;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;148;79;233;288;555;532;582;535;603;487;463;688;2037;1238;2002;2301;2234;2586;3080;2095;2367;3627;2680;2595;2595;2391;2745;2307;731;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5802;'432;Land Locked Developing Countries;1630;Wood charcoal;5510;Production;t;1176239;1213536;1252086;1587676;1618589;1668641;1713074;1771048;1818511;1883317;1921643;1979204;2062588;2117778;2191826;2249766;2312191;2384088;2427136;2534367;2623486;2707924;2795697;2922525;3025231;3153265;3249120;3364452;3538003;3578416;3724675;3972211;6450028;6766231;6883231;7060282;7231377;7165829;6735442;6684076;7213936;7421296;7632934;7605049;7821042;8305296;8679432;8912086;9101207;9350288;9565075;10010417;10543043;10774232;11065952;11274252;11530349;11776932;11771756;11985994;12651690;12999499;12958190 -5802;'432;Land Locked Developing Countries;1630;Wood charcoal;5610;Import quantity;t;1200;700;300;2200;17700;15300;20900;14200;13400;11700;7800;6800;2400;900;100;100;100;100;100;100;100;200;200;200;200;200;0;0;0;0;0;63;5291;17038;16576;16430;16740;11611;11721;12188;712;946;867;1733;2490;2730;5618;7928;7802;7261;3064;10218.25;10104.25;49729.25;17650.25;16123;18182;100271;118686;108476;173136.95;157264;129421 -5802;'432;Land Locked Developing Countries;1630;Wood charcoal;5622;Import value;1000 USD;55;43;43;60;309;264;356;299;320;278;189;176;72;47;24;24;24;24;24;24;211;345;345;345;345;345;0;0;0;0;0;15;1064;2759;2345;2291;2620;1625;1799;1909;456;526;637;938;1218;1384;2024;2633;2373;2463;2066;6157.24;4166.24;13741.24;6973.24;5788;7057.21;23693;36001;32796;40397;56059;44062 -5802;'432;Land Locked Developing Countries;1630;Wood charcoal;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1126;6027;2759;3050;28400;13200;10000;7070;20854;20083;56118;57467;104614;156431;217931;218687;232497;238400;232397;259325;206135;214947;228975;187429;174382;151007;173092;180236;186873;217638.3;391052;311443 -5802;'432;Land Locked Developing Countries;1630;Wood charcoal;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;327;1534;797;706;1500;1969;1918;1245;1952;2153;2461;3773;8129;9949;14926;25685;44710;45596;43691;51461;51811;72679;73628;66101;65045;60266.69;72830;76642;77079;98308.77;163902;160602 -5802;'432;Land Locked Developing Countries;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;398775;357181;338911;362898;378460;462474;460354;529169;510257;529074;541734;524078;558268;553768;559902;568267;1011496;952351;991751;1107270;1328608;1320458;1404342;1442543;1435593;1435593 -5802;'432;Land Locked Developing Countries;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1694;1357;5613;4962;6447;2328;4726;6160;15929;8919;19577;14670;26342;29273;23666;26779;27323;26539;29153;36964;747106;876495;854980;241271.15;1461123;1578236 -5802;'432;Land Locked Developing Countries;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;204;193;184;177;225;368;370;411;546;832;2026;2359;2983;5188;3853;4280;6391;4389;3804;3940.01;42460;61704;66043;19572.76;100332.18;105913.18 -5802;'432;Land Locked Developing Countries;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1581;1189;52557;2037;2009;2021;2465;3234;8093;3610;11666;26994.46;52208.88;93591.06;18830.34;11306;11872.08;13698;13362;7597;111157;158366;57902;48806.64;62962.01;85724.01 -5802;'432;Land Locked Developing Countries;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46;38;1741;336;342;345;366;496;232;185;680;830;1706;1952.08;834.19;808;1101.04;691;2821;1777.45;3372;5966;1465;1452.67;1372.47;1794.47 -5802;'432;Land Locked Developing Countries;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7200;7230;7207;7209;18005;18009;26567;22511;22511;39511;54200;41110;61100;64100;69845;83126;69391;67431;62831;122350;207708;198902;283476;322643;315693;315693 -5802;'432;Land Locked Developing Countries;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;945;1045;450;450;422;734;358;368;371;217;1301;1495;1241;1300;3121;2540;3723;12029;11982;18086;18201;19554;21848;18619;729488;779151;850260;235399.76;1457529;1574260 -5802;'432;Land Locked Developing Countries;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;105;32;58;55;98;76;86;83;110;142;144;182;335;560;1171;1466;1914;1678;2311;3676;3154;3035;2543.7;40871;56959;65405;18909.76;99832.18;105203.18 -5802;'432;Land Locked Developing Countries;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;311;412;412;311;352;352;352;407;407;368;372;679;679;4967;1784;539;509.46;6080.88;1620.06;6190.34;5864;4649.08;4397;11074;5036;109937;118015;38493;38643.46;61047;83941 -5802;'432;Land Locked Developing Countries;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;16;16;9;10;10;10;290;290;294;297;307;307;94;55;37;53;333;203.08;228.19;286;336.04;238;2390;1333.27;3046;5061;1076;1192.67;1205;1617 -5802;'432;Land Locked Developing Countries;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;10000;30000;53000;50000;138500;143500;134500;134500;134500;134500;391575;349951;331704;355689;360455;444465;433787;506658;487746;489563;487534;482968;497168;489668;490057;485141;942105;884920;928920;984920;1120900;1121556;1120866;1119900;1119900;1119900 -5802;'432;Land Locked Developing Countries;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;254;1086;386;1324;781;1272;623;5255;4594;6076;2111;3425;4665;14688;7619;16456;12130;22619;17244;11684;8693;9122;6985;7305;18345;17618;97344;4720;5871.39;3594;3976 -5802;'432;Land Locked Developing Countries;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;138;84;131;198;149;95;108;91;142;258;228;267;364;497;1466;1188;1517;3274;2175;1969;2715;1235;769;1396.31;1589;4745;638;663;500;710 -5802;'432;Land Locked Developing Countries;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1878;523;523;1023;1511;511;1229;837;52150;1630;1641;1649;1786;2555;3126;1826;11127;26485;46128;91971;12640;5442;7223;9301;2288;2561;1220;40351;19409;10163.18;1915.01;1783.01 -5802;'432;Land Locked Developing Countries;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79;10;10;351;555;15;36;28;1451;46;48;48;59;189;138;130;643;777;1373;1749;606;522;765;453;431;444.18;326;905;389;260;167.47;177.47 -5802;'432;Land Locked Developing Countries;1605;Sawdust (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;13 -5802;'432;Land Locked Developing Countries;1605;Sawdust (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;125 -5802;'432;Land Locked Developing Countries;1605;Sawdust (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;382 -5802;'432;Land Locked Developing Countries;1605;Sawdust (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;11 -5802;'432;Land Locked Developing Countries;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;48;56;56;76;56 -5802;'432;Land Locked Developing Countries;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28;932;1312;1620;2577;943;453 -5802;'432;Land Locked Developing Countries;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.11;56;112;183;312;268;308 -5802;'432;Land Locked Developing Countries;1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;776;976;1176;82;81 -5802;'432;Land Locked Developing Countries;1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;13;15;19;10;10 -5802;'432;Land Locked Developing Countries;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4600;4200;20200;20200;36200;73205;94518;99888;102181;93348;93348;93348 -5802;'432;Land Locked Developing Countries;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2207;10472;18714;31333;41347;77356;95644;115635;81687;94400.1;91893.27;58192 -5802;'432;Land Locked Developing Countries;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1566;2244;4265;5146;6542;14456.94;15446;18607;20376;22656.93;23964.19;20112 -5802;'432;Land Locked Developing Countries;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;736;1051;719;1109;380;742;1137;12103;8146;10891.85;19530.93;5554.32 -5802;'432;Land Locked Developing Countries;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;142;188;98;150;44;134.69;220;508;614;1665;4834.83;729.98 -5802;'432;Land Locked Developing Countries;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300;100;100;100;16100;41105;57418;62788;65081;56248;56248;56248 -5802;'432;Land Locked Developing Countries;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1535;9892;17939;25431;35818;70206;71169;78513;68043;72442.76;76508.27;50818 -5802;'432;Land Locked Developing Countries;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1327;2044;3961;4203;5653;13325.76;13625;15018;18356;19973;21249.19;17657 -5802;'432;Land Locked Developing Countries;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;589;1012;633;1052;351;538;933;6192;6128;5315.46;11350.82;4357.82 -5802;'432;Land Locked Developing Countries;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103;178;84;138;38;95.51;179;404;506;408;2787.76;610.76 -5802;'432;Land Locked Developing Countries;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4300;4100;20100;20100;20100;32100;37100;37100;37100;37100;37100;37100 -5802;'432;Land Locked Developing Countries;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;672;580;775;5902;5529;7150;24475;37122;13644;21957.34;15385;7374 -5802;'432;Land Locked Developing Countries;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;239;200;304;943;889;1131.18;1821;3589;2020;2683.93;2715;2455 -5802;'432;Land Locked Developing Countries;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;147;39;86;57;29;204;204;5911;2018;5576.39;8180.11;1196.5 -5802;'432;Land Locked Developing Countries;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39;10;14;12;6;39.17;41;104;108;1257;2047.07;119.22 -5802;'432;Land Locked Developing Countries;1872;Sawnwood;5516;Production;m3;847300;839800;902700;1054100;1139900;1238300;1354200;1477800;1681700;1722700;1808500;1751800;1943100;2029500;1963100;2046500;2098100;2261900;2503400;2600500;2507700;2454000;2381000;2585300;2537000;2496200;2581100;2643400;2413100;2481800;2670400;2622500;3035850;3267850;3573000;3616600;3789300;4309127;4158557;3945149;4033650;3954052;3952936;3888619;3642535;3724873;3719286;3751055;3888357;3922337;4377093;4937388;4890510;5256154;4730419;4418448;4271065;4109209;4568753;4405985;4384684;4731663;4653099 -5802;'432;Land Locked Developing Countries;1872;Sawnwood;5616;Import quantity;m3;140650;133300;103050;121350;138050;175450;171850;182450;195250;175950;185550;173350;141450;164250;155250;60400;57000;58100;59300;70800;64800;69100;80300;65700;64500;63659;59296;63000;65393;66908;75408;81572;109282;153743;150916;549776;594508;832651;895593;1308160;1236527;1153343;1459662;2403686;2911490;3640836;4448980;4089849;3925251;3711233;5476647;5146301;5777631;5493498;5188697;5300510;5436882;5665354;4999535;4980678;4682975;4276086;4961486 -5802;'432;Land Locked Developing Countries;1872;Sawnwood;5622;Import value;1000 USD;5635;5196;4102;5668;6587;7483;7607;7933;8577;8138;8887;8493;7311;11241;13712;6536;6562;6564;8814;12050;11910;11299;14505;9647;9046;8883;7925;8517;8741;10133;8580;8965;11478;21094;25117;52547;69749;56502;82294;84818;76916;81512;105564;182134;248492;340131;491597;555498.1;528723;589217;877055;972708;1089646;1046831;624789;607875;651231.02;720068;677705;654767;704064;835326;776541 -5802;'432;Land Locked Developing Countries;1872;Sawnwood;5916;Export quantity;m3;106300;100400;89650;121700;125900;126900;169200;184800;243100;280600;314400;370500;449900;530900;434900;391500;449150;457400;610600;640000;459200;539250;433900;492900;497000;430500;429901;274967;574877;583822;807422;769269;913327;863760;884084;1170056;1162255;967828;586229;811520;828191;589470;676923;497279;412784;366691;583336;583847;731293;579914;722035;745000;1125197;1522671;912782;576495;466917;681218;852025;656831;802042;801406;856943 -5802;'432;Land Locked Developing Countries;1872;Sawnwood;5922;Export value;1000 USD;5625;5323;4761;7158;7380;7433;9309;10435;13643;16734;17838;22529;30611;50569;62164;53659;48280;50974;75999;108767;85488;96089;75035;84669;87886;89688;81863;53826;91451;112424;126623;162844;201535;215064;217381;214882;203383;168409;109221;101937;132438;123151;136979;126012;113565;153051;199628;241861;274959;353157;480177.1;482762;631448;839023;512421;231066;215939.79;284008;286425;236733;360996;386890;352615 -5802;'432;Land Locked Developing Countries;1632;Sawnwood, coniferous;5516;Production;m3;416400;419150;393550;483700;492600;598800;671650;744250;851250;910250;954850;907550;999500;1013200;992700;1088200;1213500;1218500;1294600;1260600;1289000;1283500;1246500;1280500;1316500;1275000;1241500;1243800;1266000;1255000;1080300;998300;1243700;1577400;1682500;1609000;1674500;1736975;1866207;1711687;1713167;1682617;1718685;1584228;1458695;1487690;1462390;1463900;1471064;1423373;1457673;1762485;1434964;1434241;1455829;1457529;1474180;1403878;1671055;1565668;1559541;1502612;1432158 -5802;'432;Land Locked Developing Countries;1632;Sawnwood, coniferous;5616;Import quantity;m3;91950;91600;66250;72750;81400;117600;114000;119150;122150;107450;113200;106900;83300;96300;95400;17250;16050;18650;20200;25800;12650;21400;44300;38300;34900;34759;26996;26600;26793;27208;35408;41440;74362;110122;124719;504824;525181;722083;779679;1123999;1048058;1029733;1325425;2215535;2709681;3477476;4354562;3986464;3847041;3581453;5391372;5068528;5655882;5352432;5066618;5175028;5192149;5396377;4685174;4692272;4400151;4027445;4737476 -5802;'432;Land Locked Developing Countries;1632;Sawnwood, coniferous;5622;Import value;1000 USD;3095;3006;2178;2620;3069;3754;4245;4384;4641;4180;4702;4590;3687;6499;9408;2292;2456;2609;3404;4042;1935;2190;7544;5905;5431;5400;4059;4011;4041;4207;3053;3088;7121;12415;14985;42085;49600;44016;72471;71866;63838;71915;92064;157512;223140;309061;466453;524285;502548;553789;846129;938831;1029959;981885;588562;572803;598329.35;674711;628988;614198;660395;797471;747136 -5802;'432;Land Locked Developing Countries;1632;Sawnwood, coniferous;5916;Export quantity;m3;28300;26500;28650;21800;18600;18900;49800;43900;55600;71100;84500;103500;119500;158800;154500;189900;190150;196000;208600;189300;98600;84250;82800;81400;81400;78400;74901;63467;106477;118222;132422;203702;216853;127945;159882;301356;373179;437652;179492;481665;397480;162907;259625;253404;163251;45552;82308;69798;138960;65761;41659;46559;45483;55794;81755;88518;98598;337082;506300;342004;345899;262443;246246 -5802;'432;Land Locked Developing Countries;1632;Sawnwood, coniferous;5922;Export value;1000 USD;1213;1185;1248;1128;876;890;2067;1753;2215;3011;3730;4825;6938;9344;9955;13891;13518;14718;18713;21344;14025;10559;9600;9093;9093;8730;9304;7213;15354;15515;14826;27094;25722;19134;27418;42574;48762;55662;31973;36742;19776;11285;22842;26759;12363;10231;17512;14861;19987;16999;11272;14825;16427;22444;34630;23714;47992.23;89460;99135;73769;103623;95085;93577 -5802;'432;Land Locked Developing Countries;1633;Sawnwood, non-coniferous;5516;Production;m3;430900;420650;509150;570400;647300;639500;682550;733550;830450;812450;853650;844250;943600;1016300;970400;958300;884600;1043400;1208800;1339900;1218700;1170500;1134500;1304800;1220500;1221200;1339600;1399600;1147100;1226800;1590100;1624200;1792150;1690450;1890500;2007600;2114800;2572152;2292350;2233462;2320483;2271435;2234251;2304391;2183840;2237183;2256896;2287155;2417293;2498964;2919420;3174903;3455546;3821913;3274590;2960919;2796885;2705331;2897698;2840317;2825143;3229051;3220941 -5802;'432;Land Locked Developing Countries;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;48700;41700;36800;48600;56650;57850;57850;63300;73100;68500;72350;66450;58150;67950;59850;43150;40950;39450;39100;45000;52150;47700;36000;27400;29600;28900;32300;36400;38600;39700;40000;40132;34920;43621;26197;44952;69327;110568;115914;184161;188469;123610;134237;188151;201809;163360;94418;103385;78210;129780;85275;77773;121749;141066;122079;125482;244733;268977;314361;288406;282824;248641;224010 -5802;'432;Land Locked Developing Countries;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;2540;2190;1924;3048;3518;3729;3362;3549;3936;3958;4185;3903;3624;4742;4304;4244;4106;3955;5410;8008;9975;9109;6961;3742;3615;3483;3866;4506;4700;5926;5527;5877;4357;8679;10132;10462;20149;12486;9823;12952;13078;9597;13500;24622;25352;31070;25144;31213.1;26175;35428;30926;33877;59687;64946;36227;35072;52901.67;45357;48717;40569;43669;37855;29405 -5802;'432;Land Locked Developing Countries;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;78000;73900;61000;99900;107300;108000;119400;140900;187500;209500;229900;267000;330400;372100;280400;201600;259000;261400;402000;450700;360600;455000;351100;411500;415600;352100;355000;211500;468400;465600;675000;565567;696474;735815;724202;868700;789076;530176;406737;329855;430711;426563;417298;243875;249533;321139;501028;514049;592333;514153;680376;698441;1079714;1466877;831027;487977;368319;344136;345725;314827;456143;538963;610697 -5802;'432;Land Locked Developing Countries;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;4412;4138;3513;6030;6504;6543;7242;8682;11428;13723;14108;17704;23673;41225;52209;39768;34762;36256;57286;87423;71463;85530;65435;75576;78793;80958;72559;46613;76097;96909;111797;135750;175813;195930;189963;172308;154621;112747;77248;65195;112662;111866;114137;99253;101202;142820;182116;227000;254972;336158;468905.1;467937;615021;816579;477791;207352;167947.56;194548;187290;162964;257373;291805;259038 -5802;'432;Land Locked Developing Countries;1634;Veneer sheets;5516;Production;m3;;;;100;100;100;100;200;900;8300;8500;6000;5000;7500;13700;17900;37000;43000;57800;81800;79600;91500;65200;101200;102100;103100;122700;130600;131200;138100;150600;79800;79750;75000;74700;73900;74000;81070;122500;91000;93000;202800;189600;194600;209600;210700;193600;195000;195500;209800;209900;209700;209200;222700;239000;245231;246646;248370;271988;269414;250496;210025;277699 -5802;'432;Land Locked Developing Countries;1634;Veneer sheets;5616;Import quantity;m3;400;300;500;600;1300;1300;1400;1400;1400;1400;1500;2800;2200;2700;4600;5000;3000;5900;2800;5200;4300;3600;3400;3300;3300;2300;2300;2300;2300;2699;2699;3474;2179;10116;4376;5479;7282;8333;8844;8644;7822;5687;6226;7030;8001;5586;8155;15192;11690;11468;26941;23634;23963;21573;34580;61475;49888;51755;44444;54000;91196;78547;86897 -5802;'432;Land Locked Developing Countries;1634;Veneer sheets;5622;Import value;1000 USD;132;94;124;165;316;316;365;340;340;357;407;473;411;525;736;1436;1100;1792;1664;3073;3734;2451;1938;1852;1852;1258;1258;1258;1258;1416;1416;2962;2546;12239;3907;4775;5703;4080;4523;3706;3533;2985;4235;4434;4082;4580;6484;11129;6128;7124;14900;18625;18115;18569;19413;27543;27443.47;23386;20472;19660;30840;32628;41016 -5802;'432;Land Locked Developing Countries;1634;Veneer sheets;5916;Export quantity;m3;;;;;;100;100;200;600;200;200;300;2800;6200;6700;7600;19200;29700;38900;65000;34500;80500;56100;62700;65500;31000;49100;27300;45800;25700;25700;44990;51771;54333;53375;41867;34561;21496;32819;31860;17301;16480;16961;6348;7111;5975;6625;9442;6888;9714;7888;8773;12467;18610;26053;28585;13686;7372;9433;7700;13912;42135;110865 -5802;'432;Land Locked Developing Countries;1634;Veneer sheets;5922;Export value;1000 USD;;;;;;35;24;54;110;40;40;58;406;1659;1329;1609;6064;6688;6439;10431;7767;27280;20675;24976;26171;9677;9714;3740;14087;3940;3990;4729;14715;12289;13230;12413;7129;6336;8506;8320;5098;5606;5692;4825;5823;6984;9347;12405;8969;14473;13294;11175.25;12747;27216;20401;18954;14400.13;8719;7273;5108;6363;22593;43784 -5802;'432;Land Locked Developing Countries;1873;Wood-based panels;5516;Production;m3;5900;7500;5800;8000;10300;11500;13300;15100;23400;28200;28300;31100;38400;43700;34400;29000;57200;56100;61100;102091;82738;104123;83523;64373;70573;62888;75553;78823;107123;110500;150900;170100;213300;188300;233400;348100;363200;502045;482553;455735;309674;318602;350527;351671;364829;347232;412160;397893;352824;488682;494654;998795;803301;619524;647158;860002;897406;1126731;1029741;1163379;1390313;1654631;1748654 -5802;'432;Land Locked Developing Countries;1873;Wood-based panels;5616;Import quantity;m3;6000;5500;5400;8700;13500;18255;26740;56898;59087;42303;41227;79392;79786;88792;98954;83105;77805;84905;80005;78505;78405;81105;79205;79505;40105;17113;18767;16074;15055;12999;14459;18351;23389;35292;54948;86288;194962;225722;289492;465634;500078;554885;650999;1601417;1236990;1269128;1659276;1757602;1521871;1638403;2666467;2733824.55;2969702;3075682;2857233;2936418;3318484;3510472;4188548;4088398;4240634.05;3981959;4128505 -5802;'432;Land Locked Developing Countries;1873;Wood-based panels;5622;Import value;1000 USD;685;715;791;1207;1895;2413;3266;3177;3685;5060;5242;14111;20942;22538;23149;24681;26008;29070;29250;30275;30491;31503;30304;30213;21453;4461;6078;5330;5065;3994;4167;5246;8612;8800;10812;18873;39213;38268;46688;65975;67608;82726;126537;173574;245684;318242;441070;518317;469938;571320;864082;979421;1049115;1094804;931514;915683;1055859.37;1153488;1180015;968093;1315899.47;1263981;1215017 -5802;'432;Land Locked Developing Countries;1873;Wood-based panels;5916;Export quantity;m3;148;148;148;2648;5048;3248;3748;4648;6848;9300;8800;9800;14800;7600;5400;12000;11700;10700;15100;33900;26600;34400;21800;20300;19700;13400;18100;25144;30244;26655;27311;30439;43020;43984;138580;98606;98353;71331;102153;93400;74762;87670;97585;132011;140153;118603;109010;96238;70400;99492;87605.2;129576;91966;115559;118152;156455;192147;223403;250499;261989;328025.28;381208.47;560176.77 -5802;'432;Land Locked Developing Countries;1873;Wood-based panels;5922;Export value;1000 USD;63;60;71;467;859;1194;1235;1118;1325;1727;1754;1957;2912;1731;1904;4304;3682;3766;5432;8641;9012;10004;7390;6243;6094;4595;5432;7341;10314;11036;11374;11625;16853;19728;43529;33376;39384;26419;32770;25282;21430;23086;27164;31768;34603;35450;42158;53716;38682;52998;51132;78040;58806;51872;47108;56986;63833.26;78693;83962;80615;107114.8;142841.18;200150.08 -5802;'432;Land Locked Developing Countries;1640;Plywood and LVL;5516;Production;m3;5900;7500;5800;5800;8000;9000;9700;10900;17500;22800;23100;25900;33300;38600;30300;24900;39000;40000;43000;70991;63638;73023;51423;41273;45673;38248;42123;51223;63723;62100;106900;122500;110900;111400;162300;261500;271100;252145;203553;180835;185074;184532;218932;214900;229464;229085;255530;249293;266863;377900;376900;581900;478600;383553;401300;445548;446520;395010;409818;463991;598072;677316;691024 -5802;'432;Land Locked Developing Countries;1640;Plywood and LVL;5616;Import quantity;m3;1600;1500;1500;3800;6800;9500;15700;14800;17100;29400;20300;38500;33400;39300;42300;31900;30300;38600;34800;33400;32700;35100;33700;34500;34700;12294;13264;11646;11355;9420;10880;7510;7551;14728;16747;15197;27689;39172;49127;59611;64504;55450;125987;282194;160733;131207;218403;211681;189154;265117;346741;441645;478301;445811;349061;405127;444638;427625;502201;521642;560709;552965;631042 -5802;'432;Land Locked Developing Countries;1640;Plywood and LVL;5622;Import value;1000 USD;192;221;323;610;1057;1479;2185;2049;2575;4293;3144;10474;15220;16636;17234;18179;19082;21827;21441;22140;21071;22078;21119;21285;20554;3790;5064;4723;4568;3595;3768;3081;4152;2446;3502;7565;11158;9239;12980;12454;13291;13948;31817;31028;45248;56790;82391;93805;76562;109391;153332;225118;211420;216795;178406;181236;218261.37;170477;170037;159478;208514;226313;255800 -5802;'432;Land Locked Developing Countries;1640;Plywood and LVL;5916;Export quantity;m3;148;148;148;2648;5048;3248;3248;3748;5848;8100;8000;9300;14600;7600;5400;10500;10600;9600;13700;33100;26000;34300;21700;18100;17500;13300;18000;25044;24144;18555;19211;29735;41118;42526;132352;88552;89208;62328;73406;67874;61844;64618;66535;49703;54570;55875;61154;57583;33252;56614;50087.2;85868;44928;46502;39341;62395;63372;72909;92821;121743;161600;206773;286975 -5802;'432;Land Locked Developing Countries;1640;Plywood and LVL;5922;Export value;1000 USD;63;60;71;467;859;1194;1194;1055;1254;1657;1700;1907;2892;1731;1904;3622;3201;3451;4914;8300;8746;9957;7343;5965;5816;4538;5375;7284;6553;6473;6811;11241;16119;19186;39693;29744;36627;23643;28500;21464;19607;19689;21505;15586;17510;20530;26962;36427;21942;33962;32771;56838;37234;30340;27744;34861;32033.73;34936;40476;45873;57395;93862;135724 -5802;'432;Land Locked Developing Countries;1607;Laminated Veneer Lumber (LVL);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -5802;'432;Land Locked Developing Countries;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;149;1106 -5802;'432;Land Locked Developing Countries;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;172;557 -5802;'432;Land Locked Developing Countries;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -5802;'432;Land Locked Developing Countries;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -5802;'432;Land Locked Developing Countries;1646;Particle board and OSB (1961-1994);5516;Production;m3;;;;2200;2300;2500;3600;4200;5900;5400;5200;5200;5100;5100;4100;4100;18200;16100;18100;31100;19100;31100;32100;23100;24900;24640;33430;27600;43400;48400;44000;47600;99400;74400;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5802;'432;Land Locked Developing Countries;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;1900;1100;1100;700;900;1300;1100;2200;2300;900;500;36300;40300;40500;40800;36700;40600;40300;40300;40100;40200;40600;40100;40200;600;600;1600;1124;400;200;200;1643;8391;13555;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5802;'432;Land Locked Developing Countries;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;185;116;111;54;88;100;112;170;179;95;68;3178;4933;4983;5082;5870;6425;6768;7060;7423;8312;8409;8169;8205;176;190;576;299;195;83;83;522;2589;3660;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5802;'432;Land Locked Developing Countries;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;500;900;1000;1200;800;500;200;;;1500;1100;1100;1400;800;600;100;100;2200;2200;100;100;100;6100;8100;8100;704;1678;1106;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5802;'432;Land Locked Developing Countries;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;41;63;71;70;54;50;20;;;682;481;315;518;341;266;47;47;278;278;57;57;57;3761;4563;4563;384;684;438;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5802;'432;Land Locked Developing Countries;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68600;68600;78100;245900;261600;265700;116600;115300;114620;115800;105320;95120;134760;112400;61961;80682;82654;379686;283301;197571;207331;360054;370486;591309;467992;547648;537410;518090;566174 -5802;'432;Land Locked Developing Countries;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10717;36097;124572;134279;160065;271694;254517;370509;371116;1022718;666232;746376;968228;1061590;863528;872570;1379817;1350046;1539663;1578165;1494083;1525977;1655368;1694202;1937413;1936087;1968537.97;1986400;2202857 -5802;'432;Land Locked Developing Countries;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3580;7826;22673;19427;22242;35813;35414;44917;61639;85977;123022;150258;214271;241654;198157;244334;377830;375589;426602;435760;336902;345351;358865.47;388970;398454;348740;543917.47;537568;491628 -5802;'432;Land Locked Developing Countries;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5786;9654;8945;8801;5543;6228;6143;6385;12127;62052;63088;38219;26696;23043;26296;28328;16473;12707;14571;34254;46456;50118;61846;70549;79016;72289;77225.58;76246.77;126612.77 -5802;'432;Land Locked Developing Countries;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3699;3501;2703;2700;630;1157;1083;1251;2881;10942;10814;6578;9275;9033;11048;11888;8599;8578;7985;10277;8721;7583;9642.53;12492;14450;9972;15088.28;12927.61;19847.08 -5802;'432;Land Locked Developing Countries;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 -5802;'432;Land Locked Developing Countries;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;8301;9172;9467;12282;17746;69541;63647;43508;58673;49291;34442;52555;95843;146846;155648;171849;164091;154314;178243;156558;187300;192939;172288.86;140617;200083 -5802;'432;Land Locked Developing Countries;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;393;1112;1313;1070;2016;3305;8227;7369;7293;15880;17796;15032;22306;33232;45144;52445;53965;48671;41454;43152.03;40690;42225;45216;45996.18;44139;54046 -5802;'432;Land Locked Developing Countries;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;42;0;128;232;0;0;617;1246;148;474;353;6107;11308;5053;2890;3178;440;481;950;1785;6274;3794;835;3345 -5802;'432;Land Locked Developing Countries;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;25;0;71;93;0;0;190;423;53;252;171;2277;3675;2007;966;1109;187;124.12;532;729;725;1320;285;879 -5802;'432;Land Locked Developing Countries;1874;Fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;2500;2500;18000;14000;4000;17400;9200;8000;18770;16975;20971;30045;23027;21870;36200;24000;30100;35100;37209;41400;38400;38527;54400;80400;140412;151931;151740;254831;459225;491456 -5802;'432;Land Locked Developing Countries;1874;Fibreboard;5616;Import quantity;m3;2500;2900;2800;4200;5800;7455;9940;39898;39687;12003;20427;4592;6086;8992;15854;14505;6905;6005;4905;5005;5505;5405;5405;4805;4805;4219;3903;3304;3300;3379;3379;9198;7447;7009;27484;34994;42701;51671;71999;125157;171590;116644;136150;226964;346378;348037;413972;435040;434747;448161;844066;795287.55;796090;879857;849998;851000;1040235;1232087;1561634;1437730;1539098.23;1301977;1094523 -5802;'432;Land Locked Developing Countries;1874;Fibreboard;5622;Import value;1000 USD;308;378;357;543;750;834;969;958;931;672;2030;459;789;919;833;632;501;475;749;712;1108;1016;1016;723;723;481;438;308;302;316;316;1643;1871;2694;3730;3482;5382;9209;10354;16395;17833;21845;29776;48342;70045;103901;128528;165062;180187;195289;299688;333570;358648;388284;367535;347642;435580.49;553351;569299;414659;517471.82;455961;413543 -5802;'432;Land Locked Developing Countries;1874;Fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;224;352;442;400;200;202;23204;19256;6775;16539;18691;20256;22495;23892;19914;15464;10378;14197;14938;19693;27414;31913;29177;43502;66448;78995;76877;61683;85405.7;97353.7;143244 -5802;'432;Land Locked Developing Countries;1874;Fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;50;104;137;131;54;76;3634;2636;740;2075;2685;5240;6279;8152;5498;8203;5440;6977;7485;8949;11580;10289;9534;14355;22032.88;30733;28307;24045;33311.51;35766.57;43700 -5802;'432;Land Locked Developing Countries;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15000;11000;4000;17400;9200;8000;18770;16975;15945;16022;9004;7847;22200;10000;16100;16100;16100;12400;12400;12400;12400;12400;36200;22800;28800;129775;167593;175315 -5802;'432;Land Locked Developing Countries;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11960;11500;14252;17812;27453;50931;87511;62777;83775;156889;223438;188243;169295;129732;165955;169870;241885;237547.25;232845;199259;181483;171223;170439;189170;180643;167241;183012.33;214966;167040 -5802;'432;Land Locked Developing Countries;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1151;890;1858;4587;5372;8576;10863;14556;21332;36951;54291;63727;64983;60956;58815;64457;105952;111076;109357;97409;81822;75367;68104.14;66053;61675;54846;78220.65;99250;94019 -5802;'432;Land Locked Developing Countries;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;42;23044;18892;6469;15895;17682;19050;21298;22818;18355;13261;9182;12678;9356;6223;10394;2683;2725;3644;4789;10908;19988;17245;24251.7;18474;32998 -5802;'432;Land Locked Developing Countries;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;26;3590;2550;667;1920;2466;4996;6052;7480;4672;7081;4556;5865;4913;4189;5244;1368;1204;1505;2065.72;4383;6658;6591;9951.51;9029;11034 -5802;'432;Land Locked Developing Countries;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;26;23;23;23;0;0;0;5000;7109;15000;12000;12127;28000;54000;85285;113498;104201;99956;273867;298376 -5802;'432;Land Locked Developing Countries;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3972;3660;5474;7709;18907;29426;30471;21615;25052;36370;48508;95254;106608;209698;174482;178492;461286;460064.3;486681;541096;539623;566368;721005;895023;1145372;1084149;1179616.77;937734;859797 -5802;'432;Land Locked Developing Countries;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1185;717;1416;2183;2532;4219;3966;3716;4851;6952;10122;28379;39440;77852;104022;104590;149296;189737;218505;249613;244039;227752;325612.7;443451;452070;306748;401976.61;323145;277944 -5802;'432;Land Locked Developing Countries;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;158;158;195;162;198;630;952;956;631;1100;1044;985;1230;4530;12372;15609;27968;25122;38375;60986;67557;56716;43632;60454;78246;109257 -5802;'432;Land Locked Developing Countries;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;42;44;63;53;45;100;191;183;373;497;544;527;620;1844;4130;5664;8393;7792;12266;19675.36;26155;21554;16835;22707;26202;32060 -5802;'432;Land Locked Developing Countries;1650;Other fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;2500;2500;3000;3000;0;0;0;0;0;0;5000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;14000;18927;15633;18739;25100;17765;17765 -5802;'432;Land Locked Developing Countries;1650;Other fibreboard;5616;Import quantity;m3;;;;400;500;400;3200;32000;32000;4000;4000;800;400;1200;10800;10800;4500;4500;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;3200;4091;4577;2721;11552;19834;22975;26150;25639;44800;53608;32252;27323;33705;74432;64540;138069;95610;94310;99799;140895;97676;76564;139502;128892;113409;148791;147894;235619;186340;176469.13;149277;67686 -5802;'432;Land Locked Developing Countries;1650;Other fibreboard;5622;Import value;1000 USD;;;;61;210;207;246;193;193;40;45;12;23;26;57;57;73;73;291;73;291;291;291;291;291;291;291;291;291;291;291;716;804;1000;1394;1875;2108;2439;2450;3600;3004;3573;3593;4439;5632;11795;24105;26254;17350;26242;44440;32757;30786;41262;41674;44523;41863.65;43847;55554;53065;37274.55;33566;41580 -5802;'432;Land Locked Developing Countries;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;224;266;442;400;200;2;2;169;144;446;379;254;241;443;459;1159;211;289;1052;1098;1411;1262;1330;1483;673;530;173;806;700;633.69;989 -5802;'432;Land Locked Developing Countries;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;50;56;137;131;54;8;0;23;20;110;119;53;44;299;329;578;357;492;728;630;672;528;538;584;291.8;195;95;619;653;535.57;606 -5802;'432;Land Locked Developing Countries;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;2500;2900;2800;3800;5300;7055;6740;7898;7687;8003;16427;3792;5686;7792;5054;3705;2405;1505;1705;1805;2305;2205;2205;1605;1605;1019;703;104;100;179;179;5107;2870;4288;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5802;'432;Land Locked Developing Countries;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;308;378;357;482;540;627;723;765;738;632;1985;447;766;893;776;575;428;402;458;639;817;725;725;432;432;190;147;17;11;25;25;927;1067;1694;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5802;'432;Land Locked Developing Countries;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;86;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5802;'432;Land Locked Developing Countries;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;48;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5802;'432;Land Locked Developing Countries;1879;Total fibre furnish;5510;Production;t;16000;20700;84300;100600;102600;104700;106600;110500;118400;126400;134600;155200;167600;174600;174600;229600;201600;210600;221600;219600;217600;218600;238600;249000;243000;246000;252000;257000;235000;213000;261000;266000;285000;285000;289000;336000;299600;313660;353484;339488;360974;363724;334552;354508;352100;377057;390500;363400;331200;208200;244600;269500;279500;363500;352000;384040;396288;518334;742308;633424;535162;535042;523042 -5802;'432;Land Locked Developing Countries;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;4100;4100;4100;4100;4100;4100;4100;4100;18600;16200;18900;22700;23100;29000;22100;9400;12300;15300;24300;27700;20700;20700;5010;5010;7657;16628;15865;32708;28180;29419;34553;33312;48409;80846;54268;51814;57578;60702;75634;78561;77122;78364.1;83693;84999;105440;82610;72643.3;90394;104757;107732;170202;328588;401097;1135790.25;1288195.7;1543194.93 -5802;'432;Land Locked Developing Countries;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;471;471;471;471;471;471;471;471;4529;3449;3910;4913;7024;8515;6400;2479;3523;3931;5694;3667;2477;2477;603;603;2961;5619;6653;16505;10462;9521;12433;11600;20168;19439;20243;20375;19445;20048;29174;23754;29278;26167;34747;43619;41793;44545;38285.25;46043;44076;46621.74;70846;98715;115771;342644.38;455195.35;387876.57 -5802;'432;Land Locked Developing Countries;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;154453;193906;194245;108160;230903;227670;229704;225394;230930;228439;216416;177916;213008;188907;212346;202387;192025;147511;72281;81303;91047;99931;116246;127170;167759;180828;301619;283881;171597;175764.35;157154.27;121946.27 -5802;'432;Land Locked Developing Countries;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;61383;59692;59727;33266;61133;62330;62760;61499;61808;61589;66072;59095;73717;70076;77043;114369;88842;64212;34920;23058;19661;19007;19856;32837;42369;50192.52;194041;160814;66733;65829.15;65716.46;58873.46 -5802;'432;Land Locked Developing Countries;1878;Pulp for paper;5510;Production;t;16000;20700;84300;100600;102600;104700;106600;110500;118400;126400;134600;155200;167600;174600;174600;211600;183600;191600;200600;197600;198600;197600;216600;226000;220000;223000;227000;230000;210000;187000;235000;240000;257000;257000;261000;278000;241700;217613;258116;220500;250300;252900;220100;233000;225600;234100;253700;225100;184900;50900;41400;43300;41300;41300;40800;44616;49017;179229;207730;103013;77524;57242;45242 -5802;'432;Land Locked Developing Countries;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;4100;4100;4100;4100;4100;4100;4100;4100;18600;16200;16000;19100;17900;19800;14600;5000;11300;11300;16700;20700;20700;20700;;;3695;15060;13655;22068;14077;15694;23349;21196;28845;57853;30473;29701;33302;32787;39084;24863;22271;21419.1;25381;30073;33619;39468;27987.3;38919;45498;43010;64141;79722;105627;126416.45;126690.7;185367.93 -5802;'432;Land Locked Developing Countries;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;471;471;471;471;471;471;471;471;4529;3449;3621;4541;6313;7509;5857;1939;3375;3375;4366;2477;2477;2477;;;2276;5460;6173;14102;8289;7444;11295;10211;17159;16348;17126;17211;16682;16631;22652;15917;19395;16225;21923;27453;28390;33873;25221.25;34395;32673;30745.68;49181;56941;65040;95751.06;120802.35;146766.57 -5802;'432;Land Locked Developing Countries;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;107127;210127;210708;211559;211194;211154;211154;199434;159105;186606;161251;164245;177558;152980;107230;22860;7427;7053;5060;5004;14039;15603;17995;148681;177230;81287;55492.27;42684.27;29850.27 -5802;'432;Land Locked Developing Countries;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;33160;60160;60652;61379;60833;60787;60788;65365;58119;71395;67613;66583;100061;73451;49018;17731;11857;8349;6937;5964;19539;23730;27007.09;172712;148470;57706;49724;50118.46;46852.46 -5802;'432;Land Locked Developing Countries;1875;Wood pulp;5510;Production;t;13600;12300;76400;92700;92900;94000;95000;97000;103000;111000;119200;139700;152000;159000;159000;196000;168000;176000;185000;182000;183000;182000;201000;211000;205000;208000;212000;215000;195000;172000;220000;225000;242000;242000;242000;262000;216000;192213;233716;196100;225900;228500;195700;208600;201200;207700;217400;189200;149000;15000;5500;7400;7400;7400;7400;7400;7400;165400;293400;286000;294128;332874;324874 -5802;'432;Land Locked Developing Countries;1875;Wood pulp;5610;Import quantity;t;;;;;;;;4100;4100;4100;4100;4100;4100;4100;4100;18600;16200;16000;19100;17900;19800;14600;5000;11300;11300;16700;20700;20700;20700;;;3695;15060;13474;22062;14089;15934;23760;21753;28370;46424;29848;29568;33090;37169;41698;30036;23606;21636.1;25352;29412.27;33530;39009;27836.3;38586;45018;42138;63422;78595;105791;127370.39;131381.56;188701.79 -5802;'432;Land Locked Developing Countries;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;471;471;471;471;471;471;471;471;4529;3449;3621;4541;6313;7509;5857;1939;3375;3375;4366;2477;2477;2477;;;2276;5460;5974;14094;8298;7576;11564;10493;16850;15961;16649;17080;16574;21357;25586;22684;21438;16526;21859;26179;28114;33575;24723.25;33439;32072;29855.32;47943;55398;64633;96023.87;126337.49;152485.72 -5802;'432;Land Locked Developing Countries;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;107095;210095;210563;211205;211005;211005;211005;198705;157524;184165;157564;159722;174087;148013;102030;15098;1810;2447;2448;2601;727;771;1151;161335;287392;291463;298196;331685;325352 -5802;'432;Land Locked Developing Countries;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;33097;60097;60347;60678;60553;60553;60553;64761;56749;69744;65109;62806;97473;68484;44643;9058;1602;1833;1833;1906;617;670;1001.93;174275;214076;175393;287205;332575;275909 -5802;'432;Land Locked Developing Countries;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;1128;2874;1874 -5802;'432;Land Locked Developing Countries;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;946;2232;2866;2685;2492.46;2384;2452 -5802;'432;Land Locked Developing Countries;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;675.97;1603;2362;2206;2438;2716;2975 -5802;'432;Land Locked Developing Countries;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;0;1050;1050;1050;1051;1051 -5802;'432;Land Locked Developing Countries;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;0;788;788;788;788;794 -5802;'432;Land Locked Developing Countries;1654;Mechanical wood pulp (1961-2016);5510;Production;t;4000;2700;3400;4700;4900;5000;5000;7000;8000;10000;10100;10600;12000;12000;12000;12000;12000;14000;15000;16000;18000;18000;19000;22000;20000;17000;17000;17000;17000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;20000;13000;13000;13000;16000;16000;16000;16000;0;0;0;0;0;0;0;;;;;;; -5802;'432;Land Locked Developing Countries;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84;130;2027;2027;1830;1230;1130;1141;1134;1154;1111;682;781;802;681;681;755;963.1;657;848;1132;1187;902;551;811;;;;;;; -5802;'432;Land Locked Developing Countries;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;27;854;854;649;676;326;336;308;310;307;316;335;368;316;316;373;587;710;734;827;1030;613;498;517;;;;;;; -5802;'432;Land Locked Developing Countries;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;0;0;0;0;0;0;0;0;0;5;5;15;43;43;17;16;81;30;0;;;;;;; -5802;'432;Land Locked Developing Countries;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;;0;0;0;0;0;0;0;0;0;14;14;16;44;44;20;20;39;14;0;;;;;;; -5802;'432;Land Locked Developing Countries;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;4100;4100;4000;4000;4000;4000;4000;7000;9000;10000;8000;7000;7000;11000;11000;11000;15000;20000;20000;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000;22000;15000;15000;15000;31000;31000;31000;31000;0;0;0;0;0;0;0;;;;;;; -5802;'432;Land Locked Developing Countries;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1039;900;929;929;1029;1099;99;99;104;104;104;219;390;390;512;1022;4521;4379;5657;8267;5782;4327;26;392;430;;;;;;; -5802;'432;Land Locked Developing Countries;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;459;356;365;365;449;466;38;57;28;28;28;193;261;261;248;690;5886;5744;6937;8973;6789;5734;12.25;331;229;;;;;;; -5802;'432;Land Locked Developing Countries;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;43;44;44;44;44;44;44;11;9;9;;;;;;; -5802;'432;Land Locked Developing Countries;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;57;68;68;68;70;70;70;4;0;0;;;;;;; -5802;'432;Land Locked Developing Countries;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;150213;191716;154100;183900;186500;167700;180600;173200;160700;170400;142200;102000;15000;5500;7400;7400;7400;7400;7400;7400;135400;163400;55000;24000;11000;0 -5802;'432;Land Locked Developing Countries;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;4100;4100;4100;4100;4100;4100;4100;4100;18600;16200;16000;19100;17900;19800;14600;5000;11300;11300;16700;20700;20700;20700;;;2572;14030;10518;19106;11212;13360;22079;19905;27066;45141;28617;28312;31542;31192;37437;22682;16488;15549;18406;20145;25822;32518;26190.3;36987;42925;40344;60242;74444;101220;122050.71;122464.41;179779.65 -5802;'432;Land Locked Developing Countries;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;471;471;471;471;471;471;471;471;4529;3449;3621;4541;6313;7509;5857;1939;3375;3375;4366;2477;2477;2477;;;1796;5077;4755;12875;7183;6295;10905;9763;16460;15612;16312;16198;15566;15559;21622;14390;12436;9165;13402;16339;19512;25099;23234;32221;30723;28575.06;45642;52241;61222;91118.79;115787.07;140747.3 -5802;'432;Land Locked Developing Countries;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;107095;210095;210467;211109;210909;210909;210909;198609;157428;184068;157467;159625;173926;147824;101912;14952;1660;2327;2329;2450;633;707;1094;131550;157043;59791;28214;11669;1508 -5802;'432;Land Locked Developing Countries;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;33097;60097;60251;60562;60437;60437;60437;64645;56633;69627;64992;62709;97298;68293;44539;8914;1456;1723;1723;1843;586;653;981.93;147390;123097;30573;16623;9741;1308 -5802;'432;Land Locked Developing Countries;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 -5802;'432;Land Locked Developing Countries;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1171;1200;400;396;996;1955;19520;2968;1498;2634;857;1982;992;1241;951;1211;2694;4859;1843;1436;3029;1835;1497;4285;5382;12914;9054.46;11338.41;29064.65 -5802;'432;Land Locked Developing Countries;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;781;781;291;222;505;672;799;1292;825;1359;405;997;670;905;646;642;1835;3658;2013;1636;1768;1652;1341.11;2599;3316;8261;7050.4;8855.07;19452.3 -5802;'432;Land Locked Developing Countries;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;147498;78303;11926;227;223;223;379;379;379;360;3040;1076;4259;3432;432;432 -5802;'432;Land Locked Developing Countries;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;68137;34640;7076;264;252;252;361;361;361;354;2376;875;2122;2080;395;395 -5802;'432;Land Locked Developing Countries;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;5500;7400;7400;7400;7400;7400;7400;135400;163400;55000;24000;11000;0 -5802;'432;Land Locked Developing Countries;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;6399;3840;7966;6340;7838;18598;15995;17665;19734;24006;24376;27605;28018;33852;20977;14915;13418;16465;16032;19124;28706;23869.3;32265;39915;38624;55353;65640;85729;111944.26;110062;149855 -5802;'432;Land Locked Developing Countries;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64;2033;1468;6812;4572;3622;9161;7868;11872;12332;14076;14303;13589;13526;19480;13059;11132;7725;12017;13280;14344;20565;20613;28152;28091;27000.88;42707;46505;50478;83161.38;106045;120207 -5802;'432;Land Locked Developing Countries;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;95;95;467;1109;909;909;909;909;1009;1044;1043;301;301;301;11660;2361;1368;2048;2049;2000;186;291;690;128469;155916;55478;24726;11006;1016 -5802;'432;Land Locked Developing Countries;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;97;97;251;562;437;437;437;437;464;480;478;140;140;140;4700;1446;1161;1450;1450;1419;157;222;560.24;144944;122136;28350;14406;9058;754 -5802;'432;Land Locked Developing Countries;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0 -5802;'432;Land Locked Developing Countries;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;223;604;3422;2577;1052;1064;860 -5802;'432;Land Locked Developing Countries;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;233.07;336;2420;2483;907;887;1088 -5802;'432;Land Locked Developing Countries;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;41;51;54;56;231;60 -5802;'432;Land Locked Developing Countries;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67.69;70;86;101;137;288;159 -5802;'432;Land Locked Developing Countries;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;;;;;;; -5802;'432;Land Locked Developing Countries;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;1800;2;0;0;0;0;2310;2310;214;545;500;239;89;30;0;1;48;3;136;1298;325;979;409;;;;;;; -5802;'432;Land Locked Developing Countries;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21;658;1;0;0;0;0;202;202;101;55;33;96;35;15;0;3;50;8;89;1848;344;1580;355;;;;;;; -5802;'432;Land Locked Developing Countries;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;11924;637;29;29;29;0;0;0;;;;;;; -5802;'432;Land Locked Developing Countries;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;5184;368;3;3;3;0;0;0;;;;;;; -5802;'432;Land Locked Developing Countries;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;213;716;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -5802;'432;Land Locked Developing Countries;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2504;7531;4878;9967;3672;5122;3085;2914;5136;3577;1429;1893;803;2078;1514;683;332;1179;682;1416;1703;671;560;714;766;;;;;;; -5802;'432;Land Locked Developing Countries;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1732;3023;2629;5281;1830;2382;1522;1390;3714;2279;843;1015;585;1532;1110;646;399;791;693;1216;1421;673;641;721;625;;;;;;; -5802;'432;Land Locked Developing Countries;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;119;124;124;24;25;25;25;28;36;27;28;71;68;37;;;;;;; -5802;'432;Land Locked Developing Countries;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;40;42;42;13;16;16;15;24;28;18;18;63;68;70;;;;;;; -5802;'432;Land Locked Developing Countries;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;30000;130000;231000;269000;319000;323000 -5802;'432;Land Locked Developing Countries;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;245;452;608;66;25;16;355;377;4785;3068;5651;1842;745;632;152.27;794;977;718;656;852;848;948;1285;1886;2827.22;6533.15;6470.15 -5802;'432;Land Locked Developing Countries;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17;139;295;337;54;11;2;373;412;5169;3400;7288;2743;1030;810;133;986;1712;864;389;603;604.29;698;795;1205;2467.09;7834.42;8763.42 -5802;'432;Land Locked Developing Countries;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96;96;96;96;96;96;96;97;97;97;113;140;59;59;63;59;59;59;55;55;55;29785;129299;230622;268932;318965;322793 -5802;'432;Land Locked Developing Countries;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96;116;116;116;116;116;116;117;117;97;104;109;20;32;32;20;20;20;17;17;17;26885;90191;144032;269794;322046;273807 -5802;'432;Land Locked Developing Countries;1668;Pulp from fibres other than wood;5510;Production;t;2400;8400;7900;7900;9700;10700;11600;13500;15400;15400;15400;15500;15600;15600;15600;15600;15600;15600;15600;15600;15600;15600;15600;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;15000;19000;16000;25700;25400;24400;24400;24400;24400;24400;24400;24400;26400;36300;35900;35900;35900;35900;35900;33900;33900;33400;37216;41617;43829;44330;48013;52396;43368;43368 -5802;'432;Land Locked Developing Countries;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;181;6;6;5;41;51;541;11454;641;488;589;403;454;478;507;528;661;813;883;1436;869;989;1332;1720;1667;2412;1722;1873.28;1842.28;3136.28 -5802;'432;Land Locked Developing Countries;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;199;8;8;7;26;55;363;398;479;504;520;443;466;521;700;729;874;1407;1262;2010;1362;1345;1204;1494.65;1936;2338;1612;2194.28;2299.28;3044.28 -5802;'432;Land Locked Developing Countries;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;32;32;241;450;285;245;245;825;1677;2538;3784;4620;3584;5107;5259;7821;5680;4665;2671;2462;13367;14887;16899;17131;19137;20446;26228.27;29964.27;27291.27 -5802;'432;Land Locked Developing Countries;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;63;63;401;817;396;350;351;720;1486;1768;2621;3874;2692;5076;4395;8705;10287;6536;5124;4078;18939;23077;26022.16;25322;24585;26345;32313;39589.46;44750.46 -5802;'432;Land Locked Developing Countries;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;22;10;213;211;219;8;821;1154;2052;2825;2471;2086;4765;4859.1;3421.2;6316;5617;6733;10108;12569;108151;17439;37010.66;12246 -5802;'432;Land Locked Developing Countries;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;23;18;111;106;122;7;471;993;2239;2593;2259;1848;3517;3984;2726;3034;3010;3193.78;2844;2900;15610;13519;28740.55;8461 -5802;'432;Land Locked Developing Countries;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;28;28;28;28;28;8;35;45;45;45;18;122;172;173;173;5464;189290;315856;33247;71645;28272 -5802;'432;Land Locked Developing Countries;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;2;2;2;2;2;6;9;10;10;10;7;22;63;63;63.59;777;73519;117397;12522;26590;9445 -5802;'432;Land Locked Developing Countries;1669;Recovered paper;5510;Production;t;;;;;;;;;;;;;;;;18000;18000;19000;21000;22000;19000;21000;22000;23000;23000;23000;25000;27000;25000;26000;26000;26000;28000;28000;28000;58000;57900;96047;95368;118988;110674;110824;114452;121508;126500;142957;136800;138300;146300;157300;203200;226200;238200;322200;311200;339424;347271;339105;534578;530411;457638;477800;477800 -5802;'432;Land Locked Developing Countries;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;;;;;2900;3600;5200;9200;7500;4400;1000;4000;7600;7000;0;0;5010;5010;3962;1568;2210;10640;14103;13725;11204;12116;19564;22993;23795;22113;24276;27915;36550;53698;54851;56945;58312;54926;71821;43142;44656;51475;59259;64722;106061;248866;295470;1009373.79;1161505;1357827 -5802;'432;Land Locked Developing Countries;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;289;372;711;1006;543;540;148;556;1328;1190;0;0;603;603;685;159;480;2403;2173;2077;1138;1389;3009;3091;3117;3164;2763;3417;6522;7837;9883;9942;12824;16166;13403;10672;13064;11648;11403;15876.05;21665;41774;50731;246893.32;334393;241110 -5802;'432;Land Locked Developing Countries;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;506;845;1033;20776;16962;18145;14200;19776;17285;16982;18811;26402;27656;48101;24829;39045;40281;49421;73876;83994;94871;111242;113131;152156;162833;152938;106651;90310;120272.08;114470;92096 -5802;'432;Land Locked Developing Countries;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;27;62;106;973;1678;1381;666;1021;801;707;976;2322;2463;10460;14308;15391;15194;17189;11201;11312;12070;13892;13298;18639;23185.43;21329;12344;9027;16105.15;15598;12021 -5802;'432;Land Locked Developing Countries;1876;Paper and paperboard;5510;Production;t;9900;7100;9300;13800;20200;20600;20900;25300;30000;35900;38000;41600;42000;41900;42500;42400;42400;55400;59400;63400;77400;88900;84400;81400;87200;91100;97200;98300;99800;120900;122000;124000;142100;148500;154700;142600;146900;129872;136805;272250;404670;432337;318720;332140;346942;511724;560577;516634;474727;523996;603616;410491;461148;465408;478420;509283;566888;630323;617813;643103;1489835;1500198;1700468 -5802;'432;Land Locked Developing Countries;1876;Paper and paperboard;5610;Import quantity;t;38000;41000;35500;44300;54300;65100;69700;79700;85800;86900;94400;86500;87900;90100;87850;71400;81360;81760;88800;113800;97100;90600;78100;78800;97600;76523;96435;88373;81083;100941;105631;138512;144692;168254;193577;218340;258305;316207;375338;370785;391024;434668;538152;649933;704021;793443;906321;895141;883258;1072305;1167233;1098387;1126515;1371473;1332030;1383092;1460927;1529924;1743874;1480835;1489203.41;1472391;1487046 -5802;'432;Land Locked Developing Countries;1876;Paper and paperboard;5622;Import value;1000 USD;10403;10239;9549;12736;15075;17922;19209;24845;26132;24122;26678;25619;27324;37760;42436;41652;51401;49786;61047;94880;82815;70059;59054;58938;70619;60144;84837;78163;76312;99162;103110;108995;108636;126303;182849;196780;218717;241316;270899;281089;298582;317075;402593;476399;523660;659713;818416;952013;884590;1118841;1300614;1196298;1232709;1448817;1262106;1321723;1366686.4;1518544;1660460;1330492;1540250.78;1848367;1748359 -5802;'432;Land Locked Developing Countries;1876;Paper and paperboard;5910;Export quantity;t;1000;1000;1000;4200;4900;3600;3600;3600;3600;3600;3600;3600;3600;3600;3600;1500;1100;1700;4200;1500;700;1900;4100;9400;9400;3800;11700;4200;4200;4200;4200;10822;3308;8415;10403;16377;23851;22892;26473;23021;24503;26533;44536;41895;69478;78900;104121;68316;54280;63918.24;69818.06;55489.2;64149.08;57435.01;66768.82;64601.48;90743.48;107821.48;128742.48;143873;1023557.86;1019845.77;1194405.15 -5802;'432;Land Locked Developing Countries;1876;Paper and paperboard;5922;Export value;1000 USD;206;232;210;1350;1114;866;866;866;866;866;866;866;866;866;866;499;312;357;763;933;710;1130;1503;3867;3867;1621;4270;1709;1709;1709;1709;5560;1855;4959;8629;13503;20208;11540;10391;11296;12074;14799;22669;25488;41856;38404;55102;41852;38901;53905;65962;47912.04;56276.6;48364;58490;48260;60365.68;72374;89103;80599;653337.56;680248.28;569343.65 -5802;'432;Land Locked Developing Countries;2042;Graphic papers;5510;Production;t;;2300;3700;4800;5000;5000;6000;7000;8000;10000;12000;12000;12000;12000;12000;12000;12000;14000;16000;18000;20000;19000;20000;19000;21000;25000;21000;22000;23000;23900;24000;24000;28100;25500;24700;24300;27100;30460;28693;40615;37701;38200;42500;42960;42960;36860;26628;59699;69313;103434;103834;61708;109332;109332;109332;112447;115385;58546;57307;58237;54909;52934;53069 -5802;'432;Land Locked Developing Countries;2042;Graphic papers;5610;Import quantity;t;22000;19700;14500;21900;25200;27600;31300;33200;36600;41700;43000;39600;40900;42200;44450;36900;43560;45260;46500;59300;49700;52100;39500;40900;38000;32322;43800;43308;43576;50276;54466;73213;75259;99098;78965;106525;117249;169209;191335;202180;206947;219873;269135;371016;384736;415344;477527;461032;468907;563142;627365;563707;575232;673367;620208;647484;664403;742434;845102;649259;644871.33;647365;651392 -5802;'432;Land Locked Developing Countries;2042;Graphic papers;5622;Import value;1000 USD;5362;4777;4158;5613;6509;6832;7726;9444;9737;10805;11383;10459;11858;16910;20724;18386;23502;23839;28438;44873;39783;37234;27744;26859;23588;22305;31272;33415;35438;46068;50244;59175;59617;76334;69955;92713;87759;116777;119472;141262;159915;158303;200477;272444;294030;335005;416203;470172;431933;532753;641024;589075;590306;680794;610782;590397;617690.3;701693;852517;564031;628262.98;751329;737181 -5802;'432;Land Locked Developing Countries;2042;Graphic papers;5910;Export quantity;t;;;100;1200;1300;;;;;;;;;;;;;;;;;;;;;;0;;;;;667;758;4260;2499;4936;5376;6523;6195;6934;7276;5237;7326;13416;22121;8461;17485;11606;14742;13086.24;12938.06;9775.2;5716.08;5733.02;5119.82;5634.48;5339.48;7068.48;14907.48;12079;15754.66;13833.15;13074.15 -5802;'432;Land Locked Developing Countries;2042;Graphic papers;5922;Export value;1000 USD;;;10;231;248;;;;;;;;;;;;;;;;;;;;;;0;;;;;577;637;2111;2674;5169;5387;3723;2849;4516;4222;3961;5753;9259;19902;6945;11945;8127;12930;11729;17521;13097.04;13107.6;9891;8451;9841;8641.18;8504;18069;10197;16701.3;30488.82;18732.82 -5802;'432;Land Locked Developing Countries;1671;Newsprint;5510;Production;t;;2300;3700;4800;5000;5000;6000;7000;8000;10000;12000;12000;12000;12000;12000;12000;12000;13000;14000;16000;18000;17000;18000;17000;18000;21000;18000;19000;19000;21000;21000;21000;15000;17000;17000;18300;19700;19000;18000;20000;20000;20000;19100;18160;18160;2160;2186;2216;10048;13178;13234;13234;13230;13230;13230;13435;13384;15142;13673;13193;13350;13441;13441 -5802;'432;Land Locked Developing Countries;1671;Newsprint;5610;Import quantity;t;11500;7600;3600;6800;8300;8600;11000;12900;16600;16100;16400;15700;16900;15900;18450;14800;20300;20800;19700;21600;19100;27100;18100;19100;20300;14253;23266;21401;23858;24308;26998;28102;29627;30885;44247;51020;67693;91527;75725;91896;82179;84583;96329;118041;117570;120158;129861;140388;146242;172412;173500;159708;155015;163257;166857;150873;139814;146109;125261;86878;76235.8;72564;69286 -5802;'432;Land Locked Developing Countries;1671;Newsprint;5622;Import value;1000 USD;2066;1218;699;1102;1180;1164;1646;1926;2561;2694;2721;2774;3176;4263;6598;4544;7571;7483;7994;9813;9493;13752;8598;8696;9504;6292;11180;11085;14451;14047;16634;19375;19008;18185;31451;35288;39942;43408;40999;42873;48397;43721;47786;58857;62541;71350;88783;108117;98664;121888;135106;125644;116314;122352;115073;87335;89155.16;79423;80077;48322;47048.39;61140;54243 -5802;'432;Land Locked Developing Countries;1671;Newsprint;5910;Export quantity;t;;;100;1200;1300;;;;;;;;;;;;;;;;;;;;;;0;;;;;85;25;625;602;748;748;2577;2655;1937;1904;2000;1967;4437;4439;3799;3283;1887;3782;1389;2244;911;1467;1470;1493;1671;1253;2621;1620;393;1712;1510.05;503.05 -5802;'432;Land Locked Developing Countries;1671;Newsprint;5922;Export value;1000 USD;;;10;231;248;;;;;;;;;;;;;;;;;;;;;;0;;;;;70;12;302;886;1042;1042;1023;921;995;985;988;1017;2210;2212;1995;1668;1361;4672;2440;3029;2040;2391;958;939;964;696.04;862;815;158;1107.7;1024.72;229.72 -5802;'432;Land Locked Developing Countries;1674;Printing and writing papers;5510;Production;t;;;;;;;;;;;;;;;;;;1000;2000;2000;2000;2000;2000;2000;3000;4000;3000;3000;4000;2900;3000;3000;13100;8500;7700;6000;7400;11460;10693;20615;17701;18200;23400;24800;24800;34700;24442;57483;59265;90256;90600;48474;96102;96102;96102;99012;102001;43404;43634;45044;41559;39493;39628 -5802;'432;Land Locked Developing Countries;1674;Printing and writing papers;5610;Import quantity;t;10500;12100;10900;15100;16900;19000;20300;20300;20000;25600;26600;23900;24000;26300;26000;22100;23260;24460;26800;37700;30600;25000;21400;21800;17700;18069;20534;21907;19718;25968;27468;45111;45632;68213;34718;55505;49556;77682;115610;110284;124768;135290;172806;252975;267166;295186;347666;320644;322665;390730;453865;403999;420217;510110;453351;496611;524589;596325;719841;562381;568635.54;574801;582106 -5802;'432;Land Locked Developing Countries;1674;Printing and writing papers;5622;Import value;1000 USD;3296;3559;3459;4511;5329;5668;6080;7518;7176;8111;8662;7685;8682;12647;14126;13842;15931;16356;20444;35060;30290;23482;19146;18163;14084;16013;20092;22330;20987;32021;33610;39800;40609;58149;38504;57425;47817;73369;78473;98389;111518;114582;152691;213587;231489;263655;327420;362055;333269;410865;505918;463431;473992;558442;495709;503062;528535.14;622270;772440;515709;581214.59;690189;682938 -5802;'432;Land Locked Developing Countries;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;582;733;3635;1897;4188;4628;3946;3540;4997;5372;3237;5359;8979;17682;4662;14202;9719;10960;11697.24;10694.06;8864.2;4249.08;4263.01;3626.82;3963.48;4086.48;4447.48;13287.48;11686;14042.66;12323.1;12571.1 -5802;'432;Land Locked Developing Countries;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;507;625;1809;1788;4127;4345;2700;1928;3521;3237;2973;4736;7049;17690;4950;10277;6766;8258;9289;14492;11057.04;10716.6;8933;7512;8877;7945.14;7642;17254;10039;15593.61;29464.09;18503.09 -5802;'432;Land Locked Developing Countries;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000;3000;10704;11001;11500;14000;14000;14000;14000;3528;3665;659;16656;16000;16770;16600;16600;16600;18523;18760;19132;18621;17050;16990;16100;16235 -5802;'432;Land Locked Developing Countries;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11480;10449;11264;14652;15332;18285;33266;31427;26933;22082;14170;16283;22857;26268;25922;29026;24317;25191;33161;44294;56380;57098;39506;52143.17;45433;42848 -5802;'432;Land Locked Developing Countries;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9487;8888;10073;11572;12201;13582;24751;24178;20520;18525;14331;18522;21602;24627;30497;34645;27535;29264;33540;41759.71;51583;52897;30990;51857.73;55949;49504 -5802;'432;Land Locked Developing Countries;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1117;1218;1429;1565;1744;2443;2624;2264;453;6072;5770;5914;6274;6069;5217.2;1537.05;1200.2;375;339;316;335;896;480;423.48;2837.1;7099.1 -5802;'432;Land Locked Developing Countries;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;294;289;860;1292;1651;2267;2354;1639;869;2380;2338;2454;2609;2336;1807.8;1338.6;1208;284;388;363.23;387;594;318;266;1872.01;1692.01 -5802;'432;Land Locked Developing Countries;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3300;3700;3700;3700;3700;6400;7800;7800;17700;17907;50809;54603;57600;58600;15704;63502;63502;63502;63587;63646;6750;7603;9860;6965;7171;7171 -5802;'432;Land Locked Developing Countries;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45183;82003;73420;78003;84418;110549;156016;172566;187301;232988;209125;218498;265658;306607;266230;269442;347236;297718;346852;345861;398365;460628;387815;378764.48;373887;414518 -5802;'432;Land Locked Developing Countries;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41489;48941;64811;71089;72252;97562;131997;150063;167760;215591;242463;223261;272906;341941;308251;300522;373728;322063;344481;349191.84;420083;488240;368710;389927.56;449128;478114 -5802;'432;Land Locked Developing Countries;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2284;1623;3089;2634;1238;1704;5702;5699;3332;7104;2959;3830;3874.24;3238;2605;1778.88;1646.82;1683.82;2407.48;2505.48;2915.48;9358.48;7925;11407.95;6377;3686 -5802;'432;Land Locked Developing Countries;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1732;1031;2195;1779;1145;1465;4181;4213;3249;7008;3453;3698;4576;10270;7943.24;7832;6076;5142;6503;5803.12;5776;10994;8520;13747.8;21794;13119 -5802;'432;Land Locked Developing Countries;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5160;3993;6211;3000;3000;3000;3000;3000;3000;3007;3009;4003;16000;16000;16000;16000;16000;16000;16902;19595;17522;17410;18134;17604;16222;16222 -5802;'432;Land Locked Developing Countries;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21019;23158;25600;32113;35540;43972;63693;63173;80952;92596;97349;87884;102215;120990;111847;121749;138557;130442;116598;134434;141580;202115;135060;137727.89;155481;124740 -5802;'432;Land Locked Developing Countries;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22393;20644;23505;28857;30129;41547;56839;57248;75375;93304;105261;91486;116357;139350;124683;138825;157179;144382;125041;137583.59;150604;231303;116009;139429.3;185112;155320 -5802;'432;Land Locked Developing Countries;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;545;699;479;1173;255;1212;653;9719;877;1026;990;1216;1549;1387.06;1042;933.15;1416;1568;1217;1265;1197;3033;3281;2211.23;3109;1786 -5802;'432;Land Locked Developing Countries;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;674;608;466;166;177;1004;514;11838;832;889;975;2106;2104;1886;1306;1546;1649;2086;1986;1778.79;1479;5666;1201;1579.81;5798.08;3692.08 -5802;'432;Land Locked Developing Countries;1675;Other paper and paperboard;5510;Production;t;9900;4800;5600;9000;15200;15600;14900;18300;22000;25900;26000;29600;30000;29900;30500;30400;30400;41400;43400;45400;57400;69900;64400;62400;66200;66100;76200;76300;76800;97000;98000;100000;114000;123000;130000;118300;119800;99412;108112;231635;366969;394137;276220;289180;303982;474864;533949;456935;405414;420562;499782;348783;351816;356076;369088;396836;451503;571777;560506;584866;1434926;1447264;1647399 -5802;'432;Land Locked Developing Countries;1675;Other paper and paperboard;5610;Import quantity;t;16000;21300;21000;22400;29100;37500;38400;46500;49200;45200;51400;46900;47000;47900;43400;34500;37800;36500;42300;54500;47400;38500;38600;37900;59600;44201;52635;45065;37507;50665;51165;65299;69433;69156;114612;111815;141056;146998;184003;168605;184077;214795;269017;278917;319285;378099;428794;434109;414351;509163;539868;534680;551283;698106;711822;735608;796524;787490;898772;831576;844332.08;825026;835654 -5802;'432;Land Locked Developing Countries;1675;Other paper and paperboard;5622;Import value;1000 USD;5041;5462;5391;7123;8566;11090;11483;15401;16395;13317;15295;15160;15466;20850;21712;23266;27899;25947;32609;50007;43032;32825;31310;32079;47031;37839;53565;44748;40874;53094;52866;49820;49019;49969;112894;104067;130958;124539;151427;139827;138667;158772;202116;203955;229630;324708;402213;481841;452657;586088;659590;607223;642403;768023;651324;731326;748996.1;816851;807943;766461;911987.81;1097038;1011178 -5802;'432;Land Locked Developing Countries;1675;Other paper and paperboard;5910;Export quantity;t;1000;1000;900;3000;3600;3600;3600;3600;3600;3600;3600;3600;3600;3600;3600;1500;1100;1700;4200;1500;700;1900;4100;9400;9400;3800;11700;4200;4200;4200;4200;10155;2550;4155;7904;11441;18475;16369;20278;16087;17227;21296;37210;28479;47357;70439;86636;56710;39538;50832;56880;45714;58433;51702;61649;58967;85404;100753;113835;131794;1007803.19;1006012.62;1181331 -5802;'432;Land Locked Developing Countries;1675;Other paper and paperboard;5922;Export value;1000 USD;206;232;200;1119;866;866;866;866;866;866;866;866;866;866;866;499;312;357;763;933;710;1130;1503;3867;3867;1621;4270;1709;1709;1709;1709;4983;1218;2848;5955;8334;14821;7817;7542;6780;7852;10838;16916;16229;21954;31459;43157;33725;25971;42176;48441;34815;43169;38473;50039;38419;51724.5;63870;71034;70402;636636.26;649759.47;550610.83 -5802;'432;Land Locked Developing Countries;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;1000;41500;154000;155200;15200;15900;18500;23227;22068;21894;20896;27922;29742;27141;27205;33198;39642;41137;34874;83508;92041;96567;91964;92074;93555 -5802;'432;Land Locked Developing Countries;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;;;;;300;300;300;300;300;300;300;300;300;100;100;100;100;100;100;100;100;100;100;100;0;2400;2300;2300;300;3753;8756;12023;9234;9542;12046;12901;14773;19135;21000;24876;30309;48507;28543;37450;47519;52758;64634;55757;58181;58892;62685;60380;63499.35;58009;66531 -5802;'432;Land Locked Developing Countries;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;;;;;253;270;270;270;270;270;270;270;270;100;100;100;100;100;100;100;100;100;100;100;0;1063;1508;1508;142;2261;23041;10495;6514;6939;9611;12432;13300;25029;31443;39405;41497;61197;34546;46151;64055;75940;89412;76784;76430.93;76513;73232;66711;73959.94;81218;84645 -5802;'432;Land Locked Developing Countries;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;53;314;312;78;1816;8244;4595;4610;5519;4151;5092;5012;5531;6044;6024;4156;4966;5953;8039;6477;6302;7474.13;15173;14873 -5802;'432;Land Locked Developing Countries;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;0;40;275;279;62;2014;3454;3794;4636;4910;3410;4752;3988;3605;4028;4000;3244;3391;4178.39;6700;5738;5140;6449.37;18459;17122 -5802;'432;Land Locked Developing Countries;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26130;27312;144635;166369;192537;214620;226880;239082;324837;357368;333323;264396;285050;340420;194442;195767;193534;200302;232617;294091;357493;340980;358125;1304516;1318160;1520083 -5802;'432;Land Locked Developing Countries;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52168;88630;103240;120082;150569;182482;213212;248788;312948;351001;359328;342615;412111;475987;468609;476339;611996;628194;657935;719125;705510;812082;749526;753457.99;734162;746719 -5802;'432;Land Locked Developing Countries;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44148;56584;77531;82046;97805;125409;125916;146753;239932;294331;360874;327397;424412;534581;491520;500089;605207;513386;573020;604646.58;662568;655676;617948;752107.75;863387;817986 -5802;'432;Land Locked Developing Countries;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8437;6302;7073;8583;13044;29264;23156;35393;64175;76369;44193;32589;39886;50090;38147;51159;42780;52881;53081;78500;91580;106158;124334;998892.06;989748;1165116 -5802;'432;Land Locked Developing Countries;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3826;3292;3156;4231;7201;13749;11526;15259;25745;34894;24540;20673;32719;41473;29154;36594;30851;35068;33275;45721.55;54695;61852;62106;625366.89;626418.83;528019.83 -5802;'432;Land Locked Developing Countries;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;;;;;;;;;1000;1000;1000;1000;1000;1000;10000;10000;10000;10000;2900;1800;1800;2500;2500;7000;8000;11000;24000;26900;33000;26300;26800;;;;;;;;;;;;;;;;;;;;;;;;;; -5802;'432;Land Locked Developing Countries;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;1200;4200;5100;700;2900;3700;4700;7900;9600;14500;17400;15100;13900;13300;11500;11200;6700;7200;9000;13700;10900;8200;6600;7100;7700;6600;6900;7300;5600;6700;6700;15642;27649;29100;55400;29500;61700;;;;;;;;;;;;;;;;;;;;;;;;;; -5802;'432;Land Locked Developing Countries;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;199;390;472;168;722;856;1057;2007;2655;3468;4197;3922;3765;4506;5521;5433;5151;5260;6466;11084;7802;5815;5055;5294;5571;4828;5196;5638;4376;6579;5579;9683;13420;14448;52488;21450;54457;;;;;;;;;;;;;;;;;;;;;;;;;; -5802;'432;Land Locked Developing Countries;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1283;1293;3800;4100;4100;9600;;;;;;;;;;;;;;;;;;;;;;;;;; -5802;'432;Land Locked Developing Countries;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;609;594;2610;2872;2872;8669;;;;;;;;;;;;;;;;;;;;;;;;;; -5802;'432;Land Locked Developing Countries;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13805;15204;93429;124883;123983;120779;120510;133562;132900;138768;130830;106909;103150;106220;74300;142776;140823;146223;179255;237569;243001;219977;235278;1163510;1149350;1356220 -5802;'432;Land Locked Developing Countries;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30172;41284;39705;50817;68470;81270;76969;113789;135544;159620;177508;158485;190400;207844;220274;222866;244377;287617;295689;348888;337326;406192;368284;357594.17;302473;349125 -5802;'432;Land Locked Developing Countries;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28969;26908;24069;27733;29757;36618;39366;56706;68327;91297;111527;88383;128379;168242;153052;157121;168919;176895;169103;206915.99;223454;222829;195806;250644.96;251599;237382 -5802;'432;Land Locked Developing Countries;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7737;5168;4681;4857;7794;19542;10204;21656;50629;62771;29502;14075;14390;35911;26995;31534;21811;22721;29231;46777;36128;48139;61275;925228.84;900008.01;1064868.02 -5802;'432;Land Locked Developing Countries;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3138;2318;1040;1123;1936;5285;4451;8230;18148;26034;14931;6689;7436;22077;15725;19462;13432;13751;14783;22087.79;18556;23732;28338;573321.07;548699.21;452151.21 -5802;'432;Land Locked Developing Countries;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3287;2597;24544;9420;18165;5781;15162;11617;128862;154463;137530;128509;155000;203000;91707;24709;22462;21730;14065;17037;17302;18292;18984;23451;27582;27562 -5802;'432;Land Locked Developing Countries;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6668;18727;24340;18081;32247;37695;58578;58563;99190;112995;107775;104287;134880;159429;168707;166608;232664;214968;234162;250997;233914;253501;248438;253017.15;294759;263361 -5802;'432;Land Locked Developing Countries;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5372;13960;30491;25675;41984;50716;39293;43118;122983;146706;178789;172748;216314;263728;252313;248552;303679;226475;293614;293096.47;315306;299300;305981;355131.51;459081;441894 -5802;'432;Land Locked Developing Countries;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;72;526;1129;1430;1371;1925;2887;3121;3417;6157;7931;13941;5482;2865;8549;14961;21018;18487;26366;41700;45864;45380;48443.89;53739;53731 -5802;'432;Land Locked Developing Countries;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126;184;941;1725;3309;4579;1116;1838;2405;3221;4919;8453;18883;12181;6783;6868;12549;15572;13240;18383.7;25100;27440;26257;37745.24;49593;45362 -5802;'432;Land Locked Developing Countries;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8521;9152;10087;10766;12856;12627;9679;12348;13687;13718;15130;12109;11800;16100;13600;13600;14600;16700;23648;23836;81541;88829;92163;107555;131228;126301 -5802;'432;Land Locked Developing Countries;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14077;24223;35144;43652;38895;50056;65026;65047;68650;68535;65674;60948;75635;96087;69299;75172;123927;114476;118783;105146;122228;138250;122786;129852.86;119634;118631 -5802;'432;Land Locked Developing Countries;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9256;14356;21364;25963;22230;32141;41616;41483;43829;51560;65522;56271;72488;93551;74496;82086;122311;100511;102562;93134.11;115940;124488;109326;136758.18;139075;126266 -5802;'432;Land Locked Developing Countries;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;500;846;1849;2579;3536;8249;9109;8390;8619;8344;7896;7330;8240;7116;6369;9236;5018;8285;4474;3964;12792;11009;16935;20784.33;30248;40042 -5802;'432;Land Locked Developing Countries;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;481;704;1170;1378;1858;3856;4849;4031;4105;4505;4376;4165;4425;5991;5310;8988;3865;4841;4289;4145.87;10498;10172;7021;12150.58;25450;27487 -5802;'432;Land Locked Developing Countries;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;517;359;16575;21300;37533;75433;81529;81555;49388;50419;49833;16869;15100;15100;14835;14682;15649;15649;15649;15649;15649;13882;11700;10000;10000;10000 -5802;'432;Land Locked Developing Countries;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1251;4396;4051;7532;10957;13461;12639;11389;9564;9851;8371;18895;11196;12627;10329;11693;11028;11133;9301;14094;12042;14139;10018;12993.81;17296;15602 -5802;'432;Land Locked Developing Countries;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;551;1360;1607;2675;3834;5934;5641;5446;4793;4768;5036;9995;7231;9060;11659;12330;10298;9505;7741;11500.01;7868;9059;6835;9573.11;13632;12444 -5802;'432;Land Locked Developing Countries;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200;216;17;18;284;102;1918;2460;1806;1837;638;3253;3315;1581;1918;1840;990;857;889;1393;960;1146;744;4435;5752.99;6474.99 -5802;'432;Land Locked Developing Countries;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81;86;5;5;98;29;1110;1160;1087;1134;314;1366;1975;1224;1336;1276;1005;904;963;1104.19;541;508;490;2150;2676.62;3019.62 -5802;'432;Land Locked Developing Countries;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;1400;2800;3400;3800;72300;90000;90000;89000;90000;96100;97000;92000;93000;73282;79800;45500;46600;46400;46400;46400;46400;126800;154513;101718;120122;107590;129620;127200;128844;129344;129144;123082;122538;130776;127485;130174;38446;37030;33761 -5802;'432;Land Locked Developing Countries;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;12300;14600;13500;15500;17400;17600;17900;19200;19700;25100;26800;24100;25900;28200;26100;16200;21100;18800;21500;18000;18800;13100;14900;14400;16000;13000;15900;12200;15100;14700;13900;31111;20099;17615;34653;41643;37047;91077;86617;53342;54761;54684;74489;52804;55724;46016;56793;49905;41427;48545;35338;28621;27425;33352;18994;21916;19218;23088;24005;21670;27374.74;32855;22404 -5802;'432;Land Locked Developing Countries;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;3817;4064;4053;4373;4368;4478;4641;5384;5769;6772;7404;7262;8206;12319;11280;12458;15084;12800;17047;17387;16980;11962;10888;10560;11617;9261;18544;10613;16518;18749;17068;24910;16799;11048;33528;41687;35998;78130;71802;51801;50107;54028;67096;65607;69577;59747;76439;81562;83763;100479;90463;69552;78259;86876;48526;81522;67918.59;77770;79035;81802;85920.12;152433;108547 -5802;'432;Land Locked Developing Countries;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;1500;1100;1700;4200;1500;700;1900;4100;9400;9400;3800;11700;4200;4200;4200;4200;8362;356;183;3559;6848;7548;7932;13976;8961;8330;7940;7868;3507;3720;1669;5657;6998;2798;5854;1778;2036;1230;2898;4612;920;951;1134;1200;1158;1437;1091.62;1342 -5802;'432;Land Locked Developing Countries;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;499;312;357;763;933;710;1130;1503;3867;3867;1621;4270;1709;1709;1709;1709;4111;178;118;2951;4910;5067;3986;4250;3584;3346;3358;3105;2689;3241;1920;3627;4275;1888;4705;2980;2056;2547;3622;11727;1753;1824.56;2475;3444;3156;4820;4881.64;5469 -5802;'432;Land Locked Developing Countries;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;999298.17;999823;1076279;916625;1058735;1237067;1169487 -5802;'432;Land Locked Developing Countries;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;183812.8;229751;265528;188864;471825;272753;273519 -5802;'432;Land Locked Developing Countries;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38512.22;38996;70578;49641;50918;44152;31078 -5802;'432;Land Locked Developing Countries;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40164.26;53272;56152;38574;60145;52522;49818 -5802;'432;Land Locked Developing Countries;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18985.97;23543;22455;22911;24700;26149;19057 -5802;'432;Land Locked Developing Countries;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4392.12;4119;4859;3647;4411;7775;11375 -5802;'432;Land Locked Developing Countries;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19526.26;15453;48123;26730;26218;18003;12021 -5802;'432;Land Locked Developing Countries;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35772.14;49153;51293;34927;55734;44747;38443 -5802;'432;Land Locked Developing Countries;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36576.01;49643;40703;33255;37720;44055;46617 -5802;'432;Land Locked Developing Countries;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6305.87;17099;18513;15215;15653;24217;23823 -5802;'432;Land Locked Developing Countries;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15469.95;16436;19633;14202;25188;23588;21206 -5802;'432;Land Locked Developing Countries;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1181.56;1484;2517;1858;8537;17106;8097 -5802;'432;Land Locked Developing Countries;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;241706.56;197213;237870;205650;166614;270920;267434 -5802;'432;Land Locked Developing Countries;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20883.46;26494;21551;14623;20747;28639;32408 -5802;'432;Land Locked Developing Countries;1636;Glue-laminated timber (glulam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6800;0 -5802;'432;Land Locked Developing Countries;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2766;5799 -5802;'432;Land Locked Developing Countries;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;940;1750 -5802;'432;Land Locked Developing Countries;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1 -5802;'432;Land Locked Developing Countries;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1 -5802;'432;Land Locked Developing Countries;1688;Cross-laminated timber (CLT or X-lam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -5802;'432;Land Locked Developing Countries;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95;210 -5802;'432;Land Locked Developing Countries;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;183;471 -5802;'432;Land Locked Developing Countries;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;0 -5802;'432;Land Locked Developing Countries;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2;1 -5802;'432;Land Locked Developing Countries;1684;I-beams (I-joists);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1800;0 -5802;'432;Land Locked Developing Countries;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1699;2271 -5802;'432;Land Locked Developing Countries;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2523;2461 -5802;'432;Land Locked Developing Countries;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;34 -5802;'432;Land Locked Developing Countries;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;148;39 -5802;'432;Land Locked Developing Countries;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;593316.57;655716;643809;559807;717295;779018;676341 -5802;'432;Land Locked Developing Countries;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104047.78;120319;155040;108361;353622;129847;132705 -5802;'432;Land Locked Developing Countries;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44787.91;8504;22482;13032;16168;19779;29893 -5802;'432;Land Locked Developing Countries;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3546.34;3190;3772;2935;3997;4338;6398 -5802;'432;Land Locked Developing Countries;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28928.94;33315;41204;41038;44832;55555;96918 -5802;'432;Land Locked Developing Countries;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7683.53;7893;7983;7298;9124;16084;20270 -5802;'432;Land Locked Developing Countries;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1186491.83;1294585;1332614;1252383;1442818;1622413;1648451 -5802;'432;Land Locked Developing Countries;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79618.01;104021;107436;100236;119114;159053;146670 -5802;'432;Land Locked Developing Countries;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4083.82;3774;4217;4399;5725;5951;3950 -5802;'432;Land Locked Developing Countries;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1169.79;1179;826;878;935;1595;1072 -5802;'432;Land Locked Developing Countries;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79521.04;82746;95742;98158;112276;161331;147915 -5802;'432;Land Locked Developing Countries;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;945.2;1873;1848;1441;1915;12191;6672 -5802;'432;Land Locked Developing Countries;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;176723.01;173492;186886;180297;191261;249800;256444 -5802;'432;Land Locked Developing Countries;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7050.44;10857;9526;11581;10218;10656;13152 -5802;'432;Land Locked Developing Countries;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;409078;485435;489950;455097;530431;599225;582640 -5802;'432;Land Locked Developing Countries;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37468.24;55023;60837;58427;65142;78219;79964 -5802;'432;Land Locked Developing Countries;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;517085.97;549138;555819;514432;603125;606106;657502 -5802;'432;Land Locked Developing Countries;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32984.33;35089;34399;27909;40904;56392;45810 -5803;'722;Small Island Developing States;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5542069.8;6039631.4;5930889.66;5085598.66;5843136.38;6359859.83;5887973.09 -5803;'722;Small Island Developing States;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4098688;4802684;4130079;3452759;3573488.57;3516610.22;3345152.83 -5803;'722;Small Island Developing States;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;55279;60675;48768;99186;97940;114801;122857;155963;173275;203333;219533;247208;363664;430238;389492;508428;587378;768448;894980;1091749;1119908;1069433;1142604;1087850;925071;1042823;1159751;1343417;1350149;1522679;1641624;1522786;1343090;1719252;2215745;1915328;1759314;1645303;1606435;1621932;1438107;1215464;1395253;1559383;1635412.1;1889970.3;2009545;2254944;1804766;2228373.75;2889566.13;2890035.64;2816142.95;2968728.28;2692558.86;2739629.76;2821151.4;3103318.4;3060629.66;2662974.66;3021642.38;2996808.83;2558594.09 -5803;'722;Small Island Developing States;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;14281;14478;15182;34686;38139;45165;46912;57767;72894;80140;88740;119176;247029;241651;193750;290929;309026;382137;589914;642019;558417;547079;594473;584986;542953;533408;727020;937882;910371;950289;934558;1140168;1054750;1531942;1439787;1165723;1216434;864959;858927;909897;717247;717514;680893;667293;762290.4;853028;1011355;1622126;1468121.2;2080662.97;2451496.5;2705242.02;3017803.42;3633222.18;3299564;3183818.45;3395217;4083603;3450021;2827289;2878339.57;2802313.22;2652406.83 -5803;'722;Small Island Developing States;1861;Roundwood;5516;Production;m3;10370666;11390299;11417275;11359143;11926352;11123022;11168798;12304108;13000115;12913430;13611895;13744202;14017754;14185336;14434928;14857451;14769009;15418628;16695760;17567884;17585533;18457403;18139660;18295313;18733706;19090950;19429914;19671178;19479071;20072842;19941955;20075264;21523084;22407784;22164387;22548569;22530353;22049886;20230658;19666370;19131770;20410823;20866246;21125865;21675109;22432610;22390315;22175658;22305354;24110261;24266268;24046036;24534007;25519832;25384220;25273773;26190741;26483938;26515073;25985603;26297198;26247863;26352826 -5803;'722;Small Island Developing States;1861;Roundwood;5616;Import quantity;m3;39700;42700;33500;962900;1121800;1464900;1486500;1567100;1763200;1955300;1886800;1503900;1403300;1259900;1075600;1536600;1426300;1603100;1544600;1244400;897200;601900;628100;391900;193600;185500;137500;158300;135000;182872;234249;149190;99744;199120;173130;137529;119911;146476;145920;110285;104888;103162;135195;185842;181157.2;139700;147729;121011;102890;147441.5;159777.17;164058.16;158790.71;247531.23;149122;145549;187440;151512;253104;290840;386638;425144.67;279170.67 -5803;'722;Small Island Developing States;1861;Roundwood;5622;Import value;1000 USD;864;1003;707;9691;11191;15105;20097;23119;26246;30460;33695;36399;54498;51979;46086;63325;71496;124217;134374;128348;104781;68019;87130;56446;34557;34668;26560;31702;32067;18874;27378;26263;16658;52650;68493;49456;36033;30629;33805;25162;31856;30479;24347;22775;24522.1;17806.3;27582;25510;19052;22469.35;31025.47;31377.48;31536.68;52833.1;37628;34123;64356;32350;51664;55892;95411;113202.06;84372.06 -5803;'722;Small Island Developing States;1861;Roundwood;5916;Export quantity;m3;315700;400400;366000;575900;490200;579000;604900;711000;811800;871900;1102300;1082100;1031900;1114300;749500;833400;782200;771200;791800;995800;1158500;1502700;1466000;1657500;1602100;1736786;1813128;1728985;1238404;1447303;1728901;2555187;2273615;3772020;3638260;3335472;3795401;2346172;2702243;2624678;2176592;2542633;2954014;3197349;3333052.2;3600046;4492632;4255837;3488566;4597394;5529556;5511331;5707387;6764206;6104906;5511212;6961370;7629761;6956954;5514469;5041040;5035177;4435574 -5803;'722;Small Island Developing States;1861;Roundwood;5922;Export value;1000 USD;4765;5264;5159;7085;6632;7890;8321;9422;11549;13769;17093;16443;19084;29012;19685;24280;29861;33372;49545;74165;75373;105591;86983;109944;90353;105625;146952;138374;97713;158525;209679;331490;541721;765307;631942;468300;495834;195457;243859;217400;169517;185027;335111;250957;316441.4;393757;469929;810721;571489;934081.47;1180774.3;1124385.52;1233036.42;1679703.08;1482570;1312227;1419894;1665842;1314168;977152;1107728;1143355;924850 -5803;'722;Small Island Developing States;1862;Roundwood, coniferous;5516;Production;m3;544027;649693;547961;716933;682507;702385;681967;710051;757239;724630;719408;727209;615749;526323;449464;548736;546608;557137;640819;658528;655695;621666;601111;612218;606333;582456;623954;700818;684003;668867;663736;668891;953869;968104;1034157;1032803;1031562;947715;849319;944734;969798;828895;833893;917637;913218;955442;987965;938991;879697;1125722;1086345;1062545;1130733;1137407;1204734;1159897;1153793;1142134;1156347;1135880;1206208;1196678;1205174 -5803;'722;Small Island Developing States;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67080;72417;145929;174549;245023;185860.58;115021.58 -5803;'722;Small Island Developing States;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13017;13337;29930;34720;48727;40870;34209 -5803;'722;Small Island Developing States;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5332;42441;2537;24733;82279;30641;12847 -5803;'722;Small Island Developing States;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1547;8849;903;3526;13314;6581;4053 -5803;'722;Small Island Developing States;1863;Roundwood, non-coniferous;5516;Production;m3;9826639;10740606;10869314;10642210;11243845;10420637;10486831;11594057;12242876;12188800;12892487;13016993;13402005;13659013;13985464;14308715;14222401;14861491;16054941;16909356;16929838;17835737;17538549;17683095;18127373;18508494;18805960;18970360;18795068;19403975;19278219;19406373;20569215;21439680;21130230;21515766;21498791;21102171;19381339;18721636;18161972;19581928;20032353;20208228;20761891;21477168;21402350;21236667;21425657;22984539;23179923;22983491;23403274;24382425;24179486;24113876;25036948;25341804;25358726;24849723;25090990;25051185;25147652 -5803;'722;Small Island Developing States;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120360;79095;107175;116291;141615;239284.08;164149.08 -5803;'722;Small Island Developing States;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51339;19013;21734;21172;46684;72332.06;50163.06 -5803;'722;Small Island Developing States;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6956038;7587320;6954417;5489736;4958761;5004536;4422727 -5803;'722;Small Island Developing States;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1418347;1656993;1313265;973626;1094414;1136774;920797 -5803;'722;Small Island Developing States;1864;Wood fuel;5516;Production;m3;8496266;9289399;9384875;9260643;9572252;8686822;8777498;9784508;10390115;10201530;10620595;10666702;11007354;11124236;11325328;11514251;11572009;12081228;13193660;13528684;13744933;13910503;13785160;13978913;14262606;14262839;14295806;14440779;14319796;14916385;14954807;14920976;15295543;15325355;15323614;15518295;15600307;15679923;14168875;14064819;14060010;15175191;15137418;15139453;15191201;15551890;15179395;15087489;15606345;15058665;15105128;15145145;15194018;15249723;15310634;15354740;15398417;15443098;15453354;15533703;15645089;15703824;15903907 -5803;'722;Small Island Developing States;1864;Wood fuel;5616;Import quantity;m3;1600;800;900;37400;25800;29200;89100;59200;41800;51400;43300;30100;18200;13200;20500;27900;46000;35700;35600;22100;23700;23700;22800;2900;200;200;200;200;600;500;5000;1052;4823;53982;10845;14759;4651;3304;4893;5644;8990;9033;8927;5805;5807;6851;5902;3458;3307;1371.5;2147.17;2384.16;2889.58;2735;4331;2252;1170;2197;1609;2935;2308;8482.67;3359.67 -5803;'722;Small Island Developing States;1864;Wood fuel;5622;Import value;1000 USD;9;5;5;137;97;107;208;143;99;116;93;75;56;40;91;147;343;347;493;473;507;507;647;83;7;7;7;7;443;361;785;389;549;3349;805;934;212;228;486;466;423;427;457;580;622;568;550;386;483;232;469;388;424.32;631;616;480;270;463;581;960;619;920.06;910.06 -5803;'722;Small Island Developing States;1864;Wood fuel;5916;Export quantity;m3;1800;1100;1300;600;500;500;400;200;200;100;100;100;200;3800;3800;200;1200;3200;400;400;400;400;400;400;400;400;400;400;400;400;400;2368;638;804;158;158;458;658;695;878;736;828;1246;932;874.2;1605;1181;1005;1052;1497;1444;4987;6862;5585;12930;11313;8763;7304;7041;6599;5836;5649;5703 -5803;'722;Small Island Developing States;1864;Wood fuel;5922;Export value;1000 USD;6;4;17;7;3;8;2;4;7;4;4;4;8;18;18;9;105;338;41;41;41;41;41;41;41;41;41;41;41;41;41;96;22;45;13;64;155;167;25;65;21;27;207;205;117.4;82;107;87;105;150;212;500;1048.22;1805;1567;1074;1308;907;868;732;475;1078;1184 -5803;'722;Small Island Developing States;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;152969;151304;157157;158603;160262;162685;164389;164104;163668;163242;162825;163417;163018;164556;165200;165900;166427;168303;168450;167907;167074;168152;168539;171809;172610;173420;172163;172396;182545;191395;192841 -5803;'722;Small Island Developing States;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11;1300;656;936;583;5869.58;967.58 -5803;'722;Small Island Developing States;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;159;201;372;214;274;335 -5803;'722;Small Island Developing States;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;210;473;53;20;2;2 -5803;'722;Small Island Developing States;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82;149;16;5;6;6 -5803;'722;Small Island Developing States;1628;Wood fuel, non-coniferous;5516;Production;m3;8395739;9188306;9283214;9158410;9469445;8583437;8673531;9679957;10284976;10095800;10514987;10559893;10899305;11016013;11215164;11404315;11460701;11969391;13081841;13416856;13631038;13794337;13667549;13859695;14141673;14140083;14170952;14314161;14191493;14786118;14821771;14781685;15142574;15174051;15166457;15359692;15440045;15517238;14004486;13900715;13896342;15011949;14974593;14976036;15028183;15387334;15014195;14921589;15439918;14890362;14936678;14977238;15026944;15081571;15142095;15182931;15225807;15269678;15281191;15361307;15462544;15512429;15711066 -5803;'722;Small Island Developing States;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1159;897;953;1999;1725;2613.08;2392.08 -5803;'722;Small Island Developing States;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;269;304;380;588;405;646.06;575.06 -5803;'722;Small Island Developing States;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8763;7094;6568;6546;5816;5647;5701 -5803;'722;Small Island Developing States;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1308;825;719;716;470;1072;1178 -5803;'722;Small Island Developing States;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;1600;800;900;37400;25800;29200;89100;59200;41800;51400;43300;30100;18200;13200;20500;27900;46000;35700;35600;22100;23700;23700;22800;2900;200;200;200;200;600;500;5000;1052;4823;53982;10845;14759;4651;3304;4893;5644;8990;9033;8927;5805;5807;6851;5902;3458;3307;1371.5;2147.17;2384.16;2889.58;2735;4331;2252;;;;;;; -5803;'722;Small Island Developing States;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;9;5;5;137;97;107;208;143;99;116;93;75;56;40;91;147;343;347;493;473;507;507;647;83;7;7;7;7;443;361;785;389;549;3349;805;934;212;228;486;466;423;427;457;580;622;568;550;386;483;232;469;388;424.32;631;616;480;;;;;;; -5803;'722;Small Island Developing States;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;1800;1100;1300;600;500;500;400;200;200;100;100;100;200;3800;3800;200;1200;3200;400;400;400;400;400;400;400;400;400;400;400;400;400;2368;638;804;158;158;458;658;695;878;736;828;1246;932;874.2;1605;1181;1005;1052;1497;1444;4987;6862;5585;12930;11313;;;;;;; -5803;'722;Small Island Developing States;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;6;4;17;7;3;8;2;4;7;4;4;4;8;18;18;9;105;338;41;41;41;41;41;41;41;41;41;41;41;41;41;96;22;45;13;64;155;167;25;65;21;27;207;205;117.4;82;107;87;105;150;212;500;1048.22;1805;1567;1074;;;;;;; -5803;'722;Small Island Developing States;1865;Industrial roundwood;5516;Production;m3;1874400;2100900;2032400;2098500;2354100;2436200;2391300;2519600;2610000;2711900;2991300;3077500;3010400;3061100;3109600;3343200;3197000;3337400;3502100;4039200;3840600;4546900;4354500;4316400;4471100;4828111;5134108;5230399;5159275;5156457;4987148;5154288;6227541;7082429;6840773;7030274;6930046;6369963;6061783;5601551;5071760;5235632;5728828;5986412;6483908;6880720;7210920;7088169;6699009;9051596;9161140;8900891;9339989;10270109;10073586;9919033;10792324;11040840;11061719;10451900;10652109;10544039;10448919 -5803;'722;Small Island Developing States;1865;Industrial roundwood;5616;Import quantity;m3;38100;41900;32600;925500;1096000;1435700;1397400;1507900;1721400;1903900;1843500;1473800;1385100;1246700;1055100;1508700;1380300;1567400;1509000;1222300;873500;578200;605300;389000;193400;185300;137300;158100;134400;182372;229249;148138;94921;145138;162285;122770;115260;143172;141027;104641;95898;94129;126268;180037;175350.2;132849;141827;117553;99583;146070;157630;161674;155901.13;244796.23;144791;143297;186270;149315;251495;287905;384330;416662;275811 -5803;'722;Small Island Developing States;1865;Industrial roundwood;5622;Import value;1000 USD;855;998;702;9554;11094;14998;19889;22976;26147;30344;33602;36324;54442;51939;45995;63178;71153;123870;133881;127875;104274;67512;86483;56363;34550;34661;26553;31695;31624;18513;26593;25874;16109;49301;67688;48522;35821;30401;33319;24696;31433;30052;23890;22195;23900.1;17238.3;27032;25124;18569;22237.35;30556.47;30989.48;31112.36;52202.1;37012;33643;64086;31887;51083;54932;94792;112282;83462 -5803;'722;Small Island Developing States;1865;Industrial roundwood;5916;Export quantity;m3;313900;399300;364700;575300;489700;578500;604500;710800;811600;871800;1102200;1082000;1031700;1110500;745700;833200;781000;768000;791400;995400;1158100;1502300;1465600;1657100;1601700;1736386;1812728;1728585;1238004;1446903;1728501;2552819;2272977;3771216;3638102;3335314;3794943;2345514;2701548;2623800;2175856;2541805;2952768;3196417;3332178;3598441;4491451;4254832;3487514;4595897;5528112;5506344;5700525;6758621;6091976;5499899;6952607;7622457;6949913;5507870;5035204;5029528;4429871 -5803;'722;Small Island Developing States;1865;Industrial roundwood;5922;Export value;1000 USD;4759;5260;5142;7078;6629;7882;8319;9418;11542;13765;17089;16439;19076;28994;19667;24271;29756;33034;49504;74124;75332;105550;86942;109903;90312;105584;146911;138333;97672;158484;209638;331394;541699;765262;631929;468236;495679;195290;243834;217335;169496;185000;334904;250752;316324;393675;469822;810634;571384;933931.47;1180562.3;1123885.52;1231988.2;1677898.08;1481003;1311153;1418586;1664935;1313300;976420;1107253;1142277;923666 -5803;'722;Small Island Developing States;1866;Industrial roundwood, coniferous;5516;Production;m3;443500;548600;446300;614700;579700;599000;578000;605500;652100;618900;613800;620400;507700;418100;339300;438800;435300;445300;529000;546700;541800;505500;483500;493000;485400;459700;499100;574200;555700;538600;530700;529600;800900;816800;877000;874200;871300;785030;684930;780630;806130;665653;671068;754220;750200;790886;822765;773091;713270;957419;917895;894638;963659;969255;1036195;988088;981183;968714;984184;963484;1023663;1005283;1012333 -5803;'722;Small Island Developing States;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88377;121626;39424;49064;74216;73800;55062;82126;92706;75627;50991;39505;40473;75799;118041;103840;61900;99011;69417;49727;69983;69858;71438;88130;140511.1;79404;69538;67069;71117;145273;173613;244440;179991;114054 -5803;'722;Small Island Developing States;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7500;6237;3907;7363;11607;12455;11067;15230;12454;13348;7916;9679;7479;8996;9559;8192;5575;16936;13288;5056;8074.35;7333.09;9095;11518;13285;15015;10026;13016;13178;29729;34348;48513;40596;33874 -5803;'722;Small Island Developing States;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30210;35438;167043;23650;29324;15644;8260;10160;10160;15814;15818;11998;15832;16969;11782;9893;6885;6245;9464;5345;24608;17690;24285;49194;50696;23397;10554;5332;42231;2064;24680;82259;30639;12845 -5803;'722;Small Island Developing States;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960;2281;18429;2190;2838;2906;1223;1254;1254;1602;1602;1032;1203;1248;1026;934;1465;1335;2952;636;2317;2731.3;1962;13829.2;15330.08;6022;2183;1547;8767;754;3510;13309;6575;4047 -5803;'722;Small Island Developing States;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88377;121626;39424;49064;74216;73800;55062;82126;92706;75627;50991;39505;40473;75799;118041;103840;61900;99011;69417;49727;69983;69858;71438;88130;140511.1;79404;69538;67069;71117;145273;173613;244440;179991;114054 -5803;'722;Small Island Developing States;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7500;6237;3907;7363;11607;12455;11067;15230;12454;13348;7916;9679;7479;8996;9559;8192;5575;16936;13288;5056;8074.35;7333.09;9095;11518;13285;15015;10026;13016;13178;29729;34348;48513;40596;33874 -5803;'722;Small Island Developing States;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30210;35438;167043;23650;29324;15644;8260;10160;10160;15814;15818;11998;15832;16969;11782;9893;6885;6245;9464;5345;24608;17690;24285;49194;50696;23397;10554;5332;42231;2064;24680;82259;30639;12845 -5803;'722;Small Island Developing States;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1960;2281;18429;2190;2838;2906;1223;1254;1254;1602;1602;1032;1203;1248;1026;934;1465;1335;2952;636;2317;2731.3;1962;13829.2;15330.08;6022;2183;1547;8767;754;3510;13309;6575;4047 -5803;'722;Small Island Developing States;1867;Industrial roundwood, non-coniferous;5516;Production;m3;1430900;1552300;1586100;1483800;1774400;1837200;1813300;1914100;1957900;2093000;2377500;2457100;2502700;2643000;2770300;2904400;2761700;2892100;2973100;3492500;3298800;4041400;3871000;3823400;3985700;4368411;4635008;4656199;4603575;4617857;4456448;4624688;5426641;6265629;5963773;6156074;6058746;5584933;5376853;4820921;4265630;4569979;5057760;5232192;5733708;6089834;6388155;6315078;5985739;8094177;8243245;8006253;8376330;9300854;9037391;8930945;9811141;10072126;10077535;9488416;9628446;9538756;9436586 -5803;'722;Small Island Developing States;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93995;107623;108714;45857;70922;88485;67708;33134;50466;65400;53650;56393;53656;50469;61996;71510.2;70949;42816;48136;49856;76087;87772;90236;67771.13;104285.13;65387;73759;119201;78198;106222;114292;139890;236671;161757 -5803;'722;Small Island Developing States;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11013;20356;21967;8746;37694;55233;37455;20591;17947;19971;16780;21754;22573;14894;12636;15708.1;11663.3;10096;11836;13513;14163;23223.38;21894.48;19594.36;38917.1;21997;23617;51070;18709;21354;20584;46279;71686;49588 -5803;'722;Small Island Developing States;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1416693;1693063;2385776;2249327;3741892;3622458;3327054;3784783;2335354;2685734;2607982;2163858;2525973;2935799;3184635;3322285;3591556;4485206;4245368;3482169;4571289;5510422;5482059;5651331;6707925;6068579;5489345;6947275;7580226;6947849;5483190;4952945;4998889;4417026 -5803;'722;Small Island Developing States;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;156524;207357;312965;539509;762424;629023;467013;494425;194036;242232;215733;168464;183797;333656;249726;315390;392210;468487;807682;570748;931614.47;1177831;1121923.52;1218159;1662568;1474981;1308970;1417039;1656168;1312546;972910;1093944;1135702;919619 -5803;'722;Small Island Developing States;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66012;90604;94403;25535;48705;65568;46022;15194;14304;27077;25177;28865;26003;30368;26194;34707;31086;21537;21287;26358;40399;47471;50861;32341;62461;46898;46892;89297;47280;58158;30071;109299;143635;122942 -5803;'722;Small Island Developing States;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5888;15178;18193;5594;33935;46889;27683;12134;6652;7630;7803;12225;12936;11077;7607;10674;5645;4718;5576;7282;6032;13066.38;11156.48;9256.38;17317.38;15471;14406;41579;10032;8968;6748;34346;46220;38803 -5803;'722;Small Island Developing States;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1416693;1693063;2385776;2249327;3741892;3611264;3315860;3776953;2331542;2682955;2602528;2158404;2498015;2896976;3159272;3297056;3581521;4472336;4239698;3477356;4552808;5487193;5457891;5643694;6693749;6000682;5489345;6947124;7580211;6947830;5483145;4952945;4994531;4417026 -5803;'722;Small Island Developing States;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;156524;207357;312965;539509;762424;625778;463768;492877;193272;241792;215026;167757;178906;331904;248131;313833;389668;464388;803542;566676;924804;1167385;1111059;1212262;1659089;1473903;1308967;1416991;1656164;1312542;972840;1093944;1133547;918777 -5803;'722;Small Island Developing States;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27983;17019;14311;20322;22217;22917;21686;17940;36162;38323;28473;27528;27653;20101;35802;36803.2;39863;21279;26849;23498;35688;40301;39375;35430.13;41824.13;18489;26867;29904;30918;48064;84221;30591;93036;38815 -5803;'722;Small Island Developing States;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5125;5178;3774;3152;3759;8344;9772;8457;11295;12341;8977;9529;9637;3817;5029;5034.1;6018.3;5378;6260;6231;8131;10157;10738;10337.97;21599.72;6526;9211;9491;8677;12386;13836;11933;25466;10785 -5803;'722;Small Island Developing States;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11194;11194;7830;3812;2779;5454;5454;27958;38823;25363;25229;10035;12870;5670;4813;18481;23229;24168;7637;14176;67897;0;151;15;19;45;0;4358;0 -5803;'722;Small Island Developing States;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3245;3245;1548;764;440;707;707;4891;1752;1595;1557;2542;4099;4140;4072;6810.47;10446;10864.52;5897;3479;1078;3;48;4;4;70;0;2155;842 -5803;'722;Small Island Developing States;1868;Sawlogs and veneer logs;5516;Production;m3;1428400;1359900;1382200;1438500;1514100;1645700;1584000;1664300;1691600;1828500;2131500;2174200;2212100;2270800;2346300;2604900;2422600;2570700;2728500;3151300;3019700;3730400;3524400;3479000;3582400;3782811;4125308;4242699;4172675;4242857;4083048;4198388;5024841;5819829;5505773;5692024;5593946;5308413;5181883;4301651;3816860;4106632;4590928;4918512;5383008;5742700;6078129;5983684;5627524;7782196;7896940;7637091;8074989;9102842;8910161;8755136;9629041;9873180;9894579;9285120;9485329;9339409;9246329 -5803;'722;Small Island Developing States;1868;Sawlogs and veneer logs;5616;Import quantity;m3;29200;28200;21700;900000;1065500;1393400;1354200;1492100;1703600;1888900;1821000;1444700;1357200;1218700;1023100;1472000;1339100;1541700;1490000;1190800;837500;546100;578000;371300;177500;167200;123100;151200;122800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5803;'722;Small Island Developing States;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;398;325;201;8899;10328;13750;18019;22035;25461;29346;32547;34494;52625;49911;43882;60474;67677;122099;131845;124002;101012;64967;81915;53137;31401;31480;24325;29900;29437;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5803;'722;Small Island Developing States;1868;Sawlogs and veneer logs;5916;Export quantity;m3;50000;38500;95500;138900;119700;185300;240500;312400;364400;462400;706600;666700;721200;895700;611500;713200;700000;742400;767500;973300;1135800;1479700;1443400;1642600;1587200;1726786;1804028;1716685;1228204;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5803;'722;Small Island Developing States;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;1238;723;1900;2135;2134;2726;3734;4382;5058;6741;10114;9149;14021;24735;16245;21196;27032;31184;47683;72155;73193;103365;84969;108091;88551;104101;145787;136779;96224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5803;'722;Small Island Developing States;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;201500;212600;204100;204700;211700;236800;243000;238500;230000;234800;236800;234400;219700;230100;234300;333800;330300;340300;428500;446300;441100;404200;382400;392700;384400;358300;397800;473100;454100;436900;428600;427600;451300;463600;470000;466900;464000;480830;430730;526430;523430;497353;502368;524720;530600;533766;579874;556506;497485;535719;496095;473138;542159;547965;614935;566848;559943;547474;562944;542244;602423;584043;571703 -5803;'722;Small Island Developing States;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;;;;;;;;;14000;10500;10500;1400;1400;1400;1800;2500;3000;3700;6000;66700;56000;40700;48300;29800;32800;43200;43200;55900;36800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5803;'722;Small Island Developing States;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;;;;;;;;;490;374;374;40;40;55;113;229;361;780;1528;11030;10598;6060;8133;5541;4538;6775;6775;8221;4490;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5803;'722;Small Island Developing States;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5803;'722;Small Island Developing States;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5803;'722;Small Island Developing States;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;1226900;1147300;1178100;1233800;1302400;1408900;1341000;1425800;1461600;1593700;1894700;1939800;1992400;2040700;2112000;2271100;2092300;2230400;2300000;2705000;2578600;3326200;3142000;3086300;3198000;3424511;3727508;3769599;3718575;3805957;3654448;3770788;4573541;5356229;5035773;5225124;5129946;4827583;4751153;3775221;3293430;3609279;4088560;4393792;4852408;5208934;5498255;5427178;5130039;7246477;7400845;7163953;7532830;8554877;8295226;8188288;9069098;9325706;9331635;8742876;8882906;8755366;8674626 -5803;'722;Small Island Developing States;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;29200;28200;21700;900000;1065500;1393400;1354200;1492100;1689600;1878400;1810500;1443300;1355800;1217300;1021300;1469500;1336100;1538000;1484000;1124100;781500;505400;529700;341500;144700;124000;79900;95300;86000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5803;'722;Small Island Developing States;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;398;325;201;8899;10328;13750;18019;22035;24971;28972;32173;34454;52585;49856;43769;60245;67316;121319;130317;112972;90414;58907;73782;47596;26863;24705;17550;21679;24947;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5803;'722;Small Island Developing States;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;50000;38500;91800;136400;116800;178000;239600;311900;361200;461600;706500;666600;721100;895600;611400;713100;699900;742300;767400;960200;1133500;1477400;1441800;1627100;1583100;1722686;1794228;1706885;1218404;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5803;'722;Small Island Developing States;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;1238;723;1843;2075;2072;2586;3718;4372;4985;6722;10110;9145;14017;24731;16241;21192;27028;31180;47679;70621;73009;103181;84878;107119;88340;103890;145094;136086;95670;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5803;'722;Small Island Developing States;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;300000;250000;483000;490000;368000;376000;402000;388000;428320;414191;387885;346885;541000;539000;539000;539000;439000;439000;439000;439000;439000;439000;439000;439000;439000;439000 -5803;'722;Small Island Developing States;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 -5803;'722;Small Island Developing States;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;233000;217000;209000;217000;182000;178000;182000;182000;182000;141000;141000;139000;139000;139000;39000;39000;39000;39000;39000;39000;39000;39000;39000;39000 -5803;'722;Small Island Developing States;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5803;'722;Small Island Developing States;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5803;'722;Small Island Developing States;1870;Pulpwood and particles (1961-1997);5516;Production;m3;242000;336000;242200;410000;338000;358200;331000;363000;418100;380100;373000;382000;284000;258000;267000;243000;271000;270000;270000;388000;318000;318000;318000;318000;318000;318000;318000;318000;318000;275000;275000;275000;522000;529900;584100;583500;583200;;;;;;;;;;;;;;;;;;;;;;;;;; -5803;'722;Small Island Developing States;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5803;'722;Small Island Developing States;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5803;'722;Small Island Developing States;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;347000;352000;406000;406000;406000;;;;;;;;;;;;;;;;;;;;;;;;;; -5803;'722;Small Island Developing States;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;;;;;;75000;167000;143000;171000;170000;170000;288000;218000;218000;218000;218000;218000;218000;218000;218000;218000;175000;175000;175000;175000;177900;178100;177500;177200;;;;;;;;;;;;;;;;;;;;;;;;;; -5803;'722;Small Island Developing States;1871;Other industrial roundwood;5516;Production;m3;204000;405000;408000;250000;502000;432300;476300;492300;500300;503300;486800;521300;514300;532300;496300;495300;503400;496700;503600;499900;502900;498500;512100;519400;570700;727300;690800;669700;668600;638600;629100;680900;680700;732700;750900;754750;752900;761550;629900;816900;764900;761000;761900;665900;712900;709700;718600;716600;724600;728400;725200;724800;726000;728267;724425;724897;724283;728660;728140;727780;727780;765630;763590 -5803;'722;Small Island Developing States;1871;Other industrial roundwood;5616;Import quantity;m3;8900;13700;10900;25500;30500;42300;43200;15800;17800;15000;22500;29100;27900;28000;32000;36700;41200;25700;19000;31500;36000;32100;27300;17700;15900;18100;14200;6900;11600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5803;'722;Small Island Developing States;1871;Other industrial roundwood;5622;Import value;1000 USD;457;673;501;655;766;1248;1870;941;686;998;1055;1830;1817;2028;2113;2704;3476;1771;2036;3873;3262;2545;4568;3226;3149;3181;2228;1795;2187;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5803;'722;Small Island Developing States;1871;Other industrial roundwood;5916;Export quantity;m3;21600;25000;27000;26900;32500;35000;33400;35500;29100;29300;22400;33300;27000;31700;34700;20500;28500;25600;23900;22100;22300;22600;22200;14500;14500;9600;8700;11900;9800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5803;'722;Small Island Developing States;1871;Other industrial roundwood;5922;Export value;1000 USD;732;934;742;659;856;1116;905;1006;974;980;741;944;859;1544;1859;1085;1517;1850;1821;1969;2139;2185;1973;1812;1761;1483;1124;1554;1448;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5803;'722;Small Island Developing States;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;;;;;30000;4000;4000;4000;4000;4000;4000;4000;4000;5000;5000;5000;5000;5000;500;400;700;1300;1100;300;1000;1400;1300;1100;1600;1700;2100;2000;2600;1200;1000;1300;1300;4200;4200;4200;9700;9300;9700;9500;9600;10800;10700;10700;9900;21700;21800;21500;21500;21290;21260;21240;21240;21240;21240;21240;21240;21240;40630 -5803;'722;Small Island Developing States;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;204000;405000;408000;250000;472000;428300;472300;488300;496300;499300;482800;517300;510300;527300;491300;490300;498400;491700;503100;499500;502200;497200;511000;519100;569700;725900;689500;668600;667000;636900;627000;678900;678100;731500;749900;753450;751600;757350;625700;812700;755200;751700;752200;656400;703300;698900;707900;705900;714700;706700;703400;703300;704500;706977;703165;703657;703043;707420;706900;706540;706540;744390;722960 -5803;'722;Small Island Developing States;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;8900;13700;10900;25500;30500;42300;43200;15800;17800;15000;22500;29100;27900;28000;32000;36700;41200;25700;19000;31500;36000;32100;27300;17700;15900;18100;14200;6900;11600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5803;'722;Small Island Developing States;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;457;673;501;655;766;1248;1870;941;686;998;1055;1830;1817;2028;2113;2704;3476;1771;2036;3873;3262;2545;4568;3226;3149;3181;2228;1795;2187;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5803;'722;Small Island Developing States;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;21600;25000;27000;26900;32500;35000;33400;35500;29100;29300;22400;33300;27000;31700;34700;20500;28500;25600;23900;22100;22300;22600;22200;14500;14500;9600;8700;11900;9800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5803;'722;Small Island Developing States;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;732;934;742;659;856;1116;905;1006;974;980;741;944;859;1544;1859;1085;1517;1850;1821;1969;2139;2185;1973;1812;1761;1483;1124;1554;1448;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5803;'722;Small Island Developing States;1630;Wood charcoal;5510;Production;t;104614;106098;105453;111027;106671;107657;108957;110637;112996;114553;112786;111896;111310;112788;117817;121750;125848;126587;127013;198455;208407;211909;215869;218677;215410;218955;221334;258377;262723;243927;256657;265013;268446;253862;269117;268715;254711;265298;284163;326292;352171;327433;311411;321052;268518;292215;288589;297097;322018;298879;299185;320315;339518;353806;373216;377190;381231;385355;387729;393873;414480;408484;467001 -5803;'722;Small Island Developing States;1630;Wood charcoal;5610;Import quantity;t;800;;;12700;17500;16000;11200;12900;10200;8600;8100;6800;8500;13000;7900;9300;19100;9700;15500;21600;19000;25100;21500;22200;31100;31100;31100;16100;16100;18400;14700;20046;13248;11139;12512;13383;27209;20919;26347;28614;23753;14804;42001;40520;37225;40260;19393;28115;47897;19243;18847;17238;19624;24412;25879;22284;10037;16202;22935;17577;16726.87;12985.97;13500.97 -5803;'722;Small Island Developing States;1630;Wood charcoal;5622;Import value;1000 USD;28;;;273;304;256;202;197;185;143;165;158;196;351;273;282;906;494;903;1612;1306;1215;1630;1528;1783;1783;1783;1072;1072;1233;1065;2852;1883;1787;1469;1634;3089;2209;2450;3142;2287;1257;5939;5941;5775;7153;6623;6775;13148;4189;5403;5722;5678.3;8317.1;9021.1;8320.1;5473.1;6466.1;9700;9314;8648.23;6121.25;7326.25 -5803;'722;Small Island Developing States;1630;Wood charcoal;5910;Export quantity;t;4800;5100;3300;8600;6300;2800;1500;1400;2900;2100;6400;5200;5100;9700;7400;8900;14500;8900;10100;10900;19100;4500;21100;22100;26900;26800;26800;45800;45800;45200;49400;37293;28541;25961;37100;34000;30109;29810;28064;27631;25031;29632;34757;30426;26202;23764;2413;10502;42219;44905;58984;73866;89030;106403.1;126380.1;119780;105585;109145;114059;108034;93232.61;95879.65;124320.65 -5803;'722;Small Island Developing States;1630;Wood charcoal;5922;Export value;1000 USD;138;152;133;230;227;95;43;49;79;82;209;143;153;587;400;449;1102;575;837;757;2891;454;4091;4564;5275;5239;5239;7277;7277;7976;9778;10037;6825;6213;9772;9131;8459;7309;6786;6005;5319;6257;7064;6411;6074;6096;533;3220;10231;10389;20632;28185;38750;45501;53504;50091;43913;46919;49176;44900;39154;44333.19;58309.19 -5803;'722;Small Island Developing States;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;272000;269000;264000;278000;163700;164000;225000;215000;216000;215500;215500;214750;214700;213380;212800;279700;272468;271352;268005;307566;487702;459942;459923;459923;419523;419523 -5803;'722;Small Island Developing States;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10614;9862;30275;24729;22052;14313;29642;28954;18936;16883;13724;11919;17992.7;13565.06;16746;14880.67;15770.92;17594.92;15250.82;34249.82;17689.82;20490.82;14626.82;19532.76;22869.86;17831.82 -5803;'722;Small Island Developing States;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1365;706;2564;1776;1987;2704;2703;2244;2142;3041;3726;3567;4697.4;4142.65;4292;4461.1;5299.76;5567.76;4414.66;4460.66;5525.66;4032.66;4116.66;3500.66;3510.75;4459.66 -5803;'722;Small Island Developing States;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;402430;292130;344720;291320;310696;272574;333451;333213;437860;296264;170982;185481;297804;235982;228456;190040.48;752781.08;594731;483799;373240;614304;289183;388347;601968.9;326257.94;72355.94 -5803;'722;Small Island Developing States;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26085;15371;18255;16852;17823;15692;18187;17934;21673;23420;12357;9551;23749;19129;18175;11248.5;35314.5;30118;23482.45;27402;62821;37543;27129;38269.11;24537.16;22132.16 -5803;'722;Small Island Developing States;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;272000;269000;262000;276000;162000;162000;223000;213000;213000;213000;213000;211900;212000;211500;211300;238100;231268;230152;226805;266366;446502;418742;418723;418723;418723;418723 -5803;'722;Small Island Developing States;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6766;1295;9825;2503;3512;5228;7558;5248;12420;2997;2393;5150;18451;17814;8739;5829;3997;3951;8515.7;4995.06;10051;7758.4;7771;7756;7720;21720;10651;18474;12174;16565.94;20847;14629 -5803;'722;Small Island Developing States;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;305;92;866;217;289;674;1159;424;927;422;509;1496;1433;1015;728;835;1505;1549;1997.4;1554.65;2074;2409;2763;2540;2268;2568;2953;3639;2986;2922;3063;3807 -5803;'722;Small Island Developing States;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;9600;68200;143000;170600;170000;170000;130800;95100;148400;154400;158300;126500;100000;152700;400600;411100;379400;361700;418794;467938;409084;483800;433800;312200;401400;290100;343490;290490;310366;271200;328344;328236;433274;288915;134457;146208;293470;223918;223024;178578.48;745276.08;563380;445413;370561;611157;286474;385941;599642.9;324029.94;69657.94 -5803;'722;Small Island Developing States;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;264;1982;4243;5402;7240;7240;10579;8120;7695;7101;6862;5362;4200;10022;27827;28821;30523;29404;21537;27130;20771;25448;24294;25544;25980;15222;18090;16744;17773;15470;17919;17720;21459;22935;11226;8320;23259;18288;17187;10129.5;33667.5;27705;20324.45;26915;62127;37049;26628;37777.11;24118.16;21613.16 -5803;'722;Small Island Developing States;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;2000;1700;2000;2000;2000;3000;2500;2500;2850;2700;1880;1500;41600;41200;41200;41200;41200;41200;41200;41200;41200;800;800 -5803;'722;Small Island Developing States;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7992;6091;4423;2976;3935;3546;3056;4614;17855;21732;19659;9163;11191;11140;10197;11054;9727;7968;9477;8570;6695;7122.27;7999.92;9838.92;7530.82;12529.82;7038.82;2016.82;2452.82;2966.82;2022.86;3202.82 -5803;'722;Small Island Developing States;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;379;225;184;199;237;194;206;282;1637;1354;1478;1208;1270;1229;1414;2206;2221;2018;2700;2588;2218;2052.1;2536.76;3027.76;2146.66;1892.66;2572.66;393.66;1130.66;578.66;447.75;652.66 -5803;'722;Small Island Developing States;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4210;3495;5549;13906;2856;2030;1030;2030;1230;830;330;1374;5107;4977;4586;7349;36525;39273;4334;12064;5432;11462;7505;31351;38386;2679;3147;2709;2406;2326;2228;2698 -5803;'722;Small Island Developing States;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;147;141;170;181;120;186;105;149;165;108;50;222;268;214;214;485;1131;1231;490;841;988;1119;1647;2413;3158;487;694;494;501;492;419;519 -5803;'722;Small Island Developing States;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;440000;304000;310000;310000;310000 -5803;'722;Small Island Developing States;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -5803;'722;Small Island Developing States;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2955;4298;5500;7218;5276;8432;6571;7900;5626;7822.02;8003.34;9793.33 -5803;'722;Small Island Developing States;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1301;1865;1981;2224;2028;2619;2320;2884;2474;3373.08;3785.3;3710.3 -5803;'722;Small Island Developing States;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;270;330;267;127;85;85;85;634;963;1796;2101;1644 -5803;'722;Small Island Developing States;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;291;278;755;284;507;507;507;600;284;593;451;378 -5803;'722;Small Island Developing States;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -5803;'722;Small Island Developing States;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;562;1303;2494;4212;2270;4025;2967;1939;1383;2564.02;2907;5562 -5803;'722;Small Island Developing States;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;271;542;657;900;704;1143;936;703;568;857;914;1344 -5803;'722;Small Island Developing States;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;270;330;267;127;85;85;85;566;619;1474;1552;1163 -5803;'722;Small Island Developing States;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;291;278;755;284;507;507;507;586;241;557;347;288 -5803;'722;Small Island Developing States;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -5803;'722;Small Island Developing States;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2393;2995;3006;3006;3006;4407;3604;5961;4243;5258;5096.34;4231.34 -5803;'722;Small Island Developing States;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1030;1323;1324;1324;1324;1476;1384;2181;1906;2516.08;2871.3;2366.3 -5803;'722;Small Island Developing States;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68;344;322;549;481 -5803;'722;Small Island Developing States;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;43;36;104;90 -5803;'722;Small Island Developing States;1872;Sawnwood;5516;Production;m3;451600;444500;545600;908300;962500;1124400;1123300;1209400;1257500;1392300;1324800;1458600;1453700;1491900;1060200;1089000;963200;1000450;1036750;1066550;869650;820800;814450;792750;795990;745123;721223;756423;759538;689739;687769;712879;630719;819559;852989;826989;828989;819209;572109;620309;648309;627509;661209;689709;788609;811109;761909;709509;768859;726599;777771;800295;792709;808657;833393;786669;820707;988669;1088009;972448;1048299;1045299;1043799 -5803;'722;Small Island Developing States;1872;Sawnwood;5616;Import quantity;m3;410300;490363;397200;699900;714100;791800;759750;1008800;1099250;1203150;1160850;1391450;1866450;1879800;1860950;2195300;2286300;2589400;2042400;2421800;2396200;2416600;2528900;2542000;2015300;2031090;2092009;2033193;2630276;2374685;2179199;1793404;2085100;1688280;1704763;1613807;1612815;1333219;1312148;1242855;1152965;1091904;902645;1026533;1055144;1377048;1441899;1236903;1093146;1319803;1299755;1376552;1373988;1392359;1290203;1412735;1049452;1200800;1473399;1271328;1801374;1420232;1606983 -5803;'722;Small Island Developing States;1872;Sawnwood;5622;Import value;1000 USD;22729;27822;21729;37287;37893;43456;40802;51731;58582;68151;65526;78812;134922;145362;141417;185447;215607;291766;280727;354617;360188;383565;354376;342094;296501;329208;337188;306179;362207;380076;400060;388610;404631;428680;454268;408476;487800;379715;354136;313737;300291;293818;309636;320651;355620;399871;443185;472093;362655;464398;449846;413841;442138;443120;435653;449495;386960;428459;461825;395257;583500;558604;477806 -5803;'722;Small Island Developing States;1872;Sawnwood;5916;Export quantity;m3;64250;75700;72500;403050;469800;572700;563400;664100;814900;827600;778100;902100;1253700;951400;786200;1256400;1309300;1329000;1575400;1311500;1037400;975200;967500;849100;730100;793706;1051050;1100859;1183746;1056595;823095;952901;790951;483036;407009;349878;329652;280836;225776;314345;261383;301726;205889;239569;220217;200561;201130;242314;159572;173307;182989;186067;155399;142172;161382;139717;122108;178319;239336;171045;399391;284273;154879 -5803;'722;Small Island Developing States;1872;Sawnwood;5922;Export value;1000 USD;4715;4185;4920;18932;21020;23406;22804;27883;35877;39080;35540;51020;128366;98824;73606;133697;142523;174071;306458;286367;202431;180391;207173;173402;146925;166912;236993;271932;306566;258968;201816;279723;239577;212778;160711;151437;177711;127717;98630;117334;104393;116702;112930;119369;131110;137194;142288;164480;106421;128185.5;127907.9;117192.5;101920;100558;91817;79934;63504;88881;89684;122809;127383;131878;95264 -5803;'722;Small Island Developing States;1632;Sawnwood, coniferous;5516;Production;m3;79900;79900;103400;91600;103500;88950;77800;82900;97700;87500;90800;93800;81800;85300;86600;90300;86800;88100;75550;115850;100850;110650;116100;117700;120300;115600;139600;167300;171698;166159;221759;165859;194359;190659;185159;176159;194159;202959;145409;163409;165409;171409;182709;197709;216709;282909;278309;236409;261509;219709;229209;214409;225909;228909;258299;223279;224379;227779;227109;217733;217294;217294;217794 -5803;'722;Small Island Developing States;1632;Sawnwood, coniferous;5616;Import quantity;m3;367000;441663;360150;474950;514150;571100;516550;695050;743850;776450;778950;922450;880550;1076750;1069300;898650;885350;1138500;670750;1095650;1147500;1088250;1202350;1454700;1130645;1086656;884700;880794;1029346;1006917;1013117;731850;1058873;948062;845829;757790;948502;797552;839266;763464;757675;717948;635472;710065;715543;752771;688235;720877;685031;908804;930432;891852;877523;928474;983379;1100178;717486;797318;982197;970811;1463008;1051633;1350832 -5803;'722;Small Island Developing States;1632;Sawnwood, coniferous;5622;Import value;1000 USD;19795;24543;19204;26420;28082;32953;29352;37657;42335;47631;47703;57285;78796;86702;85924;81412;94447;149267;84423;154196;175149;200442;181502;191511;174546;200583;160392;139747;170438;171289;164594;132148;153347;168550;177868;162331;223060;204487;201366;193769;176493;173384;157910;164531;180241;200048;205740;220916;173183;239626;234575;221366;255322;258718;285527;289752;218864;244100;285458;284201;454089;380412;340119 -5803;'722;Small Island Developing States;1632;Sawnwood, coniferous;5916;Export quantity;m3;11200;16100;18250;19250;16900;36050;47900;34650;30600;37600;42550;30550;29200;47100;43250;37100;37900;34350;29300;48300;37500;34900;29400;27900;15550;17000;18100;23350;44950;24650;96800;15628;23864;12336;24819;23119;28146;22504;20307;22041;14326;21769;18001;24179;14205;12443;11396;11573;11182;11087;11442;5610;3889;7412;10726;13147;4985;16452;8787;6267;8391;22540;7987 -5803;'722;Small Island Developing States;1632;Sawnwood, coniferous;5922;Export value;1000 USD;1641;1054;1637;2495;1887;2669;2358;1676;1681;2108;2171;2142;2589;5021;5381;4219;4675;4717;5159;10074;7129;6132;5831;5613;3344;4127;4347;5018;10658;5338;22879;3501;6117;3311;6670;5487;9190;9561;6654;7459;5177;6261;6532;7762;3591;3223;3331;4641;3435;3246.5;2831.9;1692.5;1785;3108;3831;3306;1562;6305;2376;2113;3049;6695;5296 -5803;'722;Small Island Developing States;1633;Sawnwood, non-coniferous;5516;Production;m3;371700;364600;442200;816700;859000;1035450;1045500;1126500;1159800;1304800;1234000;1364800;1371900;1406600;973600;998700;876400;912350;961200;950700;768800;710150;698350;675050;675690;629523;581623;589123;587840;523580;466010;547020;436360;628900;667830;650830;634830;616250;426700;456900;482900;456100;478500;492000;571900;528200;483600;473100;507350;506890;548562;585886;566800;579748;575094;563390;596328;760890;860900;754715;831005;828005;826005 -5803;'722;Small Island Developing States;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;43300;48700;37050;224950;199950;220700;243200;313750;355400;426700;381900;469000;985900;803050;791650;1296650;1400950;1450900;1371650;1326150;1248700;1328350;1326550;1087300;884655;944434;1207309;1152399;1600930;1367768;1166082;1061554;1026227;740218;858934;856017;664313;535667;472882;479391;395290;373956;267173;316468;339601;624277;753664;516026;408115;410999;369323;484700;496465;463885;306824;312557;331966;403482;491202;300517;338366;368599;256151 -5803;'722;Small Island Developing States;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;2934;3279;2525;10867;9811;10503;11450;14074;16247;20520;17823;21527;56126;58660;55493;104035;121160;142499;196304;200421;185039;183123;172874;150583;121955;128625;176796;166432;191769;208787;235466;256462;251284;260130;276400;246145;264740;175228;152770;119968;123798;120434;151726;156120;175379;199823;237445;251177;189472;224772;215271;192475;186816;184402;150126;159743;168096;184359;176367;111056;129411;178192;137687 -5803;'722;Small Island Developing States;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;53050;59600;54250;383800;452900;536650;515500;629450;784300;790000;735550;871550;1224500;904300;742950;1219300;1271400;1294650;1546100;1263200;999900;940300;938100;821200;714550;776706;1032950;1077509;1138796;1031945;726295;937273;767087;470700;382190;326759;301506;258332;205469;292304;247057;279957;187888;215390;206012;188118;189734;230741;148390;162220;171547;180457;151510;134760;150656;126570;117123;161867;230549;164778;391000;261733;146892 -5803;'722;Small Island Developing States;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;3074;3131;3283;16437;19133;20737;20446;26207;34196;36972;33369;48878;125777;93803;68225;129478;137848;169354;301299;276293;195302;174259;201342;167789;143581;162785;232646;266914;295908;253630;178937;276222;233460;209467;154041;145950;168521;118156;91976;109875;99216;110441;106398;111607;127519;133971;138957;159839;102986;124939;125076;115500;100135;97450;87986;76628;61942;82576;87308;120696;124334;125183;89968 -5803;'722;Small Island Developing States;1634;Veneer sheets;5516;Production;m3;700;800;800;5800;25700;30900;41200;62600;47900;53300;77400;113100;97700;97600;102000;101500;105000;107000;108000;107000;111000;110000;113000;114000;115000;115400;115300;120600;110600;118600;107100;108100;79935;81004;76090;72183;76375;76000;74000;88000;136000;140000;153000;155000;164849;168000;170000;162000;162000;162000;185800;145800;164743;177374;117800;111031;110900;120900;127900;141100;161100;161100;161100 -5803;'722;Small Island Developing States;1634;Veneer sheets;5616;Import quantity;m3;400;250;525;575;1400;4100;2600;700;3200;6100;12200;12900;36400;62000;66900;63600;76900;86000;74400;67600;98100;97400;80800;51200;28200;27000;23800;36200;23600;52200;20800;39510;24608;31772;29981;32549;27071;18703;14229;16508;19902;17418;9661;12788;12056;8192;7226;9659;7492;7163;7717;10044;10333.4;10452;8787;6724;6778;7771;9090;12951;13412;3389;5264 -5803;'722;Small Island Developing States;1634;Veneer sheets;5622;Import value;1000 USD;20;14;14;46;160;507;319;110;289;549;1091;1100;3010;5560;4497;4474;6360;8919;13959;14462;18252;16914;17362;13240;11966;11461;10161;15029;13370;19579;13051;21047;9404;18244;16503;17436;18960;13749;11523;11385;27101;11635;12631;16091;14448;13820;12096;14492;11372;15367;16321;17758;15335;13549;15853;11218;10350;11705;14781;42590;24774;11694;11991 -5803;'722;Small Island Developing States;1634;Veneer sheets;5916;Export quantity;m3;700;800;800;3800;23900;33300;39300;62000;48000;33800;77500;112600;37700;47300;35500;40500;40100;35900;21800;28500;23300;23900;27200;29000;38000;40500;27900;20600;20300;26700;31100;21201;17849;18409;15862;16962;35993;23863;14418;15895;13095;45924;73683;72425;66377;47263;25361;20909;7574.3;4910;7034;11071;10385;9465;12557;11175;9423;16893;26196;39073;44991;42836;44354 -5803;'722;Small Island Developing States;1634;Veneer sheets;5922;Export value;1000 USD;85;70;81;238;1451;2726;2750;3911;3327;2743;5382;8454;7584;9879;6815;7409;9021;8572;10387;13370;11667;11179;12916;14194;16137;17959;16782;15852;15419;16382;18594;18832;13340;19658;17146;14774;21208;14543;10973;10607;9214;15216;23979;24527;32266;26576;19892;16890;9250;6046;7005;9881;9279;10325;10453;7652;6815;9363;8962;13193;14935;15229;13021 -5803;'722;Small Island Developing States;1873;Wood-based panels;5516;Production;m3;42900;50900;50100;80000;105500;113200;144600;179100;261100;280100;308400;392700;418100;414600;393800;622000;564000;726100;829800;624700;574100;592800;617700;580200;595200;563100;559900;550300;532900;517000;483300;465200;488390;518462;554826;557754;529177;547100;547100;553100;529100;506100;536100;514000;497622;494000;499000;485000;484000;483200;510500;500540;499000;502798;224817;257617;255333;253600;243600;243600;243600;243600;243600 -5803;'722;Small Island Developing States;1873;Wood-based panels;5616;Import quantity;m3;47051;37180;40921;60034;70100;89357;97221;131546;158378;157331;201269;239402;270256;255903;275477;323250;358175;429027;439100;476100;566900;576100;776000;929100;900183;864983;1085338;1032061;1124221;1088345;1050596;807563;829641;896264;876418;903275;939061;761051;833493;756605;749691;696554;529161;528137;518221;726470;792039;827054;579119;816453;871631.31;965386.76;955088.4;910830.4;821610.27;787926;825014.27;905330.27;872022;778754;979221.61;872009.98;897573 -5803;'722;Small Island Developing States;1873;Wood-based panels;5622;Import value;1000 USD;4819;3992;4232;7026;8450;9235;10747;14587;18070;19917;24624;27688;40866;38929;38947;56383;65477;90888;131710;131793;157179;154338;193968;150865;122515;156797;200128;235661;227012;250867;316745;295524;244422;315473;262981;275825;298510;231166;257692;237824;218499;184963;159661;156843;157157;269721;298283;376833;272550;346114;381926;415561;421848.03;412375.68;412780;350256;363585;414651;380910;312360;454295.67;470665.51;431517 -5803;'722;Small Island Developing States;1873;Wood-based panels;5916;Export quantity;m3;38700;41800;43900;56100;53600;71617;80685;107074;154774;170785;215885;314880;484158;333311;419727;500664;471500;587300;602300;656000;638600;649900;731800;628800;669100;627600;770800;791400;818400;861500;768500;514644;182986;464601;468717;425101;310432;255639;243990;265092;220090;198005;97535;102988;83554;76290;162714;127096;100519;95513;114596;95777;78258;106890;62605;55494;51401;56331;58311;27912;48097.65;30785.31;38109.32 -5803;'722;Small Island Developing States;1873;Wood-based panels;5922;Export value;1000 USD;4578;4807;4889;6747;6938;8291;9870;13407;18249;20892;24948;36547;81594;72917;76364;103554;101488;137036;191505;218657;211445;194756;213650;172297;175251;164298;226771;266260;243371;196143;190342;223323;90883;164767;158546;135787;108945;87812;93300;96902;73577;71773;29115;35971;29695;30149;68912;56451;45917;43545;53310.3;47848;36421;47966;38620;32922;30758;35223;22925;14479;24219;22439.43;26177.43 -5803;'722;Small Island Developing States;1640;Plywood and LVL;5516;Production;m3;24800;31700;29300;41500;69900;72500;107600;146800;229500;251200;289000;365200;389300;386700;368700;594500;548500;711600;816300;611700;560600;495000;514900;439900;467200;423900;421900;424000;374800;354500;306100;308100;331290;361362;397726;400654;372077;390000;390000;396000;372000;349000;379000;357000;340622;337000;342000;328000;327000;326200;353500;343540;342000;345798;67817;100617;98333;96600;96600;96600;96600;96600;96600 -5803;'722;Small Island Developing States;1640;Plywood and LVL;5616;Import quantity;m3;36451;25980;28721;40434;44700;45800;62500;88200;115800;121100;156100;196300;222400;183300;242800;288600;314300;333400;333500;367000;462900;463900;604700;783300;768366;753234;924104;851589;911477;924551;898666;673448;726668;755755;754371;767416;797126;641944;643870;603083;583889;504411;350586;234683;232319;547712;617178;652872;454966;676557;726569;823415;807150;800473;697749;673855;707088;778850;669400;577804;774903;678395;653327 -5803;'722;Small Island Developing States;1640;Plywood and LVL;5622;Import value;1000 USD;4134;3270;3383;5330;6373;6779;8608;11903;15346;16706;20614;23876;36170;32465;33536;49933;55919;72771;110556;110646;134593;129031;155372;119870;92923;135003;165787;193250;188974;211048;270934;259460;215395;270726;221010;236670;254475;193124;216151;194128;177138;142853;109646;90834;89831;217255;238041;300545;217024;281692;312713;344203;352273;345162;335812;287878;294467;343962;307747;248256;367645;361758;318852 -5803;'722;Small Island Developing States;1640;Plywood and LVL;5916;Export quantity;m3;23400;25400;23900;31100;32700;47800;62000;93600;134700;155700;202700;301500;464300;315200;402400;483600;457500;571400;586900;636200;609700;630800;708300;604600;635900;580600;696100;717200;719300;757000;663800;460147;160479;409927;419968;382252;259824;225050;217430;234928;179826;157281;65289;64150;47398;37188;124657;91549;73932;73482;80724;74974;58204;86325;52856;45624;41870;51140;54063;23515;43801;25605;31207 -5803;'722;Small Island Developing States;1640;Plywood and LVL;5922;Export value;1000 USD;3763;3954;3788;5263;5583;6928;8787;12595;17027;19900;23982;35539;79774;70569;74536;101720;99809;135193;189306;215743;208062;191357;209243;169284;170327;156881;214558;250765;229518;178845;172242;210707;85845;149022;146981;122473;88252;74993;80907;85434;63314;60253;18938;23821;18299;17313;54762;45911;38233;36746;44877.3;41021;30144;33478;30786;27040;26699;31627;20104;12218;21783;20078;22906 -5803;'722;Small Island Developing States;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;473;7963 -5803;'722;Small Island Developing States;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;639;2123 -5803;'722;Small Island Developing States;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118;110 -5803;'722;Small Island Developing States;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;144;55 -5803;'722;Small Island Developing States;1646;Particle board and OSB (1961-1994);5516;Production;m3;18100;19200;20800;38500;35600;40700;37000;32300;31600;28900;19400;27500;28800;27900;25100;27500;15500;14500;13500;13000;13500;53800;54800;92300;80000;91200;90000;64300;73100;77500;92200;72100;72100;72100;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5803;'722;Small Island Developing States;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;7500;7900;8700;10300;14800;24000;20800;21900;19940;13200;13800;16000;13700;9600;9100;10500;23000;49900;53000;57900;58200;46500;57300;79400;69340;70461;91896;111500;162546;104983;84899;51445;38002;65412;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5803;'722;Small Island Developing States;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;336;378;439;536;775;886;984;1168;1001;1179;1295;1407;1431;1585;1778;2872;6141;10431;12417;12986;14392;10374;13469;14046;14196;13756;18421;23628;23553;21066;17639;15461;11085;17370;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5803;'722;Small Island Developing States;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;15300;16400;20000;22400;18300;19500;15800;10400;17000;11400;9100;9800;13100;12700;11600;10200;7100;5300;5000;9800;10200;11200;16800;17800;27900;42000;68100;64100;95700;100200;98700;41973;14019;26943;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5803;'722;Small Island Developing States;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;815;853;1101;1169;982;989;852;569;1021;716;664;763;1285;1805;1364;1215;1014;814;895;1596;1996;2137;3104;1934;4078;6493;10847;12615;11129;11093;11741;7815;2593;5849;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5803;'722;Small Island Developing States;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72100;72100;72100;72100;72100;72100;72100;72100;72100;72000;72000;72000;72000;72000;72000;72000;72000;72000;72000;72000;72000;72000;72000;72000;62000;62000;62000;62000;62000 -5803;'722;Small Island Developing States;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83992;81683;67109;55094;56691;76282;56858;42067;41128;80287;81990;41549;26515;50935;31706;40362;49246;47406.16;41211;28344.13;24754;24721;32677;29077;58348;60771;85967.94;65346;81634 -5803;'722;Small Island Developing States;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18480;18179;15064;16494;15044;16395;13063;12967;15325;18576;19738;15550;10979;24250;17312;19251;20992;21158;16813;15530.68;14222;12716;18505;18308;22927;20448;31681.57;38886;35264 -5803;'722;Small Island Developing States;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30049;29749;24708;11772;10560;10764;9364;10286;4267;6927;4866;4783;3316;9643;3055;2946;5886;5409;3002;1224;691;695;3832;773;1108;1478;1340.64;2531;1115 -5803;'722;Small Island Developing States;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4708;5057;5180;3270;2902;2514;1951;2544;1302;2184;1377;1774;2836;3801;1483;1244;1898;1909;1269;988;528;524;1435;1434;1204;975;1098;732;821 -5803;'722;Small Island Developing States;1606;Oriented strand board (OSB);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -5803;'722;Small Island Developing States;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8851;926;926;263;1852;2827;2908;2086;2089;899;643;2213;2373;3546;1826;2689;3416;3750;5428;3356;6294;5385;3748;4294;3136 -5803;'722;Small Island Developing States;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89;260;260;109;865;464;502;1085;1827;828;474;1812;1719;2272;1294;1772;1687;2066;2690;2218;2080;2027;2096;3365;1448 -5803;'722;Small Island Developing States;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;61;11;290;77;307;0;265;75;303;64;44.59;457.59 -5803;'722;Small Island Developing States;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;1;1;28;2;191;52;108;0;118;26;75;24;26.72;87.72 -5803;'722;Small Island Developing States;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 -5803;'722;Small Island Developing States;1874;Fibreboard;5616;Import quantity;m3;3100;3300;3500;9300;10600;19557;13921;21446;22638;23031;31369;27102;34156;63003;23577;24150;20875;45727;52600;51200;45800;65700;114000;66400;62477;41288;69338;68972;50198;58811;67031;82670;64971;75097;38055;54176;74826;64013;124081;76314;108018;149813;135595;210340;201004;135123;146257;122348;91804;97321;93443.31;91019.6;104901.4;79324.27;95691.27;85600;79821.27;94047.27;137980;134794;114602.67;123974.98;159476 -5803;'722;Small Island Developing States;1874;Fibreboard;5622;Import value;1000 USD;349;344;410;1160;1302;1570;1155;1516;1723;2032;2715;2405;3265;4879;3633;3578;3417;7686;8737;8161;8194;14933;25127;16949;15396;8038;15920;18783;14485;18753;28172;20603;17942;27377;23491;20976;28971;21548;26408;27041;28038;29034;33825;46969;47086;35831;47436;51210;37740;43359;46502;47928;51468.03;49911;61059;47596;47923;50163;48156;41629;52873.09;66656.51;75953 -5803;'722;Small Island Developing States;1874;Fibreboard;5916;Export quantity;m3;;;;2600;2600;4317;2885;3074;3074;3685;4085;3580;6758;5411;5727;6864;6900;10600;10400;10000;18700;7900;6700;6400;5300;5000;6600;10100;3400;4300;6000;12524;8488;27731;18700;13100;25900;18817;16000;19400;30900;30438;27979;31911;31290;34319;34740;25903;23531;19084;27985;15333;17041;19051;8981;8868;5699;4153;3065;2616;2892;2604.72;5329.72 -5803;'722;Small Island Developing States;1874;Fibreboard;5922;Export value;1000 USD;;;;315;373;374;231;243;201;276;302;245;535;543;464;619;665;1029;1304;1318;1387;1262;1303;1079;846;924;1366;2880;2724;6205;6359;4801;2445;9896;6857;8257;15513;9549;9491;8954;8312;8976;8875;9966;10019;11062;11313;6738;6200;5554;6534;4890;5006;13309;7254;5250;2624;2044;1591;1211;1314;1602.71;2362.71 -5803;'722;Small Island Developing States;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 -5803;'722;Small Island Developing States;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16761;15060;18397;23369;58427;30550;35141;54567;39062;31144;34392;33005;25107;24899;15583;20467;16057;13838;25504;15875;14786;12848;13385;19478;18158;19794;19866;14420;14511 -5803;'722;Small Island Developing States;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9856;7448;9935;10124;11829;13132;16910;16399;17589;14893;15876;13879;9841;9650;7789;9160;9741;9318;11005;9837;8853;6421;7244;9898;9131;8462;9711.23;9765;8070 -5803;'722;Small Island Developing States;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11000;4700;13400;11000;7000;6200;18200;8609;8609;9261;9261;9242;4640;918;875;798;1140;1051;1062;1905;2137;1485;1097;587;383;433;210;246.69;503.69 -5803;'722;Small Island Developing States;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1921;1426;5606;3688;2911;2667;3701;4511;4521;4768;4768;4776;3006;440;425;369;558;935;983;2527;1899;608;757;434;552;152;138;191.69;305.69 -5803;'722;Small Island Developing States;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 -5803;'722;Small Island Developing States;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6315;6840;8710;5564;23688;17002;28199;36254;37146;115431;101823;51467;61795;57509;47622;48972;53360;49802;52415;42421;66235;62651;58632;66424;103455;97267;87247.65;98020;127958 -5803;'722;Small Island Developing States;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6775;5680;8157;4163;5207;4824;4813;5475;7769;22650;21205;13350;23924;25231;19161;22473;26202;28054;30109;31179;45149;36168;36507;36295;34919;30564;40872.87;52341;62350 -5803;'722;Small Island Developing States;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3800;4200;5500;3602;4000;5000;4000;12820;10349;11773;11152;14135;19135;15779;13397;17842;16661;13691;14439;15780;6085;6328;3264;2176;1991;1710;1827;1884;4110 -5803;'722;Small Island Developing States;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4251;4518;5978;3590;3809;4795;3381;3237;3118;3675;3728;4750;6573;4788;4243;4876;4526;3686;3449;10294;5082;4289;1452;1152;869;946;969;1279;1845 -5803;'722;Small Island Developing States;1650;Other fibreboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -5803;'722;Small Island Developing States;1650;Other fibreboard;5616;Import quantity;m3;;;;1800;1800;8400;4000;8800;6400;8400;11600;14000;18000;27800;11200;12100;8900;11500;11900;15000;11100;9100;9200;6700;5600;10800;9100;10600;3200;7200;20600;13732;6904;17503;14979;32276;47719;35080;41966;28762;44678;58992;59387;63765;64789;50651;59355;39940;28599;27882;24026.31;27379.6;26982.4;21028.27;14670.27;10101;7804.27;8145.27;16367;17733;7489.02;11534.98;17007 -5803;'722;Small Island Developing States;1650;Other fibreboard;5622;Import value;1000 USD;;;;362;405;418;178;389;374;343;564;697;1179;824;932;994;724;947;1177;1332;1833;1842;1604;1050;979;1104;968;2657;1644;5152;15679;4978;2230;5213;6860;7848;10879;7261;9372;9085;6315;7160;8467;9426;10005;8602;13671;16329;10790;11726;10559;10556;10354.03;8895;7057;5007;4172;3970;4106;2603;2289;4550.51;5533 -5803;'722;Small Island Developing States;1650;Other fibreboard;5916;Export quantity;m3;;;;600;700;2000;1200;1600;1600;2000;2400;2000;5600;3200;5200;5600;4800;6800;7200;7100;17700;6000;5100;3800;2600;3600;4200;6000;2000;2800;4300;5295;2611;7625;3900;4200;7000;4215;5000;8200;8700;9009;9021;10877;10877;10942;10965;9206;9259;444;10184;591;1540;1366;759;1055;1338;1390;691;473;855;474.03;716.03 -5803;'722;Small Island Developing States;1650;Other fibreboard;5922;Export value;1000 USD;;;;143;167;144;86;91;72;110;155;119;388;214;384;443;425;629;738;788;1065;910;922;620;396;490;585;1656;760;1470;2037;2117;679;2949;685;2313;3929;2271;2771;1492;1230;1228;1236;1523;1523;1536;1734;1510;1532;309;1450;269;574;488;273;353;415;458;170;113;207;132.02;212.02 -5803;'722;Small Island Developing States;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;44000;48000;48000;48000;48000;48000;62000;85000;85000;85000;85000;85000;85000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5803;'722;Small Island Developing States;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;3100;3300;3500;7500;8800;11157;9921;12646;16238;14631;19769;13102;16156;35203;12377;12050;11975;34227;40700;36200;34700;56600;104800;59700;56877;30488;60238;58372;46998;51611;46431;68938;58067;57594;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5803;'722;Small Island Developing States;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;349;344;410;798;897;1152;977;1127;1349;1689;2151;1708;2086;4055;2701;2584;2693;6739;7560;6829;6361;13091;23523;15899;14417;6934;14952;16126;12841;13601;12493;15625;15712;22164;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5803;'722;Small Island Developing States;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;;;2000;1900;2317;1685;1474;1474;1685;1685;1580;1158;2211;527;1264;2100;3800;3200;2900;1000;1900;1600;2600;2700;1400;2400;4100;1400;1500;1700;7229;5877;20106;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5803;'722;Small Island Developing States;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;;;172;206;230;145;152;129;166;147;126;147;329;80;176;240;400;566;530;322;352;381;459;450;434;781;1224;1964;4735;4322;2684;1766;6947;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5803;'722;Small Island Developing States;1879;Total fibre furnish;5510;Production;t;23000;24900;27500;30700;27500;31800;35000;30000;32500;50700;68000;65000;86000;91000;84000;96000;88500;67400;116500;186900;220600;222400;331000;328000;301000;311000;321000;352000;362000;359000;369000;439000;438100;393100;423100;423100;427000;377000;379000;345000;343000;348000;344500;338800;348800;353500;358300;801080;814100;809100;823700;1398700;1416878;1418087;1371027;1364579;1349145;1258193;1215193;1348193;1340193;1340193;1340193 -5803;'722;Small Island Developing States;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;44500;44600;45200;53800;41600;44200;52000;51500;52801;49747;48997;56148;87700;59000;69900;62100;75600;76000;101500;106300;129500;113566;125553;142920;140841;48005;142132;137316;113662;128761;542576;166939;193220;183194;112149;86000;95754;88468;74591;95254;115372;120992.06;178704.38;271200;667027;716488.18;705206.12;693799;883431;503905.12;1068260.12;852861;489410;305944.08;325950.03;343515 -5803;'722;Small Island Developing States;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;6229;6273;7176;9238;8569;6521;9877;10839;12824;12844;15585;19958;36127;23642;24626;22486;25944;24353;30660;37542;39506;36263;36639;40332;31742;12945;31191;48689;39197;39385;170003;51486;58566;45154;36553;21785;22536;22822;33705;32648;41281;47108;77658;135484;300142.16;319665.84;341522.64;334004;374245;228454.64;572411.64;417850;172428;146489.74;124935.24;207560 -5803;'722;Small Island Developing States;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;100;200;7100;15600;13300;21500;25103;19610;26049;23992;24704;41449;67400;83000;90200;158100;165400;145400;194800;156700;173900;159900;272600;291300;313924;229045;304009;261009;255427;428665;790501;419590;697856;651648;351102;558562;603892;631298;692530;722905;742473;727027;860315;914912;922544;1199170;1323117;1212521;1519715;1207168;1649478;1350743;866982;755950.57;805720;773880 -5803;'722;Small Island Developing States;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;12;38;289;550;623;1073;3140;2093;1998;2006;2093;2808;6666;7938;8617;15628;24358;19123;28327;27442;40129;30402;50905;53823;55309;36253;76939;69476;48626;65585;177781;121855;175736;94940;61848;81409;85546;89126;110046;132783;169761;117322.2;211729;265592;239631;418637;474847;424897;564148;490494;941203;647763;258001;291871.37;382203;557265 -5803;'722;Small Island Developing States;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 -5803;'722;Small Island Developing States;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;44500;44600;37200;46800;39600;41200;38800;38100;39000;38200;39600;44100;72700;53200;64400;53300;52200;51900;59000;67000;70400;58800;70553;69920;38854;22910;35586;41358;40284;40969;379467;85234;86949;77147;73770;22525;26823;25329;39245;29752;29043;55314;66275;153286;555948;623515.06;634515;622900;813938;436258;945749;800782;403674;224047.12;286741.03;292509 -5803;'722;Small Island Developing States;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;6229;6273;6650;8787;8427;6153;7294;8346;9846;10591;14200;17721;32302;22900;23942;20979;22311;20517;25790;32681;32053;27871;27962;30463;19935;9495;18128;34121;30312;29985;159859;41078;43762;33059;31060;12524;14464;13897;23941;19071;20906;34931;51071;105414;277195.16;301062.2;324901;318578;359803;213176;546116;401135;157103;126051.47;115207.24;192887 -5803;'722;Small Island Developing States;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;100;200;100;600;300;500;1300;200;600;200;100;200;500;300;100;2100;9200;5600;14400;13700;25000;10100;12900;23300;15460;10156;25211;20534;16300;16300;351314;145388;145369;86905;87835;5534;858;935;11320;2590;3025;21881;36310;50067;101602;397543;524967;463579;768819;470299;904001;776917;352190;202988.97;263113;245103 -5803;'722;Small Island Developing States;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;12;38;24;104;81;119;921;117;208;90;59;127;264;203;70;792;5421;3303;7115;9267;18752;8487;10632;13733;9646;4112;14480;15348;13166;13166;132098;89093;89211;30408;30777;2449;513;503;9329;1899;4228;12364;29078;43329;64551;246208;307089;284002;417180;329629;783568;554302;171523;146227.7;250158;467754 -5803;'722;Small Island Developing States;1875;Wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -5803;'722;Small Island Developing States;1875;Wood pulp;5610;Import quantity;t;;;;;;;;44500;44600;37200;46800;39600;41200;38800;38100;39000;38200;39600;44100;72700;53200;67000;59000;57000;56900;61000;72000;72600;60900;72777;72130;40420;24480;35333;44651;38852;39666;378325;84035;85696;73595;70646;17791;26440;24760;40498;37319;29603;63430;72227;155682;560267;627650.06;638922;627285;818827;440778;953545;861889;775707;239710.98;308184;338952 -5803;'722;Small Island Developing States;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;6229;6273;6650;8787;8427;6153;7294;8346;9846;10591;14200;17721;32302;22900;25377;24432;24709;22978;26921;34295;33127;28913;29056;31536;20581;10170;17994;36168;29034;28822;158743;40021;42670;31035;29068;10976;14053;13299;23564;24064;18642;40006;53151;105982;278791.16;302546.2;326724;319697;361963;215129;551200;432132;325059;133228.31;130439;225592 -5803;'722;Small Island Developing States;1875;Wood pulp;5910;Export quantity;t;;;;;;;;100;200;100;600;300;500;1300;200;600;200;100;200;500;300;100;2100;9200;5600;14400;13700;25000;10100;12900;23300;15460;10156;25211;20534;16300;16399;351413;145388;145369;86905;87835;6051;937;902;11242;10051;1318;32035;39570;49751;101249;397060;524678;462642;769008;470163;906695;840289;736810;232006.22;315984;316614 -5803;'722;Small Island Developing States;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;12;38;24;104;81;119;921;117;208;90;59;127;264;203;70;792;5421;3303;7115;9267;18752;8487;10632;13733;9646;4112;14480;15348;13166;13265;132197;89093;89211;30408;30777;2654;447;419;8823;12702;938;20383;33221;42069;62874;244869;306234;283332;416903;329489;786279;598183;419908;169905.09;301816;537907 -5803;'722;Small Island Developing States;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;89;1577;1200;782;2811;6385 -5803;'722;Small Island Developing States;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44;36;915;710;584;2063;4416 -5803;'722;Small Island Developing States;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3014;14;14;15;5574 -5803;'722;Small Island Developing States;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2177;6;6;6;3816 -5803;'722;Small Island Developing States;1654;Mechanical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;;;;;;; -5803;'722;Small Island Developing States;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;1000;1000;400;100;200;200;200;300;300;200;200;200;900;100;100;100;100;100;100;100;100;119;530;370;100;100;103;104;103;2;2;2;2;26;31;42;84;767;849;925;910;594;939.06;89;104;287;;;;;;; -5803;'722;Small Island Developing States;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;98;98;69;21;58;58;94;109;103;125;147;210;415;89;87;87;87;87;87;87;87;47;164;128;102;43;46;46;44;1;1;1;1;8;36;34;42;489;438;449;510;219;516.2;95;121;141;;;;;;; -5803;'722;Small Island Developing States;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;393;529;360;80;2;18;;;;;;; -5803;'722;Small Island Developing States;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;95;359;1136;577;41;7;;;;;;; -5803;'722;Small Island Developing States;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;;;;;;; -5803;'722;Small Island Developing States;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;1100;500;300;1400;104;453;1561;534;119;100;400;400;300;300;300;306;314;1030;1030;663;663;676;2362;2939;3027;3001;2072;504;506;1168;;;;;;; -5803;'722;Small Island Developing States;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;715;379;203;319;207;132;496;305;57;46;110;110;113;113;113;116;117;401;401;254;254;260;1554;1996;1976;1948;1425;272;273;451;;;;;;; -5803;'722;Small Island Developing States;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;15;0;0;0;0;0;0;0;0;1;1;1;1;1;1;1;1;1318;1318;510;726;1;;;;;;; -5803;'722;Small Island Developing States;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;825;825;619;416;1;;;;;;; -5803;'722;Small Island Developing States;1656;Chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -5803;'722;Small Island Developing States;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;44500;44600;37200;45800;38600;40800;38700;37900;38800;38000;39300;43800;72500;53000;64200;52400;52100;51800;58900;65800;69800;58400;69053;69716;37755;20256;34355;39832;38652;39163;377820;83626;85393;73292;70336;17473;25162;23618;37928;26669;26181;51533;61408;148870;551810;619801;633493;621838;811948;435827;945230;798807;389807;208448.98;271182;274361 -5803;'722;Small Island Developing States;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;6229;6273;6650;8689;8329;6084;7273;8288;9788;10497;14091;17618;32177;22753;23732;20564;22222;20430;25703;31879;31587;27581;27556;30169;19391;8504;17438;32772;28945;28666;158584;39852;42553;30918;28942;10852;13487;12807;22463;16508;16968;31910;46324;101903;273913.16;297994;323750;316694;358261;212451;545141;399629;148955;112002.31;100789;178144 -5803;'722;Small Island Developing States;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;100;200;100;600;300;500;1300;200;600;200;100;200;500;300;100;2100;9200;5600;14400;13700;25000;10100;12900;23300;15460;10156;25211;20519;16300;16300;351314;145388;145369;86905;87835;5465;807;897;11228;1525;1312;21564;36153;49349;99389;395380;524088;461907;768290;470156;903858;773751;352012;202820.97;262064;239305 -5803;'722;Small Island Developing States;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;12;38;24;104;81;119;921;117;208;90;59;127;264;203;70;792;5421;3303;7115;9267;18752;8487;10632;13733;9646;4112;14480;15343;13166;13166;132098;89093;89211;30408;30777;2399;343;411;8804;1339;924;11641;28646;41934;61640;242893;305038;282872;416346;329486;783425;551975;170953;145641.7;248824;463223 -5803;'722;Small Island Developing States;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 -5803;'722;Small Island Developing States;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;9300;12800;12800;12800;12800;10500;16500;12700;14100;22400;26300;22500;25800;22900;776;4670;3590;4262;3262;2762;3342;3341;4441;4441;4442;4442;4522;4522;2062;2062;2079;2144;2144;2144;2546;3185;1230;685;680;689;690;689;738;1409.26;1434;1434 -5803;'722;Small Island Developing States;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;3170;4767;4767;4767;4767;2720;5827;4253;5269;8438;8242;7153;8573;7340;387;1702;1657;3759;2747;1942;1542;1541;2436;2436;2441;2441;2469;2469;668;668;682;706;706;706;904;1228;626;387;379;386;387;387;418;1064;1076;1076 -5803;'722;Small Island Developing States;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;915;0;700;700;104;104;104;104;104;104;104;104;104;104;104;279;14;14;454;454;214;207;207;207;207;207;207;207;207;207 -5803;'722;Small Island Developing States;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;446;0;319;319;53;53;53;53;53;53;53;53;53;53;53;150;19;19;323;323;162;152;152;152;152;153;152;152;152;152 -5803;'722;Small Island Developing States;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 -5803;'722;Small Island Developing States;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;600;400;700;100;500;1100;200;31100;31100;31100;20200;22900;49600;31400;36600;28600;22700;26600;24500;29100;27900;27700;39736;42993;31404;12749;29010;33922;34837;36148;374293;80000;80667;68567;65230;12439;17308;17797;35056;23510;23173;48673;58421;137503;548273;615532;631595;620662;810052;434989;944337;798029;389000;206969.72;269671;272873 -5803;'722;Small Island Developing States;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;100;65;122;18;76;333;68;6852;8034;9018;7530;9627;23284;14813;13429;12951;10355;11135;11237;15326;13737;15319;17616;21286;16017;5481;14705;27459;25806;26532;156911;38149;39949;28316;25786;7727;8974;9349;21017;14886;15185;30309;44586;92394;272050;295646;322483;315821;356853;211724;544316;399056;148378;110737.31;99502;176909 -5803;'722;Small Island Developing States;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;1100;8900;5000;13600;13400;24900;9600;12400;22800;14960;9965;23500;20219;15600;15600;351210;145284;145265;86801;87731;5360;702;792;11121;1401;1064;21259;36098;49239;98822;394839;523821;461639;768066;469925;903648;773540;351801;202609.97;261853;239098 -5803;'722;Small Island Developing States;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;391;5097;3041;6759;9040;18688;8252;10397;13498;9411;3999;13634;14957;12847;12847;132045;89040;89158;30355;30724;2345;289;357;8745;1233;773;11381;28471;41659;61042;242246;304676;282548;416116;329256;783260;551804;170783;145471.7;248654;463071 -5803;'722;Small Island Developing States;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;149;203;89;69;70;77;54 -5803;'722;Small Island Developing States;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;341;438;186;159;201;211;159 -5803;'722;Small Island Developing States;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;3;4;4;4;4;0 -5803;'722;Small Island Developing States;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78;13;18;18;18;18;0 -5803;'722;Small Island Developing States;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;;;;;;; -5803;'722;Small Island Developing States;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;3900;2000;2000;2900;2900;4100;4200;4800;5700;3000;1000;1900;1917;1900;1900;1992;630;193;0;0;0;100;100;100;200;250;250;250;350;470;334;162;161;233;466;482;324;0;0;;;;;;; -5803;'722;Small Island Developing States;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;639;626;626;669;478;43;0;0;0;31;37;37;228;331;331;331;387;446;451;311;305;452;413;418;226;0;0;;;;;;; -5803;'722;Small Island Developing States;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;550;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -5803;'722;Small Island Developing States;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;359;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -5803;'722;Small Island Developing States;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;;;;;;; -5803;'722;Small Island Developing States;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;500;900;1100;700;1100;2700;1300;600;1400;600;3600;1900;3700;1500;7100;4800;8000;6800;13200;9800;12900;3200;1600;1923;3675;845;1125;1455;553;253;185;185;185;184;464;342;3082;1049;460;627;595;554;682;8990;525;602;344;491;1216;;;;;;; -5803;'722;Small Island Developing States;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;89;188;228;171;253;751;559;301;569;294;1384;832;2127;822;2852;2482;3994;2783;5951;5764;8174;2202;728;917;2361;652;598;1511;392;192;131;131;131;129;487;353;1713;658;391;508;650;584;727;8351;546.16;702;415;486;1029;;;;;;; -5803;'722;Small Island Developing States;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;100;200;100;600;300;500;1300;200;600;200;100;200;500;300;100;1000;300;600;800;300;100;500;500;500;500;191;246;300;0;0;0;0;0;0;0;1;1;1;3;20;144;26;41;96;113;87;53;61;17;;;;;;; -5803;'722;Small Island Developing States;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;12;38;24;104;81;119;921;117;208;90;59;127;264;203;70;401;324;262;356;227;64;235;235;235;235;113;41;386;0;0;0;0;0;0;0;1;1;1;6;53;98;110;156;256;275;324;200;172;78;;;;;;; -5803;'722;Small Island Developing States;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -5803;'722;Small Island Developing States;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;2600;5700;4800;5000;2000;5000;2200;2100;2224;2210;2093;2133;74;4600;0;0;1;6;1;1;2;2;222;81;1865;9903;1979;8686;6955;2875;4862;4838;4836;4837;5424;4868;8226;61505;384700;30480;34191;58206 -5803;'722;Small Island Developing States;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;1435;3453;2398;2461;1131;1614;1074;1042;1094;1073;1011;1006;123;3237;0;0;3;12;3;3;9;6;157;55;813;7260;925;6104;4382;1593;2711;2611;2607;2609;3110;2634;6023;31588;175394;20642;27587;43032 -5803;'722;Small Island Developing States;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;99;99;0;0;0;0;586;129;4;13;8525;5;10470;3416;8;13;2;0;7;699;7;2837;63524;384784;29171.25;53905;71735 -5803;'722;Small Island Developing States;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;99;99;0;0;0;0;255;104;8;19;11363;14;8742;4575;40;50;15;0;3;549;3;2854;44031;248949;24257.4;52986;70868 -5803;'722;Small Island Developing States;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 -5803;'722;Small Island Developing States;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;527;563;327;1307;1432;1303;1143;1205;1254;3553;3126;4736;605;650;612;2336;1419;570;1003;479;543;703;429;452;535;348;430;398;12667;14816.14;12748.03;11763 -5803;'722;Small Island Developing States;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;365;331;257;1190;1278;1163;1119;1069;1095;2027;2001;1554;568;653;1190;2267;3189;1029;2302;1025;1115;1127;784;1490;950;681;939;591;7438;13465.15;12355.24;10327 -5803;'722;Small Island Developing States;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;69;50;37;91;1064;1712;316;156;324;366;485;289;944;510;143;143;152;164;154;1034;224 -5803;'722;Small Island Developing States;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;50;170;92;525;560;3304;723;432;1300;1727;1354;855;673;826;143;143;150;564;580;1328;715 -5803;'722;Small Island Developing States;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;6035;0;662;139;238;160;409;289;402;586;6471;1010;1624;1734;1104;922;931;17732.74;17020.2;1067.25 -5803;'722;Small Island Developing States;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;1383;0;159;97;158;175;180;263;360;845;2899;1020;2075;1013;934;784;873;2652.17;2650.22;1886.13 -5803;'722;Small Island Developing States;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;27;287;140;125;242;270;261;422;257;259;301;272;234;226;356;16168;712 -5803;'722;Small Island Developing States;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;14;14;41;178;113;120;119;231;198;1016;146;142;163;208;136;118;873;1122;224 -5803;'722;Small Island Developing States;1669;Recovered paper;5510;Production;t;;;;;;;;;;17000;32000;30000;43000;48000;40000;52000;51000;53000;87000;157000;189000;189000;297000;290000;252000;252000;269000;310000;310000;307000;317000;387000;386100;341100;371100;371100;375000;374000;375000;342000;341000;347000;343000;338000;348000;353000;358000;801000;814000;809000;823600;1398600;1416778;1417987;1370927;1364479;1349045;1258093;1215093;1348093;1340093;1340093;1340093 -5803;'722;Small Island Developing States;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;8000;7000;2000;3000;13200;13400;13801;11547;9397;12048;15000;5800;5500;8800;23400;24100;42500;39300;59100;54766;55000;73000;101987;25095;106546;95958;73378;87792;163109;81705;106271;106047;38379;63475;68931;63139;35346;65502;86329;65678.06;112429.38;117914;111079;92973.12;70691.12;70899;69493;67647.12;122511.12;52079;85736;81896.96;39209;51006 -5803;'722;Small Island Developing States;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;526;451;142;368;2583;2493;2978;2253;1385;2237;3825;742;684;1507;3633;3836;4870;4861;7453;8392;8677;9869;11807;3450;13063;14568;8885;9400;10144;10408;14804;12095;5493;9261;8072;8925;9764;13577;20375;12177;26587;30070;22947;18603.64;16621.64;15426;14442;15278.64;26295.64;16715;15325;20438.27;9728;14673 -5803;'722;Small Island Developing States;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;7000;15000;13000;21000;23803;19410;25449;23792;24604;41249;66900;82700;90100;156000;156200;139800;180400;143000;148900;149800;259700;268000;298464;218889;278798;240475;239127;412365;439187;274202;552487;564743;263267;553028;603034;630363;681210;720315;739448;705146;824005;864845;820942;801627;798150;748942;750896;736869;745477;573826;514792;552961.6;542607;528777 -5803;'722;Small Island Developing States;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;265;446;542;954;2219;1976;1790;1916;2034;2681;6402;7735;8547;14836;18937;15820;21212;18175;21377;21915;40273;40090;45663;32141;62459;54128;35460;52419;45683;32762;86525;64532;31071;78960;85033;88623;100717;130884;165533;104958.2;182651;222263;175080;172429;167758;140895;146968;160865;157635;93461;86478;145643.67;132045;89511 -5803;'722;Small Island Developing States;1876;Paper and paperboard;5510;Production;t;88000;91700;95300;99000;92900;99900;112300;94300;93000;89800;117500;117400;134000;135600;137100;137100;88400;96200;97200;134700;141700;188500;145800;159600;166600;180600;170900;162400;191300;216600;217600;159200;163000;164000;146000;161000;161000;270000;270000;260000;248000;241700;250400;236600;240800;241600;238800;240910;240400;238600;244000;254900;254600;260000;261500;259700;249600;249600;249600;249600;249600;249600;249600 -5803;'722;Small Island Developing States;1876;Paper and paperboard;5610;Import quantity;t;125600;131600;102300;214400;188600;219700;232700;289900;293900;331900;364900;353100;400700;416000;348200;393200;439000;498000;597300;674400;680000;674800;752900;806200;715423;749934;852228;964513;973381;1087421;1137149;1010967;928676;1242579;1328454;1202753;1091029;1110011;1342085;1333330;1140917;1192831;1243004;1558444;1386327;1433900;1502937;1560502;1295856;1502952;2028400.5;1895151.4;1887699;1813811;1746378;1836152;2350640;1918819;2067268;1932065;1905468.21;1701275.45;1054142.37 -5803;'722;Small Island Developing States;1876;Paper and paperboard;5622;Import value;1000 USD;26819;27844;22086;44863;39942;46242;50690;59990;63630;76937;85194;94482;123651;178180;147433;185693;214688;236579;313349;424790;454560;419321;462199;495335;430935;477115;544775;713194;677116;814317;841920;755053;651824;870054;1359689;1122778;874669;816464;894625;969549;811140;654763;858539;1010303;1052769;1144780;1178730;1313151;1069035;1288919;1863562;1696970;1570159;1684224;1436199;1500345;1751246;1622473;1684611;1492276;1678355.84;1674053.51;1284933.7 -5803;'722;Small Island Developing States;1876;Paper and paperboard;5910;Export quantity;t;;;;5800;8200;12200;14400;16100;20300;16000;25100;27800;52700;41700;31800;40100;47800;50500;43900;51800;53300;50000;60300;84200;84300;65500;91100;159400;181100;221800;233200;209954;155866;324649;262011;212315;212174;224930;231365;218438;207106;167001;74730;106851;101404;98161;106821;201570;251814.45;250393.19;257578;678658;722249.97;872875.6;782251.23;845422.23;1204229.53;953848.53;1041132.53;1089699.53;1001028.46;642532.89;558102.16 -5803;'722;Small Island Developing States;1876;Paper and paperboard;5922;Export value;1000 USD;;;;1454;1871;2757;3124;3083;3775;3285;5018;5946;9175;27028;12805;15299;17623;19178;21134;31458;38552;38396;46931;79365;84527;40848;56819;170231;180802;230867;221122;199770;98880;265339;366565;313254;312863;228156;268153;267658;243435;242868;75338;126207;139622;127504;142194;388054;589085;718243;776987;1119372;1168020.5;1237236.6;1167152;1112164;1311764;1229782;1235033;1120275;1209056.7;983779.44;883918.06 -5803;'722;Small Island Developing States;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;24000;24000;24000;24000;11000;11000;11000;11000;10600;10400;10800;10500;11300;11200;10400;10000;10400;10900;10800;10000;10800;10000;10000;10000;10000;10000;10000;10000 -5803;'722;Small Island Developing States;2042;Graphic papers;5610;Import quantity;t;54600;65000;41100;89500;75000;89300;92800;99600;99400;117300;143400;135400;160400;179800;159400;183000;185800;207700;234800;256700;313400;296200;345200;390700;338243;329380;378023;391097;369927;465379;500579;444262;466238;606829;394549;388549;558890;605555;756812;733839;617750;409375;689371;768326;751291;768600;769664;877419;707547;900761;1375745.5;1390257.4;1334077;1223388;1195634;1202138;1636876;1197095;1305842;1258150;1052927.41;684860.07;360818 -5803;'722;Small Island Developing States;2042;Graphic papers;5622;Import value;1000 USD;10718;12692;7727;17892;15614;17912;19906;21297;20979;25921;32338;34182;47287;72170;61832;74510;86234;102930;130287;169242;212310;197641;220813;245875;217768;214865;261078;324664;270235;374560;412346;351224;330648;457442;403482;365574;485110;451676;515528;572747;468500;287230;488265;572379;592404;631930;646844;790339;605116;756445;1221605;1202550;1090914;1024135;923579;901316;1091987;930309;930342;804203;784696.2;624337.81;442400 -5803;'722;Small Island Developing States;2042;Graphic papers;5910;Export quantity;t;;;;2600;3200;3600;4800;4400;5400;4200;7500;7800;36200;13700;11700;12300;15000;16000;9200;22200;22200;21100;30500;36200;37200;28300;27600;35300;47400;38900;35800;52463;11598;90738;51957;43590;43779;38392;96244;80289;96918;14839;33686;46153;39613;45654;54160;85956;76777;64899.19;66709;490378;546660.67;631967.6;558304.23;614662.23;1001322.53;749615.53;796004.53;881417.53;788168.23;447463.74;383602.01 -5803;'722;Small Island Developing States;2042;Graphic papers;5922;Export value;1000 USD;;;;690;779;847;1093;996;1321;1081;1873;2227;4840;7784;5387;5273;6232;7496;9334;16932;20204;16606;23575;29987;29442;20525;22515;31337;37930;36282;37262;46702;8879;70055;61644;43943;44170;29805;64929;64739;67523;15575;33116;40177;40396;47538;64244;106166;83064;79546;84454;472002;486481.5;523641;464051;482444;778410;689922;682244;637445;671134.3;466581.24;359566.13 -5803;'722;Small Island Developing States;1671;Newsprint;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0 -5803;'722;Small Island Developing States;1671;Newsprint;5610;Import quantity;t;41700;51700;34700;61000;47200;57800;56600;57900;56000;72800;86500;74300;83700;91500;86000;87900;91200;107300;115600;122500;161800;127200;159300;174500;146413;149641;168023;178155;188256;187776;208076;159800;175820;209620;217135;225986;234979;224717;268409;279501;232771;222934;234329;255992;247320;263999;233394;280584;217742;244857;247039;219276;243162;166130;200681;155180;148578;137216;113425;81170;54743.46;63998.07;53514 -5803;'722;Small Island Developing States;1671;Newsprint;5622;Import value;1000 USD;6755;8275;5376;10068;7702;8898;8832;8863;8185;11516;14578;13496;16441;25637;26158;29593;32188;42085;45259;57448;84626;65012;77815;81029;69301;74455;90880;108874;100507;108915;128298;85786;84959;108057;177904;176486;120049;129405;129783;154260;144899;132866;110518;135208;144759;167244;151785;203521;136955;155251;175020;153340;156991;101211;112126;87568;80724;87687;70160;41551;32500.79;49543.81;43680 -5803;'722;Small Island Developing States;1671;Newsprint;5910;Export quantity;t;;;;700;800;900;800;800;1200;900;2300;2100;4900;2100;2100;2100;3000;3600;3900;4300;4200;5300;9800;13100;12600;12100;10300;10900;6500;8900;6800;10862;235;9977;12302;10502;10502;6456;7001;7801;18601;3105;2385;15448;9030;9256;17769;15888;15533;9939.19;11838;15630;15780;21865;11812;6535;16381;39045;11878;11039;4671;5372;4137 -5803;'722;Small Island Developing States;1671;Newsprint;5922;Export value;1000 USD;;;;147;129;141;135;130;202;144;346;410;1176;996;859;671;946;1267;1757;2187;2599;2363;4488;6313;6038;5467;5825;7231;4349;5695;4787;6341;164;4346;9789;6591;6591;2908;3095;4430;10301;1051;1180;7665;4694;5121;9265;10583;10031;5082;7209;10491;9693;14150;7418;3755;10415;27254;9208;5435;2685.4;4243;3372 -5803;'722;Small Island Developing States;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;24000;24000;24000;24000;11000;11000;11000;11000;10600;10400;10800;10500;11300;11200;10400;10000;10400;10900;10800;10000;10800;10000;10000;10000;10000;10000;10000;10000 -5803;'722;Small Island Developing States;1674;Printing and writing papers;5610;Import quantity;t;12900;13300;6400;28500;27800;31500;36200;41700;43400;44500;56900;61100;76700;88300;73400;95100;94600;100400;119200;134200;151600;169000;185900;216200;191830;179739;210000;212942;181671;277603;292503;284462;290418;397209;177414;162563;323911;380838;488403;454338;384979;186441;455042;512334;503971;504601;536270;596835;489805;655904;1128706.5;1170981.4;1090915;1057258;994953;1046958;1488298;1059879;1192417;1176980;998183.95;620862;307304 -5803;'722;Small Island Developing States;1674;Printing and writing papers;5622;Import value;1000 USD;3963;4417;2351;7824;7912;9014;11074;12434;12794;14405;17760;20686;30846;46533;35674;44917;54046;60845;85028;111794;127684;132629;142998;164846;148467;140410;170198;215790;169728;265645;284048;265438;245689;349385;225578;189088;365061;322271;385745;418487;323601;154364;377747;437171;447645;464686;495059;586818;468161;601194;1046585;1049210;933923;922924;811453;813748;1011263;842622;860182;762652;752195.41;574794;398720 -5803;'722;Small Island Developing States;1674;Printing and writing papers;5910;Export quantity;t;;;;1900;2400;2700;4000;3600;4200;3300;5200;5700;31300;11600;9600;10200;12000;12400;5300;17900;18000;15800;20700;23100;24600;16200;17300;24400;40900;30000;29000;41601;11363;80761;39655;33088;33277;31936;89243;72488;78317;11734;31301;30705;30583;36398;36391;70068;61244;54960;54871;474748;530880.67;610102.6;546492.23;608127.23;984941.53;710570.53;784126.53;870378.53;783497.23;442091.74;379465.01 -5803;'722;Small Island Developing States;1674;Printing and writing papers;5922;Export value;1000 USD;;;;543;650;706;958;866;1119;937;1527;1817;3664;6788;4528;4602;5286;6229;7577;14745;17605;14243;19087;23674;23404;15058;16690;24106;33581;30587;32475;40361;8715;65709;51855;37352;37579;26897;61834;60309;57222;14524;31936;32512;35702;42417;54979;95583;73033;74464;77245;461511;476788.5;509491;456633;478689;767995;662668;673036;632010;668448.9;462338.23;356194.13 -5803;'722;Small Island Developing States;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 -5803;'722;Small Island Developing States;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10195;12203;11672;12010;29594;18006;32834;34340;33615;37657;35781;37476;32819;27271;26409;26498;24449;21061;17910;23665;15458;18336;29411;16968.31;22951;15277 -5803;'722;Small Island Developing States;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11130;10737;10997;11029;23228;18215;29183;32736;32817;37086;40090;38361;39996;38560;33414;31425;29439;27496;22834;26881;16622;26929;30866;22593.47;29176;27653 -5803;'722;Small Island Developing States;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;315;875;758;858;1464;1069;3818;3718;3785;3662;4663;5165;8346;7313;539;683.44;2716;5252;3199;2422;2422;2245;6061;3376;1748.5;3074 -5803;'722;Small Island Developing States;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;317;715;738;710;2511;1336;3946;3578;3990;4424;6563;6525;9691;10068;1042;1145;4093;4975;3601;3457;3452;2804;5433;3752.8;3008.1;3583 -5803;'722;Small Island Developing States;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 -5803;'722;Small Island Developing States;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;157256;207443;192837;144031;57979;163408;179019;183629;188128;204891;233639;161885;304158;778231.5;830885.4;733977;717027;678928;765348;1232060;884434;1039600;1010269;857917.69;504866;189742 -5803;'722;Small Island Developing States;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;142375;170004;184143;125061;53321;124206;144934;155205;166709;172345;206412;152328;229737;653564;670095;559830;558770;502176;548445;771190;656420;675815;585916;592055.26;429899;232638 -5803;'722;Small Island Developing States;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19588;54618;44320;56230;7525;11767;9580;13189;15276;16739;47365;38101;30900;31053;465281;518707;588564.07;531150;585151;974164;697961;770300;856037;769732;433151;370193 -5803;'722;Small Island Developing States;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15582;35521;34633;39245;6360;10723;9062;13668;16564;23573;53183;36699;38639;37993;435780;453382.5;488360;437325;455746;750040;643964;655035;614554;650247.1;448450;343751 -5803;'722;Small Island Developing States;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 -5803;'722;Small Island Developing States;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;213387;268757;249829;228938;98868;273628;300481;286002;282858;293722;327415;290444;318927;323204;313687;330440;315782;294964;263700;232573;159987;134481;137300;123297.95;93045;102285 -5803;'722;Small Island Developing States;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;168766;205004;223347;187511;77815;235326;263054;259704;265160;285628;340316;277472;331461;354461;345701;342668;334715;281781;242469;213192;169580;157438;145870;137546.68;115719;138429 -5803;'722;Small Island Developing States;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12033;33750;27410;21229;2745;18465;17307;13676;17337;15990;18040;17978;15714;16505;8928;11490.23;18822.53;10090.23;19777.23;8355.53;10187.53;11581.53;8280.53;10389.23;7192.24;6198.01 -5803;'722;Small Island Developing States;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10998;25598;24938;17267;5653;19877;19504;18456;21863;26982;35837;29809;26134;29184;24689;22261;17038;14333;19342;14498;15252;15197;12023;14449;10880.13;8860.13 -5803;'722;Small Island Developing States;1675;Other paper and paperboard;5510;Production;t;73900;70600;78800;75900;74100;83600;93400;73400;73100;69800;92500;92700;107100;107100;107100;107100;57100;64900;65900;103400;110400;152000;112000;115600;107600;114600;113900;116400;131300;177600;180600;144200;149000;150000;132000;137000;137000;246000;246000;249000;237000;230700;239400;226000;230400;230800;228300;229610;229200;228200;234000;244500;243700;249200;251500;248900;239600;239600;239600;239600;239600;239600;239600 -5803;'722;Small Island Developing States;1675;Other paper and paperboard;5610;Import quantity;t;71000;66600;61200;124900;113600;130400;139900;190300;194500;214600;221500;217700;240300;236200;188800;210200;253200;290300;362500;417700;366600;378600;407700;415500;377180;420554;474205;573416;603454;622042;636570;566705;462438;635750;933905;814204;532139;504456;585273;599491;523167;783456;553633;790118;635036;665300;733273;683083;588309;602191;652655;504894;553622;590423;550744;634014;713764;721724;761426;673915;852540.8;1016415.37;693324.37 -5803;'722;Small Island Developing States;1675;Other paper and paperboard;5622;Import value;1000 USD;16101;15152;14359;26971;24328;28330;30784;38693;42651;51016;52856;60300;76364;106010;85601;111183;128454;133649;183062;255548;242250;221680;241386;249460;213167;262250;283697;388530;406881;439757;429574;403829;321176;412612;956207;757204;389559;364788;379097;396802;342640;367533;370274;437924;460365;512850;531886;522812;463919;532474;641957;494420;479245;660089;512620;599029;659259;692164;754269;688073;893659.64;1049715.7;842533.7 -5803;'722;Small Island Developing States;1675;Other paper and paperboard;5910;Export quantity;t;;;;3200;5000;8600;9600;11700;14900;11800;17600;20000;16500;28000;20100;27800;32800;34500;34700;29600;31100;28900;29800;48000;47100;37200;63500;124100;133700;182900;197400;157491;144268;233911;210054;168725;168395;186538;135121;138149;110188;152162;41044;60698;61791;52507;52661;115614;175037.45;185494;190869;188280;175589.3;240908;223947;230760;202907;204233;245128;208282;212860.23;195069.16;174500.16 -5803;'722;Small Island Developing States;1675;Other paper and paperboard;5922;Export value;1000 USD;;;;764;1092;1910;2031;2087;2454;2204;3145;3719;4335;19244;7418;10026;11391;11682;11800;14526;18348;21790;23356;49378;55085;20323;34304;138894;142872;194585;183860;153068;90001;195284;304921;269311;268693;198351;203224;202919;175912;227293;42222;86030;99226;79966;77950;281888;506021;638697;692533;647370;681539;713595.6;703101;629720;533354;539860;552789;482830;537922.4;517198.21;524351.92 -5803;'722;Small Island Developing States;1676;Household and sanitary papers;5510;Production;t;;;;;;;;;;;;;;;;;3500;9000;10000;10000;10000;12000;13000;17000;15000;16000;14300;13800;14700;13000;13000;9600;8000;8000;0;1000;1000;63000;63000;67000;66000;65000;66100;67400;68100;68600;68900;67600;66400;67400;73000;77700;77900;77500;82500;82900;82700;82700;82700;82700;82700;82700;82700 -5803;'722;Small Island Developing States;1676;Household and sanitary papers;5610;Import quantity;t;100;100;100;100;100;100;200;10800;1800;2100;1700;3600;5200;5700;7200;7000;3800;4100;10300;15800;13300;11800;14200;15300;12200;17700;19800;20500;6100;11500;12600;12840;14800;19100;30000;31064;35228;34960;32996;33637;41258;35405;43130;43493;44580;63909;44310;41627;41392;50995;46753;56584;47245;47892;47053;53165;60656;65270;67552;81362;77392.9;110096;86291 -5803;'722;Small Island Developing States;1676;Household and sanitary papers;5622;Import value;1000 USD;44;40;50;58;72;92;143;756;956;1393;991;2966;4081;5749;6159;6127;3540;3725;9181;18168;16513;13363;15671;15299;11390;16364;18575;22948;7487;12336;12577;13731;17027;20417;30976;33477;34144;36815;35614;31105;44068;36598;49455;51513;52911;67866;55161;55362;55043;78302;79943;80026;74923;73177;73505;73560;76768;85006;94667;94854;98593.31;154867;133396 -5803;'722;Small Island Developing States;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;100;200;200;100;200;200;200;100;100;100;100;1000;800;700;1200;1400;600;1000;1500;1600;400;1000;1000;0;0;37;762;1151;1133;1360;3501;2320;1120;1479;1822;1811;1289;1698;2217;1685;4762.45;4634;5132;12065;12152.3;12174;18304;16485;3579;5181;16823;16629;16829.33;16927.09;10315.09 -5803;'722;Small Island Developing States;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;45;60;63;61;103;175;175;38;72;96;96;980;915;840;1370;1433;546;900;1400;1400;610;1200;1200;0;0;87;1031;2637;2625;1907;5090;3486;1422;1810;2441;2956;2340;3213;4662;3089;6973;7752;8213;14628;16046;16745;21437;17712;4660;6734;20443;18967;19257.94;21665.72;15178.43 -5803;'722;Small Island Developing States;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83000;83000;82000;71000;64700;76200;71600;74300;74200;71400;73990;74700;72700;69000;73800;72800;73700;71000;68000;64200;64200;64200;64200;64200;64200;64200 -5803;'722;Small Island Developing States;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;336754;449171;468733;401680;608582;448664;665012;508518;538414;616578;572332;514509;518267;573504;415492;474751;477451;470240;523103;623503;626727;668816;565136;731724.26;867366.37;586489.37 -5803;'722;Small Island Developing States;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;228778;239817;271128;218187;249157;253441;303153;324609;356625;377360;377104;348201;393860;490779;344279;349464;429199;386720;426493;521899;557072;592114;499773;680973.56;800000.7;625909.7 -5803;'722;Small Island Developing States;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102710;46587;59505;30549;24946;35214;53740;55949;46305;46697;102987;165035;172661;177904;169288;158504;211391;200562;209550;193948;194074;222987;186568;192195.9;171758.07;160696.07 -5803;'722;Small Island Developing States;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43653;56954;67911;30249;24378;30674;71077;86441;65407;62662;259357;481896;614320;663495;607260;643908;646947;650687;592541;503547;509386;509319;437575;481276.83;459269.49;473121.49 -5803;'722;Small Island Developing States;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;48000;54000;55600;51600;51600;53600;58600;61600;58600;57600;35600;32000;32000;32000;36000;36000;;;;;;;;;;;;;;;;;;;;;;;;;; -5803;'722;Small Island Developing States;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;5200;4500;5500;4800;5400;14500;18300;41200;51500;78000;79600;84200;104300;95600;54300;91400;125300;186600;224800;251300;232500;230800;271500;268600;233100;321800;357700;360800;414300;408800;426500;340865;238460;319688;591737;502800;306900;;;;;;;;;;;;;;;;;;;;;;;;;; -5803;'722;Small Island Developing States;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;880;794;920;922;1289;3330;4231;9290;11299;17521;18083;23362;30521;43535;23005;43753;53192;75935;90910;125572;126603;111881;125794;131353;106618;169270;186813;192501;225358;253525;257058;225836;140369;240448;522906;376549;214751;;;;;;;;;;;;;;;;;;;;;;;;;; -5803;'722;Small Island Developing States;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;;;;;;;6200;8700;7000;9800;8900;7000;15400;7300;9400;13200;14400;14400;22000;20800;17200;16800;21200;18700;30100;40100;49900;79400;100100;110100;79222;73476;100947;131751;93500;93385;;;;;;;;;;;;;;;;;;;;;;;;;; -5803;'722;Small Island Developing States;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;;;;;;;1085;1441;1263;1836;1743;1686;14912;2369;2938;3721;4204;4204;10495;10577;14634;7446;9267;7928;15100;20100;21051;40788;80068;80068;58480;19479;81025;102949;67861;67556;;;;;;;;;;;;;;;;;;;;;;;;;; -5803;'722;Small Island Developing States;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83000;83000;82000;71000;64700;67100;65800;67700;67000;65300;67390;68000;67800;68000;69400;68600;69900;68000;64300;63200;63200;63200;63200;63200;63200;63200 -5803;'722;Small Island Developing States;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;220851;304763;319386;273757;468681;267366;243148;240957;292753;309347;296023;274576;252558;288557;191574;263499;238693;242930;266778;321046;312813;303395;289893;430576.05;433942;347181 -5803;'722;Small Island Developing States;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119202;132184;147243;117422;149498;117594;116733;118605;128713;138910;147073;117987;136362;174523;120721;151291;149906;146833;147629;181154;201137;188145;169959;279626.17;300802;223706 -5803;'722;Small Island Developing States;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39187;17354;22459;9166;10558;8939;10149;10579;8550;9855;11262;13539;13637;15404;6796;5872;6855;7857;14025;6553;6616;5100;5156;12233.9;13761.07;14130.07 -5803;'722;Small Island Developing States;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7417;9492;11236;3970;3878;5281;5613;6466;5778;6553;8204;8464;9799;11793;5475;4899;5812;5691;7989;3682;4841;4077;3149;8451.83;9752.49;8313.49 -5803;'722;Small Island Developing States;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 -5803;'722;Small Island Developing States;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41423;42118;43535;36596;39244;45130;84007;105134;89770;97545;97819;86765;108010;125144;65073;62851;95393;96112;106651;155449;175572;191667;139838;155972.47;170182;127337 -5803;'722;Small Island Developing States;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41048;39167;44109;37777;31090;45209;72808;90895;111914;109614;110117;119720;130276;162466;86603;83247;141722;123426;147088;207308;225288;248661;207119;246496.44;320242;256401 -5803;'722;Small Island Developing States;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32811;14244;19783;11096;6740;8049;17175;19280;11842;12414;63270;126394;140667;140085;141907;137567;182856;177494;175552;170769;173330;180985;160052;155997;138047;136439 -5803;'722;Small Island Developing States;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29187;36891;45584;17624;12732;10897;45774;57168;35152;31732;219825;442416;566480;605447;569762;603842;600541;604802;547828;467899;474715;471497;404946;446361;422333;441492 -5803;'722;Small Island Developing States;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2800;2400;2800;3100;2700;2500;3000;3300;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000;1000 -5803;'722;Small Island Developing States;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64372;86830;89100;78985;89597;127695;328390;153877;149202;199610;163427;140224;141878;149362;145679;135544;136847;123813;136955;130586;125770;162336;125920;134306.74;254008;102799 -5803;'722;Small Island Developing States;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62356;61015;70937;55979;61395;86152;108304;110946;112518;123050;109108;101105;116565;144645;128089;106136;130729;109401;121335;121246;122627;148862;116751;147603.69;172132;138139 -5803;'722;Small Island Developing States;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18064;9576;10363;7987;6948;15373;23962;23790;22734;20995;25098;22704;15656;19815;17645;12145;17530;13234;16032;11856;11397;34389;19411;22833;18230;8542 -5803;'722;Small Island Developing States;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5112;8132;8182;7390;7017;12392;17793;20702;21269;20999;26315;27930;34778;40344;28417;29432;33155;32489;30776;27166;26515;31409;27321;24760;25176;20857 -5803;'722;Small Island Developing States;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;3400;3200;2800;2000;2700;0;0;0;0;0;0;0 -5803;'722;Small Island Developing States;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10108;15460;16712;12342;11060;8473;9467;8550;6689;10076;15063;12944;15821;10441;13166;12857;6518;7385;12719;16422;12572;11418;9485;10869;9234.37;9172.37 -5803;'722;Small Island Developing States;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6172;7451;8839;7009;7174;4486;5308;4163;3480;5786;10806;9389;10657;9145;8866;8790;6842;7060;10441;12191;8020;6446;5944;7247.26;6824.7;7663.7 -5803;'722;Small Island Developing States;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12648;5413;6900;2300;700;2853;2454;2300;3179;3433;3357;2398;2701;2600;2940;2920;4150;1977;3941;4770;2731;2513;1949;1132;1720;1585 -5803;'722;Small Island Developing States;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1937;2439;2909;1265;751;2104;1897;2105;3208;3378;5013;3086;3263;5911;3606;5735;7439;7705;5948;4800;3315;2336;2159;1704;2008;2459 -5803;'722;Small Island Developing States;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;42000;35000;33000;31000;37000;36000;34000;55000;106000;110000;99000;109000;110000;100000;100000;100000;100000;100000;100000;100000;101000;97100;87000;88000;88000;88000;88020;88100;88100;92000;93000;93000;98000;98000;98000;92700;92700;92700;92700;92700;92700;92700 -5803;'722;Small Island Developing States;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;6800;6200;8400;15900;15200;17500;21000;62800;90400;86500;97900;101000;105600;109900;103700;84900;95800;70500;97700;120900;89400;117800;103000;117600;113415;64556;72158;181401;167192;188611;181500;191298;182465;285839;296915;269342;180568;132742;103106;97121;80229;139469;61839;81613;81938;62977;72385;69124;32408;32929;32398;32818;31626;65080;33451;57746;29605;29727;25058;27417;43423.64;38953;20544 -5803;'722;Small Island Developing States;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;1548;1438;2096;3348;3245;5213;5481;12716;20126;22009;24490;28016;34181;47967;47249;46836;56017;36831;64963;93550;78713;80683;83468;90864;80800;63438;59884;160602;151880;161816;147362;149269;145415;143024;389044;338688;130903;99195;103666;94569;80385;81778;67378;83258;82845;88359;99365;90346;60675;60312;71235;70115;54858;157713;52395;98976;60592;50086;67488;93446;114092.77;94848;83228 -5803;'722;Small Island Developing States;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;5500;6100;4600;7600;11000;9300;12400;12600;18300;19500;20000;20200;6600;9500;11000;11800;25400;27800;6100;21900;72600;53900;81800;86300;78205;70650;132761;77378;73735;73639;82468;85033;76324;78519;125737;4008;5147;4553;4504;3747;10942;5240;8199;7833;6927;4933;17343;5081;4725;5380;4978;5318;5085;3835;6384;3489 -5803;'722;Small Island Developing States;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;1002;968;881;1246;1915;2546;4157;4874;7050;7598;7382;7500;3051;6856;6316;14540;38678;46611;4323;12804;116443;101474;113317;102592;94461;70444;114062;200833;198446;198304;152791;141180;131522;144241;201105;9107;11997;10445;11346;10626;19442;17152;16625;20825;25482;21585;49903.6;30977;19467;25147;23740;23027;26288;37387.62;36263;36052 -5803;'722;Small Island Developing States;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1257241.4;1366340;1314749;993588;1220941;1497221;1587197 -5803;'722;Small Island Developing States;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;176890;191808;184016;131302;150301;161836;176748 -5803;'722;Small Island Developing States;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104351.9;109899;101286;75058;95343;109013;98875 -5803;'722;Small Island Developing States;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17517;14727;13361;13485;19950;17711;15170 -5803;'722;Small Island Developing States;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57040.7;54997;54274;38743;60567;63266;53558 -5803;'722;Small Island Developing States;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1080;590;480;1496;438;515;576 -5803;'722;Small Island Developing States;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47311.2;54902;47012;36315;34776;45747;45317 -5803;'722;Small Island Developing States;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16437;14137;12881;11989;19512;17196;14594 -5803;'722;Small Island Developing States;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101498.5;113732;120202;103647;126607;146155;129337 -5803;'722;Small Island Developing States;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12934;16829;24785;14061;13895;12877;13452 -5803;'722;Small Island Developing States;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45769;52290;51355;38645;46727;61749;69497 -5803;'722;Small Island Developing States;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11249;10259;10847;5472;5363;7355;12262 -5803;'722;Small Island Developing States;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;171688;207251;201369;149612;164098;205530;248658 -5803;'722;Small Island Developing States;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14458;16933;22245;21137;26514;28852;22235 -5803;'722;Small Island Developing States;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1109;2462 -5803;'722;Small Island Developing States;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1847;5133 -5803;'722;Small Island Developing States;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104;23 -5803;'722;Small Island Developing States;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;129;45 -5803;'722;Small Island Developing States;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115;617 -5803;'722;Small Island Developing States;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;334;720 -5803;'722;Small Island Developing States;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;254;353 -5803;'722;Small Island Developing States;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;380;703 -5803;'722;Small Island Developing States;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;91 -5803;'722;Small Island Developing States;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;122 -5803;'722;Small Island Developing States;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;757646;796027;751095;562207;728519;891185;965133 -5803;'722;Small Island Developing States;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65288;93096;76719;50589;65252;63642;91483 -5803;'722;Small Island Developing States;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32243;23750;35305;21145;6303;17667;14446 -5803;'722;Small Island Developing States;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;982;1402;1038;992;1024;1400;4469 -5803;'722;Small Island Developing States;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44045;63391;54137;43274;53344;65922;61251 -5803;'722;Small Island Developing States;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54462;38562;35021;25566;18303;29999;17677 -5803;'722;Small Island Developing States;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1463677;1569973;1555511;1429036;1600553;1865830;1742182 -5803;'722;Small Island Developing States;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;526581;527273;496042;494168;544848;552461;515998 -5803;'722;Small Island Developing States;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2088;2629;2643;2716;5348;3820;3300 -5803;'722;Small Island Developing States;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2815;3254;2122;2382;2616;3152;1901 -5803;'722;Small Island Developing States;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103014;114832;117036;93975;109474;126659;107553 -5803;'722;Small Island Developing States;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72969;72787;59215;49338;61261;62140;51058 -5803;'722;Small Island Developing States;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;335072;351064;328365;369941;342149;388230;395010 -5803;'722;Small Island Developing States;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60210;54407;51514;82293;55475;60481;69044 -5803;'722;Small Island Developing States;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;445172;489493;503047;462704;557968;672320;602879 -5803;'722;Small Island Developing States;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;166488;194258;180816;175445;200393;212713;212345 -5803;'722;Small Island Developing States;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;578331;611955;604420;499700;585614;674801;633440 -5803;'722;Small Island Developing States;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;224099;202567;202375;184710;225103;213975;181650 -5815;'901;Low Income Food Deficit Countries;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4796178.75;5342410.66;5846033.66;5074125.66;5778628.19;6476766.65;6449037.68 -5815;'901;Low Income Food Deficit Countries;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2580395.91;2953244;2656290;2149559;2631812.98;2548767.5;2562515.92 -5815;'901;Low Income Food Deficit Countries;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;53316;60436;56342;58017;67143;78814;83747;89883;92300;103634;118852;127853;171747;261707;226201;221504;281332;306204;319061;424104;486090;433309;404107;371198;380605;391656;380317;354275;308902;328162;324238;367187;318151;338966;384749;412842;501582;530269;575615;561683;659152;615064;1046496;1312158;1423651.3;1435008;1982437;2350321.1;2157649.1;2582272.18;2924670;2777218.66;3118969.8;3474643.06;2481454.95;2585420.66;2925670.85;3350296.66;3795414.66;3134171.66;3575849.19;3867126.65;3793834.68 -5815;'901;Low Income Food Deficit Countries;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;43887;42282;47571;61089;62795;64822;64714;75626;89470;92993;102829;106242;160622;182590;144607;210567;200062;295524;369073;456334;306997;250621;211077;197904;240483;233894;263372;379268;388210;706144;520553;674316;451251;577903;734883;757834;804765;604200;698707;997936;1088165;1080920;1061267;1039546;1206085;1438629;1639229;1705204;1403874;1803112.4;2216241;2410625.14;2298998.26;2608547.82;2396506;2244508;2371143.6;2464001;2384151;1933465;2359300.98;2237546.5;2268788.92 -5815;'901;Low Income Food Deficit Countries;1861;Roundwood;5516;Production;m3;207290098;210320005;214436411;218970597;223560590;229763862;235017767;240114993;245193969;251296393;256247344;257667244;261518044;264294806;270265877;275524349;281970814;289108527;295472753;302405903;307564681;313844750;319633654;328125675;337517712;343821798;350264834;358233602;367353050;375125107;384609415;393592166;402816306;413853379;425655965;432609499;437003691;442171284;446292518;451252236;458809418;463209426;469750419;476175807;488973985;498650670;505211303;511686733;516291920;522756187;528915850;529848782;535869751;545843677;552311118;558083618;563253260;568395489;573121888;575986673;581411654;587538803;599782468 -5815;'901;Low Income Food Deficit Countries;1861;Roundwood;5616;Import quantity;m3;61500;59500;56501;42101;44000;42000;52000;85200;92800;114300;149300;82600;98000;76800;77000;89600;102900;124900;124800;139800;222300;218100;235200;169500;90800;85690;86110;87153;89300;33072;4182;5680;29389;97781;51108;55907;99512;54156;96890;154164;139567;153581;334961;378157;417158.7;407831;610693;634987;437962;384701;426940;376228;446792.71;473759.13;426623;307416;346647;449186;633481;530240;529648;387987.67;1401661.58 -5815;'901;Low Income Food Deficit Countries;1861;Roundwood;5622;Import value;1000 USD;2313;2405;1899;1557;1791;1864;2419;3676;3739;4377;5236;4819;6825;6715;7028;10745;12419;19187;16800;25556;48292;36561;41272;20733;11268;10530;10799;10884;10435;676;596;747;4109;10653;12126;11270;12613;9998;15510;15262;16028;17592;32877;18778;23318.7;29445;49686;73106;43090.3;43523.4;48984;55397.28;75779.28;85561.72;35734;31462;45687.07;41750;54046;50282;39054;39284.39;41297 -5815;'901;Low Income Food Deficit Countries;1861;Roundwood;5916;Export quantity;m3;745800;727100;894000;1110700;1099000;1224100;1121600;1274500;1411300;1519500;1653700;1518500;1747200;1656100;1135150;1521247;1236900;1455400;1722300;1849400;1259500;1202900;1105800;1270200;1519500;1333886;1464028;2310727;2324400;2323309;2040560;2220649;1744325;1929465;1889505;2247135;2985480;2964774;2105201;2791427;2114998;1967110;1913506;1972083;2045809;2260845;2350301;1881599;1626839;2362683;2807288;3182735;2910017;3909837;4184230;4652604;4488453;3737065;3154922;2401076;3357998;2560339;2552103 -5815;'901;Low Income Food Deficit Countries;1861;Roundwood;5922;Export value;1000 USD;22731;22253;26936;36247;36389;35273;34754;42146;48315;50415;57022;55967;98313;117186;78022;120308;104453;179623;232876;294737;181176;142178;118731;118266;150220;151787;169954;279373;292904;537481;387049;462681;288929;318091;465996;429150;446859;284768;331672;501724;612919;536534;466036;436594;577025;645403;797756;741883;612479;929520;1170341;1335038.45;1252899.4;1526817;1368127;1269595;1344452.23;1350923;1227406;838041;1119382;798886;803395 -5815;'901;Low Income Food Deficit Countries;1862;Roundwood, coniferous;5516;Production;m3;5347365;5429446;5480375;5608167;5809840;5945326;6067002;6240720;6479393;7544900;7730006;7839302;7926101;8059883;8251288;8471550;8754969;9113568;9179211;9141917;9164296;9283149;9201158;9269230;9492385;9720632;10041542;10271261;10443414;10613974;10999389;11449170;14270356;14976002;15428548;16079542;16642896;16944731;17185947;17273104;17221431;17365508;17544900;17692497;19693776;19838637;20154620;20258534;20198955;20382475;20533974;20713645;21240014;23097542;23301346;23499737;23565684;23745586;23826478;23838556;24049809;23991396;24135124 -5815;'901;Low Income Food Deficit Countries;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;284703;403199;552285;432152;397302;224852.68;247912.58 -5815;'901;Low Income Food Deficit Countries;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33267.62;33116;42312;38153;27933;23502.39;22039 -5815;'901;Low Income Food Deficit Countries;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38887;17471;102183;246626;196217;155702;34639 -5815;'901;Low Income Food Deficit Countries;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7513;2657;14134;23087;23746;22019;5299 -5815;'901;Low Income Food Deficit Countries;1863;Roundwood, non-coniferous;5516;Production;m3;201942733;204890559;208956036;213362430;217750750;223818536;228950765;233874273;238714576;243751493;248517338;249827942;253591943;256234923;262014589;267052799;273215845;279994959;286293542;293263986;298400385;304561601;310432496;318856445;328025327;334101166;340223292;347962341;356909636;364511133;373610026;382142996;388545950;398877377;410227417;416529957;420360795;425226553;429106571;433979132;441587987;445843918;452205519;458483310;469280209;478812033;485056683;491428199;496092965;502373712;508381876;509135137;514629737;522746135;529009772;534583881;539687576;544649903;549295410;552148117;557361845;563547407;575647344 -5815;'901;Low Income Food Deficit Countries;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61944;45987;81196;98088;132346;163135;1153749 -5815;'901;Low Income Food Deficit Countries;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12419.46;8634;11734;12129;11121;15782;19258 -5815;'901;Low Income Food Deficit Countries;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4449566;3719594;3052739;2154450;3161781;2404637;2517464 -5815;'901;Low Income Food Deficit Countries;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1336939.23;1348266;1213272;814954;1095636;776867;798096 -5815;'901;Low Income Food Deficit Countries;1864;Wood fuel;5516;Production;m3;193968098;196905005;200787411;204612597;208622590;214229862;218952767;223179693;227562969;232723793;236553944;238327944;241957844;245366306;251052377;255696849;260805514;267145627;272901953;279273603;284451381;290301050;296027054;304357775;312707212;318376287;323629266;330652243;338447795;345986220;355953224;363923271;372569615;382391650;392623651;398623623;402060076;407334612;411367721;415278635;423207918;426289357;432334054;438981827;452274275;460779203;466119100;472622940;477914264;483621889;490447114;491108461;496138509;504753639;510824164;515716233;520642925;525685368;530741276;534454504;539532939;545037991;557311949 -5815;'901;Low Income Food Deficit Countries;1864;Wood fuel;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;40000;43000;32700;32700;32700;32700;32700;32700;32700;1400;0;910;1137;1033;1033;1586;273;262;1387;238;31;2984;4357;563.7;1447;1947;4864;3288;5275;5549;3486;5983.58;14704;33124;36981;699;1218;718;1330;494;1234.67;2229.58 -5815;'901;Low Income Food Deficit Countries;1864;Wood fuel;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;745;885;612;612;612;612;612;612;612;115;0;38;54;49;49;73;50;48;60;38;30;251;300;170.5;164;495;719;512;2337;2633;917;1044.56;1683;4165;4650;95;120;284;616;229;574.39;1467 -5815;'901;Low Income Food Deficit Countries;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;294;294;134;171;9892;518;478;203;7264;14095;12962;20184;11285;12041;11913;10634;6979;45440;30854;37535;9655;9418;98;5986;40125;86709;103169;66760;12132 -5815;'901;Low Income Food Deficit Countries;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;28;28;8;10;319;36;32;15;561;910;792;788;790;807;818;2210;736;3936.45;3672;3574;1777;1761;12;196;3469;6977;9532;5971;2004 -5815;'901;Low Income Food Deficit Countries;1627;Wood fuel, coniferous;5516;Production;m3;3793365;3868446;3956375;4010167;4134840;4206326;4300002;4412420;4517393;5376300;5401606;5465002;5523901;5586383;5689788;5750050;5812069;5884568;5973911;6031817;6097696;6184049;6234158;6368230;6507385;6598632;6672542;6838261;7012964;7146274;7382389;7629170;10389356;10649002;10888748;11094542;11375796;11498771;11694837;11895989;12050241;12206378;12369640;12579507;14278386;14396447;14620380;14754414;14893452;15042940;15168439;15285110;15413513;17262919;17431273;17584908;17703205;17823188;17944890;17923340;18048433;18175346;18304111 -5815;'901;Low Income Food Deficit Countries;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;550;732;452;666;313;983.67;918.58 -5815;'901;Low Income Food Deficit Countries;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37;58;130;278;134;297.39;197 -5815;'901;Low Income Food Deficit Countries;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;5635;32759;86062;102514;64770;11002 -5815;'901;Low Income Food Deficit Countries;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;109;2892;6857;9405;5310;1289 -5815;'901;Low Income Food Deficit Countries;1628;Wood fuel, non-coniferous;5516;Production;m3;190174733;193036559;196831036;200602430;204487750;210023536;214652765;218767273;223045576;227347493;231152338;232862942;236433943;239779923;245362589;249946799;254993445;261261059;266928042;273241786;278353685;284117001;289792896;297989545;306199827;311777655;316956724;323813982;331434831;338839946;348570835;356294101;362180259;371742648;381734903;387529081;390684280;395835841;399672884;403382646;411157677;414082979;419964414;426402320;437995889;446382756;451498720;457868526;463020812;468578949;475278675;475823351;480724996;487490720;493392891;498131325;502939720;507862180;512796386;516531164;521484506;526862645;539007838 -5815;'901;Low Income Food Deficit Countries;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;149;486;266;664;181;251;1311 -5815;'901;Low Income Food Deficit Countries;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58;62;154;338;95;277;1270 -5815;'901;Low Income Food Deficit Countries;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47;351;7366;647;655;1990;1130 -5815;'901;Low Income Food Deficit Countries;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;87;577;120;127;661;715 -5815;'901;Low Income Food Deficit Countries;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;40000;43000;32700;32700;32700;32700;32700;32700;32700;1400;0;910;1137;1033;1033;1586;273;262;1387;238;31;2984;4357;563.7;1447;1947;4864;3288;5275;5549;3486;5983.58;14704;33124;36981;;;;;;; -5815;'901;Low Income Food Deficit Countries;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;38;54;49;49;73;50;48;60;38;30;251;300;170.5;164;495;719;512;2337;2633;917;1044.56;1683;4165;4650;;;;;;; -5815;'901;Low Income Food Deficit Countries;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33;294;294;134;171;9892;518;478;203;7264;14095;12962;20184;11285;12041;11913;10634;6979;45440;30854;37535;9655;9418;;;;;;; -5815;'901;Low Income Food Deficit Countries;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;28;28;8;10;319;36;32;15;561;910;792;788;790;807;818;2210;736;3936.45;3672;3574;1777;1761;;;;;;; -5815;'901;Low Income Food Deficit Countries;1865;Industrial roundwood;5516;Production;m3;13322000;13415000;13649000;14358000;14938000;15534000;16065000;16935300;17631000;18572600;19693400;19339300;19560200;18928500;19213500;19827500;21165300;21962900;22570800;23132300;23113300;23543700;23606600;23767900;24810500;25445511;26635568;27581359;28905255;29138887;28656191;29668895;30246691;31461729;33032314;33985876;34943615;34836672;34924797;35973601;35601500;36920069;37416365;37193980;36699710;37871467;39092203;39063793;38377656;39134298;38468736;38740321;39731242;41090038;41486954;42367385;42610335;42710121;42380612;41532169;41878715;42500812;42470519 -5815;'901;Low Income Food Deficit Countries;1865;Industrial roundwood;5616;Import quantity;m3;61500;59500;56501;42101;44000;42000;52000;85200;92800;114300;149300;82600;98000;76800;77000;89600;102900;124900;124800;139800;222300;178100;192200;136800;58100;52990;53410;54453;56600;372;2782;5680;28479;96644;50075;54874;97926;53883;96628;152777;139329;153550;331977;373800;416595;406384;608746;630123;434674;379426;421391;372742;440809.13;459055.13;393499;270435;345948;447968;632763;528910;529154;386753;1399432 -5815;'901;Low Income Food Deficit Countries;1865;Industrial roundwood;5622;Import value;1000 USD;2313;2405;1899;1557;1791;1864;2419;3676;3739;4377;5236;4819;6825;6715;7028;10745;12419;19187;16800;25556;48292;35816;40387;20121;10656;9918;10187;10272;9823;64;481;747;4071;10599;12077;11221;12540;9948;15462;15202;15990;17562;32626;18478;23148.2;29281;49191;72387;42578.3;41186.4;46351;54480.28;74734.72;83878.72;31569;26812;45592.07;41630;53762;49666;38825;38710;39830 -5815;'901;Low Income Food Deficit Countries;1865;Industrial roundwood;5916;Export quantity;m3;745800;727100;894000;1110700;1099000;1224100;1121600;1274500;1411300;1519500;1653700;1518500;1747200;1656100;1135150;1521247;1236900;1455400;1722300;1849400;1259500;1202900;1105800;1270200;1519500;1333886;1464028;2310727;2324400;2323309;2040560;2220649;1744325;1929432;1889211;2246841;2985346;2964603;2095309;2790909;2114520;1966907;1906242;1957988;2032847;2240661;2339016;1869558;1614926;2352049;2800309;3137295;2879163;3872302;4174575;4643186;4488355;3731079;3114797;2314367;3254829;2493579;2539971 -5815;'901;Low Income Food Deficit Countries;1865;Industrial roundwood;5922;Export value;1000 USD;22731;22253;26936;36247;36389;35273;34754;42146;48315;50415;57022;55967;98313;117186;78022;120308;104453;179623;232876;294737;181176;142178;118731;118266;150220;151787;169954;279373;292904;537481;387049;462681;288929;318090;465968;429122;446851;284758;331353;501688;612887;536519;465475;435684;576233;644615;796966;741076;611661;927310;1169605;1331102;1249227.4;1523243;1366350;1267834;1344440.23;1350727;1223937;831064;1109850;792915;801391 -5815;'901;Low Income Food Deficit Countries;1866;Industrial roundwood, coniferous;5516;Production;m3;1554000;1561000;1524000;1598000;1675000;1739000;1767000;1828300;1962000;2168600;2328400;2374300;2402200;2473500;2561500;2721500;2942900;3229000;3205300;3110100;3066600;3099100;2967000;2901000;2985000;3122000;3369000;3433000;3430450;3467700;3617000;3820000;3881000;4327000;4539800;4985000;5267100;5445960;5491110;5377115;5171190;5159130;5175260;5112990;5415390;5442190;5534240;5504120;5305503;5339535;5365535;5428535;5826501;5834623;5870073;5914829;5862479;5922398;5881588;5915216;6001376;5816050;5831013 -5815;'901;Low Income Food Deficit Countries;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;236;2130;4292;6779;21003;15831;16406;59427;25783;39710;61216;35824;43817;106224;192945;249146;320344;507828;529418;355707;317799;330499;286247;302212;350163;330264;222814;284153;402467;551833;431486;396989;223869;246994 -5815;'901;Low Income Food Deficit Countries;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;365;595;1150;1483;1933;2438;4378;2843;5082;3648;2849;3169;5821;9966;14577.2;20605;36929;44725;25411.3;28558.3;26787;33419;33382;52892;23322;19989;33230.62;33058;42182;37875;27799;23205;21842 -5815;'901;Low Income Food Deficit Countries;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75807;176481;173947;249851;166011;116043;329140;269270;282543;305820;199827;61457;67972;158594;181326;209024;222005;153975;120806;122908;49406;35779;32616;44657;128017;152619;113613;38836;11836;69424;160564;93703;90932;23637 -5815;'901;Low Income Food Deficit Countries;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5110;9994;9650;13543;8831;7547;13498;16062;14931;16413;10892;3569;5693;11015;12812;13929;13658;9334;7683;10159;6016;4790;3589;6707;15321;19298;14022;7504;2548;11242;16230;14341;16709;4010 -5815;'901;Low Income Food Deficit Countries;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;236;2130;4292;6779;21003;15831;16406;59427;25783;39710;61216;35824;43817;106224;192945;249146;320344;507828;529418;355707;317799;330499;286247;302212;350163;330264;222814;284153;402467;551833;431486;396989;223869;246994 -5815;'901;Low Income Food Deficit Countries;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;365;595;1150;1483;1933;2438;4378;2843;5082;3648;2849;3169;5821;9966;14577.2;20605;36929;44725;25411.3;28558.3;26787;33419;33382;52892;23322;19989;33230.62;33058;42182;37875;27799;23205;21842 -5815;'901;Low Income Food Deficit Countries;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75807;176481;173947;249851;166011;116043;329140;269270;282543;305820;199827;61457;67972;158594;181326;209024;222005;153975;120806;122908;49406;35779;32616;44657;128017;152619;113613;38836;11836;69424;160564;93703;90932;23637 -5815;'901;Low Income Food Deficit Countries;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5110;9994;9650;13543;8831;7547;13498;16062;14931;16413;10892;3569;5693;11015;12812;13929;13658;9334;7683;10159;6016;4790;3589;6707;15321;19298;14022;7504;2548;11242;16230;14341;16709;4010 -5815;'901;Low Income Food Deficit Countries;1867;Industrial roundwood, non-coniferous;5516;Production;m3;11768000;11854000;12125000;12760000;13263000;13795000;14298000;15107000;15669000;16404000;17365000;16965000;17158000;16455000;16652000;17106000;18222400;18733900;19365500;20022200;20046700;20444600;20639600;20866900;21825500;22323511;23266568;24148359;25474805;25671187;25039191;25848895;26365691;27134729;28492514;29000876;29676515;29390712;29433687;30596486;30430310;31760939;32241105;32080990;31284320;32429277;33557963;33559673;33072153;33794763;33103201;33311786;33904741;35255415;35616881;36452556;36747856;36787723;36499024;35616953;35877339;36684762;36639506 -5815;'901;Low Income Food Deficit Countries;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;136;652;1388;21700;75641;34244;38468;38499;28100;56918;91561;103505;109733;225753;180855;167449;86040;100918;100705;78967;61627;90892;86495;138597.13;108892.13;63235;47621;61795;45501;80930;97424;132165;162884;1152438 -5815;'901;Low Income Food Deficit Countries;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;116;152;2921;9116;10144;8783;8162;7105;10380;11554;13141;14393;26805;8512;8571;8676;12262;27662;17167;12628.1;19564;21061.28;41352.72;30986.72;8247;6823;12361.46;8572;11580;11791;11026;15505;17988 -5815;'901;Low Income Food Deficit Countries;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2247502;1864079;2046702;1494474;1763421;1773168;1917701;2716076;2682060;1789489;2591082;2053063;1898935;1747648;1776662;1823823;2018656;2185041;1748752;1492018;2302643;2764530;3104679;2834506;3744285;4021956;4529573;4449519;3719243;3045373;2153803;3161126;2402647;2516334 -5815;'901;Low Income Food Deficit Countries;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;532371;377055;453031;275386;309259;458421;415624;430789;269827;314940;490796;609318;530826;454460;422872;562304;630957;787632;733393;601502;921294;1164815;1327513;1242520.4;1507922;1347052;1253812;1336936.23;1348179;1212695;814834;1095509;776206;797381 -5815;'901;Low Income Food Deficit Countries;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16300;66600;18435;24200;24642;16115;50683;56194;56194;72103;71203;23502;23447;14977;14093;18363;19630;8259;21079;25085;59259;40349;17629;14947;18049;9586;6652;2160;3447;9530;660189 -5815;'901;Low Income Food Deficit Countries;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2004;8051;2280;3032;3500;2542;8925;10260;10258;12013;11961;4420;4480;2645;1849;5562;7446;3602;4962;6689.28;20451;9373;4461;3919;7440.7;5024;2254;755;936;2054;4324 -5815;'901;Low Income Food Deficit Countries;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2245817;1861155;2025624;1472457;1757782;1717914;1819567;2592412;2616278;1683601;2452733;1962933;1804954;1641509;1444127;1553614;1797658;2070615;1717283;1466721;2196736;2519850;2990309;2768072;3701657;4012539;4505461;4423931;3711191;3044315;2149267;3154499;2378601;2515352 -5815;'901;Low Income Food Deficit Countries;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;532090;375986;450123;273197;308765;442839;397696;409670;259287;294564;455965;582524;500168;414910;370473;515641;599829;759634;724653;592762;886518;1079083;1202099;1160361;1482942;1344083;1248309;1332644;1346904;1212560;814568;1095092;770844;797257 -5815;'901;Low Income Food Deficit Countries;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;136;652;1388;5400;9041;15809;14268;13857;11985;6235;35367;47311;37630;154550;157353;144002;71063;86825;82342;59337;53368;69813;61410;79338.13;68543.13;45606;32674;43746;35915;74278;95264;128718;153354;492249 -5815;'901;Low Income Food Deficit Countries;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32;116;152;917;1065;7864;5751;4662;4563;1455;1294;2883;2380;14844;4092;4091;6031;10413;22100;9721;9026.1;14602;14372;20901.72;21613.72;3786;2904;4920.76;3548;9326;11036;10090;13451;13664 -5815;'901;Low Income Food Deficit Countries;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1685;2924;21078;22017;5639;55254;98134;123664;65782;105888;138349;90130;93981;106139;332535;270209;220998;114426;31469;25297;105907;244680;114370;66434;42628;9417;24112;25588;8052;1058;4536;6627;24046;982 -5815;'901;Low Income Food Deficit Countries;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;281;1069;2908;2189;494;15582;17928;21119;10540;20376;34831;26794;30658;39550;52399;46663;31128;27998;8740;8740;34776;85732;125414;82159.4;24980;2969;5503;4292.23;1275;135;266;417;5362;124 -5815;'901;Low Income Food Deficit Countries;1868;Sawlogs and veneer logs;5516;Production;m3;5151000;5040000;5122000;5638000;5965000;6294000;6503000;7125300;7551000;8230600;9094400;8494300;8453200;7804500;7694500;7960500;8714300;8935200;8958300;9312200;8926700;8678500;8447500;8196800;8612400;8848411;9193468;9500259;9986155;9968787;9277091;9482795;9257491;9918129;10265314;10736726;10885315;11258822;10992647;11801151;11306050;12003719;11730665;11234230;11635960;12759681;13754905;13428268;12975299;13732990;14530728;15407403;16312684;17289480;17956316;18669106;19015892;19184254;18853326;18041483;18382614;19004431;18969394 -5815;'901;Low Income Food Deficit Countries;1868;Sawlogs and veneer logs;5616;Import quantity;m3;49900;47000;41801;36101;39700;33100;40800;70700;78800;72200;84800;69500;85300;65600;67700;78000;86800;93400;106600;107700;153700;107800;104800;109000;30500;25390;25810;26853;29000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5815;'901;Low Income Food Deficit Countries;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;1878;1790;1165;1215;1485;1378;1574;3102;3308;2771;4034;4040;6147;6022;6250;9878;10906;14035;14980;19331;24242;12295;11908;13108;3708;2970;3239;3324;2875;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5815;'901;Low Income Food Deficit Countries;1868;Sawlogs and veneer logs;5916;Export quantity;m3;730300;704800;870500;1088800;1040100;1162700;1064300;1219800;1367800;1473200;1611700;1487700;1720100;1629700;1107450;1518107;1227000;1446400;1716900;1844800;1249900;1168400;1085500;1256500;1511800;1330286;1198328;1809727;1857600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5815;'901;Low Income Food Deficit Countries;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;22599;22092;26743;36047;35921;34789;34293;41690;47926;50001;56633;55578;97979;116862;77602;120226;103764;178937;232231;294131;179974;140263;117183;117271;149804;151613;159023;257114;272203;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5815;'901;Low Income Food Deficit Countries;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;1447000;1452000;1413000;1479000;1554000;1615000;1631000;1689300;1821000;2024600;2176400;2219300;2246200;2271500;2276500;2429500;2568900;2613000;2576300;2608500;2548500;2585900;2415000;2277000;2326000;2388000;2540000;2559000;2539450;2565700;2682000;2669000;2725000;3214000;3354300;3474000;3681300;3755530;3790605;3673920;3385995;3401265;3491380;3395395;3660795;3684695;3777745;3759225;3560608;3584540;3620540;3983540;4409501;4417623;4449623;4490623;4546491;4613231;4572421;4614049;4700209;4514883;4529846 -5815;'901;Low Income Food Deficit Countries;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;4300;8900;5001;7301;300;5100;5200;13000;38500;24400;38400;43300;38900;12500;26600;19600;61000;55000;23900;22000;77000;70700;70700;70700;100;2686;10;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5815;'901;Low Income Food Deficit Countries;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;185;445;175;304;9;229;234;802;2025;1236;2519;2832;2817;2262;3380;2715;8333;8654;911;620;9182;8339;8339;8339;39;494;2;0;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5815;'901;Low Income Food Deficit Countries;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;;8200;28700;12700;5700;5700;;;;;;;;;;;;;;;;;;;;;5800;400;115300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5815;'901;Low Income Food Deficit Countries;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;;58;304;132;164;168;;;;;;;;;;;;;;;;;;;;;220;14;10663;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5815;'901;Low Income Food Deficit Countries;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;3704000;3588000;3709000;4159000;4411000;4679000;4872000;5436000;5730000;6206000;6918000;6275000;6207000;5533000;5418000;5531000;6145400;6322200;6382000;6703700;6378200;6092600;6032500;5919800;6286400;6460411;6653468;6941259;7446705;7403087;6595091;6813795;6532491;6704129;6911014;7262726;7204015;7503292;7202042;8127231;7920055;8602454;8239285;7838835;7975165;9074986;9977160;9669043;9414691;10148450;10910188;11423863;11903183;12871857;13506693;14178483;14469401;14571023;14280905;13427434;13682405;14489548;14439548 -5815;'901;Low Income Food Deficit Countries;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;45600;38100;36800;28800;39400;28000;35600;57700;40300;47800;46400;26200;46400;53100;41100;58400;25800;38400;82700;85700;76700;37100;34100;38300;30400;22704;25800;26853;29000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5815;'901;Low Income Food Deficit Countries;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;1693;1345;990;911;1476;1149;1340;2300;1283;1535;1515;1208;3330;3760;2870;7163;2573;5381;14069;18711;15060;3956;3569;4769;3669;2476;3237;3324;2875;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5815;'901;Low Income Food Deficit Countries;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;730300;696600;841800;1076100;1034400;1157000;1064300;1219800;1367800;1473200;1611700;1487700;1720100;1629700;1107450;1518107;1227000;1446400;1716900;1844800;1249900;1168400;1085500;1256500;1511800;1330286;1192528;1809327;1742300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5815;'901;Low Income Food Deficit Countries;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;22599;22034;26439;35915;35757;34621;34293;41690;47926;50001;56633;55578;97979;116862;77602;120226;103764;178937;232231;294131;179974;140263;117183;117271;149804;151613;158803;257100;261540;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5815;'901;Low Income Food Deficit Countries;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1135900;1013000;994000;1098000;1079000;987000;1029000;1077000;887036;982548;1281775;1048607;979924;1102613;969723;942523;942523;942523;942523;965283;963623;963623;956623;962001;962281;967025 -5815;'901;Low Income Food Deficit Countries;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;577000;571000;563000;645000;618000;534000;568000;600000;602900;601900;590300;590300;537400;537400;341400;313400;313400;313400;313400;334660;333000;333000;326000;326000;326000;326000 -5815;'901;Low Income Food Deficit Countries;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;558900;442000;431000;453000;461000;453000;461000;477000;284136;380648;691475;458307;442524;565213;628323;629123;629123;629123;629123;630623;630623;630623;630623;636001;636281;641025 -5815;'901;Low Income Food Deficit Countries;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;238900;500000;465800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5815;'901;Low Income Food Deficit Countries;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;10403;22169;20611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5815;'901;Low Income Food Deficit Countries;1870;Pulpwood and particles (1961-1997);5516;Production;m3;;;;;;;;;;;;;;46000;126000;163000;227000;467000;496000;346000;358000;362000;386000;453000;428000;408000;820000;1099000;1086000;1098000;968000;1286000;1139000;1070000;1172500;782000;1004000;;;;;;;;;;;;;;;;;;;;;;;;;; -5815;'901;Low Income Food Deficit Countries;1870;Pulpwood and particles (1961-1997);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;238900;500000;465800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5815;'901;Low Income Food Deficit Countries;1870;Pulpwood and particles (1961-1997);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;10403;22169;20611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5815;'901;Low Income Food Deficit Countries;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;;;;;;46000;126000;131000;211000;451000;463000;330000;343000;325000;362000;424000;391000;377000;379000;419000;435000;435000;451000;649000;634000;565000;608500;605000;578000;;;;;;;;;;;;;;;;;;;;;;;;;; -5815;'901;Low Income Food Deficit Countries;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;;;;;;;;;;;;;;;;32000;16000;16000;33000;16000;15000;37000;24000;29000;37000;31000;441000;680000;651000;663000;517000;637000;505000;505000;564000;177000;426000;;;;;;;;;;;;;;;;;;;;;;;;;; -5815;'901;Low Income Food Deficit Countries;1871;Other industrial roundwood;5516;Production;m3;8171000;8375000;8527000;8720000;8973000;9240000;9562000;9810000;10080000;10342000;10599000;10845000;11107000;11078000;11393000;11704000;12224000;12560700;13116500;13474100;13828600;14503200;14773100;15118100;15770100;16189100;16622100;16982100;17833100;18072100;18411100;18900100;19850200;20473600;21594500;22467150;23054300;22441950;22919150;23178450;23197450;23837350;24698700;24930750;23986750;24224750;24354750;24353750;24353750;24421384;22835395;22363195;22476035;22858035;22588115;22755756;22629160;22562244;22563663;22534063;22534100;22534100;22534100 -5815;'901;Low Income Food Deficit Countries;1871;Other industrial roundwood;5616;Import quantity;m3;11600;12500;14700;6000;4300;8900;11200;14500;14000;42100;64500;13100;12700;11200;9300;11600;16100;31500;18200;32100;68600;70300;87400;27800;27600;27600;27600;27600;27600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5815;'901;Low Income Food Deficit Countries;1871;Other industrial roundwood;5622;Import value;1000 USD;435;615;734;342;306;486;845;574;431;1606;1202;779;678;693;778;867;1513;5152;1820;6225;24050;23521;28479;7013;6948;6948;6948;6948;6948;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5815;'901;Low Income Food Deficit Countries;1871;Other industrial roundwood;5916;Export quantity;m3;15500;22300;23500;21900;58900;61400;57300;54700;43500;46300;42000;30800;27100;26400;27700;3140;9900;9000;5400;4600;9600;34500;20300;13700;7700;3600;26800;1000;1000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5815;'901;Low Income Food Deficit Countries;1871;Other industrial roundwood;5922;Export value;1000 USD;132;161;193;200;468;484;461;456;389;414;389;389;334;324;420;82;689;686;645;606;1202;1915;1548;995;416;174;528;90;90;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5815;'901;Low Income Food Deficit Countries;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;107000;109000;111000;119000;121000;124000;136000;139000;141000;144000;152000;155000;156000;156000;159000;161000;163000;165000;166000;171600;175100;188200;190000;200000;268000;357000;450000;455000;456000;467000;484000;502000;522000;548000;577000;906000;1007800;1113430;1129505;1140195;1140195;1139865;1149880;1149595;1154595;1154595;1154595;1154595;1154595;1217595;1207595;1103595;1103600;1103600;1107050;1110806;981328;976167;976167;975167;975167;975167;975167 -5815;'901;Low Income Food Deficit Countries;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;8064000;8266000;8416000;8601000;8852000;9116000;9426000;9671000;9939000;10198000;10447000;10690000;10951000;10922000;11234000;11543000;12061000;12395700;12950500;13302500;13653500;14315000;14583100;14918100;15502100;15832100;16172100;16527100;17377100;17605100;17927100;18398100;19328200;19925600;21017500;21561150;22046500;21328520;21789645;22038255;22057255;22697485;23548820;23781155;22832155;23070155;23200155;23199155;23199155;23203789;21627800;21259600;21372435;21754435;21481065;21644950;21647832;21586077;21587496;21558896;21558933;21558933;21558933 -5815;'901;Low Income Food Deficit Countries;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;11600;12500;14700;6000;4300;8900;11200;14500;14000;42100;64500;13100;12700;11200;9300;11600;16100;31500;18200;32100;68600;70300;87400;27800;27600;27600;27600;27600;27600;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5815;'901;Low Income Food Deficit Countries;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;435;615;734;342;306;486;845;574;431;1606;1202;779;678;693;778;867;1513;5152;1820;6225;24050;23521;28479;7013;6948;6948;6948;6948;6948;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5815;'901;Low Income Food Deficit Countries;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;15500;22300;23500;21900;58900;61400;57300;54700;43500;46300;42000;30800;27100;26400;27700;3140;9900;9000;5400;4600;9600;34500;20300;13700;7700;3600;26800;1000;1000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5815;'901;Low Income Food Deficit Countries;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;132;161;193;200;468;484;461;456;389;414;389;389;334;324;420;82;689;686;645;606;1202;1915;1548;995;416;174;528;90;90;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5815;'901;Low Income Food Deficit Countries;1630;Wood charcoal;5510;Production;t;3578524;3688908;3801198;3913528;4043748;4141022;4286800;4400559;4576378;4681241;4813381;4911932;5096156;5241822;5381088;5525017;5724000;5929024;6162300;6412017;6604008;6838454;7103738;7460583;7847638;8127488;8369859;8734715;9062546;9464310;9809611;9314798;9657565;10192150;11391044;12064828;11925031;12291421;12258142;12655519;13487651;14066506;14526442;15143118;15594973;16036208;16569407;17140435;17614513;18401709;18657882;19038342;20077612;20519953;21058821;21529571;22003137;22494714;22671900;23140715;24254156;25461115;25660738 -5815;'901;Low Income Food Deficit Countries;1630;Wood charcoal;5610;Import quantity;t;7800;700;300;2200;17700;15300;20900;14200;13400;11700;7800;6800;2400;900;100;100;100;100;100;100;100;200;200;200;200;200;0;0;0;0;0;85;314;316;895;895;2544;1752;2048;2311;2030;1763;1188;1099;1108;1127;1762;2286;1447.2;8542;1908;5139.25;14614.26;10465.26;5510.29;9110;28825;24082;10212;7706;17034.95;131966;156832 -5815;'901;Low Income Food Deficit Countries;1630;Wood charcoal;5622;Import value;1000 USD;472;43;43;60;309;264;356;299;320;278;189;176;72;47;24;24;24;24;24;24;211;345;345;345;345;345;0;0;0;0;0;16;87;76;198;198;529;217;267;403;450;289;246;267;255;211;510;817;871;2232;1112;2043.38;4292.58;3326.39;2126.25;2501;9198.63;8166;3828;5765;6522;47730;24150 -5815;'901;Low Income Food Deficit Countries;1630;Wood charcoal;5910;Export quantity;t;31000;5500;5200;8400;22000;19000;23700;23900;35700;47500;58200;11000;27800;25300;8200;8600;9600;8400;9000;2500;1400;700;2000;800;800;800;800;800;800;800;800;1828;582;13780;315;34915;32240;17243;21805;83265;119959;116742;164781;158522;158789;197678;143085;197079;229694;232618;305644;229152;29578;27727;21741;19914;30303;31078;26647;19220;18613.21;20318;21673 -5815;'901;Low Income Food Deficit Countries;1630;Wood charcoal;5922;Export value;1000 USD;952;195;221;268;441;382;420;580;1122;1531;2203;318;961;1118;367;477;588;494;644;217;162;145;266;128;128;128;128;128;128;128;128;453;169;3111;100;8265;6155;3120;3583;14725;25336;24371;31194;26552;26999;37452;32805;31423;40152;38855;47436;41565;4919;4416;3579;3577;4947.73;4958;5028;3346;2995.02;3593;4549 -5815;'901;Low Income Food Deficit Countries;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106700;109300;111300;116700;138600;136830;148645;178600;191000;189600;193700;189810;204552;197052;200052;499504;1128450;1083410;1122567;1094175;1227058;1227106;1225113;1256944;1254684;1254684 -5815;'901;Low Income Food Deficit Countries;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7962;1698;5997;5497;6777;4006;12562;12875;10803;18477;22007;8748;6279;8092;9360.2;7865.27;13575.82;12715.85;7554.85;17167.85;19573.85;29204.82;14530.82;25822.82;19354.29;176816.82 -5815;'901;Low Income Food Deficit Countries;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;399;78;93;69;98;426;679;679;687;3802;4568;1541.2;1611;2735;2682;2739.44;5611.7;3085.7;2587.66;2203.86;2459.66;9426.66;4430.66;4443.66;4611.77;5512.84 -5815;'901;Low Income Food Deficit Countries;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35610;41330;35646;21625;21537;23651;34317;34317;85162;82078;335118;672026;750164;924920;748388;286853;214870;195868;125444;183370;76401;25312;25006;25885.64;25700;32265 -5815;'901;Low Income Food Deficit Countries;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;980;1149;989;605;607;788;1230;1230;2823;2897;22860;37045;42240;52804;40966;19994;22177;19358;12422;18247;4621;2122;1122;1135;1047;2080 -5815;'901;Low Income Food Deficit Countries;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7200;7200;7200;12600;33500;33500;42000;38000;49300;50100;52800;49700;49700;49700;49700;246152;427098;430058;424760;407516;407616;407664;407671;439502;437242;437242 -5815;'901;Low Income Food Deficit Countries;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40511;40511;44578;44578;3068;1203;1402;1489;510;251;582;2997;2650;2630;9522;6638;1822;3991;2414;3628.2;1370;6031;4375.03;4253.03;4416.03;4924.03;22475;10345;17700;11246.47;160159 -5815;'901;Low Income Food Deficit Countries;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1979;1979;3363;3363;133;41;49;56;23;6;37;172;155;183;3322;3049;1012.2;1149;821;818;661.04;2863.04;1858.04;1967;1245.72;734;8188;3731;4017;4199.11;4319.18 -5815;'901;Low Income Food Deficit Countries;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;323;323;323;323;761;761;6866;862;465;389;2249;12462;12462;62927;60722;313449;650021;727746;901912;726570;262586;187873;174197;102393;159519;54443;3102;2967;3646.64;3481;10358 -5815;'901;Low Income Food Deficit Countries;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;10;10;26;26;205;31;16;16;88;611;611;2181;2203;22106;36191;41371;51815;40195;18544;20792;18536;11290;16916;3526;1095;283;292;276;1210 -5815;'901;Low Income Food Deficit Countries;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6500;6500;6500;6500;113500;96500;99500;102100;104100;104100;105100;103330;106645;140600;141700;139500;140900;140110;154852;147352;150352;253352;701352;653352;697807;686659;819442;819442;817442;817442;817442;817442 -5815;'901;Low Income Food Deficit Countries;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3934;993;657;472;5521;8765;6759;296;4508;4987;6526;3424;9565;10225;8173;8955;15369;6926;2288;5678;5732;6495.27;7544.82;8340.82;3301.82;12751.82;14649.82;6729.82;4185.82;8122.82;8107.82;16657.82 -5815;'901;Low Income Food Deficit Countries;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;178;37;24;20;229;574;358;29;37;46;92;389;507;524;504;480;1519;529;462;1914;1864;2078.4;2748.66;1227.66;620.66;958.15;1725.66;1238.66;699.66;426.66;412.66;1193.66 -5815;'901;Low Income Food Deficit Countries;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4612;932;1325;16522;34612;35116;34849;34464;34784;21160;21148;21402;21855;21855;22235;21356;21669;22005;22418;23008;21818;24267;26997;21671;23051;23851;21958;22210;22039;22239;22219;21907 -5815;'901;Low Income Food Deficit Countries;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;165;36;45;242;1020;964;954;944;958;589;591;700;619;619;642;694;754;854;869;989;771;1450;1385;822;1132;1331;1095;1027;839;843;771;870 -5815;'901;Low Income Food Deficit Countries;1605;Sawdust (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;4 -5815;'901;Low Income Food Deficit Countries;1605;Sawdust (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;5 -5815;'901;Low Income Food Deficit Countries;1605;Sawdust (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;600;374 -5815;'901;Low Income Food Deficit Countries;1605;Sawdust (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;2 -5815;'901;Low Income Food Deficit Countries;1600;Recovered post-consumer wood;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;48;56;56;76;56 -5815;'901;Low Income Food Deficit Countries;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;813;998;1119;686;136 -5815;'901;Low Income Food Deficit Countries;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;11;20;76;83;79 -5815;'901;Low Income Food Deficit Countries;1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;700;900;1100;1;0 -5815;'901;Low Income Food Deficit Countries;1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;7;9;13;0;0 -5815;'901;Low Income Food Deficit Countries;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;2000;10000;10000;10000;10000;10000 -5815;'901;Low Income Food Deficit Countries;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108;1057.7;1000;5686;4867;5867;24119;33764;11397;19725.53;12873.12;5622.71 -5815;'901;Low Income Food Deficit Countries;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86;241.3;356;581;603;744.19;1608;2346;1235;1806;1476.11;1039.49 -5815;'901;Low Income Food Deficit Countries;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;12;0;0;0;0;1989;9426;3502;6773;17506.64;6937.64 -5815;'901;Low Income Food Deficit Countries;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;0;0;0;0;693;3227;3409;2425;5461.09;2244.09 -5815;'901;Low Income Food Deficit Countries;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;0 -5815;'901;Low Income Food Deficit Countries;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108;1057;997;5641;4383;4383;4383;4777;4164;4440;5111.8;4321.6 -5815;'901;Low Income Food Deficit Countries;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72;241;337;544;387;431.71;388;654;563;617;806.94;525.76 -5815;'901;Low Income Food Deficit Countries;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;12;0;0;0;0;0;596;115;122;8239.82;753.82 -5815;'901;Low Income Food Deficit Countries;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;0;0;0;0;0;224;27;28;2504.76;189.76 -5815;'901;Low Income Food Deficit Countries;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;2000;10000;10000;10000;10000;10000 -5815;'901;Low Income Food Deficit Countries;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0.7;3;45;484;1484;19736;28987;7233;15285.53;7761.33;1301.11 -5815;'901;Low Income Food Deficit Countries;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;0.3;19;37;216;312.49;1220;1692;672;1189;669.17;513.73 -5815;'901;Low Income Food Deficit Countries;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;1989;8830;3387;6651;9266.82;6183.82 -5815;'901;Low Income Food Deficit Countries;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;693;3003;3382;2397;2956.33;2054.33 -5815;'901;Low Income Food Deficit Countries;1872;Sawnwood;5516;Production;m3;1825400;1742900;1684000;1878600;1968700;3106100;2861500;2931200;2383100;2515600;2699600;2696700;2808300;2864800;2988300;3077300;3235600;3331500;3269100;3241700;3302300;3192300;2975800;2944100;2992400;3129300;3433000;3307450;2975850;3361300;3413900;3416900;3343950;3515850;3721300;3841300;3765100;3730400;3831400;4285500;3860000;3683000;3689050;3791550;3588268;3708542;3897316;4076728;4195177;4270957;4745913;5026254;5332104;5451716;5551499;5485547;5811411;5868974;6424350;6075566;6166344;6728078;6659214 -5815;'901;Low Income Food Deficit Countries;1872;Sawnwood;5616;Import quantity;m3;355050;406750;377350;341550;327050;358900;404750;379250;387050;444800;408400;309350;327150;371960;316450;267050;413750;336700;410500;488600;481600;389900;259050;428050;485250;493133;193874;277771;254776;193837;198037;558428;201512;242306;343677;451773;532866;596521;693511;834213;889869;1079255;1395330;2331934;2268794;2517140;2943747;3277019;3513252;3697262;4750982;4316011;4953770;5254526;4391025;4273651;4215204;4714269;4262221;4261017;4245680;3699622;3744350 -5815;'901;Low Income Food Deficit Countries;1872;Sawnwood;5622;Import value;1000 USD;18536;22478;18631;17206;16440;17963;17838;19258;19451;26525;25449;19118;29777;54153;43362;44386;74376;61436;72748;115127;107925;87013;57806;83917;90124;93251;37153;54688;48970;40871;41740;125808;37517;48800;78521;96289;109388;100768;112692;108710;116592;139397;212354;313991;346265;376871;558256;675912.1;632183;684299;837179;863618;1040612;1061305;574648;599659;632195.53;767555;710228;703208;725908;713357;653572 -5815;'901;Low Income Food Deficit Countries;1872;Sawnwood;5916;Export quantity;m3;305150;304350;305700;361200;354150;388450;368450;386500;441700;489300;527300;530400;584500;517800;496200;531400;513150;587900;512700;383900;303500;254000;195900;216900;238400;185382;187318;199025;217692;341239;387239;411133;330204;510336;487897;707381;755308;655709;816513;1141036;1045918;939572;932403;1106120;1016903;1137161;1184290;1279876;1001772;1111623;1358506;1268268;1232285;1328765;1223298;1318805;1388833;1566381;1874411;1800651;2133683;2473431;2253828 -5815;'901;Low Income Food Deficit Countries;1872;Sawnwood;5922;Export value;1000 USD;15883;15274;15704;17431;17139;19662;20149;21587;24206;25180;27440;30356;38316;41790;46140;58509;58332;69606;77396;87149;62795;47433;36336;35375;44866;37877;46436;50738;46163;106026;88282;131167;109849;183873;187239;236150;278687;237840;289279;401605;362545;413530;434716;431120;450144;608410;599130;687551;529576;599857;745224.1;761730;797431;885206;824905;769786;781671.36;848547;871954;822862;889363;1017789;1081021 -5815;'901;Low Income Food Deficit Countries;1632;Sawnwood, coniferous;5516;Production;m3;641450;656750;664500;707500;713450;1107100;992050;1005150;837350;918550;996200;994450;1059400;1055600;1074100;1203100;1250900;1189400;1204800;1205100;1190000;1170100;1036150;1114800;1098800;1097550;1178350;1150175;1150375;1144100;1190500;1129400;1181200;1302600;1369700;1406200;1481200;1449200;1469034;1412200;1264200;1235900;1245900;1217500;1133200;1115800;1136700;1198500;1215464;1169350;1205850;1312624;1512247;1518324;1544615;1520488;1589393;1587701;1618701;1527126;1581063;1529734;1456580 -5815;'901;Low Income Food Deficit Countries;1632;Sawnwood, coniferous;5616;Import quantity;m3;234350;287000;252100;215000;171100;199800;221350;222950;227500;296600;247300;204550;205650;237310;216750;168150;282850;219750;278850;294400;319450;238600;146650;296450;343745;361877;114041;168237;146665;91289;93789;185196;112189;173004;187829;280276;359850;394870;445463;592836;638652;806012;1058928;1825086;1750702;2095946;2614603;2913374;3168957;3303769;4389100;4031549;4557617;4774818;4141174;4017561;3812718;4295291;3696456;3634950;3372044;3015986;3104716 -5815;'901;Low Income Food Deficit Countries;1632;Sawnwood, coniferous;5622;Import value;1000 USD;12878;16448;12064;10772;8645;9875;9803;11850;11839;19260;16579;12436;20389;38029;33276;30467;53880;43288;50067;78838;76418;47748;30917;55657;59865;63717;20387;31431;26471;18198;13058;34746;16912;32260;36583;53700;62531;59485;66165;58428;60084;79364;103127;170305;201275;273532;432040;523295;484357;527161;674639;712676;825743;816213;456617;486672;491084.94;605601;548577;514601;533059;592832;549653 -5815;'901;Low Income Food Deficit Countries;1632;Sawnwood, coniferous;5916;Export quantity;m3;48800;55400;49850;51500;50000;52350;52700;58750;97900;138350;166300;145400;149600;112600;116750;130250;144100;158900;74300;42300;58500;14350;15000;13600;13600;3276;14819;7370;13340;30951;45151;80532;11314;66969;105269;218451;242518;222565;153807;153500;160229;123910;166387;166350;75796;109669;107863;124651;177044;99104;82438;106804;83581;78632;92897;82258;116918;76511;115060;247514;291104;137200;131861 -5815;'901;Low Income Food Deficit Countries;1632;Sawnwood, coniferous;5922;Export value;1000 USD;1983;2213;2020;2344;2191;2152;2251;2199;2976;4253;5200;4027;4892;3720;7107;8989;10765;11254;6506;5703;6478;2885;2234;1953;1717;378;1778;986;1711;5116;4427;9261;1877;10783;18505;33101;39899;40578;27853;30014;19818;9060;19913;25888;10972;13619;19182;28047;26626;24113;17539;28092;23455;23159;23314;17732;19258.11;12131;21654;53759;64683;43090;40037 -5815;'901;Low Income Food Deficit Countries;1633;Sawnwood, non-coniferous;5516;Production;m3;1183950;1086150;1019500;1171100;1255250;1999000;1869450;1926050;1545750;1597050;1703400;1702250;1748900;1809200;1914200;1874200;1984700;2142100;2064300;2036600;2112300;2022200;1939650;1829300;1893600;2031750;2254650;2157275;1825475;2217200;2223400;2287500;2162750;2213250;2351600;2435100;2283900;2281200;2362366;2873300;2595800;2447100;2443150;2574050;2455068;2592742;2760616;2878228;2979713;3101607;3540063;3713630;3819857;3933392;4006884;3965059;4222018;4281273;4805649;4548440;4585281;5198344;5202634 -5815;'901;Low Income Food Deficit Countries;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;120700;119750;125250;126550;155950;159100;183400;156300;159550;148200;161100;104800;121500;134650;99700;98900;130900;116950;131650;194200;162150;151300;112400;131600;141505;131256;79833;109534;108111;102548;104248;373232;89323;69302;155848;171497;173016;201651;248048;241377;251217;273243;336402;506848;518092;421194;329144;363645;344295;393493;361882;284462;396153;479708;249851;256090;402486;418978;565765;626067;873636;683636;639634 -5815;'901;Low Income Food Deficit Countries;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;5658;6030;6567;6434;7795;8088;8035;7408;7612;7265;8870;6682;9388;16124;10086;13919;20496;18148;22681;36289;31507;39265;26889;28260;30259;29534;16766;23257;22499;22673;28682;91062;20605;16540;41938;42589;46857;41283;46527;50282;56508;60033;109227;143686;144990;103339;126216;152617.1;147826;157138;162540;150942;214869;245092;118031;112987;141110.59;161954;161651;188607;192849;120525;103919 -5815;'901;Low Income Food Deficit Countries;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;256350;248950;255850;309700;304150;336100;315750;327750;343800;350950;361000;385000;434900;405200;379450;401150;369050;429000;438400;341600;245000;239650;180900;203300;224800;182106;172499;191655;204352;310288;342088;330601;318890;443367;382628;488930;512790;433144;662706;987536;885689;815662;766016;939770;941107;1027492;1076427;1155225;824728;1012519;1276068;1161464;1148704;1250133;1130401;1236547;1271915;1489870;1759351;1553137;1842579;2336231;2121967 -5815;'901;Low Income Food Deficit Countries;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;13900;13061;13684;15087;14948;17510;17898;19388;21230;20927;22240;26329;33424;38070;39033;49520;47567;58352;70890;81446;56317;44548;34102;33422;43149;37499;44658;49752;44452;100910;83855;121906;107972;173090;168734;203049;238788;197262;261426;371591;342727;404470;414803;405232;439172;594791;579948;659504;502950;575744;727685.1;733638;773976;862047;801591;752054;762413.25;836416;850300;769103;824680;974699;1040984 -5815;'901;Low Income Food Deficit Countries;1634;Veneer sheets;5516;Production;m3;55000;56800;73000;88800;107000;99500;125000;143200;156200;148500;147600;192500;202900;177900;130900;143000;149600;161100;168900;173500;155300;148200;162900;152900;146300;139200;121700;129800;126200;130100;113900;113400;112200;114300;116300;119500;171200;145500;97500;105500;95100;212600;196900;176200;226400;209324;275086;254637;239100;231449;222900;228210;248233;242825;277603;307911;306015;328350;370043;328578;360576;364119;511893 -5815;'901;Low Income Food Deficit Countries;1634;Veneer sheets;5616;Import quantity;m3;1700;1300;2600;2841;3420;1700;1600;2500;2400;2700;2300;2300;3500;3300;5000;5900;7600;15300;13600;12300;28000;4000;3800;3700;3700;1436;1301;1330;1309;1749;1749;16202;2416;4468;4383;6280;8934;8036;10102;7489;8193;6121;13832;28447;28952;26487;48039;22281;11895;11879;31557;24181;119643;107090;35148;43362;28707;31565;27120;45321;78537;56988;65986 -5815;'901;Low Income Food Deficit Countries;1634;Veneer sheets;5622;Import value;1000 USD;388;433;478;523;657;403;398;466;451;489;466;427;938;1398;1481;1700;2437;7176;5585;7102;18115;5241;4728;4642;4642;2700;2643;2652;2665;2820;2820;8593;2646;2831;2794;3466;4576;3688;5247;4352;4213;3767;9183;21734;21456;20059;39260;17182;8779;11850;19492;21619;49419;46769;17769;22652;22550.62;20846;17679;16491;27545;24532;34858 -5815;'901;Low Income Food Deficit Countries;1634;Veneer sheets;5916;Export quantity;m3;39700;38900;35500;71200;82100;85600;76600;99400;138200;118400;104500;121600;97600;79800;65000;87000;94300;108800;108700;115000;118100;110600;103100;101500;87300;73200;70700;69300;71700;93200;64800;61144;52170;73793;74339;96972;81159;95656;69366;86615;51615;52738;51604;46732;58140;46998;54173;60512;30939;34730;44042.4;42565;49716;47454;46238;64442;74231;89909;132374;99066;135931;214465;322402 -5815;'901;Low Income Food Deficit Countries;1634;Veneer sheets;5922;Export value;1000 USD;2822;3332;3261;4001;5241;5663;5445;6655;10813;10681;10928;14966;18042;15169;11846;17693;23244;29015;34511;50095;43980;37777;35469;29841;27783;30452;31977;37375;37537;51448;34872;47074;40678;61855;64408;59090;39186;46526;39028;43588;43051;55886;59330;49834;65484;71302;106189;87704;62857;63778;70750.9;62551;58929;53019;51806;55051;58888.73;71158;71239;57438;73265;110398;129294 -5815;'901;Low Income Food Deficit Countries;1873;Wood-based panels;5516;Production;m3;37600;48400;59600;78100;58900;57600;72400;79500;93800;106400;113548;122664;123074;121791;98828;107497;129374;144274;161174;168865;164112;188697;178523;193273;210273;211488;222403;209623;221523;222900;256900;236700;221760;208860;210160;212860;314160;358660;327160;267868;319850;308404;320962;317878;337952;324893;341313;332037;301256;328914;322386;336082;356858;389628;403428;620006;652691;782385;841242;965294;1130087;1462729;1496022 -5815;'901;Low Income Food Deficit Countries;1873;Wood-based panels;5616;Import quantity;m3;15682;18200;25618;27300;27200;35584;30636;40484;42094;42720;60362;93436;97552;114075;101089;91227;98035;109105;104205;105605;159305;155405;150005;135605;111855;84613;51571;45893;37238;32245;26905;124440;61711;99553;138789;164625;266803;303179;461614;361882;394539;542286;803150;1073304;1170092;1061479;1288353;1242794;1463206;1462243.18;1521659;1469247.3;1693061;1755817;1625262;1681172;2027343;2326306;3070688;3143336;3003819.86;2891601.82;3191119.05 -5815;'901;Low Income Food Deficit Countries;1873;Wood-based panels;5622;Import value;1000 USD;2324;2843;3678;4288;4386;5529;5144;6175;6875;7072;10513;18704;26562;32240;30930;35080;38064;42980;42111;45500;63891;70417;65947;49747;45219;26527;18634;17058;16387;15496;11949;38878;26681;29578;46107;52147;70166;69910;74765;68048;82955;86294;154649;222700;258671;241665;338242;410680;387823;436331.78;537250;608144;654005;703497;556003;549613;713624.4;864858;929780;763792;894356.44;900271.62;915896.57 -5815;'901;Low Income Food Deficit Countries;1873;Wood-based panels;5916;Export quantity;m3;8648;7848;9506;13081;20448;20653;20353;26553;19353;19505;18105;16605;17505;18521;18826;24300;21550;31950;30200;22100;32600;30900;31130;25730;27466;22330;19550;15800;17608;9311;8311;17442;16807;16155;21878;35383;74735;72785;94297;76572;55066;45222;52229;94884;101301;69608;70086;69399;53087;66393;57622;78553;79647;68756.51;67839;104538;135153;157826;186645;232305;326336.34;361554.12;377122.12 -5815;'901;Low Income Food Deficit Countries;1873;Wood-based panels;5922;Export value;1000 USD;1273;961;1220;1759;2458;2957;3023;3710;3945;4057;4041;3333;3596;5549;4648;6995;6208;9424;10298;11508;10902;12063;11404;8700;9435;7843;6809;5755;5732;4971;4132;8202;8257;8117;10881;14872;21196;23701;24705;19312;15235;24271;26556;40187;29976;28705;35023;40962;27557;34180;32467;45509.4;42159.4;33352.22;28027;36695;45011.97;63619;66599;78927;103161.64;105094.26;104000.26 -5815;'901;Low Income Food Deficit Countries;1640;Plywood and LVL;5516;Production;m3;37600;48400;59600;75900;56600;52300;61300;62900;71500;78000;84100;88300;88100;86600;68800;72900;85600;99300;113900;105791;112038;125123;120023;132973;140473;141648;136573;135123;144023;147500;184300;168000;153060;136160;138560;141360;215160;233860;184660;127168;174150;166104;205562;205378;235952;222893;239753;230337;250295;264832;252832;262951;275727;291497;305920;352870;353174;392535;415221;483406;547246;674214;683892 -5815;'901;Low Income Food Deficit Countries;1640;Plywood and LVL;5616;Import quantity;m3;7482;9700;13618;14000;14200;17500;19700;22600;26900;25700;29900;45400;45000;53900;47000;44700;49800;60300;58000;59100;61800;71200;69700;57600;59200;34594;30042;26501;28904;23682;18242;81021;35171;49023;99640;82439;81363;130188;107013;91681;123183;108135;185353;174077;185905;216760;194849;233073;284811;356437;328585;410244;458015;455237;362583;473975;586895;556882;686349;722708;823935;847360;907857 -5815;'901;Low Income Food Deficit Countries;1640;Plywood and LVL;5622;Import value;1000 USD;1413;1916;2322;2677;2992;3655;3815;4526;5277;5297;6554;13785;19359;22371;22775;25465;28195;32593;31988;34447;35399;42139;40584;30832;32035;14665;14223;13158;13853;12943;9402;28716;20186;19021;35234;37122;34634;38264;34948;31172;41156;37825;62680;63021;69833;82427;102887;144904;131341;158833;165706;221498;220565;244840;187726;209246;246040.91;228866;248043;240289;289389;313661;346174 -5815;'901;Low Income Food Deficit Countries;1640;Plywood and LVL;5916;Export quantity;m3;8648;7748;9406;12981;20348;20448;19648;25448;17948;17900;16800;15500;16300;16900;17700;21100;19700;30200;28400;20900;31000;30100;30200;22800;24600;21000;18750;15000;16908;8711;7711;13929;14458;13709;17586;26356;65499;63767;65535;53341;44230;32913;32479;38443;43707;41581;45466;45915;24632;41285;34686;50182;44385;30735.51;27834;50680;47407;71803;113632;149346;226471;222709;209862 -5815;'901;Low Income Food Deficit Countries;1640;Plywood and LVL;5922;Export value;1000 USD;1273;952;1207;1748;2447;2902;2939;3609;3812;3918;3893;3173;3377;5183;4490;5984;5426;8812;9630;11017;10213;11649;11034;8116;8859;7438;6624;5538;5557;4810;3971;7107;7585;7378;9214;12146;18340;20888;20476;15975;13826;22723;22946;28481;18223;19495;27821;32732;16203;20416;21098;30441;26415;19336.22;13799;19463;18651.67;31748;37941;51813;67890;63671;59021 -5815;'901;Low Income Food Deficit Countries;1607;Laminated Veneer Lumber (LVL);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -5815;'901;Low Income Food Deficit Countries;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24;1117 -5815;'901;Low Income Food Deficit Countries;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;518 -5815;'901;Low Income Food Deficit Countries;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -5815;'901;Low Income Food Deficit Countries;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -5815;'901;Low Income Food Deficit Countries;1646;Particle board and OSB (1961-1994);5516;Production;m3;;;;2200;2300;5300;11100;16600;22300;24400;24500;25100;25500;23400;17500;20700;31800;32800;34600;46100;35000;48500;43600;42300;51300;54540;64830;55000;57000;55600;53400;47000;48500;55000;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5815;'901;Low Income Food Deficit Countries;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;2600;2900;2500;1000;800;1800;2000;3600;2800;3800;2600;36800;40900;41100;41500;37000;41000;41700;41100;40900;68100;65400;64900;54400;14550;14500;2801;2743;1149;2373;2373;11822;6748;9459;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5815;'901;Low Income Food Deficit Countries;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;224;233;211;97;68;124;166;182;200;253;267;3307;5069;5104;5216;5862;6468;7096;7367;7730;20286;21320;21080;12485;4400;4412;905;925;379;586;586;2753;1769;2291;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5815;'901;Low Income Food Deficit Countries;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;500;900;1200;1400;1100;1000;1100;1100;500;2600;1500;1400;1600;1000;800;200;400;2400;2336;800;200;200;100;100;100;194;201;284;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5815;'901;Low Income Food Deficit Countries;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;41;63;93;97;107;139;192;254;88;861;585;420;607;430;319;102;89;303;295;124;67;99;57;57;57;99;96;155;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5815;'901;Low Income Food Deficit Countries;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55900;55300;64800;81600;95300;93300;96700;96000;96000;96000;85500;85500;88860;88800;38061;51182;51654;53231;53231;73231;73231;224754;234017;288138;299690;361748;339610;341490;332974 -5815;'901;Low Income Food Deficit Countries;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13932;29257;112691;75171;125874;115255;100693;157677;111211;149686;222469;272006;341987;436032;445046;453271;572856;532568;687693;701814;630694;640127;610871;735194;949893;978343;928195.39;982972;1283642 -5815;'901;Low Income Food Deficit Countries;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3845;5442;19087;10751;12917;14476;15796;14797;20341;24228;47246;45241;65308;94710;84880;90193;141691;146132;185285;201067;105426;118213;119717.81;162848;169745;147220;231888.2;238371;231735 -5815;'901;Low Income Food Deficit Countries;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4101;8979;9180;8928;5367;4044;4044;5054;8433;44483;45838;17687;18264;15820;20292;17781;11516;7719;4810;2108;7677;11744;20716;12677;7328;18716;21118.69;27943.29;40983.29 -5815;'901;Low Income Food Deficit Countries;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1571;2718;2839;2785;632;772;723;774;1517;7511;7612;4702;4227;4544;6463;8678;4220;3415.4;2202;1071;2561;3087;3386.6;3020;1017;2524;3910;4072.52;5916.52 -5815;'901;Low Income Food Deficit Countries;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 -5815;'901;Low Income Food Deficit Countries;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;127;85;1196;1852;7716;16948;18548;13471;13403;14108;5510;8075;9650;15552;22097;21122;14089;6276;13960;26766;53278;56864;42935.18;50955;67351 -5815;'901;Low Income Food Deficit Countries;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;11;151;243;1625;2867;3377;3365;4261;5009;2091;4003;4073;6516;9422;8645;6260;2465;5144.41;10035;10394;9290;11400.19;11882;13704 -5815;'901;Low Income Food Deficit Countries;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;3;3;2;15;3;2;2;110;113;114;21;10;10;406;102;97;3345;358;189;188 -5815;'901;Low Income Food Deficit Countries;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4;3;3;4;15;16;8;8;96;95;92;21;7;7;101.5;86;80;89;81;90;81 -5815;'901;Low Income Food Deficit Countries;1874;Fibreboard;5516;Production;m3;;;;;;;;;;4000;4948;9264;9474;11791;12528;13897;11974;12174;12674;16974;17074;15074;14900;18000;18500;15300;21000;19500;20500;19800;19200;21700;20200;17700;15700;16200;34200;43200;47200;47400;49000;46300;19400;16500;16500;16500;12700;12900;12900;12900;17900;19900;27900;24900;24277;42382;65500;101712;126331;120140;243231;447025;479156 -5815;'901;Low Income Food Deficit Countries;1874;Fibreboard;5616;Import quantity;m3;5600;5600;9500;12300;12200;16284;8936;14284;12394;13220;27862;11236;11652;19075;12589;9527;7235;7105;5105;5605;29405;18805;15405;23605;38105;35519;18728;16649;7185;6190;6290;31597;19792;41071;25217;52929;72749;97820;228600;154861;169467;274622;498870;732593;743170;559242;738114;559581;727839;644460.18;610568;510883.3;525256;577644;617896;560794;815617;1007464;1381168;1385421;1208754.29;1010314.82;932269.05 -5815;'901;Low Income Food Deficit Countries;1874;Fibreboard;5622;Import value;1000 USD;687;694;1145;1514;1326;1750;1163;1467;1398;1522;3692;1612;2134;4765;2939;3753;3401;3291;2756;3323;8206;6958;4283;6430;8784;7450;3506;2975;2155;1967;1961;7409;4726;8266;7028;9583;16445;20895;26895;22389;25852;33429;70003;132584;138215;110632;165786;166057;169511;183302.78;225780;233998;238733;248945;256591;219689;342721.26;463109;501598;366993;361679.05;336357.62;324283.57 -5815;'901;Low Income Food Deficit Countries;1874;Fibreboard;5916;Export quantity;m3;;100;100;100;100;205;205;205;205;205;205;105;105;521;626;600;350;350;200;200;800;600;530;530;530;530;600;600;600;500;500;3319;2148;2162;191;48;56;90;23395;19187;6792;7255;11307;11955;11753;10338;6341;7661;8161;7325;11310;20539;30338;35892;32318;42104;66624;73244;65588;60898;78388.65;110712.83;126088.83 -5815;'901;Low Income Food Deficit Countries;1874;Fibreboard;5922;Export value;1000 USD;;9;13;11;11;55;43;38;40;42;41;21;27;112;70;150;197;192;61;61;370;312;281;281;281;281;118;118;118;104;104;996;576;584;96;8;17;28;3597;2565;686;774;2089;4192;4138;4504;2960;3670;4883;5078;7053;11558;13450.4;12924;11660;14138;22872.2;28765;27561;24501;31280.64;37260.74;38981.74 -5815;'901;Low Income Food Deficit Countries;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13200;13200;31200;43200;47200;47400;49000;46300;19400;16500;16500;16500;12700;12900;12900;12900;12900;12900;12900;12900;12150;14382;11500;11500;11200;11200;133775;171593;179215 -5815;'901;Low Income Food Deficit Countries;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5848;17300;28473;42994;130200;58016;53177;59735;117185;109489;125749;180639;157342;132627;134221;126804;134786;161088;168937;144609;144672;116489;126559;160191;168093;167647;151308.07;139678.05;109237.05 -5815;'901;Low Income Food Deficit Countries;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1853;4126;6959;10296;10555;10970;11135;11281;25369;36219;42289;55080;54488;59013;39588;39826;53935;71170;73442;58971;51055;38396;39739.32;42294;45764;44317;47645;48953.57;50352.57 -5815;'901;Low Income Food Deficit Countries;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;8;38;23279;19021;6626;7090;8505;9273;9069;8332;4407;2329;2748;1781;2135;3832;10469;4467;3227;2412;4826;6513;9605;13384;13147.69;9595.83;22209.83 -5815;'901;Low Income Food Deficit Countries;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;9;15;3583;2521;645;733;1192;3689;3635;3584;1890;1110;1653;1571;1776;4140;4738;2296;1585;1089;2082;3046;4231;5422;5914.72;5521.74;6252.74 -5815;'901;Low Income Food Deficit Countries;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;5000;7000;15000;12000;12127;28000;54000;85285;113498;104201;99956;273867;298376 -5815;'901;Low Income Food Deficit Countries;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9714;11102;23173;26761;77394;81109;87636;165260;182024;392023;378585;330773;535259;390308;504666;418686.18;355664;285367.3;272726;303588;354774;351912;530296;679461;952179;984156;834831.25;760993;772875 -5815;'901;Low Income Food Deficit Countries;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3455;2835;7009;7964;14358;9471;12471;19239;24604;66921;65024;47179;101565;96009;104496;109923.78;120140;130062;130549;143303;161156;140170;253732.11;369651;401474;266832;270457.5;262306;242522 -5815;'901;Low Income Food Deficit Countries;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;3;3;3;3;3;986;1196;1197;644;620;4427;5028;5094;8684;16291;18840;30792;28486;39070;60920;66246;54861;46393;63980.96;84869;100782 -5815;'901;Low Income Food Deficit Countries;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;5;5;5;5;5;744;250;250;416;484;1999;2680;2873;4560;6996;8118.4;10160;9623;12682;20327.6;25519;22918;18669;24949.92;29635;32132 -5815;'901;Low Income Food Deficit Countries;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;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;4927;1633;4739;9500;1565;1565 -5815;'901;Low Income Food Deficit Countries;1650;Other fibreboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;11600;4300;5400;5600;7800;11300;9300;10200;80;0;0;5170;1393;2037;9655;24527;21103;28065;21006;15736;28654;49627;199661;231081;238836;47830;45513;36646;88952;98970;120118;64428;83593;129447;118450;92393;158762;167812;260896;233618;222614.97;109643.77;50157 -5815;'901;Low Income Food Deficit Countries;1650;Other fibreboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;1600;622;560;523;504;566;405;678;11;0;0;1105;501;871;1720;2622;2477;2635;1982;1948;2246;2909;20030;29444;30902;8373;9733;11035;25427;33553;51705;32766;34742;46671;44380;41123;49249.83;51164;54360;55844;43576.55;25098.06;31409 -5815;'901;Low Income Food Deficit Countries;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;143;143;191;48;48;49;113;163;163;162;1816;1486;1487;1362;1314;905;385;450;491;416;1029;633;605;622;878;485;1122;1121;1260;16248;3097 -5815;'901;Low Income Food Deficit Countries;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;88;88;96;8;8;8;9;39;36;36;153;253;253;504;586;561;550;634;717;422;594;468;452;367;462.6;200;412;410;416;2104;597 -5815;'901;Low Income Food Deficit Countries;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;;;;;;;;;;;948;1264;1474;3791;4528;5897;3974;4174;4674;8974;9074;7074;8900;12000;12500;11300;16500;16400;16700;16700;16700;19200;17200;15200;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5815;'901;Low Income Food Deficit Countries;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;5600;5600;9500;12300;12200;16284;8936;14284;12394;13220;27862;11236;11652;19075;12589;9527;7235;7105;5105;5605;17805;14505;10005;18005;30305;24219;9428;6449;7105;6190;6290;26427;18399;39034;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5815;'901;Low Income Food Deficit Countries;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;687;694;1145;1514;1326;1750;1163;1467;1398;1522;3692;1612;2134;4765;2939;3753;3401;3291;2756;3323;6606;6336;3723;5907;8280;6884;3101;2297;2144;1967;1961;6304;4225;7395;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5815;'901;Low Income Food Deficit Countries;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;100;100;100;100;205;205;205;205;205;205;105;105;521;626;600;350;350;200;200;800;600;530;530;530;530;600;600;600;500;500;3319;2005;2019;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5815;'901;Low Income Food Deficit Countries;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;9;13;11;11;55;43;38;40;42;41;21;27;112;70;150;197;192;61;61;370;312;281;281;281;281;118;118;118;104;104;996;488;496;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5815;'901;Low Income Food Deficit Countries;1879;Total fibre furnish;5510;Production;t;9000;13700;14900;28200;35200;41300;47200;52900;60800;69900;74500;82700;94100;89000;120573;172400;177300;190300;228300;239300;238300;248300;263000;312600;306200;255200;304200;325200;329200;339170;338500;359440;378700;358100;361900;362100;371100;407500;405000;424800;416800;437800;440800;467800;460800;478800;499700;504300;397300;363300;378800;387700;398900;486300;470900;491227;499108;494275;496670;500878;449130;458270;458270 -5815;'901;Low Income Food Deficit Countries;1879;Total fibre furnish;5610;Import quantity;t;;;;;;;;4100;4100;6800;7900;7500;9700;14609;7612;21681;24926;31654;35164;36300;46400;43500;29700;33000;37500;43305;39468;40098;31326;13494;13694;37799;79790;93130;104361;80362;72936;81567;79455;85908;137192;129252;157855;227281;224737;173782;158699;150161;123987.2;120970;106043;73793;102281.06;92885;73285;83378;88498;130750;209801;181950;173722.31;224644.25;260702.48 -5815;'901;Low Income Food Deficit Countries;1879;Total fibre furnish;5622;Import value;1000 USD;;;;;;;;471;471;1586;1586;1586;2471;4062;1532;5430;5638;7837;9282;11535;13976;14686;12291;13480;13066;13118;9848;8576;6166;3801;3863;12272;23767;36057;59433;28908;22759;23964;25278;34286;44989;44202;54396;63398;63163;66188;71209;79106;53834.6;76097;63530;44424;74271.2;64333.25;37091;35992;39796.76;63153;110565;94500;115998.04;170232.36;188834.59 -5815;'901;Low Income Food Deficit Countries;1879;Total fibre furnish;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;513;4706;3125;4001;3020;2795;3865;4385;5678;5968;7188;14043;26976;28267;25378;28345;33885;41087;65939;70138;85344;92855;105771;114175;123209;158577;130584;91716;78367;111665.2;115136.37;86181.37 -5815;'901;Low Income Food Deficit Countries;1879;Total fibre furnish;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;;;;;303;526;718;1017;1078;1065;1762;1855;1831;1864;2011;4155;6603;7469;7229;7029;9748;10035;14483.4;20547;20195;20185;20563;33685;38661;48090.36;42667;33364;32428;43307.86;49647.5;52388.5 -5815;'901;Low Income Food Deficit Countries;1878;Pulp for paper;5510;Production;t;9000;13700;13900;27200;34200;40300;46200;51900;59800;66900;71500;78700;81100;85000;116573;141400;146300;158300;194300;204300;206300;206300;209000;219600;211200;209200;250200;254200;255200;277200;276600;293600;308700;281200;284100;284300;293400;293100;292900;293100;293100;314100;313100;340100;333100;351100;361000;360600;247600;200600;206100;208000;206000;206000;205500;209316;213017;213100;213690;209758;215264;204242;204242 -5815;'901;Low Income Food Deficit Countries;1878;Pulp for paper;5610;Import quantity;t;;;;;;;;4100;4100;6800;7900;7500;9700;11800;4700;19200;21100;27200;28900;27700;29600;24900;19200;29500;28000;28300;30000;26500;23400;3500;3500;17744;63711;71220;76378;50756;42316;49024;51871;51243;92767;88151;110232;134133;133030;130853;115196;98861;90223.2;89766;67102;42981;73491.06;63375;38958;40651;43735;64137;134674;113369;110270.19;125542.25;160485.48 -5815;'901;Low Income Food Deficit Countries;1878;Pulp for paper;5622;Import value;1000 USD;;;;;;;;471;471;1586;1586;1586;2471;3507;890;4948;4867;7208;8498;10270;11466;10305;8937;12622;11772;10158;8137;6262;4381;2284;2284;9195;21103;31474;53401;23531;17987;20594;22186;29770;39227;38329;47181;52759;52561;58254;62168;67635;46014.6;67548;52966;35018;67491.2;56032.25;28603;26510;27333.76;46764;91569;77183;99868.37;142326.36;162843.59 -5815;'901;Low Income Food Deficit Countries;1878;Pulp for paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;148;158;141;169;545;1310;1402;2016;2015;2315;2712;4474;7662;8908;7375;6400;6664;6568;10051;9082;8857;7212;5169;14197;15537;18140;18839;19983;21538;25899;28485.12;28446.12 -5815;'901;Low Income Food Deficit Countries;1878;Pulp for paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;77;68;206;441;897;1599;1666;1450;1488;1550;2995;4672;5525;5092;4003;4826;3545;6971;11349;7853;6787;4801;18294;22273;25926.17;25227;24474;26499;30866;37211;44676 -5815;'901;Low Income Food Deficit Countries;1875;Wood pulp;5510;Production;t;4000;2700;3400;14700;14900;15000;15000;18800;19800;21900;26500;26800;29100;33000;49573;74400;79300;91300;127300;137300;139300;139300;142000;152600;144200;142200;183200;187200;188200;210200;209600;226600;241700;214200;217100;217300;216700;216700;216500;216700;216700;216700;214700;238700;233700;245700;245700;245700;159700;112700;118200;120100;120100;120100;120100;120100;119400;119400;119400;112000;113128;112874;112874 -5815;'901;Low Income Food Deficit Countries;1875;Wood pulp;5610;Import quantity;t;;;;;;;;4100;4100;4100;4100;4100;4100;4100;4100;18600;20500;20300;23300;22100;24000;20800;15100;21400;21000;23600;26000;26500;23400;3500;3500;17415;63993;71876;75868;50625;43463;49088;52854;51395;93727;88845;113185;134266;137743.7;134704;127032;102960;93823;91861;68589;46079;56132.06;48597;38573;40114;42754;63688;132860;113513;109223.91;126939.81;161156.04 -5815;'901;Low Income Food Deficit Countries;1875;Wood pulp;5622;Import value;1000 USD;;;;;;;;471;471;471;471;471;471;471;471;4529;4448;4620;6449;8221;9417;7669;6301;7737;8175;8166;5657;6262;4381;2284;2284;8977;21028;31572;53049;23352;18773;21038;22824;29821;39432;38388;48166;52701;57368.6;61891;71991;69893;46472;67325;50860;36520;39665.2;33446.25;27846;26075;26489.7;45647;89811;76810;98323.09;143390.49;162719.72 -5815;'901;Low Income Food Deficit Countries;1875;Wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;148;333;315;129;505;777;821;1600;1739;1739;1533;2081;2497;2497;2431;2508;2547;2614;5117;4168;4608;4705;4292;2347;2250;2999;2992;2140;2111;2188;3122.12;3233.12 -5815;'901;Low Income Food Deficit Countries;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;157;147;135;370;494;522;1010;1070;1070;772;1126;1203;1203;1192;1292;1360;1347;3351;2688;3134;3158;2902;1538;1507;2204;2189;1481;1445;1614;2282;2487 -5815;'901;Low Income Food Deficit Countries;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25000;25000;25000;25000;26128;25874;25874 -5815;'901;Low Income Food Deficit Countries;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;799;1066;1318;806;1130.66;1890;4379 -5815;'901;Low Income Food Deficit Countries;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;585.09;737;1335;844;1578;2832;4318 -5815;'901;Low Income Food Deficit Countries;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;0;0;0;0;0;0 -5815;'901;Low Income Food Deficit Countries;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;0;0;0;0;0;6 -5815;'901;Low Income Food Deficit Countries;1654;Mechanical wood pulp (1961-2016);5510;Production;t;4000;2700;3400;7700;7900;8000;8000;11800;12800;14900;15400;15700;17600;18500;23200;23800;25700;28700;30700;32700;34700;34700;37000;39800;37200;33900;42700;43700;43700;44100;42300;42300;42400;41900;41800;42000;41400;41400;41200;41400;41400;41400;46400;49400;49400;50400;50400;50400;41400;25400;25400;25400;25400;25400;25400;25400;;;;;;; -5815;'901;Low Income Food Deficit Countries;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5284;624;3760;3760;3563;4158;2233;1125;1025;1125;1137;983;1448;1471;1179;1181;1214;1290;1418;1275;1389;1212.06;759;698;1021;;;;;;; -5815;'901;Low Income Food Deficit Countries;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2306;170;1460;1460;1249;1409;421;305;280;303;312;422;551;571;506;504;519;573;882;972;970;1140.2;445;483;526;;;;;;; -5815;'901;Low Income Food Deficit Countries;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;5;5;5;10;10;10;7;7;8;7;0;0;0;;;;;;; -5815;'901;Low Income Food Deficit Countries;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;1;1;1;15;15;15;19;19;19;19;0;0;0;;;;;;; -5815;'901;Low Income Food Deficit Countries;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;4100;4100;4500;4500;4373;5600;5600;8600;10600;11600;9600;8600;9000;12800;12000;12300;15500;20500;20500;23100;22300;22300;22300;22300;22300;22300;22300;22300;22300;22300;22300;22300;15300;15300;15300;31300;31300;31300;31300;300;300;300;300;300;300;300;;;;;;; -5815;'901;Low Income Food Deficit Countries;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;124;799;710;628;628;722;249;184;157;257;234;2182;5268;5268;2209;2745;2655;2514;4711;8055;4473;2018;936;751;810;;;;;;; -5815;'901;Low Income Food Deficit Countries;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53;334;293;282;282;278;93;59;56;98;80;1034;2079;2079;863;1339;1714;1494;3127;5261;2793;1133;525.25;493;443;;;;;;; -5815;'901;Low Income Food Deficit Countries;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;110;110;110;153;156;156;991;738;221;232;119;117;117;;;;;;; -5815;'901;Low Income Food Deficit Countries;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;41;41;41;98;129;129;168;159;135;135;44;40;40;;;;;;; -5815;'901;Low Income Food Deficit Countries;1656;Chemical wood pulp;5510;Production;t;;;;7000;7000;7000;7000;7000;7000;7000;7000;7000;7000;10000;22000;45000;48000;54000;86000;93000;95000;96000;96000;100000;95000;96000;125000;123000;124000;143000;145000;162000;177000;150000;153000;153000;153000;153000;153000;153000;153000;153000;153000;174000;169000;164000;164000;164000;87000;87000;92500;94400;94400;94400;94400;94400;94400;94400;94400;87000;87000;87000;87000 -5815;'901;Low Income Food Deficit Countries;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;4100;4100;4100;4100;4100;4100;4100;4100;18600;20500;20300;23300;22100;24000;20800;15100;21400;21000;23600;26000;26500;23400;3500;3500;11945;61524;65974;71196;46179;36535;44562;48873;48083;90196;85412;105850;125594;124731;126765;110437;93171;84831;81772;55771;35979;48540;45482;36108;37223;40801;61132;129945;110576;106324.25;121519.76;153063 -5815;'901;Low Income Food Deficit Countries;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;471;471;471;471;471;471;471;471;4529;4448;4620;6449;8221;9417;7669;6301;7737;8175;8166;5657;6262;4381;2284;2284;6576;20021;29191;51103;21651;15895;19270;21136;28444;37978;37001;44611;48629;48563;56135;59478;62969;41877;60777;42747;29957;34027;30865;26048;24191;25083.72;44007;87453;74525;95406.09;137215.85;154964.07 -5815;'901;Low Income Food Deficit Countries;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;148;158;140;129;505;681;702;1481;1620;1620;1437;1985;2278;2278;2216;2229;2261;2409;4075;3379;4317;4404;4111;2172;2075;2934;2934;2082;2053;2134;3068.12;3035.12 -5815;'901;Low Income Food Deficit Countries;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93;77;67;135;370;398;410;898;958;958;676;1030;1060;1060;1052;1074;1108;1184;3144;2490;2950;2974;2828;1471;1440;2162;2162;1454;1418;1587;2255;2281 -5815;'901;Low Income Food Deficit Countries;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;15000;15000;15000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;97000;93000;90000;90000;90000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000;27000 -5815;'901;Low Income Food Deficit Countries;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2378;364;1171;3900;3024;1623;423;1962;2747;3237;3681;18234;16423;2106;19616;18056;8572;16128;14007;3933;4481;4454;7475;6236;4993;4993;3906;8392;8049.68;9826.76;8179 -5815;'901;Low Income Food Deficit Countries;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;738;126;781;1858;1355;731;232;667;890;1388;1967;6890;5925;883;9703;7580;2772;7756;7982;2237;2141;2235;3127;2817;2065;2065;1942;5626;6160.4;6943.85;5779.07 -5815;'901;Low Income Food Deficit Countries;1662;Chemical wood pulp, sulphate, unbleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;10;10;10;10;10;10;116;109;302;501;500;505;622;622;622;622;609;503;574;628 -5815;'901;Low Income Food Deficit Countries;1662;Chemical wood pulp, sulphate, unbleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;3;3;3;3;3;3;200;207;340;449;441;445;515;513;513;512;511;451;497;559 -5815;'901;Low Income Food Deficit Countries;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;13000;10000;10000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;17000;34000;33000;31000;31000;31000;17000;17000;22500;24400;24400;24400;24400;24400;24400;24400;24400;17000;17000;17000;17000 -5815;'901;Low Income Food Deficit Countries;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7592;50934;60562;61298;37589;30119;41308;47686;43176;84292;80000;97765;99836;99706;120037;88840;72730;69368;62300;39205;28806;40738;39987;26669;29417;35502;55533;122654;98532;97302.57;111081;144099 -5815;'901;Low Income Food Deficit Countries;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3915;15958;26556;46309;17479;13323;17816;20613;25402;35003;34477;40462;38275;38208;53107;48413;53314;34247;49720;32484;25069;28414;27699;20543;20176;22625.37;41688;83175;66127;88542.69;129598;148176 -5815;'901;Low Income Food Deficit Countries;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;130;140;140;105;505;658;679;658;766;766;790;989;1994;1994;1901;1904;1936;2055;3615;2929;3699;3587;3538;1643;1408;2312;2312;1460;1444;1631;2309;2407 -5815;'901;Low Income Food Deficit Countries;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83;67;67;116;370;389;401;389;435;435;443;537;927;927;900;903;937;1010;2773;2109;2447;2362;2331;1015;898;1649;1649;942;907;1116;1574;1721 -5815;'901;Low Income Food Deficit Countries;1686;Chemical wood pulp, sulphite;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43000;43000;43000;43000;43000;43000;43000 -5815;'901;Low Income Food Deficit Countries;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;306;606;3385;3652;972;612;785 -5815;'901;Low Income Food Deficit Countries;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;393.35;254;2336;2772;703;674;1009 -5815;'901;Low Income Food Deficit Countries;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;185.12;0.12 -5815;'901;Low Income Food Deficit Countries;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;20;184;1 -5815;'901;Low Income Food Deficit Countries;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;29000;30000;31000;31000;32000;27000;28000;29000;29000;73000;73000;74000;98000;108000;89000;91000;91000;91000;91000;91000;91000;91000;91000;91000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;43000;;;;;;; -5815;'901;Low Income Food Deficit Countries;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;304;1394;3893;300;300;300;0;3;500;714;569;635;663;643;643;288;732;958;894;894;2156;600;1266;698;;;;;;; -5815;'901;Low Income Food Deficit Countries;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;151;747;863;66;66;66;0;4;118;219;157;176;183;178;178;123;1124;1260;396;396;2224;499;1740;513;;;;;;; -5815;'901;Low Income Food Deficit Countries;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;31;31;31;60;60;57;32;32;32;5;26;;;;;;; -5815;'901;Low Income Food Deficit Countries;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;0;0;0;0;0;0;0;19;19;19;22;22;25;14;14;32;1;15;;;;;;; -5815;'901;Low Income Food Deficit Countries;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;;;;;;; -5815;'901;Low Income Food Deficit Countries;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3500;3500;4353;7908;3654;4834;4390;3092;1331;764;2942;2657;1461;3835;6889;7939;3979;1338;2097;6159;2386;1665;2346;1165;441;698;872;;;;;;; -5815;'901;Low Income Food Deficit Countries;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2284;2284;2661;3174;1762;3150;2248;1151;657;291;2371;1967;917;2025;3288;4247;1967;1184;1952;3734;2041;1885;2255;1248;432;638;685;;;;;;; -5815;'901;Low Income Food Deficit Countries;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;0;24;0;23;23;823;854;854;647;996;274;274;274;284;284;284;284;284;284;284;41;19;19;;;;;;; -5815;'901;Low Income Food Deficit Countries;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;0;19;0;9;9;509;523;523;233;493;130;130;130;149;149;149;149;149;149;149;24;10;12;;;;;;; -5815;'901;Low Income Food Deficit Countries;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 -5815;'901;Low Income Food Deficit Countries;1667;Dissolving wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62;1046;1432;284;255;2048;2044;2672;2130;2149;2062;4170;1956;6273.7;4551;12669;5920;5188;3960;3488;4238;4362;1420;1016;1060;1154;1490;1597;2131;1769;3530.05;3714.05 -5815;'901;Low Income Food Deficit Countries;1667;Dissolving wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42;503;628;204;170;1191;1254;1324;1041;1053;995;2099;1442;6155.6;4387;10670;4691;2528;2539;1880;2800;3365;1611;822;915;820.9;903;1023;1441;1339;3342.64;3437.64 -5815;'901;Low Income Food Deficit Countries;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;175;175;0;0;96;119;119;119;119;96;96;104;104;100;116;120;39;44;44;62;62;62;58;58;58;58;58;58;54;54;198 -5815;'901;Low Income Food Deficit Countries;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80;80;0;0;96;112;112;112;112;96;96;101;101;98;105;108;19;20;20;30;30;30;27;27;27;27;27;27;27;27;200 -5815;'901;Low Income Food Deficit Countries;1668;Pulp from fibres other than wood;5510;Production;t;5000;11000;10500;12500;19300;25300;31200;33100;40000;45000;45000;51900;52000;52000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;67000;76700;76400;76400;76400;76400;97400;98400;101400;99400;105400;115300;114900;87900;87900;87900;87900;85900;85900;85400;89216;93617;93700;94290;97758;102136;91368;91368 -5815;'901;Low Income Food Deficit Countries;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;8100;7000;4700;4000;0;0;0;0;391;764;776;794;386;901;1980;1689;1978;1189;1368;1217;1823;1560;700;833;1821;1588.2;1865;2001;1140;21721;16198;1401;1597;2135;1939;3411;1987;2815.28;2132.48;3043.48 -5815;'901;Low Income Food Deficit Countries;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;4885;3597;1992;2480;0;0;0;0;260;578;530;556;349;405;810;686;990;848;936;1114;1500;1348;750;847;2433;2070.6;2762;3986;1298;31191;24197;1579;1350;1664.96;2020;2781;1814;2884.28;2278.52;3561.52 -5815;'901;Low Income Food Deficit Countries;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;40;40;629;700;535;395;695;1275;2489;5269;6515;5044;4008;4237;3993;4978;4958;4311;2569;939;11908;13345;15199;15905;17901;19485;23765;25417;25411 -5815;'901;Low Income Food Deficit Countries;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;71;71;499;1189;768;492;530;874;1965;3570;4423;3998;2816;3574;2217;3640;8681;4749;3659;1929;16783;20793;23749.17;23065;23020;25081;29279;34956;42389 -5815;'901;Low Income Food Deficit Countries;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;13;1;200;2264;944;744;1080;803;1291;1025;1303;1532;861;997;933;2238;3267;3638;9312;4308;2172;1208;1640.27;1347 -5815;'901;Low Income Food Deficit Countries;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;5;0;103;718;153;50;107;96;356;182;216;289;424;1139;594;600;997;1195.31;2302;1583;1093;618;936.19;683.56 -5815;'901;Low Income Food Deficit Countries;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;73;32;32;223;221;231;231;50;45;45;36;36;87;88;212;215;258;258;246;348.14;390.14 -5815;'901;Low Income Food Deficit Countries;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;9;5;5;29;31;36;36;12;8;8;8;8;50;50;69;70;71;71;71;63.68;66.68 -5815;'901;Low Income Food Deficit Countries;1669;Recovered paper;5510;Production;t;;;1000;1000;1000;1000;1000;1000;1000;3000;3000;4000;13000;4000;4000;31000;31000;32000;34000;35000;32000;42000;54000;93000;95000;46000;54000;71000;74000;61970;61900;65840;70000;76900;77800;77800;77700;114400;112100;131700;123700;123700;127700;127700;127700;127700;138700;143700;149700;162700;172700;179700;192900;280300;265400;281911;286091;281175;282980;291120;233866;254028;254028 -5815;'901;Low Income Food Deficit Countries;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;;;;;2809;2912;2481;3826;4454;6264;8600;16800;18600;10500;3500;9500;15005;9468;13598;7926;9994;10194;20055;16079;21910;27983;29606;30620;32543;27584;34665;44425;41101;47623;93148;91707;42929;43503;51300;33764;31204;38941;30812;28790;29510;34327;42727;44763;66613;75127;68581;63452.12;99102;100217 -5815;'901;Low Income Food Deficit Countries;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;;;;;555;642;482;771;629;784;1265;2510;4381;3354;858;1294;2960;1711;2314;1785;1517;1579;3077;2664;4583;6032;5377;4772;3370;3092;4516;5762;5873;7215;10639;10602;7934;9041;11471;7820;8549;10564;9406;6780;8301;8488;9482;12463;16389;18996;17317;16129.67;27906;25991 -5815;'901;Low Income Food Deficit Countries;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;365;4548;2984;3832;2475;1485;2463;2369;3663;3653;4476;9569;19314;19359;18003;21945;27221;34519;55888;61056;76487;85643;100602;99978;107672;140437;111745;71733;56829;85766.2;86651.25;57735.25 -5815;'901;Low Income Food Deficit Countries;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;0;0;0;0;;;;;210;449;650;811;637;168;163;189;381;376;461;1160;1931;1944;2137;3026;4922;6490;7512.4;9198;12342;13398;15762;15391;16388;22164.19;17440;8890;5929;12441.86;12436.5;7712.5 -5815;'901;Low Income Food Deficit Countries;1876;Paper and paperboard;5510;Production;t;71300;71200;80620;83600;89900;89500;99100;114800;123500;131500;136400;145600;148500;149300;181917;198900;213500;228500;234500;243400;256735;261512;264587;268065;314147;316435;354602;352728;360304;349729;325621;409240;401525;344095;346226;360775;358280;344882;346804;377473;329706;351796;453152;527396;640137;627837;517404;511241;282721;309797;338617;338177;425883;396863;413304;390758;397689;419978;411380;407372;411136;460229;437319 -5815;'901;Low Income Food Deficit Countries;1876;Paper and paperboard;5610;Import quantity;t;103900;109974;110715;125730;154100;177700;199500;195300;212200;230500;250700;253800;285400;316700;245800;196800;229910;257060;245700;281000;264400;262500;280300;263200;302000;327635;353718;329867;274839;307674;283143;246218;309057;279066;197340;264403;365018;474836;532664;482662;600179;456898;844945;930424;955467;1019228;1079899;1155351;1209228;1448650;1512610;1285568.44;1255904;1594678;1474425;1646468;1787222;1714452;2233117;1822275;1816560.75;1617640.07;1823105 -5815;'901;Low Income Food Deficit Countries;1876;Paper and paperboard;5622;Import value;1000 USD;29283;32234;31613;34383;43560;52791;57592;59538;60993;63307;75413;83023;105102;163092;141844;124139;148374;167564;172511;219260;233680;219046;221718;198334;215941;245185;301240;260417;224279;264498;263270;180653;220825;208340;181983;216802;279653;320071;340454;329483;392803;322327;579548;669016;703638;695388;910706;1083903;1026817;1323573;1412219;1175981;1213106;1501678;1252995;1338439;1457653.59;1576696;1954899;1491914;1758183.05;1961269.55;1924474 -5815;'901;Low Income Food Deficit Countries;1876;Paper and paperboard;5910;Export quantity;t;1100;1150;1082;4356;4956;3720;3900;3900;4500;4200;4400;4900;4800;5800;9300;17100;14900;15500;26500;22200;11900;19900;12200;14900;14000;7600;15400;8000;7901;8055;8055;35971;4787;2971;6482;10310;13719;9385;12562;22187;38236;27671;47907;69193;71641;50143;120287;91869;95895;77303.24;67403.3;80489.75;81149.55;65234.58;67858.48;64252.48;81548.48;68601.48;90896.48;94382;145950.86;138044.27;83889.5 -5815;'901;Low Income Food Deficit Countries;1876;Paper and paperboard;5922;Export value;1000 USD;226;267;229;1383;1127;885;923;948;1069;1129;1195;1302;1394;1778;3584;6585;7237;7362;13348;12628;7982;11025;8871;5594;8051;5807;8068;5899;5746;6090;6090;24271;2717;2003;4990;8199;10531;5391;7324;14050;26498;23614;38387;47320;47652;37178;58264;82929;84118;80167;76643;103032.29;102440.46;62959.6;66942;58644;69738.23;76718;103107;95785;124155.46;145539.97;89550.39 -5815;'901;Low Income Food Deficit Countries;2042;Graphic papers;5510;Production;t;;2300;8020;8800;9000;8000;11000;11100;13100;14200;16500;16500;18300;20600;32517;39200;45200;47200;49200;50200;51200;53400;58000;68600;70400;73850;82040;85240;87340;79350;77470;88320;86120;70220;70570;70700;72800;71100;68830;79360;69860;69360;77532;78892;86192;66192;49960;48028;24544;55532;54932;55702;55532;55532;54750;57288;58091;58781;56381;57034;55017;53172;53307 -5815;'901;Low Income Food Deficit Countries;2042;Graphic papers;5610;Import quantity;t;38400;38074;40115;49900;59700;63100;68900;66900;70200;74900;85300;83100;91300;108600;83200;70900;76410;92760;99200;117300;110700;113700;110300;114200;119643;119883;112120;106982;90857;90446;92215;108533;116354;131630;62001;101553;174798;249189;264197;240703;301720;228056;418537;474979;488410;538247;550866;548490;588684;717337;760035;637099.44;618668;792442;715535;816039;821516;793259;1030377;725432;744113.49;701879.07;827817 -5815;'901;Low Income Food Deficit Countries;2042;Graphic papers;5622;Import value;1000 USD;9914;10146;11209;13006;17235;18496;18415;18433;19833;20260;24074;28291;35291;58410;52689;45984;46708;57184;65114;83368;98588;93151;86771;85086;88815;91379;109023;92093;79717;92548;93406;85085;85523;98784;62764;88761;134724;164075;169595;161811;203009;162423;291929;342792;366491;368067;481912;547070;530040;666495;714643;592373;591460;741782;628802;652234;681946.07;745307;972073;603915;681757.1;817067.56;877083 -5815;'901;Low Income Food Deficit Countries;2042;Graphic papers;5910;Export quantity;t;;;100;1200;1300;;;;;100;100;100;200;200;400;3400;2900;2900;10300;8300;2800;3300;600;500;300;100;100;100;1;155;155;1716;2665;939;884;2621;3769;2608;4636;4802;11601;9953;13330;23581;23360;16834;20092;18863;21924;20581.24;20811.3;19253.75;15191.55;14160.58;12071.48;11624.48;14468.48;11816.48;17206.48;12348;16335.06;18488.15;12556.15 -5815;'901;Low Income Food Deficit Countries;2042;Graphic papers;5922;Export value;1000 USD;;;10;231;248;;;;;22;22;22;174;155;228;1685;1982;1982;5374;4355;1100;1806;723;571;347;122;285;159;6;350;350;1364;1601;748;782;2756;3704;1913;3146;3778;8944;9092;10943;16504;15872;12218;15922;18593;22288;27880;27522;23564.29;21099.46;16581;13879;14665;15397.36;14355;20469;13616;19430.36;35511.74;20637.74 -5815;'901;Low Income Food Deficit Countries;1671;Newsprint;5510;Production;t;;2300;4020;4800;5000;5000;6000;8000;8900;10300;12600;12500;12500;13000;12817;15500;15500;16500;17500;19500;21500;19700;25000;25600;25800;27850;30240;36440;34540;35350;40270;45320;39320;38220;39170;40400;41800;41200;40100;42100;40100;37100;34100;38160;41160;24160;17786;15713;11247;14244;14300;14300;14300;14300;14750;14378;13492;15380;13911;13431;13518;13679;13679 -5815;'901;Low Income Food Deficit Countries;1671;Newsprint;5610;Import quantity;t;16800;15200;13200;14900;14900;16000;18800;20900;16500;21900;23800;25200;25400;27400;27950;25000;25450;34500;33100;30300;34500;32300;34800;35700;38313;31586;37227;30169;23121;26949;26139;16356;21263;15483;29936;30397;52479;80323;88825;66548;88959;70472;117975;133818;131444;176067;153278;152310;162566;216121;195215;183788;189924;203379;214910;195076;168674;136659;167452;99495;92270.68;90850.07;107383 -5815;'901;Low Income Food Deficit Countries;1671;Newsprint;5622;Import value;1000 USD;2905;2524;2219;2698;2715;2646;3231;3658;2879;4112;4431;4831;5852;9172;12010;11608;11695;16445;15884;14725;19191;17823;18567;17421;19082;16280;26209;17164;13621;17090;16796;9899;13337;8677;21765;19603;28500;40980;43497;36822;55031;37531;63302;68883;70459;70623;107170;116941;111023;153619;145855;142538;143093;152268;144226;114144;101237.49;99179;103896;60900;62552.11;90624.55;90757 -5815;'901;Low Income Food Deficit Countries;1671;Newsprint;5910;Export quantity;t;;;100;1200;1300;;;;;;;;;;;;;;;;;;;;;;0;;;;;445;25;29;106;248;262;91;1211;1200;2384;2368;3595;8925;8925;7136;9206;8671;10112;6377;6361;5329.48;3567;4099;6026;5452;4565;5398;4395;2325;3439.15;2379.05;2856.05 -5815;'901;Low Income Food Deficit Countries;1671;Newsprint;5922;Export value;1000 USD;;;10;231;248;;;;;;;;;;;;;;;;;;;;;;0;;;;;289;12;14;73;216;225;57;666;589;1256;1235;2083;4382;4382;3680;5709;6571;8918;5487;6075;5312;3986;2914;4480;4541;3277;3889;1825;1238;2347;2725.72;2408.72 -5815;'901;Low Income Food Deficit Countries;1674;Printing and writing papers;5510;Production;t;;;4000;4000;4000;3000;5000;3100;4200;3900;3900;4000;5800;7600;19700;23700;29700;30700;31700;30700;29700;33700;33000;43000;44600;46000;51800;48800;52800;44000;37200;43000;46800;32000;31400;30300;31000;29900;28730;37260;29760;32260;43432;40732;45032;42032;32174;32315;13297;41288;40632;41402;41232;41232;40000;42910;44599;43401;42470;43603;41499;39493;39628 -5815;'901;Low Income Food Deficit Countries;1674;Printing and writing papers;5610;Import quantity;t;21600;22874;26915;35000;44800;47100;50100;46000;53700;53000;61500;57900;65900;81200;55250;45900;50960;58260;66100;87000;76200;81400;75500;78500;81330;88297;74893;76813;67736;63497;66076;92177;95091;116147;32065;71156;122319;168866;175372;174155;212761;157584;300562;341161;356966;362180;397588;396180;426118;501216;564820;453311.44;428744;589063;500625;620963;652842;656600;862925;625937;651842.8;611029;720434 -5815;'901;Low Income Food Deficit Countries;1674;Printing and writing papers;5622;Import value;1000 USD;7009;7622;8990;10308;14520;15850;15184;14775;16954;16148;19643;23460;29439;49238;40679;34376;35013;40739;49230;68643;79397;75328;68204;67665;69733;75099;82814;74929;66096;75458;76610;75186;72186;90107;40999;69158;106224;123095;126098;124989;147978;124892;228627;273909;296032;297444;374742;430129;419017;512876;568788;449835;448367;589514;484576;538090;580708.59;646128;868177;543015;619204.98;726443;786326 -5815;'901;Low Income Food Deficit Countries;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;1271;2640;910;778;2373;3507;2517;3425;3602;9217;7585;9735;14656;14435;9698;10886;10192;11812;14204.24;14450.3;13924.27;11624.55;10061.58;6045.48;6172.48;9903.48;6418.48;12811.48;10023;12895.9;16109.1;9700.1 -5815;'901;Low Income Food Deficit Countries;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;1075;1589;734;709;2540;3479;1856;2480;3189;7688;7857;8860;12122;11490;8538;10213;12022;13370;22393;21447;18252.29;17113.46;13667;9399;10124;12120.36;10466;18644;12378;17083.36;32786.01;18229.01 -5815;'901;Low Income Food Deficit Countries;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5500;4000;12500;13000;12500;15200;15200;15200;15200;4728;4865;1859;17856;17200;17970;17800;17800;16600;18523;18760;19131;17550;16279;16930;16100;16235 -5815;'901;Low Income Food Deficit Countries;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20870;20575;23342;17030;25108;36122;53458;52902;52573;44641;51937;39198;45243;45874;40796;46384;42096;43990;46933;56623;63230;83189;41673;56983.85;42371;51055 -5815;'901;Low Income Food Deficit Countries;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18093;15210;16829;11443;23107;26006;42483;44105;40316;38914;49664;42306;46439;49645;46138;49600;45591;44404;40596;50082.06;58207;64832;42049;52334.75;49259;59063 -5815;'901;Low Income Food Deficit Countries;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;153;394;630;806;1751;1668;1437;1122;2420;2470;2734;3157;2562.3;2476.27;5911.07;1646.1;1057;954;730;732;710;757;597.48;2752.1;2195.1 -5815;'901;Low Income Food Deficit Countries;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12;44;648;1096;1454;2382;2218;1558;1021;1817;2347;2549;2742;2091;2247.05;4694.96;1473;924;964;933;937;422;545;482;1905.01;1812.01 -5815;'901;Low Income Food Deficit Countries;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16400;16730;16760;10760;12760;20232;17532;17832;15832;16439;16441;7435;7432;7432;7432;7432;7432;7400;7485;6544;6748;7510;9190;6965;7171;7171 -5815;'901;Low Income Food Deficit Countries;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108327;114546;107311;134297;99251;194800;199572;213974;206967;225518;230128;245061;315686;377180;275781;265775;400351;330697;434243;443540;460856;563037;447979;458222.54;434527;540651 -5815;'901;Low Income Food Deficit Countries;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78969;83548;75626;94181;74077;146868;157834;175315;173791;217351;262405;239818;316361;374293;262558;275376;391319;314139;369141;389481.11;447902;561788;380473;417058.52;503861;574830 -5815;'901;Low Income Food Deficit Countries;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1966;2341;2347;6242;5467;5630;10722;10746;6461;5672;3810;3731;6845.24;8127;7871;3377.48;5558.48;2382.48;3034.48;4194.48;3534.48;8033.48;5624;10113.8;10244;4790 -5815;'901;Low Income Food Deficit Countries;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1406;1525;1681;5255;5037;4605;8111;8153;5583;5555;5446;5100;14783;14591;12063.24;9626.5;8924;5800;6942;7395.46;6673;11330;8045;14053.8;26120;12735 -5815;'901;Low Income Food Deficit Countries;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8000;8000;8000;6000;7000;8000;8000;12000;11000;11007;11009;4003;16000;16000;16000;16000;16000;16000;16902;19295;17522;17410;18134;17604;16222;16222 -5815;'901;Low Income Food Deficit Countries;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39669;40251;43502;61434;33225;69640;88131;90090;102640;127429;114115;141859;140287;141766;136734.44;116585;146616;125938;139787;152679;132514;216699;136285;136636.42;134131;128728 -5815;'901;Low Income Food Deficit Countries;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26033;27340;32534;42354;27708;55753;73592;76612;83337;118477;118060;136893;150076;144850;141139;123391;152604;126033;128353;141145.42;140019;241557;120493;149811.71;173323;152433 -5815;'901;Low Income Food Deficit Countries;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;533;931;861;2345;1312;2354;2266;2252;2115;2794;3912;5347;4202;3761;3577;2336;2857;2606;2184;4979;2152;4068;3642;2184.62;3113;2715 -5815;'901;Low Income Food Deficit Countries;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;438;911;860;1337;1366;1873;1793;1779;1934;2841;4229;5721;4868;4765;3942;2792;3270;2675;2218;3791.9;2856;6892;3788;2547.56;4761;3682 -5815;'901;Low Income Food Deficit Countries;1675;Other paper and paperboard;5510;Production;t;71300;68900;72600;74800;80900;81500;88100;103700;110400;117300;119900;129100;130200;128700;149400;159700;168300;181300;185300;193200;205535;208112;206587;199465;243747;242585;272562;267488;272964;270379;248151;320920;315405;273875;275656;290075;285480;273782;277974;298113;259846;282436;375620;448504;553945;561645;467444;463213;258177;254265;283685;282475;370351;341331;358554;333470;339598;361197;354999;350338;356119;407057;384012 -5815;'901;Low Income Food Deficit Countries;1675;Other paper and paperboard;5610;Import quantity;t;65500;71900;70600;75830;94400;114600;130600;128400;142000;155600;165400;170700;194100;208100;162600;125900;153500;164300;146500;163700;153700;148800;170000;149000;182357;207752;241598;222885;183982;217228;190928;137685;192703;147436;135339;162850;190220;225647;268467;241959;298459;228842;426408;455445;467057;480981;529033;606861;620544;731313;752575;648469;637236;802236;758890;830429;965706;921193;1202740;1096843;1072447.26;915761;995288 -5815;'901;Low Income Food Deficit Countries;1675;Other paper and paperboard;5622;Import value;1000 USD;19369;22088;20404;21377;26325;34295;39177;41105;41160;43047;51339;54732;69811;104682;89155;78155;101666;110380;107397;135892;135092;125895;134947;113248;127126;153806;192217;168324;144562;171950;169864;95568;135302;109556;119219;128041;144929;155996;170859;167672;189794;159904;287619;326224;337147;327321;428794;536833;496777;657078;697576;583608;621646;759896;624193;686205;775707.52;831389;982826;887999;1076425.96;1144202;1047391 -5815;'901;Low Income Food Deficit Countries;1675;Other paper and paperboard;5910;Export quantity;t;1100;1150;982;3156;3656;3720;3900;3900;4500;4100;4300;4800;4600;5600;8900;13700;12000;12600;16200;13900;9100;16600;11600;14400;13700;7500;15300;7900;7900;7900;7900;34255;2122;2032;5598;7689;9950;6777;7926;17385;26635;17718;34577;45612;48281;33309;100195;73006;73971;56722;46592;61236;65958;51074;55787;52628;67080;56785;73690;82034;129615.8;119556.12;71333.35 -5815;'901;Low Income Food Deficit Countries;1675;Other paper and paperboard;5922;Export value;1000 USD;226;267;219;1152;879;885;923;948;1069;1107;1173;1280;1220;1623;3356;4900;5255;5380;7974;8273;6882;9219;8148;5023;7704;5685;7783;5740;5740;5740;5740;22907;1116;1255;4208;5443;6827;3478;4178;10272;17554;14522;27444;30816;31780;24960;42342;64336;61830;52287;49121;79468;81341;46378.6;53063;43979;54340.87;62363;82638;82169;104725.1;110028.23;68912.65 -5815;'901;Low Income Food Deficit Countries;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;6028;6091;7966;10666;11866;16960;14960;95960;115960;21173;21090;13074;20140;20060;20090;20160;20160;20272;21760;22327;22818;23841;24600;27597;37117;32998 -5815;'901;Low Income Food Deficit Countries;1676;Household and sanitary papers;5610;Import quantity;t;;;;;;;;;100;200;200;100;500;500;500;500;400;400;500;500;500;300;300;200;500;700;700;700;700;700;700;700;600;0;0;300;500;629;2866;4767;15452;16607;28834;28227;30298;28105;30397;30250;36373;49454;34449;36230;55172;61164;68851;70745;78578;76517;87575;94971;101852.05;85583;98673 -5815;'901;Low Income Food Deficit Countries;1676;Household and sanitary papers;5622;Import value;1000 USD;;;;;;;;;86;185;173;165;469;456;456;442;368;368;521;587;587;458;370;268;483;727;727;750;750;750;750;750;650;0;0;311;482;617;2456;4704;16202;18695;32482;33475;35232;32237;37843;39956;42886;62780;49523;51366;82878;93478;100178;91774;95809.72;99567;94410;94824;122386.14;129594;139081 -5815;'901;Low Income Food Deficit Countries;1676;Household and sanitary papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;194;3658;3665;4620;3407;4736;4369;5347;5887;5774;8132;5841;6375;5259;5039;3528;4125;4322;5638;4235;3686;6377.54;9121.03;11572.03 -5815;'901;Low Income Food Deficit Countries;1676;Household and sanitary papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;208;2736;2747;3794;3778;4191;3172;4401;5433;5461;8122;5614;7072;4887;4461;3997;4258;4370;5825;4696;3925;5802.05;11063.99;14528.99 -5815;'901;Low Income Food Deficit Countries;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106930;105120;145220;88406;109943;151070;200970;234370;222070;222543;223390;57966;56920;64390;63470;151632;120612;137123;117513;122018;136488;134088;124149;124881;167705;152048 -5815;'901;Low Income Food Deficit Countries;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49398;94393;161217;226630;158236;324692;359866;373525;398741;421557;497656;529962;615260;654275;561165;559148;705095;672495;725042;870525;825342;1093642;983256;945916.96;809057;876318 -5815;'901;Low Income Food Deficit Countries;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37513;64977;96984;126277;95618;188512;226181;236549;234400;307564;396722;369642;479322;537549;459595;477860;575009;491382;511269;634719.93;677703;832400;734693;887607.51;898947;837592 -5815;'901;Low Income Food Deficit Countries;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2266;1151;2218;8804;8938;24079;37740;39100;26581;92375;59787;65563;44206;37797;52311;59225;43082;47576;47223;61261;49982;68676;77560;122487.26;109818.47;59208.32 -5815;'901;Low Income Food Deficit Countries;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1348;670;1382;7133;9722;19365;22245;22793;16425;32998;50447;50724;35702;37522;69046;73621;38105;38146;37737;47795.64;54199;76062;76766;96773.05;96394.6;52785.66 -5815;'901;Low Income Food Deficit Countries;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;;;;;;;800;1800;1900;5000;5300;5300;5300;10300;14300;15400;15400;15400;15400;16700;57800;54700;53500;48200;74700;74700;92300;79300;84300;91000;70000;141000;141000;94000;96000;112300;106800;;;;;;;;;;;;;;;;;;;;;;;;;; -5815;'901;Low Income Food Deficit Countries;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;11500;14400;20100;25000;32900;53600;52400;49900;57600;62000;69100;72000;76700;94000;64600;43000;57800;64800;55600;50900;45900;41600;57900;41400;55000;55600;102000;101500;83400;86000;80900;30672;39757;32169;32165;35800;31000;;;;;;;;;;;;;;;;;;;;;;;;;; -5815;'901;Low Income Food Deficit Countries;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;1959;3542;5225;5691;7207;12291;11308;13788;12955;13711;18827;19483;23731;45529;33392;21442;29196;37660;37295;37259;34724;26647;34479;25523;28979;29344;76162;68163;57681;75959;77147;18810;23564;23637;28154;24078;20605;;;;;;;;;;;;;;;;;;;;;;;;;; -5815;'901;Low Income Food Deficit Countries;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;17230;1264;1210;1767;1669;1629;;;;;;;;;;;;;;;;;;;;;;;;;; -5815;'901;Low Income Food Deficit Countries;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;12261;611;762;1038;948;919;;;;;;;;;;;;;;;;;;;;;;;;;; -5815;'901;Low Income Food Deficit Countries;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1600;1300;39800;42800;42800;42400;87400;87400;74400;74420;74430;3409;2450;5520;3700;35832;30812;53538;33029;38086;52618;47710;34715;34850;61520;49350 -5815;'901;Low Income Food Deficit Countries;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25661;44055;58442;99458;80076;126215;145518;164691;165475;189246;236615;252932;297841;316599;294079;326440;349958;329109;347492;481249;426155;671039;573150;524387.76;418166;483147 -5815;'901;Low Income Food Deficit Countries;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17959;24713;31518;48231;39252;64028;87084;96366;82892;112028;165954;146197;198843;215617;188870;224989;233015;210206;198479;298724.79;298584;403054;310907;381019.67;367025;323916 -5815;'901;Low Income Food Deficit Countries;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1538;452;1119;3338;3336;7186;10516;10654;12301;49989;36903;36165;19911;19945;17489;25394;23588;31739;32956;34178;22940;36031;41891;86823.26;67593.47;38050.32 -5815;'901;Low Income Food Deficit Countries;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1012;221;209;1947;1990;3416;6263;6297;7393;11494;26665;26354;15109;16326;14496;20798;19016;24225;23044;21301;14484;26174;26062;62032.3;54224.6;25783.66 -5815;'901;Low Income Food Deficit Countries;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1900;1000;2900;12086;21123;7100;8700;12700;12700;13091;13930;2309;2300;5600;7000;63030;37030;30815;25350;25022;25055;25039;24897;24862;24923;24923 -5815;'901;Low Income Food Deficit Countries;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9406;17538;46514;56959;36056;77640;95586;96531;135967;104113;155046;149277;166165;197485;154524;121506;161271;161400;182528;186181;192312;225779;212356;210786.85;228915;210385 -5815;'901;Low Income Food Deficit Countries;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8388;14946;31838;37492;26770;53334;64185;68391;85864;101138;128252;110363;145432;188128;163950;143507;173680;144275;173992;173380.97;196296;246247;244707;282164.45;336020;303532 -5815;'901;Low Income Food Deficit Countries;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;659;94;384;1980;3753;4664;12049;12728;3185;4787;5705;8194;7279;5912;19052;17303;3938;3692;3713;3400;9731;5191;5024;9092.43;10884;4809 -5815;'901;Low Income Food Deficit Countries;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;291;159;831;2985;6921;9547;7492;7958;2911;4816;8731;7902;8106;10732;40460;38817;3652;2712;3194;3763.33;18254;14202;15995;8098;11416;9649 -5815;'901;Low Income Food Deficit Countries;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103400;102800;102500;28500;28000;28000;27000;30000;31000;31031;31030;41009;41000;42100;41600;41600;41600;41600;47318;47094;46999;49523;52721;53353;69446;65959 -5815;'901;Low Income Food Deficit Countries;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13982;32010;50030;59413;35390;106844;103851;98939;89758;120793;101093;112819;142448;132006;104461;99472;177077;174519;190200;193446;198467;187287;191475;199306.13;155767;176063 -5815;'901;Low Income Food Deficit Countries;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10556;24559;31002;36678;26756;64944;65579;63341;61043;89016;99046;104610;129317;127980;97504;97039;155953;130285;135604;154850.75;177130;176977;173579;216018.4;188583;203630 -5815;'901;Low Income Food Deficit Countries;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69;67;176;2646;1521;8737;11202;11194;9838;35675;16889;18785;14386;11712;15410;16268;15292;11747;10198;22756;16311;26487;30037;24288.57;28147;11218 -5815;'901;Low Income Food Deficit Countries;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45;48;100;1820;661;4722;6139;6134;5361;15603;14428;15155;11086;10245;13740;13714;15157;9282;9576;20648.6;19370;33602;32732;24084.74;27739;13357 -5815;'901;Low Income Food Deficit Countries;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30;20;20;5020;18020;73570;77870;104270;103970;104001;104000;11239;11170;11170;11170;11170;11170;11170;11816;11816;11816;11816;11816;11816;11816;11816 -5815;'901;Low Income Food Deficit Countries;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;349;790;6231;10800;6714;13993;14911;13364;7541;7405;4902;14934;8806;8185;8101;11730;16789;7467;4822;9649;8408;9537;6275;11436.22;6209;6723 -5815;'901;Low Income Food Deficit Countries;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;610;759;2626;3876;2840;6206;9333;8451;4601;5382;3470;8472;5730;5824;9271;12325;12361;6616;3194;7763.41;5693;6122;5500;8405;7319;6514 -5815;'901;Low Income Food Deficit Countries;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;538;539;840;328;3492;3973;4524;1257;1924;290;2419;2630;228;360;260;264;398;356;927;1000;967;608;2283;3194;5131 -5815;'901;Low Income Food Deficit Countries;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;242;242;381;150;1680;2351;2404;760;1085;623;1313;1401;219;350;292;280;1927;1923;2082.7;2091;2084;1977;2558;3015;3996 -5815;'901;Low Income Food Deficit Countries;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;60000;60000;60000;63500;63500;63500;68500;73600;76600;76700;76900;81900;81200;76100;81100;81100;81700;81700;81700;84300;93235;93412;94087;93265;94647;94885;93262;93788;162864;173379;171151;171920;166405;174875;173656;171775;172680;160824;166763;144927;160774;160627;207590;232574;223615;223615;223728;218733;187137;177205;199235;198915;198559;200559;201159;194197;195253;201891;197070;201589;203641;202235;198966 -5815;'901;Low Income Food Deficit Countries;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;16500;19900;19600;22800;27200;31100;34000;46500;49800;60400;65100;58900;78300;75800;63300;46300;51800;58600;54300;66600;58200;52800;58500;60200;67900;79400;74700;55757;59500;55100;54600;79913;104067;86556;70933;97145;129945;175620;171208;75975;56377;53999;72882;67352;63234;54135;77079;78955;54209;66599;63851;51074;22916;35977;17544;34642;16603;19334;21523;18616;24678.25;21121;20297 -5815;'901;Low Income Food Deficit Countries;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;5195;6331;6365;7513;8955;11444;12668;16372;16589;20205;22234;22656;32774;41191;38585;38381;43722;45301;45435;61055;56439;54595;56136;50859;50652;50275;65811;43598;50485;48502;47053;58362;77722;62572;62471;77284;95008;117866;103426;65984;47315;45591;66625;66568;65366;60684;83387;100155;84249;114976;110504;72647;60908;91409;32633;83162;45177.87;54119;56016;58482;66432.3;115661;70718 -5815;'901;Low Income Food Deficit Countries;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;;;;;;;;;;;;;;;;10500;1100;1700;4200;1500;700;1900;4100;9400;9400;3800;11700;4200;4200;4200;4200;11157;163;296;3528;5791;6221;4511;6769;14973;14173;5115;5878;4465;4445;2359;2473;7332;2634;4384;2954;2550;1474;2953;4683;1280;1497;1165;779;788;751;616.62;553 -5815;'901;Low Income Food Deficit Countries;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;;;;;;;;;;;;;;;;3410;312;357;763;933;710;1130;1503;3867;3867;1621;4270;1709;1709;1709;1709;7245;131;148;2951;4316;4676;2130;3505;8682;7685;2053;4285;4793;4796;5363;4943;8456;5645;8463;5985;3350;2833;3812.6;10920;1984;2175.23;2339;1880;1478;2150;2569.64;1598 -5815;'901;Low Income Food Deficit Countries;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;634337.56;702845;738719;617224;745167;930567;890713 -5815;'901;Low Income Food Deficit Countries;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65473.51;155868;104900;62025;80380;106394;118649 -5815;'901;Low Income Food Deficit Countries;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33937.53;22365;26611;26742;34526;24731;19623 -5815;'901;Low Income Food Deficit Countries;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9122.56;8820;17048;14281;16086;20669;25274 -5815;'901;Low Income Food Deficit Countries;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13780.56;16014;14693;15562;16740;15815;13975 -5815;'901;Low Income Food Deficit Countries;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1645.4;1314;2356;1996;3696;2849;3169 -5815;'901;Low Income Food Deficit Countries;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20156.96;6351;11918;11180;17786;8916;5648 -5815;'901;Low Income Food Deficit Countries;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7477.16;7506;14692;12285;12390;17820;22105 -5815;'901;Low Income Food Deficit Countries;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19470.59;30683;22631;18564;23918;26906;31193 -5815;'901;Low Income Food Deficit Countries;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3000.56;16775;7699;5455;7222;10121;7871 -5815;'901;Low Income Food Deficit Countries;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9335.05;11603;13400;8599;14700;10938;11595 -5815;'901;Low Income Food Deficit Countries;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5612.22;18400;8046;7390;16087;19676;7222 -5815;'901;Low Income Food Deficit Countries;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95700.8;99463;140364;85763;106472;125452;128881 -5815;'901;Low Income Food Deficit Countries;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4990.52;9781;40593;10839;11660;18696;39112 -5815;'901;Low Income Food Deficit Countries;1636;Glue-laminated timber (glulam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;14000 -5815;'901;Low Income Food Deficit Countries;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;136;213 -5815;'901;Low Income Food Deficit Countries;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;383;428 -5815;'901;Low Income Food Deficit Countries;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2280;17862 -5815;'901;Low Income Food Deficit Countries;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2250;22156 -5815;'901;Low Income Food Deficit Countries;1688;Cross-laminated timber (CLT or X-lam);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -5815;'901;Low Income Food Deficit Countries;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100;53 -5815;'901;Low Income Food Deficit Countries;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;130;99 -5815;'901;Low Income Food Deficit Countries;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;45 -5815;'901;Low Income Food Deficit Countries;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;42 -5815;'901;Low Income Food Deficit Countries;1684;I-beams (I-joists);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -5815;'901;Low Income Food Deficit Countries;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1244;1730 -5815;'901;Low Income Food Deficit Countries;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2003;2020 -5815;'901;Low Income Food Deficit Countries;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;76 -5815;'901;Low Income Food Deficit Countries;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;68 -5815;'901;Low Income Food Deficit Countries;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;435467.4;503841;481868;424374;497789;668707;611690 -5815;'901;Low Income Food Deficit Countries;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30912.3;44614;16266;18738;23376;24703;24825 -5815;'901;Low Income Food Deficit Countries;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12249.8;9264;17444;9119;15186;14765;15602 -5815;'901;Low Income Food Deficit Countries;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;853.8;850;1440;1407;790;1295;2024 -5815;'901;Low Income Food Deficit Countries;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28176.4;25626;36401;44063;52576;59068;72129 -5815;'901;Low Income Food Deficit Countries;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10981.55;56628;13808;3915;5159;11234;12321 -5815;'901;Low Income Food Deficit Countries;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1236170.33;1289269;1311900;1322730;1457612;1679073;1764490 -5815;'901;Low Income Food Deficit Countries;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;143778.8;333375;167239;154069;192132;204827;175078 -5815;'901;Low Income Food Deficit Countries;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4729.36;3029;4041;4750;5647;5320;3028 -5815;'901;Low Income Food Deficit Countries;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2904;2424;2443;2431;2571;2785;2518 -5815;'901;Low Income Food Deficit Countries;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89490.04;89117;90059;106890;123922;145310;135438 -5815;'901;Low Income Food Deficit Countries;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1593.65;3118;2451;2359;2328;3824;3171 -5815;'901;Low Income Food Deficit Countries;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;151400.81;150156;149345;157998;154185;173985;211207 -5815;'901;Low Income Food Deficit Countries;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6622.09;13288;12403;12353;11911;13070;17265 -5815;'901;Low Income Food Deficit Countries;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;455071.29;487562;513068;508511;571122;669773;646906 -5815;'901;Low Income Food Deficit Countries;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79235.14;215184;89058;85805;104531;103136;87408 -5815;'901;Low Income Food Deficit Countries;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;535478.83;559405;555387;544581;602736;684685;767911 -5815;'901;Low Income Food Deficit Countries;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53423.92;99361;60884;51121;70791;82012;64716 -5817;'902;Net Food Importing Developing Countries;1659;Wood and paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16754891.76;18650851.76;18368576.66;16387042.66;19792690.79;23063889.65;20094794.18 -5817;'902;Net Food Importing Developing Countries;1659;Wood and paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6547332.9;6979213;6463287;5583881;7464157.36;8164285.48;7638375.36 -5817;'902;Net Food Importing Developing Countries;1877;Primary wood and paper products (export/import);5622;Import value;1000 USD;226539;236240;225906;269130;282437;333834;322026;335343;352970;415280;455976;511809;580658;937259;994196;1027204;1402455;1528676;1472687;1901955;2177289;2275736;2185467;2296390;2415763;2482175;2592294;2806620;3637305;4295219;3174205;2976276;2564209;2887736;3556754;3137768;3553198;3471363;3457392;3284379;3930348;3498742;4178297;5114463;5459663.3;5702660.76;7251524.3;8946688.1;8186279.3;9656490.2;10530344.17;10264570.2;10784150.04;12432819.23;10711283.15;10796668.76;11129066.76;12681697.76;12349641.66;11106301.66;13619052.79;15895932.65;13283486.18 -5817;'902;Net Food Importing Developing Countries;1877;Primary wood and paper products (export/import);5922;Export value;1000 USD;128021;135345;173685;198680;197142;203133;210177;257614;312969;279081;292260;370312;608773;667839;479736;676550;735505;783447;947826;1256401;943187;819926;830912;829625;752204;792717;790409;941765;929771;1362891;1209184;1666292;1688924;1690043;1530900;1480272;1393118;1475715;1480664;1793902;1898513;1915925;1984883;2270363;3217805;3156730;3958523;4449352;3389992;4278615.9;4740168.71;5005809.08;5919792.98;7343724.56;5163726.79;4396566.45;4514553;4532415;4310531;3676291;5135127.36;5519345.48;4876162.36 -5817;'902;Net Food Importing Developing Countries;1861;Roundwood;5516;Production;m3;311599928;316457409;322529419;329127260;335991686;341828939;348916111;357028324;365750409;371017443;379417826;385386480;392954921;396557459;403092399;410464251;417951907;425745314;434286376;443447958;448693779;456803421;462905868;472686519;484115096;491415503;498238445;506865344;517517571;542630638;556908428;566334390;576878259;589758527;599953270;611639097;614983162;622662432;630129475;644235206;653660135;658574984;667661956;669758742;685215810;696241341;706127738;713669340;717763783;724451221;733252890;735477783;742212323;749174821;752912963;758239468;763202816;767485392;773070834;775079001;780373040;787232582;797664194 -5817;'902;Net Food Importing Developing Countries;1861;Roundwood;5616;Import quantity;m3;313500;340000;333500;302700;326800;351800;332100;282500;367900;519400;675100;446200;413200;531000;487400;485600;569300;498500;470500;663100;730300;846500;872700;781200;983100;687997;754834;1098653;693553;390387;592297;705701;542918;960354;1009470;1208632;1531220;1172772;1453014;1143645;1096180;963551;1199201;1681165;1259208.7;1062256;1048738;1157623;598442;820151;804235;762538;742450.71;1069840.23;882855;974902;1130320;1319342;1214069;1047229;1409429.43;1559926.33;2376166.24 -5817;'902;Net Food Importing Developing Countries;1861;Roundwood;5622;Import value;1000 USD;11198;15056;11858;12777;13079;17258;14947;11473;15627;19839;27284;21525;21705;42222;55366;49288;62527;61142;57445;89501;103974;118939;110620;100824;120808;88277;114126;139047;127227;47118;74832;98497;74198;135371;158325;127857;140911;112092;144696;119661;138869;110549;137465;150421;133452.7;130301;166316;206146;123827.3;162800.1;170145.94;136618.66;138247.66;174574.3;118061;125757;183657;211454;173431;169555;165410.12;185047.6;136715.21 -5817;'902;Net Food Importing Developing Countries;1861;Roundwood;5916;Export quantity;m3;2823500;2754400;3219000;3934800;3836500;3741400;4069600;4840300;6004400;5168300;5336000;5813300;6705400;5681900;4480650;5836447;6105800;5809500;5769600;5639800;4794000;4805600;4792600;5098300;3897100;3350695;3086438;3498137;3828658;4229502;4094939;4844736;4019184;4203626;4664693;5061463;4626515;3869238;5028867;6218166;5713684;5203368;5177145;5340320;7017230;6018762;6510642;6493016;5296341;6141675;6555206;6591680;7286761;8147271;7176045;6836454;6439808;5922129;5139698;4131719;5092967.2;4335647;4326039 -5817;'902;Net Food Importing Developing Countries;1861;Roundwood;5922;Export value;1000 USD;79770;84898;115451;132922;124157;123980;130668;157243;202223;159317;171018;231055;408172;422918;275817;416823;457434;478117;608120;837550;585598;476831;470867;466062;389583;384743;315951;400552;417862;737764;580339;850463;856107;897798;705079;637030;515509;573585;684277;981627;962677;923471;861828;793441;1574825;1612710;2064971;2227293;1698974;2140876;2296102.43;2506399.45;3260432.62;4032641.2;2154126;1780064;1740484;1638204;1368179;947586;1285979.92;982438;807676 -5817;'902;Net Food Importing Developing Countries;1862;Roundwood, coniferous;5516;Production;m3;9104386;9213465;9664533;10372604;10781692;10874973;11014374;11365159;11814449;11994360;12767001;13258784;13345423;13206192;13980489;14521536;14880055;15338945;14984735;15138480;15406982;15968345;14382713;14725533;15420947;14563575;14584594;15244164;15262697;15170803;14969917;15407441;18361946;18919558;19031129;19922595;19729603;19847481;20814244;21369380;21391520;21918238;21667923;22208689;24593644;24800054;25679587;25798961;25484794;25000010;25488563;25714545;26163956;26103544;26315787;26351198;27229306;27542629;27436365;27391630;27645587;27938220;27805821 -5817;'902;Net Food Importing Developing Countries;1862;Roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;610876;873520;874535;770820;1228157.66;1240138.28;1037412.19 -5817;'902;Net Food Importing Developing Countries;1862;Roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79298;123913;117546;93010;115244.12;103193.91;82922.52 -5817;'902;Net Food Importing Developing Countries;1862;Roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;283531;291336;321252;163337;211843.36;146915;113617 -5817;'902;Net Food Importing Developing Countries;1862;Roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21611;17251;27933;21541;29797;28456;11346 -5817;'902;Net Food Importing Developing Countries;1863;Roundwood, non-coniferous;5516;Production;m3;302495542;307243944;312864886;318754656;325209994;330953966;337901737;345663165;353935960;359023083;366650825;372127696;379609498;383351267;389111910;395942715;403071852;410406369;419301641;428309478;433286797;440835076;448523155;457960986;468694149;476851928;483653851;491621180;502254874;527459835;541938511;550926949;558516313;570838969;580922141;591716502;595253559;602814951;609315231;622865826;632268615;636656746;645994033;647550053;660622166;671441287;680448151;687870379;692278989;699451211;707764327;709763238;716048367;723071277;726597176;731888270;735973510;739942763;745634469;747687371;752727453;759294362;769858373 -5817;'902;Net Food Importing Developing Countries;1863;Roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;519444;445822;339534;276409;181271.77;319788.05;1338754.05 -5817;'902;Net Food Importing Developing Countries;1863;Roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104359;87541;55885;76545;50166;81853.69;53792.69 -5817;'902;Net Food Importing Developing Countries;1863;Roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6156277;5630793;4818446;3968382;4881123.84;4188732;4212422 -5817;'902;Net Food Importing Developing Countries;1863;Roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1718873;1620953;1340246;926045;1256182.92;953982;796330 -5817;'902;Net Food Importing Developing Countries;1864;Wood fuel;5516;Production;m3;288792928;293445409;298210419;303473260;308823686;313661639;319620811;325872724;331921109;337286943;343432626;349378880;355236421;359983659;367173299;372145451;378582307;386033914;393915576;402013258;408776529;415743721;422396368;432314819;442451236;450510692;457429937;465503845;474833266;497456851;512073537;519967745;530357418;541630498;551224266;561334861;563347587;570112160;575959778;589815655;599184545;603355862;612837191;613880300;629078670;638336420;646572590;653493351;659635514;665371142;672523437;674374069;678999699;683777212;689451777;694295204;698546454;703181370;708174739;710257171;713860114;719252001;729752733 -5817;'902;Net Food Importing Developing Countries;1864;Wood fuel;5616;Import quantity;m3;4000;6000;7600;6500;6600;11900;7400;6600;6800;6200;3000;3000;4500;4400;5900;5800;6300;4500;6400;700;300;40300;43300;33100;33100;32800;32800;32800;38300;35500;2700;6475;11439;17790;14718;19132;11709;9732;8018;8694;7034;6892;6260;6442;6714.7;6370;6942;6321;5087;67185;47494;93553;164347.58;235358;285485;250540;135986;224132;264228;301745;607848.43;655103.33;607554.24 -5817;'902;Net Food Importing Developing Countries;1864;Wood fuel;5622;Import value;1000 USD;38;64;107;81;82;190;127;114;108;126;76;65;114;137;172;222;296;225;230;27;11;756;896;666;628;640;640;640;1374;1199;489;553;779;869;1217;1015;456;416;517;549;550;468;491;790;839.5;745;1045;974;958;5914;4599;4302;5309.56;7747;9874;10105;4997;7129;8027;8744;18945.12;21749.6;18121.21 -5817;'902;Net Food Importing Developing Countries;1864;Wood fuel;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;316;2132;2650;2400;1200;694;694;9668;970;861;659;3322;6787;9094;13447;14677;21833;26671;339547;422978;314158;320599;336830;487070;870239;737776;767913;896211;724459;1007096.2;1090862;977318 -5817;'902;Net Food Importing Developing Countries;1864;Wood fuel;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;168;292;277;128;76;76;301;41;33;66;481;666;838;1006;1460;2691;3152;17534;17223;14575.45;15258.22;16351;18452;33254;25606;27369;32782;30736;50859.92;51009;47327 -5817;'902;Net Food Importing Developing Countries;1627;Wood fuel, coniferous;5516;Production;m3;6715386;6824465;6762533;7079604;7227692;7319973;7479374;7648859;7794449;7886160;7956601;8037484;8088223;8199692;8364389;8437036;8675155;8817345;9065935;9101380;9287482;9179045;8708313;8811733;9005947;9106875;9137394;9124864;9262797;9250303;9102317;9262941;11976546;12194458;12341629;12903695;12988803;13007581;13223444;13646180;13828820;14008715;14122905;14036419;15715994;15838104;16146723;16286512;16388583;16503096;16579106;17065201;17166546;17134800;17231590;17307345;17502958;17580910;17660803;17730152;17848893;17948441;18042992 -5817;'902;Net Food Importing Developing Countries;1627;Wood fuel, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121518;220739;259226;297852;602333.66;648784.28;601215.19 -5817;'902;Net Food Importing Developing Countries;1627;Wood fuel, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4555;6840;7552;8206;18374.12;21139.91;16395.52 -5817;'902;Net Food Importing Developing Countries;1627;Wood fuel, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;240993;238501;247058;125743;168637.36;112684;97418 -5817;'902;Net Food Importing Developing Countries;1627;Wood fuel, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7817;6729;8162;10112;15695;14064;8080 -5817;'902;Net Food Importing Developing Countries;1628;Wood fuel, non-coniferous;5516;Production;m3;282077542;286620944;291447886;296393656;301595994;306341666;312141437;318223865;324126660;329400783;335476025;341341396;347148198;351783967;358808910;363708415;369907152;377216569;384849641;392911878;399489047;406564676;413688055;423503086;433445289;441403817;448292543;456378981;465570469;488206548;502971220;510704804;518380872;529436040;538882637;548431166;550358784;557104579;562736334;576169475;585355725;589347147;598714286;599843881;613362676;622498316;630425867;637206839;643246931;648868046;655944331;657308868;661833153;666642412;672220187;676987859;681043496;685600460;690513936;692527019;696011221;701303560;711709741 -5817;'902;Net Food Importing Developing Countries;1628;Wood fuel, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14468;3393;5002;3893;5514.77;6319.05;6339.05 -5817;'902;Net Food Importing Developing Countries;1628;Wood fuel, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;442;289;475;538;571;609.69;1725.69 -5817;'902;Net Food Importing Developing Countries;1628;Wood fuel, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;496783;529412;649153;598716;838458.84;978178;879900 -5817;'902;Net Food Importing Developing Countries;1628;Wood fuel, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17789;20640;24620;20624;35164.92;36945;39247 -5817;'902;Net Food Importing Developing Countries;1629;Wood fuel, all species (export/import, 1961-2016);5616;Import quantity;m3;4000;6000;7600;6500;6600;11900;7400;6600;6800;6200;3000;3000;4500;4400;5900;5800;6300;4500;6400;700;300;40300;43300;33100;33100;32800;32800;32800;38300;35500;2700;6475;11439;17790;14718;19132;11709;9732;8018;8694;7034;6892;6260;6442;6714.7;6370;6942;6321;5087;67185;47494;93553;164347.58;235358;285485;250540;;;;;;; -5817;'902;Net Food Importing Developing Countries;1629;Wood fuel, all species (export/import, 1961-2016);5622;Import value;1000 USD;38;64;107;81;82;190;127;114;108;126;76;65;114;137;172;222;296;225;230;27;11;756;896;666;628;640;640;640;1374;1199;489;553;779;869;1217;1015;456;416;517;549;550;468;491;790;839.5;745;1045;974;958;5914;4599;4302;5309.56;7747;9874;10105;;;;;;; -5817;'902;Net Food Importing Developing Countries;1629;Wood fuel, all species (export/import, 1961-2016);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;316;2132;2650;2400;1200;694;694;9668;970;861;659;3322;6787;9094;13447;14677;21833;26671;339547;422978;314158;320599;336830;487070;870239;;;;;;; -5817;'902;Net Food Importing Developing Countries;1629;Wood fuel, all species (export/import, 1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;168;292;277;128;76;76;301;41;33;66;481;666;838;1006;1460;2691;3152;17534;17223;14575.45;15258.22;16351;18452;33254;;;;;;; -5817;'902;Net Food Importing Developing Countries;1865;Industrial roundwood;5516;Production;m3;22807000;23012000;24319000;25654000;27168000;28167300;29295300;31155600;33829300;33730500;35985200;36007600;37718500;36573800;35919100;38318800;39369600;39711400;40370800;41434700;39917250;41059700;40509500;40371700;41663860;40904811;40808508;41361499;42684305;45173787;44834891;46366645;46520841;48128029;48729004;50304236;51635575;52550272;54169697;54419551;54475590;55219122;54824765;55878442;56137140;57904921;59555148;60175989;58128269;59080079;60729453;61103714;63212624;65397609;63461186;63944264;64656362;64304022;64896095;64821830;66512926;67980581;67911461 -5817;'902;Net Food Importing Developing Countries;1865;Industrial roundwood;5616;Import quantity;m3;309500;334000;325900;296200;320200;339900;324700;275900;361100;513200;672100;443200;408700;526600;481500;479800;563000;494000;464100;662400;730000;806200;829400;748100;950000;655197;722034;1065853;655253;354887;589597;699226;531479;942564;994752;1189500;1519511;1163040;1444996;1134951;1089146;956659;1192941;1674723;1252494;1055886;1041796;1151302;593355;752966;756741;668985;578103.13;834482.23;597370;724362;994334;1095210;949841;745484;801581;904823;1768612 -5817;'902;Net Food Importing Developing Countries;1865;Industrial roundwood;5622;Import value;1000 USD;11160;14992;11751;12696;12997;17068;14820;11359;15519;19713;27208;21460;21591;42085;55194;49066;62231;60917;57215;89474;103963;118183;109724;100158;120180;87637;113486;138407;125853;45919;74343;97944;73419;134502;157108;126842;140455;111676;144179;119112;138319;110081;136974;149631;132613.2;129556;165271;205172;122869.3;156886.1;165546.94;132316.66;132938.1;166827.3;108187;115652;178660;204325;165404;160811;146465;163298;118594 -5817;'902;Net Food Importing Developing Countries;1865;Industrial roundwood;5916;Export quantity;m3;2823500;2754400;3219000;3934800;3836500;3741400;4069600;4840300;6004400;5168300;5336000;5813300;6705400;5681900;4480650;5836447;6105800;5809500;5769600;5639800;4794000;4805600;4792600;5098300;3897100;3350695;3086438;3498137;3828658;4229502;4094939;4844420;4017052;4200976;4662293;5060263;4625821;3868544;5019199;6217196;5712823;5202709;5173823;5333533;7008136;6005315;6495965;6471183;5269670;5802128;6132228;6277522;6966162;7810441;6688975;5966215;5702032;5154216;4243487;3407260;4085871;3244785;3348721 -5817;'902;Net Food Importing Developing Countries;1865;Industrial roundwood;5922;Export value;1000 USD;79770;84898;115451;132922;124157;123980;130668;157243;202223;159317;171018;231055;408172;422918;275817;416823;457434;478117;608120;837550;585598;476831;470867;466062;389583;384743;315951;400552;417862;737764;580339;850444;855939;897506;704802;636902;515433;573509;683976;981586;962644;923405;861347;792775;1573987;1611704;2063511;2224602;1695822;2123342;2278879.43;2491824;3245174.4;4016290.2;2135674;1746810;1714878;1610835;1335397;916850;1235120;931429;760349 -5817;'902;Net Food Importing Developing Countries;1866;Industrial roundwood, coniferous;5516;Production;m3;2389000;2389000;2902000;3293000;3554000;3555000;3535000;3716300;4020000;4108200;4810400;5221300;5257200;5006500;5616100;6084500;6204900;6521600;5918800;6037100;6119500;6789300;5674400;5913800;6415000;5456700;5447200;6119300;5999900;5920500;5867600;6144500;6385400;6725100;6689500;7018900;6740800;6839900;7590800;7723200;7562700;7909523;7545018;8172270;8877650;8961950;9532864;9512449;9096211;8496914;8909457;8649344;8997410;8968744;9084197;9043853;9726348;9961719;9775562;9661478;9796694;9989779;9762829 -5817;'902;Net Food Importing Developing Countries;1866;Industrial roundwood, coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;205886;179391;188648;118291;231365;201452;314635;708415;587244;638939;508248;435210;346506;437203;492512;323633;390131;364312;353163;271989;300579;310321;293834;303057;408295.1;291883;284563;489358;652781;615309;472968;625824;591354;436197 -5817;'902;Net Food Importing Developing Countries;1866;Industrial roundwood, coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26686;21909;28787;17148;40535;35984;33209;67300;48415;54371;46988;36534;31765;35998;32207;30533.2;42676;49201;58139;37697.3;39189;43558.2;48142;42564;57689;45502;37882;74743;117073;109994;84804;96870;82054;66527 -5817;'902;Net Food Importing Developing Countries;1866;Industrial roundwood, coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51709;190183;298975;350780;518871;496360;295801;163715;164789;214790;59910;39667;131348;188118;244751;210207;160778;214718;81127;70778;127143;91393;70628;60489;104986;61614;31975;42538;52835;74194;37594;43206;34231;16199 -5817;'902;Net Food Importing Developing Countries;1866;Industrial roundwood, coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4809;9976;30118;32602;83706;38450;45817;31179;23626;19757;8833;5348;10252;16086;14652;16344;9201;13864;11509;5981;11231;11400;9481;12754;15330.2;12795;7190;13794;10522;19771;11429;14102;14392;3266 -5817;'902;Net Food Importing Developing Countries;1651;Industrial roundwood, coniferous (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;205886;179391;188648;118291;231365;201452;314635;708415;587244;638939;508248;435210;346506;437203;492512;323633;390131;364312;353163;271989;300579;310321;293834;303057;408295.1;291883;284563;489358;652781;615309;472968;625824;591354;436197 -5817;'902;Net Food Importing Developing Countries;1651;Industrial roundwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26686;21909;28787;17148;40535;35984;33209;67300;48415;54371;46988;36534;31765;35998;32207;30533.2;42676;49201;58139;37697.3;39189;43558.2;48142;42564;57689;45502;37882;74743;117073;109994;84804;96870;82054;66527 -5817;'902;Net Food Importing Developing Countries;1651;Industrial roundwood, coniferous (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51709;190183;298975;350780;518871;496360;295801;163715;164789;214790;59910;39667;131348;188118;244751;210207;160778;214718;81127;70778;127143;91393;70628;60489;104986;61614;31975;42538;52835;74194;37594;43206;34231;16199 -5817;'902;Net Food Importing Developing Countries;1651;Industrial roundwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4809;9976;30118;32602;83706;38450;45817;31179;23626;19757;8833;5348;10252;16086;14652;16344;9201;13864;11509;5981;11231;11400;9481;12754;15330.2;12795;7190;13794;10522;19771;11429;14102;14392;3266 -5817;'902;Net Food Importing Developing Countries;1867;Industrial roundwood, non-coniferous;5516;Production;m3;20418000;20623000;21417000;22361000;23614000;24612300;25760300;27439300;29809300;29622300;31174800;30786300;32461300;31567300;30303000;32234300;33164700;33189800;34452000;35397600;33797750;34270400;34835100;34457900;35248860;35448111;35361308;35242199;36684405;39253287;38967291;40222145;40135441;41402929;42039504;43285336;44894775;45710372;46578897;46696351;46912890;47309599;47279747;47706172;47259490;48942971;50022284;50663540;49032058;50583165;51819996;52454370;54215214;56428865;54376989;54900411;54930014;54342303;55120533;55160352;56716232;57990802;58148632 -5817;'902;Net Food Importing Developing Countries;1867;Industrial roundwood, non-coniferous;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;149001;410206;510578;413188;711199;793300;874865;811096;575796;806057;626703;653936;610153;755738;1182211;928861;665755;677484;798139;321366;452387;446420;375151;275046.13;426187.13;305487;439799;504976;442429;334532;272516;175757;313469;1332415 -5817;'902;Net Food Importing Developing Countries;1867;Industrial roundwood, non-coniferous;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19233;52434;69157;56271;93967;121124;93633;73155;63261;89808;72124;101785;78316;100976;117424;102080;86880;116070;147033;85172;117697.1;121988.74;84174.66;90374.1;109138.3;62685;77770;103917;87252;55410;76007;49595;81244;52067 -5817;'902;Net Food Importing Developing Countries;1867;Industrial roundwood, non-coniferous;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4177793;3904756;4545445;3666272;3682105;4165933;4764462;4462106;3703755;4804409;6157286;5673156;5071361;4985705;5088782;6797929;5844537;6281247;6390056;5198892;5674985;6040835;6206894;6905673;7705455;6627361;5934240;5659494;5101381;4169293;3369666;4042665;3210554;3332522 -5817;'902;Net Food Importing Developing Countries;1867;Industrial roundwood, non-coniferous;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;732955;570363;820326;823337;813800;666352;591085;484254;549883;664219;972753;957296;913153;845261;778123;1557643;1602503;2049647;2213093;1689841;2112111;2267479.43;2482343;3232420.4;4000960;2122879;1739620;1701084;1600313;1315626;905421;1221018;917037;757083 -5817;'902;Net Food Importing Developing Countries;1657;Industrial roundwood, non-coniferous tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77429;216987;269648;309635;313922;229012;537626;463583;437510;428437;285506;303950;179221;167932;262445;264003;122400;131777;117262;91060;95208;99399;80375;126013;290715;127581;150370;184417;82097;73452;27438;56779;80914;702950 -5817;'902;Net Food Importing Developing Countries;1657;Industrial roundwood, non-coniferous tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8933;32311;43466;44734;54339;43261;39918;37328;39887;60218;45974;71317;37180;41388;45224;44743;30672;49736;37139;25799;36671;34331.38;25663.66;49565.38;69144.58;30802;31322;45927;20874;18758;9072;20409;26968;18817 -5817;'902;Net Food Importing Developing Countries;1657;Industrial roundwood, non-coniferous tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4176722;3903084;4541558;3662556;3681227;4111918;4718066;4427818;3546989;4605827;5925460;5581188;4979197;4861028;4813151;6484328;5647907;6207066;6356001;5168180;5566924;5797303;6132712;6872648;7628402;6618000;5905717;5624377;5094676;4150293;3350750;4012783;3139339;2965187 -5817;'902;Net Food Importing Developing Countries;1657;Industrial roundwood, non-coniferous tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;732775;570156;819895;822858;813634;650514;578040;474116;528832;632877;926210;930352;883366;803763;731967;1509260;1573456;2023764;2198503;1675474;2073968;2188907.43;2455328;3219080;3982447;2117675;1733494;1695946;1596770;1311349;901068;1214135;882692;750066 -5817;'902;Net Food Importing Developing Countries;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71572;193219;240930;103553;397277;564288;337239;347513;138286;377620;341197;349986;430932;587806;919766;664858;543355;545707;680877;230306;357179;347021;294776;149033.13;135472.13;177906;289429;320559;360332;261080;245078;118978;232555;629465 -5817;'902;Net Food Importing Developing Countries;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10300;20123;25691;11537;39628;77863;53715;35827;23374;29590;26150;30468;41136;59588;72200;57337;56208;66334;109894;59373;81026.1;87657.35;58511;40808.72;39993.72;31883;46448;57990;66378;36652;66935;29186;54276;33250 -5817;'902;Net Food Importing Developing Countries;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1071;1672;3887;3716;878;54015;46396;34288;156766;198582;231826;91968;92164;124677;275631;313601;196630;74181;34055;30712;108061;243532;74182;33025;77053;9361;28523;35117;6705;19000;18916;29882;71215;367335 -5817;'902;Net Food Importing Developing Countries;1670;Industrial roundwood, non-coniferous non-tropical (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;180;207;431;479;166;15838;13045;10138;21051;31342;46543;26944;29787;41498;46156;48383;29047;25883;14590;14367;38143;78572;27015;13340.4;18513;5204;6126;5138;3543;4277;4353;6883;34345;7017 -5817;'902;Net Food Importing Developing Countries;1868;Sawlogs and veneer logs;5516;Production;m3;11875000;11523000;12082000;13300000;14289000;14854000;15553000;16984300;19261000;18673200;20280400;19800300;21234200;19934500;18305800;20140500;20489200;20034700;20532200;21267000;19735850;20257300;19280700;18634700;19109300;18751511;18157208;17852599;18176405;20485187;19149391;19930045;19510141;20057629;19678404;20641286;21204475;23014022;23270097;23619951;24650990;25069022;23898265;23959842;25216540;26266521;27468848;27961289;26022569;26580945;29430608;30878469;32837209;34435994;32653946;32966443;33693782;33250917;33841070;33923463;35516559;37007364;36692284 -5817;'902;Net Food Importing Developing Countries;1868;Sawlogs and veneer logs;5616;Import quantity;m3;121600;86700;53700;133800;142800;143900;145300;157800;235400;298400;292500;290600;280700;303700;228400;317300;378800;337700;328500;520100;488400;579300;600700;539200;748800;403597;533234;539753;373953;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5817;'902;Net Food Importing Developing Countries;1868;Sawlogs and veneer logs;5622;Import value;1000 USD;7090;7694;3323;6142;7027;7559;6738;6723;10839;11627;11898;14933;15949;27708;21929;33707;43804;44456;44196;74192;79241;92917;88812;82874;104247;65025;99525;100721;89847;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5817;'902;Net Food Importing Developing Countries;1868;Sawlogs and veneer logs;5916;Export quantity;m3;2808100;2732200;3185600;3876000;3749500;3652400;3976400;4723700;5904500;5069200;5261000;5746500;6624800;5541600;4334950;5586107;5859400;5583000;5515600;5467100;4513800;4527200;4507500;4818300;3624900;3252195;2973738;3421337;3708458;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5817;'902;Net Food Importing Developing Countries;1868;Sawlogs and veneer logs;5922;Export value;1000 USD;79643;84742;115192;132554;123518;123326;129989;156562;201539;158768;170515;230315;406148;421779;273797;413676;453904;473662;603325;833750;580153;472236;465399;460984;385428;382206;312083;395192;406893;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5817;'902;Net Food Importing Developing Countries;1601;Sawlogs and veneer logs, coniferous;5516;Production;m3;2184000;2181000;2306000;2598000;2826000;2839000;2805000;2977300;3246000;3290200;3653400;3950300;3986200;3667500;3660100;4119500;4203900;4282600;4119300;4344100;4325700;4984800;3848300;4023500;4472000;4292300;4340600;4381200;4406800;4322800;4281500;4332500;4537800;4926900;4891000;5221600;4956500;5106700;5856600;5988000;5725000;6099223;5798318;5897770;6715050;6608150;7076164;7029349;6560911;5977814;6396257;6656444;7075510;7045232;7124971;7080891;7649515;7736886;7550729;7444645;7529861;7772946;7526606 -5817;'902;Net Food Importing Developing Countries;1601;Sawlogs and veneer logs, coniferous;5616;Import quantity;m3;62400;37300;16300;38200;58500;50700;28900;20200;54200;68100;64800;107300;71200;51900;59200;130500;122200;107300;98500;188700;276700;359800;400100;318000;414900;175493;274534;261100;140153;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5817;'902;Net Food Importing Developing Countries;1601;Sawlogs and veneer logs, coniferous;5622;Import value;1000 USD;1979;1454;638;1778;3283;2618;1370;1008;2379;3280;2852;6264;5338;8116;7492;16525;20559;19330;14061;32757;50185;62730;65809;56037;67708;36538;61442;59200;57211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5817;'902;Net Food Importing Developing Countries;1601;Sawlogs and veneer logs, coniferous;5916;Export quantity;m3;46600;49800;63200;44500;31200;23400;45000;81200;111600;85100;70000;25700;30500;25500;33100;34200;26200;20400;17400;28700;21500;18100;600;600;600;600;600;3300;12700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5817;'902;Net Food Importing Developing Countries;1601;Sawlogs and veneer logs, coniferous;5922;Export value;1000 USD;1693;1637;1739;1614;1271;877;1014;1186;2443;1575;780;643;1258;1032;1670;1936;2208;2014;1620;3631;2258;2213;79;79;79;79;79;734;2898;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5817;'902;Net Food Importing Developing Countries;1604;Sawlogs and veneer logs, non-coniferous;5516;Production;m3;9691000;9342000;9776000;10702000;11463000;12015000;12748000;14007000;16015000;15383000;16627000;15850000;17248000;16267000;14645700;16021000;16285300;15752100;16412900;16922900;15410150;15272500;15432400;14611200;14637300;14459211;13816608;13471399;13769605;16162387;14867891;15597545;14972341;15130729;14787404;15419686;16247975;17907322;17413497;17631951;18925990;18969799;18099947;18062072;18501490;19658371;20392684;20931940;19461658;20603131;23034351;24222025;25761699;27390762;25528975;25885552;26044267;25514031;26290341;26478818;27986698;29234418;29165678 -5817;'902;Net Food Importing Developing Countries;1604;Sawlogs and veneer logs, non-coniferous;5616;Import quantity;m3;59200;49400;37400;95600;84300;93200;116400;137600;181200;230300;227700;183300;209500;251800;169200;186800;256600;230400;230000;331400;211700;219500;200600;221200;333900;228104;258700;278653;233800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5817;'902;Net Food Importing Developing Countries;1604;Sawlogs and veneer logs, non-coniferous;5622;Import value;1000 USD;5111;6240;2685;4364;3744;4941;5368;5715;8460;8347;9046;8669;10611;19592;14437;17182;23245;25126;30135;41435;29056;30187;23003;26837;36539;28487;38083;41521;32636;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5817;'902;Net Food Importing Developing Countries;1604;Sawlogs and veneer logs, non-coniferous;5916;Export quantity;m3;2761500;2682400;3122400;3831500;3718300;3629000;3931400;4642500;5792900;4984100;5191000;5720800;6594300;5516100;4301850;5551907;5833200;5562600;5498200;5438400;4492300;4509100;4506900;4817700;3624300;3251595;2973138;3418037;3695758;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5817;'902;Net Food Importing Developing Countries;1604;Sawlogs and veneer logs, non-coniferous;5922;Export value;1000 USD;77950;83105;113453;130940;122247;122449;128975;155376;199096;157193;169735;229672;404890;420747;272127;411740;451696;471648;601705;830119;577895;470023;465320;460905;385349;382127;312004;394458;403995;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5817;'902;Net Food Importing Developing Countries;2038;Pulpwood, round and split (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2191000;1875000;1905000;1963000;1778000;1811000;2356000;2111000;2386000;2610000;2637400;2604400;2558400;2775400;2196400;2241740;2287568;2360568;2366568;2345068;2495734;2493835;2365177;2463177;2403177;2651177 -5817;'902;Net Food Importing Developing Countries;1602;Pulpwood, round and split, coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1149000;1143000;1131000;1219000;1192000;1108000;1627000;1505000;1691000;1775000;1771400;1821400;1819400;1819400;1296400;1235400;1235400;1235400;1235400;1354400;1502400;1502400;1495400;1545400;1495400;1495400 -5817;'902;Net Food Importing Developing Countries;1603;Pulpwood, round and split, non-coniferous (production);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1042000;732000;774000;744000;586000;703000;729000;606000;695000;835000;866000;783000;739000;956000;900000;1006340;1052168;1125168;1131168;990668;993334;991435;869777;917777;907777;1155777 -5817;'902;Net Food Importing Developing Countries;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;34000;43500;60300;53800;37500;59200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5817;'902;Net Food Importing Developing Countries;1614;Pulpwood, round and split, all species (export/import, 1961-1989);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;4011;8251;7121;5160;4551;7731;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5817;'902;Net Food Importing Developing Countries;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5817;'902;Net Food Importing Developing Countries;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5817;'902;Net Food Importing Developing Countries;1870;Pulpwood and particles (1961-1997);5516;Production;m3;137000;252000;684000;807000;805000;807000;825000;825000;913000;983000;1392000;1525000;1496000;1604000;2223000;2311000;2283000;2632000;2160000;2043400;2031400;1932400;2053400;2161400;2241060;1175400;1175000;1596000;1644900;1498700;1960700;2064700;1659700;1926700;1741200;1722700;1450700;;;;;;;;;;;;;;;;;;;;;;;;;; -5817;'902;Net Food Importing Developing Countries;1870;Pulpwood and particles (1961-1997);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;34000;43500;60300;53800;37500;59200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5817;'902;Net Food Importing Developing Countries;1870;Pulpwood and particles (1961-1997);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;4011;8251;7121;5160;4551;7731;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5817;'902;Net Food Importing Developing Countries;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5817;'902;Net Food Importing Developing Countries;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5817;'902;Net Food Importing Developing Countries;1608;Pulpwood and particles, coniferous (production, 1961-1997);5516;Production;m3;60000;60000;440000;530000;530000;540000;540000;545000;578000;612000;942000;1052000;1046000;1108000;1715000;1720000;1753000;1990000;1549000;1434000;1524000;1516000;1536000;1585000;1573000;708000;542000;1161000;1024000;1014000;994000;1217000;1235000;1175000;1167500;1154000;1154000;;;;;;;;;;;;;;;;;;;;;;;;;; -5817;'902;Net Food Importing Developing Countries;1611;Pulpwood and particles, non-coniferous (production, 1961-1997);5516;Production;m3;77000;192000;244000;277000;275000;267000;285000;280000;335000;371000;450000;473000;450000;496000;508000;591000;530000;642000;611000;609400;507400;416400;517400;576400;668060;467400;633000;435000;620900;484700;966700;847700;424700;751700;573700;568700;296700;;;;;;;;;;;;;;;;;;;;;;;;;; -5817;'902;Net Food Importing Developing Countries;1871;Other industrial roundwood;5516;Production;m3;10795000;11237000;11553000;11547000;12074000;12506300;12917300;13346300;13655300;14074300;14312800;14682300;14988300;15035300;15390300;15867300;16597400;17044700;17678600;18124300;18150000;18870000;19175400;19575600;20313500;20977900;21476300;21912900;22863000;23189900;23724800;24371900;25351000;26143700;27309400;27940250;28980400;27345250;29024600;28894600;27861600;28372100;29115500;29562600;28809600;29252400;29476300;29577300;29501300;29940734;28523445;28028845;28133675;28674047;28446672;28611253;28617512;28557371;28561190;28533190;28533190;28570040;28568000 -5817;'902;Net Food Importing Developing Countries;1871;Other industrial roundwood;5616;Import quantity;m3;187900;247300;272200;162400;177400;196000;179400;118100;125700;214800;379600;152600;128000;222900;253100;162500;184200;156300;135600;142300;207600;183400;168400;155100;163700;192400;188800;526100;281300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5817;'902;Net Food Importing Developing Countries;1871;Other industrial roundwood;5622;Import value;1000 USD;4070;7298;8428;6554;5970;9509;8082;4636;4680;8086;15310;6527;5642;14377;33265;15359;18427;16461;13019;15282;20711;17015;13791;12124;11382;14881;13961;37686;36006;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5817;'902;Net Food Importing Developing Countries;1871;Other industrial roundwood;5916;Export quantity;m3;15400;22200;33400;58800;87000;89000;93200;92800;76100;96600;73600;65800;79000;72800;75700;123340;146700;151700;142000;88600;106900;105100;111800;106700;98900;98500;112700;76800;120200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5817;'902;Net Food Importing Developing Countries;1871;Other industrial roundwood;5922;Export value;1000 USD;127;156;259;368;639;654;679;629;632;531;487;729;2006;1080;1911;2747;3037;4000;4368;3328;3875;3025;3898;3508;2585;2537;3868;5360;10969;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5817;'902;Net Food Importing Developing Countries;1623;Other industrial roundwood, coniferous (production);5516;Production;m3;145000;148000;156000;165000;198000;176000;190000;194000;196000;206000;215000;219000;225000;231000;241000;245000;248000;249000;250500;259000;269800;288500;290100;305300;370000;456400;564600;577100;569100;583700;592100;595000;612600;623200;631000;643300;630300;584200;591200;604200;618700;618300;638700;647500;657600;662800;681700;711700;713900;699700;693800;696500;686500;688112;723826;727562;722433;722433;722433;721433;721433;721433;740823 -5817;'902;Net Food Importing Developing Countries;1626;Other industrial roundwood, non-coniferous (production);5516;Production;m3;10650000;11089000;11397000;11382000;11876000;12330300;12727300;13152300;13459300;13868300;14097800;14463300;14763300;14804300;15149300;15622300;16349400;16795700;17428100;17865300;17880200;18581500;18885300;19270300;19943500;20521500;20911700;21335800;22293900;22606200;23132700;23776900;24738400;25520500;26678400;27296950;28350100;26761050;28433400;28290400;27242900;27753800;28476800;28915100;28152000;28589600;28794600;28865600;28787400;29241034;27829645;27332345;27447175;27985935;27722846;27883691;27895079;27834938;27838757;27811757;27811757;27848607;27827177 -5817;'902;Net Food Importing Developing Countries;1625;Other industrial roundwood, all species (export/import, 1961-1989);5616;Import quantity;m3;187900;247300;272200;162400;177400;196000;179400;118100;125700;214800;379600;152600;128000;222900;253100;162500;184200;156300;135600;142300;207600;183400;168400;155100;163700;192400;188800;526100;281300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5817;'902;Net Food Importing Developing Countries;1625;Other industrial roundwood, all species (export/import, 1961-1989);5622;Import value;1000 USD;4070;7298;8428;6554;5970;9509;8082;4636;4680;8086;15310;6527;5642;14377;33265;15359;18427;16461;13019;15282;20711;17015;13791;12124;11382;14881;13961;37686;36006;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5817;'902;Net Food Importing Developing Countries;1625;Other industrial roundwood, all species (export/import, 1961-1989);5916;Export quantity;m3;15400;22200;33400;58800;87000;89000;93200;92800;76100;96600;73600;65800;79000;72800;75700;123340;146700;151700;142000;88600;106900;105100;111800;106700;98900;98500;112700;76800;120200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5817;'902;Net Food Importing Developing Countries;1625;Other industrial roundwood, all species (export/import, 1961-1989);5922;Export value;1000 USD;127;156;259;368;639;654;679;629;632;531;487;729;2006;1080;1911;2747;3037;4000;4368;3328;3875;3025;3898;3508;2585;2537;3868;5360;10969;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5817;'902;Net Food Importing Developing Countries;1630;Wood charcoal;5510;Production;t;4974347;5118082;5260642;5705843;5880320;6017903;6211760;6379966;6594954;6735952;6906281;7065913;7318586;7504300;7706974;7916872;8189684;8434983;8732085;9176088;9444801;9761218;10139889;10593488;11058468;11443706;11740307;12175411;12682360;12895280;13334186;12907486;13406577;13988897;15206867;15904200;16007848;16392613;16418626;16612685;17207318;17873011;18476449;19217342;19702789;20258028;21036468;21418037;22013685;22897109;23268335;23669677;24754365;25323442;25819970;26306671;26833416;27466538;27789960;28171730;29248078;30780919;31204367 -5817;'902;Net Food Importing Developing Countries;1630;Wood charcoal;5610;Import quantity;t;12100;1800;1300;5600;19100;18000;23700;17000;15300;12400;8300;8200;2400;900;400;100;100;100;100;100;400;500;500;300;700;800;800;800;800;800;800;69781;50549;63459;62211;14452;17075;14519;15066;19056;5686;3804;6236;9543;10223;18615;28209;45920;56425.2;36174;38451;39961.25;35485.26;88407.26;56681.29;54477;67068;171335;165470;152901;232547.37;328380.97;334060.97 -5817;'902;Net Food Importing Developing Countries;1630;Wood charcoal;5622;Import value;1000 USD;458;62;52;205;344;388;407;350;433;306;203;251;57;32;49;16;16;16;16;16;89;165;165;99;312;251;251;251;251;251;251;3063;3737;4314;3854;1952;2466;2017;2273;2826;1349;1210;2465;3664;4600;5263;8362;14042;20891;14509;17868;20479.38;19200.88;35498.49;27674.35;30794.1;37886.1;63756.1;68083;71725;92438.35;144435.25;109306.25 -5817;'902;Net Food Importing Developing Countries;1630;Wood charcoal;5910;Export quantity;t;42600;18800;14300;21200;36800;32100;37300;39700;55600;67300;78100;30900;47700;45200;28000;28000;27600;27500;27500;30200;30100;29000;31800;31800;7700;5600;5600;5600;5600;5600;5600;39325;37288;88078;64815;72215;68571;50531;54548;143145;169332;164133;227211;274154;280399;323144;301982;490703;523908;584519;673427;608917;512768;655548.1;604299.1;530366;517150;589096;626309;553425;500941.13;833394;1019009 -5817;'902;Net Food Importing Developing Countries;1630;Wood charcoal;5922;Export value;1000 USD;1482;772;602;783;1041;1053;1423;1457;1713;2133;2810;930;1573;1730;975;1017;1018;987;1044;5793;5782;3197;3454;3454;851;615;615;615;615;615;615;5699;5915;14392;8042;12042;12288;9362;8880;19451;28863;27708;37353;39170;45808;60104;61389;72573;86591;98011;132121;135370;126849;161631;156817;149680;148497;160927;193353;174491;183944.01;299711;375944 -5817;'902;Net Food Importing Developing Countries;1695;Wood chips, particles and residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1495450;1475050;1365050;760450;804050;771580;782395;812350;926750;947850;961250;946710;946202;946882;1132302;1452254;2508651;2001966;1994114;2180924;2509024;2509980;2512555;2511872;2511872;2511872 -5817;'902;Net Food Importing Developing Countries;1695;Wood chips, particles and residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21733;10560;11311;11913;11751;9127;28399;23162;19155;24912;31855;20783;70718;67786.06;77795.2;31853.57;40380.92;34625.95;37029.85;47294.85;748532.85;882497.82;872515.82;260033.12;1463647.29;1461098.82 -5817;'902;Net Food Importing Developing Countries;1695;Wood chips, particles and residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1579;685;895;960;1108;1289;1709;1633;1829;5426;6396;4097.2;8151;11676.65;12538;6862.84;9926.5;7031.8;6937.66;6856.66;44454.66;63295.66;68445.66;21618.79;101085.76;109027.84 -5817;'902;Net Food Importing Developing Countries;1695;Wood chips, particles and residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4215;9529;4800;3535;3191;5797;28746;28659;49024;38547;198800;402944.46;641861.88;915614.06;871942.34;459169.48;818029.16;336646;100129;264613;352301;186138;92341;84596.61;99110.89;135302.89 -5817;'902;Net Food Importing Developing Countries;1695;Wood chips, particles and residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;693;844;775;187;383;577;1704;1792;3153;3217;20846;31323;44452;54554.08;72505.19;51725.5;70466.54;34558;17384.45;30370;27327;11169;6466;8109.15;8821.16;17000.16 -5817;'902;Net Food Importing Developing Countries;1619;Wood chips and particles;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84950;84950;84950;90350;111250;111250;119750;115750;228050;248850;260850;249750;248850;250350;250150;446402;1035914;577214;438007;577359;769459;770415;767990;767307;767307;767307 -5817;'902;Net Food Importing Developing Countries;1619;Wood chips and particles;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96;4854;2457;6020;7578;17628;11957;8362;8920;6185;5807;2010;9525;6373;4483;11603;12433;5601;50130;47117.06;57100.2;18051.3;23992;20851.03;20237.03;18315.03;719362.03;780569;851541;228277.73;1448791.47;1424413 -5817;'902;Net Food Importing Developing Countries;1619;Wood chips and particles;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6;257;161;1564;1634;946;980;482;546;546;510;392;745;718;780;4361;4217;2079.2;5821;6829.65;8409;3340.44;5196.74;4163.04;3623;3025;40360;57350;66374;19269.76;99554.1;105304.18 -5817;'902;Net Food Importing Developing Countries;1619;Wood chips and particles;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;890;582;112;112;112;53;53;6121;776;1220;2217;4738;25946;25486;42964;32263;149579;340965.46;565750.88;794063.06;812958.34;411646.48;784710.16;313933;80667;233646;333861;130425;58600;57810.83;82833.89;127097.89 -5817;'902;Net Food Importing Developing Countries;1619;Wood chips and particles;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75;50;5;5;5;2;2;177;78;116;326;282;1289;1337;1644;1206;13701;22183;38013;45591.08;64981.19;45558.5;64789.54;31593;13124.45;22706;21725;6689;3102;3354.77;3595.16;12684.16 -5817;'902;Net Food Importing Developing Countries;1620;Wood residues;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;2000;10000;30000;103000;105000;106500;788500;788500;601500;605500;1214500;1410500;1390100;1280100;670100;692800;660330;662645;696600;698700;699000;700400;696960;697352;696532;882152;1005852;1472737;1424752;1556107;1603565;1739565;1739565;1744565;1744565;1744565;1744565 -5817;'902;Net Food Importing Developing Countries;1620;Wood residues;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7134;9308;7122;7281;9586;11183;9776;2198;2391;5728;5944;7117;18874;16789;14672;13309;19422;15182;20588;20669;20695;13802.27;16388.92;13774.92;16792.82;28979.82;29170.82;101928.82;20974.82;31755.39;14855.82;36685.82 -5817;'902;Net Food Importing Developing Countries;1620;Wood residues;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;298;377;370;389;515;717;599;203;349;414;598;897;964;915;1049;1065;2179;2018;2330;4847;4129;3522.4;4729.76;2868.76;3314.66;3831.66;4094.66;5945.66;2071.66;2349.03;1531.66;3723.66 -5817;'902;Net Food Importing Developing Countries;1620;Wood residues;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4104;4941;5849;4969;2936;2947;4162;3408;4024;2315;974;1059;2800;3173;6060;6284;49221;61979;76111;121551;58984;47523;33319;22713;19462;30967;18440;55713;33741;26785.78;16277;8205 -5817;'902;Net Food Importing Developing Countries;1620;Wood residues;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;166;441;556;456;211;222;691;667;697;71;57;295;415;455;1509;2011;7145;9140;6439;8963;7524;6167;5677;2965;4260;7664;5602;4480;3364;4754.38;5226;4316 -5817;'902;Net Food Importing Developing Countries;1605;Sawdust (export/import);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50;90 -5817;'902;Net Food Importing Developing Countries;1605;Sawdust (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52;53 -5817;'902;Net Food Importing Developing Countries;1605;Sawdust (export/import);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -5817;'902;Net Food Importing Developing Countries;1605;Sawdust (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -5817;'902;Net Food Importing Developing Countries;1600;Recovered post-consumer wood;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;670;440 -5817;'902;Net Food Importing Developing Countries;1600;Recovered post-consumer wood;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51;121 -5817;'902;Net Food Importing Developing Countries;1600;Recovered post-consumer wood;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -5817;'902;Net Food Importing Developing Countries;1600;Recovered post-consumer wood;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -5817;'902;Net Food Importing Developing Countries;1696;Wood pellets, briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22000;28000;46775;48000;66083;98849;133622;130319;132096;115000;116260;116200 -5817;'902;Net Food Importing Developing Countries;1696;Wood pellets, briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;222;691.7;1299;967;2906;7547;23055;46433;19826;23099.84;16953.51;11175.93 -5817;'902;Net Food Importing Developing Countries;1696;Wood pellets, briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120;252.3;571;416;894;1772;2223;7679;4454;4393.93;4842.05;4082.06 -5817;'902;Net Food Importing Developing Countries;1696;Wood pellets, briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14942;20529;22337;18847;21956;31696;34020;44703;17503;21382.15;33570.25;39189.64 -5817;'902;Net Food Importing Developing Countries;1696;Wood pellets, briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3625;5357;5013;3016;3444;4886;5707;8779;5698;5119;9343.94;11003.09 -5817;'902;Net Food Importing Developing Countries;1693;Wood pellets;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18000;24000;26775;28000;40393;61249;67249;67249;67249;63000;63000;63000 -5817;'902;Net Food Importing Developing Countries;1693;Wood pellets;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;209;683;1186;929;1482;1638;1625;2228;2016;625;1851.17;1110.6 -5817;'902;Net Food Importing Developing Countries;1693;Wood pellets;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106;240;526;392;462;524;538;1114;1054;766;1157.76;671.76 -5817;'902;Net Food Importing Developing Countries;1693;Wood pellets;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14942;20524;22332;18842;20115;28259;28259;19186;9367;6533.52;7153.82;13718.82 -5817;'902;Net Food Importing Developing Countries;1693;Wood pellets;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3625;5356;5012;3015;3104;4227;4227;3011;1437;690;1696.76;2922.76 -5817;'902;Net Food Importing Developing Countries;1694;Wood briquettes and other agglomerates;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;4000;20000;20000;25690;37600;66373;63070;64847;52000;53260;53200 -5817;'902;Net Food Importing Developing Countries;1694;Wood briquettes and other agglomerates;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13;8.7;113;38;1424;5909;21430;44205;17810;22474.84;15102.33;10065.33 -5817;'902;Net Food Importing Developing Countries;1694;Wood briquettes and other agglomerates;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14;12.3;45;24;432;1248;1685;6565;3400;3627.93;3684.3;3410.3 -5817;'902;Net Food Importing Developing Countries;1694;Wood briquettes and other agglomerates;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5;5;5;1841;3437;5761;25517;8136;14848.63;26416.43;25470.82 -5817;'902;Net Food Importing Developing Countries;1694;Wood briquettes and other agglomerates;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;1;1;340;659;1480;5768;4261;4429;7647.18;8080.33 -5817;'902;Net Food Importing Developing Countries;1872;Sawnwood;5516;Production;m3;3684200;3723700;4181300;4619600;4714200;5828400;5687200;5868100;5691900;5665201;5889400;5892600;6022700;5997500;5822800;5983601;6059401;5998878;6329861;6340101;6314800;6101750;6340000;6344600;6555440;6611173;6664223;6508873;6600438;7126689;7082519;7220679;7310319;7283709;7460489;7311989;6964489;6979309;7331209;7201309;7331809;8151909;8158859;8444259;8960945;9726972;9916545;10066084;9993608;10289174;11163252;11244839;12060352;12918898;12515250;11952422;12468731;12374540;12663341;11896366;12944381;13646803;13833291 -5817;'902;Net Food Importing Developing Countries;1872;Sawnwood;5616;Import quantity;m3;1266400;1311350;1359800;1749300;1722200;1990400;1854750;1620000;1606700;1871650;1844800;2275950;1858000;2257010;2337401;2629050;3433150;3371600;2690300;3897900;3675800;4028700;4195250;4768850;4779758;4079539;3569432;3367223;3518446;3443341;3515327;3591487;3183447;3881129;4693751;4045589;4713501;4415610;4679972;4190604;4576105;3790411;4846904;5559365;6391263;7254434;7205820;9850056;8890371;9710501;8899026;8729442;8964855;11243828;10148948;9369870;8411424;8752259;8089323;8858520;9002319;7774120;7872326 -5817;'902;Net Food Importing Developing Countries;1872;Sawnwood;5622;Import value;1000 USD;68943;68813;69450;93921;92260;103778;97116;86409;86787;109277;112893;135248;154341;232188;275896;308432;498911;526861;453644;582697;696897;705421;685618;734654;806548;827857;813753;818353;1374404;1487097;1051572;753709;679902;760581;994936;931324;1027709;870341;793250;757870;813293;706111;874519;975357;1205173;1378708;1825261.3;2064001.1;2008675;2380439;2223451;2403190;2297928;2845647;2253293;1966151;1925789;2299765;2075176;1834076;2475907;2090392;1774012 -5817;'902;Net Food Importing Developing Countries;1872;Sawnwood;5916;Export quantity;m3;544700;560650;637150;788000;859250;1073650;1136500;1214700;1091400;1036500;1105000;1355900;1422300;1367900;1213800;1283800;1374800;1292400;1276500;1083300;944100;985750;972200;930400;933300;906118;892624;845446;983091;1044919;1318219;1281651;1559181;1467484;1317022;1285406;1524888;1628379;1168255;1098623;1318215;1491910;1544783;1558536;1750304;1802555;2032668;2274054;1743073;1987340;2245199;2332947;2576161;3247844;2637486;2026588;2317996;2342308;2559283;2521846;2732246;3149404;3157966 -5817;'902;Net Food Importing Developing Countries;1872;Sawnwood;5922;Export value;1000 USD;30405;33110;40498;45821;52600;55675;57870;61473;68501;65523;67438;78364;118417;145378;123860;154040;165889;176587;199830;222189;173507;178188;185886;163920;183546;195010;212912;202620;229394;319154;369443;452048;535578;433381;464636;506384;404304;422775;368463;354763;420279;463866;498538;655455;784483;765607;916140;1132557;757290;970397.5;1225532;1258624.5;1436445;1935091;1724700;1193273;1241937;1289458;1091605;985004;1132452;1303851;1279428 -5817;'902;Net Food Importing Developing Countries;1632;Sawnwood, coniferous;5516;Production;m3;1078650;1082450;1263100;1395900;1475150;1840800;1727900;1847650;1754200;1781900;1818050;2073200;2110900;1977100;1928900;2097600;2133400;2129177;2211110;2043050;2083450;2054150;2103750;2200100;2295000;2180350;2204650;2275175;2282273;2232059;1886259;2129759;2437659;2449659;2484959;2489459;2362959;2306759;2471209;2383209;2333209;2362909;2497209;2666709;2694609;2952109;2984709;3050009;2997109;2933617;3079418;2729109;2935095;2969961;3042946;2948084;3191882;3185442;3128333;3058022;3214895;3139350;3137180 -5817;'902;Net Food Importing Developing Countries;1632;Sawnwood, coniferous;5616;Import quantity;m3;1120300;1131900;1190200;1491850;1453700;1618800;1454750;1094450;1251550;1574000;1559850;2030950;1589050;1887760;1958401;2191800;2840700;2583800;2053500;3221250;3024900;3325000;3467500;4039250;4173503;3455642;2939620;2831067;2803776;2809067;2961339;3036991;2772195;3178822;3944077;3276976;3959244;3718170;3911293;3539215;3711946;2901547;3906877;4425922;5070605;6144197;5904870;8148663;7638182;7968216;7484255;7280656;7685097;9644440;8854351;8065026;7051286;7520961;6331614;7229376;7012971;6080440;6305423 -5817;'902;Net Food Importing Developing Countries;1632;Sawnwood, coniferous;5622;Import value;1000 USD;59119;58457;58925;76361;74145;82963;74680;62824;65394;90217;94319;118074;133533;182470;223341;247492;400589;386342;318720;442387;575494;559586;549816;597577;696371;705960;691297;708941;1120199;1042292;622856;595136;593618;563341;776824;710764;814951;682726;619483;571559;563436;494774;623610;663722;865035;1056192;1382824;1559563;1514601;1784630;1693038;1832486;1696836;2177979;1703676;1444715;1368964;1738918;1509836;1330742;1904856;1579155;1298231 -5817;'902;Net Food Importing Developing Countries;1632;Sawnwood, coniferous;5916;Export quantity;m3;205100;184950;213450;255750;276350;420100;496850;573100;441300;395100;479100;725650;691300;648100;606450;633400;685150;606950;577450;454550;415850;443100;360150;307800;278900;266112;294974;229237;241717;183873;157973;254072;395778;293747;166950;208608;461070;540783;265758;212511;260644;333038;313409;333979;310260;243136;195739;222508;168532;155697;132611;118789;124140;147750;173167;220992;342167;315185;490812;579220;567502;517701;490199 -5817;'902;Net Food Importing Developing Countries;1632;Sawnwood, coniferous;5922;Export value;1000 USD;6714;6415;7925;9862;9752;10683;13590;15565;17067;15762;22480;30324;44240;48553;48357;50593;51238;52708;56840;40661;37206;51094;43327;39225;40569;36480;42182;34243;39387;27777;22789;37933;50191;48266;23014;26366;47674;61705;47258;60975;52674;57918;58510;62658;61552;63919;54299;61057;42393;41544.5;38367.9;34463.5;32652;47922;60944;56359;90611;100781;102107;124053;176180;165686;158810 -5817;'902;Net Food Importing Developing Countries;1633;Sawnwood, non-coniferous;5516;Production;m3;2605550;2641250;2918200;3223700;3239050;3987600;3959300;4020450;3937700;3883301;4071350;3819400;3911800;4020400;3893900;3886001;3926001;3869701;4118751;4297051;4231350;4047600;4236250;4144500;4260440;4430823;4459573;4233698;4318165;4894630;5196260;5090920;4872660;4834050;4975530;4822530;4601530;4672550;4860000;4818100;4998600;5789000;5661650;5777550;6266336;6774863;6931836;7016075;6996499;7355557;8083834;8515730;9125257;9948937;9472304;9004338;9276849;9189098;9535008;8838344;9729486;10507453;10696111 -5817;'902;Net Food Importing Developing Countries;1633;Sawnwood, non-coniferous;5616;Import quantity;m3;146100;179450;169600;257450;268500;371600;400000;525550;355150;297650;284950;245000;268950;369250;379000;437250;592450;787800;636800;676650;650900;703700;727750;729600;606255;623897;629812;536156;714670;634274;553988;554496;411252;702307;749674;768613;754257;697440;768679;651389;864159;888864;940027;1133443;1320658;1110237;1300950;1701393;1252189;1742285;1414771;1448786;1279758;1599388;1294597;1304844;1360138;1231298;1757709;1629144;1989348;1693680;1566903 -5817;'902;Net Food Importing Developing Countries;1633;Sawnwood, non-coniferous;5622;Import value;1000 USD;9824;10356;10525;17560;18115;20815;22436;23585;21393;19060;18574;17174;20808;49718;52555;60940;98322;140519;134924;140310;121403;145835;135802;137077;110177;121897;122456;109412;254205;444805;428716;158573;86284;197240;218112;220560;212758;187615;173767;186311;249857;211337;250909;311635;340138;322516;442437.3;504438.1;494074;595809;530413;570704;601092;667668;549617;521436;556825;560847;565340;503334;571051;511237;475781 -5817;'902;Net Food Importing Developing Countries;1633;Sawnwood, non-coniferous;5916;Export quantity;m3;339600;375700;423700;532250;582900;653550;639650;641600;650100;641400;625900;630250;731000;719800;607350;650400;689650;685450;699050;628750;528250;542650;612050;622600;654400;640006;597650;616209;741374;861046;1160246;1027579;1163403;1173737;1150072;1076798;1063818;1087596;902497;886112;1057571;1158872;1231374;1224557;1440044;1559419;1836929;2051546;1574541;1831643;2112588;2214158;2452021;3100094;2464319;1805596;1975829;2027123;2068471;1942626;2164744;2631703;2667767 -5817;'902;Net Food Importing Developing Countries;1633;Sawnwood, non-coniferous;5922;Export value;1000 USD;23691;26695;32573;35959;42848;44992;44280;45908;51434;49761;44958;48040;74177;96825;75503;103447;114651;123879;142990;181528;136301;127094;142559;124695;142977;158530;170730;168377;190007;291377;346654;414115;485387;385115;441622;480018;356630;361070;321205;293788;367605;405948;440028;592797;722931;701688;861841;1071500;714897;928853;1187164.1;1224161;1403793;1887169;1663756;1136914;1151326;1188677;989498;860951;956272;1138165;1120618 -5817;'902;Net Food Importing Developing Countries;1634;Veneer sheets;5516;Production;m3;53800;58100;68500;77600;88200;114400;108500;165300;159400;182300;185500;165600;182000;178900;130100;170006;214004;227704;235904;309904;299204;272704;296504;256804;304804;325404;334604;343004;370604;495804;413504;396004;399054;413304;443600;452400;533100;608300;602300;541300;674300;669800;614800;696400;805100;876000;992800;1031300;950300;1125450;1143095;1003800;967767;1010275;1195592;1386638;1284113;1406461;1651454;1486439;1820637;1802456;1956994 -5817;'902;Net Food Importing Developing Countries;1634;Veneer sheets;5616;Import quantity;m3;4200;2450;3825;4675;4400;3900;2200;2900;2800;3800;6500;9200;11000;12500;17500;18900;20900;30100;27300;29900;26000;32900;28300;36200;36300;26830;26549;29531;30813;25090;12040;44814;37028;40523;45903;41654;38831;49113;46229;57864;64750;61220;70436;106487;105265;97574;125998;103405;84310;86988;125292;109153;199798.4;197490;133787;152313;124707;143257;224313;237719;313936;267074;209183 -5817;'902;Net Food Importing Developing Countries;1634;Veneer sheets;5622;Import value;1000 USD;1105;802;989;1363;1482;1734;1150;1164;1118;1684;2198;2623;3074;4973;7025;7876;7404;15802;15432;18096;24116;29490;24840;29745;29332;25018;24822;27154;44425;60398;9071;40692;33544;32839;35122;28927;31370;35738;37259;30122;50821;36664;55256;80850;84120;71174;119435;108410;80176;101916;128983;120630;141872;155769;134014;141091;151299;165614;190322;192585;279241;286564;237270 -5817;'902;Net Food Importing Developing Countries;1634;Veneer sheets;5916;Export quantity;m3;47300;47200;48200;71400;60900;76900;57700;67700;76400;85600;101900;103700;94100;108700;54600;72300;67900;84300;93200;102800;112900;95400;90900;78700;94700;95700;94300;125700;74800;133700;95700;82791;121702;134320;125377;159068;361096;393027;361055;261866;229725;283131;193188;320807;345547;232158;262820;215921;157440.3;192420;248716.4;252990;214944;242839;395209;531686;418919;370714;488118;488202;769982;887369;876456 -5817;'902;Net Food Importing Developing Countries;1634;Veneer sheets;5922;Export value;1000 USD;3746;4687;4702;5494;5685;6917;5566;5305;4186;8459;8968;12178;18118;19180;9921;13962;13908;17384;21829;35653;32212;27071;25112;16298;18042;25971;38724;94202;50485;94306;66380;76988;47549;54218;71129;65661;107749;159558;105106;65305;109752;114574;121279;213299;247664;183360;230475;243833;155642;189957;217070.9;184254.25;182692;209986;240058;298708;280460;271790;361480;315559;372470;438304;393185 -5817;'902;Net Food Importing Developing Countries;1873;Wood-based panels;5516;Production;m3;112400;140600;183700;223500;249400;236900;273559;328659;357975;397475;410623;504603;539455;541891;541328;570097;521374;560374;609774;722265;694112;790597;850063;920373;990873;977588;1013603;1082123;1020923;926900;933600;913200;908560;823160;891160;999560;1031360;1203960;1102560;1142268;1272450;1478104;1492762;1430378;1612152;2086537;2074972;2284925;2184768;2143307;2216341;1827691;1912613;2024272;2080635;2209246;2214373;2230886;2404894;2568259;2684516;3299468;3324464 -5817;'902;Net Food Importing Developing Countries;1873;Wood-based panels;5616;Import quantity;m3;100246;106989;127598;143770;170263;217491;167941;181520;177268;182333;229607;274014;272343;279186;296217;315897;420215;472985;484085;552685;551685;625185;704605;614205;568298;592581;625077;578451;461414;458747;487957;808481;691510;694340;690213;699126;857329;1072078;1211139;904774;1118942;1082376;1530515;1906021;1936649;2136638;1948435;2436078;2362660;2876020;2791313;3129986.55;3324946;3196322.13;3088491;3478501;4062374;4014479;4985260;4863330;5407740.73;4719637.98;4530974 -5817;'902;Net Food Importing Developing Countries;1873;Wood-based panels;5622;Import value;1000 USD;14372;14357;15988;18786;22931;27742;20876;18987;19795;24419;31371;40997;47440;59867;65470;77996;110460;137862;135844;184945;191566;212265;234057;214127;210066;218778;184058;198970;260766;372958;198125;245861;241640;226488;232129;237079;267475;293710;287413;261120;318721;276715;404845;497786;540600;650484;740053;1066023;976612;1134904;1292036;1474365;1493671;1572299.68;1459400;1483913;1659302;1808197;1745075;1692506;2146240.64;2180729.51;1898796 -5817;'902;Net Food Importing Developing Countries;1873;Wood-based panels;5916;Export quantity;m3;61948;65948;68606;66781;69948;71653;71553;85253;95753;88305;67805;81505;70105;76721;75326;58500;84750;85250;56700;73900;73900;81200;93430;106330;102966;161130;192350;186794;162122;143155;134911;75924;102108;90489;114326;130950;139001;163061;143733;242446;212794;224705;398412;634934;700234;442532;462702;449631;265578;406918.4;451772.2;452071;438575;536613.51;432908;480306;489094;484550;545840;565307;831210.63;860926.97;785345.27 -5817;'902;Net Food Importing Developing Countries;1873;Wood-based panels;5922;Export value;1000 USD;7444;7393;8119;8580;8828;8881;9547;10939;11464;12418;10025;11503;18237;22696;21610;17736;34087;36033;22239;38102;35787;35967;43219;44268;32052;63639;76396;70431;71509;64870;58323;44744;53987;49168;63389;70006;60309;70030;73701;86396;74383;91937;126080;187587;193446;162695;200813;244554;158870;233226;249884.3;253793.4;249086.4;285889.22;216792;249485;236882;247796;328660;362514;526376.85;596477.26;500204.16 -5817;'902;Net Food Importing Developing Countries;1640;Plywood and LVL;5516;Production;m3;109700;134900;165300;167400;190600;165500;190400;236000;259200;293100;299000;354300;382000;384200;370700;391600;345100;347600;377800;467791;414638;426723;436523;457673;515973;498848;526273;582523;470723;438600;394200;353300;363260;377060;454460;552960;543760;714460;594260;616668;778850;825904;873462;812978;986252;946237;897072;984325;883668;975007;1077541;937491;950413;1020072;1054558;1151064;1133073;1139586;1311294;1473959;1590216;2019807;2024485 -5817;'902;Net Food Importing Developing Countries;1640;Plywood and LVL;5616;Import quantity;m3;84946;90489;105598;109430;141263;168063;130100;106600;106600;129400;162000;187100;183100;165900;191200;194100;260400;276800;275000;346800;352300;432600;499300;439900;434243;494254;498801;471483;370537;369215;394125;565090;492318;558025;491824;474829;525704;720552;630817;498988;634077;537067;788986;791642;872723;983329;946964;1235155;1183086;1602068;1593113;1745579;1786563;1469314;1488536;1728757;2024128;1995408;2224586;2028791;2337309;1824418;1726099 -5817;'902;Net Food Importing Developing Countries;1640;Plywood and LVL;5622;Import value;1000 USD;12634;12751;13493;14858;19440;22772;16897;15231;16263;19863;24398;32715;36290;41919;49683;57721;83288;102409;96318;143805;151244;168657;191709;180533;184417;201057;158872;176114;238168;352342;177726;182409;181744;186502;180366;186008;200614;215664;207971;175637;210455;172045;251872;281809;327322;399646;450468;664693;583182;680636;750379;865864;855119;826715;722732;750737;849482;969741;867174;744670;928277;786193;698020 -5817;'902;Net Food Importing Developing Countries;1640;Plywood and LVL;5916;Export quantity;m3;61948;65848;68506;66681;69848;71448;70748;83648;90748;79900;61900;75400;66700;71900;71300;53900;82500;83300;55000;73500;72900;80500;92600;95800;92900;137200;156650;170494;134622;113755;105511;66246;81817;72227;93812;115502;129012;160744;140225;238944;207085;167371;211194;311720;346028;292211;278568;227411;169080;241723;222827.2;239946;218717;204910.51;192042;235418;215557;241945;355379;385019;581656;618831;532772 -5817;'902;Net Food Importing Developing Countries;1640;Plywood and LVL;5922;Export value;1000 USD;7444;7384;8106;8569;8817;8826;9459;10526;11145;11887;9486;10850;17813;21541;20739;16694;33391;35328;21681;37952;35364;35600;42896;43460;30934;60772;72694;68991;65840;58413;51866;41852;48056;44187;55605;63410;57875;69251;72676;85793;73382;82453;93282;121111;130183;131405;142968;184238;121236;149996;142428.3;149387;144693;136896.22;123991;148873;127937;150827;268294;311884;446593;519726;411548 -5817;'902;Net Food Importing Developing Countries;1607;Laminated Veneer Lumber (LVL);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -5817;'902;Net Food Importing Developing Countries;1607;Laminated Veneer Lumber (LVL);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1732;1090 -5817;'902;Net Food Importing Developing Countries;1607;Laminated Veneer Lumber (LVL);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1028;646 -5817;'902;Net Food Importing Developing Countries;1607;Laminated Veneer Lumber (LVL);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;350;20 -5817;'902;Net Food Importing Developing Countries;1607;Laminated Veneer Lumber (LVL);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;116;25 -5817;'902;Net Food Importing Developing Countries;1646;Particle board and OSB (1961-1994);5516;Production;m3;2700;5700;18400;56100;58600;70600;79200;88700;94500;94900;101200;134300;138700;129500;134800;139800;137300;172200;185200;206500;231400;281500;325740;368400;379300;386840;392230;383500;394100;337700;385500;397700;373000;274400;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5817;'902;Net Food Importing Developing Countries;1646;Particle board and OSB (1961-1994);5616;Import quantity;m3;6700;5900;5200;4540;5800;12400;11700;12800;10500;13200;13800;51500;56700;59400;60400;76500;111680;134180;143980;143180;129780;108380;84800;96300;41050;36708;42973;37264;40936;39749;44749;53590;43908;51621;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5817;'902;Net Food Importing Developing Countries;1646;Particle board and OSB (1961-1994);5622;Import value;1000 USD;590;481;497;426;513;572;770;959;841;1037;1267;4480;6939;8061;8970;12812;18063;23961;26447;26776;25680;23391;17369;15921;6159;5987;7008;9004;10615;8518;8519;11776;9677;13433;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5817;'902;Net Food Importing Developing Countries;1646;Particle board and OSB (1961-1994);5916;Export quantity;m3;;;;;;;600;1400;4800;8200;5700;6000;3300;4300;3400;4000;1900;1600;1500;200;200;100;300;10000;9536;23400;35100;15700;26900;28900;28900;2751;11647;12800;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5817;'902;Net Food Importing Developing Countries;1646;Particle board and OSB (1961-1994);5922;Export value;1000 USD;;;;;;;45;375;279;489;498;632;397;1043;801;892;499;513;497;89;53;55;42;527;837;2586;3584;1322;5551;6353;6353;735;3606;3920;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5817;'902;Net Food Importing Developing Countries;1697;Particle board;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;276400;280800;321300;292400;304100;313100;251500;246800;206800;265800;254300;291700;291100;278600;279100;322300;310800;302200;331200;376200;371700;370700;370700;370700;373300;374000;374000;377300;377300 -5817;'902;Net Food Importing Developing Countries;1697;Particle board;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63581;64390;87331;106478;138802;125768;121852;126435;194530;267470;271637;252094;254015;289156;330234;314329;374605;359657;443008;555838.13;498275;559003;612580;665988;881606;941434;1051130.82;1246006;1139795 -5817;'902;Net Food Importing Developing Countries;1697;Particle board;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17619;17917;21765;27359;26976;28506;32041;29406;43067;52381;57271;64102;80687;105723;120050;120585;140644;139260;175729;207406.68;168690;184322;197968;224070;256396;251062;353831.3;543231;348844 -5817;'902;Net Food Importing Developing Countries;1697;Particle board;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16737;13171;5409;1824;1707;2625;4713;22452;60843;127163;114110;61007;60746;52675;50577;61414;51209;37322;28002;46087;52604;52727;63267;61118;66871;80712;86035.72;72955.77;93009.77 -5817;'902;Net Food Importing Developing Countries;1697;Particle board;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6552;5567;1419;701;587;441;831;2187;7183;20047;18653;11894;22604;22070;20442;27686;22109;20148.4;13997;16887;12391;11951;15794;16204;17363;14449;19718.2;15844.61;17927.08 -5817;'902;Net Food Importing Developing Countries;1606;Oriented strand board (OSB);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1391;133;133;186;4070;8857;9039;19066;22432;22834;22487;16767;23043;29732;34051;44008;60854;50762;88547;59491;94352;129053;134857.48;74272;152468 -5817;'902;Net Food Importing Developing Countries;1606;Oriented strand board (OSB);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;23;23;80;1217;1476;1478;3360;4670;6291;6185;6666;8197;8986;11385;17794;22510;16093;18899;15420;25008;35024;42144.2;26436;37849 -5817;'902;Net Food Importing Developing Countries;1606;Oriented strand board (OSB);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;14;2;2;2;110;151;108;15;4;126;59;968;1309;1298;656;687;739 -5817;'902;Net Food Importing Developing Countries;1606;Oriented strand board (OSB);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3;14;8;8;8;96;112;89;18;4;23;25;619;697;350;187;239;441 -5817;'902;Net Food Importing Developing Countries;1874;Fibreboard;5516;Production;m3;;;;;200;800;3959;3959;4275;9475;10423;16003;18755;28191;35828;38697;38974;40574;46774;47974;48074;82374;87800;94300;95600;91900;95100;116100;156100;150600;153900;162200;172300;171700;160300;165800;166300;197100;204200;212500;242100;405400;412500;351600;371600;848600;886800;1022000;1022000;846000;828000;588000;631000;628000;654377;687482;710600;720600;720300;720300;720300;902361;922679 -5817;'902;Net Food Importing Developing Countries;1874;Fibreboard;5616;Import quantity;m3;8600;10600;16800;29800;23200;37028;26141;62120;60168;39733;53807;35414;32543;53886;44617;45297;48135;62005;65105;62705;69605;84205;120505;78005;93005;61619;83303;69704;49941;49783;49083;189801;155284;84694;134808;159907;244294;245048;440129;279885;362880;418688;542929;838052;783250;882149;725024;888933;826853;942856;800552;995018.55;1061324;1127162;1040826;1139979;1337119;1293592;1784716;1764052;1884443.43;1574941.98;1512612 -5817;'902;Net Food Importing Developing Countries;1874;Fibreboard;5622;Import value;1000 USD;1148;1125;1998;3502;2978;4398;3209;2797;2691;3519;5706;3802;4211;9887;6817;7463;9109;11492;13079;14364;14642;20217;24979;17673;19490;11734;18178;13852;11983;12098;11880;51676;50219;26553;34144;33154;45096;50687;52448;56954;76202;75184;108689;162120;154529;183376;204228;289316;267195;327017;392816;460255;451438;520384;545468;532761;592953;598966;596497;661750;821988.14;824869.51;814083 -5817;'902;Net Food Importing Developing Countries;1874;Fibreboard;5916;Export quantity;m3;;100;100;100;100;205;205;205;205;205;205;105;105;521;626;600;350;350;200;200;800;600;530;530;530;530;600;600;600;500;500;6927;8644;5462;3777;2277;4580;493;1801;877;996;34882;126375;196051;240096;89313;123374;169543;45919;103779.4;177626;174652;191748;285601;188258;192035;210211;180519;122281;98278;162862.9;168453.2;158824.5 -5817;'902;Net Food Importing Developing Countries;1874;Fibreboard;5922;Export value;1000 USD;;9;13;11;11;55;43;38;40;42;41;21;27;112;70;150;197;192;61;61;370;312;281;281;281;281;118;118;118;104;104;2157;2325;1061;1232;1029;1015;78;438;162;170;7297;25615;46429;44610;19393;35227;38238;17184;55536;85251;84146;90307.4;132088;80406;88638;93126;80146;42306;35831;59878.65;60667.65;70288.08 -5817;'902;Net Food Importing Developing Countries;1647;Hardboard;5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;135800;135800;146300;167100;172200;177500;188100;264400;208500;188600;190600;509600;513800;516000;501000;501000;501000;118000;117000;117000;116250;118482;115600;115600;115300;115300;115300;133122;128931 -5817;'902;Net Food Importing Developing Countries;1647;Hardboard;5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53660;52300;68700;78712;214549;134889;130795;131774;168561;160998;161230;246423;171972;202239;140308;151775;147042;194018.25;192425;184564;177490;181367;192696;183375;229097;228696;240213.19;173105;166298 -5817;'902;Net Food Importing Developing Countries;1647;Hardboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18152;15649;19196;20706;26346;32909;39582;36363;50750;59410;59707;82306;70793;92648;70690;73212;82169;103845;104477;103132;92705;85133;89028;91209;93800;105780;139010.36;112198;111790 -5817;'902;Net Food Importing Developing Countries;1647;Hardboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1130;1030;4532;425;1686;686;787;16993;24322;18848;19976;13383;28066;10675;3230;2809;5672;5567;10402;12457;7496;5014;12443;7146;14915;13105;9141.7;7206.47;22223.47 -5817;'902;Net Food Importing Developing Countries;1647;Hardboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;368;475;1007;62;424;116;121;3418;5328;7048;7651;4948;10678;4035;1400;2083;2796;3902;5507;8361;3886;2754;7252;4366;5466;6063;4171.2;4822.06;5471.06 -5817;'902;Net Food Importing Developing Countries;1648;Medium/high density fibreboard (MDF/HDF);5516;Production;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4000;13000;12000;12000;14000;17000;35000;122000;185000;144000;162000;320000;354000;487000;520000;344000;326000;450000;495000;492000;519127;550000;576000;586000;586000;586000;586000;750239;774748 -5817;'902;Net Food Importing Developing Countries;1648;Medium/high density fibreboard (MDF/HDF);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20374;16671;48678;95703;158736;99672;146919;191770;253849;515838;456530;503751;411760;536749;562783;656110;452151;662427.3;712751;763635;717151;821206;957899;936221;1347361;1341738;1461658.32;1259004;1265669 -5817;'902;Net Food Importing Developing Countries;1648;Medium/high density fibreboard (MDF/HDF);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7410;5682;11263;16368;17373;15283;23135;25202;42466;80767;71782;82488;97372;150035;159652;198404;221817;281607;280676;342773;389844;381637;430016;443056;444366;496475;633273.62;669216;653694 -5817;'902;Net Food Importing Developing Countries;1648;Medium/high density fibreboard (MDF/HDF);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000;1000;0;5;3;5;23;15003;80680;97545;139745;63023;81432;151643;38259;81527.4;113278;127731;138379;206433;131387;144780;160255;134882;100722;80048;89253.72;89423;105586 -5817;'902;Net Food Importing Developing Countries;1648;Medium/high density fibreboard (MDF/HDF);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;478;478;0;6;5;10;13;3674;18140;26758;24269;12725;20545;30261;13212;36638;49043;56118;61709.4;88879;44644;51571;54223;43389;34154;27986;33351.38;33506;40095 -5817;'902;Net Food Importing Developing Countries;1650;Other fibreboard;5516;Production;m3;;;;;200;800;800;800;800;6000;6000;10000;10000;12000;14000;16000;18000;20000;24000;24000;24000;12000;10000;14000;17000;14000;10500;10100;24800;20100;16300;22500;29000;32500;20500;17000;8000;18000;18000;18000;19000;19000;19000;19000;19000;19000;19000;19000;1000;1000;1000;20000;19000;19000;19000;19000;19000;19000;19000;19000;19000;19000;19000 -5817;'902;Net Food Importing Developing Countries;1650;Other fibreboard;5616;Import quantity;m3;;;;400;500;400;3200;33200;32400;4400;5200;2800;800;1800;11200;10900;4600;4600;3300;3300;14900;7800;9600;9300;14100;15300;13800;13700;3580;3500;3500;113951;74872;19431;60774;90936;126916;70633;66844;45324;85166;95144;120519;161216;165490;131975;141292;149945;123762;134971;201359;138573;156148;178963;146185;137406;186524;173996;208258;193618;182571.92;142832.98;80645 -5817;'902;Net Food Importing Developing Countries;1650;Other fibreboard;5622;Import value;1000 USD;;;;61;210;207;246;220;202;53;76;82;57;78;93;68;83;84;304;86;1904;946;951;864;966;937;829;1024;357;346;346;27827;26638;5829;8582;11823;14637;13613;8729;8762;13485;13619;15473;21943;23040;18582;36063;46633;36853;55401;88830;74803;66285;74479;62919;65991;73909;64701;58331;59495;49704.15;43455.51;48599 -5817;'902;Net Food Importing Developing Countries;1650;Other fibreboard;5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3373;4885;3410;1647;247;48;63;112;186;186;2886;21373;79658;80375;12907;13876;7225;4430;19443;58676;41354;42967;66711;49375;42241;37513;38491;6644;5125;64467.48;71823.73;31015.03 -5817;'902;Net Food Importing Developing Countries;1650;Other fibreboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1008;1231;557;386;76;8;10;9;36;36;205;2147;12623;12690;1720;4004;3942;2572;16815;33412;24126;23091;34848;31876;34313;31651;32391;2686;1782;22356.06;22339.59;24722.02 -5817;'902;Net Food Importing Developing Countries;1649;Fibreboard, compressed (1961-1994);5516;Production;m3;;;;;;;3159;3159;3475;3475;4423;6003;8755;16191;21828;22697;20974;20574;22774;23974;24074;70374;77800;80300;78600;77900;84600;106000;131300;130500;137600;139700;143300;139200;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5817;'902;Net Food Importing Developing Countries;1649;Fibreboard, compressed (1961-1994);5616;Import quantity;m3;8600;10600;16800;29400;22700;36628;22941;28920;27768;35333;48607;32614;31743;52086;33417;34397;43535;57405;61805;59405;54705;76405;110905;68705;78905;46319;69503;56004;46361;46283;45583;75850;80412;65263;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5817;'902;Net Food Importing Developing Countries;1649;Fibreboard, compressed (1961-1994);5622;Import value;1000 USD;1148;1125;1998;3441;2768;4191;2963;2577;2489;3466;5630;3720;4154;9809;6724;7395;9026;11408;12775;14278;12738;19271;24028;16809;18524;10797;17349;12828;11626;11752;11534;23849;23581;20724;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5817;'902;Net Food Importing Developing Countries;1649;Fibreboard, compressed (1961-1994);5916;Export quantity;m3;;100;100;100;100;205;205;205;205;205;205;105;105;521;626;600;350;350;200;200;800;600;530;530;530;530;600;600;600;500;500;3554;3759;2052;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5817;'902;Net Food Importing Developing Countries;1649;Fibreboard, compressed (1961-1994);5922;Export value;1000 USD;;9;13;11;11;55;43;38;40;42;41;21;27;112;70;150;197;192;61;61;370;312;281;281;281;281;118;118;118;104;104;1149;1094;504;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -5817;'902;Net Food Importing Developing Countries;1879;Total fibre furnish;5510;Production;t;141100;188500;287900;345700;367400;396800;386100;428600;455200;738400;808400;872700;961700;1011000;975373;1041200;1069500;1155900;1362409;1323009;1337009;1398909;1461800;1579400;1717600;1834200;1884300;2056200;2012200;1900770;1923500;2043540;1812500;1775900;2019700;2067700;2059400;1694000;1707500;2149100;2944159;2869806;2872480;2449766;2518537;2524073;2719380;2783650;2579946;2512235;2564563;2623038;2667396;2624749;2594396;2642928;2675648;2800898;3430298;3337298;3249298;3118298;3052672 -5817;'902;Net Food Importing Developing Countries;1879;Total fibre furnish;5610;Import quantity;t;14800;14500;15100;13300;14500;30300;23900;295200;300100;365200;332200;369600;339100;464633;454368;527392;496324;496862;502975;550116;558910;548618;541500;653700;706745;588189;761411;799526;753314;936837;973504;1030619;727229;739872;958000;766356;755495;789445;672599;792184;866897;778719;956583;1417750;1292363;1006828;978818;1268108;1113838.3;1109821;1334078.03;1407692;1804508.36;1770771.3;1809374;1957990;1729512;1885125;2315580;2219922;2730018.47;3013417.83;3215267.04 -5817;'902;Net Food Importing Developing Countries;1879;Total fibre furnish;5622;Import value;1000 USD;1775;1745;1861;1952;1964;3479;3249;36239;40749;51116;46481;58401;58463;100341;109440;120643;120048;122976;137827;174451;186134;191698;170697;215437;224702;208058;280353;302863;329659;367051;357951;419901;208128;261447;466146;296833;271375;260549;245615;354264;326637;284804;337266;454471;427825;400387;415627;783197;573889.6;638531;796001;726320.16;986144.2;980949.25;983941;947137;902367;1179142;1158272;956861;1341410.72;1845585.09;1552362.07 -5817;'902;Net Food Importing Developing Countries;1879;Total fibre furnish;5910;Export quantity;t;;;;8900;11600;19700;19700;170200;176000;196400;203600;211000;224200;224753;145138;249868;184824;229465;256956;261002;254200;222700;242400;296700;290700;290606;303402;316300;267900;263747;250547;266044;299874;338894;226527;329901;378231;349087;421365;430117;388627;440164;536010;503663;493497;521382;590761;580572;554075;588464;592199;646010;591942;637960;627578;689654;791620;792525;644291;466102;525852.57;550524.04;500571.64 -5817;'902;Net Food Importing Developing Countries;1879;Total fibre furnish;5922;Export value;1000 USD;;;;1501;2048;3430;3485;19461;21448;27067;27985;26291;36639;45524;34278;55637;42170;52278;65281;88163;84471;68111;70293;100420;92694;92496;117385;144291;128489;121740;104954;114647;105972;125940;115211;109626;120529;104385;127705;152729;102941;133523;173821;153248;150339;165482;222060;198159;155769;201992.4;175824;168003;122209;116814;107168.79;116211;150304;264235;201645;98765;133782.94;143113.01;92745.97 -5817;'902;Net Food Importing Developing Countries;1878;Pulp for paper;5510;Production;t;141100;188500;286900;344700;366400;395800;385100;427600;454200;448400;519400;564700;610700;654000;610373;667200;655500;694900;884409;884009;841009;824909;830800;866400;955600;1042200;1052300;1141200;1128400;1075000;1080300;1098300;1050700;974200;1163800;1204800;1118700;929600;978400;1054400;1261459;1171006;1213880;1238866;1275437;1246373;1399680;1348950;1161246;1074535;1073381;1044496;1044496;893496;876496;876496;853128;981128;971528;870528;839528;826528;815528 -5817;'902;Net Food Importing Developing Countries;1878;Pulp for paper;5610;Import quantity;t;14800;14500;15100;13300;14500;30300;23900;295200;300100;298200;272200;296600;264100;262000;298000;352500;340400;327000;342200;374700;385200;378600;368700;475900;514700;467700;599200;580700;486700;521753;507820;690887;440110;437560;512663;480698;455583;466347;420971;492095;489024;448128;472051;611310;580619;580873;517399;749045;654838.3;593945;840754.03;843379;1264155.36;1252970.3;1289775;1540494;1356177;1315283;1494364;1388760;1297090.16;1415073.83;1606788.03 -5817;'902;Net Food Importing Developing Countries;1878;Pulp for paper;5622;Import value;1000 USD;1775;1745;1861;1952;1964;3479;3249;36239;40749;47141;43283;54369;52226;75009;89562;100792;98500;100779;111981;140275;155677;161634;140269;188236;196786;189503;254434;259192;278605;296421;277976;357965;167430;204838;364047;240186;215114;207233;197842;284802;243224;218445;248807;327612;294723;314902;315333;661129;462691.6;487605;652375;576266.16;839653.2;832617.25;842796;852473;812717;1070228;1004180;816501;981848;1348742.09;1225649.07 -5817;'902;Net Food Importing Developing Countries;1878;Pulp for paper;5910;Export quantity;t;;;;8900;11600;19700;19700;170200;176000;191400;194600;204000;216200;216300;135500;234700;172600;217900;238700;239300;228700;191500;201600;251800;244100;244100;264300;288400;246300;244200;230600;243150;273480;311279;188576;288747;323106;294871;347414;337853;284568;323132;385629;305192;278592;300183;311609;252559;225390;164305;122962;125903;36045;12460;10247;7914;7615;138480;164232;69053;40155.27;30068.78;12658.39 -5817;'902;Net Food Importing Developing Countries;1878;Pulp for paper;5922;Export value;1000 USD;;;;1501;2048;3430;3485;19461;21448;26850;27685;25966;36277;44793;33328;54706;41188;51244;64356;86028;82097;65340;67151;96903;88901;88901;114329;141828;126824;119912;103182;111796;103679;122321;108673;104986;115211;99109;121386;141589;91700;122651;159733;129070;124437;138508;184374;144008;111393;132168;88353;82622;27294;12728;10526.79;9740;8596;154549;128695;38350;26294.35;27478.51;10289.46 -5817;'902;Net Food Importing Developing Countries;1875;Wood pulp;5510;Production;t;59100;79800;152500;176700;169600;168000;163500;195900;204700;213300;208500;222900;257500;253000;261873;300200;283000;317800;382100;383200;384600;388100;382800;382400;468000;474200;520600;557200;542400;536200;562800;595000;683700;607200;752500;787700;679100;649100;667900;728000;749559;667906;713680;721366;710137;677373;820880;760370;599646;512935;511781;490896;490896;339896;339896;339896;316528;474528;602528;602528;609528;646528;639528 -5817;'902;Net Food Importing Developing Countries;1875;Wood pulp;5610;Import quantity;t;30300;32700;29400;27400;32600;43300;40300;309000;310900;305100;278000;302800;268100;263900;235300;263400;289400;281800;315500;340600;337900;346000;318200;420400;448400;423800;545300;530800;437000;471777;452730;634032;450610;421068;513539;455048;440100;468517;425658;480242;457751;416839;437079;562616;571642.7;574032.24;513163;749402;654616.1;592614;844376.3;855518.35;1279089.44;1277347.3;1328954;1559216;1376677;1322241;1496372;1381721;1288363.97;1412720.94;1604371.18 -5817;'902;Net Food Importing Developing Countries;1875;Wood pulp;5622;Import value;1000 USD;3973;4326;3880;3951;4638;5230;5891;38214;42495;47867;44009;55145;52167;75614;60654;67542;81476;79032;101849;124766;132412;144726;121427;157242;165031;157633;214043;221245;241312;258536;243911;328691;173360;197556;367640;226429;206354;208843;200338;276584;219995;194590;219123;284318;287600.6;308723.76;312767;659227;460738;488879;652893;590279.16;832436.37;838472.25;860694;868077;829099;1074572;1005890;812616;972036.66;1346318.82;1225695.05 -5817;'902;Net Food Importing Developing Countries;1875;Wood pulp;5910;Export quantity;t;;;;;;;;152000;155200;172900;175500;187100;200500;201700;120900;221900;156400;199400;224400;225000;215900;181700;189000;244600;234600;234600;254800;272600;239600;236600;222900;236130;320843;307713;182563;279105;313451;284698;336406;326845;275469;315186;375197;295715;269115;291428;303870;243764;220669;151684;107048;120019;31972;7850;5925;3452;4169;167584;292924;298509;307316;346052.52;333555.12 -5817;'902;Net Food Importing Developing Countries;1875;Wood pulp;5922;Export value;1000 USD;;;;;;;;16232;17913;23261;24059;22654;31899;40730;28930;49053;34726;43566;56644;78316;75379;59969;60461;92807;83486;83486;108914;130645;120278;111337;94494;103571;115755;116434;99379;93346;103417;88237;110269;130601;82502;114476;146372;114554;109921;124337;171336;128718;104922;118604;74424;74688;20681;6450;4603;2596;3173;179511;218017;180855;294458.35;344715.04;282875 -5817;'902;Net Food Importing Developing Countries;1685;Mechanical and semi-chemical wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89000;89000;89000;89000;89000;89000;89000 -5817;'902;Net Food Importing Developing Countries;1685;Mechanical and semi-chemical wood pulp;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65208;45530;45960;54269;54297.65;59307;35052 -5817;'902;Net Food Importing Developing Countries;1685;Mechanical and semi-chemical wood pulp;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25063;29918;25334;28233;35116.41;48115;24446 -5817;'902;Net Food Importing Developing Countries;1685;Mechanical and semi-chemical wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7;0;1158;2170;2659;3119;2704 -5817;'902;Net Food Importing Developing Countries;1685;Mechanical and semi-chemical wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;0;901;1909;2220;2604;2270 -5817;'902;Net Food Importing Developing Countries;1654;Mechanical wood pulp (1961-2016);5510;Production;t;29500;33500;30000;35500;23800;22500;19000;38100;31600;30700;24300;22000;27000;16500;6200;11900;10100;15200;23700;24300;21900;21900;27200;23000;51000;50900;61100;68700;68700;67100;75300;75300;75400;73900;77800;70000;32400;28400;20200;24400;25400;25400;75400;118400;118400;109302;110482;112738;94907;88800;100213;89868;89868;89868;89868;89868;;;;;;; -5817;'902;Net Food Importing Developing Countries;1654;Mechanical wood pulp (1961-2016);5610;Import quantity;t;14800;14500;15100;13300;14500;18500;17500;12000;10900;11500;9900;15400;12500;12900;11200;12300;17900;13900;27600;40500;28800;19100;29800;52200;56500;36100;25300;41800;48900;47400;30000;23862;8903;8338;38708;41565;37295;20454;14436;28638;20238;14187;17087;15205;16740;22131;20606;22247;29682.1;14961;32501.03;48495;29097.06;15874;9580;13295;;;;;;; -5817;'902;Net Food Importing Developing Countries;1654;Mechanical wood pulp (1961-2016);5622;Import value;1000 USD;1775;1745;1861;1952;1964;1755;2358;1985;1739;1704;1181;2380;1918;3150;3515;3954;5343;4102;7902;12137;11004;7005;10481;17744;19507;12790;10175;20878;27374;26951;12475;9277;2986;3400;20758;14434;15734;9776;6553;14360;11018;7482;10256;7278;7719;10529;11603;12918;28456;26207;33104;33527;22182.2;12371;6101;8761;;;;;;; -5817;'902;Net Food Importing Developing Countries;1654;Mechanical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;0;0;0;0;100;200;200;200;200;0;0;0;29;29;29;34;34;562;559;1829;2800;2855;229;68;15;;;;;;; -5817;'902;Net Food Importing Developing Countries;1654;Mechanical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;0;;;;;0;0;0;0;59;77;77;77;77;0;0;0;7;7;7;21;21;151;155;1131;1769;1819;102;28;8;;;;;;; -5817;'902;Net Food Importing Developing Countries;1655;Semi-chemical wood pulp (1961-2016);5510;Production;t;;;;;;;;;;;;;500;500;373;1600;1600;11600;11600;11600;23600;23600;24000;23800;1000;1300;500;500;500;1100;300;300;300;300;62300;29300;22300;48300;57300;68300;85760;51815;88639;35444;30811;17500;75597;44480;24124;22500;22500;22500;22500;22500;22500;22500;;;;;;; -5817;'902;Net Food Importing Developing Countries;1655;Semi-chemical wood pulp (1961-2016);5610;Import quantity;t;;;;;;;;400;4400;1800;200;200;200;9700;3800;4900;5700;4500;3000;4600;8100;3900;3900;900;900;1000;1500;1100;1300;1900;604;4589;8897;8783;6143;5118;4962;3859;7717;7222;5755;6978;10902;20577;80272;43251;43853;46762;49061;46918;53020;62172;54922;25452;18220;20404;;;;;;; -5817;'902;Net Food Importing Developing Countries;1655;Semi-chemical wood pulp (1961-2016);5622;Import value;1000 USD;;;;;;;;73;1208;491;43;43;43;6039;1451;2216;2710;1729;1176;1806;4345;1659;1659;363;363;359;805;540;467;388;276;1579;3148;3556;3937;2844;2166;1311;2340;2187;1941;3126;4949;9047;43481;27305;25758;150417;95895;37305;39828;44676;40127;16125.25;11197;11811;;;;;;; -5817;'902;Net Food Importing Developing Countries;1655;Semi-chemical wood pulp (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;15;0;0;0;0;0;0;0;1271;1111;1111;874;917;920;920;2680;8369;8137;8137;119;117;117;;;;;;; -5817;'902;Net Food Importing Developing Countries;1655;Semi-chemical wood pulp (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0;5;0;0;0;0;0;0;0;619;409;409;435;492;523;523;1032;4741;4694;4694;42;40;40;;;;;;; -5817;'902;Net Food Importing Developing Countries;1656;Chemical wood pulp;5510;Production;t;29600;46300;122500;141200;145800;145500;144500;157800;173100;182600;184200;200900;230000;236000;255300;286700;271300;291000;346800;347300;339100;342600;331600;335600;416000;422000;459000;488000;468200;459300;484000;516200;538000;463000;542400;618400;554400;501400;519400;564300;567399;519691;478641;496522;489926;479571;563801;532152;409615;330635;319068;308528;308528;157528;157528;157528;157528;285528;313528;212528;181528;168528;157528 -5817;'902;Net Food Importing Developing Countries;1656;Chemical wood pulp;5610;Import quantity;t;;;;;;;;282800;284800;282200;258300;277600;245800;231700;219700;245600;264200;261800;283300;293900;299400;318300;276800;358800;381400;382200;514000;483400;381500;419253;418816;585299;408159;397451;454677;402373;391512;435526;392693;440469;427485;392626;405838;521434;472125;503530;445047;674645;569237;520775;750746;729792;1156848.3;1193503.3;1259290;1502995;1286772;1266564;1443458;1317821;1224326.1;1340296.32;1555946.55 -5817;'902;Net Food Importing Developing Countries;1656;Chemical wood pulp;5622;Import value;1000 USD;;;;;;;;34181;37802;43831;40944;50831;48265;62784;55547;61231;72809;72587;92157;110209;116449;133640;105003;134966;140733;142498;201232;198032;210940;229806;229779;305705;155774;186876;330456;204867;185165;192702;185679;257262;204208;181965;202330;265850;234862;267740;273423;492080;331927;412958;572928;494671.16;744714;778007;821545;828254;783729;1037211;975190;777919;930105.16;1285150.33;1187044.56 -5817;'902;Net Food Importing Developing Countries;1656;Chemical wood pulp;5910;Export quantity;t;;;;;;;;152000;155200;172900;175500;187100;200500;201700;120900;221900;156400;199400;224400;225000;215900;181700;189000;244600;234600;234600;254800;272600;239600;236600;222900;236130;268843;304613;181148;279005;313155;284402;336110;326549;275373;315090;372132;292749;266149;290294;302672;242514;218983;148259;94876;107046;18907;5472;5658;3238;3967;137600;162268;65518;35530;23842.52;7827.12 -5817;'902;Net Food Importing Developing Countries;1656;Chemical wood pulp;5922;Export value;1000 USD;;;;;;;;16232;17913;23261;24059;22654;31899;40730;28930;49053;34726;43566;56644;78316;75379;59969;60461;92807;83486;83486;108914;130645;120278;111337;94494;103571;98290;115459;98261;93287;103244;88064;110096;130428;82406;114380;144970;113343;108710;123732;170653;127953;104141;117315;66618;66463;12410;4551;4491;2504;3017;152435;126734;34724;22254.35;19958.04;6582 -5817;'902;Net Food Importing Developing Countries;1662;Chemical wood pulp, sulphate, unbleached;5510;Production;t;;;;88000;88000;89000;90000;94000;98600;102600;106200;126200;138000;145000;145000;182000;154000;157000;163000;158000;159000;159000;175000;178000;174000;180000;195000;193000;173000;157000;205000;210000;227000;227000;227000;247000;201000;177000;218000;183100;228900;231500;212700;295600;284200;268700;278400;250200;147000;60000;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000;45000 -5817;'902;Net Food Importing Developing Countries;1662;Chemical wood pulp, sulphate, unbleached;5610;Import quantity;t;;;;;;;;20000;14100;13400;22200;26200;21300;29700;20900;21900;27900;28900;39600;29800;28700;33500;34800;40800;38700;38900;51800;58300;63500;235400;237400;96067;50112;57778;60696;52200;55198;46027;43927;49307;52409;48773;37253;38328;37950;39454;33985;67977;32912;31281;41620;40504;43321.23;35731;65674;48514;44968;46078;59507;42033;29098.83;60343.32;59565.55 -5817;'902;Net Food Importing Developing Countries;1662;Chemical wood pulp, sulphate, unbleached;5622;Import value;1000 USD;;;;;;;;2000;1834;1743;3705;3755;4113;9604;9027;5906;7937;7861;14221;11751;12344;14311;12435;14179;13482;13979;22904;25188;30046;134049;137449;45599;17233;25025;41626;24977;21981;18041;18634;24405;23427;20980;15763;16855;16814;17805;17478;31298;15611;21362;26071;21821;22892;26419;39273;27680;28194;30410;31834;26081;23658.78;50241.33;40772.56 -5817;'902;Net Food Importing Developing Countries;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;193426;193440;107000;210000;210000;210000;210000;210000;210000;197700;156300;183515;156915;159940;174240;148138;79184;13079;945;1259;1458;852;712;831;852;3470;2199;5233;4354;1425;1425 -5817;'902;Net Food Importing Developing Countries;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;59692;59710;33000;60000;60000;60000;60000;60000;60000;64208;56129;69295;64662;62748;97334;68329;34965;7541;569;703;812;617;628;699;724;2701;1578;2774;2708;1066;1092 -5817;'902;Net Food Importing Developing Countries;1663;Chemical wood pulp, sulphate, bleached;5510;Production;t;;14600;21000;53200;57800;56500;54500;63800;74500;80000;78000;74700;92000;88000;98300;89700;102300;116000;136800;139300;128100;130600;103600;100600;160000;159000;180000;210000;209200;216300;187000;197200;187000;173000;164400;164400;171400;144400;138400;174200;179381;171196;181839;199922;204726;209871;284401;280952;261615;269635;274068;263528;263528;112528;112528;112528;112528;240528;268528;167528;136528;123528;112528 -5817;'902;Net Food Importing Developing Countries;1663;Chemical wood pulp, sulphate, bleached;5610;Import quantity;t;;;;;;;;18500;13300;21600;19900;31400;32600;27000;47300;55600;64200;63000;77700;85900;85700;81400;75100;84000;90500;90300;118200;120500;120300;158736;143293;454368;321495;307913;353487;323500;302364;350974;325930;369795;322384;308233;333356;405611;356188;396039;375474;579916;515485;435432;617436;594388;1040678;1084709.3;1144924;1380063;1185596;1151376;1361857;1252811;1180797.08;1263203;1476722 -5817;'902;Net Food Importing Developing Countries;1663;Chemical wood pulp, sulphate, bleached;5622;Import value;1000 USD;;;;;;;;2362;2155;3717;3927;8962;8968;11256;14625;17576;21456;20900;32162;42356;38100;36465;34418;37459;38254;39667;58450;64635;62929;83025;75162;239855;124536;146088;262447;163349;144733;154299;155186;218235;154826;143691;169243;212130;180454;217839;233350;438272;296097;346942;474426;400014;667355;697038;746866;754940;718884;954146;926698;737200;892959.69;1218658;1129013 -5817;'902;Net Food Importing Developing Countries;1663;Chemical wood pulp, sulphate, bleached;5910;Export quantity;t;;;;;;;;;;;;;;47100;30900;41900;33400;49400;63400;69000;59200;55700;63000;66600;60600;60600;80800;98600;85200;82200;68500;81712;75399;109614;73924;68805;102677;73724;124882;115290;64264;116488;214368;105127;105127;125595;123672;93112;124826;133461;92851;104430;16066;4248;4519;2063;3095;131230;159314;59530;30421;21662.4;5647 -5817;'902;Net Food Importing Developing Countries;1663;Chemical wood pulp, sulphate, bleached;5922;Export value;1000 USD;;;;;;;;;;;;;;14640;11930;14664;10039;12374;22673;30963;22112;17041;17533;22807;14486;14486;39914;61645;58902;49961;33118;42185;38588;54161;64998;33082;42951;27548;49323;69641;21755;49811;88108;42298;42298;58074;70382;58799;59515;108716;65372;64825;10642;3621;3492;1521;2278;146901;124233;31027;18622.35;17968.04;4566 -5817;'902;Net Food Importing Developing Countries;1686;Chemical wood pulp, sulphite;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56208;69110;22094;22977;14430.18;16750;19659 -5817;'902;Net Food Importing Developing Countries;1686;Chemical wood pulp, sulphite;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36651;52655;16658;14638;13486.69;16251;17259 -5817;'902;Net Food Importing Developing Countries;1686;Chemical wood pulp, sulphite;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20;2900;755;755;755;755.12;755.12 -5817;'902;Net Food Importing Developing Countries;1686;Chemical wood pulp, sulphite;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15;2833;923;923;924;924;924 -5817;'902;Net Food Importing Developing Countries;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5510;Production;t;;;;;;;;;;;;;;;;;;;;29000;30000;31000;31000;32000;57000;58000;59000;59000;60000;60000;65000;89000;99000;46000;133000;189000;164000;161000;144000;188000;140118;97995;65102;0;0;0;0;0;0;0;0;0;0;0;0;0;;;;;;; -5817;'902;Net Food Importing Developing Countries;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5610;Import quantity;t;;;;;;;;10700;14500;5200;3200;4400;4400;5700;2700;4900;4600;8600;6800;7200;6900;7000;7800;7900;8000;8900;6900;4200;5900;7117;11100;6507;6128;4578;2844;300;400;1170;500;600;25400;23000;22308;22545;22468;22553;1789;3034;1200;1890;604;987;2461;1298;994;478;;;;;;; -5817;'902;Net Food Importing Developing Countries;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5622;Import value;1000 USD;;;;;;;;1385;2074;764;554;840;840;1861;1240;2034;1700;2944;2930;3625;3086;2950;2439;3034;3036;3610;3509;2354;3454;3739;5548;3561;2725;2083;2326;151;203;439;395;434;11682;9665;9393;9454;9362;9415;1265;1932;1872;1919;521;786;2837;1071;1585;397;;;;;;; -5817;'902;Net Food Importing Developing Countries;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31;31;31;11955;743;132;107;107;32;5;26;;;;;;; -5817;'902;Net Food Importing Developing Countries;1660;Chemical wood pulp, sulphite, unbleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19;19;19;5203;442;80;69;69;32;1;15;;;;;;; -5817;'902;Net Food Importing Developing Countries;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;19000;19000;19000;19000;19000;19000;1000;1000;1000;1000;1000;1000;1000;0;0;0;0;0;0;;;;;;; -5817;'902;Net Food Importing Developing Countries;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5610;Import quantity;t;;;;;;;;;;1900;3900;13700;9800;6600;3200;3200;3000;4600;3000;2500;3400;13500;7900;19500;20300;17800;36100;23800;10300;18000;27023;28357;30424;27182;37650;26373;33550;37355;22336;20767;27292;12620;12921;54950;55519;45484;33799;23718;19640;52172;91086;93913;70388.07;71765;47698;73940;;;;;;; -5817;'902;Net Food Importing Developing Countries;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5622;Import value;1000 USD;;;;;;;;;;378;770;3024;2620;2849;1623;1533;1335;1755;1323;1379;1656;4351;3590;8853;8102;6392;12069;9474;6455;8993;11620;16690;11280;13680;24057;16390;18248;19923;11464;14188;14273;7629;7931;27411;28232;22681;21330;20578;18347;42735;71910;72050.16;51630;53479;33821;45237;;;;;;; -5817;'902;Net Food Importing Developing Countries;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18;18;1559;224;200;478;678;1228;1259;1109;902;1464;4107;4107;4728;4729;1233;3018;976;948;1250;1276;340;422;318;;;;;;; -5817;'902;Net Food Importing Developing Countries;1661;Chemical wood pulp, sulphite, bleached (1961-2016);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10;10;1588;263;205;293;516;773;787;651;361;733;1750;1750;2891;2918;806;4458;616;597;866;887;281;370;269;;;;;;; -5817;'902;Net Food Importing Developing Countries;1667;Dissolving wood pulp;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5000;8700;3200;3200;70000;70000;70000;70000;70000;71000;71000;71000;71000;71000;71000;71000;71000;71000;71000;71000;71000;71000;70000;70000;70000;70000;70000;70000;70000;100000;200000;301000;339000;389000;393000 -5817;'902;Net Food Importing Developing Countries;1667;Dissolving wood pulp;5610;Import quantity;t;15500;18200;14300;14100;18100;13000;16400;13800;10800;9600;9600;9600;9600;9600;600;600;1600;1600;1600;1600;1600;4700;7700;8500;9600;4500;4500;4500;5300;3224;3310;20282;24651;6496;14011;5992;6331;8678;10812;3913;4273;3048;3252;5400;2505.7;5120.24;3657;5748;6636;9960;8109.27;15059.35;38222.08;42518;41864;22522;24697;10147;6954;9631;9740.22;13117.63;13372.63 -5817;'902;Net Food Importing Developing Countries;1667;Dissolving wood pulp;5622;Import value;1000 USD;2198;2581;2019;1999;2674;1751;2642;1975;1746;1841;1841;1891;1941;3641;141;141;614;614;614;614;614;2422;4284;4169;4428;1986;1831;1795;2531;1391;1381;12130;11452;3724;12489;4284;3289;5054;5766;2775;2828;2017;1588;2143;1538.6;3149.76;1983;3812;4460;12409;7033;17405;25413.17;31969;21851;19251;20307;7443;5366;6464;6815.09;13053.49;14204.49 -5817;'902;Net Food Importing Developing Countries;1667;Dissolving wood pulp;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;52000;3100;1400;0;96;96;96;96;96;96;1794;1826;1826;231;247;296;204;186;1974;2036;2073;2030;82;82;195;29984;129498;230821;269127;319091;323024 -5817;'902;Net Food Importing Developing Countries;1667;Dissolving wood pulp;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;17465;975;1113;0;96;96;96;96;96;96;783;795;795;163;170;221;107;102;1934;1762;1758;1755;44;44;141;27076;90382;144222;269984;322153;274023 -5817;'902;Net Food Importing Developing Countries;1668;Pulp from fibres other than wood;5510;Production;t;82000;108700;134400;168000;196800;227800;221600;231700;249500;235100;310900;341800;353200;401000;348500;367000;372500;377100;502309;500809;456409;436809;448000;484000;487600;568000;531700;584000;591000;547500;520700;506500;437000;437000;481300;487100;509600;351500;381500;397400;582900;574100;571200;588500;636300;640000;649800;659580;632600;632600;631600;623600;623600;623600;606600;606600;606600;606600;569000;569000;569000;569000;569000 -5817;'902;Net Food Importing Developing Countries;1668;Pulp from fibres other than wood;5610;Import quantity;t;;;;;;;;;;2700;3800;3400;5600;7700;63300;89700;52600;46800;28300;35700;48900;37300;58200;64000;75900;48400;58400;54400;55000;53200;58400;77137;14151;22988;13135;31642;21814;6508;6125;15766;35546;34337;38224;54094;11482;11961;7893;5391;6858.2;11291;4487;2920;23288;18141;2685;3800;4197;3189;4946;16670;18466.42;15470.51;15789.49 -5817;'902;Net Food Importing Developing Countries;1668;Pulp from fibres other than wood;5622;Import value;1000 USD;;;;;;;;;;1115;1115;1115;2000;3036;29049;33391;17638;22361;10746;16123;23879;19330;23126;35163;36183;33856;42222;39742;39824;39276;35446;41404;5522;11006;8896;18041;12049;3444;3270;10993;26057;25872;31272;45437;8661;9328;4549;5714;6413.6;11135;6515;3392;32630;26114;3953;3647;3925;3099;3656;10349;16626.43;15476.76;14158.52 -5817;'902;Net Food Importing Developing Countries;1668;Pulp from fibres other than wood;5910;Export quantity;t;;;;8900;11600;19700;19700;18200;20800;18500;19100;16900;15700;14600;14600;12800;16200;18500;14300;14300;12800;9800;12600;7200;9500;9500;9500;15800;6700;7600;7700;7020;4637;6666;7413;9642;9751;10269;11104;11104;9195;8042;12226;11303;11303;8986;7986;9091;4925;12807;17888;7920;6146;6640;4404;4544;3641;880;806;1365;1966.27;3107.27;2127.27 -5817;'902;Net Food Importing Developing Countries;1668;Pulp from fibres other than wood;5922;Export value;1000 USD;;;;1501;2048;3430;3485;3229;3535;3589;3626;3312;4378;4063;4398;5653;6462;7678;7712;7712;6718;5371;6690;4096;5415;5415;5415;11183;6546;8575;8688;8225;5389;6862;10407;11640;11890;10968;11213;11084;9294;8271;14144;15311;15311;14334;13208;15511;6578;13666;15863;9696;8371;8033;5967.79;7188;5564;2114;1060;1717;1820;4916.46;1437.46 -5817;'902;Net Food Importing Developing Countries;1609;Recovered fibre pulp (export/import);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;1;0;1368;190;189;664;675;12575;6777;4977.4;2069.05;5755;3534.1;3052.2;2683;2194;4248;3672;10754;106815;16312;35955.28;11769.16 -5817;'902;Net Food Importing Developing Countries;1609;Recovered fibre pulp (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;3;0;631;156;155;291;471;10239;5048.2;4481.1;1820.58;3368;3006;1852;1865;1648;2661;1914;2904;14900;13017;27783.39;8101.56 -5817;'902;Net Food Importing Developing Countries;1609;Recovered fibre pulp (export/import);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73;32;32;335;533;1232;947;3584;3813;1292;1909;18083;1682;1086;4243;4608;266978;483880;129650;209257.14;156559.14 -5817;'902;Net Food Importing Developing Countries;1609;Recovered fibre pulp (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9;5;5;32;160;291;221;1204;896;509;807;3729;549;394;920;1023;82378;136206;27861;51317.68;25576.68 -5817;'902;Net Food Importing Developing Countries;1669;Recovered paper;5510;Production;t;;;1000;1000;1000;1000;1000;1000;1000;290000;289000;308000;351000;357000;365000;374000;414000;461000;478000;439000;496000;574000;631000;713000;762000;792000;832000;915000;883800;825770;843200;945240;761800;801700;855900;862900;940700;764400;729100;1094700;1682700;1698800;1658600;1210900;1243100;1277700;1319700;1434700;1418700;1437700;1491182;1578542;1622900;1731253;1717900;1766432;1822520;1819770;2458770;2466770;2409770;2291770;2237144 -5817;'902;Net Food Importing Developing Countries;1669;Recovered paper;5610;Import quantity;t;;;;;;;;;;67000;60000;73000;75000;202633;156368;174892;155924;169862;160775;175416;173710;170018;172800;177800;192045;120489;162211;218826;266614;415084;465684;339732;287119;302312;445337;285658;299912;323098;251628;300089;377873;330591;484532;806440;711744;425955;461419;519063;459000;515876;493324;564313;540353;517801;519599;417496;373335;569842;821216;831162;1432928.3;1598344;1608479 -5817;'902;Net Food Importing Developing Countries;1669;Recovered paper;5622;Import value;1000 USD;;;;;;;;;;3975;3198;4032;6237;25332;19878;19851;21548;22197;25846;34176;30457;30064;30428;27201;27916;18555;25919;43671;51054;70630;79975;61936;40698;56609;102099;56647;56261;53316;47773;69462;83413;66359;88459;126859;133102;85485;100294;122068;111198;150926;143626;150054;146491;148332;141145;94664;89650;108914;154092;140360;359562.72;496843;326713 -5817;'902;Net Food Importing Developing Countries;1669;Recovered paper;5910;Export quantity;t;;;;;;;;;;5000;9000;7000;8000;8453;9638;15168;12224;11565;18256;21702;25500;31200;40800;44900;46600;46506;39102;27900;21600;19547;19947;22894;26394;27615;37951;41154;55125;54216;73951;92264;104059;117032;150381;198471;214905;221199;279152;328013;328685;424159;469237;520107;555897;625500;617331;681740;784005;654045;480059;397049;485697.31;520455.25;487913.25 -5817;'902;Net Food Importing Developing Countries;1669;Recovered paper;5922;Export value;1000 USD;;;;;;;;;;217;300;325;362;731;950;931;982;1034;925;2135;2374;2771;3142;3517;3793;3595;3056;2463;1665;1828;1772;2851;2293;3619;6538;4640;5318;5276;6319;11140;11241;10872;14088;24178;25902;26974;37686;54151;44376;69824.4;87471;85381;94915;104086;96642;106471;141708;109686;72950;60415;107488.59;115634.5;82456.5 -5817;'902;Net Food Importing Developing Countries;1876;Paper and paperboard;5510;Production;t;429400;477000;510220;577800;563500;642000;685000;709400;756200;789200;846800;885800;969000;1003500;1054917;1087700;1147500;1227400;1323100;1337100;1452135;1471312;1398587;1515765;1560247;1665635;1814002;1960528;1930004;2003529;2033621;1890840;2014925;2035495;2246126;2251775;2396680;2324482;2451704;2642373;2553559;2477482;2614149;2914260;3069132;3137567;3313840;3652847;3474419;3236490;3348787;3268169;3403695;3403288;3453623;3393160;3475685;3339310;3591380;3658095;4514404;4199104;4533104 -5817;'902;Net Food Importing Developing Countries;1876;Paper and paperboard;5610;Import quantity;t;551600;561200;520619;621647;636100;790000;795100;814200;820800;882200;991400;938900;989890;1167100;962700;965418;1190310;1241060;1229800;1364400;1514800;1514000;1525200;1648550;1833092;1656218;1827471;1963914;1761153;1803032;1994807;2014370;1991336;2257627;1971207;1966921;2437703;2730002;3093350;2513945;3294613;3036192;3531394;4282858;4388864;4258311;4963988;5196461;5251981;5519992;5945579.5;5887535.44;6162435;7056497;6692316;7242340;7449341;7697295;7914612;7441240;7615429.19;7814003.44;6974200.37 -5817;'902;Net Food Importing Developing Countries;1876;Paper and paperboard;5622;Import value;1000 USD;126490;132824;123689;138127;147703;177704;181639;178746;186715;206798;233705;250873;293637;493995;480809;462812;602475;663403;671865;851635;973899;1015336;955186;997335;1019567;1111950;1173100;1318187;1498042;1958955;1481022;1402119;1310974;1462441;1651800;1507363;1806940;1890283;1940435;1754846;2276867;2079564;2362973;2947906;3060566;3061074;3968590;4684422;4388603;5198350;5881329;5349536;5671552;6623763;5703736;6073095;6237170;6897735;6860038;6094730;7072560.15;9016363.51;7439487.7 -5817;'902;Net Food Importing Developing Countries;1876;Paper and paperboard;5910;Export quantity;t;33000;26300;26952;16536;8236;13700;9900;8200;20700;19900;19700;56000;34100;33900;31400;45200;49450;53650;64350;50750;35200;43500;36400;45600;47600;30500;27400;33000;38401;28655;39855;152615;89701;150543;115609;98094;259393;209203;159762;226234;277458;239123;242142;301501;284021;250864;327640;299234;280348;383118.24;313353.36;354860.75;413068.85;432440.85;413240.48;494188.48;674373.48;549901.48;517655.48;499193;1521847.35;1577570.88;1616039.76 -5817;'902;Net Food Importing Developing Countries;1876;Paper and paperboard;5922;Export value;1000 USD;5174;4485;4313;3579;2783;3197;1618;1736;3434;4164;4016;9991;7617;10413;13275;17335;20999;22061;29483;28951;25830;30561;32081;35203;35436;30243;28426;29054;31417;24442;29130;121462;65860;113610;101840;79307;172110;135231;111592;132760;199335;160367;164615;225659;218648;203424;259128;309025;345205;398398;386250;420963.29;482431.46;520708.6;525898;587879;679672;598872;572901;499780;1189048.49;1363815.43;1099376.3 -5817;'902;Net Food Importing Developing Countries;2042;Graphic papers;5510;Production;t;93900;114200;125020;154600;148500;162700;169700;187500;203600;208000;239200;241300;275500;278900;279717;295200;342400;362700;453500;445600;473000;463900;467300;526600;509400;521850;541040;573240;616340;547950;550770;493020;529120;556220;584070;601200;605700;599100;606830;584660;580091;630066;663145;670720;692007;708246;768407;768422;736460;753645;747934;737353;727053;718482;727852;704147;714510;652555;591716;607644;610755;553455;551455 -5817;'902;Net Food Importing Developing Countries;2042;Graphic papers;5610;Import quantity;t;303000;294700;263619;335017;322800;383000;364300;333200;366300;383300;444400;436800;428990;556600;494100;478618;553710;594460;609000;647700;754000;743100;745700;753200;778543;800278;815735;899388;787458;850786;962142;1053957;990563;1137644;814869;800194;1252635;1401080;1529422;1398349;1712936;1491840;1597306;2076979;2147521;2094676;2363158;2506741;2554872;2552518;2717581.5;2835650.44;2890632;3161826;2888255;3153521;3239851;3220517;3183884;2600618;2649250.43;2512669.07;2433244 -5817;'902;Net Food Importing Developing Countries;2042;Graphic papers;5622;Import value;1000 USD;63307;61345;54894;67194;68668;77246;70676;65455;72200;78586;87588;102027;115409;227101;233956;198565;251622;284140;291015;364703;438421;474926;431263;425377;458883;520713;522270;611101;729577;1108503;692320;705284;652163;687911;657817;629362;936378;935906;931417;976031;1195783;1003961;1062450;1411435;1506937;1495889;1898591;2279515;2210762;2381522;2607944;2610093;2619448;2852764;2527056;2603990;2721942;2922838;2860471;2162088;2294336.86;3008324.81;2920276 -5817;'902;Net Food Importing Developing Countries;2042;Graphic papers;5910;Export quantity;t;17700;11700;12400;5500;3800;8900;6200;2500;3400;2800;6900;33600;17800;13200;10200;19900;27400;31200;39600;27700;14100;15600;11500;20000;22100;4600;4400;3400;3301;3555;3555;15203;19220;42809;11637;11315;87549;79398;65063;73468;95996;91235;92695;110796;108769;92625;102345;106470;42092;94857.24;59681.36;47489.75;51851.55;62755.85;34695.48;36698.48;40878.48;47999.48;67576.48;47827;59937.39;68445.95;56778.45 -5817;'902;Net Food Importing Developing Countries;2042;Graphic papers;5922;Export value;1000 USD;2387;1750;1585;1230;887;1193;860;295;571;702;1286;5872;4083;3790;3102;6974;8992;10888;14651;12696;6069;7575;6088;10249;11143;3210;3379;2889;2736;3153;3153;10116;13734;30628;9643;8967;66333;43254;32019;37779;61860;53980;53133;66896;66457;55516;70834;79226;49242;91761;75357;64455.29;56680.46;54340;41521;45967;47329;55977;69793;50543;66824.39;79376.97;72325.76 -5817;'902;Net Food Importing Developing Countries;1671;Newsprint;5510;Production;t;30500;31900;31320;39300;34600;35200;37600;41000;41400;36800;30600;28500;27500;32000;20817;23500;35500;35500;85500;70500;62500;71700;71000;62600;54800;52850;59240;66440;65540;60350;69270;74320;70320;69220;69670;74900;77800;72200;74100;57100;59600;58100;92000;71360;74560;73560;67160;65060;62600;65600;53600;53600;53600;53600;54050;53473;52638;52638;47238;47284;47238;57238;57238 -5817;'902;Net Food Importing Developing Countries;1671;Newsprint;5610;Import quantity;t;183100;206200;192319;202117;203700;247400;250600;235400;261500;283600;296200;307700;286490;371100;294750;293818;364550;402900;386500;378100;487600;466500;498000;434000;416313;481502;511460;584725;500262;458977;508577;455846;430767;512482;525035;468266;591784;668534;647250;645892;802932;676173;607679;759054;750178;832954;868205;872173;878369;845327;903736;902273;884982;826360;782899;777403;679868;580439;573326;360817;331941.5;251624.07;247559 -5817;'902;Net Food Importing Developing Countries;1671;Newsprint;5622;Import value;1000 USD;30159;33698;31539;31200;32090;36773;37863;34409;38766;44422;48347;55126;55059;124377;106010;105446;128559;153888;137329;161064;220845;259588;243660;200312;207999;266310;284934;331112;349129;384379;290413;237722;218945;242528;351793;313816;319766;371133;321987;350641;460776;354346;290641;391013;395886;446158;534725;599310;604009;610810;655876;652974;631871;583224;503244;431912;373346;383448;370671;203421;206740.95;236894.81;225831 -5817;'902;Net Food Importing Developing Countries;1671;Newsprint;5910;Export quantity;t;17700;11700;12400;5500;3800;8900;6200;2500;1900;0;1000;26700;12600;9200;5500;11300;19200;23800;24800;18000;9500;10500;8000;16000;18100;1000;1000;;;;;4942;860;1792;1483;813;693;237;1334;1385;1198;2172;2592;8986;7885;6201;8329;9864;11727;6809;9515;5979.48;5408;6894;7776;6644;6687;8920;6839;3974;7700.15;5530.05;4511.05 -5817;'902;Net Food Importing Developing Countries;1671;Newsprint;5922;Export value;1000 USD;2387;1750;1585;1230;887;1193;860;295;225;;144;4435;2889;2667;1202;3500;5328;7471;7778;7345;3900;4700;3500;7000;7688;364;364;;;;;2736;582;978;1389;927;790;141;735;700;591;1138;1524;4485;4003;3395;5427;7348;11390;6005;15279;6331;5750;5097;5706;5711;4685;6136;3613;2087;4850.1;4625.72;3750.72 -5817;'902;Net Food Importing Developing Countries;1674;Printing and writing papers;5510;Production;t;63400;82300;93700;115300;113900;127500;132100;146500;162200;171200;208600;212800;248000;246900;258900;271700;306900;327200;368000;375100;410500;392200;396300;464000;454600;469000;481800;506800;550800;487600;481500;418700;458800;487000;514400;526300;527900;526900;532730;527560;520491;571966;571145;599360;617447;634686;701247;703362;673860;688045;694334;683753;673453;664882;673802;650674;661872;599917;544478;560360;563517;496217;494217 -5817;'902;Net Food Importing Developing Countries;1674;Printing and writing papers;5610;Import quantity;t;119900;88500;71300;132900;119100;135600;113700;97800;104800;99700;148200;129100;142500;185500;199350;184800;189160;191560;222500;269600;266400;276600;247700;319200;362230;318776;304275;314663;287196;391809;453565;598111;559796;625162;289834;331928;660851;732546;882172;752457;910004;815667;989627;1317925;1397343;1261722;1494953;1634568;1676503;1707191;1813845.5;1933377.44;2005650;2335466;2105356;2376118;2559983;2640078;2610558;2239801;2317308.94;2261045;2185685 -5817;'902;Net Food Importing Developing Countries;1674;Printing and writing papers;5622;Import value;1000 USD;33148;27647;23355;35994;36578;40473;32813;31046;33434;34164;39241;46901;60350;102724;127946;93119;123063;130252;153686;203639;217576;215338;187603;225065;250884;254403;237336;279989;380448;724124;401907;467562;433218;445383;306024;315546;616612;564773;609430;625390;735007;649615;771809;1020422;1111051;1049731;1363866;1680205;1606753;1770712;1952068;1957119;1987577;2269540;2023812;2172078;2348596;2539390;2489800;1958667;2087595.92;2771430;2694445 -5817;'902;Net Food Importing Developing Countries;1674;Printing and writing papers;5910;Export quantity;t;;;;;;;;;1500;2800;5900;6900;5200;4000;4700;8600;8200;7400;14800;9700;4600;5100;3500;4000;4000;3600;3400;3400;3301;3555;3555;10261;18360;41017;10154;10502;86856;79161;63729;72083;94798;89063;90103;101810;100884;86424;94016;96606;30365;88048.24;50166.36;41510.27;46443.55;55861.85;26919.48;30054.48;34191.48;39079.48;60737.48;43853;52237.23;62915.9;52267.4 -5817;'902;Net Food Importing Developing Countries;1674;Printing and writing papers;5922;Export value;1000 USD;;;;;;;;;346;702;1142;1437;1194;1123;1900;3474;3664;3417;6873;5351;2169;2875;2588;3249;3455;2846;3015;2889;2736;3153;3153;7380;13152;29650;8254;8040;65543;43113;31284;37079;61269;52842;51609;62411;62454;52121;65407;71878;37852;85756;60078;58124.29;50930.46;49243;35815;40256;42644;49841;66180;48456;61974.29;74751.25;68575.04 -5817;'902;Net Food Importing Developing Countries;1612;Printing and writing papers, uncoated, mechanical;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;291831;298331;200000;206000;189100;192300;172900;172600;172700;172400;173200;173100;188300;187900;183700;180200;180100;178100;178900;178100;154100;149000;162000;163000;126000;126000 -5817;'902;Net Food Importing Developing Countries;1612;Printing and writing papers, uncoated, mechanical;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79602;89080;103325;94190;88424;145842;140881;135762;141103;159910;186981;147364;161696;150446;163237;167447;199944;221337;210103;237358;215136;189062;147065;135885.76;130091;134414 -5817;'902;Net Food Importing Developing Countries;1612;Printing and writing papers, uncoated, mechanical;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56002;58792;95260;88431;72327;111148;108553;106466;109268;139526;174238;146921;156752;153469;161049;160519;195507;231064;216769;247281;217606;168512;128277;135069.2;152822;149605 -5817;'902;Net Food Importing Developing Countries;1612;Printing and writing papers, uncoated, mechanical;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1697;784;1598;2999;2582;3357;4012;4014;2926;3913;5134;3837;25250;9482.3;5636.27;11487.51;5101.3;3959;4695;3763;7777;7416;5014;3578.48;5031.6;6958.1 -5817;'902;Net Food Importing Developing Countries;1612;Printing and writing papers, uncoated, mechanical;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1844;708;1372;2232;1938;2717;3049;3053;2273;3236;4607;4446;21979;10116;6497.05;8966.96;4919;3449;3969;4323;8279;5784;3996;3928.3;4665.11;4391.01 -5817;'902;Net Food Importing Developing Countries;1615;Printing and writing papers, uncoated, woodfree;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;208069;207399;282260;266291;333766;328545;369160;342547;362686;420547;419862;411460;399445;398134;378549;378549;378549;378517;378517;377517;350517;330782;342715;343917;320917;318917 -5817;'902;Net Food Importing Developing Countries;1615;Printing and writing papers, uncoated, woodfree;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;438558;522310;387735;479495;445669;533508;661934;730488;605822;767399;872120;945711;927477;1011060.5;1049582;1105677;1367917;1193896;1406228;1520902;1610169;1667250;1370978;1469532.88;1374374;1460376 -5817;'902;Net Food Importing Developing Countries;1615;Printing and writing papers, uncoated, woodfree;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;328218;348618;304551;390081;361701;419776;507278;573052;512874;712558;896688;893924;972027;1111195;1100171;1129838;1345903;1149984;1305656;1411373;1571715;1608423;1214358;1249313.8;1679330;1826931 -5817;'902;Net Food Importing Developing Countries;1615;Printing and writing papers, uncoated, woodfree;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20423;16871;20759;24787;22743;23396;37075;36790;25713;38413;37049;18041;46501.24;26315;25711;27054.88;43627.55;17453.48;19575.48;20272.48;23193.48;31751.48;26206;28048.08;28261;30051 -5817;'902;Net Food Importing Developing Countries;1615;Printing and writing papers, uncoated, woodfree;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16115;11688;15549;21928;19406;17695;28170;28303;21419;37287;39387;20228;48861;32873;38558.24;32012.5;34497;24740;27971;27172;29715;38541;29702;35280.15;41279;39064 -5817;'902;Net Food Importing Developing Countries;1616;Printing and writing papers, coated;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27000;27000;45300;48200;49100;50300;57300;102300;99300;108300;110300;89300;100300;108300;121504;114704;106233;117185;93257;106255;95300;64696;55645;56600;49300;49300 -5817;'902;Net Food Importing Developing Countries;1616;Printing and writing papers, coated;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;214386;270782;261397;336319;281574;310277;515110;531093;514797;567644;575467;583428;618018;652339;720558.44;732526;767605;690123;759787;801723;814773;754246;721758;711890.3;756580;590895 -5817;'902;Net Food Importing Developing Countries;1616;Printing and writing papers, coated;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;180553;202020;225579;256495;215587;240885;404591;431533;427589;511782;609279;565908;641933;687404;695899;697220;728130;642764;649653;689942;750069;712865;616032;703212.91;939278;717909 -5817;'902;Net Food Importing Developing Countries;1616;Printing and writing papers, coated;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57041;46074;49726;67012;63738;63350;60723;60080;57785;51690;54423;8487;16297;14369.06;10163;7901.15;7133;5507;5784;10156;8109;21570;12633;20610.67;29623.3;15258.3 -5817;'902;Net Food Importing Developing Countries;1616;Printing and writing papers, coated;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25154;18888;20158;37109;31498;31197;31192;31098;28429;24884;27884;13178;14916;17089;13069;9951;9827;7626;8316;11149;11847;21855;14758;22765.84;28807.13;25120.03 -5817;'902;Net Food Importing Developing Countries;1675;Other paper and paperboard;5510;Production;t;335500;362800;385200;423200;415000;479300;515300;521900;552600;581200;607600;644500;693500;724600;775200;792500;805100;864700;869600;891500;979135;1007412;931287;989165;1050847;1143785;1272962;1387288;1313664;1455579;1482851;1397820;1485805;1479275;1662056;1650575;1790980;1725382;1844874;2057713;1973468;1847416;1951004;2243540;2377125;2429321;2545433;2884425;2737959;2482845;2600853;2530816;2676642;2684806;2725771;2689013;2761175;2686755;2999664;3050451;3903649;3645649;3981649 -5817;'902;Net Food Importing Developing Countries;1675;Other paper and paperboard;5610;Import quantity;t;248600;266500;257000;286630;313300;407000;430800;481000;454500;498900;547000;502100;560900;610500;468600;486800;636600;646600;620800;716700;760800;770900;779500;895350;1054549;855940;1011736;1064526;973695;952246;1032665;960413;1000773;1119983;1156338;1166727;1185068;1328922;1563928;1115596;1581677;1544352;1934088;2205879;2241343;2163635;2600830;2689720;2697109;2967474;3227998;3051885;3271803;3894671;3804061;4088819;4209490;4476778;4730728;4840622;4966178.75;5301334.37;4540956.37 -5817;'902;Net Food Importing Developing Countries;1675;Other paper and paperboard;5622;Import value;1000 USD;63183;71479;68795;70933;79035;100458;110963;113291;114515;128212;146117;148846;178228;266894;246853;264247;350853;379263;380850;486932;535478;540410;523923;571958;560684;591237;650830;707086;768465;850452;788702;696835;658811;774530;993983;878001;870562;954377;1009018;778815;1081084;1075603;1300523;1536471;1553629;1565185;2069999;2404907;2177841;2816828;3273385;2739443;3052104;3770999;3176680;3469105;3515228;3974897;3999567;3932642;4778223.29;6008038.7;4519211.7 -5817;'902;Net Food Importing Developing Countries;1675;Other paper and paperboard;5910;Export quantity;t;15300;14600;14552;11036;4436;4800;3700;5700;17300;17100;12800;22400;16300;20700;21200;25300;22050;22450;24750;23050;21100;27900;24900;25600;25500;25900;23000;29600;35100;25100;36300;137412;70481;107734;103972;86779;171844;129805;94699;152766;181462;147888;149447;190705;175252;158239;225295;192764;238256;288261;253672;307371;361217.3;369685;378545;457490;633495;501902;450079;451366;1461909.97;1509124.93;1559261.31 -5817;'902;Net Food Importing Developing Countries;1675;Other paper and paperboard;5922;Export value;1000 USD;2787;2735;2728;2349;1896;2004;758;1441;2863;3462;2730;4119;3534;6623;10173;10361;12007;11173;14832;16255;19761;22986;25993;24954;24293;27033;25047;26165;28681;21289;25977;111346;52126;82982;92197;70340;105777;91977;79573;94981;137475;106387;111482;158763;152191;147908;188294;229799;295963;306637;310893;356508;425751;466368.6;484377;541912;632343;542895;503108;449237;1122224.1;1284438.46;1027050.54 -5817;'902;Net Food Importing Developing Countries;1676;Household and sanitary papers;5510;Production;t;;;;;17200;22500;23100;32600;45100;47900;48000;49000;65000;70000;80000;84000;92500;114300;127000;141600;144400;150600;155800;151000;172000;202000;213500;238500;241800;263300;269300;231900;250300;304300;312300;314000;296000;374028;373091;404566;433585;381705;396199;489294;595777;629794;555317;563739;561176;580532;572586;618945;663710;715938;749701;746614;769878;794368;874624;873796;852668;846668;782668 -5817;'902;Net Food Importing Developing Countries;1676;Household and sanitary papers;5610;Import quantity;t;300;800;500;500;500;800;900;900;1700;2500;2300;4100;4500;4800;8800;8800;4600;4300;10100;13700;11300;10400;12300;12700;9300;19200;20300;21100;13000;13000;13100;25140;30500;26400;54500;41064;39628;38110;50896;37962;61554;58118;62859;68134;70040;90045;95330;97781;99773;118835;94887;106072;122936;120591;153120;153104;176792;188031;231512;263556;286410.46;295715;293316 -5817;'902;Net Food Importing Developing Countries;1676;Household and sanitary papers;5622;Import value;1000 USD;112;289;239;186;199;217;405;426;732;1408;1273;3184;3610;3865;7706;8172;4878;4418;10100;16914;15099;13210;14786;14171;8835;14940;16051;18660;9846;9673;9914;26777;31809;34895;57593;44010;46786;43536;47659;35400;65424;66213;71412;80823;82403;106128;113028;133707;134758;162152;146677;145505;186504;178391;226933;191116;205216;226921;283519;282630;341931.24;438469;417824 -5817;'902;Net Food Importing Developing Countries;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;31137;30062;26951;22433;48100;35747;22380;55602;48727;50019;46464;46727;42699;41629;71613;109205;106542;94311;112436;118397.3;137082;152228;154109;206070;196682;215698;186069;224814.27;240898.3;233247.3 -5817;'902;Net Food Importing Developing Countries;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;34062;34099;26582;36521;41825;30118;24749;66859;45457;45799;48605;48941;45997;61665;105824;155133;141575;127820;146975;153130;181200;191580;183769;233487;246288;262071;204342;226617.08;329715.99;318178.71 -5817;'902;Net Food Importing Developing Countries;2043;Packaging paper and paperboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1035530;1179020;1324120;1149609;1073884;1166615;1569472;1597137;1617312;1805901;2058451;1935868;1671110;1793813;1621872;1724061;1668063;1673362;1643448;1699415;1760415;1992507;2056057;2940383;2694383;3087383 -5817;'902;Net Food Importing Developing Countries;2043;Packaging paper and paperboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;933679;1206247;764986;1237580;1235502;1628014;1813144;1863255;1758242;2176068;2344725;2408965;2651293;2939102;2816504;3028641;3580810;3514308;3699214;3902500;4172668;4350508;4445952;4518885.55;4822023.37;4118308.37 -5817;'902;Net Food Importing Developing Countries;2043;Packaging paper and paperboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;621391;722230;476106;712503;709417;936065;1117493;1133841;1062947;1512282;1810053;1673828;2285638;2705815;2380444;2677369;3220530;2791218;2888841;3110325;3564991;3482711;3401042;4138369.32;5252578.7;3842383.7 -5817;'902;Net Food Importing Developing Countries;2043;Packaging paper and paperboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74503;46540;81932;102719;82913;82334;90036;78723;62061;135538;103591;115700;161016;146878;190062;239510;226371;219073;292681;409016;288493;228287;261288;1232242.7;1261342;1318572 -5817;'902;Net Food Importing Developing Countries;2043;Packaging paper and paperboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43513;33060;42223;49465;46732;47894;54923;51875;44077;68148;95397;112154;135298;152365;198012;267393;257435;265650;342148;381901;277859;222793;227061;862031.02;925852.83;679845.83 -5817;'902;Net Food Importing Developing Countries;1681;Wrapping and packaging paper and paperboard (1961-1997);5510;Production;t;900;1900;1900;3300;88200;194600;206100;211000;233100;243900;363100;399100;450600;475600;513100;522700;567700;605400;589700;584100;696700;721000;643500;715000;755800;796900;928200;1005000;931500;1017900;1053400;910000;978100;817100;912100;912800;1015300;;;;;;;;;;;;;;;;;;;;;;;;;; -5817;'902;Net Food Importing Developing Countries;1681;Wrapping and packaging paper and paperboard (1961-1997);5610;Import quantity;t;64300;84600;73800;74000;82400;134200;149500;207900;188600;219100;256000;237800;268200;283600;223400;238700;350300;410500;368100;431400;509700;489300;519600;617150;713255;457800;549700;622526;584089;494020;573300;473186;577322;772575;782436;767500;807100;;;;;;;;;;;;;;;;;;;;;;;;;; -5817;'902;Net Food Importing Developing Countries;1681;Wrapping and packaging paper and paperboard (1961-1997);5622;Import value;1000 USD;13859;20324;16698;15873;17745;30405;34612;39610;40161;49484;58348;64019;77461;115701;98186;110671;165987;212466;185550;243710;293633;282741;288758;343033;317966;264269;320759;345694;309689;377934;374792;329824;325576;453156;605184;543788;531042;;;;;;;;;;;;;;;;;;;;;;;;;; -5817;'902;Net Food Importing Developing Countries;1681;Wrapping and packaging paper and paperboard (1961-1997);5910;Export quantity;t;;100;52;36;36;100;900;2100;3300;2600;2200;2300;4000;4300;14400;12700;17700;19400;20900;18400;16100;21300;17000;14400;16800;8400;5500;5600;10300;9800;10100;31330;9560;34808;31718;25869;80814;;;;;;;;;;;;;;;;;;;;;;;;;; -5817;'902;Net Food Importing Developing Countries;1681;Wrapping and packaging paper and paperboard (1961-1997);5922;Export value;1000 USD;;25;13;9;9;15;191;307;603;595;490;546;650;1559;4126;3698;7463;8146;10650;10925;12569;13026;12788;7123;10517;6078;4092;4561;6540;7465;7014;25075;7879;24340;24763;17935;34821;;;;;;;;;;;;;;;;;;;;;;;;;; -5817;'902;Net Food Importing Developing Countries;1617;Case materials;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;264335;326800;424300;450669;375059;486030;671580;675934;675989;845589;954596;899650;731033;790321;683202;719061;713739;734993;686359;685327;699327;925616;942455;1786455;1651455;1855455 -5817;'902;Net Food Importing Developing Countries;1617;Case materials;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;312654;325533;369661;632967;626144;734592;746371;809398;745949;783654;912164;982170;1029119;1110847;1167707;1311248;1433010;1458372;1508268;1885736;1961981;2141834;2230601;2220730.24;2451343;2136292 -5817;'902;Net Food Importing Developing Countries;1617;Case materials;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;179873;173334;193176;267432;269172;333481;403443;417106;356769;420369;550601;485794;675820;741264;714798;873125;934885;894675;840416;1094005;1302593;1219458;1191771;1566749.66;2053260;1434851 -5817;'902;Net Food Importing Developing Countries;1617;Case materials;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30715;16023;33029;36948;43073;46735;33863;23026;15902;56512;44583;55614;73963;77211;112665;129755;114213;111338;151175;236830;194258;108830;124129;1074799.18;1076106.01;1180534.02 -5817;'902;Net Food Importing Developing Countries;1617;Case materials;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14876;11302;15588;13432;15545;17456;16420;10970;8555;15956;30360;37946;49788;54742;72600;83358;74932;73176;87083;130665;122894;65461;64857;682747.1;683989.21;518506.21 -5817;'902;Net Food Importing Developing Countries;1618;Cartonboard;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;136414;193509;273500;261298;247108;250693;307265;298109;318131;327169;418659;393587;317576;380567;288208;354896;307620;292465;310159;369280;382280;458783;460494;495820;458820;512820 -5817;'902;Net Food Importing Developing Countries;1618;Cartonboard;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;257141;342887;182428;245562;233512;365272;501181;505049;527945;660620;745379;830551;902369;1039354;1052076;1130634;1378353;1329426;1407874;1185818;1314000;1292091;1312335;1310552.1;1508694;1242567 -5817;'902;Net Food Importing Developing Countries;1618;Cartonboard;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;193373;226394;138953;211579;200125;241368;340736;349754;375471;561715;673777;675779;939600;1181473;1059943;1228840;1516258;1218660;1381708;1286264;1412574;1380727;1415242;1621734.9;2153693;1553334 -5817;'902;Net Food Importing Developing Countries;1618;Cartonboard;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7033;5986;8022;12528;16768;14190;24872;19719;17133;19217;19396;19177;34232;27976;53711;72026;79659;74048;96941;113667;57270;58006;52233;71310.14;87622;48206 -5817;'902;Net Food Importing Developing Countries;1618;Cartonboard;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7671;5624;7330;10672;18773;16070;17783;17093;15693;19571;28288;25114;42879;49801;101535;150583;150453;158711;214274;198732;111541;88736;82325;101978.04;143584;82440 -5817;'902;Net Food Importing Developing Countries;1621;Wrapping papers;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;487251;513191;445200;360022;356497;356322;325757;327724;328122;332073;357126;367361;361607;361788;385925;385767;382767;382767;382447;383025;387025;376425;381425;382425;373425;388425 -5817;'902;Net Food Importing Developing Countries;1621;Wrapping papers;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;354303;527046;198347;314639;334166;459959;508519;491824;429654;685808;629155;552716;696112;773590;581926;569087;739864;708689;752249;786539;853432;876388;859136;936470.65;807558;670542 -5817;'902;Net Food Importing Developing Countries;1621;Wrapping papers;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;243138;316905;136046;202734;210172;310628;342982;337183;303841;507289;551022;482511;652599;769875;587514;554384;743335;658314;641998;693812;820150;850180;755591;897759.61;986677;788451 -5817;'902;Net Food Importing Developing Countries;1621;Wrapping papers;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36411;23821;39607;50402;20056;15820;24343;29029;24965;55265;36991;37031;48670;39380;22195;36217;30926;32013;42971;54978;33951;56903;81332;76101.53;83573;74106 -5817;'902;Net Food Importing Developing Countries;1621;Wrapping papers;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20822;15912;18911;23288;10283;11071;16139;19243;16948;29436;32429;46166;39139;42608;22167;31601;30174;29154;37125;48159;39729;64519;76083;69317.58;86934;68044 -5817;'902;Net Food Importing Developing Countries;1622;Other papers mainly for packaging;5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;147530;145520;181120;77620;95220;73570;264870;295370;295070;301070;328070;275270;260894;261137;264537;264337;263937;263137;264483;261783;291783;231683;271683;275683;210683;330683 -5817;'902;Net Food Importing Developing Countries;1622;Other papers mainly for packaging;5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9581;10781;14550;44412;41680;68191;57073;56984;54694;45986;58027;43528;23693;15311;14795;17672;29583;17821;30823;44407;43255;40195;43880;51132.56;54428.37;68907.37 -5817;'902;Net Food Importing Developing Countries;1622;Other papers mainly for packaging;5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5007;5597;7931;30758;29948;50588;30332;29798;26866;22909;34653;29744;17619;13203;18189;21020;26052;19569;24719;36244;29674;32346;38438;52125.15;58948.7;65747.7 -5817;'902;Net Food Importing Developing Countries;1622;Other papers mainly for packaging;5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;344;710;1274;2841;3016;5589;6958;6949;4061;4544;2621;3878;4151;2311;1491;1512;1573;1674;1594;3541;3014;4548;3594;10031.85;14040.99;15725.99 -5817;'902;Net Food Importing Developing Countries;1622;Other papers mainly for packaging;5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;144;222;394;2073;2131;3297;4581;4569;2881;3185;4320;2928;3492;5214;1710;1851;1876;4609;3666;4345;3695;4077;3796;7988.31;11345.62;10855.62 -5817;'902;Net Food Importing Developing Countries;1683;Other paper and paperboard, not elsewhere specified;5510;Production;t;;;;3500;75000;97000;101600;113600;130700;147600;33900;35900;49200;53100;47600;43100;47700;43500;49400;60300;76235;108412;117087;109265;104647;120885;110262;126788;140364;174379;160151;255920;257405;357875;437656;423775;479680;315824;292763;329027;390274;391827;388190;184774;184211;182215;184215;262235;240915;231203;234454;289999;288871;300805;302708;298951;291882;131972;132533;120598;110598;104598;111598 -5817;'902;Net Food Importing Developing Countries;1683;Other paper and paperboard, not elsewhere specified;5610;Import quantity;t;38800;43800;56300;50200;57600;50900;86100;164600;190700;231500;245500;233300;262600;298100;214800;217200;247800;194300;207600;225000;190500;219400;203000;226600;269300;315200;376400;352157;329100;365100;384300;417431;339107;280888;271148;312824;299284;357133;306785;312648;282543;250732;243215;324601;308048;315348;329432;247214;188371;197346;194009;129309;120226;193270;136633;236501;130198;116079;148708;131114;160882.74;183596;129332 -5817;'902;Net Food Importing Developing Countries;1683;Other paper and paperboard, not elsewhere specified;5622;Import value;1000 USD;9967;12411;14160;13072;15964;15629;28727;44242;51030;64846;72639;71067;86925;131330;125690;131400;156831;139000;162202;189135;190325;208062;184777;182678;185571;262962;257400;277324;401084;407894;348171;308902;261106;247418;284335;247039;253413;289450;239129;267309;303157;299973;293046;338155;337385;396110;444689;461147;369255;369038;420893;213494;188231;372078;158529;389148;199687;182985;233337;248970;297922.73;316991;259004 -5817;'902;Net Food Importing Developing Countries;1683;Other paper and paperboard, not elsewhere specified;5910;Export quantity;t;15300;14500;14500;11000;3800;3900;1500;2100;3800;5500;4000;3100;3200;10000;6500;12100;3850;2950;3150;3950;4400;5600;6900;10200;8500;14100;14100;20600;21400;11900;22800;19046;7915;41563;41913;33565;66799;7202;12412;48454;23141;16248;17094;54205;49802;53479;48128;17560;13351;20703;12483;4873;3310;6232;7244;10700;18409;16727;6094;4009;4853;6884.62;7442 -5817;'902;Net Food Importing Developing Countries;1683;Other paper and paperboard, not elsewhere specified;5922;Export value;1000 USD;2787;2710;2715;2340;1728;1759;220;737;1031;1647;1362;1268;1305;3679;5657;6013;3894;2754;2872;4020;5892;7460;10705;15331;13180;17482;17482;18131;18668;10351;15490;18086;7347;24425;33170;25514;33317;6639;16395;28009;21151;14198;17789;55235;51375;57834;58481;28578;28676;29764;30708;11521;5228;27733.6;27147;15995;16955;18748;18244;17834;33576;28869.64;29026 -5817;'902;Net Food Importing Developing Countries;1689;Secondary processed wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2017971;2119833;2089684;1669003;2013898;2396537;2321438 -5817;'902;Net Food Importing Developing Countries;1689;Secondary processed wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;785775.9;953865;853347;662425;885948;984234;1160423 -5817;'902;Net Food Importing Developing Countries;2063;Further processed sawnwood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87948;89104;108508;80705;92994;88069;61269 -5817;'902;Net Food Importing Developing Countries;2063;Further processed sawnwood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;147087;170886;147870;104217;146047;118445;127611 -5817;'902;Net Food Importing Developing Countries;1643;Further processed sawnwood, coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42202;50374;43268;38127;51197;51427;35862 -5817;'902;Net Food Importing Developing Countries;1643;Further processed sawnwood, coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9926;6086;6162;18672;30271;34294;56150 -5817;'902;Net Food Importing Developing Countries;1644;Further processed sawnwood, non-coniferous (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45746;38730;65240;42578;41797;36642;25407 -5817;'902;Net Food Importing Developing Countries;1644;Further processed sawnwood, non-coniferous (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;137161;164800;141708;85545;115776;84151;71461 -5817;'902;Net Food Importing Developing Countries;1652;Wooden wrapping and packaging material (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87364;93436;97963;84087;95219;134583;121076 -5817;'902;Net Food Importing Developing Countries;1652;Wooden wrapping and packaging material (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31144;36388;13805;27907;20195;41200;46381 -5817;'902;Net Food Importing Developing Countries;1691;Wood products for domestic/decorative use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43889;53101;51416;39874;49498;58635;58738 -5817;'902;Net Food Importing Developing Countries;1691;Wood products for domestic/decorative use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21879;49059;29790;20811;28086;30815;37977 -5817;'902;Net Food Importing Developing Countries;1653;Builder's joinery and carpentry of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;306394;321107;320164;259110;292227;305929;361061 -5817;'902;Net Food Importing Developing Countries;1653;Builder's joinery and carpentry of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59396.9;119147;141876;49913;72735;77955;79878 -5817;'902;Net Food Importing Developing Countries;1636;Glue-laminated timber (glulam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4576;8579 -5817;'902;Net Food Importing Developing Countries;1636;Glue-laminated timber (glulam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2766;6535 -5817;'902;Net Food Importing Developing Countries;1636;Glue-laminated timber (glulam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2183;2436 -5817;'902;Net Food Importing Developing Countries;1636;Glue-laminated timber (glulam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2747;2429 -5817;'902;Net Food Importing Developing Countries;1688;Cross-laminated timber (CLT or X-lam);5616;Import quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;239;345 -5817;'902;Net Food Importing Developing Countries;1688;Cross-laminated timber (CLT or X-lam);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;302;444 -5817;'902;Net Food Importing Developing Countries;1688;Cross-laminated timber (CLT or X-lam);5916;Export quantity;m3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;9 -5817;'902;Net Food Importing Developing Countries;1688;Cross-laminated timber (CLT or X-lam);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1;9 -5817;'902;Net Food Importing Developing Countries;1684;I-beams (I-joists);5510;Production;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;0 -5817;'902;Net Food Importing Developing Countries;1684;I-beams (I-joists);5610;Import quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;914;887 -5817;'902;Net Food Importing Developing Countries;1684;I-beams (I-joists);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1349;1377 -5817;'902;Net Food Importing Developing Countries;1684;I-beams (I-joists);5910;Export quantity;t;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;262 -5817;'902;Net Food Importing Developing Countries;1684;I-beams (I-joists);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0;159 -5817;'902;Net Food Importing Developing Countries;1658;Wooden furniture (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1333213;1398595;1334270;1048948;1318161;1605733;1508303 -5817;'902;Net Food Importing Developing Countries;1658;Wooden furniture (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;472412;512282;472916;418194;531247;593106;750664 -5817;'902;Net Food Importing Developing Countries;1664;Prefabricated buildings of wood (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58204;53206;57137;38139;27580;32312;34798 -5817;'902;Net Food Importing Developing Countries;1664;Prefabricated buildings of wood (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3384;3556;3298;3090;4474;5203;5778 -5817;'902;Net Food Importing Developing Countries;1692;Other manufactured wood products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100959;111284;120226;118140;138219;171276;176193 -5817;'902;Net Food Importing Developing Countries;1692;Other manufactured wood products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50473;62547;43792;38293;83164;117510;112134 -5817;'902;Net Food Importing Developing Countries;5225;Secondary processed paper products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3607854;3849321;3929251;3611738;4159740;4771420;4489870 -5817;'902;Net Food Importing Developing Countries;5225;Secondary processed paper products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1247004;1492933;1299409;1245165;1443082;1660706;1601790 -5817;'902;Net Food Importing Developing Countries;1665;Composite paper and paperboard (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16342;15418;13885;12261;17621;27694;18017 -5817;'902;Net Food Importing Developing Countries;1665;Composite paper and paperboard (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21957;4622;4389;3454;5135;5695;3315 -5817;'902;Net Food Importing Developing Countries;1666;Special coated paper and pulp products (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;457609;463431;483413;451186;550711;644381;586933 -5817;'902;Net Food Importing Developing Countries;1666;Special coated paper and pulp products (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25626;28211;27842;23605;33138;39327;48270 -5817;'902;Net Food Importing Developing Countries;1673;Household and sanitary paper, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;475446;491740;536413;517635;543441;551807;640503 -5817;'902;Net Food Importing Developing Countries;1673;Household and sanitary paper, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;354531;371396;396816;378608;377071;439453;452950 -5817;'902;Net Food Importing Developing Countries;1677;Packaging cartons, boxes etc. (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1178179;1319565;1355762;1246663;1459979;1695416;1450350 -5817;'902;Net Food Importing Developing Countries;1677;Packaging cartons, boxes etc. (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;549025;738800;600061;580595;722215;806174;758229 -5817;'902;Net Food Importing Developing Countries;1678;Other articles of paper and paperboard, ready for use (export/import);5622;Import value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1480278;1559167;1539778;1383993;1587988;1852122;1794067 -5817;'902;Net Food Importing Developing Countries;1678;Other articles of paper and paperboard, ready for use (export/import);5922;Export value;1000 USD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;295865;349904;270301;258903;305523;370057;339026 diff --git a/c_module/data/input/historical_data/20250703_faostat_data.pkl b/c_module/data/input/historical_data/20250703_faostat_data.pkl deleted file mode 100644 index 32fa5734b4af494e614ad8a4f354e03c5a07e1b9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1160027 zcmY(KdpHx07yrLqq*4?W<+7wmVnuS_Dx@1KMRHkDA!WH6yHt`~mn6B)rHHUx%6&^@ z?jyN|VPj)sn{76`{yx9of4~3EbDrm%^Vd1&d0y{x07=`oPb0$pH_MDq8JnImJ7ofS zbRQZTc0UaA;C|SBqi2Cn{>R9Rd48KSNvMC7_APDKJHu{TU-!j_SL&{)WiX75FRk3n zT5VQ$IdS!bOHo_LdySlTLrdRu4j#Q~dGM9y(4}$Z*T0^fh&5-PCQ{v*B9BK+-3u+X zV*pNGI7Ac)LlPy`fkf*N0A%5;c=sf4L+dL9;36Z)C_w z?$3Hs`BhZe)nOKLj>VIPVnSsI-HTP4kL87+yDy^_I zhK#zt#A_@bo85%CC}kST4J)mfM*BbbITE{#PamODV@?3IETbG*T1ZD z5`|4-eJehFfL=L2P&mw|TRpx;p+ZbrU1iBH%U~hhxM6;P%i!m$nW-`<(RHIV9eV3L zrfg-!ApSB(a3biEk8=7Qms5=+eTEj&^p71!bx$W;zV@H<|C#!Dz4}k${Qu7@&5z1{ zSk&x(J0JK%jyk3PF&uv{2j0e-erXXZSL}SN2tiY*!9-ntCJ3XQS}nW{kL_s`9<*QWcm??(!OL)zJKa%zm=)32`G9|GG;sz1$jk> z=QTpj)vDhaGl)5u2>-jLmTuJ;pCZ#&9Jf&TF3EY>;%TEl1@fD|ZESgYP=Q9w>I+Sc z*HZSpdsLvsX{N>wW?pEU+Wb|9`r+&}hqEd$aG!#R?zd?oaNKvTb%*6ZU-CyXb?x^~(*9XA7-_HUan4 zJMANCNRefzxujkl-LtQqlLq!MVpKy^3ICqMBDa62!S4haWzbazUdozN$S#g2vtL_3 z(-E6t`w<;*s78H@C{W zrcpmwOY5~EQ@D>DCQya3UZDZGdu064?f*(3s~+_}$lq|tY1p%&4?s9-QYr#as*IN! z>$^oBc6c9WJE-w{HmfbL>;50Wx<2$)5pUijxj4KA^;15B26sC#X45!xBFG#zT!d4n z2w2Vw!dTGWDX8zUZHl5xRd~Jv%&EXyAJ6&5n6-u*A!e&uG!IOAS6IE+dswtUZVPTvLY_HwYJwT_ z(3=`f@m)~zc)9YE^R~E&F>hT;YL|TdK$hxYd*Rqt70Giq#U~jI{?XBU+!(Hw_brL5 zgUXh1{O0jSco*To`a#))Hs1I{fbEPGL}1fw1{dG0uAfwJJHl+IdhyF=X_*TG5G(wC z6{e-=-2m#}b%7b(eNMg-6*|2Yh6}CilE;m`!q<-B({h=&eQaDv`|oM~xbUIOnL}GB zIhi4e81IKbbR^dghh#!)x;$Q-$8@tZ)3B>E$<{zxE)Qryk{L|kAEq;a@98ScqZGjn zW;e$;jl3$o&I*NLUFe!HsfuwbTy_pH2(zyt?QZ?y6JI{0`oCctx|zRM4+x&Fd3MOG z=yBZ~=RH1hR&{f%Ia-rI;AAk9&OsU12KZ#F5bJ37-eRmQrQS9_ogIO=Jkszkczm7L z8oLfN!Wf7HqX@Kh-=9yw^_o^uH1WX_>2Q)!-kY647+)V!%vOb;=<2VkWK~XUEY67w zAGOZH;?f5>Qv~bQ!@3OuZ?5e)yS@;x%sw6hGM7iZOaZjLitFA8Vv+C%WM2#$K};_p zczja3y!GN~%g&CD!SbO}q(=|XbCZ_?gz1?u)o*!k_pB7R2+I-uMFx5egx(sU!oISI z8+%)yJ-HErlj&a{Q-_$+u-h7mO94gLRtM*?zVbtXk7G)sMuRCPdJmTWdA53l3kUY4 z4_Hl?H+olFQBAHTp8$+^n_x1)!_4cV6CAMlRL9#tJ3cFn|5F*%{z`Nbwzm3-!`S!C z(uoyL_|M1!D_bCnF~3lP0tb4576}8=iQ&9GGi)PC8u?@n`%b2mNa3dxlS0xshrS{*NzLvQ z(`J>3(Tn5m3icQ(<&D-rnPEgE^&IyCil8WJ=}L(BYKHRI&`Bn>okzQ+01nqj+_x^V z#ne>0WERTGQ#`GhjpaASG(E_wue0H6TF_D$<&60LO42pZ z=G(WNg;`*Zf~LY={+?dm_}t*IAPTJ{4D@>B0}3O%PB!WwK`8|~!+v@j8`Cw-lI4EN zaBK80*>?hS>&WWpNIPF25WzO`apa@ceRR@gH8EMVHG8We@)ucg(d4ujO8A(vDN|iWtjG|>lv?e!_|==2sPxfDvSqNkx!?Bfm?16FL|3m#`Y; z(n>g3qJ_O1L&w^iIi*X^U~!{<>(qnI-K86WQTX8?r-o&io6<&*4E2%VrX9K4Nc{BK zkDeqY#y-E3r0h}h=Ed*7`NB8&^Qp%i6smLpC$iV8x>h{KdN%5-$Ihk;c8FYILHDM&2@q(^%OdE9M!>D+ z^-5imOW0UywSIK@*7fc|>rni5tB2bn{=vmBYh^*+s(9REPjqYaKFMB(0WCtL^BdQc z$A0L;=&#_SqQ$+3%*L!|VjC9U%f-lJ7hv(*EpW6JnH&)i&98rs*Ve6Q{T#x9=fEFq zG`I7&s{wyS_k_%AD?Tf6=EpwKxeAu*owCwa+Z9Bg$aob*X9~_DK z;%&#v$~PZ3?UKvtveB8v*V=nmkE!sdv@8}Ra`>Gq&I!&WD9?#4z^IHn-ZA30I)Q4J zSm8EfKM5)ToBzosJ^UxE403w?FLqDxrx)m;WhZ-narInCtyE%=m@WbIN}Pa>RpBA56H1jkFm0j zT>Fp~h7shL&_R3$hN##Wy^_2>;hj*pS3iSl>%j0xm}^cgw-YS_4Tyfp>7u+{jo=yQ zs-)Ko77J*E9?@#a12&`E)|IzE<0E)ii`$GF`v*Le*S0C+B(0R>Fc?51Xgd!;_Qk$#v7^Kdi9$q@1*x z!JiZXPOj8>tqjm3<{`G{eNWf@unpBM~Q>$_0({UB964Ij(eYo83@$-rsB zhdO1A+R|b5EHL5J>gpqS++cdR9k!Zr-X(uEQDY>ZO6;ui^gyD+fgvl>K0?#Rwn^TD zmdSW+h}Q{HX4JCpK@{n&d{ytGEh>(ZXvY(dnrRDcDF z=SB^5y;H$rowex%OF>&?ChUP%9O;@q%y6>?#38?yXzx^;dK5Boz#?c`Ulefy$@y>O zmc@y)l5je&r8-FsOQS4_CW|>{jgVMKcdvjlBLG+MruGAxMqENu20v&|6D21$H)op{ z{SE$-sD2l>^#o}}BN=d|()p_$iO%JuQQW~wmRvbvmR}L4sKspPrf@=s}B`5ul-4~DkYQ%69I`96p-0dPSs@xWYN;j3YOIV6J zPr#{4JNT!$%V)W1yX9663|8*$BkNJ3n{U6|I7*%x<7`fngM&{su zYovjYvm8_B{apUGb2_XxAxPtUXIUWf*4qB2;Gfz`XGuGvIqziND=CtrDoxoxtKKEx z3^sYyepA(*HS3)th*_GoOf%lzn8Y8Q3IP)NNoVqbGnh{~@yZCCy=S62zwZF0u?i6M zVPfFC*!RS2CV9N_<{**cbb4bs#5w!6 z$?SDSU0{Tr{ysdXn(c%FY{96uVVTbs+UNecumcT;TCBU$3=@*X3Zknt{^qstSB1s4 z)ufc4Ag@g*vmMdGALGE43>J#|)~{kyNas5@$6eM>TL`O;pc4K!=*;F;R0@@P*a6?W z;m*vC`p!z5vwh_hkABA^Slp)7nI5vZcY34mVi&Rw01tFXvnuven67uybLLSg2c0rW zD)~E6P1)gWe*w*QK{9kPL6aEyz4^7DYsvvJQe_gaAA)=-wL17$Fsjh7no+t{{s@1X z)sQd@ID2EIG4vxd#~rE^3u*lr_2P@T>Sx)GEr=bX{Ct`!=s8fWQwVy$u7ARGP_?kt zs<$b?Y!B#2unk;9uBf+XarSq)t6s*xt{Q)QFDi|-(AI0`JPXhk*PF0OMM@tH=s~cj zL(UJZqu+MT`PyM-Ma{WDoC?C$!@WLMHNjJB^{8lg*bam~lS%#bDb&lCtA*RL04rXS z2i{ePNT$AZ1E;{kmEjX($=J3osPnIQ%^f7}zLlwW){h(xLl8$+KAMwFwp5NjeEE=T zo0=RcdUT#t`p0=RBEZ3eXM3+gabr|wNJNjO!}fjbVM8Y{{MHw^j3Ypc$RiliF*S^~ z_~s{Vs_X>kJG?L#ymLdJ; zCJgYNZZ|l+^7Nq6Z?n;_9sMS$dl1(YCa{^vm&utWgkBNYDMQMfDp2--rgN$QsUD;^ z;>)Rv&_6BvSr+#hHVfGfhe?0w{^A5jt=Gyl$q8<5_>ju`BBeWfO?cb*z|+;o!V0vI zl~VQc&XCW}EQK35TY4>w<5*^6Xy@r-L9bYRx}C9UPJ z5*<$;#2{be=8uggxON$+7C{egw+Z|inQ2UXRFiN092wY9z#F|gs?Al%tO38a-+5Kb5_!A;5#K7ejo97Ww(dg zh(`aVjYZjR69)A2Zw8kp^cN-t(=I6@5fLBsp#dPrl(8F@73{&F{1Z4^p7RMM`$4}< z_6)udXpzZ_dbT?$Gaz|}qQ1siECgn6BQ@?vw%WiQR7Nw2ZK&GSHPlN!;LPbp zC$Uq6{|c}Yd~L?|D*fgx-nZ81m3(&e7B>hyCE-SY?F-H3ADuBp;7hgx_20FOg&Mr! z+h7Q<)RD0eTu64^81dxpS;~$KObvjPw_EOcUR63<@4Xe}*2VNl6i+-YOpve6Kl9T2 zv~ z-VL3<^Xe{;JDQJi`!J(60lrlxGc5x_(hmnla!I{vE70XK-681#`h#n{%0bNL0o7sr z(D_APB5tl^>K&nB(0cAJV5(9jRm)LAYKhpH0#z`^k&`i!+o1KX9mgyIojJnOn8`rv z4Xvk)Gd~vp?aC6zN{u9~rWpePTK6i^RV(w{LP$a6UQIJbAgB{U$#{VujXpJ3tt(W^ zbWd)+F<84%F_x9zuv{{jQj&D7$z>ZjAkf>o5-{Ov}MLEfl@W!lA1C5gYQ zDR^n^X{-%dryrgQ+2~b|tdyB5)sAL{(KU9jbs-L!m4x)eN~TKL7f0^<=Q<$cfl0PX z!%tMU>`f=S-a@2LW=_F3RCCr+7Mn*K#+CnuZu2#(o7yC+rTn9i>)oCwqdyA z2{$pa0PBvPx~&fTse}SN$1CZ`OwVB^$-yf1WzyFTv16=So9z;o(qDONN3n!4#x}sk zMlJqJ2-HlG{D)$POn;$;dk4(y70vM-LJPQ&Aej;GL8itCqC3Gt(y8dp{eGC3bbY1I z#z7&_vO}sx@>NOF!q~~vi{c+2e{^-+t{a=9$iD$S^|@D;kj+HRA#{a9#3yr+l@6;( zr@d>wiK_haAF^W9AA4OQbm+waYJv7>>6VS{7k$yKuaGijlu(al09J=FLxcwM;Maj{ z)#cY3Y8OamYG7F`xT-Jyw4Zu7DJF^ZJRCY916m*>>%T0PHGj(v_uxfkW<~pDlKzCd zan5;YS#|zTMTOR8NUL3_rk3Frjl=_s`d*6->ZG57q^Sp~W+^d03OQ{{@8mygk$>zB z`8E4MgPT7$z?d6ZNWmJR8iV@FVKW2Vk#6LK=@VQ|*uX!`rdj~1aEvcBD1|XJ^TqS7 zC>NR5#Q`@wzy=$Bi`&u}D7uaMBHicqQFyn~?`!y{De~pUrvwj=^wj2%AB%DP#lq&v zzXXGFe74Pi-3oK304cK@cKWjReiZmEOtZ1Wr0UQ|@*f_xisLQau;^uuvqep^89Ys?)bzhHJjHB z+;5Kzx)Rh%uKICW14U`Nz5I()8$*02864kAxc1BCY__;FAtrJII4>{qw996=7? zwj|g}cD2~e@6BBld=(0$t{wY5?Q9+@z>Ik3Rn!aRH+EUjk5BRrPwJ<7j;n!7P|v0% zv%Vd{XG-(FgFN-cO+qC%f3H&%r+$}rzu4CO&R3@{pQUofou3B?U?+dil&(jQK@!;| z;m5*P*ywOm&m(aCh+H~RkA%m z%A!ZZ4|S^!z{UgG&4Z4Tj}2Yvtj{wbpRl~Vz6COm!h?gA`CT}~$>1!DI>HKNZwGdQ zuR^XlNdBgc_dOvcDy36T+Rukopc|zD^Fbfx&?b8&xxaR&P65P`4f^vHz#W0Sf324@pjpTE;)ZTBoc z{E>Ga!J46vcg3>n6}OxdJn2k#N}#ik~sR|TPuz2v5$PNJ&w829qvXEbI_=|{=e zVARl!#ikOn?HG}@hf867M^+M|zLv?4!Hde};r|2Ea?}Xf%o@UG6;oo)XeoDDb%bQk zu_~J`(juRVjrgK4eH-kr(AZ7jokn7XRD0GK3;pFTs+j)5Own5sJ#XzM*`sh9wevC3 za7>BDUr4IBT20rwl1tE_JvzW%Q2D4zXj9!q0Dsflutm;B>2cBh3H;TI8vKBl8v>=f zm292dB&~?NK9iW!^kiUALGAwN%bo=imcq7ePVe~fekvGqH(alU?R@1tAwhQkq{ryz z>mWGc{+j0fHP$PS?XoogHvkH`gZy2h9J3uSvYtb2X6}LVwAgNF6$o#uxNpZhXF}uo zQ$McE)5T98lIn>{A=8i9IlEL7Ne|Ye67W3`Lw~amWZ3SbIHS=^^Ry$*C5#0@B%|vt z)LGAOo~!uF+D9H{RT# z-ken`9?Vih{t1$J(Xwsk_@7lQexb%yRm@x!kVloIcR7Y1d{lR=St-|{7LTS^HAU}R z4%v5(l;e-n8io0lz`WV=f?TFMQJFgyE%pEvwoY4KumrJ-4IXK3yhFC2sS}LIN18i* zl$zE81ltQ;1~SJ-vWFFQ=2TvGJZ)*`7Y&3_ z6EE?pE&e`{l%(Q2&OvF+-MioOFGAWX~i`cD1k zUwT%0N!D{GW1T(pRw#jn%upxgB;x-2>s#(oVcLF#BbMI>*$9LJ)!j#ZzW64mq3=yxO@JuJ5Kve8N!%nNjl?; z?Di9;3AuyS2>z?cn3ArO*G%r^u7@;=|z_d zX*iXCo^S?F46oy_^kF^T`pUYaG`7hizjSG?NA>@=jBEj6*jiTH+?H418bw{=xou%f zTeDOnEY_GK#sFnA_=5tVro?Hz*_v;&r4qhGeb?WS&Q+G`(YFVTaZwsx2?+etuew)bKqTYT@ltGZ+#-(neB+5Ap_&u5KB*po&%a1nPb?QgRnTf1h~xexA9(8Ds)>b zELAF?qKkVxJL`rQO~UQJ8iJl_2zEry{J$E^9_1J+28n!iRdGR9-2iFq{h`JB!I zRoV8&FR|mi+|BEFTinJbJR^OUpKo8)w5{1Oo0Z_|wybD)kuLv4eg6+2yeP@qf- z-xke7eDm-&T5}Pcop849Wj7VY?|=i>LRwP0+NDlM03!J`=t;*l)WmMNtG-7d3;YAg z;-edxDmP$GQLi-6AKtVuJb@v1R(FSZy|;c=Jo%=@bMOMCDoV4P;Qi+cW#*5G{mc~& z!;ts2SE`7O7bst8w_r{a3h$izz^?0@stoF9+)<{1%_R!gU$fE3^6F|mJOm-uU892a zsU}Y8{71n37U0@^YbfV@SHiJ1gsXaEmA9FN7N!#s*|V{v`p#LZl18lozU41M4o3@e zJ40HIjNYOAiEor%C=gj{%spIcg2UO$1jpCxyoSEIhj*(8 z&cfys)c|`LDM|Ls{UG%ik?T;7TvdATUUN@wc!G;P&(+ah7v5dWWF8aU*!fUJebmb)Wdg|?+y+$-Jm~81FUUb zyFm#d<;Z?H0f~;e*AQ{c4xBPgn?!!UW@EA-d~=K-32bB@V4QcSr78Z*PbWsUUiSVS z27}Iq4?$l!AGmfhjhT2&cBpmIuPbe^9#inOH1=viDCPoID%aX$hmzQAkikCI8ZV~< z53W(02eEr;a|3ok)=JT)Ne!v{xTnGA#@2OYYx>5ZBH0Bc;jV~U?GVJgGPgs!5d@!e zpov}$2=ZqmmEMyM`oFSyqQd=>Wo>pBAewOW1i!L|8a5(L3D`99Q0&rJahcw!ZLNPi zC&Lf2ckKNPEmG=>@}j+Dp3CC5Sx^c!-r!if7pXTcDBY|tf(Ggcf4u)~j5ks3V&D7W ziHRr~d{H-g0b8TEr}g^m#i4%;j4toQwhx%&(Rs1QP=&-c#r-cxy|KCX(i%Y+PeD0Ut-PKvG68FYHzip<~i*vF%l~4zg6GHl-sVp6%d%usoeWUTA)a%tAFrD#-TGuC``}xhrk{ zw;+6PWDKcnTFZ@6g8j!MVW`87jM)U&5HI%FnkIY57~%p|MMR4+MI^(4*I)~GoJkC1 z!Z}Nicv;<$FT$%f-ADDZaew>S3SM8LTm`#G1$S4@Mj8eQMwfmmopHcmBE&D6{ZL~q zvnL=;8~1JjhngOTEnH#H@A{d#t+X|kOnXaYXRzp^MZLr_&lljr(coTuikivB*xI)So$Q$%v)}KT3;+nxEhMsQtAml?8}GvC+>h}#<3zqu9%~pma^C`P z1%T=8hLydSSPBB2&MVF2k~kK~+lN&1IytV>3qu|OtzZTvNUBfyeVqJ#6aC^YiBNMK zP&z18*+|W=P|)$mt`3IxfAzX3I=d*kSPgpmDqm?aa=e9D8VzTB$d1>;@Jz#EEu?Gi zZknCWc63t{EmM-Ke?ytWAM0#TXT2~c<8=NnW7MzsS=DIyh?%zWG1Uv$<~DwArIdJ2 zalPj0-(yz~*G~^{@~IYAt96u=amD~t5$gtv{I#ogJxgfXjbv>tL?Pujf|ivkhFR5a zY1C!~UVBfRbh5NtGGVsE=A?magVJ81=1v70MTWsx2H+^abp4@Mlk;fi z+8(&n{SR`^kx~|OpqcACK4-eR@jpscY_({rWvIM1B8c*7couz?MtC9611AG)cY$9U z3VhcuIK}MmYr~A8y?EESid`btU83c!j3QVCAL=5%V7kP=17!Twq42kwu-j<{Ay=ex zHBOxazrhuyb@ejG03gckpb`vlx!Hc_r`FspOC;Ob*mwn5^Qo(A!Oqc34ObZ7?3XJZ zM(kxgL$m794=;P2Ewx*&OKGaOd`ucvNm+3sz7xf6S!g;I>vRrqIAX0P{UKg(Yc9tH z^j>rocS!|?sGij<#ds!^;-kyE=!Oqa(TE9VXy|ncV>qWSDS>?5FL zFz(@F8kjAb;56Z`-DUA+YE4Nf?1&~}AO$n>q&c}Wqa5c=-_Z!`9WY(-8Yx`Na9q+Tl}YesC&rteH;;)jy|P881(6XADu*$i8&2acmGA1_ao z=%61X*x7%W+4$QWkAVD@5K10=G;jM_`l6Cz0kPt`#T(x58b_-K=Qu@0(Cr1xt_~!2 z~(`2eFn29B;YhXP(S+l=L&4LJlyS{VMh!( zz5Jr4%%U7U#LI^j2Mcag`VO}h6Ng}CouBZ_04(R4$dPW@5EApp8y9m)>-+T%PjFpO zT+!mv2%Kc;++(U3RM4mxfOkk=r^8Uo#Chaxr%8k_iPBtNh47S_3lAe<|jyT=?+4N39 z1_z4SbU_^Qs`N+cpu)aFC4Z;p)}5$mEw)Nr2d2^vHRMR?`1zlz|5_kETO_|z>r(E7 zMUm<&zd_ zHkKhi6Gw+onQ)y5Y2U3hYLVPL-cxiUjhv|aM&siQ4uqTtX$eCOseD4|2;;UXB_Xw$ z@H9?HX%|9HRdafkDh}hIlwk;wWg~Q?HUyKQCvd6i3VwLien5TfTowPRowMfu+_bS_ z_wpJxx027=bBFULm}t+?t?Qzcac1!mj5%o#3w>@jr$^cZJG#GhCcUq@wAv37XS3nO zz{<`MX9>&AF;Z_ z81l09BUF)K@POp*)Z(Ltf9|&cf3iuKFj*9@&}j!qJF95bf3|ZtYur}>)gjwt<5iVh z%(zd}RLmf^wX->Z_E6`^Qm@5$UwVc$0b$mKNc)c`MDz6+6k6*`W39^Y7H5t=_ue$* z6!C95VTnp#BDKE_y{cu#``eoE^-dgEpe6)g6_U($+1$hRh5DJSJ++;G1c;KCC`vrs zgjUhJxIBMhX48v-Oq#mF8mfk)ZgK%Ysr&OgH4o4FUj?}+sQ7$7clt@iJx zz*k9w4j*>rbv@NrYrMg|$$lDw+W1$4X|8r^#&ACF>f0Y}?1!Vp@61Wk3h1{Af$IdT z@`Co&8NH=XnS;$p`I8ujoOL5i6_N5Zu?QS|2K`~Qto!T@dc&PAhwS*P^uI^XkW}aq z2jTt)=&upq1C-ow&`spElbv(YG9s5!4W6G^!KBc`c&}&uDNfwPTD}j2>kSZ zR{unw60dZGXQ(cXQV98w((*ob`gn)rX+bF{mHJI9;*mGv`ScSTPQY%Cej<{J=>zaM zIWh{MotRpXmrua6+~=*fC2ElZep@@mW3%EQHxEiLDX`rvH{-RJUrtUhM9upbW~MnA z16Iz^s8SHm{??5%IPV+!kpJ%&l8=2&F@fd2%3E`mUlkj+cdseb{P5 zI?90#Ja9+X>L~;2Z;#H+B0{X!3N?TlK$__I_i25bM<+4CS-B86rh-ZSk1al!(IuHw zT2(a4MxBg#UCS5Ts-pDJ-yV(F1)x5V9o`D30&1tUn z!jk}t@U>eNZPMBg5ti4Hk!RYNXtv}>oy)yM)}}e;oJ_X}wR&D_hrlRMm-~4SxTCnN zI9i{G5EyJxfsmc~2iJ+=YjuH=s>R&#!BaO(kF!r41=xeswsu^M z*~=w>X+I&E%wH*E=DYj2<1T~${AZpYkHDN9B{hF6Jy=oCd8q-w{?| zL5FOEQ@#(rc#>}tA0C<8=NzcKo?6^Z53Nk*vlIk=qw#1BIoTyReBRa_U4ePf(y{GE zy~vzG>t%~BI4O$lri7JKk?{;Gw{G*DPuis|_zGw3HCxe#ZuVMJ^6>WXO8Fi{aOywj zo2p2I=(vLbcbPWF!vy^sFOaV^h?j8gA_@D%$BicetEEa%D?PlT zmaR+5Ls>>lomz{AxKrCPtAQ2F&(vAIw7Sa?2YjIQ$~zSJTqj) zxK;gsr#&@-{q7EQU5cOym1y0vao@sQbfqm3x)7Cfz=t`dwx^l4)8W*Dn#Bwyw7S>| z+{Ly(P=HG}llV(c&EGvP*S$oOuD+daXmn#V}Zt>5qc*4UUS>I|9wg?E}5TfXL2)W!#jLGZ8f-8wb-uiP$VQWd6CfI7e%p;@Yh z1ARH`v=k!((MMg{iQVp12h5Nfh(8G4^dA8~Q~~ZqrXr=yU0#jTaZ-Dc0^-{H?bCgY z9s)DclZkrbhls4Y_vT#JU-1w9u8QuMq#6ssHD2pi@gF2@&O1=I*1xmdJbFHXN8fjE z%#S?)BR+A-J##P1h*wddZ(iKvgimiE7X=Cyq_A`i66>A7?Jq{3S_(LURNb8;w(tD6 zm8~!_-V)r58RPGE51G!)>_Q9^-%Iv?4wtr;65(+!oF0c8M}J#|Y(?0C$p*jC z^*TshmhXTrO_rUkOy~Ic#7m zv>v&hiIDm<4xnmj3JNX{!PvAGy;=ilvvy%9h?}t*T_NO~hty#)Wo~X(*qqG$8=jmR zA=Yex{#@wdQM{9QqL=|DS{!2vOaDTiQ-7Un zrNoHCnXBXOsgRdJltH(ye`$L3kB%B|pjPBH-_E67&#dWQ$sCg?BvgQsZ;CojA3IB% zkAFD|qbMCpwVAbX9}|oA>eVUYLendJ*^?cljxPCs5yjzRilbM1ZCZMJ@_&B>frxXs z0auEJCDV)Y8vXdarUCiPT&Njexyk#*%t^jMmV5&775<0PbD}QDaL9Euz7taIuHVqiwMHtS$YR-355)-_U2Eyu-Y89NjvJ7NR{+3g1KiSu zHgyMJNdozQuY>UaBMF}0dn3M`Py=MUO+J}aFn&Wff7=oVc}rS$ukwfmFt)B~O1-|p z&#s?xph2&=0M_@e?ZX*zn;Ay)V8Acu`ex6}7%R9Fsu2`L;%9_O$vSq(T~FJ9jVfyt zK4oF&Pq#|Kz_SUo7OKdp#73kp5EXWjnYAElf%DQXl&r9#H)2Ovts0{(TD(*0Yw~7n zTE59l>nQ0f6MMujPIXqV<-OQnuYhEp6*Z+n5y1oqT#AfuJ-Xy6{-M{?q;?x%VkR9=dpR#FQiW7JDXXEhZSRS_Y|doI2M9qz0o*)hi~#mepsC9 zc6jVxGNH4Ad6)3`-6+Hs$TFi49~pyIm~~Yu^fkvWJ!l~`CRs2|wMXqU-(uyhADm(H z0B5CY3(Rj*4(T;Rd)DL5c|&8L92RI5b$hL!yWO)77GR-79_N2 z1j-z;O4mcj(?F7$==*_p(H^ObQAz?^?&UTQdr;z;pNfKPR?LE9fywz1%rCQyVwqYv zHh?;QLF5b{?BLIZjvAghJ;2jx2vU}m@bK_u;Np4ujaYoh(40-ukivmNu$ug|`z{n1 zZ5;?Ka6_np=!>e3(!fn)pO1jIHp-rHcYbXEy}Z@^aNT;*y7R?ozuMhqE$h!1|roovToTc$8+4le9*X84b zugCKjFVs(-Le~wPSD;K^%g>CTvQFUZMGZtV0G3!&t%}c`TVy?k8T^3hXw_=`$wy#S z%Odu0G?Fvj{Q8(!k*DLxYHlv`{$KQ<*W?grb5qrZ5PuH|ofB47Y{3+`!4Edo#7O`X z=yQOJ-(;J^N`8}dgmxp}TG4upGq05Y@m0!N_9G$n z#z$g%%mO9;Bk3ipM^=3#!TlnNP}?Ayb4HiYhP_KoyaWBKgsko?j#>_HmXu0XDiz8k z^P}qg0`K}}n35!)S~~X3lGHhz-&MP;R6^^N^IkYF?m$qZs)hx>0i?mkHAq_U#tmJMj-r-xI2n*$C5(&*GS$p3EiOP&y&=sYR`+lxXQCPp@Dp zFSZ{62Y|AaCyR5X$%E({i%%1NC`B(_OZ^JL#G$&g8y8#h`#JNnQ*33*YN;UA*A#tB z!hXFvOxl5CKFvoR<}VZ~-61mJiFE8k2z?mso4Y?4rx^B`9UJ3-ltHJbgl7Z?{cW_q zmL`-#UFwK_Qz>R+hVo#jSt{?5N-x_X7Mu8=athdL%DK z{UiNp%2033z&>OA*;<@xwNt7ON`dYxN6@69Hc4l*-E27r1E+6Qq8i^*bEQfuqQ?@T zAa;JDB)|RwudyQiu3mrR5G6jEg{;&o$r)9*PUJ!83fOa~$gQI3{7QF8Rd~)ctaM{a z6h+aTelI)9eAQ!>?e=GrsdN4E!;^x^K{b`(@F~Z$OMH!ff<+glT_Uhq41{kENzPHi zkk5`e#zUgfNakkz+a75SFkAfUALuT?`^JLktnPF$-Ds;#7{f2pHQSlP^ZveXnwbOoL8DH=5i*3BV4V-C=lwo$4qy6|3i>LD&DX9~_dBnMytA!9EV z=?OM9d+m&@oE0|J^*$0eSk9WIORkK3;ccO76P$`sScjSKS$>C@(R-2K8}GWIgKwab zV}d=u6BHb6h&lgw zX+yPw28x?$HFHh~#!(Q4Yo-^5VSV2<2_MMOlnVnYRl^=fAG0PZ_*>>O?H?< z2jC`9yjO@Q1jCvvMfb`uAz*|mA=&63`tCU(P#rr}z}4GyM}xy99;Tb7O&RkQXz9BW z{jt?uCQ}@3^_8NqLRgnR`_%B7FMn_7`R(Q_+j_%*FTR}h@z`oP=z^n+BViM*c3e2< z-=?A+B;7se(nBonHR1CtcSx$*i(cOCjaNomBMGTIk$gPR&h?7r#x7{Y-)Xt}``49I z-PY%k6$k7mTiAfGaws#L^zdtUvqiOOp~NcRTk>M%t53l*zX=$m?n_g&Hma!KkJKJ+ zP>s1$GB|d(vMvZnU_Q{SoFam-3hrNR3mm}c{OI*t`R0QwhSTH_)><*1SpV{!9|)hH zKi!2JZ9O{4;GWMtp78Nv1uWfb`me!cd#~U_2m`m)u#hKB-{6mL9Hh8@C80bs0RXOoA&SCVC zK!z(3B!&UD`I2E_1_9!C#C)Xb8;(d0G27JCi1Rg1Wc3fr_k1}%LHzk5CipVCPa}b-B+MTB8pZoh@?>NGxaT-H$;2L& z$XVSd)>%Kx3%)T?3t!+!e)e4g6!XUQv7g&TC8QL4=F1!~o1ava=|)%Gx%JnTIqlPp?8N#Z&QWm1h8k}cHFX_zzxt{QA31SSxnbUfCX?cUdDnFN zB!9a!Tqfy-R&;Wx{`{Uk=++SMLxy>_oc%5p6F1l}2}rFyfKYvjk(^+|5Z$c_Gd23a z%R836(|4|fu8B|z3^cc5a)v{3XDpo#brD$4|4QqOV;W2LZ{~+1rX5_N@sQ5hkpK8n zWfB(`y4zZq@`SrC(#xytPD|r*#rihqjy-io7aR1?6d#qJN%=`om6ICqBYz_(zeIZq zlGJ^0P0O@>bhpp(p=pOqLsMU&uh73eY4VMO=|sw!b%Z?a32C5jlS?@tual4#`lY}_z5gW4 z*F<#TEyH#9=3Vf0)@2^j3!0VEV>DWS$w%X8TVqc%43sNoa|L7Mkmz`P)aH9w^>t%a z#fHk!rf6^cP!^GxGguGf)ub2lE-ao;KpvF}z(yaf$VS*V74q7f#*g_773EiXhE0!M zB=xKt@js^x#PJf+@5j1%sRh?yEXLBcbq7>l<4*pAKX;_QGEz|CiH3!%aKD%e)}|Hp z!Kaw)!1nM(MPqr_R(LfrM3Fj*imln`ND}rlROQ8^ET} z?PYt!F-P^ssf8Uq@1<{lw@vYNoBy*I^v-;S(%wv}Tffpt+0Sx6tyEDKWHhU0fV=kH zKe0>dLKLGEOlW=V!&%_pTZ8PF9kw=m;9;`y0N5wrB_KPGg>(M>VtVNOb>qfZ?zJ-8 zqJWR*M|0$Hoy+#vc5;zY?)slPZ zmj1fwgumPhY3o+(k<#@sUI7}&;z&KHjIz7S^EpY{x?0uRy5Z@ml^jJAOwgoD{4JTx zb!5aQ!amDa=Mq}*(O+Ob2Kf~h#Z;CW1bvSx`&0S2&!k?30sXyhD!=kYST1()A^k#A zC-TfgRq_CCBm6Hu*0=AXZk!PYst4fOcb?fbu;YpN7wzVlR@*5*^pNgUM$HW}amVM*Jvfm~?{jW%gYk%x{%>FOXD~ zEcG7%aHbD`7lO;noR!F<-6q*efKaYByJj3xdI6aH({l#_&G6wi=bHWWJaNM~JZPFO zzaKw3?*+j-P+ym^OH2_rnUAXsE8q#??$p<)Ok;dC-azFxSxapIj9(<)1Yck?m)s1R zMv?lTH4NLxgeL#T0gVdx?Np42x&aZ{=*gn=!w!$Bch$6#I?B1CuK1O5 zha63?tllkp;;t8eDW8#Vex{E~jd5pbHz&^<<2d_t^j2J*0XOJfR|M&-YoddmIVJ6H zHhX?4=M0@s<{Wb99|*lq{Ia#m-nDKxCNGqGb}i=RzxNuG|Ew^E{IgblVdKLhkFzd7_Qw1Q%Fj?5Mk);Cr7j*%zuQ8w z_-sQUR!l-Pyeo#xdmhFBq0Mu@A8rk)N zb!#P2ZO59#_Ipia^C`0TI%?4~_ynz|vqD81Ax_<1}@HLc_aKr=3}E%Z}h_B)JD} zPjj&o7YWi|9dh^*yRcuanqAO!b^sN;?(ezoS(nLiYk|i;LYuvDGgEHz-a(zcvaENs z!m&Lp^c+EH5ptuq^(VI__ghxgjA@mMHdSqPs@O_tl6RoypgDwAJTY9P;ZMIe3NPAm z5B+*Xru*tu$g!~Mk)7Shd$dU>&Q;~V&DFU$$WqyD`RX~%BJ0DD<3SMtCf87Zf1Q>Z zE9Cp*6*rqzSoi#i_j5PR%Lse$L;Fo&cI)HNt==^kn#vC_l)XrPqOV=xX+THFtY8}z z?V4UFvNo-HCyxmk)oanVsbgiIw(#ZbAd4;_F{ySmk-oQT@+N-MCK_7xw9CbF3t9f> zo`&&iFKUPB-u1+?>GQhJ4T8P|bUFt9Js7>w+2`5jW1X0nOi_-yBaO0~^O3ab@^HoUbwrxe@Z>Ys#gj^NDlTIMXd zKeYEU6c-IR2Th1%m> zc1nG2wDu5Yy`Q8=HRVXxtsbZS^h+`MF}pbg^^Pl|*V=I_dTXdP$8XmdF@uXdUGGD= zKl%!;na?do+)fAyOdKhK>N(LSt^1S7yo#%te47*-)ZE3IT`N9S!qs+Q*e%24lp(vY zbVVS*XWBiE6F3m%g9~ZtE(VZU4RxuVf)Pc)22*XME6e zO=}ysO`kgZfGb~+PxqFb`sc92lT@Y6x%B$2-GHrDx99>|?MLHd>{XpzTIRN6<}s#uZS1&ang)eRe~<6Y94_ zSM`C}i#gv-)2P)QR^JJ4zA-<3VU(Fpwi>MYR&TeR{m~=_GCtB~B9aEkUV|$qbO$QV0UAlN%;=Fs| z?y$^kXmo$YWzzy5)NKE^iO`KMv=}v@=(W;z1uv(*B*YkELc})~D{I7IIrB);@t@Ub z<^0v-t7j7~HDw;-i!QaXF4r|CY@G(E@NE<|+AaYF|QWDg!HI^^RZ+^Wa zvzRjm@W%%>ZCM5O3qy?y(UU>z*3=T7;u>`MB~lk4!thET;w7X$+;26h@IyyQGhOKw z{%8Eq_!2wQxXlEQOXTCLg-6o|!4WLarOR@T51=+rlw?AG*VEwd!1r&8E-jI+a0@;? z*pe5u(D9PTE(YtW+V_%Ron>2W#6@OA!+O+;Ir2exF?)|6IrwEt(p!1_?W1)x5tXGiyjMgB744o&9VXUd++TJqgK-7A{Kh2C(-IPh*U^PY%+QaBf;&6CEY#WI^2&iSMF7VQ+&`D<^%h3@`K!0+!kw}lS5JqJ_E+!O-0~S zW5SwPpdq-=!A-pLsdME5+=cE9`5v<}FqA>KMJ-yayNR(WNioJG`!z7HlPmSH3Gr&} z35%%S-xcTHO`nwSJ#OFfLWr)(E+~nbrZ}@3tbsFQ^?}ZSU*)q*2y-~|mP{z^hiK{N zL(sbUB_hmM{EE%BgKNO9?>48JQD3M8DYnqy=2PJfn$IjLwq5e?*G7n1!?lWK7>g_- zyY-Ha8h+{aoPWYe^rp+4o*~}*nJrz99N%$rl@NM;j++xk50FZ4qGQsQVc}W6Ajdx2LlHXmzdEdgZtOYX$l^ zfazWF)gPkl`ASKaWv{w5z); zZwm_%e?24zgri#o3sn8dWR<-NB3t>-7;<2q;de%9+cysAANNB6=SFoj{5U752q_#)nc&+d=$}C)tT!+j-_>C>=f7(qb9lb4 zN-2INWNVEBgQ0BN*81`rhj^RjEurIpNy*f5#n+SSyB3!r*B`0e9RM6+S?*d%k~dhF znLDI?40F+hO$NQM-Pw^?>#ZrW8+9pbu@kMrPx_hYI&T~uuLdVGcOC#MQ%@>n2~V>w z>grydD{V1^6}LVC8>@(J(-0bw7;U4V%9-#0h^mgevIHA%&z(mNsz5CWxO~Z=pcwnZ z4(--Amj2i=?la(AWX4Qc%eRvI+;7p&3_`jg8b+?m3i;r00D9PHNsXVpJ`m0uPezO; zBlqaMBI%Lr)v-d2){_^!aHF5<<8iiKf#*^huW0mye5*;so`7s2hjNty2B|21G~UdVyPG_&Nu~t&24kpxaXzz*5sz3kU#J$8z8&)MK&dvkuIAE9`DU z+}tQPvh0i+f@`sYo_(kgRLq%5@CyP-)4qnt^Nl{jwtRmd@30u{(5&INqEY+?Zv`HJ z$^Ojj^8fC;5o~zJFPJ<|*i>?Cs_phKjv_Xuto3}x9G8V=6bX~cHO4**Kedy6mA6|n zM>z-7nSz$uE)WxRqQMiT=f35 zE*Cj??h1I}%aW~r?>U-S^A)%uq<5xhCd#cwFcdGl{j`41VZ0%P$vtgGCG_B6{|aZn zpKQ25GT0h|ZY9W)&R-vFoE^}#UBHyd=dsf^-~d6tzQ4U;p8yg$ttlfK%vnyz1^*6{ zU$O2=fy-?CHK2~^WTRR1490O`BYQW(ZdXeU@H$@h1a$7mn#l1#5`%s^;0r{`{Pm){ zO+RKsOXC zIw`snkt$P~i=zDM^Hlno?S&W^gvpwGmj74Ul zN@aqq*aX3y8Qo=P>dShd>}V7GbA z;lCfi$CnJWWJIGEtc4bxcb;HgLP9PZ7|9~CN2Nz6>JlqWFEm4QO1LuPVhX&1R2^SH zi-0SBF?BZVOK_dVPq!WmC~J~yjA(4I#7=5H!Ng{fb!J+qb|$y2=bkK6HB7?}t>6dn zhVF*SFQ@Z%Fznj;B{0_W^F>kn)q#E*S@6@MP;)}l%1&SIpP_8aU9h3Z zpv>0+{R`^g+;tnjzk_*U^2rr}^w<(`DUNY%c$KmU9xz!{Hrs#rbt<{g7zRU`CPI05B%)u)VnwEbZJL`iCg%-9fj8?0PC$`T7+oZbn!GDbdnNgKq zA}@gk&wn&0LF@CwP5i{VLBA@X>FHj<=;t)`#Y93OAe7hp5JWqnz7A+ncwsJOoL9G4 zR!?k&Og-(3Nx;0=h2CaCeHG-@m&GV*tti1^k30UnZkb8u_Q8wDTIC3=tz{h zL21B|o1{OjJjR!RZi)7$JA@ZQPxNahn{At1b0l1nH9jJ0R!xjqxw9_y3-c?~S%}K~ z$vvL&Rw&%QvE;v|!Je-Tk`G`wxO%M%C~wVH&El}@*M)NYIn0I@dpo$SuyunEcJL6M zE}|c{ncUKpoelsYH@rH>gjqcUH9^18(<$ib1aexZw_`w~3_m5k75m#S)=az~U+{)( zcpKYJV8E;)4F_m{s++MMJ4kqoc$Yi5;@lwamHANGEnIh?3S^x=4^M`_PWKC&)Vr>&%0p1;*ENJ>Qb9j;Z#&zG`{yZ{w})lKs3iUKv>Cps>Xw7B<6vQrCyejt z19zs{D!q8mwXh}w*Hii~_6N{Stc$OdO@i)|x$2*(AEaryZtq;GA(`SFi z!y6#GGkv@HFEp7?PV-ygg)n69h;^Jf&+g=|EHyukLnfo!>Vx$BFH!Emf}&fKjAOD% zEvYHhYnDz|8z)HbZEJR$*MJt9mJR^sdp~gX=;Qy=Py2go7BQVK3dgq~?f#nESc7Q= z6Ot1Zz3G0t<9u-4h<9H|Mf`}%%IS`t)pLV;t~C)l7jEMXR;2$VSlv0J$0{EY?0stb z?Le6DSP;0!*#<>eo&;31BAEXUJNNMN=#RkbhlBpsba5WDlIy=Bz?~c?GNyQBc=K8^ zxo*dN1G3o}ZzqEH;pw!xw>3YbUB0DC9ex2NzY8P+l6jvVkS@hPi^Vv-<3IAr;I?IP zyqf|?ztnTf;!|OBl-51K=6c~_aT#bO*D7NRSXA&t)IruJ6N>1G(#`gtzYC8jOP{ zyw^0zy#9`d;DP<1yDNIf+u@ef74n))L#5$UA>E`6JHcu|zBO~yQ=)JW)K#!@EOWD%+rJPZD7($!pMSXNe_)F3WncOA z1bJ6lpwlhooP957(yW?0+3@Nk zV^c?9iV6waSi5#ECp>U9lNKF~Yub1)O0+a~v&dlh59##(T%iIUDZME`^#+12VjC@< z7YS8J&!fpdNypq8Dobl{frhE6BJF_G)@Xqn>FI-cjdnsPN^ES;-7p;3>xUtP~~!k_$W&U#KYxN?cCS{(#;So5a50^-T#d_CeeODnXyz6__gv z&z{{g#3*@$M`x-hhxE(5j^1Hk+#1J=JF{MZ-@Vv)lD_3_2+M7De+}q1>ND%q;Z&3n zS1FBBmh?`}$Bsv4R^jLRk<890;b1>(N$pMiWyWEUR{g)? zva|;e-m_Aw?_~kqwu3nzmF$t-wOebG%y+PdZj13LXrvZayj#gJdZ{u`RDeAdG!ou+ zj&MG5_b%(sz*4{?SAnm@Wm-@dyF+knw({N4YXZvjDTb}+I@cHjI|6JDUrHGqs+a`I zf&9qdiw5M27$DJ$CCbc~Ax1SJQB(^=uU-7&xUgjX)07OJ%&7oE>aYfG?PIw!diX#Q zeEBMkl*iltY)-~t^(F@*zA3sc^|^2(sRey$C8rClfyhi$p16|~cVNCJ?Aoyk{1)DJVM#@B=823xCC#3&)YD-G%PNRGP;C8)KRBMm4EfYNP|LNUa}5<7kXL>HOO^h<6p1`XO!Z`tYKTT z0^oyGwp2&VEJZE0<=kkL?^2Df2z6@n-C-&*>$lsvZM^!!8=L9WaBz4<#m=F z=N>feaRp3;dI)bw*MCZ+ILVh-)bytr-ng@(N=c=5%YW+f@=-xmd-^~k3cHz(sZW;p zGI-^iXeZ`{VUV*_wvw@#tSFc+h|}{wExf;z`Rq9JOyqRfA*LVdRWy%_KVgK~%`B7R zYnSP`9|ueA`dqsgHO^am_Gs;y@2WnjA~^SUdHUKvFSaS|1%}8{?8h3*2N+^k$4rLIkrAI##VvzXZ;gKjG2oNd{AlWrE zpp7lBi|^AVwIuQ%SHVq<%1j7m$n9}MiECjYLRCbyYjKt;t?>p9nRPisokg>9p{{sE zbgfvFC8&aoFdRgQ+UzQ?Af|;ta+VMpC8Uj(JYh6{dMv2tIhv>bve$z$|5{zIgD}l` z=D`}on%b*jMG`^(O_B05*7yCa9otxM{QF#}MU~|N5%DR=$$=>TYtKH$89s1x8r&c_h$~L>cTYs=v{-V1(<;|ZriMj{k-&mYOKl=2^ zcH&`#)9+(SZ$5o;PZ}RZkC`zN=u8x(&s+V{N(LR-~ z<~c{c6C8k?wOG9+g1G+@CPE+W6~xh=(Lu0WO+arr@ZQw&`1*dH_#b)4A05g{-!+r# z`TN{=pzjw;?@wqY8ax1KUb&%J+nG1~!?eR5&i=k9_DU}Mj%@D zp?O!XtGUa5hJ*R|O?!A_Oy9F&PKGpU6sy1W7C^8flAgR2JAU!fyaKHL*W6)$Xz{^K zq3S&6_EO@2Wj`5Ttg}@RvqilGgsaBdJ{U0+?>b(TJj^S^Rg#V_(pC9Q$=~Yu+t!sR z>65ZguaG7um>+|K7QWo?I=ae%G&y(@-ZtgiKLiE8?QE8+Mdq;%y<>dDSRD*+-fx^; zP2e=C@%sxU&t+K&zDK&D#HIw$7NRD_uZKZ zr9JN$tb`zT-|qpuOq1Lr00`p#aB6ezVvFu>!=e%0b8fra+IqF#CxWWP}P=cPu|U-4*c;a}SqT;<{H< zmRmt%be9ZSQpKeky=QEi#qcdX}jop~~ z)a7R*eo0EK_!d`meTu&P`Vsk!g|3~Z|wADt~UJ*(* zU_poR)DfN12&63l0+u2d8>mt9t-9h@{&#nw?w__FbziL=!qJ?(%{uYtV~4?i+8$02 z72lv;jD@8KQ*?LXC9(tG8=^VoZ2;C|KFmaLvK1Jchf&!|R$1z{ui!r4u!>a&TxP4S zN)n-+6_v;mu@xZ)nC8Ph-`=xticnj>(Vs6VpvlTR>iX?kGk>%kW>yf1m`vwfSA})$ znlA}?D?AC^-yuE{a$+pV3vY^u3w{7aI8ErrOGGJVnXm(aJS%VC{%K-K#JKtE=-r~J zE_1AAzb*+z+RtHsZU=@=_7MRU9}~Vo{|)@J^10>9bRbjGP-bMZk%5#{s1#3q4JHy- z5vX$#H>wSn(MZmX^@voDd8I= zkK0ea%6#jo6@_`W18n*a$RC7sH;^b6pkE1>*peTlU29|Re=W*+*+EzQnNoF|SvNsR ze~%jnK5t#!LBiVAt;lUwZtUMD(S^AV*KQZPAxtB@=fbRqWDnKU6*6xry%Qd5@ZQ7Q zarjkr6<+9|_z@n@DHPvS#A&{Ao8QNkq`~X&%L1W$WHsWSDQz?>ZT7skzVK2fL5;vt zbE}W11W9$==6sbIbGTWs66*tV8XPEj-0|KsQrEAYbZCk57G&eE`US&!nXl(efdpK? zhOib9Es4OGukGIXNaFY}qjim1eo^a!_8CUPoX`MshuUziSB<#yX*Rau8}^}VVR`38 zq0*VO0_loi|2o#m3`g@{#nG#xLmAkMn8UL=Wub3!>ikT``W}k${UKqA^lRL5_u;>2 z`@dqf^)g?2}xNM;IKFja>r|YRN-YW|;wt z%s==eVm*2ApXE>Cl3oM^M@nx^)dWY3-^OI%N=}a*(jO*>T#RI$`KU52iO@nD+VlYz zYZv-#A??5!Qu4;{GeF1GloHQ3K-y2AyIF5;g1RHjr-C%92yaA6#)N$CY;wJbCPc!B zwf3@M6AV{D#`3uzcWkw#$-mVQ=I4HpPovFOR5)t>%iA{KEsyLxjfKw}hpdR1XPdL` zSR%6%GVXP7H;WpcOK*No-B9QOC?ifZ!#|!vAK)E34L&^YK|Fr|t0Tad({%@}h)}>? z5=78ikYI7+E~xSZNyC(XR;<>AXtT*5us?-Qtq27a>s&G|xbd7f;5UxA_FmBe>aQL! zBR_8nd5iUSTvt=KO4-FRF1&kCY{b6H}sxzM4=K8NzULupJkIha}M=Tr({I6V}t zoJ@sz-G(1i3w{3JjeR1fhHA5p+wY;w`|s=XpsU(dWO`mI$~{ua|P_)(rJzhlNYV+2~$c%!&G&3G?Sm zT;`sAc-CuMOAjBJ{5wVaz{Px{2y`ZciV}?7+=I@Yr%TKUV`W*$n$PL;Y!Rd(LiqV3 z#bLvuGl8@A`6u&5{2CPa7&x2EF3jzY zhHatGo2pA3?@>@L683BSFZ-JjSzM-@jf}k8I%_$BnW>;}eFlsC-K8xDMN?{He z*ym-MDOYhfr|Rsyey*Yu+BJ&Za)rg#XYh;{@{i<^I~#0F=PP#Hr`R@=bV+{OH3qR; zz}X$F`Zko!kWSz?tofM+Ws%8V9C{zajPP>840H{8cdgc3@9VdE96I}pL5oshtAdx5Qa$@C6Oz(})E9827C zJo3d$cU>uC=H4XDCYalI_OjPVf%q>C8m4hu-Y<|$IVX3Ya-ovhtl5rj@fHRa8?yTd7jP$TJw%4r)VP1EUO#d&StgR>Z2qe^ z7;4}l!(L7zmxAgIr*wlNi6s?{TdNVvy~8eNeOn`A@H34><+GTsZviEFkzm8U6T;zg z=x=s9>X|?-WfDF%1Wvjy0ba)5>^6D6f2B@7G&ONZxi_cwNHfymAfr^PtXmk zhI?SO{A9plZK#4WW`~$@|Jz4FB)+}zp^ARvtQ!YwH4wqiXABFQ(j`-}JovXbuw<7a zW?Cl|Us+0$dvuSX$F3!Q;rukjoo5;Z3>{ueoRU#ot=!~bd{;7ff|ROZ!?^oluZeL0 zF=100SjAtfzEkFgTs&O@gnpOsOh&{MzvzI%GD=S$@b7zMw+3hpzueS75_Mh{$I7 zpEp7X6GpP2%60h@rK?^ZQnX0f*JzCAi`E8U9qPXTo_24_`DcwgZSMocS11z(>Bx_#)OK7U+JHw8&*m>vgNg!-6|D$ z*#~&*+ov6OVbCZ$%}fT@usVHtvt~~C=G7(uo&YESYf=r{yqeysaKk76q6tF`z;W!# zHatRgSv*{Tr4>xqJ-dxQd;SO-8yBCIVdLw zF)h6r96o@44<(Gse$2!}FYAwG{*eXlL+_I-K%{?2lZ{;D;j?U?0AQDWb;B2z0o4rjJ-dgQ?GN+`8c3$ zoNjOKa)<|D*(CF@0nOVK_OK(orL-Km_+;2tL;HMFunjm2%D0-Y$6uJIG@E>nPPjV- z;t^C9zE(8K4%qR$d$3lB{@2n>k=T-j7oPW!zs$YD2KrwqHr(g;4m+Xq8&eYhD@_}} zdKw%>d$GyRplC9huWdFMK%nl*ldqfYB$!;|)8%;Hu{Hb%JiT?(OSGmfN2qFGA>&f(|{IQM5 z#tbY2(L2n^cwu^5;}XxZg?}YmXq^mr5p)Z2@5~n|wqsrDm3VrLsPqjzf4|1~OQ@Sn zz-<~5c5|gdhsO=+f_H+OG!`fV=eR_qq7$#B@`ffjd6_@UFDnZln-9F*QN4lI3E&k- z91ECX8$qSy4KKgb`BeNgRqZyVR-wI5&OT9L(U@=T4qe_^^V%IZAO2U8WG>Dr(!Mfj zhv!dnDzV`JJpY&&^~ePOi(1{~5qrqxT>aXx)7eP~7bzOD%>L{!iP#n}h5D z>!;W7#jK_b&c;zvS}dVaw=@B#=l zJiYvD+5tMupu&Kk8-31N5L|T{wu!J76)qL@fs#>A;Cs?o-Vsi17G3YgygbAj+$8JQ zY8H|q@@R*8@n^LbVKU?=s!Y&5`d6F_bw410Udg8|a1@Mt=K*s8S)XKI0<- zh2$t*?N9xFM**QfY+_Mwp%($dT5W{7;xGdB!)E z7)qY7@TNhgt919!`ei1z%8w_Cnm`f(%HKn4Q+Y`bGL;ZXF&p8T1ioWmDDzr-n{GcP z|B8e^Dee`1{$d8-O8*s_L@1j}IY^AnbQ-Qu90-(w_(a%PkR|pT^gPQcNPm|;3bNhY zLbU=5Em%J9-uQXL$_A!`S81!0c{cO`}onb;k@%P60%BHeO7Bqu8J5xWdd>Ju;Y+gK@~(&x1vZ zKHCB+{0E2&f)=e0UeDrsDvm{UdivZ@sW2G^v)I-HgIZ&u z`ye{bzTo9WgQAL<79fJ6AJ^wMM-bF1oFb8Cc4yuL1C^V}sv#eHfRRCacUjGw2*oWX z4)5f-sE5i<*8HN~xO)gTc`Ywl-XN}L{k(7Z)>0^#sPZ6ge*2up4;K6|=JiQ#)5C*N zZ^5y1u;2Xfj)s*|{%!*~wNB3AmXwNLZjk;k#c#eHvty5>4tHbWdp3<0p51h72*sI3 zgMU9?Zl`+|D28J$wFJ=>G81~Sd&RNhG&|2-*S`Snm`Ap8?>y`zrRHK6Pp$rky7v-y z-QT5HanzD6?H9ma05NZghl*V^de8Yy=*iZv;byrA{RiN&Q) zz8iR4hJLMwYp&ZvTnY;gVS`=&MU-!}rktwycjNwwf%ZM5nk**cPKaLf5rYT)e*!i6H?kqGJnMcy&IYp3?e*MGT4&41G0|bfhyQYcNtnep zZDk+XJh-6io4u@g9aod3BSSU61inl3N^-Sp(6~!_A5t=+EAMG$k9cjX7IffFRl~-I zf@pZzj0sWRK|r+8DMC8FD_~DCV~lYJQG;_m%#AP=7hwKDjdx8ajN0>Zj+;lUKKc?? zv|s!1Z@@@KUFd!PUk|5Swz2Nw$7_mFm?O-d8gP5a(Ec-|*GfN{hF zFx{{4gpK3HUJ9d2krHMO+s@>Q?kuV%`1Vvwlj@3U*lTVot~}Exk8-Q#OJ3@0?A^@i z%ems;2bNuuzL|cqqIGM%!ay$&SH@0`TizMx{Al!gyJ6?ip;_O)K!~W9n3N|>QPK9= zrEQo1%jM_k(_{~#vbJ0IdRwc(;RhI(T~jJ&cybcK5i|IS7wFR@{8|=~4qs?-K$(|m z{O~+uZ~K8=_&WGB{)hKnq`wZ)^cTn^fpHIViWoD5Am$u!OK4*0&TTi@$7y`}DF*XH zC?($2nhyJoa(oH(z`9*D+eG?8Fk`DM1*S7lc9-H-K4qkEwR#hTIfWPmRB?IP{WL|c+TQTt&ZGfs<8l`~4NJpUx_-pi z>-X}%Ono{dhi}vW7rCCD`J>3*J1GG70ra zM1ENP5+=LP`m_Njf!FtdZdjfK*|$errXNhyj=bN00(Cea2Y30ynk0X;8ZxJhTS=i_ zcsL0K*ts^w9vmRI5eoAnD6LCh5!pkPw)j`5D|1!$5cE;Uz-^M)`P_J4t``{Z#8Ppo0nUn%s)01^Z#r%RK@+7b1;2{DJxGDAnjoQ=)Nda|@1L zinBvCg{iLcl0HsjZ|Nf*Pt=ID~5B&Gu+6^92yZL8(B^{!p9pC4 z77sM>6WfbtRq92cb%d(=Ju46LHG1A)Q7#VtJL^0gx;{Z9 zlm^{rP~sT%D`VtE%l!Zs_cdbO140>}JTel74*c`#vgLu})zwiRNavC&5A(VZxb{RZHep`&pe>v7OJ}kxKtDKq!<1U*HM;2=J_N-&d!;7^ZFYT3eK5cZn z7g0(H%r^C0zv$nVf!;R~5#TNw{OV#dHKC01=2r$T*2#vEY1zAUDV3r)h`;0}=N*Fl zBEGc8#pWx*HqAN!^@|>NPWFSRy6i=}i|_k}ATqY$ESiY8CXaRL2g0JDXnQ#PvXUq@ zUtyQ?vq~;9V%3?|CmZk6&PjE9ygzI+{)^U#^1v;tB;k~)6Qnk$&S$#APX7mTS1La0 z<=?F)N>f!Pq(5JW(!z`v>-dLVQK!~SsntT}G0Tz2f2)m!8Rm`H;^^TrANlpPGs2sc zj+yB7SrhU>i@y!_yDE9k!f+t)=ZsfYuoI0^CVZq0O-KoJy^~TNTq%B%oz@5`!QB2F z&~Qhu8hJhZ2l4^2YR$L)!bTr5uS{Av_D5*F&K^psDQp};{k9HAq&>8Rkn-2a%vt34 zs}@!DZvg60EANWtyAAz5+(m1hjMoWhfO`xt=+_hT$FLZ)(6%dL_r%G==&;59?-X8U zpIj7kt8E6TVzV_>XZmYHtT@v-7;emI|NY5rX7^$?>Lmzpt>N`l-HwdPedLdI=Q!k> z4fhTb9`6bt{%29Cs=3zcx!aHDk+}?I)Ir$dKda2QOqr6A=sC(ViqhTdPkrGgdcrB! ze`NiBm$mt3gl`tNzo>x!zAt0(D^q>J+`+necuV%|TgL<6J{s)8KX4lw7F1KWeGYUZ ztN*l;S}&|PSGx@acs|Rg1Xp858fU8T<_j{b&q`rR=WP>Hqyq>K-r&-23n_3lpro&| zE;Ss*@pMVs`_@(V24UMbQ?1_;WN1+d-xqeFK;6gZ7h2r2?!R0n`DB|+9e6feNXCcB z>4uj{IGe9T{3$rNAM|*&5U%dRIzHz8j8p^fx=ZFUhVTC22l_T%FH2`LjhFunfBjYo zI=J}UI^ZO|N;|w*;C}E9RlJ4kqb2Y~?W*?58BZO5q!u>(+FgZPnJDhJHNwc>mXFk3 z=1#^Ym3!H@>Yx3$zVYQ4{++;4t7v#q1L95}S@07Ftr)^t>d8ENeyVD|Hpxel^OKL% zk_z@rQMWZ2KpLYgG%dS_relFS>f^~)25qv?$u%nenRKE0cfCcKwyg5N={ASkw)McX zf!%)+>dP^NHWZIh@90eh?U37W##I=^B zbT16-$?`P~e$U>TpcDvM8MH6JYmjblv= zDw_iGTBJVD4vo@=L=RYhqm~V-xnD>BiogGdTdl5w%|Ly*xT#~&$no6phVI=i6g23c zjd(f>*1ts4LpIVbmj;2Mw@Mr|gwikvX+Ol2-@&4fisyceuoM{cJPwJnPm4SZ{*uebkN&XL&EE^>*{>_!M7Ozw@MJhL_3NdiNQ} z0eM+^9ZTLr-g??=@kKQY8cTTUHB^cEYsNd30nxpof8DBSEt+c`;Sn#AUkCn`=d}@Q zPQs%PMmZ~jT{aO$0nwc5-U9iL{`e+*gMHpoT0W{P-#;+l3*@LYHjSbH;&MThXIdy3~PbO_oA- zyw}V@nx)K~?jP-{fQc>vn@WN#iQ>EUJ+u-2WJ0Bd8i`OfNs%Ng0Y4TN?(r3S>NM4Y z4+i&~9c2j{CQBE>{F~c|CO4J|{@UvZfBY3I8jJd>EpMQ5503T|t1f;%*@HfStaJK9 zTzG>$u4?roR67XP3RP#9*hVn9fdkXI_0NLFSkDqB7nB$4qXRu=+ zDL|@J9sE90dGS1ws~eE>Z3pnDVt3>Mlx`@BSge6~C=t8o?|q%=C#gD7p6aOMu5qZ& zI+MPMDM0TY*X$%XX8YH`^bXQ4nG;-@@;R!l)NB9|wY|TK< zALeKYYS#II-6}e_+$Q7&)=BF* z!H?Lc_BnH&&t-qki{bYsWH&dVOy0v4xF5Cg2LSZD7n}_)N>AEojcA(B$w)!63|JhbtnoI666~3Ko7uW`jZHo=G(!o@OSsHidWy1%U zZVbD)3xAky!pLm-1kFWZbKHs!M30+DGsh#=?3m?JGSkE3Wp~njCH{XpDO&neH3WGs zdt*X@ILT={GQDtwKa;;g7*`_)sqrwD%5>;(tB~t^r0!eCK+3?VQ}DHKR=!Sj zb+PsVQdwQ?y&WR#lBWiZMctxjcbO8rH+DfPYd8h(FeR*e&hjIQ9KO zUSgDBUv`AivO$zQu)cJOGW1tm!hRs{h!@RTKbh^iauehuH|n_j=NlPSAWFWKJuJq~ z`LS4cy(nMv@Us-mBT-dVIPr02b*VoQv{Tlg88Wr$bHOgBWW@rKq0rU1nOP*mE}=EN z#h2%xYO1j*1_@wKiBtHyeA!En!Ia^<%lP%uo{#b$d}gBw0pyM#FS@~cN~u!Ek5W0d zLOy-_bPwcE{Qkc%5@{TLLe#3xrY&WMO!wiIERE?)K&YLI&Wq$F3c-Uixbr{M!34Lj zXKx!2x1kt~Ie=HxLqBm9n#kJAeCO(yc~!AQ#0#qxr6HDIJA0v0E6pR9^^dhkbwOa% zu0VMKs7OuQiixFuEe9<9Ct+?ITH6P|Wcm~drjov#97|YxtiRv_62ue&l^2G_>Rkz= zJA`-z&O}loui0_jMhmDeV~lrXQtj68y>@|@5v4YLUV}d|w`}#ob%bN;y_uRXNh=A% zlJAAZ>xt~Zgz|Rfr1V%vsU>Gt1dm_RIW;jFUd4ulsB@nb{gt=N6KNm}g!!kYyW`7@ zFR1Q-RtTJBq1lwMTzg^;s%FkRE5K|0Jws+#Z&&ZUOJ31Xa#OsmX`TLC%NSdni(^7X zn)5gGi=>%Lz9x8XRWx*b)`hqngBcZ=WIq+3t5k}z-lfyBNE{fn@--D% zXKo5sO4KdBNYel;EvvHOj9~qrIMfNT+phI=ix$XJqJx0TU*0|0@R*WnYI zXsB6@$&Eru#h z_>uxT7`^bvDQ`|9NCYPmJb};moK6<<(H4KQjs)JdhF(^~>vHjQ~E6P$I*IM8}ro%Iq%P+)Q4(6Y%U=-<9Uf6_Qu@>5cSP2ew$N99PkLgFbq7OSh_{sl%XWVe`q?h++$P?7O7HCYGB3e#5AB||)ay}m(Cx9#)-EZQa8fS! zj#g%368H@UQKPsPLCNpc-&4vfSV#@I6*c1i#viozJJ2sH%*?EdVQ|;i`>WN7gQ)5J z?wz3wWmaTF!OKHatEc21;%(XlA3)qu#Pdv@EW z{tBl`z|M%Jl#`6ho?7AGpBcGR(Z6QD;=+t#5Up*gGaeDU(&<;|w2D^?6|TjH?dR;FRa725^cjd<_3 z@}dJg;9Tt&T+tPM+%E&)C#{;!oU|M5EE{2SEccmIzU8rXEMNzBi4e}*`mO+E;?q{D zH6zkZgAteI$L`3i6Qiqk^ZX7U4{^`K$Y?*ags5hYL@Kjo_x;J7{nd+vM|Ry5jDBWs zzVN=7hsz-8g%!Ptzj*?YVfd1UpW1g(mX6d17sjBJ9zlOn3!~ht(6b*c;m*fz+ghiN zSH!UN8U`ff70DRjD(;)m#|B)28D0(k+gDj(=VdCs8g?}3>8&W}+ULbLlR)9}u%W7o z{O+9(&voVw0FID0x8Rr! z^V`}1mMsw{mi0)IOD<>AfG*}}n0A&!wQOY)snKT87+pGqUnANGp)Ui-=K&REr=eX!WW zTAaDp{W`KkjGiAC@cX`H*!H9A4+xcKhvCzPrP-XWtA}wZHd2l4`={E7;#1E0`dN_E zvRgXVn>aP%DD)wc;=M7eU~ECA?CKiNp^5g%I=Gzs3bX#I;GTqaopDlq^3%N9e&?TZlY;q}Y%1;f!to3;{R*cx$A;RT)Xw7Xf*nKIP=^XS9HaNcB)+$0L5O?~uXKdu-mK4CY#|H)U| z4D75q*#z<}=bY*_uvP<|6v(l2IQ~R{;)m|YqofNeY)Kbe_cpRDd|J&q6Is{BndSrf zm(}|XjN8*94u&0a)F!32HRLo|-4WNWK19EEoUN13ZuROguu79*8Y6{qFz4o)`Zz1^ z`gGn8YnW?mhP=-|GRxOiK#tMzA6)YtNO zJp1iR+Yr=PacZ{i{$|a)RB@K)0fW{W*Dbko7qmDBnVl0Zu8Tc&e;LRo;s9*vhBQ4& zaP9^D9s0pg{57WDXeA^VofHcNpX*_W;4|^glk>L9iSeF@8|NMGou^Dq*udMKF(2%r z8SfQ7+zFOG=K+-@(eUq+l#*z{Lz{9mV-wwenMRJhJ-s*mC`P@fmUYW%1{rCadi0;`({b8J|K znY_Vk#~bVTk}03JAY1kU9ot3s=$eI~6V5BSYrXG}5J~dSyp5K6H({y|SoABp-pDJ6 z=)j!a67^@pq?WO^=)(@pailFy?ckhKxmUkh^@gjE@8#V)yK{B!7M~upVqM<^0B<6l zONGZfH$h0Au-%gI>3Yjds|dNsp2JosE0OZYezH2?z*xT3s};(^XtZP@FX-UtFUYO} zO{5|!FJJMQ94rHL*ij;Bg~&%|U=RlduW4SgJ6&lxk!^;dUm4?Fr_bJ4gHy1eKZf_o z{AiRl=M`yfM@TcI;X)OO_=q0D?^*IA*-eU`sPT-1_S+TiDYn-hHk9iG5vm534prA0;C(QIQIIj!zQdi|=c*;!TX&m+eRaf}8z1Sjy}u zlE&nPk53_%h;_7#2-D}F51T*}MzRrO1KWPGs0?(2qqXEFr?s85VoraI+@hdnD*0B& zBYz=%GeW7VL1t;9H%U!}WX^8xv!fhx>LP>;hqg6Xqb=s!ZjsCI-S~+M*-BKW-$^FN z9k+rH$R|;s8dh)Ru8e&%x|%J{sohYuQbx_LI#yeu8#9Jv)E(Klw+nySozT-DABHqb z-ZZRy%~=c@*go$rIRFTd+#^&nOtIsw9GX6Dh~u?C$Wd#`vZIMq1!mbpaAZ`ygs!_c z9J08Hqm$->b1XRr&710DyZEJRg)}6UhdQTdg+P8<&|)M{T6z2U+XR%;?g+b!w#EC> z5~Sq{vz6_pgXqgtd6eO1!53bxzJogAXNpo&(`rseWGDKY$APNs4enz#UMOLZ6P0`&c(+sGgWs*!o z_&jKlmWqJx3me_`u3?UR1t~d3u63_A)gwfV+E$P`h%_%8?E70X4~w;aAT%Ly+8PT< zC2e)e8v7s2_B9FQ8VWB>Ela8XMMvq$yosHv3q2u5t2U}3knQ3tMj;o(2p?7U&lr5SfFd*~5S#9!Hn2vD+^)TUPztZHlc|l{qtfL?GA)+S_tKlGp55sEA-a9!hcPvpt#SUGZyh zRP>RfQiOu%6~I5_YqocB!(ag~ht1=G4Ed2aloMYJz}o8rfatEY*mFtsCZB!#qX0=v zCuG2H9);I0e|btfdo5{xdBn&iv2%3){KAJOefzFmr9ja2vr3{5Bh8>CtwvYDf+d5A zIbouWE)9D|O!MbG+-_TPkRgvzXoBajlrn~^toWRx(zAb11sQgT)i2+@?tQ9*ZlJ)i zS}Faho>zjm>C{9yb+r9DO*UW%wsX=tK-UGWm2k%#mcwD%F>{=_h+~Qd5^u9Nw;xkk zktAivJ2j6uJ7RXw~!VNz|=4NG9jvwl>q0KVGvJTlSnyYH*fvjHb05 z*W}CNzxBoIB9G(?QJm;YX$2OZ=e)+G37#=iYcNMwVSE=jxtNfSgSQ4|Oo3LM>`%!K zNL-sD^v@%m^F~VM2m3IccGxIfVzG0cF~j;*iYS5K9u~yCrxZF(fy~wY+7C4NE=%|$ zV+wp0<3Ss;e=TQYkbUSoC^>9LQ$q%Us5722zf0jEzX1*spBGC11#9kW1ln^YeZnh; zQ|~t|gb*>DcWpWABQh214^w(ylx|zaFG3SZ|7LKJUzQVBK^5xpQdjvJCV&vm&N$a@ zlc;_29@t0Rj)qXq)E)dC)X+nFSu^O*X5oI4JoZW%sxNR;1;M7$19BObvwP4SrK#cl z?(xNqplVI_uC?YCy-Ql96ENpJpfec@_@l^LOR2U3Tid_p*q^lFV|N_=zgoSooqm;S zB@a5!u>W^k{ek)Nq5Z@i1p5{SHm_hueYI(=w;}NnV(UvL4Fk)O#IVw?6VT* z%1m!T5!Tb<2)ZzDnnk&7ePL`6vcv29=vnu*o6nr0eh!=KH4|KkG#%ny>7HG_b!}BZ z5$Kk6**~i>-+ezuy09KbjL*jd(x6^RF68osUu;UV%t&Z7;y z<;vM+#TXf1g9tUJAC9rUF8$!0tia-g1;BsY1gtquV=O z>ko`ir)gehoZId52AT~s&z$XY)6fAl9wOqNhfQv0OIC7qpNz4;^V?q+C2LQ07#t?| z`;K8$2tTRW&2GbXbl_fD?TfW2L)y9Q$k?wJ2hZJ>8coN!f2x;8^J9*uJI)wsC3q=v zHQ(IV2o12|oJ;XWZ5Qlp?Q>gtl_c%%S8Q#)FAiP=C28CU5MI{4r(aexeM3FT$r1A? zxFalH4WP;L4W>);_NV1ZM@fqU0NjiF6p;kMSy84w^xL{?=|-&pYV5N=bKfBy-0u-wO{p6c?L&E)RL_HErokF@;b))nHs#_(7R(Zp4-_! zVtccbk17qdTY?FH?Mg(Xb7IEI;_)7H#!^PMzF4sR$lIi4(#wEL=o)<&VS|9hDyZ3aL z7Sn7<`hQh~S5^wBQ&@!dc8s+W(V|3kyKGHAO4tjvWjpd0TEpcSn8Tnyw5mS>YF{Ak zrc9*~fLK_Xm+dP!Fn)*h?VjL%uT66;wT*OJ@X|YCdt6Cw_-iX^`})<@W|fr%BgWrM z%|Hkm`K5hy;xoFt&~0BZ>{CIfzy8hz^HOht!FPn}U2-R>r)58``ZxaMH{7l(jkbE1 zu_rD=jCUcI_Vi$0<^(Iin0ZE`>r=<+qc5%&oO+t1cmG)wv&L#88tc^S2!BiwseZ!z z-3xlIS|Z& zlzf$Pl|DvT)o-&@4SDtsq*-zjdQiDUw^QEqHL|3>x23k7mYa@`@F1=qHfV=)UcwWk zP|(a|-tT?|L62M?I;fM)Gh1foYQJkM2$rc1k5?Nb-tZE;ZJ~0j*R$VCPuAD=34X^9 z|24RTTaB3Jm+th6$fsDutkL(ZzAx~^k8Z1%DdO_+v%=SG{kY)h5?W{R(Km!~r?IOe zxxRT*urh7$R|*eyj0gB33r}D#sSf>+bxZvpYbB@l_RZ`jS+LbPp-xiW7Mm7_XQP9b zjDiOR_2~t(kHwMK8@GS+Yeb@&}5un zG~7L~#(X3c57f6hw&3xSfWg_}JqI;Ts|7~MI>CJy*f$mrgI`FRVut#Tu&2rPGM1!= zGyE;$2fguRcmvilJVwFZAV<>KLxI1f@`t^%D34t@L&rP34nq42?sggZE$-Cpg>*Mj z(=QvG*=WU?ulYpDZMJ~4BHvE?tyVEQXRV6-#8rPgJfV#&LRXYiCsHnIJg7vOv>D>1 zIlmKh=JgtUD|}X=#DHFw>DnQDd&qIlsRW(f^RV*SrybH_%@9W;7VBq({R`P`!rPc1 z(JvPE_vQ`$@Kxu(JGrsVVq0r629@cr6c`VfE+0mms&xoEaD6$HePr=65SgZVAA_qz zt}OT!tkq&;8jQySXe2e_!>}hozx4SLi&NRs!3#KD_!<)pw)}HolY zip%9~Uh!ycTgWkJbwF&L#o4%--9^ezG_|W?(ru%BrS+*f!bPns$tpD|HE%Zar zRZF98YIg1~Zg`s;Cn4W7am_t?L;~lRBY;nPG5+MP@alCa-xT(JBQdUg?sx=cmuP2w z`cgDzMKeq+Ybmir;lobX7fEmtDhnfbIHMbI&vGQ$u7;4l4p9lDkY3SN7+twq(HCoC8F{&Nv3?hM*uoX|A=lBhQAlbZ z;t5T{!PR(#BiyT=ih;Hj1FB{z0X`JpRN*g|kjG0nP;~Q;f!M>IMfiE4BvgsXkWa`GmV_babwzEsUXsMk=8_Gkw1-z?KLNSy}Kng*| zmarKhr;g^i^lrS*aCn6OeZYH28b+#+vV&#`kPHLl{5Hkos#CnD!kHAar%IItXh%~^ zc=!2*wnS7lUMl`?LFO6GHz^oKwA8<+U1`Ma?61$JwXFQeHHaEmWZPhdOB~sjv(>1H zdzD?jsvjf->1#bokSKc30ynEPVI=z!qx%6SU6g0eN2Mq{LyF+o8GQKzxM-BMeD-i>e`uG zRnx*mmN#9kqIfW7zfKcG@AC4l<2B?Cchz^Fq**d+R;jv5-$L3dhYLz8Rg_~iz98xX z-ln1W9V;*wZQr3Iw1zbC8972L`9>-mP_R5W$d^buBy{AV;qPa^RF=Yt zx;QTnMRC4KOKwEKWb}_^UfK$5m|)%Fb;1EGeKxWRx&|$sl7AcF@XlTGy)pHB)Wcr~ zr_0K)B76N)isyx&XAFPO3J@X}Uc^%hrHmkYk?5~NxJ6xQ0$V=554b8wlCR&05JfOe z>x;W^aS{warY#s*iF^)Nh#7yhhhDy0QZV&u$K8T02p^_uBVX$<;^pE#E7qn((`yVm zTK09SFT>^!Q*UYowx+Udkp*FKhrb(2n|eWmF@B12;?tkPxS}wWd($-O1G|O`B<=ouZv*yu?Zz1lf1m{LPVD->!_yy?4xRx3JPa+d3MiK546acN~`~ez|d?oDq0e zvzTCGi~h6s+*nin!|}HL)TLg4G*K#ExYM-G7oqLhdBRVRnRihWFl9D|-{b{@Q3tax zvn_)-+@NpEIg9?(iElCJfgyouFmWIIqw6z9 zeP8zC$vuLbA)<*_NYdM`VE+bSfE^yJ9diE;OAd9GRq-m1;QxqZH!WS)&rJ*J zeLL#C&tO42&43iLb~D_x#Sg!40ULNw)f4X|si(r7yTh==^K6?+6=yQS`jz^yJPi9U zEa*%KPi~lZg*MPR*T7*!o3B>swHz*vzeTe5D8$pWJ$-M1!>8z8iK8zKN*+n0nSOU| z`}(7K{{b(}r&bS@Znk!E705eCf`)Gs?t~t2o%%C(X7%E^Udg+4gQsbx&%Zkl%UQb^ z!98@=t$Uo4|2IVY?WMJ0C$XAgqxLaaBV5a=hg~%@3!T^C=v1 zWH-TYFO=qBY=e{}`_uTTHCcfi+Kxir+qWncDL-M4zj>}O-*j-ZaxP0cZfF*`^y}S} zzGC>AwFl75z<@McuJUPdteXw$o;*l9^2`j4xXXSje`U3zg0eh6AI69;t`UgMYMzd} z;U0m;5a%dM@c*sJpa0+!r}nMPIX+lfuO%!nQ*#e-$Vt+2RRbMwwfh7>AO3j}?Sb6g zqnmc+)9DKRMpGS!8Q7RJ44afsBXE*etf2PvJ=liN7O%s+z|q)&S zR%vLb|7B@|0y}g$o+MJpB6lwY!b-%JzN2j5ckUC|o)>NHPOx%Dn4O;Ks?34<0`;0T zQ52zWBzncTaP@Sh#2wVtkGAMB6zzd2r9lSjD7>TLomzZ@eY((7_g@f@!ZK^kfV@JhfmhNGUco5*@?=MC7S zQo04x+jd)W(4} zVy=a)h|^Fx!PA`tm!aJqh1M-sg%9|a0XCgPMwWVW#^sb8?^BWEOAq)P&U0)r=@kuW2F0z&; z{hrSCeRz^Sj{}a&r!5;*@o6qTP3gtREY|&v~r{dRCS?z>f1R7wQ>ZWa>5K6D+TK3t$?d zKFTGKX)9SOy9iGT`U{|HRtaB@aLuZ-w|<19C$!buT&ndPwPLHd?Q@|{ z`C&3@d|rQG%wM2sto{JmzL!I8Lq7nvHwS06m49iU-!>2s2%E7B`sVgCrc2|7<`coR zuI^5MlaE?I-Mefc)iIg|HN*4#JD^QHXHTEt*A9Bfe$L~asWwPa`90M`!6l3gDF087 z5;#D>^v4^y4zzK)@PhYXXGEbU)Hq7FD_iz)$2@A594k{?+|8w9LtUGNOFCHd0lq=m(pOm?L`5p32rU-Fpl~!1$fBX z?_&5r9AAE$?c$F3+K`v??*=c}Mm1svo5*B&6{U9oRe!V8{j0B{oshaq3jGfO)070r zC0D_XSG2AtR_V461l4710M-BTYY$`^zw%Zg0OhrwG{Z+V19a!tb3V1EN02_r@RXvwW5_ z@41~bacK1UzY4${0yEgyNfaZbnbceY{HW)s{gm+F%&Sf5?eD)KG0QuU8ka4RF5|>9|hX z?Dz?&yQU;*D(V*k*96yr&&m(fa=bE4ofh8byaitxZwA{Fv13isCDVBWTo)h8F}!3i zA$8C((ZCc|7!;@JXzd$@zKua`h%#>XVm|z^i?Hrc{Z2s!_eW|-J|JrRtays5s^!b! z=hN`U^ogUZJJmR!R1Fo~&Zh!nxJveymtT@enGHTDZ*i%6j^d=bf*LtA-OiI~J7S2G zV?LJ07GF$-y$LQA79k31%>a@Idl3(Hh-4cBZLj67>^aYf)nMxbWF9b1 z`aBq^%+2R6X62`WYj;{t-}~ZN-lqbqC*e{BizFy{{O5#)}dC)Q%=f|KOd`V%y(g!O`M7-`v|Q2IsG|;zyH%or(jvz4}) zKTUzwihroYQ%vQh?Ms%n3q3YiP47eWn`;x+OvcV0=U=mhdCa4WUGgJ!44ptX`J@e{ z3;M5E(ZN*Oh}waOitV2Ls1sF4Tv5Iz9*T0;F=q*m8{G?uEiQ1VAR^>)OW(M{Vg2_} z^zY@%L8@J6?CBhTum++&$-2npsZd<|IZ6bbqhB(0g4-1 z?w05#6oW;#w}#xvp?fbXJ#sAy5;xSl!Y+g?S&6rfXp^$~Xx~97tv1{{`jq~Uu1h0J z@Dcj`)+SB9>42dFHs4y_BqiSsX~Y=}nQ^x4u>0-ACf{C2ybb(m!Jve)ADLoy5rgtuUQeUucOqO(#(5+e_0d zxcc`TQFjgXqmH18g0h+SbViD-MTyGk8U`?*&E%AUmQ>F&op2HL8?QsWLlotX{70JL z195b9X9n7V`N@Klk+v>`=7Ij_PfLX!}cCF4amDHo{v;kn^CJ*gZh-pIt@ zg#_}@j-RFBve)A9J}?ZuHf<;L-YtBUKQZnKu+@j60{c%Ozqw6N}9BW7B>=I1x8>mI(hfVVxG)Ue}^UJjx7aVkHur!4N> z=-_e}_RR=509#h&tkOj#Ny;R*u8ip85KdDbitwL{vvyirm~E65eAGQTot7-#Qn!J2 zDkbXu&b<8(%C*$2;kxSVg#x=da@49_qAK?;>3Nu)RCLUW+=MxuTsikY5rTBpOpefa zfBHq-6IIMv^PXrm>!r~4h|eFh11I8fw%F{XhN?dL#w)r0Elan^!i(8<2VL8>%bsq< zZ}Z@prhqe)zFj9BMk-1}SM;#p>iyQ&$nxMj1i?T2a+h*Q%4M>(nt7Rg$go`rfPC0d z#bYD;l1J_x1#Zbz`^2(QG`QGv3$bLuztocZ!zNYTxaFsbYg zq+!g%79VkD3eC%l81Hwr3WQdJTB-YpzXA~#$2xUfpNG$g zV6+-50b%S1GYR4cZjGs+6%!!TQ!}O=j&5q3j=X`u8qIP%og&9!5PG3A7zqx+%-&vGuS5?Xu>#DZq$9YtxnnFF?I1Y4G70qmB{v`ksPN*4_|en zKUFg=bof=Bu?+t_Cc%bk2V-c8tOWRj+zmu)9W^cqmt@a>S)%oSl>Bf%F zNm~EVs`kLASrc3fj#zWjMty?S^BfX{iWjswW@v&JHiTJzjEom7U<#LZ2r$?O{SJT> zMMadLJBx26$ow9zRnC!jN(zL`3V_~M#J4_!Bz~TmWcZ47dkG4_1~1LU9~AoTSXi=M zsmwGdDlgRomn5bmv!85T7uVm#x><@>uooS)0y(uP#o%GyUKWrdJT|$}x3>g{j=>hG#zdM(Z+-o9 zf`M$cr4>nI?3s>j>XozlhlJD?{@wI7vSsNa{k%*|v ztF)(BnJHTeh;@23i&_GUQY}x@E=-w^rV#=~<^DTkCpQMgyI{(SlhSwA2IcPwq;BZpX7Rmm2%<=T}Akhx;9K%X`Rt+3V zW?$Nj+{gO~{G3kHlL1!;QsC{JhP`l)s6=O)+HxCkpyXh}^33ctREWVQwMnzF5PMpY z*Rr;(S^^~|_2;n$d{CYqZUl~~6q~jU3YUVBR+=Dm6E5Tk`Zx}P09Eb zJoNm~)TwC_0@o3`&~4M`h^nzW|8Z>6aH-IS)}$Vix{a*B`adbKjlBI6Ix@??5f|mN zciPO^l-y5Oya&AAg3^8qDJy!hcKGU|xg+8}yt*x!ug7dHq;8`eZDyv=Bs*%#SVEUDymB9YtuSf4#j1ZoX4}4X&N1Xg&a*J(_-1ey_y*S^;)lOB z>Cp+H*>3JF1da_}@IuFKOZwJAWt7?00ZwJf+}GJ?6z?5%sppv@;i^ZSB=pg4*c_p9 zsOfD}$S#_ZvRl-N>J1~j_Ht_BIP##$zwk}TP}6Pl&|ReOL2U~5=PRT?-vi+)ZSH_D z;o>Oq)F;}RIibyC3gt>_N4=n;Gh5U?-k^O7`^mIQWH-KO;uQc_Inl}`{%0xw8FqY1 z0>@=1Q~R#j@mu-hlyfMT#SdtMB?T(0IU@11;00XL1}ktTh0<>yBSP*x;*MB*va}{;Cw8s2? z`q@0^uFTOzMQ3z@;Dho_2nA_0*8HN$arTwEY1pM8KZT%xgG5#FXL7Ih@5zJEPT}{XjNQ-+mm6O!@cpb^J}_k<};k!?RB|ZyDk!UWgpbnFhf#e|Pt$`!C+a=b07> zMl6@Y?XdvFH$-1$r@ev^=p*q_dK%>Q!beF9-tCv}oBN7`KN|hLCSHAqaEy>_x3LZ! z$|)h-7SaAgvweHFB5i8=ddF=V^v%H^HT?-4;gdrn@^7JwWI%=ME~fBbzTjr;#UWAe zzc3SvN%yTFR#l(;^$T|()2)QlZE9)}^R*>m!;z<)wTO$>&^JusTJExs{N~H|c(-?E z_gI-n3}^NsTo5~c`W$P8pv)nY63ABr3T$YhCuH&iNv0BlXIdFZ7P_yf3RWi^VnXa&5dSu zRJG9TyTD3A2JP@F?kNu=xs`~_li}}$J_l?*0aoAu5mnX#AM1h4&>9gl=PO$DnrLCL zH7G1{t@xkO>XM=I0gw{{UanP%=vhqyWt( zS%^OwafCb4MO5CLle#nRohDr zBbD`M*h&_QAPQiRubcm^Z^a9q57UZW59Nl%`MTwz&qP5^#KLZ2U{`$_KHqk)4q}^m z&KT3r$IKS%5YhkVDk_oRnQfm%o_uP20U)uwb$n~l5X3u{Za22To>3MHos&s#=OM7e z3W#qmg)@aE*9tI#q{L@Q=Nz6r#tUuqtczpd$46P7&I$z-(^N-wRQsax5y_~#|# zOjGv4ocNrOE1+(9olrh9P<5;p_FCYa&uhqXwZuF%%THo&AzZN1*z2c7r#3Z@c7Z0r zueXEOL^dK%9WK8gQ90x8c7S+fi8*OH8;Q z(ZolT87HOYYTX|VT?D71%QkE0-vXixPvxW6lojmxb!$N6&;}H)CanB&8mr-ieLN5g zu%06v`Xk>hb89Qa^L_0lu5fpkW&y`x^{c1gKT->Rc2S6ZbUcxH-jZ1JG4wLMwky_b zhuP{*PP}8TX7Q&S=dmitwX6Zte}My9rhSOWa);Ro`y*`EYzmbzzQ59;&A+aGs@!8} z{EQdSmo~^wTbQ7mZ^ik(o9v9qIDr=)TX->{R8IK6a)C-C_|12{WYxQk(cqrHFQ&#^ z4c140!49p2N?LM~-H6W13@ugU7f#%g39rB)1|jW7XP-K`Ci~oSIqXGI{9w8k;&PF3 z>wB$zB%8h$|00eCirxdy;LFi15GPT?)xR}ou-E86Qhd)s{S%Y4{K-$8*SS9!Ss_t` zBkf6kdyXRY&q<~js+Mr17TQu)frW6AbN$-Aa}CBp*@E0Ej!sGWQpl#B)?BL`j9s}w z2o$7Pdevmxn*Nnw*N^{Ur3ZOHyJlPc8xnX@<`q+BX5D`!(gF@46Vu<}m1Dr`z8os3 zhkm9yk^WQ6mh6MvF#RLYM1Dcw6p*_-TLI3A@2l7ZUxmJWp@Up-mNV94bH-``bJy9C zZuDN0*~xe9fvs9(p#*;V+IKn}rTR-SwG)50IvgxzW8JMq?=N<^J1E$vC7>Dt!YU<6 zg;_7BKG6rSu-@I3`Al~YDKOledNmOTvzO1&3m8=VO%-DN;*R~6;vHYydCv+bUyZf~ z$amt^`PnOG-2^SS^ec<%9cMv5+qNA5JO%Qben6y*Gx%7S?6&wA`RryxvE;+VWe$wj zo3*}|#Cd|&BlgNmM-^6AY|WdHScp?xu~-!m7}T$y#Ep+<;N^bTiucroL{>76o;aLL z%N56Y+M?7JTcw00QYYCIz9Fh?uTZ3oJO#Qzzo81ZKp)OJVuVEw6+w?>&F8QFPQj$r zxU%BRq5m^+STU8C>&S>1r+hSY3Bqme1QFuZ3cr1@bOdO7LU#+w&VzJA6`>V&k@C=3 z(|^EwO`+oRQv_*4WRHcMyJ*Z8;bY}W)8nR1DjdUUbdtM@h(dBNz66;N z+q1`_VL{!;F~Bd7I_Jyq-@iFEH?NCznz6u8Gw6)Qebd0=HbIXKZ<1qc>Mg=g`1*m( zb9UmU#Q50>yp)QwSJp=E+zS)<7fYhB3OOi+GtmoweFefBiGd<@4&1dsTg3z;%kM1LshHg|XcwPbxHLIW5uYVR%8BOmI>ouHVFx-1m)Q8k zYWJ7I{Wyz$`BMaQ z%ep?7vtpCsJG>G9b3*01N9iYUt!hxUmtFKfM^ofm!d_3O>)q<}36SF*5yWQ!r&XU5 zFEk5&2f23&Ul#K};>JBs%1R{}16uQ}?xeM!B|3mM| zl$8n94bku589kN_i8IbC>5Tud-@R$$kz7qb8Y&}Jh1CfUhv4Lby1holTCjjn(U{b* z;e>_Tq0q=RyWvn=dgE8kWSnPW8}v<0OMu(?P1P4a$;iFqWOk#&g^Ew6+0-AJF6M&0 zLYXV+N_)-rjUKI^L(0}?17Yt&Kf=-}mMc$x``~I*g{0>z&$s&;tlXn)FKi4p5@wEaxk|}-2x&S9 z=O15g*6go}>(?y9=qa0YE4euDkL;shjz0;D#_<;Fy5^%+@VdR0v9LUD=}@wb-w5)* zu!Pw1z9_73_Ltq`M$%EUk_LEi`PmzGc(VMW}Nmw!+>f)du_x_)f^shh_|$PjHeKu4eORF>V};Q%@OYrn%OT0 zk^kcir{;~t{->#ZwcPLYa~diL6rQp1Ljk=Hm*(Wkk@so*)%4PUe5u)OQY13P#kr*$ z*>NiRU(UC-z+=E#A`h}vp#;oBs&2OGI;Xe;`nvgUvO{z)Sy-34+X0tCu@GxBp7}e^ zGUH6~aeE<3AONWH&6fMr!CzxP!Pl%y1JMw-aHlt-%-5!fD~tWi|1oTRm%{Xx@P`)4 zoz)8AmuE`Wd&Wd$SDF=KvyW_viEA{7<@5z6AWbI1yyf4)KGxminGD-*PsO5(K6x9} zB3cac;IWUYl+IcnmRwIGhp)QVfwBWT!*6mX^GB;=fN0pg6BNQR=q1YklEbKeM~p7w z@)FFO;(|F&^cHfdy)Nibi zo?yP%5WljQ*U%wm6zu(e;uMi&yY1FKp-H;)MVmwcY*#MN-AW$1*dhK^-@$6t7@`@* zc|4xl+7l=Usd~`&{rVs-)Gm&cZ1Rn$Ihuy}y|nkOOfsDgR_A3(mn=fLGyOxR|J@5{ z=!xbMI%_}PP3QIx0!d?esnf*bdy`GzWXfZU#ioHh2m2`l|AWQtb1< z$%dPg=qK{w#boYhqn*6_|Apu>_tk0Fy7pN*?=xduL7F#NU=B6e zZ0;HOO0LBvK3D}AdGM0@3$h|(u(5@?n5;8Qv$D7z2*HS9Hu~r%V)bY5syF$}xb|{G zU`f=#<5gdhby{zH_x(Z9LZbT=5Yng}Sx#oP~l7z0CP3%9Zq-w?t*> zJu#sB26N8qZ&hq}YW~Njy+xRrgEG?VW^J(VPxE?=b(1Q$ItazY#^ZG&sVzq(Y`CdF znCg2|uoq<4Ph?At;) zNJPQL*S^-1klohF_Mn&mp(4~zg8KXfiE)~DS_wYPErqN~KGdXCyf_^gS2;S5y z4NUr_m$vQ|Fnp=vG`CtGi_{7+dXK#%XFPRF=lJdWPf zJ1wKksj^*;|D`f~ffs5P5uY>ne0g_Yp_wc7lsPy(D*dYu=t!iU#8#Ts14(ilY9Q=k z6xuoO4nMR(Z>Pwon7&B^}H9-Qs<<-N>?TKL zQ^Pg}bHL|=xC9u&2mmPX`aYxTZCP#WM-VrcqX|;tO(Sj#ju@45olN-ia$W*nBPCWi zes+sG{+yg`oN$TdCI>fpgVHivpmHLJ5pOnvMR%e8Aq#e7?|E~fk2hvg4KH-Xae?zXJ_R*p}H=^Rar&~8`+KoOYodb*j?hB`@#Uo(tt681WNxp&_p29PD@ZX}*kygwE z!F1}KX>Q=kr%}Q%FVi_#5G1EojBB^I6EdZa)9gBS4<)CM*Lxj`xt80z=4aC~ z^h2uH?F#IOT&bZ7z{6*-T|`KiF(G7xWW_MDDot5V^8Inz{(%`4^;be@lOzV3Z%2^? z{4F;2uTMJL;ZwjO&fN0^eTBSV#x>Q{Zq7>{m!k(d!kTj?tAhn9NygG1;>MCoZ17mBR>3Hb~nz23`8^#zY=>Wwa!eXoVL}xDd0eL?B zIwtKDer+sIG%S7tEBIpQrc;@tkA7+>f3f626XZ$xkcHd#rLVR9Zm78W%?(YLF=JR_ zy#EuGgCpI~X6t=#)&sn79gT)YkS^sgVcoytQOZe`(bu#gn1l=JGLsbX^X6S#-iPN5 zh$_dZH%zFvy8J~GJoZqD_=Ba{DlB7AnD@o%q?|{SSM&VU@x( ziE9_ZbELF*+0^`27w21xf!XOkPPu^KMa`QX+%k7sz`v`#YBQ~@#>d*&vJ4x{H^hfT ztvMOCy10eScf{=!#?51Nc1L;!S4&2@)4i?9!tkLsslUKprv1V<=El(aH32?N5q#r> z<#_?{`!j^B;5ab;^XE8slN+Wz@}@|Z$)3rz4V#~Fz|8X^M{G$OZZu-cyABIxeV%-W zETQOMDg5CkPqh$OCO-&2N%up|qgeX%{pZ_&+k6CH`;hnm)oh`9?673GdSGB-H@}rL zHmTVy>@!*@lvTOuUX;2!+Nfqe<57sq@}B(IIc1Kt@}{MW3NNV=yMm6ecDG!I+c~z{ttkKAhQ<8gmdHI3?eCGmdqP4jYyQ(`M-)3c`7I1M-va@R=DoVsE+X)?Ly7W7dn4VfVWui@8kj&aT#b<`#C z%;zy_Z^bF2sBs@Sm`&4lfE0(EbrfdjqHdGdLOHaXmjn2RHYsXpVtcL`b6!)No;OJ}HTsU|E@V9px4*}H6z&9A7~rAHt(l!p z@8p^;Wa*>6{VqHt|L8W_NXo5;u2+XV#+68#!v+^kQKN8$h^m?8?56y}@XDwySq?w! zt4fH^!qe>?xiOkTJC#$e!MJKq9!J%dYtYS-mhf-TSwQNz=)HIbEl~WLT*6NQs>O>7 zMNJbuzDf<4_JLhkD@*5Wj%xh!$q$ zQdtY(;wxn%8L=ylr#|hslDh2xh*0E)Npez_M$rEG5>0g>IdNy5f9+<4STv+$_1 zY@e!+4n*#TLZ1vcM>tLlpN!Z@{mt*?MW#nDZn2Vo2Tt=GGzZ+TW>3mrzQtN zT-J5_LFn4gswbWK?S~-Q>f9Z=Z>>&*KK*?H$gsvHG;WQkC)G=H^#mz0x#5++^wyJ2 z_l}-wj<7jJG%x#on2qHS4`YyXh|p5TVmf?oq+`VJ*q5Tvox=oT{e(qX4W(|hZ3lB$ z23$f%_#gNu>Jg=V-LzvKrRUtls-?1S$YQ1%+hds&t z-U$95;s&!D{i+erMhlP>FdlGx;yD>_`%$wf#{q8s%i04&pe;SzcL>*^&Q_?F9&l!>mjjQb*4R;{pUvoIQ@*~T)%YB?7qsV}%D&+> z(z=)Nq@IV#_qlgqrq{xMCNJ=#%$JCFa8G98&4m2INIjyezK&3P06K{MXNAumxK1P6d#i;Zzq5lv6Qk;VudZJ`mzD;6frFtku0#BPpb^l zsUteSIXWT^6_$cZZCI{Mq4jX>CDvDs*}tk-J8HwE^C>*7=FfpGcT9g+cRW^ngF)x@ zs}cT+1|_oGej#h`kk3+^MmD0xL%%OjhISgyDj?BX^Tb)VBLrXlz%vA>jEU{1{>X-7 zg4RD_U3l^(nr4J;L)oOKBT!C7M7^+$XY3SdX9^#eGoE)GZ794af#BIX^0k62&%oaC znw{Qs(o1ta{u7cCbm`B@g-#o{LkFr3M9ENpJrKY6%*meA*<3<-Lh7?wO$XrJ_g4QF zw%UK|iN~_Y173|Si(1CN)CQjTy5S%9bU=DuP=x}g#j_^PxYey62Z#b7Y0sN)p z30{{L&nV+wyDeRlS>CFG;m-DZq3SpcuUr4f<9XNM(HLNaWWzZ zv+S^H2r}SxmdDL(sW*>%atv{=#6kZ)39pLJRd&1B7KmQ4evbQOM|oMw+)R1tS24c0 z7Q-;>JEIij3NbAJ-Kc!UX+NC97OM=lIfX>Uj@lNkp8!Y20>cO&YTx5sHX?1-xZ_o~z5b-oN zZpLgTMX)rBCI6#AJ3J~^M0fp9dfXC{-ZlfOy&Hr3yJ7p?%TWmbx{iU-krtw4xjHiZ zD{4#1O!=Yk+V@*E^X4n_tgkuO_p`45-UolNekDhYxAx`zdODaq>l_N0VPpVW6YL$%d!)7q{dJu${{O04pIpb%v78ZhB(O2i@@ zLr)mcZdvbU5*?jQ+KjDKF;;m?$h)|!f)49;8lYG>az%Q$@yCixZXm80FvxjKxjrx? z-7;G&YEWSj*J{E_SAxQ0plbT%!v^cs{giW;bDrtr$zLOTX2HX?YawKo7n$bNQ+R>t zrwOxEL?{@^>;oee`M1x%kR%T5z~WY`89G+@)O!ULQNCg_=YON2pLkmNz^UE{*FU`3 zcUfjJyoqXhtP!T@&hk_BW#4Flvn}UhNemXT#%1CiGj5&p%M8G;vyf$th`MD_6qKa1j3iXV%Q1zvr17s*_ENqQC zpWKLL<&s<=R-|N!j&zSznr*Vy9eVeW;E_Wv-z<-*wJ~<-KC@Id?3Z+t-9HCM*tCJY zwf9(fidelAp|D~5MSPy_fT&3FbsMscbUBHBWG{~^r`NREwjZ}l{5tvGG~)-t^b2Zl z#78N}5BhEOUli{#;A<7-1aPQMNC`^-IU^~kiKi_S4Uk3f)J|Y}i@fg%_p`#x_W+m$ zb>|EB%29)_#7tdj?zD3{d;z)@=g9fH`DZpIQA~~J*nkdtyz&s4Zr(7fl*szan`wzq zX|F|Ci(bug0*V$3|=af|ZqH5YOPttMsM%(_bEVsq*g`WQ%)- zPLh)c#+xF7V4rvel^EOCIl`mU?V^i^8aV%cg^>({&(YP_E@AhZj94`mYEw14ct8Ha zwf>~JA&r@S+2f9@xC&5BqyK{0hJ#EljhbM#bWf0F|KBVld;`$7w$_6CerBxj4rW!Y za>z(nDK&E$k>)Xtj2temTpD;#Q!tKlnnw)<^`b+t0*}CnFBoP`7ZoG=!vFJm>4zFI zVd?K+{Y8~UJ(o=COcZU%)OF`-o9FV?H>|V`iD!$05+V<-&Rnd-#`%>1w=Tp#Jn=I1 z^6qiNYD9KnSzN|Ot77b$19*3iv$ZRA{zJZD7h0121D*=69y67L z#P*fG29d!IMuG(X|4JhTkFy-^)!56{G}x?4*oCb&-5*~JaPeBui{Di(y+q&G7Z5B| z?a#c+v5-8m2Yg4$?Ug9-6pU=av!p&SlX9{Y>mTRc-!HD%75S%ZLrs<=x8Sr!=>V_{ zLN=~FHE{_*97epYvY4%2*Ps!~R?wHRxy>DaueCM2JSE*9fxoQv9-L}V)+`HHzxjz& zSpev!KkffJ!g1vOU~>jt+at5;Igo?*9*Z!qmpumR?&SE~)*K!B!X8#b-iEIN6=eh( zG^1?xiBoJ7@GWtrLg+@&_*lChm|X$L{(~5jH$mnt1^P6_ap z=PN>ZL(7xMW1alcD`fb7FCQ%uTzDId>-zN=tBHL6wBb4x=-b25cf_v)QGCzPZ1qGT994W zWt?^a9!zPAR<6pefi$is<6B+E)(~=3bGGr3&-}T2F~mB~zcp`!Zcgg+(}m#pM} zb(XWU>E;J2_*e+&E$}q_JZPQDzl@)30W`|nPCmNXK-~teZ<|S^&r}Su5>iNr%NGJ( zp9xT3c*zlw9Y_QLe~ZCUiXkLVaW>V)15j|wgk~=&T5QPjEJ+^89@YQf9t_>>!CWo!AbXd9f<8tcvH@)KA zHa3)Uv7N2*FJp$_GrznOJQT)LYAyr%<%K&KB?dBx3IlF(tXi1+4G$8tqXZ5TJOs>} zlx;U1N5Skl_qZN1__8Gq9IPJX5Ppz59@K^zYp^1x+_+30y60}R-Y}*WgwIS#_Z7_y z=76sVlBCjaAj&)BUKfZ>?Q&{dUktqYb?I?o)?vJpFzG$1J|jrn)>`nqS{}KSNKsM3 zpYgu4SZ6@4YuI)jBY!o5!_zy=xwQ8%XWkDOvYQnITANi2^!oxNP@Aq`HDOnyFG=5@ zJe?FAwpV(uL85o{ZAO!&$LY1{GR922$`ciQR)BpPKRb0{yaZ~_ovjXnx!XJqJ8!C! z^vH7CQiMFU)}z8O%gL|&o}-QWJ!)h>a_RY2=FMKdUdwRio)2LyrTpBbhKFeAww>oA zv_he2#Ex#*X&MXjAA5kzeC4r7TPEyTK#R(Mc{e=rm>`l+g2Q70{6By4?JZP*0@s;K z<@>uYnNX^w-lt1Rr@ zrJ9-@!Y;{t=hMPlOO^-f8puIh?BSBNSx>t@|To#k1t z&FJ_6bD3)>GbOX769bwi!dx&he>>N4n_vd{{oJe>vhL?gljv!izE7lu6Kj$Rv5IYJ zrs`Z#SI(h&&jM>Kb~%+(7?wiWjrqiNn!KE3nLoJYp-QOP(*@hxrzSJ6yJTs$;Ep|I zPfpZ@L=P?2|2dP7Vg`H+jK`iOr8Hc_YA#;L114KOJW(bxc;w-6ZZm&T;dS!S*8}sG zduNKZ*ahNi%a9i~?|ahgucCt1Q%F%}S7Wm}gK$mvX90C2>e;?ARm!djqQrR9mwbGm z8kqMH`T4VUge^aCQ$6F0&rxCg=-9^7>;tRjs+)N}I^wWxL&GtX73L}?Y&$0Z-K>fVqu53o?xj@Ihl9oeY1=< zbPOL5z9h{eHDDup5H>hPC*cbUgfZU2L|3@pM*dp0 z$deyc{|UHccnDnWxEyMIb21}mvSrNlG}Uxb!N}v**$9#Xrn4THai?kxFhJZg+=#^= zvOivc1Gdcma%FuSPuG47%Te3Tu&LE{UO1eMlnWaMG$DHJx86rNZS0FYp00{YLk(2| zpLsY?ugjIpgH0aTa>I9Ty|plVWA{nb@}n0ZU@xQ~H1_#w|LrnJ58qF)VV(T-#@aZOi0)OjDb?}b=IN^i9}jw=NB?{#o>A6a%WJAbRF1lO;r3V3{M!0fz0u)HqVV0&9@k zhL6GOA~3ovjtOYvdTtjhtwsWV2EZl3c+lL_Q?NXi;>$(g!zP!R4~BSE&BFxB#2?Xx z6?m(iPt$AnwFj$V6fg8asiuv@L!vIdv`fUVBhqJK&nH#;I}KWZZw;%~Bb%MqWqGnz z^G2DSTEd);%u1aWyyPG`e8YU6f5-kXVuHDIYnV!IWNx>T=EFtudyKbpA8adtNyiZS zpS1+uxqz4L0dD|RlDF+k6$nq?HwEdvY<|{e&(=_3+}+Avze;PlMxFx22%jsH3c1Xc zAKC648Iul?*;ty7;K?dQeM4_|4=L_DAPatWn;q*2CjEu<7; z71&31JBb%SGS=Y2=jp=Ur=g7b{}>_k&>-ZdUvfOmd_YNd-JP|ACNYaPl>bV0bGRDak-B#tx#?nV z=v2%Z)RmLJeLd(lcDp@*x-3T);@^S359s9+tq4XL^uzET-oYSHVQPZ+THk9sfDxE| zuMQItV1(VE4Pwj7mXY;S zoZ6U^oLbn{KgDJBavwy1Cs@nEj#-RWWVmFEZf5|(Hv9A|jrfm_n8lSLo~#z47Vv|z z#|ei?i&4ZA^dn+LcubplRW!(n~$=^+e5qdc3jS7yNzdT}?*m53>tH zfAPg=Lqra!Y|5a63^4!}edS&u1W!m#7j0?u0%wY0cfoc?+ZX zN5k<^Ut*iwVaVwHtE#xln2p)7;bIc~MG*F7+)1Rl&xBegb!-X+)S!jR(VxMsOW#Z7QS?nK})jZS| zD!#*60If;@NNBUyYWh-+l~Ge6Z-pqII&)T6^?zSZdqTIxZ#| zI?=n^?4szaqGiJ?(UaEt8h{RWSo%c3Uf#Q}8_nWpqQc$mbd+tLd`y4pHResXjzHh6 zrtWD7Cs_llat7c=Es_6ewy!cD*iV93 zdPHlxU=A7omN1^(#hcldZ>zY2xkD2De1sihC2vF0FxmME^%ikAu42*F9KFU>3N$cO z10t`Q-hc?SgPOm_ms}G11@NR!OSgi49{Dv8O?mZneB^46Nv|5ZOEAVE+!Y-EIlzCG z6}oZE0aHvH;kCIKUfQ+iUCqHKW|qC)Q-tY4N6@~K>8qkQcSh|$(#{Wu8*GZMBvMD< zUubM|nWdi|)pieyMFD;3o;Bx&L&dM+TJK`7p`8z)Ke|51-whscTT9q5lnyy5c*1?+ ziN1G0ytDyFkg0Ro8owVZ6Zt?nn@gC`Bg&)P5KgieXTH2Y7P>v@)3kHZ;vuxSj9#bK zjBH6?q>GCn^FQ(eas9D+Pisg`o-gX!Bc*13W}3^qYz7vKnxr=8r3ETmjZG-lde>0$ z2c^zff8XpqiNuE@WB68*F|k?%*?K5vW8gvk&ItT7EfKw5f09RSt*zCe4}}lvxd-VN zv97c%tF9*OCqKKkMmZwqNXUC$mRb(oJd8Vq`wc1DGze;lbFM-|N&Q^TrvZSULg=Z2ZW{sy)_9Bn_ zYexh?dJir*bB}C2Uf{P7omdfaV;PKEuNFd0!w<~eX*OZlr~dZ#KXPZlyY5g^_FB2m z*vxRD#sbG3nx>C_{6C;BJ#71)fsI8_Krf^PuSe&Q)2^ij`1nz3^+(!;&2_h0+fmM6hg&hL+7<8!)r>Z)BaQROvDj{ieaTF_=A!XrZQ)}*3%-^ zfev_v62kXwJqNrL>2ii&E$zz%kAVHO1S?Ktbzq2(R&8qFvzQa({&w7=P@Gb~xNrca zH<#(823gwy-vFvkQm}scWfACiaf$)TSAm7BvMMMcuEYK*XGmE(TO}4uaPPP_CYvr) zkC>2b?p#K%H2UT?T}?8P_Y7N4%-JMvI9yphW0FfPOu>;)_hHl_UD`RcYhX8Jvyxu6 zQ#5Mot!T@4Y2KRWE6)r+&%b>!h~$!3co+F(6rv-5=?EGnMHiKjhgpVnJ6-N08R)Ea zEz+w9)^l4}H2U-l4q3#&dD+#%hIwvh*$_=ZbyJdHA6_jiES5N9i_?a;T&CXLynwIt z|0JvV;s_L-344$`vIn>RJzw)+&qJhgH;))2+BB}~d!JVWl|e3iD7D0U&Wx!N;bDSy z+$W*Q3ms~WQpibwsa=xENPL+AYL6?LehoakG$)t+&xc{{68aBcQ=@SF36NL4ah%@07oG_2cq#Y|PzCO! zQ!{iJfYn3bjgHgJgC-+DqPZ#74KkQ%y7x?ex|WG75?%Ng{NFvx&5+sjML}1j1vq^x ztqmuck9;A5E^glk#Xpyo9YD`SRTiQf@=G%TUgvw&lyz@Ybs{;~iT-YHfMMm1bMV17 z*L#vKlq!jkZ8P^9=LyXEYe@KK>MumU^@Y9gtrs(krZsw-LE1E2EGg_YYq(tXImKZU z&YS=wxqbK*cDw_qU;01n3^iqJz-L_k3#UPxLaK32$dj?=2ygpDhItUnX&ST#kGyO!a8M!pLgBx{Nr0Da7B1a#hWHP?-s*1n~WkGH-Ok@$Dx+|vG z*`^IgD!gNSu5On7d!6OH7vd^uG|qjQyu5!H2~%#o$7NKNd1vUwFsZidgSNFwLYR_rLUcyH_#yh#Q6oP`K`A~N#%a?n9CU3L6m{_?)|{IK5>;GhA_v*}sm zUZrBh;bmt%n#~{=d{|lFeKy{TYZhlE0Ja;C0^&OZIo=$pMa?_C^jl_juZiqTSnX~! zpmsDA{A6ZsfxT&pP#8Vh87Q``{0a5aii;DZ8jJ30iyCu$vsegBJlcM#(11nuQF$P; z;#Tgz#VTF_uQd~X9T3N4>AXHezFlf*nkv5NfG$D2&NHz^n7v1w-VK^vs*5gk4CD&E zp_TrW09Xe{|_Pgl8EgH#yG59@k0uk(^iAcqhKQ%}`Ft2JJ4`It)%)`aYvx z2`)0DrI1BAZKp&}$$N3W#EF{6{eItTIflYB#4+Q#S@A8S^)b6n!O^<5A{vMIh(`>SDzW%9T)3}%zgv^bm_RH2>3S?H=5yu{CU<_J}RK^ zy7VA#Up5`NmN2a+i(Kt&D;T?f>a&JuZq$YGBQh=(>MWRx{;>d7rk>;O_cDAZ4w6;#Or|h?5#Iz&!HuBA0Uh;*&x;hv8{~^;3uNE*f zWUA@$vq{;*DCFj;B}wR^Qcn)o*KF3GY^d@Mg1EJ?t29G5;D0lnB+fZX?2YL+l=rAd zh>?_9DIyq@gukXQR)Q)vY`@GLMF=$Cqmhr@J2PcX?l8PLlm4ZXjL2OPV|D`4T0mUt z7q!5J(S|m?gS#Bwk;2iOA4zSg$ZJhj40V&}M=-ekVfiYHg((;!uBzk28K_0JQXH}& z=Tg?qJh{HGwlaivpia_xk`F4C`aHAtOHU#_;zNxtHV5gDp3;~Na$PXgB}Dc49f~+? z?CFz&CV~;-9c8Iqya_E_vVR&7rOstQ-j=yB{C4A7GBf}Myv-dE^u|bA`2809`)j`B z`6qGPAM1Q`k}ceHnW_LG@77jgfVzK=|FtX+hlM&1H(7RO7Uc4Y`}T~RI2qv$b?KUY zbPu1D*t&LnCrcDhj!cZag$!Ic;gt|@68Uziu1AMe`OL?5*||Q0sd}3xfTb&!mDr%C z#$A4I7D8+sRIE6pAK*qFsd;-I&Ha|W2@5{qe!OwyW9l!l=`-=D@y>C){yNB+Yq1dG zr5LuutUqGv828pN(uFDU=viasq;ExuuZlDAL5bb;ZAGK=#dJ_l6>K%2HO|@HFq1Ov z@OLe+qd6miN@@ca9!4R7^oBC^oc`Gxvln{9s&>0cOPhd-PjVoi-UGHiHgdb9~*b zIBWyvbr+khgGR#U15DqAdV1G*bk^7Hg4$9iMjpZl$*!cU<`(1n<=L=gow5gk#JA~JnWgZvf4ue5YWl0B{PW&GPoYxRM zF8?X0@mNUHUZIEl%Ik6s%t7c~Q=&ORGF4L(-FQf1K=Pa_=HD%bo*)}`Ry;q3ha&># zTW&8$Io&`UDBQ{VDT>w&HyI0;hvonc<_|>iGbd%?~Luo+6dQ~9Mb~&k!5+l9tN+2Zmmis z`TrNxxCHHLmw9d=3^#+GtZ$`M9}T%)q5c0TI@5TlyFQHHZMUQ-Dk)1*RLZ21-4vk` zlO$QjC`ky}4YS-Wl4MJEW|EM-LbA+E_T7+W>=QE#2E*+8Jf7G87ymcsbIx^s=X+h3 zVm=!9QW!K+{hs|1USIQI#pMlp<`p7Qcn_aUU|X%M!J5r3<_MiY->|WN#ESe@Kze&8 z2Jbg6)$xOtYlq04_(9`-SJ(-BB0)Y137$@1-J0!M>2h#&w(k59VBV&i5F?3J1=hmG zoR12d53S0z#voiHE+uMx#+#08B|sM-rbUzChERvyJxU zb!i)c89uYexxcXF;YnF!xPF)=_LJ)1Mfy{(hiKP5B19HLVnu6s!(JGFWu@VS?ZaMN z1yhU0^v0OcFGXIa{0X-uk^W$Gt(^aMq88}08piIRnZ{n=XQ=uP?nBq3ka)=zmZ3bq z0JaYJJqsz?6lK>XQsZeCd3o@M>PX97U!mtX$MoC_KO0a)?~!A$@$cIf;g+k48smV= zv}ZcJe;9v;r=$%MSBeh|HaOShsTPR| zJw^K_k7neH5pB+8#JBWDccEBM2f`@jABm9cNNc^Wx;P;C{SzneU>p7J(L7Rb24u(y zW?=u}I{+AckKk#(vwJ(PiI!Rk*=*(7MxVTrm8D&J#Kc9dyV1cPDZZ+*EQ+*775}nC zp5zPm>^ZYiT)=BrV3?EEc|g_v>IxR_GSG}h_?0LRCJt^xcW|8cTgzL?t&yVrvBPu($A^rxyQH*QX-Fv;qrAs53gu7J*)Oc(Py^*~WZ;(uKt3=~%1&2I4!1txzRUZ(f8Wp3qlv2KUfE6P`K6k)8Z;=K}ay%y11Q6yBoHV|R;F{z|0|I9{7 z*&GO1nAa;&tAw)Ds+4~|h9$ygYhueEnLyf!^Dmulm$!0O&F#!IA3ZV)W_i~@I;tKz z=f{EQLhs+FC6t>LoSOmdATK$WL9JAG(Rr47`FFBzWl|X*`FHFFg5%Xr! zBan#6aJJJD}YG z_qTi(_|40FU`OPYsGb-=T73A?C~Db8&KY^r+?kvxxS|K3|Fat4D$(o}i$;nLfDg4D z7>U0<$8&n*Z5W#M0;SD94s_kY2Jm)dQP>yHL5?G@NZJ0F zVbF=--orv%u+6%JOT;z;H8%rdcKFTuToxh3wR7avbS@N?5IUl-m zm1u3!TG&;Wuo>G)Y!)A__uVCyE#zKG$!TyXoIHtzw)4Lm6 z9-7ZxbJmK7U;~>>ves zWFXoSkS7sdY+y2ks0ci${f@Y~bG}~?rxyKeH=p(bOy_4qc-9 z&c%2*3KWnWLtIGe!^>?pR(4BZAhGu+Be7ts!Q&wFP1)}^?IHAl_dPnf*=Ks4a z7o`-s=)2m8zc^ruq9ErKf9=IsSujs}`+@D~H(|Ye8GBri3JGz95n{O2#Usf6OvwBV zn`mv~-lGCPBz@LHB#aJv-~NnLEfhadSfA=($yLurlhg`Dw=qsq%-q++`H(+J-xcFh zx%!*S6_1-dd*d9I&Xd-v&QOib!B?w5iN=iAIy;fcEI<7WgRsWD@(_HzJVib_j(4TF z&DX)Rzu-mHseqOY+v)xTgRiQ06#&+EF7W2w<8A9TUaTNLM@3h37Bi!h&uBd^RSkT~ z`??ids%;NUMlVP?Vl&`j>Vn78d`H%$Ggg6@c3{}P>`SrmszZ!WDJCp+@Q^F1mp&oY z7%cgReN&CIHX_K6_F3h))Ol$zkS7>TS3)n8vp$Ve7`5)Y67Sb5X}rpgHprn($x4Wu z$Xl5`ckse{l$HbIqpZl28(fi5Bz$my-hPmqez)U{Iq*x1wO2F#v4zu*W&H7|4d?27 zwQR_1(dXn%{x;Y)IO`Ns68A$~VZL$#V%Nm={vkdu%-B(!0(|_U4@udUFZEsLhkKq> zOro)*jkftjI9k^eHsEirU!nMQm~UzTTB_E&ItKZw06lM($^zfQ#yuE58l*hdJ9U2+ z0DZPcx!d{@X~rn1oP{BmIZwJ&+I%k@D3(B*2S;OTO&?BE6cxc*6pKbOmKnRi8>^v> z%Xwj>K7Y{Cg1K*y)Tk5IULDvPT$Eys47k7!n*$v z&azv?BDF(8Z(=_&QT@5O*48TwOY`A$pOP&=aea(gb2f`jKhY#a6px^_a?02Apo(|I zOeq7*sUuno2rK>UAn=J`#{Pbb7!`&mIfn5V{rtyY>XTs{>91fwUCt4>`mlPgPA*0c ze-MF3#Wh_;TmnJnQ}M5GE;@pDf!I|AtZa+a8+_4hD3IJD<2mTh?Nzwn&g1EFT5xJT zzX+a9ITxyMsX>HaZi4wRO=1zL7*QiF&_?9XomePPG}8zyudfR965)TVg(`-AH)EdL zDU$gfV10Jxl`OHDfBMD1f;tV;!Z%2RHf9DLwQlkODiv?sXH)ledG!~fE2_H`9noS{ zP0;}lTw=vxgkh62euLjQ!rP~&e7l^pobSn-FSdX6Z?`g?5ZpVSyok}Y>SyJ;z>rby}%GC;FxG_9+E zlcGk2&zGqsQ(+cwlX@NDK!Mv~!EpVm9IeGVZ#Sm#Ejz8oSl0}BfHz&aL&f!VZtYRt zQyG3@T3gWNbg1`2aslR>1&tlfiT$>bM_HmuL4*7ty?I`|hI9E;Y>%EI_7UFxFyzd_5ik@@nOStVr`+RE^#BGx$LCGqZjnW zKkwxKX$)*ZC^O$5IXN2}kj_bae*jVS3m_yue5rv?7I@a~w5e0w10f8a0`dCbgyGI< zv?C~EP@o?+@glonz&j`Wlp6iUKO+CzB2mgK^QAKmpIQ&Bb{ycAo0DVj4p2Ob<E3njJCoPvp^b@{r?mi017vD2ueom)@H)^*nwch3Hzj0HE_MjQO zf`=-?DC~(Mgh>~6&fDbDxc*3>Rt`_0eqv;Jg)8+7_`Ldzx9@DeI{9`*=Q72pg7yg^ zXD_Z(+}r9D#Z|LUbAV#`qW&jp+Cvh(DRR}8lQaOh-PGh&WG!rQX0)r~s5kZeg@su2 zS(3@)QEqqsqQ|5QDBM)&eFC-+*GI_Ss35G zvjV^6QFDnW!KRUWXGy%KE_q^ixKBl$Y383bIO=E|gF0*yd{4OyavzYmPwGp@cPk`B zxsh-8QACE&b4RvMKrY(tZ=lUI9jmv%YPg*fMAu+e{R&yQ?}#4I)Q`9tnWQ&Kzg)2d z$x%MGZiu0Fk|RhIRNhL6Cf{0BNZhdhUMHK5K-^9A4o&?Tfq9=1_H}iNogdu9FZ_YC ziZ0Oa-tw^5m7n1!CwuU1FRsg&BjZVJ>O;jJ-_O_Ag5HuCVyhsg-bY$@lLZR**S`7c zoeP2^^~mKLb5gkgGUkP~T!6qqC{U6l^W-ru1F^+2=sSb^vGd_`3K#XIfeKkIuy+sj zN4G91@U!jzdc0Y-PW~Dg9L3|$4%!x(Ig%DW4|++~G$9A_o_;2k3JQ2rmx(!(QVOu0 z2$`6!L#;7(MotyC_)4pXY9%YbgjaO*SrlNI!`Q$@o`s6!evv90a=i>%&-_WSHX8IPZU$7RIRmY-V znmqB`*;*Kk3p*5^yD&8$>{fP4!g(>@M*O{0K6bb8EDF@G5ATBVI%IWYb!;+Gm+Rf%gT^>wbr>K zKL>_Y1nW&~a%A*fa6Q7y6-u*^t9wh5IzQR*efbSzK5`}Vl4TKx(wg&9RdhlG%JNLAp zz3>yHBbAy0=b=Xv-o2G+@E*>)K5d}z{zKG;b$hj!*+IAS0)KbK3F6@hYuR;mMxWum zNm)V2(o-Mr#V+hB^ufAz_UX>ymF~^wm3_vv>WdIM?sXDXgHRXcJ~J>VVI!*Fa$WYhn1*}TzP8r3X2&kafEHC<}N0i<&dg-mjl$abF0n-hW_U(Zp z8~)Cl@UT2&D#!bBDipi!?h_qw9r5cXgZ)Wys+EgBD5~|o6dL?*ROYtT9Hk`e9tdvoebIwsYS{#yEW;h*bVh7d>`^WbIEJ_ z8uB_Kjd3bI21`D4$7#;2dHz49#p$yo6#Ji0&$mrl5vBxqeBP=@eZWk`MOho-M?uBP zV1@BQL;Zo~jj~|y$>T!T*#vW7&w!cTm`~RGh?!CI&auTk>CA8Kl>U$k^RF zrjCQ9GI=*MD2cWu1a`5I0e{q@m7b@8*LFEUSSz2oGr28aYvNc;;^V`)XGOu=!{huW zDB^@!3HbR*!NQp~!aZ+y<`c;l^=_EQ8;TPY{e|dm-4 zw{mYPtmadaDGTpUy_soI{Vj$YvfsykvZi!}ly7c5yMNX)JcNnXpXC^dkDxClX(1nv z2b!7=_C8A$oLkv%fWAfyAY-AcoYDMOp4?eBjON7+>a#@Rj$q7~7lpY?Ct7LwAcRW2 z_^Ht63Ijvgz|r6$xj82bC3Ejr)r0!zQ^6qS<@`=NseJ2tz}x9+(y1(3#pf+B(*Lph z6O~h)@DML|+~&Jg2x{LCG}yq3T|s@*D}*nHEwYZi)P@JcX>wj@zm>~rVWxN4AmYLg zyyXv|pLwU49!#a6RqVaQ2xKaS|9ECPGEd}rBn~#ADPZU7P_MvVfT!- z8#O)vUi$7Z`yy}c`I!HCXAV|bSd`d_n+J>=kH{sG!bM5R`fam+FaOpdUy~SFjfMS% zu3k0mwh@@{M~`wP=PmJ3k|^QpPfq?DoL?U}VpeOUxZw%@A?0g4oV0t=YkcN#H7#)w zYXLO*7CJArdZ~I&AS7jlrTw1#uA)6q&qSS~bz@xzk_t^1%;#uEp$CUnEXm<1rb`xTJ|N-|=S5En)dOL%2*x&_Dg17vGF3fl-PiarI&jv3 zJK_xK!5%)QDR@wRgRL)6pHM8Y?h*6(-z%=qo-uUoSkUo7Ui<=Ao+?j)*EJh&!iQ9a zHOffZoo0ukpQ)REq1b82dBpT=YVbql-isIKJJA)Rx`_^;R5t5XLmOVQR!|u%{=#LU zH1!s+-RI{CQ%U}*90PpBThdRPop^)pcO-o^lw|l94r*I&+XUwm7a|8ZbW?AZseU5( z9VxgG?%No?Ilz{v~?~$x~8CTJNz;dJIZ~9_&wJW%2$ET{ckaocD{d z`xlfBo$`%;?~TcLofKc#Ws*eRjr7K6Y=+JrH0-!^pKF4={T!S!O?jUl?(09-st(^} z4LdG$;~t+Y`vFMa><>I4v|sU1BD`M>d5kjE=8mZ571VtI$h_I)k5f(;t3?*Rr)E`kb~a;I z^SHkzLehJMhAzzWY;C7K_Z#ms0S+16AyOkgqErN8(6O@%?ti$8Cywpq5*x2}aGE2? z&_LT19>G7piQqX0P;SFET&1ecA%~Pi-T)yC=dA|Zh2#1q*P&ilx!jI6Vt$qm9$07r zJ?Py9cbba`tr_z=4vey1(PADqBL~r!i6;f+rf8Fa1HucpzLkx3620E`b+*LEs2(ob z^8~#G>Q+>&#%39NNxHzN2^nF{s#k6=B{?1^c)I~QO)0%ivRI8^n{9}1Si6^ACRz+P zA3Zf>=25Rx8|SgAF@avWY^09GA^GWU z-UY=z^|mO7E7q0q&r(@>1wYHnWX~sOTn0T<4?G?f)L2#mj2Mw@mqhe;E)7w;1Ldzt z*7rjWwP7oQ0#k-`FhI77D`Rh1(6V5LjgBfpzO|;F*)(+_+$5D=rj<@E>m}Y=Gp`>X zaxheFtyIXbfL`l-I&+8JZrP<>GM@LtSsyXELaRqnJ3T;7NWug+>{*d0V&icqv$|=g zs9De@9n-}q#(MTk|Evs}km4dQf0>m=5Yy#Ezt3_P%Z9wk)@2{_dL~cP&HuVDSt7~h zHcOp|5r2c-k~F2ItQB>ji7b(?9_)Ms`czp!^67#^w9r=H*okbGQUX&qYUdUPlQdq_ zBBh`7m>v5nW4g);YZ|yA`fJBDCD#R>@kfGvti9ufbJ2Fp zf)~TslDnk!GM!L>mO3mr9mH)P*Cc;3+~7$LBFy}g2Nzzdm~%n~tkkA<@OdiCXhm@- zZI1~5YbS;l{ZgD2Y!7NR+yIciqP!W%$rNRe?e5B7;% zBqxxT{ot6jQ7Tjjmp4qC4{T#6wGTpgpu@NZKZ2in?;A;W|_TI$$6_mJ>X*RL+ zLUvBHt4$*muI_^b$Q_%A;ax<<3FYY zP_EuU+q%PVMEXs)lYDQG0&_}h9=Gm^KE`V(snQS+U5eS7ade6gvp+lJx9a7$LgK`y zuN=ZL)#kJzC(T$sOv91DAMqsxLbB?r^=Hm$mA83cx3N#62NT{;m`nNU9fB4a38%)S zVzBQ;QsJ}b)r%WKF}{+z_M(W8MYR#C+yPe zK-XFqRJF!wJU+2o1kTZ*xoaAH_i8N#OSv&3&XlUXU34%QzuDpy;kzf#-Ai5rjt?732f|b<#KSlzOBU)6!oI{4Rar7}g{cM;&R3iEH8#GLjtMpog03$hCi( zN{<4|Seo)-P@Ri-SKmMjfcz9_1U4~ns0gO0g7CPIBs_y4Pnh>dqa5@$@cdz;NcJ5C zQ$prf-aUDiU8a8eWQK7LU)r+2IuPvjc`-!{={$+dX!{~u=SjkhB!us!N&2Es(9P04 znuKWiGI?J!OHhbn163kQ5+f@JPFDhGnOBC}LWOQeNt9r{HBY@HE%60QuHryMyCvoY zdVRYvIQ@fK#oNfQDclHyHYy?x`KIG$+K1xOSs|t%DRRJ5@yOGwtYt7l z8FAuOoYwMxxXz3=Noe7$lM?SG>ZF+LGjB_OE6ME>X~a>EzDD1WTSuzk$adTuR<-;1?$J5B1c>MteqY{rCS&hP}vX!$xV@c>Ng8GYk%P z?j*WuQFOO2A9#4!U6xJaDsufhBQvd(VbNX=K~=ez`@9Kz&p=fbYNY zthv7JRn%oXfOlDqB3w2JJVJz;5=(f@gGpY~Wg*z0HW+c|R(nK4q{^D>rjxM>uGz6K zb}x2o#})r(`9B3L3b2EG4L6)Iu$$nxr`GIaBZ>yFTsStluC;>qJGJ%=SBT;h#Gx?R zgBNKvs$1Vc5^@yikv!)Ze9V0)K+t>PA>IhLT@be@@poy)I&911O2V|SvC2$DgbHMZ zMHN)epFW^PA8H)Lj(g#zq+Y#D8KKNg?rBnET$FC9NuvOm{p}e2+^k8lg&^^S8S1}BeC|t<%{zVlCC3$jI3QGUzScNXmDNY z%m;cO3SBR%W&Z*8L*38MrnW{X_i{2$sErOAz3+M@vzVRPZZMWFpu=;H2qkMK#rm|hz7Y3Es^noilA%l_F}g3qDH1&v!7D(x=-(A>a$-t>L$DCb6-+0zR&U5bgkrv_V02! zAudMM*dFN2cuETVig0(~+@?M%HA%fnkL3QFB}nQwTWr=*eJG({!=JCssJpOGxt%T8 zI340{KxkOHuBC`sVs|Ds7C;@{SS6S328Q^W8>7(di0dLq8bsOM@b)^OGSY(?KIhkK z-S0~3_|_39d$IHUXHh?twn5kZ$}p`9{>pl|6_+lhfPb(D{UyxjTm?W*W#9C}9?`p9 zCsKh9#!kEIP4|hlti&jFRBDIFXWF|=By0AkH-s|l{b;{gKc2T$r>H8nJ~-XaigC** zq8m|$d6n`@5&tf|f`B{WW?cMNagvm+mrFkQ_X}o-(wH!s;ZI=DvBF7 z-4)<{oa^xNklS!)^T0Q%w>kKK1O+qEv?IG4?ohop^R7*Xq#W}cw-LRs>Hreodd+t?7t4U7CU-0;!0gl-SC+! z{|tk_3II`85+v;DXX~9 zRxw-zze640MY}R&9(ZprMuyt(L}j5`9MYNn;7gE#8+w4XV!hwX?ek!~{0uO8SmP`{ z*7m(FkRT0nmD$>e_$C zeg71vGz^Y{EP84RMGu4;p0B{97{u7X1=fqG>F)65g@)|lx1&{C9>*oyO4fL9A(33n zUbwyb*u6g~P82GCM|yPC>pY0OjTgk;sMc#t=a1Pu9H0=I} zb4m9E&Uf|_Q}=s*k%{tvu08J}<;pO2x%+ab=~vcyJ^bVm2V`bcY`r^Xd^3cmA9PZ@ zJ!Watx&>lOFhO^Po$B&;sVi1stQ?s?t$q=?s^~=r8I1;Q(C#-74qEf3tof7d7Dv5UYIL=^S@& zzvQpd(-l{F#$iOk$d&JJDTEhhYaY1FdJi@B)X8-)KEsFZiW7RTsfFvUA>VZe8D16s z74vHwnT^tYU;p`DrbUYZlcRq?Iyp&7nF_K!UY-`!fw{RAM+~nML&2KvV-zWl%Tocy@ z!Ydf!6YtUjRfMAb^RR0c88bC`hA3&QX|D;bv3n$^e!&hu@xG3K^91cp zvUY9dUCRe5g1@IbO7w$2@s|$|&R)RtOJun<*cGP%m_b?)OG9n_zbc#?Szpjf_#pgr zqKYbpPnfYS>vEkY&^@mNUqSmV%;M*g$kxF9&Fj-2pt{uW++R3!tB{L|QY{|3k6W#8 z3wi%oNFh44FGMI3%lU+zz}ak4-LC;Ti5ItKtTC%DLizRV; z$>{S!|B942is+u&&-TW2sxh_xTUrUlc3m#*y71hq2$9kB8~Amq_Wjo@YI^_u>=>3x zrWyY&p16FlN^znQAih-Cq-D!+*9|o3iZ$edU(;?>MtFjK-K(A~Hav|3M$ZcY7SW%U z98K^|^-eVqL@YdO)AyxHSOvM2vF~G4EQ%fIESZ?GUhPs4l$xSX=7rtcTnBDZGbg33b)&L|A;@vB#mK%J;KE((=~+Ws`|wF zrrS)ZvAyg>@RxxScpA4ea-}>i2(0}y;$xU!KiEI-!a5_~;s5MI{$0uCWSubkwM}Kv zA^v`MP14#ijNwg++-{_Mig-Y9tU{Y37@3XAs*QjbbV%_&kiCmQj7AC4{eU@JrKIRu~NxjbHWW<2#4%>Gks8P+~8&Ji{xZWV=-i4+R%tpwVXKW!er4P!P{f4oy}*hfX%(cB=3=~SAYq`LQhe_>a`aNwa1#VbQpDV^ zkD6&?url0VsQxG&LlT5X#vAqQPTfYtKfsB|ouie(6^@ng{+=3_w~rhbUyOA!ehH&5 z&zdTTTqlm0;>G3SNp6^yFiJ-kovPch9H2 z0oAyW%_hDXOiz5lY`(x{UM?lcz4(yu{`osp)u*#1q0Gvol6;aXNiYhs7DbPsd!@4( z7LQe}suB2UrLjZ5BAuG5iVu8c^WLqP)&=#;)f(rf$ZskG0XcDQt+uxYR`k0uw?qH_51#jZ7Aqx;!q;co#B=>`7RQ8Yj zvZjWoBH!J6-KB7M_MtJ`ip zo96w!16vb!m8J+O{(9Ko7VFzghWP$SP~%71w=Rv^OwPxxdxkx^kg=a=vR~OsRHxOv z*#=xa5tz`*7{1o;I(tYmbyyiXJ#&G{zH8S8x;`jaR#+$NU3dBB0(ooMk7LD{1GyHFM+XgpphJVQxC0-={c(m^xFjG~mBed-!T&B7#Rmtjd^oAMY2yN0u>na0;_WYyOPb&<* zzi6B0MsqF_Pjmp>sGmgAyq8gob~Z)0f-Ep|l+ zBA9cbh*S`!^b5o|P>Sgr;{%k6#1;#_{oV^hu;=6Tdj=^_MS&IQZwGmolekIDMr46_ z%t-TmAN0cmC;zioYvXG}`=@$sd5hkxlY;E8>^<7UZu$WutV-yrNkC|OwIj zWyC_>)kEhC<2SB_dn>Yo;E=?6Z0$hu=Yf!Z?UjL7`C%7o%mlDet%pf?D@ff=_+1@> zS3#$Aeui`~j%@DRvFse*L@x7>3?qddU-ise0%?_cK6D?*;BQ#Js%%~?m9F) zxT*Qhl5X115a$wUte;acpw6Iybs^&yW|qKch{U1@_&w#n3(^6dYe1*NMZ#;Ly(H^* zwc29>hS?)pH;SG+bYIClzkjaT2GV>S#1U=n5Yt63|`G}`B&mv%-l>` z0G3kCBUHwtbOhZqnz*CKIyH5$!dnEP@9I(7(MrKgRJUsn=T~PlM4*S~{^O9CBpLx^ zhZV63)@C(J%`~pM`$S-FRk)_ufPWpQGv&FwM;XLtI>9sdgaMG3fpP~VqS@>AqFp9S{g)xhu1SZh zBTA=lBA+B&wx{-Wl(})=#wjTSnsG&$L4E~ceH)AfPdAPCIR4PVi;xdcI~~M!Xdf{V zloe%c?7=eHaBYR(G$BT<0{y+Y@#3Bz5Ydp}kYm;4pAqC~OwzIsnDyvU*g4v16{KRu z@MLZ*J5L9`IeJJagzQPfg|@Fj^8s1m%aLugGlAlotyH*g(eM2YDz*2GQY?dh zhv^k$rry(dr(u@HjsOGRKT4~jUJsi38D*dQllt!T7_KPbAj2+|QB~P!@Q!y(=iQ^u z+1i3}gWMzS&6dH)jD`&BprIh_X|r(T-GjKi6KggXzku~ZeGZoSr*LfREx$$jh)&Di z`p8B(XIKUW<$IjAe{SK#OB_5}kKnWDnB^0O5KP10j!#V-l<_gE?|#Ri0Rv^hq7~Xg zG_~l;+j*c}DiyNP8%C6z{blGlTP@Or+`87E0x7m|LTkzo`b>4E$Wfv6b8Z@&7`A)2_u9$8bgDjF$ubZ{?hZCu z`v4skI2oeu$+vqDAfGcwtrjhYtg^fZw2Q5EgYLfU%W)V;_$;wATrUgtJ?IAsdDGV^ zMJmVyL)P&?$I7w~$omIV$D|Jy;oYvim58-ZqUlW&_vKcsZQ! zeZ=mho@f%}V|c<;VP4SZ^7s#zb~sA1p|LG?v+Zveqvla{9dpj6|N5p?2C_tQi_(=+(~yt7n7 z_F3pfA@qY*YdvJJ`nkiwR$#9IpR$&`8U4fH9d7+39lVV0;;@fsi0%qg24A&(WE4Wmx+B93?FWhz(>Ajt*)<_ck~=bn zsL+IIeUCK#cdqO%VKz5=Fs)B+r&eYC^$zMz=c**pS>|U~YiH0+J#rJW%414@Cnsa~ zjA8hTzilBgvwNGap{Bes<;4#J_oygEWBz^wJT_IU1CK2Pxi{x)FJJ_e-Qdh&=dtBX zce+X{X#rcOlg5HDl=8iOOm%E-&RmY{=jf5SS)I~(yYHumSCx^)fxg{FxZqfiI$1gl zU(#lO?^I<+e4cpc{Mmm~al*n{biFqdZ7UU?c47Mi>U;G2n zl7>qYptpLu&q(l-za^NhB5f3{{uQF}0d^RfUS9XDmIQ3ch$foZEzUfdllxIAAC)@l z&W;8p4i@+(?aqtK4S6w`Rp%=$vPoy%{pPSJ2s3^>BYd7yp5(C7BLthdZjkX_s#-+N zBa~DYeZ=b`GVo?PPv|yU=7olh%9}lcFm^nxQyO!d3_AZgax=dFGxydl4QSQsEB4QT z^In+yX^eix0yOT@F3C_`TzPTx89Gu^FD*>;DHnfKgH!RdfU-6ZS!mG0rEsuDpB$Oo zuQmbie-iW)XT9aRpQ*GbhPn2NwwkrstNWEVnXDm31WpZ}sM1sl?Me2nE=s^$o1~1` zCd?0j$jAZ2eKEem&^SjD! zn4m@fvTg?|MD6b#78H!sv-;)?HBLz?DYxlSsO@=5d)=*I9x^LS<>>}Mfi!B$9OXwy zMn8#+$~qW8V}+*W*4Y%b~2qbBE03)J$OMKVH-Gn4Gyrt357< zg%jJC=9TjmW>q0{8c{ykca+;95dg1@FAA7*uG}0E{a(h5NM%)?`jj3u1t%$xY$b(mDx71rYXX^Hv9k*U` z9rBoiXqjjVTNAR(@!7HmjSK=`Zm11|4)Pz+6Q|L*8oQot)izTobvan(aZW_mX#&Mj zp<$9Ilb_)UJizBZ_>jvHo`$(_RVM%~Nj9_dgSVF{+`z}mbn9Ut?behariK(PIY}~g zz5pv@Hc}jXiZLgI;1+4EJwPF9RqE!B$7-kF-jF<=J#Vn+xg7hF8Uyq*0`bde&*!EZ zMp6+qoiYLS57y)RK2TF>=?G~xZBZ1l{UvznmgGy`8KJ|_zCTF=s&kUDL$`o2iZ)2v zgt~}3N2NE-XV>m4kH}{dR}<*Dznm7hVXX_1;_6@_)|Ctm3;f9OewGG5HwgMRw)M#S za|=)VI1 zwNaofg5IAG1>>KvtF%tqL1E<2)j$p$X%R~Ft2JtXLY*vv5=TB$Zhq~Oei=Y3~YkYk(^F3Q?aE0w#<8K?il)fZF zn~k1{!uEjIydbnQgcx8t)g5Rz=?#~MqePZ7Y;`FY|Id*f$0{7|pM%UUc6YZZ!bWwX zro~~drAtbcX*38H@@>g>?wIP^>Em>KggK3#-W3^xFuK3k+HT&t3V0nTBRPE}SCe`r zw7ScCEArTCT9f`zcy5g3u0;8s^#kR5vRBxjr$Z7vv>j{Tu7od?li}Zwo2EO%l{%Ll zV%Av(_Y<9P<{K^AF=*pUHXBWti?f%scB35&D?CO|&Q<-p0M;VbyLW5~P%X4bR7w!8 zs&NCNRgnSx&Os;<)!uZ$;alw6J&DUC&IIrvq%9vtxo`c;~v^YD#fG*F-sw#mqct$U%H0APUVA|42Mj z9WZ{6lgTL{7;ByTr56QX)E(lHm5>(9U$v*z@zjxXVD4WP6))KR7P*Aai5}S_DRnup z(`&}B0nZ1lXMJUXjPD!3`yq3e$^&w>Bp5wgHfy5_@*VI_dEwl_sJT4Bt5vPM822v| zKjf^Hvm#PVvYdRtUgA^2lay4O#|RgZmt>y^{LLeyuXmbq9q-;vb6Le;on&gUd2#leotWaTCOen&_%%U97Dr4W!@)m$f+Sjl zQy~lRDfbT)O|TXNPB%8k4VT5|UW&?J)f%Qsi}2W+OVjx3$ELZ1*AfXpyCv}YiqV-D zerJg;xV#!d;C?=V9a)e4ic^+&1D*A4(|eCZ0Wr&QwibR`_2HdWeakmdI$hJ_R}od@VV^_!3**etq>aU zh$wC>2hw)60H!$IW^1`kC2kWWI_Wj`!GSr~HLI2kqp)Qn$PyKNR9du&JOgV)mTZ)~ zaEO`x5*-sL?S3Y-+t~2}B7Z|aMkyHlExv|CRESDTJ0V0g8=C`u)Jem;M3&EaUgmO> zSCZiu@)K$ZBZv8e9-lViWI*W*Mg};U4*03_hwhxOmfmY^2w$PU97E;&&T z^=zJGYS%B>8YOFKr5Ti~Gk-cS`A2-lLF3``rt{dvyPS`l@!>%V_PQxm`xDapCR{~e zU6M+M+GAT8`=kEE@&?vSC~6z09t!VjSwyH@6U2BOLi}6!DGwx(SRoS&&;dmfZC!Eg z*XYZy!_~t|QC5;s71Qv;e5T`%z+L+9U`wL=Y&BfFSpGveH}G?(G*aVfmACj2Ey!f! z1#&A|G0JYK28rE>M6j~+I=Bye!9QVRSL(AX0-AilvgotOyPNHvE{dgz~Pa9fIAI+FtNL!S!$ z_54j&?bw5S{ENoda_6uvWTvY3o;*9WmI38|6rGDdQ~w{wyQ{CFQb{gLiX_&B$Ym>+ zR7fScn@bYP{cg4-B$tuO-9nLEMv~mN^!!e^EvPL>-Bt| zZK&GnTvHWWyNQFFR;kIH!8-l5+{EgbFcT+@Uc>YJ5$lrYihWAnlOj-*Lu>Ft%7E{| zr#TyOS0yAzC`kWXIa$W~qAEz zY`Vgaj5+Ph8*pGmEp!AtAS-iFt{I?A$$c2KP8tRsbs&g7mi#oSV!se+8~t`n|9S@%S6qmu9p=3%{-0_JBW zyT;>R3oyYiBBlCW}u`N*M$7bW(cK@#38{P3B^gU6nG;gsbWJR|NyhQPW!RyvopydtVk2#Os3)f8%H1|KQ9`f->{wY@~$f zyJbyr2K5sUsK zlf9QzxgsIoSgTIhtu)}(Y{m%<-i zkma~vwYu=2QZ=ridGZt|g!igOtBee~Nxv#=s%g6S2S~e?Ej{~aNk$9Qw_??Yq^c4mNipbBB|bYxx}sN1 z4yZf?OJ;vKM-+H}!j+%hn0uo>lv}q9otCTz`KsW4k+_`LubjKAtAjz+xzDDDC4Z>7 zL%a^b3*u*eg?%*<$DGK7tD7=gq~Zp$=lT-xPv-2c>DG{-3qG`zwf%e=%`kcV+N`!!2?A$}@i7{sjxBdl+pIZgcuY({W0d^SWBT$ZO*{El5)8qdA!-fFJ3l}&^4c<~HuGjn z89s)g14TqYkMY~q=r#g6+dWJ z_$bmAmohIVdtZzi$zR!L1}*z=k@wc%@p@2UCiBr&h{)P@990BQ-LEucIzWd0fWg)* z!Z!`{4>Gk@Q&-Xlsx6Ym1Vdu720?H1OHK$+^>~N<9?X1`?|X&c_VV~~k^sXsMbm8s znJXUs_{I`+RWm_#K-n)ii{V}~`&Z%G1JdMcn2?L2!l_d}Ue79lPXMQepelCPrrRzN9XBRY-f zX3VL`0Vx0EKNsL|W3R3+$1$^0^ceHT4PCz@+Uq4VM@HHA69CiYi^~v3b6-eF!|&_v zt6oe|^y~8Ht74p!pCa>yk+_ zWDec(T<3^_-y~8 zPdx&Y^!y^EA3Pbd$bBUk&WsQGn#Mw_eU>tXhGW zOD!BLgUzaHMV&OlmBGpe(H%6|XsJ*#J+m>e`7-Tuhn}+VHMrkm;<~cBX29`qi2w(O zIKM!u3^Id~$=}R)IGi1)KvrF6Am$P-ALNh%_!j`}_yy_pDxWvt$Q*XzzcWaaZYin8 z*5`Vw?Hva9pRet9y>8PUfzUL ze=Yi1$qJ20?^nQ|Nwc2`HC!xv>Y}qtZ_;F>JQtsZKgrz3khCy%t`)ORj@tXt=uuOY z`uNS#;x@cjen_QQ$a#8gK~lPkp|_vB>%zTtO|3K|P5ht)k#E1$t=_FB!Hu7ypjLZ1 z=1UV;3hk5$C^6GSqQ=t&8}U}BT*wv=e)qFBU#D_sx2jZ{(b`c~$T^BV@+fM|h-x!o zwxxaYCC1ZdAvkkRTi=)u8d;gwmOCTz&07Lje@mBEl;SMQUss5D3q{JBu@!ps9zrvg z&fTux9-gojIKvP{aQ9v6480Y|2w(a%`%bbIcAwf3F(t0MaSmnp+Y+?-QeT_q+2iRJ ztwc^~N@jsAgnOupdsMm^^ZTeR6fi9hw*-%Z{l+s7aTI)(Z7^*XvE>6?WK-maxB#{!!}*Iz^H3%C;i@FLe@$)w>G|0f|`+k|GvnsoV8dKj~;HwVA= zMxjq*r`S9A+S3)9@k*GoP-AktPIm`x3Q|IP%k%N3|EFaug7HdS(M}$)$oM`T9x0>r z!YdK|7GHtXE%Kk8heNTHFXe9Gr|*3mxP(TX;&|aRM4nD`Y;2K=xUgz(z%?5qvG_JI zXUXWV?UZlq-P|#aWao)nu)Ji)h>HZHZ@3uA6o03E+)v)!8A>{{3)ihMd8M45aP0j8 zoV39^X@SQX+M){k-^vx_ddW5#?+toMihd5bfIs$nHg34@;u+D)%m8p^_{dH+*hwtk zr~XLGAx_)kwIWHW$oH1$ii#l*jCv(GV{z7U z*iz+YW?(l4Bdhz<|7zr2Dpt!B(XtnII_cMY|tUIyXWr%wVoT=WI9_`Nd_cFj6! z>A(T-ckxCndh+Ha|Ck}tmIbj1zgwvt%y}Xo@AqDyqmvN+b!u7o1JR?#)MjT(P@QHS zdORPSF=PD23#HJ#QSbyZ*<$^QMgf0Xm8wrpgu*}gNu+wDl#g4E>DH}5mO5>lL#eF~ z2rX`XHs*Od^Y!x?UwniX|Lg%54n@k`n7t>?mndF@Rg7ai1m*C8 zQjy};`AX5X#erx;($f#0Y!p(Xm!7j<>kd(B=UCpg5I~>)?WX{p56qM6e!POqtd!a` zcdBO9++L|JDjG$zm`+f5ex9}6#ZO{=aSwYNi_99(&)YHn6ks<9s*e)^mRh=~a2pEx zBDz>iG&0P7!Y&Wl>dKuD`@4!Hhl`e{@mU1*d>@mx&->iq1_1?$7L)jUT~+T%Svtvt z>AlVe@ca|ZuM}_Gp8~t%Fs>BS1B{yyhZ~3s+4k&j9#9)aPBJn9n6nERvWsV^MU}IR zgUcI%npyLhL@8z-5H|l2se^|bvOIe!TV+F2prtYJ1L7x?F8`+qD1>2yk8deAfDu=> zL=-j>s|a3yyq?vaJ5PIEP;%%M`WrM@C2(0Y0@8h=F(305x&d(o8kj8I#AAmj<#Cb+ z>)sP4QV*W+)X|{& z5N)b0((54JDLX=+{le;At_t*}Rf@3XaD=;LV8=g8Gm}!=r6`p+-mdmAr(O``c0tuy zFEQM3)j`ZuDztX{8Q#+Nb!0dpeC`8pqU#*+D||nJbi}6FvQv>Vo{_8%j}g4f)TDT< ztuo&8q*F7Y z-^P>P;eLh>m3?uW(l!Pjes&fwqnjG}vd`ErjVBWkoM~3j(f@dKgeaarU;=VD(6VYC zb%-BqInFYx;B6OhCX%}G)!Ww39WXH?8<|LX(tqRUxN-iblN!YkD||u zcCPn8zB|`HM1BTD*k+2`kIEjn_%2}3^6|Bhmbar{SV zG8qhPe4F=y)kt^GJGYoF%%ul?&87#9n+Bq{cJi$6$Y_G2&g>(2pxY^sg<>%L*TCz9M9oqP>VpE$oaHAGw{-RBo*C zuX_T4mY>-H-YSSWbzwc@`g*KgchI)YCg6k-J}^yh_GXn1B3jvw)>#9-*J1f|KWFxF zHTmL>gm)^wN4W#){k*6`cf>m}{!#vuYqg^3XGILfkp5dYyOb9p0UzZg@#ySm_!N2T zCEAx))2*e|&Eg*5-dgK=ABV}bk#c0ZegHClaUo~3nZ+l+8D#6jb0mB31Wh7HzwV<{ zd{tKfT)%flU8lkAYtP!SdRwb&VSmCVGcQ$nz6_f4+>94~X#+%S@ba9H9QsL~%N|T| z%+?XYoQk!~^Z*h4djWU)}}5Cxlb?j^6AmhCrT*d^$stTDu$>{o`$fRCmXM`Rk~3e1sZr zVZaeDu3P(_?0rzMh7{@Pry-g50FmUoTh@AC!!E%mZ`MpNA%QWL%}0caGLfeWVR_>n z`xnAKzMV!YLldK=arK?E!8p%&`QB9xUd;AY82T)@LQGQ|K5`zy6BFA!pc`du>+mu7 zE;PydgIcLTLUNr9gr~^m#KD@5@ zA`ySI0q-X0pheFVhS`het`0BSmKtJNpO9aHc|L#rMt;e89pgC>h36^E7pbY+Sz7f*FL73gOJDUnfjou(ut5){#J1M zcX;WcYnM-WraBo3tPE^EP+H)J$9#)87X&$AV%6W_VVx%nK5{AUegiD71?&-{)|EJA zHbk&kCwB~$e(=i*?eJP}L%3L09l)@T2oJl`f$sAxm>Zn)lEYFC43b}~N0}&`REK`9 zx4({!N@HcI*8i)|S|r~pZAwh^7CZT5P&_59YLC2yJ3jFl^vojWeL&SdgBeMIcf6x+ zR&>n)-n2g5EpaPA{udrg(^PnNfVbqh6~W$a%RmC3{u*~T$P~N|kC5d|4eMMIA_tl! zeH>2)*4Z#%{{WJ53j0<~0Z{WD!qdqG&~qZuo>XkiY&qC<4y|NV2WXevp4i&s%xPxl zAK$c;5vy{Q_oT`v=GZvW9$(sw8kO7`4OLvU*^mDjM+%ZD zKmJYrF%ZfLZe@qs)5GJ2fRa!b$chL$-f?FrTVqI3mdn@^c+-by?MWQlQ$w2owjqxj zBAX|~7ltx_m{d7+2Wk0Q)hLiq151A|OGL#M3(xgx2ZDT(6B~w(GmKJiXdCJ(tdrH# ztlrK;k_t3AD{?}(@$#txoHW*GZ0&%c9)u*g@xT6Ea2O7p+YDA(@p z(w@ip50_9|W~1~s{`LtV@J7gZV5Q#+o?|GtQ$rNzT7grhwp4h-0s3Y((feOu(iwz9>X@(Cp!BkkvHZ?38FWu%z>+S z7~BqFl6TR+3O)rX+2UHZRLoWy&3<>xX?-Jmz#*(VkC0)l=ILgF7u62vyUsqcuxqb{ zN=Yz_cx-?s=mX{MjX|biW+(C2kl#&W_TH8}$$Z_L0`2*!KXbO7uK&?_fFV&&lDTjt zkn1V65%9w@4*Y`Jn0N{x?;;oJA1zBY5m}K=ERY$Ww#){_wv2G@r8PsfmbZNWAq-0P z!ZMLcrs}4H!ek!ycUAMdMe%T~%9b@;X|_%yIN}f%E-!j@^GBJqo2WhNYV~f9LcA=( z@mB$}rN4YVtcdeX7QG*$6UTYqDUv9(9OjGVWU4wZ7S*K!30AF_m^CjuS=BxDEJr8xoLS=S%y%SWKtLcQO=G9@HU_Z!ghmIgBbnM@wh zawTR&<%x@b5)qQ8LA3jLAIZARS3-Z*AV{+-XJcB}K78=E!wJ*33#1xeMIviWkc*Yc zfVuN@T@VG;=i8h>NXnl?Ucep-TL2B{!7?Vw7fEkL`K)$S5lK)m5`k4n-2GvC8|%;3}Y47{0WPt$?O$2ZAaxj!%_@H#VkgV!L-5z7N* z1pGK!BPtD?xhR9+XV2ZH;JZsx{X^5)0mdtL;CgDy;f9u!sQtl5;3@5eZuQuEhojKs z`jOAGi#=}jNd3F(?4W�`QBZAGIrqGw?pKz-@q$Y%9nOhhlZwsfvxVfY)>&Yqxyg zHU2pVD9Bw<#exTFkG{U=QBAJcj*&G#TR1&d{#*OtYe-pgbMz5f^l=`Av2Lmo1DGpa z@R)@+b?a>QEN+ME9R*821{W`}nY-8xmw29L%#POP`qu)gFk-m5gH~mNYRZfjm0BOC z^5AjKbE0pS=f(ScK)dQOJ;zHxv%If~^Ulig@mbuD6G3TRKek)8spX2$$8DBx+UBk^ zQ}S%!$M^{9kaYN5Cbh?hfYUD~TIXZ3nfu1Hqr!dv8ELdE$u9>@w|(<$^*xH(c3Osr z<5%Am%QkVFDgczLIoo%KkY!JIs^G(A^xc)65mIA-fi+jEL-rPqvZ?D@X%XEx=ul_l zgFZDT*-nqD6Xq-`EQ!=QJ6&IjlRkhz2^D|`G0Ue~ygfHwxP5ohwI`~t6%tf$Y?n_2 z!M90Wh2YyJep`F^_J05J=cl&I-nk2YAg{}jkNJVVhG_F;_UCi)u+G|D&ATuaxz#xH zqI}AON0zx`$>Eck6t!R9@^E_}i=0fCt?9>3)i1RHPV2O{XW_|;mmcG4FPew0zL3o( zs1qGeMkqy9Hz37A;B&eIr82{O6>n*4(awClwjeXPX)ShBO}=)wX?#sHFT{~w$t#6^ zoPx0Z;dK?UZqG$8h<^#?26@ea_9#a}>_(0@*J-WvD9=k!rfkaIo+g1EHeL{mGv<+F z;EI#5X0cEjhbTqsl2_=Y?)Vr(@rIoCZH>pS{}B!!Z{R!8pRB1oG@+rW`A*fq%6Yvc zE%=4V*rW#dCGN`=ni?C~_9wn7ghS3rsA~S3kaT=;+e%r#?K>d38V>r9@E=? zOv;^vu4w#1@fZ?kk>S<=*sl;n$uFi|qO~`}LH?s$x3}Mb$rO@y)>lUH_ZL=@(tWjU z(EFknDUjqIKZ^1U5JhqjBz4JrrUOV_fEx+XP zF|)De2gy^TpEwGF)L&halFG`tNc_sMS01KCUWql(rui6;0~ix(^<&9Z%=YkacmC zPK|~Qcs^28&hGdMhRU2oPZ?v?H6HO=8Oj(yt?VbUpuewdsQsdhI)bGI8 zckHz#U=4eCjhzRc{IM)WT&eM2pLbo55;GM;w-^h`s-;4<-==npoNwzXa8TEvIl!*> zvYv-A)jON|Z}CU8!10}k6K%N34GY+n6NueNnbBXHv&!IAMTv220E)}{Bt4{G(uiqi zW}nh9=q#lFWjJvYi(lt>-Wirp_#8fg`Cf(E_{&=rVS2}Iq1?ir!Y;uLyW`@LqpHS{ zPmrv}1?m`5qrchvZC)l~8ku1=xC*ty+|uB6KKNPRv3}uz$5vQfudPaNeHkFzW41J; z*PX`+(P-HW(J=Ti$huZVC~L{0ouC$pjk4hku~D4}hInvSUqZF^ly}&s*DSdeZcLhM zzjVJdU}$ySa04|OTilB=C3%KiMoO>yR`tDE0ie4ak+7-}{sx7ZqzO}vs%QXs&4x!8 zv~gb)Q`jz7xMuG5Sh!{>8`AXvpfxMcy&8_QtVmT#bR)imxIw z+S#aIKyy9!AF9}{GQNeL+SHFQc4CrD+KZy`jr_}$?n_f~+abv-LhfXa<#ABelXsk! z9=nGKHw97gA$&#`=On%?P&f2Uiq!+OUVr#hPQqP5ww6dL^f?eV3*z3SMGwY6POt1GNX>xjK2AtDSjaheD38Leow8R|G z?jpb|fn%Un);>`_kDWgMQ`#a=5)RrWY*rPl^lgLazmZjkMV6xNSf72D!Hs68EV5*+ z!h)7UGVH<kC@u&2T0siu2{ z9fCxy)Q5t)F;JV3OpK@p-!_zqlniqqs6pelAJe7JV6@_tgnshh-;So2^>CuG&6RKX zHPfoPczKy`&4sp~VLOxtNSeS~Y*(wz@3(B7I@M=$b;PdUC7CZFM0i^=BYijSbl3F} zbG@SR(%_QZXG(rP(Q}ss6dle1<^o(_s#&r@HIAUQCsr~yuwr4tOIdjiKbr)#dy!@Z z_{e_Lv^PZT%GV6u*^nTJvS>75>1y{GNx|yqxvl%i<^v(Y07ZzQXHOLI>^t(DE%j^# zkC&d(v~u$?T-?vkN}-l5Ix+_TB>6xTG}aV{yv(>ChXu$*cVlE){|-NnxKBHDS>zs) z<-~oH<-CidIg0-*CBa2%3K3yhWx(O)#u?$bH5m-OYXkr=stiy*A%YisTP6h679U z^+(!Yo0>afLk^%mq{{c$aKor61%^T?D)wJfca&$WRZnK%yxVn=M#TL=0zbj!1+`*) zx#`qk5OV5ZLvINpoqFx;lm{z`Jbg5?W z!6|~oczR)z@7jkiBv&`#n+u+JuOhB#0_hzJ6W#8}65~mvi4R=_Qyc5(P*JfNt zD0gDPq-b^M9U>!=mMVUubI(9hRcLS>f_Y6;I^{PXwuqQ*ErlJjmtIwn8uN4H6)Hg^ zV5y0Ah^((6iQJXnQfqS9!2L}$=ENZmm3)~J;G29Wb zBp#fj!`csp`mK#R|Hu-h6u8K}uoV5hykhf-(fUai_903K#lVej;}9<25SfRs&V3D0 z{STrhZ$(7fd^HW;CjuwXa^J{qA4}dwThBf9Xz_0(&@Ssa~#j~4}O2YwEaynriHaNO8pIMH(m zU26xO927-@FKGeE9K>kK_<>2y@RSwc_X}()_*Fm^2Ugjqv8aW+bAgvWUi^l#-3qVy z)%w^}EVB)9PBOu7jGY5h20yJ8x<`DdDfi~5aZ^^&OW9BUb@XmP0|+Wsy!qoA5iRC$ zB76iPFce%Dox_^ocx!};{0(vMRDJ1|@8j9l*9S{!N176Yk~l2~9R04MG{OG>WN|Q=!AMkSN2In ze$^h{(<7lemD)M6;LZDkrfE}|{t%~ukvO3VNl(Yg+yK#;(wSNgQlSuw#=r1JI%hse z-@lwrwk?Y2Ov`1SHuchPl;qm+f0Y4ymf0Zs9-Ja#(->2IFv3SVwElRvUt2nG>I_-? zCOEA}#~bu|+mj9I1lrL~&ea!)Z!gk4MozNM3Qe(Lz1jvLny7xQDn_Mn!5-70GBvjujWhm<-(KSkcWJn_Yrf(!^ZT} zPO;_(NzV>}t|YtXn{?)KYjINwTG~NIUgsr$wb} z-o>$UL+zDn-`F|3WXKT`?|J8o!z4I>TN+86JmCT%r=T~iJ8PzRd@%J9=+!Lo&N|be zh6FxC?|^-(eg)@>P-ILM1!xb@KA-G!4?b@m+|#q!d^_PUud|70XvgX8Tm6N7DS6vXWR1aUZ4Kv0HUfD+ zx%jeK#X~%E3kJ&QUhgTNe^JNA5O$;@%a@Wk{T|AeWbNoC^Szg}*@=a?gsG$Q7TeJ)#WV z!S^;)HeP*I^qf7e-mN&fWn{;fBp)2{C3N=sWn&L)@in?{=GT-Nd+7M)-ATwnBDPjujbIV1h7F7zTp$&e&N(PrtJ8niSK zv07I)Lr*L=Nb#P{f`1`};1jT4(%S@{E2)D`54ET9E=kRVd28j8BtVnaM;0?Pk`THp zBuCpyOi;#{Fxy)>^)(3g<;O;ob}uJ&RKyd5G3$E*2xs`@kuMU#&s4|Ou#8(S&B&L`4>BWS4fECV;G_K9kf=ou{zYxQ~===4yuBcZ{nfB+Cw&RKT^LQC}VSKo;Y>{A`uu5FL$_D6oZ zogeO3FdD%sy_BkQ*C`xJ`3o;Faj;c6N_NTr!!A(AhW(3HXMyYW-clxCrTcwJg@&ql zMfvnaLBV(BIX^~Vp9T5T(&y6&Pqx=-KclHFs)722Nh&6TW=@=H%Ryer2ix3zHn}0U zEUzP@|MWc6hHYJ5-cF}T>ou%|)Fk8tSH6kXLJeWtO~*cPHl-*{29Oj3)95ZJaQM0CXI}S4CvmAgFOSCZ-EFrG)1QU zu%W_(5tm(hU-SaMNQSLO1;ebDn$Cwz^7{nI350@Dyni-In}gkGr^IoOBG&P8jH+BN#L!eqW?T$|NhWjj|vi;WdHE{9WQ6O zo90}v3}Q_OiS$jDETeWs#w&JP!KEX{uZx0~^wVSIa>Lgv&q&7u4=QEenPR??Tl7;5 zOcI>kAedBbSBC=MX?xln+cuX?AJw*AdOK(NcMt2jcKS#z!(8bej6;GY`f|RqeVZG9`Y$`=DR2MAW(!=QPv%YVJq3_&u+@l zR<{*DF+L`vnrz`ZJKzG__YBv$>44Z8{p0< zh$c#l%@H=;<@vuGN4Swa`oQ9Y{Wk|?ehUoVIIvSiEak|&3x4}y$?`v%h%*(7-9}q- zkx8b*i;twEO0V8v?;^*+kiO6QVY^ zW>dEa+2iP$!f%Yei5uS5Y}_RV1=?b|s@kf2e!6$n|5~7HL2jNSX0K$^Q?G9H?d&Yh z5>6Rm;Ld!&%y&d+tL0FWmdp zYPgxU=)p6)4Z>deUBdh!7MJ+XJl_<_Rh;AJ({@Gv^y^U>-qkYcNcVM?0gzOO2@@kf zd%4EIV|7Rzz9esBJ?6bAYCNZk|BWQS4d(H})82Zor6> z*w+&I=jpgGeQ2v0(axtfwaQgAbDrnTK670Gwuhg$=+`IAZ~ho9aG$rSkei1$s|H5< z$3QVocg925Q5<|LV9r6eFC-?K3g+MW?rXHSshIm~EUbt1IfZ>h@4X{oMoDn|byfSw zWB$mB*%5whLadsK${4A!Y-=yrnK7%^b0f6)%v7!Fgpxw( zlo6=0WEL?F@l_1tYozjHHt6SCNR8Ppz=AdR3&=6U07Me682Xa@0rij5j&o9oI!upB~vRRJ(G?m`yP@}@DlVyfB zf2p4=<*TPg-!Te8_fZc(UzLh{)fkZ7;E5Al7Xu(^qKa||cK|YPF5S=;q!5~~)&Rf4 zByi`BvDc$kGcD7#ZJND$3$t_ZNwBg5;O2m;2CRnb3^NY3mLg9+Q;1^jS`S@f)Z8<& z96#9P3}Mfhxai^_=LH_v)_X1giCP^RHUW_aWYPuJ-trqZfY*}PKbtM`O*8k|-?jQP z7HhgTT45}OXG$2|bxT>}O$Krw{O27mK1_{g3|aTVDb?4-;3EwOd66aug##dDD8{M6 zD#CKhdQw{8=Z9Fy6fqs=Rod{>mZmu%PaMB_aC_UX78#fhkN0uZUYr%@lArkw0@ZSl}iWYmN ze!e^^t$qXPa}pr5bgx1_)U`*Pkq*mb#lffA1Y46*9?)j9>P%)P+Vh%j~qw(!@ zzK+pm-`aVc%Eii@U$Fy_$+WGT`SK)pK^R_T}-&@9LL`$7NRCC?PoPa->ud&CsKaMK*t=KRNssweg z7hmc*R^vz6;lXL%BD+&*6W^kh${Pj zOQy{6eCAnKq`_%NiDS-u+s+>7+iGllsknheb1NwNIu~7FD7{Nyk}9!&G?L8Q$Kl_x z6XU2Tf}2m%hFCkOtXq45T^0GW$Wvl*=n&|V zdD8(w-P6>F=4~q4)N(0XR zQ{aN%A({RGiNrgxz~7iJ|2YLboUHG>Ve|BlrabP6AFA3aJ^e~`4ftN?s9TU!uIHu|y zG66rGQKiN&|5kC{2aY%w39hPVo+iv7rhjI$UI-5JjuSj9FV*}JJ}(;2ehB~lq!Jvb z&>IWBzjiwVKEfytfP=KO(5-MclxZPv9K7`~c^05TLj*4Q^O^QO9$^s!$#yVlXCJRN)mUUeGP(eIgh15)1t);Ia#?M=_nnOTtZ z&iO^jxnZ_Pr}oEfLVuC){^MK05KM_BAbk;e7G$)zp#}dnZu54Gj4p>Fcv4#-o@i@b zg-voK{X}J&*yeA1piJb)L?T$>(}v1D&BVn%UEC#-7jro=CALOrof&=H%!RA6JYM|CwvBpe})VJ z5}&w~Hd)d&b~+Szwy1R}jj@bbjG;|~2bf&@ruM;)p}UyZ`1(-LCio6tz=wQ%PYw_< z)Qx}($?4mgpL?C>HeGAVyHL{LxOc9B`tSUk*+6I#sHChv*Z&Cj;~jQTu&J*^p`Y5} zXbWcx3a-0AnWm_Dw{y4*h^_h8_ltmgw@nkG7&vnjqEdf|`zT}vx;S9;$?W&r1|x;5 z_ui2m74f+_XR~aq)n&(Q z_eH*U8p4~tR){KbLBbvB{x7YJsdtEM84=|k z&R;-{S5Ilzl8@1AaYd5Oz{ub0?pxZ~Z}5Uud?rocwCpyZ9sN1NYYc=im>m!I98fug ztYX+T_m;Ys;+hY5v8A?iLE(HmP0LC#p37xsT3HU>r6lA|WipMN?{gIr)_ck*4yFtIZ7zWk2r;1%Z z3WfV&6WPf)P$x>9S)#RF$I;=X)wZx>9CAeFv?#pmEZ)sNI3Fllo;(j{Q6Da42q&U> zE|R?a%&R=V?VtRIAl?&Yq3aQD#QDfzk)6HRWum6G8~8|{F;0q;>f0|zUd9JaYfZjyQpMg_4g;v zPDYA}y2E-Kp9wr9a%G4Fhnt?8@_n?BU;fTtiey9% zk*5!=gt!s|Oqp>z`^(RDi@Oi=MwLVkQo|!1esLn0b*HL&EZ>v%rgZWKx)y>q(m2e~ zuSsQ79HdMJllc})H+UAqSC=%7fXPF?4H}P28{d#6k77Uc3y=P7&RsGA&cVgVVJYAM zpHreQUpX3rEmh7Ycj{+iPlknKRfy>OUDLJa9qXU`3K9R_PLJ7-qXfGAb-{$)Vs+P^ zdD34>?ay#u0CPSk85hVDIQOFjwFfy^=NQPO%uq~EQD&WnJEYQ#&+{SDI%{E3i3;b# z^H=eW@9PDgE z&6Elq*w)jP4B=eDN)kAWd+uNTqA2nRjc|rt`iM?AK~0wiC%R7Kk`@WYs6*ZCc+_bP zw!_krSDAE~np!c^u5e{=_CXO!)%Id!X2}s5!YOs^;g-QC!+rFL@Sp9tAMZ%x zj_HRx?q>eC?@ixU@FQ;A%q24#{ySQos;HBLw8UKwG&f$|A&`q0H?Hja6p^bnI~@ZP zT^ebR5jW?jE`9?8#iN%JpC>sLAL+W<0UzateuxRZI=)R@rhH3|!cHoCNB7OHlLNNM z(KT&HA%0OO@$qUF)32Oxk*&r9Nj!y!leaEGN~q42vLBN0P-Uva1-fd$DEu|BzUwMJ z;V=B$(159QPWS~uhyiTQVhH%esLRJvD_{jGHC32kdq4cqCAg+A9x{*m_)CWKc-&QZ zs6C+=_jX&g{WV6Fh-V!}9Zzsxf3Z*@$3G{1RE+bn0$23S5V64sqsC^$fPW@O zZI(q17bq`|5;T>p7E1nNKj?flklI^+F@t7Mm9F#kmCaJP=K_kVYu5ZIoI0s0wxEn* zKl~?CzSc_-*SK^28?AM?aRm1vH3x;gXQ0E47byPVrDMZtI~`o{j=yy;xSDc zZ#@kNJ~KA#CQWvl3s`D#o~(rk-Q4;cZ~^KpH7~WETZ7=(0xjmqn)l2X%`HC|lcTs+ldlp?o-uMnE zbvi@(PVK9E4MeI?l12b&p;L7sXHx@TyeJeeJ>W~qJBm~v$v16IFo{BaV>?I&XihkNGD`Yv8qoI-GKQQ)kAVRzj#uAGRaHLf0MRXe6xp)=mKL0jV*2?tdFHBkx$S=)o=?d{0^rm{75q1Mm&_{x&sX zleKe6@(V|;;(+(q*-&q*M2CyV8j%K8Y=XLvNAvesLj>*KN0y4EUTV0l3de zvX9CTIH^Az29HkrKW{nzcst*?I-#$){8A_^TBd?`sr13BmCy2wFXAot(Tfl9E5{4} zwW9O>8((fL+>$x4CF7nJl=Ne8S8(uuk%v<(|LVl=4_^zGn!2cYDGNyJkV)LuPx_w; zzeb`N@$cv^A{>t!aPLw7N7A{+Gx@)Nyz(jOKv51kEQF%0ljO8jl1f^olERcEiG>`- z4wZz&972SJq;gJjnl0x!j>s_^HiltGw%O_H_xSyL|8@Uyzwi6LuIqI@pa1bxdEITW zmH)&yo_uQm5GO?zb`LB*oQ0T;5~%*W>c1ehs5vHFQ|lYOBH(^-&lb4*6L4pYo!4hi^C39ZU@97qvO(G*&zmM!u|&ogPwnT zP!V)%Oh066Db`7U2HK3T7Cgz-@3QX_$KVV}Y+5DeX!V?a zq|1NZ7$&GN<5-IhiEYR)2>#8Ws*BY1561KaRz2)@*?NsxMLttN%AsR+WXpG`oN{R! zwb)`Ayd}J}?Kt$$zDA1U-ZdCfPjq25gQk7g9#sB-W9;@)8(-=%dCvlR+G+OE_3gRa zU5>OSkPYt5UF>k5wY73dkL7PiJ~LHagK{E?-b4E>a?ITY4aoEkoC{;OWwNX7Y*&tz zK`Cfn5B9tPpqVD|=&CwS{s<`L!+sEo2xXf6q}GKGMW|1s{p>e%&o;gfYWFBw=>`I3%%xDcc>YrsinHGI7JJGlN3i?-P;fl5X^DfaQ zIC$A8N8*qHz8bN}w4F33H!CsJ7Dc{c%R2|}g=t7&3u|8|W*27#OHS=gcvevQ`p&0^ z`LlT!*zuKsv*Ke_y=C@Gy>pPC>qGVdH|jgWH)N#)bo*U?=2!S?f0wq6I1*0m>h`6t zWp5yqh`tV0UmwI}zGXl0_9k@OLGDt0f>6E_Lr;55N&-ZJ(Kk8I=9}-;j>UJT+bp{c zc`8tkX@f2>ynQFeU(D{-hj@5$_*p~{?_}V8Rq2lU*z`++?!*(tOGM2>KXe-Yc9@@Z z6101~Wy!H=*ecXs&=A2z&^l;hM+S}>A?(IHo6Ohhl3-qGi)v@bUP^voAIkQJk54Z& zRjVp0qx7V4l|;zBBL&v+5v!N}0DR*5e24c)Vjb}ZBCOXwZk+aB7iO%|!#I*J?!93+ zV@X3{!y=)T`jE0yc35(E-gOibu~P+KKYMeku#|BC5wg59-JV?neGTwM`~bd%h3*yl zcKx9p%n7L_LQ6yn%l{_MlRpAEnN{{VDmyw*ZZs8?sYnlwA*8e7R^D{-Kch_U;HF;% znl100TRmY5$qU$9r!+2DxikMI+c1qjW2uJT0G@n)lnuNG{KNcVdv>^L`H{L*@3^*= zCa32X(P%gyTE9ys@;*(t(rXnkH=584jKHvh8Wm{X^=`EHtX5XgrE`34;Z`U;A_fPI zw38)LoOmiBnI0@SCrvfZT0=u$bp8_{JidM1+OSZx)B@oj=k;du@6Ckc+ZTHB3xg*I za3dLI>-k&xh>vY0kKJ3Z?G~M0d-15nhG*0ptRieu+Xm1!O_J!lDj=I~^J2|vr9O+7 zy;UfGw87)2es)BAtR%yy7tc}p-cjjE6xMEd>8|7Ie&v65PrpQYKpR9x@!dp-kyv(C4U2Vy*R-KMxXgj z6@0Hx6rj73=-ZXpHTDN|VW^65f_;p^Li_KhdOF@mj2#D{&S6It@nu%r2a4e)z*WFP z|7iNIVe4~40joE2RjwX`r%=n4f)6mKP3AOzB^4g~6dFSn%Ds7n7uH@vFD zuClc-_Rt0e^jp9b1$o&$qGKz^&U z0crNKMj_6r!v1C&@^qHo5;5htQWl>`AP0(|5!hZkorGq*jv@M@arj%6a!f)yX%Qx< z#2sK5i&fXY*Dc1~`b>F6NdnA*csyGAPHR(%hKup@Bc(b*N{1$Pb$76DZ!=|4vEpNa zsXlP=-m4I~B+>VV!)s0qvs#cO+yZNTomTxif)+NNq30dFrVBV_2tITNLpQB;=9Ttp z^;bXIQqUj`?T%ucibd1z&<*EhPd+TZ{-wrY^Q0b?FPeFK97Jg53 z`Uc$1(fIY~p>g29V1BsF)xxw*em~%`b;ysQW4ahuCjm_wxAQ0X1>XIw1eg*w5I?dz zI!^|Rl|}!V`rBQtGzu#ob_AzcjudFG=ITtEjR02fM;lMAonmbcZ5qZ*N$uIdjIG*T z)6(2-U!_&*NzM@(2Yok%^f~c#cY~O~ra4@01XW(*%c+2W*z-4uir|CHv!5o zlvdizb!}nPbji5*3tA6!gl>>s_=7jqEc-96wl}?b095)C=k{xB{S)^H&JKubUFL_g zl0pYB8@0nJE7=sMp@_KgD4mvx{fxSK^9SCStRZ6Zxs-?5@^LeDs{AfXNZ7^2hiqnN zu;Zgn%VO}YA>StIgR-TH_1V`ecR!^rl3ZdnQd0PLx!pzU1RSd24|2pbJ;aF741dxk6tSpm+y(;V5bR41p*&AN$)IcL6UK4;!$4k@1i4Uj)QR z?04f+=w0X1?L3yv+-R$Hs1eU7jtN!}at}Y-NHSO+58CnEN0;<11#0<3`lwam9X*t2 zQ`PURrG&=iFtyvc49|3lvP96@ogTJGi(s1@q7fMaeV+gJwZujqb;4n%sFZ6uj8w#? zU&X)Ju~_PT1M4Hlsc5!d*oqypohy;yf&JL+*{mE}JmCoOR%J$L{A*IDPK@}clYnzE z#_~jPN1?Q6);yYmhs?bjmT#E1Z>ZJEHOC*wHNn&W)2DZ`7uo09_1rq_N0v@=I<`ZT zoFQ{Jq-&lx6zBXxvh1{ie+h1Rmo#H0?+d;LsinTnNe~()w3k*S1l$4-7L7(T&Y;^b z60D3W{27z-6}CfV{IiRHLz}TS(yEuMR^vO~6}r2JDWKXJ|3&(;V6F*S+(ce9dNce# z%NW3WGdF=J{fWRb8uu@#zZrW``Vtffy?ca~lN$K1?h-j2S>TElrt+%!u5Cp{KdEDv ztz^Lq8=kAJL2Izc$@97VsL*ZMzn*k~cGbBH>UsCi720tBv){27?;qmZn7!_?G|$+- z)F~H52`W{^_v||;o>)9Ye!mW1_zMm-hcELLvdeH4SA_{^SSRTAYXUNQoewdkZ=DHV zxuvrG6DcAWt2t%s@F_q4Ea%GjU}cc$9?QM{cGgZ#w5B4vGL=%(=PgezgF3wvMNg9X z4|cC*PSC)P2F#}Pz9MuoaK&V`KoM)tNX)WPkdTjzEIG+s@GC!$6?Tf5Xo^ zd@8Hf1?>1sWdZg@PuFe%2_Fr>n)FJ^{Q{qo6Uagzbd1pPeF_`7UH1D5O(CA%SBE}w zhYriHZrBbwVEXuz_DjIwCdgezjZvfX&H)5baCVO^fD`LU-UtrSf36oT`l=#5O9$?4vGkvy`3g_}Y`ms^&av(AgSRp6E2TDF!!>}Sm5WJO<_jn;U68rdNBA|^ z;}cEzW6i;ccf47LorRt?A4hGZ#AnaSbBL=iWQerzy!ELS2Rocjm|9;A4n`z@C;f;&1lvFOP9oBn8Cm5l=~3-f+%u*|L1^BQ)pF zYNPkb4Bv%O=y}tP?B)!Ac)9Vt6!4>S^B*ib&yxnCqgU=gvISDQi}P?EGf!GO@m}oXkTJYI zV17e|*zB=EfjO{u27tBai%spibRkQB7}369r2PqeSKg7wMPhQzvux|-=qXbt=oJZX zaw*yuZ3d}{-qb1IwqhALw?ue=kq^t1a|1yc^Pkknj@l#~&=L7%{iJV$7Q-V&$CbG3 zYJNV}uQ9CnXup4JgnY@-zS0ZYpSB7#d31xtZRWq*Cti>(cZMI|04md6{fH@VetMoV zAum0)0i3y&a_2vZ&*tm~0P+!9EME$=yo}IZUD+j7wZo(?o96~7j1p~nZTjeR*@>?q zda1BmIybK5Jf6NUJ4tFzdXVzxI-{eVV|~rYT>_9fiLWOz|J1d+m6sLR@=v1s_N~=# zWU#KU4!3nFB{0%5QF~jO;aBaI08=<9PjhwC?8<-3gv-1qjWhRl{`^r+eN;gb$JjjF z%?R8r)lx}Br{#v?H^7f5u8r*jcQpRE+T8y1SYLg_z|?(6zdYT>R8;$5RWq+_d-g#@ zEbyF-fPP*Ea5=z-+y20+ol>^JX)7a9L*b3Dp&g+?vWl61n7iC2DnJX~eZB|!f2%RJ zw3mley1t^598uqP1^;K=68e>r7oRn_BVM5Tz|g*OAc zxjG3(<1w_(cm0;yXkc3b&?OZ$S0u z0c=|2MjCon$eWQB)3fFdcD|>?5B*ADEvQhnaFRDWU+|Xg+8e5vj2yJsUK%#nnlgmME}uRdkx!W z8xPm^j)n>_kfJVs`#-w%6zwT)uzl%x4wmtnl*#CeJ^4c|%k5o4fd zn4F?H&*>90=)KHjZWNywk?l)sXdUj9aeC7OE*oM!KJ68nT?MPk6olX@!&mx4v9eno z#*N1OOX7)~UBNVrN`!c==pje|*n=(_oH<^~hIRzoM#Q=iI_>{lg&v_omyE>qStn#C zR`~_QhP$Cmo4Kd!yc6GNUrn&*QbRA>d!H6<Kn0HYnUr~zr?DVAnSh+uUp>+j`da54_vI)d&)oWB zFkfE^^sC^?z^lFBt6w-0S;}VvpX4VdKIfh$ziBZHyg2&vNpKc?;m!efB_;Ct{l$ zl(}P6UO!!*nVu4GwH-8o!fqT#_&;HOg?>II&3s6+HD(-`G(R>9Bb(a_HNTlJ93!8P zvo`B->NyJ-vW%>>0OT>VI7CCtsikd3QXg}UJ@=29w3M!2_Tej)bA#`Y?Y05@$M3FM zv=(N{!Z3b)z2+@?H5KCu+V=$M&x0>{=Srz}P?W$~XV_vvcK5*S#vl-*3nN({?bTgf+Obs zEZ%G*a^(qg^@fWZ1re6{>4Yr57Tt5s)ZrR!baxpKKupIeK+S~&a&$+T;5|N4rK9M{K1mqZ3@nOrqc)?6*HQPSq1FM^ zA!TeuvmoHXq|72a?7}eVvfX%f-OYD%XT4f!XV_sa4ibL+~oguS6i4Tb0h(H|Q<6g37 zH5ZPR9n3-{F8CzFug>1_v?i_O!=s|5k+1 zsNLp`82@8>cUhZ3R+)AI+OkKuyO9GTUq@Uv&;zb#e}AyKpB)eCXm9p&XipA9IP{rl zv9+4%nXP<4f0;b^rW|kNBDm}z^5kbJ8UHA2C<<*ava78^??D=zo3mAwX1$*JvVKYX z!Wt;4dj9X4&H_s8VM%YEYxd`9#phe~sm;@sV^16HPoAKa>w(b$3yqRxPpx)i=%&@iwu9Z6rbYA1?PgeU#AEnd`_%MP?6laHN>rBr zn$he-HH?v0YJzV+J=FAAg>H!KB1a)2rI58#nj1gpc2b{|4_qaQ>N5be(Ru^f?@9m} zv!{ZARMTz(G&2R-vMbu+qs(KdBSaM)c7lc)@)aE)M=GRZ!Y)t0Nnm#t{$3gJ%`MmdRW18gjU4zvX|j< zp7fz2iMfw+$Gy3Xy#p1$L&JHvY_R#Cez0zad7{!a7jcNt`x5BP*<6}jac0C_Hk+Tg z5Z4KQoi&Vl)sLIn{caY(e7sPwz;{OFzfbRclUpdO47(|Gw5jNke#p3ecnnZ%x>sA3 zD)mo`b)GVxh|b#in4mBA>4cPuUp0qab$E#VS!V0*`WE-K%i0G0&9l16pS(@~nEe{Rmi5k&kyx z48`;U=8tsWm{Lz%)({AmUtjUIA6G7a7z-pxN~e$giO&D;XL+@jdFI#P zs3*Y9F|z2Bz(N}$Xz@JBbW(;Z2{&sO&W)S(cQs4juDItM(?lKs*yu)5pD(sOzF|DZN7)` z@OO;I)}eN43%qr4#r$Bc{NxdT1NP&hQ`VY*ymsIV2<{NFbl-I#T3)gPlTvf#f>np; z$W!1Na?XPDyEuQig2{F9&P>DXUNtZ%F4NVkj2=1*U!n1Lmu1VD@nL zRYw-d02OU>g)rO`n0+Ea>al&MZj#C>@YC<7>++V1O#k2?`7eUz|* zhIj3!bI=X~ZG4hY<#Y~c61X%8zs`i4YWWTjeD^-*>0)Kb-ALaareMG1;3nrx^_(}>$TXR) zBypNj2u>s{-9lQB&zH@{QDuQXSubi{tlAHt&~I0_I#I42?h7*r_y4h=A=gc^>hpZ? z({zv3!K@o~(o%%_Sg8ILt)`)HyQ=Cr=X_*`*4&Igs$G|JON)PgbZ7r+T^p=4h7-Lz zy;?`;&EuHd8Ls|RX7&Ojkn6>^g;)1ebP7$8yHWq@iNG5=S!G|_>o(P*K?ogUko_&Z z_Zv=s;;`z8hA>yr?Rj-Wa*(;SXhOUkBF2QK?~^r`UXU)k^0K%|P6I-)yLhNa0Iol+ z$f+k?@UIh2pu_>kSet5+^V?KpuD)c9eQ$`H`e>+Zgkpp|X`4XrF=N|`8#G6v(+?l7 z_&0204*UqdI$WQxMx~myJ5YU+K>1^ZMGk}E{@&zv?1N5o-=o}@h$Gu0A`Wv4%-BC# z*hBfUWbU}i2erT0WBnHt-&E;%WW}QY2JLtv-V0I(bAFzYkXv@2_XN*9r`e0Syt1$r=^YDgF@Vn|| zt;8iiK^N+w8#-P(@RmAL+;yzD-G}(meXhajE5kp=6}Q>uu>waPb;RD1^Q7_P?c3Q& zlw})$1w17-p-SL)n}ft3{1>TJvt3y6!E@#iVP|dm+pzutV)MjYfPSJ;=r^sX_F@%I zsj0OGMg{AN`6pF%&p9e=Rf?0U=IDoC`LrdxLzCw>e?{xbmT-v&51%uKWJQ~7Aq(qn zK5uEJ|GLYYU_Ip3iRS24%96!TuFTF0;JV8^bJ3y2SD}4$vZ3N-RQ2B*Je0S0*w6H9 z)%8lKV=1yv=Al_4gFoCl~F``Svn_@)hC| z143TNiQP<$Kh`o;C3Db0z1cJ?J4^;Xq>Of0M|(G3e_@l@BCVH`b??c5tXlKfDj68H z-B`reIm*7aM8WK4AX1 z@LkYs`U87;K=Rs>IOTJxEPFm=-o4-`k*@f_1mClaC@c3Rau46pr`}2g%8Ym!Vt)!s+Af8@ zZ52akaEmS1jbs(EQ;j#uZY1jSNzY=St@FtwM|A^hW}{V$Y?_o-CwUdi+NPu0?XDlZ zHk#fMd~AFM)aX>>zX>UaD$rRsE;jI33gEK`T}rt~Q!JO6F1&sE+Vt#dz7{Z~i< z_^FWKKek&jP9nKA%Z;P?4L$;pn{e1GI#QB{Iqep@f-up$sToM~bA(168EinjLG=Cx z2OEjTcG1Qw1*xdBWakIaHDp8*NH(dv;29D`iD2=y-y;v7cEuAsK%y%R*v?u|8N47p z^*YulA?-_W-7`l9FhmA<*8Z z56vt+uXH~P^xEiWk-(|s7fUfTF<3*(KKq`-^mb~0CH?|9A{809LHM}P$*5WzX}S?j z{_b~s7=4Imgp34fiU-d`?7>>aqV@!V%*w^@MBLdm#!Jw?uDb1&imQ0PQkgnU>M)nP zaWQ$nbSkLtyJ;l5xkqthNE)HqY-ZBm52O^BZ2lW3j|KojE5o(M22&kqqn|Bm0 z^)llRy5TCL7bKY6r!syNZC*}xGr4k8WcHe}KLK7U-VR#)vkShdHrxh2ym9ef`t0t< zveQepZ)5~Z5iTVR;zy=LH%L_TF*vKVL}^s)z`A7Uar)RLyo|@B#75_!twvR;5ZMS;yrZ&ux;Q z-pck4X$<5%c;DP(po}nSxmKPHBprGlQ^Qc80iVxG-f&Q?o&C{4AD3D|=@QFOZES@7 z^2dm>Prf<=V|Mik8me@>)qiF6Kxss-*p#u6w?yG<%n7G`cVm*(p6z*F ze2&E4gzvlYn(*lsvgbnvZbBRG31} zm-%6G>S7qafs)5$$RjuBX)Y;`AA(8|w&FzD@EWm-+!A}lvxKM;wjpBKb`&Ca&!sxs z#hZ7C^=lWhJ6JztU{gluP|)J|J=%!XCK=guItSJnW(nOZOBhxqyewM)3i4YhPR|Sw zp(|5ri?!qDht8gSgMO%!RY|xa03)1-?OT0U$q}Y?G)m-_eUo8*F)TV zrf*ha!oHeuB9u8Iqz2HJ%kNg=F^pN4Zyx$x7U!mu$j$ja$KVB3CjqBaCTB)oP<(W$ z$SrV<`xYUNUT&yId6KANZ_yF9x1A^F_}YapTF$2ik@y#3QENUpzFq5CB6UUCh@YJP zF;aWJpTm|rn#DSYhZU&ZNe) znlq6f-JV!DDQP-mZ@;>-aS^J+OM}lTDLo_j&VFD5&L|d~pgdSV50y2_3&5M0KLP~J z4$-T(Zl%q$QOZ#N7J&n8lMUcJ?h-U^4XaHx+fzc5povHSv|J*}Yy>kQ{n2zY+WN37 z(1EssEavtXQ$d0m|HOb_I`^Q5$2`|J*iQ8K#|pYVlDb|tveryh(CML|z_ml-&OIg2gi>>GSAC%KC(z8EOP5w9kz#j76+w z-MMr43uG7kTHjt&T)syv^*ieG)k&XD{u}py>h;eyua?2GG(v}PYOTqFzg=(Lh=uhZ zt&28I2Uh=pSihnC>Q`Lc#uMAL#Jz`{KX$|Z4CUjxPGGFXh3co`x5o6rzP*^GZgomi z_ESZ;YoFiP*;?W^Q{p!b4-?dI)W~oJN=4f-ZwR^PySQpReW%QcqgyPJ55{%sJ7vrE zZmR0N!nl0nmOsZr^ke|C>#RT&OyC>?1SJit5&Wi~&vJLQ<(dUFTm8iFl!Ig!y~%)G zlK$0la6|Mz%hVd%2%gj0{OPC5)O9>#Q~)wrGGi{@8`STxWttF?f^-ty-!WTv6NMSN z?u#1frN<2qTyBc_XNb{F7uLoHT%19zZxzglZsz2pXwWqQl)zdqv`hIvltK)bD>7vf zR-`5K)zOBrVFw9ha^o~op9RJDfUa$p{Juo_>@ZRd8S(Mhe}M;+=eQgbzb4LX2(R^w z$_Ul;Kg&&kp5>ZYpA_i3(tQr8>BFvkYL)Pp{%N}|IUy{QeT))meRoY3VZ zx{M&@i1msM58Ej3=}!TtTg^^rK&tEDa%jWo=n3+fwqa4O$J{9aG1hm+FHtfG-w?q_fU*g3 z$XSg8;X$UzX+*XGUh~6cT*%87Z#guiZX8A@*2SE6MA1zc# zXorw>*@D1Swjgl#7QP%`xHJ)d!OOd1MDPesXs;|xQ;_+(OTD`#1!e(}h?4em;DugINY`pL2+2tYn-h1sQ|pDCjKvJz3n`HE9d0Q z@E^o--SzNCo77=rq9lTG$trX`ge)diEIjBw^|CSE)jE+jXJ%FsGlI(XPmY_n2^wL8@To5HN|I zKT;)p`6Ji&#^^P8c@R5gN295_>OmcS+@`$&{B2^HfRN@vN@ye(#b=MauVG)AKB<;R za6$h`!|-NW8yleQSVjdyfGy z?3~laNJ7HXH*kyEaOSJ*aLNf8ju4ejKir&*>WoLJr=0u#`UFsOR zcdF?N-2u;nafGPRKx@xk4@4`g$q!=yX!az9WVkIebrb>h}{4Vd*<98W|@+8ljdSjhxuNo_|uijm=7r-#z8Q0<30vD(=*HSn9z4Xdn+9r_UI8BVpbj(XVWcBXnZuppI~8t68=+-eNu?d)Z-+=TnIcA4P<)E;SHyjN4GPA9 zB;hIqx_Nx|NKp-(7ZGw_JJKk(uDJ|F zjhhI0K9p^S%kQNsIVHUOI|k|$_Z&#uixXp2-+sYo%R>Tj3(x0mckAd68yIv2F|rM1 z`LjEOcv=sQgz*AETcx8};eTdEka-Mk8SwXeRDC{v! zq(@9{%1~P=*3%k^rVbX)9Y3UN?v<}`DY5Wq#R*OD1WC=AVm+=1Oqgv?7)&#h>CCEnoQ7Jbko z1YbE+eJ5syO;dsmB4A|n3w(;NLGOKo-C!#nbWxkLH&y9d8}4x&RzlYnc(F0RWxMJU z)~dh%z>G1zeKZ-ljFWE=U0&FdV5FpXRa{w$6v#oplrFh&JooiSQ@z)d(t^!YHWRvk z4yoq;5)tP7C=#g0BpW1H#jQncr%C!urlUjgMk3#rt<1VuMsy-Qz+@#Vwj?OmI-%3MDK6a%7f)IZ z(#=IJT9pV2UcH%=&fb_&h`0Qa!$BuAl#M!s@fLv-HE(`EON$3_TfyPiSF0TvGc~KO zqm<>CB+2uUs2}JYM1dBee6~~X>8*pJ#iEj#AQ5CYPUhIyeh+&6b$;o4WO#F2pi~TJ z+tqkIGf7%+ht$=U=84ASOG50z)_8i)aepqC!UpP){lfY5>U4TYx;Wtr=B`~>TkkKs zu)78pC=_+?l48qBSh&AQtv}Jsc`s7xhrt1Y-u?@P+gOmz8zSfKfnC~%WNz>z+syPG zx7+=*3vqD4vAb8yDVRobr-5lohp4miPdw5~L1d4nIp!bynP{Y+2)x(Pe((U~i3Vrd zZ~Bycd3D(Ve-*vb^3)nq$Z7#ZHB&V5A8ovY$H2W~fD>^*(YERQ%9!m1yI~W(%zSLT(hUm`3PZcv{L$gjyQ ze)vXfzMbYta9GCnVWpk=M2zG$Wog$AsH1yV9#)9u2x};@R2O9en?&P^&R^X^+TGA% zb+R15Ogm+9?&AVI1mqHk5wUYJYSQclc0J z*l0l>VKad$u{*AGE@*SJZoiVVqgq5B>Rv6X=}?~9)yD_h=jpNTX3V{fG}Ano~2P^k&ln+gN2U#rSpnsTmp582XJi#WdliLf1h&OnW z-y_kjts@Y%Sjo+z$PphOwXO$#J1HP(z}8;lda57Q9v9`67;LuwCSF5D|uOz z{15mgZIXDEgEW_JUw`-cngdg*B!M(ubLRBVt5Qm1W*!s4OPSMENsG~;-r0uvZTExn zdf#L_elOZdQ#|VTu)$*Ar*!FlDy?%*?KC1u{QjjL_5mh+Ma>E_druO1oMPQf8)?WE zhGoC=74O$*@7|clcg)b^QdaVdO`I`KEJ_T8er*$DO25MQb_0;=hW`F8XlI#N)*D1a zg9q+BV?-a%fgNdu1b)|Y{za4A+tCMT~=&t7o=s(ZCG^ppowXG2+&=iqi;-qk4Fz6f(1*7rQ=;M`BjZx3z3 zkzNC|-BOgjyoYe?traagm zEgvPz55Gq=ClTlE6B+zNO1dKUfor0P;YXC^4tzrjqRB8XeO!OeGfZ*qk+o1kiE8v2 z)kwYoB9XdN@N)%0eQGMB{OTBx=92`J)P}G525*@pYE4S7#&W5|=KQkT2Ni5&`l}Uj zM5UZgnYMNn(`HM^tHLUiaJDneg?A1OvRhP8!@VR2Rq&1SF#j+OP`gMlqWb zhj(Ggt=zy8D;TOA0joXQem%^UGw(a_`OUv!uDbZAc~gpTzc4DAt&e*Po*uKAF}|A0 z{?;uM{Q99Y?SGDtaTsAVYW2OMmx$?9mIVfaU8;2#t|W&N@i(7g<^V%gKN93v{Waqq zpfv4d(VH(F0e|jVB#a+sj9jlWrWo;qXA*~lH{pzdu@W|L$pus>wp{7!VhUQc0jQBD)Tu~kO@26@P``7wM z?+!K#{PR37{`cWV!TM&GbMT%ki>AW`iS*lH30l=C7n;A=(4w?T2h4g<3*l7jVY6Xf z)?Mp3txxw#U7^naq9*IG1Vy5C7haAqqM!O!;8%L@5`{iMLrjHq_JD6M z1FVm2vC*iVh+b>D686}m$c@RiNFKZyNm=#d zpyvJ)b38kIpC83jYn4zZOs+I^$4wXVS8qz)7vER+8x>LIKRDzpKd*2omJX6i^vdu$ zD6MsX+;E&Lk7RmMtbM}N1qV51$t4Q{p(rVw_kMmYb5dIQ`#9#3@eg6(t}rbtJ!;(`wUutx_Vu- z=bNNN!ubifeg|GL?-_I+e7dA;;h_|Nk^EBxnFg;s@hpwZpMtLH!Tx;dy$6rA$wYrc zv<=FIvkMPDB2*EZ-xkRQeLHRW%iH4L`5H_8^Vzg@3-MP!-X`H;eh`n}koLQ1(}3b3Xg~G(DFyVIRgEPkk|i)Vll? zbE9D$UJ$GU_d(ve6qfqU`x|+0fAiU;_6Gy)ZlV?A3vC3vkJ0J7k*xA3HtDN&{dEa3 z4Zl}he#LfrD_>9=1U=ae+MfDxFxv+kq!f6CVe(HYHMsi(OYI;ePYKz!{=ak$ zuqUQz7pL456}4abhQxNDIi8}|bGR1YA{XSLO~+|pW;OO+qnvy#aC%|AnM9mk4_5tQ zyW_~K?Bb9;l3r}H{Z9Z_)9{xO=}8)*Y$6WXZ$}WzN*2i#cIVDsU% zmoi73P%%uaFa;_-f|#vrC8=M01NGYszh&M;Vx5#6KHiE|56Wu^`Y{Kctb0-OW5V=u zFGH&GH`Jb=8w0+y6jH+XL%b6}2m(qjsMWIttQ_x!^qB}!_)sK#EO0#T0v*!+LTHHt z8zcnJxAzW%O8r;wn={PRK$(YEOR@*9Sfrh-K368PXFo=^--3m@w0b@r3~pZlm#Rmj zx8&1uR?T8?dQ=SqpnoifvAUr@Qr~*-b@rRBvWNL^1I)|cl}*jb$KTGJ%eZyQI?&Z2 z%+0M1d{0uFu;m|AsFFwB(P^%%VgNC2Ye3|UNjkBg0zO=A&9_4p1V_T%;eK6jWy9E_ zV8SiqQoWo9Q`N!Wupbb&)AbN#r`Q(2_OtQSPkbNjrMO^hv_$Ki)H~oGEYJeV>^%rp zgEzC@-cd^l9d(wBx>HBUqTH7WK%#?9JR&h_P?V5@>vUa<9Y=l!{SJCz=^n{;35ozw?bb-q?$ZS7YGdk3ja7GW6Z z#joGXZT+1*{m-D`GN*E0VDupbQv!d+8XljU8Y7&Qoa(eMgr|L@xg3NFWYKiV*{3Hj z!`Uq68)Dgx`C|dYyHJ`l--^`v=mBYiv2p23tikJ?$rdK)we`x$CDLnc^Z(p)&#`tf z@FoF6r{hn6BmPs37d=l%-w)mv!+o^dT$&)RJIQN18?^p3?fF@xr&N#kUjtkGf+=du zopun1tlA^|kK=6ezftQG!WJyonj}}X=j>V(oOdg|i!LlQWPyd=9 z@C3)p%GGc;n$`KagZ0tw>$j%YT0^K+8c*gwf}X=6)!E@BW9kTA>Lgd<_Ku-2H?@5( zlx|o$c5C`;&X&RPea-^xj=U={ifJ!hk1_z35{7&;#I$@3^%nlnf(HZqkdv$!s?vkjAFR`(p?QSkEA%2@8pL0flSz~9@ZEH&JY*?#%b3+?W28*K)2kB~*Rvih)=xDVw%!~$v(Sj;E>CT z&GS>ZW4=w(PKacD48Y`%$q(AN%!x`m9DJi>rYCE{Zq}dW5}N1uy5f!Z!#-CrgAV+U zqH~XD>VN$Bw^S-+NhO8#AtbR%QZ8F=sf46bZmTGvEaWn5E0Vh^3jRQEBKK!TR)o-1Ufm1c6cJChbJEveru;`= zxwU+g)nRKABcMcg>$Wv4ZW>~9hy%4d-tSf2+>J-fFWM^nu}81B)532>xYKlo`?R4o zheF1{D;51?8tdo)f;l?f26>Q=pKvaJi}c*Zwmpo!cV_M2-IRF~+JM>c6x4l=q4fUc zDBgc|XPBDr1430UU_*6%v?`T%B}@}xeKb*(?sFpGF3p+8e{iJ=Y*r`VM&kw z*+{O#3v2u-S^0UK%uya^i>T*3@)3bovT}0nA~_0C|4y{wG){ewf}JIlp9vYcuu_B+ z^&Mwq#N3Q4Lf>~YohuvKw3#1elePeCv%3YiNL3EUpbfQ2S-}wTvc()ux*I0UVH=L^ zbPzVI@2QMJMP%Rqt{T}3V)3{C69)pFx5B3@JINk0gk~$jUrsYJ`?%!IdOABf94Q;J z4dD;_S8EtZN_8MT(}Gu(4d+)Iu60O$9hPF#c!9DU>^+_mV4v*oIKUGR#MQ$KwTPa& zNYRIjQz#8`#97vo@yJkU5~VFu>rD-PdXpr5T-t`7(rALC_MqKN|P~NLkh<4L|xFuaEK8Zqt!#&;m9T7_t5xAfYme zcK5*ug}()rN0=?dpcm^Zvdu+9AL_G^9oUoWOnnQ?V|54TJa5Q#V65J+6wBfEyU!Tq z-}a#agJ?<6++d|+{WF<=k6il@wEbk*AFA$vQB66sc7{9M!9`S-ZT=WTA2{rTIGL)G zLMxnGgG{y9j==Acr#*V>mL4sKrq+9HbXVw5!rpKE{RhHB??LAgYAu(|LYE2Z!AmZX zky(cnhaQMQsZ9w^8jA^?dNM@Vcca0A6@PneskRxg)CN%ac>m!}vyNBLo5D7i#b>}T z#JyX!Zy5b<2O8?T&uGPpM|_VCHz(kcA3j z@iTS@hv#gwUemRR0^EmA<%X+s{o+;0IkdG#so+Svct8=?n1aZmw2mDuufdc)x1;CvS#?-BaMov>x1=}nQ!hH#A@PJgMq5Fbzwdu zTQ^AMj|U$avQ)iW_*hoT-7Rr8C9>Qwqq{^>^iLX@Qmsd{q0Jn{`+PRr-yph-fx(n* z>Q08(ZKY&I<4KBjC@t|q-9P8Wwhgt7f*{izE|AK~bIwF&Df4=RF5;7ExJDT1b-i%U zY)wv?;@N+X>Jw-#GqLOI4bVWb%f=*bAv8#pFHDh*SMunfA5O%A{~#a_8(usxYe*!| zTQ7`jCN+n(HMaBiv_WV03ES-#YOYh@DRA7a3bn6D>;;PxawguINChRhR&0kujoZrm zOO_0iyQ{wsAHLRPubhDOh9D}ijgVg$n*JY>&(CDCUAAZ|PZrY#F;FDEieU|9Ce5OjdWT{Pb8?yWUI>+AaASCU9O`kV>pP z`i=<(r(~q&dduvhfazpY!ZG6f+2tjZ2ctUVtFL8a!_2?ODr?_RGo3F_Y&qC58dRuu z-L$E;>gjg`OfC*R){!&ys?~EV^U7v>yy6!i)~Som)xWgDLGKk2uH)gtk~ zIpilmf2tUMRNw<92-kC&hR|~$%_h3F$8CKk37s9RgFY5`TlmBW`OEur{1Hgi+q%*( z?QhOg9+f$~DTH>Lqf>04_LX+hn{5=w5dFLV13vsntoayPHs(12)apU*n<<%RsZDF2 zgT&H(l5)Nw7Mh3WA2X0!Og)P*da4Fv&P93BIyT?a<^-^IElqxYNY&M}O+kAn`~1M) zIt#T!iFX*1=s2tmzjiW{c?CCW{B|c1+dizD@}?_RNyR@mKRB^i8x%~@XPd)Nis`V5 z;_n+f;fp3$i*ct$D%ovZ@~YR$qMIZ%Pxv{pJVCpR#?yY zG$mcR%b$AZoFI5T?m5{_^&nUvZTd`}C9Ja#*AVeX=UGJKc~R6*qM&&~W-Xm==X+Az z_M^d0THV%Rld&etL!A9cEE>kegFlOYQ}0U&FCqU9uJn8!i+x36J7erorIm9Eo({6- zuXxl5PYO=usKe*(7%UZ~4PO!%w(#dJ2(_0c-wLYlKhRw&*ax*)aNL5ZuLEV^8w278 zoq2z<2D#jMSuc-mz8!FBUf`5>9Xq)@;<}(0VQ4RCTrE~7YHM1bE-LNmR@3e>W!t~! zkK~p`Li>CMsRQs@cEPTv@8D}Rbrv|Nkc~KOA&u+zS~{w*^9m~SPr#rwfBo4-?73Tl z%U*lZ!RN{#o%|$=CD&B9{3Bw*d{6+e-M1Sa#%-Sbw=$bq)|3{+q7!9m!#4VW8Y;i9KChe&H>F){)c#=$To_P& zgh(+idSW)Q0eZWEJ%10(UHad>j5?=$^1pa*B?L**|ADrwcgU@OGjB@S-Kd+AMu)S# zm$dmefvHMn7=?@L166_e%cUZsZQpyYQGOS90fk(06eKNzi{Y5~Z;~U^8Gj&u*m6}( z4ujiKg^7`x5J@iMEasKcOm8G~E;{0Tuxa8W(`k*bn2x`<`(ix{jjrT5_}320j#YKx z(+G~smS@RtungVCs2x45?nlx9)UnYB%d@~u94JxqX}{$DP1udF^P_;xA%}>0VYJ!T zzQ!O3nT$a;KnAd5mgHtLrb%?~lJnGi!N-ND6l`a-@X{KkYSH%NDXGb*ITrhH%!(_ft^W0z{tMM-MMmzuC#(9Q+j#7! z)q=RnY))VR0)>;2QrUY2u;TZ@VPfv0T!*mLyK4i1$q;U2>L4x?P}ezoX|@9nwH5o| zgAWo{47zvE^Xd-pMcNTZ0 zh#Tc|LBQmx;8)N7|89~*YZotb@Sme}`S-%mxeS*_Va+W)8$RlSnrsq8?TCFUgTP@tLWupen4n=W9Ao4W(jVJEc`CQ{P8V4s@XpBJQXz3 zz^24rkkZ={@Q6=ZO7`L2=$B{$TjzmXfT@N zuI`*uWbMBlpGs*;{H{Hz+l~+3^mbE(bzY{HRe=dN$)l?oLU!(^F z)2(4N4I%7;Q`^9#4QH|kw%C2qiK9^WZIP9-X8_v_>SVMTM)k#RSIp`XdIGKhD_<8_ z0YEC+cMIwkV*<$W7(CsRL~vT^9dWXTqBBp5$1EV-h_*gU80r>#gS0Cu25=2ESWSC` zZ*|ipkojpn4z!;lLci{?0aBATNZJYGInOyde5n3%u+6_Vt(xpB!a1J>SC$cvP^iJ` zD8+Tkc1+wL1!N>f{Fj^&uyTWBHfwhtu6HOP|1{V3G4!w=@>vmxL3~=+9o%E?53x|; z1kZkwy{A3iVm@7*Xg*hx5`|qoy7C9R1SB|&Y$nF>#G-AUqaBe~RJUP{5hux+WJcX* zL(4wlS{^>Ea?Av?7KJY;v;|v1iKP#7W$g#nwu-yIC`w#6o8HqA*6SVtEfvO?f6f*)YbTmV1xX3#iQAU4@ckJ zNdOsj87vq&oAT~p(n@^gwhU!+^uGQt?dSb6-ZJR_Lr^DP& zQby)OmD|s_Tho0_osc$-4uQx!2l=WgTFe@A+wCYf5Z7-Vvb^2pYL9G`5yj)A?(G35FY*0=p|bLEx{Ro+Z< zq<#vk>W}mT5&vc5pih_Zwe%+K+%UxD_CkK}5rGAa_is&|Fndz;zwwUli89Mh(TQ6aq>_`9A?-jZ-wURnh3@YQ1>v(*(RzD=nKPl2UtPI-NJJJLkP{KW8qiJ zDL<90B;lBY7oi{Z0wD{JNw7c_#J5M-vi3x2KR+PUUrCkM8NgX1Bho)SdQ@8VP^#t=pc<5c}|LrL}c;mI2t2j z8$K~zwnxk1_-DQqTYDrD|8&-PnF~k*9bU4OT?j%raK4;bvHiR7>2BHu?!z{|L8e2< zNy*mbEtcKyu^F|jpmi8gf#A@nn2YA)HT?~b*8Ouer#_i|BwHq&=&miNwBQq0`>4KM zW!@Q)`p7qt`a-XPs$b{3`0J}JLl*V)#+1xs;jT>6G9|#XgThus?HFj+UMo;H>_kXH z`bnm`*1eTa>^3HnByV0+;6^>HMb3~Gc4RK!o=3!Hi87y=60Y}m2RS@&-)jRo{3qb8 z=_|`(U8V1lT-C!Ff8DU1;i7nnZ|58ei$*=k8{7EuxMs(Ma~ep(-|Qb1F&yUK#!3#r z13cf#5j;ctEc{;!4?ltZ1H;GiO5Q?*>!Ceb!1_acAG5cX(|2aIKhXE?oeAyH#;)FD zq{ZAhD?*1UrQJ^58BY8>=*WjgF2--~s>+4m8_n2TDgAqD!SdNcXCTH;d!cc9 zuE8(oL&2w7 zFzhJUTNwXqJ*;Hn;b&cmpG=9aveaRHQVaF;GsSj+_+o{aco_Sb7v!BoaWUT z2VvzSkryJbxMmi(chDfBvR4WwmsnNl0A~uwW6mFp1S=tpV@DqRN07sw7Ki`WrkNhr zdw#_65X<`r(X6Mo=L_sieWyZkG=y1>-cw@E*GlGlu(ys z8Q(e(!hAbk89Zfj-E!LAG|o6k7?BDY*|&VumuZ^u>`d7ZwUx5E?zob{yMF&=u`nqu zUi)ja?vq51jEm6}_w|f@fZZr`_Si9Iqwh)K-GB1t&WC7|+H~2G4*v7#)p=KP{M`1a z|Co!0uyaSGqxh5TA09@E2Ncx=-yz0)~ z3-=3DISy*_z0t?_(Wq~kyGLj?t&SFZXN>5)k<5jUf)#8UO+~{O=X77wH|yziR@&&= zD6(%j#&rUfMSEHz{gUFw>eOR@eHV5_s-HAG$v{a&4~<1Pbv=v%PSAo5Aq$R-!O))QN^ODzt5>$?Y`~@xOA$=QLEiin zx^-|>S7ZpO4yH*oqnTLax^3C@-|kjG)nVdY%RcD^PY&~Uvx4?kDE%ayx{1_Y{sWrj zO4{g?t@NS$wX`N5-pf{#@Bz7AADWK@DQYH z)HP+7rF(xt_;a!<^nrI5t5WG95ct>)*9JzpARS(cYHpbFg8(S+&z_6i*4$}F_DP{h zXE_6{0om}r7*fLPz2tWULD+G1YV@AFXnlKZ3xrAR!s+L^Uqs!cy%{B%SJ zs3&x9J4pAJB`tezpqngurgFvL!5l_lp0ZeQps@M;nI`n}yc)DC=0wAPrQ3>y#Kp8n zZGMvGkZ>o16onZxUxoZCmj%;X2%Vdwp9LS6>7iNtZK>h09LKv4h*=@~_k>JqJ~vC)Yro}J%q`ZT0&lQZ!uMLIKc%L-SHOZe4}JE>|Y`4+kVi@#$Bey)}H zHS)@*(Qm==!-iWip(Vco3G+rKjR3WJV)Zna5^xWTBWXjv;6hMXN`Sz zufvvZ^Z}0HM75?et2yi0kXY3qGck&gOPE5mghJ*~e=Pk|Ar!h?ZKfq6CN(*-15Bn*Qs&Jr00#*7*FmoHqBHfFUyc8c&^Fn-N;hdf4dS!V_XW!GW3n$oT#H{65T{>tqx|K$e zG-_QYIY->4Y)f*E6JHYscu@d}jj(}LWkt_apjicM3**m$WSNJt1iR@cP|+{XbfXQ! zA|k;93L$cnAEK0Z+0WIw&6hpQK`H&XOP7v>OA9;(5Q`_<=7FlAm9$F9jrR7n4OrLT zCu%_s?}6zV3xzw%94dhgg6a1*(D|FKVG=`%+ESfbjEySs9dF4qR|I!Ysa_k*9nE-# z_92ZqJ10dHeh+s&cRub{=wH+ihS)E6g`Bq`7mtMKcR8dWpI9?Ija}kAlx(yAOClX= z^0*DYtSzyD2rx{&J4r#i5DIa)6AKE!tJ?ZEPT}(D#I2%?A`|vjkf&Q`DpSBWFsL z?`!m7Uzu&F!Z|^|uDiWLJyH&qF&ZR%J`YEzF|F#8C@+?qW{&>kM5@!o|1l$wEhO3| z4&+IbI44O88&>LZb$UQJiaUW<;%-w6ijV#3W4427Y)7Gtkw3+9wL&)7nysF?Bi`r5 zB>k_L2S+7!HS6J~d$0hw8K=aJ8(8|63lO^Vu|NLN{cORV&clwy+GOn%yv&^9?P4xr z3|aNAs~Y1UKPa0gG_#&u8W6F2b5lUN;s`_X*QPaDSL-F>{m+E>RIV~;ey_8{s~1`s z21z2VT#skcU)8L?d4d`^#!s>reP=9ETu{EOnwJZe;A4UKAA&~=x<|~Eg9dgu8Zs7x z!J6hiY)~?5k0|kUqb?x#l{M#{32)$3Ub8_IHXu>MaHhXHoH!N=-e|5c6pLdPv7Kzg z=itNh^uo8~gLhxqw7ShbR^eyu>Y(l8)N+!6R;10@waLTh0!#uj7<0{ajghk(fSUlx zDLz}^B|%*`|;lDhtnNlw8TyB~5WHq_(WOQ@MOEwl6T>)y^Ce ze%=Q`15vI|KJrZs7*%77yFRSZ78UiE)zPZJlxl1?%t0J$n87+{<5@g(|y~<(0%&W_*lfA;4FHl zah3aeLCVzq&&>nmVaPLfm)inXDQQ#?+Gc_#)7vn1UTP7Wdr}&*X`2rexYbk^D@bNQ ze96(Lz&KO*1hB0QcIb|nv&9K|+ibM9v8ClZ@_7Q7{a9PtPL#4{VuPG;-^ETv!o+qL zWYCoMed1>0O<5r2V~do@Ud)<9iZIlh`uMCuVdhKh>Y1=hNNWr^#uVGbb6xjMQZSju zUt<~k>1weud8{Ysjv~FK+h0Oe6$S6B zZqNj8N7Xnbnn!@^sdLHvuT3esX$Z91XYso{N1CHL zV(#X3gzh`k7nYpbU7=QY64uW{O|orOH*6d90@9=;&k^5qMT+}woFAuF!l2YjtJ<&ugnwOI4IZKH>aFax979;2?Vks zm#^Ob+eZp!t54Jk*@^RTd#vEeWrUxsyMe0k1sc%gwf62bI?u z08I#fm#KESHK@FKe{9)~{pdn_a+392x5Iw`sYfdL3%LVFH~{`W?pLDbfSUpiWf^w_ zbxf|k%651_c>XeR+CBW;oV;NNA$mhUzX$DCcU=# zcSdx)#YTg-9ZvIRZ4O&;uyL_wdV=8ltrH@3k~@;>}2sH{La z1`h5$T+r6TO4YRLex_xLADn_H00#=eAtnc|FN8#P1ns8>fGYOX5C#b!%eON{B zlxU?>smOUV{#2*wsB<-PNBA``r|)JT`6T5)c)Ad~3-@nnvq#H$5PD84r6yK7kg<{7 z!o^%8SvL8~sMgJ#@$Kbv04S*9)HDvCDw2L<=?BE396{9$KCw%QT&S>&#$5h3l@vz(;6n zjgVVB1x0j+s~4e9^=U4X7A8D|{;&*Kr#&(IATWP8OyAsOd4qw-sW_-=!4IdTw^04c zO7BpJVpZv+dk4<%UTpaVtXyp>F3aQOJ61qZs&{e?xJaG+?P=IBekEm=5}fdW9b96R zG}}8ATwtn^Faa4|b}|0IOIR?eJ=-PqID=0iuy5Ce5t0CPUoKG&%}s`DSuJIBItFZ6 z1>z)(0=qg38mSUmv%oO91xubyOzvphj95}`R_2a4CVINkQ|qtK%Pu`AtwJp3bxG?D znk%^3W9E#-GLMzrtI_W6)T<7x&{hhpuk*B+A`oK^7}(!Dvo^1&foOU!yB%?z6}WX- z>6m;j+|ph&Ie~JAm(8Y{_%C3Y&#s%Jb>e1miSVfw4Wu^b4FK}JH~15vwEnnxUxeBj z0%W!z0h#{3J*1=t;Op@z=>Dz_t}G9KVfNPFvc%n3BXJ>^LwD*QU9$w#Mb%H%4m%K{ z&Ca}}fPPAC-hr0(*R|YsUWsUzU0;Q@s@3v6Y4xdO(v9kL8d)95Y90y1lhAhx4zwoj z@ANdDD7y1LXJ0R*kX7isi;M;uMpi9l+y>vA9~hOOmd4}?i_u;p8|?>56^*2ZPomBE zSr@n3CM@^bM1fw>ty7G@eH9LJJ2HiJZK($F?N+nXKj=Q9WY3bKTL|-c^s>*cjtm43 z8n_39TS)Im67-p*voIiy1hoFMgMB;3T`0wD@4W zc<5x36QqrSU}(e~Y6`+?Nd80xEy_ejuPZJ%f52-hldnS3Uhj*1!-sJ5#?%%qLF~sT0E1P1>-k;oDUwxn{}O)2q)5xy z`_qNjn@ecX2LcIROoK=sz+X#E41b&|#sq5z{2f_jIiJ!c)22({HNM_HQp+}@3oTZw ziH5#AB)8eC;fZ!n9YlV92SzL$q;JDFlO>D~{n#IU+FG0`pVL8`<#vsJPk!#@CqJ#AdOU?Jlyygn%rRU#$&{mYolF(pgy(i`@ zHK1#lu%iMad&hjvdCXy@IP6P()xy%dJ_a4n1ou z0T~tC0z1U)*Y2|wcd25JJemIa_s`3tn5GnVL0ufu!lRS8t_q^ii}gZWAFO{3K^1dz z2v?+?@Qtr@uNfX?;^IjU)a=1@sH&>-UwmPzvFp6tW%}>TP#5y7hCYt(pO8t+{2qeT z69wwMm1g#IALGfu)s0Fk)Sfy$W7WxvUa&f_KJ~eqF)ke2;3n+bU51;a`v%2aL2}Z@ z(MM!^4OpDE{^T<9h*(;eZ^8(Rq~At7I-ci6V9 zsg5j|9p;w}t2{nP{++2_#0fZx{LUd*F(6ahsx@wlL zxll_xv7IB!eXEQ2m*5?X0i64amFV1urv&7g3_CMDRRkz?!`)$|ssU2)9gJKv4_h(0 zX+sVV;(O313LI&lE2Q6+r@Q2GgQvP=l#>Sn>NXqxxZS$gT?}^+S*g06T~*gF^&IL! zm<>wHd(ZR@F(+)U2#;@?2o&!i9XdKiSMq65;A`zHg~alUp{p`QtV==*A7omJUmU{h zCf8b$KjO$wJ*xAGP$0fw2s52`=)y@oagmtra^3@rxk66AapZFFR^IKL=!Et^W02VB z?}Td)JXCW%o}3Cay@G79SZ@391$TSLs2@a5WMMP|`jLbzh`hu2=f}KAU(A_z!)Zv} zXjV;|QjsP;S9n6={ym_AbALOIjkN&MHbTQ7Ig2LoCfn$4owZ&Km7g|IC{#S^>37jP z!*$}CH6$wrTDuRfs71=%SP}MOMu{U7Z11Y^kcFXb`QH6m zO`Te5tNHx4_JjwsmZHN+J^X7u99gEFJ~ktB3BS-BZzpH;krq2xq|e60lpx3yf5OkBEo?s zQjd(=H;1E`UanZHwbv}}c+%#j``GK1x&3R|#4W&+aFYC%- z3HN?nZ4|F~Hee^bd3+3{k11k4wGPYA{V6ZxaC@-lSMtM(3ijPw$% zySqpFl^-^y+C>1ik&;o%^u~RHze$Fzp0EY+wq?iNAGs5wIAz)jYh0^uAxQN*RjO8J z#~-p-ysgGeeyDv2J;OlBn>a}abBsl>8BOVB;hwX=z!rc~*Ms`s1~89wfvnJ&w`_bC zfG+?){@-ZwJJWFC{uPt3-Ce7;-0>@Bf!E(ReD&9BGr9@cPmIpOCYGu=aAO=2$E3 zndL3mqO++Q&F_G)G`Cfd)efF-!!BP&4~6r)7Cqe`Uq-;pCn4JFT_zA!N(nq9;lo7G z1TOeKgXazX0VpDz{>r)ne-KCUAq;Hwt!P;g*3!}ty zciGgR#v%8>$Q7+A+#xFEXF2QxDn=1ve#eEEt;`1g0~(wI+)KvLInkobJ3jl4)? z5aKwW8|lftYwpLvqQCkZZhdRK9RupUt}TW;c(i$S8mQs)>OeR?(}-`>!g z*YXaX<{3JDWVHoxqiAQ)a?XFjrPOS_;L@wqgI~IJ+Q*xh4?G}g1}8pe8bnD_0;k`* zQ#-`oZpWxt6Y`%cn8=rm-a%gZf*;9GP%@Z_!|!U%W4<0=(O$EWm|a&O=?S-s-4ZyEghnX~?1I?sake|Tm29pa%OdNpn&M|QjHcaiRULKOI_w+Z@0^*wxs z;IR zy|ND(r7>)KKLq@qh^lk59?PvQ&ZsEdNLcSOn6Li)yBOWH+$2}suEX+lb>P?2lkeU` z*?Eao!!1U##GN&P?%!0}SKbQ^@#W?UTFB#zKgNIVbj>+MPOEb)&AM>9bf@>Z4_vD3 z(StK9529k$5))4^)oWQ-ul)RMbQwGv@iVg2JEtvBY|3{7)1*+j9dI=Eg8sSYb{S)EGdZ{U?PyjCCDnmkdY@ z)2!Ftc<|hQ)_us2ShmREFJ)<^Fyj?51Nkf+Ii?sYGs9xG&>Zk5FFKi;(0BqEV8!_a?5# zIDI-aQ}Imc(1VsI%v*;|#s(t!))|Lp;$61|fm4avRq2!?K@mXWr6qTVVY zFEG0LT|`o0sQd%7M`a!#%H=(4pa`aH?M(Z}p5Tan>DnJqLrQoHaGkErL}V6I8jC$k zf=qja4ck{)9f=*@h-uTImW4`pdD!M2kxQY>)#^ZG0*PT7h3LB&c*u%cAIOGLdR#dUr_N zzp=PbTu1!9oa|pXhl6_z)5X)sTkM6eYwEzLtAT{q5_KcvdM#n_#^pf7RBNESe^#0o z)?bgC#cf{70CM!GEZ+{kNODuw$1uUC3h}&zKYi00(rX2Zf2K{)Xi8i1 z1j^q>%`crn7XDXUWx8tFhrg3aaTyDUz8h;kUvSi~4+IQ(q{V8np7I0)ett=tbRvi9 z3HdR@&tidwl>MXki5Q*Hm=DcTmJXwn=~+FFhNAdXqQ12lkTRBM%B2GE$Ja;(h1(^7sV%UT!P6A0O}o zvRo#CWL>zqC;ZW=0PY2j+`Q+;S%^~wNDi5}FKjPWrl-BNgX%kcFv5!bT<;5RP>Xqu z{GKaAk5g4kI~k}kb&0)`=)R5zy@xAah#|V(gk{&FYiEaAOIcpdZTJtwg4^jEIl{8f zc^``FEHe@j_#qwInde0vnPXP>2sO5k#QGA8KA}>g%A$Dq-Y@)UH-8}@aH=Hv{wyPq zY)QaOtf3`mM~yOs+dzufKf1UgZ4e97YCp*>-vi)-Np-Pt(DN1;zziQBjhC1TC-<;d zobJWyFA$Cv%R+<}D==KKl3yavsR{B6Fh;&#wad6R0kh~Y(clypyVCwE^PA4-WL14j z6ukhMDI-CtsEaIXB)!5*#jVnMtu?}WEj%PqoQ`-i_K0-V`>cK-qVJM&#@r@`2au`J z-W}Rmea>M&>MF(+3{(TPUu~DWV`8&nNWVJ(G9Vu`!P(y)Ffpr&M`oVA+F$0f(g4qh zN1R_!y%-YSqHhbgJ}pXEOdIFMBQm6%)>X+rvuaq>Vlrh!E+lJ$Eqx)b)6K#!c_Z|g zRi!$U4BzLv0hQi2$8&n%kUJc0CrES&!{^=%Y@bXfLF92ZXo|0GS!PwA?g5A}@wt zN$8<9>3Wgc*~L?9UA|e~T00)$+e9Z3vhTKPf3U;i{(&~%t{hbMdzL^d8*nJ#@`pn? zJy(Bad%Z1wzqViRolfWF!&mP#J%5)ztT%A&+|7GeFXxZo_B34!w5`~Gxhb&ez50t^ z`#&^s$7t|rGEwONZMx*bMH4Or*KQWH$u~t3$fH65zxFrdi|Fzv>W_e1(*#5R&wQm} zkS-+OT7~Ec_T}|du61+RIYIoN;||lc1i_g;^qLMwH02Q`*O!ji>>0M|Lpd)yraesJ zRa8Us>oL;gF{!3^XSho^dIcNf?gc3cw|y??RUf5@t^AD=I;bUxo6px*)!Vf_bR;h~ z5Y{Pxoe5L8ogKoO&`$2Xs&4AR(llX~S7&f?Z6_U2l0m;mcIfLi>6YFbvO+@Z#9j~( z>L#b;gUF**aCWU6oko3U;)?NRsgJ{KQ$B27SaE3SMOO45VODK5^+jW_ku-IwA~gznZY5w32!R#VT^N4H<xH8zpZ5}XX|7tymyV;tEpz>nj(oR^0CL$U#{QagQ`@<$;CAgD z0xiwAuA!&FV`%SxKtu}p9^-So>N?H-&zefB^kag1_<&;J88lJ&(e#bVT3uZA%sytF zZKpTVQgo%yG!s&`1G~RU$)wr0hZgz|)qsW{`Bw{STzJ^-;+)`CMgIz#{5zWwrz%no z&{&z(Z6&|Wu1OHRbSNvx_zSBMo3d^RH{_c@a#v!?mXqz0}nMFod zGY)p7dbi@dfzepzmOhZC174Q)O=d$8c!ogtMv~tE*U$EmXHe%JN(?nX1inEQ5jbf2 zIntUVJ|6IH>qax=zNr!Pf6{w$GX@p9d^2Ff$0L=f@3Lv&dvuOvF5seEJjGCSz$7C7 z75;J2Ix8_!Zmvv!q94kt&)>15sUELQ^W4g4zBos9OT8Y?*-jtXjW8o!i+^=m*b%Fa z%TC{4^&FEyP7}pQ4@PG&WgGkD=lB&F)PFs>()*t5rsQAHyE$IdCe;4`b!BL`9;AY} z9*N^B3>$DW?;43H@ZkBJKdI!zT>So>s4@2_q7 zbLmec6!L(Q3pmEZ0`hS;355bn{O6D;PW;TU^@cgd?L_b`&TdXTG?fNs?m7Ao2-&Di za)11}R3q70Y_NBPxxSDOA6U&w$SDpskPmk9Cxm$b-pbWEBq9IPoFL+#ex`pLFJ$D`=nTLQfR`->2rINDGX7QMdu~5K_?FJ9?tpo#nx5Jv zA+OFUHT$h)b#uXcFMp(qJ2bMBJV?P)3+-p(rKPW_2e!+MnK>?)>tpNon4!)DtY4eA z#hfIRuV~63%tc$!1kC=NGTXfs9$)3FH93q(3H`=6u~>5~-((-b{ZCLmpe~sD`W2oq zkRkM1$+KUa=^n>sH9Y-XLWRSQE{aOjH3gST?BhrJTGCnl?TPE2D7N_-CcwFR;j}Dmy~|Nv7|F z{+a&JQQ5*WVtZl0j~=54?*%HfjB@^dXs;&0{~$a_DG}QTejh0?6$P+bOB1y)I%NY&r*7EPZ8Ni^ao>Zi`D%u!v#NKJi;sQ)-+#EB8Fmi& zJFOt=J3?dYFyE?@zFQdBXQ$;W`8X1~xS_C0jPUfW5PbSxf83)d;oIf;^pl_0y!Y~b zF0zB;-@)cRv7@5=tr*+Pg(B9Jn2p#;@y-@+WuiBj+k+jUaoI1{t_}wwB!>+o(=QP? zt*JY)%kBvifI(y8Fe_cjNoenj#4>+sg3fJNuX^XP^52VV65y59m<_`a;aLX6^ZQX%70*_%I~U5uWPq@q+myUHim0(`jBtLVw;hn@@LR zB!drKe6wd7J6CXtmG;kakBRx(!E@Ky{zJorCXM4E_s9;44QvYi$GGQV}C#+Eiy`j<)dd*BTa-9*(+ZbXT`= z4w^JD4LWg5GDDRS!aNNY#RMFaU_cZ#@ZpFE!+@IR`OShro9?CQef&E!TaK1+>KY&= z)NP&Q?^6!UHcG@*@UuYYPCD$g6|=4zoDs?VHwyX73ed*hX5CPovpgigMMugVQ@X4U z+uxF(PPP|bI_Cwv0}cRkZf`;2hZrW3Bvb+tiuY*Q?$C^VKru3waqFd-F^=lD5YI5J zX;mR_sl-QWr3$Fmi2V#c{k!XWs?m%8NxoJoNd^L1S7|#xLoTjo-pW-3|l(HGD?7oFwb_u(kYW;6EJiS%o~)hAH>( z*ILeLxXoxur64Is>K+Xw%o{ga9qn}fNzU)9&fxjXuAk>Q@WFYbe|PysoV!|%IY%0; zf3xwe{)OtG+vqG&)p^o?C49xDlFmx7yM^)ms}$_Eig|4MH}t@F)2qHjU5EL?$8NVN z-;Duoq#n%UDZ_ZR64TyrwS-&Ty|v!|ZTy(;0;Ldc@V}>PFBz~0l0lD0gpWtlx&3%R zdnN~O;?cD!oIyg4M%)v298Vt=J#mP;VOHFTZf&f#ii&J}96e+J3>=-L8}!uB>cUZv*@|J7Zq*Yhrvu zL+HkcUvS~-YxT3)`6+(!BDSB@4m*4XMtp5O@7G6mJOB-_5Z_LBPFDgLr9Tz+GjRpD z(SxOJ@llLJ+%LL3$)P;9RB;Yk(%P2ajO zyatp?;g2JD{FqU@Er7oq`nv4ZuSlE))WI5Uq4-caL5qQ-disYi=x-?XgKV#tnzEMV z98A*Q5Ji4Vck1o~YFO63(1GQ^cPc?pW6sc}-P0vj*Dn?k#=aPQV7a2%WZ4yHGJmQ}ob zXxL@hU-Y5NqD}1s#i#Jt1kAbckqu2|DDEmPMt9}*%<8OOfy7)JP9TT*t)(YmFJ*&P zg3?HDml89sN^GePELCQN)*=;`<)<>N&-X$%VSs{co3l%p9k+&H((%E#DqMmf@jh@d z0atcFn&)8MvesyilkhB-8t(ykuB3Z$W82A2SVI)$zJZP(^TF)Djdc5L0ye5Ws=F2V zGh6O`P`pn~kzr|HDx0zW?ryUcr!sfM0CP|k`*|xDIkj=1e@qf`5r^0ODn}x+_|N3C z*I;GvEM10+^yq8Pw3}cj)`=OjnwK9Hw%xn|nUj(~%MZMd8gc!O7G5M-Y?IUdS1`vI zfqsMRP*;UM1#o&IuBF-5JTvrjMEjaW`x|>D?;Ey3SZ}{iy)k(a>!oc5B6eLC1F4f z64HCbDUGu6g%4kmE6;@iK{c#q(d92;xPrqb#?9o9iS`ttZAi>h%m_o(x{3 zmm{qr>>195W&GV)WVoKVM!p|9qpIkvj$VMg zAn}Z3ztjoub%a}nY+Kax#b%*1nH1}tvT)T&OyG%~@MQg7Evx85%*Pgylhi))tz29~ zQ=R8og8U$>Y0a|5sb(xy1(6v&vWlj6?`7_~4lD;D$E-lbKWJqK%J3W{Gm@L4JeQ+X zS$-aIk;)W2P16x}|F*dk1QMh?SV#ld{Iywz7`EfCs+lqHT^|R)28^166F*8*@~t^~ zHt%776BpY2h$C}fPDv6#6dIXAyA;UdZ0sfWCK(s&-MsqJ0bV3O_#R>v>^Urm)C&fi zYuU&f2>j5A<~}ekqQ#nP**Xc@l<&Ih=~>ybZLf58J1iC>djeesfo2hU6q^?cOBM7I zmSr3NDgFm)U*&{yhxAPu+qC~1?hj8A-X6uyMeYea$DT5WVzvsh?X$_KP4XL3L+j|C|qSI;8rr4b7Ks#r=)!!B4`uL%aKuGQqmRcfK@hiMIqf;XZ(h1>P4BZ44N`2LN z%6f9Ho$h(I!P}ur6z9pdNBnkMHen@V$G3Q-0EpXcWY=Y+ z)LPUrb~+7`l1h&KpMuhX=xNCu6kFsBkUq;=q$KawxS$1(lfd3ITdj{p{0+O{=+K-t zTj%^C%6et(gSl;(zu-+?R~Oj*vP%oYCzaP0|B4n3N9eWwkale`Y$8VSJ=C9N+3mc$ z@`31hM3>YQ3-g9C{989#ea(<)V2&QakTLPrjTI|AWb zMV~Oqn?N_#j~08%?ev44m1s}lYe8{wXo-j$x;yyU*SHs^2X1ER=)CFj0VGYeBUY({s&k^pFiuLm{pGax7<>8i&cJyA8Zv&~UH)kK=!SCBH0qyfyc2ISatJf+#l=!C>-B?m zQTSYX_svGXauqV{e-VF3@9=_62vV@|jlA$7tK!go;vVzVRW8@8>nC&M`t8d(kV`g? zHRS8E-uYQNaZfI4P8wvd#l%>NPWUcEdVZ5=emRSq(4m&_=%a6qzZ~|PJjywQQ4c%# zq@f65xR-wUJ%Oi4@y@2QGn0`-hOl&#i%41?QQ1 z(W+fjUm&lDBca^SLk8xn*aJvB2bkc|v6eUG9Q2aZ7EdZPpdlk)Vn&7w)={FTZ&%ZC zw;*L&{jFVp?}lR#EAVNPiTo2j@vzM%chRSHltX6AJF3r9;afb;P%{qDZ6enK?~S9y zkFQig-7>Z#S@o|Yk25^q8dFm3{%y0#*S5KTRNQCVf%8ZLhXQ0@EeEKCBo1rAeo1m4dS+A#;N3L)NFF+k<;ceJHZsi|WM^?a)o7 zZBZgUJ6iIH%F??S0LIxWxlVgVB`CT^htc=5(w5Y7qtv~SXahcFmXiHOHz%~1vv;N3 zwjE;ylz(~7-h2>JEP+0T*7d}7j|)r0#~hoyLR({JcS_Pnm7a3jmi+0KsC6D%lW485 zhTp4Bh?7sS4;`*1hq6jI9_Bfe@X4+J<)+VUgI;~sb5oOlI#Ei@bL9Lf9JBa5=f9jU zWt&}>4uM{(eA1w3ISWOGwB=Kg0j?}pAfDO@uYng=3|1CbD2;&Hq@h zZ9Jb6>#&H@Og5M^hq&D>sey4YWECW z*r$8Fb3(1#N_CTof89wlM_(Ypm6hN4Kh{JV3+JklJ{Dg5G;;SpP-z1l zOw}5wCmkf)TuWIsZw)s*^{GIUp99N_hr28ET?<>5^E%&aBlyzy+QA^}>EF~#z&QeX zQ|oLqI%*H{v+#3>0K9_%4;pV3-1ac43YzWTvEVw< ztdQ@tl5o`fD$DU%%|O9+)b_-fN&~P%f+LsrUfaUg;YyOnewwR}NX^E1Veh)Y2YPaH zzuzvvi{Tf`yPwa1l}A^0LoP0iH#5qLXPYh9*Wgska}!P+O(+fCNMUtq2-kFwFd**FX+2mx~4%FdFhs6oO`>q#SxvHqo z^CDrZVSh^$f#HT_e*aMcE|Savlh>##YB1-V*`2naV!aT_hAPZ6fxnu^!!q+4h>IQh zr~XWz^h9L#CvK+xM_<63_<3&J;3L*cfQzQ!A`xMa8eA{vKPF}B%C?Bx3-Qs^i&(ez z8oNH%VAi_bB<8~Pf^kMqoa98=NZV7y{qDr7G#r$-IIMN?lQ4kzRUJ}w0bAN#w*{K5 zJFb9Mw`_~NV<|>oW_?A-{@uas(hnM;U1yoN!&MD@$DEkoZ>Fq2(``_B(yMS4aR$8@ zZ4+5K4=jHl&z?>i6FEyjui7l-4iHQa+Me-Zwm$%3yJ*`6_mKZ{&EORo%3yMK7@f6q zxJmUr8^iyxM)8i;%ZO})N-GLs9!;i)u1n#ueG-m*;O904XAhF>+Uxoa6iOi{kQ;jV zpik;4d!T}2(o%U8{|40e}P@627Qdce3Yp*vEuS8VRv2st*NGlLlgk%$tn$FXFe*Ku!;> z|7TP6hSHW#j?b_|7S#ki$Nkdk`X=1s`>4Lz7oc=IJ@(gtmtCWN6P-0nrAPM!CdLe$ z1f3uwrDwW%*U-kYjUnKRpnlkAasRES2_ILCdYjoCdq1pHFl9H-a;sSYg*3pcYyks= zY?_V2&588yPq-3fAlqz2b3NF&w3MJgst6*rm45?RqM((C=mexRT<*cD>mcBg!6aQJ zvcEVplnQvXKT-s5@smtN)xNXn{ub}-vy+!QuBQo^CO)8#Ki;2`kJ#jC^nfK?oS*AF zje5uTDnPOdf&dMC*9U*{XTP!chtVCl*<64;yi|yoPWU4FxYj&a=P*Pjh}=PoIy8+w zy^Q%OHUVsTqs5%@d@M~X2ID19hPr>Ww~H75OMnG5+__4-CE~r;vgIMFokY~lWf$2zlsgLb-K~FzO*c}wT_&EHKHaaL5BK_EPSR{BxxvelO;G)Gs6PG;n4yvq zh;j=?G1SUa9Iw_B20F-pF-j?4H;)$T!0^z2QiZMIEcoHHpfm8Zm_A`mKL)=Vsm}9| z{;rD%vipc~Yx33|fQNrqAukWx+^M-D^J4BEQ^M=~U9FHmLdMd_e~=UO*oQ!OzG}cY zcF1LY1?(tGYsMVkNY1!6@h!Lb`2X&7hC4P~+sqfubTZ>n->l`%K869%H8cK#yrG1H z5Z9f!k1ueh8kdvr$_#Sv8u}hmmkb)3yeeq@$vr!X*SVLQL`Far8Q1%tLu}r{!cuJ;#XFtoTIxNB`{sW#;S0uqC1oq1Vc6 z^8#`5tU2Us?R+6;0-7-9yu~AE$v8xD>jOic7bnW=CCmfw!1$;qA_s%hhk2KWLQ;dl~vpP`gEZ-DOf+zqMi|2t$CJ=F2X{iX5!Y zNZ+jgM==AWPu2dJ1Wv0QJ+Y`aD(uUH|*u?UJU1NlEM3%E-cS^p0kng>1@;nr$*^A&|DK-wyaq8kJve363gB> zm=Sc~q0J`HnLp>LK~w&T4g0MZiR7s@+Gpen#V=dGnw`WD>G|^GLWq%!N;J~kI6`hj z3$i?54RYdB!39GJHyU+xYKn9l8;3k#eM^l{L0Q#LTOnL(n&N-l5Pg2vPc)p^2=lxV z{d+CDtCqio5WrSlg+bmHwOyH-VIHRXP-tzHb%Yi8wihRKK&9Q84?A)XO9=s)?B@BACpNZC|-LLHUHehwjD=><;f(wzZeqF5q&4+(Ub5vgH)B)*eZ zZr8zE=D$-0JGs5-W0>AnmT%@hJRy6MYvpi+(A|*> zo*lF>rRy5Ox@NLneO%=-N)@>v@0i#7g@#HQS6ZIb&g4r#yQLy!RXbXd82 zwxHF%+^R0Ep!L6*e)KW3)-Sl)aXVHtb#==U->-bIgP?E)2jBCP?NpQZrZ)l2y_nb9 zK1QoWHV)SsE?JqHVZjiyQ;jB1s3WNLR*3ZiLELb}ziDN;J;#aF%(NWV3Ct9d@@g>7 z#2{9>$~?6Cz2YvTmo$4(^wsto=1G~o%pr8heFqx#4DQy-|I%66dV1Lu6P}@>t892- zq10O4VrDU@DWL!|57v&bc*=?8e+hma3GEU7F6$$z@x=NKIMd$9pCO&rnog*b2S&am zI_Hr!VvmSFEZ^ApJ)NgFXa7?ZiSGG?Z5Z9o@|OIzxrolylWexZ0OJ)eBAq22tE}Gd z;h)*wB0rgzAj)4*sd-gN-0gR*_HWmFgNj#T)LPQLy-Y(OaRWr+n~m7EsGe6OrhCZ} z#QFpup2Zt6|EK^4Y2^d|;P;wdMP!I0*E88ZJ)?gdlX+rjVq50V)n$yHwSn2GkBR8F zsQ;AbLiDz_4ziQLz}BU?eEFT*Fs4}191Sj=r}kw;{IwrSZcyRo?L?YjWRvKd_=A>SbSn{RBuAk5lb4$6j!j++6*hC|AH5Z`i(`kiDOvqx){ci6)y)W!Cul^=^ zt`Uq{AJe{v{zM(g-oNs4t)OkyOZY*Mcn%ZTsn}WSCy3ovZwuf1PHw|f&IKn02gWZj zLZug?ADxos+5Gijlo7E#DJ{gmgu9EBg)-%1vZ|Fq5$CK-cy`4K663ys)YhlSU_lNH z?-c)OcIvu%WV_hK4hb(Qsea@T?VaWxfOlW|n6?_p|PDP`_7A z1mK-{QD{_p6eW)2-e4)P-vQUZOB`unzH~7!Y+aqtVi=~%D0okmYWQzd%}0%R9Y<(& zVR`eZPc<&v)rsq^1UDxjZ%}_x)8Bzt^iK8KN!-LsvOFw)-D>W1CrWfyrqnH61kywkVtf+SX^pc+t;ZN3SfODEG58bsjS z?ocptW)-&NufHF;_nSVwu95fMWD(l3%*Gb&(Tq#CP{%njxL1G1Z2oRTQ_$MdA(CE}a@W z9_k)1(6LfxXwDm3yhJ_4wMV>7KA{*op#zIGpSRPI(%X`V&PF#CuYJ9LtTwbfQU@p( z@Rg^~&|u6T(ZFWU*pFZ`eBiA34fDdB=k5gc$9KnZaR{o`#H;PHHyW~+cc-ua5J-RZ z__q_MjHm@bIm{{#HJ|^<9UcB!=Nm-28$P-jF{TlLfcLUeQPDZb?-u*A5k7ml5cNi>)w@V{=q-z`i14- z#M>zr39T2FndfUA7rDbbhn||F2OEO0vy>^^E3UjVoOs<9RIRk{fcUV#+luYRhA z=4_z(gt+aiu^EbEvJY50mHHhsoTa>XgAvhZY z`4nn83cnxa_KWbbP~P@R-OCQ~WBi-MW@!Xs{tJxwPr><5Hnn))B@_q?~mHgDQjy9sVv)tw66U)M{Nq~t2Z!hQB$WLh>2MKe1&y!h3j-4gqNLL;a>CO zve-Mf=pUdQfO`5pATNBEJ&)}m0gtk!c4c--2JhEOrt+mVqK9ciMVGNik-6VoyFQ4j z*|6_Rzd#y5;2Dyzq_|L|jSO^>99LXLwqV9c2An1TY0|3BsO+nrF}Z=eLsE;|!+1ML zY8O{pxs1BMsDBMC*e3-IYR?hf%|3j4ONsmU47jvUTX9bdjy7t_>v;C|7P_?c!w)DJ zUx9FJuo)v<mfn-76K)Wc`i*4J=wPAN4 zxa!Kwv;9{0YT`F8-cIgO;g3Vp)zUy4kxuZtW0Krc0I4UfCZNz5wwI%#+EBipgg6er zePCE6uD$S}A>>Q8$Ul%poTodGe-ppaCAl7?tI~A=%4=M5%r6*MQ#!P7HhiUT_5IyR z4~pd`yr;TK5jAv6vp(>*5#b94AlonR>Jz@o&0<$`X?eASD&5t@wPmO4DTK zY&rbzMQ7@Hz{S8;^giZ~y%HY6vPO88N>!<6da<6SiJ*1IQ*g%>_S%J+EMu#;>5OtJ z3uEK@%lhYJT7c9Be~9z5UPl?5>9@Nn=OijV=b9kEcg*xQX2vG0;n^w~6@2-A(xDnO ze;Dq1*9n*;M`|!@jU`a?=`g2+21d|(*)3|}Gw{yXQ^`yCvr~7I`3+>QbdugSfyE%_MLpmJ!%&dXPjBvv$q5Yw^^=avM zlo+FA7xD4#{Od+R zdArGtii-MUAUIU2QAfB;_o+vkn4!PLE?$GLtDcxBt#_55rXU<&GkZ(cvg#-5S{lQv zlS=%Dnb^AI`mMNe!y>Vr-^bAGKB^5M@HUOGnc z!p*19!MI_|*yWB6%Alq9Tov9qoOa zR>bnVD|n!K^)MAgFudFyyD|T;E4~t?+J7qNiJsdNy@xgma>GQMKg2_Jcugrf=a!wE zDLfregpN8s+2?#ZBPO*hYVf0n{4&3!-{G;;CRTE$9=U&&5_mVJ}EEuMrc>pG(a25*|B6ze|ebC{MNGt48{v18c2# zdUdN|snqS7_5-8~4I$U0AGu?y?e>RB9p@Qk1H&H}Ke1xBGZS3>erKQe5fo>B+QY?T zopqi`sBK2-5BypSlPK&)h&hJcWeYemB(WkBU@vH;mYu$~2KHqrTXV%^Gl$e-P>bpQVzhKnZ z%EQ0~UZ)c+FrLr|ou?33O__Y`f421E*ovO`LiR_l`ol4UCkTq@TEb!l&FPZ7;c~TY zO!NdWWWu#k)F#625fpLzeOs;KbXI~p-E#xREqy)gXqIx)g9#^q7neK2} z73j`y2Va75;By`J;a_S;?~b>Im@Yn?>Hg8?20Nl4b94nR2ST$#%~muLi>aFd^-qS7 z{?^guI?xjO*bw;6D$?|lrq;4mmDBD2LBffhwS5Ji1qh&*GCOayu)Hk8WGVD(b?~tq zDA7%qlml=BK*l+ht z4h`q}`j{zKlfA&3<$5#MA7AIKm3;n@A8;N|y@W9^S4so8HH?Y(vpgI5zH#CX&p+be z99ZX8VXZrs1OA)sXM%oUXI!m>jKm&E17m1fZG;?R3^TL{;sE&5oB{LU5${uH{#7NXG|^@s;p5$n<1&=bV6qgShX zt|s3>=OZ_};BF*MlPRc-JB7|)!#v`4ix^`TP)G7QZ|(B)qMy&@g2k9bAbs)Lhk9Bhs!U?2KJ?U(vdBR>}G zzTzH&4|72$+XqtnTcI~0;Leu8nh<~sWH9D1=!fBir*+?XV5p>^h4$X4REvM2KN<<( zw2$|~^cPA_=L^;LscFyfM(*O>=b|h}3f1Z@anVVF7hI>(yJOX5?Ct&NZ!z_=Q5!fu zzHo_yKZNvjE-h*j^sr0WM;y@gqqejCFDRPs4#Xavku*m)guP4{iFa?arFFuGx7xzN zL+3SvXZ{(LeG!`yiH2WuinLu(%D09K#QJxlQbFkTtH-eF$9jCU8RiL6!&l~zHRL89 zf%-aH7UjJrbSf$h635#)MtXfZg}mxb)*`qECIq6dJ3|ifnLaopH}nXuWe8F5Y97s5 zoudCz%(aF0kf-AS#3hJQb?t8HLFx;)gBY5~*eRd_wLcOFb7R)%K|0(;#SJn&U#% zI8l=A67H-jpp)<1PCj_w^IAM(cdL-_o7Xu@3>~X^BT_gd1`Hd?{AE`i0vfYq_eJjS z0J3Iveq!{((UTC6ex20IO0ybuV2IkXo_qWcf`Xvjn6Vp_uY-@hLwq>KHR~a2{3Yxh zN}HW8q23DJ#w~qCu3($X_Zr)ukjU62!r)PZXrwO0d$tyqA6ofC&AqU%%eI<8f{)X2 z$%IY$l>7PSNbAvjKiq?RzJ!|NF$-(W&#Gg-j5-N}FgZI;%B{-A2dFZ=8uhEvlL}$8 zwa~mHDR!gjoWP*(^w?5?vWai&5!?zTXj4QyzG16b$OXNEZB{kf13x1Gk=L}9hY{{& zxauo3r_RLU$fDM`XzE@pu(2m)%KW+_Wz&sQvC8KOV3HWdJWD)Jodw~r;*chr>V#( zhw_nTn9?blY5!cMX{7XT)$Xi(Wlf8T$$o0&Rs}FVx_EYeq?6Vq>l_3pct9PqA8YeB zl6_z%zwpbe&oxNigbT`!H5_S;%ZE=q0Ig;*c15nn2^hOk>AlvPD!mx?H3=ShG%|$c zJEfl(xlQq^6Z^|t3&pjU`TsKAMGV_Ora8-wabpmMh$l6hoic6gL`o!@w;47z9tNZ&IG022brxe7v2wO!p++@>weW1@To+l^Tn)+sP+TPs5*6k8A?o$-6|PK-a6w zEyTd7>s(ZH?sAsf16j}faPo-y#Wv(NvB@r)d!uOflX(E@?33^rd9gR~<}u90d**^E z>&^(>c;Iv7zpd!@Oi`sH1SD-v-aF zn1wAc*`?N~+U3)26Zepw8)0;nUrz5ljJ3<&z%{ggOWY6e42k(3IEzL1SzHoqGGHpl zSjUi;7v^9)uN7Lnta>`?3iVZ97d^r+YbANPbU0tP^1JXI??>_s;`K^;hQckt#xt!r;d`BWl@)s`)7Du z=r;H?bvaP}gXRHGGerL=v(w)P_<$C#=>6Xgu?ar zW*INoCur#KzQQZDWyTEnchX4O@@z7RfzcNl%7|~Vl9mtNn_@38{}}fIKYl{*NIrG^ z*uZ(d?IDtr_bVM`&?OI;P7JHW+HWSVc6&oOK!Q-8jdJWM#)x}`DI`v|r}#aKQ7U|RnD84a_Y?>ZwLERpFha2Jh676PDzY&MIhIkQ8d?;D z?N|Fl+aLN_EgStTCwvq4@w2)9p<~eq(id#_UIcYr5rwdoSo5F6^ch)X4@B$n zl__EO7xqwno}X0la{L?+@4c??BdzqjqoMjUmFRM7{MXnE(EpOp0fBpB(#(=j)+(L+ zw`V6qc5k^FDN2!_r5DSO#*FDRwqRtH08e(9YS%bL5O1&i{CPOmPRg42ai{ZrS;C=*d0N&2hz=y+E66ut$;WgoO2e`?7cE17u9*~&Ufb3c7fJ11-s=@1(SFy0sMCSCZNv{Z57L<=;y^DBdu5Ll_}j zYM8Gs*8~qzwDE&1W1CDZa|5j`YC>hGRI7MEI0nZ%2O z!{M}v6Icx$b>&WJd$`w8Vd>>|ixjvEtAOJpOeJGFn5Ffqr{-6eQ7KN3{-L_*aNr0* zca%7irz?aRvqx3*_YJ!~qLy(L<+kA^p<`Q`;$iPOo>5P-)sg4Q%RhZVDE``(RLs90 zqta!fC71ZFXy6_^XztN9`7Dl|jPpK^|@KuV$~7YKxOMj;kx!7;Pfn z;n|TMZO3}K9F$4zDP&1)f0sq=>L3DT+9Xxppk$Zjgla86-+SexAXj}}g>r#@8?i^y z=<;oyq|=QuZ5PnSOg@i2pxfJ)HySl(+hC*kn@R}P?@t-qPc}8LZkX@(dqg`ostO9$ zBC|J+Q_Mor{PKchR}`}V6R>Z!wN=|73lKpi$G+lqbW$R+&43+zq#@dr31 zhpB}rcCUUu3x~_U(*`hkh_4}fS)7|h3yGts2i|fXh`IzJo4*|2_1F3YORdz@q!sut zRjBeE_TyK`$3)^PU%u)u3TK8 z{B-4b*d|c|=W>Cq4uqX>o1Hd~zsw!)*->Hj3)N?oO6fI!_;hZZxVzUDU#Q-#G7M#C z*xgQ1oV*_G|1G@NkHJxx&yjvF-zFt0q(`LWLqKn*sTz~@>>WsJxL#dl0^0AA3}lr~ck?;HWO`QrVa*3uVRE~p68#l;M6z307qudH2X zbSmG#Mqp07(#i}*$5bZa*@*Wc=AKt$uO=Z8RcgDH3pc#f_qA>BWVXVuR~&+Uf5q5x z0CQSJJg^<|WOk=H1^iL8b=Dtym@?x~vilSx{GxZf$yv13j(YlqA@RTA1I`_$;B4Wl zH|3=Wq&tPTd}h&O;0+Ke&*(kU=Hxm(kh>k_ILQt(DTO zo952^BEoAM3-%x3Ok7rBei7fMjv8~FSyzo}6%f2M>xA$HTRwU?{bLdD9JAnkI+PLD zr8?cTd?CViMr+ygM)OZ&;5u>ghRA>;oKNX?x20AVtf;-Mep_Q^(^;{$87i<73g=AN zDJfJ>`R`7*(RJjG+Hy4#^OCH<`Cod^jGWHbvBWiPDJY43br(qA19P9KeW1PaX(|0R z{F|RWg}5cueMHNNst3@?5VJojc}gZ2BEi6Ia69a6AXjI8aBQ$+$cYj#zc#eCk) zd}X@ zuf&(H;-j_YBDqV~f8j+ZZ_&B_5;N6c_9vb=FZ5)u0#-(%0ASM@_;>vAKG%nN3w#s` zrk%uO1Me@$tAC&1M!pN6PO7K}AR&sy|Djgk!w+0coqc`?g6{!6EjwCxIyj$pShPz0 z(R8`MVTEg}!~SnY3?5FNkrB7c7B9%k9Ovfs#bb;!Gc)Ly$cZW97hx7{i5nVWwz!KD z(ho-__@@`z&Wwjivmc+jF5Z^bcC|0+dcex8OYqUdpr|$E{F0H5nylgVR!DFprOnyd z=al%)zbtd&ue2y-6b{E$AmP81tT+)8=A1`Lj|NBzLjUdQu_7TsPDZ4 zD(``{6HIFLOz4;wCP}|KxO^j6o%wy>=Vml3)a(;v+@qiHw%$KBVRyXZ3gDJ`1wAJBHGX_L?r~e50Utckf=41_B+$R>B|Ce&ht4 z!HiK*n9g-`m%xSnPwFN&(5`Mt#Z_MvPnP$am3>8K_zd^m<+@IHS{2HE4`1I908}@x zcvnYx;}uWc`#NV--Krpo@O_(D>nw_DGMqm%Y+8SpdZZcnwoAIM!q4ihipFmRzxBFb z;J997U*ml7^+g!piEKz-)G7VA-tQhHJ*-T=<|L@Ajp4b&Jal8Ei%FzgHoIQG{@-k! zHf3g6-gYnDp;aMCV7oPkYscAGY_sZ{vOLgeT;LX1mu}WjyC!n-#zN(5cA0)1vbnlUKbT(8K*n#L zm%uyVrdQnuk>^Y9SRoBK-@&sd@GAv0G#uBh;9386d0c=R|scvN{(am+c^GZ z_7upG{B)Scu1Oq)V9@POu{J5S-&6sE^Pc_9Ex{L~9ci>h8&u6HY_#L8t&y4O>L7bb zJyo`vqP6yE3kEXBne1TSF90JXDa~) zm#z{x<^nf-H-}l{lym+j?aLitpSjsr&uvX=-41bTG0-(J?*x}Y8&z_lDQBs7o_Y;k zUOeE%-r|VvZLuns8ivWQaF^0RsC_u$LALNZHUf;_Z4pQDnTwl2IBEzamsY4pSofKy zO5`DIr$kwi{D+w2Vop&TXA~(^l4GGk_r7rX8szIJ!W%&jUAS|Bk>X9dW1`7{jvssGvyWXKK|Y5jm8&k z6f;2GIl_OS=Bv?UFJ#*p>U|VhV}Q-xg1+D*(sqo;Oa?D#>E6IYpbM@!_{l(vH_Uox zD%6C(bxK+s{?J(4V$(zp#q}1CV*Re>99Re_F1hqWly_?`(Zg@y_=vhmWO%?$a8PM_ z@c`m~t>Zd=Bd#+^y#H7q4)=st7(E*(IiJY}HTpzZ@DKb>f-NTu{M;ptWNY2<@sSiz ze-TD>6!D(3sz3a&7s@NiQ^KG|F#132XY(SSQdKy<9yW1lVLryWEpj~~)`}N%im}`+ zotP$$XW~>k7~-W55(_^aMeSV#n=wYx60(zlxfmb5X!XxypR#|m{rJ_N?u+FUfES&{ z2_DEN;s|p^>UMg6kQY!T67{R)V5Cxv$xt+f(b48T?E9!YUuNaW(dhL;b}>&kR;D#% zZ?^<_%^SkJ0+WD3g-YK$4a3dAQuwY;ULoU-3R|GV3|fd- zSS>Ldb~itg-_OEFCX_&txKTfrOgbFDjz#V;4vgnN$fmU%s6v-o^}q{=^R1VAR_1C0 zpt-nucq!m&Y!zp2{`H-<$Y;fndSvP=mEYR18WWT8w?2bv%#NRd9_OX>Thm%@he`%_B%uxkWo53&?&I=F=@geygi~BhFc;$F< z^M_og@iTg*Pog_EvD8b^{OS8F_LqK#*of_t(JL$EfcB3@X-W*c22KLu@{w-~pSU2L z{J{7Pk>rK>A(-_8c&QC?@MMU)W&pybSfCU6FKAkfivC|`l_Gy| z!{ekn`=GH5eE@=eT~qn2A$<~|rc}D1(1(<+(tIR%bO4=hpZyoL&Fd>*j*K%U+LsGY zvR7pv{B_mr&qGJ+_7O_ss1v?S+XaANg&usmkxG=rikj z!ZU$(+su_}q-(a*)6#I1Riq@2fI3Y>x0~|U@gMO(eNOLThG)jc*Lo6lX3u_VKM&+K zx8iCfDFYetfSnoT@ISvH@9nHf9#Y+;Qx#@m90$7ZnlLk<_*&~}SfkYbO&8N;DO6q_ zzo6nf{Rqu9$j1+Ej!=d%dtH|NaUUU@eP`|U7vVFP_X5ZJqUmt{Iwhmc@*0V@Ey9yM zL7WX~h@k|VLe~apc~ru0Dy)AWUaSu;Y<(J)IlKjlCg0FJx^iZwShmFqe5w-VjZEXc zSin5+x_=z_9?e1P8&`w9*GE2`z8Z2ng{zUY3a!Am{L|9#gH|;nmgmFwV3$_KlEadxI`B75lII~PRe10nl}~U-!N1Ii3Qy@j zGx8-kFiqWEyk*&^9uf3<0kc{O?Y{b0+WQcd%DpucbB*cw7|b{8`{=~rUg6ZI%KuQc z3{cx#yhw(#?CaR5WSlYVwJqVMwC^FZ9)mRTSRoz9#ZTH@13wwJ5OS27!x3)zS0BHp z4)%jOXEtoGm5hxRqNo>E&b!kNq-Peb?i-7YrgC~EsaJaJqe*M)c{Vcrruo&g0g?m) zN*h&JV#a>?lY57&@!_f&hm3m9&CVO18Hx9jUaOaD)kR<9`GN#{B5XT%PY+d0;Y@By zN%aYxf%pi!5R(3k`2~~GTFtUEY2i``6n>;AufFvRz8t9f$(Juzci1`+BwHh&CpyX)W(IT zw4A0blD}>2v&r@SWlkVQQNC;D8MyTe>+TehcKHW zKpS2kf`_AGW zw^B5z4r)n z9%PCYEiflAj~l$>E_=s!$9uzWmF1Y%OUEjnh5ELCnutdZy_7NbTdT?|y4*uo)f~u`m*kN6^wN^mrnVv>y%+sMHDU!rR#MBUH6n}L z50XJhMj`K|Tlr-%PZaY9 zwLYRGM`X`eQ+ENG3gR2?wn`_LeNI(44}ipjaye7{E^I6?_Ws~8;)~+GCVU7qFi(&i zTxk9MO93w8gJdvav}LO12A1)5PR`jLj=P54YA5{)$yn_f`<4%(M!f?D2su@p)79+$ zm9%jANu!J~@aC6hz)jL4X950Cg!!G+U*O4Y=s^W^4eRglv64t-KTM+UF_Ap$zYX$y zRO=3nW^X2Tbt~{uz|0oH&DL2sn^YhC>?b%WWB^t|J z_g(!~fZ~t@wu>`vAsD|hL*6Le3sEg5{hYn5sl|&??b*GzO~~MT(4{*jsO?PWVp`5~ zOd;vz%uM8o#;hRcDm)I61}xktb|)*tfRN)iProQrQQ>5maP}cn&&-WjA{qnlKUe|R!ugBwl-y0dG zNetO89L*z@+j;V|Nkrv!QC#>`DFTZ9$8Gg!bugaZPE)H^bME*&9Gm6M5seC;OFgy0pZy6jS2}_h1?)m)P~v zHdEZ<^Y(;zO7x9))(0*T2OFYQMA35_rfS|Q^6`Y$4dX3xF^0su76)@`N3$G0wZ9LU zJPgR`6CmO^EDesNG(4~ukyF3|!(Ia}2u*dlo|1(4OnQ)YTd^X2)lsZg(Qc^?>EprF z>HVAD-;d2;l|8H12wd;AV^hD8ONr$CBcVqj^8=61lnpMCM>j3bC9>;ubE4uzJPPr!jsABV1 z;{$2&EYqD#-6OMDm*bMe6KkqfT&hE$*|!BMlfeo5RI!;gO2^8^7Epe(_%MB^Dn+ zvdztJ8vPhuLe~!%>F5&L9&UWVyvePL$8Ha-sHne4^5EY6g3|$$zLURWT%Lz6)A0M~ zh8^L0(pRPY>3BN@N+D`Q)(|G=wFv}jshd$5cGyew)oJ6Xw0+wrIzse1_l#c_x92JM zzw%$NtM-<*vDFutpxV_V^HvZZdH1>IDP7p3PjF3Qqf6V!=q(6&ryRM#;>PkR+GU9J zl4(sF>L?GT^NfHxhmMll3@Y;8jbs~$@QQjLiPuX+u~xH}sx(>TNT1 zEu!z=0Xu~j{PFt9mVE?0nnI=Ay$Usz;Y?}HX4^%lu`iQwUj~*e=pC5(BET;ylK*4e zO0*`AFm%-D+yX7&pE+v>bA6(`Y+*U21T}sZXvGO&de6$+41$Z-9uB}3mwMwP#b_fn&vA9O_lBk^UMOo#b^8S(kpeo|zN`WK7Olutq1 zGDkEQ@-k|^d{oI8C7#)k-l8jsN}^SkV-F0M&!3=GC60U0YG&#bN&;3C8x+hTeRVF7 z_LgQxtRlg^h2>%%vX@r>5;Zd**8%UtttbOL z$$ok1Y}r@(tC8+abF?&IuasqkZf_K=Mv+n!xHIHREV)(ky+RMDwRf{>uyT?*sp?N? z1aU9hE#{@h--|_6-C52!&pU)HBkAC;vRidiC4P9^0+ve&V>TANRi*M!u!PT5u&%UuN$*2L_YNGk!;5il?Uuj;8Gq0aR6iO)!)8oe9h#+Hv!La{DDmFf#?b-DABo<=N5XxjfF<7)|bIyvCl;WhY-_ ztE?#QqoU>vRIW7$Zn2A+O?V-&-4@kyg7(mO#^;T8Gve8xe^{U6O$3Q8rPfc}Vxf<= zOVZw!2-kw!{F(tw^n<*3_=os3#-7FThuiLTibzKv8o6pR+a-rkH;29X>1XhtQ(qhc zb=SFyMlM%Pq2F`-2*>E(yx~oo%vsme34Mx3Xd0*1J#l(toN88(=YGMV76N}&!YKJ8 zVVV|G#Ufo(_@B$GfU}A{xP9+9l3I6uob7{&l#PCwjn+*EuK|6OyVi8iZ|Yy}#dqt< zZRi5jGR{Nnljo4r^wZ|S1k@Aw=vU}J!%}5-{|g!hhI(WSfdVkOr}$c2S2>&dlRyGm zOMqO~m2b3$iZpCVinu1|CMLnCjuYz?J<{e?5P&k`Pp*Idk}b8SThSNBXKAKJNvLuB z8xFs?#6d@cX|yqBT!l94h}Z@Ed9O^mgc42R45q5oP%`&1DVHRs@|aXQP}&Qrj2d zM4kVeQ3{M;>3r=Vd@cm-#W6Js4(vt z8Wbqjio!$oqr`z!>JYPj8RZxTGVuXF*~6P8@+MMG2RU1`6W=-SX-i*s+HhE&+#oA@ z$+C~?UnIN1;KSnGv%3c#z^bj|)O=Pn*0|k zplVG_4pj?Zl%*z=P;M4*m?*_Aj#jg`g>!S*=|B9d!;v@k2OqWO&bg0g@7c|$b~Y+& zu$(GKUOrvRg3X0+6%ond*Qw2H5LIjhf9q1H`wmsN`RHvZ$UFKqLXvQ{ahqJ?xC6D> zX_OaoBTXo_zch6gd3}wdRW&8|^3)|X^6wpX0t&H;QAdBz!8c>&turp*{k)h)pii)M zCxN2f1-Npw1bHY}vSohdA;RL>yLhjvT9R)JA-3TMt;>Wjxqw`}FL=sJU9Z;e45^{L zb)7F!w|k<9=A97bphc@H%Vb(V{T!1J5kwxUBEEVyEzEn7G>J*(*(KvAqh5DAV$YOk zMLvKrRW%8kkXzi(3kli+jb*6ZoEhC^xf4Ez!d&kkSTQ(5%+;LZbUYX>*X_no!@BT? z0!|)Y0r9k=JA}i%antTD)vvmc6ZSN|0k|;|Av&<2zMswB zwJdDysPCi76Mlm~UYc6l&9s0e{rnVKU1II4jmVBZojA&dNp}mE9>vILW321~H7QHx zI0(&ku^=Jao2an6;f?CHI>E0Ra%Lg1@qU}(t=LA3XGX!UY-ZLT=0vF-we}5cKk8F( zZI7k2G~OCi`E6FU1sy1J7SIfutH`f8(cB!jqIGXZ4L#qTh85a*hg9zo*LwhG-3!m=P#TI6np@A!JJ$9rWs)` z8aW4eep5jJN4v`Tl48@@u*&u>)(fSPlX5R-_;FG5H5P`N8dEABs+OzlZ-BqAVSltD6 zB8GV(x|;^oBqF-BtnYdKXLTf97Nn*rm^jsbm$J>bOIX8A9kCmoA^A^WE;{oGb1Prh zE45W0kOd8b2{%&9R|tmk;>Hk79s;gZhSq;i*@zAJfWfE^_b9F9xKV`u!pUDvRX>9Oy**tYf-~#Wnds9hUYI%W1^esvvbi`qnE6o z(*HYX9u6UFkDtXHA4H$s$WNy3KeS%QwR*bZCm~7~n;(J8l>w!)^d#j;+TSL2+&vHY z(_!?^Tddlj4ZEf`Eq@{FpWy$=(&YdK%oCrG=QhWUy`It&J}8~D&~3G6_C=O!Mf?fu zI8@3~inDkYv+UdF-2KM^a^{aD-t3FUq#b{1U$EbsF)LE!{=PI%ot!4gSJc_>P{uWp zH?ImLeSuQ+f~v$>@CDJFfC(e%9lp;2aKRQ~&mB>WCGPBe6pDZS3zWHSHh_E@8e0?@ z@SBD|G2)n4alN>r81C+dY%_W4?!uskd?^G1P<2MEfa4Ki3g~|DFafvm^hEI2J%sXa z-0nHawvA36CGvO6EzhpB^WZNF_Y89;v3#|r@=8fyNKQ2+Y~?NNOg#8+LlDPTmt5T3 zkd3ZUvUBKZiIE;IQSq7gFzJ!$H5?RK&W(N@#LrM?+RBY+G0cBP6h4$YvVI(Dhq}+6 z;}N}R0nl|vr?gl+Z!bEZPg1AF;544G{AIF%_|vD6X{7!As20e{wV3P-^F)&|il!6_-tY0 zf7$-tx)~n-g2*Ap^4ZGAbe>f4+rYxrDYI`=ISrpqT`Hvmjste_twKJ)_SMtwP$iiy zrEL$<`iN@v(s6r;N^ds^K1G1d9;=$w-EbViR_zU`CNz?ixbkC+eVYul(EtllaZAh#l1y>`b!gj- zpRpUgPnMo=9X~oUoL?<&xc)Gx3yo3y7_@mS#^!X!lYy~D>tjO-jUr#2aOMecA$ROH z^#v2jwgRoZ&UU)y)}6aKlt+&dlN+Y~HP?T?sOj^`{^w)v3RzX0gQ&{?s1$ag7yfl8 zrxwT&esb3N*6A^Hz{1)sW2EN2&cD!jE4LhHYiF75ZU40$eHi6LR_q5)M*5$($S9ED zoXU#}#a|}yL4$CUg>I)X;9+;qeZnGt_OQqEy3G8H@?CG%%MVQjct$bvr(t@{WY0Wc z+xgP8JLoM5HOHlk!-+x#7Cxo@u#$JKjNn7`UDh{v@!Zbk{$6C9D zxx)02;+PLhpkwfJU!IM<{sKI9>%my#Qu{r0$EjBHH3!)kxkLMbZm)4qaQtBWzrvO6 zvyHBY+jWW*55IK%@w{PJz7{>yJ^WwfYAvmn(rNs+;Xg;>BQK%Y4zmV6O#aBkOu6TF z^TH&<9tUebb3Sy{hn=Bg*6+xV93a+WMODBxL)ngi+RaypIz^day6Q#VOPiCq{3~tE zgdd<4cP1h`Ds--RY%EV3H5peB!8Rr+NrPGH8UNM7So_a_eTu~2)#}aeJo5ZUbk(W6 zKEJSm8N15!$&`#gW!VW~Khc!EYW&GFz4Xl_=PJf}?|tXjQ^>Q$HH)%bL9{DG4%_I7 z;P)mL&q=bC$h(I%2ODG@@KqRp%=S5G=QrDU*B_6coZejMu*huEBJ;2bz=xJhOg%Q z1Z{Fs~hjz_wfBBKYpT$+_yo=@@ zMf47&hdusC4(arAKE`q57P;Vh8^jVL`M4s=&e@Sa0;fNGbL51rDPu3p#eNM^l=%bQ zB#E&ngdRf%r%Wf6Zy~-%S`}}V{KVcn{7`DOBvW$YHt<0An~|BVreR#~sT>W~l+!U9 z*Jd+Qmw!f@vZv5Iqo)CWUfj_-n6`Xb%!U0rz-+AlrZ!fohFsGb_05pzqAc1rbQu|$ zvJ>6x5P#_I8r&tA{HZzPW6axk*G9%uk(Wh98o@os$ODbH#znpE_;xZJV25cxAD|x004I6f z<6fg`GgodZ;Yh?msrV?LH3RBsCLgCoanIO^YJSQ5y~m{LnRg)?48VJ!ot#c34dM&h zb+vmUgQZ$giSJygO(F0)OZhDD;U~Yag-{Q{%Y**Xt8KRsHHT6*vOhT7W;v!%iKV!Q zf+F9P_7cvz%sa(B>t5_8hC^t1jMp(>r~ZcsJ-w5{^t&ziX9{#evgq|Sw1b1FF>yXY z7bh##k^TNAT_R3!Vbs5;b%w;a!gB@fMmT4F%X`dumY0ig`6S@0Ya2&@6O>k>XsZJ# zsb&UM>g!nB3yIRGsXtkvoIUg}nslFomWl3=3aKMrUeJV^FO>)*S-eDsxAqc@0TjIuyZ(Q~1r55Icfy0ssg+Y~pkI;=-8^sW3(>lLH7AOdP~jZIvn+XeHx(CuC% z3uAvm2F(VH9r-|e1ZPJ(B&BT@$}Nd|Cmzo};$E1GN&IYAL*Z+`$zWLv9fkU5%CQJ; z@lo2G`)!2Fcg8;~yBFBDR6jZ!>)lwGwhA|DrWGFyh;W5cv4;Po|2Ug*|vb3SdwFIm?H>u z{&2JxLGp5gmbnmS>1OzcpAk-qBFW19k%BDA=2zL!$g-Bn61$=rKPwA9p0tzo6nEhJ zktb8hWalP)C>u=wl}T7~Gun|;puU``r)rN06J$j2{oAxYQ|uZq?Q66WTHp0#j5Ywb zSCgN6?rk`qA^TOt>@s${fo^R#Jcmt50-P$MEb?xytQ}{+1h+x2i0Op>8re^>Dy=^s z*z?47@o5~&ILX zGur4^9izF??V7(s_L*K=I;A@<`X$*5YoWc+l6{N&wWPyQ?(4#p=1D`4lKcj@&^LqE z--o3N_BiB7=-Xv-ENtpCMcR5^bK|yK zT14tsKudWF=4C@pNX6is_2Z^LGHb`PHEA=5+4jz*E#)&)YbQ7db6)2->>xPaI5Gn* zYIs6O+ytWnZ%0J0ed!ss4By{oof&$T66{v;7^g7=O*9Z^PDxIT5iin5>Z#l3l3EoZJ3b!KzUio60%af*ESS63<5dZ3pM%!J6cdmb8zHLZU z>z9r6I?Tiz6yAUYZ|vz)tR#Z3y0v;N2&FGzRONKWjl4q}M(co$RL2ot;?m#xm@GwX zD&o!tU!PNd;~Ia`Xz!09>$;z{iXk=xlJ-JxWbZnO@edaGODL}H)hyJZfVWDgcvY** zjei(be~5|{toaU$1>j&&!yCM!m$ah8v!;yzwEG;6T?5gNmC_`EqCJDOTN0$O$eRyDEdhU1Dv0{1OJ5|wLuGjQB zxt6I4nw{6YA9!m{EVQRSd_XTbmX~btD#=r;uk^Qum`hN_49W0!v}sNLecVdKE+V z+-(e1bx8@M5%HX3!MPIsb|T&vwHvB0s17+MkVPM(x%JD>!kY5f$t;>G;$l68=c;uE34I-eN_J<_;dI8swkB)h`1jU~e_8X`uBfD44MVz(af&m)l! zp~KC!1_NcQ?f65jiT?ShBz}WR{oi)l>mF(HR{4;kZl3Qv<;rT!72%;g2YoA0PgIyN z8G$^@!t9}+au(`_5JG^)e;hBOluM11Hvb7+Q_=B^Ftxg_OJptW%bTjdKN#lpoZexn z4I2%|M|q@8H+|urIaHuaLvthU?p? zBLC&&`m<;yQ;bHi`?1WnfcxCqihCibff%;A$-IgiUY0=+Ia&`}Ufqt|wY7`=? z_C;34M;znl60O?32riez?=}0$e=kWck(+_W3J3$=;_Cdc^?st*QuO=tCc~gxie^NV zjf7V2eo7f@_~?^6OkoBS!d)Oi_NyU%S=ZJvB>w!FYYk-eqV*_IITp5yN7D}a^uYj4iUkDvs|e3HZK zwKEr(W?hvjUGD(+3j{#z5kk`-cE~M6+$}C1W(`3dT_;@PrRj!!E$FohLnYtR<{!@y zm9HtBj&ECt263XOfseARrfbvyyOpq4ll1o0gm}Yt2Whzl+o1|3afbOT`oUf=F=xy+ zji2%Sl2BQfmc%X(aZ9^M5?4S( zZV~Iqq84qbRwr2A3j}si?+IwJyscMgI#c_PlR` z?FE^_&w?1-KxnL*+Aq6%CFs+Mr`UJR+-%2blj*!dVLf$9C zJ-3S?kC*il;63h`e*DY8DO}rRGt>-e#{y5H-@8flO>^p_OG`2;!;D0atOtPWQr6#M zOB}+LTG!@LyMBL)k$*?008I0Ps$+8=`=O38@snmDBX>^eoSnK(*Z0FIbHaYE|0{13 zp8_Zg`pGqsH?kYcSiUfKq(1W@J!A;|QCTrIXJz>AU-UK8FSz#B6fj!n^sk7gJP*K| zciqZ>ypLa`(L(qOl~wk;7$;)TX6jLs-2j~F)_)$Fb#$IOt-BT`8~I$bRc}cRT#Lk zU3FHeAV7L^h;E(9?cbU}aCD#jXJM%2@%ZDJNVOLPq@rk-gysmrWSJyRwcLI565wx( z`f6X%F4MvYRp0Bi78ipg9f3ynZs1*Sc|u?bIPAB*-Qj3N&o`Iq?n+|~k|sSI&nKxm zt_APks5wPa@2=D=b9pekHK$vTqGe%_TUhTy z8edk>_qNy>#`F7e{I!j$OAWRWmqgIv>K1Gdx;|%|5sFS1dV+~m#3mi$%Gp(?Tl~4* zR9kauC08>vC@Ut+E3N#28@WsZ*jQKV5Z`mxr$2%G{5R){@W-|sn-yRvTiGvY12;aQ;r>}nz{uvGHP9g8COw^T4Ea~gKW zp)Rs?zUwFDbE5x%EWg?XAP+pt8jczk?atOw#(d^qyv40KAiC_e9+^mG#p@(f@H&*$ z?xNQ?U*Ml`@7A6pz3U;Qf@pt>;-)WZNuT*1V-DNI_rwKGAg$+9qlrZG{n3y7$oIG( zJS#4oHC?@0(k^`Zc>T#H*7TB)=;B~B*78|soxZ><9K$L==N7igANhpy!%ZeEgjg+v zP%6CAo}ch%6pQ1KZ*xbg2P8=yQQ9GNUPJ-5p!_ZEPdv?4@G+*GSS%1vUNV1$5(_eo zC<+2q^aWVk3dvQeCE!&IG2HKi5u$U%uiNrK&CGLrQ;X6h%cJ)`L+rM2bgQ2cluAmAtO#KGnd6De~%zXFDm%g}U5vK#8h0A^X2XH9E#c+6BF^KJ48DRH< z=VbBC|9iRAd&5xDpgf5G9sL<2eN8D=$k-SV)-U{gVImM-U9)&O9ik7rW2ns&n&om4 zoM}|;;R>_0!T%hSsOrRJkqHUWLJ37L^>l5XwprA^^_=M1V{(* zs4zo!vu^M8x0tIb*_}eUZCr9nzd*s}LizZ)a-XMkwX^GMKh(ZocD_!y(VYX{lXHa* zd`Q4Q{OMzpsCPx>`dIT_FFNe)5=e>tr1xPGrb>qJbeo`oftHtJ+!!?Q+psIWPDBLR zWeb)nrVM((WflXnLWm=9phgJv6!z7b9($JRpM#NOOei!|)CL zuQyiYA#b&%1ML76;P}`ri+5;Nw}la!5?u1vhiX z_ly;&VhSav<(MEiu;%Nf04m7RnDHYOU%|77uAoF!VO^D8x5(^mQ@9PE-+*z!zoH+w z7{V}Gm9SEH*T_peXKNw!jP~bV#hgNB8N)79jyKoWkp1y7TqFBN{qqeq`Jumz`V!5Y zGRVpKsHwAduaPHeR@0bx+8`^)uIM$PED-s%8#AB?t{nyx=3;zbI1m`MhCSjRM<~1C zg$U>mu7L);tpEiqY?huBB@UPF`3h9CP=9Hn)(Z+2_KggrLF`rvR?1}TvNu=hIyFsA z+ubkMqt@y+=+)3!g>e40SyhE!-+b)Tw2oMyAwf*JnK*765t0agw{!5@pStl3!1{5f z*s(J@$nE^9Vg>YIzx9klcwWu9W1KpS-0%>nnC>D>pM?&Ie5{O#s-~(#;bVF!6kc%` z3KT)fr<2Hyzt7#GqiTi5{JqMusz(`vkP#K%>q46dAx_s5Gqy2jge`48OCQ6P2uJ&6 zOL6gyvw6NObSF8P)jG&p+W4Ap_mdeCh`#o?FapnwqObHDelIr=COJbd(DIGTM!G3R z1{iDMPOWxT_8={kqYH@O@J$5Ij#FpG8zXXS2wNyMGEzSUdIj@_yy`5Z^p={M1Lq(! z-{lS>$-k@U-F!MsK;8s#wO^wn4+fPWR=+Ab2*pQA%u2&nWK~`mUyu1%7|P0B2rG(* z6_08sUhdm#MOd|J5atb5!(QNsU(kMg`K^N&s>p3p-j)pqQMq`Hpm2SnOpMiPX3o-)IU!Wo_rP z*MlAjjrZ2gmBM;i#e1#O=_7I8)b!V#=8U$Gz#cO_kBO~4ytB-$A@3rCR&bva=B)`s_zfZ68w)PMjl zY7EmYizb($(S4t(qh0&t5PY9!zh!nDVRn zIXFP1CWy=?Ke`0Fo~IW2FQ)HsBF)|SWc!WAL^GYd3PUwT^CnCxo1lxjEeP0bF?eBQ z7vXm!{`+L)D)6!brl1%4Rf@b|5gMqfH@Aoo`_qFL1@H5FKARz)sg8Q+fZ$~FziP(uU z(n}Hc0JV9OjI(@Ky6h^{zK;b}C*XdRizFTN8&@{_y%egn>;nsFF&9=t(B<_ndh;8% z+wI6X=L~@}^RjR_NkJbp-S5ydb5rO&G;%ACesZKSA9cO9Ty5n*_=0t5e!1h=Rc565 zcibrv(KYx{s5V-9cWHWZOIdO_z}IlSfo)z>bAaZo`%qP5eTMsQx;1y^FZNW#7kB=% zbj3cSGk{&t6n_6VLyEaeo6(Pz^NV5RJEw!cW;yiV6-*yWcn5i;1@GP{hij4TB3%W= zhroZ&Mx9dFDS)K#Q_bAkiY!6tz?qPIVg~9}mcx`4gy^a}5|E@x&K$fozxZe6#k!og zn~$2d$(K8QsNoIIV-fek#~)4oZ!DW{H4)zc+=IUO=}?HWBwipN&Rn|HyK% z=%?|%G|WDZg4!F0x>z$g)N9a=P~nc8D16M^EG=R66e?obR>SUE*fktP$BKISUQ9>y zFL6h-`5am^vfE_Ly0c-&v-c9;{(oM~S$BrZLO(F_?cUM$>!;Cfp0;iCcpB4#L!;Xk zO_b6SU|s8NN9IiGgzG zR^MaLM)iD)>31#IyosYuUnkY*Y(9>@=_d{Q#`y8Z7nuW@hIeviAJ2F&-oTDrg=YLf zmX9=$FM(=c6S}<3PsziS77NDq8yhyHb0%Nozm#9a{r>AM>^4JRANC&W4$hL#1^OhF zWDb`MWX*MO)-^^9@3F*&NphA}Y6qqEWg~DyrdYmTN5SS$t;GU5U7DcK714P;DfIU6 zr9|4~QJkW8C&X+%z!96d>jA37#CZx^lO(Ql&snAnORDfyeTt8`B@IyKgHa-d)(xqL z1&oH-L*Ao)mMmOaB-e65J4J!5i#w4E8|QXrP1U4;agM=LVKrB9MAgm1p5J)l3OIai z+SZwzM$aDQK0w?!lnXse&(eyCA?I{ckE5e`$PvUtC_fP` zd5YQh-M3rVzk8i{XL;j;_>9a90RK`p@o4l^s>%6!y@=_<%roEe`^v;SLo?T`O;DXu z`ird0W5muId04l1_`~`ifDFV2T+%qoZCIUl-uo;|dasS*oHrX75&P1pW=r;q&cl)yjmCU-_> zZz^iF-l__upR@lUio0V}cBJuSJL_2oZDmT)d?U9I$w(E?HJrcRG&Ask+{iT_1=ehT zK%P)e6W4sgs$hFRu(ne>5Ox5FRurY|0CI&&=z@Tqxh%0IQ=$dy=1tL$ai6W)2TwW* zrH+YGE#4^Il8@=WEGlA^iFi@}Bms=^rx*o&`x=jh=S^eNx@m|D{h)J=`hqtM)S}^G zX%1@cfS{PHDU7wa*kw+x6vQCTK4&J}yAx04c1=(uyAGw(YR)8kV+wMVhWZaRPE!32zsblO_JNfSX`vw@I#PxzwW)>Ls^ViF}4 z`bB3=@*%i!RdZ~4_OWNdsT7KW{0&?8b_ug_IIRnnm845Pa!(hB`EFlE%S==o`WXIN zzr_G)Yax=UG@m~}WbF#N0P|{hiIW5?Nu*4NKi$(|A06<%BppT?|F*#`Hd?v@Yf^kG z0YdKn;lJ!yziDp@x}(oJ&O*))eO>^8I)X$R=`f|}&IVm&5VNJmby*Y-v`S3H=`kB- zO_JJA5WA2i;5XuF83bY0+qBO=^@Rn9HkwH_pW3yD0Q^>s!bwux-fsVqvtufubR8+5Q=}k98d{Iq7P*$u&ZJ^=w?A8|x($u#6 zUzWn}`u4I|!ZieQx8aSZRvRpCz5J+nzzC!M3l)H(nedOPGv8_$N6f0}8xyff(cg0- z6afcxSaWeb^a{je&p2Z5nDu2!*;;p7v_?lPnKv% ze@i+q?uA7`@G-161DN?E%iYG)I6=syj%|rCa$;8{P{x}bf{6+LcJ(*NI?aRl;V(=H z-(z~4JsN&}xhvJPfE2yIeOOk^^O^5Q#E)MS@J?fqv?xHx)Yauoa??noUQl={j(_XC zWL&cfHuj;XTsRG2I^2JWiRjJV0-8D;Nl1qDw|7-q*sKotaT25ONo&fgNt)R+ApI>z zW(elMDXK|d{nh=ZPi0wzOF~bNcA%Au$92Kc4~u5*s;Zqx*KTC#bH#jICBuOE+b0+( z%Z%JcRDOtS3dJH@&y)F}W0c)ron#ZjC1Rzt3*hqhcY4BKdeNq<&mp|i?UoKlaqslx z=1>JYL$gj&m#(hau#JMv%FiO6-|b=9gr}cezLWqA+yZr12LfIfWauwUoZwzzdsaec z;c{bfEqh~5J})>SuhulGE_i^fUNfkaqmtB)asx#sGeN&EuzPm(8)gp@?>mf7i+^Z3 zgdMA(;&OfS|BF>iMZ8|Xc(=#6rLBJ_6`%SNo1OD4hO`-W$hC7Sc&m2r>Bj~fXFsxq z{$kxA7uTlK&B>ZyC;;pr?sL{5gH9aGk|kG6ZxxNos^0nryUZsY7uX)QIDSPfYF_Wv z9c*o*&-b@-9V*U-U#x8g!xuM5U)TMpf1gl?S$63g+Wb6guY!k@{M3$u&}lF;4z_K) zsTK^~c{0c}barY303AmxX$YcID0`KS&px@S%b*S;UA%0>f& zS`IB#HzgT)>7o{uFZs9K5u7}`H8V;g+e7pMd?WyW!`@v+ov(pvuAi7Asa}}xzsYn` zUaueB9Fsf!?S$zMNtPBy#|ZVuJadPYjyJn?razp$GVdHuPH(}_=|~Van=s)M#RxyQ zdk2M@uNreX3b~{c>F&#k8I}8qqd7MX=b0{#D|VdRrgxzi#Q4opiG}*W*|8({Y1W^j z!Lei=MRDE<1~FoI5O%}MmGN3-V{5I!C02hwsIJ#I$byw?K(JqX7n2zi>GT>Ex=EEV zuO65mJV4_F5RxMjV_GtuZwa@A8&oUUKnNH;|7?kg;Qm|Wl^UQas=u3kIEPef-amOs zE{8M>nQgRqiwqN9IV!CNrE?1;y*O+EwCV^v$B#L-S30snxUU*_u_l1Z6>6!_-_!1UtYqawAwD74K8D79`Zk(^g5$ip}xG@=mX}U7eu(w4* zf{P2y@2(fdSh-03MX>88gsozH6XUz&%JWc}AiEn9T zk!kAkzVD*V{8FdSFY~#`9D#Wyx%!5~`CF`Cj?w6q$THL)c#+aTrPr{v?e2(WRR%4} z+6J$6Xs~WQ*7kcK=-J@;jZtjnw;#b1*&MFya)Djtz>E0n^24rcZt`9vM+K6^Lq1Lk z1Er)(f5s@qhiUOLe=~fVj5!!K&x0T>C%8z9xqw#%Rei=Bgacz3$^AUE;6(~M$6uVP zJ3K}nwN^u&7g`0t`j1GgSHhOI-g98|x1zPbN zdjKH*hnO6+PB;UV*?`Z^WZYsk=)sGXO3ee>ejOV?17?lon!dg2$L4M%G_PqG^nuzj zDh^Xy%ni>@3 z&9;!d!;qVFg)hzHg*exs%IKOH1IBlv&~a^x`tSuak(B|<|2V_9$)PpfH+}7n6HlAI z*B<}x<^@!4$U27PcBftm;hGCpY`8Bg!AQv5-Np(ZP4Y50Zo8p%QM97<-dM-3&FD>Q zt(%%C0mn-t2PB5PTL%P*#q%E*o`;+-J(5x0pwF7tqBbFiz15M4!?-vWfq544k6P6> z-T+p}(san{Q7o;m{qzZ4&LdCYe|C8R3ROv+F4)B3qOvk9l8KO*{mev7h&Q4R8sYV( zo8GT~!GOFk_HIC%N5nOrasZg~NLm^)+C2jjZbd^c}6p*u0-{tKkoQB}Hg9*LD# zEGy(yi_}BNw$@Uo1j)f)Wg{ZUkhJ}iuTSq;gDw>3-+@XQBR8+Jgs=k<9_H27rkLub z6hoV*9GPClW5mtL%V5Tq@HY;8k^C}ehV;*= zr&CW#I9`266F0V&Ni|8y!f$Ft+>|Q#`h^hT%V$FlhugE-CwVGL}CMH=Y zqyq=k3@c43DYBTVbWz+PQfOK;*~WK*;W5$fK~!x*rnhh~57Zi)8cg0$D77~n+N7G{ zIi{l3ue0Pfw1Z^u9y+9=Gy0(_ck;5GD3vRB6Z$rH9&_A|(rs{y^7glrHT!Z3Am*rS zZddeC;Mwx?!d6?|)0J7`$EG+?zljEwcdrea5IP=1IkS-;yb}4DB@e0F$vTat|L4vC z_KJQc@fBuyZt0nWboBmvipH)ZlAxinnBi5AV6gvX(ZX05F+sTOn|nk$)~;fmkQPLF z`qffY7o}%&2Qlx)JHrZ@^PSyD8w4#=NHAN1qnxRNs)wNW5tF2HIv)A=XKh4xw|kni znEsPo{gn?+C?A$!BbM>R@PNj|EtDb@MWqyb0r{p)=>#tD8=w~T+blf%d5Q&Zq|>WB zGW^$n;47Yuv+e!u*T53SZUFf!%Cs62y_Dw!(0Q&hWM({GA)_m2d$Ji@rQB%4@(-z$ z`{7QjX(oT+oQwM-W9>cyx+jevmjBz}yg@$9U5H?JqMbkog<8JBw?S7(_6zkj?lfwz z@j7U5q#>bB%h;abp%7}SCSTtPi56(C6p}BvhQYQW*v3KGJQFqB?38~7p^KL%V-PBe z!4kx@o)hR5<*)Z}S=Hq|<%5zJq&UMrG~TQrpcboFQE_^AdNW zWv`xBcJ=gqA$$$Jb8|J7WDLA~SFhB4!cyLrJ?Y0hgAV_70ZcoLi#9DA zGqHuC0ft~VUq%ljBTjfvJ8;g zZ<?}uyW(1I3ZMdV{Vws3XiqQWGx^bb z-VniQU*$7S8h^o!9dncmlcy%P#nC<~zL{pdNTUAK$1g=S* zigd*Ngdat)gOOh?B$Z-5QmsAg33xYQ>DGdG(L#VSapg&4dIr2ZNKd54`f?T4X3E@?@EGSh?h~k;!#<&W!J@;riBUvH(2s0Z;@*f8 zctx;?vMhMmE7(FS3faTZ{|q7}z_r^gDpx8cV->4E2=4CxN71=BGX4Kwyt^*ntWt@v zqEd-flG|)uNaa?kB$p{k_+%l?ZCjF%%Mx<8N|HMv_bs{1eS}Re8-`(HW1HQ#pWpxR ze!pI?=kuKNI6s=V1-sU)f~8!0VDn1oda}v#Q0g8j$>cBb%dViPAuYx6OD^N&`IeQ} zLsN0S`{T+|sR6DZX#HkGL>JqMe`zwACFz_yl(B?Psjnk+@HQdtpb_49L0DaDmQBaw1f$DTlA;*2=tDmG!N-K`p0;lW?MQvScUYJMwbo$8l zt_S>4dquZLn#y-A=l99~%?EFuALJhtWk=u)ttC3Imd8jt{w1Ymt?ozO{xpr3YCzeM zZo5QgC0B^1u_kg~X~M%>43pE|;18=ds&X2)NF@bbsN;=4vP8=zyr+Plwh7zV7D1N4KE_3NbA@+|GX3>*ZfLbe@ zlae%0;|$g+33y+_Rmf{L$X!cXC0*?$2Zd#m9|B{7Gz?j7EaP{cHQR#bSiilQ3Qg2c zIrIgpzSxDad7<$YIaL(00KU6IkPi5Z{yB zDPB%tYTNTTs|gPMLq!LcG7H-uE+vmHj*t$r=+#iJ%yxC2-?25G_9A#zWI_>znFMh| zs&|=YhLyAvTMc}7L!&mAeU=Vi!02B5W8OP>PYOBzr;7D_ZQ_4R`IZ``ThYnyWk7YW zK2S+0i-yoI-&KWoJneVrVOck>0sdnUpHOJL}5OUzI$)3=&gW3zY>P#oJRj;GI7uN#9> zTFowzLEl2muMPh|9v%lLn0zgwSB=>Wg_J&&v(x|~+>_!gZ!Ye20niK5nB=9=fZRx2 zm7tvLsWlhY(Xo}w)qNjD>IQh%fkEoo3q4h)6SAlgR$>{EM_fl9)MEQTy zxea?Uln+7g=*L|r5J&wEWJdd7weYm6*-*q@1@S2(*z}R&NS~S71AZgaJ@CD>P+BzM z*)@t3;g5Ruv(=K2f1~l`d_+8$Y&U~2v;tQrX|0g*FfyI+3M4+6uU+bnnk2wm1F%=Y zF?M3^IlcVeKYhoR?ZgVLDwZV#=r;M(#Zvl*i@tn(;L;}mJKxz!5V zx>DI{1#AiIj>$bWWdhO%`92!|n+`-L2R)TBT=4Tz(hkMhQt`cp%;PefUI2Jc_UK& z#^Zuus}%r!579Vk1^j7cAS5AP1%Fhn>1*0%yCK!hV&* z6}9WC;`RmRF0+BnPmi*w$91N*LoY*iJVQsAU20w zKRnZZH>YLuJaBLXFc&L%@$>^CK*e9`^iP?&;!}+A{cp8Z>$y3~Tq>Ut7cJJPE0cM7 zviEF!YK?6(aNi_i(`f20v&K6N+8*tcjh}u1EyU|;hEze7TIMHIMdu@{-=|>|{q7gI zFY;@h)>GQkcwrtYeGkp`i_~p}kX(oc;NwZdL+kI%fFHDCzl1J8inkoJs(qpFUoXp~ zv&s&7sVwJh*u)R%$OyE$FKNBeR9vNaR%-9-9023s-t>&Al>(cIMuJC4#L*vtKMhU)|Y<oAXlxkhuWb=EE&`!RuavUa! z%3nwA98fLq&1jrqRJFOEo<(bD%Defa4sSev>ODPYi{hpQ7*mvy1siG4mDAS-Z)X8% zlG1fYB)`mj{iMDy=M!0MD!#iK5!w_vu^Czs(MU~dg;ZZluJ9#wiyuxY5-Nr-1Xm+*nz3rGo4(F^8eCrrZRdB7n;blIU!0tT{ zpC*P!bd@DDPZmH4(*~yWs?Y*-5?fOHPQJ|ODMtpq@3~)CEFh9A`y+-?a@6HVV&+m~DK;kY*$DY}TF$73!8bt4)7r{bguLp73k+mv)0^ zE*>=$f3#AyUi_j#UWRguQmm_nXJ88`SsG&pnrM3ZB*3AZ%9x|hojH` z8gI`pge<2HNb)(w^8UE8HrV|!F-4++6!r?sgeO$tG%XEFj_o)ua2@oiklu)y)A6EG zte5!jTs(IdKZT4>udu2vNH6+QPjTsoUOiy`DjeXoEDC;|o6RYTVz8c>`AHTZ!Y@m~ zULDE||3OS{@M}GwgI#-*3M%q!$jhviehAW!E4sprKe=kQ>D8suPaiR^&Ag|to7h)h zUc%baCB|$gR8T?ujQ#UtnEQ;|0(R0jHcF4Kd(F;w6ZAr|q;r;iMLLk*GGeA*5&L*V z2N94x%v3lS^6-+Fq6s(?Pd=8T{|-nb%6>?9R@wa;1B_pU0t&L4WwDi1FW>|i`r&diJ->0MA$elcNKkxBWZH@d~{-2WtM;u>Aq zWYSdb;O_&1jo3Hzru)p}p4&y^`-8&s%E+w1$#(2l4{Hg%HywoQgQP^2!yBmB9AV>+DYg_06miT11L14*nQH6j0P=Jsg zAMiA+3KFM0A(+L@3F!+vJKapF9GN%02nlaosjab}-+FNa{0a~to{=-a<)2i@kKHpCUu z@ygY{MR|?-gxlPRs&gmw`f-a&HWbGJV$hQUGYF;Cn%ksXOx_L1{NcA@6!2mLm>w}Q zR>#~NFxgi6v?K2ZSH$wJ(DC@(ev`)! zYqahfkVyQo-u!~y4W!*kw1zs{)Nn_O12lM8n zhJK~zg*z-6ZeEgqktgcGha0mNS?@<{oCkUlovZ9}_L~F>G57>4AGI?@>!JKsaG`Sv z6ksTA37O}BEIkurtp%DxJa+0ZTuW%j$Q z!BR)1L1XlG@ReN&$^p)w1Lx{k|Kp0zGtEnU3Retnx8I{thcPqcm8ZBUJCT0X}76rh$^!}m~zuv-vF+ueJ@W|}$ z%}b~(=uR_m0#$^P3 z+eDDZVL$~;(BP%eyG z@}l=YDgxWJ^2(U_v$OIAXSs^_e(pe^ffVKIG8z-i8smpj$`V+Iel;@94P-1J+jWw#Z_2s@Zmt=R3SZ?Ydf@j7K&DhO9O~Q7r z4&{?f+Il}kF@!i|YABYxtQy24a)%&V`X5D&;TZ}w`475_E{eN*9ejUg*5-pfkW0W> z3!WzozPRLz3o7hvX`pSXM>gLn{MF#B0pnZ;@h2Bf0GM-$g)rGnA>F}5ym((?Y34|D z>MyG*b2&n$L9dtcPZNZmw9;21mEq60mm0y0!XLnVOM?fyvHt~6C%b4g)zL*IW?>i{ zmvezA&bBcn#dD0hTTcet$efk#0j|5lIHc!+A(@AM+a@UC-Q3F_GOb3@1F`p?4yR?+ z+!)toK3)vI9Q6JJDXGt(;*H>RuMQyo+_^Yc<>QoG$txvJMbhf;w)tS`@;Ry3`&}Q% zOXazDmd`KIYS+{~TxP!Dz2vo}dl$5WSCKoU%Om-*TTF?ibcRLn+37t7c5Nw1>V*Tj z+~Ka4mMO!MYK@3xay_tWb$)Z9Vb+r_`0VVsWOzS@%H5C2DG&n!Z8qhY?EIAvdwrmO1vfQhuFCo)s)sO2V?-hAp`#b{L4MZ1y7bR$?jdqrJ5q}+tv5!#YOK| zPSi_04I0HEYh`W4Iwi!nNxUXTcj858n zPkt$3lx?#xuaLe7BIM}(Ma6eCd35xCSwD?J?sx_?`HZ`kj?z^5Zzf9oK8~Wzc}o&; z;YunS&zV9t{86x-7VFLh1v$36NSW&FBJA&4;sF#n-P*O&F^>PT&-5dwN*)@`&o@gR ziv9QiQ?ZoOE8iZL{@8@UIU<-HQ97Yf`}t|;EH(b2<>hn6ve5O6gtY0)Vjwh>>I5@2 zP6&Oc3l<@F*~8w)pRXX*b15RP{GbHhY;Wf3XA#v!gWzPSKU?F-%D}^1~|B|G8B8ztHcq!cc$e++e>FW5JzG1Q3ct@P)V^aFL5D!=g< z<*DP4CnNglY6Js}#}6<1+tRa3S{7u?Fws4V$5UejIX}%|iKu5V8kEjl40-QTY%jG& zMBZCL)10SfP(KSTyZdVzywz1C9>Gc05D&lBam-b=Mh3h{Sm>7nKZWv&H$tOO)D>7axPSJ$5Lgnf#iw`(v8wjo;Be3>|Ad zLLSC#RHg140H5o1@<6qh8qQvw4N8*VH~xxLG@ziOMpHTrpq$gYLk<1iCnQn4<$DhD zMKAncj?e5At&cOmnf)%0oWZE5HxZ`W_Xxj9E_Zb29^+NX^|%R$)jG+q2V?>L>9AX1 z+2Z2Sd7YM-T@yxA`-!}!HB0|-luJ*Qcl+9RSSt^6Bc*G^FF$WThL{(;BSG&{1gr7~xy47vY&kAt_hjC@IXxHFX7-*iEe-=nBoEB?9mR z0lW4UYURGTzh|C85ru-G@D1yUNd_;yWly~x6A$ipE5^ef<`Cf2TJ7#DssGb96 zbPPgm#cBU?WT4@;mWQL{%fVNwi>8XycLkXF4q5%5B@JD{FNM0WS(!{$Ja%E_io&YevlMug91x6l<2?Z&%lka*;AaO@3T4& zd46>wyVce$UjTS+3qBwOQ*)=DXWT|S*}$7`7_|IcGIO;Rnun6?Uu>ry4cwpWlc$l7 zocOgxqJ-hzFp(I_%Mp~qWyi1ddyIr^HH9%J%rK_;Eyfcl!7IT zp87T!mG|o76-RT{FJJ914>pzw_O0yqs_+pwb#i)0BuV^=CO64=h0|{yG98B7+d}THjhj=$ z9iZm0{`!Ze8bwr^M!Vg|JW<~Uz-m_RI^{eNR80vDoNp+7dKanr9+DOd`G`Sb3y}8x zw8|XAe%C)C=uh>1mlsJ@+NJbv&yvgx@PIVepeL5_4>YIc$ywp+_BX0ZQX>V7o5A>f zb@!v4<5rrsIrCLkuUjf9j3k)E4t6LtMT$c*8Ygwf`3UYn{X3Z>^&`kcwa)NuZSx^v zZh@QS;u6JHqaacO`0CJfW&AP8?8pFcd;2X0naxhO86!dclNW>TVZPEhX$Y#$!_jetjtp@uc3angl zr;mqwRpu>+&7UYRb^T|t7)SWy4;Hbax&!sT$)sC*XGEUrM@3<;dHq}Pf!jjvX^4O8 zc0}dJG?Z@0Jd2^6z?#{JjXz-Jr-Xd^Z97~FcW<=oAA!)E7;X3s_B%uc;FAl+Pi`-|{2wDKFW?Hc_YTya#BYUIUQDAgM%VvkP`PDtG zH@v_}k!USt>2+G;{%YR}(hfhdBumk(-E*8XAPqcOs7_ax}k0VP{OW? zAeQ9lZ13k0)axnKN^Cn0dI0Hnw6TjY@_hHaym~)m+E;|$x?nFl651P+@ zPg&Y)_TCT9ihfFLz4eW4g|;{t=?;^v^1Lla&uIPMxmb6HIo~gidgK`^{S@e@w4hA7 zM}eWr+$g{;?y#M1vRuoz9QWk zI=PEPvzh5GeJVlE)GG02NpH}PaB4f+E9^8L%dD@UgSMKYAe`l+k`HB_6;f?UG5s-& zPlEg#>9*9z__`zi%Lhy#b;>J+VIUlf01Guj&WV~ax+y$&n>G|YK3k^U{LG!ns^(hZ zZ;`Ad5J!hE=uYr%^;7=ZGBD%JpZW}KmSq7z8Q9SXxlV#jZm$p{Cmy8Q&xYk!NMN3u z`Oq%lClQU!TG9HY3lM@ORf8I{iVsYxlK;uuJOT zUB=EE;m{qSENn;f*7?ZW+&_Ec0(9E>nj|TI9$fZf5q2f+M8{`hD*`L1A}-0F|mToer+3PIu=fcRfvKi|MqxB_G$j!(0#6_u(G(an8u1%@52gS zY-#b-T95d=Q`=W}F!Kmcp+$YG7Hj)9N-Br>3U-{^JQ=CU+7z`Nw7DWZ=@kMPf4a+@d_KeN<_ptV`xpbX( z=#zsXZ`PNgoS!QZdPjU8?+LScS=ed%DWdK+C+G*sbJ!$JP^3DktkUIoid@v+s2$J0 zf==+#7_$zyxLHy2pZGgH-D^U1i_d`l2^=bmO5~#hsJ~U(Ri5(@DD?pOM5^r8x z`AGg?A`np7=hSHe024&2r#U9IakU?sf0k~t{E0fTf;-MJ*p5BqTBk154!KnIfb?9l zzpj)MU5pU#nekMZ8NE5vzSOZBxcWGwOo@rP@pjMDB2oI;YU0cXU+Eh{UF@dVQ&vVuP*zUgA3(QID z1b4%w@xnP8a$X5P02|O}waMx?HC2QBz`6qt@Dr3-Ko)uZ^4cKj4yeQAP7>i$ zp_VlKM6^2JAf#WDJFOnO!f_)gHp4^S%@>eL1Wq;Rx3WmH3(=g6uL$*M8S;tWl`>P} z9OT_+jLl5lT{rZyjSJ(sM2?zwxBY%kf1?muPl30W)dE9&(&I9DB_k?d#y;ScOCsQI z(9kVS8PaCMl$BuhhDTdz`~$qN6%I>Z=2P;!aY@1FLukMJ1sk|jwSTNPSO39XFPEK3 z;#^Um#WC06ztB9;+UI-oH6u4-hnJf{lxU%$y0|1c@Zb>6@^d>J^Jv0b{cJqLt1ZMi z0eaHbnMF|pcp{ZMStHaxPA|XNB0`xBhB43}#n84yp~hl6%H&P$z#cL4l)qZ7{hF8^ zzABj(ccTuE>LHu#E8D0lwdSHD6SM3?i!QwmDpyh$D?UO zuS&89=<{PuS4va=?EovI{R+8!J%|%iI&IfRd^qmR6t2!aCPu*yHkehbqefVfpdXF* z`g9}>&iRkuN_-#fTFD>HZdGK%xGs;IKexh(+&gqbQZt)`<`-~)G z1Wl->hIluGic$z&I@!+HJZ-A+7GD>=PN)c8b0D=r&ZBAU7q^*b@(tGdZN37whMdRw zR7BKw(GOg%Bi@l;TyGCQKtB_uBIWD#54&mOIKm zD#)k*^Mr(*;T$pIU01Vo#ztl3{;l z(FZCBnSf&*t-~bi&+wP7&NS|qEVg;JC>T73cz$_|&a`hF9|+H(WL9Vula zQ3rpr)cbIpQ~p1U*W}?NJCddx?>`2DUyqASrCYzZ7*e#v*aLfmebh0M=a;icd29=( z71j zCL&t*svq<3c8s97yvzQGFvEd*}@^P#v(39AY`q{>+Tzeh2v% zdsZ3$C|+8OSc!#yQSN(;mna4|95j{`_K*bzv(EX&uK)bHl#EOr4c#5lCH*yu2T(M8SD|d1LTOEJuGi{RDX$Js9Y3rgjybOry85w<#%{TP(FkiKI>_!XYj$Av%E6(5 z(w|iAuL#eQH^6s5#|YP-cM`7JDY5v+!fxyo-GGRyHnRqtxOO@bK_iHMn$C>TdK$nh zbZ%@#6H}th&fROt;3N`BSC}swj-r~BKPb6OsZ?vMD-;#JpNtlIYcj<@=PrB8x5P&b z%Alj#wQrGTDN-lKc8e;#gf9BI?>OKr=gzDOHz>K&?z<1{aUbI~^0Tx>ZCU$|d{96s zVgGP4vSZ+09brA)C)5d;e4gruYmd??MIBS|yycN~10EnBlKxeB+8+8W`&kKQ|83Ws zw7paDS3a)|zhXdh0g8|DXNFBO;zAG7CKPawcF_)e$$4=uZEM0zqaJ&|%Yarx3!x|6 z(<>VJQ2`pTO*Cr~4|qpi=#-7CLW8up)s%TO-HiZ{|7H`nmPUC7!?=0<7aYkeG`7;# z@=Q@Q{&-k!YfC%ufH5{WovDr6@e?Z$cZySh-H=34shjP)Mj%X+%9k#Q%^^K9*1DVn z_nWvnV|3p2Y{2I*P)M?~w!e%&uf=}dZ2*c3bcj)V!MLHHP?rVVY=5Ee3IlNtmqB&< z8rZ#R!?ZLb-xO3Q#$nn7FX@64?LJ9P5`rw}VSYK)TMUB?7As)mY*LHa+ z;tNt)U7~%EH(mvJ^?q)F1Km~b)2@%d_!!UJFK(kWuQ0x19W9u<)JHr&{lty~@En`1 zM0@UbdEn!kYh|)ebR99e?STq?-cVq;ts^+)GPCvYEa&$Pfx_nE%Jo&~Ne1YDz#wg+ z+_(g7YsT@JlqS4Y=%UHJWr3ULh%aV6JkuV;q0|QI!{&+cA2w^rQ`kX*=C5wGbxW+83I|`LxgB>^5lx#Ggcd3>($$2dRG5{;v%Z?`|hbbSR2J z1g8;O*tk)EEe)eqQq&?*`~ln4pqqf){}-1#N=%cyTC!KUEvIFlFq!ds*3>bafgt+r zmwKENzd{Sxy8-DeMo3S_v#%w=`Qw&5I0gIbzDdcPf7(yaFWaX92uEP`{wPyYL2IYIT+IoRS$)m`Kg#WB3!iQLUvay-<d$q#g1!A7>60DP$pxvz`b!TVIH z_y&xzUPfn<%$l0K*DaGI72(L^0G!fdGlw zX2U~=n&Jg-fNab04f0RhKusTm{#Zp5gDOml0BjWlM_VfE`=jMGE;0W*V+Mh>rdtiFt)v(@+k`^PD|w}l;+ zjU84Yi>$i>K7tZs#^YQ)mm8L4#gaMQ?_g;YriPS%!vfmz7;JzxZ4K~k#r;g9VG=V7 z=1X+`VNBUV$GGm}nDkdu$GC$f9VvYsWUE9x@`FB2;Cgr+3QZMUka!=Iy_;fJj>`Ej zr|nFeyrv(|blj3uV0Osi)!U-F=p@6AJa|FCWpJVNqU`OzKjf{p;~zRAaCBHJ;NV{D z1(w-hj-S}X%dC6u^Bk)mPAO6Tjx2l_io=Y<5^yiyFs~*6j5GDgtuiqE(NE03ba0tc zB>t7_HOxY|M##R9zNq=O-E2bEiTSuIESFg7j7?D2ShUz=i%@hy^g_e$r!*#X!fB>F z@VMkzG?-jbGBLl`HrbkSQBRH4fdyRbE zfi|~ub~pK|(7mv_@%CBKRHg~Ht69)c|46|$!t<0n)HeaYba!>f=su_!mR|o!TB8=0 zUR$L!S!Uo{A|(hohp6x=$7?jcrYqU&6ho^%+T?7~loNm!vT-#R8j1a9MN3=BRnsWj zM~jbEnkNb-j=rj`yuU`9%%-Xw^3`m#ooo7of3Ti)M5uO(ag0`(-t#6U;c>8aNa#O& zi(tJ?+yf0ji1cn#=VEcwHNDo_n6P0Cm|yo@opE-VI%TIGBMU0+FcqsYBRDE$QRNZJ z&zca-HO>cg(h#vrXwwf<=oFYl$c)?fqYyBbrrF+V{8#@dgy^cviB{uNS0*{g=Xee#F*a-H+;%j%bb_#}|+F zH_f{fbE902&{Bu(+P@f;gopQ8PGb;rx2bO5vmDYiY1K=QVg`SV!z6qa#0}@`s06o4 zonx-YN@8a$-kPfS2Rmf(EXeO6sg>7pSOis;jl{<)OXns`KF;eVmI)vk`E zU5@AAx@J_uTFk<(zFSbfZ+7zHAMTj9y!B9seco#DKLdB%TAQ1Co+dyiF*gO17G${g zo}|xwt)9zUxx$WM4EW@F!`$glPh;Y<;;nDab0R=F-m5=^?jL14H=`NK!MzWm!zH(zzDRn{T}pI3v%FmhEe?-Q|`q%@(d5;y=pOM)n0G&8czl7F>}0 z>YNhC=MAZZTahraiblb4Q zw9-;2(@P`tws;y4UV3zCF;K`IK879`jNcDzcJU;A2SAd+eYEh zFx?k=ubSI_CgfI@Yb$q&!|O)GSKAchmo3z5jn>)23@jU-&; z{o5e^I(PKx*=5r16NPH__@pjvL&a#uK`+U%M*1N^BT9lg$TxP+Fb3V3+&fr>S5NE0 zXQGe@xr%sgAeB=FULM9~F42wh$4QsGo zWugm;PU7>=V33*T=ZFq8>Hca+62zefKzU)W;bkV-PW!SFagk`x7)p7OgQX7Q6w@Uv z_2PyN3~)UC&~M!HFDvG35yP0$BeK4VDKN)sgrf|Tq;3}(mAc~JE@2vX%w*?+EQ5r+ zdFsTJfvKBz@gB&iu{u;1%2d|=Ofb`0H8qK%{bI-Lo@^1vqP%az{*dG9zayH`hY*D! zv*TXNp3U;RXp5j@HTb!@VM*y)l8LZJ1=@h=4BZOX53WcPN!v5UWvc=2FUmw|Yk8Mg z{1zRLqw@b|u4b%xc{tw;#9r(3(s+^HPP4v9b%=YD0V`g)ql);7f~Mea&*Zl>M$<#M z5wK{l`5NIUYeVqpmD!|r(5n3TvOVqZl?*xfj~1aJ^Ht^n+fqaXc}Wa>NUm$gr#zb4(&VFd zhUdGS`4*#5JBGkphRevrvr93$BVNAF$3%gl1DQ;QIw$mU3HFV~dZ?ZxooF@YScf5g z#YC{tfmcBD?Kmp1Y0`oV@6}Swr31fEuTp^uu>2KtuaWC-`HjncZS7WOtqlW~*FGyO z_Z!_>0(Ns=erQN9MEhs82R(x^@AB+ELoE(P?dSIIE4NDjknxdb-{UwiARW5If8F)nFqeUulT+cD<)b4!D=^9GFJ zJ4scW{WwlqG%ra=sd!|WgFZ(zPKJ*j_N8uZA9ze1gwR#-5Bh?5?rNL|AXU%$ z+v2?e&V6C9ILP?yQ6(BP)uK4RO2Hbvd@P}5o}4mNW^~Av{U9eGjV@DcG(Rn8?PiX} z%=kfLvWr$WR0g3nXhT~dzdj0Pf5o*Zau=;ul%X5&AtzT5^d!tH5Q~o_w7L#CNwijg zo}Z(LE!40LvKf%^vU%9cjebh#D22Z!ua()MH9aaC8}K$B~?g`N|Biv(k|rkYBR%W+ykJA@IlceGCiT;Oed z-;vt*J}73*=>goi?2xQz_c~vLF0z{=Tv{!N$-f)NZ$-<0I)iZBfFOuO7#kf0$rM?~ zPO^x}!fEh&J8{z`HLfQZv#~YO*-~v-{D;*BJ7dQV#Db37RvzZb#Hdx%0e4ic!ye?L z3ewbN;Dax#vAhq^mI=`8gQXp7&=S~pq3K30Dt`0*|5^fL|K(q-#PWal!P-z%Wue*O zI{j$r{DzrOd(v2Sv3^PB;?-qjTX68M;y9O>yL7iQga%^`*ec zxY81qFlFZT=!6M~t?;brRteOr0{$ROA{z-&(zXaWot*0U;#8Zx9%Bw ze$aYI^i8#_Ocu3)Vq<&(ZogCz2wsrPi3TU_Ygay;KH|piA2flD%DjQQ)_mp2Dr7;9InCBlQ@N0F^MbS7!;HdBjRDIRXG+8pbl7-kw7#oo5 z&D87v*5tNHEcfx?5Ti^!VYMlHR}$mMBcKw2yGi5+&mlImkBi-4ynNR)eiRaAgvjYg zdT?#rjCXsQ@V;pVXge->{um@$S10H3_f`kpwf`bYAFNJH>mKukRGt$qCAbM~V~P~B zFE_o-hCXx(Q3fKNJQq)ZK`Y!ZOG72N`_pXw`s))v8;56_iN)3lV);sq33jq9YZG)Z z+(a3sRD*^F4iTDl8Z9NV^j6}3`8bjCP_>GcnpAtHI&Qz%n41z8Ah@hTXTL3*I=8Nz zZk=(mK3euJD2#r2)u;4pY5UaSeKeG8=VA|Di__J)Ck}WCWpi%D=%Am3@Vt<^)`08K zuc4fPE-3{ktaQ#CPD%3Q>?Q^^X&B!8EqmhZP#Q@td+T9GQ#H) zHU{{S;j(?nq)+Z+jl54IPZ%L2S+}`l@;^)bTSJP50ngfsA@IU&4QVV{Nq9)a)TW;d zsmmmwJ^Ur8jSu;Wn2}GY+;w(n%_SVlN;a%86b#L1tS3xGRthLB9Saqj_}u3|a_bWy zN;dxxuw%rMhT^Mo-BlFnjDT1zzD_^BRNi<7sY?Jo=n*l`6S+{`%NY1Ond^7d)oIf^ z2Dau)$`YG{vau^cUjkLjA}8FY>?WF7UXV5LQg_>m;w;AV_~JfbW1M*YE%5K3W%VAU z?KDECTwfETJ!}4$wmTC{$OYGcXZ*IkqJ06^gbBFUTJv+FGhotzsp#_)zK(po{?K|fb0GimK1Ya5jP zLfd$`A*ZDYtlS&$Gq^9mtJYZjI6uA>U6)g9F)Wu3O`HH;Jo`WCvijnkzI>U7dncxv zl_Wj#%bwdf88|eytcNAc1C%M&FlOpP5*M_Xjta-&*-5Rnh&)Aq$ssN`DH;!aC*7NC zJ8C*)hzhy79;A(L2_7-TM$3HQAEblEcB`EnYO3`7s&X(iC}(6~CAU>i&-nHl@p|}> zxDRT#nsE4kiKrI~40+n`FT3qM(6afoEz7kxMfJ1LlhT<#me-}65l{cDJ4dDK-ld&u z-Ki|Z5(qi-6YBFf*dhCG3H7gBdRGWWz2+j}{kAAHZ<{f`9P12q|2NesMUoj#tFztZ zh$*XSQ31+#LjW`y@Ir1-^ZXw$s1UsTOh z+Ib(Py?A*fTuad_=eOtmolnKH99v|<`Xib9X-C#D|3Ny?^4EN0H!*}i=8s~pD($O9 ze$8T)?a#Us_IQ&rQ=Gb`PuFw`@lh^2jDLx}XKbgIY@r@P-?^w*bJTVAQDRbG(i@Uh zYYEI|LIASJxu$oy6sQ-1Ja&)CjD~S}J@MQM@XjW=f1+U`uoZ=AI!>5M9Qtx5FTn!3 z?s@I+d+Une0sON9u^o9m1zf`inyaVa>q(ierY%d*r6gxojPgoR26}HJ$-D+gQTa~2 z!8t#SstFC2gp5pOD3JCb&)IYI`zr%tqL|mR1__hLrhDdESU&2GB^=ev|FX-A_6Sv{ z2c2HX9+##@sVBaN9R)O1(T8SaI7Z4%f6N{A8izXKv+2@;1j1f@1rrH8MQ@Y z)lC7xfn}+Cu_K zZA0-Hq|j_#md-bGV{f+Ua~kRfIY{}0H!^WOMSU9 zGh(LOTlTqq_!-J4aGpdJmbAOjN~&z{1Br5Gd8q7WLy;xkXCZi<&q(PUpuffv@=+?& zm*@6S9bTip3r)OQ_j*ZnYjRMY0pM|}HjY?gciB1pFx)~7JJHsdljnzOjr2lgujReK zV%i^N(}Q#H4z99I>VWe4pkWi-nO+6JeSHeWA;WVb+jn$_FZCW0CVi)h$rrktz%Kwk zuKcY(x@_{?2Sx48H*1T~1;2`wxk3Y68>EMPFD?NMA-7h-2C2_nq+^fG85^8^OARf0 z@nn=cE^$uUu=)k#8D^SE-f={J0R-J_YR#y}9QB0)OyRm=@~BqnlV&j@92PxEod`!7 zCQItom{n~|C$CY!dLhOZv7UR#I>*=StCPc@h+*7E;u1c?uERY%wOMk_oYPC5hdmTe62WzQ8>kRY4q6OWc${UW_b z$PiT(IpjaQhrud$hR#ReJ_nonX5;5HOg}f#^7UJ2)L`;*ELU2F7E2ypk174*vLk4 zVyfT%;3`$vU=E8AEglfL-(HJ9U*i6S_q)pX(5pBSzt@e@mJV$bq+fuX3iX~S&ytV5 z5hu9kpP{1`X!EG$2w;uzFJqW^m-;s(E9n0yI`=@P{{N4EO5Y?!A(G3IA_L{y9Eo?GVj{nkmICzLl+b#}KX!o6Vu}0|AkN^1 z$O&Wp9zTsxx3JlK?SiSNQ2b^{_O`hac%x(}>PhLZ8ZO zH&plj3ai9~h3xOee;K~zt*9t6U-}lw`zLOle|j(LySVp!rhXwaV+`P57E4njLZ)IJPnRz(bcAykLx zZ*s+Hi_y};jD?3)MfVhb)ZcfX;{ykq46C?^)k5j7GnuJU@M%!zODY9TBhS?pq&($Zx+ulvT=9bN8Y6J8!uh&}cL;H^ckLGALE#xf~s zpJ64fkQ0xx<4@8P)JHOoj8$n$8n@DMK{xm^X#o5y8l?NV_KuC%V}#2vWwYERK~ckO zVLmyZqoWKHXZVug@=@s^aA4@ zU!YA|iJYF1Gn!$uUC3jknuT0&hK;zE&>L+g)ju)P-1{uJZqlNSnM=)=_$m5Lx?4SG zzxxIL4^=iZM%{+~cVbSYB6`8+LG517cVRtw%DVU8GEC-z`8=4b#IR`i;Yk@s$|f7l z>g4Vpn>zcWBY?aEm?i9X%p~wynM8(8>%e`FxWAVL{EL4}l$2j(KYdH>d zBrfo_xg^!XW93O>ReaT`618G{O%l zC0MM~im-PkVlPfOz#YHe11DzYE!QU@Cgn$`lTAwekOi{0~%> zK&fY)#u_Skfoob^6j+QIev~;9gW^!jl40H`;57tNfijuAA<@HHUt9K}8y0%IR(!v{ z?q2aHV8UVf$zQc5aQUrXZ9U2Y&7RDY-n0`d0b^6AO=-pybr*w>lN_I$(s#TMf~<>c z$B<0q4@F*p>359!kr30FQSgI5;!@mJQ;)p;@{t@D7DTD-oV?9uAKK&Ba${fD_|0y{ zeF@4Ie_4)QrP;Mbqt9mnN;jANY0Qz~KFAe*AS#|DLG7k&))05FBrjEID16IQ-CkHW zSctd?JqK{S=20a<-hh+)XSRXLvYWavpLL1VZNSazKBP}OvAdurm0xtzio z%Ck}eE$#FOQoLW|H)=hP)G~whjn%5yE?%*JrYB+smq9|eh1o&Jm2FCP2)$2-3SOz* ztZNZI#{SA^BWT6cM*t$`%bU|>Z$d4jg^v|BrKPfD2)lD%FQ^-?GmL?w_!rr-@5#}$MZnp_iPhUQl*Gz1iluPIl?4+K);-1p++C z^%F<6&daZ!93J23>Tm3TwJ=INCw;Xqzo2#dh<%}sCFD@y{=Fu>b^BImpT(b=G6}E9 z!y2)nG$yT4u>Sq|cYfS5WB_;-%=~p&GWSlSTR0#Y`ZlJP&0i*rBLcqNPozFgAq_-P zT}$e`*7k61;>+r;LEh1Bti@KN%G{nDAl}}G#vlXLWt`^uo^Ea zSqF78nXT4Q?%sfR-eoeP&Z`GRaSgFnSfA;ftStbxWKGe=7~vT|()u}k3xW3~m9kX4>7!IpH$=Hg@ADEvB}0Bz zCF4XQUfl~$5kI)>=#!! zToa;fgeH@VLi&=Iotn{=$%diT28>^dv8yuep7|*C1!PHuu@~9sJ{q|PStG}BFhD+d z<5F;vlY*FiWix`#Qj&@VP`w2+g+b}4J2p&8QePC(HR%)hg}uMdDmZ%&doR1VlSag&f-J$ zQ8ia*{fD+rVftk)&%61<<`6~{ev=UBGn;6ekwpYFDGNZNAV$z6vU*BADt^BCBId7g z2Qk?y19X$xiL_Xm!6MTBEa$GHjlYrx%mM0;72k{X5Q@OC)FU1T0_@3!q!}ak*CG$y zz|n?`wv8+6=1X!?X5_l%fvZqfWS>;8Ar;Zz`A?0fw_*sv7JFOZqu@3FMc$>M2NhuF za$}>l_R9L3DRfw*dqRE56t@$vv_5U*u|N12#-|!Ga)!EF?-DZA#@=t-OaRSvJDVI? zRhbPQiq?DY2T~6WxwVk$^a@n>7EjK(t5~sQ3%YeeB+tAdh;vcvC(-0a!%XE1-_ z?qPO7p3Fwfq!p<}lOoGHP+T`zbhl>2K4tt_}tw{Ogs z-==H5^ZojJhQqS1h^ovt}2}1 z&|%M2zW4c*gDmj`BGCh>k2+b8Y%d>t-FpdQSR$363apJ~tdCEMtu-He^yEbJ_V<34M}1fag@ zaBb`8X-sdo{@lJp;2VK?T#RxT{~P?r%;#KMA+i*xx;Ewq4qwQ#*%J8>B5J{4Xr)Zm4VlOFah>B|>YDT;lG6!#^c0gETI;c8;IFA`{FDmj z47pmtjXlq#HGfp>seA;y&Q;z}tgY+sf)!;Lm>_MW6BPA+Jg1m;Y<{!}H7Hu4wD%*o zB1wM%!HS_*L7e%s>ka!B;nH&wrD;zhKb>HDc=BddfwseFr}Ji=WLwg z*Gh4-Y^=L66=bfx1^u37-SVB3Ov4xO&)qBN02bG@UH~xk(+F}?;CY$0hu~Yem%GjX z)nJa$$$;yPI2~bL{{i&%jq@V&krWiOz(sbiqD78mjr<9xzn^%fZC;f(xs}JI&X_DW z0zV#RAO3A9_LLk6^;ky<+EB+sb1TvpsYA@5O`||>wZnpKfPLSvj6-v-A>0K7&Tq+` z1uu?Xpc8aevx|7Juy+bNqt0 z7u3=`0lClUD@j=4fTI`-us74Uh+Al*jBT z03#Gd#RZ!=gX1s#G4=T539fys4v3-?04LI2he=W?1nq*p}fL2##4caA=C zI+L>(?Amv1$@T-;aZ^=!Dz{wx5a?`_0ZN-6zXCm9kUrf3{c19kHu()a|88=QZHy_e z#VFei*A#{b0$v!UVO}DlPXw7;_UdxY0={m%Zl)+N%6AO=u%+IaY8P{_ou!y=!eBD` zVf{DQUcZuw=FQEgP{ZYP#>3_eWp4*yMtJv$S*t+BWxUeRA0?t(iDEORu3(`uCF~BO z)(6}odA?@)zc~FP#zOD)0xuNzxTu;;fx5rU4L-o})(Omg z&Ao&^_PK{H*VufWH{6pFq9u7|AVCQ_a)=?W_8wW{y~8;N8M1mvH+?H?zuIvFtm3+3 zeWJu0)}KL#_n1#h8Rrm7hdCeJX8#xFWEYlB*S(_%C-ZM{G=!_^8(kSdNZn9$2ew#{ zxe)zlBdw#>&h0iI6e6yv%i)=)nGeiM*T0M<&B@-@QF~M7oGyEb##7m-xrfoX1k3KM zNqCEUM6L>sn-k+#08xe&vRuyWk*RH|o~r?^T_!6rML zh1=YtNkyB=61X9A^P2JQ&pFqUQ`f>$p4r_zY!=|dV+qOVWO@vM_bSh=^|CcgX^~X ziFtO-q#&N;EbCi@cZTRMKMTt#w(ah`4L0BqqHU^P@wZBUAuWYXr)QB@7JM)B$3HUU zScjrBW3PJLe}`zhFp_57VR$m0W^;X#odf$AIL>V5TK&YN{e=PY*XK(1& zZuWTeCXAKhNw}hIXC{d|L+_Vy!5A^^i*voaHVKoj$psso3E>`17P$#^8p$H{=9+*e zHov)Fw(9raY#-qoU)F`BwufM}oqXS;k`elZ^T-OeN?_xe5bMN6Z0^@3>|79tP& zFHC3&mz3vwsX4nHC)qsDZLaOy-Wl9&lWM`c5uahrXty{l`%JQh@79vUs-M14p0@&0 zlEp2VkO(VVX3gb{zhOlbmU!nZ!xF3<26maH%m^OLmZ>0Q=BRhnay!FHC)C z>4@)B!>>@0nsZ#eYWSUJo)-j7=Ki{3irUmDuwsRKB8aCiDlO14FTDWLZbuEpg)p^3 zul@%QsbWFi6$Ht`L-v+(PYAzp?2l3f-gm)gkX!K6(xhhmXpV?LEVn;joS`u)>$RSx z{R+EweA!2J=RM-f-*mNdB~f*33Ixc{djf230FT;l=s27FP4-=TtDmg7&T|gx|5SxC zux-7~Pm?rR9dGf7z=j}-7tJ|WIiDXb%3Wc(#(K-PwAHqsGpV^kF?Acp1#Ka8ZDWO} z`P|~iq%PJvZa_T?%#h8AFbiJl)x1Y;w&IJoM~d9vLd4}oL4DLmN6}h=;@jS*{3cdD z&ryD84alLpZmvg%wPieUK>oe8UU@s}rR7>*wqB^)q1ON(V}4cGENN1m;GnzCM2&2>D4jH-S0!&X=DRD=U~dGl@c%ZidcMd|uKZV6Ql z2s6BHjWC#-JG^|Nrm_DT0XHnAvBD|l@f6uNL7LS8lwSN$^R~O;_Mza;S?SE=NJ3Le zr~8^lV*d4Nosc-0xU4B#510y=>CL;X=LNvOv0)zy97dKGK%2;?sydpXYs6of-GYS( z-M;?612Q*A^j*3za6B~pWMJNS3qC$6Pg_a)WP0pX2v6!E6t&@PfDUS47<^bH>4q`ONS5T>*2gZ_T z!sqVF5!gyB2L^>tuti?hrMFbiL7UTsY% zWb&aBcx;uYksPbGb~!%!!s^>V1*lL4rN!)@OTXe)_Y9^EL2EFnuO402w2>q&D#sJ& zBKur;0KKbjM=Y);uSCyBq%OSM^f{qEsm%r7CN(+_=ScegCTb_R-}@Upz8&eMz`qEYffC+sfMuopV|2*!;FBy1SL->b;d)M1T-6LY zZ~#Eg+(4+nKNF^L(#)E{BW;s=i@9Oyka?(yp7FE&T<+FCS}b3Sh|%-wziv0zZ?c+- znqlP2t>y?7W+|V?zy8U1<3IJ-=7TQ8BZ{4D6X|)8ReEGO2=|^_WRe<^J#04=a?aL; z*nTWU{-x<*?4ev;qGhf5@^kW^K#EmYI(vnyhIU(%VRB#PClK1Wg*>>xrm8AYxISrW zP0rs|{q6#4Zib4{Mc36q$DA)vrtzjW-^JE#5Vx0;k3U1->ySIv5{A;U;JfP0K(U+j zvpbx5kUq1%G+QxIWV?P__*gV2G`w)MlHU1+fA64J;9yiU)vDr`KY}It2n^@pk>#eoR-mFhksSKBl__|6e@`;!2Doty4 z0jdmfZI;@t3Rb_OMBC;#eY0evdiNopb6aSYw~{-3IwFowT_5tCJ2>j2(UY;^9Qc+; z97h=mS43BC5^voay~dgGJ`Bm9QJ9Ujktneqf|LkF?D+c|KhG9OpE5FXHsLt7tefF9 zdtrj~i~+fpV#XwKG=k!Ik&wq9M`_4osPqP{d@X)Y-hx$F8aF27!`eEghiWxH_xZ4; zal`eaEoh-C(Px(I5^v*p4&m!FMTiwwY;vL~?3K5+>CN2t*Q>Tae_R(X{fJ;Ze6}4+ zYYfqg7M3%RYfm1HRA#EJTud_OoRfI81or>$5yH7IopS#O3k2%b3edOwP5hU`gfl)hCpe! z=o~|+jUEJfVJ#`W?5!iUE4{Sev+SaHn5aY8G7=&aFC%$_gewcba9pG8#_{ijaWlgM zHOort0~hH&$ZF{oUW-*A*=feqG6u-;Dci&+g7$j?tgmtse%L+$1iqQUJOb}DS4$-5 zGF+|O0_UtaE!4u;iF>U!z4dx#tG3fd@mS;GgnexmLR{1J$LHKRsW;7OBZlVB>YFN@ zUQ7C8Li%EuUHSnYak*ee{?FbDMNeRa6AWR-->TbY%~zkwH&|R5pCM-(Nv_lya2k9T z$4%8SGL{}qf2O`6x823ro%AsO!UeR5d%h?{=+C;_6hiUa#WQD?n~5EGje7?dvu!~v z_n#(eQdoUeK}m@XWiHI&Z!)&kQR8IuFtuCdv_qC{-GNsIWhR_=aGx$o%7*d@r%xe-1ipY zMNae8kO}Z`<|sEGDgN} zbqV1mBU@7a+ViSOqW5r|nr%*}&;|9-yYd1fIJX zD{=0lhP8r6xc#>X-%Se=f#BnZNg|f=Tf5luN8(8L_CWNk8!n zMZvIF2GSb9+bVtr;ce68e6uI(cqF67QvP&r3CjNS_Rk1hiGTW~PrGeno8Ldf(cH9~_;B{8Is@KV*r;eF>}f|rOE(}$7^+h<}0 zM07>q((zJR`D=vdZ)@Hi7LpFpH;T$+weLe+-k?G>Sj_XYUEi7uuzwXQ-e%=M&FJu2 zK4P|W(G@i`^JM+>=J4A{QrQ0%hjBzpWTaA5kFze3B1%3aGQY@k?ch(S&>NK3sF#)) z^EdPZvx+kwxVm8P$cn0(T2RSSSJChCz}c!28)tgVw80lbO#T~`GqbYUaVO^;w*>jW zrpPO9dhZOGqa6u{li&YI0#2x}rwGEH{=kb*Zz`*I$8+zhU9Kw#t=@E&g~d%dTV0Ys z6Oi%4bH^Az^(8+9mn^9XmN;ZtI^-t*^e^0J3`w^1jM%*cs-=UyCiE}LRn}2#I7E8# zzaaDTs7wc~3#>a$j9C`X*&FuQ{h~VCq(>q$VE^3B)_Ep?nWDL@HpYihhp2Pe;wv5PM%-i=6_HkpTWHcC#FL+r;sI)yZps@EJMc( zmEI6y1Z3)QE5JS-r(FyFD&iHBSXtMOYrC6sTA_Deik`*Ua{5u6uDpZn`x+~xD`+C1 zw;y{Sc@sjB{|ha*-nhgl$I+8>Ir}4cCA0ch(|+c@?+kWW&)870cp(_gP{(Z^gmH@A zc-{w->RFSd;zJ<9y{RyTPd(lif=T&i@o?Ofs!g0#_8F_5_Oxv9ayZLutW%VLe?^!% zSK1$2*V__xhYJl)E{0_Z=%D6k|8V?0?g4MNG`nAM%t8EHR1(w>A}2ay)|R5$Cco0J zLaBk*K^r$pTxplO3D3(S(}{O!jN^3jO$q5++h@JD_?$Hy_goL@A^!CG{r~Z;n)d+95lh>yHut#}CZ7eoqESju!4s$Gp`K(kA{q!{JqgA*X`Tq>zmW^g@yF^>1gJ=bzJKL%fm#k(8GvjK-QXRV_dj?U9ei_f|J9~9;=Ss1iOqs=m zq(1rRk-YId2B{I^9EBrfFwC;f|1xZa`O3?OeoUJBw_AAVFVbu}c=$dkajs@il

hs|fcPb1uyE z=G7y-%QBqrn_ydz4qGt2lKT_n%gOD8-&7r3+X_6FeWM3_QImRa*3|pEqHhBB z$rc9bui}X}b!`5KjonQu!T`7eTHDh{e6rkL;@;L7ksj_L&-eIGnt?nXa`JW?_W=EK z*bKxa(4W5T$#ae5W`VKDk5J~K?PW*mo3gur?cB4wM?kC z=JKkkL~YmOl8=wgnW@J=9KX@(a?DM9U@9|47x+z&LFZSZO5b_(RqjJr&~EzZ6EN4=wT&6%L{-x-cBZoiabcf?++@%vNn{-6RDz4ea-NiimCC6 zT>TlcmA197f+Wdv8uL>-Cw&eKtr?*VHza4;qb`~x6JC+1N-WJ-M<{2PfOL3v5u!{4 z|0i8HXr2UQ1QsjA*FPZ~{GfSQa!hzuT{>ZKDwhq-paM65@z8roM@pv(Ud|l}O|lpL zv^YvuEPfk!Iop63%#8lu_8kI+w@l3;Xc<>$)+9Jz?lm`!=A5iHRXzt%B4Bz_5FHn9 zzvH?M+Tx*`Z3EbvQlp;x99~pQuQ(%_3hsMmsV&?evMN7k0jm~ae_LOb5M4-@ryj1# z3#C09j4^XN;p}5_h`(;R?c{fnuDDObzt5cDBQf?u6Vk+~%d6O@2l)W#3X!PzhoDcTY+6VbHRBtFEkpY}`{kJmdy%sG%ke)(~2*6lD= zW>{CMcpvQ2Ci%&BF0^=3u#+yi*GHo`iq2x+!B{biY>E7Lq6Lk*3)8uNlCrdAeM)n^ zlgET$Einc!=FZ_lf;v&Nz?i zd9a>n*gn1#lk-U&ygiTcn<55$4@POhy=SO^SCU#2foM-@q)r5UH{1?0i&=~&phjpz zITeIX*PkyU@-TnMI*W~VH((Z-5wA}Gi3N!FjudUtTd@T2h4jDQ%Juqn^=-tuON+4K z1dlsYuFLYa^}TtZR6%Sn>-E~yTT)rcBDw?iz~KmP=8*)18^IO$@rKxnf4Y zGCxkU>1%!h6q&z6x8&PUmtEK1)r!@vvLs%^kUNjRXiysoKHL*H9Qy*h_ZKQ`ju zVn3?#Siz`TQJHQq6GrOA_m3EMC`%QX!(Qu^kVZxt8le-k*Lu!L)IjPhFiJ)Z9k3KY zmWu^sqaTmgn_S}rh zKgi+&!wI>G+q_99{ZyV0o*`byJu>Z5w0JbA@PUHp@d~1YGOsL{8L6g~PR**E} zJ@NPfa2Fo&+U6U{S4;XLEITV=q3QJ@c4Hs%w(!9o*dS{C4Eyu@z?+i!vRFHtDC{la z>b>k?lz}P}do`(o{G=ncI5)NB_@k2vE?u*#%}Imuzg2#qzTn6f43rlAS4#N#Nz|7R z(IpKbE7{h{!}<{r5+04>_&x&KZNLUe>0~D%sfO?6$p+mb4D*s%gWKDEj<-OT zn*y+V%r-<@=@-liPfYue9ySi>98j!7>(rx(CkZ+n+&EbY{B>bpMBfT#%rXg@AFD1K z493;zAiKlgj?Hw8FSBZuNb)m2eS&@dAJobH;a|oA&#=8CSx1z*FfSw?E76fIL&@Y% z&iLErL)0q!*d;TomL;i6TNk7%>gg~dM zh|qee(X7QN^_RGaDT3@x)az^t!U*h+9{3Z9IyGi`i&#C2R@~^ zV19hm?fG?A@G|cQprtR+PSUDQ+8?-aB9Q$bF%#?Q>%QWm4c4aQ_R`)$zW}}4bzFpE z+*%OLzfKrhahjsG&YQ2vVzp|&b!VUrkf$`9g~8r62zzq=XMwXjn3j(R!YxOcV}D0F z#(su>w<8QVS9E8~jxsyERIB#;A$+ue-c8T6&?O63{6JL;?Z26Auu4XKptXpEuBy2_ zPtd*wG|aFVIK3Q)`}ky5Df~>wv`(@oc}_{Xyc>GnG+fUv&}}=(RmJ+xE|eW$xK;A^5{~u_ zaX~uav56FN4Oe>yD?YsjGhJ<(Nx#?3yY|JTU^n_|%YNlbT>V&m-Wu%iTA0eTtRw#E ziYq~%qCIDY63Cf7l(>N%*9v?bvSl%-$QhHL&ZPI0l~>$0ys}3gWzlC!bLtmt##Z=I zqEWI0;VTMMfi1$=zfH_NKrJT=!hfiasv?Jpi44}Gi}3)vLds^c5d7OG`%rP`W_7b{DrQDs}@D?!cNJ9+iNU0Z|2hdl}L;=}H@S{BP=L6w~GJpW_s< zryCm2ITC|i4jAGp>)osUN1b`f*OJ68nUu)`3x{`tb6`FK$#GSWwEO47AyMPJrgIPOCyl{BSzV?Evvx@S&i#4)L^|`FX5VO9{rr8DV zN$3O+Pq!!m)Q1GxeWXyoY%-x(2$H!YeCV|FHYM;L_T&Eh66}A>s{fF+S7%~P@^Z~y zYrAwJ`cUg~y;kF)d39Q1!YNuWw$|A8z|3lC@T6`tg zZtA;{_39YpIvO2^?9h`qhhpOoDE=<5+B(6=1roO`cFKi&M`MPQI{RvI1(<=y^x{W} z{a16nYwaAeUueC5!N4nW`_kDRkt1mg(rl!Ac|TP$j*xiLQ#&mrfu%1wA&cDLSJJZiEp8oaa?&zZ@Hhfn|Uq-?*Ez$3WGatJ@SVpF{4T*p?xym&q#Mn%GdsgvI4Bkn|Y`iJ=f%vWd&PM`xDq-P%d%JDDG6E9Kw z&*eJ9%XSMwd$jagU53YX7zr@*6`&1XU3^FA`3D}p{&XY#1Is|s-7^+MbFJ zSH6o|?JLo|+xZe)=vD0q)S%V^{$s2t;BSO+LqMTUkL%i>c+)sW-4(ah2lQVuWek(^ zU|NzSU~fj{lCuck+@}>uGRWoaYmxa(shl*PZ9Oy4ggBIgstS6>i^ zjS=xi;+2T9n3f{&pMG;jB8D4Cpl>fBh~ve?I=Ebi_rkv$x)kcbjl4L)EyyHx*%D6*H=0B{=-e~6g7=u&WR1i$R_CGLh}G$ z%@%3V0xJ8alZlbHcJ3RS+Bp7)0m)BC<<7gYI-(t!1*LZ_JDR7~JA-KoeZ+(S4v^e` z=Bak`FGh&fVMYs1{Ap458&ahb5}_kv9svTf$OWQMM^Wvdt_|n=nCy??Y|k&O$tA0P z)c;N{U`!XQ8sj=3qC+4QmSZSBKp2m0>$YGYkwstYJF1))J%mZ2UCZu3a4RWX?5?2t zlVKl66bVi*sI(@GlVx4N@$a&>nFS3NkXh6r(JD`70d#YVAFBObc|NrG1vT{s0VKE| z#h*;yQ0iI^K_3t0v}K(=P;3I@a2LYrd&Z6komt9m)O~874W?8;yFMnpg%g~ z*{X_i*j%KKjhlG{V-vIf<#8aC>uuuTMWA(CjisR4CVxTMPBh}(x`4WU$YY5UZw^)k z!_363>GwZuXbx=7Y9a>P`;}XMZ*Tk)= zDRR_?jemB0%c9G};!ajMjmZ06(--TZ?2WDJ&D$!{p3l1@d0fTNM>QTMT@n6UqMI*Z*mnu4$0s{L++l~*tq zFBbLs%r08DV1`!0v=ZwQS=F~Q?Ycv}yG+RGG`kgzbcNbeg!7BOlMkR382#0MS#@KU z&90ztu*D)e+Mdbq)m{pm%fL6IPO%(|NSl{CL;U&VmEm7F1K}e>P8P25(*4Nw#Y;{o z4fnj|a{Y92bKme9 z5Mqbrn3}Kvqlc>>8#Rz;&yn@#T+-h91g0#wQi$+t42)=k_znAuy@w2bCz^~6HwLFb zZDR1{RCc{T^{apwAk~xl7>gfj1m<}6IkRS}?zOWI5QC3PlGY3sXoZQ=lEsjmO~}Sq zT%LG0o2-Kp8&TMe*Ob+QCcgozZkKO-G5tvG%i-OTnUSraUU82e4EX$#69y!WdrThu zB~KlW$5$+}tzB46D>n0pC$ZmH(mQeB?xn-1Gr}6o9AX=I@~%L1T~+Fuh=bJPqweHVersDp_zB6(2{rh? z&0wrh|3l#Jc|srP%=I&jFFk?7puqsbvIEk9aQVP$vKQ%3lkEy;i8CfFafoym z@+}f!&(3BFhxr!~m)U3BJpR`$4<3ykg|n&}cA#E-8e{Wh@|r`k8wtCQDdLu$BLE#$ zDotSJ0gL`_ZOtcNC`+}KJ)IQt8>n~3=zdAmq1g{jmxhzfGSLZAy$JWo?|kl3*-gsf z>BIDPAU!jzZ#=gFAF;L8|7d7JjCgQYj`)S!g00LC5%MzC!>$6!VP$j90#25X zAUb+6!-)yI#TIs20*IuvPT@SS?{y$yeva=P6-Zy7{Db53%Jp7k4uhn|%0lqt*&sUg zU}#7%zF>o9^1?L#1F8_QseyD|Y>|N{_y55nL|brcb*0;CNnN{+|AiEYza&(8ya;bO z-0Hnw@@;TgR;wbAS2SdK0z#mKW7Mu8gcoI2!aiVyH_&Ao8#|Qu7jQHQQ2@#nR&Q)- z7;7`GvSKOGhaYoJjh#AA52o&3{yU6FQ{R6>Y7%06hV}c-yaDq|P7d@`Ez&xVdzE6wTU0LofRPG71@yDmL z&!5SP&UbEzCK4O||H_w$>Vy`-Lih+D9^Z=Beg!Z@jzToVOznd-oykF|8!#=5qexPF6x2Jl~5YV;6$w#`Fs`H_e z_LEn2X*0?!1Jx(F8(ScpR@b#*pc4>&G-Qyu_qw76;MA70Sx1B%k*YxySa@Xt8 zdfKYEPb1l^-0!P8qr0R2xI`Lw#Q&{2mi2I_WVAK9My4d8T1I%B`7=K3_(d%AHSmRx zx+H}BPmzZlldZ+XZ%NYqt4v{KPUChQ!^90?+yVrE=lBc1@VDo82L1RSt8iy+MIP(j zUMU{?huzOh@Jm+&5dOu?IjhXXTD)O^?L9c|oyGoH*J)>Z_{TyttqRY?#CyMjf%fxqw&^9=?Gxqc`FUs zx^a;q6-d)TDmhl;jskr_}`IW7xo0F0T5dRU0a+!y?T zvF~3-L%`;LvvXbRPimdeXo&|12Va#$lEI5&~t{vWCBcOvQbJI2ftL-+xXQ=+|Mp?}%< z4k-Z!o{>wu?MPh1ugM6s--l!@8Uxv%D;|nt^xFdel&^JLM>c|gW(TV4ldCSZS%uz{ z10dIq;K_GS;9;lI0pwBc=5{0LVZC!@Mu=8qg0z-OVxjWP^d51AySuSexUWZW!D-rS zMEIoQ5ZpleYFtf0_%5O~M8J;_`56=JvEWA{{Db<<)x47Ts9jILcb0vZ_q${>G&SH` zcOLI#%*&I-#Xu{qSwCXCBFUK#T~+=6;4DHM?t#MwX!%&!&cLiydQ)cX&>qX*Tlq`_ zl(cA#YyR07r$aQH=UezR+Md2LXZPg&qQOho2V&VfXk!|xcs-`j&oIQHPxd0JIX4g7 zl}!FNB$S6#z@VapI`ZWq^pm)@|54#^@ZGZ3hD3LA>}&?9c5q#dXl&M3Lw17(c+|5L z7T_ZA|L)|_Y}z79?}Ln-LCPHSSg!a7KnZ)zFSm3EnuobF>7|9|gd7Mg-^v=f+N+;F ze1Tdh4Nx}yO>%BdD>?=)k-wJ6%w~5izaO7(-s0B>E$u@*X36U_CsG#yN3yYRv{if% ztkc-rLQmi96u5aJ*L50Ord=*6=s}Cag}*{7>)hyWQj zm#lRE>EGYF;lF%KwjKX~(8RWm=S^;mxXPEwYNDVpdNH~|258SQqAB-v=ESV^Y3W74 zr@IiEIrtMNq*>^#M7x9QYC4)XYc>4XZPTU&tg{6+=xWe`g64i zUArXQ{)iq?0F6#AuyI}PYKkl;Yab+8i>ep2qo}AN4t{vTR&0d)cJS=s zj)&g!Cve>k5id#?#LL+#uR(8V+gm$?DLJC;HORW19o->IO_D3qVT;{0ky#<37PM8B z_4f*M)oPg2IP=$a@3mnc{*R+`4{P!N|2RU3hLEI&D5NH*&Kr`DN285K^gp@o3sy_hrM|N5bnQ zJK16S;nLC^vMEr@4wwTY2N#P-SM=}uKAKSUwUm{HUvGuLYp5eNNNjPZ?qkUVQG0Cy zK^7BX3_saLw1aoj-ar?E=Op<72mSCzj!}T97`Tz$0`%w+VPskU-^$-8OX;1> z^D^Bhr47i0p`^)1(2#Off>Bv({13>dB{q@;xlA>rOdATfo4c#dc}8%44ceKi1L37tW zKByW|kd(d)&tCpYQfl-HB=FaY_t*cnUetBi2(po9Q=aXxyS^QPi>JZ|chi}9#j`zo zk^yX7TCk=gVM6anXr$HKgC|f|xss`(9XtMh@DKewi<4%WWHVPymfs-zR2!~}HX2S1 z&&!VKd-f9SL|qAur6+r(#?9V7t0GDzQlZ(?Z$0R$3^Whc?-$yzObc%jYV^3xfy15# ztV`|+6Kj~X+e7=r9oD3$OT7E z>D;Frz-EkU17Rto8>kx+{nIzbmY1k*xRQCnL-Ee!iI9g(#bHI9Qma)w;$2-~+z9*@ zaPwayX76x0&I~RfMs+?*<<+xEs`Sif0C}kS z_a>CS3ngC?lsYv3@?4v40_3)cRV#Vi&2fRkpZ;@~3d_w|M;pV0sj({Hgl(MmNKT?X zpRLpjEDS(`iI3;DzML+4(Wc`M_f6tVF*t8m>psZN6%hKyfKCEVjcfywz#{0%zOtH! zV$VksqWP998gj3~9nJg85hHeR`x^2Amca+b#!$AlZy}#BQko{ zW1(GvZc(|a0(lE9-h&$LU4`OpGJ`T%>;GOb&?U)o{PS;xh<|PIaV@?J@LL?(N+YAj z@e>COX*I|@7{5BB0Z>Jw8tg8eO@QEQNe`?o$jkGWMg*+F2Luzp2k7uLZ`iZr-=W{A ztsj6@O(mhFF(VX-a}HPWdhB<~33UF#^SRH$?B!+I79a8n9G=Qmx^14ehK-q6V%0nj z2WOQUawhlF^ddjSb*O%+Z*gnriT~`CrED>m?*ln8fqOof%k3JJe(3!{Aifpbvkt3y6rI-kgM+|>Y4MToU?%7RV0q0pp)1_ zL&Eo+4KD254XZqF!kJ~zN9FTqu*O1i?8Ht4;(}0ohh-=9tV#_a@0ytcP80MlVX^-K zzok`&`OciF!@plr0FNAD_-}y&2V_FugoulxUuOyNeul&b@IfW=CA*nrWsgYU6xX}&!{+ei4e;?!f5C1hT$G?W!(tO0-U4baMwMK|A?Gs*-&9j9iwFaV0>FtmGU_WX~NSu!H7q~i6F1j4( zI4c!`hsqbxK3RT3nCFPp-+ORiUwA%E_H|gz+=3WYFFK8M0fr}x84C9Iq4w1Dn%zT= z{NXQBauj_g%a)EM(<)~%EvNj>4XVKUkRgk=L`I6|G%YiKd8R>m9^Q~Y!siPAubN|pfa2}e)usH(sh0MuI0vCS(r;x+2SQfI9Id}=N zk}2ue=WDGT0p#g1e}T%NQ1|ipGT)z&#|24sgXRmTrB*~6voxd|Fqv2zUH@al;K=?3 zYn25nuo2dOQmyWR=wRsM@ed%}LDO1YWa_SdSmdF#O~3R6K_Oa8JFYhIUKq|A`M>>n zfzFz?aUrZ{2cnXy4x<^szq1yLF-HF3PsSLa3QZGcrnngAvalXuMnA%OH`dEwm|-Y) zmh|?W28Ix!tbKyYff-<6cWQ0k>dkh-4bF%9a9Qem+0u`6li{g5tQEjfMg!5O#@4aD zl4Y0bN!hfhu-};z{9QkwCrIFS%>T%x2IPu_#LC^AHUndCkU+xO(X6+_Doe~)uE0>qWjjATbe9igPc z8GWo0~xUob(W&dI`-uf~_hH6wtjM@9(Y8B>rh}rt{Uz&^* zzmCH&pw7kdjq(@tS8bZ3)QApx5%S$;jywZ{j@l##)~PL zi5thO=p6~DEefIrd~>wMXo>t6vnsGx@#(@>b5xByeSywWTKaX@0IVcmAHKrtl3%C5 zCnAM2lG|b7iTx)OI{??*`N&H$4}sg{azI0A)w#tVAq|T9$+eW<$u+lOqUF*P&-nA* zC;pP{Cea5^1qbZ)ntv2D@sgdHfLr@IY(HqmZ+1&%>Op^oE(z*i)SEF1N?w8v`B#}4 z(iGLmHwXz9Sm1mO@1qVDCWuO)smjbxzp8}6QX3aTH#!)tB>Xzz;!%}W`)Q`h!3f#A z>%>8@^CZZ;(si3U{RqW6UfFuO9B^>d`*xnitSIf^dlSub_ew=Lw6e`~h1JHPQy*wm zCEa%JHna7AOHqJ#XtKhO)gti?jhS;{JGWUflo_#-x^3WO-A9;Vn=252*qOf2cEKZE zRJF_0Y|@qEFS6*ZWOt{-X9?Fi&nOo^bGkW<}1hw~!77Gk&|gVM2sqKRyL4(Evj;01eMOfaM9 zvz#`kOH{G5Wc&yZFAaSulKfmOPgF(G7J=lkgr<_t%Jh+0w*+vINu*^5ssbdfDIKBXY20MxBrEa1X}%f8Y03#z74#nQh0BB^~jwm7YS8XGOcwMa1j`O@dxg<>T>;-}qf z(Txz7x=EhA%21q-Xgn2&uNIg)HQ1IJlbXgHEwMnv%^!s8Zz9`DJ7gho-sys=tfGs! z(w~O^K)?AOUtMgbX{~#7p)|dba#iotSV!r5WUz{xGc8N>MKFjysxhG6=Z3tNl{ze^D zFDJ_`!*{)N$ma(msH%r&!VPASqgDCa8y-0?T;hKxYilwc;fdL$1;(_wtYKKZ&3!^0 z*xO?le5d&;7JU?1sZRF&Bl+psaN(i&9Bk@f8IGlM*zmxM28}S;Ry>MGI1|y}Wzf{y zDaTyQ0@pf{WMm)Nzj_x&x$0RkpmqX#FavgUsWZY2jte*wIX(ay-9%qiboU}vQ)#!@ z_a&vJ1ia(KQ`(v`&js}G@qA-QHJ+pP=Y1_}*VLWYJDCc~{zW zw@jt80<(I$P&Oi0!Bp5Tz5Md$9Y4;Gag+Kbfndri)XANeP-e{}CRUL93Y zkL@n2EjOoCybTTqO7}y8@8}uhw-kTzJNX)_-Of{)^G>*&G`A|*wsbm`{B$o34-sr0 z@T?4X-B-!4Y7%lf=z;P`j%W5yrx+EgF#iz2Wa@RrX8Q-xmrsZM z9Bh9|h+8L7@IV-&FpH?l4k)rdn(ZB#=d(76gx+(M)4~UO>8h7HYd+f0w@h8C6 zl9-uLBNv_Dj2){H9;z8KM^WEVeG*-QI4@P1k2&QIUTb0)>=k`A3>j}-umN3*N%>gV z0TGvo_xhXF zMLfarb}VE_DhW#>*Y+eE2PH&J{HOD!n`lEt8exgwH|LE|OkqbuZp4gwZIFHAn%Wb} z)g4J|)WriJaA&17+3rD=hJ$32?BT_=b)4v@*I$=}LJ!C+l^mp{F@J2Fd0PiM&8V3j z)n8&wzk7L)-&_kU8Ph$pc8hlBtY2YxojSp^H5Ydq#CVDwKkQ_TZP_jd{tK2C4E!gT zmV40`_Qd}?B+(kjqeg-6`Gm3bYoeE#(<3n3(-NgouQRV3e0b|j>lnC_6f9)Dn@b|m zOI)pM*Rx9#aer+ol7#$1>2pt_n7BRjOG1m_r~})>dFo~Hi;e-Jw(of8!zJ~kDm1(x zDHMQ)l-4Nr30!FrKd+s2gL^OBMNk`*g_$L5`(zxxYF!2wI|id0k?Py}9mmdbSCR|F z!ICgHQxgr0hj520<^(5TS&@>tq6S#Vj*%`*5gahbXt(fAkAQRrmiyy^gqi7tqZ3Ao zW+4y!K37{ipc~4wsf!sbf~@WrsO1d^vhp#NEyFhCBX11>Cr3E2TKIM!-cQ?@VZ{To zL43C#%8L`!m2spjeBaX0+6ll3|IJ;*p75<*N<4u4OInJ+ zyVki#+}D%ByUs7q{+3%17TT*3zw`hzUcHgq<_$G3{NWIEvBgQS`|M-Y`23KAGNMVR z3a;ENfbzmlToCwrjDbHVJ%Ec`gU`VbR2&gSWB;w(VTqW(A58qT0VA6o0E#sQ9|njQ zU<6r%+al)`z52OYF^EwQCiv8bl~&n_UU%f~h|EtVPl`Ia(`$P(()|+@B^hzCen-FK zN4ym%my&);XN$?&@lGy|-4X14cgeo?fCcB^&K-2K#B^Vv)4x8YWcb#n|Y$xsJ=Cs;DN{1OJCY)Pt01H0if@=zH#s`Z~L^ENoG9k%_{gp=^p zK;&V>#~bJmw1xVUGRSI-{Ls6a1N+5G7b%gu%e4?2Gr<8srozi1h(GpVx}Vlid0mf= z5AAtAc6``%uKE=Rs9R?zOxaO1;vl>>p)cutkH~0ej5#Lh{QLk8gqP&WekYJV-vHJ) z&WRo)7uAP?qd0oU!yJWs`;mCqHc0(NVMYnwBVDf#(rs$j=WdJ$)Bl1N6#heZn%D?e zjTtuxu27JWJAaL=FQVoLNcS&d)$boi)Y1L6s>R-34Ad}MJF9>&ye?BDA9yibxOtRu zgKXr5S`^KWDPpQtII_|OS)?|@*|}X}LJUC3M`anR;$4d6amNa0Kx;vSCxxP&@lYX&TuV z+r75XVN#j#k5}CHzN?a41e*c3%dh~Tg~L)s;Xhy?QFWv5bd1q`;qha_Hi^}NPWHF( zi-YOx2G0C7%t>0=qYs?U<36>X+bnSZK+7ghj+@dA-y`1;u0hdlgVF5`Lv8+KXrgD! zRC0x;MOBCF+ebYKc(-02EVdz6Or~CE$%@bBLn_yPCIq@)?iLmFR%vM?rsy!fEM|_^ zjL${|zG|x)Ri8(u0Q_JN$C4_f6iRz|@n?M+;Zb7oY@7c-*cq_pAoFE%MR(C;ipVx; zFZ{N!vaMuU)Go>noR{RRXNk7~CJ*O|EQO8zs!oP8gnA!Ibvf?1;GY}aFxRi1dyI<` z7iUo!^%{tr=PayMqvx$Kt3g@C3E}mUHeYBu`cc-T4Yub@a%J4W5elL!AC@OMi8w;q zY;}WNb0z+>iM*Q4%axPz{ctAg@(SpT3pcTc6aWtY+@?lT zT&Wt!xkH|kguauU4LK|#7LzL3j{_HM?hh791~m== zl)$&LUi3Xk*A+Qb4^_$2%s#MW+{c$XIvcQo`oRgixa&)D@6@}u3hilHggL$wKQH8? zqs{|EF|m2?KjMJ&t)MpzpGJHLxqID(hz!vb>agkl?~p_I)*R?aXK#ioq5jisY4Gru z1!l`gY)(Hft*6RtJH*a$#;&G6;x$|!x(!%~Ac(=D$Q9gwJffN3%sDPW6IKjN1^nP# zSLvKL35k}a#56D~ilKEyZPw)cVuF)L>?kZ(hQ0)Viji5=v85Q3UN`CUto_f91(=+3 znybPkKb)DzU73V}ME_M9((1H^Oeq#~*3te~QEtN8V%eX7gQhnptH@XaeAexv`Ep)d zw8gZ2$0d2T1hVqjZ0xXV;aM0YOD{~56d|mOhOv5orweK1dA7L-C3#AUXx@ z{``ILr0$4Fe7p;JDfwLawmNW>Mp!|cg%_{}kNE5|Wav<;3c14Z_sSf8oZX#Ms8ib( z*77+X&mdp#PS?;6uTy2~Fz)FnmyX2aQ64zJ$}w&&E^e6l=SVLj!&O&^SpR7a}RPzMWXRqJ0q$MZD$}Saor`-0z5NJ^z;<>qJO=2csN84^EM4fbg|v z`DP5WWUr{AGCM_gN2C_5^MM{|;=mhCmPQC1@QKo0^fv|h5QK*rxYfmD(%M{o9v(l! zh2~vuJrVwOSdLfjWUC=R4qu->9WryfoZ`bxp)AYf#=gU*aT7sR!|qbYxxhb;k0N7( zKlpDQ<=^etMEqn8H~H;D>ga9%3h9xlCW{Rv>q67aM; z1>*IrnzvB_o&}5Zm+}xc;Qmmb_s{uwPOJ=cw+kdFDQS9Wt!p_KF zs&VzdU|(Pns+?wBxq2xbK^#e(<#Mq4;idyX>CgtT2Vk0DLQT=j8~O&hKl`86K;kt1 zV2UdJU7<%Z>h^bWR6qO#_ABed#?oT-pWPQ}ZS@~Z^#|6PipY{HY@`Y$LkcT_^ofg% zxYdIvp6PF%e*E(r6sd{|O)W%Uxh*)!7uU=!b8=8E863be*nVlIW7=N4Rg%}6`S%~C zsAs5?dG;jWnsR;C#Nv=pjby{_l_v#__Jc<-37wN?m#*S8oq*lZRaZo>UR!-PmU4?9c$03%nz!qDv#i1MpU$u7lU3nwA3*aWOO5+8^gPXjA4kTg8g7;3 ze;`#wldA$AObk<`iA|6Hrt_xMmt!$vl}OW9tK&Z|pZHOdg@|&)5;*m_=^M>`5!X4Q z<_h$VADBZcr#~ZV`xNU7ip0q&dI&wf18v*90p)}oflNRvJgsR!Jqe49Toss?ID-VE?!_lPM z2lkkLS-oGbUJE`#G}b+;tYU6Mf77!VomzFxrQq3^hRF_UPZ;wTC4Rzyk0^J%f!9_p zg4g=tS6)2<|2H_|t69TRsD@7@*D~!OFy{!C#uAMpk4|-oU%lUz@me2?S+Gh$mv7Xp zl+t-cPC9x{K)qxJu+>KL@Js;cTuSg8DN`>jgLEbAfNUHsqd zrmRiPi3PJ*(UqCY_}MtXPfGP+(QH0F19F%sR0#z{KKx=@>M!Ty-i5DZ72Oma*#Jsn z`RCE%9THII{)XwS7!V!piI8Ug=476i&3OZZk!FvD2Fpy;fuVBX+46Z6ZQILG-A9^h zkFnLSc^TItTdG#uYyFMckGBso&OXoWnS2fBjk+{Jrkt;18g*EB#H(WKx&si_S+Q(| z?r`=`9348q-^KkiNoujv@IanRm$ZE2bke4a5FVU8U&>;0~hYIj^?U*ehG z(8YpmuKIN!lnQ6&qJ+06yvr5x?s)J4gm#|zg1KM1q(}2jWKEE5 z2wwb64&qr^)b&}6lppd*T;g{$lNUpeqcNSN;>dP{4dMM#ViLFI5B?VB3CIVkH}9>S zojyEjm@I(#gHJa%ujXstvm8XnMQQtFEwy^&FV*l#8^lO!lxld$f1=V>H*VA}&guE= zpk1OvL8+GlHWip$TW!LM#;# zE}}=?5MN93-U6tLy$DWW)||n_bDjU;ZFaSKx7_aoX+FUm>t~<_gyjoQR8m3Vp5^<^ zgNzaQ&AHeGcXA|&{S+5|GMs+A>|kAiMu-it)KI~VW_k{Q<`oGhKg13aCR5CCX3Ici zQQTu}#(YR>wsXzDu;YT?^GzvmSW1w8aNw0b*_3@K9i;qBEtK`9@X?AT4`} z%^S))m79TcMDl?tc)E>&|6p}(Z?6LtXEA<|5}sJ^{ucBz%|2<2ZL08Lh5F0#;X>H8{4X!n%R(7lovY)x;N`N z7WABmH+D(+$Xo;V)HX~f*hO|Go zE_|RFJFCFD4nw3z1ujz#e^w6c*I4N^^z+v6Ys)!3KP-6_#pI;7CtJ{8saqT$S655B_{r2P6kV}zo z2C|tmv07v0`jTSCd*=$F82GkJPlZ;LYeNilLYd2Wa9>l~J6=YF#6iWASTCRot&+_C zU&yQ${;@we+;8G*y*8Nhq)VX(+}PREr!Oy=yHpv6kDug{1qT&dy@n!gfOBA{EejYW6{K)G!zW^SqN5Sq%4qXg6Gy&JBm=2y@n6_ zde(scna#+Pk0xH1W21*1nvxA`IEkhAPzJ1m{qW>|Gm6!1M4rzt?a4ijm~G~6yfD5z zOZ?cNfqYNXT#L#Cp0vCD`^r3YkS`Ao@XslS$zN-H7^5JEWmp$3VQLr5XJ01#lRkgz z2i!GR%1VOwE_+enw)(&{%?Nlf$G8aj?_WQAT*R$+k!5gojlz|17BFCepQdp##mRBi z;3=des9G5?mv$Kj&34l+JxjW@44Jmf5KojXw7WgY5!DSy*_<6OW_|JJXx9YuV__WO zK~mUebD5REU-*fAjgrkedXnI=H{5zB>QQ8w7luYzO@F<5R_7c_!8l(~ls#r6s)%N% zv9z8xtR~Wk>v-9cL#~e+1OnOC<=i(}zOy<(B7T|jIc!@4S|5Y>+X=dX`8h^XkmGvF zxc;^M%_kEJnWkeop@tT)`fCy#|L$0B?6I;suUxOIOv8K0q+4GE3sd{&B6UmCA>HGU zeW{PvYE9OnZ4low!IIEcI{$gEzoYDa1Y zixuz6*sE#<^Ic~Bxn2>_ESrY@F;v^UHO)_`=<0S8*D%?Yi+Z3bsVG|X3edl>94XqM z(f}WK>*u##MVp3~vtHBIg2r{H(B43HLZ5wsYpt?oR;#VjM{J;Ev!=*??bZ;!hxw4a z^{KSgav^d6|DwE1jp4scP3dCx;ZsL-?)R3A)%}jq#3&>xEwcOICB)Al2cVC6iwQNZ zFQT^>%vcSzlGl7Q-3PJ22(6%u8pfc9j*-^Q25`b8PVnrKcDRAu z53r6G@s~G|l~|@Te4ERB=rfkiIr0(UDGMC#Fz)c?(kZcfbBWHo*hmoav)KakH!6eX zorR1m`76j4bGx0MjQ1>?;#kF4W7ryeDE2dS&hn?|pAh;kV>){wjN{s!OgzcLhkh-bptrUH%e#3=Vm8U$P$-O&VH7zeH z*Ito$i)E|F&*DwiN0dO|JL13QW{Jucd1PjJV!uLteTJTybTbSC61^QWTt25FTOCT) zM15R|Ulg0seciJPJ!!4qX*RON857BIB{P~e`$$Fv=By|@0j}y{{sCYp`L6%kOuA_f z$$Z*}eLoP7%8(wTJxsC!vON&uc~`R`V*^tp;gw`%snVEWP(X8-oBkFmiL(mB<3OB+ zjp46d=aL^mbA;Bg*_3yTHO+1>!d%H(yt8B%fVjBgsg7K>NgyrIwR?`o{_DrVEb{v>K3_$Ob{^)@RxKtKBJY>~9gx53kiCW+2 zHT5Hnr-a-!DW;-cre6q4UiFQ|ePB;py|Owy?!f1=kZJ6_V_Qu01|M;%$7a8&qqa!9 zy{1%sYwxsr7tj547De%H*_pZU+lpVkC$8MN?Sx0B;NQm{t>G|M4ChF3K-qmH7t#%g=M+SE7Pv5n=Inz?kANUqJoG4(Q zM(q0Kc~JSK*V&`9$zk_;J{_F}@~gf~sDPL7t9$JV$rl4#d5Ay1%~v1cqEKN3P>H8H z2wBb7n;y9-whA-UvTCp2200wOd-_5n>Hc0-OxN%fPJUDYYJq-=2kQO-k1EU3_MSJ$ zMqYez8o5)}wIDU!iW)x7IubG)uJujf!NsgT&yLyau6@>XZ15}S`B-6#TO?}wia3e7 zb)dJ{4Zn4NhEBi*`xCTN4^GjJ3Vy8iO8+O(vF(7%WHFD9eR6O=cK(>tbua7tR~+;9 zx!)?jv7_HhVrjW_n^-3#?P>U1>T1CUDghLU)hy)HrtDe zr+eK6e0!Rf6rZHBkdRO6()k|qA=F`QqK^FX?88o}Z4p-Ow`Rr#vliKq_B?*}wm6Z> zYZv=f5@!m3)Y@A%TUz=tg?o$jqZh6A8Nwtd|KfI5k9_+Zv-lQaYS@ zt9m`@&EG3{vjkbCDlu+vogu2N3FHMg7|MY-YcwxW1J7Cl5ryw{B&thF=P#k8Tk&J9 zOQ)}cf@a5MN8!KLvz`HRO6S4{#|-*aX?bQao_?umn%VeluX+qME~})w_tY}a^Q&*< zHeLgXF>%o?DAUY&@FydCc%^|%T$Gs(d~*i7?k}ntj>-1Z?M-Pj1uN8uZqLyg78PG? z6Fx}dJ`PKs^Og0!SIB9ZVaMsuj77cXw2V56O)Cpd^PHH>_uJk7>~wYH|4Q;yeM?A} zdyyU^1hdXmkyw;RPLH%C)W!z6a`v_FjXEHlSRKZO(%>N2H~6Zvtb+Wm=|*p*`WN7` zUai{FG4roej2xoWGng*BOSQcu6(xi9)Bj=t@7$p5qiq`bj#o9B)xTI^v(@imPYt;Lkp*WEV~2f(*T+K3zl#%r0Ss+`j_o&h58unaq4~uLAQ$ z9ZYS-V3#M^NRAmpd?9AVD_U#SbB8Ae?KwGQkEXh=Uhj$t{K9>FO10(%lwL=<1>l+p z5BDja2q7$$)>#jeEk0Fg^(v9RpxRC@xdXnebhY$EIq!?_Hk{*MKtke8hD$NP`;Fqz zbe98RevebLaN9y5X6u9|yHQ;9aJ%XKEGU;3K$V*DX*=mg2&&edljh@a0E%YJV$`Uw zG8%G`0p(urc>4L${*+;dv>8&7qH9>1uus95a4@3hjPT63EwFvQ^WtZ zx8jVtd_eVKF>=Q$LHV5q=oflHXY!WNm98fa>O7WCEU+dik>3)YA4OcYigX-N48k#( zgy-)yKT_jduotDWEwbO67a4d50`4=f1K`iPB$jKJNV~&!)@%_}J?N<2@5wUuH|{G2 z?xH;c&f!Da7NODX^3KGat(#}bK!pY)yU20bA$Hw{h~A$ZiJ3x8`NUXiaL1XkBanMB zD>q}h4_+t7Yxg8)bE04sPph~D9f*8;R%KA9JuB1`3LH5A_}-dYb)l%C%~_=f`{WI# zPItZvppghfZeQDIbpr~*mLSyO*F(%9$ct4fA@X?nNDLEem_z7(WdgiU*lZq|*e3%9 zNf*mXt-J|D#)2(!yy?A*dht>D*h6zHP+4fR)5Il>Ntg2|neqdTB?dFJC$_gnL+GZD zdcIxIHt`ja_0ev;kH~^;`s{TbncxF;T2K7yp#YOO3>TdvzipqKvf{UKMf&FPTz z(h=sf;Rs;ZeeQU)Nd@_;sC{yU!LJPLhseRhutjNGRRv{VP%rP#)n>(n4-JNlz!Bzb z$%T6*=~nzJu}ESSUKk;eQ#>|~u&vTm?_C#6zomzJK`aQdS3 z#nC$_h7f^Z!LC6_&#}^>nLI=q(HD+Ozt0}quqM8N@$nb{kt`o zH)JA}&gIZWg<9-N=!zxT^lH$F_ZH-a+WKWmR!NO0dRNt1fPe}IY}0t zFGKXC4y%A#l_QUYyeXyb1+pb!;+t7s|9_ilIyV3Pm_lJC=)fD8>3L@Q1xq_k9b>bg zlDPm%@XTF64q)mcbMeRLnZ6dq6PS|XYyPY7B3?Q$s8n27vtwR080!G}om0-rD8S~4 zDm=n%7myq^oo;YNI4NWVyM`MR-w`}!r)@h6)xxYCYiW((5}too?tcF54Q?upR5meaQ14UOlwsHRQgM3{X|n2 zQiqBw)y>FRyK@j%VwA-8S)P=TmsKt^me9ZgEq^;+PC8?g1gRvVuk{EFr*k=sK%oWN zE(g85x(nosCg40>;%Hx?Tcu)mE`_Ua{kw!6WqqraMPdQJj87@>1Oh5dr{{_ zU{$!bq}|ik7U>M4M}2C8Lz)U17xDBPnvU;`2>0wvGeiVU>6ws5=sOX2Dm`ekN77>$mE7CkHi?y8D z+3|g$A>hBBDwNzf>dCd#M5gC+a88#r7bU}#5>W5Dg=u3>^!^Z0-zVbv&y4#@^x99u z?YJgJ2sniNhq@z%i6+09pcpdcO#cPl!QBLLDSl4cnp=m*qRg(NqLq=2_z+p(~LJl zx@~G9{+ov=)X>JEX&gLs{ueLe45$r!4@F$^x-Z!=vn^$fbPDz+9NgXFmT84GprQ6e zfeP%g-;Dj=WF-f7x8Ur71k1z0jotUF1zE;_ zLseL+(ANyGZ}0xosE#p>9-`{rkmB%#UXc2os2ybsRUk*3q)e}akB*~uFq z2{$!bX*XI4qYTZLTdd3a#K%n&$LTs-Ac8cxOZ1Iq3vfz4qvvXD~o1`Uz5yp zK+F|;PA1}KX`oKBW7yWU^-sQ7k+UgjSxNFT^J4E_;=m#3Eumk_IgPr~xi7_!n=^2! zD6KQ9D5A?UR$g4~Nm;F|U7ej>O&1r7&bT&&j;x=v<_yXLeRE~7of^l(EN0*F@5?}( zUl>(mN8$Y(KqRuZ_56z?LGv%fS1h+KIQoa;wcfB7FHa(cg=1Vut!F*0Hfq4;3dZ;y zKaaKw`sD#Ni!*0F>x!Tsp(iCKL!{9Y`@>VJ*Nd3Da-ik+dh*LZlQt|E8hsGI)ILC* zifTKd)|@ZiL}1-!S@`uhi3^6c7&C_jNJ{;O)p!?FHQj4HUBA4r zJT$AD5qTrClgzA}h{_5D%^Ve7SB~%Q5xv^Cgr{Z{6MKcIUY`erO#KJgD4m}xH&#+y z3&p4Bn1N1)Ra8WD`ct#U2%m;W_-slnV0UfoEx_zH`c*}lgp^DxMy6#4BDYB(#Q4F& zKTBU9Kt~>#tBG$8I)2Nn4xzhcsC?#ZP#Tb=yrS}|PkZ+$0#C0(tlVuP@5A zZtyN*XjDY1&oykPi4rsp0ZmDd1}g^|DvL^HR| zG;~!|6$3j0Xo!dY*hyH?YqMbVRq-|DL>QLlKsmwhKid)uq*OhmK28V@QDBbkcsHa~ z-ckQn+|s5_WD|hc%4ImNv-X+IM4D-KA?+O_x@Y=9CIbyN5Lz;fK!4oK-bFIhsSyZ} z|Ci=n{Is`|#&#Yz) z_>ff!u=<`b@QG&@$;5$mcXA!;P3$$lcOm>+ah(EnP00Pa6UNR_Wih;S(M1O z5h_Yd>U6a3-gYxxsxf&D@j-R9lk-nLrt%%TzeOm&K#BW_Fqu zgB;~5c+@~(Cv%Qa9!X^DX5A)L5l=QUvn|eJHVwQhV)R759Q2)RT#o?a?ITbByMd%v z7&P*c@6*{{Q?ev$47cSd5dE=`y%(iI(7Ue#b`FZ+`+BQn0h9+LY@vG6x)*t+&M%&7 ztf(YCjd*xWx%z@D1=a&6&(3t}ok`jaJ~qzr?Yr^pjEhmu&~&QNS9IB;np$eLNlDzC zEHFq~cp*{Oe~^DQoFr6SL@Ag2dM?FmMI3mA5MHA8rt}a!M{vO0LTHQ7=Ph<>8w=#9 zLOg9B{@L_(E%fX+**#zb`*N0DLZNL>0Ea~@ced#f@b_rwlzFu*cuUeD*}*$yPT@E1 zDR%j;L@s&-$Dc=??E)eS%FgBaw}A%yC*Nx6`ukv7OQyDU`5HNde?Y0NMZKohL@|EY zMq5!MxgPB{PF~*T#`X=d>@xApJgg0knRXnvT(o3iO*MjD&fMDn^iqB66}pmrN#V@Z zaJPGB&2fG9;f(bZ?<||Ig|qsCkuWJ_~vQUZ=#vtrvJ#>h3nx-4= zN-~h_fH%(Y8lR-omIwM~G68=Im4K|7^y0dfVRYkaGT|cX9!sM6#A-koq*|trjgdXs zr8A~X-vPnP$s;CQb16w~XVoH&Y=J~>F`s_E^f6Njs27VpKQBp(f;BSIa=Z>&i8&kT z5$He}Ta5MMLqM0UNEDRKCZ+PRU?L_=hhd(?G*&6@VxJ;t{T5|4M+9g6dTs(#g0J~j z6*(rIuj%3h6%ihBhaZt!Y$t;~f}h)f09x|Cntst3^rG~3&==JbyV!wFNqQ}5>`%bb zo&3Ql&6k8OVHN*PRZy4oAtK;D>0bItC&f|vaA9F4;~h(~^+ZU*y%RhqS1595Y0^YB zeEIMoqgVL%KGumiNyy-t$Mo0T;F^!xaDJWQph90dk~^&ID)>+1v5D@muV~4irMP3F zTjfZF9zF8B8>&7qg9mR1tM5}q)P!oLNQ!=O-4Pp!aLHbn4RdD0>V~;W&o8FAUkvY& zyhA_nVzT>|%Z7fmxK&WEi#_KI6Lp(#hs^&--tdP($zJzzP>B}U1FF0k%^n616WWTF z*Bsxy!rh&z-igd|=tUu?hV#icf%F-h-|P91vqz-EH8FuuPm4~SA^pCDlX0PLiLsf%~r^3 zn$0h|s~({Mm+ZW+nEizfN5CEt4DU~+D)>exTB>^Fj>z}NT*FcGkq$tsLgNla;Eh?MO@S8)TjVE%Y=dCT^NR|_eW>Ap$V-i>>gZwBiOD)6CGZ0Aj@VGr z@EPs-IiwrGLeAT#$ehI96@cByf5V4Bvf%^T%iF%qW~R<4P9E@M^!19|w8^j?RijlI z^^0vidl1VeII)LB*#@*)g#X;KT=z3sSLt_AI|-)@TumWh6|vze5uai9sbYs$clkis zvl7(QJ<&GlAMAHHuJPo!$>;i8p{DmyrYzTqJqQoqr$f(6fc2=(r>xr*u!soUc;*kq zs^Lq|md$Mky~~8_9pTIRX*vtUq{ZDJ`-?7bTeO_<_S*#$4bM8m|7#)Vd$44A$Y*A@ z{viq7`NI||VWYr=#Ht3r_sEjvDFPoTb~C=d(|$&ySHhCeT`^O|G3gMS{ZW9`OjSB%U{tagz1aN z!1Qmuk)Q{fQ6r18O?JFe+3=1@gb%mkA&L>`XYjl!qyNm08uZ6suN@2Nl-3*-{_-rm-j#ApI$%zU2UmIpuL)nh|5!13 zYVt3Ae`yIiqXAjHQ*4d}De#xFrq`Uf71475TdX3fM+^^(+#$ow;s6fRa?hP9d9Uf6N6Fj(qHn9?`y>!qgPVo%Q>6 zqkCWTt3z`%6B?}Xmdb0b7GlNNGRgy}qQYe>&q*CNEj9n__(nOLZm$_6b_t4z7k$cL> zJ(szRjbUb+-M63Lm&v?ST((+~~UHD)*3U?qu?=+_H16>(RKTf!q zb=gvc<$ft&c_sCW+fBDF$)$zpEJvBC5HGdCh=it+bM#3E-IM&Wr~;)E-ZdG z&>>|vM}~Y%h=9r#%G=npcv=8?^76XiwlEw4s?7M$xPHsM5%2U^yPFOkp|+z4tO36| z`pv-KDD=w${@CJl?}F$l`h9{>kMNg!)|p$I*3_N3M{s-M>92yvCD+l0Lv<0~1$vxSyt54ZNY$Txwn86r~g?p%`0I~wNpInRelw~yYJF=CLLo}m5#f_r5t{9^@ z-vhK(+3N^B7^*u=Kk)MU*^-cxtWfjNZxhWPR%>89K|}!KzZGYVPO2V)6>{us7My7f z5WoCl8=@|w5e`C43aj3A>GpogUAz#!2a^X^J+!GDsFIJ}!k<+|Tro%z_b-}ur5g<@ z!Ar-MhX!Wnql$Y;{&wU`wu||lmp+<_uG=)_*_LT-ic7Xz2A8v3vmzW`Vs=Tqo=MgZ zQjg$Fo~>qAb@{=|g;TGmQ#~dsDJg={gv`adUF2T|(WD>YRpmaBB-ko`+^RX@hkD4h zN%8ihS+vPT$L>joYu(j)K4{ky9;u%O6FGSE!TWl7*XS#XQtb+Zpr31d!6+p;c8{dA zXa!LiwPHh0N%^_IcbIv(ZqU3t@0=lOx~Kx0$8FOvp6xL%>$L@L<5Jhi@ee*$hZ zBs(BDa>ehNLZ%(`^G{Qw`&W!s;#ESBI%+;IC1#fWxsK9wa(O-VlY_0Y@D~?mna&!J z^Ijxy4X)8n@mT)FtrLWo?##a608`cJVl(Tz~(tFAfG4D14gX(rz(1Q}9+Q7u|)*8H(P%WthXbt@EJK}zf{M{dZlu+?WIQ=0=ZU>?1T+j~7 z5bQY+qMSWk{(7KBkF8!>{9On$2`_FGXS7Im?_`_r#mbfC*YV|}-6CSmskQVi<&OGO z_Mpo{iGyF)?M`eHwi@%jj6;jZ_w_5WvL`QsZXuoq3H@$oYgo^~n^(70+`XeSp3kQ7 zRDsvVRXe@xjATFYGnM9aMS?aAThl zSkGR~8RPj`oEG0`HlGGdHfC)N|@!uvM<3QiF829JDMPK)7n37$rUV8p5z z0`3eyRB@YavY1(9#Tto3x_bb`PhAl#i*cP>urkNETEdx3f?@CUhiC3y>NG$v+TiYS zHtbqJ4mdPc=0n&Fw8Iq!d|{BE%cBANK(hKeP~Mm~j!yjS2FD2M56#H-7PC8%)q@89 z6GCJ0y7=?*T9z%qGWn|n`E}-Nwgz{k?1NI&=vVyG(}c!ezFEj$Q}!o=YrgYJeHV@7 zE~v#vy8Tk~fcs--34U32W8Kmwc(%kgSk7K}&sy`CaRlL7UM-Es1U%C;!fi@FsnCjT_O zc6v$Bx0Kef)LlE#YEX~Ey(nQUWeJ{vk`yROK?>$4%Mk{;&#n@`QUs#Lq`iNzz~}(} z9OoSc)#L5KLk=BBVe?_1amhfKio_SgvQ{RH5K!Onknej#zm_n=uEa?DL%XPkgVUdl zzZLqu<)jGjG5xyRn>-6bL6FYn-$yB@prd}E`RVSNbBEs zSNhf6<6PYx;}cW>0i|gKtehz5xyRQx=Fg?+Ejc%p)ozOI_#W|K3omDJW9>j)%(#h4 zXoD)#)9=_?9n!O!L)5b|;NuAao&?>KLwHIy?Nv0?>@2W$gKWkltLNTl4MMZrJxUam z24I;uJ6KH{GW`a;3_4a@(VHv-WHI3K1VUwvk(J<3F+y4PD+1d(gQ@AW|LhPAto`U0 zdWBar!+fOP)OriD1JB-^gJ^x2S&lub+caN$T!=p5u=hwkT+;?tF4qCSydj@?EA=V2 zc6B?%Nq2&`nAY4uUhm3JMh;hl)WFew@G{F+PO$FzRjfiq^L7JPuQZ>PRhlRpbag6& z6?WdU**a5BIZqyMo|(4=hIk#qqygWKY2CCL;{*(1Kw?!$s(f)_R!O!_uFWO#-e&Dx zj3S9I^O9vBThIB|1DxX(L<=gQ$5trqOTlcUJ%q!SWK4v3A^tO{MV2Pq{bC9z;j+iVx|1 zgjwLgXCtN>{!(6cj*B7-us1y;X9se^?gW6U&%K9vM0icu?@g`iSn(IMh~pQj*gxhZ zJ=t-t`Ot)(?;P1>J&FA~hEFCNFcHq_NXi<>^vQk!gsBnrb(p^{G|!e3Mvl+8NYN6A z1f|@oVL_@$=WiHm?M*tFSKSp2tGp701kxN!Ja`v0olHs9P#}RR1VmgF`SJ-w)Jt%6}ZiTX+h| zrpPYQEn0W$S7&IZWojd~ptr{oBiF)e&b=ZOa`62+4m~(m?jMXe07$1 z6rra^o;#rNJhl-LD>K!K^j<6W^PNu%wof>X(}}GM+*-9RGVoLoRsXKW;Lz-pyk0nNYyETxs@{ekfI9Ics>S=&JN72wJU=>m;sb~C+ z8fa>*4yrc(!KL0YN%-J#yc6xNt~_f;P&R?DYAyF`6qnXGXzW)aC>LkV_gVkqDBbbS z=cKva!;pn?m;S4Jz_#`Ua24YwDEE}qEK?#bbwJPsi44K;_u@k6b)$lg4x}AVzF1V) zxIR0Kp=xkqC%E0WNz{9H)PG#!U6G}xDfG4dP9}Jg$kC%GpXorF6z?CQKy_g=xO_z< z^W?lV^0tyN!TgKaYm=J$z-n$qV(uzWcux z42dPw?WQ1J3&3kE9=F6~RlRHK?n;{OeN^)t8;e?2=6i6nx8-~H^n>cJi^Xmq8J5^g0KtZ|ytk?O z&W==3LMLOOKe%V{1p;wce2o{!ygqKyzGeO0m;QGWcF>CV92CD@Av2xF(3w=jQHpzG z4lM)dw=d%DsjF0F(0LVeM@sUk_?jW6o<27ulkLarcN2O$&XicP9_?LrG@3sP^k&~w zIpjk8Gqxf$8Oa}a=9`w35k3lT>hMn^CX03-E6Ic2l`ko&=0ap4rF&1#Wu)9jEqDJb3oNldV+{-usG1VP1V@ifPPC9JlIfn`cgiduI zr({Lfn3(+2r^fXrV|;0Drx&auoG%u=>Mt+u{)RpgH03|_gejMNBiKLs>J+-O;v*XI<=C?i`))YR-W4&9L*v<;91s;!Zk+$UvMtvzowLz zL&&tKZ?1>{+$V9L3t9;EbKOhrH;w=j{={ zKx{4JZL&g)PI@j<Cn?r03^!@;ydOXB zeEn*$@nh;|_gtCtX^3zs>K`H}*i;dxO8>UygQ9-h(2X&gBZDTcZ85ZTWcCk)LuFMn zWwh(BXz4(fIm1Z@81Zpt`gOW#0PIn(6t}VzxR;%7$_8czzL^m;{YVKP+HZ-oe%Ieh zjATiiJNrd3pg*dzv~S20$*e@u%JWN*#d)O=`BX#x^~o+`NS*X1$u`Esh+0cf@iU10 ztM=%cl-;n4k~DOcQ;@0$_t8@v>|!@IX?&VeB4UrTmP~|0is_{nhX9fMvmL_;@3W$_ z-gg8S1=!19ADw#8qcmaU**~?9zP=+;DD{&X6qckk`D$C&iADz@<+H5rb0G)cg2ZpC zZiPUW!Y2QlyN9_8ec?WPO{`n76OuqVB36TG)!wvNA+E20>aFb#7VPeRgnKW4+Gmp= zMNNWTjX~oZm`8~$QNtUAk>m_8{Ap*c?QO;bIIbCAi8xEVFO$^R;o@EuHrKhjD{*~+ zgvpo+D_jS|>eTe$@;RzNtftl!18$0%QKPvyxSd;rs@o%~+JeozMvpIMQfFWn#5;{S zEs-Cw6w?av&UUhmbPhQLV^HHjy>>BZzII)|BsM0)Tfq@=PVt^rN)zq6VSByvU77>!=oMO_C35zn z(IhO+ni;VCA9{8dkAQh?H>?(>SQ9aHUhJ`Q$N{^bdehKy=bSX96{c#D3^iQsx;|HK z!{3i3Ox_Xpg5NlM1A73o|1o=Z(k*;)DRm0%OhWKnG)1n<|8JuyRklm9+zxGRhG=w{B?fON&G&wiubMa zICd@QIrnR4KJ5@`U$1UW&4;RA&ShMAF3m{uqvU0za+Jx0nrs53(UrfIVm*Gdn|~pp zvsJ|=z+GNlJ_O?WV0a(xD*Zdy21TH^p^;xZMva{T-S@(^mvy#)#W>rK>=3D zea*||Dkd)Qz{$z2F1VasXr?{La+%uHhJU$WkDXd8Z0?A&V?9Mwf1tw@hj}CRgNT*= z@E`lJ#n+@}reyz*U*SU5(1g1ZdZ9^Tr${N)Jy&oRDt zpm6;X*j3kKGs;Vcf9Zt9kD51-(y-!l>#t+M2oLmg3)Txl4_l-RMqtYs1 zUVAsqe^s^6JA!WyN75r$is?|^T#v&8%w-8?j^L^o=#7Z&2ei+DT8nwPB{3Swn9qeC zBKxta*Ud?Mey*Pwz4ew%YhcdDmD1^H80$VVH|3g<$hVDuOqf>MBQ7=b@r1!!6Lk)# zl#OFSVi9?ds3e}dJMo^m5>B8kU0)ejUM8dfUk{&G1782h{ijFy#F11B!e#q@=z19j z+T&KBm&&bf(5ZtTALaGwA=YowRKmwxZr&H}I~lMwUAG0ZWj+dJcn{ltLTa^hre|*V$OeZ=iGGt|=C45a1l)uWD|On9 zv(&uoi?OP&%CM~di-m<9l^3@Q?d){Te`Ez3nHa)@L z2NO|+)E$B2$5$esSUSmFNh|a_vM}bO9hTQl{lxnTGdD{@)^b#WV~LUvb*Et5>No6x z6CT(ZjB#L_kSK8~)qNHphHmjMrhq-L0(fnIC#F!>^*d}G>#!GE ziTvRf!dwG-^)B}1nRyN7x%U_s^EN+5-1o(;H}jnsZTSSRY*3cUUn+2(9~rtxXCZFerOK4)Xy&_GZ_Zh=OBa!z{3~DX4bS2lDf*-Q`w+ ztR5Sy>)*3Hf(?8y=B_K0k1I#HH@Zcmn(k7QcBs0OMwfVpBd*yLGscVTp@DdF3r@I3 z@#Te+aw02-E-gcoHds(6&pGGV_S@3lztZi+b5+C_j>`xy%{`vr3}UfYUV7BMoZ8P+ zUMmH8CMYdsSkbWs-iS&$F@6hPYu&Kb_u#=e^A-tXaaYR+c~gW7`%G%Yee&S1M_%*$ zCYOxG_l8~cTfyKM@L+40AJ;$7=bf!TrrWNIas)Iqe<2#myfXjoQQpweAMaxJY*Uo+ z<`p9bp8)xh?VS^BS^N_y5%sXvTmXz1T5FJ>0Z0}si#vu}4%f(GW6pIC>J$OL!9gM8 z%L`sU?mxwbjAVJi0;k{`N=zGLe+8EJd|JUfG=Gynsoix*LPS)#Yr__S1PWpt0{m_n z=5}iNuk}m$EIEqg%-cvX=uEA38)U~TjZt75K2^d2+oI3tC z0&9hpHB(pr26YvEoJZgl|E@|ifr3YKKX+XL{I^lDDi&1iU>JPF;zlNQejb*S@-FE1 zsZ6nDy`$|CT#4>g(-POuig&c3ZZP0XLF*44DT&}VPmGiNz~g}c!nG;xTkifTv(!gg zs|m0MQ-$q_5ncHh{P&E$Uv0SLZo}foUhb+6d27KEtz}ih1b(^N5jErAAftS1t5%f` z?E_=n#S}JshtnUH@w45D2&>K5Gup+|9p<|S5~a6gRfTfvXWZQZezGGbaUg^@#yWcS z&A}fDFO*+s8)JXo1#58dn(3m&D1w3F-j;6KQDe(99(IFRWV6odocr8*OnL83$Fi>6hH3=&0dy% z36##V%VD+Ux{Gw_w#OFE=I2$5S@&;n$wt}JR}=LK6ZiQO zT>I8yCrcb->H4zQ2bjBN*v*qlI60DA7vbK=ph%yBQYYYk_I167=XkAMta6K$VDzHX zV|9_GKENWs*F_p`elF{}Zztn=U&-*N(k&siZ!Pyneuq1k&ZLS5GRxo=NR;I0TMT(v>Hqb3=B5tFvkHwO&@W|ubJz9{Fjkdm2TE>^ zzKiWc)^zxlz`gpa*n81gsD$iReQr_4u8Nv*IzZz&X(gPM&jAteb=WMNtBO8?I_GmU zb97MOgVNCHrO7gb&I>%(DWdyQzTHCHs4`l8!{5y+A8#ztWL5^dJOQ2z&JOOq`xJXB zgaQ$hriTM^69yNUIN$-Zlb-{|x$j^XM+?6?fs|2=;upUA5x-~9+j(u#y*jlouy8<^ z^U@_gCjQSgbiT=3@_!aaFG{`;q9fms!wPx^j%1Qa-m~DL)3S{t-E(0x*y5_c=lsM2 z*b=hQQ%o;=?CW{LQwv@-;iA>tYM313Dj)c`WJ03eX5BGM_+f@w+B(ZU@m7*BEpqQA z?h7dqcbXSHCz~;21W{s*gNylWk>{N24(U0}xo5~e!NIa5mKz@*q|M)XVcv%D<(1aq zY5w;zG4!tuEk^e`qH^*FuWWBF^goowRxa!+Y`x%Zb%es^cWVT%j-@$JHdinOJ;2jx z6nRa8w`#KEn28{cENKti-MHciig)rW9%<^fV!d@Wp#+6UG#j zOSp?EqKz0;z|l%u)dK!H-%SWpJU6~h(<5qNUi_VnvLQSS>viL878_MICpv+K#KH15+_^nx$IvWpn{vw08#A`a>tK-<*L znon&KxAgDYy*dCnr3Mrt0ZDPZ&F!!ipL-HLTB~Kxl)6g!uLMsnUxkMKWs4e1nBAejQ|75Rl7GaTasn>fs64ui$?t3{NTBaD zQxf^?2+HGY@ceM%yje2@yJhc{foE3Dez>uzh$*bLG1-?xQ%aGPf&Ak{9EnY zJ0(Abk~bPrjptyht$M&JOJm6y-u`?GS$ugjF={m149=8yx$_iS9v*3CoQIF-jsJ4J zb3({4fT(JxY)&oo%P zuxi%k92IQuq(p0@OZxL2x8iD_V&q3xO=EUO3{3ATH#T+is4r@8V zDkm&52SDgl$iX3nf@{1(G8n^P1p$ziG#%$@P`k0guwAf(&v~?Bb>LCg!*Vxt!m*(k zO}U$gV^H9IKX(MLvbe+Ix`ax(NOK-JNY)bBOHLkhL7TA6IkR;)mFjH)Uz?DSz8LgR zOw0|h{EioD>*gE@{T^t@@lpr<{v$hg6L%E5X0y43Y~aL#>Ay#d%F;{MDUR6H+%e5h zf|rhvGesEWpGbjUZvdICK4(UmIg!b(^kBrOv(Vvn{WgLv zmNZm=r<2Uu)R?0C&))<`34yr}-1$TXKE8p0D7r)VIr9ZvKBYG}J-$~)etD+LcK+WP z;dda(=OorWFPVQDw%l#o74?~^zE&DzR?04Ufukj&6^0DN4El1&&jrz;P|X#b9y1CN zGO+Lrb00R3BishuvKu4fb@rdd(M`?;WbR&CD4wJ|-MhNlwJE5#+4sx$MyAoF%j>&X zuA9~VG$YjPn6%n>Hud}>&PCuu&P8V4i;-=USq5wr^B)ueX!({2pngkG5eP*&^2|;C zAwjKmGk5Fj9f3b#-Vlmk-`bm_8tn?f9jAZ^DwL=J3=x08) zLR{JJ%XnC#o7qb%f~m-il4YRuha2HbVok-y@@rYv3cCSuSXN8fw2^=(MiwqUpH3NM zr%`(5ltkUE@~){Uy5`0>JIy;7unV<3Nug1%L_15srSOF&K|f?iG(&|})BNoB!;e#~M?*(LBJUWP^)uDqn>$;PEo=PL5r(CER%8~GxPl0#-j+L(3+&@Q+W6faBf#R_fD zU@(ZRGr;lSN~%-QfUFzy!iV5T+wGPs@jKOx8G_^Cy$UBO%)9PbV0jkMB3KdHygeFQ z{we>#>~*lXg&K8-=?nc&$NthxB=S7z|K>YQBsOgk=j zhV*fp?Auz|IIvrMA^jWD(aLtf=g3_hog!AQqiLdC>Ezfa$y_+k`U7PPBtUq1aCo)HN6 zhkl9$Q-!v#HSqNtI3sDl?F@r_cA=}9a$qK4HSxnwnAE?7C*%5NL-XmpM`cfpk5mjT% zWJ-8Y%LHTf%>TgW(1%xkFk{${=!}S7iwDoOuL8jIoVN9ACnH+NQ){=97SZ%1(O{47 zK4+X!?HT$e`gBTshaMVtWTkc6D}v&}yhkqr(D`;0Ty+I&jMI?%_S~@r@Vk&31)IGe zEd`(ISA=#ep5gk!Q$ly^9JxFoYVzyiOucZhn5rWdgFFg2zZZ+x-m({*#wOsi?Y!EF zAGzgMdDm#x!aj;M9O5efv6TOT_GZnp%$@m_|Gaxu0b~Si^&qNB#KS+A{Mu#>SdeAV za^>(tqNwUZYZ6q*NS}ytE1-3-owvhi9=bf8CmyDIj`#qNuJ?OdkOZJj*5ECmqdOEG zVS}GyyoesHmKJ=-{92}uAeZR#VALXTW%S-cW7DyfzFR{|UJIr81*$k?kect!{?>)P z{85eFb$!oltUDjg;j}%>1XMhu5+tU9YrdNtbZ8>~b7{@lDV$~Rj{fHrCfNfXGG96CPS&BTQ#a_-4Jpm_7F}*T8%)I=1(m3ThptXO?E+*9r1} zJfbY^jK~R=5$A!@z5r(R1f-4$)~pq5o;<4C=nzlofd4d>ZykId9)EI%dt*h0 zW$NcGrT5*HlUo$wO1x?3Kfz4($qlzsJ!6`v@^s!ET4ucRin-w0{O^Hfh5T^M-VQw# zucQ@(r^!OpIBRfp2ERBR@K@C2{!e2%Ag*}VSiFp3<*tz)Cx`6D@$cn;l@-IASL2~4 zD6To&YTF63fatMf_EhCA6&P4M^+MoH!v>C)Fko&I4I=sx#RP_riC~?>>1yW8WfwXHa*&s?wG(L%M1v1hSB?d;_Xxv zo+hvOHV<2>cu~2l=JhRe3USF_1y%c~=m6Ah zYT#pLOC?%&O1MY*&}vx~t&eRL=#D(%zlYBEe3+;B2-#|MwaQiNlow&~($G5u64jJ69m5jQA0wBPI|ZRBQ&Q-8T- z*&+E`@1CZ|h9FH%N{E$^*3K-%#~5;v=^}UyYU-DDrkLPss+S z@m(GNmMDw2wW0O$p#9WgWs8rS0-u=ebS_mT<@g)Q@2z%&#t9EENPE_{>52Xd&hnF{ zu;*aaTWUWKnQ7%RGPbz0+C`Kd8i6ybpmh<~d8}Y{H{7&d{&~{H9JOmu_hDTn?l#W@~IqPz4y!dFT0$oHK^lj_WOO0GYtQ0i^Ny_f`RWiT68lh|;&F`Ww ztNhdGyujo5H9T!vPsb%#okP1Cy>fnxljE)^z+;Z$yYpI{+20?S#L6a|QRf+$&cP7> zZqf1#a}>7|=#Km@{D`YcFv0G^ElNq!oPt;Fz!*5$9XMf#gfPeK zbsBFrA)R8NElI=VnJTjo*0IuO;l*}kevm}j+q>cuVirbuW_qj}fQ(-_OLE zJJ-Fqg?ako9{l*>4lvS8jIRXn=vvi&Rls-&?8o2K~7yCRa+6G z*SQwsZI|W|-%yXRKRpXIbd>haLUC8PVA1ZPsG*p-8fNm(3SdQX|3+Tq^kPE_Hq9h| z7ISLbKuw`&ZKz^B5<6xZL48J6is(wUCf`wsIA;;c-VwUAZT_o1(+5AkUazYF8kGfm zf(|+o;3yz(criN8 zZd*^O$3@OcmRop{C&f@T3(4sscKyNG{hss033glZ{WBwQU!By%`pzZwfs#Inx|O`# zQ8R!WpP-h^&j<&L?Gt)MFTrsNOl&x`@ucwK6OnN~4!uS6T#g1Is4sx7kjvc2io2s# z*#ObL81dm`7f||Zf~}rnW0Im~e@sm;>++NZvcal@(F{|YvQ(1bObe!dvJZ{C6*L*| zJk8!7h_gzZ(js9u!5AIYpa+6r=r5!SHIdeU8Z*I1oLjqMzlYLo*%G)eNU<@#Ba109 zDTAY%$XkOmqR>2L`Ad7p!`xwTRwtR2FnS=0ZLr@t^Ou01#hF~pC63}TfvQ2j&>c!Y zp%z*h+ho;=!g6q#S;=XdixNcn00r7ywQ>gWGLPVbXxYcW**JVSlX1nBc@wr=ue)k) zXtyK3%T4T@ZYy(tEumSHBTAcwGC;vBG%s!Ie9_f0fsed(jEQgk!=Lm&!CssduHBnQ zkZn>3!L5P@m~M+d8Y+LL(iDudvs!>OsTH3FNOwYiypz^j6qdAh)5gM;tCcLm*GK&8 z2nZkOP#0Qs-j)B$_C;(%WVA&@#BkjaR}neR4>OY(p=~S=`H;G0l0_f>hMYO7_J`)~ zDQg}FtCd=Ry6HZAwqz9YJMcISP~YjMjOFi?&K(u@*e_-7SjpTMfphHlwvdw6@xCd*eV4bcen_YFcPF+T;XV`pjx;VLo3i+1SH#2a0a?Qu_I zKE-U>G}S7xSv@p?R$f1(|I|B3w2&PH-1R?4w!9vCLkX5l*@lzcl3G}EdWsDYYLv%c zl$Qr)g#qQ}isLK)%5h(Lt(n5FQnMsPd%AoLj5BL#+)C57=jO7v(dVd|l#Ojl>W1d; zQ5FE~Ob~V_cF18+L)k+9Dx4gV8|GjbI6%k+W$9HzlA>wLdwC57Cl@ykrdr1&wMuse zes^Y}%G3+2_WX;niatR9jile~i%xLB{ER9)KG;#*fU_F626g^)*!321d__5g3<*tK zyY!S#?-BG^Zb^dgjNBX{--N1Pudj$HH;UD(_bAV>8q;{6U&0y2JstJggo5^!+Cf?( zAgc1Rt(Zvjz=K!i16%1ovBEUnafMPT=!34tzRs^BbNGFL+BV6jHojjrVC`g}_9PPB z>r+Plv72D3Y57XPtaN5 z-;%N04|OFGKw)5m6+kR+u}mlfo^4yrwXL0Irc+B3zKv@M`zrNIHb7PbHM zSZm5)VxkvhV~(v-nXdbcpLz)QI=%g_jR)5Kg7)8Ov|^`Fd8%dy$N9X6WD@u#xiJ$CDq(hM!x#Tksu0n{5iuP_r8-#S+F zIM=o1KZ@f8!XGbQ^C9oLd+4d~mg#juJ5%NjJud6J@llXvChhCHpM)AbsAh-`Uj%Zq z*{70gm%x|nDNnEyTs;N5J@U@7T=RF&j``to4p4mwCSJlBlu_W`Iu&WmQTV8jbC}k` z4Dxr4NpX9fyy$jej0W+aQtu+zvqMm=5g~ZhtZ*GWQ$4NoWB6j>8^^G%QG-$1D;=Qm z;K3w+F9d~Cs6p_8t)z^MuRI6LCt8`OjK8mirP#JDh@WAL%>;p3 zNS@kC^x{(H0VeeiT{FenY$i7!`xJH%5ILhtAL>{QbaKB{>2Z#kc~lSBQEopo{28si z9CWRFE?=MZMRaZHde>a9Qj1>wzsA?6dkr|e3bee^GzpupbCXOU}*KN}o z`xtkK<4I=KxjccG`Ew@dD6n=db7LpOqk;_8ZzK5#^K7$W73UR2f*`?r|TDqiqRJQZVezYyr`Fv$r2UI&{bxvpbwf0Z=w z@3G8wa0@v$g5!`iyrJ40fZ|%TIBCj~GT(e)rdD_P z_8QdaTzIb!CZq*w78xIw^&5AayW@mnjp)CtEoM~uZWib+N9}i_H->yGa{B!`>9%)_ zV;dxwE#>bW;>!tqpcf{!e39|=Ofgs)g*m#i6uR_v1N%PTe$1C#vm?etx7JQ){#7GF zkS%ehD;(IXejdY!6{MSB6M9(*WQon9yq$V67;x$YumDLhSu0O>(8&dqQa$3wwh!YBWBlVv$7y$8!RnBXIlKlz~gqoWX7rA^GSEhyO{TtJ@TTiVFm5$wWT$8zSv= zx4wN1v$nEh-kHg>4CMNi0+GGp=h-Qv#&sc?N_nfayhYo|#vY$AZla#9=d<}!8{Lu6 z2~~#m=s92N^H#RDYXWfM^q=5y3<)s;_qdp}7)G9vP2N&^x(p)bCeGgi3NG}we^v!$ z?HoPvf$*bg{%X!H)Ta0z+Wuq~KHE2N%37GmjS25wGHBbj2Y zCY^pC1f)rVt6%kHy)RVm^XYhBXtsT3BGs7E?Pt~=#l9)~e3;}v4y?ISG{$Aybihpu z|I!ru<`+_|*AJ#ewGCu;vAFEv6SpV^G2%z>1b(8Ngm#1=visB6&wE)wedES6?7?GG zf^OPivth)zjR&M{4lMrg*$Nky7SL)3E9#8#)W-a}*xlpEzt2*7{c^BiGtx}F0;#qJv@sGs$O(zk1Er5Vno$+! z)kzZC&l%zVh#dIm9B0?e{_7PH@28z&bS#dB=4()G*!L31LkkuqP|6vsrT|ZbFe5ip z&f6}7RTvWO`D|f|3_lQgEW`{oUiq5gdI{84Czkvo!)F1>fQYq7C4+q>z$Qz|R?^HP zUbjB8>=P4M5bLXJr_G&aCN-tkD0d;8Qk@o}e!-QQmkmIhN)2v8KV||T(tNK;*U2rG z_ef1JJt|QP8JdnJ+k^~EGPEpkF^`Fa)%K|>r5(Rh=rS3>MolH+b|*Yh)V5*z8Q^EK z%6q-JtxX;paUA7ZTw@g zf_Vjb^tVE%@vw!LhV`7-fVKQcsi5W2zz@d!QmYuursu0kb7sEiG=3AwU_YQmz_yjg zVLAo{B{c<}<6&cAGY-G}Zb*EF-!FvEuHNbvlBf~m`Cq}21yvTHWs#+J*!$^kC7GlRPIzgK)8ce|* zu3_vn;Oz*dyq!Q+nRcIe@gMseuWD8Lg=>E20dx8* zPdY$L19r}>$cMs#^1ru)H`wAk1y$8@v;kOU9|Hmjh*=_F4#iV9IPz{yq6z_+_g47- zkWaTNZINlGs>RGSmN50?9m|kVO$BSC>yOqdA!2*-GTD9L{Zx%>g9-601s-H2aE0Bl z?l8MBm$Ky9Ve~_^l$rc&1xqhD_XqL2s?`OKooV+C{7)l-F~+a+y$XK0h9WS$aih?yr~^ps5d{CkTTunvHNlZvkqz))ahiwS1(Zg(8FElX?*)!= zf@)yo?=1S!BNf62WKbnKbUA*xRIn?lHK^x$iT3I%DJeWDY-}``#3k&dJX)P+G~1#@ z4Gw+nO>}@EXL&rz4K1`F0@7v_a>Km;WMS ztOo8-it!}$scj@v%2g=J67)tR_#Zw6xt)-)iDVv!?wHWOA(4eGFj_i)?5u@&_Gr&GpIk2FmbIn;R=hR^zTH`BI?x=O7qy#EOOU!(}u3Z3{TXl1-!3SZ8zYuH#6k^;Jgo)Co;7KgYWZ)wt z@z6CzZwxSiGjd5GP0ajM0-o*dn180|oP3_w&j5&q14JL=hc~q3z2^^RO|6?m<73wc zoW({>H@6-_O?b|gP`BPzge%4S86el^Q8jVe@ zzBY9ciL~VxZfyD9rzERib@|k#$+L^N%`gK@%^P#PsOF70Jkt)sl%AGVE2pGp?y(zd zV(=P-ud(X`{Kiz{QflNRYL`a+lhh}YFmr@td;7UxThKOsyJlbzI9lp{o`v)W&G`MW-4Cm4s zcZi)r3N={YvrKe(lb8BuQEj&B@Q5T!ePh%~vZ=nuNIhE~Kl-p&$wT@a`=9-6fW;H? znyVN#`U|&Hqu1`%1>DI0qDG)cQtn5K<@dF46DFSxH1U-LRF}wBYf(f?T!KSP|z@VHKCQ zMBGwn*1@0s|$+lv!-s0>hcj#dT|d^i35)SM1d$w_Bgx8$cI+> zZ|h>VVr)5g6kISP3oDA!b?smO=KT*J93CLvQ`cQU&_Axt%{32JWlhm668JL`X z?P$4A<0dpjCFCdRpAqHm37Q=IZ3dIy#nyotY)qDXx7kXu8e+9R&MuFGdW0kyi-?&pAQ(Yrv>zL8sJ1g%dF>06~3=%#oiDo zEBLwPodL+7GlR1Erpew)FCi6?8j~8s^@;>%_gFXW2~kifazL3tyXEtPi7LOwlPErg z*CNZLMZ0I_8>R=Vn=a89j`>a#hb`pb=v=Uqgeq4Yyo4-j+>!bWi?01dggpb^Vp)eL z4%$;I8V8(F?LSkC3lC;gN-yBXV~ATO-wQt*I1(T`)uDGjB)cH`z3 zAGBCRuH#I5g7!8iAiV;=^=?kx({f31O=qwAe&Adc#Bd_Z?qBQ6m zE}{p*va~r~gwJ*@5C@w>N4idHI}-eBhhsA23(!wg1~7TZ_R5K6Kh+jUmsahlf!Pmq zIr>N$76t<+e5j^0)ftG=REpKSO0j$uTadUXUeecOf)MUD$olvYd7pEu0_zcLt^GVl z`;L9j@;fh5Ez$i5fT?X)U#=RH&)&IXmJpnRoKzB&vgb~=BFWyw^6$vV!Rfu-Et%(( z44%sYFIfMI7})~<5dAi}TN8Das>9F`6v&9SJgf#*bPT|Zpa8eZilv7D?X&cca+7Fj zfNRCzP?R9p6_<3)=t=FO)-{O8_IK8w&9OMEcdEPj$4%V7`F%OgO}RieJ7Ge4*=_Y= z4e|``;Kd+9bRVWbJUW4YFfFVWgMVY4I$ft`J9f}-$i7d^T7i@_4QAG-D$%7%-!FH3 z0sGV|l~weIFOKqm<5d=FOYHTRIPW>iLa*Z+XF=4G|19Y*{hK33&W`^pg$Q=dR09cn z;)vz#YSdrylORfM$szZa3pPxZM;G+*v)1W!OK-J^EI7fzz8~+Ru;Dw%|M?jttlQ*K z<=#3>vpyUX1?>#ciJ167iyk~81uE+h-?=iKTe*VCq~M~=pic+H+XY`KQRKjh%$%?W z>^rUv#UBB1x0hfPCkiuPK%T*iP50l?1|CMfC{0R)j95rt7z=h0i ztEm*7?n_>jsKk0&Df0-+VFE$)KlovWjX&i)czNl^{hW?BX#Y@&0_9DI%6?Lv1-el} zs4k!MrQL5aw;#k&Dp=CidqF?_yN5XHh1*I2JE3nm1{?Fz-M#(mpu6WygSH26l~8jQk{jk_9Cn0a6Eu^C&eE-_h=0uSTSC{o%5T`qX{d+ zH6Dqqx}yJKM*|<8gO4k)UhaJrs7&J-ieDaQIX7oF{&Bu$Z}vjMFfIoq5$DxYVi-b? z!*!P5s8AK?7o{N?f!VU1E3Fr{t?@}6dFD2Ne--cz>ohcw79T(TCUMgi-_1KjWVFH^oyJsA z1G&kzfeT{=upDeRQXu!&urD~0yIeWAiYWRkk`uSb*ZJd*@=KjKoG&sa0tKkf$UoOk{Aj5^VS2#2d@bIoUbXhGjQaENxpCMGGc&-Ne zZ==rdrL>+FzDLhzetb2h5DN^N=lk+Fn%WQGHZrrAsV}_bnL@Tg@mE;L-+yqjeb2xA z77C}?lc^-S!n`vWkR#)V4j?YE#*lhbZg5kP(JFIjxW@Uj$(KT2SU8q>ZyuM^IZF2y zUd?a1#xddDxLsECovp!-#dL~kH=Cwc|BqLwOyr`nIZ#QQV2*aL&wl&Hmo*AVWeDYT zUQR{k$V@l3#U*^Krw}Q;fCWg2a-RVZ3vhW0QW3^!+NJPpSKv2E?qx9Ngdk=wqQz*F zD53gUwAYc)+yRG6v^J6vS`}L23y{?dtE3urWyyd1(4K4kHe-i|IyMdL`nz~vDoh*h zASQB{P*3=GO7w|h0f}i0x#PAh{<*(DZ2s^N{j646*YV9Xs6Ous9uoB;*HjE=qabb$ z8}Ys9LRyRm8;ysQ!`wMpPcDe}MmstB6j~<~wiHoCkuP%z4-1(2{^$ppqC1iyLd|uI z0E_vCN1!hrUPWg9wFv0Kg?63(uvBT%?xav{23--}lKHv3dhpYdtywTMyp19n>pJ!b z;rWI(-<_Ua5dH7ZU5b;kSQf;%yiEjBZ26}_9=YqKz_@S08BNeX8|yR>zloe`mU3LP z9Z=~)7C(-VCU;no=XsRWmZ-Ia!Pc$I1qZ7zlZq9LJ)ukZ!LCs9gr9E)9jcP38GMlO z(bQ|QUvzAoc*FyBtI)ib_V*vkNj0e>M8(}Ya*b@k-W zjeS&qhYj`=c=1C>|4}ckh(rQ9N@nAE{7{=*K49weN=4oT

0gqhS^z`T*mqT6o7i zzkJ?I4v>@Bd}H?!or_+(&T9{ltqbUCn&XA>6NSTNL1!Y0Oel3G=5p&z4XOq?C(3Q$yycp5i_f_J6?XteCG6~d0&7&ZyHra?jD2^ zTa|3P{8p3j@F(vG`gdM|zr^wI=M8jiFayXH`P|6f-m9-S6Q)YFeBL7A^&9)cacG&Y zXwg>nl`8de`FWY{s`@y~<_FNV65)#FE%bzN-7pzbCmee#e0uF6*l&Jk@2qY^U*dvd z!DfaB;tSi#4GVn^TgcP+zMoe*xB}|FxrUe#lo6fZ(}rR4O5*#X*Zv;j69Vr&f-h$y z>f}??DH5J!+>&Ef(kVg*XS{lrG;(y}jJ9SEY`2RC44BP0)mgy|dQoGXF^I6E88N#}@7c zRxH7=c#fEDB?l;AD}?6Lp!vO)d6@@UF)|`fqJfG$7<&LnRp*u;Th2i|pArp5Q!1B9 z-#F$Y3ACb_6ev*2dTJ+^7O@r51rZFvsmrL-5qH2t`002EEvclJ+c;h4UiWvGo!LuJaG@9+jUzw-RDDlCb-650O>V=bOtWai?KMj7;Y_Vh z!I9At@vpiM8-`^nYr~Dl^*kdaW|<<6=^~F6fZV?F94ojwmC$@J#h=u)zXW9{ai-pQ zkmFLTc>FvhlqYe=123;W{Mr!{h&?u)sdjqxuREs?k6j|1rR{B=7!9s5A6Sl58i06z z2(4Pw{yrLfg|sn>yF^-f!Q9<75r8aw*Y$jkTe7w&o@Irt{?!*&h?cWRK~2KNvTR45 zJ?U0Udy@Hbq20{xvI;-qgWnE55@X75)rE?2rCoFkMhYUX?PiVzNH1dVS4sk=3HvsV z065xD-A(Tu2(`7}DAC=v`sL<=5RXxw4ypet`i&#deZT~ypht65*IoWql*swi1Ml#xxM99Ax*B3%WW5Uq%FbSSkRu6udUqAIxw4Dg zZivt1@3$HQ2tV;L66NPiNQW9JOu3Oe@n^oi*nW}F_D$lkaJawi3+qdpWL#)AhN#GI z&^Icv$*u-g+<%h+uJx@V2XTh_K?UPMI zxErJ5K~U}a3QT-U)7NEm!L#|im{k($5h;pp?CPwPl3lcvM&&oG6gT1@y|E-5vVQ_NN43U*qe@!*95oSp)*5K3vnAW;(dF>{dX3_2OnB`u)y_y{GxlGnmkY+bNP-qKSSBZ$TfJjkvXW zMONiy;{3?WDHjt~*Hf3c5Yb=9$qSUE=tF3dm*=@D+&O(~S<)wVPX_G-uO!I{6($@p zIKBd~LCJ9fh3^+jMx)$EInPP&EgJbQFvXbH{lfJJp2E@QLVl5>A-hv2f>)nOlIY)W zEi~&^jF1mQJn&lEkMaZ_FK)zlo^`2TjU#^oCzY4g2;xi@hhjXkHnc9P=?v`_)ma>)n!} z@jKR8&ifibik_{AgzWK@!O1;}kzTxyjqY>mMWmM%dhS=B@a`s>YNUDJ?NA5`& z|2uyka46wpgY0H3i~lSqiy%am=8nvo7qpy-ULJB`#$Fr>%6a^$^J}q}WoN`c$Dz9C ztAB#5i~oAvnubCwGmm^NbO8Hu(|oN3>a;C` zH=d+#`Kl`+2)8{FJXBClz0&LFo&|bR>_A-pAqh`;wHB@D6OP9)LQKi(uhG>t`qlhu z@V({gGIf1c_P5P0)@b3>!%vf6O)!4nD~gCWTdpdMm}$tEpK@4j;riU}-jW5n&P*)I zy@>a3B?cld2S-m7Fi%1f2(QPal^>+w{%na9{#Y$GE#R}BsE)TB=Z_-K{2Wm#7B1cM z95(9X>?D{sO^<*MPWcT~=PkA@L;)Guor+)Y)pxd(ihZvNF5bp3&$vws0&mB9A2~9O z4E}9e^8{Q7&nXe#F!Q=&IMESoY#{CNo|_DRrq|1B^t(`o`;X6;_^+Eves}#Fzea^a zO)GE2I0Voi5#GhQ`=1@^FlZF!)aE)XAbjH%bjWh37WydP^tT7smAjsJv+2_x!IP=%fs$iN#1G^&?J4HbV)#^VrD|J9_IOl5ST%tU4km+g0j%%&t>H@9KZxOAhzMtOJn3q;TD&U*QM5}H0N&aFhn2Z;xq3oZVh?xAo3rSC=4HpA``VSDkgLX2lzlG4UGF4kH?23TS|5+Uy!B2>C zV`@YQJM4>GnaSX?O|DlmjIPf7VZ!9gj1jNTZ?&i#aNgdv*|WTF?W~Tu ztTit?$(RauQ|96ui)Kx%2?9L-FGe9idsL2%w%H~ETGci{;Jd{Andnp6%qAc%L^H!pU*GI zmri;T;-ZQ!uqEjd(xVe6NYs`hD2qL|j{DMe%X&AGri>P5yRf%P`l=5zO8Wmkd96dp z+|+I&Z&EkEJxlzni6#P9J<9{ξj>~-K|+PnEgmN|0fUPvYs02 za(ry8aTFOiIf4=%41|AQ{1A_Rm57X(l057l%|J|wqj9TJ}(pZSxo->101%)Hf)Du25Pd0@Y}ik-r4H0&C7u2 zP6kiKwM(!tGteF$;}Q4Mq7`iq|L^Omb)Z>}Rci>@#rc>sUwx*|45ZQ$W4p*@ zJvQtc=DYs^hH_|8KQy>C5!)^~O2aL|PAAk;Rt}HhVcnqV0b#uqFJ^prvA%F(5twz( zG8d-MjyBqEuBp`U3m;`#u$eOJE%E$SAH0D06BRTAR}4I@FD(T0+Y^&T!#?6*vIJ4W z2L4(x6V&TAe?p)Jhnd}Hd2B)Jted%W=KDBuz zSF?MxpP2Lt=DBpuz)uz$c|0FipT?g72Q0Z{mg|KE>WcueINI-KWd{`LC$^;Yi?jU= z;x(6lqs3Q-H`vxKTH4~9Fz4my#dZ-+RMs?LwzGL52tNDWk%#S&+SgL^q}?FyPZ`)vvr=H)($PxWQ)D@={*NrLLD9 z%7holFHtYd<%+vrWAP)&3CtC!iQ!M~H)6{2XTAR6P=^L#P@bR=hFNYHi)Y+}BK?t| z0sdo(81R)BTQ4;HJ;{A{PX5zua7&G-ChRt0nOGp!2X5Gu`4@5g!w_SB$5EdDO=i_y z5^-;!%=<=U13x;bic(_bsjcGZ=Zj5C)}0s7yYfx_s;^o)nW=U8PbS`|@EYrE`44$h zwAXsP$Qbw5mrLkscKY{iIVXO+-=w0{jZ|Q4V1d^iYmBn#6PqASzp>{=E1Zbwus8C! zQr`0sYyt0X8-GWJt{*u3$|~BXwfWj$% z)44_{Yxtdj=&o9<8!kaI_BzitTIhv}9m?|HW0poNinw~~3aW6hwH-jb!{g;27Ov2s3D-Wr{(s{H7= zDj^{{Q@Xn-%+4#^>+8U3V%&!IeS{}9hzu?>Lglgmw_6mO&V)W7{sOV<|C-p%{8&3r z{C;7E@H?GG4*zT&*BG1ZrcB}OM~sVVOq>0D_eV=Dr@2efoulYdQf;BPMo4>y#0o9_ zhm>X-4K*w(F}Ak&qvYknA<}MJWW^~G^;Q1BKWb=8UDK=2{)VfMyG5Vv06vJP$WPix zWrv#(`sO@!ZT&BD<4jq0Yoy96+AmCW_6bpZ{|4_xh>1Vg7ti{-J;xg*JaGPO6Lo`TqYJHje%EqHzLLTf7ah? zm-AcIG>fsb^%#$VLN#K2An+J@X&?D`nM3*QJf7yP3<+@Bg@=t3T-_}Q1n8awz;kp6 z51QZcTlf4Fe}UarX{%7ZIPiBHZm%Q{O2;Q91!{6)evUc(UdZ0u6cUDK%{X@KLeRyL zX7Z2UIa#1wD@vA2x{4Zc5gxexuM|w3A&6MH@n6H_ z0+`+t;HTk77kxb%4JyHyV|^t4{L#i$cheiIC+E0VUbj6C#L~Ql*(9;Okop$QXjm*- z{_rvnpH-)gp}Cc^4w_rBFDtev%g11nEP!l^(w|*$jEFIGCX{P ziO+IB9ct;=wZbesYKlrg)Gs@1pDbh`R6?ioZ&DK1Q92r+8)pRbimYr&Ts63 zXEOew>6838ZWZM>)za;Dm>Uvhf&(x&po;<@ZjSgB?ZQ~X*p~OzQ|+pYcmUm+?mx+o0A{yz`?FHK03ny6DK?9P}lU-t~3)ONm~p9}sXeg{JtiiaH)B z%gvQKg}!^_l{YZb(|bO!55GOEY?Ro^j{c-2Jg1W4mJ8|RSwzl!AQpR{{3;jAH&@jy z20XecygL7Z2K#&!`^OZoMeE33eWEr!a~$+wdbWy?(HnRiuoF-ia&Zggf+5_6aYNDQ zHu2{DtZz`ylmph0SrOm=3lC6S+GN1-YaarqgDdOctzwqB5Q5<5W_u;bhwMHTLn`6@ zU2a-I=kfJUoJ0_;24}Jz`>vx(3O%`f^f_Phf637{?9D&ySL7EG;Nw_mTk1=EA7JUu=_5lk+UcOvlm8fdwk2T4?GB!+s`t32| z*`oPURzAL`!hxsp=bEA(-&Or_QX@KoL~OpYQae^O9>e#s&p!DW&*t(5&H^#_P1Rwkf_1Pt@SI>k*7VQ{cROsI*^9DfKT+pPXv7^iX4pEIAIRh zkm7DL=iR9+nb3@y0j}Vg-wo8-ow*t?P>F7obf}}{`mI#|tw%P+2|y!y_{tyCC)li- zobwvQaYFJGso~v9H{Jd+$hXXN>9Wc=EI^_!`f)OqQ-5v7 za?mE11UA6yn7x)5!IhXdvGKt}KyFmSjQ*VUDBucP@~#Pcp$g{7G%(kffXkBi)lb-# zC4PU!3;Qn`p|ctwdo_Gfr|aDzU5#HHEp6#k)<;| zl+2!ouSPBi8?0#NDe_&Q7I5bi2s9};2+SI z;bCXGj$fn$IqSe9-;MCcW=Q{S2)f7?f$GR@hFtAO9;7tI!LWzZy;t02_QHJA7wK*& z9qtEDVNWfvrL$;pu!7%VNpZWL>N-5&~AK}hwM6cyz z_=B|F6ylEg;9D)d5{N%VvLYf6M*(m-lYN}KVu{wPrG!301<#4pS_wxN&glOY;!m*? zmGAzhopjcIb(S85a>rB{*Li?d=>Xh zZF^GvoSU#c%(QFGXb8B_j;c-pevffJZfPkMw_--O0)hu%P zMgsf&&UNdGa$~v*_Y-hEJLlh$%f@wo^-R6Z@f*^@QTp7=lN)be4SJ zHl}ya1;vuna$bDcz1Ky-w`BkbJrey4>71ImU>_E>s@DhN3bg5e5eFqR2UnJsepR%A zwyD6C_m*{1)NdtwuC}<7X%x4+82$1WUfu=k@-wXznXDITzal?Vq?#e>XigewruLV7 zJLV)uur>)`R9Ld3hitaRY(nJXRzqi8W9eu=(MUd6Wap~SF2+d_c{`}fTgVIkdG@BE z@cqn?9sKOXRA=8ohmKI}#LLg5oNm)Q-6m3px;9&0!*uQU!lc++Z$d8b7x$$sNC0nX zq~;Su;s&X1{V0R=kabEc)N1e&wh3xT=Lqgutr$i4ao!-CUw=he+I0@=@YFRH`__*= zuR+PX?e>`hYd_nxZwD0Oz~(NCnd`yQrov;)d1-UVpna#F*f=02atG$%%CYF2bIvR) z1g`qIC-`1(4%z`Ugt_rXkc{(hF*R9*&zb!=mM#udEB-I!X_kSjNPNYnKmL6`Qu!Rn zJ3eF_$6#@9D1NTgj_S;!Y@mQ%HG{fe0zKRJhv5iO&8aKBJ3m%zn;vRbNY4kgOS0aH2-4yp`@}dtVJXyJK9@w%9FCt|Y)sfR`qKBh zh{PuH7O-8$pho^e;sPs0A350K+|k5svgpHYDFEB@N=loqj+pt|^%s&aN)!}LQ1PD@ zm0YZUeC4UV=VaAgU@Dvcu6w9d$y7#4rP~tW8xMI(S5nYKH@GS|*3bGt>xc$rCqc>6mVpErR-qgDH>SoIS z8}tQ@=JRpp+*%15h_&X;{_v?#=`yR;!cCE~Fmi$!EsDpaItQUiTC{c}Gvijf!CJnN zbL%jC$?{`0SL+Q+tXM-mX_MLn~3dzjff5BNQRYrE;7m=^A@?VSX zfPwfNAKiFkO|Vq2gL?xH7uLed-JSowo}(V()IU<3CW!&|0XinlI!H^(%;aV7^cuDX{F-{@Mc~!}=3&Q(s|@6Pd1a z&La@3yy)OjQt=TvagjCOlXk(?*>WFNla>nQ{bZeOa~y_>2=Mq9B_haUH>0H^(bEUqfSKqudYvI*hWCr zOnP2sS!y6-$m2^OQlU26i7V*<^!td5Adl*2dKJPjyClZwBd||#eSZC6!&;VSQoJ7d z?iC0Y)-hhfLZx5YH5Ug)gm->t`nS4$`P5}0l<5FH5WPN19V>*X&q?G%#d~LhWvJ!5 z_=OE8<$Z|t|1~zsAj<8$CQ`^>xzDWj-AvL>jtBnOtxQ=-7xmE&06Tdsl@&dR%KL2X z4O%IFC~=dOY1*Yr)#uCH$%J{ePI2y9FSw;bmm4VihtjdfmP8P@S1)$DI-9P~P8h1I z#`HA&fuxqw7L5in*@9VVb)-n6tZq^^TBL^IdfNmFj zSZt{tObi5XbD)~HcHLJmR2xJnn1ke-JdP7`2KX;8pe=dMx%ex%un}X$TDc%~!S$`7 z>HYNo1W|?&1q2=uyqIN{EozbxY+Rqif4rZCJJiy1f@SSLgx|W74{GhIRf=9X7L@cN zHyLuqg=vnG0>@m+4MxOamaZ{0tYbIhsaD!g_OMC~;Y7K759#1vUGYUsY39it7#cw3 z$ghw11o>{*4kS`qa1F&eCi2hXEA=aa4x*kqe3!R+ofCE_;!$=~$3kEqOw}YSInXXTK)?=Zw)%(^c!@%7XjYde;TDf37z@kp{FtF&Vw2SlC2ki(P@#|1GxXoe^* z<1Pw+Ii0@Y_6E9F=-Fw`eB(V9848U2(LH1*9g1>6X1sWBxZ)`#<=+jQnH|P;1A(PZ zJG3j(5WMQ)<%I8Zf3mz~Unvd6{g_sqksNz9WC!UdBenpIqa}|EwHHH%eU_zkL>c(?tY#!-AZrl<5=`j70LBCQ(>lP(ZeI5 zVvEJVbCg%K?Gw%`k=>@eJ$97ITnV%5Yokx7Y4Jk^OHU6mx z+h!4QZStKBA};ZTeesr*PRKW=(!IZ4`OvMx?$kRE<<9{yMM70!+XIS+8mq!k=#Ap$ z-ubPqiO$_ar&Rg~;+<>KqpguBZh1Qx|io=o6;?w-0vS0Gji+}K4>-LdJ zYONd-q;qp&|$9a?{Dd=~9>3dcm zeHmR-7vKx9@h-j}pm%>m>u)>Ej6J!OD?6lErb)b-It75l!j0S%f_eHvhf};q`{>y# zu|oQe=;F@yo3GsfeGFUw7t?>b>Q6?8_Gqui!A*&`Hf}QBd+Z!1=_+U!@)o)k0SFI6 z#`hH_5VNBF&$*Xtr}qY?5cQP18>iV!4wNJ&noNcOhtu7Rk?ALum74*9IM1g{&TUju&1pHxS=q?VhQd6%6>Rfn{(n zKnNGp!@;zYP+(xqROV@LicF&_H)oY5@xW1>+kvYH#hB?Z1|k%bLG!$3kM&qLOvU8v z_2g`Y*Fw0)5+xZ&_<~2exbd{59R;>>*u+jEC@m%Q*?y1-knh3Hwp^hg=6G>;ihS`7 zF^i8Xha>k}2lx2LWp52_HapNlyPvP!U{^I@I;|dEs1eK#jhVuIvaEQr4pc-{U`WMX zl#bjl?A=l$_LZI?Rmw^wuz^v7Mz}CVUW)7SP?RTDyt+~|(!QNy50oZcQ+f|Sf%{3g z%2E{%TB-E|hoAD#ke(5DmB)gb;^AN2_Hv$qJ3Qj+3qM?_sJ^er89T>~`*x)Y>+sUq zL1?}QHVLE;7l9!wy#93k%~`bd28B9a0<{BkV??J|&@82<J`%d_U$JM7tvE1~&tLS%Nd@Q2z`Uda$6;~)!DXxGw zls;e&iP^b9sUAh|LLjy;Rrs~g)GIE6$u^9>aR+*}+EX>|NyeP&`I&B82vdQ8d8L*a zZ85NOTNJ=`p}$%6e^>88*m?(eC%N#{*xau8?VZkf?TLpXbTb{?&wjTIaD{1ADRJHS>Ehn;<)o;1XkR4e{}Oa@E?_o8N;s z4p@7JVAoy6slS|gxL*cgn&MOPz0H>n9b;4x<3aa-c<+nOczcRvD0NTm)ay1tbUc^T zuDY*DGH09G6gp6%g*?inZ_1m35Nc=i0?A=NGfJ^5%YN7NsRj`WR^>C`yAj# z;iJDq6X#|b)bhxkaB|&iJ!iGJI!Z~%>PC9^6MbsGRo#mSY3?I>YYWTDC8dvOw7F(E<*ub- z2k*$!bdDHC_i*itb#_Csp5z|qu0Q5lj>X|slThyJ9Fr~_>nJkKdF;h%wf@UGikB z&_|cNX$O|!{6g(niZV?>ZAKVx2(8j=Q@%6l)bHz=)R#E{$D=evj@`O`q!g^~Q_SnJ zz1{83tI)g#Ezpcx=TzPuIhRx8gRE zxmv*2oh#cVFL>KG&Et$bljAg=p;mS8O0PvGH+k)ENH45Mi8Pwmte?tO>m< z8=WJjI_@>(OiJyojMC(f$RyzK(aI8mcDtNMvy|n(E0u(I$7G{v8Kfc;vUo}-v}Jm0 zlULGsz`|rX+TDoi#*Dl*JkV=Kvl|dDtnG?&H2>$acGi%90s*jq~;2NeDi* zDt>?c8uLYC<=Z8XocbDiamQx z@v10Pjd5SW++=Pq!K!J>B$tpCaSluyIO;kuD4g)(&Yc>Rd{1_&XRM4PBsSlmw&zPK z0&pXe0|V5p;3vl7!zj`dZ04;+`nquK=B_hDS1vXy5@MJ^in$3n*Nj;tETd7?Um2)( zNjh0>XjmTX36%u!cm@9PRLISefRaf=uDN z@U=3Q+c)o8duz4I*AC7jo94S}<4Eb1y&vg6Vsn!yF;bMnX9sDBcI~AQ)LH(dBL$^2 z2f4m`nwXeN7_utq1KEqh-$$Bf8D#O&^4LjpHb!q$jJ;+!FD5YPkmPysRemqXi50FR zeR%0uXW<^cYng|_VDz7K$G+$Indjhv-l!5(PFu4EcLLca$b61dG<|r4xUJv0Ve%aQF}b7VjnO^41p^3NQ-KYx*0>ypc(+PAzsqk^J7c({ z&S~amz&_!&-?EKy;zeb++^`rKAyZFrJ*e9=TlU4I)l~#Qu9sSLysaJqmb{0eOK?Ql zlBN|$LwksfkEMrZrga%swjz9Z;j?5!?Yh~RZ6Z7CX>;}-Tp|65IYp*wsA(js)s{`| zu?-rFZa=^9H_FLM@S-eq2P3R_EaS~m=H^g+>dW5_h$&w#z$0TI9q#!d4(zlaM{Rv9 z&8&C}f0X_1B_Nn(H^1~3Rp&|L?ELZ30M^(Do<997JNON^beEzQz-=hB2S3KQ>iKLz znY>62Q(TF_sG<@?CRf&@V?+ zHe;82UcGIGG;Q>T@yoBgX%2-rSk_g34Ca)v>KOMMHqWo-$kFP!x@lcW3GHYA0gXHJ z%*{A;>8z*5sw*wv;4f!>-LAPi%rC_E&I>KU*%~}Q`?7T8*xg-DeQ!ug<(VAk7^fMd zmayS=Os`!T>LS0Q88ScwgC`?XcIW5ZX#np432hngb2wGaZu+pwm2A5i4#+?((J|_f zpDI2so|}nD${x_Fpxq3Geg>8Vcq{mGu$R}Y-4OJ_J8&|#iEORxoXYWtzS7@*(&N6s;8hy* zJ^X_=yOA;VzGML?acaQ!o^L?8f?+}D?U!Zk_xhuf+okp!XILr2mb$rj9n;{s3D)b1 z7WRXZk6hUUq$O8I9GBOABR%RVpU1#yPwSJ?rfuh~PEP9(4Yc0TC-rEDP0n{}|2x1a zLup9-gHwcfPV{fy<%B;HeL(oP{K1?9CdU9_!qb%A;WV82hVDPy#G@qbOLtDL zrdC{u3ASq;v6qfnIk*z>vR!NUrTrgsPjSB9d=s%b#u_Nnq<|b4E^95|To3=^*(&x0 ziJa}uoJP{N29(H^kt+j86EGNL{?6(J)b1lEU?*gP-ffiYRf5nl^x2+J#O3Ghb~kc0 zIjgv-!Qf&UFXBI2-hyQ~a=cZCub14p%dnNB}XQufS7-!xTp#Yk^$~t$x%(PT& zW+PGHP2=px9zXfs?xD1z9$aWYMt_NxmPe_FKk5koKo~W6W0uoscLwJ#1g9wF9%DrX zH-3bS*)4`-+Dl6@8-m^s_WaZC7KzipT8F=zG8OLWk$f<5+~}{^=tdqv;a1vgFd01J ziq4$MNmiOT^5apeRz=xL$?$SFzx(4Ug2BV1)MG}s#-?B0{{`Vzq(#&%GJs83O%VLC zxmVS#HEMl4b@{giMorgD!%j?~G&0n78tmN8a}wpgfi@MqWZ_;e5$+(*&*Ry-^0(el z|i1ppNGt&l!jnMGu;T{l=W*Hl^Hq zwB!bg6Iw`jR@Aq!W^yVq;ft`sB2ooy z5efAftJ2+doc*i%?T>@FIixSQ@=z&?zRMZ1{A zA@9ZMla!g=m9+8I7fQs7paU-;m$jTJJ$;xNvXLZ>4$QDZYIeJh#Bv^L(Mb)~6X3%Gq3FUJthn1iUw`TjOBZT_#{k#b`%RH$erH*;>Lc~7ff zkf?~kj0_u#n+9s;ez)y=>EG4!^h?PkE3&sXX^jscsJ?F zH_9cKRc@8CB)M;)QWQll<+5@~QWm+hty0M)*Gj@hlDmcEy3PHbxnFXb%h(vkE_UC3 z9>2fOU*|l|d4JyL{eHe)ujVva$1fsRstiY>HoXELHZHqhMKn@VN(p=MBq`&FZkq&Tios8Y36^v*9iTR!PuS`Q~4IplzOz>ZxHn11PcP3Q`CAQGx= z(VrVO@(+wMeoM^N%f={zW}6*4VL1z1%Q~q<1YcknCgQAlDVr!fog7)G$~}el-jbNp z1phuf*Oofj1&6NsqJuN~VTW;{Dgma>=lt_CudauKiBTu2=`!D_-<$zfP zP40U@(E)^x#{ItPVpS3P;n&Vb+W4M^PPjesSIx8JmXxPS-p~SK+u0J$h0hAWn%^39 zlIs1jDCi^j){$Cmuk3j5rzs_=AoF*)&huY_{ycqMlG_CB*1voYsqKUA=wXeGHv;aG8y+o+k zJt$N+E#s}L8o)yndQp$ZEO~EWCmH9yDt&`&#h~{+9<{vHP%|c-TMYVdr2`a^+e`m! zv)=)AwgW{yMXzm%93TWD9GB4E7li7t4Naf@sNj?SpQ@5I9Zq;hT4UR_hHZ+0QU5V7W_NM{%pX~ZDw>&>5X@pX?#bfaO@dx zT~LHu|6VT#!16ZDz)~Pt(ALJW!34kCGndH^mjr{*_4C8WYBmFB%=-!U7pNaxNQfK% z&fLwX8>h4GGxKog60?D)NvWtb4yr1Jf7B+{t%zx1h8w!x#VM%wgn8M2G2S;o&5Y$+ zM-Ib%Y_^kK6|n*u>|1rg7QF`judb;?C(V4iHp)H>WlB?W$C-)(&HvhNE5=t=WJxzK z3ocsHslk`9R|U-B#F}~^=%C@vKL=aF13uQ@1^dqrjfj3ZQR?RqNuT}x9Z}@J8-@;; z!~Q4|XO5QAKV~&Hi%#wpodwbY4siWS&B+~*o(}rZ=R{biu^S_48S(p#Ft^+}bFs*= z4j>Ft5JIYwqRx#%j*q!o!@0V|E_v=B=1b+&w?6D3SiKU6ad0%Z1e_nU5w$s%L~3ZB zyXaLN;-`VXsjeEckdyDdc3@GL%uo+2 z(aJ%cVA?)z&L>!bzQ{2aC|2FWHN3v;K3cduaPm5pbveBKA6d;t1#qLTbNaPrC$K@f zmbafscW);J$fK?t4X}$?f!|8u!O{m2O%ueZgeK(xLwfekpc21%wnuNV`f7%_o;-Jd z{XvS!pA)J$s`2*UrPJZB_(@`TzHYz*tMfA^2|&4nrktb=K|Ant(=tdW)9Stk@VjH} zAx@n#!`oPhdA_MKWgfY`Ww{znGKYquzIE2?S%J6G*~dVy72$6hP)rFtCZ42h>NXa+ zL$Wa>(%dD$n<(lD1C%;m3U{pq+wS>2qv2OC9r;g%oWIg(yfxL+VD#D85S5geuTFCQ zE_qUvN-|;`ICd4VW-57%ozjqzJ79JAz0g&4?da+&>k#s=KJ9X~?4k8GiBL6WZ%3s> zwH<^PSc?u#c0t`kaUaSz+gyj7;pd60eey@z%Z{qiZVl|{(i!E#=Q5TuqqEkZG9;k~ z5Ds5YMmjL7=Zq!~TBFW~e=rD%#fH(3COdz_oe2KM*AUbBw_oO&l+Z5?f|S;|!8pzt zKH_>L(Kt|!_Z?uwqBNtJj_dr|47X=4b~?S&-vJN;)#9CZ1-u5}(*0c0 zZW@~ooFmV?R999P-PYbb{kImq$KXWVW|58Pr93H+E#!`0+j}ArYChw1W$IQ0Qs?}O zXK-^71QF~w`Wk%k@rK|xNDz+oSXWUW9jy6p-sqxy;^*OHj1uUlpng2(j{>-D6KwPq6Z_-S~sJ07}odSc~J;luANmmtaCs z6p$0+6&z`m)AEe~R)SqQz~8i76{!K!zrInTYpkSPTM%i>g`JQQbUJ3^w%J+y5t#Gl zqx)1WzThPrLq=5iS>UR7AY#9uUZNCP4d=p7^1@ehZOkOw?V!QwWF^e~MT)Cqz}3uM zgrJ0nv-`G4eMW~5MOq2jQRFa$8R70twkDwl!yf5mU)|o(o#MW^xIQD%TKVVklntL& z@PukE8k9h!Y>nfqOLaFbh)E+oJ?t83*-eI&wD;@$Y&}sG#LL0&w$%g<&mpUDkYVw5O^;|6Wl}sp znxs2;njztT#=aGOdhc*Bvvl5@zPNJ}&~0!oyf(@gsDJh{y2*H1EgVzx*gdhT8tIiS zib#jZkEVMWi6UiqHE5`3ZUVjb_pck3CguAucrr(l*p3%jC%aNYqMyDa-tOS@b?xKC`{+j%aePE1rP zKaZL+1!`iJz3IvvMe)AfH$|$yx<9~?d^xH&C z1V#l;ODDYLudi_>0}o6SR-swuYdwzdXU2quDGm7BWAA2K{%J2=->iP}UpO{(BM6u- zn>M3Pn-Myjv4#E07vZc)_Xp33bZ*`Q`hClK9j{1+3;ot$ok;)utS5m||?lIo=&$>8t2Q-pI#!Gmev5ik7m zK;|d?8Jcal+5(_(K-qvwRT-Of&4Wy8azFNh0;Zci=k+J0NZ4yj)gt9h=k%Ft7relm zqq<%*)d{lTuV1^~3`};hE?k}8CBawS1e6~XBZRxon+cUqSaZz7+-RzNOmz3lKhI@q z>m4+bsY6DwDCen4QLe`EeTR_-*zha2gm5qW0wZWt^NW?eU{$&mtR&uKJ8m8xoa z(az;q**upu)b+%*>YX#bOYR-PcZIwCb0GgMOuNayHr*mcO%BSN!aWH(je2Jif^IcA zx2(xPx8KQu$f8aQo^7eBA*%}3dU0;*o4RYj6m~}AG_8R?+Rbzhe@}jA7gXCHV;bx{ zf3)A~w>tdN2aNwI<}!8|PgRpcg{%|l zNg6$V5+3$w%}-VK+bjVP(;-<9bl86O?Hg^?cLrbO)%0fHpW#V`m;9S=aAra(FB zF^*i?!I%sMJ3FpxXjRFiZd(r9FoLcXlUCQE!GjI%F%Xiyo~yxEe3lV*dds3*?Eukm zc>uh_$jtE%M1c$LTOT=-65@S}=P`r_wk6)6w_+tA^*g~oZvJ*Y5wd=@Ov#$h_Z|k; zCvZ3?f_qfP-#s40?l9O=;A8cnjecq5oh~pUWk|EN8`(xw~Q7nQh z>t0QlG1J@12AiA<9Q~FEaDX8p^0m0jaAG+*G48EIDECMQSguYW9at~FCd~nLu}w8( zgxJ7&PvWv7&#<<_kCckP_h^8GpIw5=m0@Z^4a3H>eHu~>`tuhaXT1S;(FtO??XFyGH3 zM*R8YG0@Ml{=ZMq{k7x%W*zD_hd0j$r-}b?WvBG_;CTnY($Xp<%^$9S@4nT@@tf?L zF|#Mok`rsmCTbF#M&AI!U+O-$I)kgC%x(;^?lF?`j$m~pj2gWdFr6Uz&e{Q(LMoL% zMMBAPDe~2K$+Wj>Z=9)8b-aD!)Qc11qxMG>IjO65*N*MU@}t3a<$8f9ldM41$3GUz zYWO#y);pHzV`*m!nK2Pb4XN>2;OYHFCq}jFYs$(SLo-iJ9{AX{A|F zi|jA(lLpg;e?Y2ZMiedCFx<$a0qODT*alSH?WJ^jmT?F-@eP2q4*)8KSB>opEbTqT=`nBrlsan z+gT~YQEJ$k3>fm>zjge4z`Rn6r?O+1`BKyC2vu-1HuS!D1mP%XGdJyR8N^xW4+x1?A`Dkh719l@3 zzsT=OufXOHOT$ZUUz5*QKeh)85eeMLyFR;Ir`!Gbs3F-lnmecTu24^u1X@C|tx?Js4;%}@iV|RpacSBc$ zH8GN+lMd*q-=|bs=epF^JafvTb?azY?sQlHe+KiWDYltPxbNCNY2?agZzc9L+;?y+ zQ)sY5%3_?Bpx14-hGac)=WATHtne;5jw&y`aK^8VCABp()P;(Yyv31==wcH!dbrv9 z{(2!bc8WIdd=aqs<52@I%LMyBg6EeYQ-qD&8f49o#vBQ99qF`}P`fK)^2RTPfVQiv z{(yOJ11YS?nXv_w#&L9=4v8R#IjSuC7C335ZPQ{PIr3=j2u75EUCtF`FLY zr|BE~QTO(23!xErp4TN?87rU|4|qIwJLCU(YuOB1vGpAdN)P?Qim4=6D7T&LlyuDY zHryq68H%&&)RX@txWrD~Se{WDgv_3e+0E4b!a7p`OT+U{tL-Qo3q!CLkuMi+)V<6uKiVV z3|YIJkn_o;;+*PUbHLPl{q3QUUV}{CpXV=YQKqVgvLy{#L8ij%lwC{LjOmXx!wX7N zB%3D86$x~}aqelJ(u77-%YY3&C5#%eBb+NWhDm^9K@^fPL(wJ|VL@GrlMcHOno*KA zAGcuy7VQXs&Nv&rX%l&kjcrsTI?q_Ttvx3b?A~cDZOvk(YPFV5v0F|JL=zpaLuu)3 z4Gl+G0}t-5WWD-JQt)3B%CrDoDbQLcy;*Yo%u!*nrPo{~+)`G!%C#c0XB^)_TvE^T zr(9@9G*+b*U)FD=IeW)N1}q6qg=`zG26T!?YstdevYIuveiA^Dz6;tm6rVZC(f91tLk!`5GAB;v+t=I1p&Q!Lx{xcl z3H8Uu5rKz9ozV|{8WhNCxX;m~Cm80VRt%GbaOy1feSEe3FCQ&8KW+6P4*hn@D659E zLTp)S;z$WC6bS=Xg1@T#jctYqIa_zlIA2zvjP#t}6gK-eu@QBY_)qWKdS!dw?WCDM z!5o(4s5GeD#=LU>J$hdLn7p)H$Y1lHPpV_$m3yw5ARAdl39e5KomxZ36R*R;sN%l5 z@9jMuM?_9Lg&Jx8TGzFVuOi=sZQTC5J#izEVy2#;c7P3c!+%Q!-B^h_u3;c;K)<=F z(IT5hH(GRhU!D;3EVKdq*Xl(>f&YJF*RLBT{~6Q_QQljcRsv@ZM-TFq9mZ%(i=kV+W5Kg0kbEv51APfT1KKbd9-leOOk*?wI%TS7>19=>S}$xFsVPZBhg4JLSBV@4{s_3vSuU|zQ56P=FM zWf$DWO=(#Fbl|F=Dc1KQ{FQhz3$R1H@ABf3iXw_WKd|}V0xpBK+Fp|tCyeNDkshP* zPc2d0E+}&XF3_KYIHd?D_rIGE*SuvoV}7I-w_HK!%ok1|qIx&&hC_#5O!*ke7Qs)o zUA*8TF06xa+?4cfuqws)fxAp|Zvn37P z-tbX7A4k0-+t1f%rTrPz?*6V6Ii4x|O?D(PGGpCLvu7BrPhKlka1H2tm_P^&G|8Qj z-Lkr4kYhl7X(VumFmuMb$5`!1c`@bdgx|=p#SIhM#a>ZbYY4g7xTuWXoGA1)f=jOSlD{1YK$_a$= zu;PB)Y`#OQF`==+c-Oia7MFijHg8>=e-zljNUFFHJ@^hiLO#z?YyX9*$a>0}ugTQACr=+1fI$mOB>CaVzIhG~)nq)md zU1cIALkBpfow(lL&=gPj96xlp7j><-1KMv<!6NlpG35SSXbntFmT6pgys6Pj` zn%Hw6(!(&OG`Y{fyCTm&Hn|jqbS^=O*FX&^-g^b`j_^>aXFY~>b7FP`Y%EK@C1R@W zW%L5!;-{_CGZw;l5=-rle#hYIA`6mHN9S_-Xp09q2 zvoR?N?StHap_d}l4myo7!|>|AJw7LNimE2d6Q}T-j}5$B2n*UA!i8p%FRUB9LaJf> zbz7`1sFx>ucOOLFBWnhZ(9-!0Gx=-a-kJSbhbst1e4qd)!#9%&Pk7;?%o3XgO3jL& zG>sRs*OeF5^&pXHNXy5pJX5(-4ME*jKM$JB^P-I4)}Zmh{y8IktVE_H0JIy_ zgZ5YHxos>Nj$w+~A?=6#adEJR($o+Ge-+dqb!hf7SD~4yK}zS1DGCuD*vhociB5e* zPe2Lkxk>rTWQ`ltT4ycVYfrIl?&ye0xb``sbL%cnx70J5~ z%%XFhWW!eS1xW^?v<=}gHu7Cb+Nb*49CPh2yo+->$F~8guOTFD8{0zqZ&Xc-q+AGq zzkc*HWdcA|1$Sw*rbaqE%=X?HCPZD=GV=Ux?>cX_dY0%lVV>DlNtD*VfdJk#{uH9M z>14lcsgM;)PiS@gs4=shLGo&}Cyd}d#WL`B)U0-jFj^e(n^(bhpR(4x0kaSfdmw0y zDhjy*&4w?0gN)?{;JQ7g0E#{{kY2X>6-Z9zIeD;BArkY?aNukF8fyqukMm$P9y zQ^f>5*P(X%l)CK=OQ~H<|4hJbPzF9*B_l>Z66TExvW;{zO#`)mAMd85@yTdc!=#!ETw^v>nv|6lBoY^MQ$V#X1FOT2VDEOnu za_tRjrQR1aEgl2QG_am7k8Lk&XB|TXO~F6G?6mdio#%I#f*#Ofe z=N%^I`+1bvbJF&bBkssEXrL!bp$D|RBdB*_h4q1V;)HuUa%&J6?#@l@?s3N@GYy5l z%Dwyr)_qB`BVbyx+Yk(SFvA(#z;lh4_Dj_@A`M0NruXL$#i+x1J0%wrq;2DfJ z;B|9`9Z%8AKL6;$3FKw3f1+miuHl|v!&J)gu?9OMYnYwH9o`iuTygmQwCQ^kz37E$ zLz;k_u@yxVlqi}H1;iJMI!D=8mpH1#1cRYl_l)A*{|ocj!;RBtm%cIh=@zcSw?9m5 zA0bCTn?Ykq#*(_7loy&|J|^VnCd9eIXyKpT+{qwfYR#ToS8O)#VS|D`pRcU6PJx$H z#-Lp2aE>9{5u_n$g5(0(d%qR%G{W?ZDOaH$ghXV%CV+B7nEvBi zimb+pS64_XJ&I_5Bk@RY%?+C758Zr;@kP>cxlnsr!2PHqbvM4G=^7?c6yK< zCVX0T>Hf>Dwa{tY1R?rl+U*C==EI3rzGgQ-iS>KKtD@;FQ^(6!5bIZk5yvouskH7t zd}U!<9s3bmI>e>^T^6{J{bSbgKTl&5a&_$EjPT_rbJfqPC_zU}l7qB@;*PsV^Y(B- zF_BMWeE{FsVhniKUd`p9BO@IlKNDO-XkQMi1OM*e;_lFNIG5wxG~}l4Ta!d45iBcA9GCpLbydM2e@9rC8KRT}ZeZAL)c8PsFKAvYf_U6J@q0!# z>s-J$%s~wOEIa-H`;4Ckb!^`#ub;*gQkP%<3YqLoe##P#FbfNWwT=J+oMI=cFg;n{ z(-JWZ`5+HSXVaf(EogD<}?~p1V+-}gN3Xz@7 zW%ej0lIH0-9I0Z4DUBar zYp06#Yx;>x+hisHT>s-Z(=7``FM2rY;cnUk(Tc0T;C-IcOh??=QHU&=qRVz{NNBK6 zY^YxQHKzCJ59@w;su3Qpd}McYp(d7PRowk$LKxj~L-@Bb!WMrrFNa7tx31}Q$9#pJ zH?7Ihmv+d!^M`_qMs!22r3dd5$FAMmYEc7<)PEPJAVM!O&78Z~6TmxTtH!hnY!n^(4kCgOaPlf`J^B;8}1ztt`4$^x7z%0%-V!_ofok5(7W61*GnK7x3~`7oIx z)L~xpnG%-vh6mbC@2zNL*l*;O`;y@SO40>z3}Suo8B{~Sb^M1`s!8qqzx>&iFeA~&z_B0#f;*E-nkh%v+46I z?umzkKh>#=;q6cx@WO@95viRarWEm21X=A8a@b+m(C*VqV$67f)EM@_@1LJA~K3`rP z&Pli&j1Ap-cT_3bbldMmAf_~Out=#E8Ha8m+@wca&`mBO_0#+-1_19D%7+n$gzZ@( zs|DN2P%yf?DI5@fOXRA4{RotHCiqb)n09nwbI5n^KfP>8`F-u>*h>WG1N?iw*bqgE zw&OzH*XqsQMCFpnU5tyR+c^mx*iz1cOYp`HEPo&V<^slJfH3`LYUUN?5mlCnEov}D@3!$P#E|lQ!-^fWQYk2mXPaN} zjqDSd7=vw-|A2fSPO(O;Oer6&o$^l-0hbWf#4zn%X#hp2|MF%Ga+~{ie~jw!oZfRkpXrcZ5Ol)0I=$wppXVW-Mylwh z0H}-WRUZ|gmo)i$h(8esF_ZHy1voZ%xa=|B(={^@*U`a_X5?B2ouhc1p{S$=14h?A zO67Y&PV#Tf?qz@5d^7rR1@i9qCe|iD`PRGMS4*CftO3cX?0g;>I;D(KaGJP>%It{9sapCGdtoHx{LW5 zxPj)m^*;qtYS{-?^u|)^YPY%uA(pobjl4yl4Q~RwMO}u`tY^1eYs6?S^*iC;7T#f< z06q<}!ZgPUU_z3=|ChAVy4SehJ=v0Wh!-CxhfwXV)sG35e=lnHLV|?P87B^NGyCAj z#Q+s=U>Ed{V`Bt*gv)DS=#b$l7HQWMUwL3he51aG~yjc)(oBMsA$)-sZKhPwy znLZo?`30yuL3=-RZ_BF~;Ezt*H%&9)7rqX@#z#VC5g(_XyGt|phlzr7rPAZ6;qd7R zQOBkWfLlMq9#AdENxnk&hD{ACKn~*Wl|+)W)Ddfp%gi2LE%wybMEXWX%xdxSZ|78e zuG+X_{X*1=W3TA=e#D>GBE&9&2)1$q_(kLs6b(6ib|8P);K!4f*$?#DMNw z<)4RsVi`wPnr^@8V|}0A*2tw%OrUlszWD`tZfLy=skA~|u;@l!a*Q_$2!3r$_;yu^ zf(>xJkilK5zJn^$-u$WZA@}wd7R&lGrLr%L@_oSzT#lADx^HGBDeS8dotAMqMRnw7 zPRTl*q7Sq5d5^@GS_pF0ku=rco&wG#^wG#+snJIsVtPZd!6YuV6%(XeS=+r4x34A&4DzBb9QhV_8I=7Dn(g`j(QMQs}2YO zSi-5qSGytOlC{4)%e#QwISN{1ChRh$RK|aSGu|cI>v~ff)FKXWKc5yhf8IUQFWGQw zpjt+O?0b^l??@77zoj0!Rd;ixs~z|gPBAW{{xx=1p`UtOn8|WIjUVDhZ|z_xxXxxs zY+?bvCJz}Wcdi&cZGefBdv}g{pQ4PshVYKSbIuSP7bzXJAk)SDqY=96kbPN7G04RL za>!Zy;ehEQWULs%kuh;s`%VZjV9bx9Rey-_=?YY2X|ib#2>=JLcVwd$7U3FV+z18E zuA+U@8>`phTqGB6~38Sr@6TS;KwIJMUr!qk1MFpAA(kMX4W!#uSd8Tao~yjF>-g_`Cg z%cmSwm9C;+H_mg39bq5{U4Tif?|&`rdud`*;HQG_b6xC`;SxM{F{&{t!0g z61Dg)Jf0+?n?!u!dCi}LFC!?AdG{@UR%<6%t`xte`%V^Zkrh|&rl$Z^IOO;=iRohQ znS^bQ&PsO#q(Yr|7w($G=m7fj?tU|YB<#$?7L`yH2Yp3yOrxK7wLZgb!YA!oB-P4v zT=E<1YMbGodA;XzHt5DuV=Bx7`HtMY2aMne_jBQxhq4Dp?MRQh`jh*p>_h? z5pJ;%(vE-b4O%fMv1w;}V~#P*$MF3)%qByR@dlZ{mP5!swrVSU`6w+!@L^$wmrWA$ z+iq=@_8Y+iBFL}9a_68op6!fZMjT-X4}WMm?c_4r`l%_;QqIQ8K%+I1`eI6s{zlQn zT6@&cKtHG`cCO)4LM5@7VrLIK`+4&SMPB>`L+O~~!20mo?qiicP-DQ>AAVSY`JJa{ zRwM!oAI!Ag2YhJ}S`Vw~UuyN5uM23b=o-riwKl4b@u+ju@%R20q@GZt)6`nCOA-IK z^wGRp;mGZHbYxV_K{xCX`hv2HY?-9=N?v!pR`NkrQJnw5iBC}2#dW04p1k!PW3|ML zx@e~*pKnD#i<=Pfc0FS&!^zi-Y6$`Tyic_vt0FdWC}Gf@cr<@44+!Rrelz%+ZmbzWT!@zBK4T_J;z+SnF=4;!`G+9nafjj;AQ{D z7Jck2ypyB^Xyztt6S6@o-%pM~%MQRUhgN)7lMZ6L?-fJI>lkP@aeW_NbEz>4TzX0g0mRd6V-r3hWb*C9II<(9`kG;X@k z9@Kl4|6VjWEjK29nlR$UAGy*Et(3v~iLFZ1PlE_^h`XAePqdVJsQn z#;%3zu--o0*u3hZSJu!dWkmKRG822Pe@xO?0t3SAeX-WlPs+GgGqD{^{tg7us{R@C ze7($%gcFH`PK6P(b9{=m=+<8Uy=#|OA!o?ry`lLHVh2_}{y9TtXTboMS8e<4C282Z z$2N}&c}Jj2&^V5FiFanJar@_6dm;VTD-lgP@x0i*h7nE5axRBz2|6V)jm5-mO4z2E_`ivr)bBf1Vehh${AQ;1SMeT4b6{Nh z{@QaQ!wo^^pI`Yu+!7XysCz`zi~IR-`fJNyJ(1g2A0OI^9*agg6zQ@Ns~?jN+NPN% z(5>63eZ`HW4&9O`lh2@G#r(|r9Kb;cUbZRjWY9G~hp32MBf zjH>qyi-(kL@6;=8$r2*j9($A`X45tuUW1ajnyb2f*RvJM5{9MM?HB+xGqD4>3I4QV!B!Cfe8a>pUkO-H9E{oBn_;NR>FPC?J0X;%QAGXgbk()e zbo5y`XxfH1)7A^=`JUC^#YyWkURNK^EiOm7$}l^f3n0d3I6@>Bk(NXaSqzI#cf1?3 zd19>OSI6|!Ie(uwQV8uh$^$C8JLu%H!fg?{rMP>5^Bep)39gu4>Tc2PFJ^3$3wBxg zr?3%4!3|=6p*HoDmPIC4xkIsAX;1o6YZa-vy;e8>Gdj2sC}eK7X!s086fYcicZq3Y z!uB&+E`=VanIE3uzWrsYz;><#AVWU@bl_(*f(IY9u25b%lW|70FBL*&F&Vtvw+VmC z@%Oy}n8{WOmBedy2w1g*)Zjn7+CG*Y>PF^sG)n}?lPt_`4?5n$BrCdH{KVDzx4Yy0 zdo{nS7d!&B;ot~D8MJt?PeI&okrDP8A%Bl{}c&MXXvB& z!l1JH|L_?tlx?2TR@_?_O}H91D>*18OL^1K#59hJoV2OELJLt=%SwOz1n^Aw($~7) zeHW#Db^0Nig*cigOgceN6*%DF(%otEtk3Y^wF4H*5oi5HgDmx{+>?ULHGh3jpcOWg zA@&0X;XWYgl-;K#FWk`k;de(r(RyXqfMjNKC~#9+wjZGz7ub1*>Fy-^^A+Ak74gjy z(>&x@d1;zu@B@c>ez# z&@xv&TK^zo1WYa{DHOi*_O4V~<_ITaJ1>5z}{@xv} z^3YrSb@$U`MWO7UDEPyMw{`D@ai1i6NsB9QJraAVo3z~6FmI4?A~kCIngIjgj=D7H6pDwU!D(|?>NM=BGP~F zJR8g?+)6fHu}hJh%XM7{XxCkgn`&m8mG{Vb*iTv3jwUr+|3}hMFQV0>g0O;yKH%nz z)dp?q%#7As4$Ds~hSPE*WwSx+#2W8@ zsY!1558X}-@JaCeU~Nmz4fDR z{HrZ}Wxxa8ovgFQqv4>6Vqy}vMP%0F>5_A17!YXeFR zYasj`gq(K~>D`1OM>&^ zXTX+VZSaCo9y*P2ZoPOK&H({spy`7TaN~n^a*G0%P;jdD;&Ibg( z5v_^lCJz+^1L=%vViHOfT-+UVmq8-ZL-Yum8#W_Vx2xD=KOnr;1#{|;g_hIYD!l=T z*_1k;VbqttT%l(0uB9^#o!C2G@(@BSoEf$eLisBXp3V$=0)0s6G&9C{i!aRM)Ic4E zOxbeazu?w^Xohrn{?O76@R5(kPbR#LYH?0A0ru6S0>D7d<7z{J1cLT`6~;~+A*(z+49bDzd{NN4|A(D_dj8(T0Jpr0 z32kjcz`}j-{CW^S%jrGy`!`H!wujuh$EV4n?3riK95UoRs31IS^yKpn!>{Fv9X3gN zN9w-8?23OupQ0lN4->CFk@g3V1@rwFkHBr`=AX_W_O0hvJrdNb)IY0T|MZ=auPI>@ zSczk4=QywIvBmb}H{83%Hd)Km>UMlTyk9Z;Lh_Vrj3$#by80zE6m`eQcSV00VE*_?@5z6h2Rv8ux(9DXR>pYLhrtY6M* z9Lq7e+J6n!0-v zw%Wd3uXUP7N?x#@v;f;y4CATLas?${x4SNHDNmgetQ0>yP9Li-7G8*vObLBfD7~zN z{;u8oW_N;Qo?li-O{}eGgq+VMxU;8AnIu_lz%(l*_H}P_`AIrt=}uyaC6*>lm)RYU zd#1|#qzZNA)=2{QwqdVuCIkhBh}Ohs3nJc6lepmAU%dk3Ws`9G%4J)Y_Rjr&QZQuZy$**ZFOa4g5!l0<|e zsT>w6O3pcKY)e9Nn4(nJ97E(#&WEjXSdMeb_zG;u`XkMxrR$Hn>A|10T{JepIo1HULG(6P#zyJN5u52FE@?lgX?drY<}E98};Sg zs5rLWQj|bl>4^0EYsxS@wpzid-82TH~Xld)4g$ zCq@Tm=#_0c@VMgO?P{_W_NMOgdCr?G(F~OMrjg(Za1O?WX5G8MZIF_-EZw}@3Ef{2 z;F2Qpo_7oAZuWifx6c2a{SD0w*u?TVKj7K+6>?B8l;n`~dkf3j!rAavt+vRjJ=OU)!WoAvl?NdFT!ZdrXbt;aQB%a1s zV}Czt>i*dlo45F~4TX6kXc^_BAAOlph55bk^!~3W6BXP)@BKcg(dJLn3D$V+=H$pV zts2cQlR8<@F{?SX!r20B+)G-}IP}n2!m+uR`>4O`#u86gX~lhkbFIYK8rY zW658x&U~qQL@0VT;M`u0s(bChdzzhhGr;-6lY;occo%KxdM5`d)*;ol4k^H7^Uy6lCZc;H9zwjVZA9S zht0G`eX-+8pK3g%={j@ZoVqal4fC?VDLv}g&-8ewBPQ8XW-PpwTXAKS_q#FrpZyjL zXZV%!>y86N_FG|vCN4gWn6?$J#{6IoD1~Q1XTbG+g(@Ypy$aPa4G}G~e@xDCc++70 zsETuo+nuk0TicQl{k?HXplerS;1ubWYrC<(vIhF|U|)X}a=^zbyGTBka(}8$it_vR zfTm6~xBt&Dx^{3i_fU40$W7id57d*|ED?(_loYf6wJBEb(Ez+YW%@4tjke{Bk=dma=#3<0ob$q{doVMD!_YM29K>9vw~o zhIz>U`hn0GZNkZd$U$x<*C)YmJWQz@Ry>0GFnm6(@zKYqik*F433Z2;O$!6lg~t~s z0*r0iTZUU*bX2?{ghB&?6JLl}q?0f4CQpL`c2HWN)54obf+ioET%WQ!gA_-iG0T?K z@eDH8M6DCM5iptedipz|X&^whFC-v$>|$H_(R3vFFwp{n+W>BAPuVYJyriA8QmUA} zSWwEAM&l<@HVe(@guV7l>YwVE}kU{uhKRk1<7Jr~w{ClPsK^Y?Al(TM-^KLG^wL)I4S2@m9SwC&(yo3pw*spu5#gVJD>lDhK zpYaW1xbvzUI}jq)XA%>J$R_rFD$7H!U#Ts0$0TlpAYqHGGAZ43@1JpB1PuiXYe!<< zj5O73XCfF7r*x{rll-1`qMdexQuH24@xU7pv@Tq)!5bL?W;ofF{Zq4Q*{R@yY2n;k ziBkg2$Kj80*6miA!)AwJC$gF6vBX}4Lwmj}HO&xL1qwJ#3OTTHlrgCGf@YG&EHp)B zAiHNQRSdp9_`n*j${l_9i)E`WvIc#~8O}{_K33wZ!LqUt)#mAZ^LfT>GTH)HRYO*% zMMqIwyUnVtq|IOJ1^K+Kme5sp9>O}`R4p?Mt1d4)7Ftk|)l2oO9ynx#2XRMl%#7P4 zDc@?juB{Y5X4@Xfch&NAPE`3#3$q*W=a+gE2fRGmQr4c)>gXrpRe3beMassX{%ZMn z#pV9jG@nlIjCz}&YgZu^!zCm1%HM$6mU644J4NgIf2N$2UYnYpc+Ky>_U`0Co2*zn z(Y6QK7knpZE%}DdDFhXU8HT)X=FWPKGz~-QHd*ToZlXhxkKx== zTW-xwT<}eI+xHRHU8fhzNM*emN{%pmG2t~%bAGo>VZgW2)>{Zd@BV?2U*?t{T zkpsQUUw*@{JWRaldy#@o63D*`8+bpY7Vp$(;Z%P27j?xcTOSdQD~MXk1h3X}|U zo;>NWQ7>zSI)h{zB8z(YDHZ3Pb=v54&*AN137I*_AZhB~6WnPDU8(7Z9s87~8CQg4 z5E5X3rDEMLC=ib%XTwBhQD{sSs-ytmK1jHx=QMnc{pgyCB$;Gxdcn^>w^)L#dANo) zN~(I!lJGqNbcgmBdwJdUUh(IzvQOAgRf)4Cl?-O;Yj;r&=Cg0V4-UrPo0;N78VW6EU{{dE6=Tp7xljN=2>Oc9%j zV<%Dj)@%)lO(9cQ{K$K%&4UVvlTU9^!UNe_&$qj?PrGW}M!hhdT4E<05j{;NCTPZ$ zw;xG9&L~a9yRBy*9!BIQ#?4-{!6*va3Ok{I!@y&1R{wFFmkUCistKl--J4}DCJMF% zL~>E!0fLd`uO~-&_}Tcn+d30%l6!c^nd#Y%?H?U<-Brf}=dMN)F%xFXOzzY0BUFNi=%M7U%@vfvo zVFO|<0Ddf*21N{h?@#^3wm&l2p7Zpr)>Dg*Bv0oz#?trjdkrgn(z$E}mTHM3&=wJ4 z$QtjhmaRU8K)!}MTwsqUx?7u0**CiXAOnK%r&;r>T4S`8T{lW+uj?{O)um%H(k})P z|73iuzb}|mtzA0mH&e?y^I=pg@N0rZ9MsEmqebW1u~O%cav32P%ZbH4c~o&FXn)alLUL{kyy<6K=OFXCtX6_Z>#8ZhseL%Ge>SicGQtAi1~CM{xJniK@?nFG*3 z3Beuv7pn`t3)GS=mDR{+2K}N2TQ$2~)GE8R@nzum{Rr&FpJJ^t;w30h1Ske5jWMCp zX#p)iTm$60k4wCKVh&upAWqh-KSCS6E5kR0u{o&})55noVVD@2be}EvY?P|sHo6me z>%BNTK`sDiMU`yRj?O{r>ksVCd!!?@*$mHQTc;COIBr+;QemGOg_Gb|3 z<_0<#v=@@~J^?ouQ9{h$+?ND|8^#ao!!w9}xGp2)sbIBY*RFQmfiY z-=F2WxRiv@%==j;BkhdE6&N1}SH%qgDO2Zn^Pt4C08e)32MI0VExkp1mSCjSvcjPnsk9{zJE z>Qo0Bfl%he1|45EM6RX12=NmLUiPQL#T@|g$ib+N>4o9Cp#;gh)DxK>dJGc|bWJPf z0u}-;uLAt8Ok7t_6PQ>0zzOx2(id`9#;}7?t*^U_Wt-a!vye$cB>*FL;=`;zl5M(X znRx7u&!8W;EK()b%cjEsu^ZO)M=rQUM=lswVZ3ljc)y(R^G;pvNGh)-w6c8YtQf)t z*@_TK!X`w@DNO+{l&FY>a6SL^cpiuMWWpfuIDP0S%{cWr3)8e0er2hGI!Y7l(!Q`P z`#D-?CT_|B2Nt)#9JHX_G$wRhmdqvV9|Rv(X|SN2@6rfk(V zR?-c_-9BxQ;1JMZHVOYDh;Vp9OK8(f=sP#+=T)%-{yu#>2JOoMr-m+A4*>PjVN$&w zmVYFDoWF_>Lp&z<%1JR$Th7w8F6g$97^&96$NnF5jzaIQH*61Ee5hEOCyaG}

FFPbc#RAsezOqjqR`cMQFWVoX~qxUEG_>t{JjWK}odA8;_Z$9O9dwGZyVSPpX-w8k-NsyWUXroNr3O zTaOsf(rrv#dJjtgA2er_;!Ri8UL=2%-~-1~DB(v~cKynOx`t2LAsgsgd$_)+aNXYAywhb1UO>^FkoN}$2=H;yPbTj)4S zb_D0T>5DP0--C=f1w4nA-`5rRp1-g4r|}2a_dq+n93Tf7FaZ!05svDg5AZsNDPXHB zS+QUl;vd|L7N`gV_W+Jb@`q_!H3D6=7eX8D)m-R(EJ^>D{XBXe^gBk>_D+J=Bs{a} zsNawN_FpmUN3+%4=&d5YdFA)WU=P4Eva4a^I{MQl$42Y9GI&&(@crBUc-f|8FR7J1 zA&*JdwuVQ@_VGgP3rE z<$mKYh=T1TquKw@?mI-d)J7QMT!rWrR~S~#K9eQ!mHfYDIcHct&G?et{NLRlEY$@E zOw;qf-3hpWW!+qtvxLTQx(C&?-MHd?;#bdWC}k7#z<=*_#(06t zG7}VNVl9_M*Tn~EH`80$A-HFsvk~Vg(I`faJsW67pkV&w-2|%SigCD9=n~(0` zct*8yzR6IYJlp1C}|#_o`mHT;f{l2rn<4w&A}Vah@X%#$R3fZ4EtA zf>L8S6>8NEYt<3vHty@vGJJ-a7}eDi0u`%B;hm1Tm3&i?6W4zHMvAYw>DLo9b)_9{ z+U`00`4h@kv2OOvG&;093KIgZAqXyb2I{PPyPD<}EjkvHoN^{N_AGc~>MIrv@|)=e z%C$zU+Wkr-*D+K;einUxi~L(~wJc;xVLgW-!RgSd6(WsqqAi-ghaBS?=K;xg+c-&3p z?GW>9X4i;praI?bvEFC2nLv_sWA^;K>nn1MBKu}#hsCaCL?a&7x4>aP{^`Ok0Ej3RR?cf68zy*=i z2KW{_NZ)>_Z~i#c%5oyU=wkoxSWpG(CAEGi5E|eJ(i+`Qn_zF5MQ&G>%6jPM8G{JP zx=dIxIlcg^N(0&8S~d{xggM4EaT}3$3?tjF!>jSH)@Oqiam>%ndaT_HkX(52ADq*g|Vn+@c)8YS4%&|gQ1y`uuE&V0TJN;XX9PRD0?KU}0{UV@P8+c)dS zeJCa6Xq|VPj=-6(rjvJNy;N@CKOoau%d|3NUPRUX7j}o}R2HJQ8+nwZ2NG#+`Cd#8 zA{mu^pNVd!B9(|CJq7qM1g>SuUd!;d0+xyXQJ|y?NP^*=Rm2J(wYryjh>6qI8)D3;JNuaxV7H zdm3)>7e4o+2&u>x2cg6m{dsuE z1I-5S7PJ_xR4T0CI;-*M{4Cjj$PBex)r2{y4WuUsuR5g*Eo0H21VcJsY=&14bU4O+ zUj)kV1x`-(vRPM`TPl5$dM_gsWtq#0RhsM8UGdxQ6$H?AV&wiYN^o3WN3*KrlD#e+ zro=2Hd%AJ1_2e(umUVH5&fk?4Xv~wQng&(adU7=~zY~LcE=?p;Oy>2hLGC}VbUjXc zT;Vl2bZ0P8yqdV{4)(&`*#_QIf#CYoi!#fwL(D?Vm~E31>sd(%Lpk=J_F!n2 z0B+xxczpYZ?A$V>4PDJosb;Ba~T&-^=>N%`g8z1Uwr#@8>zJxJbDQt1Ts85fp8Q2Yb$;c^gP9M)x=h2h z#-pg*DP)vy2+EWBUUh`Gv|Z8!JZ8#1aqQT}fhC_&?xl3U|HMmy-CgOS2=<6Koxg52 z*}VOZ@C`s$S82it@jG_9HX6>sv(#J{2ksuYO- zBjpwL9ebwJ=HG^YE=fa5!*ju|(eQ&ED#NUhgBJLj;+-3lLs$!P%}(G_!#lVX>#x3L zJ|;6C0ZSrsM$x>zp%YS@Vqw0)*$KV?50G)+^-GiWMcSGTD-@l+$M0;<4FT{0ckU9} zq>`hDpgT32b88dW@}nrPUBpO(fwmD1kZ{*pt&RUhhTZv2C2y}#J?T1>Bwuhlq&eBS z!hk?D9Gp~w_(A1E$W?lOl>#W=x^-5)!s~Radas5E7fix;jywH~f^j5z&RU-5!q}Ba zyT}y$MyF42Q1ffygxuKfj3JRr3Wa--b}sy3_S}=@{6n_98=;$y+*Dy~NP`sM1m*|l z1TCN~e>IO`G?GizFDputFQ$LcRgeo68*%1G-od(YbNZl9z#~rdvNNhGeqquhHjV}( zbM(4@DDrFi28GXo?qa?@ElV;ai*1GLSqxxdPLyT+o+x4Io0s~ zn`V!~nCaQ+DB_`!{-XTct#@D# zJEXal%@OD2X8(h9c#Htg#e`0ey&xxFt!}#g&seh3?r(fjsf!J+m?t`fxK6%|`srI7 zS=zFTht-j!{F6^&16ra*`Dz|+H0sdm*6D?Mntwm5|Lby$gEH9&WwH=4f1`}vK;VtIz{t#-|+PJA=#qR8>6w2!SKXI;ESt(+!N;3s~ z6)rkH(w&XJk04hjD0H3*BHwvlSatTH~9j1g6aty&f$&U zHJ=zEb5#>~&S61wx47|IivkR#@DzNf_t(wnU-DILM7cGrv?} z7FPr8HM8sAtzXibdC;$c*oP;zCs7cYQKCnlr#Htty<8VO_@eugn~;02MZQscIhujz zafwWs-(suSyBQq!-;~|Z7vQ!!%SrOf*Qw$YE|u6OxplYsqEtmC<>Odtl(@03|K5em z6F!5<(7W`yldD4ym6n9>vm;v)hA#9cq*O##tk$apx1J`G#K{LQbihRig71m8n=`MA zDiniRp9@tL#%?-l4vo~}y7?`HZ<_NA^JMx3b~kpYlP@4?q>|qf%>3#7Lwq+Ay8dri z_LCQ@ZFNl-9|yMTnn-0yay+hx^DCO8`wf&L7wT*uHM34C)#;{_%cGQq_#L*k~v;;NLb0ux4a z`dJ22xO+I{Q;-r{kN8b-F2Us$^t)EqqcI7Eo1$=SmB=GJ5;TSJ2bG`w@8V$H`u39O zg{p?AlTx=Q@p7iz1NFAxYj;O%w7P|(b@!F26+i2Z<7HF*?}KNdajYjvVsH~rw{3!7 z+txb*8ydKaa$!aMcW2DVr71h|exv%ot_uU^jrUu?SV8p-H#=O55&>t*Qo%+M<0Pi`pktvz^8%edUeS%KBEJvNE4aqtKC zz{q99=ALeC_olO+*`bm9DS!U$?xC)e??dK5W%$3o<=!o!QFvJEag_41BxgCngaPr^ z{3+6OIZ9?O0<_&1=c4sWGs%|FmSz1AJn_|o5Ipz#LMs{~&ROmx^&${YOn&>_#T#5? zWD)NDL(OJV7XeedjfE2{^9ZFF--|IqS6l;!r>FH{!D@NzNW}TR%t|>TY%HEC;rU$A zJxb2zzX!osTJyXZ=OkFO!^)knCyNuSyO|z?}+=eq> z#QZT-IvYo6vVMJ0(o&%BBpfP8Ik|$Ew6HtoreVSPBExxY)~JW&obWS*YN_Gs64wte z_FU+J`l(SFa{Y?7`4|>xzR3GDt)}k28&N{iCu8U2K+!kA74Q2qlzy!jq-f#;^1dXU z=Tq{P^mb^h@bE{zxZ>GZ+6s%8&I)st)>BNw6hrk7bLF@E89b z8I#~e;|yAWyhUod{klMd)H0>OFYL;kWwur!m39vU9MvUklr0SA0%KSJ<(@jLd0Zw- zrVtBLrJd``bH}84FqqQfNxa|z&1Guy{(*{Fd`1McQ+wGv-Eh#y^VYzJpCWAe)cEMUN?g~>dl_II}_ZmIEq_ky6*Z+4G#x^74zesI$ z`$_+V9=;k42+!Ip5MqF~!n}&d`;9!dv^uW=pH4L!EgoE8Q=|3?zeUt*)G5O7pMsl_ z5jBqk{&>@OxS^(HMycH+x{Gz2qg{5DvcQ)UD8yyJ#_@)I>!`2ABiFo#>IoBK#vh{g zQifqVvoGi&(GppyOnsp&cQj|$@5t2(57P3VeT1RG`xS^e?UfZ5?Q;6WZjNWC=Wl?0 z^Bz9SZ!}a>!!M=IofEXi@Cf}$20~vl@WmQi;p24e@`~FA1UDC_gJGO_rY-m@`OO~0 z*V?A94dnZIM)uW_Up(D!eTWWP;e%&iB~+NH>^m5Xz>x*Ei?Vr$lhMzJ?cA;7V@3{E z)Tr6kY4EcG!eMOW=XqIG#8X1XkvOASFU^#Sc)q$7?u|8grO>p;R`~8ZIL|b%W2G<^ zrIfR zAl#^BgY1KxrGJkWCK~|e(9Saw!ncuPJgavxN^+nis`u09Akv&;S3Ikd4vRzn8yvNl zn&D4GDQUeT2$HZtAlNkQ8j8WbEgOw)$gamyrdv0SD+jJNxtF(O%Ve60wwpq(D*k^5 z!Q|9a!Q}sc%Dza&YlV2+<)u(l)7La$k$s$#+aqxi1S-F~>NV+ElQ&1l-Aa9B$y^izV_x<#WO4vm@jLZ&QXRGc!!H- zAA*_^5rwCwT$k)WYva@nZ)WNUh+jbzthiT17KtW+;arIkt^$wV5f91nf{HIPv{H3i z_kD0Z9>A6lUs$+*7a9u7F5`WAPY14&pXN%w;RLW^7u?g32|s_TM9+} zT78Ia#fMBtpQF_jxUjqmNVnl0X!6IZDRk(BpK;Km6kZ9CAig5>TywzIs>~%tIvL-; zu^I^5-u}~1u_O$KM!s)LHV1rtV!bAUmdvZ#7Z`_9d>tTP!nW9-=EFu$5L{S@K7*Lx z=J4j0DReTj6#o7=OIh*BQvGnEw*9?B9D(UcrzX2Q6#-wtMeM_&(B)mIr8GIV%Y^}2 zj@r6VbBQiBUl;1#Vzp@bG(fHKvD#HK<)kZp_;mwXfAqpA!g)i`y7^*P?`Nj>H!$*B zomJ?LWd_)U8e>`>+fDUo>|#yV<~;Rtiu^hpbTqQq416}!l;1i`WA&XurHqQY|EDnX z*+ZzM7!lR-&+9jUR_?^N{|P~uUSn|&NNPK_w61nRvG=La{ViiSfOI5j0hor%YT0l3 z_cCTL+vtx=)_J0AqdV>HMnJ|x!I5~>Q1>}5GV=Zf+HbjycwPy?sc`s41 zN^!#aX(#M2!BeZU?ycV&t_GoWLuVOZyXl==kRff3a7qG-Uq8+*w7XILke_#sxecp! z-``T~YYHuce>zY4>qF6aKV+vk2G80a65%zb)GQbgUf-rQoR-q-!G7h+ajG;0mofvf z>S6FjX}MZy);|IL*3CM1`hFUsi?s=={P%T?F|Ff&0*FzMqoNlQZ7*i_0VO+R%2Ba5 zM*xC*_nc)~xnPz~%iVzm52e~Pb%d4&QO~() zMd(=nk=u(Uqv6$dXW~}4%jC0&deAT>e-WtF4zH3*aqcqz5mhn{zGD#+Cekd^`($=u zv_fYi)tIQHQHzAm-o9(1Up?yb+9DxlI%4mWY)QhJaZTQNB3AC|H$3KC^}ODls;;0s zQzRk2NAc~}cZ!9?N(FMn!kroSdJsKsaQWR(D@}CE&ojK-f1HZ$cBfRA5sUYR-Q<*& zWt^8IBFmtU#8F;?<@K_rmUjZ}rgKg~+aCSbAdlXNGw&9;aDR5!E6kFOS-2ah#EHKH zpQZK3XuJo0aLKPXs=K0Zi~L84ijD`azWdLjy#CKODD@nazHf;=vHAA(jOEY*d-yaU zmJ2__JAL5+w#{K#dKLroEDoIxd29Wu76cG>7;YTtNRAwpHRpQoeKL!pzagt+ea*vi zsF_DY!2K!?Sb+=^BQaHdQy{!KJ48sln+4fT%s6n;PvWzzV7uV^MI>qbQdsRsZ5S2% z6}uaoeE@+cG7pn;)+li{Gx$G|>Lu^PWEv5I5?v`dO(7E z=i1%X5?jqnj9#J=8Eyc7y#EO%Zy*OZTaTri{9bRGC_=+AI?oAziyZK@;k?nB)=j^v z#8)V{W%muN;^U${YL(E>k+(awo2zi2GT`-TVLKAKNsVuSJ%+X$vrwE&|0*T5ao4s} z)b_wYdD@1l1;%hB>flFgQbq=@?1c^=sH2b4I)ts8H;QGS_J0uu1n|Z`^Xv|oZcvc; zf;(mZcc}7{E8c93{^X5R0V6`O3o!$jFrsYts0Rw<1|e0gEOn(=z_x*Pv)fzpaL2dR z6a(ao1qB=MP|X9M?oh%9`ftYJq+57(rMi1}-_^APZhYG09h*Dj+fwOe(SWB-z1^Ov z)E|pj@5gqrY)#vav)V0P)>hMIGY$!LDLp4VaeORcMVGf?6qjm^`Cy zp;FiO7{>j=d&@pty>;zmd-$T?YYdA0@Gk{v-H{z8YpEvr; z6LbG{;Z3r7w6O4>IW2C z336Bj^5S9{a*H#;^N`qWDSvaSvboQYW15uK3H;(|h@VkO!~sjUM+&b&qmqgS7N8k8 zX$8UF<0IMO-|d!WWn#Uq>eMH|T+AO!7+RUIR69NrPke?r>w;FE;fjpQ%@)6h2#d446m4_(@ZwtvVmjY1Y%-Su#_sEOFYug&^X^JLX zg=Ql0O7WX|>97)1H_#ypz5c+pkZ!huN(3iPmi@dopTVm6 z#o|i0*B(u`VL1MKYLOb)6cKl{c(03=07ZrUPZmjV~2&?H)pP2rO$tx&detHX@lzrlUZOhye;f~!8W9iF z*1W>S#GeAb*z`|cj|r=I?cJrishb_@W^U?~-rHJ#iZLF`G+n)|v+SG!Ufb@eZ)B$2 zl3^h~HTHeYRH`TfLuVpmvLHV#os8_4N`0d6H@0~H8+at7m~QhhtawkmA8r73FkZj` zd&sZ;cJD1vVs$6?1e}|#)Dy**3tH~9h*ZHAhVAD?W+{OFgxbr?3Jmb2d`$5=ti(pC z-2N%C0(FG-NX=!c=6Apd?nF^)!5}vKG#@)myae&4NW$yIVJBbbf_0vN^Q>ktxx1@aTdfnc-(^3j|&DM%}}z^VM}d?cGP%% z=_+Z z%&DXTx~wyr@R|9)5K;N&_NjX-FqBKhNOQ*MFH)UZB!$eqe7knpz-eXEn^s>hk5>Nx zv9svZ0;vb}ClyU~8jk8F0iU5A=RO{z$V$(b7^c*xu4iWObjlnDo^P_hfN<>4F=u)F zozRPc?GmaAfBw^=;x~Q&IYK`cD^I2{;k|_dA!OA4K@=-J{3&eesv=P#^5@+t1MN$u z!xs1tnHxNnerLoKe3=B39sT&MPG;RfY>}My8;<##B<{2R`LzR^*lG+_pd7rd>y9`nxc)K88~7tCI%Ls% ztP`iLxy~`0Z5>GRhW>6YlpiG-d=;PiNy#=0(Em;}1B^XBs+)onl>QKcz|S|cJ|}rC zbWjc&LZJ^PoAjg5$SC||6#l_x=|=$R;OQ=HqQD8_ zT=PN?y*ZTwpctlPek9al5C;|3xo2Tf$IucmyumB`kcrZMlm_gG3@mCF!89#M+kFgm z82edyd++y=mbVSZx!fm7|MuM#Q>5ho%z*)|%T}foYF&l`%q&CK3@qvPGQ*HKB&GOA zeO?k)=0MF)ddHz0s>k{`P2}tOZ$9QE+0Hm-%8S9}c%=VCC z^zt-(z1L9xsZE11dXs3HWp9~VA%9X`%atL&6{IASAiivIgzn=NAx|%V&drVd zf#=;wiI5C_VIa>R$vA+-qWV0#sE}wPO7hvk7$p6Rl__6+7GN4KTM3xStx3F(x@hf~ za_xE4%)U#Q0prVfl4dJz3Z=KQeVeU8Gl!x5PAp&qTsEb#O?;>#^>`>B=DI{}u1kSS z(tIxzsZ7KY>Ftc9TsOEfiC$|Fi*Cx~zR%=#TSKQ8CVz6;>KRFBr{))7A8w^YN`nZ0 zc#2UK+{&VeGp(2z_&%~hwdCd@gj|Ym>EogX6^h@3nR;)P<&zr59eNx4Iv^+=LfxuX z#OnFf*7Zkb!liGDA7mvjD41cG)EN*tjvP4Yl&Z&CNgav`)j%WTd0hQzBMm$y!bf5L z?%FyZbtm9)&Y-ey)*VCl>+{nBHQ9@UcgbE^go2aZH?%Hcf3t-D(a_D&#yW7{vT(}2 z`IA}QEd1NBkFf=kRd=wt;T{1@=MIoAPRy+zy5k9Y288l1@9rE8pCEwKl?O!5WUY<2 z8+sr45A;_gR(yb4M>*0dHI+jPM5Zb5AM2WLUodQHsqX0ppdzO6D6F`=y?pW8s7bgBL^xPJ5A|+LgZ>6Rxpb}_xdL&(SQQ8^UTNZmjS)-Nww`vid`ypQWJVax z-0C9U^{k@`D024n?8RbThQ)*#D|`PLz~Y4;y5*|@B~Ope&7Mx zKoV`!CQ6k@j4PIi<>?Ng-s;@8@YeAeFS0ui{~)Ult5RS!g_Ni@M1azm&(5<(o_5j1 z>)j`^G6d@Ea7weXg^_AB(Z5#ofH?%xdD(69R1ACkk$N2 z$r8X^eiRZFQUd(!fbRBE3V#0VhZ)!D2Yav>8b;-@R85zAsapSduJ(~;=3@di2QB(F z(`VWOZvcaBpg|&E7Ythnw(gApY^dxN2~&H?K=8BY+kBusU>a;6KGOLHIgyis6!ZKi zv9wZeM~~%2JXtLgn&E$q_n&0R$_F?p@;)()Sl}g|?*j3|uh0v#GEUI)%gFDKN|rL7 zwgt%%SSE2a+Fm^6zZA-iDeuFau3#kTt7`zs0qYYD&rC7w&>OxwRa=!wX1Xrv;Rk^s z#|imbl=emjx4XC~s!jAp3S35_)L;C^R5_uaJNfX{R_kMu$xC>^*#329O_Fn|edOTP zvPgmDn1m)3E;>v|mc1n5YH)vYk-4Dui38lNj1QVrc?tIBzY1E1#L<$7^3FjAY0jEO z;J;#Ii%2QZ0P=gA9Qsu4r1r(&G%1VS{y->M8PcZ@%&GbD=VtZ$W`_*Hw8waP-rpz0Mp3{te z^9md^0f7)J$-42fN;@;v;g<$m4BKGtVol5_(suF2PMNVrJ#^4RJ;y8=inniH$ ziZ&sgDXyD~0OaA<0Ke1B0F-C*Z;{lX33#9@q$9LkLoR@Xs6NTj$mpBq%Uymx312s~k7|{)^c57f>72n-Au*VvCTWHKb3p+?hsrCSbe9q+P?olP_rUZP z4x7o`PNg(snSU)B4c;MRN(vlNWw(M(aI7P{B(tleSSl0YH{Inex%$uL-h%kJFBt54 zr7@&H^U0{xjY-dpN-9DABCu7F*DyasEDa%_6q+-du8DS)oIQ!CIP8S_x^OpmQl6>2 z;5<@-w{a`nIc6T_;J=j`oS#N3KEqkfbNT`Ojh4q3qj>r&)9K$Kk6a(BwVhvTQa7lL z$tr5O0%JRLh01i+q3+|%4$PihQSI_(r03sr@OSw|gXAiqlsEMKQg4rDUm}!qW{T|4@Eax(^4t z(p1Hp4NbFQHrhS>N9OE8Vnq4k313<)W}BiGEmZ|w{?3c>HrsBrwWDe65G~|p?NL;) zTjrfO7=?e*W6YIb21JR=lNFEB%r6{hrRwRy`)xT?_X@h`cWM;#QtN+12RBhUHwWg+-%dj2n;z3Hm^g==G=6@2ju#8-H zzCI3%`j5y<`mm?P#IY4VwE6;C-F>X=EM2n<60lndfIx?0*U$1x%5{^v$J+%i9z@0k z)7Mn;o+SJZw$0y{%&bXyD*G&p`=nodgQ;zQnP^TAU(RXy%mMRpugH+sG}ShkOXBEr z`2V5kT>P2-|0rImRBqprB)5cAa*4`)t0YOeCKMJDQZ)BrTcwgaQONz0J4+N|oBN%) zPi~W8Y#6(k-G6?6!RPV#Twb5Y`*qIq92>`IfqxOJ7VMZrYQaTwdZD=?9Y6Pu zw&%AbvGsTeYXl@aEZB4OU)6Yp^87#7xLlq%eVJOSfho*Ep1`{XF6)=|K%jD~)fGZr zYU79T&vd0QnsWH>h?WpxJw3T=TTpS&NZ#{m73lbam?iThnowmjTeMflA*B1-Dg4~A z!0;=pb>s`fIF!t4xIkV#xGoxhUH`%5rsZQDc9ZD7j`8W1DS7AfzH0EQ=w3;Ct(pRX zZf(B?~O``=xOPMlRDwML&1 zp0Zr-qPBfnv6OMXeZKfrK6mLDYuWxaZ}NOL;I@84R9J-L5NR@1sB6T+DaxPI)N!*e zM6DQk_5(xJywaq}t(xW$dS_YnP+fSS5>l>3w|3O2L{JU#HM{{3GGx@h%#u`iI2RKPu7v&1w72}QzdM1g& zd#GBC=wwpK{JFl0B+Iz^QVi5GoM=r9T7IfB5ezGE6D62OZP3`Za5c;Vw)G(f;l1W-Vv8G|d?^7VY-9Ev;*@#Qe zXPN&#Zk$*F%idQbg!fWTI2Z7)96y;!by#{TKIQS>(A7t7% zk1=i4#k~5=i8koOuPsAdEuNoC=OG0m_^3DmU150s&d4d2>BW*q+&8dS#7_D4M5)Sy zTun_G@B!u*CJML6wOLFjUpvj|LY|3e(|!X!gltWt=?#!Bi4Cx2BQC1!Ln>E`?^@5h ztX>04cBN0zEVlBC=`Csck5FN|JDv7L_&!~f`iMT10m*QyGlM`ZglLtjh4av4Wx z>D{AXXYvc3^oFwK2gCK39$o`8{#$4+)t&0@T7)#Qnp!~>54FMJ$jtmidKX>Vw}rfs zxET7wC_%EWg$ci3uKf5554#3+HAiz2%CUs>FD5_>Gj`ALvU69n!e*3+2}4v0=bc= zBS@ynik>#P2s^x?v(YPt9aXRW#=0*s?d+TH{9J~Bd%;Q(zi9eu zKWN-AsU*&>F4pA@m6qSk)9OO5cW|zs@XkGY1@L^&+bIzTzt9~tevEXX?!=Dth6!cN zbt+`;5Fov6_lT*%isI!~Fs>vH2v7BY!VqZKbju?2yUw>OO$o{%{JA(?6WW9Ow4-k!AUx|X73J5n${LF&<{8&le}zdC2QQ9$ z_M5|Pr-Lqyx=;_{A6?RRG5WAADz}>$lnq;&PHh4zh~^`U53Ma=2Yehv_1F8_82%gk zSDefY`j1DH&`z(YaU{Eq_6E{V^?gR>aKTlqE26jjaM;%-d72tjczxv%|HGUSqq_h8 z?2hKv!teeEmDeO_y$q#Q(BG>Zxo?O6G%#g2)ne^TX&YCZS;adlSF&X&Adl{0Ce$p_ zZ|E#X@UTC0z2U!xJi$##6SifVO&+3G?KM2=4!kHOtSD{AOLBt(i>7{uI~F2mm#sH+ zzAcfgnQ&{I<)rI{`+26o6iUzMJ(nL#O)z z9nktq!8Wf1Hj3vIFb(Bam~>-(y(6@X^~WZ&xA!j{!KyfvT=dS%oCoV_XiBZBwR6aR zKjh-CR^qb6R!hng*j`SIix0d6`Tx;ov+uE{6=ZTXu6RQqWKS0Abl~^F~jj>VAR{ zRz|v~JeUrEvRZx(Gjvi9$li5)&yMQ)hw5^+PF1}b_1UlCLRrtYMEK{{h`85)(#o0Y za`b?SLCScoMA+F2jN|<5SekMar7_B%sWh#CFY7*Z5kvBR5pffMy(x@W?S7ypL-j^) z7@2mad1<`5#VqP}lc=}dl)4A$&NI}$$q5;=gIst*9JImdwGr;hm|X0V5;cwZ@H^h0 zVM7@U8;`v@J+W9?ze3@q>^2`7wGSzugi`*1e){ISNSJbeYb|R=W3an$-vVy+NMDM% z%Fi;>?^_0YL5G05O?S2E8;axNO;jU$4I8e(@@c+|rQX8vY3v_L)A!-(pXqD@vfS-c zFl8lG8dK6d{NDejUYF+(A#}YE%}cD87`L|)-FU#}`m-`P4HgEs8?~e zr~C+(2-jF7KdKS%PR6V9tor+G4fN%u);HU=x5T)Zc2tRqKk!I+JZXjefX`|vYq0FW z7^bh#v|ajj--zvu;i7QHWD4Ua$0Bo=FTcRQ+)v&*w7jjD+7DPH8->C^dtDebQ{g4Z z2^E8{V9_s9f=@ERKg25SY4?mi;vg?Xxi3?3f9vOUbN#s=>e9}{sX9h8D>h2xe=1P# zhmXnWoutiLzoi3Uhq!y|ijZMkA++hzk}Z7Ma5(~FP^m*XyS$!YdKv*vWf|<=@DkZ5 z-*8MTI=+fVAEVDa53Od1%&OF$SPf{svw}{@Yu=UMLTYq@$bHyuC3hf7aL5vM0Ml#O z_vhl#2EgA|-2~ZzT;wq}Q*05%>kVJc&CgMU7O2`{%)VzADB#0wr4ph0nY1IY-1+pV zi!PJi;nFN~o)!gD6^dS$&Z{Rdx8RX~7j&$DwRHbP2*6|eqGt7jbeAl#J;%@IoQ_8|&x%zhCE9U^Dm38u(5DAPwp*TXFK4 zIT;o=V1*n;F=_GP3#|_eW1Z3aSqw|5eUO-m%EJ# z5b&tw;NA!_ZS=mhT=+OurQC|wa}G2wg#OCYUE3*HDzsqLyOcOnUr@eqD=T#UfOuHC zn7=rEJzNubi=3pcv&3V@DVFy^Y>(4A;3_NeFzvOOhXa!Q$WN-;sKbBIUCpoSJe_7{ z^0eRbtx(AS(4N4f(8hIay4Xm(0;n4p$xSt{k?-3#^uip;k#xgFrz6y z8S#m^^+I*(sOd8Sy7^O$b?%WLoV0YoFHv@_)KAr>Z^QMU0;*=A*=1;)fgrUk{6uwA zvHDO&ka&X5Ts(mjynnCkTo0jr0e4?~}_|RI0fj zf#>tNM1i6M#|;oVZssI{jO^kCyiJ&TIXE4=#YQIA4MRg^t4KP3xhd(ConEqYZ8>GS zQZV4ka<=fWB3_OsCj$8k4v||swQQoorEDn3OAWS=4O8K9)NPp!%^|U0+^@XHJ;3R3 zw3S5x-zX_<@aMcU)F|3LS|sNCyw#VTh{^U5P~?0b`nJ(ta8iBN4?Mdtc#M|_!NXI6 zVJl^NC=b~J`!ej@Py|aVPI9(=w^bnm<}uv_AcU{KftCJRp=x;KxSZeym&pTv&ZL0i1|qPO6u6X?B=Z4tAm0<*L~HVAja zAMO|F>mzmTi02WHjVSybd4JxOp?VRnmiTG@UhQQ|Y$&fgRsKYo>EyqFbiXpc^Ss;P z$U8<_uD>?m8p7W(KcaT>{p-xtl=y$|u*Yxqfi0<_mp5(}J}TQ)>vliLz0y>Q#oacD ziQRsXnTI8PUrm&H3vsPmXa;rZJ0beQmO>MXWLMAws>F{F*Ovt@{FB@J$hNuExxw8u zrIqCKHkKaq4HYM`q+*R#v4e9#Mn{0@;RZDNfJ@R|O099?UC!ySAe!v3BJFffh^b5D zZ2ca-|Gmp~_4}2`v*gC&eJN~wXlr0kWEt96Y>jsy!Sas;>`Mo3tEpa}HZ>@FNr~Gz z-w*6!WA=Z1eq%@&Ch-6&i?w{fgReuwv+Qj7{1NdxpCem`J1>?c$BjYnr5SyRQyMdg ze{cJFcsVucz1o-L@tYp^bjzb4pM`H-_nUpT?t zS=U|eaQ>EKZ%P~r1%LLKg3?y7Lpp(C=?`1Ur8=zaa0nAWA#u-s<5W`|$f!yKd{-t! zBN2UFzQ`rdvqXEN<##bFw0t!_cGsuGix3U0?}#+#ot@XY!*00tc%mtk;r(=jhx~R1 z)}7bNoqwNu_Fm3f-!1LUXf4DqZpU7n?$Z8O#jYk#kh<*fX4Y_=0fTZ_3-mq6JBu&| zRBhqTod8Pq`V2cF5g~k`hgb1Dohp#^BlBT!v?idtTVH6AAr+e@_PYS1fKzkuPkDhm zHrE_JPAWdi>ROlUbU6>Jw&AxGdd`W5Bh3xdRV;(-M;Z&<0_ThQh_qb3mIQREL@B|E zBiq6AjJL5SK6J>^x#?CUe3D%-X8MJyBwuB3syp%|Qfq0x@5RMO%;8~X$2245(p?0d z>DJ|*D;&9$5*w9+s*d^<&TZ@wpfj|&X5-)$l$?_M^0ITXVTxn;&Rn5DU(!sU7sZLp zL|z@oHjO84J$XJWa^|W73-%n7fFQCwTBQIgZM7c)AML<&7ZMc>cI&75bMb$8&LC_CEZ*j3qVX*(#= z-tsFZ=r#_Xk&G9;^zx;hun3Z8?)oMuNj1i`+Go2yI%@J0C0{D>UR!OIKY zk?_mP8e4nh)D=LP4r6T}VX@KNfFL+1?0Qg@+HpES7zTqzM z+&yIYq(+Px?@>;g67x+cEOm!-F-{2e7P9g!g~u4sp>SZ{`bH8;MrnU;=*RH7@b&cb zJS`i^JnOZM{*SPLNFPN4n*QpaRaRQdGGxn*&BxOj~ z29Zd~U0RkoN58ww5^c7ie2f8n4L%)Rk`(c0XK?R1s&bv1&(o0E9{~?Qg`NH3*fpNb zBEcDimwfO0WSYKA7qS=!Pcl~mU!f6Ris+~PfQaN6E#DmHhwJ&T?DXb0E8{_e4}e(( zLt@)$k_OEoxU2MrG)$P~Mt|{_k#RCI7TDQI{Il^@(iA<7xs;tK<`ss1a~)meO%0KR zjSfR15A!X>P`Td*xl_iJAeWrax~sj};W3YSa@zCk(_@vRBOyty1&OvqfD3N$D$hL8 z-6xM2@ZHzzYEeN)eGJYiJ@~3dV%_SiGWk?pnUeah-0N7{yPMjZY&#gX2B~jhO(ey> zjGq_MN^qpSn|bUkAG7XNo}k*Ss%gf_Q>R=Rk0#+sJM zO}b@;ecHJ~crFoj*T}TjU4i$b%8pyL>fzRLmU{KcID5&QV`NQiQhLcT;L0{P%fGsM z*;AZ<*iu7-;q$#94VT2DDO8hAjQW)kB*bt}VMEaa?2F8kMf2rL@gW_E$DC3V-;?l- z*fe0{jDSPA>pt@e;B3?GRc!={9I!E{L##_t*ce0Hr+GKAplkB#X~a~ygJ0mLC1cv z4r*T>oS#?a=9L~}-Ni1xuPR%m7ao^*Ak`a8KPGcap#3n^li3y#O2e>}j=v zmaxG_P0egHy-{7E7}WTB`b`G;4$+Yrfuu*1+s&u(uOu}Qy~c-Hz@=y+o8qB}w!fpQ z0F{0KwK%%=I1VpcfQ}=GwdsC3xnhzOMua7V@5)Kkewr!qpRYkjQVmaD;c#GoarnQz z9zb8a!$cN7?2eqle_kOIJN%!TIWRT3E^50Td*2xDwyft|uKG}@rpurOq~zi3uV|Q| zk*E!J4z2YfhZ~@$Bd4kB+@aEGY!_u-J`F* zz{sEFZ`Rkxg1!#Gja=G>Ln04{nA8-?K3koTy{NM3hPi_G8GgDvk^dBMOEw-gl-CNq zP!emTWW{2A4s&YStq+>ev>hwlRh2{ovfGMDjr z{I|&Vmn$V=vxE4Mtwy|gH#%I^@e^NRw)_M20sWF;Jz!Q(TY7cP<+Vntpq!VALSc_Q#-W2}Y_C+lZVp0rtO(7=E%HO2 z16Cs@nGTwg4bf=H&-}r9M%>U!GJoCz5Ppb?`>2#SdvId@dTPY3=;8^tq#eC7`P1Ui zoL!Kn<+t5`VX$|jqxdO2?M^u869ZF_{UZrBe~NzK3JW55I??L>OF%AJ4AQa5Jj}xL zs`BQ3?rV@+%^dpk($?NqG@sAzADFqmsV5O~POin`4ortM%3lagC+H+Lo_1)Q@0_|O z4W8Ek{aMuoHLe1grZmD!@D+cPqeEz6FZoz%mgn~T&|=~nETT1l$5q&}mSJSK{{asI zI;lCA4^QrjGOEzMovWpOulem@!#Z)yHq_xg9txIcbAnn7j!U{S&L%j%Whb;jhI~R% zbKl4eMLxM=myZfZl{ztv+L$?gx(Qiuu=B8nVWPjcI{k!6Ww<)?F|xUerXz_CkSBp3 z!etzy9By5P3Gd1H*?qg2=lbfcC)ZB5hmjiN#!5}}LPhW=e}?8>9sOWt2>1ex0t;XJ zx=$nY=u{FfJ*~N)9;quDevq}JaM~2dvL69{raNma1=VgfWe+xdGLRCiNe*(W_?fV- ziy|McMxVudo(Fm_0V5BKoPl!QdS%RZ+caoARH#;zms&ubl5Ni2ao6U38C_Sk3(wfX zB`jr&ma-f&BbqyRN7HxHK9hGS@#ZL*GTZO$S2?eC7?H<<(8Lzl9qOFw7xjDD85gJ$ zcXMu)fI6)h=-9c%H8u$Mbs9e1vS02zO;^xF>?WVsc}~N^7L2}T{(Z~^nq;MC-Q|}T z!>l8S#XZgpyIiKdt+yhW(Hn6@JZJ9~B7e@PGb0@_?mU_R&G|H9X+kKup>(s!)RY#K zPeGP+?lOauOS{FNEI>fqq0(a&s=XRa@vnvSOC&X-_vTnMq zywNw-%%y=RV|z(?RAty+i2HmhUa=0dG&ZE2z`|c@CO?{n9=0N9_pvRCVLC@yK0dbx zDnlYaT997}Y2k(`f_Af<^q9|Zze{_h93}K9cJ0h)qy!CfpAd#QKXpf0|4q@G zXxz-CvOYMG3s(`1F@Z~8I-euug;$vbki~ital5&}Ya2r@UJEIbbG47hjb%#Ozv|-V z-5ALwZf}-N@Ai|!nrk<^aebG#fLCfkvkxj}&(oiIGtwG@*fy`S0)gskVqc-j*EhB1 zPY^~1v`Bj&_U&cQL56Na4HGq;sHVLsc>K<48nH0q(e1hn`^o27_+U4MMAHj8>L~lp zh%VD1SGdS>OEY_dok0dQ>PClMFC(p2^@mNf?yIW+d2r^XOzvNoV)z}}iw6Kr9NNDo z`}&ZUFX06x)O{l~anyS8*~Y&|80DbzFdcJB-WX!OAMS^Oe|L+cA9^`$?tTtq2BOp?2;~v6Xvlovo|QbG{Kx> zC-p`gqZ*#51_*4)b@bn9iV#_Uqw7pK)v@+i=r~5YX+==dT>Td3^@3Q(9)h__@bi$_ z_S{pxRqOM~o=)2%p)QrO!#cv` znd_XoKO4eJR%y^xsW>%HihmQE?9$!jFopgd8xQhZU7P`aUqlHJJ#OGkk-3Rs&G%VB z$lLt*kX6CaWXP{m$8A@;!K$Qd)fe{tcH{opYXlg`iQV;MzwB@}Fp2Az`$W#Y=BtY7 z)=lNSB?FeuMzLRuKU@BvGCc??&8=+#CAy z2PPaebU#(Jxplkx-S%%EcmnmjfV<)i`z+Giw^ex>tvN-~uEQd1dhTnNr`kVMSj@)L zgqGfPvEU@?xp?Zr(TKEy%W(mZ;7@(etc-m=8PWY1@vo^0B2FrLp%XWg1<`fk9;vP< z+(v%YaD~tJwtU?k$|m0djt&W!3;nVhF{xaqm?d z!`*S;)K^}18D8WGIFPdS8!&eaH8zUIuH>rgw|B~0`n~~Ij}3H|%;2G4D?7oKLmI*r z{^<7Ird!0f?`SIZ4kcQ*kxApN;_O@c)X>`yRDd?QKg{eiA4CLA$35vS0KrdDPrW1r zC~JJ${k}3%t(nU6EVB_y1Q$UJ=f7@$_who%zKi|1wR?6&$J?A=7hU9T8340%=wfd} z@7)%gw8zJqU@iq6ye$T^UgP|Nx=KaVkLQ+sC%(F!Yx|etkc5A&O1=1!5F-5{;#lyt zC0Vd9fyMs_xqd!b^l}St-B2*>_{?3N!qGsrildV^Z9Et91|9rtQLQjNg%6~c0ttxB z1bW8Y>Fx@-n4llcM*@Eh?pd@aeGksD*VPBuhY)UaRpDny9wU{tKLD0{IT|2ohmt4X zVs);)ATA2%{5~*;JjOK+aWg{FZu&?j${$)E&Ew{JG0?SzvB0^hP9xsZ%-k%jt2AH^ zhV!fC-S+H^lk??w&CH?585Lo?=tqP0;fuV;@TMtpzsn{a|C|oqo<5V-NT{+vcWi(t z>n2heq;B81xwH*A;94LD=FB(O;(g^*PITLB8ExA3CRQ{=LPCRw(c{li{|rYFl{J@~ zKZj*60{yIU*^smsk~N2v0U3b{mnUC2#~A{5ga!gegLffKvqB!iR2X(BWh<&xoOJWTiMv9ZXa)Y7`J`GEal;V zCwKhBC_Fa!zg`W4=Z6`BD-7pWGI==RbI0}&0VTc+HCMun#S zA}F^gt;uDVh-&wFf3)%bLVCIWx`}rJKwtD%5nFqv5|`Qj=EtC9-^;<3%zwcXa=Iye zw$aMJMc(6`hI?{{dPx_#hc7wD*1#HbNp8oe#?EHERT~(>Z6zvUn?3J*S6`4hTO2{| zXvux@s}*hl=y{bauaFj>Aq+U%DF&F!IKndu6HBm!?~k}a7gxxYsP5v)S44B+B%vj| z=etCNop{9UFk#9M>d7BO;Vs51`GasP)i_et?MGPFW)mz?PG>Hq+#pMb?3;JNPnCzHGQ2KPx_07#jK zzcGKl*sLys>Dk5kgX*3M?y?gf;{hA$FKxPb)f37=tQWz6X@-(7P5~|F!AsajO`Yq6 zWLWB_bU>QlM$jdCgnU7QtYwZg^@_d-C4%RiMBd2FM;}Gp2KuWl(<&4&Y2%SjnG*t2 z8B0JB@0w?bN&)cjKO944CHnb-Q<)s^bb*K1{@S!cB>GBZE0TPUr9_f zLH9l74?bMtdCh#iJc!nh@~HyDv7xOmK!&Uj7?I3zxPlN%}F-& z9qW_v*(lv>Wk$Cew}#36!qgCoRVZ7GsYQXJnT(Sos}V_-Mh4qS-#l-|Mm6NeB`Sr`bhKZroWc& zT%L=y=pU6Ov%@J=i920QB?^l=P=6d@K#MX6ASojH&9nnFlvW^e(}#y*b~E&xTYmzgk!1$Op~8o}txbs{w5`I>{hQE*(B}cNHyQfQo|6Foc$`ZUK$UTX;z`r#Ze) z4R=##d3M6tmd^&xfs`T62U6=}dqbFwa_5SGAZszrbdrYveOAW`v~_stI{RQ>yeQok z?I!ocFNt?s6JAwamnnDDs2cgU;RLPMw=p{S(UM*8{M6mXAVq=!^*&mVC9`_7$>my4 zq$8-!j~WDV3*~4dKwy4Nu@o5t>f8^z`ZlcMa-Xv( z{X~wuX9ao}aFcBoM|rF9AjS4c*=lE*PGX_ttBSsw9ONBM+b^;0igqWB%I)C^dz;gc zdSwj@!9fc}NDZrklCrc{8B)sfh$4I_lP6m0b+3f_c}6_&9E$bj%yn;Lp7YY&7XKrb z$PA@85i{Cm(Kdv#2DkDU8`D>v!gQ#Av|a?FYAMCd)-D|MhBdXl6#jFU(|KG%I@#it z^4zf`Ourj!bC1bU9<#e#;Ij2#6lv%}#)mH_1AZ^@`!RM`GI4qt1nfEav_bO32gs!& z7Y7N7h{|1*@U+x*Te33b%Dr@Q^BF$FZC=NAJ!u^Sd5_a!?CVz%gk%npAKo>JTsnR- zZiIK)AE%p<%Slj}mLjT)ZF>!|Q3-8qR#IJd1XP!|NvzmvF|^LuG9 z$?#KzMr_!%G9Ry9naHEj%P&P4Sfx!3l9KNim{LYv_iiIhvCxiYos$xJ0l_oZqhBq^ z9k<^7+%_{ocRKZLyE^OqPH*2W+uWM0h=d$MZDlc55+BeU_TlHI2Trt%R5LZXEE4xE*KX_gO3d^DgPOeAN7-#^K{Im&LRptkvQ}jZ3oJ zMPOS{^Eb-lB+46Qn4=+XlJh(3?f1eUYpJQiKxW5Q(DF;0TuaJZF%4OF<9nw6_yu(; zX!Gz*$2vir8N08ztfD{)Rf%-yWV#^82+~cD$wbqZAW4 zeku_$|J_l-xGLe3kyD{~c+6;DDe#ZbH|`F?$Z~L3*2w{LNtPZ_s8$!G%1zY`{0NJ8 zaWXN~JLjvtr+Pe9vm2sVNyE!D&cULMJ3yJN(3(gy)VB!YhhyJGHQ0b{vLv@^Nv$Aj z*N^3629vh+?AY5_4ck=CxoeBCOE37po7$t;9ugnd!RrErM?mLZN5;tEE{tdUf5?+! zaGyx3%N+x$ZI{@1&Yh{)nDKs$&bA{)m_v$aq|4FRaneLbwB@u3BCT=|)SI%5ID1b< zd?VI|fAtdNuNPVLICjK0+q6=`dPK^SEl5{zBb>~-HP8s^EUvS!{|=&yZdTZSdgX=N zIZpMr6E-USmwjo6X}_i$w{6+2owIbiOr@Qrl}HW!bzs4R#*T;y72~S%+j$~egx?xU zfVN#))G9gfJok{aCXXVXaZXA~k}1P%N%a-y z0%b|&`bnm54EhcrXON!ESo!GM<6iqioN`4(UkDO>m@DouF3|8}`pS9UT;9#d!>V=( zm;DSavQFuUrJP6qCDdScWibE^o*a!&StPIV6?m>LSr%FP!TWm^@A2Oa@1r-2o2KY{ z?&qn)j=IdgF+?QBC~T|d8QD@qdxCPHAY)8!er!y_ZfoF}6-P`7D9v3tM*}g4K_eKo z9C;)oq6^4WMwBcupU?hO+_t8`l~Ilyxj_B^3%o?#e8C_7epDSzf?53()y2@8#XmZVxOx{jaCrqTeH%V)eE0!!C?Q9c8EE}QxKW!D62 z)xJJG%pkhrf>a^p?T63&G_cgrgXeJj-9qTZdyRov^UHqC9$C8&w!0IejvCCzKLk8k z0w5AFIisDSJheZdFvF92kBR!$7+>d-KFqm2Ah@K5OYo+c@pb({1qn@{6#R7R+Xq+I z^IWy<=F|R2d$^u`s2}5UOEZ=!qCC|0=X`?8qD;K+Czp3%p+}G2^^?PADvuiQ0!{Ez@bDo_h4@7B{v<;7NSbj2I_`D`@ zCj&WwNY0&qa?&U%jn8R5=H>|dH4w0?O?82H8BTwQYtI^L{`(o>L~MILXg{Js?|{JK znBUY^2)~s8ncFR{#F7I=22npndv;39O&bxjo=0&SX%OIVU^%b4a7iSM;L;IhWyIwD zt&5V-Lf=gScVt`pb)<3RUY{YI=k&oIOe(Cs57V}gpDg?%A0$yER|+*Gs_(8KZlR^{ z5A8KA8l{Ni-Kbm04>thBOC4wOe0{x?iP8siT%qOI>kg58EOE)Vg)UaOnM%D#diwpR zI@wL8eq}@yD@!Jr{|mMBka=|!4FbCD*`}VrLZanEPN!wIZHsJ$JJy%^7mp*7BC-;e zm?bEyz5jV{y&8R=7oyI~GR-g|2lZiRXE=z+UD87})j=5m54q_vDM6k#=}+qGtco8w zQ%VU84H-i5mSvrv2VX3KeQ+GU?K}|1D17?}IGMlR^btC#7@ppp*h=5IJB02G&EYDL zPVPn7g^7|-G0s_75>0 zCXnt_mwXrydWw07g+BZJr+PUoU(i2?qYgQ;)SLw&>Q^b#)rzY3(FgYriTAcko-Q7h z^o-N5*5Zw(QHw0T=jDPIk!F^~wi`;4URAg@PUq}4A=W~R|3cWlj9vC3LiSw zu*oi%PogVRr2ZN?CUzc>1@mOJBb+^Y7+=S|y-T(w;Kv~^?>?NvWn%2Ge$U>4tAy84Qbte=|3>|)v+X>=cs=ukF1Z123 zJ5%d~)uFJL_`7JE8@P4Ak~a1oqQ08{iPB+u6onqky&e`MQQaQ{qa@;V$ksM z#Z>us9qC_z`dw^^c){N#PJeU#HTw^^B@0wEX{p`rIFxwx`EoSd^b#HTqXNA43v}q7%WJ}_2)-epti(^ zE!npxx95*C2lVB-1q514mi+{}p4V36`A|oIdkXdeyWuD|6VnF#;HADiofiS%u=~PJ+EaW>zPc}8MLJbbItfR4RQyZ zfTz};?1&SohK)QoiKtb`UV-5`2zyKqWL!IeBQJ)T7tRxGb`ZsYfx}%c&tyl8HFHKX z-~0>Fn{T(02Q&*)+xSD*`~H>6pYhorxOoGK+j_?FoomrAse->I9g%4g;kNj1ktP%4 zW||KMS=DB`=EUiVo`&HQJBq0pGL~gy7bu=_fiKvBc0j2-Tz_w>eafnQMn6P$!O&90 zVi{@xcF~_r3;&GrJ7)xs3o5l#$%aL;ri+IWy7C3`$m3yB6#{GhBp)ZEjiSz?aGj(4 zZg!x`9P!>BHN96t=@uV;1`R*nO?vd#p2=-5GKg>F3-9sV%jIayN)WX-&B%gPn+)v@ zc@ZGr_?dqD<)-9@F3+CA@E8}@$;-Lk#tlb5suXMjq@FVQT@G9AH1;4Xx41-fQJ5YmP7cdZgl6^WCwXq zYEoofE>nR|9hj(|OpmaAGK8I{j_=9GAD2wN>R)r=63&;yZmi4y9@qZ5Yg885q1&Cl zE2K4#i5*k?ShOih^^EF3H!0S{7yJE({7@GA@S>O4BW7`n%!Esd)|2HKc0hL3VpzHb z;MJf|`TXx0EeR|Du@=yX`W?&Z57K*!)+shTnaq*P;v47MTd!-1gaR|kQcsPBpWGEp zQ06zpkvLML`1-r>Oe?g%AU1yr{n%=+v1u3Xd3|mBPW6nUt4uCT{ucR65rBJ|5!o+^3n-!#svAvwt~B@?|VU?~h7DPOt&#Dxwf+P4x1M zFQ|`m4KnzdIt~`a9&g;hOhU>7AoKhU?Lj*>x%|M|s!7 zv{w+<1fYatv)FGjeAi#abN*@@S-6{`>Xjl)l|X@|vZQ!+YQ%l^od+_B)$eeT^xpH+ z@sj~_k+`A0_su7th%n2xWP5PR24~^ld7{jVw;C(A9D62$f-MRt z3MGVQ+3)UP#>f7_lo_`~LjZ5GY)|KUE$UJ2dZjZ+)Q83KX*fY+*HU0HI8hV z92Swg3VtGZOq^~I66emCBpS+={!ZPAx=MU<3iAkjY&oI6*Y9H~TuO~qAE!&sEGHs1 zgpCOjmFwr}vt?;NSQQs|6Q9LY?(m+8&=Vsss(9LUlQG{?9JtgwNLELHi#H5m_=zl|I^NlZS>@26z^mhZ}jU6i=P zqMErJh&DJ*>os(BY07f^UbuVoQ;x-J%QY1? zON79>=JReUDb4vGHKvWe4*QiJ=F%{40Yk7H*0QA+1NOmxT#HEXKTWQ+<9sMi1Mpl& zF=Q_>{f|4j%sRA64K5aTVsMr4JHy{Wq|dRoRHJz>-CwPF({nmaY4d{S?K$}lG~>gU z7dW4=`J9f^jM=n&L;@-xHMT5d|3=rAfhy+^YiPr4IG{x40Qx%n=4x+%r!CGXnYHoT zbm0$HG~^0<^M!hK(+TEWtl*=)WIux*N#H7MDLNO|C`ak9_g!^sHQt3z{Cv1NldCt@ zN%awQetG6)G#-0Ruz0cYVhU5P_9;3brx;MbDHtO=x;el*I&L7CqqXOANhXMXn|w4; z@g@54+^#c4xyx9a*JNr0cXZ@%ZoGoOva&!~_-!wi+FUhin*X!fEdm7P1o>%;f+$eZ z>H0l!a_RUaHND>6dg)59-`X}oD`)N7{P(Y{h^7D;ZdTomHL?%r*%CuwT8Vd?A$dPR zTQtnDs4l^yGQ>On7moYYk$hN$H)ln)Pl#O!m(B7bzTq2TGq;x2`l2Odv7yYDgAIHn zHr!FI6^*cUX?zaHe()F7amO5iB|Eu~h6^&H?iA0bJ;10ubcr)9F(Ln~ zPhVQmxxWE_AN4%j{=oF#M`aDME)OUXU*E1YJ<_@-oA&d^Wpr>hY@IaOKal31-{sfo z=M)tuq#^S}{~lBmy=1HWJbq6m5jfh%oP7EKjV@uT5AN=r=ru>IIQFLN%cyU^J+YEk z60s|dEv8ChC%BtG)A<#Lsb3%FgItmzo&HifcDgwj&-u?zU3SV>&<~ObA69jAzd783 z4_%|l-(T65LD@sQMAEhzRboMBuVjE-oYSKg-MfzS+c7zH?5q!s3BsxAW2aWwz27X;Ip*E(qPv=nz@EBq6rOQ5U}L zzKf*BZjptYLx`JrT=#3(@_(_>nMw#r>bJW5T*3@ZMMP81M}a-D+Kr2$)~gaarPd|= zW$fJmx=<+{o)JmMX%Hr!;3>NjKlFV5!{9)LRVEtO9U)Sc!6;N=4Y|kZz;l>R(pN;e z&hv0lj<|AS`a}{$DkdXp$#%e$aB1@G>U)mxh)M<-dX%EL%Tlz==I+x3z6+&s#!lzL zq!+PVKW%c`%N1~gEESUx$G(lZ!3n$EX851lmJD0z>C4u`h73%S+Lft{?%#aCA z@7Nw!RURtlIeMxcBfYoEd3tM#Ilw5DxnCa~8(cCvQlWTu%Aq~s%qY$_v0EGeIti;< zMgD8w=Sdi$Mcn~~Bo%ZRIF&D|)7zvNFBzjhn(l~wd%>D{bKNf@8aW?OYX1Xawf*K= zO}F{%MxaE=Qn~IY*0pMR?L9i`j0q zh{#~j3OzpRtySkR*4EgOJUGaMSt(E@I!vO|j`L;FQs{d(s}3Drm;Uo#QT8LE(26!F zelSQng>(7qZ`dJa7;$}WEb*XJiPee4PGkCixSTNE#UArVT6-ebN(fRqj6rnH^Q(uy z=NZusQCdztLLB2VYI}4@s!utMx!@Jm44r>+lgYYYnLhQmFu9pRToh6S)1Mp7{$M)( zdIT-AO`ZFQXI^Y<(IYP)Bk*}x(1@YbHb=u4jmGz!T>U4|FwYQJ7c!dz<6cWlN&e;& zwuEbaMb66+IS=0T{Gy@h`~zXhwd)5ZeO^T(e{7tb+Fr-Jor%g8W-%0B4;`4If33bb zpKv(ft&pWLDxnbJwYaFP`lK-wS|qhPlHR4BgVN(#*43k28@V|pS@<1G=iIf$g6dVV zjOh_BcS%rt7G*1h_RA#|_;LP6(z*CE`TzgFQt6#jrJ|fFp`&9t&nlr(sT6XWs3bAx z^R`GNhZW@zHiskV>#o zU$RTV568TW7IfqY#ceG?y@2&!IqL}Teq($yo=q6m38T%xm{!pA;b}(98Wycg4U`<9 z4o?EGre$_^Y&JTRFG9;1Hc`n$XnDHI_?tqIEp49Vfbd#Fg-dieu; zffNm|_PBm2WqQ05Kuv856xFL(x=u%pA7iui+9QAj$-ZR$gJIT9@-(NBWVs9RD&~`) z!dgtaFsje{Om}1F>Z{Z#1^F^5B`t_&m@ZQmh*)3qiuHgulolbm`uaDV^*ijZyCOF> zay<7$RrIk0f-pG8J6eDB6B_hTVXO1wqV4T?;q>}T;e}}het4h+>D!S5k3^fdyKFLk z?%~HUe8z2TbXqK&FR1Yszt~kHwM7T{-o#cts*wE%5F$Iz`KQ|QAJ@sKVa-EwYw{mP z>$)-ir!>5U*CW`&_g@VrwaQ7~j%yZP@fbR`+G<<=5_1i+o4*-96oC!3;Tl9~Z@Iqk z4~1nXzJD@2ZF%TMSRZNvCx-D`Eq*HmpQ24|6&$mb$mn3Q^eNDG+Of&qbV* zAR0eq?(bs+@8lW?5DXbk@kpS+zl;NO0K^cAoH??8HWjH%BU-Z|G>!U!v7^JwUWs(1 zu~zQKlJ8(`*6nQr>tUagA7pNa_3qNdKAW9~8|}aV4u^bqi6)(P#w|)SCG%w)BaGHD zkM|&&H21pd$%_;y&ppu#;5LEtze9{?%T)#6xK(5QZw|h&RT)=;9`tf=jUHJ_fUa{} zm_re84V8a`TiM`o{1w=1gNJepvSS}P>8zvZ&p_K-i^H(DP;F`rVm_%J-@U*p-GJKF zi1$$nD;_s<4~{u5zvdot+V(5!2RalocI$s^oKr$Y*##aN!D8KOk<(J?jf(L4;s3W+ zPwr>qOL3a?)#il3+-z8(%aTzmFJ`DD4<3XJZ24!>kjf>*|vtgF1U#XtBVqIzw&Jz!EP-Cp(X@0ITjb{RgNh+>+p`m69d_th%W{LNV za2o14(V+dCTa=u9p3r7NU>*-gvPaEi_~P)HL9EK;5uvq0J%60^eqH2q-n4h76C!um zQ@lF(M>yjj&Q*Z>Qek+erv$=dOz=zD~7G ze11O`L7m5e8_5rSwCb@n{)hyI_kaX!{|gEl&cN%2tFcwacJQN1kNOj$0xS7V!snK* zKu@zDGY198G;ACwC*rDub<=aT(3Qc%;%`)i`gLbXD#Q`XxNPK1WdEVG*r8@>`2^>* zno2J>xgx69qMYEyN~sU)2BZ%=lUtv|iWt5|)?Wr`hDOp$v@htjP&`qf{glD}!_6j) zmsvk52Nla&+fjclmpV^{e$mh=BPqzr>@+M8J1-ufERw9qvP(D2TBj;7p)$)YrXwXa zRUXi`$iBq-s3CNT{3Cq0*2=~tfQyn@1s4)r_O38YAx>&kBc9`8Mp}QV+T-ldU+d}w zuFggd`gMh4h#}P|CA4|$!-gr(4siomUt7>xt=0uZToq|-!(8M;#@3<^2sdsHLMR5) zIvXmS>}Q%(*vU<$Z<<)MqXOT6ZE4=A?To#hUa$$M>SpTr{jud{1^%7cu#Mvlm^g5f zaJNW(L2E9*E}h6>DQr^TWqQvn^CnanUfhM6yjZOI+Glx7Rr zNq51U6i~s2J9%l(ssBo9J7aI-u*;-PMpz?rGQ6LvEo2EV{KqVJh#qXcPQ8?7_ASY_ zbgk%1fy=EG*F9W)r4Sm^L3`#GxMv$AcS1IVxi)oNOJ(RlrOj)YN;5?|w$d_8U!_^FcH@bQ3YXdN?^HCr=HiYMA#WpMtR*!LcZuE zXZrZJSsP{OuAtEaQo=3HSe+xTL+rv)5`l4#Nqm9fczl$TGN$Jbty}Dq8fh=VSf4o6 zL4?@t>((SZA{7Q!v%KrlW<}V!2^k<$cc{C$}F~jXlelo(&Gcg zT1j@Y((oqDXB4%)`>*8oQ?rz+RG#8T~mKgAOxsjH*< zW*(Mmz6*op9K^Y8NQg?QH^v%xyF*4NuQWjRa;dboR7Jv|c-O zu4{NXbw(YhWC3?KoS|q8){cDq(5m{E_Sah%zkKUbUBdr3OCky3_glIm-*M2rT^M$y zZNn$gVkjaZCS)Rb*2wp~q%7RS!aU@}qIgVqtW}Ux0Gh$<6i1G*vgNwHw}C{`1jhIL zB@jb@47c>$31o(8V*_}`F$72dE3i;WSDg2@0kies6dSxpUuVh=fyJp^I4eS1WGOnC zNNrA`U5`4{Y2%i-74-TG5t)^Rc8J^9S_y9dq3a)5FhQ7Ge>h)MsR%F#CEp2j+KuLX z`*LLAo0`HSmB*#Xr);0!;ElZMVm=>TwA(xzar;l%yPDFz1(C@v{z_L_ zHZoDB&AjK~W!|*Z_~*!|j$d(pmW$>ok#_RCk|Na~u|QRWyCV|B;CPw69on3MubyjmBL+W%lBc zDTli8c;!*$ZqWYb78`&ZH_eZ6X-_)Dmv_2ii97?U3~ zzgfF`_&Bs*=k=C8I4yeV`UXz)bhgSsO;W61b9S@j^sYg>?|5ssJpVvK!-tvm`{lquJT$rY(o`z}r)Xoo_;( zZs(yjQn1dJ&0pF%-(@R;&GM+>Eb`d0u=G&ggo$-zdT5Z{Db4)xOAs|?d@O$hSQH#7 zd{TiKln$z;T6cVJzQG&(z>!l0W|6_KUDqjBc&zQT2YBxzF!8GhnZSL^{W+g&$Qw`_ z8r!Q(hg-i*Soh{KLTtv$d|e?ID7C6{|GgOiHz~`9I6c>-s$Mpjyh=kIxsoE z9`wD?V$o>*?5(7S)18$uN5->wKN!aT-oc>U7GaGfyI-;%gt&%^V{;Q2Plkd=vVv8{ z)D3q#lf7KOSEpn&=Tc4{ig~npZc=#rDXIubS#_M05EZD*UarJyI>ANq#}hexOFN?U z%x!=)r{mD@aae`RPTuOby*$JNxghK7WQs6USwSl_F>eDur!5MIV_g8=fN}A@@Z7@a*~BtQcw$qVR(q>v^c#JA z*<=L&BDe1KW|OiV9?Lj+*X3cTQSYT(Rz;rK4I4Ga5vxe|alIVZ5>Yv+^c?|SXwuyjQs2vLu#ikgy0JP zv`rxU*cJOs`;>lE=?3_<2OyW{`Xm0&x)3`Pjy*2Sj7gWUEhRgsDc7A8J7>)dLvpz^ zX5(DCk(MTRAVET%`0{vnO)HePh7#SLmF(%b-wWVf9vRnxm}n>eL^=n|9BzC^3%s}wG#mXcu$(}P@NWCa`Lgx(BX{Z=u;`SS;LDU#>N9?wz~uYf z78l?Yu?h)l`38Gwr*9kaT5DTa4lki`h72yDm%Y|2HhLc+DU{6pBkmix9Fqg6e5OW| zj2=Hxks<$)+Yx0x5Hb61k1jHje{>LIYz^}yyqFCUq35B8YH~0-S)uH>6wn8r%kf1T z!>zJXP5ca<*d~={gT6sOdSeD-8c}GSSEU0h6i@wEj{pE=EK6lRK}-Ta9T7v4WhyYcKhaE$e-!ap%}lld zVJnCMDd>CxJ@CzY`I)1BROoqWP@P@wEnzYQo#1wnTN#|k*gOC+efkwbDeC!15O033 z5H`4L6c=K*Rs|k?8InKaZMPhdM;Z8i;32e*P^ucemvQN!y$(S-aAIJlLeBYP;7IXT zoO_q?^k`qAo*Zqd`rIPYoU65Be*~)?c^YGr*R<8KOU4#cr+RoriN|G)=qik2l@8Qp zqs$HS4vN12i~>>kNf#{)K;ZUAf>zIsZTIVqsY%VzS~PJ7%7?wI$gMkK3LY%@v$NIk zb94pPo8>TsYmVdlN%U)fDIO_pyl!Q?vc(mwsRU&h`%F~nXuidac}()PlNo3M%qoNZ zZh%66Gh(#&gZybb=NRnZkAKyV|BBi@7vZ z6~FnX+LXUJp9Sc^ro)r3hcr=q^w)1r>ILGoiQjiFL;<|l=V%qL}+Gu$EE5X@EzmJRYWf;_K!=1 zityl#Yifd&EclSl(>-Kx$N^oUD!n>S&FmzVUc41*t~wQJ%2v?KH2*DL@uX55dM5$T zS$B87jN3}BRKnvJgQRJ! zZHK)@F(|-dIn|1LUeRGea1epCsj%V>EDF;jkfa=cm2{TWDY@HEA?dYnjjeL%d!Vd9 zqR#m{)qhjDl8gq}3*^_LTamy-xS>YSQ=YS2t6e?F5G+}@RX4Eoj%{uuxCA;aNT)u^6alC`JnH|m*Z{$@`D@7$qWH< zrTx#rZ=NAHv&i@4KU7i5R{$|ZHkhj=rKWo^_Ye1&roKb$F8!L_13^7&Y{X8D)Fgn_ zfh`b#nawC}FKj8*rQDFfd&X=Zwy7p$QWXqC@CARGN698Bxq?hu9j?M*5GO~&gzXIc zep_nEdo>}&-mjJS#_gfnkmt;A%YxGXq&s7*4Q(-1$_p9y;rIMdgiUF+WUKd0&Rzw;isdG*OTyqC*wM2 zCfh3A@0t(xSGa6NUfXTIOT2p8{J&Z1EaAYKWJS=UobN?pCmF(i=(7$8;o?k{x~#Q& zQ|BROXLV01j)inT}c$lL8u$TBf8zgXEoI%Hm&=?xK{LR_wx)c6w4e^nU zc5%QftHUzd38t`AhUtq?z36;7*0MMmrMy{}8vrft*WO)vyvk-4vtbjEHWdfe9MD;= zmhZF?#gZ2UtnDXR8duV$kfyn;w*K(S;IjtVxK31r0U1_|Vde?QP{jcQ^Jj_g% zZ6dFTUb?FA%HHlTi#)nj>sW_Q&Kb39W$lu2OUX}yuI_R*3UF^}UyTkBl{;{n@xx`> zU(^tb^AJoiFkJG-(4m$=+tk3Bb4;Vu7qjz^@&jV{?cNRbzqJum-`l{H_74gwylC<; z+$^7ny3@;VPGFSi5feq(a?=(Pie3m_2ruagz488H30%K&$%+@NV1S9ZxcG5-H}D`x zo7gCI1PjrxiuO!;Ye;spAkW0_NHZdSwAKR&zQ3{mDM{z-=9QZFqt=S|*O8Pu$-rK7 zCeg9snM?vKIaGl$7`_;pxM2ZZ>_39Zqr8d?MSH@`VB+^wg_gzu^dCt6v2{v?cpuhh zH#7ewneQ-XW?Zum_yi)2Q3lmnwd5$nQ{$BDUO>gGK`UZ&@tq`whrlf*P%^!=MT-Xg zM5wP)xl7m3Pct|cIhF(V*g7QO3?0XLh6yzx1IqbA)d$&42 z#t1~wFurqW@+`ZZ70Z~wK@Im zMXKX4i0I^MF>*)#nz29f4aAhXwX94Q0u4 zAlbZ!HM=(F=A}{L_q-Lr->2~Hzf#g*MG)?PZmz2VceNC#D2_6ly?`u$E#6mv*f9gK zTR|16G#eKLoX={5U@XclJNmnm(IPf1kWjNY-F?0Jm zGR{8*B5B2!=}p01p!*ugL1YYNZ--r)I#3Da*j^G-<%&RFk*1q;>O)0(^y5CvaKtT( z$3$iN1PR$hZ%phK@6M?@wfC1x5YU&g_lGce3|l5F4K+`U2|T)TdZM*k&B7LH+97`Q zUI+DxJ~3Q@VH!}w8;YkpjpBrLe~^<#KgBxkm^fNi_t)aba>vys_XyHiO574qH&A%Z zJU?dTbcz@#+gXe~E&^VlOZ6OjC*I+$PAINDz`rJXJzIB0B6jFPSL9g!IH*Enw)cb& zrqN{GKhIb>rc*hUCN-x?0EhU8T!r zY`{0STKMAYDl+OlN-KCBpc^G@_&~q~SxjFt`65r;W%wQ=N@qM(r}#l$3-+OFay zIRaG^OY$6OW}|C~yzJIc?tz7jJ-BeMp7U0p6&jT5Vt8Kgc z_~JXRal)P3H%>r$pSr#n7Btx*jv} zS?tBZ;1}vwADgp7EVNSD)bp$*PSZ$<(h0^J`o!5hyXykcs}`IK(o^U(`f~G0f#qgo zpOM)|ir`QsW6N-qAIDPQ?FspdRt@Od%~cbNtiV_4rMEiY2nI|8Ue#N8xk{QaMj|IJZT@*O z&91)<_RhQOR$1lUKyB`bjQs2J7TvjNk6{4Fv`Z`Se|kD=g`X{pzh+IeK{lm5Wm(!- zdILcp(|5e@RbD?K_`2QmSGQfx>#C^(#a(<43sdh$qFsrP@LX>?M{OMRGiqMo;kRm| zF_E41XMNh{sOafx9lw1bwB_)C`y$BpojIwvTKmMSYWFLISMHMDSKvsbEN?X$DHwmT zq9FSxsv7GFr5AU3k9ny4yI7#K+4@;t0sZ-3GVZz!f{ecZDr%wX8Zat@+C#SB0hR}i z*QcyTbcB5rTSZ{LWmMgEo;>;ax=ZRCR*Rie?mkDKI!U+cEZC>50S8{7Dx!vu7zi)% zrr!%X>^~2~-l;m0Ie_b;HOGylF|E(owbO~p)@H*e5k~pMPc~>T3$9UF)>+#y03I6WNl=pi=&R=2aVQ%qp6k3m}G!H$}G_VEu5v%D}6*&T( z>F1K&tmbtzz$Yk^rg7=vh1~TaEZ2nsePE~eN#Nw&^Jt4ijhQp$y>m(o(fP}D|Hyz` zMB12&nQ|j$mcV__FE{la`5|dm-A}@_ zU_0?~0=1(%ntxuD5qx-{6cicgHvVvj&hWa66z=un<+QE$Al@X(XtiZ5q>EeKdR$># z{+XjY7P73d3UW9*`OPK{oNOp)|K#xFd?-&nB26rT$_ido8@mjkhA>z1jPL+!|7k!+ zJ(yP_`bEku78$gl)N_9GqM6UPK3d;0V2WhNY*s(SRq|dH;23ulJUI5gWb(Y|EH?_pE}0p5BwD#LFWY0ET$Y%khvA-Bx4AxTw_{rCZ3Ae= zx_N$EW$)StBsswC!JO%N510w2bEz{N-r!nyI%eR6g%&dMs)kPe5+pR`4%{q0(o=bn z@1pd8rjM>_4b+}D#(nw@RU3jED_5PHjEu(KVcRd;L?B4jE|-PZ2Z(ziKkZI}_G=gx zxYe6crr`_WUGovNiWy-DJW#XR>uZkz&=Gj^1{+>9sR_fuCH=v8F z{2QG&2Z;D|ERv{96r5jV%Q2c#7ig&?!J(!2-o?=4D@_jXsOzmP-Sz#UDmOh~<}6zY zW2%|GU40U>;3B(JZyG!B7-m5r>P;XcgwFdOBiGbn4(GyD7SFzwvG24+dmqN0 zHRMvHHTBoOnJc`wJOTQ}Ia#Hhl5m)q8C0)o>jZAY3X9@nt{-5(*JXXYTe;N;Xs$!h zb9u?PUwZy+0=c#t*kb3ePia0;A4fc(^6j53klnrq<9(C!d;db)R!ai6Jnus{d(Q^f z));G@f!)(B5*(v{u=qoRr{i55Pjc#Q@j!ruvAZueaDiR3mG_PN5FY#t3wN(7;@I!u z8H3(xehqumvhxAV{-j9p9ypG1_A1wsel|H~wyP0{;|)tsX?O5T?oi2;kF&%9b9e&@ z*Cuzt+=se^wi4B%>f;1eZ2(qE`Kh415qUbjg7+)(EU|1Mr>>iD9dBFayJd8|+@ODs zn||HVGcR%8@xZ5|0jwg%YyZOE0|S&nl@-xJxvUHwoiCVVjgS@X2f$#Rg{Bwu_DE7z z&DXkyc%jSbDmQBjh|JnEvuASR4?%;+cv9|tQHbOmosEgA0;*#Db_^l5Q8rd`PVCXV z6WBj~E>B@i0&u%K?!Ybvs1RnO$vi)IcM!>;41$S(rAW{4zm}xuBb{ExXY-?2$i_LF!v05=x&z z&edlA4QQ2}j}|~8iaY2%$Y^)?L+CX9C^Gjeq@Gp2YIbMukBze_-jDoJf;l&quyi#} zPLx_7yh|XSXFngr?5dmPEwL3HDbXVzYsuC4uAJ=BSoICn>dqnf#nWLzzZ1w4m2JTN zI7#r#@2r>?SWG3(5xu^fC6g-VaoR$CC* z8B@{6RILHFk^|sGX2m<~ksj{Ros%YcINTe&?UK&I4x0MWtIaO|UbJG>Mo#g=gOr;? zUICObk6W=>V^@LeLuFxyJ}1vyjOrB7HzPk;pwVHV&3tsZ@W$$o%VqYL&8*@(4SaB> zuLRu_Os%O)JoPvtjfj{2zgGc!jKUPB#SaF<Sr0IY!ErPWF zP^rBt_$Kg`GTqVkbd|ODSKhecFE*!(dg!j~?fmi;aK{^%Eajf$wbCp1FpIlKwKD;& z73`jcsgc8nVcW)3=(frx+@R=p<#ziUIuDDtuYij0*<9r)&?NRj5KF0Tvbqmz)ok;Z z5A;y>uRQSlNgcAtxf0pcVAsBl9O|?>@GE%B`~N7=0&^>xD0@qMpdfE1E-2h^;q&be zuTBoko}Ld)fkEWbuz^FnH4kl3|{FWZ9l8TBy7 zn!O_nwLS)bUQes8?Bq^7?>3hO>glvzU3|h(5HgbIsLFo5gw7VER)DM^GS9M5Ty1EH z-WpXiO=IikVD<+K)o%H6<_=;dtP_c->CqJR{N0%Rkp!`aXlIg{hOp~1wBv-zmOL4_ zuT#r$e#r-he#!ee+=cl(tW!|EVz(ldfy`Sw6?I5Qr)4LUAirF7v;@=Q++jaj2zvH1 zLY?wFufu#dfguP!Qb#|{*v%|OFND#}aIl*upNK9BOONe=HSeJmA12VRmr->L$y8+- z$}wOUU9JFRxg~`$a)jh^RlO|{HH)C7#?$8?5sBfBXCTo#8K+}*qWc=-#o^k7rd7)#VVj_)g=i7N*DO6pxPv%;}7Lbb%XWYGV8wL{GN`Vg1vna z541CDEN0w`kA&}PjyciXJFX@^Beoq22iUgXmyr)aX~;FrxV1O?^P^{e|GTqlk@+0F zQG4>s!y0d4RrC0eCDI4hs!0J9^uMy6M1wac+CI3*lf=J2BWKpIS!uz~2zV%N`$#uRo1&jJ$y3jqaMav`z! z>0U5HRk$$l)V+*rtn*>FumLP3Jc7K6o?kNC$f_|Vnhfn@&WcXaCpos+-huLT)kK8p zUaq1+0Dj56tJHYOa8YIErNGF(vYob~P(a`WF>At9lgv~4I>#F{=%mlCdvAV9B%hyX zW1sySO%n8i>4%SA$krX7TJn*fM0lXd1g~kfA?BkGOvePjMMc_@G`5CB|6kh>cK(?; zDf;PhAr!!p@Yp^ zwM_T6>HX#vP6{T$+y;n!!HOC;+yiXTl8mI+CqY;3Wi+aGGRmLo`RnwcKE1DgPUx-c zGEYv&Y5f&=l`+GW+hUT^6#`A}(h)9#v`5{99%C?}cBOtn58U>&Uv;z#Gzy^YG0r%ql=BSB{8z}K?9HaYK&hKoAbE(2piSyzWeCY#$|6{ znGrsOl9b*|Q>KDG?2>&)4eqH(B{6bdc~M5%0BpTiXse#`stU`l&L)Q_!yU=&GAujo znyL&G(=HG?p~Jzd*oA1pAHk{_M+Lele$mC@m8WQl-wDrLE%SE13Y^$6cJU33mk|kc zSy9ua{&ih^^oDM6eruAM$IcMELDEby2_QP#P-jh5gMgSd$O9?mus^?xr2jUsbAJE@ z(_YC0n!kNw5e!Jo*-A1`+z?$WOZEsh7p9lm(KoLH@Y^#B*2MnDTj-EtR=U5wQ zhzehanRllU@CBpcz;3VYq0`EXln;X7bi3hXu;+|oH;lYi`d7}ipeQS`zjTf5oY8pa zHV}^;**}HhMFC{*+RS-p!~T8C{qVi8B6zWoT_RC(`~60uJIdAfBbc$2SmF*VK>Jp% zx=1w0NfEC9>UNBZ3_A%*AF-be|M3v(yfS_bAAWhxQUeriey#|8K1pyhUQmFHxokvF zM%zAc)e8Nk0hZ^dCq}Dqv(iXPyVHSE8NmA2+#L7g?l+)wo?}_4{K$_Ey0Ct|Rl?3+ zSTFRa9gE;IbF}p~tdnaogEi94GAfi?cX>V5F%N=x&U z*AGHYfldaxll5TtQy|?+hv!ir8XuiVypG?}XME0|V2n)u)HVhNm;PTk%`nok@(l2G z<@MD-g~r)6xHIH%a>xb!%k9qT3b5(*YF_J^$~iXmR)e<%<>5k7-nFg%AI7)4qMW~! zj(4Ji2Eg)>U^@-Bo5(Lc5BsS$(~QG-*s+E7KJJ22c=zyHhNSw>1g}F#&D~L~$To|K|5w&D4pq#} zJCTP?rv}8W7U!{jjbZtc_df{old1M>0xvHy^|V$UIR@F!hxJG5W^<=)0+r+P$K=og= zFo+dIyxcliNnDf9_PajY1LJ@{{Qi|T<-qAXR-{VSS6uNh8CH&#MZO26In!`J<-*9P zkp&h9Qgo{+o~nH438G?wQ_)WVSR@GBpZA%U-xHJdw$O~Lw#dMu;ZCsd8aD==KXdX)s}R<9g= zNWTkzVPAD{U-S1RH@>gH#oz&fvJA5VO}AErvzvz2mF3tlVz8&m*8P2NcSj>1B0rvO zF&ysDfyi|lSY=2wI+slGZ`!Ut9c%hOF}h+WbC_^b_o`43!YjR4+FVX>J!JIHeJnSO zmQLwOJmh}@xg~NRMaWB1e0U);eo5cnoA;1?f}DXeR#jKU$xFu$0Zdx@3|?8MnQaKD z6JzVuUdkypz&5;tZLyZmQOzY|Y$>Q#ONZiQ9jsjwmb~e4==)HKmxIaBdt-}2ocTKL zj^KJ`fSR<7wu-p?{8h}xDWU1%A!u__m=2QD)PGt9l0pvPs5IAS-#J3LzCqUy_>mAe z8k+gmCr~$1=WZSUs447Daclh^EFmsrno(*?)(Z5qK)LQyz1?mfz5wY1IOudpg`F#8ezZn&}H`gcX4Blq`r&sZP z3&)jw+q~K~$vuQ~G_URSne83Nuf_BuiWCUP0(Z`X+v_!wT=sFVcfPD7`L@W4EuFdP5lx?utwd@Dz?Ng``_19Ciq_4S3FT~&M zXu1JC4&p!li_(mcF^&T9ls!O67 z?CFwcUtAX#yoQ0;tEpK3f*vjcU5M5c+ajc^6HD9X zaLYhq$_Poo_{B&kx>iwM_kMahw-ZDy((x2D-vWL)#WM>_fDcinR3oAr~W0c&7QSCky`_fEiR`6xkEwPKPw$Rymt>B8TOeCbVdB6@iz6 zQEOjr3Zgzif90HkMF(AZcngPF;i)%+H>qv+T{TvWOCO}*lR#+(UHU|k+ldhmXeC7c<-FQ!8Ol@;1Q?nrs zH>w{qNcCxlfQ$B>CR>B#p9hcU=LtUyX6cT7zoF$e1X800^{TT_0Vx%QAD@(%>Ca zb*c5io$Gg(MzuTTYq`WFm-b401CtoW{)cf%31c1@NYrKM-f-t+k4t>U?_f}zabKB# zhFH5Bf#ivDi>_Sch}2FEbdkDlZd6$)y!_cFA5)(P?s$Tk-Hr{mAi7;*EyhUW3fa6&xVi?@Oax^yWm`CwI_T-O{p>ukfIZ(4n0PBtNG{zNE+sMseTA zyEhw?R6YjgY^Qxg-LtYJ%WZIses7+K%z#3Z&qS%sz*<(PqA%E81rqPb1}D&?|H&et zM!K&>j)xb()ydJKu@~t!|JI9p{QkHe8eYaxM?uA)2aqw1H))b#ULw{)A4Z$S-g#@P z^E(j_b^OK*{ayubMpn?a*IrmHE_~Pt14Hqv)HDC&tOdxO&10?$t>N66EfS@?OBp>Y z+*JuI_j)hzPVXY%V)V~T7)?r!3~Q? z(ghDab&9qk9-eRTm*>NpIc^4WVPfG_J6BX>C)M`H;fyKnIe+)oCB5%mYjS(DiP}R9 z{bn!99f;97KFLKz?S5fmf1j(95mvuCMMQz((rU&VN-TurLV$cH>0~*PiiV}dL{RlV)&NtFf19R)9p!y=v z%ua`jBfZId3e!<|i*l&S3kd}?B)1Gs#HR35BARLDM{Wq zEGufnCM8XgD+HH$FTMEqwyDqFvP$e6Q+Nb}(Oe-~iygYFe%e~dLe%~V#BE?)@T%CcD<@ zh9E^IztlLh~+1C6ESNRu`w#Xu0 z66Z;Iw&-nvWn>2%4~5x!8!Ww;9juB~H;O}t?R1j~5$+$CWz%Gwq+VPx`&x^jUT<2C z7{C18Gy>+Uk5|7VLw;>~s7cW;mTXemGVpw~J=(ml5(7pka z3RMt}PKTf1_&Zplv5L^D6>&%OSVt&&KX|*^-_QZ+lqUPvgywAaaxx{xj{{SkMXhwO zqg2J}QR-++s8om91quF>)zw?ZXnEozqf?9Z!HAeGB3~J05Iz?@1u&M?DFpYE>hn_> z#d3ayuI-VG^(|KH_;7xrUZsO-73dF_A&*Y1+C}!0DY*D3|08N?nkCen1r&wqf%8Hs zy{}b)`bpedpof21+%p?CDWz5KIMD6ni`-X%igHaB!d<(6VBQda$q@b3`UBTD4FdpN zM5PmQOgYWPF9zdei2@av=^kDb@12EB!8XL0Hfr!$w9BeIPwOD`6>VAs;E8u7SO{c= z_ULw@bviUJHc;-P0Ju2-7${#B5^ero3)-iduHL<*ly)@d-s*wW`1jiC-Gw8^ZiZw$ zw)Hus9DjQ5+J$SfB^?mk^pomk@A3|$Kjvt@B9#gws~FL1#Xg!>&^2rz5;w_i#yMl7 z*5Q?K^HQiR#7bPjjfWP(%Jsx)J3&uX6(E(H3P*vl!x#K3qzi|0_=bawD;bKCgVilH zO#X|dHUKqRcQAn)QtI`jO7R~5t=UC!#epSHTu&he@27*|(C5FsYkhtI^K&oHAUX0- zJR1E+p!8q9@FkZ$JnYU~D}%`n-$d+}C&vSw-R4vCdYhlk!w+nj?Wey!_y@D|rf@H* zap~B)o#1{>cl29VKRPm7VEvF(Ysl5+rO9tL_9pAmAGYmwZf99TL&Ns-#;?r(q=PGz zGrwWh5k*Gmwr_U7--*v>)b0Akk?kE3>+y$_vgk0SIq+CE_3R?1eO4V*jFwgErFr0(EENy1v2YAq%$ z+iZ-5e{geBYH@ba4=5Fo0UMNDP^%L4FVfb|bB1OTBuTLlBntHf+_`zRD@Ib^bu<*( z5a)(P?ZCHcOX?=a1!c?&?SwVbiuVb%>md2O5{7!aQivOi)n%Z>0h_A22vh{dg5IPk z%+dt#KdBxL4CFHP8(*R-S316*rhaWP(trhiqqEnNeN*T*HQ4ZhXZmHpDUGI}X;;%N zf4_%zZ0%HbySc5FT6J~u$14iMT?!AjEfN)S`=qS$o*k$AyrcY`F5P2_`9yY#fp=Fa z7poXBl$(7N8$s7*=G7iz&y!|0?c=L{0J}_~50o3(DGImnOlP}Bfxxcz9ens}@V+%i zlXHvwS6$@eORIbETU|a+iE?=` zJBwg|z5N)SR~~sFyMpGEdSTe$(m{fc796=U3_qVrQAf>VoN9%5I%{KrnzV`;%`?%ejSyNDbCdwg6 zav8W3EW@K&25jeLA{E2)zk=>2^AwQP{-_R9gZ<{r&?SqYwgV)NQUM?H(;uK6+4uGs z2p^XhoS_@=AN_tbY2{Q z8BXAhwnyYla_yIKv=#C{d*~gr4&#UiAr~DiL(EHaI_x+=QytSIjiP3}7AL90N^lLJ zC5XrCSO^qm5^3qi_Socu{u>?}_W_+g0+4SokIPMEp`H=lW++$GsP3l)ewRu&suUuZ ztGgZ5^kbBv5}K-BJ3A`Z3#h<%9Ngs|-qnu0&N?MKG7E`$Cq?YB@6dkeczkv5c=0!dyrtL;d9lG!CY zdBv9&%jcL!g6E7>$q=vta*p{VPaH4Wuty*@e^q%P9K4{Yo*0Xr5SxBBYTSwrU7C+~ z2|p(EWGY%#4_|O`I4x~FqO)f|@PIeKfM)un!uxf_+3lp4=A?w{;SmcTLdH6+H1RuA z+z@}ang=CEMg!h-);VDfQl_s0B)w0tqsNmqt3o1vDBJ?v%}^VhLw6hNkAdWEo{ssb z*Ja0C)gWb6=wf7IZt07p`77pQ&9#EW+kMIR7TY~0u^SMnY)MwOmP%<{O zp+ZuXFZ>R2dO`|iHl@x{s~(}`5NabNv|7~2%c<6DtbhWpa_z#)c zaG3k)3Vk8kA#68apBMh|z4rv+KPZv0YtW0dWXhyQu#g6CpbdLpNY7y8c>oD$3C|@( zV%5rM8G74=)NzbS7*|1ODnD0A1wbyuOsA?v(0o=EActLSRR_SMMRGw48sksC=u{ls zT{Kv|hpGD#dipWx07+Ax46fEbDXr4nb{2fZq+`VXXCYjJM3DJo7tf1CZsiZIj=i_C z20mD7-xg$(lVpE^evq2er}LQJdXdc2K`7>w+MB-$(Wbs5GseiAI03_P#S~qrSeeAVoP5dNM%?=&G|tkqfY>SqLmv&m(VC3T0yOToRC7$Ahn zWz*{pTJ*J5fzM_t=w!S-o+0kxWM!j%o{lWJr80Y8;3is@vL95F{P_1V=0TW&fROeU zit*1tDH%ld2!cAc(;SnenxDD-3cWdoG~)dX``9Myesiq$+6h#8Oj-`<%_PULr zGE2U+<|uHbcmr2yg-7bo$E?WX*p2h&@-p5~fXIkOY5I0^JJ(qkW$;y1q}L4r3zBGU zFR5CQOn~VHYG?v4?ZEWyp{bW>f?GVkEid{VmC;uue10_07yr-R8Ol z-RuJzX~wzr|4KHd9uDRx&!6&@w-NnEi;T9^s{GO{7uXUyuC@TB{zI%d5j#_r9JMm| z=T21450`!m!{nNqUWYB&|E_Y)edYQ@HIB)3=HqK0|^1SJ$2wN|Ogd>K=@$U}}q>DSs% zTB|)eQymeojSwTu=}Jda53PocQUviJ$TqtN>z_ux%*;vO0%bEqkt zF#tM?>rEUlque9@?kfl7OggP3UrbMCUju*L6*K(F-ykVg8$TE+IF~AO-41$8dRKwB*{S zF8f$Air*~(p1G`AYtsb_|3Oc-%Jr)_==|*iT=O1WFzbDmddvJ~{(Iqvx<1pJWQCdP z8v6JAGJ*GdtuX%?e%<%(>dWD<#8r;(4uv!_Q zR#I`Fr|P+rb`CotC(*6J)9e3_rgM*H^8f$;yLy**DJqF_*t-wKO#nZFYV$CwK*!a? zXN^m8%uNLI}ky-9GkJ^e*Dr z7AkCo#`y_Ret1oslk+qAGfk&Hsd`a;O+CFp_^*`EDsc6*>bS8sfJ=c+KV@}NbNHz@0W_>;EQqYJk{}Z5P6u*RyHq-j;B+ZveK5cdDPRCfhg#QvJ_BFc!ct8FOT{r%#VeGR~34T#p!)Z?- z=x=p-djdkuMALc@YXYGcqSgE7__{c%yRD`?Sj7b0X?T3@*^W)J3XRNP-@txYECu>M z+a;1XP#vb?&AP*T8t}U$5|$Ih3f+u9w+PB?w376ol915>(^8f9(Lg)GxvUC%53m+& z6}7%pu;%&?qHV}g+Yo+W@6;I+P$v8b)kpHiPa({Y{@|G~qt;(GJjfi?yR$8dvxMQe zHFa@6xQrjQY{I#8>zf{^6JX_QcH2VkfWPLk2BN1Nw#K`q-985Qz{mVAaV+cpv{0 zH3#;_{H20u{CyS98hQ=b^22B7+=F7y)Y0p%-VWp+kM6CKC;8BA63Wdg=p5l)2fA8= z{~B~fKJ>x{^6ZAlfLCH!xL7B(8Goa6C;GS}+cd?#2@AXHesSRL>PyJ-?R*EDd0Mqj z7N$n3gp{EVFBWsN>?MzRsVn1651xskG5TZIT-@T|jY^VVe4hT|96)>;xvop|LqE;@ z+K-ZvcJz0ol~s>_Kn20`At(1+*k4KT(~hbXe@L5q|x7U&iAU98Vh^fSVp^MD*fNj z*-dw{eN zfWFP{A5x@ba9+r9TJGmcPq_iB)!9#c*dGd-6ALw-k4!#XcX0FrEl2I#k``cF$l0%( zW-qS{oN9Y*&h>3No|CCT2nMTDmP$;wC8=-ELbipe|9^zc@8kE12>X(ilOP|RK_r*dX>3ZOD=N=J2ulju1nZw1bZt5o)7nZ3{111iRj-QTuu4ef8mxjtzh1v5gx(m6) zw$Ufq2zRI+@(LPJNOGPRf<&-kN7!5#mIe^>3Gg~1HSO&*E~z*m`;{j6wzgnAXRane zPB6lq0qL}slJ|-G_OP$W{!lVT%LUbbvq&1gV?#3u`Y_qwqUO#s z_>5X#2ZsJ1DfaFv3Y0GR8IU9!@F}s~_X;Y>w_EH|PB4E*U~AL%jpR|36Q-UR!=FPQ z5srxJWmYl$4ilD5)05?R^Bdue-DV8^O`}ihEumNaGvH@9p4>U$&9=mb1O8O^A^w!g zrJxntk)fb7Z!Q|U3XqH5)F17$YH=7nCbBY{`vs^F791lr1^^%ILVho7`v6AXlBEia zIc`cC6i{ULqXR)H%hY{NuP1>-fxw&uU4OmqxS|58*dhgFwl6VKoP#eet`dzA!h5

(4S)e4)7Av(5RDq+ew?}+v)4=vpn%TG51`g=;FZ$LJm53lh zJv>t7)7ru^Yy~wiUO=dW3@4=W$)o#XgY7$>IyXu&H3{~7a6xl{r_nUJCMUeYG0}&m z@ELAot)6~|H}{u_68uJP!rRAX>gP?*R4tqPcjZ4Yu8rJVOKvq_i`YCzGuqJm$&Q|bV}_do>3K$C8-aC;8kuG`!PVBJ~QuH%(iyb zPR0_4lx!C+*)R@XVDS-CaN|xv=C4!)>TP!Z`)aGEq@K9_=QkZ#fWMOhX357GkL0sB z*A%fE)``2MPdB7$Y*k{^lr-&^tlN3=*mpB8!>&>LKJwr3Sw|(kJj4SkHue#AH%mP~ z6QJk!pkU2d%-8qhxm(Em?3>$aRhAg?f7M}n;%?u=e>LALF#&*f$Tp?+DBS5clp*}* z(!V3Bk1?Mnxk`GT2mSmPv?&Im)&X$W2o>I20e=B>TM+hZP*&r9k+1MbFL=NA(Xmv`9erclg=8M!PMoSAFtQAvDOg_^+-J5o)_R!hL zwG(!#iyTSFpJQdEc+hXbhvFTBzv2oc@iQuSR(%Vy?d#~{`6vSHdV)Ux?7>tCPz0X& z8-`9Z`)CbN0Zh+>;z2$YlG|RA*XpjJNmUyKxfF)$tGluK; z4ir-e@MWF<;VRDo58J-(O;X+Wwp7Vh4w}nQJXD^!m zi@|MA)Fc`>$tV+=Ka{(^%i#UJ5q@Nf12SxdQt){w2^f|WlZv@0a(*X3cM|jgz^rE@ zJ_|0$T1Se~^6Icn)aTUA2LuX!lrcm2>}$Ye`CMQa=plO9L%x355u|Y_#@t;n&EG! zY6?@qb_53WxVv=R&;f8(F&27bBnpf90B<{rrIF($YUV^<lSt%yeL&;4TlfUQpOu{T zW&CF7%D?Fgc!+QX*7qbn-juNyvCr#Tzb_Ib6HdQieW(D%5S*1*mcYoVa5PKk{EvDf zU~`RUCEo=zQ2_mn>=~?l!)t+Eno0@ni_fkuEdf?f=BUJwAioi^u7c>1U>3~SC3wH& zcn4bh+63Y(saNKt_!9}-ayMMn-(fG|{`fjQt5IO=AT#h~hVcRE`W6GLkbC)dBDH-e z^hYOn2ja(QVlwInnu|O-U#)9QQ?WV|Mhg>jQ5hr%Wv@s@H>nI99)eS^a{ztChf z#SR*5n)kL}ht5vIDsMWyFLC=p{cRwL)db&yFpR73tWutv9p%qG7}1{6O_J&E+~VNce}pJbxeDO3Eai(>Xddi`}BISWD9b%P9Ld;ub4lkdu%kuw`&Dog_<4? zZ$D5xcaA@G3KeME@BKBetB`2Y{D!W671pQPnrCtQ|JM-wzeCrmZYl)5H>2Ru_eo+^BKXppl&fZ`0~{1Mc+5UI)B2W0;f+ga zhuMn_Tcw8gI(79bwy0BDA-K)0E;)bR66L<>&dLZF%L9v(>PzvZ@bbWjW$%YZ$zXxy z@MHTIx3alBo7T~7KlR-{6|VUc9jFm#2!ay1=!srZ`f2I5x(O8AUqa*ohve*UO*$4O zvxZ)i#{P7);Pzx?+~w9id$VlTmBLt^T^SSBDf?hW1}8gyIsjI`2~M;mehQwFL(UE& zw%(@P>rv@S%4T^5)XMjPc4(Hh+E!fr+|!*_T63v!H&cF1^yKF;kA0`yW=&Z4i|^-B z{w&7HMS~S~p|2}s=_rWf?Hn7}Dm3w6?qZ~FzvOcLd3R_QhK4h_W!1n~dNQ)RAua)3 z8%Eb?pqSHnE>?>rfK9)0N4ILNr$s*COQRi~9JyQSl?7pUS3~b;GAy+>ImUkbd&|fP zT`-?R5)SwYV{e;$l}6(9zEMY+Z@zXfVmra7Y$Xh$X0;DQ`O+Qu54ZRpM{-iAJ{;aW z4CPEK$bUC~SB>pEawF?4_b$||Uwp<$?mIE@yJ^a3Rw&E8uX(#vC?x#2Swwf+;ds}F z4+NNs%&G9IZ)ENfkt>7~4gbR0vFrOF$d6^WW={YsVLmEc*Z@6r0})UYly9U;n`GPvxW>mQ)mzDeTSkM79nF+ZK8;H<%!vd! zzT$Pof_vd6j{z8BF0Kok%t$w2rr6)pWYh{;cNgSHy9o^y| zdXxYgYN!4?LdAuDHn9TV0tH5n02Ysm!fqV0QLOih((UpYY}6ZvDkf%o*<9z2Ilh>) ziNpB3{0i^x#u0UzKlp|2Vul+`+XO{{>L^1hU4Ruo>|3rWDx(vmtJfXZ6JI;j2#Gqm z9#L@9N8RtA+jCuAX7Kg#i8x-gC0`nLi@SM3A|{DM znn6+RR5xzQ$JV9nIFD#X47=h%xQSYkVGgP=A1X4qm*2X?@o2`VBKQ&k9IJuK<~cen zYFjr3$w@vdSzv^NQZ?qdT_^B8_LLWErveBzM{y3VuI}K&X6KVRvr+=FP-RiHiymL7 z1TccXx0`aCEx5odr5W67q}aP|6V+>wFTlDj@mhiY`7E1J{m)uQcuebV3TRvCtr!tL zJ7je$L`Cc7^DIRQ;9*hieEW&nRPr6z%h=i6tjKSs#)<@Y2i^6+5w350d1BMx*u?7U zn#LOHZ$CluIsn&MOYf*fCNg?(vz$4BMps(Mj^xGZ%fAEWa4*!X2p_LCS1!B|hC(>bt+g?{ml9!vSfV=eU;UNGpH06*ZvlC{$?6*l(ipy;ih#9w&2!gu9jfcY{3Q zig)tjBhW|}=U3O>Wg*cTMR*HN9Zq!P}46myj#hvNrTdxz#w_sKt08Jgl>56KN#!dj$u& z8?(oUd?K>386kTexZ_l5v}=Nv4rkZwovD+UtM0rSYz*Ym8)Sux>kvY3R`sW{JITWF z{_$Y=qs*qln#pUMR~AvTfbY6B>5`hJ-~-~cQa?A`6~<8Tv7oC<8CRlnqZ7hi^M#W- zQQ+*a2(`~$Qf=o*)JFtAkL`7`I$t+{cwq9}k-ciox4JB0UJ~mC^lDCJL}FjB=I7wV zrN;K11A`qbr$zY#O*(}|f`2dJyGvEV?*~Op`wfi$!O{@r+b9nSC2MEu?GA{Ef1E-a zrd|4kgZVNEFYbbDvWJ9M4~IK$-M;>S#ItbrP4QZ~(R(C&HuW-kG1ndXRpPJi4)iUM zdb(hxDkfLO8MV6wlUJmd?zZ#lZgtsC-IDGC&q^H~%rkCTjw}TX!A`=55^jzlVuPzC zUB@316pnbipitKDJJW!6n>jR97udNu(*phGwf+!)37w4QmhX9D;!nP?Y$N`MP^si^ z;+G$!M#b`r+q7~VovbDvYm70DE!xjD7UdgNH~$N}hvqdOt>W$t5J|_hN0lKGUvKoHa)2j z;xS8yv`{{aB9&US(l+|NGmKG@k7rA5uHxSzsNRqplJdR0wR~E~p7PXEOF+sl&{QgK z;U89DIIna^A1tcd#_*%`@ofF#EgOW6pw=NNAg+#bdG?vErVf7s+vIV~$Vda-gL;Q4 z>Q<@y)y<`vYFm;(hwAEM7}viz?rwvoH=ep4zKz-B=Ro-+*rAsv^OL)bv2&%bwL59i zlN~7SLud3hWB)5R`bw=c6nk~HNEhiA!j5qJrmzh9l?C9p=tJlEKzntUWLz}k_pIkTbd9Hrr+|ZD&J|b&xsiy9K0fQ-iXE)5F5t6^84eA?(GX6v7saQx~;-#v* zs(}99p+~Nz&!kA&RoNA#)g|n>F+)S*cA(3C@`qL&0?^qJxJLfZPj641Pp|;}H`k@J zHs(U}o-b}3WhJ#QZtt(V3O>0J-PP@=A$sh`hI25J)xS8=c9V!a@WmiPOb*3SfXvz| zOWY9M@sriZC#EteP;{~wCNnNV{n7Dg2`+8w>UD<{7j;rJdxE$0!D*ro>r2Oyu~Ss~ zLdbr^Pb$oa6JwWs+5vDOEz$70)(`f_8VYRO(;O=zt7~6Vn+G|=aw8n&Y!}kxL-_a; z1=vif^g}8II({G?of(PrVpXYJlpO73v|5xJ@Mqs;byKlHdqD}%YuC{@=gdg)w?lmM z46|xYjL+CVj<~@Fnb6q1tcIO1wlF-blyE=Iz46e`J zFhck+v2=K}qq;tO>H^B7FMOQV(}y=s4NbI>5nCaj+?(7BlzRv%5N=}#GTvSXosMkr z@9PUr#z<-peNA}H)YuaU7wccB$5#ugzn4>IL>eN#B(XcVy5wA*Q=+}gUvoCWL3`3s zT8Zu#lAqx%F?PI8#L2hz{!Um{&(^y#ah6I8Rwk8<%+ zJF$^NVhpMhe4O%h1K$|h_tcfI;IMS#hdv`2>5_8qq!8!?6|a1h90%Omf}B3hUbJme z))$eVK|24Ydug*CM3h&4NnKOiSmxV@XNBr{>+{e3Uf{7jea+gt1KAx7Il-h3RG@6= z@;zFZX%5x^;q6w;EofeO;6U0Nj_a{q9efN3M@jH}{~iD}n2s&(Ekqs->{u7?a?|#p zBK39mg;x}6_+aiNs4F%97^>439Pb*6*AKMY9C?`L6TxuPL(x${$LHo{K!Ze3c`t|GX)P(2;Y(iG|J~ zwQ+z=ld+Bhg#@_Y$S-LvkGI@bn@Aj&x;*aLyJ@r)TCq0Tse_slDJ!|}9S}dX8x*I9 z=LQiGCa6%-k=mhGzJ+4dIb+zh+mz_lgw z9aCuLG6_BYextt>oJDo_y_JGPEf+ZtCfYl6)d$5g;@l0DYQ^UB*!(yLIpdy=JbgIj z4L-Xsv?FPZo?zZR34y6J)=KQl5yo($#Wj%%0mRvS^gd^+)<@U2=15>8Ch!oLZ8VDW*b4+UAP$}Xl z=<$Uep!Wpm(@2r+4){F7iB*1H&k}{YRA~hmNIeC<>S4s^l$blSkBe1lc1rzm&+wkNnA!{1RW&$=8AJ{RAPKfOs=qTus3mo zi-!J8VsN5=d2szp$=A?&>3ltkrrD31e#U`IF4aR*$G^Bg8^a7Yqv*dMzvq;WFcD2x zr3)l76G5Ui6*Lx$K|m~bH~a3mA$%|S{LMAD%*NlfFNi!}B6It~{O~Wr->84;el^@& z&lfXIJ=)EX{~=7agQDj9BG0qlMWJn>bNDOHW9PF2c5H-P>T=Wrc=@BF5gYruU>S|i zs;HPpz>1d{>ryh~W60<~q77$>?e2|I-K}=@d5UQq>V)q}*LlbSbR=)S`*ES*-}A3k z9nWt9W_nlWXJuFP(qVN6=Aqh0v1YQwRg-Lk>l+ocE5Exce+RqZ<0!^fqV`Gb%4fdL{XFa%DI{T5_ui{!lQ+(d zht2bp*tthptFe9WAx<(jX3|A=Ke1YS!;G3GO<}71y7^w(pVv`q?zOycLvr%b*WkD2 zrKq>6KQ=On+7!R^>a9QaeS@i`j0#NX{lk7$hb75|qVVZggqWMkz=QBN3VrzpXCv*^ zXksUsw`Gp*kMS{i?zC4>i0nwzuw|Q+xmtDeZRvWV7(4dHVfGID zdgqOTS5ZDwSdn8vy-R1$dTBVP7tQ4}Ub@Qn3mZuvgNuAD z`-2z#neHvgR$P5kZ}i&uEMX7$pg2pIz{{`}zMYao+!1d09t47=S5~c3*4x2wRAlN^ zBQp7*oWv?HeC|>%NyU{c_Dw6KUjPBGA}5Gm6#tK<-XFAz5fy8u)YCKi9rYBJ;d+4k z9u@pyjPj9_XTxq#l(zW3Z8sXePtuKh%108Z2Ht1PP0Fy6u-s$`X3$9r40^{pl#f1b zZVW3vAN+_j@;_Nm@Jg4Ld&!WL=xd+dYyB2iZhbH{m9w=_=BPPv_sO5Qv}@!rnW?_8V$@x6W~Bw)U-X~^J2EAp#2ye} zf?dB#C&a}XQHi$AHR&E%z6}jycu_8gHShT$V-P%Gf*1pSaD>*`vY1hntnYBi>KbLftkNYjc`5f^`0S;Oem;LGVNGJ>Rp--d z-T_=QHW+Sxa@SocBRrFyZRAlp7VQi#jf1&_W(zYH8tOdGg_Fax9mdMz8qgwxEoCav zb$Lxbv+gQ4eD(~tE+U{5*b9`j(d0^u=m9DwYr%iqWwvx9 zFYOn8*cj9qM*c1>^-C7lP`}ry^if2)Tf-pN4a5D10I43uewpL<5EUyeM@jqqFQT!a zZ+@7`Z>2muK>mZs-;C9BF-JW7n0BDuXuj!Rpnc_JyAph>BFVb{U6Qa?>~||9dyH#0 z!i-$>R&}n)U>~CgACL~}I3U5DJxArkGQTmh%UpSuLqJj~;J)b?REl*;7$e6gH-BAo z7I(>b?cthS9%agKn>UFvy90$FX<4DT^KYKoab^DE-%dgLsSw?hDRy9>g2N_kM zfc(zIR6wStBp_itar6CdjysO$Inbp#+022_g>a?Dg*CjPYSP>qv~Fdu688o24UfvW z=!@>J-K)AuPZLmNlQc9V39i9gGn(K~&T&|a(YeQB$S*9uHe@aUxl(V@8?9&bKFY~ zDJhR7HloA7z>476oW3W#xAQck5E6o#p&{va+9Mvf^*Bf7ybq<8c$9K0&h__R4V&yT ze=CY?dp)934}GzXS#vHHqN$^wRKj>EcM>I5r7pgh4WhRNuOuKF2z|Q`0`#Ki24{lR zHKqhw)E@J8cz9jp0=~Q)VExXO|M8G%E>qXzV=Ji5#$>%CDj2bvbNw}CUzOcf!V=(s z17?_dsTHUFc*Sph-cOWmC%W~kJ$hO2F5rs<$vzJYgXPH~!2Ww7n{`ofJzn#(QR`JWYZ= zZR92M=mVfm*A&+atm^ZD>1FIgOatPB-!Ngwd|H{;`^B%a8xmhy`;~rqtwuSC6G=Aw z`{L`wNZ4{NZ%OnmL59ABC_n18h_TAv*oeV1*zp-y_CywfB+S=}mveA#-iR4vR`wKy zy>2Egl{*aobgawt!zk|tJ~am>ia<)?ZrcJY-XRp8H>*XPmuYXl(Jw$Ol6Fz;lXZ#I zb1FS%FFFu_e)V_ZkIX{bx3d(YV$p9cz`mB!v?z18?aJC^hGF(iL)Yo$O}kBeEy+qu zRCS-m=2c(S2;^s?2|}MWqcx-i+$LUq{IJWXGJ)`;9(9QR)3z7{C~HQ_W_JlHbS1~3 z2QZL!Gwnw%IIHZ~oy8dq$iNu7~9bN?xdwZz`InY$d6YPB@!&N$_2c zS@=8+V)-uFaMZ{3jV>e_N>Uun)1ijQbMnNRV#LL+U`;9M$9m- zHY}ln{%Y#pL32FZ3Omf43J6&{S*76&&}}ZM6rQH%_t5D0*PI8GZ+&Uh<(ROhF#~w~(+vV7HZ)-Q{0gVWi1ButAyN z5R}2ogVMPh*}`ps(*|rPrJtd3d3pc1t+I@KpOia*IUwn(L~;=#oIO?PPb9~0{|3*1 zSvPWG!B4pvFUQXbeTng9+rZhkjgsWOltoBj&yM#^JxUe38)mGlcl7?)O;w=hz^g8n zni-x1JJ@`cM|4ab$Bgo;7T??O?3W`Cc>(vy4VjqmOqTTaxL;#@2s$m%gJ^mq2`o7jd*|kKx`C9;G?lM7hUWh3JwqIfY z9KJ!iHR2?Q8g-+|df#A_RW&6TH9rsv-AHN^Hmg5cEZC9t(5aU!Nr1F2>no+~RV&+N z-OaOHMtnBBYsI%7jMZ%H+FLEFGsxdbrZuJJcAXL2k>(XQlucg);vVf^RI801XBe4( z5$^RV5$=-dmNR@F$v(C3icAh8skwNwnicFvyqc}vi@c%52nEyTB*plu5*Lv5R1~`8 zx7oR4=z-*A#$}n`M&9V(7@D2H=U?$w6$78TONh#DyD4pK)*pL7Np*p&{@6%Yy6;T8 zc<2p5+!NW~(60a}KsYvHCFJR3ru5HO)IZ>4@k@^UySMP?UxBl-SU#yQiw6v)^O zhGHn>b3pzSs3j~~x3v0?I{rz}jwT!KS)dj!YfL3<8L@es+`a>hzqsQ@6C-?eX zo?5%1UN`@pG+*3rCg1d(KVz29cTemy(=Lw9+UgVIrqxVzH%mvN`$%3~z!(1Q`)|~q zHqopCzc09j?52}K*ds7cmw2F#^Fsxb@QZ<8)3Z}4HyDrYN03{7ZJLGORjzGDE;r0C zYlN~tFlYUbI7D{n`paCo}=uA#QI}+%4?C@j=1({6N4FBkS1v84mAQXo3R5dt57l% zkT4=p3bPlCkLC=J-wgDaa#fKlr&vejqG9O$=0YbP_OL1?d2yn-n^TG2yhnYbo0O>e z$k8=Q)Vv4Sa+S&yy8A#)`elH#{WPtGY4?ya-d530BTFrTuM5|A+T89UTA(O^`m*Gn z@iVAnK?nH{9dl(MIa2rKN@JCLrAo>Ge57vuKt3g8(*~;W#&?K$4V-6VgR8dQFgSD= zdQfB?s5t=%+yX?2gvXgDPeu*x^G~B*P=K9_Uz)QAK&k{Y*#QtSM{Z21@=2uC^#cM+En!8f=YKg?_ zNV2Mdd)W#HZ+~dP>|b--x@neU-vjYS;GISHT|-0=SPcDJ>LeyNL1091!-5(o02?#a zw)AByi~AbgaxO9uBOojzp23zbMR=Dn8sDn>pAMWk#(p{Y04MKC%dwP`MC26oRq7P= zNs;q2i#xnO1HfJrS|(mV*@X7QntiC<&}DH}9D9mi^g8Iwf{Y}DpEax-D`pciT?M-N zN7A+8Fds3Hvh5>b*^wWC=30o zzk(rGd<^;G(@VrT7qUp3-y!xdU%^MeNSX|8eO5s?{9GC&g$<*s9&C=`i9sa1dtPPf`md$qAZ&Ww6EP7%713sB@fPMlTx} zE94L|9m_zzA0-#>d<*&}7u0)aB{8w&dHDYD>Zt*penE<&bMi392c#X@wQ`dmy}&e@`q~*fxglVw!*m)hnX- zgnr{XbpDznx^Y-AHs(O#QFmlD(ELv;fS^@zM5|OK1Zt83sD;x~WrVxz@ki zNQwKO&sXT!4I?gry-_udcQ!8MHN9+`8H0wV6IHe}2?D2Tdvd^Xww54OQZc3`h&6xC zAtOJ>0RHqnV|nkf!&2TpaEx5XMX}M4k>MvIwZ-(ty~SO(SAOqY=Ps$@AK(Y4lO5Y^ zE@~zOoDv1ABFId%1L^<$b0O2rji=B@T{n=-T^;;+T?**?6! zi|hCQoXo83<3i&mb9I7ZpRoI(ZSuh#M2`NPNO9$sEHjmt-k1dSqhxnC>E6bE*@3L@ z?@H_-vg>K30hdIghF{4`ql4*>-HpS_y%QTat}9**c{oWF!th9wa`mcih$;_;UpKx5O;gj2fF)UAmK=OCo(mb?;eHYR#t! z3mFH(99WjKhkLe_*Rp>FWW>tNa}}gpp&B%6wnBgYtjyKaE4xMKaD$xuMc=A|8i?Kr zhG_}*{;p8ca44W5j-6J1U<~FGlU+$6-TO`{0-Xr0|6aq3 zid4xtQu^aA^=oL~xUvLplp~`Z=^Lz%+Q!=wK;2%x0^Ol1AAn)5Z@W}{#^#67+5aRr zTV0!X@r%!}oZM;OW69}>s{RqNHc!JJ#y~Aqhz#Ke7@BfW=b89jC6TPdDlIzZ07_=| z#W4?jk?K4RZ;%0fdd}``;xVk&=Zp`6B(9^2^d}Ubs7cZJk-S~G_#E9b4Csc-)NWe7 z&JPq&30>%3CckFU6f^%2u%qE$$EjVE;6hrc+1~_Xr$CbdOsKldTk{l&BijgI;)&MI z9Dl$zE-7Dt?_$nwT2lu?e+@bq5Jp`80@mFLEI9AL5`F(dU7D3kM=vQ{wRvmfi5hc& zhyQusdUI!e;s#*S-Oi=DGHi7`R6k1!*J8qQs#~8$jk*L4^3MsUaTFWU8D!&I@=l3; z#hr0#Luxm_O9z2@VR#C=ww~^a0Z3L;FYFK8!LFbHF4dyT8lF z+JU@Cn!T=F+k}@(A(3Fa3kgqI?njCP)hM?vecqJe7q2#n?{P~`XY>Tu#CwPkr{j9g z4FkS3O1ybm!eK1MTtLf9+;a4VebsqzFn+4FxZ(Yw*RU!(wVuIIw4AUZk_J>g|4RD3 zkgjs0kfCx6X8DVUbzN>E=IB`DrYeb1TTgNBOHZ`3lU+%dFnFe4J5Z~7?WH14R)qh9 zIWw^1WAwPK?#H)k!g~CUY@JvE8D%}`G|VM53u$w5dAK-E;R%9NKF_}SG=Wld zxbrxQ5H>Qthv(JH>qtucO-1W_z*$een60c?H4GX)A(yyS+;mXr8?yR9DV= z=z9Ga;cE%+ZW>9GKc~GaK*7m-k{Vy-#MPEArj(l^+!j9&NL0Su2Y{J%cFVj~v-vdc zPcd3XK%Yv8F9yYROEHGdpJ{Y1h45472c6*SxI@=ps$tFDvd zeJCR3`LLQX_Cn-iIe6ws61h4VVqyNP4?i>;t`<0d* z;glZ_K=LOmKjqza?V(b=v+5nZZ+|5V0%hAJzFDbP@PijA@01{Ged9{2J=Ey?3w%S;+XxZ{VuwW4#Q9 z&k?C~==n-v8bJlDa-n`p5+>v*w&M%1W6wl8q$#>Y+#Cyx!-W+K@S&!I_ZiuK41bxfKhO2V!143I;DfsXBKSW4#Y@Fwo zCh^_W!X37`6%F>#Y;l!*GZA95r6Sovjhob3u)~9I6AZqFHf-)2@&SGj%7qZOF5YdA zvWU$27-WT<*c|(ocVvZR{74clgU~wyiW5)KFjpM6JS2%ZAlYq`B6krC^!(f6BoyX*!;NCPKmi%As!b*>@&_J?a?_~JtWpbi%! zAzn^kBux0;?gH)wDd$Tvczg1wAt9J&oU@Tq`tJSH3Al@=|fs#$8A- zY-K6$0hwX3rUpH(+I(&FSxOu+uOirVGQ~>@2i!n~<_>jyfEd+%4*1E{Ijn|v@Jy znJMGZDK)iZ6>f|O>tW)Ptx?@2xU&ig;>$uXWF@!ST1rODX{@4MxbouQPjRv2k>&dN z)~me+Uf@3Fk8CKd{yi(YY}Ker>XI|*88L>V16Sjs%KNaP68j>TcU4er(UPqiE>99L zfRNypy9OeM7$ZW$_sK_&T!K62khQvetw(inDN1`-QnBNrPA>kRxPhP`z1o}HGd$}# zE&9F37fb0o;1_QW%pNteqDPLQ37x$ku@~i#g0;Lv(}PC|N0X!7!-QL+^gmlmp7}+A z0-JS!=bT5jUFM$t3C>uSasBg~5v_L6UK~N#BbGKseksqJjs{qm8=-0uqmv5VP1Ved zSU=YRqW40$*JR~aKoW(aK5;X{a^h8Zj*^4;{0p|G1zTS(G-E%CyjyhE&g?1zAy>T7 zM0**2isG$wp2;9SlNO_v(cy8AboV6zGz>~L2TY%-7v%Q1hnU1r5@RFvwpNxbnw9Bz zoLp$>(JAB zxCC;%mbh$IK-UKW+b0R7uH7AH1c0?Cb7!J}DV}J~+5pB>`d)o3J!&dcf%&3qR*U>5 z1dlu9?uj|oR1vTlHU`=ctnKkmPMBp(w)K4sOnaV=ix4SC~gz)Wm6G2kc`39al7R9zX>v#S!i! zJ&2I1qT!@1%wW9^JtPbCymr<~#^{i>oTI9zg(Ls*r{V!b#@a{p(2mI0e;lYr&(uE7 z%-a6xst*y?b@hPh*$Wx{zRqKv9ohP4gVCMJYPx18dpl%1t6nk%{lA?vL#sCl+{R7( z)aRwyrbHv}rb{ZE++Aa6-mhe5Gafl*O^j2Yo1(0lZthjWRx_q&_q|V^mk%;R40?Z1 zA{hBm_QfW;+9Lz2om#iD|1dU&mF7nN^JeF)56nk?)ZS%RB3~u@J8rq_PW7S_3w>CuooSQMvd&39Y>Tl z+rg!IW0%Oi@;Z9ANpYkRUQbv8kA1WC-SRsukwDxp#-r-gc}6v<(XZHaO=ha|`4oE#RVIc__C9vXfCi3IbGHv!s&>8V>m;=tDMZ?u~=$3$EXf5z!1|k8#nwu)iNji}E!R1D^k)6O<&Behi>n0je8w{6Um5n7#?g=P3= z5sIbV&tYCGRt_n~(jPWtECf7mT3}4J4ckjxH(FNrV9{yZr2S4Y_?w#-rd>h=H}Wa! zMV_K+5evhJoWpA-9(Vw%4B~#O&ypwu2}YP>7BoKuM-Lu7UBdKKw$xegA7XBT_M!2+ zX+On@mD!N7os|R&`~ZUsh9H(>3oKNZS`}g6D2n0oqBF+;_tjY?ODXy*7V9@em+u(t z!1kT(f*YqXL}uX<=o*i6efo!do;(&8;#VQA)mAVCztC|Ci=);zzuTn!UXmZJhCxpx z^hUynU&V>U(|a-oh=Q*`1*bA#p_`STEqMPGgZ&K?wDvI(a^`@#gCJUZ0gY!K;%xPK{qG$+-&l{u8R4*B8GNZ|0)G;99&hk~BA;c!CqW z682$Xam(y)3w)}{R8wJCIIluizfceSJ}g&6(xcSXt=0FhijNY4f-W)wsv0GKQ>NU6 zuy8~lbrO~yHu>ngtv(pu_>a;+frnmI1jF$jxvovG;ZyY4wSU^~!n^jgy+@}2O_#p1 zzeYfiIYzz{Y9Wp>@q#DU*@)SUZTbZ3D;0xzP_ z67FST>8;QqK^cj0*D%_0^(>+s&> z{Y&&%QB+3N;m-csSO?L~@IMTPD~CX}s0|g-hcZ!0B^xZ=I+@ZsLtRh;(~3BsLHLod zF_e&US&^B^OLaetFM;X0W+lsSoBmiU-(01_)-Dvk0Eh|Vp_?ZWNO=jaj{GxYH9=i-?K?q z{{dcQ_LWzVbq5*Hj62*CA*=6I^fS2K6zk{!c6|>sShxlyrYY9r6ixh7s4bdQp7NTO zP8$MwD{nor%SC^`k=b@p?~X<9W#=^-C=TWVY}MI&*Z7hJsfg@7NP3(!I^WgZMR&M? z0bhCuX142iBlb7TO(+2aIDZ?mSS6$Xx-`a-aOFTzKq6|=T%acxH4S4REC{9uxz70UUzyndY}iCwZdS7_0E zSsN#J*fh)7UARHMQDEDcJ8DVflyg@SQO|O~K9#gLf*0W^@Yn(m zL+HRi%e(cefMkXGmJ70@R6a+A4t^=S0M1&?=#2*5bk8*i)zQ$@c_Pn!CKPy)eJ(Jz zFF+>9H}rxo-d!*IY_do0&08z69Oa4!`*ofJruS5+er`{*_|z3@vePkhlg-7s!;3t% zCmE=F9b@ZA)U}=-Jr=5G+f|+!t+M}Wl6;#M&dwBg;ksF$LFfgo7Qp*D?Q7!RU1W}H zyvfkQo!LiSds)emU@PEs#lyO7u;&-Uhl6^tUNdbr{xIPq+IXL=usDbKIrLF9^M$Sa zW32YiPYOCN(BSkM+$)t6uyf244E=i6EMZ5CAG+#2s_|NQ@`yClLyrNiM$Ssi4&J`S2JY7}m z);fh^Z;@oY#cbyJ@|MD43D`Of!G?8*2CH_9MiZ${c@e0(tw1R+$&CcXD^`dLH#P>k zU6ut$U+(g`UApiex52Igs6oX}SLjlPh*k**Pzn+FM1o$1?=W#BOf(P6v+>kd^v5bc zugN#>6HHxYAz7g1Ymr?RCNjo;ISshAlwhB=wv%INMV#1MZSKReJfLGR$UBwWoujh& zd^v*pYT~-wE;Ur>6V``3!rzA5!f#wG^#tS9`44fRGsc!1>urpJQeeM)qXFNddp}A0 z0-F4;s$~q-%vOHxZuFp_)Y`4P)f(4(0);eq!%5h`&d`6}1xbfoki6-> zcvAPf#X=!`%8{g-)nkzJm8IDbJU6NcI2k9*g_uj$I?wus(~eEFL4vvVdN&>84IcgvIs^1zxwXo z_vX*5 z6*$KopG``#3Fi#2REqt2wDF8W4U!w?!#>BIYdR32AiW+GGA+OwieX$+T z5=X5nlVB44qot|-VN;78^IULd!wuzU^n@niaq;1_?uQ-w9=G;k`~GlEI5QP@0*eE+(uHOlx;Tri8koCB-Sr}@o=xynlz(g^_m~p2URjcj25{xP(DoXV z?`6uFa;n|r`VRC125YKa_TESO$zr0NtB+Mk{4$MQ{R5p~u{nHNi9fTK@5ZK)i3eNp z(-8OI_IAQG3PcqFU4QQb2eNPTY&tL>^9bVm!Io#GBwrmY9S-1b08}!otKv9ex;nu7 z)1i!u(~SN9P1$v5J2urBhqI-JnnM7=DEA6n-wYlR1%j)>gvQHHonFImrI~oE*3?ox zBGwvdaG#+Vfn&tyCT+I$U^zRMkV?SuGd+Z(K#?t43|MG$s?5YZy)~8f11l@SB)|kA zS!k#Xj!>iK`cCB+FqrJOhO3W>NWdu25T`99~!RvAaYiIv0jfH&5<_EfMkW;!W^Wn%5{Ba5-G1wYJf%raU6 z?$fyw(~M7n4!p1r&xobGM8JEE=FqVi4nx zj!^A{ENh`D*a8FHCi$9YQhE^M?X-T$12ippEKr9yXe3OLYh@$$bu4R3{Lc>X}%=}@D;*C;N~AZ#kV zoANr3%xq_HX~hbXp*wFv`#t9x^XA3GPX!q#)hdwv4nL2<+i$ea>^E|E&JG#SiPa}s zVq!GI9eyB>`t=Gn<=`FmPh1Zu>aoo?x>a=E0?&oyFlTKawCF74J1xl}8K+>4esc)c zX<<)4H5Wt{GYyGb%L62bO~9BzAAiY}UgSP}<#{v0bSxLUW6pb9z)TwKgmyhJm~oiv zS3447mvc<;lc~a9q%#OcH%MAP(d1KMMv#vTTDVyP4P~RHu4f;|BHPfL=+ffckWUne=t3#Pinuf~Zi|MSpLt3)rPu+~=w~(!fz8 z;_8o13N3u2`p;vZO{(dBF%0*w;*|vuP-`Q3u|z#dTNM54qYAR`$(>&=J{-=EU(;o) zx+fI+$!9_?b7fERAs3V9MRFvkCv#J&p=BZ-#w&jjdGK;jfkh{9k8ya7+NUyEh{>~c z@4NctpX=HzH$`iDcSD0FC@_BaLfBKf!}Q=2%-6Vq0aY*g64<@*ME8V+FhT7WQ>HUD z;-q1(VNS^Yc*cP%{2f&DXURaKB#t$8iGguD8{HqeA zQ-$CFhzNQ%qJc5ZHo*w?ML%+c%#7Kc z74kNf{fWIP<%s|XtIh7AcEjQYQEk(k#xiA<`mwXbqd#Zy_!F7g)>D=wVx9nfV_5zST1aR%P7lw-QkB%-+{bnQ_hREt3nk- zE68`Z_@hRbm*5gb^`?8WO{hekp>fI+93J{qO|(NU$1|82P}M@hBpL z8VwFbh(_euDcqo!GZ@sqQt>4Y=q5ZcUt-_kH)E|3ZS9`1>I&SBORc$4}!x= z>~V_R+;g`le67V92^?6o4_>>9z>^U^{FDs(nYMm;tnHKUArXsd6We6elTK)ty_Exb;pR~Y(p%Ys za@Q==*V~*DI6y`X*5glr81Vn@W0#BDr!+|~HwhSKWe=?c&;#LKrH#$Oi5E8`3y(cU zSLD{t@@5XL*(5%qxU|Z{wgUppAlW9|cLp@hS!a0e@uiIfO$khDDY_|+NNFR3kY_}9 zsi&8Gita>{e(6lY02x(vT3Y-}8HK0R;^SniGweB{gy=|n_?<|`t;iz7mBrb`T^BX! zKEuPv3+v~EPYz<44cyZ*b;R~q_giKN*!f6zn^`CM@b-A?)r8lRI}(Xy-2~;|a(Twx zXDOL=ykbqsD@BxRngqU_8anrj3+1lrQS?E z-+iq1_R(F&e|CA;UP{e6&L{ z5GQfxqZ|CayN#;9G7ok=HDy~OvUmNbYhSooAhAK#xQEE{^;Gg-QXZ6*9aPNrH~Zi| zmK6STAM<=X!%R&q&|tJAS`q^~h1ncSluwMi-cF-6T}bxAS-We9e=Y)a3qJZHe6$Vi z^eQ%ch-h0i16O1k1D=~5h7fP(O(5vE2|jSMYza>I7qVsl`hQ;SE`IlTQbv#BR4(py z?c|JxsLPl(A0_4C!iFD*dkQ7A5M%?@aaVnR)-6|22Gs$4m%c8uQ6#1sM-DLErL?+C zb|EFI5P6n2C&FH=9ykhl*Wg*%t#IVJDNBv&viGFJ$cr7Alc6iIDeXG){3u2Vaok}2 zwpLuT>7dPkyQK;HRwyFXtIYee2Ct&UVljI#!YEj=hgWbdNx~N$u6tB<7LsAWqjw>& z$wH0=eEiI6U1j8R+#MszZ5d(MXzVCGc&6OKybpBx3G81l`XyClP4#eD7d=>SdOitC z6rmr<=WewJ`_QF*~sdjX+xciBv~!THkkPsNYX_dD$)n>JM0 z1eX*A7Yi-D{^6q@o?Cb)kp3>xMh(*=RZ^lDk7)nnCGcL&ByGQ(So4jK+t}xqXY0E% zGusE#6D~3w-fJ#q)bEAow6U`E%V8z!185@eVfyRK{HRgMU%uiQ#NoCKcrohlBdUku z+xK0uD+3z3$($GJHsUC3>0#DO_b@3*8aFqGwwTTTuqSdK5_f_qymf>m8we2~JgG)JT4gSRGfcJIBkGIj;_G@5<~05!;k zu6RH4%ns~tcuo8I=H3>;+xK~yvYn((P!!~_swBKqyOHq`>XR|KA?M6wG-_#xSqiw zr5=MZ?{x{vQ&`w;IN8_aAF}%F!XJil2(m@GL{##b-uRi0eP>o?%FR_cf{m>Z{2Pe& zA9&B^mV)NE2$Yx8RfNhe*cQ=PG{?6iylciZX;7Rykb9?Hd7u1aLaT#{caG}vm91oX zTiT1isGgSo2mAC0VBxhi`)9e<={{{0KMvMLUqY<^KG~(~u`={tMcGO46(d74-2?4v zdPDmhiBWipxx&kM&Qa}ea?THW_mEIt4QF*shv|?+rnHANtHZCMpLy#CDCHiYBYnIb z2@X3*W(kza$8N)3V#|Day%_-X5juAejmPy9U6(AktGxpxq=$Nre1M@^@xUGM-vlmA z%fCr%jB!QVRu@zjL2I-h^>D`hs`SJ0ril7y?iouA4vz@NUv&ug`t7LyP;}-GXv$xh z_VWaem&le%n}C3u!ZcN@Ug%Jtj?20lKNr*t{whj(6~V7I;?baliU1$lS6)irrbs&( zd1(I8x8|?4I1qg*m;sL2b3y1Up&&*=whO_Z#x1g5YQ31;#<;#~L_Zm*pr0uos0C-Q zbH_i&e#-Dd-LO>K3|NI5h5x&TDUfrVIkU9S9ig&mujuiT_@r=hG>1bQ=2;{u0;G2Bt2sP&EP(%VNhY)vX9!_ z1EzFpow%p%G5zT=@X@7Fp>}<5e1p&znyB>{zKcZoz-UqkyROFuy_5Uziy~{D>)4y| zoO&PGugkcX$225Bw=EQ)p^;|kv8JA9n8DkLH<(5TwLC#PAIn@PgjkCm&S23>g6aKZ zZkp$V7ps!DZj|eO!8z0b6S?u@y`1JXjme!r>P^>HCUr50C&wBjO0_yvoE}@TKL6ve zD0vz!njhPWNH*9?6Uz5|lAVNPLvM*DM|xtlYQnNNwD)OeYoBhuBVJngaangz)0eoS zXg08Wxwr2F>g=Z)_pDoIDByf~E7yz;A@b{nLRkA_@(0h&;OfHQy>){IUEo}Ap>vl^ z^MHW%IGVP{%@q&(9NL%@TJHb2Fz*UO>oue4iRw^*T8A$IU|7g~1j-|7iW&;ecW3~^ z7J@<{4~o$XYW1~cPGb4b5U3R-3b<;#qcM|I#S0%TRui>OAb0Y;hoWz?a_c(PuK{J( z6cjxPfu!kV`TnU*OnR-ewyp&UTE6M6Is?BPF@C*W5by<`#FJA(mb2~=6gc-) z4OfCOl1t>crn=L(r*8oT^x8gjI3e^J?4Dg{IrKk&S12&Lc~DWQ$@*K3FLO@ zk+p)QquyaKY@#<&15g(X2VZl3+LOIv^01qJS-gJ;RR6=j6!+*w-fzPa=(#FJwZ<*z z{gszlr6jAwfXY}br<~_v)p!yTwgck6R}6L_ziRV$fMsR;!4|W8(T;73VFN_5{*}u3dyh62 zSBa5wq4SqOW&)Q1(Qf_P#xT-F`>7j&^>GQbQ**Q1#w_9)V22aFvr@u|S_AuVq-YE8 zh0_5_DKGiZY>fb&R34kr^D%_RH7E=4f?id-Co@O+w2woG=6<`&NE`DhGdB9vRC+8( z{xagY*)T~a71~Jh`5zt;=a!^ed1-L4!M@&Dv3wZ}e2V|;eL1iHc)vYUdsx04SL={j z$naQ#6GFWEGJYeT`G|8m9S`V(z6O2nQgm+(cd>GPofA^MN7#~ucD+6sJ*se9;`eKG zO5N8i+JGe8UK@ne9t$anm0Hu$X~$#Vut)v3i+f(a-oiOQ0$EvG$>MgzuQ`;wkx02> z6GVY?tCSaR{!68bt%UP)<8NZTm8FUBk2H+BJ!bq`i_aPgaC15|Zn*Y4zS#ZWu_ZFp zHn%Cf8~z63$ax*P7E0T`UNoAl#nM?y1)Za;>>!)okr{!dH1U|B)BEy}cJMVZ>fS5S zl!wUjsoA(cITul6=J8l1h?4Z5$~kiBon@Oc05P{I3fUD__ldt9`W5u%hyZs<+{|0; ziS?4?g%^m10S+q5we61DQj`n8=x0!$1^>fuh}$m28_4wuz%e8+EqY^Z{(t86|6wP? zrhF%oDvE^j)r~&zi)dodS^59C!seU3fT_#KsxsheV|!j7-*(SrJ(W)%s{Av!7v2P> zmN4*fn+MF9Mw3d4zLmY_Y7zWpJ;Kh5`_oreL_Ei{CA2f>@=X^W9 zLCHXvt-@}pYkxHis^k=J);`ASEbS@Lxm5r?DXR7@(iv?zApb;1i_SdEAJB^7lrbJ1 zs2q8hLX(!F?A9!J*RTILu3h#~+fTr8h7|{uF4Eh@%gsLFH&SH22yQ#FT8~YpIb4-#*tP}JH%%a?4@`^Uaki|vD zQ#IJ~M-@vEO{Jpq#2$5|{?%sPc!M9?{WI11em+Qp?2xhpb7j|@9o~nWsSH!C-+yBD zwDhe))HIGP@XgX5`xJtXdQ~v$Uw%X7eggNLjB&}R^ZJYEQ0 z_XizXuSJ~*Vs82?{Y~oPOjfsvK{uz9Iv$vyKXU%UV*FQh9E4vwk0zB&!xJF8pAT!j z_${!{TjH5DYXt(^n>%V^Vt??u_n7`Se2PKE`$D))R=+2|K>+Z^m3J^ zc)qd;wrVupSA@Suko+VTQZ26wjvoi?(AJx8_vCtS+QaP=1~`9q#3ySEr8wre{OSBS zAyyjiN?bzAz0=jqq$_OtZ;~bzw-QplFDk&Ac7-k-BbQn%WE-T5bpUtaYrDBG0o=7) zvxH#qhL*DE^qvPc7)c!e2EbMvnagg7h-jYSsOF)S5(VFEW?hE8vN+rLu_PwPEpAD2 zPQKa2CaD~FpQ-S}B=DxFN=Xp~bM}LWP1OkfiDh3I7rj3RI?$46n1aOVBgM!v>4iJ; zzS|-HJU8n8k$oOzNfOL5;xOo~q6=5Wj(Z@7Roy#qx##yx_0I}+43xjzcvvZm3Y|9} zDWCP0PH-CCu8=Y5>1h;7(-@#2E&N=xg{^s3s=B9%4B*$y8Q%Tf$B=zc zM>OpYPXb}XOR0iG{ThkhC-QJErLCP+C8DRgg_=`@&u z;{Eu3{r0L~52%%0}TkJncWgv7vq!y@@ee5|V~m0J)yI$3k^%BW=}I5o7= zJICHjWmaQc;zo=03BR{fq*)+5ihbr?i+lHc%v^WY$q=FfBe7M>&hU1I>)5XFRqe#8 zGhw({`~&=}qVl6^4RJYcmmA*TtD_laT~L4W2gPLk-LDQxR+7GJNiK=a=p8ipDN>$w zbJWA$jka52Pfk)}qRFAC{&^3y!(^{Srqq*&A8t?^>(hN?vrEZ{Qp*9 zw-_xKO^Dz%=h9&8XW_pQLb`SkrweS?^Nap(3AntO-Eu}uR@zpvMrMpN({2qn?3d41 zG{atBlUWMF&xZJMr*6zC)|B3b*KYxG?hFgQB9LM!;j~>D-Twm16a)QRgzLY)aYs0p z``u=w9rg4FM)5b+=Qh2bJ>-Jh7hG{rSZtb~fvWbqBjH_Je)VGw{?uO*G&a%y+gBeU zkz9K7+ll%Vz=R`bj7= zvGc*bxyuJggl_TOjal)#l#i%+{-oc$_`ktVbG3^ppLVp0VzHzc3A z#>5_Gie1vfklO7$a7w%&RvR!+52UTc@L9(noG8=fDtB2BcUHH_r>ZHE)f;sg&V0ilZN5GL6E*#( zDF*RLWXW(E70BB-_+HGQsAw|#f9YRvc;Y@mhvWEyzwKvw;6tXus)EXv;HorLzdLs& zlfFFPaVJYbYRJkhU$-Zt<DQn-J~@VR;BTNq zVy2P+td7fR2}5_R*6uT0(k9oQ=2{US-7CTN1;-^oOFtWQrJYzE!W_n|H>~X!$Sh4y z$u9VdiVi(U1nv@5>&E<0=?efoaqrDA*aT1=ARf)CoBr))4G4t3z#f-1wv6F6B(rTi zOhG*mxDs~gZX$5V;L5U!GwKc@qqF;wetM#Rm5zFnHn_4%SPy@%L4x(N+?v%1*YR{HsC2RpejquQH5wtvBK*`KR!Pu3Wa!+FOUp z2)M5w^3)p(@_qBt{ck$X9`N=lmc=4|Mo1{IrZ8UEeiD7urW2FC!)++Uq9ZO(@xydI zLnj>ypjtLbMtSJA&=u1BA8BZQn3B`ANw;NZJab2u;3C!YF#B{o?_*iuspV?P>6Rli z{D3PxL3*R+xL3;$)$=m?{aM(h&0^+>e<844!RP?8vlpR1&=++PqhA1hOjI zHFEx>xUEV{*yCk=M?Kr)<1O-V=3*JMU^w_{$Hgak8M&)b449G&XYBeX!7N+$kg_+GymkxYQYCc zD9JfIFtd*HFC4)bh`>-4y}Km4e&!>_-nUC8)`81=Q7%q7t|XB?p}9Y7knm!sI0~|s z`Ozr>%BfrThz~k+&3=gMsa${h-Bf^?K=}wky$P(yCH_e8mdE%wtT~fY_fjWt47H%6 zr7S8-;VDr`8oLx{ic2wh8*+uG04TIEZQ+DQ(JyW{U7nwRS|GZ}e)oN#1qzC7nyWx3f2P8NHIUsmqV%wj>j09F{lJaW&4mdRj-aepj#>1bG zQ*{BxYWVsjx5r8+raol$b>7H1Y*Y~$?$_emvmF$6>7ym3^n>a`plD-U07?@LF1{hg zS&$7CvbzIh)Xq^f2r4PM&ixfvz^;EZTt0b>C{v&EzH{Fc&yE*k? zvH-Mv+S9LE#@tCWB|7aq^T$^?NQh&mQ>-!;4LN*81x(Dv{^13X>#GG%f$kK}iBDJd zHF*6%)vW}oLCpouXQ1Gf?$ad_+#oGETY+188DKMC+0uo#3jX(1d^1{5^Tqb?x~JX- zGONq!Ro?WOan4nau?1?{+w8Ij{M5$li|oxb%X?Qj;`46a`+>p6HBwc?be`R0kG={Z z-tFrZ=CV3<*sTc{@z{+zlDYY0rAR#=PQL`CoU2V*4a2pPaF69-A2{{0#*4VFjORL8 zg1Gzb_FkavfRL@QZA95g9JtXz5TcvJJVMkC$Cao6Vocr~BJxzp$%9KsN@#SX=qP3H zTCIT)e2h8wAGHUYsYCJ7%GrC^+|S*)n?EDQPv01S&NQ>B3ficcuhizmTeC1Pi^YI9yBW-tFl~$j)xNZqgKJKe&TJR$c&SzkjXB} ztiDdwdt{u768#K5-a*IQOpJ(_5UVz`Lu-eEm}9j3o<*up#Dra=>shYf_6lEtG>~peF!kYZ@Co7`JVRD}{dt!oRChJH~$- zpehX68OV2E_KT0Qw^^z&gDU`Sj~}P$a%(Djdh?GHJDg+0`?B9o4*;-}r;p1xQzZKJ z({v$f+2$`9({)!El=uY5C~2SQ{O43r!$ch=ZAxBc?9)16W4sB<|C;ag-gWO?OoIyc zk>!-L17Q?(Ff0}eKf}(#=Uvl&;_h}_OuMehV`@BAi-N?s`a$bk_-W0h6NNV``W79% zAU#dH0Ou)Q&@XhvA80J|Gm!rA-lD%w))|Pyg6rT93slA*P6$k4U4^kF*DOLZKq>w; zws-f3ILs3V3phX<;(VtONH*3#Xj*yMCJ$NjX7f}+pcBnokGwcp{VZ1n5S~VL>7WlE zguYzg`bIMT_&_5lH>_SKM!WJ+ z?KsCcTC@5ILp^<%DACss(_Y`WHFrVo#&3Yx)#+BE|B?0S_hVt>k7btZpow>vDQCBn zaL4Jj=5jRc^+(T+txti8o~Yw;B64aL7>EFA{a^z@I&-oA3QP~BDdfYwlMT&`Fs2qU3xdOLUv%nWzD{0<}Pi#$)opq-6)%B(5%A#_e0P;Tle@cjA;S! zLJiDqxBMrnerRhJ3x`ubW@O8zI<$O|iG%9xkZ{qr94^B@`YbXc2L<|sx-w&L0 z(Xdf;IHP>FF?|M&H}}PFm&Z92`~QyCz!ASNF11spZ-y_c572dIW!$2wT!_b`dyh{a zk8F65{YeWKc4sqm*aJj2;}uN@G4Ej!lomikyl~(1cW{pm!TlT{b+mEWUrr(8VoF`S zc5hnvhR|?q|7E#`BZAgbLi%JfC1YQpxaAw<%;mMp5FYupPVbr2#^O5(e0aqUOGWL#@8lBq&^SJ@p^(T;ioKwLi zB8En86ml2v9aKRa3wL@II$*ZfP#9c|moYok7!*=QWiXx}@KZs?H8*YzW=K`jfyV{0 zG6Se8&FRI5=8ZU~G3j~3l#K5gfD^&!UPtLltwGxEYTU}nBbl*q_D-QFEH?MN$#&yg z{qmz9`aGw`0cpXFhBBgrDeJ0$7ZSy=k7K9*Ry%%7nELrDd>Q^qc0T~Ut?{2!`xGDw zdqvsg?s~v7h8jThpwQmC6O>Jq;FHnR0Ijz}jB@ug{N@0CQCNIzw6c|`$0r7reG}T9 zI40eH%zpJYTk>NYmT|M3_Fw&K$H)z=tB32dEt}=4pR%d2clC@NW9s}Qmw&UP{3y)~ zge|*G{F3`{jbPF4J%XDiDhhYQE0=iL?SQ3okJXZq`@dRGTWQ07JA45;K2cHlvGybJ zqkllj96``*P~Yz)$3Jrv&Je21wOm>w?d`DtX}zr9pFS2kv1ubERrz1r#SO{X)ITFf zO>z%Z%1XfrLa$2irOqJlY;nuMxoF5mVBXa#K!oeB!>~$!UuWD|2hv1Lm`l9tg{{D$ z0}GGfdFZvHu_zN|f!Kf>z8w<0kKwQP#R&|&UyPelvQlZA?J@^<^JUNP6Dz8mVq9OO z$b!y&(_wRG8pq~=^I}mfPN2h{9B(%yTDvars15;7L?2cadB^T;NYm6HNGTE2g4nfnfV(J0^IAuMK2Lk#k#=<^0NEtmP~%sVzz{jsmrTN z^VB;x`+{=~h-F4^T9=Ibc%>}a%MLnk-Hx}KxV4(xQugk5N(9}lx1=>Z!+6eYmxnA} zo|x)ovdh$-Ru@~ zvNoM zJ^Vm5ON`d)rSFI9;pau$_>m6r?iAOzAiC~qk&L#O8YjVO_lTD6C&4YJE&b-4Z4IWAIJYzqC5jRaC)$H!01NNRrAhcv zn9ymUJbT6lzh7Wi6g_(Xi=_SB+=cRZ)2=0RcU%USiM4|J=x}5-h!>~HJ)o=ZqJztp z7Te=XVkD-JqOQVOTQRLCsPT{ zNbfCL;maAZL*b;pnu{9+v5|m_3_I!_9WM6?H~6i=tUFoSYJh||5ZdqV;EG!r$nJjO zcUQ8H*LqT;j}t6vSoy{dzp)Roa*X~=81!eVL|DXv9*XP&pKO0mA>O|7LZ#$Sm_1Oz zme-u>Uy_rJa0LuNbcXdFKnsrHH%K3Ah{^(cHU8BE(vYG1JAnPBi}VrPb!<3eG9(-G zw5PNR^fT2(n>6}}RTFUQoV9jVOUSu}hJ71aZcHf$T~^fFB~|X;+#hy(%+cGtHA$}o zqYt1dl)4~;Z`3*;?3W`Ox0(MOlO4RnE-0E7#a3Btlmu?PJ7us{V!v4r9okho@(3w4 zKy194p$Dpy4$*!C*L{5~T>Zmjb_9SOHoC&e0V3;uN2XX96OjpxuD`Z6&-rZ9Z>j1o z!*=}_?$B;Lc>%nzFzeq$*(tU$;>QI<#{$;juc(_+U`_|v^}4O>EYS^z{r4V#^U}2GoCUPk?mrKb@D_ z{v(XYlT{E$Z$rsdn{Gd~@7S3HcNy^5GRlzSv7SfJOA+{Gm@HpC%gx+tdaAYRdz5H9 z>Co1x2H-&P{&4!iDs+s_U{i+T5zd2gPJ+O8#%upXd%y0jgiA?Kt(7B_KA1&p7bRq~ zlnO`-svC7N?+@GEyehvg9}9ZT?u0{fV&xdU4}f#o@n3Zb4>rn{C!RFL1H2~nZ{~%2 z7zy-mOa|Dy#g^im-`4RNdPP;OTVmVr)U(Xukk9018Lb;R!Y&6n`gg-~q?ksRlbmcP zzr6Mj=MnsP2J=O9A-96xO8s+6X3V$6%%_8IG^hL$TxKO(DkgiG{{?{Sct9$?l$&C*UzCd6Q}Zzn9l57R`(4rS&CM|E+$Ucv8Ymz zDMp^4nYC)6DH%4}t>mXtKi)p2=2r@RH0~UcTW{Efh%;aDiptsi(!&k4zPbM}^A)BB6W>_l)}QOP z*B9+#nglk-_NQy^KD}Y#06)x=2P9#433#5;h*Aqjulth=`~b;NmHdG#K#P#y8is{jBRvFhPH>esh7z&=QRG- zF$xe(%^`mIbtDbNK}xsI>98rr|Hj_e`o$`?RZQ%o8OKekMq-~{z!y^KqUx}ppBOcC z1xbls95F1)U=|#stE|I7R(me#nw*Aw3uuc-)yEKF2Z+JVRP?A-ZLydTQti@o;of(; zQnkZ|+c6#yUzs5?46yt^j?O)v$@l-`pOPd+QR#q%A_bj2()E zoKr~-3kiiK$$6{DF-F*&=P-t0cCe#uKi}V9_y6~OKd$?}uGj1Re1dw7FRz@`N=V8t z{#6-9Dl7N~gw?Lt4%z@^zaJ7@U2=GpP!L|sP%$zV)8;sq!nX3RJb}De7tY|mYjLt$L$8NK%8ysr z7eTtDXUL+G!KNOL3717i(n3qSngarZteMPDlw9$*Rq#i5No}ba?S(U}qPUvJ_YuXjEx%Qy^{v8Jq-bwtL z^F%j;q-CO&#HRJkbIXA};i$*j6g05>K4X)j@0iI?P;gwiQ9^#(@)e3^d<%eHzkd4I zu-qC!4>!_w3Ft~%KBm8FNSN1n>z~f=$<@n#8_!OaFP;5p2M_D~M{ZO~z(= zGKj)s{K1>#sz$C%0>v#@*s?<~ETJZDCm{Xrawlll#hz0!pU`l1WaqxH6_*0e-gkFJ zC)O@@G#oSXp^kn5U1x@6;;lw_JNM~%bkeRb@XqCw7S0R}G)M~Xs&T|dtt@THBQ!#~ z7@QIlyFtw1<)!(sXf~fLD%r6b3~_$lpS1ajYi4tQSQ1CACqIlE;grnhwlCjoIS#u} zy;DuG6r>h?=u>UN{CG2Su*xc3jQBG$8aNXaTxgqCuFc%dDc^?J^F3dyNI zfvdGeYDTv!*6jkO=`Fo76aAWr1!Gm=Fw$6<@E>YdlL|7nxT&d$En$Y%dyJt zLR8+aC3%%LJN1&te7%B9lId2#9w&u@3bWhb3u&Wd3G!fFFK zq2Tz2;IjWKP(cDha63mX$z5K~nG4y?$f_8OjVEWK^!W5|_STp^)_<^HPpA?x-ERan zp1YLajU6*>Q!00JLx3AFZU#9Z9_B8v{_2AJbYP~so7kR({F2t0C8M$XMSGHY(e#5% zbzHOM!dy;WkJ;axiStPcx~7G#T?SLQM|{C~@lLjUL+HZ+X%vkQp;=04{FXw$z|@xb zL}@Mxt!HP$t9$a}%~ui2?L#H#o~tui?D7@TRaBf|wSLJUjb^_v02?aASSkM-f4+7{ z^ByPW3e_U3bWFl@`U)Tvs}G5*l!B@*C^=BSF{rE?!wilY$o5M z-N_ZmSG==@cfp2!HNT_Xcs_9$=R4ki3^ennkDIMVyeaFAswR?fHM4Ez^apDKYUGaq zlA9PR9hOPRac=U19X{Fs*%PGl#wUHEN~myNB({gB_kLxEsF6=X*p4dvGpNjAi)Y{BQ^%f?0;2Qq}-cUiV ztSyE^lP8pTUfgha%E+JlhaewN2gM14lE6^|R;_V{nfa==Wr5dSlTatE-{?GTdQES< z4<&hG_KYgdqD@G2saq*B$P@1a?%U74XNeMXOf)4d13O!r&q9W>xr&fP33;bu$M_2Pd6@K* zi}-SFP6z0%z!#XTTzEHc!Y#}gQaxn}GWTH(Ph-rsoP8faMVyZJi3n9@(IqL=rgof` zX(!6%*Ft+sfC%BHZ&7&4gB?>(kDdves>#|QZW^DKD>KjG^o#bt$K7zBD8f;zt~gCp z@F#za{HT_TP=aC99-HBEGV?-h^SfO*X|_X98VA&;|@>j_qV z`5HrbD>D@4vp2qbtDJKtn)-X?YbwNXv&_@~3KP=g_H+b1VewZK6|4-NY^M)yRtH+kXt3XJa)It`sDB!&4XDYxV1YtxiK!`uVJ-eWV8(I z@4boIKFHC-MBeC#e&1BH@H(o6w&#o`@^sha6_d=`IBqPVgFZ`FsaS@@vzqeAmXj_& zR!sveUK9~vUv?24wT>A8y_lTuRUr^r8CLPL;La(eBvpEOn83fj66df( zp|&fz$!i6X$@ewxJf?%Qox2#q~2lC>88{p=D&W+bxZ$p;>yOyJZlt5EknL$oRveI&85VjEckcSS_$?p`Z0dc?TIQ3e{9K?B*{bUqHok#aEJo& z4iqL4UCNIf!&%EkvTpA;r;iP57nz<;_{it;WJlA)O$b|1!B(G9c_D$h09`rp-E{5n zkVTshtAn%!(gU&xOH%{~;nY?Ud-%ttS#{b;pEZwV+Qs8?zVe79kA0;4(_4jHIab{# zfG=8;=9|I2FE3}`4DrS3ok3&82ctngsCUZork-m|BIk#y=y6@aYGlZiNC9u%kUfmUV!4ex$*p9jjIAfUpn-tmg zFv#a`SJPpH@PE~_ychmRKTZGh*R(%Q`1(z2p=6aq>t zZht%q8M7GR*`;+*o_rzAH$!cf3v z@4jIRPs7~=U#vr+NW5dUZr2ahD&x5Ng@9)0&JFgpQW?h+n3ki0ZGAx`(&O2(TD*4# z#3f${XMA|f_5=n7hbUZ}v02V=>@y7g%r^cf0vN*jYYv7YGE6G;%W_NT!iz8^j}CjL z$=eLMLv4;XE+IuS{3#DiGUecn^vc)VLbV0UcY;Y#{M|!{kmOE|?l7lK#d*(ApIBy{3Hb6T(-K zX>l&CuBBrF{9j8C*>r~iwtz1sy)d(ndr1-OY0VY$G*#jS_#ip+A2?*R9Y1YgPIZi?tCxQYQ$!1G)yx?4a6!_e?z+TY#O;V0N?DQG`5mO*ZgditehRKpG%KwA8&GOj}>Q&{MA_dfiClrkKF!RFN zv{?pBehJL5s%*XQO4E0pi(LnJC=vNiVx4d&}d2npsL;m92Nk8_k!=M%?NdpXVY;pfYP!Fez=i6UPef#9@S<2K>F&|g3 z^|h)~8< zOnOW1N;B5>eAV7Sqczf}@2&x41Ce1~i!Z&^Hm*s4svVs^6fhIW>Lj})i-u@zMCBoa^=_o|Z^OVrA4a4v2m1*%L*$#DhK~g{Z2dEB!`ov& zXSE7r27!02x5sRYd_nsP91@(hqu65#eU|2IG~TW&A7c8<%PM%$l{Pcyw=*pqKz<&;5p$UBKU z2D4$W>diM4Mh?|nS4SJOoLx{D@eeqFS_j>`r@6g(tCWx*<97IP;!jk~49)`&1hkAk zH214^wAaWLeD?3SL-fGc>A}Ch-XaM9?WoF>7O(X3ktxFWi`C^Laz*|4>UCz{qWBQ& z!Fj59KOr2j;Azf}U+saLiQN@YZ7M_0U}NuLgQ+Hev`@%ZKB!D_tJoqD>8p#REA`Y^jm` zRCs^^-}PB~fjS-A2P3eXtvANrJx@Je!udnuRyUdZ0Ypr`Io&RH@(vF>VRVdjI7K(jFI8Y_9 zB=0IMNxJoLBKtfIqkXm=n6Vf4exs8>Y>I2SaHZwn^-8?y#CM|2Yvd!q-c^aMqx#d_ z3`rDB-U7NE5l1~sIut4j>;rZpYIFQ)EoUOfI6je_y?M{DH!cas{!*_`c+c&7hCNv9 z=B^^17+nSi&21;KPd0?Cg^nD!`Yeh%2V5b9$|T0 zVE)Y|%{QWNEalY71AlY%ge74#K>|w^>&RD;t5QW0I(>iLB6iYWXOUq!n5*d10xx6S zgCPs$wH8W2OdkrArij9!pEWSa+;0*~F~i+)w;fwAd{KxvYzZ;L~4YTWl#+) zMosYFW86Oj_MD&R|6Do_afmCfFEEm-g?{mN8K}fWg&HSXe1ORxoH@Z-<}Kn7)wwnW ziks5Lz6Jtl^W$#iU?b6Sf!1_~TKWiHy;P}{{ zSS8LeQi-`(99*f`wy}R9^;mWh(qlQZJrf*j_eY(kOt=>%+E z4TAS?j1rU$p29*!+{edGi`OXCxk?Sm9r}LMu(*)S{ifWO%?)jK=&E5%2LVUZ`JJ$0 zPddwuRX)&^Ce(*NItu?}Aj(|$?UXm*tM_dxmSkqrG79Q9#Qd~4z|T&qnsA%?Q3-o5 z;wy@WyqHbpE$X|_1fzzh>}`I?=QG*Pn^pVCmsSn4ED_wL5gA~sEYl#Y({xtv>oIvT zOh#10%nWLr72Erxjw4%lh$_lit$n3(vx4N)@uGULwpx0VuzKfvMstu8?eUvnl3PnU z)+sJW^JseG^Lpph@$fm$&>FG$@y&*_=gY$C<9%Y@@I)bb7W4%7wwW<2hZe#w+S;_? z*IKl@sfcK;5U!E)Xa+jS9WNZAUXblrtsz@VnZvb2bM0Kg`NrqU>Jgxo%{0^ zSM2js_LhRc1+iie@^v~ryXm`f+h#&>*3`O;ihNlC`tr+TGqHc;9v4j-Ofd;gpTAn($~)Hot`a?5KYsbLE;VaPJ&x zcbHkCvQZ(TH?dgP&#SoKG8I$sm(DbhRc?&ZV>b_^1VLAx_8bPK;!eqhcQsx83B+{( zH+LgR+h=9Y58z(%@^`@5XBX)?T-R@9Omit*m-#F3jF}yZm%gOwqk#L{(od8+j4!rP zd15kP2*1cXMoFAHdf2*!yI*6cqvSE9i^kX=dAEI_*JTGpq{z>9=nIY`t4<&2&J~yl zCnaoq4JOt{GRN>F8 zox+)23Chc21f@!(cn1{V7wT7Q(d9~M%DMw2E6#Ts(|v(cYXFRgA6#uM3w!Q6!JPc@ z^WuWw_Hzr;lmQ|ka_mP7jgn4fBMeim!1r$TiPmZbr$|FaWY@Yh(_k#O9DpyRXGB}r}@*Zk6TAyOHE695OY!Tmt|E_(hDKzeLX%O6u=KNcz zwHY!St*{aE@E+y8OdBn^6pKwAdQ~eOHTfL*=8w?uz7*mBaD2&E{9P1R z0NKxH9PM(dOH)NgH!tcH?rbZrQ|+rrTfCQPY9qcDk!ch_@lA3~oj56Y<_MhTY&A~L zvTNRt+y_~KbI;ILSM+EzdC5~2o-AzVXdCRhM%vo;sjcLgM9;~?InQ2}zh}Iba)~BN z;|f3*@05o(BF9YaXA#N&PFkE`PNL^Uj^6-AUbB|JHSLswBXBMY%5%jC*||k6?TbVP638pbj3bi`|;dB4~h_4%gPKBq%<1`sD?HENoa zppL4#pMo8dP{vnhy|??@!N0w+QH}%dC`O#r)ts=wqBiAuQ@?;@{>qfRZPo~&`Nk}y z0!)T`+%LeTx0yQyYtoz}8obb0m$RtpDdqof0=^A8QKbQ`YU4Zr?>m#)Db}iT%8z^e zi}ZpXxn-$LC|NEG50RkH zj=qvR)SJC=V6ENcS~lzs{}}yRYe||_L_8dKN!=KXQzx1Rv=x)A3VydTguV{*qFGcY zM+@sykQGz5lA!Pn{iA?3<%D&TCTXum@pQF%ci7`ILY*QGri8qngDLMA%u!r|aIwiJ z(gH_~rMhS(yF(f`r%zz}i+tn_3*6lbIJHB?cS0ZJpIFFyb2{{x%*znF$wdS{Yd)OX-KtVK?mXs z%}`9y%}y^<*mvY^w_>5T11grS-P;yoas-IR@{YPa*4x1lh-3O{gvADA#7VX@qS?px)r_q=fM%ERSLy-rPFoV zb#Ib{i3HG7nVe}DHMMQMZaEKa1;-!fy6CU`0`?#xwWs_g>0F)ZxR^{ZL9%I$h`y6c z6nrfk0S|`kGf_lYaXtQvd0bZ5-?51rl5d2p(Z(-=ic;(oL%+Xxof_g3G<5GFjVA!MqQAd=a{rjPqTHTyQiI_8iKdyzjMPkNcNd%xU~dH92mOKvWx zOYeAtLW?XcWib?MyPpI;PK`Pg);Gun_nlCA0w@%-H!3<3%Ke9>c+BI=cU$xr_6t#& zpxtRFbelePYAxB@$ZDV7XMCI>!<#mlA!S~l89bu!9Peb|NRB%q-iNhdKbqkrY0F(} zcXnD-hr@@X8+1?JDsY2mcLD|lSWHF#5HRr|f|%HrZU>Meuf-)uGA* z+&k%qL*wISl3Qj+)nfFJW?nDBEoIK88v@GZvijzBR z{~^Z!sD*vxEDfkzV2i0+vF(0n;G{Ha$wnpe97DK!CO7lQUqOKy-jkSwJ>sPq?fCd( z=S)tv3_5h}0M8`m4C4tT2mNa;mM*u$p3n)0tYz~WtKU{67fQYK@-ic%?JCBd$-{YI z8)R_Q$c&wr(HA>;)2eJ?oAWo|oYAl8H?}83*}WZIOl08uwoEA%oiGk<=~Z37LmE*y z|L#N|?`ognCShQhKe!>>K}X`Z)e^R-5YJ zJQpjK_pVKbvBTAM9t(?`hmrCk;R(Qmmg%R2Zy-~r_2R)D#E92odPz83o>#s-P$RJebrc0sD!!g{e;wTzN+qaP-feqTFF7Vx1pO9O3r0ydfz@o zdHM?FqRDO6*QN&(F;hB3V$>HudGzQh{3tmhBh-@^pg&dujdb*7CMp3ouD^w+?>#TF zt<9i2b^(o(Na7LQB!6$!Im6=hHd!6dAI*#wUKrfjTstZK#e=B{?uWY@SCq4G`auu| zR04J3#|NgB15ES3e7)Z&ALVF>66=xPFlPYxxs|4&hM8*JxX6MSaS*A^(R({MR+s>5 zuiwVM-748bes>(rin_-S(ZLs^9q%tX#zw`vt~re3D2T;PU1sTL9F8bt1u9eUMHcW4`ZxGo!d1Eel%Dw2mQU`A6796d+ zK9w|=$(-PysWitAh&o3u z$>9)r6u!vrUe4aee_{OPu`6`REcSUc2-+oPQ2Jl|* zeYfyfHPrB4%cIHp)JC7E5Xhp(fu^5NSPKf(K`JjMxJF?Urxti8HY0lr!Duzoq;6Qg z`F7m${UV?S;U&NzGG$TmwnXOOY`CO??W|$U4Kjv1S7dvFVdGfyIZ6C55R_T-yOZ+4afw?QhUMw-r_goQ|e`HYIcKZdzwLhk*uG8JquNtV8TC91v<& z-yq|ryTT?+919e^>A42$_+U~TxnZf5+)yY(M(kehq5tB{lnQ(bT&H(@jubT&Z=78_ z8wv&6e;o{*Tv|La2nbQPy)%*%UhOG&#c=@coq8-yHGQYST5Qym5qqL>1oH5n;nC+) z8^5U)P*%)x$0)H{mNF~lhN~xRGdqan>yC zv>WnP$OSCA3Cm^J>Kj7*TZod12GS#F3A}SmVMl9dHK-kZS6S&KU)1i}rt*698msX8 z&1&?gH5>0lxd-`@#GYt7urBr6^d3u!3>`Bbj{Ggs#wm80Us~ByYmM&a?~D#TAflTv zHeY2u5c-LBBBEYy#aY|6xL;TmUxC&~&6W`^!g>Qb^@*A3>qc9$!oOMDS?ih^Zh($H-k!)&%^X`= zoS|z1Jz|j?w#ff4b4wuJsoh!z=3*CDGeg@XQ!;6<%3hc+y+bFd?-Mj^7&DjMm+J{1 zEv91@DZD>z;C%^$S&gAvV~q?IW~4eo<7hWjj`(S9rS>weSp15fViv1RH8utubIiXp zdtiHUQf|X*9$YOl4#vPnYEIP^tSFja@@nn*-BAHOOmjar4W_2d6%trU!h0=xMBd_@ ziY98$1>reUI1^WseoMMslf0l0noYv257mtkbgJ0cu(OtCm;S>Ad|KERXrUD8k*aS0 z^kiF5ned#9@pVDwBjNBqModc7j#U4!wes1`Nqbu4`t3FjW|sl*{P_u%c0Hngy9$ey zG`?M8eu6Rxv*eFSHfG0}@=R^$(5ipYH!1IsC+koEeq=0sM6D9Fyb5?fGwLr4GB-%I z4d)9On|;=`HLnw-_Gb_6j_Fcu(}Tneu_yuJ;{S-Z5~_lHu04;!dX2M8AFSs|w}~fu zkyK4lQC=dc-!ok=x^@ZYhRu-!^r(P+x4}EG?QPyaV0`e(*IrLRPh1XnuKn|53T$6) z(Ci_I)-bS=_o~3c83GIO--MrAS=kaAtxSrdNtMWZm2r1ri!8dzb!HyN7Y4_c*ik0y z6As;aJduP;^$95QG-Rnk;G9$tDi+%7}TL& zD8DuP8@H&puEStiygc{~;xmd$y;O-!_C+D2|= zR)d4!-_2XM(#xHjjT*Q96u1v>aB%g*Cv~mqwXv1OO$J)IdSA?a@S17_!baL#!h(nf zYDvz!m>&Jmf4^Jaaqu^j=)Cqnk4S+epSrk$xm3aARAp*M-&>ak%HAP<$`<{{JCP2J z&b@QXuo6eBstd29$2^)W+F3yFVysA+M;k(J$d4F&w|KNqaOG`EmMZ{Op&zW6#!ePJJzYk_4vva+>R@m<4UvEG4epZ0b~BD)Mltyy9{#lfbzDyl{EU~U*$DIrv={?lVtyZIwfKyP?z4Q9j7 zmkV^Q&cdjH*IZ`%wh#%MdzO9ov;%-!;~6}iC(L>|g77%Zu7!>R=x$DgqyT2L`0d$P z_u8!o*$i9W3BD)iyw%i~Av9CM9hzQJ^@bt6aL-r^jPTfY&)Eg|NW9>YH>zE5ka4DX zeWS2~^J_>>;8dtbJOUqyX}&*7ExI}%EZ4}+2_|47_n~!(SPBexcUXmUdDit{qWNyx{C+8Nj#Zb%N z{M3884!hii*1-!dc_t=O5HWQ+v%Yn~GODDL7xZ44C`sP$erpToO>}%dLkvQ^zs4E< zgl$eP%~@>E{c(Qv<2L^D@zcOZLUem4gr#_TAUgLb*uzJ>pVh9m8R99=a8Sf zjdu@-vISDBUW|4@V@JZ=UqPs!OwZT56h@c_RqZlUg^Rf|W!5zA6 zNNI|m^O|g|jcy?pEUaqgEsuh|(wZknPJ3dtZP)aUBYgz->LJxfa~ZkgdKJkS3@yoX zKO17Gw;QR@FhZ7@!u}jfzLxYykavJDJTd8>6RzUF=*&Oi-yUZH z13~vIX#h2l4b^gV8O#~_B^Sj{GA36C;w1k!m(me7wJPxi@w?3SP4d*Olug1RpraO~ z>UT4m;H>o0TlX)veW`@Lg~VGMKk_*nQc_iFdgYb7w z1o<91oFK}#Y|dbpIOm=F)7JJN3#;{FQBnULC2;dQ+i*p)>S>>2d`KY9dLuUwEqKSC zOp03B)(@@ppXU3Iy{C8!_Occ0Km@;n4H!0{w0b7)Eg@hA6)+iOyJ1>O)dDH6QkgLe z3+|Wz(||m<3C{lm6mCBT$lvqPgMj?P_7Mw&y$t2k9<-^|&PpouM>aBs|1SvT`{y(c z+Z-9;R>fYwFT}pB-JolMwK1reE29kZp^jn4acmyl{NHzCW7rkg#@Wq{Ex2(L03!VH z^>mlq54piaoRXCpc$Zlo@-R9at4?n;UsUMNrtZwZz)s)ESSne%+$%Xg=SRGe0_NN;qc)}?=LcR%%_3(=1H^q?~>^gN~2 z45t%{zh7QjCG4$5J%KRN8f$==ocvBvOEc{hw)F~jE_#;x;+nU-fW+#3>Eagio`w5n zy31r^32OS3O9=(+{^1X_Wq7WlTx?C9mWy`~oG~RgmJ1JDe~o-&W9#fzV!F}j^qN$= zodw9T0_4VYwkq2yuOkffvZI-nOEJER>j;ZaRb2JyLM7lk3r$=XZNwWU^4?qvb>aN6 zNENjhZmkr9M8kBWAC5!m4KKMrh};k-d$aoCc%drG3HBCi=Hx04#5;yp$zM8ivqUnLc}r8!c9P?QxL_a8BI z^8!-yBcimnN*T7+(AI0#8Xc1<9BsxQW{V|0-KbkTH=6$U4eXvP-i+{qPeJ!5%z5%_ z0jD+wt#Dx?eZD)~Qh7r<3`_Ry!lVICcO+v)X`vYcwc2+Hwu6S}t(N!NG+moSQk)y~ z_^A_$753i3o{z|AXM@pny^Ka{`jm^}sS6%`QXZX~q4F*q)qe>V*QA$FccF#2iL3mk zso#zKIf+FD>gqZExxF7jvyxSx8Jzc0uA|hq%pdPt#GK}S5-%2j+Mm| zlZfyWkt9MG;?e8=^tNdJ2McvbcV0;aUiva{*0{g$;MOJiInX9rMtL{7Pzc=7ir!@| zQ~BEBz{$!b`+rxe^h_N21=jgT|KT2dWu0{Y_f*uE`Vnt8D`i};Yml?(xnw(QrY*G3 zgE2PS-ho~r;bN2iB*G z-AnV`@sK5}CV7PVPmcS`iNSoD@@!1)r9R$uBq_uO{S6r9C`%hS3R{2cbQp(X3NEKt z0Q@Ge_+LZ(x|Qtb?TB>Z-*GAcf%t;RfQ+_#PF3OcNXC{+OWAn2mlIK9`%_Q5ktV5J-l#8!dC;$!PVn41(d`1J(Mz=_|M zc1IO4FL82F)&89u>@RT_6RXEu+kPiXeRm48kXh8Y z1l3ZcYP7>*7z{v(WU2GDJ%Gs*b9?;Yq|0mFae!4DP*GCn7jRd-;u(31+fPVxo$0y# zddQikF51qjQs7PXCq|6L>`ieR*&$&7JqPFXO>Z&y_q3c-;D617Rl;89I0w}r#GmVo zrevZ&^5DJmD9^zGnFNNii5gAiBu#;9on}fYhTc-Npup_`>vLq&1Yg#@YY9$71&aa% zhIQ-PZTptq3gAbe8+;d{L9`_)r714W4PUe+*!PaIn4fio*iQzTSg*{c=W?>LL$54m zsn3Df^@cofljWKW`V95#ld=_Xg$`avDf;VrYvDhdw)p;%`j1dhgYJbBHfzAk1*U4c z)P>gSZ$9XlYiEUb2t;dsYVUp#@4mKsIw>V_=aA-$eN$uy91 zzHM*e2b0gSCY#D?8n2Se+j73iDkwh?TEFd%u0B>%wdQB;tx7#P;?1i0^)@AlzxxQj z^E$7Jek;uENlpqB4&q^Zc6RZ;1D~tZDr?Lsz&+V+w3Bm(%nJ)9fS^TU_ZTDJahS9O`n|nm>$z|U};d)n;iyUgM|ra^g5BUtnaL?^)5TD zSS*lWv{XtmgyYIGBG&>#rWQ{~T<#K;rOz8TNOgyA)pS_`stqG1f!qn{!DI?Ugk)$V z;nke*OAqrCA%j_1#Xts#AD?858-z`6IMt0@r|2mgZ9XT9-VxKXc|*nu4QZnB5Hu}K zMSyFk1>{?ULEu@N?*++-w4~c3&5r3oW;ixZ_A=^WtLN1ayo*+UgLdZoj8I;!HC?y9*2fl z>mB~Dt;Go4#(H>|iaSS*(Be-xSBMkb z>x{`5kS?5HA}NUSsq+ggyqh)I4v2}qGh(zFM zQ{WOUH!+u*rm_`_t$C1upJ1gP;ODS?0~XCkx12gJyYYz$vflTK+C7^>iET{*X5Y<6 zSx%DEhWA*a%Sh<6c3~(2xF{N5Pj_6*Z}^KjwduEAte?v>&k@uNkkl4yE`~yLS{=mh z`;dpOh-J@V=05AC=x-RWs=Kx^&-BvT3eLXS_=FhJ2y8ZrMtBLz=;GY3Du#FE9>*eP zJ-Cyrp$byhx3>RZz9Ae<-iPH#ioZ@PzDJiLKB~vPQ%osc*oZIdQ1G3wKaAU6nH%pN zu;X2CR3Iw<6dby%7p=luj+&z0Tg&~6JW4ZG5-<0xcs4t|=H>T_Q=j5$bT#Rlp6=+)7^thkP4<^x?(IBAHmAl znEjojCH-~7f8{)>H*L(>w^(OVb0as(d;Ui4EzQ;<1>_slVdI=Qk-Kjv=w&A;7lwa1 z%#r5OXopabAJvY~SLD{`kbg{^Y|%RZ&Gmb(_8e+Q?X$vNUyK4h@_jSeEb856%8v2c z16-dCQp+AaGIAf^ii*lx-ygGs#kc!t^z&oi`uFn$EK>9cB(9kV!`VA)wW?1 za&A81IyoMnsh;4-APPvANetGTi22^R%F4lnm+LeY@I?J%*hEu+5TF<6RV^@YdRN9^ z9LgQL-&tB`#^VR#^nM{r=?6%~PQ5pg>B6-$qyfgjKCgRu4t#0{E5%P2Gt(!54kT**lmzb}LlOl<`$D1Ax@%JBOCt-@_ z@?sHM5-|&$3R5Ye2i5ygz6VX{;jfN*-(`4^@^{3fY5}USxT?SvB1cdv+gz(_F7{*l z7K2>rfY(oDhEycHwSFVtrvdd-AtAy3=>2sT7Ll>f7vd@J8CU-^@xO;kyiD79Uo&Lm zLy|{bT;r0ik95m1w(lsnsUIlFh#!Cc4EPlcN>i=^M$~EH^RIX@!^wM<;)G{x`n#jD z1xZXGvg8>X40xN`aW(JZ=B*|1QR#hd?x#ZMXX@58&nr0qio<*yFNedgbu z;us2~g`mkuFb*o5vW;eaV<1b5M3%kKb?zl8C2nl{eZi&(Tt(x}%~E-O!8(=SmXd%4 zF@$>b173u$lM<*`?(w}b^I@M)^u-Vrg-D1YS~^9J-!qq+lC@U-aXW7x;<8|%9_fjK z_gGXR5V{vTYz1f6*sD8wKs1zJvuk&Oc+JFoFkEys-KUDVt;M1Yp>sh@p7=&=8aEW3 zNylc)z(SJz28bqKc_8c|Y4(ARAq?pnWP3 zSr?R`TA+PZDUKgh3;e+L9;mPSX-x3!5ltNR3K6Z{m_5AnKF$5|rj2x{(ZCE=gdKJu z@^WsEMz_@ALtMWo3E{_ZHGF3mZ79e~xN2_3h;R2U2UewmG2`V7Gv-eVOl)Y-YBeV+ z)U&SrZBihJ!G2S|JXf%s+0(K)X_Z|!ojz50Uy|JzJbC(a#|_7cCl_HoJ)MdLQMe>g zH0Q1jz0{}a^IF|{C#+yYB>@nGIG`tr*Xbf<*D@-Y*R$5P6v4@&dch)-`jYs}a7t%b z9UtsWnY2=DhJUabjm~Y-#n3zbqBq6-SG5z(=63l9WsJ>VsvNnZ_s(H6V!w!Ui%U`P zDur15ZZjWW+~xsxp@z2&0Ke0w&$C`QlLKCi5V_0S*W|(wS}>nUx)^gDt)DgL%FB0X zrtO;TsTIYt9R^MELYf!dRfOfSn-I#;!M=y-=h4)5^hL~5l^CYt1=2#4oLWaf%Yjr| zx1p%h8@UY;f(uM>gK)(R51ISAX!QvezQ&AxzqkrMG}AIWmXJc5euTch$$78%kzYEd z;MKIfV-g$aA$Aw`|4r_k*8oOr%_yG*cm#NV3;!$FF8s^;YGW3l%@k{0DPCv}6%N}* zbJf{ltKub_FSv%jRBr}eX1&EyYu@^!j3A2D5T$gCQCB^D0EK9 zJ?!hHUWt7*<2Gs&D79Ze6y1OWa;%&#~|7#kf-0! z0Qq-|7OG`60AxN)L-s`4veg=XfWNcNZvL!Dvdz8ZvR-j#!pWi0e~pK>^#%#k984dhj(dDSF5hcB`~Kg5?jY#gC7@ziR9 zPt0m9k;2Aerxq=nCW3uWE%dnAZ3!yZ{l4Fr`W=C$(*$}EC=%JryW)G?a1BLj76X+jFF@q_gHI$>&`A>-!Mz>nVlPd)|^D z;y)DoP61L7@`coNC+yiOX@K9#We$@RiAcW|7x7od_s>(9jm<;rxZ1R-b8@*x$w;v# zZ-Mp%ejc`*{&W0rJKAitrKwVek+LY_2h61Fe+jl}Q|Nb(y8_?{v>bgkrkSpD8nxOydwahi+ z+bZzv(BvN?`498)=T_52T>C8KMn=Nph!}UqBe~KA&by+M zU+=rA83wi(mp=&5A_?7T*Pb0l0R7CmoDOfvArsOV443#HIBmlwT*-t%6#1{drd< zL3|&bUDR&5*LuzK#e|QgN{s0OHM`B};EaEdm7XiEKXlPBZVjs2_Z~WAfe%9;X2LgC zSOt2Y^|E7isdgukzxVd0uQO-U&l7Ejp|)jHozeL>MBMv%?>S43T5MtT4>)W3Ie}*_ z7rL(31XsBSk`8L#j>JE12a66X7@DM0oj;*2&zICMTY89N>-R5no?p?m1-^|=?2{ha z3q8%k4gEv`6P-rYxs4PT%&hCm9`jMKn0_X@dA&D&YxKfz50dAzxMW`< zi#D`fhITN^nnwPQqjQgEx_|%p-CfdIlBlps2%(akx6Ue|Qk2s|QVF492iske#$ zPD_g9FhXVowuLw@4x-?*&d(m{dwTGAzj2>FvbwhHg?#~n7pAg{**l(L%~~scpCYc@r2e;B zt8~ub2htVHY_@=EuGxKe-Is8!;ctia9oayTQx`q$7D0HC>?cRD{K#|Pf@NL{*R@R? z=;|l#{A2_#mwIeAx&mk3r8kqpqgRNvN(Z{wMT1G8Pi!+Zqr#{DG3W#&k5k(b{;vKw z_1i=6maToyK`VzNfY_=nn&hLn#(JX z)ZdhR_7A&q2DSx>U6ZqB9yt_U#D*V|eMcsQ*9&M*h#ebIE#}5Y zMx2CKk1e6EO&47El(`g?Uh^FYV71+hpy1$&8vrC2hO*bPh}f*M>fHRL)o7y~=P9t! zEqc=R&ziNeFi2sfyIaRK^cIj*pZ4DNCj9R9^@fpqyH5hPmIP&%0@@#NE`2Xm?cl~g z#RQh+OGB^3>y&dxmt;Z3HAY`sK2uEnWg8~L?MxW}+Hd_OhY^;s%CK$GIj2%rP*F7E zekt0v;XqiM!)uVlp_iA+&Ao2hpZP9%hr4&r;S3Hjt`DKTTC+{Mo3*PPi;o6L?lX(V zy@)-Eb!G7K!KfgB`>{}=&bQ^8t^AS}e68i07pDb}=}7YSJ-Zfw-{k#8$Aa<@OW7e} z(;eiw*1!K5kTYgo=L$BGyEXv!+)yRnl9z&`WmY`YnDO@XV&%DZ>0I3DHH#7jvpB1F z`7JiZSBd&m(Uq3TT3XMOoH$F15enl?hR)};Ut7~9pP@1r;!)rkxr85wLmvYGaap(J z0B`1^qgBJSvWR{4klC8{a7 zQ)NTsf%lLrjLVhfOqhRmtu^=*W%I5V+zU*WU*hJ<<>&t2AyFiiNM2y>y|n&Dq9@&) zKZ26U)~1r(x+a^^YG*uM7QcXin6q01?xOMHr+S?Lj$wqnu26p}qjp(pbu2^k7S zO}-1fhddb%=W*X96bY=KM(~9*cfwELHI0B6iFKC%(?8ydDUmg}*ho z*MHZ1sIm4lG<=Mh#GZq(xVv&R<^_;v@hyH|p}OxGgA2dP@9ij#H#JWI8;wx>+Qw)L zZ5n~P3{|tk+G$^H)gN*^ztGH=u4r^4SF**s&P4{!p5Z*yP6jBu+_!$*Q>xJ{?mf8T zXwih)SGzgqlNR3-&}QUvK5OZpVQxN?RkD(|IxUjJZp*pkF-#m0nV=2k!<48Qm_4AM z(V#qKR>{9mTk7!ge#=_8mf%r=EDyHYTcm+H1~Np8HqxX&(F*1^f^Ck0-x7^)FRk6C zz1!f;Ez!4~JG#d*I!L)zcb@mp=3?WwrazI6he7$m?WX(vp|q7Y2?pvF{Q`fi^vNMB z7xxiUnGXAM%u(7VfOgQO-pv%9(;#707G*a1ILr>1$RZqP+vK(%M~ybbi^4vN2QQn} z0Q+4z?=Lyu{fV~qC=wOXl3+`-FqWMFkFzF*83_t3%Q4F>K#R1ss;srzZ8=qw>>`ag zw-?so`|BUMQc>=g@Qf4$7Svww(;o912})yN=D3r`jfQ(Z(u3wYLf-a9#8OQKS-cN6 zZX?NJd(-gov7R&KPNJ)UwlYV;x14tS&+JFtoh*Z7{wCfL{=ERGqUep-DD3ch&$&QN zV*L@m7TdEu*#@YBPo2LRBI}9{8~6s=@f$M@v5b+{>@hD=H~Y7yP$_tTO53f>23mNU zhIFO{#^bHBtE2adl^c?9V}Apc5>>`R2-}&|*|3b@%R_rlN zf_~&X%}DEI_c{gGi=BMJN}2zMk(ukAgmvxfz|j7TrQ~!-N5FOFDkOAYw=3&YOUrfC z4X@r=j-c8>i?}gO}Cf9xoftedXLv$5;>^uTt{93|k%p2Jhy4 z=G^q{lXck^vy;Z0Gy%`DsNFw7@H9p*gh-6>I6~mZ~pmod8*p5xPD*dMX z`qlfLj1>*xjo~O)8sfQ5Qo)xVd@?J3KU7C{u#@)=brslp4{R}T0GU~L>}arat94TW z?WMFdNhApzmN<<35ufMh8J#C|TqN)_i?Q}ev`=^OM$of0rb{^=^~WLmk)Qu+UIrQf z^FMWzP~SNGU=EZdx8Dn7CANHM2vfutHvfEsUWA!1N7mPx{q)hR7jvz*~^ zT`lNhf_V8}aQ!m}XaXNmgM3(!{oy{e!peF62$alka>y>i&pV%E*(ZTCW4{tKZA$$o zkYGdUr7-#Rg7uDMYJV6dna6y2F%X^s{re%}R}B+BJqh##zQfbcx!MyxhgG0jeG?T{ zKZ*%2!af--=biz1m9%Q?CAf1iUyNsEM#R06yl1uZ>UOf@tgxkfU%)q+>49U{v+fMp3)%U@*VUAh84l|-ZkWe%VoUV$J_JA7{G)yjUK3QC~4HtA{sJHO`BkeyM-*Ee~zHxL0w#!iuw_v z>E$-}`Qix;{&*s1Ej=fVC&GFMj3B{+n2B0^rDLOnJ^-*-jIx|tD zsNS|A?ih0%*>HPx_w1E^m|<_sFukL5wpa@^AX7yC%CeFJ3_@Cr!N5dOtdrd z)U2z+clJr^5zvd`H1uo?>Q4A|B&?u<^1Bm&zA11wk&%# z8kXFcJykNIBzbvseGqkv_4M1k@iIc(P{4*4bV|HLRGr!ft7(0A#O)Den)P*Z0S-e<^gpd=HjkDga z5r?XJL-Mr>a1}Y1xaW?gf(=QPrXpm%N2++Zzfc;+7;hTpP8r>jUPfEIJ%jXY$M;5mf&8m1seS2Wd9D?Z*S#zFGe&X2~cl;u~s8oc@D zIzL|JISIYSc)K}ZtWr`cN*gP;V$!07C^oAFd-`-Eq<^Q~%@wE?weDXLPF_!;>2Iy#4+_D_*etT_X2BV#DJV0=pHjbF7+Ib$M)Agad;;ghLKIR9dG><;)i2N&b zJhz_XZ2aptc`N~W@|Xwg$a=y}agaFzxix6bpO0ji&%xb#ElggEo=sMc7VA?^$zrhn ze5=azLYpU&YbD&L)Wt80<&#!Q@_7UwD?D=Kz8zP|;AI&5S<5X;;ZbzZ-%tDn`Obnr zN+2vr9!`mDDag7!F*{0&Wgc5MV|kSOnY%j5v#>vnj%y^FZN+J>&F9w>pyM?&T`J!N zZ{_BM2kL&exVRoJcswz(UVXt{!URqlzz-wM3CPv{VQB#;nv>?|u2+!5ZAgXyW=WQR zg%a`{Q2AJZ&8*qsl=e$YXzQ*8@DzV-Lqpgdgd827w`q|7r!RvMy#cek}FP z?a7E*zcmS+6tn#S_x^ZNuWBs<_Hw6vA+fk9>%i zuLh2gKawPC1<59cAqF-7zD(rl8-3UCuZ#2AM)=xx6uK4{dwulGp>U0nwI-(cmr_wX zWY}LH(|b?q)sr`1;koj|Pa}SK=guPhdnv2k{o6uy&)fDlwO!LDAJS&*Q|gmHOddz! z#_RUU)TH+~`${c6X0qCQlFaCRhWpYcEo}M(ZZpf8f!D+pqCeyfD8tQ!IvcG$wNn=a zQclf2iZv4wQ@ccm0uli9Llguj@ukwvz~x0WqcGzQ~ajrTc35D_s{ zqurhC&z8q?kQl9fHlW3+;RSaEi`VK#&ddwT-uuu1;f0yC2GirHF~OD98UE5f+00t1 z)gHPJ=Uc%o)~wq>Q-Rh8wBmysk_^Nm9;7Ka+?z|uML7~4znLFmXVOIFg~9HKS2XAw z@?MR1D-ob>UYo6l{i+U<9xlk9F9dmEQy9iN-K=7%8>hcp+cpce@abMAPD&nGy28nu zyCzN|%~D3jkC%4pCRv3Asw|+tz`uc-xUL5S^nBl}6FGS>$!f_?fh)9~<=Aztvbua}<&xT2Nqe zBWLJ?X$rec4a`#*&NY4GJJlG;+p$O>Ik296J`nI(kb1ad_V71Q$a7JScUR;u#0dF= zuK_3r5SB-sdNF{S+5MAwqdk*g8dz#9=B55FCG6Ps0CB1-&Dd_{U_&f5yL9{k9iGH;RwL*^!*&YYU-e+^D4bMlQ-?)y%G|auwAiwE*5tDpf4Ed&pGUN_MWJAMM>i+@H zpd?CM{_&W!AYz);zw{IQ#r5OF85{m4puP$)HnPUScg1hzg1C`>ir|`rE(2!}dAo*} zzO9n1m}c#rqBY6-_y>mpH5m#uQ;+t}4zNecj&L6C<9K8@@|%s`*qqt}ZWhtTAAN8L z`OYUzY6mm#Zg+5-_n-OE#V6mdL5G|UevpRCGLdw-0M9Apd_nE7uzaW9HJXXYAhXI9 zUJ!7pUvbhLTg083)jG?>>X@OG?J7S3PW_nfN75SaPifxOrL7l-LuUOG8QGW^^!-hM z_B(SDT+;?az?OMR;QPM8XKG77r5U%4c(K#+wE+7*hsD&oKk6EO_e)*C0F?(pl17{I z5_emGyCK~>FUyFTy6dfRbuEUfz^C-HB+6)*(#pLmo!(iy@cTP_8dgI;Lib@V)OQud zMK>h2pGl(5HC+lQcQ;Dfd^j!`fEP z6y95MB+zK$PMaeFTn>1fxg*fq>)Xg?{a?y;?k~#*lM@U@U>7WRIlcv(qa`W~dtXlw zLr3n(cZkAJuT@NsTGiTbrCWB_?+%LsEqYBC?BJz&hvkkqG+$~>P{Af5dss%?p@_?5 z)NRM`@SW*0a2MS({GDFyJ8L6L8zwT~ehv}3u1^nxPg2pHEZFC|JIv@9Sy#|(<46QS zS>*qm2pFiNkje}RS2sA>KESB3T!75peXZder5V!{R*bOX&NjRq{@on%FQsmm2JJA- zT4ho%)Rk_(fC__`r=_i?B6lrmld#C!bKcU-Vjj1ATtk!E{OQ>DZNF!OsT<|62P0w-8-qLY&#N?i>EPRv&wIy~n9`<2(;~ z7vW=2kN!5_bDE=IVqcaRKL2Wdx}pZZ!t%N(kx4dU&Vz6Uvn5&M^iS13_e9754=aN;ei6FWEw zTl2!IE+GJX#CZnl3wwt3{2Osvjbdkc4^nNRT37;d}qSG)2*c8KY3J zUeJC&!<6bh8~Th#Yy7bSbHFwSAFq_p#=AWD%Reb;M#{1hIL~Q!HyHQLq{p(jHV2Zz z9!p^Jk20Pv7-*Mz%O5dnz=xk@L@08xs&LtPB&du1PfpQxs=sqMfY21scUU92vsjZD zMA6H^y@~KXL3Lt0+9Hz7-AViPc$IMlSJ4Ju(ZJnwqgas5ugZLnKazyz2<1el*DmBV zlg)NE+!L(4<`JTXO_qJSypa;G*^M}WFGBW2$ZI4PIXP)&CunGz(i4~4RrMNiSm$YT z@{KheopyZ;mkN}rv-u`-(>;bZ7`J!?U_1ZmhLAbHE-*R!%q^9p`$YP+&GWGww_$9} zU4Y+jg00?=o#DH_3k(kt2PncUt7^#NU&d*6T82(3iKuAV-#>mMCn|Zb{o=T#3*~Zc=eouo#ivvq*Di^tpJpX1y*3kR9*DCy5XWGt5 z9rl4y>A+*n@{u?I|#8d7ce1{(vKjzF2) z?Amb!qoBwk?ATr4T@BHt0Yo;A@z$jzF32~Jb6St=c*hzhDZ0XYGE=tE9W^tYg}u1v z>D4Sd-?j_N>P94_|fp5PDS^9=f-eRl-oTx1ZKzW}es`z8A2w>jh8aL>wf2HfcP^h{Z7^L=U zA}27+2_WM8V(V z370>t%r5fNsK6Nc=gqlS5d0bd-9{|j&Eed`b6a2&2jWA;t+@xr?4YW`EfTzWi3k}1 z6+a1DU-*|M+qEt@M(b7$wyhhtTNOET3#z0l!ET{eJ)(weM{h!%^|?L`R|n~X*-bCY z^Y&zUbxy8U^f+R<&WyLuKv-(~Z7X1dXfl#s8=SSV{9{KHBod32vht}m;WVD+ zop2;TCdWDZ_Nm(Lb1m{ z?;n+F7AOSCq8&{+wJO=gP@4$;;D#`WxC-pJFIMadS>U4dz;orP8nU5 zrp2`lo_&FlhdaRe;+1BDVsCCWzBIkSN_!={MJMPcFuqx+bof~>x9_}Co(qb0gN_Tp zq_6p|@~#)l7sYO_2?!aa59NGCR7mT8F20r*LpB_*dkU4WGQbX<>-veN)AO~6vNb{f zkW69r!Hv#j)wsxKVB1IHtqD8heTy|y|FV|P`w{L*Pp%sga<1vyqKG%v>a%eCqDZ8| zsq9jZdz5?)GMsuquf-RQ*H>{o*i;(pBgYaJ?0CsGiqz3ICii_?*>Uxz7Hxf4#c6 z$JS%F%VrbdxV3Ss*;C&h*0{xF)r;Fso<&vJy?zn^6_gk zH5FOyFu3=R=`0e1+2OI8C{(uDSZ#Cf%0o;)SZUO=?A|NODNGDExTH@Y;Uf zcCu_P#?x1F>f?-fI#r_cB-7bZQdi)uK~k=}FTtcVC8+$t_G}&>=bjrW*esTv8Ymn_ z;u0p$l@S9UJmKDZ{B_;|E?IUOw@@tRZkUXt?c4WKT%1?wvLNl+16x^P#<6s!Pf5Fb ziMJ)b)b9OSL*zG=!4MRwI{EH=JG||t?6a-awRtrzLJ^AJz;2v8YACrkeK7b}l#cXC zIF6;25aB#CWb;Ag)=iBU2ce?|9kTw~oZF=!&UGdEW>QJe$qa`l-f=ReHe^0Tr8@@P z*nSV@TQWq1&$LqFW%0RojZeE3L?3wJcH1?-1J zIL=4_bLKNNpSv$67Z)fVld!>X8a)We&p2$nDW)@3GxiYfB*kGZ3_4)KA8!qDODW_`+uu#sQvKvl(Y%! zlE=G*-rQ2qXBaNzS4=tghm8udWo16&^pmG!uc2ug>E2^CuX&tyn(qn}T{&7Gy1>To z!`)Vav=4R4Sk`vg>rC8;>GUhecbl?(z)uw)6|OG+sb$$VjD*jIt~3W4t&LGqYfH%w z3)>HkUFDN6!GD`>*wvod7x{iS%6Ja#WK2}H%&Laqcvbz4J*Jyw;;LI6JD3}$y#o`$ z^q9t>>AxdUvv&mISkrR2BW3+E+o2jj(D<`qE$upGNB!jD?;_E@eV0ffnHBwF2qqfM zo@6Bq^54|XSj2Oy_zxr&{hn zhHbqnaTeGV@|L>kB?f;+&;O}9W!Xco`*jy`@Q&xDs^=9b^^%=lo`~;)8V&uoI>T{6 z92Kh>t~Y&)Q2coGS)sz%L)GGL*8^ivBEyw(G90r|7`T-c!u8-)7(h?{&p+FB>bHfb zEz`Z=dV~QhB}|SWw1^SN1V>|(c?cuY67SwVO~>N_Kjzm1KctVkB-k1W?R(J@-554} zgKEtGE$fUp&?UJTElzJ4x$W17JD%{vYX!$?D06eR$kmHUxm^RM?X7W`9oRUQ}D3jGPTMllKI%zxKM|g-os;|z8=SdLdnbBALiZoISAy(I3=EbOh^bZnO`%Kat4^?fd9xs9j6`(DsLH2aoT=$ zIgzalTfgOy&Dq($)5i(aatCgZ~zbC;W$sQi3k*BUCi)-PCjI&QDV|v>2D@ENBM5douE}#|!5qO!+_JHJ^1+YcN8Qb9tT7DT$ci6>rX~4)9%+OY4@@ zuO9=2>lk_BL4ZHJN3woOjWc(nj`T=3RZOUuey}4Md>~TihcyG4E**x&)#CNrY%-9i zdtC3~kCiB8Y)3gN);ssd{$WUJSE0Ru&)k-$ND8wxqoAJxfM)3_9%fIA_sIsMbXF(w z8^}Gp^31fXHbWAz2{LNK#^)>Xg8vaelNkHU_h!q}QQlQpImVhKO zX~d-m>YS$Rxr(A>N~+{}+hcOnWw38qAon>8R~yDx{(`a`iS+8eBHN>Ei_bGnvDyeg zhSbW=O;5r*Q4>j$2p!s+X`@5DwLNg~GRb&yEi8p-B7JA^C->5QULk;SE83m=J|)aJ zLA=!1y^u>+@XRL2d-NFDCbIglPGv;$$FS6T0iLl*r>Up_l+j_}O7LwIji!b_Yd3UZtB^g4p%oIT7L;-H= z4+0hGbWfbRC{VZ)KDq&9m=5&8!$9w|4Jxm3k~G7-F#ZOilYPLy4(w7dXM=1_Mo|Az zufQIZE3-(M&>>`5>u^ohD^@97Y*#JV{N%^VI_K1B03Tb-RSxr{fUd5`|7oh)s4K_4 ziDsG7z@rSuf>=5n#Zmg?}lgE}tD1Y-0$YuYN;L+5Tyc{VLP^_7@XS zPQ%p^y<{l+;pvs!V4yUQxj9CU_FCDiJ*_328hxI8<6W7Qv*-?Wxfu3yWuswJ|qx(ji%_hWfYz;CX=_&ZO+v$SG zZid0`-?vy34zAagGc5x(0mxV+`yjPs=lYwJ313wbYS*vEoEN)!-E?7~xkncSiTKvG zFdnq-ZUFii??zvzrz8F$DYx3(bU5SBZJNOfx!Wh#Irn?b2o&bXxKbRj?Po`aFlVb+x`)1h7hX!;g^UHVWDQRY`eN#eBCP>y#}) zhdy~@Bo2 zB?FL)Yx6lRr;%6JcVNS5b9W>uAtOvrPz*6?4b`(ZO6+ddcK6<27(;I9ZX zg9(eB?}0}CHnx;yuZ7m9W327&ti=qH2hl1#+AI^22pJjRo6iLv6yDe2Uw6ujw(0Ly zV{SWyQn`SRedzGc{k8jc%SYeZ;ynqf?||SJcAp6($4D$?wj?W~d^r5MuLMb&8|q_? z3sM@9^-xcLgj_9oMAD61E|Xg748?8Wd<*jq5hgBYQcPZD51aQ_f>=@RbyOut7RqTd z&5RM8Kiv380vT!7Pa;XGVO6LitIr4%>zhy_K)%bSONP+cIH=7;=G=cWwsSz+=&fXf zq7^>7#nFCGq58{5Yr@;g>w=3j6&`a9>$k~e`;pS45+?1nhMu3JA9^smIv zL5vVEDUx?w&Q=#{X_~pmS^E?DY=JnCb<#Fr*D&dy&Cd~o5UXcBuI+^yLk?r)S|G_q zcEPuL0d;$@8U+U3B=Jy>c9@I4yOhCqw2Pj)BfA*w|;2 zj7_PCK)U~0QNe`FCcfaH|5)R2BVJqhtk1_jUbV~N)zJ_{bwNhBI%nv-5Mn5iYz}U! zLLil;f*K}kGDf8Pb=fYEb2c`~IO7LEX3@4&a7MYK#FN&pO3&8E?UJ}tx71sBbv-VL z*3>xFFSDM}xZ|k?hZaWFEsOWHb_R$Y>820riBc55aOc~Pp-T0MVx z;${f{py37N$tgkmWMD!8z9U(^y7Z0N-(P6?VE2u3^UTDE_&aJv5)sQ*ihJ>+)i&Rh z161Q*XON!f^xf>n=OYKb4KA04-81@4o)NjiNq>pzC+l_!1~N#q-gWy!C)8}EyXLY5 zNCn6t`3k?r`mGt11f@T`x9Kv5D_ZO04N9pGfJi<+D0+F8Sl94c;9-#eg8=Mrxm68& zITS!1UCrc6m6#SWxv33V-to8l8__g}%S?-8> zlhMrM=IF8mImtt;^l)pjQ!C$bd<7|cOY#4Q4vM5B_7l11*f2C(Bcl+gv`@cvdt^=5qmI`MJxVS_yAUOa<-0m8`-%DvlnK|hs_jC zUC%gS_58|YlyAG}et1}YKvSL5na@`~1nQ9d4XyY!~lpB&=Y}w$iWylfw(^)xIXx~Un81lH{)k~?D~Z0O(abO?_^_a zAU9@KFV$+ZS#@-+@*(@|f%XZGqsr=q!M<91lT_#$B6`0~+oGmkQwZsX(G*9wG_ zszI~B^6Re~=-q-%QJkDHH*MDGJj~~?jQaLlN2yQEsf8-Y$Fp+jF{p4|>Jv+GV}y^i zRzvLiZKW8eoKtZ5TDZx3;dWFqyn4k1y7`R_==3J3gs_8khp9g8+T}NJT;QfG_j>xq z$|yJ)qvG%pw!QakAvUq$BG5=!uwot`es%HWBlnuvxHP%Ct~JYRpq?LpuFp^b*JaA6 zfzvUR<*;k}jQAIYvRBt9XGL^1Ju3UmL8GEQAEn~p_Q-F9U&-A5o92K+C#gPb_+U)= z#t~fNy6pV&vnCJ9E;|k!y#xf5-$K$I>}a*7Xx1@mIXbR854EH%0bVXOQawSymDNol z$GbMz_TYoy6yI){KKxQ!qX(v|TJI^&0sRmZulmuS7Ys4W}y{{ zI`0ZbMW=oLc=n`CrsxKvaXR(S4u(Xs|0YV*??_w)oerk`#IP;uOok7$B1KO7na0;k z8h*P(b#rUxBMkQ{#s>$|Zb9wpfdTNXs~!_?tE6h+*o9xQi`hJumx)biol{O_SL z9@?RLXV{jjG4>t0R5QbiAlMG*w=C%280g<@Gu(~vSeIi)HdCM-iaMX*5o^^HsF00 zC=b|8r746Gs2UR3zI_e?Q`5qK{V3RLv9U%B(w~usIjEocmP1IR_iBfm1Bara`*qOb z;0HzxLrsV2?!wep%M~kI0Q#_e(gXfNR#5luRf`>%LU{iC_2t-=y~Mo{f89?8m-Dt+ zwJ3D6S}$TcfGZCD1ruk?Sst3O`^*E=4(PN*M+e*Zij0O%OBlqAUjsatUB{qgF%OM5s|ss{n17=-gvG&NJlb1X$VWeq1D>y zjhFCl{3}%1{$1G#If%A1Ov@(p;-fPf?u+T};w0{5;3P08X+$T>I!Oumnm3_^er9g< zjD2yyi0Q&UA7k8uw0C>5Y^x!1%cAn-v@MD+O(vqgbm-XmX5N1*Y4XfA%osf~Z_?<& zKFU?d@hqUYZf$Fe5z{927@dR_h8>Y`-~Pe8=yuq3GfP{djCA7v*G&DkaYH9p`{0*Z ze~{Oh2fr!ygKRH(k+vD6)}p@gwq4bHEdV_?5V{(#4vA>Ms7v3K`0)>09S|%~4}8_g zucoIH6m^9liXGXGFMUSJLk8Qrb`#591sy#E{>*vrW!i?}H2Hc1;=s3!Lx&{k{MBR3 zoh)x7_yNS`y0I!X!j3>%td~OwC@KxME3{ZpOvN?J7{{D3L}9;o{HuVlxe!B$45?gq zWxwT>{#(;22_L({SA;PUr-bz@H`=#$(PKnD6V+kCl9VP#b--oG4d*`5MW%O>N0aN) zgv5ZF3B_nJE>+5fR>?bQIxN(y1@wByQ#-z*CXTME&|_D2rsxG86Q~MY3TF2y>Aw^8 ziJ7XrSbf%I{ei%gzVMIDCqd47#okswmo>?PA<=^r=WDY!E$t0aaauMwSI~rd#E-#yTwp%r;e@lqmj4tD8iq_Aw;nmF#K+>W$n<-t{77wn*V1&yNccG?;K6-kaWlUVOVjSk=x@Adninc@} zTQ`&!!cu1uZ^++ba%-5xs$nz+2){ocn*)+0+s zXuyQTpCI&y2otJx`FL~~-*KM`Z~yc4ZzHy0=JuypmNfxA4qi4G_*(>OaWh9if_Kxq zEjuMfofDcd5ql2Eu0Cd|)41GLr2A?TQ$~KCba+Om3l9j8=u7M;eqqt&Ina^AP4rLS zAq!vR=3q1JJ0I$7^AmdjLaa#^CBF9mWLu*3rFS{)K!9-yl3YP@y5@E;W5aortf z*6E~iTUq49z;;2GGW3Ty;FGE5+wIzI#u$x#HP5E@%mki%U?}}uA9=<{N;t_4>^W!| z3wmP7R!9lZ=T^)gVH=h3-GBhzhe3wNi*FCvd9VF~XNA{d5U8o5;0VuG552yKJ=Sr- zSxe00(yp>U+@Aq~uj_2ZI zwUOuEMmXGFQ>_Yl>VCh3J5M)%BKA*(7Q<2|hxZl~kkCyUlWX=m`zxPis4IN>;^QLx z5nt%?k)``K#i%S=S6*OXdPNqZ)`M$%dYEAWuYVFL`*ZMd0_&k^Ezo+k9cqGf*$Hm+TM}hZQqCN*Im^Ct4s%)hUunK5^(=JyMl;IDkDEHq{NmV{nB*%@&`;z$@a8Hm>iT|uY z2j4f|%7Q4h-zHT->^-rzqs5S8#!-ksfS+wEL2(rxAJ`CQR_Yb*uAe^~CyB|_t^M8d zPM8VLlz0?coxM~>q898?0#Jjk-dO#$rxm*EvQ?JPEM5WN|0)K(3deRI$LqgTg(g&N zX)Zvh7AtMqI?`vy5bBjSTY{Z;(P|C+P&|p(V_9ooQN6KgIWQ$(!Ys$sN)9bZ068=G zL+Ihg!UxMYhK8p*cepfUwE1Et$|TDq$RPWp&*&@@=_JY)PAj?Jcdd&VSQK7c^u)-&h#Bp9H;`+ zS;qe~d^YiX_MR?tp(POgQ2JPpcq!1fv_K~B1<)uC>X*^6b$nie>>ue{)wP?xcG$yP zxwu!EoXRKG;CNT<<%#6$l8lh!h%C+@C!T);Hosz!)&dD#5y<&;P`2`Qc zuTI|LZjZo+==7X&Z})b}=;khrv9f=#!U%><0JVW%6!eZ&Ugh&ctg)kZB2c2`|J428 zAf^AARU4nM(E?n|MfD+#vW~-Y0H90O`+0HuzlXlkeAc)Yk7mvnlju5fh}E<0P5bQx zGgYMr5nHQ2C^P#9RQ$sZPE1cIO`04*`ai95lhg)U5_CW1@5Tn$eJ!+d16s*8=j1(8E1p zSpCIX_+4xEhAUJY^pw_L-JY&mdDg!Xp>RsQzZXruJ92-idi56xs>ixNpEFUWdQ9pH zy?N+RBn0@s=fCXLTD6)jCgA(yQK}v`^k##{;r0!>moC6%dwr-2;btbsQ)o5szcHhS z_5D~XxrzK3l3HUlu9}Z`^hg;r<#K&fW!D3 z?w=Bc*7lo9Ue?1H`>SytHm&&(V6l@qHoU>enpiYg#XdEz@2U> zhC1|I2B!B&0(S@-Jnj<_&?Um%^caoQ>ylSH_}{aS#ziX$8ZM}5lA`Y#IwI>d4Qft3 zVno`nrI&K6(`uGmy@&F~!z5(Kivr6#5BEnjBnItmG+MTssg3QYSL5%t%OL>EM?&0V z*!AD$A)dAl#e>yk$G>$HDt$Om`s>@WO&w}mj`;h-0oNZkyo`*~nNlQMLl^}CUY7ia zSZsPG8Q}{M7$iEV!4}cF`d|)%SN|{Kc(TZeR!}4LU^x+Zv!}6lJm=MRk{+bh5Fa`^ zU`;3&S_?+(F7hIHHnTE*Xz@_A5BKr-6PZFLannh4Kd(Mk{2(iI!q5K+I{I$O zIe3seBVnt=qumFeBbv#z?+Jge6^;8P{>S~KRO*RnI9h_p8B8Un^uXvKNoml9jnuU4Ea? zAU&%aFR-Ze`>@EVzIHh<^k~fVP|WeG3Zio{y(&}sVC{bEUpEpQ++#E(xA!S|BR{fm z&;Du(V200AFZ*^my*BOQWe3hmb0w4yqKKcD6No3$sC4pv@w7>!AQ(7!r(dZa0|~$D z_QHViLK{LpQ?NrCmy>!z@p+>xY)JMtyYwJLlk^uL>E42JKXM-l;58b#2I~`=;lo0? zJ&4bxi%RoRSE?TVu!zC~|BkDnfB{*8r3firOxA1b-qH5dki{TJZ;3vQ$6WD;s7)oP{-N{U3nZ^(`b{q4%X5I@}(?l`$5@gtChUuZYN8p zlp4Yup9Fspj8d;G+Y;iG>*8J85WP@2Xbh~xb^+5rwZL&J?PY{PduvuHyj5cEDz`AM z!XaF`bkJGlhOADG*d64+w5n*#l9vN~5Y;r-EI%Jk5&5VGzo$G@4?o&7TYDGw@!VSb z>d2oZ*H;K9kjM)5@yo9(%uK*3K(ph?x-sbMcP+!Nk>>cRMU<~i}^LNh{j&hswt+2r| zizluA+HW_aE&e!;FTbMvnEzJ^qM?;2??zLJhPrehfr>RJSV$!$hrcX-iSrBm#kPoI zT!(D>^!%oZ8@pa=+;2lROeh8gng^$MB$ewsYn>*C#JhplOVz-_C?;_;K1oF2fCbVr z>@2tL3i=((Fx^bKe%e^z5v@QA(|(88w-}A+r`|IMCP1DKH7_&}uotDnX6=a`@MWWU z@RfOR!(||+?YgYmFEO*%a}v3rPP3=|UFT)ACm#ggUj4~Gp;V>u^8Q+Wg`Hr8?&xKW zK8-Y?*vu|gkI8k^z4yZ#3&XZRBU;v;PO^Gk=4O>U8WwpTnxgcy&$2+blUz=C|3E{p z^47P8h+LPK;JI4EGsI@22tDpvtimi3PSBw{cZeN|#cC03C4t9VD-8V44gvX*`9@J* zKK1fJ-~^6l2K;ho<=iq#a)!?P`C8DN+9km&!6QwVDESf2T>4C$X_#62vvyC^K(&7r zb)IfWEn?QTH8$D&X#W7;b#n3K`lpuHU^#h|R`rvr;tFq>X1W2Ze^j8kdJ@W-j%>|Q z%C3U^wO6tTA3yH2E19dTkNUup)gF-856^a?XTzEcVk30mP6NlCvMcTOc}IE4VlX*L zEsD#%!7|2d?N60i?t5<72d+v7eW%CX=jAWcj@tu{rH{jS$DNk-M`p4bXn5!+4xF_- zL9Gc4k;g?C)rD{|m%p>E$7CA9>Xw%IJ~x(SYNxBTlrH7X_j42(%%6}5o@5DU9E3@wBTD>08OhNY@uJcsYdx)7sr5!^XUM*E?t#*s7Kc#M6 zychm(XImh=&Hn%=GbFQ^E6;^)<&B@tc`Oon=3^YGDTs&+#798CV_Kg435T0n5_hxR zP)v14UwBBCh01-{u=yO{KmPw{dKY)5|3Ci!(?Kd_l~6gX5-PEza^5PHO6crN5t5Me zX@^QBIn1Gw;~d_R97f1-TaJ^{$YIK1u`#wWY_s$B+wc3mzW>1MdR@=!`Fvi_$K!Fo z-|m>xVc-4GDZz+=#Dp_5XPOXl!4XI5Q5o`?@3Mqd-NRSX$m5>&VLn-(4a8N!n0w~FP2Kofq{GeAh5)f4s&OfVEoz!jU6?D)?#F^(hd(}# z3ssSP4q6rFcEqghlYGe>lIJ>ii6zrLOo#a$66+*R#S6}9_G68-VDd)!!TR~?{HN}H z`%}(=T-W@@|L{e2D;8w_R6<3u+Z9A4&YFZunl`~b>=+`%n)G}h`Ed?OoYhcpS%3ab zRy@#{E@!kIsr1(o>YIek>%(Z{eD5NV@r3xJ*PqE2;xn$j6A?S+v*Ivy&z97%EWhNp z5>(YIEe$+;Qu?~v|EX)3-FwN7QkpTVRe&6Kl4q>#@2AToH}AGt`C^7lYaX3mWd1KM z+RgT^yP8_<`Ca61x=LKeY^MJ2)-K%GtG~3~&^@b~TR#s@&;aKl%_irHr+?RzCY?6` zYW`~SoJvr2;S(t~&zLy)Ti(S9-!vZXN6OV#=%_E4J_+y`L08P*_kb>XRnHK;C4qtZ zsf2L_7{pXUyCh5UkPjvlIp*4;` zP0b}|`^+AQcS|b?i07}vH3T_?a#ItG5Oz3v*egLk!BzW!R{njm-x%E4g(aTpe55mI zWVp>EKk~+V;cPrWiC7+d<4C1e0ilqun2rC51zIWU9|;^E=IPGGTvGRkyC#XUkIqF| z&J`3L!taoFZl}0sdJS|WDCvITOZLtw)dm`_U7QIrT(gpku?)5<)v^catUOnp%QjQ8 zuM?`bVcwyfy2Q?V0Gvg)b6(y1mCW^T6qzTQbe&o6B&G8%Q_s%L01w;y9LL`^1@CUX zzg~Jtb%&YJyFUJ-FE3XfbdErd;K**)>W}@S!RWZo>Dc0g&>;OaRv}zLE@v+&x`9HD zD*s1p%x)|Tn)$?9j!H=gnSouF$&1q|Z=xEY>OJ8(+9yFBH)mX13$0;HQONzZ9};rv3(WZqdBpZtdS4U>tSry|=q*sJEsG!pB|x1o2IZ)3bum zGKysv_XG5HP$4DnEg{|F1oMAUeu_GS&;Q3NH0Jy1UU$F0=)eBR-MI_qjcx8bM$q5L zrWC(1_!RzATRO0;!@pD006sI+_lep=dKtA4JJ0oWN+%rJEk2CPNVPDa8nq2wT3=a{OeSj?b=vLM#%hT19pC?LQGCU8~Pk5XX2JKi+ zUhueIgY}5FIQ!m&Qcr2fwG%P#%;8)*8ZORU{t8(quv~GgcK@eWF4m5>Xx%}fgI!c) zGMT<-pW#Ha&4osH7X896$A?c*4-%>LAlerA^x;WlLHK2X6LB(O^yP7sc48^B}P}&cJVFP6JyZ$M`o05PD)=#YV!?bJYg`vID#$;wuI1(HghOvc57f5dXt_Rl zz{e8zsJe`q7}wYlP$BuBR0KTYh2^oX(mOMN^SRFASa!7HYT^V`t@myLRBi2%jQyef z`t9cfO`V4t{(jeou&)S{tloUa4YA+`D5)Lgy zyI;kLwu{ef5ue+M9i(y#a3`74t%IZ_Y|L3nN7w51T~1FPF6y!u53c^lRE(gS3RuuC z5pp}+3kRQj9_qo_%fHI^cANKpV}C7L)X^U~Zwl&mzmozi-f4-=h5P?vO%-fxXAA$Z zN&DGM4Dj6A35H50OEdqaG$d`2GjJ>53~@ui>xPS!25i&1kZR-C9&D-MWnNQhiTh)-3=pR zi@@{9hR!^W$h$CqIs5!Jo6IWtWozf zQ!k?4G_XFfU_A7e1U{d<#`pWGurv|jI`_P&*WT=eBUPrFtxe`a#>!Nt&5ArSd)ohr zw|%zz8vetRSH92T9`c0CH&I>6r`Dh`A!|8$_3%?kN_WReX|0DfHcneNtd?Pv&20mt zEr!#ezB9LF9Eoq99_V(>4~>U0)E1AR$~2zsvnB)Ozap)yK=MDch^2=TVx<;6E2t_s zsB8#Dcwo7Qr1`w{M5Zi|mOL?8Z}4*6YGINyd8Se_SetKTD>TiFdRvrGg7VU+7_fg} zpS0VMV@chq5Pu)pi#YRwhosi1eTZA#-J6Wz9V@x^m_h3p}Z61wU z+q>5Jt8rpp_!X99(tKy$8{7YvSQDEv0^Kp^Ul;gHcdqt>gG0?V)=5Rf<>9<)D?MOU zuN*wDC~SE0oo>GzYbfZf{Z0DYlXf4WfJifrWxM?W__k7o@OG7b+>Kq)cL$D(Y1A)8+puPDs*?XP0#xgHuMe6-h@qzWbDF(@j>uWyTp%wx_+++P+~T zJ_ycKMqDeJT&BvBnwaSVlfodYJH87admrX)KfQYy)p`3VOciL{FitE3{;1L_@x$qM zf8IF5DfhQ{>p!+-WBD)r&&eU2QfGsM`%_K5Z}3X^RS)KmXpoC8`M-F8^!F%W6a)m` zF)CSx>S_*mKrCLtND$z;;RRt8dPegiRxkg7kpZ>&1}$p;UWZK6fzI1k2IFz6J7bGc ze8`>g2F2`0gpj(bkqb76AH#nxSo{bS-+p81cba^Q3=VL0JI=!FCMsu0_i7=uEoyyk z#v<%b1%X=tL`@{T*zbRgaV`}bwUWicZ zIu&*GgF~k*F-Yg?FT|60sW5;R5_H8~#9F+IdME9~sLa%TvEhS7$9B-}{dnO~utT(C z*%4=*VLepe*@=}A=0oJ|T^ujWYdelYyH{bqvM@h*dK;u2Jkt2B z$dRU*&Rg-1)w?>E%%o$1USk+L89V{!O=r?40DjrVX*=WK$`v1pG{6t=HnG8k{u`+k z9quQ|=$`%YP4{R}W&S;*r=kx8^N*f+gP4=4|NqI3yG_msNP2eQ!7OBroU) zX4hx=C1w{#8P^|7LGZ%AoWsq1bw2GTB#!&utvkvvRqJ=4csSrV(Hg>}znfThrb^G7 zY7dYNX!>Yk11TJ=2k6>c&&EIWU8ux0=r(yc$O18mp%4el?}a?aI3FzG-ZhIB1*YR? z3yFn@asN$;#*`*%9u8J?Bd1 zCI&iqz9mY=W4l|#vKx74mH&I(Ij?UCnk0b7GfyxH>3)D6i=q5zE?PgqF}}^Y2(fF( z(a!9!UTg<_*g?2s0MDdPkhFL&Bk%~;o>qMPEn@L4u|e^vmS-jtBq_o)wpb?9VN9N+ z3fJN9MJ5oy?<(C-z4@&vGqMk_Tb9hJSq@vEg9mPlWZHUN;QO59KPiz6|Hp^K+MUt#?aJv*1mLE= zxs1f-Ik;a#p`DhERS5qP;z}$6ylhYXN3sE(BRY-sK|2Y!R}$J552sfq{4?DSCHdCw zLuOsdQ`UUFBG=3glfHRqQtQBhRyd#tAUTLYuv0D|gZd-Pg_T9LwO)INE0B*yOnD>s z_c}R?)Gl8Kq?u+w#aPw;o;8=x>Q9%6oXSwd6Bz^Ly({r=E{X2a&_nl_gK(&X5cAmmjo(yld^5wt1cML1&gL6a^3Vn?6#Gc#-Zu0E=~lAWdhW zO%Tr|IWtMfE52-8vHNWqZx>N%Ip&yJZ|N74_neZXMi2Yt7Y~7h07~;_cIxpM%7yV_ z_r<~;gJ>O6v8jNZGOFLY#r@NRJ2E`fX7QZStWvObyW0BpwQktgSkdY5oLUd%sg&mG zNf}@MHkv=Cd_Bot1-#N}cqe|$)Pwf@YR-04BrkmSU>Wqm>A!5@vF_~ckasS}h*x4? zAbY|Sgl&zhZ}4`h&9!UXFW_fO3GG^UVqQFy4ArkktIdK=s5O6FP1%)B($ml)C=*26 z#6kr=hWr}vB`h9A0W*Jb_d&#;EmCrY#Vo3f_(P(qPd`4Y2(E{wkQNljPbXTEu4%4lkjI^_d*ANrNub`JPe06gjAIx zyqMP^VJ{)#b4#V25qD6=8+*h*J~U&5y+XUXPuxQ!k3l>^U{^J1BdGjZ+*+EBdPDqT za+Fy}XnN(Xx+CbOs8*_tCbT$KCBoS@>n1GsC0(vX6WZml3@-5EAsj2hvRZ#Uh%DTLAgG6(^TLZqm;Lz!w>rGdU#kePhu5owRb2H3~l z17No&Eab~zXw+s-0qO+;v6aW5R_Oi)%{I(iUPXQ6e{MpyB6-MGW9upfj22V$PC+Y&NsfdUcXULhVAnBQN!*##X!U#pCdt%R(B*$Ak5(3fn)u_|@VgL5xW&*YVL4CgiuwjLU@^X?N8>qdnP^4lh-k*lwXtn%`JU`u4$?$HZ@PM zf)CivRkY=0G*Spcoi)Mj=Hy2r2>{naWzkqj9OTgfVXU?=`V!{`qkTFGr}c9@moOJ~Se%DI z`ytunD;II#w}LNc?Zoe71G(@k2jmZdXhc8_E$28QnKs~@c?>0Oc?%0rCi@=48|F*b zOkY8a+$UN5!wbU08-35#Cv;8^YE-$jn^@STOpCMd8IRRtd>vNvAG^1_=@&*xOS5h!2PRzgOv%geE8XQbWtUl$!IIwvH18^w;Jh)vvUH<^{&VPsKH21VB zL<&0+~plAh~@ivOgkL30eM+|kHNjP~6Ht}MG}LG>_EKNI%dQ)XTZ`xkLWid5wr z{=Tum{Wn4p4xY&(&TKjZDIaI#ciO*YWOP~s)1ocCq8u0IXU=$(4_aKHV9F)wom|yl zR7~Kr6RmG7y}{I}>=Ca($)kbtnKXiGD+mRewqA%n_M^N)LH-wqV4p^4xxajbWf=#f zg`GymbThvzB1_yyo7AQK@bG=Yi8EkCW;pxycw9thoO&NPbFHWqm*0%|)flRp2Kj5f zVaY939U_0tWLxsUWGyBBirPi0-9ci_vnA<7->6rNGi8xC^BwNHDp|WsIAO^zCJuxAX>!hspiLuSX0LK;7PuX_%c$mV>abHHZD8AFVd?fnfjlMim17 z&%+yz)54c>mr^?`Y9HfHK^zyTXpKqTwba>lzNwWQR~jq75!r@VfmSEQ6~$5bR_mCA zJehE3@FNU6sTu-bKHOBrOb%&%@=Anm_Yrb0_#TT#P&N=ex)|cIe;4yqj1}Xo6CyEW$mVKq>wAs2`3V|Y z7V9`h=7dJzhhP^IN5NRI_jLc{?QxW{RGF_$-{zF5Q(MImyO00MjgGyJ10IW-9<|Ki z{oPoX>YPfIQfH1bA9Z=Z0$}yl`ycFRBj$hLo(WB5b5|4AG5Pj=v5KHH__DdR07hK? z&tskBRjVL|$!jg)r_n zNe>eHs7R@83YDo#@&~5TOG(G5EnSKNw<vM=(iWIF-*<9P&w~fPv;32vCl1d`_~5_*GxtyKE{N^x2ds?#f%{4xl@Rq z=0%H6W*t<`JT*x=6miCVy2X3?ePp}c`t{AGx5jOl+KdF&ylLL#Pa8?HMmlWqSQex( zpc)9(j|uO3mS!|14Z+^2Vu8J}13uHaS~94RH6Ip)80NMHWNLG`Zuq|7Ij;phL4t8c z^Xo4mILCXGFFZw$oOOO!^5m`9Q-a|z%G&m|O?{@26joMJoH`h}H_|LiSb1sC_94@B zhvh)llU~-5%6NJEXNBEmNk)bq(Zy*bE%nSj$PWY_ql4+IL@fxe+G2`AZ!FPo;v5dH zfj)i%9xYAsu~0pYWo79)Luz(fcC`gMy>d6ZM1GRx(U%$*@^hs%6WxYN6GG-$-aRgf zviuBHE@$f4@Bvu2@#DVK7Tfd$SUUJaPLJ*F`HT>P2ckyGn|k= zyfpX+ToYYmbR=(1^fVaFg7`_{6ssDDx$I2av1?BBxRKsL51|OHfk+}5_QRB%_nXa+=5a$F9I?P=f6n^!Dd33d^m2*;@tTP`X4s;2j`CQ=+ zB8m`;RD$HgG7~b^bd_z5Yb*xH)^}%5&SZ8w*_Dvo|HEY;ZomxiOI(dp*7nFbgu<2a zd%G_p7HqBw)1t%9vnYs%Dr8AuJz$8W#h>2G4pJ0<<(SBT{+LF>?w;uQGicn0@IL{A zQBt|+^^;kEnZh&nQ@&R;S#wA2n-J-+-qBdpNRRz>KxpIob%-a;3!DK^od~`F!yaQH`k!Yo7l%+{PR)POjZS@EF@z0 zo9~4XJllQ`7da?f>Ti^E?iwy7TW^JDH9z{+ILa9)9gazRe~9{3KZ=>07$KGmkav=7 zQgaD79C7odd;mp!eA=ZFx-BK)P-deY>>}GFnUpjJI0p$Vu74=`zrv*h5A%laYOX2j zm|0aL_D~D?YBf7b5XYjBE&)E;?vfON^~1!A@8ZDoaE;o=;NBt3EAk1@a>tThn_28 zEVD{dPNEdedw&5TwW@PJH;HI{sdG~5T7Z-N(UU$xB4A+_xW#zX4)ux(j>5^j`a6g$ z*V5oy;-FrcYw$A@aSa1>uetYiL(TVcKnQG_B00_3K85`RG|XKf_vIu0o>jagUZ;#z zc1VMSOy!mWBJvwhK(g<$nr_Y~9|_W;zj29~9BSUzYHoOHk<2;|ECFv$m`;C^b zNlb?LF+JNh{HqoJ-wKggg=AFtKl89zhuiLy)O=><<}%>IVLbjKh*YPlJ-D0Q)!lhI zI*y*0Jighy?d_wT@F!ym*3&+7+LYK2sikLV4?^=>@QzVuSq-R!K-B(;$#ibVC)n|4 zOKVGksPan1&-VfS_=;>p=2NBe9;QCU#1mH4`u#77Ms;8lSz0$OhpuvuD}7|*fvVQq zVqjk9mmz9u6)CoE%R9;#H`|&uWc465(|5YcD3GDT_KNd-)z~z#UCEMzE3j_rr29>u zPDbC{g+54*vG|)#{Oe4XH$7&}KN}ZwN2WG>;&|rQpTkM*tV1d!Q*>*Zw?$ z6Vx&&4ZoT%vh#m!&c*q~MSw)o?Yo8H&yoH|&>GoQk^ieiUv!1p||7mGB)trv8GD z^{w9&qSX@lt^aGeB?ooeVhTy8nu)6}AnbcBTbb51i;s-W z64b~OLe#N8Zt}*iwh=Pq(AmYJXRFn3>LsXrq8WCyoXwuF9oKk*MU8J-U~R|ekLPr{ z?~ik+d=_$=q;@Z8a;PL&g_E4IL*Q$qCjUTM1{+8z?yVNIBziL)grE&4S+-B!VY6sOJ_s-{-9q4T+;-pODoFsD7$hUH0cOaWZ z{6qEf&64cNL-w|04}cF{0fqjF)SxWw1cSUF=-0aEyz>7Yr6hh_ZQ_&|5RF!`2C*hi z%;@pt)sDPvOwv8dKvOolj|zP00N%$IZW{=4Lw-cw5W8vQ(ul&8@tCR@kE$<-rRJFd zXQuf}Q;A3nYi^h-i7x{Q_?f(y?McL_ehWLUq~da5#8Ar(9S5W{5PgRZCPO+B}p4hl>0qW8~nC&%CPC*HJ#o3ha9LTe|`(bYmAg;P zy`P&`TyEwi)=vy%Y9YG5wk+0E>0X#dgke@Ipx3#VeWh(UzYw|Aq9vYe)I*5o(1mN+ zaj#_jm*nC1F82|M%*bICL$Lu?0;_J4Gz&1B7GTq#y+KxryYe1Z(Fd=8!p=;`U^8H` zw|@i7?K$C-gqi79@N3NZV4rM4WTnktv=5ux`L6ElMs-WQ&CPdhMaq`0 z^e?;cl0RxKen#w-Fc!EPPX4n##kkHH!o03Wss<+2gySgP+Ri{_n zxDAU83&R*Ns?yjuz=!WBt#K(K#e~Bzh z63H~8&gB~c=ZWJ$U+STy3=}lPpSap4E;Oq@-ry#`F@3zmm+$m@vlI-TpOrkS9&VDo@9Q`zgy#_uk$qGTi1828J6d#5ve1oR0#$7xhHZZwoxl` z(yv|bwOmH$hHhwpS|0jhsA01&gkh~5V>86XgcOhU*8Gve3q+|Rk12YTy^=J?aCKl8^w~Da%6j=5L*A(8`Wwr+#7cn6 z324*jsFAIb#Y=NzXI9(n^Ofvk@}o_Yg{%3PUux^0Nq&hzWXs;@l_xXCZ7?qebv^b7 zl{+WBpGwL-8i;-?&9HXAe1xwMJjd9{2cAgD40ZF)0^-*!bUa8qcWrCFS`4d zt)yKwNgfL)W^G50d@V}3(5L$vWV_ekaW3ho$Kk8e?qZ*((uF_mx0wl=GR^pH%UQZ} zKPj+gv7hsodx*}xDf4*hVfR~R9f`TO@xWH!EYd*P&D1~cZ}@$651a~lQgm2w?mjMa zx?H>%OQOjJDenvzMXc$xF21&fZJa|xAJE-=RRi0s%FS*TB z1*!OK@S*4C&DdAV(T~^tKJfQ@OJwy(`N)JLUoEYyh&zMRV?!ju^Xq!d{fa9SaMMC$J{fPUx()`~hX7Y=zi-Wku z=)7|&-l5^{6tzLbHD=nAGWyZXrKVpG{zfL6N)?mQM4uCMJJKZIoM3*F_;L4Mhz-}% zHD#Dnlapl+S;G8Y#u6p;7&L`@4w2$IlN@g9PVWoYfeIQho3?>Ym+zHEsN#y5^#i&U zTFDMin|bxz(|GEtSaS$!tBIE8@jfx3c?&H$qmg~B*wo-5i?8{jj{p`v0Y&U|wEpO< zTBCLryMlxNHgPTCJTUS0%442aA%SmGlLISBc`D8J^Zh#YCVcZehl#i0u#D5JZk@Tw zkEU}Y9SuW#RU7#6Dcg{)#U-<#p}l6{*{Vv8P%&M1U3#KlEJF_ERf-RKh2fs0rGSp7 zw+^3e=Mw{TVpv%#4(voY2m^B7(>smW)W5Mepg9EkhxfH>GMY0_tSA#b=fM_6n}=x? zCX~2)F7Oxg@u?u^b0&x5_aL6|^ZnK@lY2nqRIO9E3d3l!QjL9oxqReRgT_>7Co@e= z)0*V?3VtTBwdVsxm)k@Yk%Es#$6FPK>LwzZTFUJ1JnnUAKR@T270kLEl)neY!hWSl z6A&io4&0~rq$aD^?rpx!fn|d%>|5#m_lQoFi^ipiRm~bvaII;A8*|IF^grV;(cwi- zYz8Ox7rhy7GlKvN#!Ur?mE}cmD$OENM|PsWt*#Pl;+Gn8hJt-J#Y~w8J%tov6;pqE6X6IWL)f4vJ4bpcOI;S%dxQt zfQ;jBQ1Nmci@C;1P}aPvBiQeU=K0{#abRT1= zW|GZcx$GrcWUykYXEG*0fK1T}yxVN~g63L$1^4#9v*ku@;SeuWqn!Am0~@1h5xGkk zTL?(Gifeo&TJWAzEOyY*)H-js_-^<+(kBivGO?@d=$hOgSWmNWeNaa_?MaZu=bv#%$9X_q*O zh3Mr=TP{M78JhEzAX!T0CQCuikPskc+AjV~$R@5p&XV$W;X@&Didyo4t4Cs#NV88W zS^X}}Z+U7fs9PE^Ib%a@y8Op%0Y#JFBvk61nUWvV9x{=#7pQHreR+?bI* zUa8fL=yY1m@tU>Lm_^@b`b*q)NFUEMqG7LL>3p*b(39)+y!r;zkp4((xSr93KBO&B z=5DpaV@%l5A5zT4vn{bp{F)gv!X~d!nQUF0pZ$wzzlgyMf44G`85pmNCIjARgsCz1 z6Rfyqt@{Mtl3R5HqFC##6!yXVqjHrS~$+2G+!}z;~ zCwmnx1C5xyRVyopZ!)y|{r*&_sJfjLMx(WV*XB)LiC48ajxhn*3ql#$%i%Btg9BJ< zov;*4CkN^ApGQs;^gh7Azpq8G#IY-7Lh#HF70At<_GbTOEV8UL{A*}U8}*GGbB(9L zgFbl*PrFF)_|X-__t1;_nlb$^>+vAmExhsH8+ayo`RCg&xSVO}7wdxZp$?h!MDu@Q z;2LQjtyiw<@jgFmAm_ zLN2gRrKe>E?t}DL#7k*jyg#n&-wC)#j7u&cIJT-wdFy&aEoZ%&?Ba1OLmDS*_pTW8 zf7dskqRP#wRA3>bO8JnAv0y`s`L$Hk*pluKkssTl7U0b)8IXAL|3axyQNRwy+Q$W5 zFRWPwTBm_8zJG$!bZ0|D_;h?(zN*V{Ncf_+yljGx!sF`gVwaBG{vO5A2{i4=%vrVeGnHzvTU&9U7hnK4WGCw zKZqeBuXk%(f!D%@|MWNvmG2%xP;I+|&cEg3WAr9W1!oU|%Jay@ec0WFuEm;{@RA8R=h`oT|0-5*|iwy@yB4Y%@G^!K4 zR_$xYKRMQ#%T~sTQQJDn*1M}hGhR?}k}u5}muCc!cygAMcz1nYXz}c{SIgb|GjA-s zqzc3|Cu#H8KubFly}QVlRets`b7NJCzJ?yNDp!5Hcro4;+ei0l=+ewe!;-tJt=&5; zCicMAP7I>taIN`df*~kBW-5LK#M4shA3-xW$k1UB_vr#rzrP`%rub@2Cb$cBe$EuI zI%QP@uxwwGzVcnmH?El}DFU@Djwo`1_N@-w4E{OT-KgUfd1CxgS3MjesMn%*?>eAy z-}nJ*1}1a$e;pxyAZb*g-8W@JeoByuZlr@W{Ik3_|MQ_I?IAo}OV{cjG#wApwNPjd zKT6`uZNw+B$akuYnocYKd5Th%uz_!A^b;9eYwQ)@ zyajXq4Q{e4(CwYLP`#pE@lKTYhTyMEHTW~gv(z;0xyze@ac>8lB)6->VIN=vjXQN7 zFhM@L$qe@MhNs>CY?(;Ga_o^j4=2G-?o$^))sw#9Pl+nXInDdVl5S??Lld~(n*sW4 zt%mqXM5XA0#t1D@v?2OkE^8IW8H0V>i^W47SaIs;oWy#d<@kI&E4k^`b(xQ<63B< z16rpvpL`KK;-^fCBy9t)tU8plC>nHp#ndx_xUf%({nNNM$XWEm3+F?)ry)M`hJsr@ ztULXhclUhOHI!m8s4*bV7HdPe6@(7edrrGLnJvFzKB`~pjmKckUSmWdo)6qzoh*ka z8_LfDk;+rX|FL8{kjfQHihn$Jm8$RBI3g-GRFAK(t=bY%C!lQ>b>kwMfr#4rFxrn1 zIX?VAVgt_7SQ{_iZOfCjO5d^KQaJ`Pr7Ifv z010dKekfW~>pZ2o(cjETct)x&5St!=>`xKW60TTnW)&qOa&IDc7L6g3X94z3-~+)! zzgXhW%K*O!Ow>d0=jpbEz3}3mVEC@Tn>qsc(CFlV;h4qFUeBESo&Pw67E)q&ffOt< zK4xfDSdky&PVgs4e8t+o+~#zpVKJ~TZkXVVELSQ z``mrM6ZTk%I)-R4w9Yo+2-@In7$$!=rqAXS3h`;LaloRJ8$i_JH&;;Uo;$XCwZbm9 zi#i7ySZG+G0ZS{~@S^YI)-O!H^uO5zlSobORw8>8{9tHlgBN zlM;$mXnu9==}gJ!yeKKg!?LV6;`?A|OnKndl5$#n6SWNTD)cPJ+BjOqCcF(2$5sRR ztb=fn4!BC5;{!g7@Y{lA`9FNsN`t~Z9&;?e_JQw*_a05Y2dJF8H%1QaE!$%Gn)(6a zV*Kf}JBDYcbV`z9!S=+u>`xyPM7}m zUn~9(43;i{TdlAIt~B0%U!`?hps`kzVNJ^Pv9Glm7d@(D&O7ZAD0vma;BJ?Y76;1- zPc}9>{Wb|*b6#i?!T*qn+bF+c=1##gf>bx0JWjZh3CZ#liI+GA$6?lsxDQ5=Hk>sN zY90f~eb#D#GpEdVRSb#>?u#IwbbX?|^N7RIwasDAlpFS~Ydfgg43GE@bG6>&&wros z+JS==Zx_OWwDAWQnfM}5n91>r?i%u1tHc#X+!ne?Ne5zf%Hkni-;-No0sIkV7#rL@h^x+rmKRzJ|HYI{vG2{?uk?!US<5tnQ!0^ zW4;BR`huPao|uhacNKh$(zs8ZaXZ<9x%&;SJvhkT8~qY%4lE~Kzn>sbG4a@$7<9{x z#uL-5TBF_y)T8i2s`K)Km9V>r{2p(%p0mjB8rACAi;1I$r4^^Dz6=N+ySPzKZEPP3 zJ?#SND6o9vdN_;;=Up(j(C56O*EXA)zG9=Ggk;%I)l zKlV*u$J~&jEyob1hOe;j$q`7+8^NhAY$=+)LIeC899ip$Z?<0u6X;-%vrE1K?>;^z zW@|ox)bu~+IORaU3buEizayO&1%G3qnl6e(zd=Kwf*RTywY7kp&}0TWe@Xm5PslfW z$LROi7Z6#vUJ#ASXe|M6bJw!Ow_L$dab?)^zXoXzsZA;1m-6K)*E!0~Rf5YLy{{(L zI6QivoxyL`ji7%`AR2fn8D6#wF!oWv_|6>@`~joIist^1A8!QjwROt~jxnNcc4iHf z^f2#oj)w|!c#x@D7q#-N^~DmaKn87_7Q^us>S3+YCa0#6^&Y}19UXxvXFUw5Ow9M^ zV3Zit+q#yoaA)3HcGB9M#J9>5AzQGyML{vUIXvoj%{vq37USNa>RqNs-sZcugHwvsovg8N2Qo$6tBq}l|Q7?g1! zQ6D%5X5j<<0RMYp2$2P2nZld2E>Z2SL z-0R;|X@3)018=#kP`z2$@wi$U?u(R0@7+iZ?g{Q_T-i<&QmsnQlUolCf#jQsz*7rc zZW_HJkb$2n{Vb&JL!Evn#9p1A=uYa8xXQ$s?^BZE@M4>T$Onf&%nO45!iwyN&ZXmX z;hph}8;Bm!?BMRZxPg`kvo%%f5fJ>E$3#sGDAG$X=cXSPp^OPf%|;n*WN!B|9QN?d zVx09v>GSGd)F1)7*%jp^c-U=q8{8Gy9$@5n;$dSOR~Y7 zf~)??#Nq4-daiiT|zb7l$<#;_o-hmHTB{P6u&+bzA)%KUo0UDlXh){&XA=cJBiG3~uV> zrl!^=qqXYj%(DTQ(4Uh1J&2rMizpSoh3{@6I&t^Klwk4ab^`P$i|NaIt|$u7oAFl{ ztv*>`dh#BbvlCrRgZ2}R-!ifN;rbOg1!^Q2A=B`qb`RMXeIu@n-&D>|K?v;_r$ReD zrrVUKknr06*TP*Ib`dMNwMq%Rr5Wl25N0hH1-fGTW7nGJp#s(fo>X$|_$cly}BY>&{$) z4@o(SKkdSj1XE_JZCtdB+xBpn)xRC%`}8nu9yKD2icJKWA`=n1gi-0L`^Wrr!8^$> z)Alg6;bBT!QEij(o#YGt2J^Fpi=&y1;96bI;`2v^i=Knr?=Dx2A3z4zGaGJuP|C*| zj6fw=)NOkhBzCG8oadGQak~6Z6^)*?@*fs8>At7DOTkz*f_HJFnkM;+Ui_ZH@V2Lk zihL$7HH4#dsC53y*X1w~{L$=8d-hrkT2vVZr$k7o9RkS6$*`%=%gpktbcDm;xU|Ck zICjkc6P&<2QjuRp@{(T^b_#|(s+_sYXAu6t<|{qP4Ns=>64=%fSu0-a+{%nww)~82 zbmnqx@cOP)*N;&-5?1WBmFpM+H06orG4~?KhUY*F&mbGHdz%uoeg+2G6_>m@*f;sJJ>*v z&0YH}s5gK)lU*(Elih<$tKBZMzS2!EF^|mFtsNq&1k`yv*oe$S9&k^b7`8b6izqg)8;#X@8{k&`4C7IEnLJH7vS4HM$G`7n z9eirDm?TS^^VGN=*aMXwq3>_1kLw=JDG$%hJ{)$weXvDsBRwB*(isG`#w zht?U1>A3f(44Pqjde0*2pe0o zq6WK1c42*4h$Y+6V!;c?VDTm9iwN$YTaFetKjX5xEqxJ{Et)Qiv5~Id!Y9cW-8{sR z%cb10NR;p!Hgs%Dv;AOZ`*+)LchSA!mrr~j$uC|&ZeGR@Dxd#j%lzZ%G7SnUs1_&> zc%WMrAB&DWim@DEvFn(5wlmG{WT>`?X2G0OyHo*rHFU#m|I^0B*B!dH+h03An3)MUdX}6!~0j z>6^(0Z4vA6s(}?|7LlS-dc`m3HYzF!oW~8OuO;AulS} zMeHs}IxVh9(KSm%-i*En{W{IiS9>7k9^2sF5R4fdb=QBHzvQXPtw6*co+;bh0t3_0 zuQ*RQ0bZp-@!mAJglstO4-#$bn#dG70`D=H;?2Qfuu}v;ORT!Ef4BXpz+2H3fOXo1 z6Mo`AQ$>;$+`rPCVxWs_L<(p2oVi69z7}eSwNWJL55l)L|5iw1S?*h0JC{q^)jYDd z<#xK%Wl&1!+u}hrl~ScxE^~YUTBt^4UX+YNoC%W>&hGdNPZ-CeOH8WjP4lOcNavZ z6Y}W+s>HfXuW<;|&R2WcszZnaMLx&%{-T5`5inO))Se)!p77%g+Mqjs^}bzb`mt$K z^Z9q-L&3ng&5W%r`eHA1a8-0Hr}eJoM+ybPtY}IM0#ylx_diN#x&avnDV^Slt`kSrJsI&M z(!}~rrj&BOpGvoP^P4@bNP*uX^_;75LvARn_0mw=TKu|?r5hq_U*qG04cTqLjE56c zPbN=6@|{mGW0Ol$M3HSFZehW402qBX5eYj>u?+7T{RaUMwahG+ZD24)s!2C^Sw9tY zV(o-9|KUvGtH1==H-6fZ-#&+o@f%U5eio?02kghQbV}egjrI-D3I06c!G;fQ)ED|g zjkQ0IZ_APw@*Md|8pVF$RRG({GSLY<-v2_ZxV}xK8qcK<>7Q+MXFst#`4MxeS-l(E zy}ru?K3F6U5rl8Nm|d>LZ8(W3TQ1Gz?inL7)5~LXi%|4!1Z^o%%u^J);12geSSvpw z<$2*BKxG#tgG-SwB(v5*KM#~p0%8XMP4(B7u7a$*rYl$k;^Z-akwaKhJQi3%IL$iC z5}13ywo0=lv6e1==U?v6hzAJe!6RRiptUVuR!bCZ&{4F{x9zW2-DS%8cKcCM!dexB8`HT>OC zoM-5iLe44GfpxIR=mAi_x@3ir0t3 z!}M^OqKMC02$y2--!iv9qU`QS60j*`iK(?tMRc?;DLT1(7;)t_hLX79okP$K@|k6l znk}7|Qc6O-L~9=18z_KlFvzWXE3HEX+@z~+%>fLK8e@H=&YE^v1MYYjnnZqEi+wbn znY?G^KKlh?IKqY$zsqQjiO$vErCAaoCx%~+7!-POwv*wn(1*5)?vu&3Bt}w4ZK;=E z?Ry(G_`^N4Cm;2_4FZ5xB)MA_TtySaL8#22jldsg%Q>rV)e}vl7$+OCtF?#cWreNrD$jU;pP0{-Ec$Np>TB+%ve~{3lXOUK+S`s zIUE$2T-Xs&C%eUYlA$Y!u)L0VnLEGbt3B6ySf*LU)#9OT-N|x&m{Y4ResuY=(jKwC zGo@!~zZ>#A>r{_yvX^tNn|cHv3uH$gjB(N8h3l8)+ud(g6)pc7;+=wf_5EyvmGkjm zxU<%fKSw40?0?J4wxS8)qhZ;%ql)zhErZTR{CFk{M&kb%20-OM82ZG3_4}WjRfe2@ zglz6G!|!Ww=`hQ9f%j;Q3}>zl%@@$s4h&zw18evz29KknB)WvHzZO+!(6(r>JTh zfBULJG?ibG`?|Jk(}?&4-fvvUJLE9;$x`wVH0mqK$=ZYxT~p%d(;G9MQiwjbk@9Ic z`0>a+zS<;8Qr2q0(pMk1JEXbTB|Y&CY2Y(6$J$d~1_RI7y-t?7G#jus_5|pB<#s`% z!Z+C8Orahbq4ig=+s4Chxwij*n(WPLfq&(`bx_7oEy3tHMt zEe5*HCx7R?2i@iNUBQ;dK2B3`^832vxwPH>FX~L0Szvv3kxcqyiFCsa%zY%(->aBd zlzgvI&dJ0`7WmIFDD3;v2mK3Pkv)HFw}nH71j+_36AfCj!ASjHC(UZt{8ELD@@^y` zUg2A&37AU`V}A9To&RNAHta;i1>_1J&yT6Tn8m+-kjL}=LT*&|#+iSdE%*zYuycY9 zj%3z-JUQrR9v>SZmjDM{M~s?kNyWQ`G4e}?C$vEge#l4rZ_BST6EQI0XVlacp{3I` zjUJOhmr)lUdw)+^DGa)3GCB7u#ISIc8{zZNVl-TJ~p~Iv{@#L`V*w}06AtP4v9&$)su;Xyv~TvhKEccDv4W#_($B|SxZ1%8ox+c@)ja%ka|BA1fcgt9z^f0XaiZ!rH|DD5Sb7VFDE#LNRW z>cDHw5yz}*_akQ5hB(y!AdVDt!jjncJ5Yhz{i9TaV7DXdX?Epq0_}!aUB7~4cm!3X zfnGYgRDpaA7<6pb+i>kn?lhN})0obfK=TfW9iRPHO~VCL-x)v16)Ht8o{#N~Pj&eE zZ|J0CF_a%^vLaKXE?>k?X!LG?qI zJf(23JNSic{_2}d*dZ2W%iH3tg~3urd{enGcitgQV-NkC_zE*v=+*q0n{A;bn7W*6 z<2gffqL7D9BJV@Gwy$)3Cu-7f0*X`f9OEXYnR^~QBxQt-rw4m4s`jM|>9vl2Xt||d z+^_bc{?}t#gGG%wv0?3lnT?4;2K_dVe@vLa9H$wqG}4pxnBhwvNdLSWG`pD=Zzm2^ zjB33g9Xh(EVLGg0c%z8Y7HCth8s@bx%c?2zFo9}KGV@SN7X1i5Drg@|Gei*h&EZDe zO!Gb_^?$-SjZ$H+kJ4dPkE@m=?p0m`cE?obc)psw`M_v51gPQ7kSC&sj}Y(Z+Vl^s z=i_w?)|5FEIq7Len7O!2RPV=xbi8#lL&Lo-YZ(fhXCFB)`45|IU+_Ac!Q2U5pu6Ea zYIVuxjGs2@)W42W4%6HWM@P+S~ z%Vnxd%<9wspKLZef23RnBecz5r3=Zss{k+D?E+F^zOrQR)&ND5KBVp-8UXm?|Tp-EX47;T;l{ zSd2R7+1)Om1;0eq(LCNTDf{L;qna+Z^k8<^(8~!ri^@@l=|AM7{|60F?X#Wo7gHq{ zWRHjXx0F=I-@}++Gvon@K*B9(NJ#kNVro*~hSzNZ-+*IFh__Qh2zk-9Ywg!SA~@+qhqnwxJmv4uzgvtHNE!z$oq5^Zyg9 z1Pld$h9nNdBN_Ky0^8TRrmS;~H%Xe_axd(VO>mi?ajEfI-h^h3th1C)aeHX!zpHn) zDR7a;qtrfTAL#`pH?6~0TYK`*^vz4N0DHj1TfrzHf$FN|tG4zBN~b@WI7AW-JvsKl zAwjc+1uHIB9b9eX7Hio8ar5Y%Q+4spl_#V642ly{lU$U0NY+?rvHap*(sJmyF!`uZ zh$E#qs8^%3+boH%D8)04ci9sqq-(pN(?;w0rD#{o%Fp?Hyf9!&hE;!%9G} z=GksuZJSVNj5o4RAKWpSjxZ&&;!3>Uwx{i3hO7zJn_kQxzBiu3b!zeAT!>m$NI^q< z#LS~gjpw3hvjA>xqZXoaD|~Tz$nYH>Mz8b?5)e#8)OH`wa}zibF|%b# zt+N?09gp5^Dgw?e2ugSd*W7sud|7AuDybDBvI3M5LqxD-bN&G2V)BUs!$qCGxY~M3 zkywjZ#@`!Jlp#slhhgp4%nVWEMDji#ibhv3>2(+5n33AJR5`^AcY>RUJ zUn`XFXk>%$O$>bl*(DLVBW8Zj$bRqt4Mo9icgwyo=Q1=;K5+*0GcKjR090~SMo1mp zgP;Hb=sdbr--CI02&1X~!9&#s*!!N+;<@T(g>UY~7!`Y)^aEz+UqCH7AceZC6t#u>u2gpSgVcS(VX}CXk)e9-8`R$1j@uKIY(>N4sfTn2O1~S8-jNTI)W;J=r(W>B=g&)ZwRy zS2sKJUB5;D{3|!WflWN91 z*HjlL_7VH95?t2rczCX1Mq%Uu$$6$h&_4%WaYy;DOM}N#Y)U}YU8?W-p0jf?^E0(M){|GXP#pn- z?TqK3G2xwM+wnyg{=K9YhXnPpi)&ev{`0Dh&*#%4;&)T;T@|w`_*l{{{Pl+^GousN z+n?8Ks}yROs-VLX)+f^E{Op6u5HH(qvLiR93>M7o?S&Vx&nDL3V8RpG<(xZ4(7$6R zlYwWvP(iS|71hPd*`EL#;g+3n^vt}OQP_-KWS((S^d~!x)@0yZEBFtL77yU5vF5{8 z$qSvBC9fxdC`h}0-Rv69D?sqJ&B!AW&}g;sEj`qjola?nH0QldDQPuT8gsC^0oRFX zZ~Ii$N}y!N{8f~3UDw&Gg@8`DmxI>SjTuGRNpuCQn)SA6eU7QR+i%!&?Q$yo>tnPA zyC{2w8j=KPdMk)IE*0CTI4q9;5?{E^3oko{{+i!mTDgb&6hB|Do#5Dj5sX2jCN7}d zvJYI_V{4hke;uz@TiBIv{)Bt`s^;@jjs`?-!6qZRto={pD=BPFK`N`Clhf;iaq!a( z^jC7jK2aNk&z(?Diryr|$LKG7%YkHg>#vty7_+)hVD;AzYt`Q%#$H>@BbKz>#{-f6 zNH2QpKGgbS26XB!7gWvE6@!ge8d?a>uZ!Hqt^cu3X|sOO|QMi z()dE13(|59>5u8$$k_rgqF=mG(x8+_E;b$h0gJZ8yPlIs&>?{b%WXG9x43r*0fWy8 z3D{ztoU%zOPOofb=>B{|EUol#!~hFjg27H7q_F;rz`sEwNJ9-x=Zw9?{sQsH#}*OWo0} zQ`B;C)7=r)njfn(Z;oEjr7Zc>RH3#id%#Kk)V7u|{3-JR)8Gi`v1&2KR%`T-_+)dJ z`4XO-s)s@@6JDx3Fov$Ripp7j&ozPy`|zMP)I#FDQRYS3M-;tS!At$@Lv zm@Lh|1-oTCA|_{?T~yt-tSj;IxgdpyHHOzdgYx0;0O~SvP4$A8pt&rGvaBf{mA9r+Q(Q#brTv>ZO}~UweTMocVha@TfAGo;Y$%$_B!E7yy3E9JSJwODbwh?qd#CPvN!pKGRAYxfi&$)mi~F}+jZY#AsB8X=KYmka z$n%Ljqp+^`o#%#_RoDKfOLOo??nwKbw(1=Pd`k_HoYzyro0D*d2*4|rqqcxqQKdbg z9U=vy*gNLFwZ5vQIe6G?fgTU1Ij(+NN{bfttNNR?D?BR8!Ldp2CGEv+TH%J!11`G( zGo1it6%m6sjmploz^O*6tsKJO-$nMnH~TM%51uvE%3cLsr@A;f2#O)Oh?>~p8HWtn zSKe+DYStpL#3FujHk(E)nJD^+F`|WzE-BeSnsZS*i88}H&_{_rWQ+Kdbf1c<9-tNK z+6)ct!Y0Ucr<7XD=pOs6=5j2`|EvFYp#DTc7G7IueJ--4;}BXSQSA7#saY$m4@FZ~ zzXdq;RO}f0rm}=Gc>LIS?dJND_M7OwI&D99uhcOWq`YZk(2a?@Aptz6(ta(5PL1Kc zdx9(hikKHsf7Z8$sMoFJ#jfz+B8at#h8SZ2JyK6|`J^je?|$E*Adb4!I(!*bB{H`# zyr*Q3AI03me{@tTvqA|C*9h*p5K3=s){{xKdJ0C+WUIpcafX)0+w0P_8HqRamyRO% z5nH%QdpUua6qw6R@ei(pL!Qa}FVwM0^b{uD5#geQJWsV`fl&wa+!_Z=(NJ-<&B z3S=Krw4|GiV~m$thOIyg&r{tu_9W_+Tp7Goa$&pKy$gRa&2~XwI%pT&v*mEFWj?1J~2?#na7);eq!)Md3 zPjopH*~J)3=2ucsS|WQCcUU^Cnk?+Q_tqt%br|*@Fy(cvnNxVML1uZ?4_-FSd?1P6 z1sC=ov+oe@NH+puFEMk%GtpWdpK#AVlG5HJ&)}+o|E{Q33ZL{#Bzy@t*Q3@x#2FiL zSvqoG2AOpjLYLK}z0SHegHlv!T6=z4S*8>yOX~hcw2IRgbQYHfE$w|x%26A*j{Sz| zJ>9m3N!dSMF5b3L<3&lKJyvLCn&*hLE576tGcaPD^XX`q>xf{JK+&{EEM5Sgs0H5X z^kKHjvr^P`Z3O~rZ%+Lu+BLA9R|Kvj2fi)LpA_-`XOBRH^{VY#y-LV#%>_oEFT>%$ z*zg8{;9^a3(?4U-srzL8h+k_`S4k1vQy+0~N7{(9(^5pl`+y5d@JUtv>|~yOq#}xz zUlfm2BbqA{xLcx)gfuQ9y>$_GMicGxf*%+28)Uz1jeVE4F$k>`zZLL)13aP*Y_J0U zl7BQW5$2dBKv=@HrCQ|xU5$yCc-WhHVlqUZ5Rn0dzpv!LV+^Fr=1$<_cWg9QHCSZc zSG=f~^ZvwFnF!+;r_%>mINnQ1W8yD~{|cTWs5(U;%4Py%Ge^knqs9-IJU%E`l;a!N z+8L70DmPTl+rkL9nzItON!LYAIy&raQo+DGDif86q9ow+9j-b!>~l1{e;{(fVNj5Y z?P3}VvzXTqQhAn~IW<)$SW1D@T+jy6+3{KdHWrN26-+n#*uH8`wtO1>V$NDhI^CRJ zS;QLlHesV+G|RWde(a*Agp^qG+QmVrAM%~zogRoNHgrbVFyJGH-)_kO^={%o4Dxz+ zL-+dBhNECJdoq?J*)6fyPCeFd>S++ZfYKTDni)hl{wb`Bk39WaP_8`driZSBAC6(r zQ%%q&NbfPI>YUVZ0f1E_h?Ls?95 z;>j7RM=>}}{ijOs7F}4*A||2QgJ5vE=|S8-)2CYNb>0I0aj4C0+Ay!L*l;>sj#i8Z zaKV!=@dhu!D)c&+tzhXE^Jp|JM3*sbo+yh^o(5wG)Yd0jSiOArW zyNNIpwoI2VR(Y#CZo`*c7ba=`i5y5ZBv~tdW|lUdj6{@$OmTyQJpSZlSc8D+%qF=o z(N(;Ap!gB-x}qJjjH|A0P5H_^R(Ra&NbfrEf!^_$fu%!-d!JxQ7W>6DIgHb`t&c(ZJj@jgu0_#k zWG1GMVxCVRxpha4?it=y;{#l{UwGhgButLR(zMgZ?2H}VTwi`tR{28w^l>jevVa2q z^l&^QETHkpB}&6JQRS<$aH@dcs^eDZxXkOO}rzObUw$JCfh zkiHkA`{##i{=%B4-zwd4_Xn*RasR(YT3|@sS&FhV=P0v;DY8+T$av@P{8Mit7hw-I6J- zK3WkEypHy=!AuSH)!Nc+F1NK{ead_N$VfuT#+5te+5+@9M^UKsZrA!iDVBM!nHz%m zwPg0rU8CnJ$ShsNedn4$QSyy37IeBe69yPvYTaYgF&~)T!}pgyRx9zLnOis($y9e) zKYOV|`~{%C15|5vZh_gEH{YK%PgDshm4w9(F&{_zB>Pfk4*yZgQoYbCFc1vyH=NdF zqLtt>N}Km)`ruX`ee7Uo9Uxfnl3)CGh-ZAjMJgX0*EexWd{$(GCUl^^5+<}0J=XVz zjXV-B?@4l>Yv`wCs?91G$q<}mh0gc6osHViVIomfWb7-xUiF6W`fCvnWZ! z7NOk-d@Y+DUa6i5mRPV(DYa6J7v=oYYFF%&#~s3&*|~G5T76Vgde_+aWnmn=iIFnt zGT0iM)-=-Gr@r3D?ClsfHMf(6nk~Y3QH)PI0if`2jNSiAAEjTF975l(x)rsPry>rT z<6gm~W}lJikEkp2x)e9c9`l8>GcO@~zFx^KM0`V1mFM?RWi~wa*KPx~#tpbsBjZc6 zq7yb{$pzISI~7s$&T{~M9W~jh{v*lk+Q{YX*|>`O*ks-t#`zWUu#fcib8I?-S`mvE z6(qwaI3AD^X<_=5L~9Twyy%&JAWyXI~(>{sWF2KR(O~8YaCbifQQ+87d zpJL6K+8_wk_Td`TqrRpcpT%7wRhuoJ6pwh0fL~AsX1c@ryYp%E{ORX=hFriyxBVDf zT~?daR$CrwVww{v!d>FO$ZF=Yy;N9ajr-WN&i-g?9JhF#HD>NVZk+z07Jipqm1iww z|A{+DUh1x9{!#77IZ8rq;7BG5sHTm-4FG5?|AnLq8w2KH&ZRb!Vip7aCXe0Jsgc;z z^P`P>3J3jX_O1N2SX}+y5yPp@9DF#PmKfMMB)aB?+HpWzNjoIQo)5j_oBqrGy%k9B za#?x9?uGP#2i#qHhDm}d(0Xz|-}7rKI&?o&16kp?5|@1@Ih%D~d_Mb?!eL;WzK@h~ z6BTXV4!Tgl>aMFF6cC;?aOFM+5-UOb;T;!;L5gp)Th;zV|KWIZ{NLDejECqsZiOn1 z{+3_M24IGzL&D;d12B?DMa7VJeTO&8$czwH6xu<}GpWZd3Y*5x*{={HJ-N!G82#Rp zAESqx?80(Jo1zF4+U`qINfmf8B$rp`iA?&QGn%`<(Sm>+cA?4A;pocj@(dPo5Lb9l zqQu1NuHw$amhcW`6fN)dltj=qC4yFi=rB|#c-Szm7rSF3_&?+ucceXI8h z(~5+BCIzkTK)k>3(K1)AUW1|{`yC{9=HVA?46PB@z1#CII3#M-jU6U7>Bi{%u$1Vz z?bR_(7wJ7o&f0|(nxLj0&wMyvXx~1~N1M;8+OvUjQ+|8I9g>7vwYaQmQ>6B&4H=^% zDXY79peJFUUOwB8U?B90&7@sg+W*h7YmU~$FP@RDWagRoOH6`>=}5(}Yc(sQiLBrB zwc^3XNqrPogWzeBNqiJ_jgfJi|80I=rNZ8W!|NDMg;$grG?5oM#Xr3~?@Ko)lkcOG zTX5`_6Nr(e6=^@koFc~ZYc*K%dgveBZ%~pB%NB?We6uNZ56k^Og0~UNFSAi1;yzf% zzqVPM`k&_xVSh^a?-ZS+3ha#zX1F$L&F&T1;-C<^2O8F9c|~;1%g*qvhpL*PEF|(0 z>ofd6x=>G|HE|;h8L>aMZ4*raq8HgKi=2XdD&TrS6NVzM`E_ld$8ImCj9f>`bsrVWDvE1wDFJcAqB-|5Cmg|gC)G^4H zlj6@x!m9u&$)rG8TEIv?HuJLrBfKyb4g1p)~^&bx#%t>!iU)g^JuSE(yAvSM62|< zSl0hKP@z1LyW7MZ6miPEP`%+}kDPfYgjqJ%Q1%)vzhG-bH&d-g8xaTk#&)cme^y#> z^_X-jei5>TC8NAbKhP;0OXru!6@a3##>sZml_rN(5tp+r>2PYd#YTY_*HV*?)~2Jr zMefi15?S-PddM-&`xwX&8Pn(%B#bVbqrID3T=V=_Xe_K0!cY^J>XwHW{?ezwP&<{eMK>|sXq7MXSQ{lQYjxG#Hiy-XbeN$RYb1w$b3L5En@3O$Jbj=}w z`RaDo_anrMpvFq6-(E=HpA_gduUQ_UAQyA<0#maLVAq5)q|LSbA*FpJ5kHe8Nqn|J z+phE@6bn;L_#SAN>McMCfWEk$Q`JkGS3ZVq2iq#4FR$khs?fkWwEI$f+AO=g_0qYV z5C?`Xc)Kw;5g3a!`4kMI1Im57bXwFdM2rz5(prFCZ)zUUBa+3X*pOAo0vlnAHe}ns!hof5xKdDy*8<{D-p$2VtSrh55*47NR zUp?f~dkh%bV!rD)fVyVcl=R9m){4?n|B`71w0~qvvoRGPQ;nGpq+K$cd(!dR!AR_9 z04-HY#hrawXD7VbfJ-r~!L@snR6(PztVK9U#pUb;q4+v=Lw(My!ShkCYF=!EZ9h(x7ma29z;Wp#AE3 zrVaK(X@yMsTCA!~@jpcm)d*u}4q{_dx#AM;;v?yJyD;RXXAEdafc|Jp&&907Wy$Io z*VKy9jl0eN9$w9cmQa70Wd8zhX`GZRaCvlm%2wpD7F*$X7MHdEhl$Jh5s4vzOQsPP z3L&>mGA2Q4QgBQucJjRqRXD!L>wc#Vh-goSE#{*njl1iiM-VZ}Gy5nr=F4%Gc%Aj1 zrF`JpJAgjrp(5*74$VA(w)(8%LDof2*F@~2-NMZFRC{WpSAzI%A`mN=(^+@9!u>|x zO0Yqlk|fdmG>#DOwel-E>OuCoi+D56xee5?qr(*-cpFIlj{vKU)%+Q2o+$EaM@Bu7 zPCgQzi_sSy+Hl!}7P?ov@A_vG?K7!qlq1AjN)7$#eUL>+FOk(6ZF`Mi*JRM>KcALI zFg3o6X_VS=Y97_l7*7I^fmOKDMzP`iujKFo`F-d5rCCvb<*&OjPMEGdSPXE~dY|Kb zFctA3oWH)sPux)5Da+)v1b;EnfF*KjCQSlBv8`Iwbu!&we{o+(_3AdYsHw*Hcfj@W zVmJF6lnMA&A#3Y8t#DYTg9vvJOL+NyZ~pRbA~sKmb&w? zv=5wb@2EMhM7t$UQ;zH6l|yds_uYDjDhg)#hacs2D5+BPGV7ntO@;_9@vTao^Q`C2 z;wJ>oWyZtVH6Cb9MVt}+v^JVDK-GpBfy=g151VKdi()~Ey~p>y1!U=eQHrKI+KLgZ z7xA5n0Qz-lD45f`K4&}e0u)-llCDN2g@WHq5mOkdF=i7=!`Il%v9mIqJ+N}_hLp9ImM7C~3w z_eoYi!G1>Zd6{98sNn#+Df*if?XM5wqj!pKb?=a^HGXzix1z>cVZ0tmCX&z%@~p0b zPMJxwt9yKe_y$8$(hpw5P607mqE9*Wo-6hN+bydakROOX0)-)$Lv)AF__zPARW?-x z0oB$%S2#-6IUn1fhFi2-oWPGWafVZkk={-AQ|Ke|m)#Pub*ihH22=^AWin=S#6s{~ zHQ}jC8f=h#(RncuRf*_>IPUE>?SM+Ny6Wmt->ax4vO6D85 zq6Km0KSf2p!m`*?_HHfQ@36_Penb>ZmD0Jh57DimgMW)it*b<=_54v!G*0xY*=K1b zwzz_DL%dF=PM(50O)CFztSA09aB@4AW$Lm1ZT#t9TSv$>P!Hj1*sZYeu5$^E$B36w z!hu>}DSmJEHt-f3w6u@ePBdT`Mf&I8YnoSPC&QX;S&kUMQFM>yXL|9DW4H~T2pBGK!Edju zc;+Lm`w+i~SE18o$82f5W4I-}OY%Qi44Y%&NtB7Oo>b)&xvlp>>hW5pTT!4*qLsHC zraMXHxeG6LPPw=ho+<-=DD<@KLtCg*DP8vlgE!<3LCA*6agnX`9*Ie()z$Zn)NyZL zk=i{3eY3WIy}f()~Wr#T952WBVc9wM;t!+m{CKS*mo~odvyzB^sA6wzV!u ztiYG)IF%8AMH>z~vc`auT_^=VK_UAAA4`ja1il~0k$ai&mlVU0Nc*S`nd}s_pK=)F z*EewfmjTQ&j1B6u`Q7KB^+4u5Gi`PiA8J=b31v0%AEcTKwIK)_4YWgP`fyBJGw|MX zOKVY_VX$*IFUx*xin&+O>`v6m;KEzEjwx97>N9>+fc5afnCaIK8oLY}5241qyFaiR zNvg>gDysRCcvfRnR*j3k*61DSux?`~x`E3_K8D6ujDivGLn#I<68_#m&6EpN+8@xo z5sB9?@UeZ2F7A$$k;1A80->e~;8uy`l^x>6JX-Y!_NA8M6EB0y*p={jiWWR;{$IYW z!&6+yRl@7PwiWSqpvcKDA;ZPAbAI`S5g%kHQon*mr;`vgWC^sGrrWT;QNz3=t`FzX z)gApjnvE?lTrOQ(KIagX*=cFElAPjsLZBGQvQNp@m%+tq4uM%zFa3I>^Wdn@e|OCr zUNf8XWLz2#uRy_k6#{e82#>DdPp|)&4BU`FJplBv6Tw69NLtx!^VU;}v7DWP;Pj9@ zD*5P9qH{2Awp||LTpm;pf^UQ;trQ4M=6Cmy)iM_)jar7L>{mG%>C0X{`m2Va`MSg2 zzE+UODek}H1=Q9f9Bn1@?&yw~eTZ^%M1=|GM@G!r(WuFuiVgqmlcSs|9fqRM6mOLz zUrvl&?GNKq$K0qzp8Xr!aP6r_;&JbPze%Zxb$C0yQpFK zn8|TP$g^HdGTEZ6Owb$ikf;kB3ztU`l+9;hKjeLL$m}bae(`H@p5PM**MI6aJ6JCE z%lrcq`L3}>N(w>Defrs+6X8QoKI*K2acqR|Fobn-uEwKEc8Kn%~{vbT2oDtPR7~I}O=CQR9a4rr%B?j8);&>V1vrDX_g9 z970315@Kl9s5)`FnrcOxs_bjYUrT2sc}4*vOSCR&9XwZf@l7Lq8+Q>{=rwVOk^)lm+f@4NW{bW|mpe zMTck9eY~gTtGbNuDj1YoneTy;^qjayj(CHU3!P)%`>JCH(%w2Zo&mg!!iNl1xDFtQmutS?>X9=`21 zs?n(?IfV2x@_sph_gFisGOE>w{N95~S151F;>R9`w8Zx7Cdrrl zuLsw_1e^utW+^{>Mc?V>F*f>Z)qDemh*TpLt0^PFS%z$p=QADa>gY*aQmj zTYl(|6NJ|ep+s-Ey7xTKn%{VI`9KJL=n6QqI{C1tB#@LADt1=V4_PI3gyKt77#Ewm zNqhxkzU(1C*Ld(=eMYo!KVJ~GrtLBXh~5tUhhpqTq9-aP5x;hE^t;y$mk%s0qhDJ3R`;`VTxuNdo*=~^ zc<67kW5b|D$`7^s_1P(=eHL z9}Bii4(jCD{Q;xfd^x+pX#AJHM?BrY%}bVeTI?lLmwr@vP&Y{qHr3ZEuXLnp|D#}x zl5L9$Q$HIxJwxe^STtB6uGA=b_EGjKbnXcnX~Kt&+w82Eo_dh$QSNN?4dMendHXS9co%Z^GWIjnOpQok0zn!Zr-K9cDsxpO)^ zr%yP34}a-gRE92b2eA)invTER`V;dl-t+@LnCwVi{vI!JwfDSO%zGTkD+N9#XSPDY z`a!obJIYmZQh=axE@(`IGvl;GKtj7i@x zHDQ!*Il!)q)P1XPpwYGNuvFii~ltB?&za)I6G; zaL2!tn9BlV`QMl5gpsUy??Z~MxjA|6b&p+f*}j*dG1IZKa7K-;JLc$#c&hwqF`i!I zwfj~2s{QKhb%;KBceWxiVEOaB_Oq_TDDx(GsHH#mnM1KUd3b-aUZtKdD1>v(1( zu)K~=m@7b?1v!F*{qMo^M8_iSy)BbmW29F`o^5a`Dypnls^5E#Gh6o@)kE&{`=W+i zLEiyA@2nWK=^|=HDN4XvsBGTBMH^U_(7iEy5mTOmq7ZLmAMKB-yLjISss14k-E8bM z{2V`TK2RHYQeyJ5A3!x4*0NMmj(KPcp?4Ap0}}<%{cNmvU-%-&h3| zKE!d#{i>$TJ*)vqUD}f2P3E>*Jm@E|GX!-es{Bkx;cNOGG4sS)5Uh_^@=S0mh|(&| zd*XP-05E|z1h5U1_;xAGypmZ9;bULPH`@HkrIDld?6Jrnk&86tlonLlFCgP~I>?>) zXXe}=oP&gopaWw6jkW{~8*W{dh4my`j6-mG#NHt2%k8vVT~|SF0Ks12^t)Ya-b>d( z4a4mU%gyEJp<9Gb;lIuOLLIHA$Z8?0p`vwaKHpZe;4HFB4}a$6gwAiVMnvGxl^WRn zCbzBpO<@n(4-qtp&4Y%1FU4kUyUBA4B@asAcG_6AvItpQXcJj+>l~GGpZ%{DG3$6y z2LDFDX}BQ*krFQyvnH=em7O&0m-LHbH!W-a>Cs`T8uR6380o@X@2R=WWNmTSbR{p1oOi8 z3-Y>4;e%FWIOo|D!j8t69RzCCJAeyUdiga3=^x{00A($Jc)gr_0lkvd#MRN=_W7To z!g{Iyy;{w#=e>_+t408Ah}T|~QGGMWQnb53uoR$junlI3e zR9sbGCa@*6C<)R(3e)x4Jsle9J<3w4AlwCenAFr2g#4LCn-3{T4#^tM0qI)Ju^%Tk zVEUgYF1#a1D7vm#wCC8fHRLp3UsW>=tF+$jpm{}9ftWjZ5JJy)Q);k(Lg4Kf4xVNj zh=7=7jwc%>@lkMoNdf;rH6&~SxdG9s%bK>r|8p5QFA z7()_IN&0wSXOxx{n^#_Iv5Zh7Mhk{>{1(14?wWa0!_5sf5VAhR5+ytQg&jF&ydHdL z_!hCT9*gmvFUi>@r_LBM{j5~IHb#_EjppcwUmkd9(}M{*abPKMS9l;zk{u=&CVBAx z&((R$s(@bi;PYkN`<+TMlhcOxZ% zjdM~-ACf9kh1dj9 zHF)AG(`o27^F1w(`ekL$@!mm;tBU_DZiow^%RJqQJ0JN0ay>-9v(kSq=Zf0-!e770 zFHCQ~NL}Vg(kPG;X!PmA{koGQciB{KPau?|_aL^SBm73$f?dS#uUooj0=CxvvnV!m z<(2wZCX`WZd3Kt=x#Y#Bw`ts_PS=^`G39uH5tQrb6n~i2f{xRE(W|0zF#hY*nu>=K zN|X^AzGS(tXYYDm$ffr~?sGj#5y-pj9yq9#UBv`;AMEcc}F`P^r%Q2I5*h!8yK zoCi-Jp2a8w{Jor26Aa!1k2Um7+dOEm%piUmxa9CV`IWyHqL?yZyDgvSuk{A+Fnd7c zC5jr=0ppQokb`pcZT@W~A+?HBC+;_zLfZdd7=xV`c(|2Tkq7Ydg*%b(BNI%P_j6CeQwzs#8`njB*g10HNSr>{ zXn#4@4gA*r^S{z@lT}e}V!DJOdM=j6S!Max^g11Rva8uaTj1S-N7UT2YzfKjNaG$jWT?n%^HMtUf7xrqcGd1cKQftO2fXu(iyKQ)Bf*LSJEE^dJy-H-70tV9>YSEu z$bJawvADLHGa}A#%=USN_gCo7uR@@@>Do%8m1eGm{QipANIyQ2eA-@&QbbIj;`5Ub zgq0~;(XSeki0ES`7WI+E2+;+6>+ZRQqhS$b9;bP$HWB?|9Q8|HH?FsN2Dh@|~=nx-`PD{C9VB*#y-?yCf^8T9)~Al9de)v?396$5xUxj&6`I)V8c}VM)$sVvbvK7?C;8adRGq*~!k^&+q#W?0!79`+ncMuIqI@pBjN(m(xQp1X?Ml z8yL)r^YQD;;+xa;BWcbtYz#SX26~*q_A-ObK3#lxxjSe3bXwHdxu@}9UH(^?*`^xL zV^ptG+zrO1T{i(-(q?6u*}Ovom5Jd61D>H3mbSWf@#qlW?HUG0!Ky`ET79-)N`+&{ zDB-nL_v$!eo=FY;qfqe34<3)-*~si)Xw^AB{JCT%!2OM#`PCH5ecNRZjx?Qk%xUO& zWdE0HPS(_c07@!3zg0MOy{=h|7JxKwjX%#lGBEN2@2YO9D|1=eOtwMW)Sn2okY4Pi zMk$Q6M&5_302Z-wyCKJm?65?!8cBTeAz?FDvu{Gw?|<4N7GeT4jjh02g^?@N(4GX5 zn@kAgAZMm-Uwu%R0`BJV+3&>YXsMYbXs z^DmyOq_3*^M**|UBJE618hbyKTi_{PQG&!xI-J4Nm=9epKR{^aW)a#H^~U zra;PZP6h|&E>O(j68^G$7ax)`l$XqbSdoeLgA8v%o9+}&O&y9{&B}bF6om60OB!RG?wgVtN5Q-y z#-mKJU@+;XxU+!=16)#(8NnmCUKkhPzYdV!7?fNcYGtkV;l*}S|0wA>41^mtm?eVF z5iRErV~>)-+kge{{L{WemMP(s!8ancYva>{@!_dmZn%4_xX^N1w8*K@_?0#Xj~a@~ zK8s$NlnUDJ%MqrCyW;97*Sb!=v3sP(?(nweLps(6OJ+)@nMz!w&ryZeR{reUgBT$f zcYzz1Vv)1WbdC%d8x;%P_gJnwI$9obtO^KY8&LRmGBq9;QDtuJ;=U*52;6}c4p zSC6VZ#|jlpOJPpzQZOm>Gi>aQvGjMmxkQRWtGDyg<1DO!GFt>%#cY zW_GTG?kC%CjJ&gs#wy0QvM&|B#rmchfhUxN*QDd+IWs;%1x$vAuE2zue-`c2E@{`8 zAtcu?!&yy;69QAT{4xj_Z6f<24jTYT=1pV;LR1eQ0Fk)0uV*iVsGS)s`dzhCz*P3? zoY_vA2rvNsZdO9E<eD)_> zC$eZWi*XaBEr;%8Tw^O-CJt1jFH0^1&9U|IlMt^XB6Or{nm1}B$6qB1`A>+(j+K(@ z2Cx!a^lakzCS*N2eB60=5$S#vy0FJ*ik^z^eoDviNwb*)p_R3j0)8axo$%b4bmoO@ zgRHm&Ec!cTMkw2Sx`IYI%Z&-&X=x+_P06^Pd{f!TG~vy^#hyr^XfdOuJtaNC&{uGe z`XvKMUwn9pqA>*WbDCwTXshtn38Mu=FMez+Bmqa&zeBf(#rZ{iaaY**QM$(cbG>RZ*$E-ZtfT?(fKqzg8Y!m>c`wF_#?~hpaEfJ9uUV9zPwQ z_((H(Up&YCuJa#zHXJo4GPUwGxG7#sMSEagrRo1qQ<8MEi0CA_%gk%ni`*Z%8Z+gf zaWVFzR}%4aB)&3&MZ%uw;bwtOm|a996sNqb>f!+cZ>fNn5O-8)*n#7*zPq2->{^}= zD4OQm1zs2P^?{X6CfEA1yDig~DR!sWxshC2(bexo4DEvTT_Dxsxj|CB{F(9lxm+z!j5D zQ6H_T4}3V8TOj^%Ek`~HkjYgpJX3R&rZbyyD^|taRCyrtezKkvn^p)JH0E74-6Jsr)6&;+G+!>>m=S(?E?bl|@@lQO>iIC*uq zr;AgOY{j5;Hv0D`!7d#hT<<95ba;LDNb_D$CHJ5~$jc1WlKf>QO+H|Y}@Ad|O->Tp~ z)@LxY^?2icr+t;JP-ACVpx8?R(|@f3uE!ZLbp;CcCuGOgKC(OugBIV$fK;lkx#tZ{ z=F25k+zfo+pxu5fBjY2n3NQq9}(gDqgFs1TXh z`C4JjzIpz^1+j9%Q<#iZ_jY+hp9MtVJt~w_kq>kZjhc~|>pfGO#h-Lj z{3P}tKVz!SJ7t>lvWoNeBx$j>#{EKUrDZLCnI~68xlVJW^doE*j!7~oxBu0h(}1`y zYrHKR%?o#OsbOoqu|9(96$%3LmdoN~yy&2NiG)V=*OjcCTnJORTL8}E@~#}1!R5~&huhYh z73f@k!0LaCvllhc&op38X%h+5+t`AQkV}u_F(HwQD)+o5r%5LPX8pFoZ(i1(rQMw+ z_~1{A>A@@DALkqj z6X&mYy>8HfrT13~@kQ-K*KiYm)_G$`y|=YHonJ9G(k%YTi(avMF~|HFt~1q}_{2cg zt%6mt$znwRKz*6^GyG+mI<%qkO2}@~@-51<9gwTSI2!LiQnKV~efmIwa@#Alw+NS; zs)^YX-*6ByoOMT$n|z8^9a&<0D~RvgGk)!4e@xqeFc+&kcF&%(_F4fl?mK-A)W=Ao zs65j~hQ?@^!jPchmX&8Zbz%<5TTe9qtM8FjgLyFT8L@INwm40VxI40ga!KU6Oij@; z8aKHX(tlx|vr8y3$|K_Z`g3~B1>^vf4gsaMyR;!ZSw0N3BJT%y`TlTANwAp)=Y3#C|a2(tY+bZcKcI zsA@lW8TqZX$R~a-ij7ZC7D_T4Bd@gD+kl9O{*24Qiz*}&4rrBQ``{k3!Q?Ky{8|;OiJ!pP3R78*dRm4pW-;%gev22CLTcnVz5F%Dm`yE$OLy%+|B*?`b;yuCua1}md9iw8% zY$nD`IPc~Cd;HgIa&2*cSf%YaFL*u*wB0r>G~9dknih*<>sFa(6Wh?WCfX*Pp9bn- zSR_9wbiCn)+Al~|q;BZac}2hA%sjUHd}Gj*_f)gx^PO-a zH8hPN(YU0j-IxDndc~bEZb;d}85}5I!|oxX?Fc(NMjWDfibt4W4q@7E278X>5q$AW9ZUjwfs{z>W1wv#=bo2G zbyKB-DYi0vS`6NV@xLD+6B9Phh%A}E4hD&$mopa>>-)L^4D=W-t;iouh`8^2C&wttnWc<}nEk4h55Tbv!d0UB`nRVkPac=~b)F%DUPG&j<~x{)K5SycLu#IhR07HXuB_h)nHco; z%)LE5tqEg%&?QnMnVSY^I4wL|rA--)o;0 zd>_?ST#7>35S(*JVB-}SjukrNa3Fe**0_4-PloU4jz1opg7Q32l4U*OJw0k31t+@iLASrQdYhMdn5R6($(?~yrnh0nsm-1Puh_gTgL0z+_AKMAvwcUz z+Cns`Y+^^7YTJts@G7m{1qLD6L|N~cDR>z@RGq@zQyT+$Kj!!*weM+uDdW-P79qmp zf^XfEk{<-$QwT;5?LLU}N-teYg?pA@0~lUMdH{Z7m4L3tf*#}bR0KW2=U%=QMr>B?Zhpc>%uU&zx(G&+@acV=46{YKwe*=wgl!F?Ikx9;5pFky8;j z9b~wy!cwmsBSM056m@A`4@^o*zU0 zr<7-(p>IbYtaXsQFN)}n*c>Nwr0%JTck@T#Q=pD z!#`!%f0qr?Y1wR@vgr$9XvBBvzcue8gx}8m);7aYqEOy#{t-HdA)V73ZAmqq-&}*R z=R%*Cn8jtNaG|$IcL;4g*!hrFJI^5V7%ncXcBM;jqxbQ@fSGvx?(N4u6GjwZu zVx6q6U1x^{ae3$bLlDMItn|V$0}$pI;hqd~{LU*_08y1hDG?~%7LK!&#>&dOqNZ8qWjSvhpV`eaVpR94I-cFRz8axsA46J=`8 z*JT`s>s*`Lp1v3hOmDm@PV52Ny2F7ALPnStuq;b?`PF!^6YV_4v}?$h+iWThpdKUKx-UGsHlW(FZ)Rza=-AYm(=+1F8H3!D`bLG{tW(n>@Q;Ov$ou5M z4Rdk<6UUY=YptAm=jK1PS|nXR`n#)>X6-#qg7@Q0&ZtC>d+!nQu85_u2dxdA;UA)v z*jai)_k+Q&RX7#Tr(Uvh?$Jr7a{K%gnI1(UQe59DoK%V%jTVpJN3lh~M^wH;T~e3_ z>`Y~JfbCkFObVx(&Mzx3T$`zRBz{?=CGDVtcqX{FA@x*#Lc=_!X{GTk_LmB0FzFRPSaOilE*cZ|GG zPkV#%n@)n>Lha^W?Xy}{X(EAcAR%5I3n=t2b(7Z z31hOz%E$Xl#cpL6KiG&P=EU=!%@K?*mOScJ>C}YPViuB;+PMl|~BE@HMB>iV4)C9M|CPh*Mi^K_OP&(F#p z6+8?cWtG-fE0;910ZLT=F|oP;nQV0-<4(@j;BZ`nq8Z}g0;~3 z@97`Q7>|GOw!-Xo0+C0F0N#HKq1RHYr-ws5)6?_hJJ3I%=R>L+iQp}i>1qf4Ak{<=3Rb+Gx;fs{598cu*e+Uu>MW^FWwF9Ng&_;VltOH+tb%! zUT3>?wxLRm!(X4ebQyokwUI9Y)+abfb^C`h2mzC__4`nh#ho zDHdYFhWjJjuDG{hfd`RD2U3~G9@X7YGW$)(+hjRVOy77Vjgbj|gwbvZ_;Y4N4|!MA zxN!i2T0sSLrsPY;4&*z2>4RYgN2h+4Jk@}wpR*vv-0Bvr^727n1`DsN$m0*p{Ts=F zc&kC_I|jD?66Q&)Ds#c!KG5*5^J;c2jz7Jacbr`~|hR*MpEx z0hRE=KCUGvEkVvN+N(z%*m{n~eLcwbi6_L@6`&rr-yFEu**ShXRS-kTQM&99n0&GL zDgj&HGveI(=*0_DU|L0tFRHpW~ApBvM zc49?(J#3e)sb~&0W%y=D9++unDp!vRv_dp#pE7iqdlmE(2$p_M2WJ!d^wTLupC30&D^$L# z!=#80MOB;A?qJe#Jm07_)14B(g}5jJpDzAOK~ZzyoY%UEp<}Od*KI!3p&O=)>PtsF zrwK=<)G!YRI}n3THiNEa^kom03eC|!_z*JnG5$M5mMv`FQk>(*3E)7DZm{0GYo*)u;bEIbX1;K(1+6arueYoyjQ_=+I+m&XGs2k4blN7lVApZLD> zfP~a9(AP6HFXwR4dV#~++I@QxE$I5~p@YV?x}0f)K{?D^D$6B1Jq0!j?S?G{7JQ=f zdJ!L&1cuYn`&nvG(Y=MqjAKIv{z>)pF?@> zQpleEacXm?dr_-aMWaLd^NkI^@D_5eY+$Nr}CY3 zf_z`R1}=ic24$@oJ73`V*h)VFH%3|o+SR-{Sd$Z z`bCOjzNXWPkd3*CuX>k(Bh+093NBu(7=`xuJTT&pWO9`GVba}_-$rh-*Xce0E7YIR zsfsR*Rhr&a|0dsg`OVbI=S$lmpF~!TRLnG9e!?g$^G_5v*Xk2&XaqaLO+ZP=kt&T4SApSnWYf~@o5WM_P zblA;+Z#~&D|6%%2iN>c6-G`}4zGIs!KatEnr%wF5*|mLV{J8Gd^%0?oW2czkEp+;( zH_tm6jISC>F-sbId@3}Z8u0pMS0p(^CCw|d)mdI2TYC(nnd9oAz77XweuJ8UKQ?*Pxwi@M%j=4&kb~^X14aAJPx=bch&>w$=lwO zlbJqWgwzW8ID;15;bxW*;D^nwpu23{pc~gxNB%liJhP?-vU+mNygWJ^b^9Y>pE|`M zE_7hv_n83N0kH`k)I!e?zif12VmgA%4knsX?yJL&pS{Dn&Kix^|1)hM2v!E@09HES z4bCjLiPKBD6=gXpmf*%cOg;7|#_l(E>%`TI??jsl$-ZCA!OXs_-%#a`v5|~k;jec$ z?O)op+Cwj)DlLOd25*Qa89yV5Yu!e%?zu=GY)N4g+Iw}F<^>o!4qri>{$TY#<~F(V)Z26SB>4yW1HmXf zh@wt88C1zBnR4S4x-Gc(z>OI7>wdw1M(O{!iWDO1ELiAr)JFQNyD#)t*S(9!y}4}8 z*3o>?P2d0|0wfnFcio|A2=o9wu!}Zt z^XH{v8V=lJ6k9X^7dj0MhN$J5r8nwb0DcteqsuQ%%80t9yX(f!4 zRRX+0!u*o8!o3|`N|Is+Bwc}~)Ti0hU1~q*QFHqK>j!^4Pf&bEL{)S>7ChoLUm}$c z9EQddmXkRk(shOl22gwmxkChdaAJ+yZ~2mx&y+oiH{|wPT2TjlX z!FJw%`n8Abbz1O6sQ^6t>pH;?N%@2T`03T4UcB<8JpQK~`flFF!FAY|rN$?oQ5+&@sSM!3Cn)8Jcu%KQVYz3g!3Z%W{|`MU9~b)*00y=S6Efe)=xuBkXr zIC8FxEAhXE%pva)kll4g&l-%C&jMRx&I)Nk#$n3k%y?~F;&3!wmKW~fr#~E*&hMDlzgl0 z(@GzhvApj+CQG4}Q`MPu0kY5|0V?6S2^9kzRZsL`h+mQ?kvkpq_Nf-e^Zlp-psvLf zpKaf9q>KDpE#U!wDIEduWYuGkJMfzuy(}n)-&@x!(z4&|=&&^(Z%XDhvCh})qeY4<&_ut5$Dy{er)8_>K{i5@b zDpW#}Qw?!+@k(moHu}8N!nF*A?kKHeR?q~qgU0T`cSOfI+_hewrOi6$8c{Gcp0Hwi zgTANoi|8&{%4d}gq1`X0g3y?xwH)g8wwy*%jq>b;mPdP+OzZ7A-oo3q5?RT5GeYaScPAnj2&vfOg&A@8%ydZLWGXX9VsG zARF8>lQ*F^r2lmh?PYJp?BF<*_9c}DblY4=>Hy4!gU<*nClJ$nAdN&#YLS07wd3hA zk?mxX$cZIoJoo)hOPU7O$nE@t@ikn9iWi|bsW`2hgxJA9go_76ototZZ?WW%s ziFK)cp7jXSL47_Aw`;3`$>Cd^#p zKo@|2Y%WR{6rQThIuAF2*PBf@Qkl2J%Y6W)k;ne)O~ZE4ZGd=-(m|I|z9_YZujrcqat)^< zlOzjmNdnBnB*btMy$Ttb-_KOBN9=rJuP!Ung9Sp%DKD04awhba%@LA=OAYcdXs5Nh zAJ}H?hYV}o_omwLPf6A))Ve|u^nd}VdyBDHW2Uj;CdxLSf1Q7>h!Gzh!>nzw#ymi$ zVQayUy=Gs0f{HAmSMpE(n-}Xv`7d|`m>|VHl1IT!ga=%S6g_hMSX|j z2(GHsPF4IeAsGmai-aAQvTVG0WzT25hLiUARNQBIuil#Sl$*qeK8fyRF}98t#n5cW z?!N{3l9<1yfiSJY-bRJ9D zgtmJnU=+zQ$zu(hjE)Hbb>{SS`!Jt-DEQ7&MVIwQTGdLco^%sQu&>tfz=gFx4j(s{ z`@>BAN<`WJF|pe3b+`J3Q5C+_KLEeR=3NTd)M8)54RM6(JzxcXt07tCMLGZGSzqfq z2PuEmPWVeKPHbXs5@veu!v-re->o~lcC&gOmwpbZsuOfsv4C*1Mw!*h5iG5$AlW1- zPuz86=}AhNeeo>s7B%hplJ9Qb03J{yFYwi&F)Yn$lNe4n(@GcIz&BMqLe9%l7@xOp z%XR%SPc`lKVqCl-+2p848uH%<$<5Qle`9?1Uiv8RxiBu4rnpMLpp9jTNb;;n6N+a@0_)$_kl7EeU1o5sMaO#2Q|S-)g?17@jf5_%ktTx z|3R<%Dsy8C}NF3hJlCC9tQlj8}WG)2}6N5-kZe463Y8JS{| zhq$GVk%nHXg=?ihp_yr2s~b`xg%)a| zcu74(;gk|^uW`3hd4&;Vf~LTd*lD4v_84ZI3n*7QmULB9=87{n*cPwNt?E&_$1q

c)S zk6+|%+WWemX^7rkEc!O(V05D^Cb*B;f5Zr1RWfJ!G{03x_^!1ty)fW37C=?Uv6Zj3(feojMj>ud)Zn)V24^zUZw>+oJTi*#3su=vhE4cWJ6uZzI(@O0U>HN zt1hM4Vo@361NlUwomn`49Rg&scvRc$x|j%?nPfx&R*z0q`~8stnWpo**wZ2NNX6Et z)oaVe%@Nlq`7?pz)Sy@M8lS?^RHeWFYxB>NO5n{wKJfYGQ z(8qf%y>tnAU`f9^9sd0iM2srs2i0;A+j) z5`}8r!}z2yM37!!Kij|htg{X0#D$x}a`PM#QFmvdmDvph04Zl2!~6R0@?&*vl`Dvg zf-k`aJxJff!Gs+@K!&ituUz2eeCIh>d0(W$9ZHI#u~BSz(qBqla6saE30+7)d92lN z)}~(N{dE%AVxXbZarIW(m&-d^i; zB38@UHqduO+ofbOB_b|4-hln>0cL%InLBaLbH6dVD?C0&oqimY^m&SW*wqdny%4VW zQ(BeRlsfO|)jf}F7@tcT5wP35afLh zBSK{?N>=xgdcR3_a#FU`#D2#{HH0wW^WnbU_Bi7QRty_6kiuN(5gy<>uax$?#7v8^ z>{$%>%W&mHrH3KXjRZVm!~WXO?fm1GJ~t2LJQ}3!S}oWaTk@K)&V4)c2K->ZFywQ< z=q9@?wX4w9Nfc|l(g%`@b_TjWs)6Ic4^~}lL%ubGoeUoA8Y1`jsw-uJi{B~$t)v#a z>G%Y`-y?OF&}eEBe{Z(6kK?YfJIJ$u)3X}hub|KMeWo6XmhKIPPp$cV60ZbJ3r@x> zd^Ea)JF333l58{{QY7Yb)%F8D)_pT9ovt2cAt=a16vE^hMz&+AnVDy4z5;fILN{LD zns@Q?@^>nY(W(~TS$)tFO^f##-6}Fa$Idy$hHa;3d}gAo>23EnsIEtjeR-bi&3}Yx zZ@B(fD)0)f&Wor{I6IgseD2g{oJV3S`MSw_sAEkM>et?Ls)w%iPRC!Gum|Teu!8qp zC5Hkwz`e@li%uG0lTI7euK`D(yFZ&HkJ!UKUnaB~`0o-@H}X9d4oYlMSEh}i)#-Ii z-xllowW!vo&u&crGReLCft2zT_(eyh$L2EM!W}4eYjM3$q5<Go% zVMF5Qtb@8e(J`{|wu`~W23o>(%N2d&Hp{kU`3#wShQ_gZrvtIH^Q6Gi0<{kmmp2U$ zbp*HRzwNr2$TC8#4@K=i0Dptgg?IIBEfbqiv{xv?4&Jrz)0>BI_p~#=L$iTb_OkxD z@dxj6_BfXOow&{#u4pX%APWb&w4wKM>T3{@9^LHc#n`id&&a)7Fy4Erg!&d|mw-dt zmRn&?7ntGl7$e=`5CI_i)#?!(s+CF(qV~~CJ#2U|2|IbJ4~C0tndur z<&A%T;9?>@Iv*oXNBAdpCuP0-S^0`{xepU3t4sg0cSgud!}OZE3C#Uz)Wl=Ll?UZqQcrS8l=tDGC3c zojIut2h^tUvdkn1zC#Id{PMvX=#JnqZdAu%s25rv`N68+{iWTlpPA5I9-hE!Rdc$vhy5AZNPUL6-H2T$}EcW zqWrh&zg>kG;=wE0-3IS|V1CUQrAYcd0Z88HJs}sR6-;rLpe@cSgNWa*`h>{bX+Qos zf6O3Ba;Ys&&>eFNZ?zqt_$qM}^*9;jtbrihinz3hSULNJOkiTBx<(MfH6nf#yKMP+ zsYfpUZ?|6kyub7y9~+|bzxFPcSnJ%f2idw(?OWQ3dW_yLVRCzjK#VshLeg>WcC5!F zh8*juLzl@3r)%7Qk*xWk;3a9fkm-xLk3I4xdJf;^cz*AMY*`^IF z8UOm?3abeQusteAyTwwMVVMH{6bTd+h6@C%t!hOU78s3`&+Y;s*Uuf zdU4gR8{lVjleNR7L(IE-TZw8@YB|qiU7L*$ly)Vpsw%8!Bxa4RK4|Cv4UL@^rT^ny zPLq+t7)B`!6-|$TscFBlO-TOx>YQ)QngbeL%oanxTaVpoucXvyl6JFYLqm5&*vXmc zA#7cMuE02^-4Y!Rv8I+x^bU*=4hY#NxUo0ea)$qgxVK;4M?LWMuc+Zl{hYTL8#l9c zTRTW%Z0bxdM*OJf`eqYM{k{WYjj{*~=AHqDNa8ZL^{nKA90g?1JnHg9>os8NA z=&j$4CK|yHh`%D(T@z0h8!_FIF!1lLnTm$V)_SE}9P=#1Z1jXIXxd~piMU$}vvl5F zsn+4^*o>9ZHa%?x>BZTGcXHk2BqMfNaw-~wsAlJd8{Oa;GsK&yPN?UN2maQ5jLxQP zgS4^cdN3D$@Y?Ec(i|}$JgAhwdd`;GdJK9|T~hksF_Nmd#YZ#HEa`Y3_3jE+x{I6s z%^bA++@Q6XV)l49G&3UA_n0g?k}+o77jujyC)b1{|Hj>N&q^F4OCpv_=vN!IS4@K5 zGx5pf>h(Ybb>g^zgx|5SCAe@O8#U}_*mz06LJ-dey1zFWecitK&C1-aKrbzUMP}Tz za4(>tdqyMrmDgsL&vVwt-Z(2G4bZh$WB0D0Y}fe9UIsIGuQ;!{RZ&MA;J=)j08K$~ zHp=C|6i&Yfkp3F2mtoc=*Gcm0=YGu*KcHXYBv#A=pB^J+>6OMVTnsknotxoNBh^X+ zo*L36$LaRN(AtxF-DaC>G(R9>liSv5wkd&e#s}kbOjKbrzKeVn{sG}E%Ve+ycL&xM=N>O&gK-8YNnD0Qom%8S4Y3i^;WL&U_~O0w8oeFv6rUIF&ob^IsIp8dhD*9?18%t+ z5B|H}#d|=Jy-n{`fd^~T^Y;=#Ur~SCig4EWDuRy`_Q%?3HsWa`Q#{!sIU&! zy2CUSoyYfGWYl$!Ts0FVbG-3eVdB>yw?~tL@3AV zZ$j77X_Ts8My=ZdInKxQ7Hj=u^GS)O?&L_y9s()F9{aW7qU=rhFTf}`(4xIvNPtlt zl1wnQ2Wx805Q_$b`NvM`uNdDFU8CLhUtcqLs-KaQ_c%4qH}X3g;x#4>m&`y`b@;cf z1_O==2P|6kBN>iP@MMXWkS3acaq$o-qYX`dN;OJ_)#!2Zjs!i`;;aO7em#x0ry5B2 z7%AT;`8+jEdOpbWzkg;pLUS|6-A2z@HNMj&wD#q)Lcgo=mFYor>dc=-pGE0v@=Ob( zr1n|(;C#sB%Vi(aqlM=^h-BQIG`@75b28Z%;j}_VJWbZxSs#3q%MU{R+wO^i4w(O~ zH#MXrO~f5ul%+#!7LUyC8enX>IT59NpR74Q?ZA5WuwfjI=$<#!vfDsFsqfCvMJS3e z3!&c0(j!`waGJ}ieI(6_0qM}*mJrjhNAzF|UM->i0ag?K7}6!UO%oIw%iD zJ3|+D8ja^EJzab}rm#CFmbjCH#kTmXH+6@5d|zoD?H?FT61IQ}*%F-YBg*6Rgnf`B zcGQc)x^R=j>fqH^b1j>@ho$oytqW}ua!l9%AeB1)le29YlQe4TxeS(PUz=2?oEZx``l`_7i0s3nTZ;Wx#V9gup^R)ifc=zuo{O+6~ z0NE}$6Ito1ApZcPYe8tYDmnZPDbrXAhI#?rwjxLDgXL*kgebiM)LUuxHJUo0K1%Yi z>D}LpD_C{|yE_G>4k(_g8^226zT?O(MbwX73)af{k3N%S;PwQRnf}*;|2L(7tL=4# z6e6F88jg{}PqxY(BGnnnHn5*>KumawugblWD8Bld(`HrEmIVzQKRj=%0;P$5b_|z=S`0ojQw4LC#Yo_sz_>^Hk zG%u2(;w3E!E2%;Rts|X%{FeSfVY>tx3Whlc14ZlcBI7ksCiG%Bsql5IDTx`o1l**0 zB#PiQa@ychQ*qrlu7Q$(kbc;|)gS`)Qke{~#2@)1ya)jRe9{?2VG2eZtc-ZY*Y|t= z)@@){XazTZ)We@&Y@U$gzlaE5yE8~jF4SB1Yh**_JBhJl2aFnkWYD^iK?PoV*f<#6 zlkz+K0g{tk+*Y7HDYtmFAr>X3e&E9bCma>Q6?THeMkNQiuD?HGnP!Dh#~hP4Qs-Ne z4vU%Lqk+|V@+r;S;rRuLV0Y0WY~)Tr2ehMxtgcNZh1fszxO%u`*J_K4P|aCM%6l^3 zU&&9ii0Yx20Uu4vF>KRjBjX~;j@lwMsWv2Svtf7L9KX_;nFfE8*`rs|!@o~v)?xH@ zNiW^EkUCKhZ8g%iUt~x;@5fkxdMPsXZvE+Esj~(LMsT?mN>AR6|DF`otsD>>;!gYjLD*jDGT?`>|c3oIEAxK2E@t@KJHf195qG zLO@}rZ<#EWD4y>$I=mH4_zIDIpYf?X#XW`U5eEDxkScg7EjQIRk`@us^tm{Y75gfkB5GInqpPRJ1@Ly=ye9Ij;bt~McWqUThWz&RbLgA~iJY{RumjTv&(`o6|H z!7lF{dEoKTkL>a#T|?_X9P%TwwZE?DW-qdwu-}t>a_p_@0z}on+wQBH@ln5|1<4)T zfpNkOZeB&K1GX(%V_q>NchPN-Uj0??Z4=z zpnBpV;S4+EC>wfNj8YByu1L0>g<@Ov0#y(~>-i>+A$K$LF2aAIJ*pLBC~imU^62K3 zv?W7bQJA{|GQeIVhb?^p9x`R+3+#49i(7c68){5!gUH2MGJgos40UWR$MKV+)-))0 zM}tZ}H+k5Feip7SFMG_ zODZR}r|Bi13=LVjxvcH)q-syMT*}su$i(&vb?#+BTyOv6I)!8{ElmRkA!#LjsFl3R zJdFabvv1hoXsTzvel7RB=U|es!FhU-7~nU$t=6yo99-5Gu*fiSrG>j!;*|!CesZhu z7F5%G5%vl6s*10FKfFtXp-j)=jVP>}?jYH!MzFm^u&&_HxDQ+hDZ`KY5Tn5({bj8R zK^xh5rz8<(k5n&yTW+1uIA9TaB2bm-7~8j3VY}KctZ5_+CKot#n>joLnbI@o zW4QaIc!NA2v-f5JfJuch5Mo@d0H)#_lUA9}59%Vt6P73=n6zlL-*yB-5%tq$aWkd5 z3)B`KPga*ZN``c!0>SA9o)?31L|s{mu^)&{(*0r5gJ)4*xfKoDVb6~RHl3JHSty`v zF)jMcEP9uI|BdAQE>pcX^$uH?xZgz~rYj1Egzd~86Myi$(|%L`!-z-V`E>~n-ext* zz6tOvf?f2X!*rwMSOUxv+rAnWE!(v8NbgSMx69vFjfBG{r{M`AEy(A-y9S2--(p?+ zj)UGF>;s2#m{)@?xp%!{WO{jYsXRdK}$(JVnH?#ZOVk8`D)EJ!O#-St~BHEOqUtC4|zD`%U ziU|!5dHrETVfRlo|8f!g9&&Ipt}U}k)1cMpyw^d!+9Ng3K+M?xOkDw}K9J8Y6EHjD=X-n)W-`gv!JS+07Z0*jz6f{& zd_EU?N82DUOWD>vaZh0Uf}XdRfzBhzr7&GymA1CLozNe}qjkwBWIu(;Rfx#XTWwd$p0 z3sd$dyai(g{2|%4ak-?%o;&K}I)$|n=I;(ks_46bsu{tCeB!VDsB4kQxfl`3mdgT6 zzVo**M?)>(Sl|)&(BS9*EP~)B@F|d}5-XmvUas_bJ~-SwC)XW$i~U^|79Z|0>c|3xcN~{FAzefotxw%VSe=?& z`i6l>hRMxo@kpF7y~Fq^;tNg@FYLAs7z46rE}MyNPha-`^?-W_zNE^cl)0`9kHzHmfl8Z@3u3_>-oI!=Z74LAqXGb-k~ zVUF4vke0I!{)0;?aQHzov;M+7>{xK}^Q8+~#i*>A3+q*KJbUxrIpUVNrXJ3KNX^Iw zY+Gjx?{kkDM^)?{QWzmYN6*wfq>47;M>o{!r%P=arRa^woi4pTl06*p<^>H$8Eu4 zDty7<=~Bp{7jKgD5c*vM4Rsn53nYhDv*Pw}&sc~Pq!I8tDi2CtR$_zFMi zK@PzgxV9KQeUdWaVMF79G#0llkfk>Kc!MBDoN$AN=StyIa?Bvb1LPuq>{vPoWl+kk{ni)Lk`QC9G1kK zwpGrFIaACqj14n3J8wVV-#>6a?)$#3`@Y`S^?E;Fuj+>D{7Xv{`GpBR9_Wba)QZ@? z?1GKB`ng*adj=|}o8;~i>`=ZL3Ypuij`DJV%&{jHU5sDBAKX?I8+jtulcL{F^c~k( z&nu7j;oaXdSKvGptky62`%yp0>OY_^Qa%$Lb%cjz#G0LrD`MFibWsiHN5fp9uj?a( zY4Fum2{{WA-OCE^7?XsFQ<@si))(sjiI80Daa)AV^vuMJcZb;H?Rb+9b*6|%%1#ikQbbnt;)op1nVd*F?B!*@BSFsQg1M3@&jUQA z*A5vep?rUP;LpV~m^_r9;OVk^C7&@qbG4sxX1!&pR_=xLck8?`yGfaK=3!2d#N5*M z*{YBk+4_8-nxlfzqo0W7eLeGtOE8yxpo@$L{=MSa$jBB~H9Ejj>(89&ohz8fr}XVE z3Ey&1Bax0$#;(5A=VqHuj8#3t_Ug^e6cHE|ierl9LSOs*%7dj7ao} z(&1}bdP3C=wWgI%794;(R~RbDBG(|$Gfh7|#`1!)4hA9Ow;>ysIH#7Y{krN{?;sT+ zqV1ddYg4y50MF#fKMlw$fnKk?MqV&32(J%)-N2ldF8mPrG2X-lJLqAU+Y` z3b*z=T`TH0TBW_SjULP$%)~t?5jhp~S^QXu*9s9H7dGZugUpUy3PU@vOga}yYNVQ) zc;!rr*J5O~BjtZM))tc$#Ln+b30#*xB(#if80cCl0r(YYWnmnjJ{p@4`9)3k{X5H# zy0OVQ2HAx0(pZZl|1ztfWGrXSs858gOwn&#WK+^YNYbeh?j@3Dl5scRfH8oAVPh zq&ehuDO}fTkKeyx4aLU&{6HKgfo!i2kjyB#yZ;n5CzWu)c-~2c_TpaFrNGJ8YL~m@S{mB zc5Q-mR$Sm26Cv_FjF{PX3b6i^du#G6kAx~#cVikNN{2QpucoS}JfbA5scZONns8{{RJ%uKFY$)Yp5 zFu$gh$?QaXSd}}hX~Ab2MMDt(uH%8L;;#YfOG=_9lG&~*V&bFZkgqvG;0L$u5NrCR zt*DkQ{y?1WDxlAAp$G_&-M6!^x6at3N`R{fsPMF~Jv_zbY)ha*JBIB*6x|y_ww!0O zm`cN?5Joza0tYvh(;!3iLc9<-an=Y7HRBN$=#N+kVe^_M2)DixCThsQW*OaQiB146 z2N|sVHb;2Cm^FiKtn>qf2eWSb)1A--T`{s<@}4(LmZMyNsRjjiN~ZokoN=xtMo5Ig zjb13&!Mxj#{e_juUd+OI-y5FKUA?srwGheblJ~MSCB4TZo53o1`Y0%)stuf6Aac+N z`oljX^RF?s$%9_*fM_@uX6HVre)c-7DwL-vO>FRFj*SJTPn>EK))hO*!K5k^n4Xz7 zre6xnNcE3jZk8hfnO0uWI^21iwvSm28{fXR^fF`iP@?*W>n<@O+j_F#71GR;OIG^3 zIG#gezY^6PYGRvqm-N|ZbOBmB*sl8^6OY$t?S=Yj+ThvzKasOjvSB1Ucyl*KpXcs_ z#64biP%>FWLjdPe!mX*HS!RB$Mc=S}!r(h!wBti~7v(=S1-#c^8VWkYeD;+Z6;CgQ zFU@?R%T3AR>LQaBWJWlia9X3XEWE)Jqt5y6O=$bB8f#wNhG3bpbuS`1{-h#f>S0pYF=Zbbc zS>Jp$cP_If=7srO*?3)2p`nB5>I*@v;%MX!uEs0q?W>5gOMUKRJo0KGvRSG*zm$^2 zvLn7t9|kHsqz0r)`mTqoj5V-l@TEW~t2v&TX1x0AdN;#ej6p7n?F z-kr_!SWXm5Ki(`6RG^OmtswcNgDdWnv?-?l_3;%ugf-RLI$uKJ>(GL;_VBP+D`W%D zUbS2<_nB_3SaRvl34*4W2!x+W1f9OxCGc}2zFs3bU^uy#;Ye%~N}!0MD1DZ<9iZWd zp7J%sz8X}#$Dv}g#`4w!CqZV(Vjt>(Y!O&DGb5lJVca*|SlsvHcuIEEJmPSOH8-@k z^U6Gfq=2^zZb3gp*Nk{Zc?91%BrF?_KeKXg#Ts3e&tshZ#BbOix;Y z5&M|fnaHQ=ut?ur%Yal~Jrz>FdWU7M@ccUuOq{e4_ANNdIpA&!dvS*5u)2k0S3u>` zWzU~VaN^;{A7@2j0q znOVKQlW-pcLisBbuUzmpC@ZVR85~xYLTcxgAc|7>rB?4&QP!7V9m!cPoLxpg1-G?)@Ha{{I{F?-b8H+jVL`_xr{3M!zDo4BA zFA_Yd5e_6)r=u>6-i2TDZ4iKKvSTA{sJ^q8iqJ#XO@WivgoL&qc~NlALEhv@34w0U zY>cM+%s|dnRcuwPKi_K-g$cQkJ34?c1QWE*zsJJQi>Z)YFDlrd-Rfwx7yl$lbi0CS z{Bp|;tj7q98G!ZactC1#D40IuB%KOd-WVaAtp&pF=NGcd{qg8)XUt7+9Dz7$}t>yNfUy(#mF-T3t-Z z=t3)eYDr*^a;zO(v1j-Xd6FehfM4UMT8*xk`RN40HVaI|2le&=t%(53XdwjI9s`DRP6l~D(no>b>sRH zcWIZs&WYec+u7Eh(nK+w)v#&ncz^_Aw+u1TB-+qG6Bnp}vgJ@zN3w5P<=->H z!9gtd{X^h79|UX6M0}q$A!w@SL@m_J($I4i=q+`51iVr2stWwm;6gB7|7C!enT)`~ z5y)FJX@yKLS5O(v0aQf+=wBgpo7{}}BjgEDi=Br1p?!ZFuDys1&P#g~$_^E>JzIj~`*;iwmZIfbfN@QXz)*vFlwJzicr>41N zWXk)Tn^jYOADhwrJD3y2Wa4IWR9mvc$-qmB;e5RZixuTt9dYmDgA=TKFTt)SndRVM z`~-W@?KDY0nGFwXlSi32UZI%N&Kk7=aEXGAi-Jca zCK`cnZv(v~n7t4#Gn#EoO0zg&A8_zd4Z&0n_-kt!J?Oln;G}Q<1vHX#_2DT2<5e=lEZ-V3 z9TBZ0qkjaj7olqAeCd^_yO!zEjN?R4OH<`HRr36{L%&EeEHE{w4Y~D`tOGJ*^uzNs z>=vLeuYNY=jERg$kj6{1wk;A@t*F4jOIKLtQn_I#guNqU&(`ax_(@zGPg|RMCe+IX zu$mJ_jUR;|R!IHx&j-3oN05W+1F;mkqLoYsbjG z?mEB-rzZr;?4{!5GN=*Xv8!NiEXQGo@O$So7NYN2K1G^;W6V^?lakxhhI|dHWJkiX z@-l9^^Y_csa3vd|f}w3jxVgP7Mj$SO*QZ)qCKK7$uICO;M3u8Ec|-e+JV+|MbezwW z5eunc>JjWP_1_X@XW?nexXV`>+d?EfWC+e#KMO7;zNWk7Nyl>T+W<*)*dAGvq7 zl;WE}dX1LF!)71k0wcgHkf){m&EH8Ix1+m$4i*AAUcB%{hnY(0!7(7#C5q=vEG8ks z?oAlN2VP4V{mJeE7gncXRgLZj4=|z^P36(U49O)h?pwTQ ztbM1E_`2&~d#l{xJFp3EiX*N-Sfbw}a%P$QHFV2SH|~^T|MsdKBQyn)nta=k$Y|>^ zbc;Qi*&%bhllF8sK%9|+sIgfeR>FpwAgm^}9w1et*M9m5nF zNSaKT!bRma4Dw6J<`6@hmn#c2Ywr2WAlIlzwIT5^^s=@#=_oJ|2LJtcq614|VLFi$ z8rUY9F{p@A>87!~79@zg6G0Cl^VRd7r!0EzXEM4MDeYa`yqVlji|ixe8SXVIe_Bb= z2@FXeu~;6;*JEzPZ*^x+Lxf8dX+YgVzcn#^$|ZF0PDY+W?n~wG^3Vlc3(%HKYZm9V zl~-S{NU~sd!4-`{ck%w=Kl@b8bP^NTO6PHa<)0fJHrj;j6HOn}ap=XltE{Cuk|i3R zAoy6p!GpJAF1I(g9h{zu@@kM|)BrS_S;9$=*Z)0(tQ65?{w^zG~N*j(FtC2 z90&M*g@5}R(y`W4rHWTUQT9b$nv#Uxks4h(omZPmEB$6Rp<^~Z1LhPsTqdWr9{F{fl4+i~^k6n$@3p512A zp8b}9?PG6{MuZ!An#*qXg1X{rDY+A1OonIa!y^pVepO1mZvfrO^>9U{;UQu9le$#HSe zK1ADvH%oOkEHCt#joXAIDdn(nZ`gfr zI{0|R^An*ncc=KL1jk+0eB!x?kTuYxJ={tij@V1FzGA)WraWGbS*XoVEJuT1VzNYN z6JHfJh9chiGklS~5=pOX@eL4Yf@U2XKf>$dr|}U9oC}h`9-scIzUgE| z=FRg-n3&DRHc#T)TpuO)e%s*d%lGGAnY5wI8`Az$(Z!CF23hx|5q%hwvRt-{2?<60b>!*1cEC?J{&;PG7<_&1Z+?J1TLt zoQb}KAB0Fn8q;^NyR?#Sw;Yc8=H-8?^p-C$$@HrpjkkZX^TOiao1?-Cfy4V{#2tMu zd->D&Ijznq{e8fB$3HO(^lAMz5bJ=!-7#ZRJyD-h6M>2(qO~`F04^b3)w!PR^q=a$ z4X`1ba)5gLXvC4;ci5i4ucmYq5vbOdUP}>P!ua>M+oQbNz0}EpgONfTL1e|36T056NR^LV_Asm&&0T8DXg0R=(W=*Ku7CroEM`GCFW#lzxK)HKI{v z;rLjR=0fyXF$%hikSl?zB1Dt6dv%EW=8Y9&;9@g!wzbEV4K~-T0MqxrpGYwP)pp5Q zPsbYIepR|GKG)y{XfCqU7^UNibJLKTX3S7i!bmKrE)EZ?2%FvURkwwG4E|`8iS*c#*=GUDp4F-OyG zim~$#zGm6+@g(s6Bu$p?ObOF>YbElk%fW{p6OBvorcvK5VXtF>gQ5 zImD+I(PO9dbJf3hOk1Bn2>WXGkO;U2{YC5gxc@GuY6ht>ZIlanQ@RJ=xEHv640CPO z(257EJV=W+r16~uxAeLopx+FOH`xu!+>J}KfqTE&inb#bC9v+>b93+G08xb8AgWg)gY+~?7V@5Q^Wh3{R@&wV%${PchrvKt>! z2^73&vXCYb+LDc#&WY|i8peONByI1cksmkRbX0rbsF6a$Slxi4?b zFsLw7wNicoMqZ)gQo?S>LY3BL9R?+}U-uC^>7p(=ygk}*t*WnUC+a5~bxrw;x(M7G zk3_ykVJ#4|fARc-CuxAbBB%pGvN#^!PxSaA?;aTV#X5VySTZZtA zsTLUVmk}IgJB6$^*Pf8a3o}SLYrjqKrw+S{DH{xcOr6KrvNTDsV%7{#e6Q z=Ymds%XnNr+VJ}I6U49ke`69q?Tzt|RaNgH-GjcIm0JgY0GK-2X5Kl2@S7_x+VTJ- zRcnk}2kobHqm80+mv;kZneDu4ipG;yPXbZ92MU8;#bEgY$!nbMH-BG%? z6R3gMXzM%-I@);UD9(*SW4latHMzY_JA=!L*t4n)18s80^`hWQa2|09eKzk@KwcjH zlr`A{oYklARZgq8H6se-*EwVjc;Cj}`?f*p8-#XsjdJ9PB|(l=)xsx~ z8RX9HdF!9md^2d9dZ?4fkL~M*=>bk29fM$2%U>0}JpZV3Q|ff-cBQ$|n~HuUGONW6 zu*j|2MPpypl(P>03I7DJk)*+DeKovJl3lzT-gf}W&$i&G3caar*C)z5qPMbdFn{~K zI$Z^o4aFbij8Ocz6lBv4`p19t`|`WCtLwtm#7$aJic$7zT(C6XnTa(K{iZ=tfl>DnJ|6x_)EytjW+RB?Weep`{I?6?ZEI=8G)nsLXrJ=#Z0Yx{<*DC zF4seBq6@*^i)AXfK@f(?(VFSSTm_T=#O{t$7#TXdKE<8P5^Y9~`yo2C_`Uk0)UCcu zv$Ar2Fis>b-Vwy3%*a=2i_$zO(ek1(LW;72Pfkofq>%Cn{!?e}jtjp3*kYc%Hxnk= zIKnKfPeK3?kVQ8Pz%u4jW0M&yGyt-w<3lI0Y7$0e3-fd$kwaN@a_ouIGBEh8(dve031rYf!*H8Xa- zWXc0TC4{LV7Fhc$A>G!avXx}ju8EQFUTMY_j$aP=x`mtzcko1Q7zMK|OvJL?C&RCF zrfJ8)=fslD?YowPImPwW-|9c=_<4Ckb)T$982zxWU2|=Zeg7q}@;rHUE{(9UhpVRA zmC-mo#&LFABdR^X3lHFePm6xZyt9s$MZ=83h3A=lpnl+Jq2yGIkoyP*K4%@3&f3i= zmz?zlrbfv*bMCn=JBNL>1-=kQ9fY^R((g{pHBFQ}7wuUdPGiW!Ucmnz#lq)J^m(Gi z8*ci9arX4k!R4Eq?Q4-~@!Q17o(uIZ^ZD%geZd<8b!)}fU;!MDy#m4vC(4EXUv%I$ z-pr2WOr7Ohk&6dq2XwtUQ|dm_MuW}9k~gi}^is_6WhvOw{i4ChHbCev8U6QyM9b;W z#cOHWli?|2?~rDvf#4eEdL>~%)}>fIJtf`iSfeHHL4?ef*@0{ruITk_(M6t(jCRCx zko-c`du8z09gmQIzD-&c_gJGclL)a8s94lMX|ZKZz8YdqUb)7zpK2YX+*lCy#EGk1 zm$xEGyg`6_Aik0#Ux%cau&0{f+?AT-J3V)wb_Z+iJa`BNl zgnmGMt0oidli8%BI<76zMe4g9C@u=ApFsLq_{s+9JYs>h{d2Hmg{9d7L+#^;f=9E( zkz3@3kKho#JbwI_P$>z{!c4fiX?=H`5H;<)v=s&{1EP$oYZij*H$Ru_C!o}gI;v1R z6Z~tcpVLsge6Zqa2y^byad9es3RY>i7+MR@z==H<`?V|(%A7@VHBDEjU?}y>NjjWl zZZfLrEB9GH%ZS<6zGV=mDv;pzB;uE}bH63l+&jk0`HNnreG51il_lTvMctpN^!0G` zN8LZkI%LR2-n;kWa$N;ocv=r}^Xmypj5i_T_?F@6$0cP5MUh~l%TyiNz*8erN;A9( z<@9{@s>vsD#HdpFLj4AD=|}SBSlwy#Gff7#8?$m8I(rb4_mM+V-uD3Yy}!rSx;e;E z&~vYik!=(~H=}eMUcQNa&$VRgy?Hi0kf)!;%D5Zfq4i+Y`%}EQG-6r*-lNLq z^{;luDZXBOXk@8_tk2k9=`B}H+U2Z>9Yesb&-RnA+FRZvv-@Yh_5Tm@d0n~U^EMi$ z&}eiLl%Xolcmx*KW&^$OV%Tp+qCwZW$ngn#=(hyji$|N=Q~*0o#yexIriwt##Jb8L zj39_T(E0WhtQj7oEWRCAQ)msM(ITtg)7I$4hfsNMMeK~7S{sTSqEiXf1b9ygB^A(w$M7lMoynb(W#Wmm^f~dN~6UU{|P}nIU zeSRnsf#Z-@kRGTBjk+LU%2f7wB|^e7+dN!~_1YuI+oVDZ?&G;z%0GZ6bfHLa-OM-of&(v~U$FT_VVv$cPo*?_JsY&NO!4lUAUccf%Y~OAA)n4!* zlJQ#&jbgJ$Ev^q+F1mJz^%$uo)#e}>X~@u6=mNgGRYy2zr$#sapO zPlH*1-O)I7zd*TUNot$vZ))hmtossx{6>C3ns zLAwe?6JKhNRa=M)9gnP@ivB#%**&&rGkl_X`*@w5FrGB*|77K7J>os_TS0a{`VnWq zj#PTLUO~wP{dHzDNN@{@)ot|w?TcEKYM2+qZlM4g7sI9r%yEFgq#PLg^JN}=wY>s^ zOfPqj>evk0#0H82sM$OESfAPKeWYK~qY2y%6INt%Pl~Jo+Yo~t1`ziC4qJl^Nn*}d zI+%L8h<|)uqB}jLre1Jx=3o*+^uinaod~?X&_`RP9e#nGZIoF8f6nMtZn|gF z!3vx!k@`A;_#*&cK~C_tjQ5b)T-Gvzrx*)uo4F6Onk+v{%&i?mTpRiCdE(=`}_y@dfm;3w2I`s!PG=P2I z7h~opD1AJ6D15(+TZ!_YD;TB1^ZS^BG>-bp~hyROEUe&3B49 z3Gc&fn5&qi>3Wap1}m>y$Wi&|#9OOj?{+B395a#NspB<(cInAO@CQ5tYYsrRp|1n@$)Be% z-#9jLoVTjgiqL-ne~u}j5U&FVn+-&#S^b}e*!f0b;|oCoLtchS89yhV-q?Q;raUlw-0~H+p2LVn%&rYyg)gYKgCK zv}?Emi&(~vP{xexV9;OoOFj48Vewb7iwcowPH?60DUqEf$oi=pdrWc&#js^%e^sjh zyWel*nLSe~GJ6q1slZPx=TX^r=1;QXrFw4y8yT`;CgI919T zQlH*%%X2GOJ)K?zQ`NMIFN^!Ww<;BGNM}=^h_RKNfK2CRG-3)(gB!6Mfn%){E?GkC z-BuGwJ39)3y<`E^Ym~d9QaTNk@t=g2m9!=l>of3?Qq%sMi1f_`=}L-OS{Up&gS|DG zdDliGbK9c|eK(+w)b-@9Ucwxhheh1vUMOxH)P}<1At(D#l+qt+BU1gz}4aZVvx{;A= zL#Aje6ai&;RRlS~(yZvh?^8oWtBw^%FG37c;i=s%tBz|LR*vfuI+gNV6CpKcPX6pW z@RBvI?RFn+*9}vXaAgp*Qtv!t~|IE4q|xD_rHp!HPZy z97h2YShYZpR;~l@Jm1M2E8SoA+bA`o-;8~XW_!5+7I>LHL13Fm1;43zEXCT)zLB;1 z>5Euum<+paIdjfP6dA}8kEx6( zLh6? z4dXloS!fyOB=P2ATAk?8y}CcVJx_KP!}eDSBTRR?n!F<4OLWo~bffzLm*iPp>UnZ| z8msnP06)LB3`1x$$Gl=GknUfsfgTkf$2YjgV*C}w9b1B`V||e6ho-?-JBL*&Kbt*N zA^#^G0zdlKgLEAeQYIhqB8nnYrk{CL5XXzF8kU5%8&yJ5>4sOu>vf;Aqm`EjaD)@| z2>)03-%%1w#W2k||A1puU8>RC(puuvD}AC}VSvKs7w8bP7yK6e=>|&p{mtpOKNOs` zgL^m1I#)#p2pCi{<6ZdvyzGo*#vxoz=Ke-tsZ^hO+zf9R+Co@9-6gD|dMc2t>i3o&p%mlLfuD7{h_e4b@Lzil1{kQ>ydbQ&IRGk>I$6Z zT*d`)GWd+Pad$lIHJRtNHt|oTQUxRxW>_nqpHk{?u=oYIE9&(lAMAC(fvDX5pa;;49oFEy5gU6O7R& zR?kv6qFmyE$-{!|aaE-+W}>p{(U4oGbQdWqtgG>5;V-Vp@(&61+ejUzWzc`5=J()n zTjSRA>-%3e<;V>vwtmpV6RZ<*8Z!IxfeFZsQjPhYk}Dsx zxq_7sY%fn6q1?*F^5F>w9~dX_iV#Na>??%6`wrLupI(MqMQmGEs&kf{@{UnD%{Cs6 zVefybJf?S8;2EghwP!}odCU}Q%F9Mef{x5=ClSl`_7mlTL83AF7yxaDSwQQ5OrMgg zW(s2p>-TDTKMXm~&;97smb@H%DXFewW$8!7h!8XE{)V!P3e9+qkmozU z5VzQj5He|re; z>xy%-r4)S%Gi?CMdzDW1w*ck>sIujNs*|dcCtBJ~`@+)eQ zmGw7VyJepiiX7I9yK!buoBZ&;8^OTmX)?p7WtJlnSKs3Dcy`_Rvyr8r`uoP-Y+gyg zKhNs#Hd^!AlepNW3_pCFG2gYcYD+Yu1b_JxDF9VXvyXT^tWRd3)N@YTDS z0aDZQk8k})b#Ftz*km~*ZJgRA@HppKyBL@sSNvMFNn9<)t#{xBf$X*h3e*ZOCSPO?PB zz1~ms{~ydFZg-oGz6EMaw>lnl3$5w@HH1{HtH`Wr4=P|`d#*n}`?slDX5Y&gi_dcq zy6pC)j7R-uX_q@vX_{Q(RVhsqjStWr>WPoVnHRRMSn7k&_9mXpm7QUg6gj*Y z_TJNW@CH_cXUYALdG3?wrOED@PnHlV&F=?}K5~=)l)3rwUrCtNa{L4KBb;10 zMmJN@Qx`^LJ-ax*8N(XEpJpH1k?ySvc2aL- z(;gd-kZ(#}qh{}%9ar@l^T@c9XB}OAl65`0jIJ40U4(n|IfbaH*7#mLc8)QJwP&kl zb~vB;5Ony917-;^QIsbkl)^F*X#(@`j^c?-$2;p*HpH|mLRpuM3+P)%g|d=E=mGUm zZn03>|{dbyU`7VA4U^n?{^NY3KRAjsH)h$`_ z4{277bSmi8O^_>@WmaC>PHFT*zvKM+L7%GLR7HiIKTa=aB>Y!P`A_nK*5x$8!_uWMdD_WgSIC_e zg8a+xq1JAOBvR{bQQ4fRw|LTy`{S3gOiJf47*i32`ynn5NDV3K7WV$uC#nXXaq>l5 zKmTCj@=e(W$C{#dE|9Tf8#y(v9t6$-e3+PRmO|Lzk!9^ z)8AK(92vAtSY5FXuKf!#@fuOFgP%26uyfMMxIYD|azsmdtdl6~2 z-*}@0xSkMxNi3MbCKd8iBWa_syM6PJdze;-_gLCKzbNP%;h$NG=J&aVZ{SpVSz-d> z+{%%vTsOnjeeHI?Jp-w>up}2kf#8v&Go!&hIxV-b@u_(C8ZZg5@lLzHOq=jnm^+`8 zjc#pflgLE6Q+pCk&W%l+!7QZQW_=U)#C-OW-wHzL-TEj@Le}$g&RBh#e>xLg(9NL743k z#h4?xgwsv&Z_^gN_T`o3brygJdOh^Jhrc}mbt_fP>V$3Kz{z28m-|;;Xt(d5+mz{- z_Eq_pP}e|`A>+J|e38~@7K9=4{?2B>rnY`Nhgz4$+-@EghvY)B;Tbl0(=F1&u#e;i z5c<(c+~G2S8tr;0w&Ew<9yzIo=lO$&6**X&iF_V#JOOYC_U@~8+(oS05|~t zcNM#j+WYU+R6f+2$1_-6_kHr0)v;RD=u?NM8^3{KaBidzV6M>4|Ml?xcbs<$uV|oL zW=}@b%L4kqt}o%o5~5RSmqx3)GH>>cMKY`#Mq~RP^jD&dyJ4s9>!(rD0&jwx1lp?T zh|kIcBWGc%ICUqI%k0NCq1^lHD*qwVa$IGL(s-J|95r3yaZV1l{&PJNZZL(?HbmbbRul>iE`rV)>1${6O^H9nP!TX zB`aK_`s8@XtZ%*ZLO|cU$R9@Fn|+05>ONn>&lvepsS4c`?IPtT!?p7{Xj$OX2h|)+ z8(7U0~Ox~F{tYVTU-BuIiKERrrN zd2mKp)n*?5YpzBOo1=kF=FHeAW)2GvM`IU*LK)2sF7xtjbl?GP;^hW2bc^15AM!EC zbfI#OdQjkST5^F`doSlAYVO>uVA#OxTb@(UeB~);f;&=VIgH=uc@-PF20pmV z3jVmHts>e!3o%5Aeg0cv)J77wt#33QqU)FCY=nu^A2VD!Je{Q>Lvo z1VvEr9T18O`C6>#8&eCiy(GnV5?Axx+g|{}=7QFVo$ikHHr$ftp}CBy)Q$E|7-?FR zXCv(XFHhe9m4s7kep@~QyLavosKBhlvhnjl*16_I0QqRaD#79RvEyTV)aRub8*+_W zw#&Q^?9+&xuKYa7t)&CQ;6Lp?i`Pqq+nTMLM>inV1^~Z$!y@)~zKnr7fi~UyC|kmi z(;v%uYv129ZdUmmvCY&NSZ37A`8-@_FCD z-)%cqSB{&$#`9@l12gV@ZaS$K{`(ikny__-0VnF&wa>bp?nF*MUVjwGYu~qk3n+!( zw`h8+Rc+kZGNnS>$7Nqy6?4hAnK!1C82HR0YGk3cJD(5SZo%EA2v#0n_#*1#;YuRf z2A{V71zEJ~eWD>lFXeyViX4_toqR6A-7dqugq#~$LQ`jUCc{rI+5p{E zKEPhDH^FPaP%vACpB^bdTtRu(L4MZwL40+_d-ig{_|T=_8>#4V4eqxxNKhK-Pk|^@ ziIt0YMi?eW4a{giVHjJDDi>@-w9DV-4k+T!G1gx~j|JHCk(K9C#m;lK>lyJ}uY=!Z z_7_5jKf$-9LOkcxbKwX-4@#T#N`bP`dr>>#rVQ`&oLsiyRVMJ_auMzcfvNot3t4cuhuG z^o5KO6E{?Xx$p<#k0!6biF6(Q**CvL@}0EEJAR#(Msj;y%4Ix$!z$GAh)eSsCx?Ol z8efR5(;`*4Pq(1juZXNg)t#EzfDXGhmBkOg`RMIB;F{)@An=lSv!8UU=D0Iiusa^^ z1^z)NWsn!PZBCejtC1&^6rAy(G(09jxFo>ZmidBzanmJ?U*l$FnXV5dX#Eb}6uup0 zLv7H@n;e07+d1~=+~$7aWo6KnChHfg_3;-1ljuNeF-%bH6;k0RJcK_q!(Ng+5oGAa zlW4F}_vA_3hPNGkcGYv9>&i4up$D1MJ)wAK8F-M}PBhYM{qkdvj#INe9K7 z>;Q5GvOIJ~#UVEFm5g<<`$e`yx$bFZU60AK?_fsVg=E>8w6_)st_jX4@*~BxIe!Q# ze;xmllwkl!o9g%zZ;MmWo|izk-8Q|8Thd~s7FEArJC`u$i2ZP`4eU%6?;*yK1`fTV z(Jk_Gp#8H7Wh+)9!=?D z<-3>0B6H#Qlz*!l1zjBDdi)cg#yeNfH69XsYz}F#uft;>{vL^ILCbMxe~0w2p>!K= zw@u`V9?x9W9F7rQ6^Uf}F!moh{cA{Z!EFCbL`NCH_O<^Lb?k@rpH6)QS~;*GgO?Ef z1eNH0h; zG$==sdhmwG0P_~RgvZ?BD5cOmw%RqpQKy&(d4Gr>@ZOYq;(w7g=mu+Z2w>BCx;dI$ zPU5U8P=n3@O>6g){PpH^C#2!{(;k%LtXe?r>yP`C^iDc9Hn}o3?%`hDfG7FI!25jl zgo`PB8P3;F^1PZ0fKDH`(M@vw)=Ff+X+8t2UJ7aisH2}wcWR=C**@27nJlg=KZx0z z>=Q8G81|WDdvRq5Sc^EuI#E%sJ#odf`@|}So5NOWBwfxI#s?#@2~avhnXLBcO7i%6ZztwLx6i`Hik*O0rG5q@uTGbD5!+Dhc2%F#LV4<@ zDPhcapVt;N539?Wo?em4ngp+(o{C-nisX$P%%Ol=s(wdqi}FHitefv(#hzP2f?&8C zu99T$$q!qwhju)a{&>}=s!RJV%JT%$ket_!R(s9&l%i%!9>6%u{LO>@rVpnfJ#XR` zmCYM}+3XwER6%HRUqOe_JN}QRbN^@hfB$$ADxs2)!#bf9b13ArF7 zmq=qy3DM&g5j|T~&np9ozRACD=zlOGcv(5#Ff>vD9$f{9B-g*kW|^@K&+-$ulfyAq zdIDR8q!e*)Y~Y57VHqwLks{`D7h?31RF@mIWO%6Y4$e%Lx|(wplDhv2SKWnkSTeCzwC z9d)Nfm78-Q-4vjhH7MDzj~xO9Zuu{fFNjtYxFCZ_)J+uT%l6N;kNtIGr@-Tw`C!er z#JUIR8!NW845{cAf3olWs>#1l@vRJ-@%zHu=9v-Ii&I5-vkG08*l7zv_RET&H_Y5G zZt1~4<rT9TXWVam%?$~FH23);P^7CjUDl}A*W;gr$yUcs9e*hcq@ zVf_gOgnjs&3}TXJDVV)yb5zpZg_H9-r`JSiJH%IcX?QOs@mB^dX|#c8){NE{XUb9^E&|fe%Gn6;WwrO%q1H*a$qyd72dBTX5#9{7xKZN zj%XZxX>hyo@x}+-?RzZouF8{idm*^uAC@G}`X-k|>^FJrIfF|QzlTN?z#H?MbFOj- z-J9{v2rlF4@>tjqcmw8AkAgL!-(?WC*3r;8Nl#KXiA+h}aIwiLw~8i1|;tNA@7 ztsmS85#onz$5^dTuDl5{CCYuqcS7|9q5k-$|4G2uIW` zCVKt4e&0XqmQism|Ir-r&VC+pI`T5xdlLBE9xJC`5H&Pq#tWJE9N7X^NxJx78{&nT z*}6wEkTc=Gn`TN#rf0-B)%-)NYuZ($C4~rQ=khabDi^7qN*niWr;n72@1{iE_B*x` zj2k`(L*HJVPRF}2!m}-C6Wb#2&o;&XAws4&rxtx^ z2aNoFO~eL*wxEHutN!{CbdhQlcE%eyuy31_3eLmE^MCrWeqzNoByWN@j@>k!d9s0! zoj6^!WXO{yUC?O+{%0?hful!)R{f6Ls;iD{_8?Gi zH{Vv>y5~cz*clP6{riA`7TOsy`@GktVJhd9_vk0$_=ir~1!cUS^ zsq6g4TN+J{UT%-7Q>;53eDj@EWnsEFy=uf?kk5ftmWeCq?@=$?_&j2W)IUl>UG0!W zp-Ji9`Tv;ky773wNp0$LZjw!85-o9VMQ0cwy0SmnDmLQ5C3dOEGUKJXXv%Fl=WE8K zrHayXbbD>pa^E(&A;B?t=g(!P%rO)DlS!2b2$o!`&hJH=|g z*p<~4t_)y2FtRG$eszf*t)k=d^;MLm91G`!3%t%V?3!3DBxbauCmw%3-2F}SzY=3} zLgwO$Z=YOVL*|NFT3tTW6cCZa5kvA;e(RjE^Ay&a{;a`$jE^M*r=8>}i2pW8$(^!V z{@|H#xvP|3_*O9dz=`jod)(8r0GlK~H7xdhp{1MD^3ixWh8%Jd^x44K0?xk6P3pfB!fN<*ekEy?@>c)s+P)(}(X#j`nS!*2w6<~R1}L)txTK^vC+%RVN!}TLjmoOO>)V-5Zq8y=!iJ}ea zUBCl!!mFsUwtUWcvp*x=zwh-Fw)nvR8>zq5Qa@~TE|*8Ra>IhNKdqA1zRSa~xf>xk zwd^Z_i%iG|#Fndd>0WFCAf_$1r{?Z#JX$Qccd4OIlzaYs@h#_1W2r<@El|WClDg!p zmg3^?59T**hP&00rZZ zx4jbAGTrfZlh$+8G%Mob*QC#*gpq?ud_mC3R5`HW2^Kl(f-7NTJai5d zm=N8VL-9%k_?MH?Cl(#D`$)jkQq9xpfwmg*@F;Bt2HO+1q=#n{RxHt@NVC6?2qP>(RkK-aPaMCitR2vVEk=dA^cAS zSC)+tO>hj;MMTMr##iYQ=Ub;9{~aC?8yeNN!H956UQp>%3CguKVQtX06FtP8`L(~! z6on6hJ*2v}u5?Q~+p28F#&h!#X`krZp_W~go1nlh&U{LgeSW$gOL(kADkYr$Vj1Y( zkkm_oJS7=I)ql#1 zdOW{N&XEFE!c+NGHjhB1@WF5tnQ#T{VgvY&oO%z7}D4ALc?&qGlESm(#S#}apR8U zP$K|RDpiR6>Z^zEQe89OMH6h(O^TBR;jgKE$f!!69hW7t&-f2)8kVX=t`z>_Ow-$H zzRqJ+JHf>xjK46{C|w&Gc<;>%{qrq1^Rlxon?2RH7EED4AQqh6e%boL)*9`msr{(- z_^++}Gt|CG8~!EB}yR)M|g%PfF<pjN_+N$OQ{iv_U5pT~^eQ7pbEqvfT=;e!V6uh1LN2_qoPcO1eBqk5Q zfSfX|n-5a-4>+(PD%%p%;?A=F4$6(FTiP`sT%iYm|)dDND3Ye;r%dUj36~Zp* z&4d+vzC?FNE?UBjxtbd?6Ozd`-8YJx$b`RF_$~RKbC}a1IxpEBO^r0ewfn1gkJhVj zz^7JYZITFPWGYP!9DZgS>Ta+D3e(s?TK%{W3)-_#iczFiXiIXlA0)z}waLM%$so4$ z%RkQV8{iX;?*SSH3M_KMy@dGk;sItkOPatm!w{V~OgeM78tR=ZxPYSP)WqnAwaL;YpXroz}#asSJgJ(tw zjjQursg3-Z~$M|d*a^ZNT z9tvgeGUa5S{uN1L$Aecba11^GmL(m*{~2Hc@~`ob1&$0h>6$R8KW0OCS7w z;0DUgv38M8&?m0SQ8I_LlN9b-Iq_d5$q|nXee$mkI6hbB0QHk_J)QNCjDsY-1 z9ta&B*zZJZ=|K#AzBI#ZW5!n`(U^C|qbRGTiw;SxP#^x)?C_q#hRVnGuJ?{F?#$ym zi5T6|KSVZp@ zn)$L=krrn0#xn67)5vn5vgO45Ol*libw8%nRDykx*5CT3_aQ2ZS50ibpk>=4#b}?1 zp*|MU{;-vW)2bYH>jB^y4=FXuI8#?j6Dm|6hM#&H;j<8c>TH8}#kbOA?}Mc`S(7!={lU;z#QyPU9*)x1^bH06!z$nOQ^m&Xk%5t=e9@+MUi&xx zp4SZIn}Xqjsv9jmAXy5#OXn;bF zGF&G;4$9`ze94Z|@6$X>Utah+34gem;#7HeiMVlQzV?HY z=eKnuNfG!r!b#*>evZE^)yS}udG9z{e&M@aH1*$+MOm~)7iv3K$yIE}o;Hmf7XIt9 zetc9r6272;?29VuZN!YdN*ZghZ9c@drip@C`H^S(ipAwU$5TTy`*%0I){1T61*5}d zly!{52Y{XAs&x~%`dXdXv!h@NEL5Ar@J7Vt!>UB^X<3k00n10+4c6KkY(4J4z<)xD zfm=89Tk=A>EA&GvhpWHi1EIQvv`<{5#<2bHe8cxXj*orC?`d>%#9;wQy2I=h)4TkdY{fI{g;_rDr1&9MKaQ8QBn!J?J6 zMX(n~w%kWb1QQN@RF8L?Qh6pCw>R&91#4~@W|D_i?$Rlk zN2&!Vt#*ZIe`rV~1s}!>zGti18`$=dSi9xfP`Ec2FpbIV{NKazgQ$B%>*mLYRy~Cu zGCifK0qD4hRToRnzvrEmN$Httu|#Z4G6GlYG# z+NN1>S`Z>dKI1OU_z*_ks;wN?+(XQ`oDww~x^QakT4evj(R%jtG7vD2cX-Q&8t&u{ zE3ah1r`uq2juu8V31TWOLd$X^3=(~YVL74N*7y9s`ETK-+y1sH>$Bc~nu=DP;REpk zdG`Kvsf`!oQ48@2G0GhYB98og*il~Fty2OI=SPps+>Ob^Y+!DGhCquv{;TE`e)k$y zt~t1|`V;oiozSxX%D??(E*Pq0d$6+tBPw9hstL$HXW-HwPKv!^%e+gZ%aPA&?0%av z7rA}E)7}jnokQQs^&GmKU2o++X)yiP)P|ZwQvL&8dohX(-XlG64UkSdozx!ezP#5Y zQoCYSq(Ue7l4C*c?wO6+xA_HgelwkZ6)>~h z7FDz5r53(Y^#)UUva)z;>jEqE&zOR?%?i}4IALqJ`3LY}xb9}!81{)WC*~@ko+>(g z>imv0W0I$|c~}0z%6toKQa+1lV}$9}U}v8&i~~JA2YFj!{$%q$BGMbBZ~RO9Bm8T@ zQpBgn=dza_{#kruS6($PTx_a04zk_)CNq)ha*qeg%kpF&OH+eLQ zN^3fm7Z8(RyR8uCJbOguS@wzO@(@f(s5URL-o8K0#)xupbP1Nd;c$YyRO^4zbG|l~ zn?11?@_E>AUHU_g6g<-zID9BBWp!QQ1NJCPq>s7IO)wgedIu5a+JuMfTsAm9Yx0Bd zW50_GJUBfffiklXJDmX&jyz8Q?}b(bnvi6ThbcH6 za7jFW^S>pd(CP|~@5c#e2YVarG1$c%hIn*75V5siZ_m`b0S4P;svtK|WK(#&GkTP- zJnUi?3DqH3Ao*|4lk1(N@AV`@`f7<%`A|aj+il}TUIKnmc6sXfvBXEUH82}&?e(M- z=zwsML>_kN?q;3mb;9`s6y#a@8#Zh?J!^z#$zG76?QnpL|}{T0(w z6{5m2NBxV{2};rPAujfnb4p+H&6>Ygf7xzJw8;N?7r$LhY9b66L67b^;hqp!Z3(c#?4_q^`Ej7MH>hhdoSMW?s2^>80zK*diUe2d$S zeDxgY8%o?@zrdZjcNU(}Lt-qH?dWi~H~9(O9C>Q25h`?Jf)W2;0g!i~Zw?lGWIIrU zsUWgT)VWiw!rfy$`_MnApcAk=Hpt!rg>9r^aJ9gs*W9CeazVHFlK*5(#7|m<6WjqC zQ3s6%zBI1;^m~i5+?NpR;81~3bKvCB?0S?qcD7Bgb$V)sNsSZ^CC>}b3Y_N6b{g@- z4-Fr8D2r-faelY0#494BRO?>mX5h5}!M^E=CJdo;J#t-oBSGR)epHj%0h-CzHce~Kskz3V*t(s9e}ixg+akD^9E;H57i*p(n^}j7 zqZDjR$k%YrH_1&xgBJZ7x3g|DeOH%f z8=9jGx?-!h;6ME+!@o=4ead>OrvVfCk7(umnq^p`x?oYCt_|G$C6_*e5-Bo{qc>_x zlNjF;AL@g7$HMv14-t_++c2N+z7P4aoxX_Lx-d$p?c;~sMjc5E`R?&V3@(@zuTpLb z^@6<+I2s99{y9F0#Ku-Q+H_#Bg9vB)W&?DE`&q0My?@0QX8A`@?#_wa13Y^3hV>^t6ce3F2roOv?V}_mS=srF6qaG(V3+y=ue0BSS=t(V@svf_@NUi% z+{qCt*(cQ^PjPn${Y|^L#jG1k<59M1FEs5wY(&(v5%7Uic~ALzs33G@H&+8KF95w~ z6sfKrw_5bap!j8!;1(EuXH>CA8b6;QhN(+XlZy+aD!*ZoUi3BOdR7ZOeP6kZA#Y%6 z4l*{fe>b4%sql0y(-Ij{LX$bM)Ojz~k|@`6p&v10uOv}IN!?i_>=?<;n9^i7!?F@M z;)}AGbnyCjIzxNfUj1~E?n+2c^qUje*x7KKC-T6(n3h%l#913A zL{uD+;b!ypu24KVRj_*%uXt74&;%o=L|$)wTwn^&6{V2+ib@%7g56=&f#PiQ8p#Yy zan$vMr;`JZ*`@WTz`I>vS6=|`NRCzGx{#}x9NEfU8W)0Vl+(|oJ%QhV9pT)vk;CEt zM6avaEcJ(PSS(6qiNgHv$*uq!olp9!AmgE4e9aAKqgJt^w_24q+y^uN0wAmB;Oh8=At8BU~s^sH%eS6mxEctwj6#9bpduX9(X zc99cN4*|8|?0)4r!+`_T=+$fGm5mBs@W_Pi4*#WCKv&ceG5IhVn+V@?BoUXlE(6w) zUtvdhe5|KwEvm{-&RkBw-Nz7}Y%>-Hx}$G8y^hGX6WQ#{j2Bei>r!{7*tksqGnY~RY{6p@+=bzhBK+DS8VY2zv~l&Z#aVo^`!XYTQ1lJrT#Irz>1I#&`hkr4Quziy=G4dE>L&3-LBFLjoU6rkX@0)L z`(j!S^6dT9RLfT5Vzp}mjNP@jGqd-usd3h!O7Pc`b!Bs$qT$jGo|u7w45@yjY$vA~ z*4iLROrSflOcRKl%8s2?umq7caHKq4*QE_IrXw8`;$b*f<4`Mv)!Wf7N1Um^3$pB_ z1;y*?QN%>)0l?6HfhP@qwQ_r?QVfc-oBsYbWb>EzLol&q-f9934BIn$72bUWPOQSe z0X~*lqomYA(hCIJ^E35qy?vm|7?qup644pdn%@VKJ4%>XH~Nl|7`DSw_g!36hH(R> zcgi9iSR5P+AbiGyZ3o~ywgsJVheX4>sU-ZD$P{iv@ppi4mLCJ4e_DUbBrb^?HYHc= z>mQBDJ+)T0m4c=1EG@(M6hF|v;-`GZoae%=B1H>O<^Df`C$>^z&x3snhy$cy(6qVf z`iTW1^+rU|0aAwO5LhK?JLwjvkoS>w%4a1P7R$kn^l&aABUU_KS89!FPnU|Xq$DBa zZB0M2^PT_c8@p`8A~R77h983S039kboE3>GKTGBrfI~d}0=a%8Hpux)ET(vu9Xq{u zW%t?<4o<1!N8leUaDTP@0E?QWev&d(BeXKaF}UEi(K!h3v=gcy+7m1d(+`d){8tcR z13|xLiW>n4R(NyJToKkP+;E|ikjPT_?A%9sb|NUs(jIR5j$Nj3KK9;J?wlXat|uQr zzTcDb#fxk-^O3$%Wbe%ZLcXK>fJ#P`Fq(= z!d?Yv4D=FRVdVn#cb?k68YxI{Bydx=pc)jC5ySI&d{)ck1n1#RHBJRs_hlq+AnVLIpF=9DnnKYn68=N7P) zjlp0+TMxHqbJU%VKrxd9!5{D14M-zVs5XTt- z;Bk@xEqp(hw}9nX4G~sXUI*58nemsjC$T?F){J^u^q}c8+^UzIHE?mo;b@(lNwsaW z3ZJz1?irMVHg$GZfQiDJEo&5xTVNl~)vL&QH-LD~D<#-|&8B#`#Nc}BBag2dPMqv- zw6eqMzGlgvZkYb=p0nsTEX}#fEtbNfnjTkfK0 zV;O`^(2dj32`$@AvkhM>IgnuzD`uk;3uS_r)6b*eJuThnlf?=SDHYgHIcJt^@9w$u zc`%17#5jm;Z}CRU>6@lTz$%166eZpn-eha>685!!jg%N_;h~VpgSmU_=1tO3_d+j{ zL4?AA^bU|Dza&6?r{vl$8(g{*ztv8ElirF@acGYqhOP&*Kyy+2=XAuI>GK5|q~pG| z`p(DucrhCudk2DrMv=X;1^!$ys_pbdIJT$eTRV;>_sGcmcn+#b3~#R|6#RTvK$a2) z>xUnjpWjq};PmtkC?VxVQ~SuV=!J%ulgX*$X%KVg+P@KY@oOD7esm1rhvnc4$h((B zxikBI-|kOu(EE^*x^w$OWOGplQ`-c1htm7ptMDF^*N|13^x~xQgT>y4o6d`VMUFm0 zoGaGM`hjxRu6fDxxl*{jlB@2x-^k6E&Nl|x|I?cvJQp&JknP=?6HywcyS>!zm#$q5 zvCRF|f_{@s)PGf8Ssr%al-R*9B%-+AI-#&+!+Fnl8dQCK^ynY4*>6!Eo|r>Oe)&7L|8Lg+JQp%Ot*TnR=6KTj&{3t0DrB>d0ei4(DZBU_H8O zT${i@Zza*%^tmz=-8b6kTLd}+B=bQ!h)XL zW9<^eeP&2$vr1Hh{-cgPU|>+jrG-+RqtOVdt}}qn6wkr`xuPxtAxBH2+aa-65@;7) zl_U})B=uSw$f>bmgEMFJdu8~x|SY~Km9(#(lpZd4*!G(F|mMp+6;q-nKB zw)w*S%xgrR5!J&<5)@P{gx#3D0Iw!9bAtx8!-F(FMc6w2rP1_u(jpwS_~&F84w3P! z>pC|ofwRB|1Mjz7OeoqiaCNahzl{-uz17lg8m5aeMO|{4j%Ju}DWWec27F@gt zFVU9D>tnyRS+@A8)!q;_B@vEjXt390L-^O*x^*^Nvv8*L^RUNGFg#{=IXS{irU_;`0>ca94 z&PRKYb(zxsr`et0Ptk_~1Wzcd@uo z;lWh=z2cl}b6JQ;lNO6Qg?|sj9&umwo{IqM>fBpt-|Dx5*2Qkw6-s)G@_O7K!hd(r z^XX0DIQQm%#A^}bzbKH1$z0`0%+-OMt z!0)!}&{0>V6Zok~wR3<;Tg=&bmR$2k02alCJaZu&hB7tV;W5}Z;kPDkw)?6A+)T#& z-VgN!oYu5&{&|g+Or+jP(ryp{pO~8Ff0y5mSPfespfe)E#q%6Ou)o45f-`7KkcC7i zp-YnX{xDPO;JtU4d(C^j1W49aawcf);6h!C2qdBsXRL8qz8;-IpQ7j>{*5F6Y~PyT z0<>w}ez+sl0RlCx3pIKcWt1He*?7j9yV~@H99#oPsudlFT8Veaa-}p30a9^X^?!GG)0V((q-v@`Y*EJ;@BL;m zqG0k0G&4?6siLHDSm9UrL3#lp`8N0MFtYUfBgnY)pikDs`TS;gS8eJcM$|;7>;u&k zNA)8LZi4fgkxY#o&n{Zw_#)Q5f*N@nNnC$2P>Vg}0So#0+D)RuoH> zEuKWH_G`+=e7~5CfdF=>-qV8Tb+S_p?mUZBB7O+uFUDwAa&_5Ru2O3x<|{vG*Nk8D z++?4OYLf32&huR--A$hkEdE3Du7CUzbiRCddWpBd_<#Qsd0gq%`=XYktj(0I0FW|n z%eeQg;c6$VR?Npf9;fnz*n22xFsj18MDKsbc}TMgEQvlM1V1r;K<8xrl5;5y`mbuS z;vc%=vYWOwg?)aj{6#`@r$X72GvmVQy9GBbIaGNR#bw%VgnijJ>WiKBIJPB>T&$lj zg#W&~kT-3Pef@iL2&+O!CU$?dL%C~V>>|s(j`89QRVj$M zrvkVsb*ZFy40F}OM+x}Mw6B~frN3kq@6%&@W_$99f4&9U!<_OksZs|kr%?X&$5$MG9L^2W-a3!-%?{HqJJ;Jok&T^06iR8IB1lQ` zK1wWuNpi7Ba}fF6CjPl4cG_vz#M#Z{SLlMSADu^D!qt2LN0X(7$(;BpGzc*Sh*%op z<|IVBSPI@dZw|rV@OfR{kMEeYYHRFf!7R0yv9#m(6BN5OcryQ~tdnRE%uX*6gG4Szcb3@ON zr>39@BwN?Xdy2eeWV@6+a6_G1m$<9Z@21Vk8Vy`RS#QhErVF#o3e2PGAAED^2sP1q z_QpH=-*Cv8R>1)z%SZ^_d>-4#wr$ANvhC5Vvr5JlM<|)|`NN;|+ZIgoaCqZ}M zabBN`IR-?O1-&xGo?7b-7MdG>(SO?1CRnF0fwgaoC=aav6tQ&t)3p8_ni zlN=bxN^?rZqw^i)^8VW6V#_(Yxp3`iGZzuxeWZDhLE7nbNX(0k_)2>WmQk>wfsHr* zzNI%-X8=^>jnI^?j$4I{cMUZVo0s$lUqOD{A4X~WjeJgQ5rqJ8&7r52?%t4<<$1N0 zfNBT(=E6@J#392H9V}2}^y1Md?7_wJ7fr|7;MzA^B3>b6uYBHq(Z$K{7kW^vWWFIl zZ5$7IgEi;nMzhI1T`EyFSMnmq|4W%prj|HvVC%(`ek92bNU49>)-fj=(d{uvZtmjz zd4hL7#roW5Wf-Wd8vJENr`m!@`Dz^YmIXb!6zd>Qa-g+C=aol&XdAEV`Wzoh+L5!a zk7y>}x?=i;TBvPNH{_KM{KS^r%*uWp)O z6g``FjKr_g%FfA_yXDk99tIk>QV!*U(do3=c@9U;zYcyGH}S5g_#}()XDNyhX{H>u zV(9|ooy5jVGyaAe&94;oNT>7!4yf379A~_a*SWuf<1`7^b!R&8PygZAY6DmSo9Og> zo2!q_EXYdBOe6Nxw>+Xq#D}?J0^NPI|Nf_9FMk=(0xZUugwuTodnx%JRLDPaRK7&q z{FXWE5{rUYoz6g^(JD z7V>k4qx*6Jo5p<;CfRtsafY-S9g}I|MZvOE|{1+c&7?X8-i3WscaFD+oUJUD8*A&;nz0 z3A|E7?5P}%{~DzH0b81jWZ*10PNUFeW5YFOGDJ9^=zLgF|Hx_-)-JVMIx}7GGiCu}i)^c*p_reqSbh*S5u*Kjh3t-I3YL9DD6_K)aVq;iFo5ef)? zNo<8~++0JYm4*?`Qw@Hft)QUjY&n>kKI=u8VCGy@#K~P@Z_s3}33#qL8&P7A$=A!Q zW!~f>?YECCRDXp0yxXrH&%Ld=Dj~9K7*mqltbd6BI=m$Cxvw`Zm24(DhQU#{Ogb+P zfQiq~d395wZY}KW%qz(-3^aSTq8-a04Ez&;M)3>v7Dpyd+oA)R$CsDffLt ziyd;Us@+BU`*Mgm z&KjSw*(0IR#BnV9!IL~N=_!jY&yR+kF6boM7EBk(tTvHc?6zXsY{xSMofa6aYa5dr z5vB{~<-FRs2Sz5=o|ADi+SZ%Y;R~76>-#oql06H{ymQn_NdIl}g+SImSWpcMG52K) zeN*HeLVP{g^M&pz6(4^btx>!FuO;Uhns$p{^Y@$kadpsV3!3gx^e|ST!1j>vcHUw9 zcbXH9{U$5^XTP_}M^DInz;Jw1WWx>AG2glFUa!6|kI$U%JZFp2f`7RQqpUmpn$6fF zpltUO1b7%I#RZp83lQUS4K%MURM(Azvf%z-Wzdz5RIc~u{<@=XYtj~^K$`CA#obIS zy!*xtWGMsPFnV|7cf4|&R-Q#z3gGhA^qXhX{Pce1kgM2+Q~P*z`S|Ez#E&u##1&q@ z=$rTMnV&%79e%1OqQabvP6{9YLQ|`ix;|C>WIcm@EpI)X5ih#)GG%h~bbI(GgKrCk zU+b&0HV+&nSinv7S=L5_H&P8mKY`G50yS8Cf_=aZjOI4Ozy{hQcEnWIKy>9x5kv~# zNqN)bbC&w@z=NtkNNU_Bp8qCyu@6Nk2Wxfv^ir{a4Yx%>Nxy2OIGS?P<0>6)MKnzB;* zto;89E2hAI=R1szJD=2)ntOp##hicB@J2BFvYIdqb_Lje~YEMK7lPtNl6iXUgh_z zY3{K)_l<(f;(3Icg~-8w(_aa+pyYp-_u-IdWBxW1M$1E{clR^3Rr|cET&|zHxCLzz zMk#nhFuY-|i)*AS?DxgeFx%9oRF9Wam22)#Do4M<;>bK5j_iL(H^}LloLgUp>5}hM z_*E*ym6tCKq8}ZAtCc?`L?~C0w{(2-HXLKy0_?FVrQkM*y-Hv7i|_wW*$JP_um$~{ zs{&E4@@!JMyVJMrv3}!J$MEUjEnaTrx<}G2VH`IZVQ$^9O5XH!#Lz`{YGKPA#V;&| z{i@*k;Enlob2smiGVQ!y#!nmP!T<`_XnuWVa`M;K^!4eLm))-v2H)!He(@ztbnCFk zp>||y)eR_pZomd|%hX$+@tO0G*?Nl4u5F%x97|kaer`JOCWmt|0`uSZe@!l)4^s?2 z&h6e3wm@ZR;#*@ig`b%la;c-HzBP+{#DBY%U=!}tlAqiEpgp&MVAQ|Z6RC&i*{VgP zg$I8dX6)b1t5oD{EnjnMopxVMDg3*am6K^@I8*-&H#D`V*6>WZN|`DrQ0#*I*mvyq62hy@D8IhFGS1~#WEa~cvpmbQN;wB-s3DOV29-qB zBM55iP3a%7EkaQU-fVfnk0jP4_L)h>Y6;b^=NejcHQSa~;_qrwpPFa@21@Zxlw+9} zcV*+Qrr}b7$EaaNb60*6M%N=fE_jh)G^^c6C)mrPeA5J`*su_xAT$pw9pd?d8kP@N zShfuJoNGBFOW?qsD6wd}B0Tsz;v)omj=g_4uWGB6QMnzn@us~+DF zl*>MaapjidLq<(*erk$P1eCT+XB6lAngwiD`z2el`)0zuVj*7aD?4j!`xXgV=?Cml`m=atpCmc!s@ZJMGDA(7` zExvfA@0$3nUdb~d$~{}8C*AwaFV`UP`4gG17n){^Pkg7j{OmMDso+RkLp7Uv0?k9f zQ&YVWeb<(lyUxYuRR$)>U7(3N0|U{y753ZKtlM6GpN>z-tb9X0Hj!L8>3b1f-=OR|h+v^c#I!XM42Qnj8A%QIzul3-*Kc zEGb>8CN{TO-h95>K(#VXW0AM39L<(W*KIPg-u|%gcs=5dMAwS}KSdoT+}{~N zK7CrCzs-(LH8HvqIw(kCu`rVo!ut{l$*cp&9kJH;P1-=LRs| z?);joQRs=Yl-M23iE|*2bzZVJIHAZ{8=f2&!8IXx@m;Wo`?0gfXh0RRr zWl{Z4!@73T`6mg%7EhdcCE$hw?^h(5Mx&;*0s6OtdY@WB@v&bn@0TPcYQh*-w?zw~C7oTmjYP zd{aF75OLZ%2-$8MkUcK1=2i>^G0oyDYX;ijiQs414^G!&2;P5C?G5^3tKVyMqZ#76 z(NcT^yUo^xrptE6r)*UWmk7rXDka2jUe7rf%soLBJ25rp$$x@`4K$ta&mSE*i|P!P z6D+F$j=b;wvG@|QD)hI9)n0H9l5Y5ze@Ol3!Pj_>Q|X1{2Mer&!j4uK#O2%WZ?V#U z;@B6N9w$O344s9`uhz__-b(3i2CX_jUT4Xkp8my!nlGSKAhEKEdVd@kOIFUAkj$DT zTmILbOrkkN$L5#Wqy;Ppa!rramcM6ZFNZwqL{L%M?$!p~kOTC=Tjcy+#p(TsU`Y$*1QL7k> zZVCR8Y%x$#U99sorwT{$Xk$$&roU}!~ z5SI~~nm&uDvtLzt^F$z>8b$P|oq9eFyp&>mon=+23y@P^YE z%Em$1CB?Kr?pQD#I`Kdl&304#S}(-An{A*Re0(kJ+1@&_Z##oEqRd!l(ajJswC`hy z1jLcLCx8m{B5p(^*T2j#HxdFLaG)hJqNOC6nnX_gV2jx1v@ z@u|Qabc6VMWS@rt0Non1`)tpa*BA`@ZbaPe)S}%ptj^@HYnJ^p$z|6=z%mgNRz}&l zmei#lhr`;@5XEJCF7) zdxrjsMmW7#T~e!0jEK~n4`Gy|0IkL*3Yh|x53n?8@MzKl4pKJ-n}UndD2NdJs6WN@ z$I;{qWihq%R4PR!AoliLXX_qiD>ZQIe57B02zStPpX#A?!;#Y($0ZoKFa0P-RU)xPz6=|bNf(mX|{ zB)F9yrAeD=oqASkM$rdP-W9k?E{3umcS_o$|1}|vgl^RlP&&)qL5#S5LB zB4n_e+h}A3QQYuxi{1v=RmxbDi)zU;4HX3`jvm?C)afT6L|+6QHY1LlBHM6hYoNz) zXtHL%YK}5)dg9dVWT5^(_=J``(D5}iHB`G8{JuTNhHG27ggidBQdyu5EHB=vNL9Zf zpMRL?L9aD56KtKy_(NV!RQySD)h4NeU&PnBvicZggfNW*q=nwXGRY~NQqOa&*LS6$ zg0GgUJl1N{Vks(?YSAQyzO2Jg8K=zGRz}2%{$!Fa{+?!*|xL5 z-F}68^?LJ6V{9<$nDDZ=u z0gm7es#xf3O{qMb@%70LjF7q?HS_dn-aWkw`7J*2p-oF zC46f+dK2}94j&XN+7om_gEiN?xom;{?G zQjxbqVo-Jy!sS6tpP8z>%^f%bZ{o0s0t zQj+^R8rHdw5rrZ-zZIiwFwX~Q?fs*QFE&@+X=@%o3ijvjLl95=6+VxXpw`dQ<5x1% zX7+?AAWq{D8@Z~^-y)cdNpFe2E2;K0 zP6!$jt%GFB>$X4nUy~RuUDDDJOS1+g9$=3Ro`l=2e12pnLEVq3yn2%7)c$RjE^Ty3 z_p-kwW#T?WU23M%Zn)LXv~Or~s~-At^9g zFQ{A%1g$%QYe~zT|1EePQg&nzB$G1r64vG0digWmuYgpp>t-504uWDY6Q@ zfK@axa#Ke6U)z*jCe!M)XDSxCcd~R#o?jkpaD(`pH*tIiVVbDZ^lP6kvZGAqHAf;M zOXNB!B2Yd2s^le*cSlRQJkH9p;6P*jn%APr7nA2V^v&fLu>v{zr>ZOiq|`!X{g=Gw zMqH{@h7XRR#97!WCq8ah%P?ODog7U$mP9O5QO5P|7Jq_lkk9t7x=sY|QIPzHw;q!~ zUe{9CPAas^vJ2fZ*cFbAX((Gi7@e87!#b$t z`Y`=LHEqR^>p7aZ_Yqg;6ct-~DN&VeUihCR_m>stYcuQ#1!(7yT(=Fxe*QPo-I;HT#31?QW{D+#Q3#vg$L%?~HSZ7ZUq1_a3+ z4g0<4v2J1Cb`scgf{$?b6MW6{!iNUz)_}$8zFdsgsS@g+V1yPu_eh%eK;z+oX+>m6 z0+VUe)YdSR;_9?v^g7s>a+_VUkJ5mive4ZnfH#$7DhFaB*=y=og*%?vK>yQ}p&pTE zPMOM`6F5e0OGz@%Ik^bLfPNgRhTlYR%jboc2e8?q>aUR6qw~8^S&sJ)=(g0n<8iKT zlFcpx?@b<%ulpLfH^a*@n&x?J+^v^6=vIBX*hvmCuVqt@`SU1^;cuM35@9SNVr^S-K;6iSEiS>JjRX}UX0OW`P*?3>(3iu}^RRDC-!FrjeYm&aFK#2(Pz&fb*{PXFz{F$fk z>N+MwtkE*uN`dqOE3{cchCB!)$#&EJ1ULg;Q{uUSJL0E5E(T{@1WN^AG4~=Gy{=u2 z<_0JiGY@XXezo8wvkRU<`NR&|3A6gl_-&9Vqqe?%9Sqt{mWf^WjOh`5-Y-;tqR8~$ z^i}-ZbtV||NMgQO^B1y7cKI>-1wqLvXPNAp0vD49>*39JQ_;7pmz|d; z5n|4Qv{JTNm%|)$oRCJ;h>zRY$gRA~Zy*UDaSbo1JAn8bC^Y&aG5$5=?MPyR>~S$6AvwLUaUQ+ zEPfk!>c|S4eo&2ne#LMrH}d6S!y7OAO(5QHpZ&LY=$*-d^mp%en|#bR|Lm84 z*7}y7%=tYxnopZcSll?~-5QZjsblgDBaVOnd7xYf2N8N!S62=A#lh>`@Xxl523CAS z%egoP-zLMKM*Ip^@ub$6qV7`Yq42qUWy!mWXC1VG-Daz~iSFuaXdcvzm|PY*bqV5w zL>;e*3_OuFBKD%`r^cI*zHL|LlPjY^M!bw7SB<0^-6rRXl?8uSTip4hmRXKfMEoVP zsx^U_J+(b|_p|wq><-`)e8J*2&iHrmZw`0xHuuU}eX05E9C z7>CL%R5j{S_3!j?i;YGEd67_k?h_OG+#JJ{Gra?&SmaOfyeJHw<& z()SF%!b}}B62!_VJp@hL8rq_lv{1U$GtAr*g09P!c<&||@?+qt>kDyoj1;ut+qYxY z4r#GvG^uVJ{hd-C;illc-IQ*kk>Szm$>Bp#+!XAXSKs(?D6dks25l%h$LH1@6E)!M znoBZ;m^i!)67VcT&J^pPtl`CZ2>;qD-TAEl?Masq12Yz8}i}R_FW~$t=jX$A?_ng0G18A)N z%0Nvk%i(+~)>Wd(D|C)uA5&0)h|yUqR_hrIm4{89<(^ruGdjgMt}PAym(4sap6-5O zu6`|+5UJze#I}-&v>k+b&CDK?9ZF}kNbPLRVc>$ zEJW==6FZ<@T|R|i+>VPg(m{+C5QmnP@Hz#1$!Hglp1%~hPQKliI{qev?AO~MTi)*{ zg3mSMT1JM!4?d*Hw>h^(Fe^!oT+bF^k-Zd^A0pe3*OIf5adNbs{TcbLJ~Uf>#^iZu zJ8clziddX)W3S?AjWsS)${XhcI2Ri5rEttG(W&Z0zzUFdb;bX6B4g}2un9Z2&wy;Z zc(5Ug2p-;rWo{4LxWF7zc@_xIxpVoK)ZscQjhi@+hRR7!>GEyH8<82z17k-00MGCQPPcyq>U0E~D z<+I5PMHm_n8vlTu+#bmvM7L4uw371n{h~b0`Bs;ZToxaAU3<-?!qT8Gta4xr{X%2C za6V#?-B34Xrp@viT~Na{4$FXx+AnP!rWZ`RI-;*GIvn`N&gnsoM$t`9kk;kNHG|1e zDby2#6#bq*GVfvkl|-@(9tZV_$bC%dt$fWMeH@fgfQDJhy@KAQHXBGRfAH_M1+cF( zFtPv-Wt{e8M4ZSXA^0XJAy!}3?1v$}X3f)ascOou(kuOxG97smZ$MserUjnae7lre z<9BE88iPG0`NhufoB+M1zladS)1P^%qsP&14dVAAgN6|85k&g^+Xj-B0_9+< zAwxk-N)?NgxPIG-ex7naM@?oFa^zAVb;>AATz>o;Wb*g36S_8J*@_9R=H10k(;yiV&N_lyrrK`&e)7EKr@<6AgRR z-jUEOCHQ?X_XBa5wTp7b&Zm&FYSd#6Kfze$o?n-q6vL8v)TVi~LAFTATsTwQk;;@C zRi1tX!IU}GKk_#mLnV{~zI!;gwhU1V=fh@`!tz(Oy~lw+?gPRyws-B2E5ZGMd@*jX z_(W9l50nt@jPj_|lW3jKHK7g)>Nylym2%h#b zAAMzf{13ImoW@p?xLv($)@iPfT|!EE=dI_;4)#VSiX{3D+@@HB^r8xF_46OB(zYj- zqe@pL>og-{nLh1-ps^$Tp&caq!1Y61o6tSm1M7)ncIW2tELoZN$fHw-sPz-zr_3`8 z#zjgTdpC$_E9eC#KJX|8lzZ~MoN7R zavaR=6(1o7If^1oZ*_%7Gd_R3g4@Q^hQ~VLReE@GYrYpoQ^pLDJ|%t9SeLWqxsI<* zsC@~&hl%97Z9s>7+I3eaSHJuQ#tq&F7FV9Xx6Q9==qfL25fN1wGkcbw#~S`@@dKXw zwM%T=%D?`X3uAFR+py73wO*GV*c#s1qe5PS?Y-2X}?o(~h z&{fJpHJ@?M5*QaQ?|6tYw0$#(&MLHC6x@R(9pW|yejF=N<>c#b^BaGo0>Qj4Ut(ZWvR zAbckreYH0vJe{<0yRa>;OvY;}_A0s_tYE@@j$<3LypsOB-exBOzPUDG{c4;`x+!1F z4N>nx3Uk{Teg3Hu0mnzAAA1!K`qM%u&SG57;t}rWaX|O$BmONvuOc7TAG`%=uWLcb zljBt$F{8FD9(oPcp7dG$*1xWQJ{!;@Y>j4EV(s%K55p+1q(EZ$+62J5I1opO~tQ^zu6VoOK;c<;B$32FMMuyZifEOi?%u&Tj zRE~Pn$9d(-czD$o6lf!Wf8cH`#QkY}Ln#X!L)Rl}fsbO@Jxg5(&b^y?pShbgKLuyw8w{hiJ<^XQ({sxs|dX3(eAaV z?T;E%X#yo$)rK86RL_@7z#9+Yhumi7)nvdTSX|R+k$c187p}yDl9sSSZO)f)kz$7l z^}Yz>RVKpuRl`ldU3SaS^y)P)ZkEAhl_*7uE5526Up!LK5Jw(Fe3TA}ZucKv(Nhj-HP)6)e~ zNp%4SnHb`IWQ7dHs4Wwz5l3QAPKEYlIrldkorUgSP{(FJ&r`e$5I?0-EV6hi4eI$`q+^RvNH|F-_x1>ZP{ z62uGt@Ztz?Bjg%s(6n%alQCcZl2|m85E3y$ropFdhMB62H7BaKw{*m}?YP=y;59@q z(FRb*Duv-MS8%A<2&3OK<(1;UCt@E`cQST{-!NCx4tpGe|HV`;pE2a_Dna~HLVdMo z2y|+bp=^0l;!KGcr42m5k|-V>2?Bk4g`75qDEIEdQEt1)zdpM)+0++y>bU475Ho6y z$(Mq?qoq0L0PgFM+8hl$*2tJ;^e{>)#B(YKq(qV#Z=KD1CKnjP|4fq)9i(p0t0!sG zBaX$Tgztr_rQ`oeq}1%8T{}x2v0c)vT~VTaXngdkVufp8Xpy%4|9E)y! z*@liDAw#ya6mUv|UrTn%xBvfX|93%K{-7O*@j7h1(3TCjDnlOYt?7AX^^AQdhhb%8 zf|I(bn6NghF1JbiT(sL(ZjVv5ygXejEdRt@k>Iaf+!u-Ua5>lsk!~fd$;bV(RV^;q zZ?j`Ivu~gGi|$n2{@lpCQ<0w&=IRW3yJ~AtQ!2cft8_yvktL<~sWn-?B=MnH(iDY-KjBx4I7)a!S2j zJnY-i@l%I>Af-5rWZLYIcz-NJaB!7+Q+@)sT#(jdCEajbRNPObk=KWC=?;0~e8^z| z;Zi%&>Hl$aS52;sYT`fTmTVCSjyk=Mnh@4)iDgFYnOoA+J`2tsk%R#eO}FZA zuSPL_%;TA|H3xS(m@&+yrMFC(nxkxkIRF31)nO&2Yc%Id$bU?#%Zn9_8Zb`du6M&zn@$ibu2k>CB1ne53X}2V|)G2+plCI_6b&<+XOQ`pe0gZ;c zUr4nv1}t>fU)cUBWs6x$v{M=TzR4ORbTaT6QG`le?2Wbr5=Zqux4XECL<%#)Q^SnN zrWIby8x`cGK$*~~pyuY44$Prb1s?!iBN{-iG$q2=XvkcS!LN1uFI2Jt`@u6L7x~=E z<75+Iz-3cD#@#o6hRtoD?YF7leyA8SA<;8n4KOQ+)$uz1=Gjhc3NnXr_6~ zW6bc(;GB2XB@d3RCwF`(_v00K z*GF9U?l!u)nRCIc)Ippj-VnI*FEw4brSw;)5B_>Q)$E_YNN=xYG(p4fb{vVh{+4JJp0oSunundxTJ*L$H64-8pOi~Q`yZsC~hIXpIh zX2%sw>WQK&|J3TaDPqoQx2QhE&UAjbl&wMh+V)2g1pn3@wz#}h@t*qXJ3@fa^x%Tp zbnACWmnG-_ltz;<9lBwUj5f&L@n#?6gxxut@437V>cFJ4&gZPazFVIsKs{>pf>TD< zF`~Yr{@w&F%y4-1mJEu5FGo)17h}U$A26lcQd0uw?-na3M~>F`IkoYYL|{DcB4ztL zF~BI#mBCa_v+9ZD)UXSOBhV#7At16k9a=*1z^XoH(MegWX;VRf1k`Ze#GWb8c^nL} zpB#C;uv&M_%%>3*);&SR&L^g0c3y2a$Vj7Ii`~V`b@JP5jF|J?VEZP|C zO_bo5mq>=ssbF4DaECK)PiQ}|_&P+5n(u*v`-q1?R~v1g1vqF;p}6#Z2dUfW&E6Nx z?*l4$!{sM}F>bE=mDN33Z;VU66L*sv4&!oPDn1!Ix+G10xIe!7ANfg7-_6D+Pgckp z_a*+2BFZwIzMnz${#aULWY9yNqi!nHEL+FY zGD_Y-7!x=km4sK-c>z9^A^|$exXd*3Ju$yNka)&U`_K(bz*@FEa_>BKVloLUY~N<_ z#KQc`|MQ)rcSA{H6(YVDCn^gnB#3g8{GL^L(K3F{kgZ3SGvJz2KLhk_8`y1)wtM;VSxGm_Ydj}}Y$nKbb03(IInXSuj-Z!~t} z1(l?zE&1dhVjm)c%6@U2Iot*1cZgy6~Xuw?ON2HlaM)m6HA zX9DefnGkLSnxk7O!L*n1qETHiX5W?9UtI_P@02T`6Zvo^#kF3Ki2m208H-o)Mg@HC zAzcR?G;N|ahggX|h;ekxAm}Ifj5VR&W;Cc_`1`rpxA7#dO zs}Wd)N?tN+BCtXAkBuj&4|b+m(YuQ|9QWUT6LA4(BoE=rDRh+O}q!ygQv+aT|+cHpMo`$oAe#)T+vMZHHQ`nM4 z5_iVxDaJJt-gtg>WLl&P(pjLA8U6EJ+2zyc=Qk+S8wpPTv}#sPu6ykyWfNEuYr==s z2)T$)*7;kjW~CSvl8OHaD04dDS)bnvdwO(op|4GNfU$^wkPIr?cm?_-RD1ey!taSf z*p;El4Zh-nLC7lt>?=LJ-83ouL-_cz6p&Vtf_=>@xQzuPZoq(5Ot$>wa_C=}(5BbP zMvgZy!-xcGU4yM_UiG2fy72AKy@|etRsTSe-^OF6T@St7?@NV3`q0=FW~Y=(Aieg& z1uXHzF4TJFk0-jJGf$q>5*{RS*v*SiVEtPC_+tmKn@48bS5)sIwFbU#cc}JPo0!wN zDal{1Szhz;Os>XU^KRI3^`X~|qO`o_bjsqp3eHb_#oMT9|76Pj?Yly~bkyUo01&X@ z8$hhsUgQ`5SaT^GIgnUYRc$56@;9R!NlK&*C08wZC<1G9Bv&O@UTC57(!Bp}4+J^& z(9OfY4((svQ2?yXDX_Pcd2UVIlwxtFi^GUf=@&r0Pp$p`N-cD^-J8%)&|aSSebkeD z(lL+!{O|a(UP4I^=MoNk6)3DZBTu$jG5J)eXJKuFYkNJaIW?TN39p z>F1c|#rwvW9BR`|kihE{4!76%q}^S-yVIt)A9OWg{dn0q9CVGIbQkXAd*KTpoZPL@NW@(9fLr6LeHbRksixO*cFGjB%j| ziRA^Xw>elp@&FJE@+R){yF|73Ps~pEE4aOOxpKNI_^-f#;k;7UeTW6QWoc9boNQ4j z7QqQWT_dUFb=C=~{|4l`xf@%A(@iPQtA_=8x7PBs*3>9?Tjih3+@ky3pU{NEi{Y2A zlOS@Ls@JZQ?8;HaZ}`!wdugTdIB##FNW{@etBKfqc?veyC-j{xN+x2rdh^F5yz&3J z-+GdZ(Z{o{s)>wint$R$a7v9U^h5Ej&!Y!*oW)(aB>{_F*_FWRrvuy6a{6r?=8t6b z6NNe~dq5WL zy;dJC&~B8*GW!T;12?_irX`M)bVpD~l|&0QR5J!~6AXkcM&=lc^396>uAdDo`UO1r zy`gySUqtzy1--c)irv;P{N=!-)6tZ(@3nt#Ce_ho?Eu`zQStk>2qbf>xXR zkRb5YW` z$V9~|j{o|bNVlHuVju(WX3R_|UA)5K~vb4_CTeZ^Ydoze{8 zC?Ppze=>=u+rglSgK?)`>#WFHKkY|_?vgM|tyq{m(lpYL0BgVzF8BsTQob(O+BIjr zXIKbytV!&ZVQX2`>|*wBGo5Ft6~m`?)$hgL_@VGxaYHJs?)vJ{L%c)vZwzeY zl>AVLLGhOD-h)>MWyX{|3Oy#2#w-;@M!~P0T3u0t;>K9m==Wr7tao(gx7UWRNAf;+ zqg)D+q9F%W#hVqgpq^t&g{fo5w-1e4Jd>*58DVOTDOacvCt}Qbhc)ZO=K@7FfHzky z+84xYBg3W=EZ^bR=(}Ye9i>VB-Nv!*tNu97$ak5u-J(2$$^hN+{^=Qt(`4a6`Z9nF z8n0dx``_Jpk>9{4Q}H9L#t!Xc)&DqiXYazp-peU!w4yhW{o}h|G%lDSRM!((QbPPi zoD?-i`0r^PF?ggs=w_VgXk0tJ2qsPYZ_a17mNaVMY^%R}|HF%f9o>)5Op4sW^|Ae& z=!Y&do=wC;DL~A+{5zX};gPTlNSCRYKv@20Uz?6Xob<*i(y;J=9!0~MFYV#oUQ`Y4 z&6`*KV6ba__p_Nj_`QqAZbz~t`!-(RHGq)=aPeUKNACeZD8-%VrQb<^S`>Ex4TL!BF1k; z04LPPLrlc|9j(_Ka|lbzp(PO?PkJ$|r-=!X?Z5p{=?xwB0 zeI4g-bk`Y%R!A75y!ieN96r2rnlM2c=52+?^vH{T8Ex$|kp20E;NhvhNKz^8(Y~b| z2Yer_o=}5Ney~YyKLWjqJw!UTa4{ei^At1yyhC+a5H5*~zp zl{aht0A5k<;+41|8W5r*9S3juMv zYtj5MzCq8FWpv6lBOpcPS6`%NfI;c?ZPSAx32k=2CCZNM7Au-2cF z!igFpQy)v;-k3%_9`Kn&W=*3)am!zBa`Eo{q}b`qvG`?1*U>l;PP5nwBk~K?W$&79 z9W>p=S%i<6h(Pp`GaFwj=1tgycYl&L#^t=NF#m3t>-;&ySKXN{+3u_<#BqDtbcF1$;c!U+rE+R^p$iA{wSpmsv{Pr2b^$qohNJbBA5#?`fxZ4DO%;5pP-6tw!rGU!9PFp&wP*_{xcAHc?7KHlG| znIm7qFNAjZ-&qF|7S^hPp8lYsd0t7orP=(ab*npl+KTl~9BR$Ut9~if3Y#PW5ADE51 zai|V>P@MSm4~5|QaBgTh7yg+at*^;Evri^(^{L-=;LJZq`4X#y1|Pd^+3<6V%A*;) zZb3(|7JAdL%i+S|7n8#VkEc+#(+!vx`V~Jzy1W*Q@VqDZ&CBe1H^i{PqwsX6adOQQ zO^AaGNlk68K{t(?_cMgEZzBS-U_&o@ZuNnzsKU&Qx?4u(65 zdSFH2ZW;)FkGrQ!U**NLtqQ;Q>8d&V5dDN=Pgc9!3DgM(wdAyb^!RK(=NgXg*c#D`gp0nVO{o`XZki+pQNWoLvSsYiQx%=vNFe9O?= zWa~|vL+62RbEf)u(>RGUpT|%IzagSYR+}y>`+oO{r&{PfM0EouOq>TBFO9~Z*M>Gt z?Y5k6xWqQONxTsLP>!T%4&TLn!KiUm<}~y_yi*NCV_1H{=~l82MLopV{SpOnMZAqd*hxuCHi4^E6M16}XlgaV!qIbd<-b2hmN52pZ zXrMa?IdUm<1z{k7JX}gK!Ai*j4fq+9!vvUYw1-nCbVRBdrn~w^uSsFPM)z|=J0ny( zL5w(yeC(Yd$F>Jj-Did`WI4wb$b_zX>!|t8=_D=a4x?|a3{wyhGx~Ua*vVa&+m-%G^hsH&=t84NWqOUDwIoXK$!%yRNBTqj!Qq%qaVJb>4BfjZ|31@yUUI4 z22LNCs6Jt{sag-}Ks+}a;#F`ISIj2vuM6Owi}oD?!!@IT-fx%W0R_x64>;a|3aZVTmh&#Bw1xi3wy^TXn4-}vp z(=BO1iQ7e<7CDZ}q-v-}u7-1G*jdUsgerfdc>cls>#~FZy)VGp_ShKY4c-k8h1ra` zg8tgi{A#7iP`gDlqX+lDlvG}NRzEm-;=!c!WVx?4J#cb}|E6%XEoY;?sQO>nlExMa zt1&xU%4!-EnnoR|Y6Iw*K4#gJa21df#?Xy=wFjceA*yeb0Ol;tYD3XaZT072Z?dbm z`c1sn_6S)w{#dDfJsG~-{Vg*^t^D{Ej5ufc)AX!1+Syjxiq8i8$o7BKZ-HN6&iYI_-dfNo zj*8+RYeH#v4#mn5eP0T~oy^h!6@YNInkh{PpD=-7zo+foJUy~iJ^Hp-gIZ7x5&01= z6}}Z1)OzFRg=Qw`{N~do4f{gjK2fA znDQFZo1GshkI;IrWkFc;^WAo?pkt*sa~y4QnvUZ~=L@~c9w`J&ZgcM1voMgBHxkVX z4=F*yIA%o+aKij;<5Mpf=tjhHwH#FwdUggQyjX$x>(djG)tmYhXWp-Q?RhMbDB{=O zQW<>|^)ChEs{F4rn&hsqb{})9+fM;1sh4Zai>y_RJSudti0E7kIz7|+@6Z$MwQh1V zqf#^*YwHxVSqbUK)E7RG9gyCfsMzPD5{NR~H_vQwqB$!Wk+~sH3x(l_xYPNu%rLo- z%UJ*y_#@u28FISyQVA^Y`h3G%=1StpLfC#h_(5}obD1KaKIXYq5VuBa(tps(@bSr1 zwB{#Jo?Yo+Kd0;w0OLz@dIi~bo(*y0kZj@M8P}0SUzp?;X6f*|!2zEBP{bFYdV;)T z4-zYV@AF9l{fVl9*Ue*NYe`3*wz6e~?wmg|(lJ%-{IeHkYi$eLf?MqSogbGx`>{no z(m^wzJR`ARZ&ti=y6>M3bl8tK*KVPK<=T+AFMx%hrguauj@HCLo$hS0vGE~a*9tG4 zHpXq6#d_k6+WxTgP|v&!eUYuRrAo1v4y!oaAAp=kI@}wlKC>V2SMopcV2juXxO7OMfm zTVDCz$@iEB1|EN3;3}4B(0O_NRi{NeMDSR(TSSy>H}6{&nFQ48%W4K3MPpBg2+N}n0KTgwWN z*IsPFbl;9*WG2UkCx}0isAJlQR}WoQeB1s{vbLu4&oY|QHLA+)>HyjCLQMUYHtVys zPt+zU6Ka>d<|B@moKL6Rww`Y-18l7dYi3U9ejL$EEW=2K&*z<*S9c@Kvl@Tv2`jg3 zR_|tO-xuoF{?-ucqEri~?B+{LHET;~#;`DCz@x*9(}$y5-u-d(YO;Qm1rFgM-K2IJ zUVmM`QDfSgavuA2N9viZlPF+A@_(yl#}!zpQrc{SdTu^wzvR~xtJOzyi`lF7ADLzWTFC%C8seh6Jnatb+PH(4G4A(*qX3gk*FAH>99sV^1 zA?aa!`t5FgUT7HkrA2bdlyAT$+#sGv#h!(?oV7dEFA$@Tv*Y4Fv#-nt$5FX{E^vZ9 znr^-qC)~Jpkq|ly@AZf7pfr9|fZOzb-#gUfa7G!5XuX`OtfBnZvRr;K2LL+4!d4W? zS^Q`Z7HD4u>E9a7<%v+e0z`P2I=hxh(CetXFI$2)Kt40A%#xHgTFPQhdXS3F=}bjt z<7{Q|Y~fAb%g+?Uyuo@&;-eB)gzLeie0+dy4Lh36lq8 zeqf4K#wm( z8#NGAabk}xbTiuPkB8KTIx6hQ9vKtXa)r15NlC=gg3l!+blMw+Xb<_nn|invbyi}l z-77P_e<|tlMM?dTvYf=-eII8soGmMpE+4jCHAqPt44XP zRY_UA70MJVl(us=MNz~5*mb3mWh`JX?!*A<1IH zYB>Gk*m>+pY{W-k#N2-%mxiEP3|>5XE5RSrgLlVwK^+#qpa^8z5|NQB52@x}BIRmr znVJ&jO8*cJu&aVhk*27#+ZW5Iq14}(xeAk7nz#FNb^>I3II44vJ*tPsU5`e8a z&Ff39aN#>W3iW4aBENlKwLOQuShV&3`A=lHy?gJwtLtZ;d)Wx{VhvI%L!r!x- zr%#Zo5ZCZjG4BWbgCw{2NXLueK?AYjtLi#fZ~LI1Au{P0CvVt{U2adwy0oqlf%$Or zR?LhEfuF4*jN!i}vra*B6=D?!YSl~5VoHI1IX#luXep2sP5&b|CjIt^(t0T@iCC`P z{j;;{TU(h5`*FNWH=*3);i82^ba$f?x z(bwKl*u(Nnx2xiMTv$<}xAyFNCG!XoLQvmkH<)8}>LDg0jds!Q<91Js;^fRF{k5s` z0@Bg7SLf7ApH{H1Oxw45p6mo63z|)#i=Yw%Sh!bmbaK&H+(w4IJUqSw590ac|gF?*A z)-+^)cgs`5oA#afD~IQg=%2u9j5E!e9wdfm#-xkZ5S-%??5__V);M>BWdxk$qOigT zWP{!7w{2`bO6+UILy=E>y9?Bt2;L$IzF_vvCjrnq-RGT$E|PyZs{rR^ZN9!#-ai|b z`_KjbNoT$INXTIkdU2+~e8g`7GGJ^rJSP1|r&Iq(DkWR$1EDUqod5Z4!_dVW+#fC# zqM>`3<=Q&P`Z0hQ_afJleEG|;Ao&%^&bT;Qf6-N((RaFU1nnf^&p%hT2cjTI&lZ>QYiLz$KWGuDvhzM92xj?gENJF`ST}QQ}6nH z87H5_hH4DYMcGZ$uqz`t_VlCJ| zwmlzq>Q}zrxGd4VPe`+i`HvdRMzp5^Mr0b&cNfBTar)EUCxTD}*0#w{|Fx-G|C&zK z5a09`UBvGtab}q-341l;_JuB3ekEO7Lgn$^u=sYjjQvxq4kbXIzuioi_*#Z|nFWd* z57Kt8FD{OA7wq23leKJIH3tR>@wDZj1hDRg0GuvDvUGR+sVh%KS*i|&&JbEuJnu`i z$ep^lxvFbkn_-CFwkKv1~(kRTlIs6_twW5U%MVY zjI@|h7@3^cKZdv}P@@!V_<;ic>Rl!DATRiDH#7e(>ma@NB%r^=a38#s->0oVoF@YTfgauJc1rP)YgxbuMQv%6w!pQzl=7M<(3v~)>~*N z9a=su*L``ed2~S}r+MSVEK<5DCETc6BrnIYPJ8V1QJ&y(1HRbEW!um&6}87vF^VL4 ziIMGmoEkB$ColX)s6=RYn<1cro_%nl)3H_O{di6B_TbMjVvcE@jemlW{?|HyfBY(; znzf@$1D)>BXElx+U&O+9jjE2lAxGrM>bM<4R!`kdD!-XucujF_o*(4mB0J>way$UFcuYByI4 zCb#mZ2Mm*7SHczf?LN{rJgE*vhpqWJh}x#|7dzi$L)4;6HzRz9u>(%OYuwOE;YbX} zQ5t{pU)|$)>}k&J0Z5FIW}ub*3Vw;0`lCUkWHS5ErEMcceN5t(zoXUt(x4y@wfqS$ zE#UW6LOU1|lutObEjCx}Hu(iyDk2pljPp4$3Z6W4IV5|a^pdIYEcIc=AXcW&tew>K z?X4Rk$xpUV`^rm78(WY~S9k76INM#?X+%Y!2h zEEF!-7n`!Vp6i2qR8oX7A;U`6`5{ZYosp_;+Mo~NU)8$iHFbZj1REfg=FHA=ds6%_ zcq@ODH+3#4wR@3+y&^Oi07az`BP_22h$4vexx|RmrLM3-G)9tp%7!y(aj6Y2l$pzS8qke1KNOIPred)92s< zXCT#rH~IQ+0dyNSr4)TC(TXAVk7)|Z#eT9L785PtIG~X*O}zTbXTxxJn%uF7K$GFn zb=FSXU0Z0Uv-Y(e@DUcUb+tW|$%-8Pj{45(Rn#xkkmO^^>AbN1L_07~twZASQ0(03 z6+!(mvy3geJO->-!fd1HM}@^e29-3@$XjSJcs+_%Q;j{d}Aweufv1@VW8sWBhcxrO{vr)dEW zie{p|+oyqMHz{L;#|8N&UxUZ*Y5okxQ-)QxyA~&r*EKXx8wc0}z7xhrnv3hwLSrqF z(pZRV_SVFpOni>(0%w3^=m@Y)Arbn^m-jD3resH!lY-dkIo45oqf-A4(W~1|^O}wr z^<}mwoU(e?1QBpUM!r@!=bkhpiGB9ich0!MS6a$8CHegJDTJMA$Nru?H3!1<;kEb{ z54UZR9=y{CVa}#hVF^iYTsV$zB}oB1&f_U%@hV{-zROoV`P*2fwfHhaHMZZDyWOj3 zDF5aD`s$u{%G%?baT4<(wd&ld2j!GI3lH9$>QNz{YA9Dbf_Das;KjhLd0k)+%zr_h z*EkmgfvEUdEOLTylhrGRuIHg|wnV1G! zVX6tl>1~HPa)^82X<(p`NACPX{~JujdZ9A0^9=M(E(T+He4FWlOym->d#<0R1)adBfHcCIG}_>JPd zBpi*)9Wa1|UhY}Bc$FW*JerL6`nZNc3foDG%H4`vGfuWJgqV~QhtpUE;Y_fm&gPi; zlqCadl~)9@FJXQ+VFTkN%=tc(VhQND(o~Z*%S!#CX2xLdN8F0i=(KO4&Na_*Bsnlz{@vub?oPV$ z<|#}fw?KvvYp*Il#eWuk8S_fWV|Jm^Js)t@=}Yw2Wv(JG8zoj*lwzQE9(EFQ z$A0Ex*!wRALFWak3O!vaBU~|GgIk6Z1zxD#G*u;KE8dgS6QDt#KkN)&eqK9aw)JhM$YJWG03d1cG$(0=4 z7=;R8{r3}*htM4b^B=QKh6GrOXh4r2(cBPXw&}?}g7woR)#G3){9pmx5a}dbVLXm3 zb6Jj0%KWf}-58`8lYj7Q!lTZ{0WVOWOUj$Co3xkTA1`_aJI`Zp5@{D%_baE9`|n(* z+DHIyRoWbHNLxeCTSoz~<~``hU)1aFkBip~!N782vlI8?bD1+x8_S;fZSc>62?wj3 zdR6h(cRq8R7hV$0*w#7Fm^bBa3`F}I(b(4V?50MOs?NQ^mc)+nEe@&o9L7wO{do8(l|7 zNfotjzQBQ)xQoc5^1Ltfhi+~!MvM3cQ?|Qfi?pAD<9AiC z?}z>8HRd?5DoPOPe~`LVe7Nfsv6zwRYrvdUqwQ^Xnz^P+qtO5YkxYvNeB-aH4SfpB zNveky0XQLp3_LEDU5Y*io$;|fF2M^H+_jyyI9F#jzMsX1T>9(DC)IrlfoAVRgDqCq znr6%=r9QAPafBAHTyYTfzr3x#IC^t7{ZoQw+y@N3z^khCM&DZ*V~s;wQ~Da$Ho>6> z7g`>#8#MnDkm1i==;8ipY0!K_40so{ds{`)={2iod=4)gXwm^j2Fo3S3dTmUb~Q(V zFAfv=Wkr909~k$y>%h{aMxi9|u-WOwkKP8ryh{`7p*egI)<>o&PZ^gMA4xm43#9Ea zNv8gqg{S{zhmd#fEUXK!&F_}-<{Hv>fmq_kO|YX2zEl@d#DR4E?X}zQ>9-~VSYP}B z9|e(Wt(?D3E`>DOYfHb|+xzk3clg`n1hg>;|9pahKle9ZcD#i$P&);QweCduIy2VfW=04sCNgv zd-pB7wZwp^a0%N$Ho(z4qt7I_vCU4$GBQ>7;bZ#>qQ&|6%sVFbufk0{k)v~^J&DfH zgZL-hlSJvTEXZP$YF*>wuWR=NNVbNjjVq1{kkVrBLg-gkJ+NwDoE?KzAdqLus&vhu ztPUhj8P@1Zn|P>0sK7-4I^;GXs=V#ruBXxY%lI1_Dy;3;MF-_N)s&wTcYXR-__gW5 zIknEG(e>@-+g%|q1|g3exFUWwKY^IkYe|+j*=&9sqw#S~?-~9ndzo89O$mUgpR4i| zYPbY+UmR2!vN}M_2M4^YvOn*YJ`v0d%jT(wUiC#84M7RC6Vbq)Um*SSAgs^Zm zEYqQ-ioAiwRDOhrT0Cs-r|Hcz!Ri5?Al;uB>=tCknRxiDwz~WhWpRmtta5or1g>|<{XoF)%mnx5)siss|Jj2joA5nDk(N2hT^bwo z5T3NuP|;OlY~R%%3L~F!sl~UXL7rD4vQ2IdoO9^kM}r6@2ffMfF4b+7+%kkv4oPWC z9D5G`^|=r1=(WGz=iEe?Ho{%-r>?zIyjMA_DIjS+lf9WfaGd|MafxvA#P99YGQ%cd^QReG$l zt;~5{YZ4J?Z2EISox`Ayj3?&FitLpA&!u!ufl_cMEHwVJOf~IlEXYOml6j!4n)0gM zV*^byxa+06KB`nW;_{=7x$ZuPUFVTs@(E}BaPhoZ$v%_Us+oWg8JedKrMl_OSM2N< z0Cp1J<&_Yzm$K035S7e$Dko?!M|OEQ${{}-H4*(Rpkrvw3$=$>cS8rFGCq^H?|S!! zuH>nJR29odQvak~O2N;!|IrbWXXz$`Jlr)(DCS$D)@BU3#1JJAX+_|N*b9@gdCU6) zh@u_|8C^=hr=G?TVu(AAR;8Z|d~ivC+rDL2esIO}1l@KRFKhul1SAS?8qbBwPqhZH zZ(iy((p{bg>#hpasBiR5V*UV27y$twe_KEbA4ulFk2( zNFZi#l4~D(Xw)=sZ~RoozkLTD9#@u%WQ1?r8tx-E>lb2#Js_Whmb~+7>>xL}`eG#; zk9vj)MU9Rx{!+JHxi+1Tna!nQjWS!0@EeXRv+|3)hbRbOyTHg*7#We&doMkx8HV58 zFtv+79$er@@L}v+qDSr=7l61NiNrmZCG64Bh+Dix)M$PP{=n zJ&N8$)-@Cij+j}Dp%&p`s<+E!ZA?Kp2?AYXvFQD8!qx=!f`W7Uj`|u%wKuX)7Zz}v zWp*N)5)C!x>c=!YAv2<1_t{wND9^es)O(`&4#Qt|E-+@J;TyXd&sVwA0&5ih8QvJ; zQ}?c{`*BIh!Yw2ETQz4wcH1((G->~-WrnXZ5_cb&N`lt%p;M9_3{{ZXd(ssyaJA+G z#(yc6kgMO`r;NTZTF|`V`6XdY+G{C48R#~=<1=oqM3nX){%8;|{IG&1t>j<|kOXx& zG~7Y?P~Tt1fiC}zr{ZwUQJT-!o4&%H{QC7az%I zkD9TL=KMRi8M1IN2PSA?C=S7jn++DAy#sP6oL}87kp93~_*tcVqS{lPpz9hg7=69u z>EujYKp)Uu=Q;UMYUKb=DVoL3PPEGycs_5ey=THa4t>X<`>CZSKWtWVe=K{2Sj3xE zPu<)`$BtKy*Wff15fwE2A8UeJxYWW4JI?;ZV^^EqFUc`GOLDJ5NG$_h2R9$h-5F5c zQTw?dj@&s*OT@*XB9agm-A!`LQ(JP%pxe?e9Xaf8Bp%^PsG%u-at}YGe<2BUD8m zk;bO}R-s)T74R#H&VtI`ejqBU3FC|?s=YD%>a08Y!$IUdOHI`=+7f-gFWYYXyX(S# z^a~d7B3C7mMgF%kv2CR(nx+=;@K1C?)a1>YZ55y`a@jNSuv8Eta0$H}&+zOe$FSr` zZ6@>I2uE15d#o=HXS&tEs=pTT-`tH~--gxa92$kgTw=dG9Z5=(B)0n6Dr=&SAl zc8aiCeZTAm4HR_^69c8!pS0rJV09e*ebg}wR{ylWhX4t8`e7b{Y|{HiZ7lSAl>MG3 z$-Q2j5n>E9@R;}tvz=~ZqT(UHJ}CzMu?a-ugvGR79f~yN#1NVFaF|!o4ge1=Pe*U> z=L32FUWa)Tw%!XAS|XYDy=25NY+HfCg5HlOl#df)^SAfjF=OuOSSj9fZh`lP&;Q(r z|Gzqtx|jQR#cYbl52AYWBc_u~E}|DT#jGm@wrbT_;9{7j1922rE9E_Wg?0SF_h$!F zMa(W2%UfNY9Iwdh?g+WP>gk}T!?e{*t=*|=v7T<3+TixnB%qhQ6IKN_qgiF~wm2k6ZF?zd6%NepH9Ma%Zd->|g@%K+rl8(1CHh31Qq2HhewSkSC=(w& zIZ)uFc5+e5xb;Qxqj?7KhydDs*sEr=V9DeI>2OGmj-g^pL9N2EMR|$L(Z^i3VXwf0 ziyem_XOoEmzQaFHKD*~*Cb)=RdjybWg;yd^H+9K*Uab_{PV_-L#+yFvHobVmA0e|C zj#^)*qbo*6aK!A|;wz}|4UHa4Ch8f5?iogaB`}x}dg5pX@5bmB`ObD3!yaX6dYF(; zz0#|OtmIM6=!K=oZiyDnfeTMGyC-K8o_IPE^tbV`-**qLwoy^6OPc9?+q@I6i6eAu zFMHFOz&m8G#`lFJMjBwO#A5tS?=^vZtH&pCN>u?@xi*j-uT_wO*^8zK1m_*rvn0~1 za^#DF(0BgU4(>G6kg}Wb3_9zP@r%qU;auPI0RT*rFJw^Gn(1#`sfvjYtpG5TCX)!2 zxS?6k^nA~<8}LD|NIW>Zrfhn6%V}!34d~L_!@R|jYL|~T^E&n#(a3!eZ^RFOqCoq- zaiE#vY6;!3TJd&1VtmQ8UzX!~hV?iBYVk9J|7&6FSpB!nj6Ej4)IVdSJr;CDccawH z^2(-R2cb__K9-DS=01Q)7B-m0y?K(+6y~HT`g#H#C!1sJLBOQdnl&?ilm^r=Cg3ab ze)1(d;S3c`yXWA-Xw*boZ;+~SXNb&Gvr4y&DN4a?ZUJ;nR_7FbxcTu|*yyJugCW)FdNFH~&+R-42nkC!^a_9wBzaSGgSkD~_?;7kS0D zSTsV9_^^8S81>SIW?rB4%?V(e@)aNsv*=y}{hzims*&DGQ8d*ATtt&e*ia&15z+0# zd*?J0wnjS*4U2N_{z6QQ$ot)$D$+vy)1r6e!Ip;PZm@W2;fI(t{ny@pj<#0<4wZAn zB$=j?>9UY4GuxIY(Jc(mw-&Is#@v$ZoT{@qZ0Y*YZJT1H^wle)`+GG47rfz9&_aE}E zT)n^|+Vc)P<2(GJU6;sBr=PKmi9?IuP1j5dc@(iGduA*EdKR{{>t5KL6!ehddZU5h zcmr63Yus;WOrPpB>_G|-Vj8X;Nds!}e2;VCJ}i|WU;5HR@pxeMuKaY^lEeI5ynGe- za(Rei^QQ}^j9UL z`=AJdb{m2}9t*-J#5!r=zaCsTY5C4(gTnof{UxwcZC zBZzmO2A)AlT-u+g_HK=1_og!Gp9}k7ql)?ySvq80X4xc$ks2mH|LA?x+X!bLV}iR=Mr6-_?Frf?9m@jrfZgT5^nP72P5lCHTVh4e@cfARp&= zmLCAI9WA06Og$`0zT{=OYkiOYtcrrP1a~y{H5~-IGAMcv<@G)nnC0^Llc@Fc2bYQb zS~1#M1e0$6oRCKO1nk%~65Eh^3S8EBAQKiV@U&>z*H-RzZeE%2x+Hz3Lb#fHw9)8% zz$djIGPLe5(Eo1Ay^qdQsDJr+bgP71VvA+R^c9X37xfoNi4ACl#u)ME|Y%9l_H%O1o~)Fxc97icOkk@`Dt4Vu7Km8+}DUhA*fxdCH2RxsG4GPd(5L4&>JQu0OM(*ZhrXf`(DD#BsO3Zd7<1XBfG~SKm0i- zJ6BTR0wMd-v5nF6uR)$u1#_$<(tZClY#PJ*i2gP3Ez4DT};rCv*F12 zsbJB=VQHUXuq~Sng;D{RfI!(#CqVn$vvq)O<-e;LSQG$S9|Pj`sL^VhPeS%XK&^9& znb?>Y&Qa=@kGOG9gYsNI`$m_)`BR^vg?j-MVo};nWF86z-BXxvT@n7O%|EyFS0tn* zyFp7M)F&xO)l8Z6HMxaaKcZ46(jJkf)vUOcq0vs2L&PXI{^e}=zX?6vaC9XFdW+xN z35w8H3HoJ1%`2D%_v#7F+{fq(a{obD*)I6ccw0(lL%JXcfdx^`QsH#pe^t|mM?8H5QbEwRJ}x1zWk1=Mc#yqH)u z&@B^S85kWNPkPC`Y;AVS-UN9%Ys@66qd`ukD=HrF6#ZEhuE;_*a*{UNO{{jL&E zKR_T1j@C9GB8VPHm?^`Wl&{vGUz5sH6O+UjY2b4sHjkb9XQGYSVj8_o?s&jA`mUvc zwHvU&=#3`eCZcix4b7#=L5*kWegoZ-$fT@)0tp83p)UWNeC<{5TQW|<13 z;%RQUnY2OCz6ev(PGa;4NvH(Yom)rIc%UoY*&%2?H>I!LtT6ziRuM)1y?EIP53|d$xbg-2GH{ME@J*(~%3r#HNdDD!AQD zWobsJVLjB6{aa$77xK(`nefyT)p8!HMmy7Lkk9|P^R)}rF=TTwvyX92vBzQ1)gAVf ze|N!XYHeagQcPpvH9sV8-3w7Z>4g-`QUMl^yyK2g7{+tnp|Bb7Jil>2y9dxsRyjiE-kKBYRjUI2cuXrhM4NGoo=1_;yR~#E+ znTn6@%+7&Bo4PZ_G1)U)7KK(Xm}L;9n2bJcDLlWTdj(Md=Lp1>sd{gPQ9G3!YNBz^ z?`%7zR<2RLCWc%=YzegW_UVGqyNan~wi9bXjI~C){h`*@lrDC2GqUaZGt0IGkm+JI zAk*|`vlYT#DGSxO@vB>vxoWRZgF~xF3n;B*PfqL0s-`R%aBy<>r4&zFCErVo;_eeM zw+RFFJMTPLG@&mKiHO}yDkhk(z_}<=pX*fWkvfWd*rLE7B3P0f#x9gEGP5w0aE*9 z)dXUocUG1uc+m~WqN@MPIij(VK$8-9TZwVQupa;5E%DDf_RYXnH!%8){KyETehPBV zK{o(hX0MytsLOpk5rEJxuFK(zcGjfjDLuZdUyPHA3I32n`AP|Q_?ArNw=_v+#5Q}n zGFBc_&hgAudO|?@txk~m3w6#)hW{<{)i|OKujDE{? zRdz_a41+p%6_nW}r*wIK8sRjbX_R9$>}Z#Vgr0p5GTwmpk+Q(BE4>I}E91i@J)}Ow zJBC;s(SvdY-V;ik^>r;u+w@Ma(V_RVCyb8FK@_IuA&L(I%5<)l-+7_7aBNKat)AKb zUXAw9teyGBZsK=Wr0a&q@2%sb#selPXDO5}LzEcz2@0{HN_E{1i-27sSTyXK zrA{T?-sPL>%%RsI=l+;LU-%wccUJlyMRN!QNe$|6ThKTaLZm(-yB%8EZJX5p8@)w7 zrNxKJd8eN;)9W3$Bz=2|Ew(EenUVKma+Z?~y9)#N1v#^IB2P}W8ZSjG?{Ejyr(bU9 zuJ{J%!;Fo0^s$2MPp_5?^2B@mlI0`4#A)^5k~SHM8ToJ>m@$c+#ho#$%}Agg(ZaP? zccMw$~LL6iN5M0d4u@t&eID2Bk``AtqRYZ$; z+g_?G^hkYx#6;Vh(2=pYxqs7cJIP*3STuzUuTB5|8g{dO}@8`a*%}q~gYowdTQYoVmi3yI+D&*M92e(sC zrB=d&ZwCg;A5C{jB4r@w*^b95@WG{Rc6aSFC^xos`C2m+tdJy7*8|HCrti~KZ=;(Q z($9?KSAiK8LRvvFk@4-*HVbf8gxh+@S*0EFUDK?F27I@Z9dM z#>HR6?n!Iin_B8m*(MMq-0O6CH`Kjo0?6@}=p3{Z=Dhq)${Y7{mcgj_P-4xkbzvKk zKh1&H?v}D4>dwNX8WF0G(5v>yfZmLc`l&~gEKr}2b*{5Ld_kQmm85uS2i@RnhSnK#wFm-+TYgk%^o|7Z|-ZC(|O?f7JH znxCp^oV80MP$$r;L1lb$WSm83J%d0MSO|A6uipLd3&)5+Jzl_5+>EIfj)R`}h+CVJ zMF6)R+sycQ1K?4I!JAxDW;7Gdf$s`fHKnehxe0P#;A8_1{vTpMf>F8%15cR|m_~Bx z>FBKg>(PuGk}Oc&PFC26=0UvC!2bpFIK(pC2;&6*W&psFQr|{kO1@vyRI=@kSzE*| z8)`5^tA2)+$U!@wFITn^qphjaQ1G&hQ zRgl;MCzyAin)EhYh6{IIkD-x^w=Q6B*W|nj-u3@d0xv=h^%L1}9IZ#pUdeRpcar@P z{E(b6U$BMr<4(AtjAuafuwi!_ST{C$BkBKfNBV6JIvb--)mSAqQouKMDyqC^{=CQ5f{xUKpO7dg^@ zt92ciq@b=sV*Kof_LQx5{eEl|MOfz|)$Ri1%axP7sz<~`>l~H*N0Ei={(mCU@(jNi zq@Kjx?O~P9B!YYDO%R^$@W^(@P{K1fGdr>5bb2mTUsx^3vF7tOc;hg}+46DcUA=fM z*Ha{o+yeQ4n74`G4hqtZmzcH-33P6^3i_Y`$9;)bX}VcV9sBU)Syc7LSRexa(Q={a zT)F+|`9Z!0$E%8B?(*ejf2&>qOO5)PlI;ZDb1?a?hXKsW!w76?B$GQ`KxTdb#1KHY zP#b}Y#IE-vt3h!k=fdiqIrkd;`T$@Ew@DFeQO*RIG=`TydgLEdQrQW26}@z4LV7Ls zB=4?Kotx~7W3jV&+HZGa4c&-E_~+4&5YS1Z9O`ws^k?K}NwojV5Fq8(p^Hip9cK6E ztwBrfQy6Q)fjE-lPQI8;iP`@m1fLxqB8n&q!IuM+$e!mQ{|LN)h_Zu^b%3q+(t+n` zTf5Jf^mgCmTr<4pc<|L{z5f8CkA3GG1xCeE$NmbGL9cfXYfc3SPe_bPe8xs_&KQ0P z?pEZ((7LdZVh*2g8&e6Z6nVHQY22`puZ}fKm;8M@#s8Yc-`Wd#MuLcQ+Jd&}jh8$= zem(zqw6gtY>jjEF^ISLdhyg2Ha%9Z=S|mfFE+B4~;Qu^$z)&tE`#)4DRs z>e@~I^VVJx=>FT)wiGsp`iL|qQ!@GLd=a*T=9~#mK2x(G{WUtDrfcS`H>E3PmZiiE z>I@5MPK^VpVCGH8Qhg(dGC8=uJLF3@P5l8KOc%%COJs!-FN%vK!xQyuNhFQ)jko)J z+~ixI^F`(gCv2<_R|4%}I*IGaBcTLU52(!LazKZe%esaCr%kdHenq@9=4JTpJh}de zn{nx=KiTyJapO~!#!pRDFBxxQ^=X;cOw}@3B&z|^KNl-Qs>=yjOnDV*)55oiNHWZo zh1#b=4AJcglDDE;hp#&V{|izn{X)Br`P8yzTeG@fJxJv_?>QRY-cXTVHqB+)tFuJ% z=mr?G>q}61f=mG39yWa1=+T>-kNqjP%%XGo=b5Cp2VyWS-ejluI&9@Wxw726-~df#Mt<1TZs%?-&>LNrceLNd!~eL zF|+yoXKbyFQX!DRpy1s5$jCUVc)3C(B6WmFVG^TN_5N)_%(8o32kN zgy*kA^!|NCd7FM;D6H&ss9bWaTuPHLHl5tWxxcFOA_p|&t{q5G-dz-OzVrq4x6dcK z_jH5yq6B`ij7Lo3;garcuNza*2Kf`Xy_C324n5NO+*XMEc-cbABGjCbBgxFD%rQAK$u<`Sn zwNsvt=N0$(G+993ibTw$eR1%!0RV@_aIhR@=C*rhbC@+N2r;|rE{TBQ@|vSrExSRR zQga^;U%b&g`5Hugk%EjCT#AsGVT+P$7MLj!yp)??U&(Z$Y(w%O)sH;C&~r}og*upb z^`lj##zM8cue-@D%C#{k&kR8)c_zgKpbeNT*%Z3xI= zXZfwsdYex%tdlMO)<0oyHn~{KIR*$UIh0v0VIeqO6|DU?7p+f_pN0Qiv~5#7^=gzP zo%Y}E5?0bYn87#_{V*tZ^uy1h1*d<;B8H-X(f^bs<(~+sf27UR?tgPR&PRL}!|87e z!He#Bj9Okhzu9Exx?8LP5Cn{$KzIw0oy_5jdEB|WMl*$;O53x4xv-9%_Z@R&qk6%f zX^Hc|^}I*}NQC2pAAC@b`CP30dP9_Q2!=OvMy4)6ycWi4MN2k0|mW;ib6dRn&j7_*( z9`zLzt42Z6XAsasc` zXx6IN=Jwrf<_K)&8*So-+$(Qlf^#q&g)g!r%lzC}BL0jC^uYjY&R`IIfWF3&#EEZR zUY(`wvBrP)xUGu$BAtsZd#up?p3Cy7%@*vVstfm~9xh#|uvO&{HN{9qdivjFFV6y> z{M}TG;7j%1C+#{WfwD>*;O}U$tG@jH3ezz0-3~h!{T<02@GiIXffXA6^h-7>W~=)9 z+(fcl$0aW$_6n(CK(k{<#*b>+zR}J&>r{A!e$MTd=BUGUJ+0b%m)`$1y-E~tn`8v# z)=N;MDt%hJnDtOf&c%3M|8&DiS_i55*_AXBYTq_W%+%pd$DL&Ss4+-O?#Jn+hAfKAJ3E(-UbGZnTXo@<2zg zmNqtbm6x|YA>SE4u;=tH%xn(PUHCb5jFsen8hX2j254>UFg>!SNS0VoERBsS+#yb} zo-Bk`BWXA>MOa_g$SRE!WH(mS#mS`Ih(qL+&7mrlHvH?KEKNredRIBAk+M*fbTM#< zaR-@?YyLLH?P|2!zQ_O6eM;N@_Rkb$+eZ5rUY~xrWHONY*SPIT5b?0&f6hVNC7K=O z2G1Q`hk;J;PhmvX{_QqD@a(92!!t3H+DrWH4T@^-%?$S*F?YUF3Pn-o8viDNxJf9a zUA;YaFW&WzX;e5B)n8<+l`Z$DA9B5Bhwc6)WdXUvII^X|0^O!#@g)5*`_ zSGSA>%Xa>J4!CIQZy!s|rX0Irrs`tFUJ)N9T0;)`GkVvqQ~uNo42wx8c;oj#s6UcG zTX5EnkZirF{mokWH1oxl0_~N5hZYWd2z)~y5p89h%KaE7MSnD9g08srwR&;$ir*B9 ziPA@waQ~LE)?8uFC<;4z(5hZ|xUBKn)rZ4Xb!Uv_E2mGGrYxsDm#uxnhq8>*nnY)w z{KyXPy4Hktoi6_`YfZl!e?AEQZd7_T>mQF!@D*r%p4O&c>soI+iWT?UyL*KHEBd&8 z+!scvi}_xZ#=Eig;>I1|*{#LdMcKMK&<&f^VH}v?K<49V(1wRS5$Cz+F-`1QInOOPU;ZRQ4>yG@tyDohK5Ao+}f^Gv5K} z6F0QQ%G?EerL!_CR*yj&QVF|ewVp@&LXdFRa6643c%Ki`go)i8>us@Firyk#)j`VbtZzjZX^IZ=5MU1HM3t z;BrHAz<%R*4hF`VD6S->%XlNO3E+xC0s^nCr^wY;fEBPZdSPqbg?n8 zc7F7XAl{|5wwe0V-?mLRj&B%MIQ@x+;mMz}C_yze*l^?NN3|g*ouYH>=wm~uXM}Q?#VbHp7eyXs{rkungkhsZl}z`eKTz89XK9a=}-jJG(DNe%NO3?aONK|M_72$Z6x5UIm~%J{J>*HQ!ys zR7Xe}a0F5#V}l1{^`yM-L7!^uOJD|$rJ+O|79o;7ObH$E^EkfT$~_(>~h;4`9?=z4O? zRnMxjSn6e)_(7lO!S4zjRpqavx|{mm>RB&W8xqM9*^!#)p*8y~auRRTdwKHat1Ap( zXlN_*O+AnKUMYzs+xQiWsg(C!1&xokDI3iw;cEgd0syT^?A@UPvzj~lGUO}8894#N z?Dk6kLGX{cW*^=M_GakZj!ra_5jxMvMHHsXQc8lusCC*(cSTvQQ>OvBP#MePJNA!2 zoo!8`+@Q^Jtk4_%>lpOs_pJIHp^*e2*z^%8hv08yV!UU$>RfJbwDZ&nY+CZ9vK?Rz z8{Z9kR;Loyb1g39@}=Ae%RWmAx^GtruRxk}g*~z!lK#GsRHswpEcm{8N--dQ)9A(u z9_kr^#DvF5hnO14i#42!L_l{x{DfUhS0bh62+5|(H>g_6Tu``3kAX*ognxcgH2pI3TJUqCeRk5wbmv`?I^#Es1k^XfvoG%uf9g z1GnE}Xy|o1`kf&a%ZPa7=}PSk7pY5JX5s}%eEa*&Pj)iSYEnQW)3aQiUy!wv*a`y@ z%GxC@vJX%_xg|Sxk3_UFIm7h701vpX#-rSs2#t`)=S8{Cc~aEg)x%j=Sr9NidVDcmmINvtGE$wGp^SpX5A-Pr43IBIrI4m5~&lKBsB}W^J{f3Io2h8aY z>hl{;ud|D-uvFOX)tDDwFKgI!?hNh4)7_mg^D!7GF*~{lcMozM^>mxPF#)L8+@Yw) zZ0L%8muZq@i=|l@{#G>jVGt3SRV<-zcFY3QDQv)>S2jT2Jzq%uzdoZ}PxY`59`a730KmKU$4& zotXtv$^}HjHazU-c8i40!>`^$Z;p;+jh1wNb9q&0MI5qFs_ALyk2rX9!u_N1@rmAo zY2)q!c=uHhVSj3KOjcjSp@Ff*+mSxiS62LWk51d%*7Zi!9ht`L*2I=&fL^OY`mHoG z@&KTRdi=IUA?xOkqbsnBAdn)Zd{?$9R)@DM!#WiZYhs|4r$p=3aRphl-<3VRsi-=F%L?F4z@v$B7Q zo12G~uDk<+hpQ^|g(O9d^CiOHsWBC+NB$}7$P~BLvws0zT`!#SX2~{L{^cpqw8ak7 z%-;3Sg+e-b-SYFy^Tzlh6Ioo!ZW&0P6&G0%bMYQI&gb{$bUo#!O?Hu0cL*uFWQk0T zZsF*P|3tWoo=p$Etj9B@Vr=8MUmtEb{9hQ#3 z{_KA8s0MN3?kVMGBQ6)OZD2VWf&reF8=|%+_?(QV4?Fn+)Z0RddVJ{Z%{pFhrb9nA zi&5FQ8nNub$eynGs%QHl-2b$nnSF5}tvTnM`*D5mQAJww49i|g0S56P04Ft%(F{oW z!b-D?o>`2vsKrtcfF<9mRMYt$t0fu>%5fi7YS)Y`J<#*SC>tN@>s{vV%9HCPC(2bs zk6-MQjtK&B@MBrH1gdG{e`bwjzr>Mq2Yqz-#`CZ4&-9x(2n4zQIhjn!{iQ~|eLhSV zI+)kf10g>06`T2kx-Krof1Yl$0`=g1T5qKaiU-P9Qr&`$wKy*wSD7UjX{UhdEasx3 zq`Zd?E$~vXYNQ`7aLIJ#9otuYd49LgKn>CKCCVw;6gH%>j}+;q_a!Fy=?pA{)Nls= zN|pNbo`sq!U6oew?xF!<^4N4PG1#?Qm~u{0+!weH8;cn*(clL11;JX72A|i2#ks`2 z8^NOK4(0Frz}))qAcUY@pK&d@#YDkK(4_V#?ekvb%Kt~zyT>#A$AACzkyI+7a<)oB za!$x$sZa?ar@|bPlB|(4n{;qKlVe88nK|UV89B@;BgdSEVKTF3o0-{m`Ch;4`rUrN z|6aHE-|yS|^?p8{kH`J7!XS>B8-9T?%hf=Wl}CR7J9eV?vTz^vV}ot!9cx28(WL6m zyd)zHvaRZR|71J`_GW%vQX2}s!NGR-#+&jqULDP19uZepKE2gss=g)XqIsa&944Gw zjAkyDe>nPJt~de!L7f1plC3TbR13#XJwD7xyMBmTp59*YnWwV(toOc?`sKGS|5!lFKSZ2Im0 zi)#1~fxM2;|0=VDDQPneCVJmd*v|ZYd%H@UDJF6$_rTuu_+<0`vBX#YLaT_t&aM5o z8h)tF=AaWhvpA`4h@i)dlKcq##)tQr!2e7|I$LKmB{2G^)YT)EO-UUF^OkMrHixlB zE>8Q#bi%H4jq|U^$2O4_9e%)8vO~8PF`kq*`R@DaLW3LCT@Z_eTj8g;qN`-wEq$B$A%^AQSqcBc zez14=+~+2a-4XxAr)5R&0c}sPnq=R}dD7jaul-w0i-u<*#jmxC5wuJb-14ndxBWLk zKlsC-ry5}f;;R(rH#ogFE^?c&*%)s2et<=9aF-w7b)#_h^(u*}uAt#9iz2-eKKq7H zt;8`G7qX8dHv)0~h?WgsQ{L7GX5!t_!43gkyYenA-gj?%J+J~;$aD3 zq}L6lJT9?ny-g99$}XXMN4t^9zieVzwLX&->8^R*R(YUNxQn5Jk@Gj+Ov_~))7PD| zBmr`sH~6&utv##hZhTqgiqp8QDt9?x7{B3?zw9Or%uYIyc3W+s;c6TulsTI)_D#lm zMvvw${PB`!ZC%{x-NGUPyi&+hHGmiYFjp1pVDnTTy|-_iE}+@E#_iLSk;OM;Ti*fZ z%W8>cp355%#Rs-{tmA;93DB>5W9xF#SFqf7(95=bQ|*a(1J2>q;?NNUT2+|+Cv~FP zIZ<;OR;s##n2BWbJdX%hP*DMVfW9I*NCFGh8w0B%NwTKz0ZKf=pu0c^gG21~@yu35 zJXg4<^UFJz!X=lqgvEFEZv+s)SN{bqi|vEu2YHIO+pU;k=9}29|GFyNS%o^KNnz)1 zYN*I;_|GjQ#`B*5b`*nttZK*jj(?DQVaE^q*&JMzty0d5$z2=jN(lC0b!Fjs?ye)nsh_mPDvJ5d4m^MQXxY<4EsRHnLUgn?#eZr zzlaF{Hs4q+l%hB_gdE?VdMuJu#?h*8DXWC}TA|fkC zfI7d8qI?N^lta0TS{zAuftxMEKKY%93ID{LT<4nX%kJ~O?8YIdr_&!hc6bbXa>8@6gDez|) z*<9MBB~%js$ErG6T^JYMCm-MCD%G*dEh}6(Wg$O|Y;Y)Rl8+0ZE%Ux%Va(2j55-kI zQMJ&UF}tl4CXitIbs=Q`!`|N4%Nw$d1`AWE{=4RKfg2}K{|?b`N;8H6H+}SbQ=EBf z+U2=IYk!p#T^1HxP7Ywf-63D?W5qMWndjr5RxFRg!qom_ckaGimowG_Cl<}*>O|*~WaEwH8>`DR7WfzAxP|#rtVq*xn`D+!BvoUadwUnF8%7v0N6kO- zp^GNwLK2As7hjZ6G}rm^PkcW0Rj*KM!Sv^N$uxXX=ed?i@XR?q%tB^|!RX4d0jbvI zn|I#U49Bg*bQ?QDacmv?5KP(wU}*bgdLSuRUEroDLxUbkF)IZf?&2PzYGNR1QBfLP z?P`KSU(g)FJ=En8A@_9J6Y|urkWmTWeekU-ns?d)ja>DRdH=Pzb5%w`SjAZKYRAu< z6EaV8#)WavsdP_7IHc~6^3^u8jUIz6HydUi7G4+Y!-)xirpB#MQv=?Kp5fHa5ksgn!%# z`9-WMk6;V`EXgGRsc9|q_xiMEk;Ca5SEMrTtYu*ua5txr@X^{UPJFpJ5BK)@sK{|e z#L_;{IE#yS&WYu+I1bdC!%6KoUS0!wSxJa`J5QlhI`oDe*2`P;6(C1Ah$)q|op1j1 zUv(M*z^%|n(p1>{4XBq-QfX_ip1DQrb%w4)+Yn*Yn|z)VBOjcjq^j+S$5PtXCsiEvMJ z#ve196~$p*YJcC?^zX~rmS}S5n`_$3=fbo|T6kTeNCb8HcBkiLA-doCEZeo7p^8x6 z(cFW_wm=+TNK0xBcLoRh4=4qEm3)%S9%Jm{jF<|90x8oGyZNjnX|8adAloN@a~+J< zAAmOTZ`lX1LG&1r#aJB( zJ4Rrii)4Qs6o_JDD+Qm2n&a6%In&x44a4@v=5{ zA~baD51)HS3~~M$VDac>HSU2Tw7Sk|<&NOQ3&09*gH}uaT#w#wCwVe6V!P1o``OS_ zjLzTbsQa4M8_<_Qd>iCOhyQznu0YL@6OAgOpSG>r z92@6*cwTe8r%GNke7MqiaJJN+|3`HDKkAzjUk!}A1KJSZrT459po~;S(L%F$!n^h^ zm%G8efBfD(F{?ZM;==`V=OM4&K^6~f+;e|$r{I-(%c+wad?EGk@(Y`tH;6Q#h^ZW2#ZCsPk_53?}hIV${nl!Iy5mD~7en)$|kPI zpLSE*oZm$c(%;q|L-{o;#UmqFGCNAwqPKt0h1y}kJyh9tok31BL5S?gG1;0DvX}!f zkY>g+@70t;e9Nr>3+>2-v(i<3vaU>j?Bf^C!^(vP3G^1SO?@0CrU28Z8>-&};kIoY0 zxT+;}3aI>*Q+;t}zhh4GuL)C-{X?!3bdBC@jMmvzY}}KadwPiT&foZ5(Qt&u-bH9{ zDZU`|!oH|A%tf#8*lv;>_&X?s_*|>IncQ_Q7SO614CJUpE!Y82p4_E3drAz9EKP&{kll4sHwbD}r%icCZg&=h z){1B9m1X5jO?*k4k{~?WpLUC9eec!Mdf*qj`tw2FIVF>5A?$4KlY24s)k%uwYcTj7 z*lf}pZcZF!QWOr__j1qqY`5IMceIPEWuVKp5vZU{i)$GN&%kQXg96hFt-{sT7j!pX zzBKKASHZZx?Pc+Z4Kk6#e zQWjLca(Hq;gA2Z%t#Ip?08%A_GZ&pygt+|5l_XC7&i1mSnn{@84?_0PQCF zJZ_1dN?7&Bz!0Ak5IzDHuL}%9@eK;3d)ltEz@qV~FU4UhwlnOKU#yhg%Rj)i2*FU% zKRyj`!L~eNDj_a>7-d{LC>Sb3IOz}De>llcio7y*`l_0A{H0Sf{9gzh_qYkjoxM9) zb$>m2W(!&m^Cg<@qQ<}4+((|Ejuj!XeHP;k&?7v?>4Pq%%&dD zl!Y>P?qXb^GZLOOHuCE@%VVA@kZx_u_3f*sb93M0w-0Xt`w0kE(E~B=6>jnk4}+&? z0+JIqe^?{mh<;-i<2b3zRa(Xmz;~&#_74F$sZl;$-h6K6ZG7N>*}assb>j}DQE36` zN3rbk40U)WG@LwjwP#op@FzTB#=_!46IEBD#ehV%-8;-Qw}4^jPLTuBc}-gLKdDXS zxC1oc?QE?K`0eves-H#Pn`i&h zWyft7>%-H7$LX6$vKy5vwQC$sP!|p^Q;CzsUSzE1_KgiFl;Ma$~eJ1gw+f{W! z_)ixhl@yno;NZgn_9xp7q$C+OCM)kiaobsbi_31$k*`Sf1B-^I*#=_6nz>u69&~@r47O~kA(VPFH1NT_jnrH3)@ZpWK6W88@=^uV1QN_T>>u$fnvME1BM=+@lcd-z3V-_P=C zy}C(vr>U(!6oxXWqGulSS;dBSX{5On`iBU#nwecXirtwR#G-Jzu`W;0UTdRC&NKwBuVy;e&;* zyW-J`2fIO0>3EVW`wgl&US357Lpo@74%5!s_bpB34rv-6l%Ity!%SnaDCDy;*xf3m zm&MXAj2?u%;y$;vACDVGu6T@xQ9{mXf{W0s?MuB2 zKVSmu*e&4y-Prx_yM>znnLCZIx!Si0do4d->h@~5;=5M>Iywd>%B-`U+&YOqoOw1!AtO0 zueY#8xy+S@ke))5{3)@`PkNM@tr!0uzFyBr(~1Zt%An~Iheu5K9=|teoqwASd-$J- z!Eyb7ThG_qN=`;{LOTP}6&oV+k&7YIvSG7=JI4z7T)`tR&d|sX0)|}YD&fsTjaM$g zc4~Wz+d(k0#5z~y@mXba4o7ckr|kMeX?=mKi!WFR~oF7 z^xd~`WL~=?In0KHQJ%KjFmBxas)vdixJC}e4toh5d{`r?(a-I}>}M>nZ|F3;f~xQ+ zH#3tn#9YVbCG9koJ5Q=ba>(e&;pgLn$}Nr1NtE@(p!lm>fyAFQu<}Fh^L2MRas=Iq zwxriAGqxBNWWMlM53j6S;^A+9W5wRCe&VRfpWLGs6s>rUV07WnpzHW?0{Xtb|Gk$R zUpk{_Jhu23NQ|vGUb@wI7gqUOuhMRLjT^S`3)DU)aFOKrI3cNH_xQq%@^<~w+H#Oc z+i8=0p$B2_caH{f5$al%@FAe!o8L4QKqbHZWLhEj(W)YwC4N zG|?yfdbykI~)m5rmqL$OA5Fr z%cCG_4SF+CgoHD_O>SId`ytZIwgTmi6@LL+8z5kbUmh2*U5>xU1*d-kB@<61#_8lF z;nnep*TSRm*OtEq8FcPMH^!su6Cn4EMO^mJj`$xm&OoE*KeJ||GJ-$&xw`f!KSZ4Q z8gK0eD@MKJLhRg;$tAvu6ubDCc+9flpNV*^Lloq_kRYswX^`~lL$ivrQkoF3H-&vs zbND14`{K`E@{fdBv8G!rDaZ*o%!Mse+Ol`N;vMug%2;X;d)VfOMFBT<_hK|Cd$*po ze&C{4D-sGe5VL^2&!O4N5V6Hi`?f+4)tanCZ5dy{rhui_wd>cc~A*I8?JwI-gTEM9n6Ilg;qRVT$%FFt_ z&fNz!CP_O0mcp9UQpPCYlYT68I}AjFk*I|r)8~$b%Joh`U{C>IPPhK*-WR(O@<(ng z$86TR^O?)B9Tkha+)VZ3C%HUqxTnPOh*Vt1P9-2>0^jLAYluDP2m<#Z`OUJEE~YSr z#1G_-PQ5eX$)08^AM0$7(O2vT_k5i#6E&1o0e1kKQ+{sfUDjXxqe+w6eeq>)ZQJ(- ze0ZgP4l;i5A}ODePFoWwgM2>k@p$>lOX`8WvbXwSUWrD&mC1c9Wn8031$UY4P#xN z$ql@f|1=l=@h8YSZY{LBhwLK4ic;uR{u%{h5vIuf>HAZok?VN7h7~3m+Fvp@8rcr!modX z8y(xfCaGCW*#$#T4R{J##{QIs@2<(_-16zsE|?f97>c``nD3s0uYR=h$kvM|_S=1mM2pQ$bP@cH8I7BN zW>~nS9HL;|C5qYN-TTXMH7NFqR`l?`6E1F=C8rRN-+i1oh47VB>4q>I{3RzV{vrQ} zq%)RZe1tevbnRU&w<14u{;93<_PP!J&@P*Sh@83hS>>4(=9TIG-NJa*%vn?C2`fpg z;*s*Hr30YI<(oGklBR26`WK@aX%;b2r612eS^>>mO2qnY%M;IFS{(;M$EZ@7tyNZr zp4~RrP6yWatl#ts4jne74q(`~!~SZmv}HDX3W08KXT8MyL4PYx4|7dLUmJT#Z|At= zYpng<#=e@Z1vo4{T1!dnAL4h6Cc6t0$|OVyUx`Mm`n!ax-<;K;HK{ZLmy7N6Pu_)@ zwpT?uPMzc$h9e4Xx!XNcP;wWef=%EZZ)*P-yae^sAJVOYqT8~;!KVnUSsgUa&ysWy zX`k=Y^G?*0%i!EWp1705!cs`2-fI zLVjhyiLD1i5&5VL`YnWgOt~`7ACx4Yj;~k@3s)Vu&+d#x8M0L>xy#ThW1VB`|J0oG zx&^h-#!7Y``%%eK8?8t!e24dy@HtQngz^jti(37>352@oo=027h-jp;JCbDvT4!<2 z-+;;6r=gybc5L61J1k?7M6k^n@?_I#kEUKIRB{S0OIbiQ=xj~=LUgNq4(h!W=xY#% z7rHbG!{m2S)GQ$E;&*qNYV_kh=T>>_F+Bo@tsB+1d=&?poPX|&w~Q-l7QxCTNIgtV z(OiC#LW|tMyYH5#`vqEVbw5oOj_Ccq7#7uXhvfa{3w85V@hGBZY|geR zyHBi7ttjAjVs@YsZ9C!fZ2{cNO0it8v{=<$}d&u;%-!JkTQ|2pM=F-q^L znD0nj%HoIW;yf!>`Nfso6q_Z+!ZVrXI`m)i)>c6mSDygK8dkUROVTv7eZ2(wUYZ&t z5l*Q6<-ECUUk@FJ{dLMIY-)j-7_0j8irUb4)94uFi@G_(^oor5+l~=hEH)?v8}1kS zXWzjQsEIs3t2tRaV^rxLH-2}H8$EBI)ZWZT)>&2R#gn6a!*t&C-$XK|_wA!X%zrMp zE!78+51Z8{o>V@09=}(AZgng(cUeE++R0$roG218m=tNLSp)p0KalTvA#;Hyx`M@= zM52w{|1Ed{KQX8e{r?p;St4`*CgHH)KKJbc_kus16P#nVy4$HOY?e3A&^BMuQ5XHW za^Uj0{Y2`FB!;7uZy4=a@UCm}o`xv<_9(Pb{QyBJ29jn!^}6TLTN0>nQm+?MEt)U0rOiQm zzk6~5ODHqbjhM;9yk8Pu(R`ws7#AW$@O&B@aC1$9rkfpAgxac3-2RQ}Xi50zbQ#eb z_>Tgi-8pEebbdw)_|YY>Rv_hEHZizjcd9cy?rS<32$G>Gx}SH4Ei>fF{G|6}c|p?d z(w}fOPM+pq?}Fa*KiL{5Fdo==>agc+?(({DX{F*1J24!}io!WX;#J#>~uCW z_3N$@4YK7PIEJP$Zt6MwcC;8kjy=7Zq)vXDw0sj`5iKqPr=F^fdc)r+v$f>DCH z<2o6Sp%A zKc?%QE0a|f7z_A{stn;Ltz4&?4ml+Se4 z6g@DAt2r_}mTw3Y;fT{T)zHf!`7V+K_EC(K&LyFFTQ4|*b{Xzs?&JLi5tloKsf z2=jC~m#b7QOE*@oR#6c7H)uT#iVZVeF$|Fz@VxB2>SbfG%9bW(?q0Dc+zedg6&p+PUYNLQTrKV|)ypWwRdolSo3*<%Y?|FqU%nAv z5!LMD4f}{^Wu4G69_D%WMR7;WIMeE?0yjNKUJ$Fdom8s-)NvGT3cUK(ymZJv#Hh#M za)UnIz(VgQ!P7BAujd@9y^{PTw5$Xx{7~nv^hV4Hd5XOw^UDA?PAX^mVh9f;Y+IRT zLPFmK!kCx$$jSKya{POUb=v~`+0_KO$IJ$qfs%p#Z}7Q$TZ^qsd30L<=4?wAXyJO) zcCl1CHNc=yT5gZrn9ipLt;pc`xAx)hnxmt9SE|uvzBf7Og{5xbSMJSAm^4BGau}Ex zo%e3VX41N=SdcSfKwDYzXz+6~?HA!1@a9kvI*&tOsA|HxGSZX_m9--r%x;a{M z)x=jxT*_oOS6ulG6EcvgSc?-~s-Z&|>732eeDG9mA$T3g-D}07&o%3zIksT>U|E#wAaG{ z8{OUq1ajxyRAhH9AQNeAsh)~G!uNFjR9^xoZCsBIq`dD}cX{A6^vbP1a^bei^h+DS zIj+W??{Y6fn!jIT=dD{5*TSnq zjVChWFDu{}NqopeZpbCB2>S%V>@-&A<6g^k$$k<`;yPMjJf_{yy=@sEx2yO5~cBe0vUtS23B+i+oOKQenB@~XKS{94fj%+ z0Lgq+5}g;M_KbL55aHKJsAEYE0QQH&BE>EwVQc>*_WXCck|$848@an;BuThgGIPYY>SNRsm??+X!ESKhmbPRwjRSh7t#@NY4D~9hFuun^(l^8S|KU-(t;TF4(}8`Bs}M!efqTL z0RuZNl{_|`XOzMt;pbZxQ0~_BGYswqQ((UQ&RNm%U@Pu0La4}C?&o%Ow40U+^vUg* zq^o;=q)Vi~RO@QTy66p9!|jBqtB^-@OWI)hJ^hVK)o6?cnslRA%jqLWuh-h@Z(xGc z_p^Hj2O%sq+Em(b0YJqOuo^;HjLb*|bO+pqwWE%T{?nN*zrLanweSwVd^FmG zyZ_&M<|i;OO#2k@-@->h3sl)r;6G>7BMwwgv{7<4{MC|*0gZ3Hs*&?)o80h_-C|jy zwcIcj%OkVAWCC3jNe?uLZ>F}fx)A$afWjy#Td}>JjI|Pl~Jrz{2 zM%oiZ;6rhTCO1}+rWqUA9)3*wb>n?}3VksfREQR+=HpU%5$}~MZUMtu57QWJH*O(5 ztBXsHiSOaA!Xi%%WbL^I{x%tz1>OJDu1z$5^E>g!U*``*m8ZW+IeG!d85+A5b6`Bi z5=i7Ll zaGG@uCK5u*0vac}3G2I1OnA0XMJsQfJxL@EWGh;WBl>XEjy3Wu&qx8-phegoGMsaoAhggBzlLshJg+I!^2eZ}y#C1Q>nQc>O zKo7LR)zIx{7#DZAbqhsbKKMCAwEEzimrRFyna3yH1)VP9j&l{`+z2YrRt|ms*+A&< zicN1xAy{MK5Eb<}jAuJ;y<~fYb9R=;`B%k=7ie(`E$b`AnLC{kh7B1%Yy{hqe~5Zw zwrBm(Px7Fh+Q-QTxSWaZXRYq8BP<3IB;(9WLqv5Drx3X4S+uK;#A@Ib8#j83sYBgV`gdS7PghzAdv7al4KC|6A9;wiv{bQY+?O z&Y=0Wr&`a`vH^jIE0T_=49jS}uO2ICQeD|!I@M8U>4J}OS+-TZb||ECv3IdCv!mN# z@kf!1I=k^J_d;fbh-pMy(^7L%FzS*BguUwd7sox@2zzuMqmp&{Nn--@&;=*Dr;q(aY zC?eq&D4%wAeg5O_rTd7Y{rj4dQ`%a?vw3b-fJ5O(&gvbPGLs=Zed0@}LtLlS>sr{9 zOLtjNnN&5k+?kPc7L^aI&gynALbs_+FXJv!J_y;M@~4|v_=8uBG|&yRS^gLUXr4xh zOYocnLSm>DPD91(iZszUeMQoWtU=0da2uwKLxAd=d~)e&w^=5$*!_1Vf>>V#QnU{V zmC&3^<`FYLf&o=>2v$9j+8IXPA$RWo!KM6vGFAs08{b1LPXzAu%)W@#z9iuK3>o)7 zAuKXj*&&j{*(a>%u3Q_*I`wJzer_7j&Vdv6YD{SA_o!FHzz0SrNrJ3gMG2}xVxe32 zre%82$3BODpo|hbPAe=c)_6NiOMS$Q;#$=<6CF6kEHgoc>Zav%Vsx~FG7>r(*weS`AhzCm4fGy znTB@g-w*P&6!p9K6`0biE$@dfZ8`1#{O>`#d5i>t@C+IY62!iEfqvAh_SI?W`|<-l zv6vG0*^S5BF$bffV%m)*rnrThBpdXI>wz|Dnedo1aS8ASVi}vqo(_{UDQf{5&M_;m z!RFj8nfO`Dj~v|cloF&&*1TcmR7&%4Tj!eYhV*8>!_kNW#w=n45NNplaDXn`{v|^Q z?Migc5Na}9zJAZ~Q$=9*Hd4qABoBFHY`=WexThXxXkbw!%;sqQ)45__8XokXJ%;w4 zt4)+}14^oiymjb>uj^c`!W*y1=_O62>BTVkNzB+^tn3-BoS%IN>0=KhLti-)b61@* z;~dzA`}h>eCi8HFI+=kHa1XyHNg|Hs0P(OM+M4d|UKJ{afb*ja|K2j$I=(TQWg+3o zm_I*54*{z-$nL!x|5W0`FLeVDaSjbJ#EXNyh@Eb=V%!0>ytj;^Kc^$+7*Bm&ud}{k2IVaLh+1GMuL?)Db~RMx)v}yV&DS3 zU86Uh*3-__Is>87Jl3(Up)n6#h`@hg8iC79E%l@j4zK)F)(78C!No{IEjx2(k>a&j z8MfG2UrI<~LU*9=eYKD#CezRU-PfPniF>@O!n`lJsryhLEV$;O^tCT4foYTxcD4Pp z`I=qmUCPr;y?H2iw{nPD-o*`HKewAAcO7vX_;NQP6j$E4%Z}%-tuIau3}1KI%~r|# zNc{@x@OKxvw5M6 zr8H#oi9fv84KWl`l%LY&YVVWWMS)$TC!o86*rnZ4x$;pJNvxDjHl-KWLG6VluqjFI zu%AaK$CkWKxaXFJxgX**SxHV`_ypNHJkfjQ&}mz~l#YlFdV1-nL- zTL_1ztk+ILI9DnC^?u=yb9*|dEmwaIYHzYs0=ZR@g(G%0s}yPAuLede^uPGP)wFek zdcA!wJ^bRmHrCk52OhH7_#2KhU%snBP5=Vd;(t&<8?)1BRA-p?_w1zC3amE9G;sL2 z0rJV;l@>Sd200U)+FSE@m3tXcss>;;Qe?Px%aKWL9MbLRk}4%zYPc!$`QOlY%ne** z-p|>yG*mo$YcJl<-~`w6>`&GkJKZwhzsFaRvqmuF+kW@CXkVKcJK&#GfZfdd6`k~5 zQc0Fb6)!qhz0PMf#B_NdcRAdZh3F@8@-!and+r}V-e=ARxBY@?ktoB(zxbjqHF*yP z&r1*El-ZS^{Ycidk5HYGA}*>o;NlMEd)ei8cdM0{}cbRhUz6U$;GDmfsJD^-dLw;XPBFA zc+Bd8UOUZ&%gc2g28rnRDF+m<17|fZhn+9kA-lmABDZUurmJ;Z!e!ASU2c4D#<$tX z=h@)?Fz@xxx$Yro8g2IH-5vgm<3%Ocko7-S0B3ctb3@Ss>eNammHX#m+B>sS?p|H> z&uPWzw94-Vn{IhQO1vRo`pkv`=K#U4iln2UW$Q0i8q9Q#=zk_0Ffyzy6aO43rhRlC z5V2s-IiyGB-*H_1m$JxQJtcO~!;{*ir8*c=cw?G#zw=Z4o%!Uw+bd@6VP_@xPcGjO zasH(@2+m?=(1(UXrNsZ7Wp03s4K^CPI*(`6hPxWo(2XR~$YV6;e8MAvkc;btOTI7;ERg;$yijL*n)+m;*jPfZEx!<(*on@_*B>C-+WCdAL`lP?;96ew+M2(k>A zjvUuAbr+?__V6pxFg#pAC}<(lMJlS=smxSzI_qiyi~n}*pw7dqgnQdvxL@K|r@hEOF3FihF<*H+ zPh}FXNN#aMfSGq zAUD9(@k1DhimH+Jd*iJ0fvyCtf|Qz=FdG(6?)mAyC{f|msjJX&WYtH2pLpYM;kZj8 zDXg*HclX~<5c{B5m^}{Z(>N?<)OYax1-~g6hu#r2HJNsxsmauAhlF_Pm~ZlTpEg`Mu?$y+&MehW z;L}RV2(qb$zm{BaRv1#06Xds|hfNW%-91KSEm#4v-@O5x2|aYTLF4 zJ;X{L?HBu`bDF;)6DQ!H&9h=~6(?Q!l-$PJIRsLqmXAdZ&A1f!9N4;)h-CPv)xquyEYyg1pA+^6~VzIMmb2tLvdq>($NWOj&4M9Vk(xP3OAAiKMS9NdIBjV(^e_UmbHA&S5Es?V~7C zccvE_>%+W1-Gp;<^HR6nMOJs+_~cneTQBHEsX?h~W8-+EL~sV7L{aWb)-Xh?RbT2r z-gk6b*@m`M^_+IzlxA2VmWm}8bgVM)gTaD`T4{Tj`IbtBb@kR^p5QNaWUEArwh)nn z1kpIC`Dj_l5$q#p0&gSVz~6ATL$RbSxRVu{=j-Y`WobqNedm6LHeJBf)@}ykgXT)+ z(7CI!k|s@$5O$EJnWTF_6?_#gQSS>QV2bd{mMuKEj9X;*mA)Dcy)IXgme7ConUQ+( zN^l5|a}%P~X(4I7>g~XU)T+`HEYiCtVER2~ko}>~sYa^XG}JZJPn$$1*h|8GElFb7%@c#|+M1GVCY6x+eMv?<*$jOSdA z4G`_rtHcS*lZ(w?*ptG&)vaSO`P`9BxF~(>0TqCK;OO!}2eMGJw4eVuOLu1p>SqDb(=TjJzkrdO zjQbJt>AR`R@U&Z~&+eSp-)lc{vYN7YLQ$4aaQv_egBBB(84I;A9-0{h-CkG?&4jRU z<_8a+Nt5X1lJiEoa-${e*_UVxD~!!)zsVJzAyYu9-0MpuQ= zjgwv??Af_#%85ooP%SE$V{vc=K3O5T)Y&!PSK5+IGmZ*g+~%3aX#|?oJMKejHpZ?r zcyx6ZN~a|nAig43l_c$m?&)`?BFUt#oqpKTu1Rd5IvH#woR+xQ?$X7m2_Juw)*FGp z(y)6wCAtgO{jD~*;C}euYu*C0M;rAL*)v2uBvw)ZK|IULyrOJd}W&&|7#CJdjbO#6+4r^ZEx{?MuAq zB@K?^gHReI`|wqmcgF7BT~h}tdf0-o=yotsCj~QGs~`vGVOA$(58+Xfke%5h_-4HV zR)fm|tfm!qyXGKTp`B+J)1~|tiqT#NoJC%ddICxJ6EV*X5&SsgEJ@}RM+2w)?i!TQB1N_-vPwx>KB9izGfgtd&l1 z;(y-$;g>hSeIlSx#1qPh^A-WsIdxyKcwb~=E-TQgiETr8B>y)5kyGkPmi#RiX1DHb zd%>)iZWR7<&~ILd1SNNVYq~VkK$Y9^G~bDf%MQFGKAVK%-IG3Txvi%i(qWDji6g0z zvcQEWXFMNXW@Reyrc*Cl!~j9Zv4J#8v9a21WvDp(K+3aYjcoO`cTgl_iL*fyU#JdfH-~aU>sPg1Hy)wZnTBa?D^>PTnfoo7@ zA>i!*fYMQlvb&NOeI}f&%?9R*D@rDxl({vVrBv+tOf0Xp=fUH(BDVyA%tRo~Lye z=6Jbq1(1&P`+6X{t4#)Zg4YRiPms?LO!lpaXMPtJTN<`H{-tmlrYig`(T*CU@*p*88h?q{r>Lzy8k=Zb^bcn`&{R|&+GYo zJ)XZ`$b2)ifDNh+s^mfzs_mg$L2|irGT$JLgo{HWZQ&UsQs2nSEZ4|7DJL~=@b9wv z^2@>;pz!O1@HGY@PG$(=q%<@llIT(SD&cCMN&v^YEKE4pmZ~XA=Un7b$Uwq?N@dvx-fBCWLJ1wmtwVi1`N(bkakH&ZS-%mrYFoI zz!hl`w8tX)j6XQ)h|4gvU_i;t=Bd)pF8K8(cwboE=o!q}Usjdz@14q=DrdN3T9Xd6 z8H~G1fzK&ac|p8lfK8H<@|<0um7A4o1Yp;AbmI?H*L1UdN`#|AV^9nuxaCBk5J?gzD2+ z4I;XgP2lFdkI(~f6~Y>Ii>MrnXpP%(;#gJ2sqvti#M%SVd_lQA>OqL_Tszj5p`>*v zH+~U2{JXD4TN;yw_f&o8`{ORzNt=H6;3n3DUxxcfP94aM+&l^iIk?SDl$Cn0$(88clz`PwZhxHx zGku8_l>;{}eq>m^=;y{kjoQGlKtxI=>dq4UVG=435gV=EgM!HoH;&4#KAR)B4iji( zeI?*EwWunY+^=b`w=8xI8MS%iHvfStNom4*bo=1TN33dkO}ngp+}Uz$gc5?&pW}$6 z5v5aZqNO7t%yWMR=y!2aCG{^6cDdW<`?nqp5IjW4Z7*IB0!qRkv>b~XVE@cB3|twOI! zrd4_}^j!W?^DBHKB4w-*)kiin@-SQ`|IODx9!v5A2Hr64TPXwx){6oD5LYu-PJWnI zs-0Hj!@XS|*yZ2@icuZCA5d!V#Xqk7+0RLM1P=aS0k%St%|(+FrUNG(CMb=$NPd4h zfqO5jUw7S3Z2!hlugo7vzo&G(rqpw32p9grd%>d-@laZrUzi!HBQP`Y$L$;skzGri z2_Nwl9|>9LCzXr_mGlsqw(5qhRL#?9KF=x;f3Y@ZxYYE3g?`Tw-8Lo+StIvHb`d?q zcZY1q3&rNu+}e_Ieq>SM_X0dTu%3}%>8LgMqM}I87#M<={AqG=tD#D*_)W1_Yte;4 zb+KNvEbIW@^l+R<_GY=K-I7{0WZqzwxoxYk_=?rgvg+ z*vTnBGlJ-Y9t0l2#;zn(8UZk3?SLBZ z#qj-!&9#%Yf7=aOShP^I&8b|aV?G&k>N6HiXj^fhNn`xiB`a!y;B(|a&v-yy4GUoy zX8oc+S(;Ywake*YjCs6(AJ*22+5JSGBzHee;Z~3JRR4K@OG-HeO&lqUkmVuSFLfP% z{Te~3a#jRYD-(k+f5<6yb37SA7mJMqxRPqIK`T1eB|V z`ymn?8j$lXL4&^8+D9hJ455-*XZ|WRMAVQb*R_MO*$y!QXo`Ko+MVKn&wNFw{X{ah&}R+g;`|Z?Wbil zg2LyEzP9y!cevptM$qg^QtQ830DvqA024mi{m34({TB`OtSY41So!Uvt~0iN)~0cTVlxYAOZe^6U+1H%y-T@b zk4_xbYf_}H1@gmGVS`7fv;RZQJAK#wuVAA|mm0o+9gzcY4X6fman#*SX;iq%`u8TX zc+uv?D(}-1K^Ik~46MHD_5B9!-KO-1@H8iJwYi;+U;h{rz_N*57v?ue~O@6ZYZF6)W1`a0y`>SJEid#>Qqv|7#nGzBe7Bl!I|l&mUY`%q?ENJ5FvMH_FDl@vBgNY9 zEPE_d!d)hB{?aC#xj>nLUF{Z@VDxdLh0Z#w6qGma$X}^?m}Gf_U{rKy>LlqzJlM%sb7D;pBy(Gb8&lT`u@4m z7h~s=o|i`Yu!ND|w&9a@?8Bo3oxnuu;&AhjS>2l4pK0yd-`9WP=2UU zf9;~9_P*5{nq++p5w0Rwq5)cYCC&h8_$^Gj4uCd`7CII4PPXKb_}euCT(>737Lr3E ze!?JK8BwmWiVp?|k^0H$a6xRt%x<}``{>#}8~XMqz9oIJZhWMs^>4?uw38`La{- zJu>0z{SZ(8p3wLlM|sC$c29HTpYla+?}VZ%{yXIt4mT>x$l5Gdw;BsFk?42Rtzp9S zLY0cbNX^H;zr9)-Y}6W*9jTKvyw5;5>YMar23;k4l=U9;k=;TM`XR}eYIn8x6|rMh zSEt^`j?Bapw$O?;i;0#4FguAIsc!H`xBaA5l%uxy0;2&=8VZ2?$3}fvwRB~FvL^2} zr|0O@t&M+^9I?3BwEduozVJzSwqp=#FqUL-SIy*iQ)Pv5Ly>OnwPj+Pb;bb$j$cZe z9-F&ffk@+SmHFqJXiXa!qMVpdQKdB71%(VnwU;!J#J{9Miv&bXdw5&Vf&lDUyO&|| zn!7Om3$^8EmFjsE6V^wQ-zy2G+vf&+2u!wsBj8KnY6jo|aPTJnRW4EdaLT=9-B1o| zGtBx#7N&D&njydDh$($f5cU5~8e}EI$JxDJh_bF9mJ6|(Bbq@qJCtnlqeV}=hkQlg zjavSmW?diKY*+keVg^B}3)PUYd^BqXHndZv;M3D&bylA7em~Q;UeGl04{Cm&-7I-b1dxmvK=)4-uyn(m3)XLI^miu4T1#XlC2RnuwMX zM23=qR}c%3dmE=ahqg#l=k-v#|A*0TY7;_Ngsykq-E|H%fbHNnH($N z{>CZlOoJ{cbn}(=>CeuMFoJCiVL*@i{1~_m}m?jZYegNJJh=PK;yv$ROy3YSAe#6@X-fTr*U^X zE`o$C_%qFU<9U{umoAxgoYgz$=sY$oJXo&iArFq(ykH2B*sE&+U~AJ~^P1s%=xs;e zdo8fxooS;*h1}uYx$QT0gXCCWZfM8Y8TNawVjM@7^pb;{zq+V2LW}?FC784{bZ1wD`w z5hu4b7~5*$kf_J^0Mi)Rgi))7A*Fg58!W-ZqnR2WwxE|0M zq%6vY`@Zq+Mcoftk?$D+nJ`%uTL33E%2V0##e)jJ-}>YWQe%os-$Ee1A9q=T1hcSC z9(@6D(e)K0$(IhnX=&p1?CHRtI4ldTVFz#4^{kgQ(tQT$HFh}4UTR- z3cX|eA{RNBFW5#1bgY8r7Cxo@+0ePQW-9C+8rgemqdVxY?xeSc;eglLuWfMCu&$S` z{&`yG+lib6vZPefm!L(KW`d>hZXx9boG7%TUPPeRl1u{RQ1%vE-5DU`(jC$DH19#5 zOOW&0Ii0AzXEvC@!G9;OhB}qGW1B)KhE=Ai?;Pn>dk+DUmrL@PQ)Ix-gtcJkCeG6;&L=tSFk83Te4`*g zg1vf4{aWh*+eYgJTH}oXy2m=04h_$ZO;&yn(N?`V?KiJ;ADAYfJ!maCmr|3h~N6b!6>E2Dr(4sL{zlL|Du@K+=9kmSPjQ-o-q}+k@@=?AS1J<{CIHSHQ zb-_q9=0T|X4{xKsa1R?M9f1hwX6P?m@>KY!Lh&FVl)Ysm;1+Q<-!_Tfob@Ug$99Z+ z*7wcnZkYOA^Yb$_iBy@7;|Wx0_%1e|zqHsy3L+R#q8;-wI5|KGUI8->{2W5Xgwz2- zoV>#~T!H-Ol==cTO60z4g1CSAhA$K<9aizW{M`$R^O1B4cx-6muR73Dv^hE46*AHu zhVDd$@-?g;KU~QkMNw851=P(+=v)l-vffn55s1}Ym$etwO;;lCsonr(>-8TfPtBfH zt{cAmBHs0^;MRrVz?)Rm&Cdjn_}#a|xWoO=T}2M zj^iad*`Cs+^fG=Lx4$>KaqUQT+Pa&5MWy01-EF7p`_=HQ7i*q=&xlSi64u+;!#vCP zwozSrg8*K%f_F)0KqfIP@Zo2El{WQ*iBk4^2CvLRlOOYq!%KfS$P_TI_@_mCjmO=h zB>fTWo^9eKv}@uWMwryR2JUW@+Q)oCg=;ceT}5A!ug~b#8Wz#X-YF*1tZ1e27pV4_ z6>~+gLUuGX4}5qth8{o@9VO?O{p|D0^{Q^x3XGq-IsxiD-rR{|@J>8<@ur|AscX{s z81bow!6PD2EHkLc1T27EBg3^@A8?vmblJ7MjjXx5TJ?>djk6I6N2wwv-XE9^kl=$3 zSqhFf+mU+2%nai;>!;(TO(P&LBPg^ADg)KV;7=~Xy2}o$^t8cIvPSFwAqGL27|P-! z&WIO7V!&n4`ceMevp~{`6)>>TAsV{cc&h=j|iaD?MEZ0TQVy)x80 zIJO>k6_>N&BG=t)7#k641!N-^&n;tzMi}|mND9V7aNyVXPVqR#+;J^znj)rIAtRKa z?yWzqc>&VsNps7qqKOlE4WD$G@Qaz0YpeAz8%iuCh6q%PE0c;f>ToFfnfSGqSx}}UX!R;gYZdHi%Bt)#`&&{ez zzs7hk*1Sm7mn0n{GS%luCTL`ak!^yz?Wfy={YeDx~H*%cWp8|Oe(e*RKM{$IxX;iGbrWrMyX?HFc&gXihP;}Y`Vy9r#i@9s)5T2 ze?AdcMw)aE9{LUS|_V2fegpp6J5}Ycw?}>GkHQoS*=R7Gh(QeJouD$aT`W0j0 z4l6W;w5`+W(GXL+;k3`Ro9h|wEvsr@AfM8m9{gK?{%ceJ_yR7uJu96kJp9f=v%UPo zG1qVHWsl;XMCQgEdsSn7z8MYYmm4lq68{k!-h1GCAMfluhDrPj7-?M!7syiXzJh&v zjGzx@>=0c5xHOT2cPHlW4lS>q)DXV$(%!Y)_U4y8#z*>pD45G6c-T2fZ3}g&+RT6= zAymkmS%X6>f|;9fg;9e*lrHHP_3aqWXn<8DO=_9!5@fbnv~q6x+4wMZ?|<<<>q{sCtmRvKkIAyy{_sD51ho?T%VPdmoLm=R(Dd zc1>8;FVDD_M4)TgbC$W4s%SNqjk{5rwv(^3x4v4~)@az`F*C4^Xs=M_^_B{Qe+;3>0l&T}Ky|1#5e(LeUj#z5Jyo^t86(X^a^W z-Tv7f@H&?97xenrhdsEJTjKCY7y&*{AkB({o*pmnkG7vN&Hr7h$NRK zJ%MSXM;>TG8GzN?^#~8%pHFv?JTkJB%c-a&Bx?@?97mKo30c^WzuYTY)gBHDF1VfR zQQ!{;=nqHKUa!QOQ}|Z*qkOkd?}LAxNxo0sPYrEWIB`bwJzeQ_h|m4sEj(VJoBTfm zvP>Ey9kIQ~1<}!7dYmLP5l|a>O$@32g)Gl5=gx$tG`<|%=Pz@M(KS^Fi3XrI75ji0 z5jAPRc*Fm2Lck)TNcCIY1-!|q;7LJ0=o7|2O|2woS!Dgsb=ouQSbE{BnUUAGP<6^} zv06@NRx4Y+mi-eA-VED_2R(+ARwnpTU5x3{C)JyzyC>hL{O6*gj_pHr4)phXQy`HZ zzXTo&0_s%Ii?v!od{XxlQn*dsLiYRVymYvq?ppa&J)x~kTS-*mpyAj2kAwz8odq5w zPH}h^k&@D@5`2#kj;Ve-5Q#SeKnb!HPnO;;R5>>0Jk0RKgUf{1Gt5oa+n&MfEb?9%p!HAL(m45NmjH1E~h(P;IEq8J4LC*&zwZMB(}$LCrIY z3eN2Y(tJgn1BaHr3~@#6)F%;ZNQxel9&CZn?fIYN(_eQ9wRRuh$-E-d-SnLh{x3_% z)K<0CkVnC=^F(v@v%loUPTO8?@26ezI!Y3ukp2d=qB*CPSgp!#a?()a@7Nm2)jf-W zrLQ?70=bC3dUHJuDI|wklRr*3;2$a>|C%@;lMt zbZWSY%a7nM8e7WU_ZqOv$%I}fywtfctiKWJH78ihgs3hCrHO6LdW)u4-avoDnhmki zwq)TnVb=t=I8|kr)HkXo4^Z2SsB+7ch}GOflP7W~aVV~m27Qyo>?!>#4rs-TF)#8RHf`@x(JxtMV%eBlT zyTvik$NbE8hjnf~e={$39=t*(LBCeW411q8QQt!!C_8zbaQZ$JZZDqYs4h`eX`xI^ z?C#n*pImHdYz!L@dh{=1Ut>O4-5c^v)+0SpKdO~*_SES!o?^joj3y8? z1HO{r!Ss9QmAmdVtb_QwpPFCv!xcD8$>az~SXXsWO;`U!)TP?H$-z6Tz4;qrT6b%z z{n}z0BLF|s@jFPJbZo2er(*V)&P0_&e9|61^gg+j0ZG)O8oQU^>wXCdm z-WVvs{vjvvt=iIsL2p$Dj(id)Ud4w^d%TMOqdZ4Ef6&kpAOb2Qo|&Fn!v8E|wij?R zi~!mMd9QWq0`jt)xOcgb>BzPa!uWek@&Wd(XpaYWuT|?FSpU$e=@OP9 zY~9O3B4k%NE>%P+GI6&uCfLl++Ss0pqi0l%%7M~61wh`2pm=` zljV;G!O=Q7IJu@3RuHbnVAjeY<^&awE@s8Pn#?cs5RveJlm`1VBxqL@{?rTLWsi{+ zi4Cr}c<5Xy>)N(SV5PvV_)ye`uE4!|VUEuebC0p>=OX1j?S!^!49|ACMP3{qG0Cz1 zLg53|$*;E;_W~aN$QcB5(;}F+CJz)3Ti5kYPE(mfU(#-_%DTc>MgpZZ;2u8RmD|?% z3NJ64^7J1YNN1VHjHGJ-n)XK8q@}srvlgbc!i3zwDm9r6Y@e{JREE~s<>|FZ7#>v+gYd^cibDd`d{ zX(WR|T8*bg`jaO~ufTM=%#Yy9Xbt|>#5OG9Ch@Lt#g|BzYNmtB$ak2TqQPq1)*XOk@taSPs zv|2sUK5^G@*s^$TM^9K1N^;Z1LjCO!yC|ma@rdNA^96EUWT&wBs!e1NpD^&7EclzE zO&RqweY$ug_=>hobMJG%6HZO_NA@<-8lG9ljK>~AhbiRCo?cq~H`^8bvNGGea?D7S zG@QB5&hwJRWHv+p*pfHqUGv52ZLtsx(Q|M1?n!g5A zy#m1SB+`p$;y^h{cgqqpZRr~o!MgrNIJYIzWLdMVv5ya=X0eMDmR=!jqcWAGBmF7K z=`i|#N|=ymRk@}B`-K;|t3GM_kcxY#V3gW{zv#Om?^`EZm(i(5bwc#`Jf0D{^!Ee5 z|Gko(4`eqOm-mC|TgS+^YU%f##|xZ64yVyiAo~*?jjBa)nd=8!LhySSDb52Ep`yzS z)3-0ZELVzd4Rf8oKf~T2#M#Mt{W?E=Y<7o;p3W|>P($2T5yq*5Y>;vR8Q|3^q(+2)bU&b zXy?v1DIwWnUb{&T*S#l|W#`sG{FT&AWP3nsd~TgX8vb z;kj+{U&!61%g2*(jk$SMi>kiO$mCe+RyLcsZ>cA$5|mc`a>;F=w+(>3GYW3I?lr$HKORr_5cLs#@egfZJW#-*VaJ`ur5>u0tY6=j(So_Q` z)nECLChE&R0jC)Lp*ZRRV}z>&rhpmaq_6bsys;4xKUrqpjBp5KadczZ@lYOjS7#ll z$5-evddW#bjClWwvIF{sXmsq6z$)Wn%LO~QZ66^&cvtKnSc>&ZLhpm>yW5W%I@@Qy zv;30z6EsRaw>>E5E-a|^lk3PqHs;Q_dev2Qx>*m=HzgU>7p?#gs?>CJ>!i-J}!NK8G#lO)IEv&f&C(d`xejc_-)`j%8vJN}~g zGjvGE@H@WkTy((Pf7GT8xypvxwr4HPE#h|^Z9$u4N3{~yCKi?F*h`}xde(CY^Kfeq z!x`@)3(wrxdfVSjB>jv8Y5@mx^6Stf>YBfH324FLK ztwB|050Y1m637OR)s7oyzp^Py5N5_y=u^ zwL-#?wo>(Np1|w#$;eKFIT5C#5p?P;hSfWv83AffM~+ezQzKSs<^j+*PqmdLefnya z91~Tor!$^RWa^Xg3le)JaT8fyduD|8oLRNEBf!666ZO{}`rLh+VJAG}db=Kea|#2P z?KWsW*McezuVk_zT-|AfohHEMb`z|=$C0k^hmz3Oqe=FR^9&qC{e!-Zt6{~L0~Xi` z!Z_cEqdW{3;E!(Zr2fn~4eIm3EAF*d?6L&k2<rh*QBDCUG`T9(!-^nRsVV|bF4eY zc6xt4h`z8ZlcV_+5viz_`Zr5~!n=0o;Q$y)OvHqzw#SZCH-udC(3^o8B@NGKsg#88iLGcY)aA@E>epBe|ze8)Y+J^3rWVTRRy z>E{r9h^&rbl@)t2J=d8l`Qsc9#nh}PO&D-Ik-*Yh)cPW0|JNgZQ_5?%W}-W+xA;{0;&P$wN~GscG-g0)->#&goPJEMON)!$E4XYx(O=N zo;JYPBRBT)c*=7fny3#(_3+YCZ-HhpD`s-_iMttr?#WyNywd>P9@1R>ZQFjO@dkkzrI!wVW*Gx{G&6X-+n{{Wy`9asIRf8; zv<^a*{}W1RG{1zx&6V$E%UF~vU`vkGZ=0`?YR*j4Om5l+9vZolDA!OEWadha1PJ#! zAK{SLn5qgc8g~WO!y2D4-0#Q&(dsm-WBP5@2oaQLLe5@hX$2_ZXw`Ly)i-+-duJK6QBotDb-Ec(eG1MesH6CU8 zFt-3`#B>XxJDafoNA_HR7&7|Jc!28tC>;Lb6i);IRd;A}K(XTM#ZTVFlnM;s?apoZ z=YKu4j>&k$Saat0`(l!_=d2_FgEzLn%AIGAY-~T-MKIISY3xDR@sy z_t=eo58gFBd!Uu;ou~kvJLlDgtGP8|*>t9LoEbgcR-OnHRF3nkn7jqa9{qiP`g+T- zT`QZ)XJQ1&g$G1Kb@<;Tvh|E*1*0sC)vFy9)2L>4|}4ap%&z+!CrZA9(tVc z3fbI)ZsAftOWqNCHV&uyC z1ZVDY<8b=viL`;uR)^z}UlelV1F|E~HsCV(>cfx02ns=hM)9FA=AI$TTM=_ zQv-2_)d4Np!zml9%3|NB7eZ|s1`?1#DUyB{mLuc{=`FVAhJ3#FS+8nSZ3;*OesUZr?H zx?0~mwJ9{Vl7Q1fOnoK1IczzW2^A#|uGHJQN-T^ts8G7oOU2>OaXol{p7oAKDBOD) z_uyX6wUhf$P zweR*>M42f1$*fJ=cJumUPzAc&B+y3#G{j`11%iL%$1avf>^Jo{xLJVsS^a9it@Y6@ zWkDqV#~?i5y>SBJ8p7mZ1;}+$W@=ek_E9u$Wjmqz>rsm7jRSOFycPIcZ>!w8=s=x^ zr$9R3lJAE_;uAGpXqI|oeX9-r8SU{SZ3&No`~w7KB2+Q=)sUi6nykmfIdO%OQ-45G z)h?4g+o*I2E7qGn#K(1BS@lHG<1l$TVlJXF$Lj{pWSx5n5t(+)(7a6MG>>GQP|VEs zl<-^@;5ARUN3U+iUWDXmk&~Kd65)^gauwlb_KJwhMS}akw8t%*;rg#J#&oTwZvlx1 zrFWDZ$SH~TJFQ}ycxXOyF#50Id^&7q1OF6eCGw2}D~jQb-dsG&RUWuEr$l{D@~ zSb=&UXf?e*yZ7zIUI}qgg0;)D{CgOBaJe1a9!`a3F`-Y|Jv1x9`{-PA$otam$2+#`@UNxNTvdEe4_b+2U0?qSk>C;Yl*1Bc{d z{?Y~R5UJuc%|q&Y<{})@Tp)J^^6(_qr`6Cq`}M+0RXlh8UXYWBr`5*$%IDIf=*!y) zjL%+_y`>bsH;jdihq1j(@teFu{?F4vNU2CKmi03eDt6R#j&!Fx`LbYj2+xA=1>E$* zI9bq)d@A8%1!(7w6~3Z#U#DgDIIXQCiF^+%eeA0<&9y7PBetgx+*>O3k5`(s7wvjO z9fVffls~hya{6awIA8FXL}6FF9DD%pHd=#GGaJn zi$$SNOKF(dSD<9>D^XgrqCrc4kWN*th?HBQ^#u~bIu#Nj&Yk-*i9AsZhcPo;^v-^G z$2BmRHqmZt$h--$MvJ3dncm~SrEXt-{2d)ky=~tHb2_)o^B-TweO>H965y1)QLs27@K{+|8nBN(~D}+qNhRggx?>6Mdtl3v?PAUxQ^JpM^$y1yAsplG5TOkB+7C#~=27c0Z%cF$72(RL;zU{Nc0;&v?7uqQ-kekGXLfDV49 ze5r!xh2=OP%2Rb;vcgH_IfQ%{lX3C=BQ*!6dXKrzvI}d@xunn8_(=VH{SXSdvc88!IoNds|6%7x;u@# zcJ5O|ogDE}C%XLd@$U-)FVr;YjC)7W&>_an)4eD{5}71iv0HJZ2rw1yqs@x@5`3$gPlGcNi_ z<wr7t9F~yvuW@-Yax2 z?NpSUiGcu};phnRNp))5v0CR*{rum;*2L6yQBm5bV*|F}wo+3G3B)@}-_=;u6P139 zL;k9x5@o`+(wH2s2)lE4);w}YI3d6AGWr;*r)K2r5p^Un2~r@OqV^#G zv~hG$!t`Iq5&))kM+v6u;ZPopPv22R;4O`g%0iEFt74A6@r?l7dfxfEI5=Yw4N_(?sy|mm* z-n!Rkaa*c`fm;1k?d>eRm8}HcKfnfDXMk$?cX3&_$p{Mp|Fg7rDzNJ-g zXJSjA{BJci4?zw80iv!K-wDnw13p+I*(4qACaa$p$zQLQKhvvpC!Z0(i1qBszg&+G zXlc4Hc!5?H0iyU!x|BPk{u1YH@2$%b)$}WE=85u1Z|^FDXAr>p+M?pF!Q#=lvYh9& z4S&JAMB~7@j8L5>b#;E;SfbKl*OoGC&P1tnPf>A;IJfmDhWvddw2iIL&>deF9vMJf zPoTQxr3H%G5^ljHB@-GKz`qc+v!S1oeB`}Ydj+Y>EAUi_rvje(NDYEymRanejR@GP zwVv5MHu%vdvqS=9?=2AV%fTKS^U5Z#TUKB_?PJkLBZ}(2w|BHW>QdhUIez)Q*KD~w zsY&6kE&8Y1GF!I*ZV0P20Kjg>ttqW}&O#HUM9TnjL<2E;X&0w;zlwZPMRUiDi((~t0LiE?R zSI1W?5GMDQ6!C9VFYv`2tp`RQy#oEDF&jLhdM;`OIvZ;x4J={z7VF_f*8g}?G}U`N z`EKV4g#WW+>(OBHwIk2Urr!{NEOxTVKCVw%T zdUIZ0FW*{w@gl}Q-1piG4iux~>N}m5<_Y)4Cpr=~b>>#$J3B2;14?GOIAu<3Vx&_H z(E(!;?;<#HoE{Xyl`IezY4DZi>kms&Xl3td{s7&Zj-Q-oHBs+WM2a5Lwtm~j%8Pxm zh3%G(Hso$y1bx2^`h@iE9J$?m^Kj==Ohjiz>%xoS`8+rvXga3^X3*EdB$0d8ymlz- zFZdLr()L(q!-tzVP0SiF^w)ta}U{eNZn$#2?8!$Iai+%Ls(j3X{QWanL8T_cRPbPy!l0O zHf_uXLytyNF@Jpi1}ryT73fGtebP@@KIYr`Bc=W4Fa@sDJJ1OG;^_~$svtinJExL4AG8Zh@p z?z<`+G)zT@*w*d*sYgmEiL(ZXUt}XKH;ZYae2UOU{zU7y*F^?ePKI%so88~j)S|`{q(j>Rv*2n*a=AKXC`q`n| z;@RrN^`ZCKM)3Ek@HQuZ$%@?Z8?BSqPz@W9Ntww`k`&~bchr_!keK|helJN`j|4zI zaO&n3JHLNt(0ZPe)2YcabAM8!D=sgZDv5GxYu&epVYGY`3W$=*^KhgzA zJimXO`<{t%_S#P?|0_FN9-6yvM>J?&4*(J}ajQ&$de~d4<{Rg>SUJdYa1P?u^Cla0 zJ(X=pN+}*qhsTWDgzeur;Qp}`y8c&vT-nC?v04z~F~5$ggxEhZvPI+UlF2lZ?;t4V z?DuN6Esah>Zh`P$L98{w4i{r)30y+42* z5;|`eBshVp4tIF8$W4)0snt*T8CHzJ*Adbp%UjnpB|p|;Uh!4Ce`?1_xuen{;yKtu zZh2`F0WWL`A`K&xNgwhY`9B_*Q-ST&48yR#51Tzm`_{IFFHmOL|MQJx3;*55{5vke zmKyXTE?*7j+ru@YtMu}};)PCMA1d;$h@#Ky- z^Bq-w2X04b7L6m^MHVVw2>V{iG%ZzigdAbkdHK>Qu<9G z_x`%JRX`H5BV7iWh=0WXPh^w&8Cc?CKek|KdM?NGywH3l+kX;U}lWC+~Huubhz zxINpdns}OL(1t&Mn$5XdsZRQ#xEIIjA7#Bai0X?-Z>cv6b0eI&U6|!YBUb#BddATq zP?ka9nVUewdv;QUdPIWr2ypAYnDF_BRK- zUJsj6Ri7^Xr|+3FowaRfAd;5c(vR<(cleRe5$&K^&7~BQ^>mormxau@Po9~!>uL07 zT=`D4pKke|1<+b_y%*i+bP-SuFynvJ-T!}8rvnMrdoac~V#~pVu5}LF_eU=7!EtWs ziqjviJ(Y&`%OLM^Q9^P~IIQVNg!bP1Z^EQ86ZFS)#U6K^`xkIg8`FvUH{i04yLD$P zNo13Cj*pJ6a5>~_=uCKc?*e@}M{JpOSLp_H>4(oUjIUS-T28!i;22&ck8qV*8`EQx z=s2!o&gcy#yV*Rlns3JP;_Gj(&T}Bn^wd4ET9m?viV<$@R`h=K6|?LtH#GT|yFS@2CUkt}k3_UI-r=bU zZMFD&2vZ;fPuw$5E!(0+4{(bqBboQfVzOV3()<6$e?5w`i6vBpdx9!FQYBWqKL-&$ z42?9(bMyp%?^QHXO32S*hdlkp%}eT!g4Ck>BwX&-{Nxy?0Pk-xuz!BA_7fRYX8a>~s(i=|n_CK#4Swt|HQ;ODBnlh;)=L zB@~e=y|;)orG*Ys5+Fc;00BZ0(rjnS$prbp6ByC++~38V8?fG zw?;x$$(R{x3t7lfp_A;Y^{eG4{2B=MO;vcYTWxts$g$cNyzUfb0s%qALOwi%Hpw*+tI^Yq+td_@+~L1Swp}t zI6xkaYyQzy%(Hf|Es>hS_pvkiLJVnFG#+i9=oljDzEB1&JJ)`5_w-I~!>!c%AQw9t zG2WPUT8(me8BW_vMzs@8eYl2tZ(YqdP&}2fhM{7mcK(zC>#w3>iq9QgNte$AmW5T( z^)RMyI^Q4yVAcvuX$}R8J>&BOW@`t3V(l{rwxnmn;IDGbJW)pItoc~<%-gx1^2=Q^ z?%t!oAHs(tsT;&O88hq6vL(uP7n~+v?xC1en-h`y(^(RK_sMdoK!s zEVSo)*&Z!pR(Sa28a@l!e|Q}y5`}BNDN5{|5%le<5a01nyOm=lpleP2ui@gSrJr?q z*of79mmCF*z4Hy5rt~PW{c*0W38g7Vm(g_43L}WkhaNLsOt1Q)a?@R)>QLK9=k`UM zsV3N-;%J>9}q`aG^Wgh6j?4glVvcG)(;nXY$Sg zJ=l_69%Zddjr+-DSUgh^R|SwiG|<%?mxj?Z%FyxC$Y!izNZ$21Qi~l*Z(QMl&J8P0 zZ!$&12N)ndpJbDXP!uFCx@%Sruz)94RH3nNr=%T%8KuoNNWbvUgv|MTAtt=K_fLV6 z0QczRhngyLmyA#L!O%*aNkV^{_utXO3nK@U|F4++ud0y?$W#pT6`$`CjF)ohJEKM8 zd9#>n$fd_H-cUJCz2?Z6lJ2eSU#To_qv`Dg$_v!UvZ3G_?<}Y=Jov(zKmh2yA!O`2 z2*=qkescPLvVp}ByC-)URGzCvU!$LAcLfH$=H%tOpAS5WhZF;Lr`XgehXZc*6$xdU-lZ2T5#_7&|@n;OJG>!1q`?l3pdyl34UydyDqbzA@k-^+nik1DYdn8G7qZe*n5?A9w-Q?H_%| z%(eLghPa!A>9Xi-?EOBZn9dvW(-vndWG5oldd-za_se!qQVq zR5!?k;yMj6++^DKN6xwnqFNwVhYpmS{SkUf=jZ%l5_5$dtBz14)ZBW)SioC#l+vVz z2XO<3IghcTS=-y3%44CNi_;aIke+rDbeB+71V6TYf-CNb_kQ@6x&c`@!qip{>0@a?ll zi@YX7=I0R$!tqILR^i;CbJDtS;K|`Rj{e}^0EnsT*!Jlp*eRg2xjtqdvb<89&kXUZ z=7MGw6#eSXrahrkfi}F%%=PxfBpm1}GhxXqnUmQk8-IK2+*USbPU90DP-uzTRV?$w0iBdU$&)1(mKVq zNLv3KW4h%`XU=V(8VB)~HS1jORDJTcna|%qQRYVY4x(M!3^Ne&Y13|3)dEA=dr>^n z^9~sj)G}%p+5INPV4D_7k)(H}p&w$keBV`ebs9IG)o3r-w8*|QOIpBrir|55ZLB#e z32x!?``CyQQuP@VARX5=w)OmcvGNANkK(%pK8&A5F&jfP4?nMCq3N&CeBVdrsbv>jU{>O<$hN|>n*RWVVMD%zyFaI#5;L$khf;Du__ zj&-WC`-cNnA4r9l+!iWsw{KO~Kx!Y8G6(478o*n(e2$%iXOWJ<`=P>;Nm7xAEBea< z)i%S|*}ZUFnmt9_KH+^mEP1*J^SY1Ho_~pKVv_VJj!JgVfnTW+$BqXTK4K~y5JExV z@jp)3gMVb|YU{4Ej|G0F`meOUg>gQ@SdT7i*n}<4E(kU}>+`SR{^P7>^7jeF zq99i)Pv#vbBZ(9i+$ChdK5u;(Qc-J{=gV~%X|FffEq`&ecZ8j;=o=iBB0vF1~yoXmF>WIz$C~RxOabc#EK+ z%=e_?b9&S#>VuHx!g+vAbV;=?wb6ow+7lY^d*oIHxPtT1HjPE=yY&yf@6gMR59UHH zbZ6S-7sp=`TVHn*SqoNvNBdzz?zsz2yHm1j>x@?V5Z{Vy)>599DLosK*6gsYl} z_84qDgS|2*f_g{peO*%o_PIiTfbVU{kX*lGMSrl^lCZ>g9yBuQieu4d&@1)#!MFB~ zRoH|v*q6JVj4fIT^U_tu<5D2{%+dobZH!2=qvU0Dg`7cWZ&LSh;Vpj$|Dwbx9X)JK zXTk|5-uHRy-(E5A4QJ0BzZ7qJ#kUdUR-G?8c9Oy23u=s_HE`1T%71$=PrN{PLBlJ(rJab?; zAQF!bbA#L4Qp7cp?2~X^P1w83yNfeycrZpRKDyv+!~_jkcDjG^V{1Y&A&SJe?-;}N ztE~VO)W9^ucE^&t1^ym+tMh*1EJQu9();Ikf}y!Z5UI`mFkYmK%W3hRmr6y$yMxwP zb{b%X)e6-tM72vZjjOQ3LjY;Kem58~IuQ&M4y26qt!V!&{X{z7#37myiOM~{ysy#X zU4eh1#@EdRik=p)j%22U3NbP5i<``#3E%Jsjh8CD-zEifV^vEeXu&^7?n7kOjQ11Z zBs%t$-M&Wz!;xftyY*au)E|ftU+Bo@2a*E-eLqEXX`fLNp{cXm@5@VdAz{18f^!Bv z$F(J5{c(M}uzn_rXVhdTlHlVM56FO@1hFCub~_dG*5Y;ym{0e2UkW*Xh1_p_+>9*E z7zLBzzmz;--NDnBsQxo2(0RS!iP07HYqts)U)&r_dG<2LW8471nYIc#dM|nv*xxsc zk6PAJ=sX6FJ7zY+a5~sUtRL49*^-1) zLV91?tFKTU6gItT=l#+Sl=+^5=Q`ztWY?B2fKcz=>%6oOA4>NN608z@3Y{D*)Df}d zDuRk`BigtL|0Ma4pahBiuEOe~j-o3_EY|zIN`C=^7;si3{Dbl4Lq8Uq7fDB`+v=>499lF%fTvs^r*H5dx ziPlN<2>Qu_NMX0%$s?=Hf7+k&`(F5k^?>aNU+56`CMr(5hVgkf@xUw8GG2lln~%!V ziiTvb-s^Py_L&kucnGe9a1svYMS_{Ff-9Xcqx;kapA(PEPdhL!;TEm~kkG86<@x?# z96CLJ=YWG^`@qY`lVzp#*WTg7M%0mHUd*;HugyO7u14vB?Rhx_d43VQSR753QgZ$E z6nfrqM^tsk4p!)p!HVihf6y67K20dMf6$6F(wr4kt1A6Kf$T|U)^faUI-7G?2+0AD zX#7z{uyl72Ugi+yBEw(`k$+vUq;BhasugZ3Y0~IP50w&{=J2dA`+cAM=0KSkbc|Hd z=aL`3pFBeexDRY< zK7o<_9q`t1lCQy$vnskqyXL}R@x!3CaPHZEK0Ne)lTp-${q5hBZbrTFFO`aW2-D@* zy~Dt6vst}8gP*@2(dn+H#Ydsj-E|1#~+T45z3?^L}3)U{yoW z1jrjW#1Q8)Q(e7{ulUH%6VU2D*d)`IGwrY=VDI(q0;5V^mB-%Jvu@O?VtZj)T@kT` zndO=lp1fk20e8pejVC1?m=Un*Fx$dOO3#yAq8R=NTLRcFRW3eQpd3hTtsh~(H+!8^ z_a)0GV;HNy=<-KXNme4cr(INpqCp$0%^b$Knn3Hw5Y)rt0Yc%?s0*5zdhE$QQGY~Rc^&S;| za&NmDR&t3Y0Bo|Q6*3?*=i?P1!bg%&Xa0Dz}OK}vCTF+D-?V;A(jEq23G1= z!AE~02=wmO8IwK@9TRw-)87F~;ItDAB4*I2@a{(-(s<)HI727WZ!j=dcrvb&1~f79 z-)bp9V6|xe9^@k31W#hk-x>M^}KfynlK*F*0&rf0JazQL57uPnZtn5dPah;k$Z3llCB81sQu=r$x`K&mngA#KCqJE|7|(qVl>5 z{-Xzxw~2{SgY`McXL{o83dawC4a9}BB%{52R zmTiD}A#S$^xc5l=Y*SEZ8j1xc$b*0I`^2`+j=*=#Dl+)sQCP~QZhz+OO9Qj?{}zVU z`tiN#24v)ne7wxqlfuuKWC1acE75*=dZPBYpPyZ_CqxfRKQ_N?{=yI&9F0m&2_{7@ z-k_VmO^PYVjpngfJrDaQtk3%^a93cB+4xL%(a8X?lO)_jXAx$ql_C3K$tA6K1_uK1 z$JZ8tDYFWn>%i)3UMoE>W?zng)NOC?>q z-^uBNc}hKd0|}=Gt5_katS#zQJ50up4!m%PcD49-ttK^BW`5L&>zZDri&2`} z^$`~0?qQh7?8)8Ahpl^4)IxYV?HqlOBy%(rl)ciy=0w1!rWYUW8g)LUhyNUToa@f4 zmjnvN(XB+5DRGxxX&v{Mo69&_z+s_tu?H`VG#7DkY%Qb7|Lh-A+oJR5vkqmr>>@irW=-jx+0u#vYq9g6aH!P}jWmpn^8+=w}p8q2^1TpLD7j zQWtANq`iDpne>gZ?L&3h2wbob%8jcERZ{Z_}`&gPG>6Zq?VA7|17 zzwTyoz7oZstm+M1SKfB?`!Wnmp5j1}#{5-Te|+FKoZ`|&g6efv)MrAg?hM2j4`U_> z7pRJO(7HqskL(}DV7T-)HiuMQ0zUTK$T04bh7D-lZraDbfg+xvKd76~t_v~Bw3063 zPk-TalUGkbxow2iJ-Fh{T0ijuvEc^S_`c35?CAFf`r0dc-^Q*S965bK#95^9F?8F- z`UU)-Jo{d!l(#N*NJP;d%DjOxsr}wqc_I)V)ct-sc8ZyXP^wlv4;;NKaFq88op)>D zud`lzeX!gqE7`kLD*DQRy&{mmfvW3O*cC&c0Vo3NM_)KJI=_~lvAx88XwmnH_Ih4x z4|PJ*!1LD5l}^~eK@()rAujOiZ$_;uQ8TO?F5f_|X7Yx0Ll+QYq;a(`7_|z~Wa`U_ z3+Y=>$-_t7aEo!~?B0gPdpi*09^^56I#F{C`(TG1O^VPld;^7^nRhFB^SuT=`C-%L zcJx7`%VZZrerNK2$_vDWxvvKu1~bk`z0HVg3lpFh>VsvR+s5mE9;9Y>d_wO9JPi5A ze*0Az_%HN|n>Cx1Lv!27$5N4a(s<%bC5ozC?5R9oCVfF~Q{sm;E1cP0dH&~}Vk8&Q zDE;%NBXorJD>Lgk7mjBJA$~)lU+F&_g+`6vMRWu702lY=tKh>Y?@Dn}Oa9n}T6Z2d zIXp`ee71=w97CMN@R5Zm#WxS0)U}4^9e(BX^%!}KS2+Vzo#o#oA+KK{A^pzz`3#h9 z4@=nSUzU(PU&FKVQCHUL3y=kUlVa6DlvOlU7dlBMGp{L$;#dkE@+!!oV7-M=~PIAe!Z&cohY7)*Q zv62`v35@46-t|h32Etj>2(hHKlNb?v=)f?CxkGxA)8ZKq{y$Nb5{NgrklfF(Yez4@ z&_6lQBT`UbRLF_O-J>8WZq3V9;}^`3?hBAPf#;|QXcgfi&E39HU3?@`e2&b2^qUCt z$-5aFQqJqkRHs<=A83rkO?saWtt4)OlCMR(e;&OTwo zPj{{E3*Q+s`a?$kLrz_Dl^Arr?Wd9ml1>a1KyjSgJNfY0$s%PVBMZpi9AWSrUsr}( ztK}4}EBpWJeL}6n2ZPo^npvOUPDFA|9Ya6T{vF`!!>8xAi=VgJTJib@j`$p z2~MQmwIRWINu}jfT?19aJm*1AhT+A-0r=-H{x2nxyBeg{KaC9ysJ>kMK03EY6AnDd zsOB&to|anrW+u*KGLL9UZj2Oy{&x^}El#z7c7ezdp z%uB7;b7eQaFY8qKw!pz$=wHS2uc6zjSTnxC;ARZ=kwx|(Vx`R(z7Ux&cLsMeshAL=aE&{D~n#coq2kaDC1O})H6_Q8v3$>1A$3NqxAbNy!&(jh5x zr2H=&-4$*J{0X}G7c|50Tpuv<&l$-JNpGkd4${@otOrazwB8yxeAg>s`S7}US^W)k zhSw+iXqoQFP-(t-zV*T`Y1LixvFb`{%@X7seN4SR|3MhC<3f~JtiKFyQZDHM_Kcl` zGuu%eQC-p&w|`vJ0@qFql$-v?%vcAj?GF#pd5xfyUSDo5=)ziwar^~kXientu z$fQ5xO<2oFDD)fgzJZ%U13%TC?q^82K6oD}-DLZ-hTklZmAjopwb2gAebAKh%0Vdv z(8sx}KhjO4ov?wt&aq#CzT=p>#xvY^+~MtPVmw72Zaq&_Ada|^fbudN@FZ$WSMUwS zjQmFmsr34?2_=T4EstG^gMC2_$-ISE%?^YxA_YcC_y;mK{GJ>MQ*23 ziP&hWJGJ`tUFvq%fJoVc0-eePyQE&|BFS=2`z$MPgwf07`KRE2epmn1|G1%cv)_@h zewZomQ8RNmBugC?c5YYy54kXK=ne&a<}x+=fO?S4$oxhQmZ~Ds&3C8 z=;T>QQ;dl3<{7IOn7-&TA>bleYIcY|a|{+7h&zxl2KSx}Sv-G{6!M(W10kkuy3812 z05N-NkNFCPV13~Z!~X0E`0(=}!y{+og9G=0_Tbu7L< ze<3fh>haZ#Ke2n{?+0KZw23eYxDBct^4<$=z=NAsLW+X4E-Ybh>sDnmZs{2Mg=s7wKE!;1}@x?w^5Z%!G z_t|glZo#bXzsBOIcXs!yewZ%C&EUa^Kq@0L|kAKT<+Ls=%!*hCJ_H& zo^ZW2g70nQ@Tp`}WoVpycd=rC_BY_BcGe%b0Lg-FgWf|N;~i#Gw-}Yln7WX2F$UYI z#)T2wiS|3<92>Yv;H1y49M`0cE$H7e^`2W~9g;J~QsV!e?i{|wbe~|fHF_v})ytWu z^PMV57y#Sk@C8fS$OoJ8ZQUGK%X5wPn*>S1@0dtubP5Go<~h!LQy;zKsDaZ5Lw>N~ zjb^{DW{s*wp;B+2LKo4qSL@(^ZBloi7#X9>oF&kLRt-kZx{4+qyJY|^)2|`_85`m~ z`l>V6NacG{*Al31pjGuzPZzE6^kYW`New2?+h+8tovxk=9-tb(%ljQHB$mVw0gC5P zrD!=*L+qs>;$UjJz8cW?Tt5hLKSVs%2)q$x`}#}i+Ng{vRU>1^MFb}WE@{jb<-{Hv zq08^SCv<$qCR3ch(;^G)%Xnf9-(h`Q9nKTpZW%L+Y~BL6TcLW2ZemV+GFSUr1La?f z7tcx?F@}DFtld`S=zQaeeOmWfJnFuTfTLewpxqc!=EVZ~9 zz`lgtsb&cEX*gE4$74q;CAalb2wy+!p+AOu+gv(~l-uy$nq-JYZ>@mNW z=Joz!R^=g-nlcRF)}A5VkGB#HWFA573s8c7x|n_Mve{dB=TWtdC=;pQTH{W~z&wR( z<6UP_#l8w;BMalae!^bClDpv%py~;8<7rp3$WAr-e2{6bQI&=))(!N2+hxjpZzT*l zbWqV9^fk}Y8U#c$2av4;7&|7D>6eGUJ^a#6C>`x=!heuHIq^!}#KbDmc;b<)9P(;< zZ~2!8BU0Dz4E)!2Up7YlmPLl1jlNv(BQiY{D2^aC&o0P|tfbh@0!a&4R{kAs_8=sc z)^M$QojNZ5CTDkXs)x4+KmP+yzTBdmj%LCA2Uopci<49c81-*VaHm_M)3eycf2jr- z*Q(@Q#^sPYebC#zSqpNVcPn>!I7MjSYE#C3eh1esmMku_LZ4IVzX^R@d^d*vC(Mn@ zv#M3PzP$Rg6HSjrH$;4|MRB8tE0O)E{0?sdTNJjMsYFERSj4&2NVWpo{8ro=tJnGex;-Lj~eD=7gfV zG_e8Ri5ZrOWk=iAoktVK3Y{J2+s{>?n$qgzQx0r591CYt4txh4(tgnUjpFS4i1BXr z(V-fnS`fr;!L*n0jDV8Kke2D{(NjLDP~OfJ_QsrGI{DSJkO6G8M`fs^aw2ZT!D`hf zh#EcHIt$60ukJ-q@8wz{8)L(1M)1Pd!2Dlle^n^-;lk8!{uq5dV)(99_k@c?w^UykK zHup(Ye$IEv)`-KD8%+zD-{IzfgOi7GKW0@AW8F1@4|OJ~0A0xV8nN0qKye_Xnc>B#F*)hGew=`(n^Kes;~85q_4o zo}n5Ar6sn$kl09qEL-~!eQ(!Yr=f>#L~7%rVYIU8<(1HV|LQhz(L!NzzCE~t=bnz` z?1?^@PT2(-I*#{_Ytlq~$6i&5IZs zv4h|2kwgQ%m1^LM=UPa0=BJKb6&n%qh<)4}k@#=m?tJer20UF+k{&NFc}jHVnt~0YK1z=%p z0%P`QFt_9AP(C@%WZLVjHaW$Ho_8ZpZFjr+!1l8xn(aA8uQ_)H^Y<+K?;?Xyu!hev0Y@wlI+bb}&5b!PW4jl|6tF{BhM%Zz5$UrhCSry>_mVy8O zB2w~~N}Xly;AHO}EmG+I=jM~T&L(ERdRjsMs+&O#5hZQhjvP${Azhwldxxr3PRq_N*07Cr&Ar`R z&#eI61H#0o;~*9sxqMV%R=_4vghKn+54=28?%cz&h48eAS35m5c8@~~68ae33ip`I zp=`B1MjFRbZlDu1$>J^Fpw}GxoNBttrY!%fv8D2q?vL_xo^9ucA0{0>iFG$wt3j+U zGzp?Up|N5rr2<;2Vtlwi!qZQIf(WuQZxnnrV~9_ zVTonem&JLRME2;ZVC4&Z4_D7US`@CWH>{c5D^Nv0khMg={;VC_n|&KCePg^Df3iQ? z*3m8|`$~xINO(_W$=7Pj!_s+;e8yJFbJV9IWDC?1oAtyTPe$$@5yKopLj8pFZGK9?Z1t3Z@gn$dy<$3L>(Ufx61W&Y01CT1X_7RnjE?0jbyha%CLM_s!oq)q zzWd89Pw|%m97{R9Sp~@kzJIfr;w)GV?V7{K=-95dJ+iYupk8R#3*ox}wO?h6rK7A> z@(RH%mtjlONdrO4)ZA0_pO*}^ae;FJ+b*DToIWz655UZ0W`*pM!F>*g!}{yg%mcYT zd5i7#DeoEEdT~-AJbMm0`Z}CrQamj*;9&N7_58}#_`aYY=KWG!SElbn&3)S2c&pkd z%25$&QK*w%lHm}#Rs8=hR?Iy*9SePu_dsiBLgD?*ACXCNrz<>P4?>_I{dKE@Y{$XyYP9@$iXY7#A~Q{!ikhF1NfDt-ScvwlRae}tnEk*}2&7Cs>?2Z`s06@0w1ZPJe|x8h6Q zy-Uep-g-kc&d~ZCr}Udd*St2qJG zD5sv+NFGj7XHH2pu){8&@e<)$G7f0Q03R__C%p`J zQc4E|!^$P+@tH(@mSr|R&=iGlv1`yA1ceoxm=`o;+Y2SXZhmKwaJyQi3r{Z0B)4M?YkKcsgV4y8K(pziyN?r9x<}1$0 zX!30N+dnNZggZpHf?hU_e0VtV2%_uZp!1g`!JLGxZ-oOfL8XL8iGqXR8^D~k;#86Z zYMcW3nMz%dBa{zf#F2cv=w9B@hU*P${`DKx4M@Z{(!?;-^>0c=clDBG^6vh%!KVNE zRfNtlgE|#yyOU-U7uz-*o(j$0mD39yXs_HhsLM1sfE|8 zoAyri$;L>hwT8^A#i>zo7phLdAmAes)p_jyM8UJyF=)3uNo|K{&~3$W9Tc|me8*9P zZ-FyB-mmBSi{iLtaNmC=owm1ETQbU$4r{so;E=MH$jIwWk%*fwsnPYmc7LTLGsqW@ zs-1davzG(!+fn?7&R0Y90(%R9Y23bB3+pFKtaKMC-GRL&3Pu}M{l}DDo?GX1MZ>_M znxZKE9wIwvwGG9iPoBp7rvTk}B&r%Hy2pQ)hYGj;OxOIc8D;(IZdE%`&gcBP7EJDT2c%41lp;d@uhgyde$su98hMT{U$uTr04KHUELJIen4#$tN*VArFdq& zFX3EU`Pu+cWnjN+sB$3aYyyr&Z4&qs7j`dETpu3l5^2K`d53eY3&*mdE1n*pc5yJt z4QbP*1J$vi{(wYo8}Z7g3J5h06<;tarSZJ#a*PH?k^lP@es^UrwLR>&ggRRTyU36F z$+Mc#>}DoO*y5b(LA7}m)4fmV#>IHRJ_iHl`SuFhEyHRx8H=rT4EyR^rfOla`XyTR zHzDPek2Y8UsW*rS=Iavl0kWh<@-JTm3{uIWcWKPj0yT&1NNm6MK+9IWj8autvL6)V zT4Sgv3b1Xd`#qJ=DDY6pJ?zcKCk7a0}4iR^mh)b3_-qr>!8!zl;_}-eXA7o1^K$GzZ{80TvY)5~2$sZ-} zdU4b@D+kvR7g?0?c3Ouc2(t4mHoQBvB)rlKZh4^io&Ko9rXtT+l9YQ2{85MAD_0OC z4)s=A(cBC&hemX%`<*)KX)+&MsG@U)qSum=n_qf{?IdZl-2$HN^ru*F=3eL41Ldak zt>;d)M}Pc4sStuqZoCjpn5osi)AZr1cW+SsH^9}s6MMLGQF-bb3cDwp4qG~fB#QE) z9JG#3>;W_z8orj?4-@t^y~DX$F~@Ryzv(y4INnB0^6sALm+2gbNh+H(?#lF+KtB7< zSKx#D%L3EZ0&XzcdI1^1dqa;n*H4>1hn9r@@+BDTRsZ%~H$UP#j~3$m!M?LVt5}A9 z6nvoWc4iZDYSyr_I6bOMDp*0+e!nYH{DoZ_IT*%}*|(3DSk;ae{Y9J#m=mv90aGPj zP|Ldlox4_<990>C-^i~*U&5hMx2HMrX`48;>Tj_jrfXlXIOnBML@_DFwZK}jCIDAO zd5&t4bW;+F|NAgj^owO$NSVi7On_rSo_hquot7ONxIP$zYu%^$Mq4Qx@b zisNI-7ZG*j=$jmde)KdsF93N9uOVEbJ%WD?4`?5TzlNt?Pb?*+k*C}bk8~_i@_3~z zgFjkTg1e_fcPy)1`U^5h$G6Z7V{vw49d>P16!wiBVpb%czK-)Ksuu!{VHMv>8mRp_ie=(a86nL_hxl~#t?IMObL`bO0G}n zcznrOi|(h@HEtTv<(VLIqoIE#sWF^0E6Cmn@hX?odPl30$ir+^d!wp8+WZPkpZ-}n zd32(|rBfM`yO3Ch&Ak5>6mo2D4E<>~U&cCww;Au$43kMZ1nM{9WAUAgHR?C)r?hR_ zf;*=(B#5tL7V@h39i)@e)wlOV4flB-HnSG=vm1g>iF9X5(0?3>`~V}7@w4qSfnN54 z#$oA1?*z_UDC_y=fLsNltY40GHPQL82Tide+;;nCBkC*uvF2sIK%1F>Qmv!_dufa{ zRS!$8V^r=A4ca#9Y#OL1`JgT16~3rvV&nuj#HwOm!2h)f!tE59YK`M-_mjeZrDth+FKi@ zdwqQZVb(ug4f|bQx4!@8GEV0uQYA7h){-d4enB6RgtxcIcl$X@`9?F>GUeS>%oqO_9k;&(uXC7^;Ynv~fVDj!&MruGMm4ln zrab3)OBCMb0Q1ewd^K@fPRNBIQRxvNxcj%>-V#bq>sDnOr8b;*F%<4jAahIM#770(=5OUi&S%+_jcFiPaQ^&1YF5D{^a{>HvH@- zIInmP2OX3WljOXwnaksK{uQr2yUy9Ls zcsQ(4FJRfU&|l|ZVKv}b!cXXT$VRQ7fzOhX1>MnCqw5eBSw5c`1~6Uu?<)B@ezrIJ z&HL4K(Ci!6^F9)YqdaN~0XMg;7td)yTRsJD>^-+DhzDXLeLEd?O@SQB)d%xNk|ko? zW`n=~*zK2?RB}LfJ`Z#^Cf&6p&Z@D)w@y{7V#2xNe{xWc-bNfYq$gibJE7MGJOd{+ zcYl;t)4@b9I`BSrXZw`M9>h3NwLO6CoageJyYRyO>Z12y>pyY{P1=a5dKnz zs2uFIkaag%#_Mb!Sm70uoZ-u`OCmBZ z)lCUe(=8~TSjmundsHpJYo+8kX=_MLA@S5wl(7uC>th#m z4*QB)B)bU*gfG)`0Tm&`1g)0pOO9XYJoEK;`5(^@?v{+fe}Mmnul9_Oe*I=;MmUR` z1SN<3F@B1IjS17ilUieFzS47vV8CurrUJzS9yA6A402Spy{8jC)WZ8^rc>)~cbs3< z`)H+4i%xF+%=|BVK9k6nA9gCUjh_Gw7jMW&j>vaX+6E6rmXiMRXm*HyJ_i6XqSA({>{Yc9?%%tD#=P1SNBITzmN_^T;`e6VmG!urVa| z1gxLpDA4&m3qV<9k1CwKgI6+UxEedS`_tDos^6;OpAQAr3SOWJ*M`;110U%){^ge? zmQPh|(p%_H;s77kz&gM2DbRc*G0ZYia<)ZsNUp+pg)!R;%W`_=ego-z-< zts56{usa=sj8}NdL>m|7)L#_ZEji3f8~U8{KGf77tZ?ASyBzk&?mw_gpuWzFe!@z? zV{OQ~ajXNfGP<(bEQ#<*FqOJhAzylUZct$-L(#FWnFHI{N0W2|Y=C;A3vw7&H$bB= zj;_0{LK!H-H#lE2_X_$%KPJvOu1(cPz7*eyXiPbaHPC zqJvcG8Y0!tFW5B4(QLNkp6&!V=lM*tA#%-rE7WgXf3mLg&3G zPO=u&8P>GY1##wYk!Fri4~pUXca-T3sX*()B`N5a@X}X&H;B4bNu?QQ3YG{*v~q`4 z$(hNfCH7SMS1Zd^Ojal#E(qRuk$i4r{$R*HfMc)h!{lXt-pSgLUudt4M?`LG3s@eEJy-;-f$zr=2bXRsW;Z=_h-MRskY09&n z9&fd&bw<4rVeu9e-h)Frz;PQb@{odOK#(=)uZHpJ{<*qi>sVCrTfvY$hxxygaEmp_ z{KQU!!e8BXwt2aCCD5oj0k>qpt?&5|a^;7PyPe8HLAjgf@tE8S9 z!wp0DUec7P_o%j7Mrh!z-jPwQFuOZ4Vh1|W$s*lUx#Cy5)Kya zoIMsY#xXaffWn^|C`qgj3wOy$G*&rlY_c`;K?Ra~DU%<2~tO@jcw<~u=5Me zg|7-$W^8n7#{xev4KlKN9tNZbc1_e6Zkt(;u-#8H!%n3!gKbiGoBj1;E?DuCuX;}v z`WH>6o0*RQn-a2sK6i9lAhD;C--SA8dR*F!q}kd5G(~1RX0u>a_(!Vmrea+WrW+D2 z&`60xo`))EyEGJWbt9%#D`r3DbgU9Q>=Re$pzaneA^% zFH^(a4>i9sf;werwhR2WbtdRTy0(-d@?3uM=a$xD`C+(xOv%1f`B?eoE!VFcx-0}w zec4BzR`iwQLDV6TB4OgH5&_}HJfIO9*u${M6KvIo`eW8Y@O5Zks$3Blq>2m zA1!c?YOylGY775|`Rl2GKHN=KCj^1H5CA7a1ubHaw}dv4bVX@HO@*p;)Fe z!3hIe+H5nCW&}-L5{b|O{7PQA@~S)T1E% zGQn+@TE*l91cm?}w+p?a8jp##)<|AOXWoZach*!8P~vpK;qtS@Uf4a1Sg7|>%Vcpl znM^f^k{#fxdy|d`dyD1&iVq$eTpc7qpYy+ z-3?nRcV`x>)7jsZ74Xl#qr98iAzrLA4Hj8(J?V%KGrWcvuf9F9dcTv<*+%#bJF1I) z%csM-s+8H`HtZa#`K>P1PrB$C_`an8DEl%)c57}yj5MYei^mX3cZWvBR(K}z&V^2U zq72j@oihyKf;SenCob{`jAC{lpwFxw-H4cPIjVJKY;f1>=S>5)x(KTp54PGmnGt@k zUZK~5@~U1T1Zpl3r4Xo;UCMj?pbeEP+gRDL0782#`3Ca691Y+R!1N5C3Ku~NI1RFz3nx0b&KKg{Va^L>7QcN#WYkB5358~mGbSVl7<+jlk=Xvh2I0zcU00L2H*SL zEnWL%J5G6gm&v;|$#ec+kOYjA%Dt#@pdBoUz4vU5gUg*7tBM<0jmSWiuI27CloqOC zZMyV!cj}oLfi%BCox=;0gQ0%|rS8()scosa>Mw&M`boI0B2>iOonq1LJ+xF2hWjQk zaone9a*)^RvN}{{7HVPG4{=>v7dD_#c{!(m%1gfHVoTnx2a`^;3m&Q0L$=GF0~ENw zH3PSP3|mJ)Ttrs_es)5p29Itcs%{gEUX(y0AFJyT5chCrGM|$8UfIa`U9`9w|asx{IKP6ER~(= zo8dJRGZNMZR{LM1Mz&sY+_SOkS?yBwZql}g?FJgbm%^oegiDjN;KCCfkH}V5^w4b) z0Td|KH}mjf&rzB$Z`76-DUvBq=rp9KRz*_KC4!2R`I zE5nyFfGL>gEBnI)&JEz0*>|Pa-LgHy<))s7K%vH>Bpr1B%k%bai`LiJ~3AgYs{;{F`{x8e{5aA-A+h z=f*1gaZ#NShR1jYYU)9D@Y**pfiYTPVFFBKC?9td6b>PWgIb3L;s94T$1bb&6#LKW zma|@~e}T*G7J5zIue3MqRm;>vy4y0p#JP83I-1IM1$$MxS;GKvH|&o#>h@n*26K?b z%2^tTHFD5Ae$b^HvP)Qsdi2#_pOrw{TY9=^+*2|!tzOpl`WUZbvSiUkIGShiivy^2KeBxR%|#1!tRpw|t2zRok#_^_{kvZJu$HniK!P6XWz!nsOv;=-yL-Bv z77Jjqpg8E5!UD4o9WOri_#~HE6OLok_E=gZ4X*Ak|B^WK#ei`>og2EI%!wEsoTc%<3W+SSd}pzN&2d zwdR!I`FT6-m?|KbiT6aH`L9?^IIawmI7Rzs=dyO2$|qY}tRcr3>{HUSwl%syR4F1tMNa59AXGnhCwsjPdkGBADxVfC7>Lm5Q1XYbMCH- zTG)oWREU)QQLU!~{mR#V76yjiHT1RG^?VL)@P1&LJarm3IMavRp&i6Bn(}Xe;wVu{ zre`EXzY5sE))bM?;?v-77CFA9gGkO)FV59%Q0oHK4`@6JwlYpJV z+5OgEbWM5I)|k#j*GLuUHG#B)My_LvG&_8fUkeAc*p1X#ir)C!E+ntY|5%%XkZT zj573{Xx-ZEwY7LN(I(&0D)@n)S2atuQv!PGu>;u5oi%pa2~B(MRf|2nt~}H7dJCZ1 zowfblV@m5)wRVdMD!iL;h1q(@H(;W-5X1MoJL|Ysg_`7~@m;00mhwUxa%y6=^S&bN z##F_L)ja2dk9{jIC5N2^0v>i~q*=03`#J_(aq*N2n8S%p0sACIS2HFcU!7>4r3IWqO5)k}!FE#9 zwtcix7unKYqJ(EHMqO`ElHhgIBt|_PpXKeQ;L!8+DW4v(bC!{hNg0gxq zBn9=3+_GA;mHQE@7Msc{YuZ6{Qfz|i?{o92!8`|pIss;@+7pyifyskkP36fX`Zvq- zU99mrR4TFYQ##f@$NshNUlR*4@7uut9`9Obo=EbG`k7Ufk z6K=epywD#9QJ0VTjE*EoFnnWd4HcLMfUW?c5u^exT*Y!NyItJP!Hd}3tMPQ--&kvJ z-q7j=8X*k+V|<;U?i_TVnDOUVM(@dq=AlZtVH=UB{dLi*AlVOrjuo+xiFyfKMN3b> zsWSrpnyHX%&-i?;Z^&6Vq-?h!^Q5o?JL#1HM84>30}!Z+=I1|rm3wi67SUh*k)#Id zgx+a>30q}dz?r<$Lt_K31Z;d#kXui?h8W(aTx@B9t=l*)WDoW8ek4qM+&{Qrz$$BI z=V#PSxV{l9wG~%j^=eiDx;tJxBOkhd@bx;laj+)+uJu4VW%4FWR9nr|9~HI}42+eg zeNhMQbRVe=Cm399Yfyj%ANdNPOBiLp9D-%Gb}|h#6c`7AQIj98wT-Dm@M+My_H&D8M|zmg}sNkbA-#YdBUVN^)X^K zGAZ1_5H4H*nJWb`7{q~f3glT}{hU7<%+P8jGa%Pi3!DP89WH}8t<^qlO9*}{X(pS; z3_-6>%I=+6YphrdEZNMSD{?g*B#QHMU+}w?XSztaSJSTH#28!tJ%#cpG@rOyqtrjM z29~X%aGo~i4!BHddoVlr(hLkS+4cTbwk{g61J*fsECpMikO1it zL_b&>v`YYxJ!uSE#!$DHFyi=+!L1wDg2CM;*18`A#7};tiYR$TnQfUr`p!3Se`+C` zpuegcBXnuW?BESgg*@f@L0F9WouVOJ1K$V2fJ>E|WP*SM>cy~k4cQxz1uXQwxb3%p zD-qvvY$kjvt+N5_Cvm{-Vj<3fB|U{8U3dbFi}7UVwbv`qvIs`~1eCLY^=l6d{jF6O z9QHUM!h23x-Kw#)(xaW{5SaB|aNx{ZhYY)fyM8V~4Y z`-AI3QRQ%V$g+PhXd9`0sE-5M6pG-P?2EGW`-abxp0*0I=B8TuFrT!bIzvrT%4U++ z<$zyuO#fQAk0S1<>PBeYlCJA}QuRP}RZ_{jh9)_Fp+ziE3DZta4`l2n3xLV0Hz+@y z?Hn}}lmLlSVq+%L$~T*NKz2*No806bj&eR31;4K9iBq+C!8;>#M&2_i7pXI;-@GKb z5{@d7m4R96R2lN9%fIC8uI1VfLn(PE1T+o)8NrdOS3@zkfsvAfRh^nOhs1c7M@v_{ zTkcS5ZtgVJ#rdtSyalGJSHyD<*0}H5>4n>tN6Y4|GZJQ=J|%{S=(Om$mx{d-83&o~ zTn~K4@_Sn#iEa--+|N(Cfkm3%dfL{2BD*Ao?sOc19IK5GONlnjkr>FUD$y+>|KKc1 zdg@+|?vH?NDn3_8XiX`1T)fBI*Flnj#Bg*vObDU@+$%Soe2THDe%3s|*7?E|9>cj> zsRyY;;hF|>v?G+#y$7+04PjVcQzwZ`k9CROiV)GS>DPPt7&uDIIzrs|lY*quD&^j` z;%jA4Fhatobu08KN`)`@c2F4FGHCs`TqOeDkwV^Rse2GZ&~NMU{OXT2U4@p6HyqCN z(v39Eg@YVx`D$mZ9?@NuL^W}|4L^$srB9lJ!ok`h>79T*y^{1@kPg|s_F_w&de04A z>^mT6I!o5;V>b7s>C=;Ad_sZypTFH_e+MrO)e7-94joL?{EC{tw=WSIxHiGQZ7QsI zKnNsV8Xl0mr?_5T8FZ5FwxjYEf$kp0tB2JpufIS}53|&h?_X^4PQJGuBc{cNJ&uld z`gbKv|cxMf*=6wxgm zI;Og_HL_u#UNSkD#L|7=>kv}#Fr|1mkAhDog5t|s)ZQ}2DTpLja_6oE*q?0>Yy!;KS!tXZO-bzHQ#oA?3)6g2jJj;LMNr-EpV^>En}g4p8bJcNC_D)85k+g8GnlpxkUdy1 z{VcHEaqsm&fJOzNe_H%v)A^cD4m8T?_2%QJ-R(hTWqx{7%*f81EhGAHRfbkOB5L2o zb9qyHHX2vM&MQgJpso&q-k>hdt^G-oQen9%Zl8>XwJtbzyFbq^SqwFR<6tzQP&FK% z0Au*;L_!o(LhJfv1}0~vLK@1UGZA{&T^aj`#vjE6?u1+(cW{J#>QCWNL!AggxVMwI zwp?zQdLxblK<}Q zC+K|F#&KjIr;qHu!WaUy+;QMv)#YMIw*V)`gP%_L#B=mTDd|wsm_aY~wIsd8lwuLf zSL_hR(SYu?F+nef`#*QDM^M;f>@D6p7%r1B&2Lsq{$s=+U3m2T;Hq_t-UoH32(6Bv zl7|MajOQ!WeUT4nJV}Jaj?Wbqq&<773h7Gwyk6Hr^aya3mD0t!&YXBPS&LZ9SS4)< zJ?)3NXS%v;kRc5yErz6(meip(?sj1I2&g1b0-E{zM{xI&q2nLpJI*6M&IXpKM*ED| zp%*2iKPTx1t|1O!7Sx?)L!kZMxAV*cU1EaNfA4utqFEKvfgf%N3`jhFv9uD?nJV^?VJ7AC*~jp z0cnyVt$#x9-X>m`w%t}Q-JMrNAEC*xorPci8ofCg3tGNf+sF3iCVMHr{G|%VXtvkK zvio`GOesdA23i?zij)}qt_&P18!Wj-xwZti>QQms&B5l{t-f*Xt{s$7qRBnq<^cb& zrkyXz_;P%UJTlHa(-$g%f3o54Y%fDey$MK2%A6=mHQ)RzVI0gkh`7nsaOVf!r(e8t zp*xp;BQlY`Wc`y6UBu_dba*OJpGLu@f*kfauySvx34R(3rKGx{aT4+UAkKkuO- z6a^%@g=4v6UwzDzbuf^}8GZ+j{!?Fd2xZWxmxfWF*8VGgs`XL-+H3 z>om#*_mQ2O55w2u_Qbb7iO`CrA>-TRkqU~XgNxM_30QBoQZX8N)MMCUj)3?IO8IrS z>z+G8D0HGcT!bVUBse8)Jut8j;JeStHmun(;y_s`&1f0Q?@WrF%b zbUO7CXt^8Wag4mj7-u{TQsCfM6PtYE!rb``)laFf|NL`En|^6+QI*D}%oVmA6c-T2 z!|`h`=+^mSE?jaOO1uRkKMSqo8G5+%^>a+uVXZco1gNR= z<9|lX6X6}{HK!THKJvt0DkVBlvp61qX{6kAaWxOwbidNpbrra7vni&K_qHc3r_=OG z%pLCTLBamX-(b^tvi&~mo5qu+v52`RTh9)5P)6x@(+o6+ z2s-EO#V(t@T@@&POhZG0GZ#;}Ax)~*Xs!EpWfzwp@8VNgTe1Fiz}0F_I7h?NJ=JsFXx( z+h<~pWV0BNP!n(fD)4!!^N*)}|{eYNpfx_tPQjn}+Zu zwsaur)m-|{y)N{0P4c5Vh07f889&e6fs}l%i^mM@t8e9w-nX(|I(RvKY^jMOhA ze1Xh&dSD`bkQ1CE2Vz&7d7tkZQ7)6o%c=lqu8l>^)Q7o8qg*|Hao+J=81BPiQBsp4 zS8w2gTLl3B*c8u%3z`ysLR=#Q#l9!Jz!Cb0;la1wC`&;n9;=N!wi1Ip5%!NnH)`^{ zSB!ahZ2q0OTzPt^gmATR$beP}_fFV{4wx<(3=r4eWHvB@K|Juvp7Zh$PP95v?er@5|_~f0$_o3h;`l zJ`gWllJ_TZ{_(!e>#J)_v3gr@5PD~K>kZN+Tu6dYXsrafl911uQEcX++rTUjxmSF_?UFE@S<%R5x`kin( z`VAv~_tx&L%r38H=(wq@W>*3~{<>$E#HuV03mWb&0l}yG>+O$BsTU^(%$gJU4UZFE zN`py8gc4In=6`)c_@=W!Zjq3(Enf5P6NR?ETKt&FN)U%Jw2(?ZRuG`ibMPq2_^M z$hh&AWsh-4P1cB)PG7r}Z< zI!QlfJN)?R)}8GUOSzoltPaYtU}{n~ zpd%bctz5|8H79xeeKurMWgm$R$Y65=LZ+%k-QR|XdDQwxV||>K>BbWm6v1~_0CL8` z;ulEoWc0Oi*Q9?fU#eccavAz92aoJG3qhg)XCxM{U4m9j z4ZZ&UCWucn?tnKZ_Itp87FRI_x)xvkI1FnG6|{E1hLot;Fp#7`0vUd9=dVLCRQoTxb=kbN&xf*Zo{VWqJ!L_Jxed3mGBy>>~m~^ z0K%ibIQEKW%E5)4UtYJ`lh$A zPYwtcKX6^576-4Y<#?NAtCSKT8fXc0R4Lxmmw8RL;>A|=a^r8K-)L%o2V|@MD;nw! zEtm-^E1ebNrl<~fPous=;RZvpThRdqAng$s_j;z9V4775F zD>sc$QHkDH5;gd>dH*G6JUs`)Zq%|R;aqN)7cXx=Q$F=x?^V!ni7H_I_KukERWhga zS@ou}yqA*xHK$V&PXTv-*;Q5$MZV#dWZ7jY$sXnnDBB+2+_X=wvJl4JPqH*c>vLev z3%|@(*6{h$($MTuC=e5D9wZ}6`Dr1i1h-7Rw%XY0^H!XYUJkYb1~taasa)UIk^m;A z@)h$lHd%$*>KBo*duR6CvCyy3hwKzkvN?^wjEA2Ldf!8KRn$s>zHvmX(>WiT=xG(@ zhP;eTvAc+@ro(28?-?*9fq!EZ)S7LDVe!#rqF@6_X(K^GqyXc2HMX)CxI$z z%ow^35kEM*k{VVTzt36;>GuNx>EIrl(jib*h{1~Z*skSf^K*odm2+l&M2%7hX=!i| z<}~6d%%_cY@p1?h3e(x(`^C`9U>A8e9pfFxn}XQ>H8WU>wMBfUsR}K^^Zyj}X^1H& z9m+ryf5DEfHpOnA8xpgs;vteh;4BFu@kZ??vg@4P$(-4s`KA+HI|Ja8G49WWH5$wH zzG_^F-F2p2_4~6!sI-ZhJ)>UziwDzuFU%v7*;bpu(C5$y0~>3A8q!Gmx*^|+yQq6X z&^qxg|2n6IM77ca?u0V0;5n;iZ~LG=?+CH%DQ9 zL<~@ExAIn+tQj9Lv(603K;5c}tI*2S`gvWLdkHo%9e}qZ6p#*Z8l%c@(Kon9{EmBE z9+oE9MK)&c3P=h;#$5v7@IqaA z$hChUr63RW6`EqrN$iNzZ9BkrGnY3pz?l-!Nw$X(s|mLXa}=*m6SwzqmxZN zQ0J)S+gS@1fJvZ~AD~+ni@#0q8=~254-H^t8R){t{A1mVLnKk1h0aq34m$6i*e>@8 z0Wn#yT1UwR4m)2=7L$En$_-d^Z(r6;R`k@YZ~Niewul$&vK<)iwAVgS-pgw(`ndd} zbtCW;{XdOot*Q8tv{98P?P0)w!CSg>w<~Q8W zG+bcC=(uGO)Jg(fMSBVA!VW!;ThT8DCEaPYAs`eZULB-s1LN?#BFIq6B&<4-qH}RxfWMAHf}pm zrY_8Xg?aP95*597-0}KtVD(6NDC6mOM*Cgi-QF(Pcq4N`0< zQC-0U41vki*+x;37opINN{63SB{9`8MnbKJ_T^e@=A?CaH}a?MFf4T8mAdDL!wr@i zed0!DTcB4rep&r3`I6HEguoLuY#3-ZJ3@*h!>u3rZ4cP2cy`6Lg??D(4ENzN$qhw6K}YJGB(MD4_m?w)w;QBoDI?Di#GDFTSiRR^?h;>4HjCL zDduQ}LOAV03@x7dex-i#evhBPIB1RWBc_cZ_Tn=R6{8OgP|PHz#V!KtgLvuq>Y-Lv z5dFJB`s7kbcc!7*G9(x=MX>96-*x|Whg@)SR?HL}rARg3zKjBO8eg|7_@~}jyr?M_ zSd!|EC|nU-k)LvKJe5g2xaYCE7R&kz=BhJH%402xCWh>>-Z4iUi@6Ua>s$RJ3P0gq zi0Y}iom4%tyU;DE$I{R!;w08BwIqiKV6SWP(b<9$IdE>*(d(2lM>FiW6@@vJs*Yh)ASs+-n@VdU=%eOpet-- zTodh+L>4I$z0J*#2uMiF+>Oxk+71Zfl3EnL2{!F$=2P2Ax&V7E?1KNzHVK+1D>wyx z4gt z1~|K;AU<|jOOQy91c+iwx{S7IbQl(Tr;4i029~~9z_M@Os1r;<@{$zZs%;L@Tcl{L z7;4?2evK)s?cEVFJH7s^1y?Wi?io98VUjEU(NW1^kYdy>;pIw0Vf~9yF%%~w6@vKn z>~Cm|1# z9UWm9pfxfqcp#fJENXFIOQ-QA|BCMs=*(9fWevcFmQf*Z^{|MILD z2thLXq*YnR_Z25s#^>!Jz=ps2x`#>&09T&V@;SJJK)FVIO@6xaV??b|)APTWdVk%Z zF+<&j)J?v}6tAp_^xC<8aeI{|T63vf+wpBD#+_BNr7fo9b zp5^7hsZE%aR%j$2-s^uP+p6p06P`;y~1`Aw8ALx3Ea`t7vIa2a-46b3ioUX z(0m1rGW{2#FTx&V)qc3F761qh!%@T@^^j=H58iA4q$W455qMb?_KqsRoX!778}ZCx z7xM?HmGUtQxIAB8FRDNdVzl-i3MhjATpdSeiF{5B{EQVL!JqISQC$kj_Bz929syza zZ!fwVUfQBB%+gvuK-~N89&ii&{J7%nqiLRoFSxW`@9pVPe!x-HIBN#{ytXmU!{{lF zUY86J%oaPV`4!i_doB;jI~xWtP?OubUS49pKyj5KiD%pK{iEkrEU}U^LSgxj?oLAQ zRALdt@_#~==uGbN=3=%(ZqYWTFZ-$zQ&QC=xve)7G&~ml5;;eP9RvGrtO~AW7*RNkwSM}IT z0BR4u^DFy4^Q#=#fI?@B`aPFORY(+P|McA^&D``Wq;TwYRKg|YLX}wzg$a1e{VxnJ z6{zk~=jcqI5N?YaY7MyRw} zPxC&s6|-{EI-2PZ8B-xZ$uHq{Vb}CCoh!JZJu2yde#g)Pv zlRT6n4{lm0ZNp|ktNCX^`Rhy0BJT#p?%dtBk;okW9&7}AZ;M859?u1Qw+lVFWmB$~ zk$t9JU0y`sH^530X_OfS^m~;Yhw7J_dACVV56tRL_}YCFy;5p+U@*BJihpXg{BmYi z01xLCb%F1(l`A=PkQXjnMiZadfgj;%mqp(NVq3OZp0z?vx5}4T>;4^-wE%kbYR@Yq zoblhv;9qYupi$$*db^wOuSY1O;2UK2Qu5(Y9umxj)442D-U;B*%oyNeho6I*9RjX# z-xp=i3}L@LBNK=BE)}w;70YKzZo)@r9(19u%jL+B7*^8BCH6SB=oG@($P@ z5&n99%jsEAJHLhywXw>64(?ab%3J0R$n<-9kT%k61|t4_WCfE7yiJgF1y>ora3;uJ z0@hoJE(ylZ)XcffUEO577FJ+r85B}4O-hdYyk87ZOk@P(b&TM0`yd;|m3r8h%h2j| z8(t$m%Y%|SyJOB+ZM5Ypq^pT0Q$x;2<%*M@cNJBfZw>x6=DZ&61b?FjIzxplYDp{T zC;8o^DB4YXIm|rph!r{~8ncXir&Vs_CsFRd{@Ffza_H~>^M%+d!I^th;%M3*?&Xy~ zBewrvxCBXJGJT@Ej;=u$<9~P~pLLRe#9nBGsSw)kj%^Rrea_n*rcecsW`#jd?`$Iu zNwD=XzZHc8k3drQaJ{|oDfO89L^G{@iGK8z5B5Eg+&Wm5TY@W~WNk5=qmc3Vz-H zT~fvJ{wT`MeNnzpgeqDJZ!Cb=Vd*W`CqHD)F;``WW5GxKD@D6P@4uiuho|>kL(l!Y zv^f5QofNXo=~fVwgM^(ew}jjt98hQL0e6!;#NeNBFnWJh^8(ZZvFv^_Vf`#i5xb_GINfCe}&(5_Ot=yr#WI@rAk}@LBb$G0yC; z3i74H$>I;&%|AYMh;=g?C139DPboRRyGO2(sCgnvyDT?wdY(& zVC>ZZ=C2!5z+g^h4|ArN@!eg0Fmmr)9_v!fg{Yj651g}>V|%RmFS9a-!SRSzRQRsX zt%FH-P?;euV9M$U^l)0|^LJR8 zrxE{G?zHh8W4Wtk1ke9FjGsRL>CkKn{%dv$?)epNJ*q>!q{#jG$fvQ%%v6oT@3w1? zoQz#sZcYve6BYC2-X<+8`QVOG2-KPC8uh_J^QEEaE^@~}3NqxJAt+5aE>tDzC)NT4 z*2GnoKE0)JA2ZQaL2;_$%5epjvC}!jQ3Z;A@QEWHoT*$MGgzH*bC#$k0sq#ScWl=g z-aUuh)muFmPcMyPxlrGIpRw571`Gq;Z{Zk0S$8Cl>3crv+4m+oz(qSuuncJVppLA5 zeQkem2#KAy1tCc|Yu4(mEV%#J;J!%z2=ChK+uUSWfsoT_B6V7{rn20P-xm@=h-gwk@!+EH=o==9?vfMFFWLM9 zUY`Hxop9-!%O#b|cvAB&8C;&-SL6uE zJ|-xTvGd|`)^dpNq!n(uQRs@L6wu`~ZuOUPgYFNH^4{<$pAd=0#Qmk567a8U`!u}0?Mwq06;<}73X1LiBGOUf@~ zGVkIDV9K;Q0v*0v&LPig1xFPCD9Odw26NuYESK+u2ke?-ndQCz-kpgptm!85Dej?W!on0@`-Yfn*&N!B!Jehxt5fSk{LyUpo~rkmVl%yL(f? zDWYX>zTMu}Rn z?#J_i2jHQrv`VCyyB1a`uU_ka&1L==&yA4&JYXXX?vez$puZylecT1KU3M%oRuttM zO)kNG9i~~rW7IZ-wyShRzhQ_lCDJH8s?Dmio z+5^fm)lqyp?X0TSS4aAuj1$N94-<6XP*uwUm$1zt_mMuA ze=GO?I>(~ZkTzIg>J%)-SlBUiC5azgSsIVsTV`k*2~XCTTA>a5#-y1s@nM$xw~VyT z^i^D=T)nln?87+6!Z^!9(7_{n1HyCX1IblqT89}^DA%jR>I07CzwAC&*+lqK#CGLb zYqu)f?7TXj$$w>LjbL(qCkIIPox!@SnF9#U@#1iYu^1djUQM~6c^|B@0H zSjkaP=KF48GLEDc?RPS~#x&?Vb}gJCW4s?EwvgY?`m<{S&yK{9>+Xc<%v#N;ZRu)Q zRw;RZ8DkZ45cL&+xt-W6&3xguZqzRYZyp<7+*-@|s>G#I#Cc|WXc*;rlV9un$1 zAsHFa^w#l_tamr~6%?KBFZ~`X$8`s6`_~7!HNuc@ z!VCp&6OAwKzaAHQS80-`u-+po&I)K-{0($s&BRYR6x|vecrH3wG;?OYIusb0=NQ(m~9g1sWo@5Gt#ks)FadEPfS@QAF{x+cC z5twDI8E@&V#IqthJbDEZ5TSOdvdwB#>l<%(z1y#!`W zQRm8E#59;NWF67i_si;=7J{?C#kB2GR}KfG)MJmVr)3X2$+8~;EbV)ijwI`kxp|R2 z4bx^(7t}*>(|DA94-2~a-_+62$)gzP9=xCcchq8fqhgfX&85?Q z(gfy{X4Tae&O1wH`}g%TinEv9YXC+0%THpdN)Mk`e3s-;9I}vD^?#Y3k`;kj3su#) zzVcnn<(=XZ@yOT3F4q~8#ve|uW$`TR#?1%pjx{d@{qi%USJr_^j&lqL44{j8q_}Cm z%+slFJNui1`1MsYt7(DGQq>B))F002HAl%UD&6ix>G;dxrXH5ow4IHoIQ(e*W+VdPwJB8Ki3_Nk@bzN>WiOX?Z zZ@l1WO+akpRKQ#D7;ZW$I^JcYpZv}CDcHeywWmD@MAB>^N!ZnonPQ9u*al}N4f;Y= zaUx#$*u_#gjA8O|ych8s$vGKaj?s{Cxl|xoBge0Ba@M{p4&7;ff~2Lv88sLgxGtz~ zFySm}C?6PLF9Dc{QpQXUAZ^O!FuX5vvg27w?^TxEC~v@+Kn&f$DMhlu`0V70qs56q zp94oxj59`@esf<~Le8U~BD?w9{T~0U7-`NP`8^&a{q_ctYjxQN*^Vcldl`JQJNx*| zJa;^YvMUW?%$H*ckkIS%p-D`={jBNsJ%=$Z7gS1e3h<4gvxHnii#RR$N!08C+e{g% zz8&}z@g+$+#MY88y_25yqTD)|OFjj9wj@IvJ-zJIeP=eZ;dRx@u!E@ZbohSEpiyR3 zaM#G7-|=q4`%InW&Ph{G4)O9V`^=2<-N;YKWEX5V3_IzS;cQz4ELWcKL7j7a>s~|j zug*nNYR*z)x!hZI&G`+h5!z52^}XhW#l7+=w8zbc+^1sY17958 z31XxBq63-C)y2_si?_y0?m-4zaJq_#CScyfkGs zldYvU`Gww>M|zB=6XxcdU4{o73Q)p8Ac5{05DG9KHlZ8*i~=P7$1Sm*-EG8N5Y4zWDc4q@ zOmnFrw_U*oxNVHCyY zw$z2Nkw`6?Evgl#CfTz!J2|pNd`Cwdf&*{tuC&op3HO{=EWq zGzN9y{6hug)Ke(Ln^N6$=zS;6SBTbz5O?`Zysx_~1(}dq0sgC&82TwC*_*$+@z?37 zplrczOO|P>jn_k^LF4Z#m6i*~eFj-``)_?#`Sdl7>1XU{?A@uICsWow-+9~C@Y!)w z*0I3+P9oH(Mdpq`{eK>cCx|J56@{eQzRWr!yMZ5n)DWOkw}!f)(remlPO3Y>GOCR{ zt51X?aQDxd{tr`c9uDRE#{IWaDT=Z$pHfML$dYX;A%sv-_9RJ6l4Zs$A;}UInzBvE zzGvTNY?)*kB4is3h8bgwF=n56e1E^^kLUd7{^vf9`#A3VI*$9g-sky#zb;cK!*O35 z56!F{^2yP!?kn^^gbU_NPQ4Ov66qgm9zbo?`cF%#3wqEYJ8i^I>HS;fV z?MEv~qX?X4%T)|u_jDUO2*p+B zhR?k%XE>K%bT|yjea^#ufgI=c46x+kp5}m&A_*qUeX}Bce(U0@e%IW=RMIyAb2TI_ zMB`d>pVziZ)th|CqLo%;9DiM<(^#d$_Ua36*s~b*YSuCERGT%OQAqK|6`cYws_SXa%y%WY)4+vD8FLTi;n)v`l`9xkI_fC$E z_=&3y8B5UKZDC6kQ%XX ztD&!F)kGH}yMsaf3s>W?9Zjhu;cAG}i|)rS=<3{*i51Z&=qMUG`v?rRH_JfYn6ocg zjhw=%sCqWctM}1bmf1!VgGK`GJ~17VEcL8XYkHmGIp}e>Pxu*bcf>Ztdd8&>ix@BY zAx_cV=$1Wlj#9V;-vLFFklK^TKNUg~pn(*lZ0aM+`_4-m4<&}tC%@bmC1Jn4f0i@x zYxigUq5T_PtP*3m$S;W{I(l}u4TDAm=Kvkt`oF}BB)zMqKb4j@d0wmcRt~ox8j7eB zU6#_7LGBUsk9;DnkS|Q@jo)9oWu>4nCRYRZ_}w;2R`|^}EKsh*XJF{z-dd{TO_h?(1UY%To_XhksA_1pFg8U-k@Ik zpsy#!#x?EtTEDa19qin!u?&7Wb91{4ZtMkdZYLB=9V={j4S_73k9o-So%JHedeK-y zbOod=hb|Q+w-v&pHy#DG^4A{k+CG7EKEE*ZUhEA!kEM`b?E!kP+l+8lzgiJ=jPV%U z_;>zPbWEm~qASCH9qTMLJ( zCRYjAB)%ST9EX(_vFP=N(x;wcK^{=-^VKMPhBcZ$J>OlYX>MR`GG$vn+fjwV? zN;8%cx|%}9KIqjMHGD%BeAQO^7#!FmW}60z6DZY5zRwsn)E

W~x5;fpZKEUg$0V`(P)^H}Dfo7AqXd5Z!FSHuJD-=R zXZXJoZqB4P%95DlV$R$4-|fm*H#|w_T8`rT6CQEJ@%TuX0pD-w$++&jUeGpuf2!mn z#F7E*U_CJzm+RoFZGwfyb)G=3m&g-2>Si9kZj#2%ZY3hejk4(Jg7?&i>wB{N1oJPg z75qR*8~45Wq9mN+LHu<3{q^Ddn&V<$EV4foE*qfLi|X)Y_rAgR;1V?xNeaA^Lr!Dx zj_<#TO?M*Zp`lr4@r5U3u5NJ7eiD>@)$Kd}+mcrG?i}RR+5C`L&zU{~> zPQ1twL6^Z9t?%NPzu&0FB&96NNT0K$9?a#+P2X{wh`3O^b8XIzkn!}5BpTl6H~Y`k zeqvLi>nH#ERoYk6s#cFbggm6Ot?l3)&;X@FHqeY#wl{Z$GX20JRgLeNN>C*{bcK#jwn;Nf?+QUh-D;Ptc%Km-E z(#c#!vm;&j!!si6wi8Wz#eN`!)<#;a$O{RN<+0v@*5O~#8mwRG6VZ9Klp%n94bC>| z58N89NevS(QsGs(3ZK2}o|0V2ysmFf8M2Mvum0Phbt@@m`sMuiH;+HdkBncp-4_%M z0B42X*55RKI;K{hsdX?ox7P!r=zfso!-*al?fbNwOYk#_>a$>J7jY8*fhl~Aq*gAr zzCRxzlyA&5-gWAi9^(G765@{4pu2zy(g)yS^XJC#1J`E>r^gOc4!ggA+cGhOqMHc0 zOA9H#^o}J#<6-e(o2{Cc!~|`PC$}D3CM}13Jsu~HNTpx1S$f=db@5J~{p)z)Twx{n zaqvEOyAE{lqCe9}Tr|pRf3Di_{Gl)Y23)qVXjDA31TGM9Y18Lkb7I7(7%HQ@dM#e~ z?(b2!;(917;ab*>E_JOMbs7h7bYh3KeLEag8)^E|!Hp%X`T|B=@!M!v2`xlztbJ<1 zjgB4VDW1%(?+tKVr92hRmc5~bsX(9(7#jB)Oj47~1~Le{5M zWMjs-{+0-z3nbittw*DoC+_5Kd*zW5lUZiNK+dJlXI<*ksh@D)P;Os6XDh{X!^wtu zLwVbw6WCUi=I&*}-II~Y0G}inv>*LS7J5HTr&~KER2Htj@aUO(44t5dU-G`}0(@_m z;|QEm4qa{aI8UdyoU!J5S&cz;J?B0d8Z`i=cd69x-g|sw=~WTX5$>|o5ct-~)@WCZ zZv9wd4m!Z&Hm0(-DeKU@P8Y zzwEtskFp*dAlH6fsm7ht$KI9`s`}&z@YrU?ve_OPj?TXG;+rvzahKB_1>Vi<=Br{bU(!>dpTPCCcLujYj?$yf4P z*v;p$11k+e!+Cb$IjInwZR1AyYE^>Llsm(6y!Gm{R8&n-v#CAbE*xZP}BD9;|QEo>u?L4MpT8r%`%hQG(pRoT?kA9js--6ETRtqf3 zxf=~Ojr{~a&xl)9wx0|M{7N&R;J%Y?6a@|4b3|K?8fuV2=zPhyL@{7ECsCqE?hMc> zhk!?y;FIRiF_CUFFfA4~Qmg9jmW?^Zb&~qQFz6#Sel@n}Z^*w7oWa`)U4xiU1q~Ck zi)oD7Hov8IWs2HJYPe3jJL3+|<3bBgaES?#wH$+)nT8W@Z#ZB>ii3BJ#qtQdh_atL zMzjQMDiV0hNP;A0!~Fr-7(*~E3XH1s>eCpXXOJ7XkL1S!N9R`|Tr#gM5j|NV*bRz; zK+8;vv`xcP@CAZ2>?}<(eC|gQVU}+69T!T_wSj+n2u~Px7koELiR^nqhc{7l7T!OM zmiWu6)Ky5z_-LGMxK?QluJN%kZ5zP1RdT~YV%Brb+f`Rf1RuZd^NWsamMG|1?+7FFbv)dZ^Bbs&Xt>zWU=p6nWj5x% zNPi}*zvWjj1X#!QF1T5vecvB-y0GJo)o)H?|Km$-snIXANw}m$hmtFfok|C1jp*e1 zJV))}`SjZ;EQxrS#~C!eF>L+XuNu0OCt?<-zu8;wyNd*J();XyV{5(2d~eEx&po)8 z1{S|jCPcE?j!AyuqDYi!JSbuP8Ff+UOdH~Rqr$d$(q`B1&>GZRyBqWBB$GBtyY{8L zF)LIm-6Ub8Dq0|CeD6kcWz;_pwr2!P@>BX>(s{#i3#*)oS_7q#s~e6}QK{wdzh-|y z$rYCFs}F~j#ccMOkiN+&7}aL%B88qGn=BA|RfK@;Y509KoAw=5uJS1AFe^7PXVTSo zTUfUwKN~VVYGi~X9MnkUV-r0U&@Hr2Crv`J#W$?8MN1e9V}hp=Lu?absF-mwX#?1W z3%C;9nCqD>vu}g^FRtEs9-MX>t04oO<6{s*_`iXQs2@~-f`B`(78s0CDq0n z{Z+gods|0O{nfqgo|8>ifa5H1F*q()+FJPX%eDG~fl=(J$A?6k(+Is~?skQOdi&J9 zS^krSbPZMFYd62bx;hMGqIka`i|SxepaGg!8qzU};UCyG>wVH|13Bcbl9IAB{HYSO zV|#;kovoyw?XB_Gq_XX;|ju)zWr{sl_+|G|^!lxIJ+dW;8yi z^OD-8J@;$ff-_tUEmg2yH&~QW(b^0Nj-5gl zmXws>oq-HD;1yQQ?5D5?Fadsd>)AQGyS*SgJ~^VE+>?$f)?NyE)sA%KwUG!W zmnvIL?HhaPqu5rD?ZpNS#fV=!KCTZ!rnWs@0y)hUgJ#c#a>^f%&a_YO#K_HsKNs2v z5<^FVi3owQEPYK_b3LYIS=d30{g=DLh@L&aK%;ecNROrOG;X}+ zsaL+G)T<_7C+_t!aHigv!_tXP=d&f2+8IX|=~W{jRv zQKr7||BU|d`&>OnYB$!y*@~J7zTfF7>)G0Nqbw5iQ;aAmi2k#4KN>k|utyLu?=YU2 z6W!qFba>oeqol`Px|JCz7Lnc*doA|Q#2fLdg}`{c*yFNqOb~Q%waW7z`BNHrI2nC+ zOAqsA{yW^!oOBX@|Fe6>oI7juP0ktCs-_T6rrLDVl*|{Vsli)q!|YfPA8rkv>7cQig+>j%DjE%nGWS{?{qnY^5^zt;MMms7ppoe;yzf=(x-F$ zd3^LM)X#LM%Gv>jP17sYv!2ARs*H(Gxj8nCCfB!;%+?Z{$XD|agu+#sr*keu(EGx| z!j-_v#(}2Iu}|#SynYq-wV)RKFSCk?w(DayEpGScCZu;GvZ4aZ^m09gGX8+M@{~)gZlprI1M_(z*UcHl@ z>pD^im)~AN<5u1g8Op$#{gVM&b62%R^iy2e^ehex z$yA@6n3i|iYRE$kt!<lP5 zc6>+TSpJ1%-T^&jyFNkSx!8&Z+W$cqU)8rVGcBd{L`)9{Z6s2CyOM?U zx?Od93^q?E**MR|1QVUNiP;+@LGH1yPMu*1I7WO5lt*zV|f48&IU> zaWto!0&4JqZi~49p4>j!8vyE<96+r6nTM`hJ`9$R!Y5#p1RtCB5OO_-ERy1$4Mbe1 z?j(72U5O!_BJ_{$n^rmN1(2&%+2?KL0izUX9M)X?=E`E7sd*nx?wx$+nVzfI6Kh=`amH_6m}7eia| zX`3z^Q~fHUAWK0oJ-Va}lrA?D=bQMiE3NMO%clS@gvLiFY03`@=qig{T^Ea~v373% zP(Pl*`?wK!-DI&Lt&K|m!pExglNxzT%M?pkiv--6f0U zY&r3XL8%nE?tTrgx;}9s1$S)4f)A+<7TpZo79Q8@>Hc}Nh=0e!xUtC9QS+%O9ilOI zgY#gKno>K!cRNES6&>TgA6>db_!X(Nmc7zbjx6Looq7BCPER7-fnIg z+rLO1DDCH;z>th$$@%^B29M_UySjH!Zvx9Kco%jufe5EpKib^;e;{wbiAD+Z-pJ(= z%L79fZYor<7m^s?hX%(XZT2Es$#vB?>?PTwH$7_s^s|~D?zw?~?~$sL4aW3ORET%Pd73HMhP19X}6CU21FP0V1qcxBICIjB|@ zZQMfs#S7!F47&m{P36Y4k}Z9E3ee9JKZucUaZHBW*7ymxy<=L8sYdc$}#u2hM@ zTe8!&g9cwVhY!`p1@|Y0TqM_xCfZ#GT1R|D!(;x0ZJYJj%hM8x6X9F|sVKC z)p*6BBawl)_G{7uC_SjHsCD#z@>$EvY2vY^{OmdX_WkgJ>A%SO1qTBh@o{qpSI znhr&vu=)TIse45XaU%FcYy#kD97+V%MjzTq8 z$Dx(cElMkoR?I*poKXq9dA?C)W6gW~@S5KktoahA1ix{I?U^r+L)@U6Q+I(9|RAnrdqJ_9k3_ zW7XwPJnfZCt5D(sC;SEK-Z5k&v6J;nM;d3#$C}6ky`e9(F_EpEljKkq`m)A$r3I(s zxYm!;5iK{}ecdv*U+i{p{;n8T8B#_|v+UEHU!6AB*R8Jqt}S@^YFMmBki=JPLx9PS zj2&bAymk%D+G&we|JFla zw`8=lJWMRz$36~pKa3}R`4CI1O>fF^uo>3uAtc?o0J7(o8vsWri;%a1SepOi&d`26 z;R*c>H8)M*9^PA^x$=;YmZpq>EDxhH+EE)hKfzvVKX0rtDe|&?DvjYMk!&ePV>c|d z3Dek{mnSP{p1yGH@BK|Ne{Tu+tfskxSDH!MP2DgGme`OI*nfMVNHW0$BS9;U=m3OG zBYMk&&c6Q<96dR7h`@|QCmGeMVG9_0kfV~IG}apdqU%ULu7@6C!1QasA_jen9nAUf`v#yW=us%Mnj0^#nebuQhq^K4Rk< z?=F*I0Xx?4F9u6Ww?r$Z;&vKALJar^){#|0HvDsR)u=PESSfbjG8EHf#mK-e$wO`0)2mlgE{ss&4a3E2)S*v|ZOr#Q(= z_blQZG#fQ=QgpS8G&pX^+8UjDcOz)Wxzx0N+sw-L;>EB(9kuf4SEW6$VsV_5i<0L7 zO3`;;7bT@TWVg9zV{0bYXGyoV6X6PR0xo}ceoK=I8FSqSJ0@uH`<2NwUVO0m3RrHR zbc53`H2=-eMR1t>Eub_S_qm(!$+G&~?snj{Jj*}z_cEg=LKplC2NAPg-s6o*wUewij-_6SPRi*Q7PZ*gi!CUyl ztCj(_*CQ8izZim)!~IlUI=a~J=uee+;^gbD!$WoZ*P9YK-H{#YEh#)6r-?EUUesF#lZQ>lt2zsY4k;NROX$?~3Z-+=2R z7TTp?-$gMC>z>o!;PrMTJ9b}z;FpWc{Dw{V;|uwfxL<^#|1fJZ{TIoTx0S-T0F5gt_RfEs`3~J@rw>}8qo9~#dQkAIdx~;HCsdniTd!vV`^nPFChp#|6od4Ukk~$LWr8un1dx_ z52`F?>2clZd2`hsXq`_P^>;wEj z1!&!}d0NlY85PvW`ZQ2aZ_87RaSG?j8v5C&=_@e~bVy2e!gqFGUCd7d_&W?k|8v3; zw?5+r?&<`sem6x(KSvk~qw^lwRrOFEd{Ih$&WWlmjLt{KSj|z>y7n(G=e{eNZJO5Q zH|#nxX8Me2*9+3v2TW6WX2M!)oR_7u>`OZ$Wu-4ncTqthzNZu*BfgtTs>M?^7QXj4 zL$GoKj< ztQP)`@zw7*G;c&P9!Png`Bz!$i0(FUIQPIL@k8j;ce}KdoqLV^oXrmFp;33%6+4sq zV;5(^3LD_(KVX+I=^Nm(4W0omm3j^j)j{4_7d%2B7`ar%s!_&50>EJ_SQ4Jo9Xt=AY+rL$gl6q20-*8bP0(Epl!--)zJJjY}DUeWzu zrLz_Z7C&B*bXo|YAcceR{l^7011dmAYvYOcg($KA-Qs?7_S~PWMkEYpb|jlgPrJZh z3etZIwkooj4u8QbLW$hZvNkdx^^Ilh6a69#>oSQ~$QJm#8Bv@xE1@e(0$B~rj!rYw026R{$wkr9s0S(iuUT;2xN`a1 z$72{j;{y+sqE=)Y&)Z@KA_W zU0N`;RWOtcVIQ`wF%8``Q#0;^F;zC&{w(kvWHI zb((24zemCMt5O2*G4WkQ86A#r{^B7Og1!D1_9NXeY4$6n+W?XuWjRO^=j`cTbtD@(buOOtuF8AZvI- zF@-r+i!4iWkKw3>u?oHhAsK;n00UM_dAJ-ec?z{A#hXK^OFs7a(i1oLW5Oi1;27C$ zdP40s0~>i^j+p3Fm6-&x^#!+Y?AO~eZX&82vIIH-l*~DW(-h5Dy>SCdp`@!$n5*CI zs%;4WrYOJFq_Wch50q}by7n0TePX|C$k&wB-RbedX+HnK4#|9w=oS9&@}6~u!FpWaT%5vFGG!id%uCpM#>w_C;xqfF?neyg z_cY2zyWNyxmmQF!KVotc`W{BkxCp}NNa_}CcuB0pm9mPcm#FRLZ5nf`rKsz#jtAze zRNDV6tj2_b_JRVV#JsC?X+D5|FteQJ?HRgX32v$EN!^p}+4B}=-Z4@c+PHN2v1nGt zrDDcE4R_D*KAoHohj)l?xV9jV%nR%qZ~Gg<1sLO1#K;z{>gM-Kkrtw+9dnjlj_q%k&}r(LhZ|Ym8RLw<8_aAV1v}FcL4uE{zIX) z_p#5WOHBq+7CLvr?h^(La=zs3@CWT&$=E^izZVc0kG&W`97VH~eTxm7Q~pZfnuJQg zVof`G^EUm?^5Y4b)9%Mk3U0qTjLnh`q@-bon=Ke!FlYa5O?ywJ2kEl;Uw%W)U( z)_E#3h09l(UlDhm;#}^wpTBx3N2JBrEOU}k0)mNf^^Q?G82A77 zvQJ~CoP>{JM*oxKe%EFO+$Fq%&YFvvJ%zfTeE`lYnfS>izKOR@GX@7-;3@@EH_Oxq zJu-N2OGzhqZs*LAeT|}^wVG2OiUc%Oh@t|P!QRh=5cMN8&j#LK%d`?K$ln88T@OZC zO5PD}Jo6M(HbQaMfld=1b&Vkmppf# zuKROindv(U4o>!4py#gcGcpw4U8cVYPSHee9sV@k^tU=~k(YoR)sY8>=Ot>;?qD}@ z5%R)+DI&hGi(!seE9Z<-v(bEe%#PGwyEV5)?t1}+uH%WVSUn|dI)J#CfS&vEC6*FX zzKyt{>3V^7W5hp=l}F=jS0&&)Uy<95ZW2(Xd7cY0cO3q0z;XTgKdx0iW^mAk$`k%I zg>rp=7!B4n$R2H&>-PN{vyD!O(lq1N!6ZT$VY;A4HHlN0+!Vsg;>7Kwm$V7=Htynt z(`5w4j}qA)x8gZsZW-khyBc;S0CsN-_P}<~^&jq<(V0-RIc9Xt{-)H$_GyByF7UuC z_{9bn-Z+$Lg!Jfbc8A@?w3@uUVt0xjIy^Qu)@IUF^eK-dKlxDC9fOUu(5jjq+^&%h zvCGZ5k?K|)>4C1ZB{fbJXVQG+>hu{sgz30E=%OyfV>w3n4gz{&s=vXfwY{ijwoY=> z{?uAZ%i7h2svlcbH%;gx$S6<#8~QPiuAQpn7(gjuw!GCth8)@A(^^ZE9)7v@yDS5Dh#AzfVAU zb)I$+WX11H20zt@E0LS*J6awqZEZBqyVC9m^WR56fU|K=(HzmKs}3r27q-M3JTJ?W zT(lQVDBAiS1=SkCeYE3;lsC_Fm12%5;r{GlAaA> zLPfc5ZX;y~!=~|Dx%i`7Ku6Yao8)07!Y zN6gFUhr82mIy%YZLC5g7JNWTuZp}WBB))N=e;S;e< z_s3c`{A=Gqofl6%O2bCs%B4pI33zgc(np^?CP=%Ksuqrq1@+J$4P6NFob8zN8(k zjv*(cjy9nbD$A%wG%fjA6brF|-9?l)VB>x_wmeKwj9ay~aw}o(-QBu-PL^2y#Jlzz zXLPFti6#IRUV`e;kt3mE9|22aK4JfsXLnd6bN4FxMJW^1-~YYibE}G;1)tg6wU$k= zm1QE#=K8E z3x?8USXD71(U!lbu2_yA5YhX|Mz}^{rlX*W9fWxIVH8?;ssJ2=Vf*lUi;iYXfm|mE zYbxQ3M;)!8{Qvtl7Fo`4e8MkgNNtZtoxKi@bsYbcrXw2m#9_7O)%WDvLgV(7>)9tu zQp2*qTVpmS+9k@A=rJBe$?sO#fNYx)mVTxq;9Y22x!%9K3Rx-DN+PG~pWTILF4X<0+#i&~ZIUDI9k>RiJkfE$ zwGKkY7&-Ohm4v_wlFtM~wC$yID9YJ{QQVGfe98DRf%xh@S{zRCc_%g*IQsBPVdDI zVt)4aDWac>?VGts$n66SRSx$@>KTs>#S!W>S#f6lq{CT1RxA@&4t( zQ{bVKj!*40ONU4A6BX_#3836$%pIB3s_L%I@t;-i>}E%fv#BfN`3V5CSBnaQ>rd`U z&FNUv{k|l+h#6#nH}ARlg`#bwP#9d@sF~QD`iC~fwwZ88;Dl_+xX}yZM$q{ODHEqB zAk07ObB238XZ6hd9_E5^ zd*Yv}x9s05-ybC?4b~p!pU1X*+7{`=J`SUKNWj2~&$nc`;7dc%H7T8f`-LXlh^WF% zVGF%jbmeG!_&@cTw!FbqdZ%nir@2Runmky>4ZLT&Ax`P?qRxw|#)QG(^G`SSre<`B z87wGkX-IJ+NJ_#w(7ihs-!tR(YeuJr#Z*~#AfF~3Ks-NyU3!Duylq=;6~6gPdNUbh zN`~8GUrpdc36b$8jlv{a*sH(7nq7uC^DoZ&&ya@b4_N)+$iDp6Yw-D#}O=#@VszK5_Ur)Neg();@BKwPrA3 ztXo?q`e7y|-;Mt6txk&5*41-j8}=^&G}*}fp?E)R;Eh>|f1%12@3?!RI^N`RrOj%0 zQ&sp0OWE;v!FRED9Tx2eFW*b2cg;5+IyZMQ_Z-F(S`8h8SG(Vkhw1l;Ss*bHmv=G~ z5j!8(OBRt&IS_JuZen~NiV+err^z;VRC3u8f2fS@ zaN{FxU^aS!3w%5u$)h3IT4B=uy*(7+95cn&f3vhWg9JxiGo$Cs_ECEZ$cs8i<*hn0QJHI@mmvd@ z67Ua`0X->aVX`Z5A!G-AQ@xjdG-#3YN)DHKjy3oEV;m^ly9w6c^#yYb42Ux61?Q!G z65F*{z=OHOA9bxA05_(Av_N$onEyG->f@#qM=0trHs<5(Khx{2?gzM){N`%8UfFwp z7#!Zd_0MzGbQ#S%DXe+}d#dMH^}mZkVN=CQ9oG(O4fGpN$B&UbT~nz?CV`td8420W zJ5mgzaqOi73a|6(H#tU6&L9B|WD{!?ys~C^?>oM9%bo@E8q@Q8L4pOOnZR^q&rXP; zj`Ysi@y3V3?XTa{HX~8gHCOoD^8`}umMKyFHingRypDd%*ymxrxBQWz$Ottz#P^q8 zOp!TCM5Va<# zE7xPuZ#B+N46_q|X|we*cHY!vle7zQpY%P13ZH+lZARVuTxsF}C;qvM{;p<%zl2Ib z=W1*f&LnB#Bi*>#+I$H#$~D|&(J3q9RIi#r%TE!YBgfMaIya$E=>C~{3in^~uhP%o ze~8oT`d`lIpPHD4MC0I5eCZ9Wo4t{(*_2=L{?maNSP1{iGn~IQ?_K!}HXtd*U~fB6 zr~8C&BuPTiQ;m4{&Bv<-8YZ@S#+8*y13YQ_lI`GKm+&t^^U1c5Q_N2X?M}y4p|AKV zf@`T~6ao;H5f`l8nwcRp>wYDCg0(#hT=48M~TRc~x zS2#moxvF7~d8~*eFu;?=-1xP@&)`9Al_>ogUR!1|a>G5;4OXE_v0(wW6iwv%$#YHG z9@}lAwzH9DLq%Dd0a{ldW(ylG?Od)Zp>W3jkcHE6A4%fRneh}`iGzYB>9Il}L@l78(szj05X9~? zZP;k7{{|Q4Zj25?1(2i)PSBiwi3A_>Xcgr={g{N3YmXj|#5(N-Z&33CO~SD?-3>Xd z1nk3Mpyw;0=cok-Vt^SMN*CJ!!|$fGn^xu zv>_#GFqYln32wkGYZ>^8O)Vo=fdVwZe)4Eeg!k)qoVV2Thd&2Y)^RwB%sVzk^WT-^ z8S3|04c-r1!LOv4bv%c&e7&&*uwjk!M0lL_u-?kcHYP8W&NWcw)`!KFmbDbASG~jY zH~h=R!WI)KodN_IGX7YG66bC}{BH+YCrM^DzpJI2g4hYGOF-S0)ZhaJAhenO96&nQ z)Im+{0t;?s38@3dROFq&dP9ZLRY3i%?XDH438;M-ancC@dvTo|r#5#d!4y?=VaRM- zD@z#YvlvxA6#>LVw-6Kjm)u32E@#r1wU>nom2$-Z9A0tgrz`J4mrfjPH}bat=sV14}57n z2(oMl|MNMBlayaH$ht}KJ-38`A;g;yXow@9kOJR?52v7szvv6~59K*|{TtyKjQAzm71z8S zl^-x23fiZ7B7*2bq)T!#CZ~Tl@9budo^A|Ess7cdFEz_Ha_;L;jy&aY5|hu1%lQ9F zU#V&wS%%I3pJp&l8SW=Hd?CG^2*n!E*h^ZzKRFP+*(}+Bo|(C_2d7E>VN2>BRG23a{W(~Zf;gP8fO%_O(2nf1 zs9FdwMFT0gqktolL9YNPeG#-DR|FmYaxd`*ylHF>JraUyhnJB!#r<>Pr@v4`wYWvX zchIJ4T!!b-ZniUFF|yw1bsW1Ji>3gI8T?=1a!=TST__ztCm5(ZOnl8dDVrRIFJWf; zdPY@XqcD(nQZD0C+*N?yr4SW^qG|<8ug{dDD_@hEqT|B;ZP%$k#z?uu))2CoUAc-kY??T68k`nXxL{N#QRW{A1c!gXI_@Ua5-Z(m-fP|1az(OY|U?D?v2TL z8gF$^ZlCPK?6MtrAbkElYiLq&s~VMYk8N}g`-ZDqr3NK*6my=rJIfyXB4zM1f9de< zak-e0*_vY*Iyz7|=8!L%^w+&zseI@`8mCL*y@7b`kqu#Go3L{l-48#;(5+rN;#3e| z^kd()Yj4}efQOwnVqWV5LM@IA3p}Ymo;Fl{)F{T(>zCLy^u+c@ex|sG@P+-QmI94&da<(u-FRQ^Q0mF=D2RP(B;ZF7Pr@Jg=52et08>vM{=LJ;ofq0Bxcc8lVKjxO{$PWyrBw;KBacScA5me_wgn1&@CW5Xnvp%>R}u9xV0B z@yKW3x79P}c*zmd&jFLc^*M%qo#!KSkrJMV%XJUnsmiZrWhDLKczf`?~D;R%N;;>lKrh?GRE0+0okLKuf z{{5ts9`bcGiRYLWyfL);)wX&eKO zC)I(CE2n`cTmWm*D0Iv4{@+lSEzst+`tyksw2Sstv0k0ylklP>CSMA)P9F3m<(mYG zx)ffn35>-z$PNC60lnY$PQ;8u1_I8CvYvfq(>fvceUa(ZoTa{9*Ol$)Pq~Kg zf4SYKkTRwGtO4bjFo1r6X>O(?CKewN=V))&M2xnM$Jr}`)oM2UqTbzg*s_^9I#))Z z=<6k)exvcm)$;mEWF z5&iHjb}}Zomum7c>g+;2E`VtDI%h1@^U#a4P1qi=a%sb`o9BdaLfy z`f!MouUvY7o>!{3a)CxjHoaW*>|3ByigD`Dz>n~ul0Db^Y@uMzgGhdMK!SoSWveLt z=Tjf<0;%gX=T^kH&!N0D_0 z!W$RGKICgMt(O{*tcx4`ioI^2^otwUBKO)^N@W6;wXWR2fvUs~n77knk;=qUNSh=y3>F_7jFAdPS1O`+>U z_yWpsq1vh~vM<*{Zre@nr-CXRv^!`taLk(OK4%HZzJczy)g9Qk5lLtwJZvJ*yx#%n z*`;h4VYq(V!7SqQhd(SG%nGEgB$S6>c0`3f52T~S1&6(m@N(KUCH#yuVQ{^R~8sM!dEWz8VlCliLHdtq8!3Nyj8PC0QK{G zyD)USr)TUtvG0FxdmuaQye>gjIq48qU6LE3Wb)W7)VV^%FSe6fI*p#4g>EnC2hwe7 zQ#V-)9tHAyAx5$D%B*b9(XfqS3;QTdS1&I^ciu}N&p)8&tDM5%2>}Ozge#upml~Dt zNU;OTA|&`Fq%+%#93Q)fUkO6u$gapk?!j~fo4xg@6iyVZ$w5aGWj)@K_ck2pVc#^7 z9T0;s0epkYv6+CGS=y!SNIu?uQI;Qm|1l@;DQkNcCEh z{nNFOamxS-Ta6}ho|7qS~-@J3~HVWzS6L_tyR5d8?_bQRnY@b%tQ>aC|p z*jB)L^8*^&45B6`RT|q=u!SHW`WvOm3ryETG&cvk#b@@n?6~yubJ9nl5d9uJL-Dx z6srxAJsKOPHI56yuaoOyHU=c+>sq>nD86(>R4?}CP4_B{J~F8guTD#xW-IALFpfOft|Z!5ybkFi$&h30Bu4-6q+~3H}H%xQ`R;)CVXFWHP0KU8AFFpg_&hEaaf7sGlefvR86INUGRa zON{W*jTH*{0O>mf-urM)IM%t#4K75_y>9;AnG!<2bFke`zl@OM+!a0P1h}%3m2b3? z?|EWl2m{!b;6h#lzXeZQpJu&8pXj2U znVb-f%u(M~B#ao5?yzRxcks)`3>%p}`D!lP<+^E3o-E6XJv8yHPr$uqHR92wdUKza zs`Tg5#%~|c|J?no-yjQkW7ZNX5kJsIq2dGo3gqMg|6E=dTgqoU2nX=pAvelO-e)UO zaI$i(_TR3!+Bb8ZATCmJo~Kda=V;Pj5>)C}g#W0bUkBM;Sce&zC~6Lb?gosLZCifi zXoJv*J#u+PLMv#OnOD)&x}`Es@n6qvTGWSQP8vSUE~@=<7X>gT7{Fi$EzY9uUqMuln8yDqR&}Td2;<)?88uuKIB69LQ zCDdQGy46U*PM&bJ`xX!UXX2*i4%qxm++jDT1M+XZ#Z;B!9!va}Y5w{@n_ZO*B`kn} zuXz$Q-}`yCp({}!&KfxM^b7_1-wv>u5YoWBgn-3cTi{;@+*R_rU55RB!OMeVKuKe_ zUd9$(ficEE$=!9DSFbY$-3JE2Wo!Lc1Z3@Q9)SM1QK|jr%rl;!;P=<_Y}UeFsWSPY zATw&lW8{aw5LcfG>uA1h^4h`?n!Mp}&70qMxV9=LZfxIU@_+~H^)#AV+5Z7IdJzv& zfjN`OhR~LZa#<{6XJo9e*0u&}_rH>cXBUBscG#OpCz3|#MZdHptIRIx4Rh0>#z%^TiRV>HU ztc67=_I<3>@E&9!BOJX0^u}k^lTD1%!9s_D^yJ{%(e6oMuN&Bl_+M{&s=wA3jrLc> zC++94mfXKDf%>RFfWbe516lx4zghPZoH_xNAmu@G$aD7DMYSYilO#&q$NnLenpIzc z7$YA#nlFcnL)7sF>;i-z6*N_J}kMT`=bDw?XH@PJU2Wwo;( z<_u-m{Dz55Li+ztqG5~Hh`qG;tFIRHaUK=jcOwq1Cgv#GS6^$P!<<{g+nRub46>ri zQ)j&zwxuv+_!hzq7@UmzWMUtEBLHwM;LVT0IPcv$eZR3oMf80kW6eWkK zr5}Vof5~00()ushrLNb7&|X*4)?HvvbiQ+w&k|-dqtJT3k?G@z0#pGY@h?hYaB(m21tB8K)WvDmCXcr!Jm}u6xOv3#CA$z|={F78i>_xiE!?d8 zV|c-(tX76tu2=Z$$-N!;OwyHZ6B9^VITSX|K-E&D+aeZLO>GR^ah{_x@6z=dN=pz7`^E_v2Y(= z;*YL)8Hx~lI5U#7>m=H=y4NU4t=<>wEZ?dlXaq8NZ9qHg!HKK~Cq?S};#9oRit}%% zG^b39K(?tSdWX^NC(Tle=DP@r2dL~c_mXcg>q^0$FuB)>G@D-N@`PC+L-$&F)3b7- zHrXc|`Mr-%!lUj{%T|2(j(a&l29{^o%z{?LhuCDvpvVr>XD2V`Tp-273|fC8eWbi|A;eMs_gr??q!GFNw=Rm6KPdfQ@%pYjvU0&pjp+3m8 z|Ecv+sK2ZJkFRZ|ZNK72-CgQmmPDpGRbyLmLt^`O>*U=N^b7?q(g&ztcvQSSn-l(~ zv=VF-2CU&&JR{+yrLlOf#xKj=MR7g*D+4Kg(S?47&J7ot&9OVxCHt3pKEVm@AXRVc z8D_Wrd`LI~cWN$bvl-{jUJB*L;&6EnzKR-lY zcXMnVykBw)V`YS+luY-&aAlgFCQ$j?e2^R= zsUM_DgAYl8oor>E1wdNWcmDJXsH|(C1Rm6;^z(-fV|5CrIGIHm)=tQW{LKvrob31DS*Q$j7*D5bP zSD~Y(AUq4X-kdukCn|M|zBiDFOR+uG(51NCaiR+}& zKR#*8KJfIa`ig#IxP(4h9f;DL8a&{^<7JqwzBRhZCmUC4Gl{W3TeKF9r|UxgvE+qz zfT9QsX4Yi^XXtEBtbXf9=hmAz?7iQJD}qxXEVSLlTREo#zSYJq>ciWs=47buBD%;M z)LW#3{x*E|F&g6jqsuulVF12hyJJDWbLi)p9+m#*_A)jQ>-kv4lD9gSO8IVtw>w%A z56+>Z*yP19_BJH?5%NmfrWuXYX2pnS2QkVEPsaBJt2NO?`+8Y{(4!PJyw7oq9eD5q zLb5Id{EcsskzQ5>a&kBk0L_aca@3S1iUw#LWYU#TnHEGaD?SW;VAD-auKmjN=s>nD z|A>V3$2ziE>e-6bcWG+wiZn0sx!u`pF}69)Etd>e#^&y3OgyMrR;yHAfK|2PpkqS# z*-veu7_xy(0X&tO;fHV$MQZ5)%*vMcV~i4mD!UG6XS0S6YsImPKO^qpQy5& zb?n4p$lo6>2fX$0fEDNXh+Xtjt?otNOUNr@saWbI|K=N@^ogTvx?N31vkRh3+~<^L z5bM}V8CQtiB843uNK&qWBc_g-2Tc!?H_fIOT`4U$iAvPar!yi!#l$s5xFqg&HBFLo z5d81mNP=Jr31IbRyBT8clRbo}R4_~>l@Gm+plU5ldlz86yVeSPZxbb=h<=Rbbm1?$ zf))C3XBkKMwz+vcdB>aabI>W1bm+I_@_g4Q`_-PfSmQ)OlNLlaIF{!%Tz>2FOtdgq z1Yh4hL%0$(1eX72?R^D>!;+fC76Z}}NJ-7?fzynZwRP3rS8ddc*x6;;Si8>^;9lx@ z^&R{JOu`NZ(O8XC?SPnjHs?e@4lt~5xVNf<@SR)`$wT&Mf9kti7;05V-|gMxHdgEj zJLkDKDmIqgXV++DA=2Fb(E90J(nB*V#hRhLmW zHt>6JUxvSzytC+{5OFyy6-BbJT83+v9oOU-0-+{i7AQKH*SjXGg%@UWL1KyXx=kl` zOjTZV8^sY~7$*6G<WR*wty}%vkzMo|#w(-2 z*@=~v-pwHxzc2*_t(TFSSx{$w3M`W#9hCDfM1Q5?!cKc8KrpCdg(s z+1Ei2Sw3zVKl!8fs@$^Pu%4aR`xYOmu42A{Y*l*A26~jNPbRZ$XlK&FKEUNeCuvAd ze^f$_DJsiM&MujR)g}`rG7%^N(=IxzoihdUHkKIi?xeF(?|(r(LSBb?jJ}5VyD%0*br_%z zPw5bb#9{f*d#{RV8|9*{+Z{OfmJ@E>D{eC zjb4n`Bkc@_1NEs`bn5#(vQ#!A0iX3wb_xY@O&gfH*%h-#9h9vUr1)GLZ6)G`l&ztA zX#+jfH029i=o&!)qHkqnzOWKn0F<3ZTCmP!nB(6L!2EE-p4+tp_AA&o*|4qVfghQi zy0dg!n;w^uYU)hs)bfLjFG7?`H|9>gfmd1K8_{6r9|q*Y)Hgb8_t=5^6bl{P0T)L_ z>nC&xn`bsh*tr_}t$ja>#PpEajKXqzVYsp2@tL0$z<7ymh;%9FStU10dlk`KYdveD zwg-$)7zQuTM8n*cpYN)q!#EH%50Q%bO0=vibUDM#=bW3^>%)8oA*TZu1w^$$)zWWa zg*HT)$`Ya@o1#f892cyzor>DG>wHl|B=UJ?ej=J#4)F)F7_Vf#;`b`thcG(~@nEEI z=w&8DH4FwkeR>J;|FLrc{{};6q1cMB(ialYC!3p0{~5)D8Rqp+8KOn zJy$^wF6d!M$4f1_E___He<>Rq^{1IXnKcx2k&w?0NPXyZt<|;l`=C@@$EsJ$xOa2- zwN-S-#CK491vs9~N00txl}O}FQQ)f$39p*1f_fW5W;W%^qjQX-sR9#Ru=r!zCHjch_^2<2kPi5pk$@ZAoyh;CAt9F4C|*=&?B(-_QF z{3L>^&e_X8TF4(7*^G9^IC>6zpV4@Ql&?E%nOL{t5!FPKs*W@hzuS9Pt54w}YKp)1 zDvIG!C|o~}QSqMgA=yp|#{peH+scYN?kQ)0h>h{mP0o}efN z)}H?ow4w3v^8xPhk!^9}<1(v1r}`q?$x19_^KCe(-azfXT-zEq0qoqzGnGvl1RKz_j$R_8(Ch;BhJ9t+tw?$Th z87rkHMUOibl5()m-e|(}hbE4qhZAnF)X{G}dfBaZ{@GE_NJWyQsR?}(RLkmqrj(VT zkv_0|!zH(Kyn&)A!V)uWJYyG_UnU8cOp6|+nn;UK)bj5GAuG+-6 zszKresx_G}HSF;<%>~K9>G#hw9(O64y{gd8eCjQ}_%aVxG#K1-rJw78o!K1G{;BGs z%N_IM7vRT@EPj>k$K68TXN@jB>@L*%#esbO7eB-+b-4%d{#R^*17P|6uia2nlf}C? z*?oxW^W^3Q)K1;q(oT(&5lTG2Ac~UDHjpla-=A`%FS1#mU>y@7+^I+Wp_Q!Hdou2CGih=z~$9hoS1*zLU zm5Yee0P957-MXkDu?DWE!3&pg&ros1gYmsmiNPq-kzk_%BmGdj zg2B3dzD{gP`oWESE$=blxNIFZg-;x!biU#y-hk1##SrT0OC;YV+5QISc9K7_`$Z}+ zxTrpI=nwP4{nwP4THb@Q2R$X{H81~jo}dKmsQH40)(I(wf`c&qU|}CF7st;&yh{(d z&OGJ*#VqKYZd`mbFi{RO+qo4v!q$Tm2N9oH7BsIeT!`a7P}_t zU||Dmr`8H5x7FO?{zG3 z7Jj_?I%X*B3mSiGuLCQ`OPaEyK(7(qqE%jEel$2BXJq@r3|0b0;C-PWGIxR4XZ*|> zpG-Y4RTV5C0_Dia~Xw!XJ9EVm9_x?Xgs%2&eFsVM=i4Nx>~aQCY?p0KZLHtG_qHvK8cJJcj(MN8=g+|f!;0;TKlT5-tL(2gSTvz=Lzh? zl30B}wAR`sa55E_x1?LY#+qZ=^bsRxDy9@Yl>+hm?kX!#msT*pMqEP*b8xU_y?&rf z*UWB4J=?oW!qAHey1F}#nTT7q@gUPzsamhWOBvG|H(N5&ZPMJ6C0=?<_xHdFJc&yKcQ2r5&hkC#EY8 zOwB9D6}}cv2=4P!j{B&lJWwC^3Sk?Mp4{x91@+B9n#@V`H{YaQ96o_1KoGdA+Z5`f zL7Ze16d1TWS$KP>loA^SA??yD;cN_7Ho$AND0OzwS{V_m&GK!6z5)e^Zj!V&njQQS z(LYI0_l${jyH^5Yk%9Tq3;ME7bYiwntB*8jMhugH)>rAI@um#N|7B^0DmXNCp*FBe zE}MUS0Q>y$;&|7Ex;5ppgMKUv{kTSoq8)0&6~=D(u;2Qen-Fv9PawA-=|BVJ4Lh;5 zHe#7h{0;YC`P&~FK+~#%M{f<~{1}t?eBd*;_HuRts6;ef8IQ+4+3?7pMn17yC_-MO zH#BP2RoJM9{%6?L z5msHRSe-<@O?$Qj63!YI*tx^**wC^4({gZ86QrB-zA-PaZ=D@|(7ag$-j$dIUo_tt zfu-vw6=&|Zozdwc*AnKO9u46iE;_DOlVg2|p zJ|96$Q@X3DosJr8cvIf@dCrZ@116ULr{Q6?y3l#4(6CLDGmUEdUR_-KqDXi!XfOk5 zVHcVAg@5ky&!O8^kB6nt&r9jD^>(TcZ1h@7^0oSL-ZR=`biHh`;o&5JPY*&l!^JpT zyyrsD4pQQmIy{ef6S8KAQ6Z0?G2%7jsxJDabvxv5647&Dux$O3%QK?>@U<@ti($Ib z`jS(o0g%$#GFea&@T?`l3#pCn7!@B_Ph-DuNOQHixr(BH3u&Sc?Xitjr(vjczD8!Y zC%kxQ*_Ee9@~b*g0R9jA^3uBE*uOxYo(cEMD)y4Q{oh;K_2Ew5Rj*Y(V-xGP^-_~J zzPNRrvFNlvhT&jcyA0?2)WNn-(PnSak379%o*6=q)rIm9xt(luwBa3^youCDw|j#J zhs%-=sCqMIP7X#&T*KMh$C;^8uPV}wL}EA75Q1vnVlSi)_om{G=kLj#N#G)~Zn}z| z&D+^>ancc6STms4?IAZ&1qsVov720#%DU#@yp*kk^7r5y%d8nIt3Gz2*VZFXpq2PZR#n z)@!<9zR(}#LF>Oyxpl9V?EFq|i&4BR!3Sb%b|LI0f&ATDTg ztpp~NoP`&M!WR2YcA4Lciv>Sb6qBzOdT#D7;k7KDTENoA9$Zon@H0v0yEWU#Fj_4~ z5>`@V28o5w;1nH_x$RsaCt6`V`|2K7y2W8AsbLFe)=2*6MZP(_`fJsXNIL_t=7B9P zSjv%bTm9A_;wi#Ld}IF@7yHMMhbpB@)DA4OCMQ6poij0Erj&iuQo>qx$(c%sqouQV zf5Hp-cCv7^>*$69+_sj{8rS@eDDye$pP%=uwWG?&nPb`THSS2b=rQ)Jf7 z;2;x)HNVw!j|OsOI!lIXx8J;NZSXqd&k^?KdQrk#^p`ujL-G9~R$q#ugyc$t}1!X@=nWxnQx@LYAuY;NIa>62Y5<>_~BZ8?Ne3M50Ww&o7845WANzTQ9s-IuoQVOi8jd9td|+FO4o0GH|CQR;*-ba zST5Vw*s+{U;|N!|%=J93QE-ft^r#wkzx>l{&4!&ZFhsCs!qnK`;8D(B>oSFa-w%kT zcRqO{k%ndy4qZ%s%H@E2yy1xn=B~CDmHLn3gdUTZ3z>ayGg61n&{YcWZMS;oSw z6q%@ESNZ)6)8YP3QoCck7o*PxcYe?nV|lc-12RzI*M9S8IXDGC2{6iLuCg@;>fMJG zQ=3WN*{;#lKmy3-2iF4-o8)DJT5kp-w;TCt$4Jx1yHcAGmtvi4{^svSq3!2-z=SUa zcAlia>pD#xTFu$ia49#0CDmNY&sF*Objb9GG3I08C+F~ zE5djw9{nAT?D4x7ZJH1>~sMv3os$SdJ zu90S85q=PuC$uzJ;YT>r5Wo^)VnJpPv-#ejwE1GS`pS|Qp^ov#}`#{SU$HN=UVM7kb9krRWg zopM|+C{FFOdAL&WPtBJwU-&imP}amB&MjhkB9Q&_8L~o2Y4luHuo%zf3z^yo8uU}N}=s=l^XJB1i166QOlN(oKxsh31a{FTn1Hsi9fzl zaE?|x(8fk#GEi%#Y&JU;x}muDre5yr<=C5DGgY$DRmxxMe<$BCxC!CO`jPbG$(`t+ z)Uppl@85Txi$4G5#v|Jv1^z4gUvDF^bbu(D%mf%IKB`fh{Ev6U#-x>91)k90((pGP z%%{|fcG-^7v|mej^Fp8JYB|*GhXFj{XV6unQ0t6q*psCdX@BEGsYdk6eL3uQmxZ7B zb9|tSKBREe`s}^IImgk=9fgThq}b-)3&X7rGV#>gGb}Eb>C><#&dq;3Z$6yJ6?skL zjJIaG)=0T(F_`bxl?V8|v_qj>8SQ0dZCWbf4reNXD>@!*1GO4(+!12$OU0pW)pBtx z%!a5T_8rOy*d`VFu=Kc<%QokSfM8*Q1pEy)bwROW`X29TZF+;HcM=~}x`rFVDVnbE zY&kq=$GnMZG zC679>zauk0rLvl~6V~xs6nC%*Er`*uyJV6eS|RrB&6@1XwUAQ7`SZo@Gd7c>zN^3R z8#Pv_@nS9UgTGej`C@Fqp`6wayVHaoRf@G$VV6qeo@8-JNRFkyEdn)hzmg$=+{Z$^92_6(sJpYuIjY9IE z&Jdy)n+~#zAaIB8zFajJQx0?UWHJ<-Du%r zLQGfsI0=e9pcKGH{3o6yh0(4{^wC2vqHj7&Wb5zWuHn$OmxvSWCN3V?EY^KS90T+; zu9gbC4A8>-Xlt=CgsZ_h>ehlJSdOh$$>=rR6**Zlroyo${9TdL#n`=KnxYOQ=a=ge zgE$vvSn9RJz=o8o2X9zph8Z!ovee6sCzXH^jAsfJpTkTA$GN;GV=idcjoGF!3wYn| zi}W(I*PWmGiBy0H&ieBk&vV=%?3|x`4k9v6oH?>$soRC0lGr zbP48tvslYMYh$-~^GA;Vo-1f+SKL^je;loWa{D34j2$IT_UD#k)kF#JxeKzBOz;_~ z)DS0^MMwa$RIt>kE`@@8!Tc33F?*6R6+3=f>U(5;B5dSlS*WKb^uyr z!pSG)8e($4^39$(;cJg%YGo)89e9?!2D%6#9CvG~)d&m+Xz}G5a`HWY+xvoG$si3% zt_}ITAgXL@It5!co`8FGD?TWhE35H)xsS=Z{WmpLQD0D@41O}iCa_$8-P$-CvFKZ* z9%-ELWZm(Tu&i$j+~{a87pK2wpC9Kg9aR1Km+RVC1K{~1O2mi}4fKch3g6J|&;0Rt!D*n~d$O1vT!TSeFkESR zdbeQ5=GGXg1onqkd3pKTdSu~MLs_5F9Exx*)j;SWlUP5Zp5S7K>`f3XwKQKd8QuC0 z@&WEjN#H4t53TWDXZrZib#UmbKqH&wY zoO+At$!T#R>lqL>o!?P&^i*cWJ0BIZmzoxH327Apc0=!VrAoqbN(8yWkco-e^r z&I9I(RT|!mM>*BD=6#RA1 zd&LqoYO$YVd(!HplhnPJb~bWvuBCZrj;jYdK=#EgTjjZCTy?@(S7%*?;`VbLJUO8LbxS%ag@`Wu))x<~W{%@qLMd zq6-%)p)Za+z0F_nRY+bqwM)K&B2`1q=5+e)EnI457Z)R6n136g^L#Kik7b$A=k|Pj zY(L%icT#W0W`^-s9QYzpf)H)tl)W+D%xYI<-P!_d_WcRAEupZN*fl zrie0c#={&fnJbfNfs1CDD*S)_xR?LJT(=|(H+uSh;uxW{JQ2#>>>MAJJ?i{>X1)Yj zmHJALktRO*94phOEhhH5hc{_}jj0NTrD+;!lbtelDh}X-{ z_c#hM4O2nESe?@T^7V{DV81$^FA;2P2a3UELcRs`qj%IYmjcPbVwm=T&U>AdF0rKm zmCl_nlvA%l^~5$nlt;XnoYGIN=KXMzAGZ=n-j&}X;B6MYJ~<$_gx?%?#TN_JfkA~4 z%!oiiyymQ)208;$Gas|ZZ?(0m`**80o>|e)6UXz7==P1XShoO*Dt)5yX9c&`$A5kD zqs=wk!L~_=@Ht4KVgj0Q%9LC3pe>D4?azw{AN2lFoc-$2DWiwDVw5_HB=ZU9q)k)1 z3Hz~e>vxW$;1KBR(#W?hVHC{w*kdv*ZZr_M&U15e*HD$@}Su(*P8`riw@92M{13%I7hvj z*4E}VLv}ZwVu)B483RucJv>_-&e#2KVTFhxdaH7xa%DUCrM5z5Y2RjJl8{SyQ%{%;=H2O}zV3k~pu#8Az(!+vN=3Mv4f1WD z^p2dHcN1pm!prO%mFLvnXBv9mg5S)?himq5FX`>jA=#L@|NG{B)GLDzfPYJzp@Oj) zd6GVlC+@biY{({W!nC?Xm~RMKHm=B*6VXAFDyfb5KW7P9h=q`73+qNxzp>f1(PEP} z@?%j$Hx1%nvtHtK2Bo~fu*n;+%t%Y0%l7dX!rOv(VUufUAtK7e{ zKFfZwZGZ_-6C7>lFy9Z(%{ENtiEz-=t2ARa13Uym#DpIMwYNB-*e?c`k$ZBlTJ>Ri zm_H#e6ua|Z26Q3k^;z=ix6GKnM^%cAv z-FJ@q-b()y+{=?ulfCm=K0nMp9yU>y6SOI@7hcj;vTOYmN-0PSod-qasif`?NV<;} zb_N_eSdU{{OzjREiLk}`%QK5XfI#N>@)Gr4R&%&i4G{Yx%!k*KNuPrDfFcB^Q7lRr zh4xbd8`3PgCJLW}@SN}l)brya1mj5^VcEEmD>Fd}iJPwyF#SHx;Yg#hyh%eqFM-Rf84t_LtTULo_+Rgxgv zeI;QV#u7KKWd`WznHoc;aLP&6y(R2x2md0IB$$oF!}OgLZASdZ(vwT^&Z7A0e&XGL zdoLTdk0(e#a)W+K>a`g4L~RNi?c9L(ke`U0C`Q~0P`sH_Jx2IURtuO8W|j)9-xVYL znhkB4)OLaS6=L$oBt^Z=hgEw*ewF(D8;fujF)cLwu%vW&QOVueC(zTysdoeHl-B_B zF0vM_o|A#TqJFdTOwl?=jMoZBDlYAb>u%s=OZJCA6%zX_C^?p4B&-qD$L>@c)Chqv zP%pNUAPwDKTa5MVM1#D{S03Z2bG;!Ao(Oi#tdY+8q@G=nmmMsNmJ@=e&@$^8gY?Cz zDBC^TAf`EDUPata8fk!-x1z0;7?9AP4_b%PW#J5T9+eEiHvP|-_WuXBT~iEEOcS0; z+wz2_OmV&U1o2m?)DvnxF(0h%$sS~klm@MX+p%7V#x7ENk0R@G0qmWI?ArKZEz9|$ z1*~k9K%%eKsi+6`NNFPVk;HwKM$2VrnS?-7{xjNzfBCuYeIC0NXF=Qu&@3o2JCjUZ z$YHgFQkfx3`>6G4SRg5KeWujprCg}e?(>J(9+-Zi()M-q&uy>R`x-tn z@d)_suUyOl4_cqf?{rfE;UuA1SrN``E533#_iR+a>u7={cl_#P?@CeSgeq3$yH#!6 zfQ}f}qndE|8_!G=Vt7$iGpyC$`qhPxdmY0EajIkWaUnWDse~pRqBPip9{2Wv#Sl=_v#U-EMOO($IeAMT;3Xu*`?=W)Ay-XKHE}?5<_0G zut*mt0}_X#K*Qpwt`BtB>t5k!Pq>dmC-52LN*|*iH!Svq@wv0&$&4pbGPhJ9w9Y9Z zXu3h0*9ULrP3QU8Y?`z)8YMNxa{0Anz2I{v?8maS3ibue2iON0E6c37cMb6ccQ(OU zIp1b9nq|+A9HY{20(46RnLH{a=Ev`1j&?wNdvOS;_sI%6%xG0&z2+b@lj=%vz)*?) z))?gDO~iUlp*NhQauL~`1q^d__gmEXcv=@JFLw;v*E(X!a^~Kb#=nRA?!2Z+fzH6! zUWze(;Tfg_E?W{#9-<KX&TR9 zk#cq*6K%{-C4BIJ>RVPvsVZew&K@cT2x50Ub%7~tzoAEK@#1nH;3CY$;R2AHn>9jh zCbIt+PN542W#4!_K_?Ao&QhWn3lTwzTlxOxa}^@f+ejLIfqh)dtzk$sl@IN9VHIp~ zWRiX^ty$o7-JSP1m|YUl!fg`)PDY~=@MpU_@upcs+~Y3EFl$52$)$@($3;s~bX(}f zk4LqLLkCA>w7*Xk#LDTwCtK&1&B7kaDP~*j_|{zD(=Mj= z2i3j%l=C<^dozb*!x66cS_6BortDU*5hI2qS^#*zd|~UphC|TJUhu-ljs=UBwiKmp z3}r5X{B(mCMmaN)lMuVJc&pr9lQ#YhZk!ZR0)6LXA;NnR=EAE& zPa(?D{V^mof*+T=jLwl6u=-09K}N!)w(5R=%8i35VIp_522V1d=}=-kdDmh{6C0Lq zaWAfE7gUfZ*n1R3S z4#Lb6wL9ZC1!8Z1-258eb!cMkxutSVHiw6mN)!@BY8wWCq31YNXp}UMn)rV3 zIcd15^v?;pP@V_?z1dNj_58>ig8LlGhwov$o5?XkzGG$UGl$BHsE+8CYqI6vjv2y5 z`gBb>2sgsz5jgl2KZWVJeSj(pCKo7}rXUbYd{3>m)UDxA+s7c0v-PD!+ZC}y$(cdp zFM%mMGR#*$TS8!;qsZasVw+M_Kr$_ZP8_>SIKfMAuud=cg z^%7pC*noTS61I|E*nl&BX?F_=w}i=6AEE1u(e$0>IR~**Smq}dI_Ly3ktBzaBCFCk z!Pk-42K#NNUN-kDiM<5-IXR4zdl74EDfHYGMV?|xYjq~ySVz#s`uvkf!Xjhv!C~JU z4|1#R2)eRr_4JKEud!a1Y<-TetN)KAPy{%|m{by;FpPXrHHATN_eIRBR-}c)CIu2G zK1|7=_&kQHA*!Hja|N&*_xm;MvgJD*e_Fya3%Wp4T4-OK^1N^5J*Z)cpm`+F#-@5J&>kmX3 zD~@}21(f9z^hfs7MAg&e{HiPp2WmRc(z9;hVT(y%t5{l;<$SdtuxoEJ3?%!~jGiu} z3PZlzj2)S46+^gZr|c-9ii=8Lhq~JQ+xL8lZ$_wM=*vVWVZA=yY(cKB+8#7Za5j$3 z&6cXwV5NeNP1Z7mE!Ftac23vDlyPm@@cg{jK~pvuiWiI{-eV}vp~mho?DQR5J(oNE zDjCUq<>#C+)X=rn0DzrI9sPXBY;jf_K&|OM_*rGffQ?_4CDTerJc12XiRWK>(Zt-&V@6PB5{ES(+Djz zQ*49!^zK)_Hwl}{X1es$_=TE39CGYUh3=IzAWS6T;H4a`r&-G*kai%N;YY{D5H}W{ z&2XImPE`M}X-ND%yHevxoo$9=IFuFfVM8nPaUZ6`C|4)&WxOl!i_LF}T3U$sC$A9L zNM=wFynCf7N@t1?l_KI+{qIe_2e4_=Ar#t?+D57XK81cg09|4ACpc!q=H3gZt9RL9 z>@_Bk#yowYG9nQ~wq*Bm>%Ubo1F4dAYV5JhLg7Dw6K;b+=D)#=_vCaH@-ytp^<_7A zWlBuTckpTdx3KG`akQ%Y5bcud^l-amEc*E%pEqMg^(y(UlY@(8plclvLeMN%hLcgZf% z>tOy0-*e3EE4eFgQu7!ftbKRTAQR{Jg-)F9gnW@r{g(3qQz%N89E7v1P1mfm2#&L* z(UkD!Os{OioPV{wQc$;7{7Y%c$Cgv(UT*zhmGivXmCj!hC)=dMgGIl&?-Cw_nqg!q zVH>c!DwEsHL%eYBWed9xlSM|5v$RXN2Qv;c@46)Vsb|9(d=n94@a8BY>Y(+f+b341 zu-^lM*&`M~=fG2F8R=n_($W_6o=p6kjPv_y8ZwuB8#xklL$sZKQM8Ow77t7H4SogV zEQm7N=RXZgU`a7ZcgCFL*alLE@vaSte@0r^Zi zsjr+^S)Mt0FyF`%attQ{kbr}Cg*-onK?^Q6`Fu!*)wlGq@DpMmfe&{;y^Kt9m<0Nx z6t>6f_Q9*UWR@D$RiH4_qTHk$A2ee5j-cebiM;!QX~G{TzKwy^EPfZWkk?b@j9vm3xE$3PHKzY*t3^t6?r2e78g64nn!OC zULx_mmoXfc;+_vF(I4t>Z~j4i({z`%^YXKp_E#e(+sJky3iBLv;*v}bQky_kSS(<) z?mRF5KRms8I8^^1{$DBHEhrMQmP#l~%Fa}hN=(@mhGZ%0ke!)ICF>;1BwG<8Yh)W{ zvW|W1yBQ1yV@zg@G5go&`}->4n>w3NJ=eh64z3o47y7BI^d_C0T3g@U0 zf}(O^a1tU&!XcWnYgRXgoak+&VsPV?fTIy1YX5J}5IW9Tp2s&NlJo0NMZ-FD8%SRo zohaXCF*}w!xv~HEzz&Jrm*KmbQVE>7b9R=Su-hWwqhG}s zq*n=OWBo^Go>u%C0I{{Aog(t*Uw$wTns}Mj#mX9nG-Ub$>X_Ek(Xy~$o_>GZykj9w=<7E9pY|Y*mFBIRSfVsuq!lGi;Ws7YBZ9JA}N%q z1)ogpe>Ph)0PlNy{A(Ms^j4g3r>;tX9Z60$^;h1#6Inns}wG0@^T(Rj!$O&K1hJ2M(~fj&^7!zqK0OEJ8f(8 z+H;^CPM9w9dZ&GPMF!8Jxqj?oZlaN07$-N1IE)9~C2|3cxJGAU!o8d-?Mh$-3e}^N zb8EiI+oUp&_W#Sa|J`7?TO95dU=+j7`2+p)qE0rpInRx94n|mCU)Vi6a4M8{ZmJ1- zJd*XZteYI}A!~1tnnM_kT9Vcwo}ffd{2Dp4+o(Tt&Z1145`?Wg#?ba>$~qcIhF^!q z)l-AN28(VsXM1FrcOxX}I_!hTa^B@Y-yUUg`bw&(!cRSBiAm{yT=LYML_&gsD$IkN z)u!49;I6T`x&~N3{}OL>u$0tq`W^PRU)Jh?Kkc`J+F&wHi~fEZjP3d&s8#;oX!2~` zU9EL*>PJj6rmj?|RivO()Bz>u`hqwajm4Gzi)Oa6Hk5kYsOIRMvyUYEsn}@+zWree%Vl0QIJ*)aZ7G_ zMFWvLeGDQd5~|GQPtNO1+rjrIDfer(MP0No*mx)dAb0d=@;)wK)DT~1gFeUhUTJSW z4jUm0|x8)Z;ZQ zxSFfw5p_R%Q$>{>9ajn)Pm2mz?>!xf+?reuqB9L)lW%E~#mvTE&U?6|$^OBRBqGJ} z+(o(U<+xXryhKk(cl4=J-zWX73|q&Q$W->Q-`9jsuyZR$%WfYT>UvH>Uq3|fy{P<# z{maE(eWWHY8+_o&+}n^q?|!u|cvthY*8Bb9%9u{(-}>?qce0>80DPn2rDRyxsj2+q z$?&i<)XXu-vIO;t9@J+GZ0teA&F!qzuq)fzVgUWnd9^s)=M_Yze~30`;`5@NXN8M1 zGiZkwb^~S&!Q3Ho8_%;^ zZ!wkSJp9_^q^(d7sRxjMY#`6k!#dP_`3iyM;g~U|mJ(hVMfjZ~P1feD|5}I1t>$#0SggG) z_60e|JXo#Kf+ZE7xN*2?eUSY5u_KOli?}@z!hPvRcgf<$UYf3rP^*)Sh!CJW_0;zq zowN5S^PS}6zaMxs(7G__>H9VGRlTG%r^%eR=Af0tq{B=cqbAUsq&)o(b!x@)THerS zqfJ%fq~uQYG$FiX8NW+OANBpJ+XZlyqo>>k&XAl-LS}zbtLAs3Cj**WjF9=}`0o)~ z(ZaQLFKnTFeWNb{?rPANG7Ut4=q3@Vxbz|tA+kF9(Hp>bhB@Nl;{GO13+D$o72YBD z`^D)mZliE=P29&m3^OshnMU&|%Gl(c*!d8rRSuh+dYGu|G5SUH#yZqMvmjw$e?sq* ztW)3b(VGKs;k5n6%*;Z^Mm%m8BYZE_eeu!s9ej|bFE`~MG}kB{$HOmvFZ9jL40Ox) zgf}Kja#eSRkLUl*!$+ROaWAj^3We|qG5904ZcF{8xn9kjlp!U#e^UhU4t&|s&`}oT z-XLP!5C;txv}*{_RrcUL%!#mr;g^t24BOR$yU}mUX^%njb@CghUKxEL&eA0(fP?WX zRyB^<^K#@!hbwYP)Qru;ye|&L+$R?Cn@}4`UdRa||KvNv{6|;k2ssOb#tUN)eokgL zh#6>>7*Tx+wt{+%0`P~Y>_nu#$p-BysdHu3tA#cIS-M}VD)=OCM-$c%F2ZqJxG_BM z`*iiRP2nWjDQ~moG;L-dM_esuDzi8BbuTv|_;2V}qF@w(v#}Ui@%c4566Xp*`!DKa zjY>60HG9ccpf*<1hDQM8Jdzkv>B?cgSm;r!ikg8$?P<5ej+jWSkL?MgYZWifux<~R&>h}{Kl!2hv%mfha95g| zUO9i@0heMx_R?C6Ld*-S*PNmGawcAS)V4@t%zK2DPe*V2?|iMuLmp#^Wl#Rkx65y%vy6Ew1-da)hzyfpxoT)mV^Rm&rLNFb}$DtpM$g6 zxn_}r4jnBH$~Bu>oWnewk=!2{YQ*II$)l^hk0{djQtR93orR`Dzw>PKLC1)x0Ca>> zXuj-&Zw}Xq|9uy-c63#Lad`P}Z?HW5$l#m%Zt{x!1-E!NeZ*N}5_>!R6AA7uJ6h@g zYd9YZGOejl;DC)v9yF%Vo}6`Id{lg9?^%6@cx}SEPeuD@5A*dOaBgm}d}zfTeVXp3 zxDo5_#C{Q(_L63zrv|{KIYIK>3LpPiG3cU%trXtz-y3F`KqAL->u#iH&WAGpm^!tC z==&VuWGSOcA)@kq%%iX)oXGB{ z%0p^(Z%f-%X{sEj0PeqdM;_ROiOJ7t{t_I}wx2h4xM<_=R53f(#mt0NZxIemaC{yB zCYlNv+;mIYe}zcI*zmr%r$L=PWq!-`Zikze=vn`6nNFfD7Nm$@T{+?-XO}m*UluKt{DGvt;~3JKT5NL{A#uh<&?L+^W5X<|8{2oJhsvNnQp!z5*Z?? zmb+QXzQg_89KIyb#Uxs41KIQ0b)RT$QErc6z3?Py6P|WSpDGQ$^cZTt@kW<6=765> zZ)JbUaWH+j(f1pRu&RvyRiU{$CYH)18Ng~pfYUfOSBK;-C@73al#o@4g|g25qAS);ogIsta8`y}%SvFW z5IF2O&*a5ilFngG4Ol$jQ^f0459Xw^%lzK>8Z?O&=EQnX1JO^0hX9Db=TCH<-mSr2 zWf9^oj&UtmTldC!mvXQE>eBuNN;?bacPMMG6T(9RA1Cv&{2tNf4h26hzV`26*Ff#% zZpCw{ly=0pm?*A|nP!;gA2A}l=VIfmmh7GA(bAV~Sx2Zp8`6jFBIWwl{O4n~70u3%u@rE?f7|D!F~NpriWMds?=<}`?m3=A0v1dC zs&2rxuW1|^gS>foWQ_9Y+O9C${@$PH_JsYirWCoZe=G+eBg8o^0%8Syp7U2zTOF!I zJXkSI<1^XXF|`!Rwa>wb`r@D4T&+wliVFGp`?K5#WH~aWptiJLG9v%N%I3YR0-xRp zZK@fKaBLS4ZSk$@PIiXZ#RA{)_@x0m$1$OLmh+0?{+1p~%(ql~LeK>iU9R_XqY@+I zcYL4$128draXeJctDTwbl<C<19V!3wCV?=h;sLItD;I?u{?VsrM@iKalX(l z)d{;r-^WF|TSr?m@+i8$*DV^;E)BQa-qR0rjDsQIG^v_%$g5Qb#m{~UBGJn&YzSb# z3Cm3qaELB$x&0DZWACq}T1Gkh6wv@GJimdwm;KeipCR;);(QP4nSG@MHk(XuJdD4U zapv(P(d=^R^7_J^T+eF~`wk@h{*UfcCSx=`S^^>{-0|_BDAweWv}SqU)2-MWiJXOQ zX*OgETJfJJr-NOJ`;+{bdv6@Sv#1YlK2uLcVg}pkS8Qt(B@iOiffdw*4L;vrg;~7- zNe)f*Uofcu{I&RSUd1jH808!;@iQt}gtYdu;2qTb$e1TAUrfz(txbplpTui~P6jpc?`uk7%-KK&*x5qgYD z+3T%y9)I|2c!xKlXkahMoXQlGQm$|qa;)~5=ikIgRRIpL=&y4Zs-JGpZS@|)ekp&m zF<>>@fDCsN zWK8JnIpMaE$`pacL64BxmwnZo)Cm8yU^4xb0j9rv?p=r;0*Ao2?oe|>v zZfMA}b?+A6D`?cF&0k@~@HN_4YD-Bwmr z`xHZ25Y}^^_Hn*POKt6U`T1ONG3mt+0N-`wHte=+~}0x#HgSl-^Ug zY*(X;{xjfU-4Zi&u)|7n+6Ahv{boWmTU<`}`OVzBj+W}(%wB>9@6RPS1M}_#hVOzz zhQKblCeuKYCajE#W2}FRFXJ0JI_YL>!fvP*!N2SkZGiRhVp#RiqYceQUnnYFi$Bzp z)lz#ehnwUk%oQ&vVbMpk$w@sJ`nkMPV|n^OiT*j7#2q8uwr~UdT$Cqtgvy&!H9SCM z>Vd!1D2x>LYbK^P+B7#)rBVHbOB(|Yx@rkLAZD?*9q=`z)!9WR@M7q##6* z6Yp+EU_fcl_GHc2zxHLu%Cr|Cy&;B>ZeP1o${11xd%qchgbVPV#;$X$x^xX@n))nPLIZ|QbKxF+|!*cR$D2C zJz*{eyIm7>#zZ??N(P@J5_QeX+Rov<}^Q3i2i z)&yWfj`82)_XSE_=oJJ z{Ep%{+*=qc0dQ;MP{5-{nyb14Lvwuv*^>d|kHvWh<9MeL%?L;ft0j1H^b|C*MC!(i zJc?!tcuV_v?tdvD{!QFDBxgZx)eD*c%iaz(w}G1+h9PN+0*4RP>D;QoER7G z3nx~Q?u&WvH6=YmqMWUu3>gl#|(uqP~DE2CyDYwb_1m|0lM7jim>H5ToC{jh*m-W{5d&t*x$LEn}mXCv&Pxae0hpyI3h#x#8M6>&g^Q3Xws$~L<{@LBXcBZpCBo4Nyx*k2R1>$uVIe09e>}7b-h4~qXDLK zU>YhDGY^sDP*ij@z|dFoUl&YkbmC9gUu-4)c2-x_N7oR<07=WuFBun|6>jB6Y*GaWn1Nn@uAEuxYw1Q8C4@0iA>Vb~Md>y>A zA;hNQj zg|bnGY?lnodqCf};~!CT4Vk3w4?DOxclIIn^LWyGUN42T@7CXk7-w}(Twe?xw+`o< zo5MCKaXy@k4TBtLK%QiK49@LMj$}^Kf*81#eA?*=&zW2$NOnn6ekZyt=rD zrAW@{_@e{X*>MAQKhbrHcS3g$hE+AyVs^?)*=<~9=Us!4$DhC3Zzt_Ark?#vt^b34 zav2;ytkO!#R?BtBLSkoS1eDV7g1>8J&Sg>uk7p}B$X+zElU{S}&6-8sgJRc{`GRMC zFF>oa^3_CilLL#M3h%&&NBbN-Ab0GH=%@|Fkg-HcKWIadO!~>!i)xEY_{^y4ck94( z_*TL>^MT(Utv;Q@%mv&gy3U3CO2Rp12g>TA*usifrd4##H4L0=@C?_vKH+^2wZzT4 zmiMsxCOPHYJeZE#;8F8c{G2Pyw%{EsGoyp+u%94}kXzh3>}2aiqwJD)NWZt( z8Nb;!Ed~V!hyoqiI(z=EtHJZdp(7~3?H*(KG&-&Z_y0Kw0k)5Y`^Ou&LqlKF)>G=aMklTJQN57Iipz?zm8|u)f`7#=_dE1?2mMNzuQ+ zTs{o?wOqy_oX!V))V8ROkrbVGhV&-yEjjAMnP?GWq`3e}iVykZtaLl6O#JWG(S-|K zvQ4vGCuN`WcQ<=rLc4V`_kif^YdqyO-8Y6)xqdwW1pQ~$g~sR}(8vA^ci}{~if4*9 z{e3YdE>LzrPFAq)r4Tab_$D_{&=D@T$>iTm5hKR9%AEtX)*YB4cupxPqPoK}?~W;k zKg>f(iaQ10??9#vV{$?@6}UxyB;wsBrqQ;W2xoET4^t1KwvJnPL@9n)fQosmzX}2#;;@V&$$uarJKP1U=r_xdOhcRqUrkj%`c}Hm`RNWN5yGzEs2|7UJzX zw@72=p$xdruJ?9qXs5sPXQ&lprWpo#0Tp$AVidAYP=iC6m@IU7GuOURdZTa?=H1!c z{}c9^{e<{Rmm^vRLLv+)ZFWtP-0NnKfbIl+(w9)aJ{7=6l9up#V)I^BlROYp4DJ_= zrS|2AbY8M}8pFB_HWbK_GY0u#M+5TbEs{Q2H z-FKT{=jMLi)-M367k-{`CPwpBZuMVa|Lkz#Ckp0z{;_p~M7Lu<*@>;;dgT0N*L{ug zWIgQIwt^;R#V)+3Y?|@P8O{o8@gIS`QpaD|@UR3QvS_vi=g?Q0c=u(UdVU$}j`oON zh9FfL)=R|fW~C*?eimu(xbP%6Eg7mo4sxF}%BE zVZhj&8I;n}^ygqMTFa_!*Q7^XzpG3wttf!fefxP*1stD?*dA02BUZq)B;w#_3{LMg zErD5(Ly?deO(boKS=G>`1Ag6-gGv3Dv&^uXs5-GV8XEpt<& z9<);X6|E-H$r{KXy(+4>@=W^&D}S5683^02n;@$-CQ^bE3IfuJK zby@dig*Fr~s(tHl)#Y|Vr^$NIEn>1Vr)K$JngLb>M(7X*H&UBT{G)9r%L6F+RaY6i z%Q_-?X`iWYM~KWK#FCiFR@vd`02i5=E`cEheyXM{&uLTKIgL`pR*M6q(Z2@YuAmcC zx8Ho`Ia3${MlM)pet&99D&vHvMkT~#f*Mv|Rtmd7$y!FFHXs84l$lQHU*9&=Y#i={ z`(N@hkFyNc>VgXD`ZCl$VJ<}_(%PB$FjtdP@IPLvGkumSzYMT(BnMQVoyj<{0Si5k z``Ti!xPtht%pE8Z(8vugji4fP%D*k)*vA7vse|hg2qm?@+_M0L7Jk?7`FyODr1r<{ zx`7`Ot1(CLxj$Q@&V0L3z>kiudr>Jk*cGk?c}nq1+6(ig~(|CC>{Va zj5>=moy(v^sg}iP6=X*sKgW(lq%w&0>&)wK9{!OKIBp9${xDh^bIu^hcnfCm4^MV8 zTnS3DnO|P0yR^T?fcK5Zm1tzXn6g;C(la~zF`JF#aAy$;Li;SAA&Hge!Wmn(#Rl5qw7d7(BoMEf}fy@#Dy@YuzntD>`f5@*#+Y?EE1ukB$j z%=IztZSpe}8T>XVjs2ITw^TL%?P)-Z)zgXHT-HAK03$ZuaP<`hF=}z1<}=4VZV9`) zM9hiMQ`Lh=^ut${2SflT9kxaYdJKwf5zsR?{1)Lz=qgODX=CkZWvC(PK~C&YiS|9- zxu6LLlTagLQy94d9;U_D8}xavEuW--#eV*aldOXs+v^v$>7dIFrPuH1x>@BwI6Jm-fgbpVG5T?LA*IyY2_C? zMNl=PqjP;s^b_GC21vQ_k#nCSqal~ksA-NOSOV^_2kII(LPq?7Oqto7;nLD($D*rX%~!@1yse;@vOJqeTr2<|(E|uj zY9eCHpy&I4q8hB5V~2YDDRFugjf{r6(OwogzW}EHeLYdlM}XL#oaY#iso796p{mwF z^LbvUAaXwXX%XiohilOPFUkRx>8xxAd&aZgX7DUNu+HuY_DeCtuiA-Ud9!hNEHTn`gHoPUb77uLMR zY82SkbwJ~6d}(%KP#Nx$6F<_o(7yE4;G~BN+x>S%JMG5V$;4e&Q5oSawey5;y6Qms z$3E#g{bcaNHNdFlFivPK0TLXQZc!^7`e>&daXTU~`F|c3ZVdqh|4mI`U!ut1!(z6- z-aQ$Z0hMe_rm58^84>MH=mU1yZ7B}#0duf_Ia2-U=-EiHUW8j0 zsnCzVFd3bYNHlx^$o+4o=cxt|IVK)Tuq(_K?-axtHytQuo3? z;$ruJ_hqhB!}Y0$?XX3FEH?IsP~p&KNP2_$C{g?W#)I&|J!TU}n6aagga7+=9d7K* z@eb?3p-4y``cWF2%8mQBoFm>;k8*VO;|`jw%Uuv2kepD0GoOy`XE$~&Jt>${@xY`P zyAKfO_dh}EWSPLyg8$i!?0%yKSG2vMrezK_nH}^$BK!MASJ{Vo)U0l;HhMM$ zTCif7wYo^Do5$^W9oXbiQ-`?$#pcBM{yNUg%o*R&Dc0#3qGc;#W@ejUOE{u6aOhP1 z3_AR!M1!ZeeanmH0Rh77_42llcD#^8bK*j%)&OZfa>jA@jXA!vsl{jO>x#g3Y(YrM`cf0EG6XVk^J3IE0xzO*j}~00wQ*(+|rud5Yw83K%VNO-7&Z=(pDjFHg+;y# z$5V!KKX)|joaxtY{1QA*t*Kxcx-7V@7DlCnuj(m4vjNvESBh&rG60Mao{UrX}hoj9x0pq&yq>ibl9rEUkOgh ziMZ_l+DsQ9)f$!iS=c(G5ByBmUuCxr>zqs;1S+HBvM8)o?a!fqoiNi*@QCz4;PtlMRs~rRyU}3z%R9SF`pcuRpts?byJ_EXuBWM=?5xA95?S(-KW?;x zN03+1EHqxwH8;oju`&<*M6xzUbJ#+uofj=oQEBZzhc-l4K`>7YV7mP{O(lUXI%i*) z=b|h&YJr|}kspIsYBYtK)uXSxr)6cAs2{64_ux1bC>t=hx08; zxEX|RTRUm0cys47u06$SStpsNTp22hC!;Q8l3No4Np^6;K0FEI#H|>q?BRW%$8H1D z+1K2@z-q-fF&EX2agIji?1MT9fF5f4Yn0zlK!pP7`ozpJeQ%V@aZe4CdyJ(K)`=u%38t)a!emE@${+6cwE}D>?)q5i?R7>TfvfJ@9K6@c>u7 zJQ_&gfY$}G!NWPlrj)?GFy&X2cT~gv%fKXk@-^ztkyLoTviL>3f!geS{4=eWZ8KD4_zV%EN237kV#K#dRwY zfKf4}*n0^B^`n!r3--!X_uzY(E#K_tH`TPSp%*KYCU89_PPpTnJVl2}~r`CR;hD zu%C%ps1((%20uU=4Fgj@7h_7~^v^_)`dP(eJ|LUL!zv5^&vQKnGp>S0U|wz8tl3#D|xQ^*hW;*Htwf z1KG;anA{`v!QW)d3!bT;-OjYax)|sa9YUrB^~bfz)2vLJ&-*Q7^)v0VkVKlAcb5W$ znk(lj0H~7P-4f7i!_G$=F3pR+Y^{j?Z+mOCyxe7StNHluCV5pMFJd~XZhqz~hktX% zl>cusXB@LIsMqo-v_)qVV*)t@Oh*ZZG`3WQ+C?1?*{Yf`Orf{PH@Kdv%NsvKbZ3F~HevxxRrbb1~wFnJM53^Vy(hS<2X~?QpPdw%$a( z-R!G7#2QujwTequM*}}B55JlOV7i5YJIndF`ZJ(x)NJJ-EoiBGvTu5o!`qvO!b@t%dGAp|TTIflP?5yBJV!Y1o3T$E}EGBGwY*uQ>57WE_ z(%fo^5S_S%-rW`hXO9sA*qY_1v{6`LR`iNq8TFG~_RNQ1J?GcX5v;3aecQ*ER@j&5*+Z6w@7S{5DBm5 zWs3e(JVlkvD5jOQ>s@zg)707ODs^#GWRrbt!28U~ZC;UKB6Y{>Bk#tJ5*v4|U!jT; zIdx?9?qWl|ILzkN#@GYHx!dopoi2iY0LN`oN&V@G-q{ZKNCc_QmCpE|d!}*vX?nD- zHIe?wG#N-RD0Qw}!yD5wd7+jECq!MM)`aT%j)hQ%JQ^GSo8V&w)whNW| zwAuiueFen5w(>stPa6AVeGW-a2lC(;nwa*aRLHLX$rV@@CXDewY@C;-_xFw3THcK- zw;7^`Kb)SRjXHp4hgo&U3-Z2Tc1aQ@@65ZdnRR8q+k_`7c}z zEJKyNp;E{ec{^JL4fJ-Z-#bA)dl>Qq*IK?}9gXZ*+`k&3{VSfnxCqyyxn_u45yVj^ zaj%#30He>Dc#_i15vZHBLwaRv5A1K#(D#%ESWkVL4efBJaJ$^&yM}a^C*X^6N801p z=x+mIVhM!P-KW0qn4dRocwx}VbFgFI+%q!#Ks;&?zk)A?o8wRxlnpZ@Xi8p}-{fgd zVPs=upP2St7zD6!~niwV`i)nBRL%E*F zbF|dC2$%0`c22K$THC~f=jDrYQ#j6X{^c#V1W2)|Em@R0HCPt6ye zq2MbNLj-=RW9vNUf`x~q0wi;Wk&|r zApccnG;h{rrC7{+@6wZT$Egl_47q8t{;p;yN4`4MEJtaW-iSV~okORxR1}CiUu2GZ zHGVfcw?gNcuIJe%Mc|d~-lI`JBOdF~O*ivL&OlumxzC&X*Npmfl!)^TvlT|u=99so zLQt}sxF|qo8}$QPWCgv?7VU%?Z&uZM_JFeuN(RG#k+Rh9To1=j?4PO+q(62fywkFT z-nfLyhsrHi4VfRQ_$ZRMv}bycYol%A7r30Jz-)BtHDYHm-H49(hS@xpCMP=qLPg{v zM4>8yeeXHzy}=exd0frYWYNZlgDUvf*>+t=8O|oyz)AmS+@H8aURGw_fC=c%8$c|1 z#V$fWQ?6-!xt`PIjxl<5DH?THd&Q_HC}?uuMLYs}5c$=+IbcIziK|CB%DPXi1rEcL zz;<~r^c%_dgnR{-=)~oLbn@aMxOiX1PC>qaSY%59@5ek=Po`o6%J12*XW9BHbFLF; z_y;sD2-hk7WrFIA*x8AM%{pm0@oQ=dZ9l(gBR3&2phwoWZMdw-*4@6M>by?2WNOq$ zo9}ohM>X7`>u-gLRpXs}dxLpS>)f8u$s}B`c(MTMa^rM_7d5($qeVw(C7DyVVxVa2 zE6|nub+IwxvbB;;c%dwA2CtPeiFV;7O=0ba`1<$3PS8td%N+ij_1DdInS}wkb454& z1!qK8U(*fp4xmy)w33!|hq*3`Ej+hxGiS0|pTz!Mn{5@)o(`^#QEYqc&nkZt!XbU* z?VXH7m62y^BLE(wyyx@hKB@q#iEb>`PW_8HNbmm4rrU6|h_^}df|tD1Y*?vvLhGkp zoi1u*`KkXdHTRx4g>bGP_K7q9)u}#4t`PGcWiQ$xD(c6>3I-l+E4hsLY9)F4-HhbE zKnR8X8;aFRQXci;@5Om&j@3%f7$a+l>8w2GGKq+vE#@i)BF*dQgX=`!Y_gv@lPTfp zj56yp$wRQ8n?TP6#%5iEVQwaebn$JY@*P(b<<2X{b3k3ux)q7UYd8jiMRQzXQ{YRb zquo$-QYvx?>TwIXBYthM#fx%q11s(jju;3$73MFOd~=@ZdF;Dki1fw?D)m3etoU4z zbW}4Guoq+94pulHFn3Oo*=~e9OYFOf4(HD}jH*1gzw8K$089F>uo={1>?k#I3^?Wa z)_AEJ+3Qqa$~?B}vE29{;0WsbF7UiFGWyi=8w^v~-sdo-)t`GvnkKSDgahJsyDs?D zyS(ydin%a)&=RpwGqVX0nppvgaivMZL41THl@q8!O;504`-Ahc(Da@NS^C>>EUB9= zePx2b&y<9Q1j`<919ec0O%?&;)!kRc_j@F6=<*JP3RQIOwLMAm_JY6o4`DV^zatzb z8zK(%X3Axk_8A9%YPKzT9WDtyI(r{AAxmD`ub7s(GuUR zN0=n$p>*SgY`=fA>b9>H6V3tpMiv*UNapLXHwH(EphIp(J{@7E($GhK($J19^EJR* zyrO#>Sb%m!1!W3I5z*QDR1Hns(&P6Sn1CwFpyY=qTeeE+ks?e5sP>NVo1QO(*o>Qg z>P_E3yLntyCq3|0GUq4y;PCOCVcMXDWuJ-jQr#XI&1zotI`Pu zVJ7`vKzIj4`?nmv^e)DR{){vAb|DAww=xJ1T%(_nHUUV7WLGd90<6`=EOq1gA1?3F`k@)Vt`xd(aUe4w}UTCR-GG2Q!tQTeX-6TT0Mq~j$?qb?pJxEJKB<4sO|w_Dv1JyC_Zh7pb##WR6mNkN(^MJhqYS73xm>GXM?tx0CUi#C@t~HnINQ%8`tl#J*#>^S<-!ib@ zJbp#{H}3EDe zxK}oNsuRGuV?jG|k+5yHm^ug;{)DA*cV!WGq7)RL60I&mfBO$hVYKdG9pH~p7*uY(VdbVqv8If>xo1>fv6Vy)y-W5Gv- zTZN<@Z{`jf8y?;PYLu^|CqG7%_zd~Svex$5`^&jT|4si~m^6_J1))E+3_d6*24q3YT1r!Hv@d18xnC;N4xvAZiy7#l|r zL&{=qZ0XnP+x?9kiWJWfkBFTW?x0?ezXrV}KD9`%Ux@r9*O#iiptFyyHk`VPdavl* z#d?K2LY3WIVzttJHwiAe{?&5^d>mV^6EqP0?RWT3Lb3}&v+np7ei#4uCTOD^Rm2VO zI73pqhw^@*zkS6g%eN79$0OYzw3(BfcP6i-vlg$s#DQfUxOBZ3*WG-t zbLh?$VZj3D-v+Ekp^LS+?&8k$yie*nF)V$w^;L-! z1rb!G40~BkKGIET();Q)Ps?Y+ zfQ!w8+~uoXW)?0{uK(d}0`D`Y&D-fYQ))Py0XGj5g1Zcg-79x>2bbR~Jb1;~lEJv2 zdybbj5{xizV9aW=4nNYIvbK2@@?qvzS>F6 zzo7e}!-kZXW1jo}W&md_R2lz$_143esR(~a6*k@^rzRIi8h9E~6~5???lVOD^E!n) z%W+~TzHQM{`sLCf_5m-l`m@WiWdkK%i5@cL4br8gZnV>7&!We&+;<_JyDou((%OGS zzKls21Zl1eu76S)nF1ar8$&;ZeVNRZjQBJp%TzMhZ8c$44n6J#%`4UaSz_@dC9Yo< zmV0gx7*t0-&uZV#%pBpz{pB6w-{VR6pQrMt^p%H7!lUFkx1t-Bo zPO_NGmJs1*=rg>fg`k~;Ot>BEd#)R5EQzyV&+MyEEnOCjQwZ8D)Z90Ux3nKa^?FJg zA>Nk4n%EM|IL%WMm2kt4T-Uwu9bu}mmp}OfNqmLB0KiYjy@sq1CR_LP7Czpon$`^f z8hFXJLH<1XZuo|BhwkK3adk%&`v!6?{0irde*v2(NT?s4*^;tN|?d9#$;9{7b>V?ObQ))-X$GNSXY#^!!pICO6x4yB{$DfL^ zwc8F_Lizu3-?|moUrmQEm%7E*~kQd z^i*P!!1~`~Rjm(lcISkK1aNy7bT&?{`Pv!Ab0dN;EpKCIj&fd+1$?5B(|EpR-eA;W zPH;)UG7(!XR)##n%+;?sXViFNN3Y8`_){K&C%fj$9PorZ*>&q;t!W?92Fpreblynr z866U9PX|CQBM;zrkCl=yUd#aV+a#2Lbv_kbL4js?;tQNAY{dhH!CgbtGqtV&Sx`&_ zMM8{sc{irvssy0DZgR0Xg$QkTY5Sj#ytwws`7Qf*Z3$G2fsWmG4Ro!vIAHgGpp*r2=M?oG$8 z;GxOxSQqRhaNF>Q^h)SRD)=|<7B};B94pJ~W?lsLwT$=85cL;=SQZGgU<7}9B67B} z{9FCQ^*1Xo^6IRa)3+*bRUBoh?W9{J7Z{dlQSE?#>DnP@a;ZNNU>O{|ozmoLk6ji0 zx6cJ)%-1bOCKAo>7jmwO(;BU+oAcs!eWwGsBmTiZuzf}8yhFLv>bqfTXItV4b9m#b zUP%LT_Ma4SUYAd|)W7IM_Racrv)h_f;p<&=WaJ^rBubNyxvhp4TnduA1C^PwQ`qlT zye8NcEae5q@>Mv#U#Y|$(~$DQ9b8E6vEGx zl_5NYWMsFrFqnp3p0f$N-jP-F{XW7|r09R*+q7u0zAV^bf4vVJqYB?qAHDrlvc!Ad zq&iV13^Kb(yxuq76|9BmESe6%om|!UOQ{TX;}t{Oz>#fg9ohxs953=s)=E>ztWOH@ z;9f$RtOt&8KHBFA0aUXNt>%0zsyiFH954%d7Nng8Mj#BHv+hgJ9IMdx(%c&8+1>3L zk}{p?BMek$j_fS7ham3se&K1bi3}JUc2pRvbCxT=ZI25moKNo4pTnxI?o~bRpLEJ& zGz?e1|9yR_fxifX(W&#;tDp;y?sl&$w2r~;g`=+^`4sr)rej0ai}rH!kuM66u(*|3 z%L;EaxIvI`!yaiM%>v4O!2f~rNxwRdtN{_~e&ilz*+5RCGpVA;g11$sduNZ>6Iw1L zON}2OLjB%D_QvM-jFfMn>6Xvbn6UNWVYT{)cL2=psHudB=ZErcxaP&LCvpF= zguKJO9u^>FLYBWz>4}E?l+u5bg=(kM6W)-)yyH_`q}QIwb)lK-S=zDC4g{&HnRiql z_kq!OTHW+q8K^r-TKK|ZlqlIaH_-}LfK#L13bmOu@;$O;YP*{ii+;_w#cwCp#mT0~ z*Xi?Y^;eI7&(>giAOS8VhxQNp!CvBD-{U)0(9zD!GczUgf7i*+5C$#aW}`@bb-+#i z-pDm^#pmdtY@K76^68gX$X3FA7y#}uL*<8-00ugp9dfYQ^ghVNF&SENkyFrWSy&xq zZ{}n7Om$bEaehL4@&8cu=HXC=@7s8iBwHmR%UBW;LS;9hD7#elEg=exeVdsOBKt1O z5K_dX?8{8qx9s~i7>sQUh8bhF*XQ$nzwhz;{Wr%m$1%roKle4yeLd%SUgsH_-+F!# zuQG9`0IMF3bNX}Tj>l8;ErVhE3D&vV*+iT>*f$=kbi3o2KvjtMo@p*>1zsSPFrc5n z+%zNAa8c^NZZY`u^-U(5e^!qmxSm+u4`MtB=!{(&9Z0sA;&GT7- zOgRR(cmGhNoETPX)8mq-p6aJB`4$z3@#EFqqA1tYuEfiKC+=`PqF?Q?sBRXX5?}q& zy3NrS?BLw|hiaw|;K!fCumdul@29#4rkn3quEcyct!lBx9V7L@8arxV6Kz0w`gIy(af1f$5G!UMVAo=jYBc~ zIqG|Y^YXFgmER+as?}e=K$&S4ZT&Sc!X)ipD*T4LJw}4X<^^oOnpf$H*PAxd{mdlg zcf}qtH&-;p@3j%CPe-fL(XlPr$GTjDQ=h-#%h=vNAR}C7ul#H9IGUiR(xvc`>1S)l zO5u`gw3IxalQ-W;uGV&4RETLt$m0P;E>uPNG(<4_4R=tDX5HLK8b1Ew$d8zCbi(y$ z66VaHiK6E+{+2-TR_#OX&JzxaYShPjN~T_4TZJuih!vxcwx522HJLknIMNkp{@TGD zw_ud{3DrEUcslAatNZLlZR@m=3vi^{(tF*kzfr91&E8OM_~jOUI+HI0#eEe^-!qS4-1cgut(%v9!mh?vQ3U z(mkwHr{>f?HzV;D^7d~T%CCVQ@GNpNzx&0C+$lAunX&)x3XjZwZSbZ;|FM-b6FNtA zOI_YLj|pveqd@!M+~-!_Zjs>TAOS1fS9qE<&GfKqh36*7VMXpXNUG}i--9bTSwsHf zb)2Q)Ah`rc;@nMU&n7$A{dOV*~r@-#F}#Wqt>JYQ3y+5g3lyp_`$U zBmfQ5Xzc;Un%>dbqZOq^@GBnQ@QY%-jQx+xYwI z?8Kvvu$NZ6tH?OLk;R_i-oMt4eU(cQ!i-{$I?8SoV`M7Kp@m3aa zLwJ2|o2rSmn>XHKd<>DSh8d`rc33swDNjy47y65l@=4YC6OT3>6yw~GFZ?a(wMgJJ zu!(x(hFrAifk*?Mzd>qW<_b}6KiMS8y*YQ4&p15{M0!0m^p8@02>9HsyykgXbvK0+ z_d(agK0nK3W!^5mCCpW0eNAmB$@?&k z)@xM%u;gZg)>z0cb!M72E_y<`LpSMreH%5y=o4DCw!!JJ(;W=f8~H2;c8xYq{N!70{g&|F<^)OQjT>ALQUXp{@zRvQ`S7hx&XOuc@O# zy#pivrf?|zf@Xvm>h0ToHjsqX7oxP~yI{yRWdb_AosVa^18I==;rL0-1c_Y$`KhbP z{$pC8EroXzxOuD;mp25_K8TN1_dZGs@_^7ycwQXc?8FU)Sdf{b>kGkPiM3QGm*@7? z>EX}E!xla>CptVU&jtWK;i|W_d-#%WpV!M^=+202NjVDm zX(Xy#CEbA0dRs57wwCRg92yXy8|qOTGQfIK2>^=+480l{?<6}0}ZCHAB> z{Ln3-zfaveTkag{3$$Zzrw`he_lM^9nqh)dEqE$>N*c>|VpcFr{XX#la_Nx>^H=JI z#Yw}T>wRfV2H%@}QcsPpJo_>-YLU$XLmR9rcd-ybjI7VM#>yY5CZz>=zzO)_$Cuv5 zr~cyFV%T~<^-lENhh%D_B~thUp1HgT02pDI%dn5dKGl2gDf@ns93;n8Pzsm{SGa}B z#a*JR!dw@d=}E1MN$}+m`f)9@)};^DvJunHoDo`=O1MLJ>dQN34W65`>)vKJy5~8P z{>>)+wTzj8&Peq$oyhU)rPxw^kA&Ll8VDR0rs)RJsE_?3okJcX`w!+>?dG`*1{Yw| zlPp|L64q#e`-0cVB^~Ndj?*qdZg!|XJKihg&xiG{yRhtvzV=dA#kq zma0Zo;?AV(vj7=a)XJ|qL2XYT`QJ*ec27V3(y}wOTdbc-e^u?>hL-6f_iu`IG9MleaCc`hGbq+V`n5-2RBKgW z$m$y?KiX5B+0&S-+`^yU6v0L>#cZoaXzbv_iVlVu(Xqd&&t^9NS zGYtduYP4F9&p+U7EETl`5ME?PA^!~CT2gFnQT05(C0!`Bi@}55e0R8x<|bDj`1r?e zja!elJlK$W>%677_#M!laz2&TPGUWhGWs)ZR@o@@U9T}1JXk-xd*$A2WBM10NMq?k zXDG?5%O5rtdm>&_A6?*>@XdH06;I%WoY|~2@lToU$IdKG$i1`gac@Ct4fV&<(oa?d zBm?;aWHaw@W0G+11MaM|%|0&?KL?Sc__sFIEqU6}D-re_A$wx1?83GA|Y@npQVh|8?S;*|{?=QQ0 zf8^2kj=5f6^-7~0H0>Ig`DCR_9%gklNOV1dcr$g9UfSO{&FL zN4*?HuZk(ziz)H)8Bq#u+>oQa?1J?vqpY}yMlBzL4>m3C(AilZsGb-NL^?aj-l{Z+ zSTK`aVsEhsgbqZ`BXm?yT|q;!c9wD&sib!cNivkI*x-UaU(rKFQJK}-+HlczXx0AN zCDgLNF>;5F+Jkv3A|#fYopsHm+FydT)kE!3 zT?n=;Dz9ik?FR6R;9N-P6G#dZqs157W3#x;8B?+j`bfhmJ z-$7ubS$7f@xBrr*`%@AjhaxvdaT$TBKtA7fA1!&3cGKuTA6{jq)3cG?TV>eNu&k>D zwkkt)7AiIS%kUKU4u@KJb-$y-r4&HOaWyk9;KY2IpUFO22)8{u%tKUV9W)HrgwHr` ztTkCg+siuWZQy17qV0xz-t9f#MbdXA_9{n*iO)lM)H@sc&3czg5`TJYuAZ|%GJy+i z6fBXFJ9!#S@|wQTy|h-x>ia*HHmU_`JiQsf8>~$l5vnR`hmmu0S|*4sVT4<<5-(Inslgs{rLl>TZ% zf_T-FY*U{9@-M}BHEBOuDBxr`;A@zsw0TD-7w!5Jr>PD7_MtS^1oVn(`zv5#H1Nr? zTq;C_ot`Rs3TbqFJa*oCs8Ue)(O|b}s5cM@=a1d~n(^2FOW8`3yTgj6dp#(>20Va) z)C{*Z7*B^f&Z9?Zn zDlQ|Rn06$+b9sF8YIi3|8+nV8=naY$yFVwMn77AsO{8ATg6`Uen7pT%UeQ`v6jOPl z+vchBCLMl*nlhL%2m9Io+|6~KBZ2CYr1lRqRMLC9hNghRI6taJZVZk7XSZjP4FA8| zt?;G~Isj{gK*Ki7WPs=hc}OfHO=VtmxxPJwk-Yu#%b%LrLo|q&%ohb^hQEmKzrsN0 z*l%8T=&U?P)g^p|4v7!PoQ5$J$e#}ZB*`8EEY6=49lsd{lnRyz`AQ!e67C(U)n5zw zzF|^WuTK*=xxMYQQ6C1^MwOp04xdMsd^S+4*wl0=U_L@*K( zmiMC^SD2Rqe1xf<1=elBV^1}S`tR_!?tJc^l9ydn_hD<)6gn({4Nje!=imD^E72mS z0;5E<7-p`7Rk6EEpoD><$QveUGknB;ZCW3tdDT-PzeU$x6l(ouaQlDme6K{hN7-rQ zk-g^!<#)5eB{I7o84DZAXj0erS3V$FFPprl-Oh_W&A~~h83&9FefX%i7*F_=#mD2N zK{0>L>X`M7G~&%fwN_T=b5j>}zEzKRc^qQ{%9+{3Y59js4HN4S-i0^j>uE2bO+J6Omkb6|W{%hSRtaULSm|}qO|t&1F4ASS&@dXkD7blBE%D$pAJaS zUPG4pnDd8NXlUw89uGzQDwYCYM;_(28Wl{HnZs|a^v3$9Z8w?LkbmtcX*6mkp@W)n zBHdGM={#$JR=^m=-PJpN;Z^x5Qj{+jNyCW-eC9m~wo-#U`?nR*g|K7#P(QkLuU-El z@Ozsa{O`a@UL9@4VV4LUQD1dZafNoFo0H2v62wPWLi1;ir4idN!@!$=BISP*ELTcw zaT2}1zxy-?KjT<|;bYQ{e;Ge|Mr_glv(k!`18*ex;Z3w= z*<$xmB-uZ6nw%P10ker)sYH3iem zPprVsHaR@Q&X`5oFM8$p`4EKyW%NS_sevF=y03{-%bdAOY0#+XVATq?w_&ek&?0^) zx9n~7xb|h@d?Q0mz|mI$!Tn2ZKEguUe#*R0i)GOXQ?AGdDswy&GYG}6RHk9E3;SSj zmgr!JE!!^7^tXtIYouRS1TlNSRLrvmInPrX?d1NCWDyOMJ!ptn)n3%ucg?MC{Ag0^vXZT>NtlCMkzM0cqrar8n)yFOt569e zYusz0ctz?hI4TlCnEI7RtR?>zUaa_xc^X}FcSU`@O)IBc8TCY+Q1%)dK}v1nL$~~z zB@z2jfXtWnQj(LOx?1q~7-!dmr`3aU=yc>1;*jx6HDnWR?>m|V2G*601k$eE(&2;B zoJfL4up&31xOG)*uj?#Re2j?B@q%%$S65bV-&N3j+H1L6E3InZVR-6;$^H{WC%VRa zLiCm9H;u~eU`~UmfLcOe4)QT%acL%OQ00JrrTe$)KZk479CX3|HXr}(LNx8~Lap}8 zbaikZxt1ks-bc2&EpC_VEv8v6gmS47%&bJenOq^Th;-vjoOu3H?+^$LFz4%s!h<)5 zp$~aVgi2Trz)%-kRNt_(^0Td^-i@m}XnBt!%SIGSzgvKY}naaB!oZ<)U z;LSE@jP{W54x^hnhsf_3T*o@;Dv1eBNC z2u)WcUYz*;Jd9~=lKVZl!i9HhC~}H(d+x%KJr}O*@Ldb05E4|dHxYy==|6TbdQn8P zHu^(nDSuDr3q{|^M(4tVRwnNU2;5;)7$@Y)BdWAqyO09OWm?BN z@P%$GoUwRn{2?T`Ml6)6Mh?q6Ye#uH-)+r(w4>O_vW4VbgqO-JdWVG0*MB|5z+0mH za@-SMBV*}lvoTn;N>H>P6%ZkBKq>JNnvAZAS*O!eXgAk|y)wnm(JsHuzbJ|nqR3kk z+r4!T?5CS`yPX!Y1T3!7D}=CC{p}o+!MxoWlgd@K-JqjeuUYg|=9X4cfh?T{1U0AW z2?bOtVCwh6nM#Rw0Jl%^?lTb>i@r7?qsmkE?Ed2D(-rPn&+{Y3X@t+2?KQ-BgRIGV zeddmR1;V2pOw-dMKq9_|XO{uVmADoJjgvd5jM_tZ@;hNZ-#;HvE%dJ+-Gcuald!uI z=|dgaotJG#C{z8XxniUqs{#KW`N)RD5}SL2ybIo#%D%Fek1fv#$d_0Ji+ccOKV2k0 zuLiE_eeKk|T*+vQHh13e!;;q9LVY#!YT_ zFEi^(CkDJ}j--{;eWf&Rz@>oNn@ z+WXb7$cQu`WcbNQL8^AJ`PU8NmS_j(GYb%R)P_r3n`CzvFsuJ%_mNscuW6~`#K!XIaFo@3u?r3)ME1NH^|g6vM+jtTEZBfW zdiAz+(IjZljwABuPd5PO7u{$lDbz9!B6;HAdUvM*HIQvGkCU?or1#v!dYh`bWJyxY zrFOlD7>ey^;E2yPl81keZs=9N1#in}s>LCEi_f837^(DK__~94hE`nr+hnF3%eQkBv_qN8()Lddm_^wd~2Oy>)9^r z)`uF!(_mF-x6!nBxo#o!JA*9s(GK&C34NeTw)YP3SS*fO86hAMzyBV8BjtV%(JL9R zSS-|`{+=wzrV+{O&>6P2Mb0IIrJma}Zd51JfKl4SYI06i-79y9i|W;ve_FUH65i zXXE1V9qKmZnS;kyhr|l-f!OD!14ADWPc~p592A#hu%n=0dkKQ~C!d#q`eAdHxPTiJ zz{LEmehoXcJ})i#CtXjbBlto3C&8NQABdSS?5zYk=FZ%j(lMY<5A#Y0Db{agx4EL% zKbwWNsQoh9aAVzfRzA_(H_lh!XyqiE%s)I~Yv}du(deG~)fGy;T9-4D zV(D$g{BD6S2|Xe~(ySl#erbf5IulQJ?@xh+v2Olr1huY8QihIMmSQpc;CHuI!bpXN z^4(kS`eU@v|k`_G|Umk{G~ufqOT8?V>g}k{c5;+htFk0A=CVA z*B+gfZmj}W|M8`;JhDFSmo2o%BBI!1nK~QPTByLMP$|+E8rDTPwH+DfV9HoN24=QX zG>86~sMtU@$(7I0>YXt3V?Z$Kt7W$`^e;FMJu|rdtjLy`O^vfLX-?!0LVC?v>4AtI zd*cklL3v$zGj^Dm_U5m+UvS>%70yPxzn~@og9Ode{_1g$R{zGVrgudUL4ViR6{yjt z&>Mt6J+@uxYLdbZGp@QNYjD#g#r_%d8aT4rMEx+WAU(;6-biQPvB1r-ZF0dy?3zRf zwQ>nedJi8Y^8OMcF9lksAT-a=$Ka|~%m;nb6DFvvG9I8zuaeIES@A}TX*b#q>YunO zS2dh;DA^sKxy&&;46YLHY-;c5JvWO^;9{p5GHoFb%BX({`rCv53By0QmpZ$M-& zOwT=!Ji{pQVPh&3r;|Th@hFs~+Jl`*xBnH+qfK#BLLK<*-@k^YgwQJcKW z&s-41u@*Putej9=C1#gXQvYR1CA zD$Fopz+P*4;lWPOWlm&sJZ^i;@r#?WpCG8TSvJUgOZ%zd;y=x zv>m0v#elaM)=Uh~I|#&YHxw0&e>plNm!nYHt-Da>Bg(qAMkNA&WlIM0Tz!a$2cdSQ z%@C%F3!Oxl@Z$kraTs>HKdO^qm} zRr~S;1ul>6z{1llmP6EFokaHz(7YT~Xta9n)NiUK&d(z-zT2KQ%qs5J;ZGjI(jMHl z7sR2{%74K!e@a(=hkD43v~vx)%S2)l`#7uKjGBd1En#_y-7n79!`lKyf;ka9((6kn z)hbu3Q2P`Rf9`==^a0^s9`0EriglYO8yd8(LqiaSV~B=-!(2xM-gWx-Y_{_M_3nZ% z$eUakWG$GD@?oEIw7^6g=;=PR=(^p&8j&4|t$$hDV?UK)?7 z6B4E0>r2DbIPfnq-0G*VU7~tL9Nj5g)cgl$?{vo-yfSO zUX!WEt8;wAyGF-DJ@MN1D_cBPKg#T=E;OsSBU*7EjD8z%NR0)rwk2-jzE&U)1}HCG z*M~axoDq*Q$J}(6-JbT?eV8{o?o@;9{#^xgK5hpj1yCK9p}S?R37B#%B$HP>SAf$Z zte8X&JyiG~0QLVNsq=I%8m$gy!nBoxJkNErzBK>LQNP6BRfA!N8^Jojv>?X3R?d*L zdYwY%83d2|ILApc)*-^oM2G&2$lKs9d8q&Bmrl~?Ay->(t=v-xVk z^US&$*c;ntqg-)d>u5VCbGY8idBKe*a|`6aWB6vILeWp(tK`{->MjN>TXvWS^ooJP zR#agNXBY68k6haT)Sd7Cg|hnv9~h9ugNjuWa|iS(guQ27=AS>{dP=hVL%+Vaa2OqH z2G(xhuEsG900R@oN$WRDfL7%Ii%&*?1ZB+((?z_1GM4QitB$|Im+}#$DpwQAMDSO# zkJhkhzcXwxWFY~Eat9ayqT3<>kX9*55e&wwe#w37_ z(!aQ485u$2tu+~$tZ!CL$Si(VwH7Uj6JP3CwFYjxYGe1@_x_ItD}FZXdnQq;$&N93 zu5V;U>fRF?oIw;*?Kiue-3V&6=bvxqE#*qnqXl2QUUm%uSB_inH-8--v~&`XoAu@X zd-POx%f0rU$~3C(R=EH4jz#sNz71=0?K-eN<+Vlxo=g3#&_*+{g!YU*VEgY7Nnw$1 zhlr&*#$2V!XDe`Y>uf0?#?Q{S*1JC>|Lv;Dim@vsn}37Pu$mPxYO0+WR~AwvBZn^|L=7^4m9a7dKh93=;+MY$<92cQ_ewBY=+G&pzruYd+UR!rQ?Ll052+ zhI}uwXczx9z?PWB)?R54lvF&Sj5LWby?Z4N+%>te_pBddr8>B}!IMi(0Co8Au7ftJ8jcRleGzzQ(}QL^@16_-m?Kd-38Fl} zF!+h#&EYw>tn=_8ExOGwR*e5NDgzbeMM)F}<1dW*M>d1#S5IoETn_Q2T#ZAHyrWOT zr{zHLWR~*5;qTlsvtw`Nk|NbZd5QV#9f998(n1olIZMDCKr=+QDN0Jr6!rJ{pPGzmiOY5s zjjN}sQc2zyJcb)=U;mXsE8hGYF0elX4-4P^F!|M?Ja;MaoI1)}Oc~e^fzfBtR;#f% zm$opX$%yC*`_d;puV;pI&8!MEL;V$OU87d_S3@V{f2Ch7d*0YVt@P~s?U3s6$Q`D0 zSb2~NxVSA<5*hl!QDF682lZmJY4+?cGwcufs}r(&!g+B%E8*lK1gYB1rw$!`lNX5S zK?58G52yu0Fbhh!$Lh z{94o6>2C0PC^$f*6m+)8gb1vAlD3=*t~D|599%vq6Y4y&UeKi}y}1KzCKmsI50FIG zecik7nDEbLgmmnj&`kaHnRmE6r&@{Noaay#?s2^bPUGg~{D>_1mutUxAEf{i_c;xml?#CW7v82PM?bir?Jr~xN(p_jGwRx)-$EU#|Ud2 zt$EnolaN`n)-s6Qw$rBqI0>q;0vY&qWZ$U$gJy363*$L}Uk*_lwtn_;(rPH;gg_&) zQ;!YI?J?@MKran*bKubZ=BM$4RD^16=VhFhy}e680ix!jE!YKN57gmr9ST<7CEMxk z&EKS|cbhYt?b_d?lFsMvk(Qu8_SZ~QWsD5uP5>HefQg)v-AR?LL!!YUW@9RN-`jlz zGR`MB@dOBL>}JDK)ewYgVYG3j?EqW6n!Q;F zO%Cf99mO^blk)>Jfo(^dI3`c$>1?Ku$B%-x*xap6=s*b9BJ9AX+@9T!ns!Ca2AQZ( zw!V7X4%hwZN%6? z>lUJcWo=4PdL6hYG!rqPyITToV>{p*O;a~gi#}R?^Gfd5`QW60OTg5*-l)}czc@Gb zGKK#`to~oXTH(_MD$ALc)pT}%kMpF8A!EXEPxa1yhMHfL;w~u96gOz8lO~ih7{8(p zKT6_xq)vv$t;>C)4eXEo?@#=fdH?;D(oNAY2F~@n`H>R*B{pt{y(n{K6x=WT%nk|_ zwA1pG+Gt_F_4lI~_5wqt=0`v!g587t5^z>k(9erOkm-`%Y`}$QX?zwZxA6vLA`43j z8%ciFSn0;ib$QZnZ@g3!CNlQoShk>@(~s>87QXO&V1L)?aqtmWJMb7uFfo(;5OBQ@!>8yIbDMte zU`q3PCuxP&r>%n3pTgv}V&SF7P$&;pk8bsuI*j z!}h^cpCT*f*F>ms%h1ZQ{HzIo+f*+S1^gF#1K2mik zDYOmuP7Y8@Jh0K~$8t#mS@3d|=hy89O^0Wn8w*o9mQf?%KxLyi4Nv`|sLb+=g4;A?`z5@%Z8m&gJa@2$zYvwP zqZ;YZ6CU)V!bf!1`>AX?RHA;+&qk=j({m~M82;#BE54cKrgyh;;XrQ^Il)KIcDjsJ z*bXVYf^?PpKo(*!4++^|JI$(i8vzmp3Gw1tc{P519L#UlLWVp7Es_g!naiz;F;6x&LK$ZjO6YY&%19ip?wEasE*Jkze3|`(|7lF!w;i z4r88Q{O)k!(xMT@}NJfUpbBW&v|sgq}7jY#gqL= z#Xl z$^-jGj4Rc%>(5pxrnKlpKR@T4?A-FVzYsUAAB3|(%EdPbA^J+^=UGu^ud3xoX3&AjJ&9;M{tit3g8`Q2RVZ$zfWWz%Q9ohW$T0lSA7h-FU^#&xYQ#h9jFowA(H&DsDXL_5E|t^*&_rOaZa60 z_S%y^#QGM5(^`6^9gEA%WJC4xphfqCsOk3hGm1sXMngBr~n4GNNzmJrdne{plqa^v6B58V)uXv4-`UKr!ao}BbDSi=8- z>K4sZ))3mA95BCiS~C_j|)GHnY&dkd}Y9TO-ZtV_&ZL4K?AEx_Nww;5C(ohF3$yVShls zxOS4#Ews9AUQ!Ozchd53=%&wrotWEp`UX?}Y+4YX%hOclYk!0uTiMuu>ET(k-ITo0 zEKG*~ERI_=O9(KS*cT}Fi1bMKp#gu>LtW2H`ZlvCICg$LeVx0D;w*}h8ad{OCB;_W z#E1Zv)Ulxj4n_r8y!c$kyugpR<=b7zm6j)VfoZ7iHwxYhJ$s>>s*nnEXvXUS zI6^z1Ui3KH`x~LFTPUeY|rB$ z;0|Ya95cWOZg!$NhGuPlbnW3pHwo{u57Ni}Y}iR+Qkb#*d>#JUdr1w(E*;of3zPm? ze1!1ioJI>fELDG*+&`}SIHtaxT8vt0po(n-T&v;HR>4&jrk=Hjvj!*o*eyET-@3S} z8EBxho37fgXaGlL%mIEYT4;N|@By}5EXJhMlNt2c0B`2d^n&JtpqO|u# zQ%lE{p6%e`F?r*l9|-Af;JK*0n^#b|sDF9`!3)JHWT~hY9h-#xr#3?;#4iH=Dko27 zd51yo$qLkzIu|r#p^&OFSY16-v^ zxsa|c5Le{?*Z&{I58>A;yViX469ti3h4Wu5n(qu-ns5WPV)fpIZEW`dteTuMGsk8j zOPUx`@|&1|HL_t_=tVYoH%@8MLfc({(>x`SKhkf0ttlP)C2Zx3t|b!Sb;kHnQ=x@< zzBBpWq)Ld&*8cjXah-PpebA+UC$&ZMAK%~XN%BY_5dHaUBI~eHIF@1TEmiD$U|ehI zVNL0~=5 z(L0*sk{|Yq9Pe}`%wdMT(q4j4Zn|24v^#9%wRX7hLT5ByR-me&blWaJ*WnlL63Sa1 zuDE)rEjz1``^x*}0O#Nrh@iW8DJge&$kGF^+AV^szZV^5x*2oy0egFuv990J!Unz! zsq;>O-M@gM9}8s5Df_$>1f+e!2Ub_jb2L^Kt0CyKW68{O_D(IC`X5oLlXu?0QS8VG z?M36(Pt{(qZi-;m4UKGh)D?Au#!&Xb`VV%aTCn+s}7*2-%G~EK-&DMV{47uZZR=UM=d|~qT9J^x=(AdsAyly`mK8L8aia&;Gnt4^1=4o0rZzZ3$Sop zgCk4lertWr8u3sWG3HT&96XEOZgB&Hyu3)4z1PB0o7% zV<@=i@|~|n8YiKD_iMbjLH6%S?S*;%hRuDb_^Gx;ZE}3bsN90GH|7}mZI#iihHG0Y zEUOsHEl!sjvDpKAHZ#(6t8jlorL5HHALuZ=OBHKU)=EfGOFDeADE~23VCr*PsKMid z3zc$f%xSM3d|C?mfX1+(5$OAma{RlZNG>$J7xoSAq9TH`>BX%r*Jfvq#`2(5e_MXit_yJP>8Ztf#|MYs z8?1r%n<9k{_#{^xDQ0=>WQD#!9-88b5(s&C&y`AL@#yv$fmB{VB9l>;+6VO%PvCf_ zv;8`SiP}37>jT^6g-#fySJV|#{GzjJ7C#M&ljq9oxG{n`tRaAo6Z!A2#Cz?H!vHmi z$KLN4#gGpnyZVo_LYUlv+^B?(?Z-q23o5O7&1}#L5kUeY;gkaO&%JIujC9m@9L$D% zbm)8q`5ry`@=j1}n0m#O+>uu_#b#P2j(Xt~N5gliB(FRX0Vo`8~?jr2Vo7SEJw zha}=!{_z-+7}W7s5X6eqKVD3yCG~X_=lUgsdKI-+aqpeF$my3{iGYT)x`Ah@ZyO+Z zA4#{y_kIZ)E(5eG=6Q6->}klzjC$S938UW+LE7oe;);7f<-fS(Pk zFn?dUJ3kl`W3II|6nOm;!|~kCHF&x8`Uf(cIhzJhQ zjyiZs4;cTcPYbNwe=KLssvA;FPh#z&v?2l1Xy%{6Zv;?EtbXK6L=E(}w*(?;V=mnz zy`nQS^>C+6NO#&=fRK!pzjig1s+7hdy-~+)$Qui>B%R&D-CYYQSTjXN@~o(c z4vrXi31UU#51O<(|I8GdX*y_*zd2+tagI#ppzygPb&mnHi@LN9j~Ble=|uZk9hhAR z-{GV=@{vIFzcoe@SWkc{mmS3W~fLW`D!t^8+Nh^G z(wBk+u`X|gY9jMAA7dz&3`4#OVh?z`#m-QE2nH=wWtrD^ZBCg>6twwY_j{0+Nb-I! zF@L$N*a$d|qVRU0hcAj4cYmUVsB=!(U%7qn9Dz5+w~fPj?4_*)!F)Ur&4e8Yp`(cR zTgz*_O+9s~x3J|*QNZ&u+4w5uL86Sw6Zh@+qNxR4_AvbRv#_BIsbu=hmNo?L4`i{A z%9~b6KOm7}-kr+M0skUe>q>7De5D>a5-Tc8g&c2=>Kn|WJtKtvY?*)$w7Yl~VK4hU zAr;ViSjN$v$Zs)b-z<0n2;D=y?z;|L0eqP=FQGS%w(#n&kiuWUBSKSqQ-8sqJ@R3S z>0BBIniUdYs#lNIMj$1SHZkRz3K=-g+6r>y|>oxvoU0ovpE0H>=<*;?o9j*$yiG5aOZZg_wmkPa( zmL;vq&OCs}|W1suG%9#I}maO+3^QBe;z~dd%7*_pRgf zw?*2$9_-z~UJY<+y`qu0oqP#GzgY-=$f*;0QS+HrrcHv3+>Fxk=~d^LOz4>y6lqA-jf?<=0!N|H{}`Bk#PHL-1eD16)Lkyv)DLzdeqc$zdVitmb_F zqxb{0=@a;8GK`=6S+(H_nI~%AR^_?rmt>et-PP1p%=uv39UE%1)Q+1%aq(3m>Mr9# zUNS%mQE0)iJH=Ab9?Y@hjYW;GsDBKoUr_uy<8=xEk^aON#DJ!+=T_&5gi(vlj{SX( zm@}+ent`kLdJ%0ufB)3c{8}X{RR$g$Wo2dJcNlADHsQ%@XITc2gEQc!u zv*39f_2m`1%)*pni}GDs{!mM=byDK+RFnkOzD$p-|7Oecz?C>8gv! z6Q%+SGJ}t3?WGl9IaeXjG|?O=pKN=^TIoR59|ZPS!i^>8B~Z^#-dfd41fY-eY;u6a znunF=h;m_(^rG8(!KKQ03t{Z4{}1+Fzx2Sj=RM6Iyty>i_#HZv7+mG4@U8Y-zRCla zvq#cO%MK>|jJL+;EbY(M&JB-An)gH$-UpBw#0KKObo8hIDeh*`d|F;0QeW_ zk&iD7q3hXNd^}2f{3!@~lWzAJdHY21e<7LwJKZyodH}!^m8s)d`i^uj)X?7{Jx8G1 z{^)dlF!2(>-9D^LkYGb-)9gRzz0*uNx=EPIH0eV0GZmd63=I-^#4f6$g36QZck!?CXDL|l(cw`2$>v*C z*FW@)jnToc0JyJN*-8~s7J(D4eN9?MV>|{-N)+fRHme8t% zVn1sH-Tz|&YW>Bx0+bGaIV_7p`x(DsS#MBwG{E0pZKCS<0YZs$DLExi1Pu#RF5)y+ zneyS>_4FhmOxeaWAi_%td+WD?nC;5di}XCv#l*dODM<<_E-0G(WVznF!|EkP=Ca(_ zw1u_hqQl!>+!f|~S#RmC(@~zHkLC?86F0AKdPrE(bms9;eUJaIR4PhRk!7Z+knChPMfM^|vQ9|In=$rnW-4XhiOMo% z30WqQCCgA4OBwsvM>81v7=szJetmww|IQ!xasRpJoO{pf^}5g3QPy)47YzKl=lQ*g zDeUFVx6{*cm<+Y!Or_URt5Ad*fyn=n2ThW$mK^AF?n;F}oA=a3r+ShtN#0l_6gy|WtTMO>qfGd_Fk6`<9wP|zVm~^Ekj9G`$=#|_gMqD5(R;hD5`%D@U+b8KYjV_|h9~p_R$R<5; zYJ6vQqovpR_fe*yH-{`b}d{?7yAJ z_o}gXgGH9)4xpH*9+3r%^gq^ovzGuRM+q5+j0-Qdv)jvk;U(OG?W5k0Ui9-cwc|Eb zt1a~(6TwClTI4lb?~F(i-le@b#XQ`9lB@6wl1Pvze2nhn-N_u(E?odVr1Pn;Y)_z- zep$)T^>rEvqArvT#^Qp$#YNu6M1c{9sZ>(0NN$AgR(ajs4ATd)oe zmiD6FAOm>N35H^)nQdtj&SjcXIC0GWRMT9;E|58iSTQzX#PIAeUcFL z)*IyYX%EJ=728MK)6xYv?U~G)`rZMPbbV zS~@kIFs|qY)8|~5uK8NX;w!I8BrpqMI}_8EC!I`eY?VPR(8eYZ3WU-x{^BzO z&}4YN2kmvu1Srj6rdtbvQzOQKz;-v4R;;Y}H{mw;-3I;Xqb)Rb@LP%mG+B%Wq|tyeLx=sYpr`NrSIz(%WN z>rau+-^h=3tzKB_LfrU?UCl+a)uzuQ_qxJF(_V7_fknL|PYxuW8BBHiA)dhvmeRk4 z0Z->k4l~a|gYJS<2#!i{`{(d3rxhIuuA}|qbV}9=xhPtIo!WcPF>yZ;Q}-ed=;o5S zcjtb}+7Hdt?#B1J=#y?RQi9ThoY2OX ztKA)61$`B!8;SNIl!X@g5GMy@x=D4{YtX7G_LmrjzQ&;NU*KeRnXdkcVMwVm*sM{*_0LeHwLs<3VR+K*<`-L}@p;&JLet{vi$jPUt;232_P+ zXe9&(4xx+uKBL1@y6LJnF5z}eT7> z;Mj?+{EEGs42;pB=jk21t2@$=>!TJ2@8}q;!V+~fFGWBaZW(Tg`+a^wi#qlNd*D1u z#85to?97zQ{?vmnEik!!{HpM@j)_M$ucI7N%mTd%W~*$dpJ*&8-JK88}cHZG?@ z)4fLRpQ2tRSxu(zo{r?hYH#^S1c<`NXP1GIL&ZS{`@B;$eH5b>PdT%{Q#Q;`Y^o72cM7N)x@ky`sx_oss>E3n7xDGFn9oU#T zIVHT(fIsB!_F!Oh9YX=Mgb8j`lCfT%q2r%m2cbW|N##Qvg4GIUYzXuUh&XY4ygj@q zaQWaY1so=qs@J!t6z!PmZTz<--*@dyJ8VtjfBzK3)hn>Xwln)7EAO(jSmONnS*AYpI(WInCp(9$|a$!I! z+*td%;&5#BE>3G(d{r7Ir>QSO>`)OX*17%wg zJHYHbY>7-^dHX82E0*EN|r8 zHh&9HzPI=913a<=1&`>@-f6&}+6|L?$xz(-rCle){dQ;-`!pxGflsp##F`Qa;Kk+N zZK_FjMg4F)r5U2yhe^S(k4W8_e)KIjfyoQwKR(A}fsUt0UkBhm=$+pPG#g6E!X7iD zNLC}4Z?^)7w}XDcM&Mr8*brnY1%1SGJ}k3b1Q%k zrz3E&h3U@zPSp{|PoAXdwH~_3{tjB?h=87>qoEj>HY0e-I1hQg8#<6e{Z&#1#iRJ#6z!d_+%mXU%^4UZ%^prSTH)sT9u+N(Uk5dhEF4Y z{Il;PQ#zf@m2j~~0D?`gr2NLdp3EkObv_>qFR%J@`oblWW%l&6UVG>2Q}Yw!0`bAm z5FaJaJnn;MS!~$klYhrDsC^kNlFxNEJ!gA0Nx-MG^N|2=l;2oMV{?7^V#%(N|9N&Q zMZy)dRIR4gv zlVQ*_Hy{kvt-m^#$WZ8xRy$2XRwo31R;iA=yK!;jSQ*3?|Eab8P||dL_hfN!C_x&x+;G5ZMm@$U1vSYD-jKM(TR)rw)tEquE#7~WrOGVgExzH(Z*ov6IJjk(DU>9LI59n>N(KfLvGp1BE7w?JGYl0Zrn&Q<9db1O89c z@GvsuRCBf2p5f{r@PXJlSR~6P_v~Gc{qUtVQl+h*W=@o|~PV4ZutdCIhA3I_X z8L45ezBQmygkpR6-?dTR0g`To)FLZ<3tgF09@-Q`^N~oT0i9DK5(WRuc{j1i%t~Ll zGhRLSFz=)?#}OnLa7E?BPM9FE3_^8CBHAUgyK~qxISg1*E*!RMzWpe2g^?6H{4#(U z!EzZbjp9vmilG{2Lg9TB1`9Ao)O<N~!p%dz%U2 z7Qe0xQdI{cLx?Rr;D62fmAu;mMlVf3KIUxg6zMt)JH@sm@C+4Y63$1z2X2eio8KdM zDDS_pcto_uJ6v6L?0*|l)>V_Aa~JLZ%)PbYIr_`om{y16uG9uIF9VjBhWYw#+dM=i zdsZA}r}8(<>;-@!Axz1fNKN8gV@$WM9qc7tKai6GD+dkBDa)iW52n0@CUG^0Zcwiy zM2+f}d-yxmd<9gv5!;tBV-w!QFjU?=GZjid4wUt?VuvK*0@PF0=5&{>@*_>=V%sBB zc2=aF*CCI$bs~}@D8PM~6E{l@@%_xFg5J|y9gff{(!mCN!NrV$_~p`BBhDSEPiMm% z@AqBsLaQ8@T(zGtFY2ggu`%bQq(1?*Tn_)*4#H zoP(9P6{oPVKa(bql>Ca-&XwCb@JE&H?!RoQSU=iR@pb)mR7I3vPkBc6ZH~GwfThiw zLRyUtDy`Q~x?7KIr#6z9{(VTYD>RUQiRK&74Q=-oN;G8~OdQj6!D{;LSb_&( zdb@?ecYI`>Xb*w~WD6emkoL>5MJ{D3%VYdhVWg)QDvBQq1m_ZieOXo{J{5Tr5sa(m z@m{^1m-Z%-`pQ-4-L5bTAP7=s~B0u4SP?p9OR>v?eG4UZH zz(T8l*07|Asv2=%UjSS4vkH#K)CAbg=%4y@gA}Ph+|r>EM?K!~Vz^O`fQ+YfJLEEE zeQ$!|Bj&*A$d)%DsxCh!^_BDw)a_P3*A$Z;~20z6d`s8@#a(o1UMip z{RsdAA2IA#o!e3hcSe4Tr+!ygFA2As@o3`(4wTmY9M(VP`7Wj|_k}48*iG#8N(w{bpyY~-}~k`mz~snxVqM`Ekl<#uk|dyJ%5vNpM9T){vku8F?>R1 zQ^46y947{hsKHun zg)zji@{S%L;WlgD94G~Qs?o+P2f7;pv2r2}_s<80`?Gp(ZZYhmtiGa;=$Vv?4+iGx z$L)MRuIXq0i|+nw&U~VlFEY$kaUeMRiK3%q;xIyML&-cq!Z8baJolhUNwPEQYU6b# z_{7E?opBFwt*P{j#jV~LhPdLI*(05?ze*s+e=u)!@_55xrutMmM5zsb5^J5(SXT3l zo5s?evgW z>iv>B$oaX*WkLVJzU(X=qE_p1Uh^cyp*I`#${V#0KrUE%Em)&8|EkC^FIV+afW1YJ z8mQVLx3;x@DWd2Y)7oypUD>ZV$J?YyZ7MS~jRW`rxv<03vT_&K-n(b9j8M<=sXb3? zx>cpM6A#z|&AXhT{_VY>W4it9$C*u`cY`s^vG(%WEi^3hQ`Df(s~N@E5V15MgQ~Zv zJ;FJP#Xq~y{aI4u;8WN%b}ni#>#P}faj}4l%0@L+Hl0sU71h?@~!uvnE4Y{JwOSDTuscYlfscYG7b9Qcv zZ$Duzo;F|^P{ie(CSG2`&*1AX<#S#(InIX-KFEe7ag=>kSvTpYUjbuXY?V1N?r_wm z_6f8=gXb%;gm&cbwZI|ddh0)|E5+D}w%8TM`Ci)o&S;lg(h_=sW){tURTLE7lA4AS zGYfc?=X=3BZ|k&|F;i$0!>kviSru~Mxg^4K8_U&k6nQP6Ve`r@zg?I6O(LfRqNn^K9Jwrr$RPd`*5ve`P72YOU}E8aj2d zkVS9n0n&YyaLG>>iCzcoJ4LgWQ6-6;3d*zIXdX-MSH8t-bz(AaBBomo>!#Q0;67*; zM9NGt-x`&nPv7whEk|GGGHzrczUr*{tOm8hyllrmIhjnz%kl~Th8G^2-q_jpYKU&$ zTcn@lO7Nj^)G-^Ar>T^BiIrEe5$4;<(+)kq3)c?3;q=Fu48cFbLOQOjUG_QZB;9nt zhh6cIYYe+req)%Wy|HFKgEWoAP#X&{a+;tzI|(ziV4g6>eeVj$@1FCjo#rOWr0FQI zZ{zvc7x;HkbmnMu%Run$Ska8U%T0EtSN4+{yFpCzkSc=$ubvA{0}s?8DI+qT2&|)n zz)>{Vc^G>&buWF#Zr}i69F=9c&ye|(IG)_uGKmH*S)7DC1zZSEVVcf<^K0IWVU_vS zg~EhZnsYB(#fzV63du@Xa{|5!f3mETMkeupYNbo|A#VY5Xiagjo7H=x28!}2&Gcra zorAy1E91ad7hV{k@o)D=oWO~Vzsx7yGMsuo&R@eyL3;PdG0x1Yd!{p!g|J@OP6d7gfio^pSZqMc=}pI*BZDO4I0`{B`k<;vTX+IN|yg=l^)<`=LE3-E)h$Rsl=B!P|u^yz|Obp{4il zYjhufD1O%Sr*G)Y)c3@I<={HS$+cm$<84Hd%QL64>3g0<==4I;!Y(+tJ3Qh8@i6JE;I{DN8MC2bxDP4QL-$ttds!EQf!H^|h?;BZdc-KLf} z3nfMS0b%bec4wjFE~p)dA$cZ(U_2NqHu1o{nRz})MZuMIQ416yq#3MAM)l&<3DwP= z)(wj85uf?+L7#oX53*SFGlX!b5dx=UZGl+Lnhktr5a@L4|Hp#4%|VtnfcPcm|6;&;dV{R8K>Qbbpzsf>%d=)qgg3@f*KXKBm=Yt>i&6g? z4nj5iKMPxWgd+t1S()g@Hm0PFBvQM=KMV!>bmL*lR!R#~3ftTGUF_QrJtXG^QguKS z6!}MHNrRxJkOqg2YWQ<92KM{C3vzY@nbd~^sQ2}XeNO=72yo!c!R*TjCIo%h%~D^R z{U5t+5(Ff3{MsOac^cD+_T=ZSxoX~fp|$ATUB6)`bS@~6?YEuIBv-{!O=u=Td25$9 zfR=xRc1pd*Js(Rn{EaxcP4PkW9Jw4Kx$gWtzwiAoOXK1$IQSnr(_2da)dX5Mmznm~ zIpZ?>s3^zSnV>JmIU239C%`gM+cOl-MqFWR#pt3SR z&GzZ)sSm#f*mq>7-fC?8d5&_`Va*hC^y}H`YG{mo=2XaH0}H`DXm)G;DeE5oT2T5x zI~4AQ*_IBYyLBhgs86o3x^m6W5I5J;<@Wmy2;`L5s#xgZGLw+2zSiP&YLvu zgnWZI)1CKpj$S<3#TgmC$k0l0b1GKZGF)#x-XiuS6YAe#js1mRH?i~|zfCWyf?m8A zf>P{~PxSsxe;O!)B=QsUe;8_EwCDnKPX836IO22xZW7euKZ$l*)XV;CoaYSh zCbkr0G3~J4aDVR?v!3}Vjo|Zwbcw5!0ng=oOyJDl$Ur*_BL2SX^WrjxIm#R)RjNCG zVsQDD3}IYGtOla}<9u~yeZ45nA~#EBPbiW7#|;?p9Gcms*+CzQfgASt)~#i@7 zr0@oiRJQ{PMI@}*a7hk|2#wl%t+`a{&E6=IU}|yiQ-3oN!e@T1)Ucaa^>Jc)*)jcb zB47E4t{}3rCg&?8U{Ug9EZpdW{%G5`dG4cE&e8( zA|61_5=)}@zs`qo_8Y;!b9=DlYCL9mGV%m#8yyqSG2Jnx+CB-uj^Ix<+IEGHxfo1Y z8UF0ia>5j(kY<>pC-UtA1!D1OgX!9!l~mS(P!D&h#5&IKA@90Q;Q8G{ikAn5yM#sT zda9{WJzkx(Np(?*1Th``pXxyKUusI-vF6P?oVUuKBKiB!q*Q9H!0+8*@DZQnyYK<| zqDvYlovcIn2@e*J<7R&azd?xogBUsA1*sEPu+KHy8U|LjeBAS;F+$W6TTk=O(LJGG z8w;u~u$P=RH?T@{wJr6D!^3yUT9gf+y>NpB0t5L^?&&w5Y1i_?5xXCcUtgQD?&EktnRaS&!2 zRkTEu_-4<8MV@@0<1N@ScV`K;5G8N$MbPf?#86%E(C_%h?NAY94#hAzKoYR5WRLVL z?$TA}s_(b`N-^%Fj5`sIl71=xg{cCrc2WfKxa~S#6~ar^wuU&K%Y-FSN?Yx0=J=f$ zmyK+3yRL{+yVA>RDU9GVznBSM@*nI-7E1_0L6{+*?Z|V`%(cc&!O$A3bDW%{u%jOa zi?oOv#=X#o;(Xr#iDIvI?S`)^d4_lQ>&FKj$SzoolWVdl<+wm$bY1%ShQD%W*UT~Z zyX|WJg_);`V{d#j3mjOp)>jsLAN4iqi_U2E|;oWP!uf2*8jRRyJuG6L9wmT%=^~VW26IL~4Ni7eOo>i8Ch+1A z*S7<~hi0{lqB?v{c^B_S{Rl^2cD{8%T$z9IR`A`Ksw{aK5?6jWH23m`>LuEWt5IH+ z)qtdg;CLd%r^5#HT5N9RZ&>luDscN?!qc6LPNlBrG#jrGg4v8CONKb4F{{4aD%}zo zvp>{u>?~+tPH08%U7F?Ic=;kIY5SVaDyd?qE3K_n45#x$I7$4I&E(n7He#)Z`6GB1 ziI{&3JH-`m5^JUrewH}7A9_0i3n-Ru`0;^x9gwhXrSrJb!#L_cxZ^1^D&UT%34`zE z9Z>WyOPfD55lsI(2fW)kiA-~)Gd^Z1cn?hu=vqm>-DT;ziwYRc>BSOF7mALoBLCaG zLE5Q>H{P$3>~LMNRA9GHWC10=;;|?CTIi$91HPmtBzx=l!xkmG>kB^Znx3D0{SCVt zATlM<8meqV!#-t-MB>`<>tNmuyjspe)(UM)FG(kX>gF(-L%e}-Fi9v9`!2fj=4}%A z)`feJ-hlgb^whXplw)_TSUY_j^k_cnBRNnTPfj((NZ+2z&&%DO@K@5Di=~D-VYR;A z;tFiKBT}HBW0~eq7apnGq!3+jpE`IBNIgb6$AaJ=beH74+`k>++Y;NO_4F6&v^`!E zAacN8dU%*@lONYuVN>b`P^y<+I;>1ghoDgYv(c<#!73SE6UL@ezymp1cwOreqM5*v zqCF+cAWh=zl%wjV%F^k*x28zIiSC2f%7m#BOuFEAshLIh5V2*^hLu{UC~8KQu2G*u ze!LII_x7rnG{)B}muaAfml5Sv-!{!QFu}u5s%wphs`}kdO_7l9 zM9XR{J^ys^-erQW3Hi9qd8Ho$QznFa-Fj?swmg)7Dmn)wqRB_*awj6Gnz{Ylg8@e0 zU4mI7aNIq_ep#;r!Se5sP~nF5X_1_p?9#mw(o<@2c9krJ$7CIniqp_M+Cw zB}wvVGBZNAfJAF@`TM3Ubk2o@WN!R)Sqpcbrbf76*Y;=VC;I|-Z)e#w@I4)9xI#OI z$ER%bE_RTny(xvE8^yZs1p=Izz8l_lyy5bT4ZQEU;^?A zOiyCk=FpLw^~pHtR~_=u*3iT6e;(Uj&r46U;?q42@JVE~I^L1e*v=e~ge`}5_g~Pl zA1Ly0Sv~OyG3%qHj{a4^80~*%$emwLfX+5uA~s4liWA-3^8Bm6e*R%+BAlWMdF!`-iN6lArGj-_^_)-ozA=dv`PJ0T^Kpj*aq^+fn3*4RYzR zj|mZ;*H&G(=41n*Ghq!G7X`+{O~I*ZwCxt-g>T>UatgsgRljL*V&nx)>koS!PZ?%T z8WjKrC{>8R9^UkB4pEpH| zmfqUksHod#?mc;jkJxzD_0mQt9c-`|DL!-q&+?n^7XjXwr}Ieob0?bS$q=ijtq;73 zH8DN-@Fznfm8ghn;xhpy#O1l7V3Fbc>n~d^Wj~@ee=+rTc(!BfOyKb@LNdZH4-+Xa z0_2C}70r=DD|%YjUkQzI{U15Suue_ewoQg!ND=S@z1=wM#7QW$2TlL?ZVq9T@0rD) zXtQrc`}k!dK&-9*ZR(>b>b#l}ky%!L14MgME`v4sqB^Jb#Pwj}k0!4@9_?gn`|%pa z5a~_5C>cKhZ;ZZDG8NGCyXM%G&xX~M^Qx5y$<60Arp-`qRVbD?#wbM7DJJ4T+ZLTg z$vRa`p8p=i`3HR^CGly{GLHi{WB4#}=XFXW`Ta(tA3f02YBQD*0aw!u(AXxzm%GEJ z8zJeQ9d6C-v54QWVdwdGQsNDz`kmynUv}M7EW=P+zXV!B*qZ8=iE0pu$rYAo5scodMel zn|^M!acJ{*wNvTJFQ#kD=?HY&mxkS>jK^1ide#A%@W&>C}xX}?@5k$Z!+PbI58Ls#i#{Aq-ogw|J7xl7v8qcKfIvCs%FFz1ChC2O{Lp#B`RX?Mi}Mk{>!@ z68nBLRb0ADqJBD`rCDDxYAk4yi~OQy(4J)wmJ)dj=h$c|9B^_?nG-L}5sbtg@wluQ z`XVj_;8?)OO!nehYV`GUO|pFM$_(J&J6UBmXFezV)TiAd=pGf_Q9Uedjxp$HLIos%BfcLXOG%40t4F0(U=;>dsM^yU%Rzm zW)1gC4o@GRlYYj(A!cQb&Jr(_$e|j6(;go5RY5cct1ZG;0QVsz`Dm_nv)nK?`;b`I zzm|IE_Khwml2l~)giM)j#-|2NMfr~(^2a?~hV-S}{%Lrgih8ZsP>Gb)OMF01QtM|F zDs7s72?F$0lkJ|(oTu@HtCZ~Es{fmuET~;u<7C5~s;O1cBMR*w7BFN}g`Of5O_h@r zXzQ{H*;$);JE3m^9-qpENCZmYz#e)|-9l}#%Gzj-i;AC;Witd^R+)2aoCpe+Q*psL zb;ky{>rJqEhyi~MqvVTP0VeuUt$x^L-xOve^0i*e{&}`liv^SZ?we!afbIv``-<3# zc1kqe%LLHXYs;0JjAYRf*^Uy%D;A{#+nUJC-dS&zde0OX7ZTr5C`IIgi6Y$1Y$r@pOI+)DbV zX{X{?!F43R{cdHy+E7V$#O*KYx7A&1%Mj05i=z2v+TcTH-tX0c7Ka#zCwb-Bv7O%A zU724OOH(m!4YjX`+gIzSZ)Az(>g??GQRbwjhXLK5c9MG+BK_fE_otLc2R_3<$hkx{ z%x7*=NIpYAE6}V8vu^e48ahcIpHD zN#C$yLVi*wkr2AIUnAHoQUQxwFFiO#Ct){Bz8dN0Xo9H<-o)eyG=2TyU45a}qKTp> z8_&8|h#yG&{fVSVg>P*pOM~lgqnNaPaVybnXU`qlS-rB!{Jn}K)HO2FW2OnQ?ukNi z-|f4VMy`Xw|j3UPx*wrOF8t1ch+)sEz-4Z!P)Uqu8CIWkste6oxEx| z;nJwb4|T9mOE7Ox)bHT-jGt`|do+>M=zlKK8@J??IhU6X3XmR^AQN9WX&jlItngvJ zaH@*_5!|uUl!v;-KQzuK8R_bB&ic$Y)VVsASA9{N{#=Q1B!w(4pvAst_(%9m>*?di z1Dy8*#gQ&YSKxZ>)$cmoPq%lfYAR;arl*eF96QAF3xg#a4X=5agSol3+!woY#)vB_ zmQ0yFWcfX0Z}vW2fz;blAEnSb$1a}U{Yc&R_O6M2w|m7T=ZJ%@nF-UtN#J>FUeR=_ z>6BOJPUWG$)laIae-!`Fif75jt9n!CM^+&-Cr2GUo6lug1hu|e6RviA*Ad>;cKheP zTd|FPAuPb6#f0TF$}F?}gx4BnPNWVh6q-w+`{d@wUA+WeZTPqR(|DzE7q5G_?=6Er zz33S?10{ZAVPxTYV8ET(>hKaj%*~K?w^Cvz_Nw19F+%IZERR|rT%!o=D(_b&XWYQE z-KF~1Hfj6HMuEa=$kB`tKM&Ao0{f3%Nf}D^H!OBk$To&EG?usa0@uhv&4MQJ9^&4`5WiQSb65@ml7mZr`XsPM(%M zzN@fd$l}@$)%m0fG+y}`y~`lGod47X4Thr-U{6phr`e(wY}H8%VLLpkZQkC+c^vsc z=?F`tfOBe{j!f#exxt)z0?HmZSR}ULV2zda1D7%yGM*!^G4zKF8K}z2s_4F-FWgkK z3`Z01{D%_f{pgP*+11G<@Q#R$jqap)jC^a;Sv##%Bfh-SvvzU5#qYFrn~@i~4x30q zz>bl{z=sb`(-JIH7M6mRq!t18F1=8V{>*>>*qSk8H7rRo1zi})4N1Ufk9G^z0)~e+EW839J_s!) zB06Y_xAp1=1*c!G)z=Yq;)8m|j(>D+<@O!_=rUYWUi}>7wNTv=9HjKjRNWU@x6lkO zt6t14xRIA*v&m@rS?{vY`r_Z{N727;>uOI_7_qgsiTqR6n;p!zQTCa;=^^iRUiibU zB9ne<7O0%?MxZ}_)GH(-hBu}B1a_)r7uUSkgg#>o)O0ZG*S1<6T2JczhibS2x$k{^ zDg5;QH337&G*@dmJ=!J4MLX*7PQRd3dzoir>g6*t5^+?8WFrQqX+BL{6HPq-?HH|# zuWQqP>*e0)NQ0Y>Pu1jyYpwCD_6`ZP$j)y*x{9aP8cKau)V|hv=y_Q+PmE{PIzU@| zORKou18?<=0}LWJw9&9eD?0lrRZ%+t?4@vVK(lKOcfbU~Gk(oWu z5fn-TqD6FDKZc~L`*Rn@eC;97Sx;$K@>yr#S_$U>^!Z(U+ypghtp?4Tq)yruncyu|rFmC*gsI@KyGz{?Egsu&YB(AaV+eHIjxV z`Z_g)m0Q}|oonj%l>W<^*098^QWcST-Mf$Qtb`B)H=sPb!MY^jxqxrf18X1Jz?rc+ zsNEDAi+a7w0WMRuxT!-{F@HYkjW8{JTb2DT7m$7JtZOv__9}`e1)JgJg_CzKp&sG7 zj}hhjc+i0?&KoY7^nFIaP^ZFn89b}A1+UH6(l<-IF*G2wVmYm>&>5AoW~~2;{P^jK z?vtv?d!*+6K)hf|>Ef^b&w6y-K6ZKjAXb_k2iKpB4r;V^D56phRf}2AZR})LgA;$O z%ZYhS@;=vtOE7iCF?rfa!!uf15RJ#H3;;%D6@go!hUX#_J&+x{@BeJq ztXdnTN-fGkxp%E}r`OG8O6*?juhA#S z)RFcwXtb=^)ZOf7gP9${sk1XCHQSe`@SP~=+=I&Ku;+n##Wx9eMeRfsw`FJ^QLkVC zg-x>3#g_we&wvv?V!3xhOUTgKtAmkCOb{-Iajsy*M3)Y~x&Iw>gD2SdUNpWqk*l?rE7J+IJn1z-{|%wyD7+d6ed}r}G~| zLd(VFF4Mn~`;hc7dqm(rMbeq&mhJ%9#wW|B6sYxIW=cRF(*-fN;r0Wv$v^j>uD!S7 zcS||u*t7h{1feIysWX~h<%-#1yq@Jqfr&`Z+Ah1$;~V?&_j6O4J;B-ReDXj*10s}! z^#g~7L^hyvX0g+|UDeVdP1B2hInBvy%?o9^%J-l3K*e}k03OdZ~0J3Zn z*)!>x+Fkg=L<4ZDJ`+i)!=6K&3)LnKqV|FbcbJ4{4K-27$Q8RBPH?j1R_4<`F?dyC zI6Zc&@)g*P2xZs+7Cr$lF=9`+hW}w&lU^`*g(KxD(~hZd#jBPyfl6LC?6t+49A!x_ zT$koQ0xvxxD5*p*Z=J7gh&|60*@r)7-mP(Ou}?sYP^_fjCv=G&Ww;K1hDkd6q#GGP zIU^HNZ6mkHddDb1lSwzt34XD0mmm>`2nkhZ zD2qC=5UPNk%2ZV(DuKO=|BILcOl8O3uA$X;M}F%&8LG3va2r`d=h$zKuo9Ws9MaBm zR^+ohVU7)v`FD7HdgcoS7Og;@QI`@Ul7xW8Dl_{=>kY6$yTOZtBOdTjQ7 z+k>UC+MCqy-kklG^@cOgv=`)IPMJ}Z-_kT_^?ax^PXh3++@f|SVhFtooc70ofk(cdOK&rvhN&S^*6w)}G{IxgkX9brU5A#eQ5 z0Y2X0_t~q{hATJ>H9Z#_2J0%_mB4d3XFGr2RC`3BVlEVAFC;&tp$6@S!aaVtG2TPc z@ugEr@5n2kL_$5{3Mb(#rOxR0pWnatO)k_?;ra(VW1e(1PL*D;ne)~*&{M=x6AI2G z8ei6@U++qTn!Bo718|!g# z{#}jq-UQBtdbytoTE^w1b;y@xfc}C0NjPpq7QrlYm00n{MbOy?T|1qN3Duu6=aW7T ztv1=k$cX+PmxTSL+}ydfI2_zsM(19D$?rB0FgRhL@pofXLHgk&vS65@n!&ul41$LpN2}OExw(1JwLna- z9=rigXp33U`1R{Wq&>kvGxH|Y_IY|uN0Qv5T=+jhgk;Z&&tQ)^u2i0ILwR;c{+dm3 z5ks|YhhM2RN}_vqe)rfNZv8#d9r4(mj;D{#5^mA;el=d=B#WR9-DBiK!-dtJv-Tdy z7Z`fE7fac_9QxN|rE~n}fg2E0R(t;vsCW|8$7`vjKII;%lve zPUJ#()AhC8%l~p14o)j+>2dhMnOE!A~I{}i5&UciLAiRch?=n1!^Cu%Fo5t z22i;tIqm@=-hI}wGUVX1Xp_X7+hZzv;PKeI3T96VQC4v+GMu2RApc|qyuB=`H)0U9 zNnS+Xi{$Xm_3u`4n869?i{(H8taJy90R*S9QN<*zJ7>B=+%?cF1KvYlh>~sEzJ*+)%2q9_|h0a_)C71{$a%qWqTa zZ?;3bg2W9I%)^&z(U27A<*(Aif<6W!seCI*k)le~B8#s}8t1fR?j{0n5OY7AE$afO zhn;yY-)Tqb!psdczL4Mc5JgJ2iV;|M{Wy^#xH=(%(pZ#?O^p7fYGnmGP2#IyqkT2E z){PDZ=L8$4_F1p<45M_#H1cCpRzIo4JLG(dm6sLt=yqdA*xr)bfKYw@&?58Dl>6Z3 zZ$VR?)R3&{3gt8E#9J0D2)M-z4v`fAN1d||tq*W=?G81Lx=Ph0IDDy-`OJ)1h8qX@j2A;Y&N_b+P_b@(HmLdY9M1EHuAg~;Z{(uPGk4FijP5L)-SN7ZJi5I8X zEq|LMTN61r5osLz2vK$OnbYv2&SNSGPxT2Wd4;IFKKv*bRT~BVc zPFOl7@WbZDAhFauubiC}3vUhc7Drd^baer4x7vtfYEP^-)VJ#owIo6RdZp054G$f| zeaJ+u(k6>W!emj^IMH7us#Zf)Yn<~}dPQ@XZeW6o6^odlSG>F*l0VjmX;F*?pt6ZS z6*)mBAbEwxQim(@1$CuXP~Vv!4+$cCMJg}6HdGbL6iDR%5Lg@Rx2B%}kpI;wnyKt`D;F$A&J!Zy5c`Y2_L2hm2iBs) zvQz^@zhP+HewI^d#@=~q#*MKAAWKCiY=R;Ow&U3xaAtB~NlcP-EXy~Hj#UVn6g_C~#hj}*+WTRqgmgc}IcF;!^3RC;x(h$&492adzZaZ$Z|SQQiT$f3BkT@beb*GXi&mT- zS}P;Z-N{0Ve%IY|)m1?&R{o8i!M}W7|7+BdgkwM;!JXb}eYGI4vq3IOb4_KF{`SU{ zc65b0lj3wGiAO;1?o{n^PSLjdQk24@M6UR|!>!SXD@p+;chB;5?10ajXzhxJ>7Rv0 z98@qyMN%S{Lj&7RcJCf*y)eYJtm3<;m13>F12lF7&bJ<348gWSL4rViK~BNkU~yLS-3Cg(O>cGZQLh7eZky zAqm;C&rlfI#y(jGgTY`hGsf(X@Ar9*-|_ns-p73(@B6;a>pWklq~z-ouSgqXKd0KW zuW}CapKhl=hu4-Y#Gh*2&ILjaG0p`JN*h>STx?G+tF;f|+cA$w4d2UY`{tP(%%0R( z-aFM3NWJIX+DXepy_Ehk9v`OAXF`y7&AGIiez&zD;4X20Yb5WS+4v-vdtavKQRPkKa%eiGIVJ6n@cm8b zUD#BJK-@M{9b6HawKldKiQ3z$2HLK7+94)BS#RW1=11T8|4a8_InpWFe0mi9dUU9R6$~h-iMv_km7KO&kpdKT6E?APQJ{GEINeV zt9FEB!)Oo|qpI%xJ8wk!BXAq1@O@pcuP(3+F6~0Mq8-1A4cV&se%I#(_c7m#JI%>K zj%|fib0UyP5JE`hODqM%uL!HjBA74orX`ug#pe%`0*+h;*G}Z?QiqJ5DTTqye^7_I z>_E{zK8IqK-=dhKHLL+)tEC!V|}GJ~I-buxh`nwzT~t*?;34Pf$Cn;e_h z`L`I#XLQHA&V<`clC;=6s6YDeVH@dq=8rq%!CJS>2mLoZrRXNA|r9 z^?8Bp^e!Mu|B%eGTt}auMbv?vlrO2KC~@Qw^hA@cjLuXiq`5dZ$ywGns0F4^mF>R#MD-dltBYlls??pWr=M+h4x3t{Y$n(G z>6QMbK-zQ2bS$t`&7;(33u#uNvG0ojt&;w7Hox#nc$Zs%(C zRTCLP@Wkz|85h>24oDYt2Dp$N=9R{Ie5&&Px_zZd6{2;OqmED`XZj<+6uKBMY#|1u zG^^73OOI~6k-p(yzpwiA^He&ap8}!PKG2{u+i%NRbuhor%B)A_+X65@!J2B`>E816}k@}d`z_t>X4wacv&ODox7J*S6g*aebZwo5nyD>!uk5*QASn zge6}0KC{_qJ6OqYNe-H;#F{H&ck(LOkTQhh2QTCpFO|iu_uz4Jk<#uR|0_SiXb4*H z7c{cFOg|L2kTm{zcPS2E2vWw>yQ`SkbEamgS{UMz89U$^t)}Pi0(Qe9e`eNuU%jHB z|NNjD{r7d?XJSapXI;Ci4;PyP`h zUxe&C!DWidO(1cS|Fgg?pW|U?RdY-SqESN+javzEPuvIXC8>+cp+G~Vd*THzYjkiF zJbWf^LR6i71H0@KD!o!_%01Sa?|$4vQ0qx=VAfCx5??@yEU(=~KkCGGe@E60@K;l( znpSi$ybE%P@8o2#z=fTQzQ~&O@Dj8;9`3#gy>6@~^H^o`%d=@9Gy*VT>75Tk-4moO z!v@yYF$5#=`WijjD)1-gunbN+aXazoHXP(9ZLk0rE(DU8gHvBL7&5{r5Ft=&poW$lA z#R1yJt^<9)6_g={-`4pdxi7hN*L)&TU?^g6-b~w}$&+t}E6$6)3YZyqBt(iB(8#Oj z+utb07}%*3ZhvaiDNH%6!*b0T+|qs88~8s*^&DB|{XlsX`&pk3FFar>wZ7Y|R06YeENql0A>?Y8wRmeX|sC*KNcO z(E~{%y?)vPL7PtM<+uXm@QxlWzV3td`yGUzhLGFgyxx#rRyNNR5(=k=hw0KLmc0MA zz=k&`-RqTU_H4oTkm!TiCQp~_@FM;z zp6wsIRWp~#ry=r)f4r1V-rpXywQU;Ni!=KuJ-VA81ycsD&=!NN*y10cg}Mnryl0eO zwc)1WwY!9I_@hL7#SNQ*R8Hpjw&7x!7itWUwI`ZN_y~eyc50*_a!NjAUm@Pnt-n8O zpR0roeRIV>HI3)9fqN-d1T-TwIdrphz-8R*Yv^RgXL4{HO_#dm$5=mk7RBX=a@bxo0yw8}@g10>Mv*xJ8_YoQrqEd!CKHMa?=wM8MLO2yh@>o%>}`Jl}0bK=SS zki!cpiPzhSv;0a$k#YR$_gkuutUoAMUHI{3u2f*|=S+TxQ^uuOq9qmh6}))3T>Qm^|NEh^ zad#3)ttp^aClc<1ig@YUkC-+Rc1wDV*x-0~z01nhI%g?NMJoS)F`WKq=F3Rk{CfA@ zsa!&so)@0`RHFW=lt=KF#`a;}^c4xasm$Jxk@_rzII#mz9-p)W_Nj%W`&CyK;bVWs ze^~(9?uMF%`XXE0MCiREh>G~iXTh7z_+G#3=O}wi;~~2!|BQx(Q{T8Mwg3Cj*svq-W-U?}M2 z%2l7`jU5&hUl6FT_=LCOC5A|e^b@r~FIZIOuVg$FSse&$cg(BdTdZ*PKIbkPBIs}P zN}$_x(=E9qN=$QPcql*l%c+3Kla^72yS292ObM-B49n;JtOVV_B6MRsbN6CM=P~Pe z{LEd|(p!=V&#rg-lp&nC>fJ`Ax;hHEC^0hncVsQpKRlx3Fp6Gfp~b!7-bq>dBRayD zWzp_O*yi7E>FoxoA0~!co(IbwT5T_Ey2-7;8>+4iZN|a~VIJ99beGOFOgk*#!a07( zi1iTd)=Ry5s7soq9U_gAf592&8iEXuBWQz;F0}OI)%$v;1<-e5xo_{zHyKzs;G}7n z*(a~Uu8P-H9@??DwHEZWlDBReAG3{*+u!<@6lroz<9j}Y8vGW!EuVO^(b&NNoM>(c zOVEi6y*U_gn+1LwX0Lwh+ianEBnog?b-f;1}@3s8>r&tH=+z9?f6nnApfcE_rt&d`> zzw#!;HwJ$6us7fyF{w8&HwJ5}Uk6Q7Lho#yTMP&Ye3_6-J_mdkQ^U#TZ&eyX=nmw! z^xyu3m-<9^NUN8)$$1K>zJw*2$q*SfAuY0Kd;6YVQ3cI0S7xg~)>`u|6%pRUL=`*r z*lh2h;%vPf&lC*4Kq@;zQ&*Xq2wy1?2!$5Yk3Nlgy!9)D95lZmZ#THTr>1yRB z_shC7w;)?1n-p*U4b9EnaAcD>n@cSpnAOR$VPT5BJdJKjmuL6TrZXJvrCqmkt=ZkH z=r4vnFf0RG!i1&`%Dby=Fdq7VarDxS6A)lTzOZqJs&WDHh^n%{KVk{lBo6kQbd>1~%ik>|*1X3r9I9?9<3$nUO_x{fr+ z*rx6NXhn@oQ4D^O$IN_6re}CDW;it%*SsjZXeKT<2xHmgWXlXF<(G*=C5CCP#z^N> zJkybRucu7wE~&pF2e%1$PN0M}z>bL#R{A>7Zneza$eZ*+c(kSR~VOdoFK0cc$bbm2WO^o1@A$iwH zs4EcZC!>Ct6ZEixxwq+d0|ydPdpc@H#a9_^=A-z+B5VIRQ;)8+eirN0YrP9!JEH$U zUDMW@5}+2L7jpR^g{BgqioiDlt^^$*@K7Bw9hnO*(cbB#y$5UD3*9e@0mjYZd+a794iSh9Kz5apvO1)(TWbH)PZ zbuFZa62gcou@LN}MFt1U(BcR?8{B6*{ zEg7=rIafc(s#9jXb~Q7fMq~qL$*rbyk?aueq|P3GQ!#`a2HFt|ia}{{tbcB}cLU*P z$eKz}K*CFTlx18@d!>*sF1i6uDs$BMoZ~l*)*t=@?FcTbJ&cu@I7|556K! z+~kCFTt;zZ^V-xkl2sBg;>1SLZJ*lIcUa*l>7IyDUWD7Aj4+752F<8l0J)odWBeB4&R{ ztob=>Qp@aS$?qxG^SSSi+^cl_&td8~t%xcz*9~*d$K0!Ywtj$g#RU9qS7^8$8vR9} z5EW5<5Tj;$PI^|D_I0E-*TLift1Azxef12DJbZE#GeYr=;OH-6|F#EyN@C`<)*GW2 zA05@-b3p8xe0P!nI3^5Itq01}bOX{lS?k7)|6>;$a&R=axAZfz8(*&CQc}n{u{*&L zeDAPr%)5KHx{c=JQh;Mu-%zemHT?)FyTJ?keg=VRPyd~aulEbT2krAtw!4WE;8^P% zjWQt5u~+mJc$7j_;bveb^I?hmW{C_yu*ajge5wQXej6-%hJf(D-iH~%H)Z(4t>I!+ zq*cimE2r)fl0=yce6HLvd*`NNqFa$VV~nA-lz-$((#=8HH;c~NV95?%i5l~Pp}9;# zSj{JtitK4vZMtpqlSk;kJr!E$P7B^=xr*AAgeP$M)3D$()P6!mz-*u*Y2WNS|Apt+ z711#Ppzzz7871;{)&<_dVid#(=^v#muR?t<&4-s@jS%Tt0!zS*UT5@?OAbdMd zDii!D5uggZ4E%;9E_${^Z}6a*^lNybW$;%w_}HTY)qnj@xOU(=+QX?${4T_Y^73*p zE7*kdgY_S58@|3r{@)RlvRR0Ay3pndlHX-tOG;zN;gVn^;c6L$An|K})6JF24ke@k z8rS&XWYd>_&XPJipdaQ`El3$#!XhD4LM3}m5w^J0UjSj!vrQdGKKiK&{}f2 zQS+>0Espass8xEtzQ@71q8L~f@-HdV%|+g0){^x*qE>R+9A(O*CH+Qx&5C1<2c=S0 zFevr)!Tv_7J5+r4d2Y-Nx9g44>Y$J9Kkd{Vrg_S6^N%Y4o@BA~*8Z5CkIZ1*C{&^V z^YLu?&ez3C~lZL(oa@!G?Hq1KUx7H1xAd=P*|FIBNBytYinmSQ7t*uQhmT&c`*tX+D|C&(7N%30TY6x9)mQ^|B(`eL>pw_zHI~_y z3n|$aQ)ER{U!Y?p$hrLw$ZJy>a;$perSV;xX$2T-x51JamIiYyz-R=EGVE90+b0tH z3y?Rx9Ae(cy$j0SlQ-M{SETam{IMggj+xazb%^mDAjjLiOdQ4^lT(TERmG+A;Zdqw z>utsl?iZi*;oK+C;(NQ1GVS{Q0U&zP@kaElqjK9gcIy8#j@5cv<9OYA<_kyePTn2j zpHYB?$qD$3zSL4;5qM|FwMdXKkT{m|a)3yTo}EBAp&q5<%ZGad7pQk4W_kH*A55agK+rMRuAt#R}Dj7wi_0!(-@vv$vnl=Rc{ zSD3YnHESH(>9Q5BZ(M==cb<4Unrv_M$A+Wb$x#;Vj}EiUn();T6&-Yazsq z*iE2uyfqe|q9sgMW*yq~M1S>&$Cr6HsXV(Z{G!Oi;hK3wWm3v)2EnNFv2nM?L_9zNSS=mjzNpp`IH%aBm7Y=GCa{0I5-%!@}Rqgd%JqAqu$%74u+W_V&GmYzXbZngMA8I)^wySJ1T4@rlvT5m4%0k?M zJVwGDS0NW63y;5=A9UlB9422Bf3PaUG--@s6-fFaH6ER1<#C`Typ)gA5FntKbBt-( zuK&bRVBOSw6=yb8nawse{UpLpklHDMPGDDjf=;kgzXnGG-!DGi@Ohu}%pV#Uv|eK& zF%!8vMBj$}#OuEl$Q%W-oCyNK!|a^QBUPa55o^(tC^o)+`YagVj*M(XUFHZsAke=8 z`83y}14Kzv7Mu2v{;&)I+WGCX9uby^Z{z}}TW^MartF;`uZGns;Ycw^F+s_=u;j(0 zouo`G^PW>Bzwx;qe5TOR^g)t=>(jLGwKG?P)O#R{&LZ9j|HnS#(VwTW@D#XLkS~Pg zuvdOZCXqQWe4Tr;*r5RVp0WoyIq}5f0QxQ@wl+diTUvdmDr)yZ3%gl!ac9#-&%PJr#gguGFpC< zXReh?m13rT6sQ@deT5GXBrkD8{n7T+8$A0sd?MH`%Q7(N(bnktj z4=0IE)|6=vp9e-ONO(@M0h6diz|- z!2JZ~18C9{UbbUr4prQWN`3rczNqSW!r7*p(hD#uVZX@KJYV%uZVKu{6~e_ z8hk^9hXbV68W`S64!q}*i!qg*oaUV0lwspJme|9${&ynIzF_%kD7S9w_4wgMyQL$E zR`9BkN3(^mc=EGLRI;|1VDmeY?5C8XvSIA)z}=BFw+nyEw(u_MCA`6&Gz3cdFZoeC zytuKVC6}w9BK8b%N4w1Mc$c?gF+)W4&?@=WmpxE_5lcg+fMvDIDESH%B&%)tWbGW} z(CRvwjqZ?jxp?jA7&%tOm5qVbOU>=*!hL{(%+y>&fYgZcyxpMnK~En$2V&C=$fV_9 z((MB)W;aknr*?&m3(0}u{Hwqf`Ppsh4dsDB{U~^6|3j1y(5e2z4zp~l*Zb1Q=FNoz zf%SWZX&jI0%CDtt3W**VzGz#UGTQ-Nls#AmI(^B4-}|#k9tLd;d5Hmk&?{_Woh<>&p=#J;^_w&S}^I%#WBve{lA_lzl-NUUrLjs z-MS2br)odIn=S4kK1Px5_ufntzVenJWatNvl$aYg>P}iopbTfn*JPp7&jb^x%yFvH zafY_L+=}^y)V6G&8@V&Yqasa#d3d94?7+vtxWhSbBU-kOtZ4QS-=Tl<9i01!YqPvL zAM9)4vM1eFBMLtpF8Uhzb5CcB{y0dS&2N!AA+~KCvmaM@9n;$eSWC|E({u5J4uF!; z_1A{m)!G_#=CY$3eAcF@mV3w9XD$&BO48mT|9prHNvgtLkls5y3#w39Bo7WGPdW16 za98Rci&S)eaCv|-C8RyAmgXNWu@d{EL^A zsaXO)*j3-g+Blm?Oj17aa)xg+{ES(D97PNtLl??618>v|J=CuY1mi;nwOcE8bN&#v zW&DoLDn0#=`u4*}$}Z5#-i_(o0=@r;qgy207NGXrITxrQ#CaSMNOhMOk>Dr0f%gkM zO`JW(o_&UchWpuv*I35tWmU&S7?injH`GI#WlGl%gN$}jS!ejK0Xfvq>)C`w|3CmBBGOi9z z)C{G8$V!;7MG*q)nv%&2A1?%M1WCQH=V!oVyiCEDcZe`tqMzPYODTO2La*!wNE{c= z6cR>#!`Pc<#gS~G>i_f~dvPa?Dy!?nXMJ#1IjZv8`em#IuBu7<8=rPp(y9+*J~6(Y zKX>3A9Q|<2BAfiWl>B-|=O*Z*pKutp8WNpya4vtp4e!Z?uJm@3Ep$fEJ$1vbK?uVz zcA1~AO%L4eHqWlG&nJ3LoxsV>M$=#Fi({l!wvG(OUlAO5_>S~R9m5!@9Okj_55#>O zLWZ%f^-8mqcmOm2*2zGRCFh=<~nng+L@j4!>~2r?F|bvM8Pqf{6Anx0neQG z{lrG2(i&$c`R-?wEB;!`xuN2j`X*hy*{av>ZZ4u;ai)*qx_-hsPzYmLj+ayL7)^MDS zNm3MIGH2>S^;z33TmZE@Yv<{SdJa(F=Kfqx5Q@O0qx$g{UPcwc=%M(fP2 zZie?ILQ4T(Ix-BG_cnI6_RM8GZC%eO7%)h2)2d(>QU{F;(AK0LOCtm*!g&u+7MBx0HIDfmzc=1i!U3{8;olh8H7q4@zwjP zOmJz9q!gSzCv68@&HFtV-qdsrAt{~~Lpp(-*9#_^K1Qs>p*!IA;~G-9*i{aMz}j1o zk#`8rnOy@#2aj#}N)`N8MBbid7vdU+q!DRmeV?&*PUC44G2JJKtY~!ew zGVU(sz_mEC0*Cpl;IXzubdTpN>JkO&8p@5|**%;w!tVX+R}VejH8R&^8F^zIbL}zb zKiw~xBH4Ct^Wk+IA%D{j*0-d<&#y7x7xvmFZfC#%xWMN&x!W-Y8{uI;i;4|X)Q%fM$@+wBq5Mar>e=ur-uqP1lB!BB3yq%W$4tfn`h)rJbZ zTn14Xn)=I(U!mUufwq^QAQcG%J@6Y)J*TctTIbMG*cZYD+)PhRt01vyw(W+petKG2 ztq*y0_;G{*o{d&#eaI;D@-GI>{`T(@&9+OW93DiR#3_{xZZ3f*8%Mtlg#FpCBOLa_ zKNuNy1&Pp%MaQ9CWBN7;908gtUM`(S$XVUy z^8|yL!cOJeiZ>fM3X9oPz*Vxtb_9Q7biCWvsl}pBQs8X)l2e`_3K?*O7+^*BMUCBy zi@CtmtWt_!!-i0Wyu7wCk6)PR?gx&~uwXqBsoy>PqyEWi0j^d|oUI^?DHN8AGy$yf z3{Q!K1^3Y}>!X{p+bUA_Jzj)D?M8><7JI}g=y?6WMUwHg+$RL)e3vz|sbH`4sZ{6( z`?ceLOQ#5T_2_d^lgwXbd1&LpyB6ja{<&`*K5p+92KsYs*Zt&_)iL*Z98p@BokvD> zM1!YN1$i{!7zVleHmLX%Fo)HV z9pDnY$eA97Jlq)n3Qh65#fJZd*OIQq!CnT1W7BdcMwQYF9lhn5y&`BQ^HqdWGJ)j^ zcb~v-IJECWcKfj_!uIw1mfr615OWl@p%5$ z2UNE~qEWg>$xtrt5w#xe;yAVXasXD^uO2IHyHok|kD&5<8h#q!k`q8UQpfeYwAjXU zcRg9B@_bz3>$p`v_dQ+t6&1!$D)M{?(rDG&_lG3zEBG(Ns}aR)o!g!KnqT&vxLetr zt!Y|sm2d<~Zp?#{rgx)M0>V^lA%h&Xs)vHo-6`k}t^bZ4=v48N_6+@E|};{|rb zeY3}R`C^tY%n)N{YsojjQX$GW-Ad}4Czo=M|53R_W55z z1K5>`s9mdR`izPDUYBuDBmP#SfJnvzoH**2&c<=l^Pt~;z~2@fH3xU>9|rZd2Pk#BerORxQhdA zE$wKLB{L-S%)K2$l}}@t4MLQ-2IxYbR>oq2&Cy!nHaQW4&tS~*Fm z?XH6hFmgUg@iSfK9%hFA;=ZS4pHcdCf4#3OuzI^63rSBem9pysPD_jCT45YT@X^qm z`^{sa%R^%FO5A&}*aZ=ES#9Cm`9Kt5(rb<5;Qc2J3dAV-$!hThnm;cZ&W#rvWjx!^qH(0& zqO7^`@ghZTbMl@=O#NpM1S0TY@E9*}^I89$1jlCwd!uBCbGs``G#)P$Kms ze~c?)z_bC|qj($Q0Jx&(er}@|Y0Rs=GZX=?lYbp#qK`kjA{=_@=BTmUtjLzX=MrE z>oLK5KyQE$0lt5JgNb>%66=-`=BJYBf2nf8mo1b(^m_6_|j6SAp1n4 zem!Jaz|GW6|L3p7&p<7vP{J+n_ZTu*M`+dEZjK44$(IU12pLNmYny8&5F`GHlkrz` zXwNk(Se(PNq>wQes!t?EESMiij-*tkwS|U$mTj$38bBkCHmvgb20$Z_=}+f@-kmOA z-Pdn4`hX)T#fhC96>ubZK4?C)?9=Naepz1Jb?5X&h0Q;PO<|iZneMQ7YTf5OG#|o- zhSRb(7@GO|AG@s;XVhBH>QJGO8^@a7AZq&k* zJkfPHHpoWem__+XV~EvU%b9=tAAgBa(nUEpFfzVvbig2je_4?wb3p7FKfhF4OE8(? z`$<=P@8q&kO%P$P>ULlF@|Ab6SEM_DA@T#ewL;&P7q{&uP5pVUQoG8V;KP@eIwIVm zLcSyc=c<93QcVLUX7e^KLKr8MUFcEqE&3IS*z6C@E=X|_AdjGAmP2#+39WXh8FJf zze1B7@OdZ$KSZ>#<{kj&=U&q)YlF)RT9dpSQp{E*2$h`^XPN`6yw1dO$0$!a4#t*KwufQ1lSQT<@rM#j^v< z!d&7YIeWjFLIm@9b_F6cad`QA-lRR1;FE`tIR5!OximExq`!m8LR(oLIi!5=k3l>AC#MV*X`-wCtBCog+faD*BBgAgO!>j<)=?eSFtLDW$A z$I!}ZJs)R0&9|0<5*@7Y(vN2+$>~h z+-Dpwah@CMjh?6==O<&bWp^6;0rtb|ej}n1m}J#FIe~AX=V}1JCC2~=OP5d z|9!De^!NhYm1>5^w7w5l;@Xu4{o~Q9k8@sjfCou*hxai1)ZEUd-}IazlrG@ibQb5B zxQLJ~>*$N7|0q$XD1)dtG~jwt`}U@zHZ&B({v>K%?(IsL=f!2T@*qSHadO9Ob=!I7 zU11eSf^t#q>vtWj1U2=p{A|D(?k6$dYJi-59z@UPtpDVmxG&|l z99E*;KHuar`#*Q~)UD-ylrP{wr38hZ~--(x|5fA^SD@J2)RF1lRb=`?r@r>6b&TB&>D#W+NsphNN z&EHvXgY2&!;r{Y#C6pc?B);%0p4I&74M^>98H$ozNnUkM3%BSvKlYEI{HPp5)Nyd~|$e;<=$ORH>B%&sHo?B^KZl(671P&y~K4d@e+Iwo1^dh6)`t zFZXh_rHM9=-*Q`ED%8pZy(C{`AcU!F47tDU_QNu$UnsP2mw!&vZw2~G(}=g@C`tu7 zvJ8;_rK!Hh3;f{dEyh}F56MJ-cAcHY9AwOQ>cnp5>L&B7Uq450sx}WM>7_>P!ZmKy zDY?G@82QBfZh+qr+w&$@9mL)-mHxWwccR%wcQ=0D@Rcyn$_FU$hhidnie`I5rNWZ7 z0GdWapu^M?mRG^PZ^II69tu#S1HCRF+A*Li^cw{22z;v-u5px7F%2Iy%~2Fa)$vU? zA0~P`lzX(;32yw_J2f^7*8ZNKQ=;(}x*K5c$1d?&0Tf?(gWpy49?}QSybm3f)lGvB z{di@&s_FRW^T0j4(n1Gmt=X2hq!Bp#R&{%AZzsmd1i{ew_k7B%6X>qg^l|e@*}&(& zfx~;eFXYDEn^Mb3cS1Jlp>1z7w)DYRH!e;Ov?$M08!Wt(dtgfXNSTYwrxcz0Lo?6h zm(5x5-)t{N+i_~IVB@A+yqk|Lw^=pUv2EjtYA@aUynJ?7Ffw=k{dR(s!QrFjIOAs<-mM z3?K63$TC62$i3r8=a!QDtPK$jlVA{#wyO=+N0O0N#*RSR;GOjAeX-tUIs=Hu! zqJvRz{noAc5~ESZ=Hp(w?>l~DmTwRfN44}}Nj$4~_^?v+hTHXr&Rg3H1X0T{0Cqv;< zF{ET=+Je>NzLD9C49a<)dR7uwQE;_0bXnE{lNP!H5$lVDlMHF_uJL;JQWjmh zV0H>DYsdlG-THW!_{!Vn)wBIF^j7)X(w1kD0zB62_zEESRw-qfVTYlk#_#(PMscGY z!xQzlLi_XC4Mi8b&_cTW_t0;tC4B7x7}d=_?jgcpq_lWO0q(|t9zupFrzc)IG_>le ztW4zSi>w;kF}<+%KTlm*g0U?d*Q6@Qy23k%)KlV>kgOub~%bkGrs-#F3u zb?AA{4DdDE%1=TZN%u@RX$dF>s<6q?w9(+LU5{8EdcC@b-ekY9mz{DOw|4b3x72ij z`SWik;OO#O>A&L<+4B1FjPS^J$%Nef{p0p(SaQw4CyZXhkgBh-VV@ge64Do{wH|S% z;wVAsri|%KBqi7~N-y|=ZX%NWmP(CurldANeVb*n>kVWCrDBMcv2UmA7q4wnZ`J6u4w)t|*CNL-TKdyD(r1n+FOWaZJoeFk5>D}TRN2k=Fx%E49 z?=f|?gu-$y^iL6<+xDN>+?XC$)GtJB7^sG1eH)N7GV`mxQDjvD9?iP&(hvWpV}8eC zkHV3tzv~szNa~6X=j>i9+Y9mwxCVJy)FGe2`b#@s8D$_6%3VY3GpQY!H7v`0kJJB; zj8uNQ^|kf}c|Qv%iRg;a&ad~LlGdv`Y}RtDl}ZBKAh&qr7szWwhk31JB!Eukx#wm` zhmkmbgAlTIJhjoI$VW5PJ!&bojT}@9c^H0)+MAJh&QZU9*j*A5aTGE$`(M}CHlN8Q z#jr~#0EfD~5u1BNZdB((4fC+kpVpHRWf$4OXtM1qc-Hroi81>L&k%r&-K!<3f^n}F zhI75k=0NedcgtUwhv+O({;qxRoPild|EyQ;W;=|3@1@@~PUhYzoY1k3u;G*o|1ew2 zch`M97Gna_i;@(ZW=N-VqGR=rG_y)X6W;1N$5?3`V_kffDD@s@jZ|o&h)TR6a70`8 zTZWdL4(bZK&%o#2*F}4C*p6nFCXjw)%pOkNsi%xV-|3W(A0#Md`ek7#)O}yx_wGx?TdO(9gV)y!ZT(^2@KmXXzq`9~AHca`y2BYA=t8hc(QiKjV~w z|D;$_NEhG_z+O9Eep-D|SIAGV@Gt_N@VWgh>BJZKBis-oLZeGLTQrX)^bvM4gQn%S zP-3&dKD)F^hKKrrg@1OK&g=VGn#@4T)<#{i@odoC14c*5S%7fB663rMU({~k6TdvhdOl%j8-&He)|)T6N~G)R=>w{-^De;^=>> z2mDTUB-J%0`<)V}|7kHppNQAojKh9LZa;=bLdtzbIKJ5*xZ{rRx0RQpj*AQenM4za z-BV413)L9CbOpmz+BGE$v@uv9{(Zr0L3LrbpB4|!^wR*+EANM&J$=XQw#vDdGRXXJ^ug~WdZHXk!{I(i9J zhLrEi>Smz~TRW=}?{;SQLqbaKAHwes=e8+aV?;IcgStzO;VOJHG;=g@mlp?o55CnVI zK~Fx$tGHD+NV*Md0`{gO_ zX~XG$ccTnz8=kw27^*`ua;@WWwo6W3_zwNQSuykc{Sa~Ze+9@}I_s{I9YHZpK+Ihh~1wAiM8uq!XYx%H%UN~GC=a2_OvqA}v1Exd*|#wh5?PZ(S;kT!%aENhV;>WKWA>lV z_xHQ5@9&>;uIpUabN)EzInQ(M`+nc=*Pr+x$a@$uI18246LArn0DtMtJbRsk?8t+G zL6BIs_7dtZpeOY2tZ_y4fZDel(`Sp1dNYy}FyO?$J_xB{1z)+hV^D>$zbQ|dYWY;| zJp;ES@AKPf5anF(hF&37rq>yDYU#OT!>epez>yB`Y`Sv2au(Mr-d<@PX#0GMiEw^yStc$uAaB=U->KKVAyB z_Tppa^&17q>JfRbd-GLB%cR`=m+I5$*(V1}$mKn{4r4iu$=5Ovm=Xi4m~ z5XbOkd5zXWfd2C00+qogp*eq&Q?J>P{t^zk$ zoI6f?!Qd*A2eFABXfYNzJ$Q9o)Fr%wpw0Q^fGOxSF|9ZGXyA1RN$Yz!H72kRg$*77 zf8dDfMX}^oMCmDJ0b_{g27KLXqZ_Wu)1~w00xvy>X!`EyO9`y~35clrTJ88$ktn-n zJ{bHwTf1zPi7s($A@*=(X$;tmT{ zEB!W~;9jK3AOa`f+$$gO^xXG(DvvlrkH34#PU>sx+F$V)$GT^E=~Px z$T)ZT(e)ovuIQOPzC@efma1smk_F=lgr$ksB7EIdZVqqx}?LUem1pw&^@){0){soTfct{?pd)%h5D zsnik?4_SKQu=-2?*mj#Tu*HgrJw|$_22|mo!I!pu)1S374%nT9Yu`BQJ1WuK0esqd0Xm$uMrG!fLtfL1Xis7R+B z&#piu?2HrO}ayZU$P+HX)`p*}*N8hW8RP!ARSdG;*l!4B*; zd%nGzbbJX?C2^;}j|CZ0&Q+|S-Y-l%eJ-US_M`7bc}8jJBM@N${SdIWi%B=`EjJl+ zPcD#~$_@%DyHCG)f9>K(LI%FcPlEWCeZ6x2<^=cf%sQwkW>{K#BQR#UdW6Pw=iz?K zE!4tbP#S>&gn4xKKr@$$-iJaPF7cVCr!8^C?|OXhHNM8JYtcrRktz+ zgpHU7*X1U-HPJCD+ozw}fmde)Y17@h}kD7iy>+;T|AV(l*VCMOd70X?Kqhw{lFrb4b5&*CW}@+Dz-{|SYsV{X zVv^rDc7ueWwBvTIvrGT-3U!3B)wyfUHNtwd7$4p3o1uo4SHDDJFPJW8s z3QnBjyye6(6JGfKbC+J$3st&9i*=PgB@>+a&M!g*@W^}*9lCJ^YA#O??1U@D^+(Hu z0;6o-LX#hekt3ow_x1kaNcfy+i~0rhLyy%~ZVG#C{}+qClq{!isQ-1MW3!q{csDzOeDC|@LSl7+j=ZM*C>Ga#?K$?*o2YS=&TUwtVY7Jjnx(2yHr#y@iw?e^aFbdv(- zuitbt5U0H3e~_~H(n<1P!177PlEy2T3iiXI)<@P|-VlAf?ypYnbkO_dV-(e#$TA~v ztqbSuZ?&3ude#qdalj=y>=N8^lToL2gVTRitY9f(OAm5WmeYGE~Uzw~DKtZM@z`1!pbtmW^9 z87Pl&mRK@5buXw&^Z`VNF662}e}BJ*_g?nSrN0y#)YyvlN?m#^D>Mh7&Y56E1q3MK z5stb)@#Tp|sYu^`(s|M=6-Sa?w}>_K-@(D9Hj;a<^{tiUp?$jMMcAuoq3V zUj^p5jCYHtC!0LOGYt@H>fcOQ0OMN-Ug5}D#?KGX=?cO)e{WSzJTWZsn+nHZ`Q)`E zWPX+GNm!-@f2a{V0x`UBN)}t}5!&$CW+YDOk@nN%P|Xs+(>}(&32Ff{89!_CTDMMV z5N>VVXCm<>B`n=gy4)cMq!!je zSy7ssfGZa&Xes2#W`K!3xpe$Is(D^_4&U`5gOv0>jxx(qn1qksfv~dJk>7t@;6xl< zSW3d^8#lWgU6?n39``Lp2O3HGt`Xvj&>YpyVI1fB0zS>_VuiZ8NC+aPVb3F&2Qy-| zwKb-8`h*-#op;@R{fT6m+d~uGmu#6<-FjU4ZkFZ7-CPDdQr5>J@O62&Z*i=SyZYvH zAw+z5Qj>YU7SlRr%t$H{xO)()H=Pi6z;Y};b{gm2cwW{BdX_EJL|apkQL zo?GD>oI)x8j>Gw|)09Jr9ojjADE{@MZdB^tE!i@7walJ$t*x-Q?-~kNdVqEjHPiIt z>=IJE?6hxT5c-?Wn{$Afo`#5NIhkMD>!&m~{teI^ItZOJty@oS_es1Ixl;PiW36M{ zTTDKgk32Q>Qfw3Q z95O}5;NviE-q5`6UR|@hk4=^JU^3+zDPRp-@-O18l31gnd-AJZuR!5D%Cez)N?O{~ zA{QH-r5;zAUFCnuyEiJbTr`>=3-&Ix!{t^(o1#Kr_N4IP3bSMoSu!}}v|MJe<2E8L zHzyPq%?N6H`RlM_LH4woeOfTD^|@r>ZLM(&A$?j0V;$=zpLtK z4R#ACGttrCt7=lapnNBw1ly#jQ9W>U+cGDyd+SQVd6=Z$St=icFGI;O`4f>! z8of=YYrM7A1aPs><1Jz_v+=%?lOL$@myIpZFbFnZo6~-C4ocwzInQ zqkK=POX6M4jC-Qz0W;}zhID2R=Q{vhlOxZTs(XehV;!z;7uW^Z`}xX;itr|f9UDNl z5jqiAeN+_PQi^e9h!&S?vU4kH%bq|Kz7+J+e;x+nEWhRjlroOK__NB})-k54G1wS^rbWFr3J zuEW0>7z_C`eru+(^1hHN2Mio9>k$tZS^}n*2ba3m3J{9*xuhZY-ld+jYr8)vT~3aV z7*k@={@(IIx<&BZ#U+7WQ6a&x!X}G7@JcFIEwy8^6E^tcQBFS#eG-O24+b)ree{7aw{{y~;IziRX~Jsed!#bs zepR%V`6{wDaIqBmBqWLsmiwH?H7j|LQ1;-mSigXhSQ&mN7X{i2-l9;Eg?-ne{&EQk z1B^@8lYjN%SF+&)VMf0Ue5#ZExH4j**8V2?7L2Wb?CgLXC}_#g8|v`ed{Cwgaf=y# zfpK^-iY20VXgBH<*a-BRYdM&Zg5V2XW0+jvrd)j+)PJbQyGnoLG(W6#-+jN#;K_mA zm`}ea05(Sm$DwC-M;b&LfKDgY;8yOpQQ=!hdV;fHZ>9Y2r7t(Jq(9+uhnE6MPRsgz zu&fZSBR4lap4Hi3Co_(A0p9x_9xG?6GcJT?9H%_fgLb@6ZrV4?^8GS+demHtV8!Lsklthd@vHNvNKbtQ&-5nvGcJd zwoq?dd~QMF4Q*|Xlj@kPK~$CyHELc+(418knQ&9s#r9FovtG^ByGWJ^wS?U%^o+?l z{ThjHb~vMC_kFul0@gy8=h$#Cc^csDLjy3L9W|8r>pxzDjo1p<5zZa|BOM5jo$7eh zlQ8GF_9LOOSCH<#)!Zo|h?RflJCXazk2OQ)0@;B(9(PW#@sb7uK zq=pX8$&Z5laZzZSNx9=h*a7{^UUHkBtVdg-i63}@fw)kg$zjydPlx1&ALRp~+ zx+(fhj=B~YUB#djWTkIoT?QSAaURbhPJ?LKX7JNd>Sy*T;Cbrfw-pa&{Km?w zB_3D2fG)Ogo?rS#&k)rU?g0G-(fEQ<&BTHPC64m_nT!FhYX7d^Kdl|IDI(S2D;;MT z?C6pF5%6r`ZZv-0J`mQWKeEnJnVsi*{avM*1}1dv2|vgVReb3Rtx%~mNw*mZ zo%J|V0sm#}e3x`T4d~jA;XN}DMm-&4VxXwAbR!I~UOJfkuXuA&z}XUrN7clhc~=`@ z;yi;hlNSUgg;~vbEGY837C{gyZm^CQ6;RI3W#}_Qa2BM5VmH47NJAP>rRZIUGb+Zh zIw0g_i`J0&Zp(Xr!2 z(XmNid7LS9Ixok)A=#rdjZ>{jxH&;9BoKm_4jpTC@1eg_(T0mQa`CXp*g%COg*)9? zv%rZ+SwMW}wR^1Sy$&4;&OKe3;bo*u)jb6|AC_tVjrYGZ+<%2$aieJp4M90xZ3>t* z7Ig?1`rpH-W#g0;+AVz?Z@A?`x#F-2xuBE_XbQk4k&)*EmcO_|-IrzeF_`|#R*c0D z6^INZ=3~8mGH88IaGn2nF(M=EL0=|U;S1+DB@|qSW-?JZ%d3O?`eUL$oaVF51F_ePby0cW4_+XCyc?+S7sdFnXzT8xcrAKOu)KX7heu;d?pw0I0Sdr0tF zJVSU{*J*M_%a(SMNJ`M1uLAMlQ3o&AJ4cM&j}x%ts4sL{Sf9r>;4%QA_2KzGUaazd zEcf7czFd%rgAh)^siVvIH5!vD8nKyFT$B^UlUaEqk=mA8q**1g`tFj3q10B-#~!#e zQ}p%tg^{k8TY9UJZ(;9|tBUpKVT>NEIoWSmY0=6cM2tSxjJd$|?J;$#NG(>>yL5)C zq?hKR&DKab|_KQa=dSDixHyG=~YjOtLi4LO_wP5L3E~906Lq=&(X65 z1|K0Qj0KG-e+@)RbYYT7nAi_*!8m>V1<8VM)EkeU6?Im7CP!4*lRrL+>q@ z5z~6K*tcDBW)cHKgB7g;?8t|n!}6s4zCZiPsUrNlSe$@tTJa3bA$O?qPhp{E^Cj)BTP%D0lW;mD zW;Ztr^mu&zY2l!x2>ary9>CmFPX~gWMC-#2u1*A7h)w7j<*RR0wtspTc)2)e3d&E5 zpy#&NAb?lwXR8}~VQ^h_N9Qj=b{|Axex~VM)IwgYNcUnU;x&C0aOURpW2>b$;TBX; z`wI}Nd{BEkt^EoJ_icM#?&i5~m5Cnfcg8unNvgZbBSXp335>};W}%dhU?#^_W~|8P z+vunnkheSHP1xkQVesf`o18%m3=+4T_22s5 zXb_@w!FY5h_QNZC{>|qai78QZ6{U~Xyu&87b4(XV_RDBr)l%*5HXSr?i>a6}D!E*9 zBT^A$h@JxQuv7AJ9ar*kMlfC_pfT43`dVW{4S;vDmLpq5D$Vp&aHbdGGO;TVPC{99 zoy+^=k6^oPZ-M))*a_KaI#X(U-|bf@lyq?2yp5pwc!9>HLqKoN^*(eScrA>@QQB53W)XF6;pRM#JA zZ`b~08nnGh@EdXdL|3AYVq*rv&KDTS_mFd|4@}SnoHm}c01~P|`;6R>AHKTC``kC< z9I4EP<-d8&vyK0=PyFA_!ios!hIefAvMp#=`yi!HC%j`)g19t;GkkUT$A=G5_3>Dr zVBtwJ24s&0)!=s0+h1B3C>6sCrJaN*YxkuLQfW4S;nORkI*?r4w0T9W z{aQ#b8b39DvL74po|=AJPZ94UCj9)73q%Cp*sn_uh+xGpgoQtMZiz^D`Rlc)Rw-eP zKELA-P10))K`&PVL$n9Ye7${-N6e(6FFY>P#LvH3zOzP?lCSuuwWi;IV9Ss}$LLb5 zh{(u{H$kTt!&QO~{wYe`-%ajAPSF7@+zEjE1Lna&+%fw3e!W}XN4E{%*4@&NoA}zp zw_mi(^qmVE3p8KIWx5daK&{(3-29<@~OPgqh)kOu;FK01HpJ^`OOfYey?fe zLSL&1H(W8hevtdsM>M5EFgzq(x&~+v(HAp+XOUg$Md+eMe9j2kJ~8=QRr#Te0rRlu zqbsePH#5DSmPZLT%esw6LJj*JZUL1Sk8OQZ1NYop6i}6+`Vtb1P$ytw-AS;6RVv+S zs+l2%fY@&3TinNsr;mNQ%Yu7^?jsbnp?uxx>c@!*?G5~kogu$OSMj~Q3BJ$Ec#kkX zjSqf3UGV30vrq-i2Ng-SI>+QQcC;e)3he*gaK!f14s!0M41r!eI=+2a{WeZ+>~C^- z9SM5hdP;k8t5ZLZFe*eOHWuoysIour7Q7062eMo{Gp#&g2{LLl8^~b$p{7zq-|HED zb$=I>#(FmOH5CW~tYA+flS2&9Qb=BoXi@b}9Z>q9}g?h$oTW`EriCFGONQ2nQ?)A=6NeqaXGLi z{3?q50GRoWTv>E!S`g}Fsl6tPcN|uA{r%^e{m=TlGOKRl?#VMD)3LjcTz%nxX*d54 z=AcDOiXL@C`uWT2L~by1$tCeM(L-j#ji;zZp0w#VyNQ=a)w6@X46b7mI=+R)6|IMe zZPoV0UZ}WPaB{&@N111tKgOW%hj3&x&;@3=Bee#bE^0ejL%}Bht;FByoLXiSP@h&! z<&-NOoq;0nX>EMf9;r9++!b>b*+YIit*$P(Q}R8>L%B0B(s%SkO3PW+#P%0;bqL{l z{{A=NopDmf{MG@t%mRSw?Dk_^+9}g1};4{j*_U}nrIc`IMO%nMcl=A<=37F zO7&m()=!hWc7EWNqaQH6Xe(Co9%}?$BltNJr2gN3m8`!sWDacsz=-`#m(7~Bs zq~!q|tW%n>3!fryg!nRN)@h{@Ie`JTFgaWJJr?QEqh%WxsY~9M)*2MTU!#;o=(X3~ zIX|7Pp{Zj(WEd1%n!GK{bX&_U#>b$EGGknib3oRxmHe0q{neN0)G;;gvkuq``>>l+ z*;IOeeB%ukcT1pYcJ^8RxMe@_4Mi@aeXHk4T=nMI-Ru~)@4X-LTViH{f>9_9x4RQh zhjQvgOW^3UbY(X43vJtfL}N$eA8*<57F(xdR9BM^a-*lkr?g ze4rOEkvrk=36uNQKE383{!)qJ0MN9pVH2ImP6aP$Qx5GGJuF0TsB8L=+c`A_MDAO- z?{t#{`Q(>-jj!bgG=!oY_jV;O>gDS`WxvtEagTg$PBrP^dxbrLa8pZ~1CA_qc7W{X*~zwDCG=|B)oUinH5+wdv|ErGmRCLKLRpAmz|u zpR4&xqT4BkQ$9(WCf+5vxGv2n7JWL4fWEyRcn1*ySY}{BzaOot-kWCL?DdUB70u=Z z@@5B;Vyn%fN9qAckck#(=T<+??aV|eNEu5XTOw7+=cbxaz+VDObXq2Hw=BIkN!*^^E72|koS?*3a%16 zO?O2%aM6^5^=irSG*!48r?aF#eET-^8n;phfDpX=^0xFr^7XM9eW4x46y%|Fn+sql zscEQk82UCy==6FCtiYjOW%Ag1q?IGj23_^5??h`lf;aZtOdrei3J$gPCx_O=hRRYY z*nRTDy1;ei`^BHR1GYA{S=fP4iJkiQbK09wdAdQj9jcw`1TlRCQ>3>N56iFT(!4yS#ptXsRB2eY6mMe zT_LTUX@>yCv--YMxNjXU$B_?s><2gMez`Tx>x1i61^W)t;BLveq4CIhR}lsciumXD z=d1y{V>j<5%2coXLCYhv&Irp~S8lbL`^1CRxI6nvQn{U)4Q?Qn^8Z$97*$gfr~Rc} z`DiynZ3Y@lXr3bbpqtrS!n@4~K4K+;_PuQ`NO3AqVH|xhTSH(Xyh#!5LHd)EVskKu z{vzq1mU?1Dqs0%R4o@QMWaz344VS6Vt$!fGXIiLxJTQ_SIBK^m3=)t|CQCn&zR z_GgTq;QgKdb>^y~;4;E*aom=3FxjL&W=3EA5WQa%7NgC_^tqK2U9WE_^;Qd8U}pNn zPj>&+JVyhgbM8E5c|GdZaErOkT;n|_9`^M*pxb6}xX8p+vcEBUYft9QEbWc|-3~Jy zxyhv1mIC4@gvV(@g{Dp};qxh>FrS^g8LGmht1R5Yw0p|y*FE7em?|#pOBktb_ zj+Rbg4> zDAZjY-}zO*gjdVz+blx&JL|(P3J(a8KK!s5ZgD%)EWo7YQ>EAhnXsE+i;dn8LO zOo8Prw3qc8ldG9DmJn$hqnwn`<&Ph{={n?N4b1WAw~Z%R+l37LP~Mt0HJ$Shy2L~H zeB^WU;c+X4t<3h59h)flNGB}>)bwB;cx+u{BP^enby@9$f&6&i9(;JVi(9(Giwa-2 z*TprT5^LneH7e~JFBf#Ct+M%QRuP+}W4t1t1;ef9KPeai3q$RcA2>60-j$MW!frft zEt0~?25b~p z`p%n`h4ZX6aHV5L!_I>({6ZnzU;M2%>5)`GEBD;5Nc=!FcUb=j-n%DCsedZkca$ae z+6a_b8ki6{wOjz$o;eQ5ceW{qq4tguk{YGPi@FNdvr@Kn)Wq3aVFFI&ujjD9JUG|u zJ*mAH-{K?vo;Dl6UGI^wDwN$GxcVXqD*cwb>%1=?=?ZSZ<=LqC;3&?zU4oc~a(YLa z*f`NcX7}6<1&b@@)Y5hyvscJZ452Ac3(qG9;E?dgYL=HL^4fo##4YK^E&z<(}y5EXl{@4$(1+J8O@}L+h@Z)3yR6 zRX1*2mX!Fh8=f*98&pcN(vgk8YVH`pM)XvlUBISm2s3m()Mr}5TVEz2Z52#X<@zKe zeVy)Rv~eFQmM+bF)DHTQUoV@IVO9L$b1*jeIH_c@o5G4o@Q80iCK+!@b0T}tp86Qw z#46d^I<_iBV|R(U+?b4iPnR@_!oHV`^?ljdA^cDJ5ZBdJZa@v*9YTwE@|9}8*^>XL z0xkbAv}RJaE#b2$sw?=pZX|hgSuuq>cp`J;01gn>%It<7f7pDQD_0}79Ns;%Nvik4 z^+3y7A-%0Vkk(IINTq}0^xXw*T+yBo*th3eBs5Rr-09l@w0rSE4KxC_gN2Jh_MEq``X)6=TGqds` za`zbdnn#zq%$a8=5j7T`{a&TZ!Q>-edX)>}#ccQP=e5aS(*RAPuO5_Vxc43La!_pv zE(sjmq4M6;FB_Bcr#v)<>2^bED?i9uIIh{~U^z%4J?xGp?x%T5-tlGJ#Q4M7 zv{%Z9_ybtK$G*7i=xl8#Zny_u`^Qhh_;~{u#o&cVpiG zALa0`wH(iM6{&Q67+jvSb2is*{Tu`%YFSlrX66uwP!4Yc2}%p-uhu8ECdzMG{t3%( zkpql<-~FzW3gfxSEE$$f$6wbkYu8O+Ak#w?DE}soJq*bTWqoyVG)7z7*ku^0sSFe> zsOlGp-jvO04a?p<)@|ZhqH~LH%t?3e;wa?${U_}-+2l5urtMLd>us>dI?Ous&_snk z$3N>7G1g7J*_#EKKidih7;|Z1Jdm$j<>Gu}d~T{fW8tkSI8N!;eMZ|EyeGqK(;E!5 zgjk)gJHJQf(Cow@=&k0*rkXXx)m9PIub-XGk2fY=yKPj2ayZcTKx)rjZ|nGLGo zQYvSKa-X;j%V6+7b5q>yu}t z!;8!_OkVn69q#at$Zp^quotv%6wy4QF~+$8XU2oh{MB-NvAj5FBXtWEw_173P{Uq~Ik zekg2n)0_%emjh!$r%;_ucF^O*v}P+u5~E;##!6dLmS~n5jD)*5OLDbUq)Wm_sW6TDU5hF z8%?s_0rp(C*Qk|PDh;p)`16xsoi=}Z#t)QR6A^JwoV=_Oaq&8Ks=|uh?A#V&JwJ62 zByl=VgE%P`pz{X_OrwdSW4NI0<7M@(%aK0H9Sol$$h*K6Q~lcHBhq@`7_#$U+v1fx z1R;*pXmZL9CoipU6YUq=4r3te80g5;-$fYyXRR^^_W=awtEcn|2Vm>F`L;zGSG0Ws z%Y^9bwr0llf3U&|VK2*n7Az_#LRu46p|5gHdEoT{QC{E_>+P(T!e54pg^PVZ^-D{L?VR@#m#^5@FhzDe7M_nvqhIrrPC$?9AQv(I1&e)G--Rfa zQuL*QRmeX^jMKE;`m22|T}L?nzWM=EZU_6$6~*(w$4M^tIipUwcgKLLaHYK8(YamY z<{%!eP8)#VSGg)lI%Kf)El8g4Mt6e)N2>c($-dNTUIGw*b`|8a|u2bq7dPi4%mMCAUfy0YV6YneaJoDauZH$ESF(xKVL6`kK5L14?%v=+; z_IQm9vUP^%KNz6|v9uhWmzEuogxVO9vk<&?3^|Z04}lWRs1eHC6{|fL*4vmO)rD3G z0W;UGAI#-aI=b?E`=+-wvTzckcttSOyL+n0ceaL~za`zh-;$hKU(o)WJn$u4JY1vX zyNX^IJ$u-e5be&73xo8n4NvS_ckz>bs1&D9w%c&&~`WRH+Hi|jq`Jq?>O7e%MOn=6mN>`{V_oE z02r&`V!%SfJPnAa*iNU+gQ$%N+7eG9&EqzAOr(`zv3i0y)ABwZtp4?hC4Pu#d1MFN z#k;TMdZ}`XL3qTU6c&+ZGJW>Po;9gE_LeX{NWNwaXwFPJuwDggbJ(&SFHPxc@F^vJ zXPc>iPx)o!p}3PSeN+&3ON#bMpC@8$>i|Dnfc%&l!J8njO|rusY}krxPZU2km{l7p z#v-RU+=^8MKEbTh8(?$GHlq=&YfbWkS9L1}*X}?7M6?uiayNxDC1ZOkQ=ZrUOUU6B%o3PT*(a?N!h9u+ReEgNbAXxR(|xG3cY_vxuhPGv+IVoK*I4@XbnVT zF1eQfPm!0)Ohj-618uE0p&)==a1P|$TPH-4^K!5)ra$w zJmraf$75~-pG75$rFp->J$x0rbwcA5-nr*UV(iL1k-XW4b%97*vps}gByz)ELCajn z*R&MB8vXF}>;wWhXwT!l2|*oZA4=`44+ph`AKF`4H z*{N8%Z(P5o05>$iZQFbY3$tz<#k;%=?ZQ2cF-eY+D(2Ys!WuwrL#q*MG2?isR(O)W z;(+dtd}mms?yj}@a#gaE{=4>mAo^`!QS(LN2YEh9%a*rwe#vcLeO}WQ(J$2BH^ltb z{^|1^23eRX3iFmOhbC{jT8Pg0^X{;79i>;D6+P*W{ab^)v8aPL;BT{E+l8el<=`6C1`nHf8FI3(>?LU7WnM!LH&=#0~#D#{zQ(mB(*9YUM-g%IzVlHJ!Cu% z9-gu1hW`I5iT@G(&}U}s=`;VU{xKF+R-N@(mA5;mW+`~-K%v3mZs@UxEXf8qrw8kd zc8G^|^F`)b71K7jJb~v~v~_dOh(kLXPAz1~DUq)RoBGDKz=Dgb_nt$#88YBGhz?)_ zEPYEV?Tu*Qy|uXL30w@c&j$^cil|}%{{(!3YGA5y9=x*X=3qUVnlf?oOKW<61W)=qWhv|rMJ>+dCOor zTk9FH3f@c-6Gza(PyAC>fbL3QFs8dEIp5cm$5Kplg&|(5o9@yuaZmN?M(#DID`d6I zy*9qq!o=vKa;S#09FhVA1pWcY#{-7WS)?;CZWGi|+iNvBK z+1&Me8XJpS$=@VWvL+iUH_kgi<90$0srU%0_?=HNn3EKK8GE85PUKNeu4(go9h~yv z+-k>!9g~L8-M}A-g|LgiG!6QP;D66DUYG9E>HGWP_+6Z_^K*k1&>B%-G2^Ej6g4`c ztJ5ONaKyC5J{GFlkZ~Y(;vL?g92Yh2Hn5@kM8JFQC)N9y*3N#qR@)WCfubsD{~3jE z<1dT08TN~W79`emduBzMM^5epefpbotNb=8zhj5Csrv}^5&st$dcH&%*Sueu5SKd3 zkfW4bpTuYxn4!M8-s0>BHmK$_1PXi(Be2x?4B)TtHv{{~VmRia50Tzc|A^0NZZDa{ z35?An^-CkwU$;E}|cxgR>7j z3`t}EhQ7L2mOv?YS))0uVVLK^=Y(bPdwp3$()7bS%I_CtdtzDZiC!IepS+* z5@T??Xoi0zI#2le#y?Uo*<;3w!tDv0a>Se^TY^mJTE54*G>=bx!90C3us0(6werY2 zi^nwe&u)33bOwcUg(kqbBkX5RvV*6Cc^J+0L-1TtbDa9-S<3P01PTkrDO0&F!q8E} zU8n)vV$V&)iV4#;fd5T`?eMc%2$JzYvkIkb8$B8oKsbPD64Ax3(;f_=Jw|vhz}$oh z+=yhBB(-FIarg-Ed<$%9gc%(+&oeGkcoG5Vy}9)6%&f*cNM0MWn}S+N3ju5=MG^wp zJ)~wCaqBUxgWA)ilfayP>8@nZ#9nm?>g*MY z$T(dBqXvv`Ek5tX=$YaafVmK=?MDC zeAsFsr&F?E2HRd?A!DC{ED#iYpb=G-v#*WKa) zER$(}u5soY=QazN9a4c8jjw}n(^xq6K=N(QkFNuAeCFLoc2Y_CPtP-7DY36?*#C45 z-=^fRjlX;FCLteFJ+-B?(FWV1wP`!aMx(M+2l;Gi=E}j(mFU5%$HhCq9q|P%Y|^6% z96ZdBbbAd{J(@%IDs0&S;|*#XNtExkn8D;!S^Yv+dt~x4qw6MxA}dnsZkMSV?t&{K z?2?O(LYK@r)t*2~4?SfQ8fZ$^PRkw4b)p@)I|%Te)!j}p-Je`nDidAx^g$5Yanhlx zglNulWB4x;H+hi$({uIdDNXD}*T5SWr7}fw0K`hNmhXPg!%>3^eon;y!_c|MGyQ*Y zynZU(Q2CbRvLva*Tq^f1DU?{csa)ogRATPeU5Z?DNfdG!NeWqo+_zlkKDo_x!^Yfa z7q;2$=g-f7@5kfwc%S!qob!4;Unl#B5n(yOL3ahJ=j=ndSo$rZP82e95hKC>ha8Oz zuaC>(c*Alwb&~=>vNmv&)UC# zoLlqHCa=EC+a0r<*)Ea=$LE6+dprk(`MH@3o?^)jUn-H-+~rYANab z1Q*fn2fEeIrzMJVJ{NLX3Ca%bNi0zl?baYV<7k&bI_o;>JU{m=!RB~LxBGABJ^byx z_$>LVVP8$}>l}{!3ZyVY;yDa#RlmZt4-_KYMHx3LUSV)WC~`=HR+d=jN|;W}GUo!9 z@|bW3QYpQya>z#3tDf`B$%%Nr*bo5k5GSF(yZ1W_Z_W$p*J`z_!*$HX;GH6LOaPnj z87)uI1E8Du-3E(kwaC6eZuJ52)0BR@c_+&O2N@hnPUu5&1;?_Cuj1cp^^3rqp%R4dPNPBNgR*X1X{JV>n0G3EH?1GEX@q~ipI?2DI7iB%&(aRx1huRcvN&J+ zWtIZU`i$0Ip;A6bijHr3vb$??Dei5ST40n)a5b)R_~NDi#4pSWf0+X_j`}MxQ?bVt z(Iih@n&j`+m*cou@ltEPG7Hg6fY6TvvV8LpCP&fQH4A zE43fRmM*&lYKRum?aVv>1qVXCS2ztJS6%NwhNR+5n;OIjJMdquLQobQJdMq>$Muqy z`OeJ7jSdtZSytFFClB;Q<~+MJk9v6k{A_t>1Q$IIOoWhqADZ)3xt-&^(q0SRNk~pm z{$%iek;2oX4H@@i{RwPXV9%N$bSa{45_s03tW|FijO1NV%J@fmKA^1UNg|swaF{CVH8dAnH?C-H-QDfH>+A1T zhcXUcv5S%kc;?b3taM=5$eM@Z7EN^PQ3bg zM8XrECJVWZnTlNPt%TC+Z*fm7TD=OcJ-DQD_ghA-cWQFekMAv@vy6V5pvJ;h_d3e7 ziOyt$Zs>P5bx3bFWx-rAT*4j@v8j2J7~55c8tbnO@?G+(om$Q$%hh=hk#Z63deVrq zI`0E34=%1Lu%i^)3_3DM4JOAm{q6=3WK^RGUvdXep*`)e>jTaU#UL>^eZ_QpnM&cS zr6dlLul%XL=JVO~hwen}F(>8p(D4iG-JUMh_y7Ki>(oDd>r2s+8i5SxycQkN$dX|c2TZ@@I%T6)W<#S%?Mob~ji9)eKhRjy5k+6^h;I6< zz8dnS8BWVN^n{sFT-_fV*vFl^t0Oz}a z`h9+j7O$ZfD<9{o2N#Ogv?*T_Sf)lhRuvAb!=_@n-xEuSH9=Pil3<76XqqH%Ygd

_CUCH1Jy!#tD}w^_<|;T5CX27Rd@JXIx7R%tg|*r- zfj5}B52yy-m9`ZUk0|=j7B;I}J5xyqx;BS)_l3m6YHlZf#yJVz_wX|1a2<*v12CVn zME>$9fuIevHCcAYlOW$;v5p%ey(2AcoN> z&s%1NBdUIegEWW9+XSeP!q3nCrj%qn$ower%rutk1;aGN4U(Lc{U*I`p1&1(>E6sh zjQ%TJPD1cA$ySu-L5VZKvJ&6%|4qNc>Yq~-dVFcV>|QdBTz#GDYy$pjz8g-2T=Em= z87QYFEK|sqf?C?YWxq*>!;FRKe(9kr+uuT6LErEFr7t!7o*pJtA zr$|~1>dj^)gn^|XTUZLg|FdXxfV$R=SM0Z`3_32Nu+Q-Fi}tAXjpC8RJt*eD(Fn|^MW@EWR9pe#)c;zb}Zfs z5WcvMTi2{aRnG*yheaYa+AmE4H|5->chOo-bE}SrWuj4g1P@k_??TG{;{Sznj2cW0G0<|N~GYwiXTRXA4Mh=I@ z`;TAPnz(45yVFafzgi}&tE`@3`gHgFbua14$D%JR$@y5Lkz#27z0a{>j4Yx_Xx?^F zmM^=QC{d`wUo6gDsSaf3DuRFXlOOnW9X*0~ev%S1!WM3Yp51cz`fPQ&W~>M9_rsw4 zggN#D{J%)ir!ujNIkImwN&M2J+s`nOK);5Qli;t)jXEdzy;Oc8dY64g=11>w$p;}@ z^@n=r$`o|sMVEjSk*KZ#$${=SKj7MMJ*C+oK_N|nT`JdKzaM#z!EiNjR-{~5+L;J+ zzq}?pvCH52s$ZD`sX3pl^R#?L6DM~Xt(eHFYh`lek@QDnHjopLp-3W456hu5={E@58VrL&p1bi*znkxb@?%Q5&JyK(;2>YNi*+LjF4Nk}W zR+%fNdF@;2KjrbJ-~dGTNpbD#WpZ_T zDN|3puFdQoTnDVEOp`Uqq6z|M8)9PoL$(O_1$9m9Y)7!&W_O28os&H^a@UrWb*`pa zG4%CaKqKNUDTTb&j|N}JSDm|5s6fc>-9U?$EOz0eJ1Qbi*#}d^N`2x{Wx?wpb>3@d z$spcE$*ps`Y#FIE=4Y@uU>6zv>oBd2ybCGdA`Dd|ha_>PVWw>`Gf$@4zEnJ zcAZMrx_!uhcK-_9=_qgI&g=mScUxTR3f{CtrYtAYRX91X2cVB;>?eY-*3@r{;W-ue z*I#XlBjK{ki;v>ds|R!qpfX<1Y}9ZAu>waA5q$wrh1>{f5?A=_fV!hvgNtO-CC=dy z+q^ea5oyV?FGU&m{8?O1y%ZsS4sj<>{FbRazUeaF)+JH8of~EP;C4%*#{&JE-$HE6 zrN1FXY4rW)b~L`i>|(nh6^Pdz`aK^>{DVC$TGqBjMuDD>ux9o{+Fiv{<^|xA+ltRt zVzFf*=h?Q;$pJX3q%U*kw)wtDok*$s#8C%~A<)2=??>xUdw-G`E>}K5- zPh7}fE;|8@FTpi8pF30tqDk~KZX42PItT_{q8+13)uhuCjaK55j7cisNe0!;?IZJ;&Y-#(StsTcN0SZ!zeN2Gy zL|*LDS(b|to;EN4_fvxw@4Av2bmPpxq9112;O#P3$R@^}1n9)UuX|&OtQ>vUFXH!{ zZFk(#2f?g8S7>mpjfOB==DTTSPm&Ue7w zKYlM9T1-+$B)fxp&8Tv^R_Z=qb4B_Ck|SAF;l4`m!q=hwNQR;?&o&kE>=u|;0?mYw zK8d^4lop6=iTQfoN^l4kdRy%I!QMop;dZ0KBJ3x!_tk~=>>PSe;Z(Dk%SFs&VFRSKLc&=?vKus!RRsSvu{%)D0P$@B#FRBKN2v4W^)wgAN z!gkU%SdXyetXQX&ACZrEkiG)IEp4da;8b2j?d=uy$a)^4_>Nvx+8!ZtS2Q**_mTF) z;#cGuS21TEevra7u&Q1EM%_n&W06tG5UWY4?Z!3V>FbGA6UujSwvFLSV80?n$kARP z{3sqJK(w(>rN`$>hh*nlIQ%0nU@Hd+Av*W1Xjd9XTutR3n2Ox$xFAsX5T=H|`i0nF z0GGqG2`WT~?BJ@O89{8F6!@no(bJA_yddbXqW&GvKD^+XiXuAA5M$CnR!qhv&!*61 zmh`^b@^Gu_q+(N^7}4#76uI?7!t;)vIQskVnJkt^ljh2)xgFKez5`JL63?d@RpE2{ zwsgr#zFafpz05(AuZ2`XT;TK#=JPwAUrrIz!g8wP9WD3!n^t9dS~8O@@1iqLZG|p* z>F+}k;G512)h-|Z$+mLIW`gz9rlcWm5wOZxJPUW8t2G)?Gld|pozi` zR^<)rF|!~Z@%13D{M|mIn?kt)@*T*9A6!wk>s8T#BU z@yFt`bo)F{5*y_ZJ3B;|E`atPTo?Kc%IiD-hx{}DxHSb2FoTEO+RdHXGkab|ndRL2 zfv8!ZEF(D4le7!vQqc{d z0$;sWIE3;%7731XI!L_#T?)K5`sp}iM6uoUbVyy~Nlr$aT)fy;sn>;g3i) zCmvSnID`;Na}l_on^b=niQGu^YD+|mG()J2|D?8b%XvHx z4x~^*jAlI?;Kdw!1xx2>Ijax=B}5w)#Zwb1$;@EqZ;-0hxAZrqdJ6jm$7%By`zlHj z>l5-pFD?sN8kBItO%ly!D*|MTnA&4POmNG&XUa_(KkyxseWE`P)(RV*U^;n!*WY@} zaPwXOpJTv|=pStty{n1L&&%Bkh%ZjtO13rqu9zV{F8WHs=xTk618Yyra?azUv0aGS zV+#gz2)xj9X{#5RYQFr=Piu$&Iq=$c3)YORkXAp6MktMmiqex8+DWe#&6Je zv7VgPMe3;Iym<5+ut`c-RH6*esoU3idIoIhTq{lWP<(JoR0vZ_R==K_@;uMl!Sm|c zXEfEKy{X{tF2_{+D2q@-Jd?kET{7P3e=nU9cJ44p2Njn<7C-Y zODnlnaJc58nVB;fR)NJ@p(K~>VgE3+aF}UF&<1jT<6LJ@?G9et{q?j8A2lcK5U*vV zwsZy^ru082J@DK{3uke;qSZLPnbDt?4=pJAD=FEP256At`~o#2Ox4bE4oWDoE~uLR zXgBd7PuK8d7oxY-^#P{*!_`@VlGL)q`vv1Xi=fu9PdoEH4VmoY!~WVba*Hk|3*TVM z#HcLx0o+kPxTqG6{+zD*nFm%43e&I>t0fPQiJ7S58D3gD5t}d-FnAx~64^tra+mEs z3E8qWdZ~EIiQdcsW*2lm$6i}UU^rW4I16{Of0UA ze#r%-s}_khUZE?BeH$iia6%><7oN#3I?BuQhv;y_TlKh5 zSHaSSKaf*6w0v^#(Ek((TqUCYqFWgLM(6NTq^r;owE3~p?~Ma@bl z5S2^xf1K*CLhfFC)BZkBSV^)jL5*~M9{jK3F#E!^s<10o{6SkvsKA$FTX*ACAg*1x z3$bsQu8&b!!=u2}b#OrMbuqi5ANAm9KI1?+(q|5upSttYyms1K`&^tW}S}-lZGiKVL6nh6?5C zPBXu?GHx_nU{Q9n;Csa?g0Tl%zc>`QZ>!Rt3)>u-_~osrOvzwC-`nwb*}V~G(eS_U znB~xhQ**pEN6sJZwcmQwP;qf0y(d~InplWMU#(SJ^SxZ%eNi{*Wur$L@*@|2sLR}< zx@SYXFEoS!IM9_!tJPE!1D~1rr7lczmCpg4hia;Vi=SY4YlTpE&n;EKb>ZanzHqRy z5OYoDf+)t58jDh8iP5ow()OQfg^Qc zU-BMb*zidGRfoOl3#7Rwj+)vp(}BScJ6k4S`8UjL>rvIu}pI{e*CxXK6+@>B# zwFlk$$Lp&8%NbM6%J7j}ymmYMRefgbX1 z0^#~IBVtPrEXebJCoXYEJyRZ?P{8g!h~9TAQ^G_f#l+w*weaXBalvl?X)o>`T{Jf@ zF~cs#u!83zP05Zs_=pyrQ2-4eRNpmQW2#8Blxf{~8jvF=G!pC?!CV6cdC4<>R3Co> zU(Qt+juaS`C}U~&sUFbr6SRp&Uz2{x<9w%GqySh@2V|L%lO7q0zH&r+&d?( z+nUcGl?h{rI;&Jd&d9Y!3@^rUlpGI;JrSDhic8A=rM!KsXH^4kgNl?3b=m$FQI4Oc z+Vppa|Br7rPjrwJUZ-B(~)!M5tkF#ZX4m7;e2we7&&uPa=2 zXop9@D0Nr%uTDp-E5g*~g=^6?^)LO>cDucyQcKsR3%z~XLb%8_&hCNdAt`PoZuL51 zKAwEBK4F1Y_WW~kAvSh1hym6fnE`)Ftt|Y)Fj>=2@I^J>aDu3ZPbg&J-iN766c$u> z*JNxJ_717vFGQOub$GqLHve6`H{6=9)xQ%8UDCmMYkdx={8_ZFf+g;n$9d*m>9#g@Jhgg9dCTKJ52vL0NkT*J=8?)(`;_N2`5z0= zf3L*GAMk)LrlqG=pUZxS{Ai_EhLVvrpgE8E6pU4R-Cl-3Tt<0{(nH{>3N{81}FZZfQs@$<&3O-V<2W>DM3YLbChU9Z$N)3^Lp(_`Nnvt8o#& zasmA;zk`YnPdWow-n`A|?zk>`#O&&-J5SNxPIoVw@IGy8#-w!k&B(PPfk+#Fa-oJI zawkG5xJEu}Vzm`{X1RLOUc0oxB(iCPTp$@VK6Nk_UDj$pNuY&%5iq3ugq5gv5lC*! z69t|hPW&pW-Mz@j<^`Ds?_2^C@8X08<@)?-I6s1f0nJA{{g1Er)J{gYFOL#-kk!G_ z#sJXv4k2(J=n-8g@tg;A&O zD~>xfiK3nqp{1V5a0r?2@TcU4tC38TVkO5sRRLBuih-$M^CLpZUs99#GQ^2fp1bCPW2YwN z!OMxuN4KZAf^!48o9XH=`bIEsKQwUJI2%`zTDalG z43k7Ob09|yJ;#cQWc#=+WwVDpoc0wW9F~YCTUA=Ly@&?SQXk;^4KwD5%=r zwiW{m8XM=T$||nc1-%a(y!$2y|BPsu9Ng^rg}(3lMbuNTy=(68pbVcqjTP>GCKR%ZWc%QP7n%M$G;{ru&F5&)0Is}z_Ccs87BhYW{z(|ji9v$iOA1W zjOCjfhItpoFIC^ub&e1=2p2y83lMw3eXgl=;i9W3uPp?9Q(Wonz(*^;g1x%zFuJ%J z!170qS%ZC-KGiy)-H zf`0#-jc*SIP~j6Qy(vxQ*Kvy?YJfu;7;r_b!#JP^v4iah>k!K_?7D1-zPT@LK}Io~ zOWTnQJp7|es|bPB!oI00)@iN)hVpE zjK*v^6?J%|t)SX~PsF@U@)7fe43p*RA?=ZF(@(!i*@}v|KJEk;_sa|UT3|55oz79W zu`LhvRBwMn+DS(}#; zR~O%oXbC&n`wu`aIr{!wJnFAsxhy&9&I}8Z8+5yPnma@^>-gHN-C zdHgdNh(FAM9I<;{Aw&;~dFp7>1bCw5KLB3|5~jK<)42BBsM|QB64)!UONkmsqY1){ zNDF8eJfj$K6Og$stjo2Rm;`v57sY+0fh`rIBaj?e{h3CNCfizaJKbj0H(|}3zp-;} z;=GB!^00V^vfNPxR976_A}((FsX$e0V&E4pR^bY4{7Qy0Ui|DF z3$Dti$A3W0H1b6LV*Ej5Bo4(Ea!^r03c6trI^>)mFUd!Xr zr7||hd~msZM{ou4STL!~CuYv6`b^%FNOjEQ?D+Rq@-;p_EI47`8t>{4`}Z^|v4DGI zF-TQ}XL&g$5hOkos|>I}OXJ-|`pMMau}-`|2j=yIIzrD;N5L-dIfZtJK2zf``V>mD zDn6v&Amx&a5z$bRT8=F?l!jCD)Sj}^oCv5|74 zk%gCqN0L0VAs+R*GT=&;7Lk(U8kBnBYh*vBO#?7=*&A-(vkMv z$f{P6V5W7`1)`-2I`0?nO8V(iuklgok?21-G@y;*Y>!*?j47#WL~cYlv`2hu z@XdWx9WymsZk_P@;`Ws>9^B(f7s)L3|Y0)W<{=)t3Fc=9E z7T|dj2Z+kiPh>bHHdLqAWS0aG%gOiA-^G@f3P&c69+(o-Sdv?P9Wp{Kd-{3Prx(e# zo%v$MqW_39HaN7ZR3_EgG5q{Sw+r(EJyvS4tRU_~Z?c2xS@?W# zUS%tFOmH#$RiUHlX3k=;b4^EIX=rjNrZF`Z6#7pHQ3V8Vq~7fZe#ce|Y;d$X0z+=q zDo=CxfW4@UE7ylgTD__0`%6gvEj|UJ+)5ifK+q5K9I!cqPY1m4zp->Ctpcy?%3S&> zlZwWVGZK7Sr_dt_+?1NABCveBg$gpllypKNk6a=HSFXKu3Q!)X4d_R9}H>()3cuAyAD z7^ySk3|Ue4+FeBHFalRrHM2tdA&RJ1Epx&q%>)>SJc>5u{NB`qh5V-1N%Q448k^5` z05cwni%5D~$}6u?9a;+-Fub&N&Q0HbIc`*@qO7BfP!ZO{1s$s2p#8xuogE~m_g%h) zdL{6Sc5NeG22pI{fv9%|vA7B0`MN`vvUn2WQ*TBf+#H{rH!k0JXzTP?TU1}36MRrg zDGcftI{>i4eQaoI_Yf3;>o=x;Ro^6MEhS+6jW;=0Fx4GYfp6I=(EAzdS6xBx-~f0` z6l%Hhcu1^OKSjcD0wXY!gZc%@`AV3~XLNhNl2yWlR3lka5%30CDTI_`p$x4O$wGsS zTa3PhY6EJRJz2!KKuj(TJ;6&YB^9smi%)_zkU;^nnh7)NpD4s@*!Z8v!!nGbUA?#m zhP_de;UJf+LeIqeg()X26_@^5gxnNK2^;6h<>2T;;bq&Q7O%*={2ZGMmO>hA9Y@uY zav4YX>Xg|fi)3X((o`RCtYs_U$kyy^+AVq-M_q6iRL#26&zdP7<9^5XuIbHd4O;h^ zW`k&xQeH(Q3vuE41HUmcdL7$N!*T|FBJ&DJ+&- zSMnOZ^hIL^_|TENed20z~y!s=3eVquqrE6?w6hBE&Q2keHSi%&$R8)xB-*=|(P`Et2 zG5#)2PiV+a=Q4jDH(kBMu6~Rn%)+~VUq53mgctybKmr|sa2 zVI*!+YtfIml;6wYREPSdOZ965>QWO*FudF}!5~n-WqxWENrS%}-SDAU-vs^I^d^i3 z6&fERR()@@@2rTal~}27*Yd$WMdU8Izi{RYDo1uR21{DX!c^)@1)WXO%XQp_64@%SUgt!Lq2$S%Lvl*S2+adfDt3{n)HQW49aehp%*3BsuR|{i%`B zP~p6It;VZLwfbz|qcGKh-bXSsxI0q62vW_MqKsY|_kY=h`}?vn*E3uQq4B)&;T4tp ztvkPpJt(ycH@TuBAJG@~{uT?c{KxyFa4z>+w&ffkGxwCvkD{nX0Ch{AN+17mX*)z!ZVHn&e5c1_<;rCD(#y{pU(~Dp)i8)pT%6iT68H@Xuh|kb3Nk z%-&*l)KE&q@cey|RYm>19v89tsP_qN`iaz#Iq#)joDZ#-v(;XNTeNiKe-t>JCcXvB ziN6>TK2v08yn?e9nHwcy_@YUM&v|sKBSXEvz)`S6`Lr}bhbgvNX(UddtPsgq>M?4C zhYp_Xfb>_Bo3Y;mD63&K(-MK->HsL5E;kZ9CV*gx{{tCiz)dYA{gqXa(`h5EI`}N| z`p)WUFiyp9pZbZZIN;?AVJ;D|c^8rt5KBQxPSBt6RrX~UFK`D|%8LqD8$UvRZ&J^< z*ulmlj?q2v*-#huPdiiu-8qDUNk-I$o4Z_({1Ne$a$K-E9-})9;BC{g>4n~n zR;U>99QY?jA20TJq-UA;5&VStSV5hqelcW)+xbR_=Spj?mnOQysu}N4s;m4zL0iU% zlLGRdA2|&vYGE+}pGJeAHae#FW{T%=I#CVp8ljazUzlnwOxJn2srh}z$Zd%@`$Bq-f=9qUBQpX@8edKC*_{Lu&(r684e&9&X0OkZj`kBg>;x9MxTIpdN9zwC-A zxMLCfQSha;_O-uI@A<1lEW!lolRYgK8w7?LiolZQGV7%&vkJ#%(Gs~y%zH{nCLr%^ zEoIRjU1k0i0-4nDuc9@E;_0`8Co?{sQuQGT(|X1xw_)!I%g%sKd*6~I^n163jziS9 zxUtalXdl)l`@u+g+0Wob>6kEw6UWl%)0Rx#bnsIOaK&{y4v*2p-Czy)T3cw&TrGfwa)sO5`=n`&O{$f5Kmi!Y=h-=byW`)|2~}iQiK` zxd}CStsBJK_4~ryIYh3 za}qXOSwp++AQ_^UbBW_isdiB66I2OhC6!!Rn6y=>fL^%0+S>HHjM)P-=y7k;8s$Le@O#VQiF; zt6M<>9Hq20tdRt`{iAmQt}K>3(Qw|-%YMaR^&hb^7MrbDIW1KWX>#<+sQk^R`TSD` z_il2D;{jcHe<(@Glet0UWV|7kwL2JXL$0Lo>>u+-SY@XEnXVYsmtqCfZ@$#t6%ZNV zA<9tN)PZyN6)G^2R*dJRf7882lj!#qBUk3~@~U=;yPtd*lk&GvXgu%mO0ltLB&(tN zr^9}W}&Wl?7l z*ktQ%yQ1FWV39p*E_i$6s!^%K$Apc|fm=PhQU+7(>HEpwOnkd=K>+@o_#6EDC^Yi& zSAaC<4fG8pk-LM**sbplIX5~~HDP0>Whf=`Gj1`{d6zDC&Hmbs`p?l- z(6re7G8cq6v$ddO)%64? z_3Z%R1_U^nA^s-t_+5PtnwL!9%!_ip%Qb34$DzeL8;fWC_6lq(on+&vN1EAKwE1Jp&$DAW)&YdVx&6H)*PSBl_81v@wV5aI^BZ}r`frW#vL zgq-OvU8+V6Fm=iSx5v(A*W8_doW!+>RR`fMGqFz&euX!mS1!P zd@={h;McUH7(p_D0q2>4hv}v}8lQWvywUrKx-bvo`wL$$&`x|q3JH^fhId!T%#O;? z2E&x>mE8*HK(+M7YvGRIZC(*kt4<3XI%Yoy)qPzTK}aRC!uztBpCZ6>Pj^P=ixS_WE`!`_>4 zFt}t;%Ywx$hFV{L*vM$6Wy_Q-*8XOMlV39S6c3IUED66RMyoX6HD~FM@CPYpjHQtyM(U_n`V8x{AE57{GDtbhDlzSWaNlr<*P3gg zQF6-gWf+RJWkWOX#Tmc{{(hQ!Fs1>={rXn^KUV#FgXocUM2k;=9o$`-a3gOgv_FX^ z%)QLe`Sq6$`H8q4fZO~ZXAfr=htm$po1oh%ws>ffPYfg0w@E(28Wq3>Ss-2naKyy| zAsl4%Tfuq88N*UFZA~&uqAT!d+mVdn--|P9s^&TG&}e~-Dpnbb+dFxJkGdq_lGclU zv~APOc@u{_jvBTSzI;=#yOsC$2-7e9CoWE`e`Vu4FZs2LH1nz|6%Q|m*kxGo9uw^m zhXF#PlSoC^cFOX;Lcv-0DcW~{!astc0COxPlp=V6msaA%c8U#30{XbtOjO2^kea~s zx0=V*k9P16d{fWEa~;o{o)i8EziM4m{!a918ziF#GB$@ePYX*z(RbQAPbWhnm3uXV z_)f?d+v5>*&g|1K8EL5Rw`qJH{F2O@1XwE6>ofpbI$h&*jG z@i}M1Gg}g9KSfHh2J59eW{sp%l7ffBk2l_$y(ecrtP1?{gA;|a%E|peCQ2qKZyoQn zagiC$FiN0EhFdw&ZhJGW)U|@=dJL9B`aL!IGNMZepT;H5JGkxQPA+}wCh{%+7T_2u z1$x7rO)0Vb){r=G;5^2{oE<9lPp|K?QQp$itr}{vI8gf!#!0T>70y#_3rBdE;&TPZ z$r`!45D+j2jY1hH)ZfS4&}!^+RRZ7J0u9pDWps^imW;De-z`ZcP?qr4R_V^=z|e#6 z%W$WAG^gdiw=+nVVGqiEc`b3|SAEH^$>9q+a+r_E45QPD5xSn@KtaUsAaW$l3x{`%Pp>#t`HTW%I4k%zpV;%{DJu?WPEcvV?)ju~=r%bq%B z+$!lojK3f{cKmj+ib%0Q?HVz=5bBr5|oYvZn2-4Kf+^Mkz=NHP$Le0^cd&I8d3eTqRL$m&`mLvA0$$G?s%Pb1R3;8Xz5Yx$l%? zMW$9kSAS_}tWh>^%6U%H2Bm~!yXPVL}UdG1HTX5s>=36|@kxaGzc)A$I-xtn0^F zeX$PxTs^Oi>R_dtlCJ)Ma%IDQ7^fLO$ZuYgL-)d4fofg27KSg1TXJ*jKFd@}Oo~AY zC<2DNHw3Rv3AKXS@R{Iyp%bNA(iEgkJ_n)!h)hcJm0b|n^v^gk zN{t2x-WJ}cq}yoyypzK)>PiF%GSJW{=0sb9frw3rM~B7y~OHzn(X zfv%xDmM?`zje@4JigMcm+?LCErW@Knb7ON~jL2F9Kb|V~Hl=gSCFH!u1STA;v#MI7 zDco&lN~=rxc3{+mxOx9rF5i!QEYFdc!B8=7T)1y9Gf@*xHrR}8D$*L6K;pqON7?xj z|0u$^oF4)OyGfCOJ^gh06fkMZLt^CZlyZetv)k-z zgJYgeIp^??r&i@dfRC#ol4H&0BR|M3SBcI?c-IHXu8^&a zx>vM*;O;IIc%TYj`4#2PwNLLtn&*N~~pkcv;B(Xt3k|#MNdQ^}>6JB8cc?M2nOQuKUk)C{ziRjvF7sjZ1C_2}XznNQllg%0ex1Y#+!+=LLXw*vI&gittaVFj zNng9TxFogZV>24|ax;Hj#~2(Y6O0EfJWpxI4k*{Y45=WVE_RI_mlAqQPN2DeNgBg4 z5gD@scUeltkJ783DR2G~jp`iu2|W*EmyTAQaQ7U4O*@QHRu-Bi9Usm>4z-{fXycCv z;!y-dWpn7^An#J)tm}1|zeCYEa0R|7P-2Y51L!kM@nfic=jFlXKRrQ-lMlT)GTFGM5C-a) z1NaMR9yi~QLz0Zz-dd%c62{+VKSZu$m9K|i;E`#dJ9=B9wX0xq>B=ed^N#nBl>^b2 z+$-}!!-wbA&14ynJZc*xowU;B*F}uMwY{L1BI}bk7PU#@p$w;VY8~OwPE=)qFEKlhvLwJBQ$B2_&4&z(i@`0_q>2jbw5Uix?)x zg;~MjOByZg(@a-IlfkBY9VT9X8yb!tT#2CAX9-P)4;b-ew`!52bXzlwy7(jJxF^sT z-N+@^Tgh~=if8D)a$7i5(QiQ?P(yAHSa!L_L(F;X`aV439CfU(L!|^bPjo%B<@Yfa zc>-azd)Yel``h6T2c0$>_WDXm*3VK;@X8chiPE#{8+QAqq{jjRwM;gR1F&G!3nX-@=be>JZeK$}%^DOzo?S%($Fv@qO@xtYk63?VXcmdoJZ=+3+6kn2DX{R%&XB(*Gr z?%6t?bO6|A;qOKz`eqnQ3ryUzW{(tduhDB0pjvK(mzk?uE<<(D~) zOIEhmBY&oEtS%s(CgYStd1v9`ec*DF=1w2*UWIV+-S8c#yyu|v0JAgc4O;gQ38$GP z(@EHQAxia|LCB)VX}JXFy?h;*F{{z@s^^iEy3rWQoIuAeC6cKKi+2#1_X`_8R_m>zbfXBcskT{|R zOxLw6U=N$+*o0PttW$B}c^M_;qmg08N9sN;&}JXDqdI+4q{AqnyUOV8oV}y{jb;UJ zSp|9}6y^H1D!jBTV%G2mlVs!8C`{#Oz0PY*F3oaAgPN-7eXsj8fL^nrl~5k;Tg@HU z%Bd4&@({l{&gqRgW7`0o*Giz0mgHQgFzqkI8_$HTP@}&nqgNvPLxk}-MtY%1bSvkK ztuOJ{!=04(45d)U@@!fgo-0Ua`gqJ@f&f1VTfo^AID6@s5ay(t0z2e1BuE$;=8s%Z z-(tE2!^I77kNl8@x7REj>9e9FCbQjt}1lw(Dx9CHn0MorhYScKJgU9$hwlMw&J6PDzzVU1*BH%t`I7aDPN9r_jACD}1x1#Q}Eix_-J~ z5T{9Jdli++wV$LNz&!{{jqCXaWfjYg6kWFK@z&9 zQSjed%yaZDMC*>#ss0P$0mw!WwtU6LGAzKmONZ5~B z3Kb1aZ5I}Uv`W-B=giyNvPQ|ccFHkjP%*K43XWExB0gm*Bdnd72}$*D>vq} zEz(^;ydNyg9okRjLsPb<`HE|8gKurFBedb@xZ->jgM~4d9>4=yO5KrV=HoI(?I=v;hM2Mst+_(gf z$!(k3LV~ev5KND2vNv(8i6jb!KCPqYY7|3FXQ|uzWbWr8iA|27bA6OH5){M^-6#K_ zG-F6_5$A~bF|2rd%9j)KI?=x4nNQTP487{ru&T9TwV*WNk>k|Y?<+;c4*fgrwad7a zqQt(@7lUQJb1-GXc7l@+ zY57`a{$De&Mvjkod0G$3VeU6_F7l!4?)nKjgEEct2i8U z`(BDydlHb>CBMlnA0aJkZcG4svQmLfS<3Tc$kz#7;9#YIQ;>1-oZTinl81#_O_w-1 zDnQ-L$GHmY4$CXzap3HCC^!kbPHWZr(*fX|VH@75tdf4Z{Tq`D?=zk<7(v$i)wEK_16T$B$i|j~gzsTKD2a6BVjWUbjH2LIQVlka2}B z{`g8cFDGR4K)DZkOcLTExs8YRzp{Yb)~%I_QaIs_G13zfk?{)maS+|l*BZfVx0>Ql ze}Vrn`S6uKOhb4}%kzISJ)Xow%bz9|YQ{P^O6Seo_&b!%9&?VdH4F+-(cyC`?WD}c z7^a6Wpfr50M|iIzB6oNXr4TdxN&`_moT8WJU9-f9)^)eXaVGwXwu7vfKpH+#3y9rLQ|`RwjZPvsWnV0^WwalSQbOSVPfduq*lzC?ZV=?*fwSE3){`u;W4@d{#2 zW<$3;o@5>Rv?2dG4%;E3ggJ}p+{0T_I}oC?;My~UUxBL~?1pgTd5#!Dzy-*=kj6Sj zxW?Ns;YyKn!Jyhg$_I4F++lFzC39!q0c!DK6h6bHrV8UZS#J5{rWhdY|}7~b2KgHCvBH^g|;9(qKykYZmJxT$%=8wkQHk- zi-;G^gL#cb+OxY_x$?)0OI4UmMpyAJppE#gw>2YO1Dv^`*9rstDDK<}F6r3aqJ=Qx4s=d5J%`tCgSE__+OFC(W(uHnAE0=n+ZFnjs-GpoQ=V6*e#- z6uShY)EQh=;xKBeDi<{oK2d{Z*;G1O{^7hA5N4lfbW1r)UrIGup$~O+HS_-fFPV+i?&q~WOX2%#mtL@y#2dE)@Owd$@eOCv*R}*q%7_+56K_bZC z$LVV=if@1Z$wvDi0Re~7L8GG=}nA@l!nY>B0;xm zKw-If!Zf#-or)XfkD3O<0KI}g>hKu{1<9^ zXKd;*%G%Ra{~jhOaX)DbuLaP4@d-CKfRnbg?T{448rpPi=Olt8=asFJI${Ah6}k2x zbEau6xz@-LzFjr6(Uy4Vg^cvPm05~5tA10HwzvJt@wJDcqTU4_h+Y*@;`!%&$FHl* zOQS9_3FR$j!1{Z4%OzJj!xazL24CHTz)9sR0!FeVSMQrNk>@;_)z_9CHiWk_7r%=xxof;I ze{XIdc;ln&!V$9G$9x8&snPouC55thMVUJPZI1`-0rKp;M_bq8aftTEoR^#`x|u_- z)iJCt^tKAEZ49K=5Yfo8Ib)M-Wz6)? z@)bz&J+!8VxQ%GaGgx9*Syd_lok_ttQdY?@v*T`p} z`T?cg9Sh_F&PwU^nkrSvUEgoQe1nH=W@~qViFtokbQYOmMCc)TebAq;rZ5MffwXI5 zH@$F@`@}zhoj28S5Unzymce@-Qa|)VTR628^fP9v;Iy6II`Ki~dRPy9@fMpiY0)EcEK+&W> zlW?yw&dV8S19ym;lOpP6#g>}$bd5R1Bwg(jpn5mHRkPxIZuJ$wgocD+O-BJDr3GIT zd5@Fj=A<5LVRG~@)ej$3^NR&wax%?-UIe=~9AWS3u=leiUIp4CpK@QPsaLk7O~tc`pUrk+9-3rBNB|cgOEY~PVHp2lRK)*>cg0p z?^kG}lJlPYfdQdY)~Dcw)Q2WgG*hkpCrjn5X22;iuAYi=nZdrBEuIHNd=eRe&i8(~ zkchpC(|^xFy`qm^L0A10{|om9>Kg+tz7&1Q+j-F~gxE@u-ZpAkdVY7OdC}{2HCYh% zO!!aP8Civ^=t~bI>V*n}&vhYo2E0D-L+IWO5*!g8(kN{Yn<$cwX;8?O1dr{BsR81f zvgA3gT9+{4H9SaKUi26-KXL+Rm>-qs#W5#<8=Mm-qy=p^hJO**Y#dMM zRW`%%hM&!jI+q^fVO;@ZYXQj$wsK6oa6-k`2RrW9%YcLg|(v}Y3-#H%I~1{-%`)RJZ+J=JhlE>jo%r;kAe-w(f>8H zl@t>+@x)Z!^of$>oO{2VcA6A-fiiJTx%j-f2k*e<yonh>T6~+_>4xPMDIwq(eK1Cjg=;A zs;q7KH0=BqRMla&!&CP5miYVx$)HPX2{0g>wJ|K?5XmJ4%l3y^0(@Db6dY{OG&XgD@<8ZOAu#-NwSno#8Nfb3rQy<~cWkoK^tDb8!e-{jX3NI_IO!w`Q z_^zU29*Qf!tJsGc4v)~0y9Ntgox@6o-&yUuuy36T&;Elu&dD8Xva&=GjlND#hSA^H zTm-$_u%X9Xij+R`q@F5$tS=pGzu|8JJG+gr3m+9^65^&nqUNkr-oV@mozsuRX|0Dv zbh$fF#c8I5^pOJYdhD>Zc_Fs?u9<})?|tnCPW=d`heAak&>o;jZ0T%bFD2TUpbW(i&st?zN3;M#(jw&d&VRYO3}dM%%z%YSx?H zA&nnfx?=N0dSKIR|7RTaJ!P6M=O5z!x40Ltr+@to$~+*A zlPn=aE@|%x8s4M8eC5Fr4z2vnX#0hAVoU8Nux!?0(ZIEdKE!Vu_ALGn$ z-$qdJ`E~xif~?E0IoeOB03K7C*D_*Q&Z2Rtuhn7rRoLEI=SFlOw7=8IZToN{K_!vL_@C; z>dng0zQilIca(kHMV@{1?0M0$=>|}}zlCyZl09H(zf9A{ydu@VZBd@OI>!prtwUo`zdc6C=xKi}U`Q8ps}JpWsp zcZlS3bO>^;#+iQ8uX?X3){Ax3MmeH)G<7X(9T_q;Fz91Gx~dpKn8$BPq9{ij2!H&VvO|G5>Nyx1)lnKH?A> zSyDtP#i=NxtGQN6K6MnSImr58>Me0kF48F_?n8v(94}YFc@^J>#2L=47}}XLUZgTc z4;s@IohXqfg^bIc)qqV4mWC03Dm6nRDRt2>chh$Ax6XTV z??}@x`BNXIyu+;iUxlC|Na#YHEG2|%$P`W7AZupINr`M){aW`O{Bg}`Z_<83I{|Ts zjf`z@_@24_<+(+)b1WU@luwRnhdnMVZxo^tKLg zDRX4y%`YL+{~kNf5cgkWV0o4W`o5+iKV^j=wFU)I^mN4Up&&a%@?FH^Q&cgidoy3@`NnDZ?qZZ` z!LFx&m90sFHS9H?y}bHgP$^N#5mmRbCtZQhmFn_H2#WaJH21_JM-?{$+eVm3%Y14&*NC%k_mU==j=d_a_cbn#2t00Y6omt<7SZIqNSQN`edLRFfe0I z2`TvAL#jU6fK&-gWwmA`X8G(1d~zFp9mC!<7z#~Lda2$&*a>xo5w_X8hYI)|5xxM0 zWmZHzP2(;>(4er1)Dh$L5%izjI+6Fh^iogC;4s5P@~cN0re*?+3mdlK5tOcBsqNAo zrF*^VcMLsG#QFpSIWhw3-&D&FF%y!9je;4KJ!|DAx+Yps6GSuM3P9)DNNaq#$d!Tc49I<|NKZ_FjrOINbY2j-W{{%MEO{5%64 z1bWF{gZmStHfqmAqJbc5iSAOYv%U)4J$Ko(`=84W?cYP`m`UW`;HAssgWtfGK$Tz- zcI_APeYJfvz}_Z*!tAc(>XWBXd_NU>fk~|%+3!Ib5w}5Zz}b3E253T+<8_Tu|F<0! zmxl&A;Mc20G*S?yV1K}#Ipv6{xw-O9V%X9we zuIF3_lhsVZv${(2R{FK|BG(zuR;<66g>pg~L)#fAiUe}4$vZoqUgm3VQtRA8)!I{N znTVEU1Lydi8++mzYOL1D}Z4r-^9U*CcU4aos1}9-tmP`h_ODp)aXws1-cP=Nh zp4^u3?%M5f;ZFQz2BEp}Pz%m@Co=!&oZCf_q@|vb_J^UfdM7B1Fi|1|{^jzllP?p7 z*&&+a)|0Xkq;pHxZB*OL`7L7mg&PkZg12hkCw7s2><@-1c&s6&4U4u z&6`_L3)k|^k6-yi>zW9VMx*=b4rO3QCgWit+VO<(4;S^)h^f1R5mB6rb)NjwB%*d= z6YzkRM(k&=)y5%n$eES}LAX76~6p)(x)@D{bDRKEC)sJr|pfc6Bo6lWycI%Yx2D zguM}yt);D`J#A3$DO>Xq^!FG@7%tB0+k{O2#J^VnMh#__SZm8-5GOa z(QeI*#|^n3)c!}Pe#x|Ltx=N$mEGj@#+He*+8o>K?Y_GwyjR^7RjhGUa7~@74|kcm zE2_nkb=+M)6JMafZDYAbLiw=q6wtuNt)H|ywl?th0^v=UfiwOSuP7#2?>3-s)lZpS zTD|Z)hWlzg^fg7NX8b4VLkCQxB>JNKJyfj9>~sH0CHME<(42Tuzi{!zOSSVVwF?Os z9D3Oco)iEKx$JG9yn-$;OWMpnKhRQ$>*2cpc{BP@`-FCWmeK#Kpojv&A0R8soWqgXN4g%ngO>Y}0! z&gX&GW86ORWd8#BROqL#=rfUwkJ6WzGSetoIJKy83qSA0k(KClD}On-vXt||D5&SN zeTGJeA>W}>KK;nj7-QGYM0Nd{x*warXVm6j0yo%poifL_8VBO&p#D2 zQ?0C-BAhW{U3ycU+RJuy!Zdp2svaJ|?%`lJ_nvYEQE90&rYTaR*y>(Z$M*MDljJ&i zQ6}?+tDLx7LIQ;lTCh5afEXAMRyDzxJ@}As9=DQM&~}A5-7Gmn`5kp};<-q0cWwnC zWYm3M1+*juDaGhK$jD{2M0*u`HQIy>ZpSJz4iNHYTc0R&Kmu##PBG(LUzvLzk$g}u zA|%NDvbL5+q&=!Cb)mN7@_wO^z~Gg-?AR5;XUCd-7XgBXCSZ#jM@FwMeLNEXT_`!OwAl!$lHaB`!J_9Ps16n8@eJ#v7)yS=t}jA3 z#mjj$8e%82K#fUs=!3?LBH~yl)}HeJbu;J+3fKXEi#yON0x(j@yfJuXtpX`fn?600fzXX11=W%|y2)BE#`V0Ci3(Hgme~v!TQ|PN+dOlYL zy5jb<4x#55}ecHJqiKQ4)2Eqz&ovb;6kAY681 zt1olTZ?6EKfDj>p=K|sTPGI&wSy($oBxib>`?-)*W5Ov(v`zX9e%?25duZ_`?<~IqI_=k_K=PWLW4O zHJM%kKT>gwWXI0a`{#rM@NK=_8@0@<5{-8no^pwplZk#NT)+)batvj|cspT3bvI%{ z^X0_ufp$Q8!t|o(YWsxfUDHwF!{F=@ghyr9E07_s?a{zN2$Uv7TXNRkTgr^-rfAOR ze_0s$AM&Qg<~8{5n6r|s0RK}`^ZMboTh4^nQtZ6wbE-nb+2E5uO`;JUlM^lt6ZhB2 zkC?sP<+=6rSckbV=vE9_d>gUC2qrFoU~U@RMQN&ld1W(54Xw<-cyd=nctfPix!o?- zlk-g4hLXopT->hO;M{m2k#v>#Mgt`EaFgEOx~i zeq7OlU-Y7B2mIq<$`Os_{%tU7Y=;*L_o?GAP}$btwo(Xm|7B*6GUFGjIwN-09#0Kx z93VQMyPK)A8j=s_6TZ5bz4{XPPwH?zB*f4KG-+BK-uiP$HT~99#Z_M6l}`TIu?Aew zf_dAmUu*bC&(YIrw;I zAmVRht-s8_Tp>JgUTVa$usb_-=NshyNpg_N(}hY-;_8`m^z)$YF}BECL$vhgoZ=Rl z+~g5#I2!&501Bxcwzaxc5~9<_?ET~g3Tvgiw=ot)*i~THTAsIsI^nSz7ev{Ty`Q-{D2uG$U)QNRg6B;h%Yg(ueY~>SfHT21p7!=qf-6an=$+)Nl#p!T4N!#Z=o_ZS@NCfy=?QTZtG*yHo?d)b z;tWgK6z5a&nE>>DakX(@Qx&*|QWOsT39jKPHju?4sd;w+yFj!V4%vR{)wc~wS*|w} zr%(>!KgNJMcH^YDx8&lM^wN+wx{J;``Q?asPx~lBbu+r3@EsGso+7VrqAE%g#9H3R z3C!Dx&;O7N5?qxs-C;&SZuT+fQLieKF-O&lOefgK`_!4&G|B!1zO5h3QM;5uCEE zrM_n4H(l5pa1{EP_coaiO!v7o{X1_()%C^a)hDo5)K^c+vY+%}I8rVDzhKYvT2#EZ ziXxkK4(TIjPdN}Y#{yi7(z2crmP$m(>zJr~gItsA`GB#*YBt+LDPI*$XB60Hf`x~& zNliJ0a`}*oNdDlDkngUXQ-zFwXS5`Hk>hE?tQ`&iwiKV|Z*BLCsIO6^eK!x=G>vG& z?Lmc|8+Wi5z}O4n@57@_&{nh5x>2^R!8ciObM>8H(<0ZQB*xCEcTH04S+wJP6Z`8m zTYi>pJr|?_3_cg^325XV<+beW`xeOuwG=fXeAGl9Ao_H#rxcV|UZu@R!`BE~w$um` z_xT(2@ha!JiWc`=cW@@nQ90`xa@rBSjwiacXimfKt>Ac;xc@ok2XZ&-S%z7j(*;*M zbl#UOpZ2l8*i)Rlu-_A9>#ioGg&fEe^JGZ%h(iNOzk)l{5bIeR_-elRRHr*&132_A zW&yO)E5pC15H_(!V;pf{5q|*@Z-#19)s%aqD78bpxDPh%9Y5?#qz|YBV#oza&QpVy zO^+qptpBVfPlZH1LsZ`C^OmRRmI1qU$8S)#8OT7n_;e#48XO8=vQkHWgyx< zwb8#KA(dr#C-LmF7t|kxd0qM*<@>ccWz2)=EO&d9)R+Z#G34uifSw*z6d3QU^*=%N z{Yc;SU3*%#VXb{bGd4S22J-1CVw)?jGCw9eFPmSd%_^|Yyay6CG;d-~#W`G{kS}0T zmSk9A8#J6V-}y-Yt7^6Iq^zA3?wZ#IcjMarS<|{^s8|s`=gRwJUkK7Rkgu|U@D7Iy z77NMRkv&P8i50N_&XjX>c+4Kb7~|G_g&qknE(!z8ZtR&h`5i*P&#Qy}oii1Y7Kb8e z;eL#d8r=duSqU@R+Zgb<>&EQX#v1oGgVN44;=&Upl)d5*!$q-gUkr7W@;BcdOtrOD zYUjpudd>cX98*S8S=q9L#qT5KM-aYN&^ZsC{y;CL=*6PX%+K!vc znMF)S6=yE?+>(bV10Rb}8+yS(djiEVGul=z5o!pRCaZR|(wY~$VKab^r@Rmjb~u{S z-r(THU9#`A5^N41@32EYTk~f_OUZYks74n}Q2RI^`UpRBKUtw&?VZ?^ND}uNin1S6 z--YEqP|iPy0TytMt;#U`{pPrQ)KcH=zKh$}07N9b6dGK}r=t0^FaszNy24G2YdWiyu zgw4)ioW;r#?Ii5$RZ1CT1r}* zXXX60V0o_5g*rx~EP!zcCze)Na=`SyhMwZ+SDWct)A;kgdlP-i%3&yoFIFButo^Bra$#Gh=(6ie z#c0=s=>(#bsDZ|8pFUf?e`a$k!aVz!=qeoGB*Vp>4cgOeSSAu_?rlI=bwgAaoa{0` zMs8Osvcna}q=J|}?K2ACUqw3+(hQv&<_=*2SQT23qcY6qmK4#2W5` z`y3Xuq%0ke>o@g_-Y$oH=x+J%0NzOjfl%1&i7Qd~)3pBS{d8z8|+>mtEnpasnGcdlOvCX;-yTr4EUEA#P1S|g7-gfzD*EK1$% z_i%Zkedcy5K$679N7e7r1U~&$*n9a|-=~ zZD5$txRr1z-|$=A$N(+R&*fVOR&tM}E8p{*OnzM!%7?YH8tPt|fbvaq>$xKG27+7D zekHe#!mCb>0osSe#dSjtKjyAQVS}7mN8zw}O&lV(Ij~oC8+FuXDBo)1{6-8n-kM`D z%=0Od< z`EoZWpDHnu=Y@*iDzXCaF3vVJcV7`)YBETLJX3T5L*~D4YJZpgj^8u?=6dtb!Pv+H zp7U}d!P7q2@Sa3grcyZT$|r`vcb-}2=F4v@mvTd+{#wCd;vR(V#^=+m&k$yDRUX1+ z!?qv1xP836;pAA=*GD=C8Nk}oUg-f%aeAkBoFsX+>%HHHpd0(4iR9{^%WG+zl5+qB*8W#wML{NTt zf!|xY;4Iqzixjfk#ondn2<-;PwV!J3=KS#*#*iwlzJWV@wIgUb$82>2{9BqQan}1h z7oq)~`_7B{q})+K-;#gjt=3KK>X?C`jtxxKF#3*8EmBW>rI`$(eSV_X4YmAirXKzm z^1bxVZkMim$eSZM_gT3az2Sk{k}MkVQzql$I2BdYL)CR?sW)+pG5HR~72!|^=ZGf7 ze1d1bZv7+k6T?5F{Z7V`|uyg%}^lQ|iXI zrSuNzbx{(o!`Z5CiJcxBWS5zZSW2U-cDbGg-e=Y)mpF8RX8l(kyW-4*Q;~Xv{FSF9 zMLK_~v|!;qcIj(?ce{HSseQW%p-?;eG&T-gPB0Hhc3_FcZ?$?o8qzu=uuc33wj{`m z&||`l*d?*w@?mz-Q9|Y}nj<$3cRCma4uFo4ztQ0;!Eqb@l_(TwndGb%b>Cl8k)(xN^LNP<-_nGb)AMa%m=%+8qj!eR65R*@%C4ljWcH#xEthB9GTku>_rM!E zMV-?6f@{`rdSnVu7|!`p8M&r;-j8TEx>fM0pk(4LPseBDkuDxh&0G~QN3sxE!wx#D zRbn0Iz_F?V|Dj5}qf3#DWE;aL@#UVaZSI9sWM`7yzPgZW)73Slzoxis+V%&B@L=s3 z11*v-*r4tSah;_&6*i~ri69vd`byKVN4C;^xauVZ=D3CaDnd(6G~ekFGIwULaC)$M zy1S946oD%ZT7{QuR0uI^FUTCDx=N%&?USYm_*SFWD8I{eRUCOXdV5YP54feioES27 z135k(IzPs_ff?sCR2dZ34>l55FTBB1lf`l1=Wg7wv65BO7J5#RCUN{B;TNG=qWRz^ zA+(yB@aqwN?nZkLVXeLuzomKl-*TxPEJci&#*BtyK6^0qc|aj9(rYx-F2k1r5zO^& zX^7YG?SIOI=RQAYsOwcTNYa8z;u2*VH^zUbSwrD$Wqb(P%9z$X@@dUW7&I5+GECj7 z-vr{v(V(VvgFGT+4OunTvmSA$Q7pAkFEnpUbRc!pjMsdnr4eJ|bmdXWZBwZA&rD@} z&-wnbcFXr*5W|h3)cE)aI!HE$5czydLNz8Vp&}TD6DlDE6>!#Vu%u&eI>eyql(I@R zsfLr$;xXhq-Agx!p*%FN`1*0{0{uUVH~gR?Xx!+Qx-}B78n4$19vzoZu!RJ27?zyBU&NXa!- z=&ft2IKJ1oR8p9h=`h~aPE7FKA5^!qz<*RhI99XjM?H>{HWqBq)wf)u263ZaO4Fju zgmfgXTCDZS2_NRyVK>UuH)X`zu7%}jt%hOkGwq+0Z?DPGGp8J8wX;pOBNkc;-;^H! zt%s5Kk=Db)Pg%vw2wMGv?As1#C)Vd22Ma{zV)s6 zDmtAp+hc*A3w6wF9X)H|H2|J4QH-w;7{9Yh&}hs5CKnary!m};XF*O{qH5;bgco!- zu&Kt1H@U5NZ0NZ*pn^JUU$xzgW3^VHhDNfVIxP`XLkRwjPY?%J7F{i%Zh&!E)Asz- zT&k)mnL9l=jhj6lB7Up6TDNH#f}OFa=3Ejs`S+z-5CRo03hela{S&48i_A-%;x3Xx z$10!39O_;_Wg5e((xLc_9ae_bSLQ&-q9t~Tw*r%4&{06iL$ub}tSwAJ_y5clwo`DOh?lFoka-ZRhX48_A72PZ4x@FjC4ClF?ZcEUPULr#W;0IGZLrfU05kw3(_-~3Ml0fm<`InARk9!zoIWOUYq+g z{=}7ty1JD948CiZ{a8^F@Mud9F$XG0Ug-H=-j8zEOA;O0E+^RtEbo`^L2992xB0oZWIYB=hT>Wj7-FiY-xD8exPjx*rkthHo%Nlq(a0K#?k-CE;-q7 z!4CsMw#nAeUkX)jS?IOl7*s4mDw_ln>>fEgoE#Au{^3rZYHbGlvmtY=Lh2_9nY(R@ zJE19w0MNmj&$w37I1W>eMUoCL+47DA)6cNDntvnlyYS-n(Hnys#wmSyp7Y5LC^P|B zL$8MNxBcJ=5oWN2yHgYc*r#aaE71m3@HI7VW{x=Qx5Yo2-W)aj1UAilNrGIFa3&Hc zn6;;yCy>cSm>Z-Mp;<&h>iN3&H3KEzYm4y9*=uzcN~gg9N4Fyrff1HA#X1%6q@}0q zlg7kFyRL_)X-W+~?A$rWmWe8T=Q>!#cCfZ~Wa&oV_##Y#WhapmvJP)EH&Om>csrhZ zRwWx^2rsP5p6zH@bWsg)3-j3>aiu<| ze`?0AKv%uuhO25j8Z*Wm+UKn;e6(H6K-el~ue`gYKX0=nEZ$t96jE+CR-$fU6DK#f zuxnv?Ov}6``y3PF_F}o*xGYpZuWJ6@2!(0BMDv@(B_J)AM;ANq{i5X695gN%7hFUa zRLcs!kK4)FJTqv*v^N5oc+`B?6c9EpjMkzpy3Mw)!GR3Fb*E4>))! zd!08jbYtm_2zhWtL>>Zt&GM{Kf^#r2dcWSw$w&A8V;fq2JPfA}_T4!(`iCbTa#lsp z{@hT7UI0RV0=<+YF!NUN zWTGbhprJMTIaRNAU~zfI*4H(W-_`!4?oV<0e@zlnceM&8I{}ypZ>$8Xdk3P3x3hIq z5_~eM)}hqR-iEbCq-Hgn*vD47&`V&rbr`BvAsbvNwhF(!2*fZt6C5fkZG7PztvMQI zJsGQJvS0GpTjUg7+K92pnwl;K)DDfT1uNpg=iA3y3@ZY#`^G4}?cQVF!y)3}EMeMI z&Kzpa&~pVtw-n=auCbHN$0BQ=E^M6FN?N z!o=0pm#f=VO0$DLT?r+Qgh*$xs*(jGQ;?>3B_woI;#FJ?lfJ{P0&@^A7zF0u5sY7V z5`juz~tkj+P@ z7-NDDl!#Hf(W~`2U@!PyU|DE5CMn4purF};&lHjSRD*GUEM0WK zycc;obphhLV&4m|0#&K9#zU7NITE4^nA8d!VnGsJ&y5~}*I?BZemR;tcEa~3fu^rD zI{wekjdhb3$qa?7{tmV2kPpT);Y@J9F!3@@Si+28p4vdBf0?czZw1Vs+bm4|tgh4W zhgUiJYxFOu+oYksL^q%&f#m-of%x^5AT4xFbWLMi!?=mpV1+KBRnR+m4dcApsPwV= zDWPTv*1pHLURl)AtBQR4WWhPxJ2HQ*o&~qyey{o8n8JK&aSedU%*UlL__&q-W9VG` zng0JM{_E=dO<9tr!iq{I##fPC)=erQQ7UXMMN$^Bnax&7E^|$VT$WUBF+wgg%l#Is z+;3ZEuET6IyKg`L!RPULyg!%MIp_5}XGEF$IcI0P2_8Wzf11Swk}IIh@Zl=QdqvHM zDDZ4htNr-W!m&K*{VaMiPunIbOOY(m{-fq-%eEj$=wPdp{9AyCF}_GRqR;#ce!+o~r=Tl{}^Awd&zmlqdhp8JLHY^7{ra0s*Lt=Sc zQ7I>>CLHUvR}|~g?meGi_)5o-l8!Wx5YmH@v|j6t8cs@n?})HIYzl>5k;RppYRGUxfs;UnVT7^IlVwsJa#d=yibwr=vn!@A6U~I@69rAn)kZ zk$NS=*I-)Gh4|1Y!i|ZW)4&JQUau_w*A+0GM-UtzrH1TgYy9>R4b4VAuckx}1+sGq z?C%j)Y^2-vdFq%ID)KAXacTlf|EOm`)u~SbW zUgbDYXteJ@L5<$!lXdEs6e z3%h=R*SSeNqrQ;v1E4J(0dW;qvSz)rWRb6GYR*nQ!zvpF8^6L3E?I9^Z{K8fIW^xX z!BWF-{BTWaywuhyd-HF#xyxs<4Xe-Y4kr2Frm>*AArNt>4rY}fTeSZ`e-Om6-Ip0u zT-U4R*N_t&!2G+XV<7TZemp~5d*ASQU?KA$uI;dLsjDQKN9`pbM%xVZmWu0n=C3=Bz@ZwRQDU?-=Ve`$L=m4*2^xly&OOJnFHY$ zF{Fh+eemK#k(ZUG#TVa423FOpzl0V?J|K??U#2hAID^06OSdIVIyUK!hr)u^9=e`` z>>38VffUnL&1AdJQ+XeVKD%A91iX{=`N7W3tcTp~z>uvZjY#ckt?7^44ZsR(gPOM1 z8>_81S2o@M6)~WD^#|ZM_3OgO%N4y^OIwuFg@v~-{c4_mM5cdMyCW4HZKyGIAFFGu zVw~Zor~|`zGjs1n?gOk{)@QBb{%3s`^(SyWZ~=l@E_`G*971G7O}R_=XyQGj`lD}G ziq%?S-hQ2}y(oxu?BK7$jf+p!S5n=$4Ys_TZbDD50CqoMd7g*Caz0e`QwP3lEpoT) ztv*4%3#O3H^0(F1NSzzzt~w$kRLJ6~E*uClHbt+>h2sfx%iz@P!EP8627GLO?gUA; zZGZTW)8bvzNzSyCUCijLUjvGke!|Mz4XnFa((r>A`mVtQ_xTOx#Jiz1z!Ql%Huzny z;$uPhSIS9Wg@C=O6DSJsX&nfN9+7u>zavVfO$Rn{okDd2n*a9Kd3|->`g4@7AjJ1= zm)#jEX;_$5qr^imBUZEQ+~b{LI+v_wPKQtJ=2LDJD=;y5o5RcXiBeo$O?om7i2AUP zjMKzYK2^SBuPp6$9U6z0SR*}_O3eoAAgoV)(gJ^g~p!J3CSzH{$Ooc@+Vvo z@oCU5wp;0$l*+!Y>X35$xmdihNcX^y4fbr2a(DO#@%g*98>gq=X!$=__c86w=GhAi ziUo<|^w0~M$Q(#Y_W)Ogy9aDc!)*I#V$ydH0Mn@qZn1ui&>-ir7;Gp!c9)ujKkD-E7zUX!!;${27D z6T{Dj?wXG-)XP6JVOGgCG?o5rXD#!AE$&5@Z~DeLpVlrheVW+^`8!b_F6}DYqm%Oy z+NiT{;Dc~jpvdb*M2VKBUC!4@Pb8Y)f?kk^&WN{|8aAaaiTfw<+bOw$6TEi<(<~p< zBmC%XY|=-Yca++>>&^YGFk({+o*9aMQ=f)E;pn>awIlk3=n*29oI2gUt=i+!<%XIk zN?a$zVaJIhYtV9ksopf_7M3dMNHWK+Q7=q;q<~0V4YSpSQ^#>cu^Z|+{SbXfg30Ip zPtk#j>}amlgnVhSGW1CInF4EGX#h>@3Chh-wio7+@rf_lD_IE%fvnPy1QqsgCXqR z<-WoAt`KOCxPN1Ov)_rE_4`=Dr!zMX55G8_re2vA*TBiK`muFo6M;vt;9+&s33i-{ zN6Hi8M_0=x)VmW;2$dCVpWc8|wK?5vuEir(4;aRV+IfWjZohWaiuF)p5r)w%5Hp>! zxf33eYhfBS5J~LpKhZTB%__-;h^7B=mF2jp_7Y21C^mu<^wG9;Wh5e3|3WScVhq;@ zg^1+7?vztcy=u4*RH?&wk=3ivGQO6f!Xr-W(~Ejr(O11K>ygr3gfrX2U4Ddu^#N%M zT|Thmf2Ah{`sc76`x$=}aR*K5`P_);vp|dUK;E5M$fe%lN8jz>${*4klc|BKm|npO znbaVnFOtz&H$x-}it44N>l!X=_J6XC{)y~5o~!mH>-@LF*AgRl9=B^^_Fq08M5@+F zy|6X+pW;K2_mW+%S~MNlUU$WTLbV#=RW(oq4-qD+K~$)sUOQkZbd(iQmq_e>OE^h| z@IK-ba*(qj^RbQFT@774fYX30*oEg9+J1BSrCuOdd>u3I+DTbcG$7fFr3B)OZ5KWX)sG|{Zp*aPq?$C4TQpOnH%*>eX`?vG-Yz4?ah<}) zGS)SDug7*sV3%-ApJ>w1&@_p#yt5(48^b>5oC- z7yFHep2B_8AFBEk5uEdM8af}uj1(tf=GK6@3kA{q;eZu1AbpClorc_U6nnB$R7YGu zR7Q+Nu>INQ8W?=mSgY9P`16L3V&(^e4aF%U`5&=hAN%9bj5CS)V2bxu^PUtx!jIP* zQzT^*#6L%m{q7Lb^esl&wd!qC=@eZITfI%0VD+n4e?HI>f4?um58bu1xeJ*9FMnV$ zMy(wdR#oUd>c=i-BWbAq`~5>14+R+;6}SRDJMe35%YP%zhu%F2cw+>0VS5B;jM@mC z$y;;90~5~UYwy>-1`O4_MeKqVJ!v1BK%HAU23^hfB~3l4SvdQ_RmIai@gju${>;A@ zzT!5wu3T{jS+{^Sk`Aj6crOO`5xSL}*#)1gd=?G_P+ruwrQMOLN#E0(qOqi^JhR_I z4`9#999{$EMm{l;<9$SFKYV7~E*`d?jBO*q*s4=kh++L}Za>;#gTG3?3BkHo1V0D| zctLwq73;JHbW8C%=st~Kzq|HYy{1;VS?~LW4~l=LW`FvT*>_j>HFOWgC#|DRY_GCv zEOE)Rp2s<}-W{93KZ~{dpoDBr{@~U$lZGQ5rNWo^`LLKb>^CZXUB`Zh4X!PRCD?F{ z-U5#)!Vb_pxNhrfa06ha4?yOD_V(Dkz0KHz91n&KhZGW_)m^P|*77fAW+3Bd>S4sX zdUk`4)uu!kqzF4s2R+{LsojG;3J?Cp@@7(E!R>mGqFu5RFjVjYOc>BYbm z1oY=I!VOEabMgo(%Y=7vD@%LL&vLERq3%%;OQB{hoqNwYyST;PK5&~uMFiWt4^-cN zjkx{lHOfkRCM`95lcXtWF3R>}^!D7qg{8SnR|aezPaA1jR{Lohp_2&f!1bqGpv%x#JyPVk0c=QA#v zr0ey;O;?JX-4;h9XYusysC!2de@SI|Sys*bO^Z?5X5)*AjkT*4XGMFuib1!?uv4qV zOJVdk#Ou!17k0O@#)P zIxrO54zj835`H|Asd(9w=5gx1aLmYrnw`=gRKCvLKlTk84J)+ z=ifs&F;KaZM^7k#g2d$d*HufvKcwAeg*C(13Gs7&agN($nJM8YF@<4pJ)-PrS0X!> zu!mgu=p~+El`OLfh8hk5|G-|iG#?{)$PP5}uS{17;#bj&7H{iu3maVtYKl9e&#Wtn zQqto9H=11A4x+4BQ4E}7AnTe2 zaCsUF-A?3qR#Tn*sevsLeC6z;RY_pWWZF7OTeDW$d+M=WXT|mLQ=-OmX#9{0LN|v3 zo;{Wb6Ad!?LX#5?^voUFUYz~%z!_J*EhEh$Hmris;wYPI#Tcc8_}3Sj$NWjkf0EoHC(aA@F*q zK$+)hacNPG<0A34EaT%alU<-tGhQawNpXA$dTxU1%Pc>h1U*W7|E+aO#o9v%HJnpQN#4kX6NFO&_3q47L-7mLUq2?Q8^<@R3N>GQ zHSO#R@@EAH`AzA?RhP-eOFA;MAFwEtKVkTKSjv>GK0Do#1v^buG`%%z;W_W=v>me4 zvRv-6z*%T_?(0RzA?QBuB_40!6xj{eL_UExQpWD z%2%G@#gsojRm%wp+}K=!>G|cyRllqZtxF&K){0+0S#Nc2!FtSiV#*Ti6g!!W{f{uM ziO=Dlwr!o4yMcn}*J;*GYj)bFRt?K6XaDX>CovK65+1 zNtyTbyIo6#-uUBLm*iZ>Yy)~NXX|$eDaC7K8UgKe=|%^ZPv5$ke%o76Ec{K&Yqfm` zBpm&|j*p=y5(n8WL$2G1(F<-YBxi4w)O$Fh1y{v2b_FGm@0tdw5?+OEUN6{8$f`76 zI;6d+(-zRcUc+w`cWxY|JT1r9!C&UZPqO?M~j ziiK5KN+hSE#7g!&OHi-`KGVki-JLngarrq~ENpp&kYmOK4UasB|0Jfxe@B!`8_Pb7 zm;L_!Dui8aDU_;?-SQ$9S65@pG5N<&WR+h~H=V0-mVD>awdl*yM{Y{=XU)DN=+>mb zSqg6DB#UXcjM2qL>!!o@Sk9~s{cB1T*#^latL!7kstHjTgIDqtLahvSh{fi>ELdo7 z*i`4`h=;r@MvdY;-0-$l`OSE}FfgJD`yL(5CtTE?LN{>ocCS^T4q~%UTVIK518tf6!)W`VAoAHyq4T6+U| zDMxE!UwaQccg=dcxY0ZV)nMq;VTXpbSZkF#cQ>ee(tp-9PC!(kIT)e(>*^YzE3f%T zjG0yl9`8i{{J>yn%zRHf%Oh}YH~6{so!y-7RayUl$(eM`JtvIJiQh6hgJ|tXW?M-a z?(ZZqUh+GyXbCfZ$7tQXJfsQEp&su+Kqt;4KRer7ufB7U!;_FBdBLC%zJnK7TAG~> zL>iVr>D&2(nL~?7C}vO0#K9Nee6Cf8j*V@@){p%q-`zkLhJ}5`eV0#u{)v5ahPwE# z+;kB4T6xk3y^->RGI`}_1(q3FHN}yX&{5Pr_SOb*A zekggzSz%Ny@@vMRUhA0*!v(9BOfWic@u3rBxN&etP z$Hv*oRI_YK>D21rZ__yT30jL@`Pj+qdB(%gBc&ljYW&pK{{~XjXM&{e(pP>y@No^9 z#Cw%JZss8&%&2nA9TJ60pe>m`M5$R2z&@bF?qr@YPe#%Zkx`Nif% zd{1I}-Ooi%XWI(Fp(<3zJSy~428Zw|u`DQC!*}haP{mh?2S1M^Yy;;Db)qK2TpNCq z4KIo6^DxZUz&H7y*qWuOdL_E>Gwmu34_n(TdzVqrFC=u?1Ek8gvswIsC$!diI z??HkYMGV9zVK_t*v0eA+IrPe%RJHXuD*{` zUfO?mBDJqQsb3vj2>QI5lcEYyVuk2QVQOvVv;(*zm98V2>=yLNO}0k#cOisSb1)u- zfHC{!fUjdHoi}duCrkZY;xPxOpqL__PVM4;DV}j^d3|$)9UJW)gx4>_JNlBTO0(WD zVA2h1c5ax)FEl{msLZ(A+eoe6Nuf>tR30*NjG^Dg=9zHv;7Qr!5)tw$IBJ$6(E~G zQsDqM#!zS52ioUT()b|{6b@dM;;dnzaZu{^C@>-MnGR6SH z0*~YD-1NB7>w6PAD#idx`>arwnWVE6P{Cng2?>iL+U@;-8A2f?<{u*#}oyw3hDOqcw3JU8iaN zZExvs*6u!7dMoT&3t8{qXq1vUZ0J>tz1p3uoixH6Y?$2J?O~iRnq4{mB!L|>I_7u+8AqVlEgHo7}zd{PiWc7 zk5sxE^O$9CRrahKzMU#9S9Xsf?X&{qTxNEQZG467@A=f|ddHs>ZOLmo>3~_)$rBC3 z%=}}7+S{UX5m~MKCtRCOmGaCai2B*7^)Qis57qiFCK36a=UuT~KbCaV<31IPZD$z1 zuv!$nF#8F?(VkseQdm$ah$o4yLGJO22;M8)V+A@L_QUdk_Qh7or|xzq+2$UzqNH-E z4N!2=;b?Q|*YHE%fR|xIqBu1ta-DSwX7fzm-(9TPSX0m$jd;bMbGQwx2dXUhcRglr zeeUFAztQyp6|!TIg}TPWVh?XMmZO16B?4SC#8@XbdoP_)l$DH`k(YVPh4Qfs?UhIw zExi5l!gothYfi^>6TQBZUR`QD@y?%eH&^KSnyH(105|S&gY14F;$yd6)goZ!ca_L> z$1G?;+)dVA7BM{b#gMC>iS(n$q1(eYvmvQ;yZh8O0wi5jZY)x1oDb~-=vxRY97){2 z%~Qn!-HW2z7p(V-)C!c=>r_VP3N=;6y zmnU%NCMp?{wF4 zYTa8*ysY5D+UNO%R^-Ro34s=`={S7;ZNiZW#32OTyanBz=roH`w)oTtd8o@i#)K4l z@zepAF%CxrhnRoW^$y~y7tFWaXQyPFy+;~S!YZNn&-9Bm zxoz@6drNO-@heQO!NfZ7rv|e?4r?Kc8O0Ys{F{o|XEEdX^6+o^lvrR73AikzZ+E7B(oKV!|7W9VlPdyAkF|i0Iv!zynY9N& zTH-RspJ}C=?ynfyP3#l6J(z8Aw#EPU4a(|Bhyv^pNTIZ5e%Z}I;<~GS*+!&Jd?Imv zkVZLUub5GYTRMRW?j|!Fie6HYHZKs#xg2(64@YM48|T~TeEq7$kr*BiU%VJ<+eHk~ zTYB25w%3Zb`$0tXQF*UK%VkpzYjomcf%LZ5dH%*SdV%)jLn(J9H%j_I=(ll3Fydpv z#cVYZ=Fi@T5`3Ye1Vj{u(`Xt8rDB{`hQ3i1(_v-uxdhbRQ16d!Kg11B>RDzhYAJ{b zNHBT9VaZh%;rek_Wac{~+U{%gwYpC#=nOr^9UVPNKSBw=_R;JO{jODMeUA-i*4GCa zYe#5RN%@iEe1x_^dU8WM{#V6ahk~)Gh~45RA*&O{YJ)1D1;^>%ziadmfu>oD%hc?- zWx`o&fte?6wOsO>6|Sl@>}HuN+@Neu+%27-teaTw0s~}P*;w5*4-0ozc!cV9zSXKJ zr>AJybMeXbpgl!qj_$d1QXq@{?_!QYGV;rI(c{~g_PTQeJG$DJQ%&l{yqRXOT3U7t zYu^fqVcbe8iwS#ni1XIm?B4nz_ce;#`_ps%{y^e{CDS;Vo3uOd)IchcwS=u$yT&)$YPh- zj4D`zdmV|d$N6ScJv~;N?YHDb+}eS zG!OvYg7s|mQqJSgT%d8hSbLmR<*)sbH40s31-8qEv)0%?4})7iqe)g)pf*-(n+nIy zWKU7|!p<{pP66W`Bf(tM6kyeFgwv$;*MCu&vgFVf01WVwDsd(ffCtg~Vbop|d6h%; zy}gRj^HXL=E&GKF#{uhKjdgDyG0SGHi5v8n^sJj5QtDnUz@2u(M;>w6ZfX=-x*YN> zsC)}Yl17eR{Ckexkt|DqV_;3jcK3;tzj9tc5HV}BN&I7K`PxxnjwNKKeAxXAT; zO6FRxx(`(ER?K)+I;sR+Gq0>(IQ-E1kMyuh#6}J?bc%%VZrHXQI#&J~bqFsHEo*HS zYJG(W&D*ASVw9-5(p9KWCg=rjAJM1Gn19Urv-U(pe?;ItObYE}7=k)m|7tvcQ~imt zAG{~?_)v7cAfL=rE^Z%I9T>B@RZK{6pf3C^QEkoNb(Eg#v(Lpcd6BpRI|k9wC6*i} z?45e*JTqI8p4NI{Z#MEJqZ7#PnrMq$N~#KCfqsOE-*CnO@|z16#Yz}YiJ7sA-+zFf zC@}Bj%B42`HQ^hCDfTdKgK!rg8y%#mKCMt&a9`#Zxhf_&QHp(n_tm^m0+R6OSvdc~ zLYPeOq<*ofE@%<{h6+fC_u=f!xwXmLRh8foA0}?8RXs#M__!HrhFoVRHf?eV zk}R4zHANNN_&S#TOYKWDdwe@oQDUypW4^`K)BV(n+R$Sei=ZfsF}hNpQefTN^$+1q z*blzdP2gF{Yxqs2xv7j^WNhJbP1xTX;M$|uV9tkPLt@yo3pv5!3%0_qE&?|`;b{ZY zV2LFN9Eb7qDjr*}7DO`aJ+ZQ9JVs^a!jXSko9(rN6;3lO%qT}kVl~&!`8*gHJJ|2@ z+zcv}zg8kc=ORu1&O$G*N3}`RJZuvsy`562m`*CkYFb2{QFi?UHFGE`vM`c7>dcEz zn_3Q;4w~n@j;zWlY^Yw{pJ1jnboypiH4`-eaD}{<7xNCo0yK}&@A4N1i2b0Oj?mCU z{h%mD&rnU`V5Y02Ir3e^8_uhC+83>x$P<;|YatTlIWw;a>=tc4wjWvSs1;?iMl$;; zRH*qRz|YM2W1dItzh3>ps(!wt5Og|(!-Jp6u%LLkiFuo7u^xR_=i0tw3Ic_1r z_|M`VET94%ra!5mw=HTqJD9F!KI_{N`QO4f>hO5upZ56KiT$3T8r`t6GhuZ5VpuoH(LY>KVXF9aWCXJtl-4ze!zq7_O|s@? z55_RyYF%>9i_RT#Nr<~5(x|Il$Na$83sd=F@GXlg~0e(2u_YxBwP0%ueD1 z>zS6S5BsI*Lddc8Pxl0;EO=?RuxAhAdI)d!vRRw^g!Aw10%s&J)85vL?u#XZpp6nh2DLmvbcqzkj|w)iY9(7fn|&5 z{_l$8PDR<`#2@8DX)HOH8YPx#4J1*H`igzF4!vaT^>}l{;p|ZZ2Z| z@GjRceuo^4BMz_2Rfn^orsPknUVY#=^zDhFZ|J44&RYn~jI-j25zEeET@A@ztlMMZ z>P7pEzz(W^rv!Vc^|^g7J9FC#{-4z+4hKPKkSyMcDk*(@D~j)cA45Zbwba6QH;3Lp zTpZaSZtX%I*R~l*dZVTHLLNA+(w5^Z-$i}D;J@|;reZEfS!i$1FTLN6)U?PG=<_!S z%4a28h7~Fob8s8cgU^2|`jXWyjau%joFYS-pd(6XMw>5O`P~Ns`>d776m(i+EVb@- z-w&T_06~SlA~wS})NGbqhAiqFE8e7G`R(g14LcRY z(si4TApO6566tF=rS>|%r$5nYTyX`szq~ivQUtG&fPB*2PpM1F7psP?1Z@o%D|WRp zk9t@bwJ(TvOo+m@1fGfEeVeE1hAC`9+$9TNJ0$DQ_NcRddXft$TVz-nFmM5qwc0y6 znai$S`-P;1ljR_YU7PWa?O_$!qZOw~R^SpQi3AdePqarm4~ZKNU8c{o*xS%)E5 zevK)%g9<@!BeBI$x76(8ajbCXiI}6Nal*085?2KYx1A@OiLVaCPsns>FpGK(lwO%c zy#G4ggHNMK$IB^VgNeG<^6Cu07iUUX$bu2J;_Kab{#kf>)Wl+qg$@t(hY!2x#JhNA z(WKR;jrA~H00z2Euo*kAhca%=K|F3(w?C;*5B;Rhs|91-1~W2i9rMOa!jmFp?j-yZ zGJKzaVG_^%S#2MA>TzggHo!NF+Oj;rJ2!;g$*0;F7tw8krqbLMoJ41LMJ4mup{bR2 zKM(Txnk=yIMbn@+g#q7lc4VnEgxlk%yqt>mz$pGT~Qh<@2D7YOsxCdSuS) zBze$r`Lx=vO=o&TmVpvPPBHy5+y9>;`EnTZyW-*u8vH`1%W zj%U~V{=O@Ya53h=0`FxDRjXVR?)YV~s}l2OYxQM^oAqUjd%krS5^N=TZBf#>1$vRb z_8J>G7~e{)6WiqdQyShn09MIjbtweo$>r)B*+SQ%_T52OBzO!Iab&Fk z_lvF41fYa`l2n*F_ET3n{+^Y{QeFd`sf4w$LE=jjhcL#&7uX=h-4 z5Rp0!*qqm)H~eGKzLVqY7nfkFz^wEWOX&@gqyg`*YP{L7nH~fN*BaRkAkB$Rp7u-7 z_%u@|EUzNan`WxkJBPH;S0BCZQIlV~Z@Bi!%8?;Q1`&GSM~fQ3w;=$iuF9OzqG3;Y z^w%GTef3hXPW7jeO4>iC9Q?`*r#}$joo9>^_%Fh<%MIvH_=`vPNR|}i>N>ZD$M|=uTD}V+5T!Bb~oJp zQjWrH(h$l|7g@6gmwD~Oep1{)F!GX$#pFSOIUvcMH2dyvJ4F+9jZ@=VLEmhClLI*j zxcY^x(AW(+w_|uex|`Q=a|sq&uFB&+WzJYi7uCNyKW8le?%NfyJ^HxHOR;&8#V&|$ z-|}Af_3HPiTXR-Rw9sD)4fNuDy7}52ihR2-tQK^ap!7r@k*++Z`DI_ikk`jE8NAbk8b2pNy7hy_v@^7ueF3IeqesB zTYJFOB{vSs;jl`G5|hy;l^d}|`r#{qgwty&zjC;$YgxJYak@It$aH%2N*o7Zrf4cl z7OsHlA+u@kq-=C;plvVM!~*jOFj`CWU?;WGxLeq$o$_j1k?cJn3%k?%N>t=G!69%} z4Xgjy7c+7DZFlsd8eXwh9YpM7H~sx@QA)r(r+Ed@J8>D%JGJXNjb#s`K}LQ=Vd`}| z3fk}1qaJ>ZAht{kb-7Cl)L4e*&TAj(U?Z!;a~qe>S}<>ujt0_Lc9e#n4b{~N^9kny zdg-|50fc{KJBA;BKi?2~dw_f;ZlI8`fU3pv$gIu7TXwv>~m*sm_(gpCf zk(xN1jbdDj^m5VEWG{^Hnu1ZMKE8zcDew%CBjeaX>WFd=p^B1Mv?PmNuN2%!bzj%6 zJ!bL**BW?q9c{mpber(v>z06AYjl19G1bGza7ng??OESiUj)xSzqsK zjU=ZXcnvS+UpcA}PR#X;{cYa^zO?L9syK%@mCN0#&-RiYTqkaekS3ts7RSE*m~_E> zXZYQ-^+6qKnC%iL?56cm^CtPqD8)ULh98gcvPS*cuvY)Uab2r2jBg{y5Ok6dyBuxa zfLyR=IqfqSd%NSZ^0DQm-_P{gjc-MnGT{l2amO4(1$OiW4?Y?UL2If3#L+nGnkFFw$T!!p& zuBD|Jkk54Ged0yM6?Zfe!a7n*p$8#(tFN2#i`xasBy?o84sqsv{SqN*TzE1VVIpNl zOqv&5)Fy8*N9$oJJFVtynLX7gs0Gt=+WeS9@b0w+gGObc!{JJ2+x4IghT3*G5SKV; z4l79ve`)Kml*2N>jTsov?+=c{QP}`Q3mb3Gkv+&ggN5Caj(nMMXKu&81JV zrj|+tg{-#R3M!bq1tFIQiL7D zt}VA3^b&*JAz8V##qn6+xwV6)zX=I1<aT|bi# zsJy#s(YQlHZ#ih>YH+LQ35>m$>!8i3mvmOpV+6}RBE7y+peI{Q!#Xzb)Ojzt8_Ob> z8u?@1aM4zaZY?2|a7n>#3Vn>CCp?A>Yd|ACYUo&ZiUm8U!0SfPrHXeh#A;jKualIk zDy1H{S}E!v=XL6%T1?SV!#TuxxP}R>3_rggs#W_KvDmW{{eW z?6)qsHM0YGQ{J_TO4K?RMEb@OivE6Kdc}W%eQ$C=q+NM8Q{@?-PSr|ktx^yfbgogZ)J3pY(*2Z02EA}5*54hB*$`&=c^)9cr zX^U4~L)~-I#+}E6eean*zaU$z*f(aba9u-UiAVQ<4A)85IHOp?*-)*t3PXYBRF@4Z zo-*CxWKD ztU}oT{5ILaf{SP$wW31C2WEi>s|}hGi^I!C_t_qZy8gFz1o+w2Mx@vcC|x`AKiRMRiHc;U^-l7s2Wf{mICI@` zx{|OIdVL>fcHZiI&PoiXP@Wf5fGrX}oPZ;`S^;}Vr?*EuFye?w!C9E`+pRi7I5Si! zKAVG-#*Yh5%HK|{dAJp&FE`~OZg9_pBt>`765GB;}v4VODRe%{P)cc;_QKH zd1jbID+LVrF8KG-3by2TrY|F3k3IovlYB>+n5Y!B>X%id*K2`1Iis=Q3Ihf9)wIkn z`&%q0I@`Z~S$=3Ll0Zq}Y;vLbU^d*baBGkim~=?k1LNEk(8&`ZI7(8OaDoC6c_@>x zoYFP)&tAI;AAzGby?>={W+g*bv2Ch)`LX2|z@k59^Zxzs?8lmW$3z4b-%)dW58;!X zy)$AwBH7CCm4!;I?!PT2M{q$AZA<@K#F_s@G7jVZn!5ttWj}P2R`>-|upbzpOAYg* z_HWV-p+62nTDKf?ICtCC3{a~d)6ygExbj*d@q%0*?{H`_o@f?7-Ncnguh?U@IkrOQ z1QWmW?P^Q^tO^&8(Y^Fu2soPf_I3MEjQ#y(|A^&zXpGVCKc#l#z9LX-_1$rYd6y~p zPwgEz=9ce-MPI7jGABDSBS?-e=fgE2b3r-Md4DeJf?|HeKPS~c8lu$q*okri@>Y2j|nCyY4IpKiiR;k0s$%h)X=`=s)<|0W^*^`xId3; zb1bNpF^k;#vqH(^rs@^ zW_z9M_eaV25vsEsdsQ)orml24NQ+{`!tM9F(iNe9>1_+tMVv%f#0SYRo+2Tjw^mN z4tp=Co@7W%CPUtz)okCjEIA{edfsyE;=4Z}3dPt@k$rCpQfd?%z|w2E4?cLX$SrPEr@;f$mJ`WXKl z&tQkeKFWh%tqVt5zKn@tnR^_xws`q^z#N0P(=9~%{p1-=^`P|bohnOkA5A4ZpM?ET z7Py0Zcd%e#2nT@N*s^xJRS^-pu3`+%Z)0vGhzac2>NR5lYW_RpT&Wc5&gYj9sjmg4!KL;p;U8BrqwTr`u@y^dX4`hCUGDB@%mzA zlHREB1LFrBcY?1U|#!e=F|H-IY~PObJHX`WHql6k1?B9IK`t&wP?TSyC9{uB&9S`!5To;)S-&% zz>&*c@I@#H4K^o>OsuzkHe%jDt8(5f9zhV_v=Xo#PI$)GOd*^8gOX!5d? zQ^`}ULmI~u*OR1PkY9>cz>Qx1h-<$}v*qPq?Kz{{Nd6Iwf#tTGa8(5PD&r9L5~yY) ziQe7<4y2-zzUBM~*_#;!{iPAX2xXXF{acLNkK%m(7Vni^OkSI4YXMWwIAy4LmTCbo42s2}Y0 zQs`v5nqN)&MLDk{|N4a8^w2-kf~0KC6x+`f_qv=m$rTzQvMPdra6(zVc$jA5v0ZZR zB6i1Aj$u&wbch2yRb;QGMQ6uOIP3mLv?vDoY*_}YPn++DTO zO*w8aaB?p$nzjz`&7CVrEo+8!qNoRxaId7;qf#Z*^T_hFls?GXLZ4QU z_PzpM6F{YocqkCjPRD^M5NjVFX<9cd~J|wkuR4CC#vqrk%G2 zGyfSua1eU!P73-@eA{*{GZ7gC=3CY5Tf8=BDDL6Wz&v%21g`e|%Km9yH?@n^cY`}e(i^Zo3s_c%&M4j&_8~(f!)&Uv{T%Qm& zaD5$_)Q5POR*vy+gYk~S5s$h4JQ zCo5keXp6;*bqrfUHHOPUc*yXNDVVn&W?qTeINohEWh;8|X4D1X2uBS5UfPru_-Yz9 zGs6Ctgr%Krz7HRZNK2}ay>9(Zr%=!BiC+2OMVntTppL_RP)zigEPOej9o>Mdj7Z~= z+_cex<|XTpGg6?87ie^%p{MvvgZEtS&Ecgy#LZ#;JrcWZViEmj=>b(1zGi(h?B`Jn znrD=Z5;QxC{FkdzF3|R5mp{UPU!zbhel>akh~bI2=3~&uMtds%!xnq0;dy+75Idbuy%I#@)G-HryOZi(zB4pjSKGK^Mlr2Gr z=qp+1#Tv7&u(}soC#*+c{wQ+cp-{%2yIJ3=D_RL*pb_+8)4y0oxoeKte9t;}EAe#t zN5DjA__5Gk*k_O=DU;1Q($VUJ?I}voBepr~!Mv}AH zu=}&EpbEMVb+|zg-wJ50bF*~f9vMAIY*=DH=1kTC_CjpFX0|3t%=Wc4l+DIxoOcfg zkqFfZS^($~xm1Y+mp&!I8DEzkS=UgFjQdAV?KP9*xkLL$>u>wkt53+i>UVG9A-{>9 z_Gu*md|Fg)4(m`8XWzKt{EdfKmOmrt8f z%EYLJoomK?q_tEZ0~E}=3&In4AO9hK%n=xJii^+(PW-J4T)7^T=FI6i<0x>pdI6|i z-YA)%r^@b2iIE+Y+iim3II)u2WOjx__A6d_al~b4zekw3?Qw5^>v{mZ&|y0#rAU{E`N$!VSpSnIPfBgIZ+y&`vDd4G z9IyM%w%>tF!S)gFf81={rB&e89C3qGk+bB}K1Fr*^Ub@j^2Oo1B+LU6#4&Adndp8P z6?!X&0HEAr>~p0h3?fxzwkZbtDAoxafsT0X(of}oXCjMN+PC{O_{Wnc^gup3l>7oe zBl^s-b&Qa1bn5KUoW-qR3k~iLf;4RDNw#Q&_GA{)6Wt}~mm22yWfRXd6)9y~OvngD zdS6i1?vP{)7tnV-*3Z~1T%oMA?s_@yVD+^N*oclcl2X#0U{#hS|K%yl%Njs%ciYbk zMCnh3k>~{4C)0J;h$;P(;j3r_Q0UjSR3|JpW#3Dx5FN+v69u*3wRWfGT{GOb@^LAR z)={4UpE?QkSLg+84Sh3fM5Dg)6FqINnaPj+X&Xc`tOfG^&(XR6GvWPlyi)m;P^l=F zB_ZV2&26lbBt?>xYbYw0HNqHMB_!8K2wPG~E+e_KC6~D`x!*Qy?q;^x{r2_v{s-rW zbI$vm*Zci?zWimxekYja7raDkU1I7@_xTWtxIKv9&H}`O!%u`(${1kKoD>#@R&rC1 z9^8q~^<9kk>P95?+p?~TVEq`Fz_L+~dx(idTtULxSj{yXan)7?|83aOyPc`-H_I6^ z#HosX^}R-$-f``ND}|cl5yj;ik{UG^RW@sWGEf)croRo~K{YWg*tMpI-Q=>LDJ;SE zo*QdpQxy|k9Z`CdEgWYSVt14i_O60!ipOv~ zE&No}eRhF<=q3BeIGWj1M^SWHAQ6R!ayl`d-Y*IeZO#+-#r2?adhmJ#GMJD$Wc`9tib`alI)z*t1ft`Yo)a8iSa)tKtBYW_3% zEEb3NQ>sk~@#Oc{Pfoz$-5alMlRbm`ceD;k_!cdXw5=r*<~tPYdkDVay{35N=o44} zMND!a_7m0|y|fyr#E+?PkYAOxY@9bX{#24&`^fYBkHh63*o6Ym_L5Q->?8F3skdM& z!J7&BICkR3zydyL3D;R4JxlwPa`|5Po#3(+>Fbz6y@#ce^qCWzM4%Zmn^xeDR;(Y2 z?ynt^Q&=83km=q>jL1}DKLS5ykXs8&u~SB)&lc`&Su4X_AF!(-e`nyUVD;MUD2JMS zCJBi$5Su?4UCaz3Kjy)^yn|P} zpkC$&wE;Qb~=R9G)`jFf%8DOrpB}qNhTkT(F znbT_@DdP>f+V!2#7&%8u9afP(^=NWHbOB^P-dm1l7gE9}-#{7mItOhn6p}SE>@D4lB7-b)RZ5Ni=B-y9uz$9C-Ei%QE20mh5%$A5 z1A_9pi6rrOJ0+_jtkZMWyt~k@-)$|GaRbEA@JW6Akaus{w>0EYTvwbg_Ef$vznv7Q za>LDk_4<=tt37+Bz|Jgm3zBcakD>8PFQ*DxQYG zDbdxEIR0JJ)kXwRRPPL3*UUqhL|OhYOP&6WogDE&Naf-fAIG5O_X2PsvK2z8HQ!w9 znt_$Uw32^&xZeaT{2l6eLOjtrUNjz+Z`QN$(ylUDX{{bxCP(Y5d1k;qk_-3%ddje~ znp!tPSWki-yr@o_?m{dMsLyqP45v#LhV~Rj0leIV`&)C7&mjifuhAOybP|H&&OE&` z>uHkAA+OT#H{J|YKTT;e&E>?eerp{2J%|$c5Pd{)#LsK<>HI>4GT7Y%#fXDy{lHSiJ@$`R zlxoHQ6-MHscsZOCr08kU1+j~fOnDtP@drEo_|}*4bb{+N`^G=O)fxS$dlBc`rgxGZ z4tJuCpTuZ<1L~}daoXgxQeDMtG$xiS<9uba=Rf>Q40ghksnMozRR*0Davh%6ds|c}{9N+zV)F)?>|?*z`}PFDhAM194GUH2-QkZrCMhg&Fd% z*SbgdE53F=m0|&KqpXa#=TW6+%vxB`;$LjgwZLb33;P19C)=oHv~#Ck zC9ADI372o>?QXEQlUA6wHyLTKKyK-)0lzhQ7h4c9s}77Qb;9W;hN}u z)E-ojD*fvAh^$9$#61y(NyNoRYoWt6usSPJQd$XVuISiIO)b>3J$Eqtbz*xSDmm|+ zF8^%Q$vMqL?+Apv^W==C)EDbRSJ&}(FC)5CHrS8Z-w}c5ky9BzYKiepS1r#7&0;Et zSFUn!_1R%DsTBuJ%C7-~lf;||WQfPl)WnZOpCRde%pN@@5b!f1^iAjdkC1`}KgmW$ zRA*MXF#5#m0pK-NROHRbG(jq-@O$dw;ycgE%66}v^67}%k7@9)d**Iur582iB+@*{ z>T4H0S|cV8;x9I}rW_H^FjbM2T9Ctz34HK1w`;jyWjZW0*1su^hSwNZ8(?>xCbrHU z3eL(vOnwB$$GidMT6(PAo5S?%OVpGDSPaZ5Ys+e^hrJX6#IB8cnO02^2?dA)vFTI1xY$u(YgahS)rMB4$XFZKTQDFnfQAC$S6k!3K>!ac7M8;W&%1lT@^lj45Q=zj+#o9D?U+6ejy0>}>7nt-a~)y$pvg>F~~ zw}&`{@_4t24v>cjHu3phPz#!etQ@FP7UJ8jxqK6&AK~l;7d&d4Ea&}lIo&UwxFo*C zQ>9sXVfe5SM23&9UZ+_bl0>={PC&5+WT4c%t<)n_Yop@c?RR#37$ehmjOJDT;MbSK8b0rV)9`EJF-fpr+gJ=f4n8eQx`ANH5kwr6{53Y0Y~9LN!h= z&-sbvg#IN2sAs}(7uB*ffmt==-xibn6I%IjJ9FAdkix3r8ql97dOo?|s4S&r<57W5}h!PZ5Dx`HS<1HL}EYJm;3 zCFi_guCHc^ro!X_*AA(t76*CAP`^T>xK^J-A6aN%JeoB86HR(0)W;mUk81w&Jg29Q z{zs9vxTe`E~Dx@@=n5_>hO#fSuOIWjA&ViOer?g*)}DHjAQgnD^gk(qb}Z2;uR zv$9)&{}F#*NUdWmdC1lW+tJj@-9{Ly^5==&q5@K7Lb=j6j%AnYfGO!RZT$VsP{;+* zsri9o6*L{t#vaSy-VBYz(LlQ&fZR`cJa81M!AWE!n|1Vozq(1dWN z%MoWAQ9bPA)B)mQZsaUbK2!2D^*Riuxdk_j#)!A^Q?@$lXsB;;trJ@CEy8ekzr`_w zdwcM0!J9EP8#@CY&})naSR{OI-umGdz^$N2=cmZ!M+Av5`0@$5MbLS3T?B@nj{Sn2 zgs*7OZ_+7E-HAHW+!})uMdx7yfz-eHeS&YmADT;^@&|E~iPYi-kIUTRLi*JAU3x!+ z7MB4H(&it5BV$1u*{1+u@w@bHqs@9lhT%KqBmT z->%=$7v1$SfQ$Hw{^!uP|XCq#=?7+NFjh&_(wmFq-Ed$lNz;XJ2Q$0S|Y35?!JR+sV5nPS8tviNZ(+Upqp_9TE|3 z#?TG9QDn~qrSM8GgPx9r@RxmA1g!j)`4*E_r}h_{&n@%*n22C$SgZ_h)SVN(P7?jR z+LQ?~+hroWG@NiLC=ilb0(u?Xmr?GfWl{cdBk8CNZ#qrR;<5_JIqZ6dzhHU*hmR@R z2;R(8yJs(->$XOX6%4j4#LV2ypbF3dqKyk)&HUKKN2*0ZFU)y)_d~0&98Poho1)&1 zlng{nA~w7+DZ-_0UhM$34ylH~jDrP-e~rp*G(`I`YT1Qd4lS*n_VIuGxMvt)Qfq6m z93shAf3L4ke9#TVl9}0A`-c_lv)dN9^)nD3cN5#N_`^$CA*ih;geW~xwjaW@q+Pg> zFs5Jgab>Quv)Lk|S2Cyh4>5^hR2?x1o7&8U`favL{uNJ-L8x{N>YWQeO1G>M$ATft zPUWE6969>MbA+cRyjkF2p#D$4)oo)RHWb2>H%`U#wgqlKcS1gXm4iZjXj88ee-D8Cx7~lpMLXDwY5|hXf~y)X6){zan%HjU-rEk$jImqHfL;8U#-lhfsl@EHN3A0kY?`Ipb@FFSIUB2Xl) zIhQz3p(DA^0v*@`k!tnj>A=Q=Yj&Ar%NwfpC&X7r3GY*^&m~#ofB9A4qh4}`O9**w zRF9p+`_|CL#A4VT+Pq6a?e7Iyan#&tg!}A+XIb2VIetZdIIJ&o@Q89OulP5*X&xkN&?6OQjZ>MT9c2Ofl~qUXl0CDevSNUoG|^Ju*6CqSR@VOhnd{RpfeY7)D6M%t&J2an?ezt%F(+O8ltgdw!GVpYolYT`9VtGWzj( z*$>LGP(}1;ZIV7mf7oNgedLIgqD%g}Oy-QuU16PkaStSg626i`6kS+3A9W@F#bkxz z%^0*$lF?X%bUiyV-lv&r5c*BW*@{xtHX30`f$3OuAYK_WZ};G6_7#E;ZRY+78`Lc9 z&HRi;U3@3XhiggOOAnvX)U{Z$7ChT1AO?nE|K)(@a8;b-HnS1?;F?b=J?Bd$LU4~p z*wvTX-A~C{3s06uJ(@csEI|OSQg&E0?Xig3HHSLg#0{U2T6v0mP2V3fxG8R)+Dcb9 zw}#7(3L`s7ps2ad(dv%ucDdM4i9%-A5ccjVLKf{u-SK(J%{OgQR-}~A_narEeU$b% zo8e1pwmQ>qz0qSS}1-+23~;2-2)rtPCpQ^JRRrVfZZ4vFRQ#r9OT^Wup$Sr5BnF+k*jg=IEF`ABCb^+roMwBnyjImr-?D& z9gWF8l9q@^H?t#g)veut%(YeTo4IQd%Ns`Ebp6k8IOkb3G%XOKcmc-w9D=b$2*Fe zwn7m7`=l^Z=Wgt#7@^uvwh7oxI6{QfK+T zU|dE=%TvfJp_@s#%%~0`KahbS9+!-_;C=@0rIIiFObWf_Tg*NDF_iETwVGfpeE zS`ZAvRS5R+v3~^PEQ_zZM*6!Pj%Yd%@C1E+#9VPrD|*EtoB>>UwtmH(G)jqR2c&@z zDbux!zO3dR&sxUMqDh*ezM^k_P#8%3PI{$A?9ODLwARAI&zlS9RwzaTQ2vunv2>au z96n{$1+eOc`5B_`1W$j{H(kvNHw_lvf$FJP>0u`pEU|BB9Jxi@@1q);J5d-CC2D$c z+VLetGj1H1`GZrMGP(M6u27U1h#}KG^sZxNYo(0gHqw#TzfF(sIpU3$x}$#z)<>L{ zU5$S6jt3yLR}bo&uk~$b+`31+9J#XW@ol=KHLRM45e0C}B}F)M&{JY2<}?g8!McpU z>wbKEwH=lH$3kfV{~hTx*%{pqE^bicB>dss9VqkhMWP48bXJr(%4s?q_AAiRMwrrO zR>2}5)$M1x;9ub1R`0Q#HtNxOk+{odbrqpDswG>Uxf1(M7RAp_l-N?>kaVqwc+SD8 zWBgTHPvfQOiZ3oVYK-d3HZRPbWLt}2-4)OfXm`!odJt1~i{oJETVz9cl+D*_>Oi|r z`Ds%b+Q@$&G$*LVM_G9@CkI1%YAYf)W5ZpVxu0W?;O^Hv@fnm74YX~dcC=2lh8ZA4 z{Yx=&v!RHQ&8!*ul~H_vFYk}hH_1LwxLG3+ewS(ynrrUYUIRNy9r@z^eq8ao#|iQb#q__ey(S-;W3|Fe)l z+1*-CuwZ%U1c1Ws#cQvbiT0DgfK{j2v#ygNlw*8zE+$_*&Pj1H_PaI=FC7)Am9R8}9#d(zOHwGx%_pq6(VLTi z*}-MTx7DIFqGe=)z~PwYG5Nx8rtpfk|5j@+$%O6YRN3bKE+YQn*{*w6*`MTPtGMto zmUHXFgUD^lxX6zpN-ODz+XIMt@mE86>)+Hc9BoB#K zMik%lRjk^gE8t3}E1=or&=Hhea-GOw5|!t}uSAEJ|6yDYXi8cUr)mRvugps-7O`bm z)Nofv*ML=D86b-iL_0^kP|a?BW&{&48t=|xw%Ysc64HJtwGfl%6_l*z$D`3owZgl7 zxuy!R-Jn#c(L+z=Go#fYnKr#p>SVd6ZPV+Yt?2+2dWF6!M%Kdt@par#=s^bDh?9M$ z9^sYPDP?lN<4sStGpi(?#*))<=?m!vED(R`czPCZbH| zkFCl^ivzb96=kKMDfTO`s$l=xAY@-SQ+o~CQ&u+ZLJh#CHjTlFu?+2oduD`ip4|n! z(xXND96y{jtA_E`WlXF?pzuxgMjhgx#6n}^8$|z&qYpc4?h{@C*NKoj=G@?_qD!=H zosF})n*H8dVH9sNb715Bl!WZ~?KM$RV%96#^CP2Lc2D`5qqcl5KVAO0o+uwo(|o6| z0gE`DqU;XDBHo3i%I7r6f!`w5`~_xYEVqP%(5*}id_un+Ahi-r_V$EJVefgGt-JRN zLN$q2z(+r1O%)Kgj!?!JM|iUEwzH4%cNg??h}{cWTHGP@lYY}**@BOLr;+~}M@Jgh zVgi)&#Mylzjw%%qPr8jRAj+ajTOtz*S>kq}4AH+-AKq5NS%>{4;!hIab2i3au$9Hv zN==AjbquWMQNQqC0Wpo0eW^KRz}`7k6`eMBHLm`<@s^BvYi!NZ8N~hqaFGA;fk=qwpfO z2T{y*!@>R-u_i*QTm9=Y=UtWH8^8?yu*+)}`Vyo$B3qAEhFFYqiZePPuxEr>jz$YeKcjJ1ZE8*$%j_sMQN;hQX{uyfT(xpG^5#h#{rYJo(=imjhHo&QN5k>F_` z+PyLf-{?cQHBOlT(L3|JMAb8V1qh{+zxZ(LUltGN+g2}yU$oej;rA1i3|!FA$XdW( z1tIa`W8Qc?b4@7ML#st@N{Ed37WF0jGWPI6Uvm%E(xih~a4n;t0u@nYd;2wT2Da(= zd^d&e*hAGLoTnuESw(Q(Iyy{UI?B&j2II$~*25Q~U2=%0>SDPZd0xx8wc~PKVx<5c z(%RxusqCVsRinov%E~+NX)$;N$5b*mfFr%`=_iF+5XMH@QScfTWs9{3Y@1LM9pY^r z9YAo$WTZ>IUrh|nJy6+hnAqKNfuDoCB`P&9ipuGlRxg?ejlJ*d+?5-+=;ZN${p9Q$ z)39A(z@o3q(upFku&nyTn*h%IlR>_>RA11~V9Bc7Hakb4%<4kB?Nr^aIdgBtL5n#) zU{8vM#X`M$Ii{%Y=)@$-9;Rbw1=*i}l-PVUHMUJk*GquE?Ah=E^8SkbBmlwvMotL0 zNRTHDy2h%EDT26X6$?EJ+3ta)vs~54u^)ZPLj5gS)>Tj$?TL^g1?uY-trPk;M)5xx z2bqfhL@c4Jd2?Bek*tyVI?|jZvk(->yT6rSJkPj+LWjTf8oA+Ln~OC(O(1UaV$cTB z2w#|)g)aVCe}7n0Y2h+I!#c;q`FR2}X69p{_<1JZkOZt`)kPRZ1*>y1p${Za%4J1u# zld>3SzPI6ct*$lFHHg$>_IE^5tm_I+pZsaj^q78;2D*XSkUR(;X(gw<^$9T7CJvBG zyTb#fyD<~}I_4wfBzkOTc;Xv$<1Wlwjhga#3kkH7Q6u{3Bbj2M|VYl7%w!1PaTX*hB*vf09T$eh*EO~u?O z2f{F+Q6RCIEmthpXtw$% zy)brZ_hAT|cvD64?D3ru!N$T{p>O*iL_3?0BoTozt2;b>q7m_?fP9**N38k%i2LBP zG93keZmm)EvOuaDh5ev38J%Z7`}OHvtjj)?tDe{cLV@oJjN*@lF|(<}bG_4DDdA6T zrZ>#~g3BxUWMTlXGutHYEb&b9=f{Xaad&zRk$rp6Hf0hZB;V}_olJEzTWTLGH1fk- z^i1yaZ4ybria5MGwbJ~jk82NzUcg017(^+pQKIH+XS4Sb`c~ym(WYI_Z;7K(>imx@ z7ZY)wG||s0xhyIw$=o`0TWs4r47WArXw>Jr(apsTisTD4Z)5w2lFi~rwb-4b1K=<} zLT(^0aHGI0D$hO3tv6iZ#`Kc;tPV6rG`tN;L1XvQt0FxXSJY!4 zT)>5l%ce0xy5wy48@a+wSkY@-m57i%!!|EQYtBaoAC1gjDR?{T_2`Srk4?qp2)fyI z*+IxKVw9&RyrIxn_zr1dc0zJVl&<*4^k!<=(XT`s&kPHVfOA~~jl#if**3P;9hf%! z3f`IUM(~T+`)n~sm8_=x0?1MkH%bs00kq@v{9|;XFT(<7sDIusy8ab3_T9`yGB%^w z6Y;(462W0Brd18B2g~Qik{Unb!Y_LqGepPHkXHeACDz2{ZrBs<2Q|2E`|^L5;?cvy zh4ihMVh!{&hZWirG;DZwh4uYhSaD;e#Nj7OwnPh4X>Fpp&a1_jZ37w#qm`{{)Qoqd zBYPb;?tIs4yd~Pz=lBt?mpji>CvRov+?3ax@yqQ1zW;*IEOu1DsTgNP9M6Rtp(3_W zI{_+;3Q6Kk{j~=S3b%M*2&L>3d@stG{`6QHB9uJpQS{aMLPKZ;MHBV_4UN1%?Lm~2 z;E3^c3iP48O+`w`+Yo1!D~Fhkbj8<_4c|EnV|&&^TI=|ZY9dx03_Ej9o{9Y|EvbVtFu~IICvLr=@}h=jJNfaqCF?-6=)hjREMD*0^DYr5V@4S%J_dXk zyXAy0_gZnJKh>}0F92>tlj0Mc-MQ6l_e76Y6b}hpzQj>qjh^i;3sGa%KZ+j+{~P{~ z{kKUIQGyYl?vFPzzd}nsHy=4~WlySGsVcH;uWj>yI7EJ2R~uq%A{&rU^o)|=P|QZv z^DpLI@v^I~CGaS}3Fpx7=y}uOc**9$eU8LnxR%i81l`G+<)}f7=$kP&$*<$@aW5-X^evK9-M$3-I`5gx;SM1-6#4N5p7yZT%+W$->&YS=i(8PLKlDKp z?VQ%7X?<_BF>3L~CzU&9yjI&G?&=E+!XPYpv{>!DgqXR!G4gPnns9rNDi`xcO7LE& zSx>DWv+7=q&=)O=cW(g=J-Qq>Rzq_aS3Kur|218pCZ8`9Fm$*o;eDZ4+e1z$cg7s+ z$u0IYxYA$KdFtcb`R)@;f+rl;4){HvGznI~fvd0^K5JvY@M>+a08xP%!RX#vljq7G zdpB4w2peW#F(uHTou*F}OQIT^DY&gcQFBqb*LFz*Isgul^Jax`8SLRJzfBhqJyk9RI`Zodo{_0IE4(W|o83A}^phA=%i8+3=&c z;@1JH{Cwfp+^GeQqbVqFHONHp}$A~PazbhJq*0>c`&S(N6#iJx3bPQtdf ze21%0iZmO7;rFt%yi@Pp3`*(d`X`!e2Gi~wWD9`wYw5s6@0B~eHk&NjXNJ2|eRnio_FvCB{Xm5j-tK&eft(*@ zG_JV~?Q(7k?K+=B!*oE<6gy|)K3s&UP=!$6-J;hKS@+#ka{{mb+%PLDu`O2bIwExh zy*Xoa%6Zz6=j=vp7ZeJ3rvPr+bD+OGEm(xYXmtC>(ZOGWLgzaE`Ldqs_Th=yFE_CL zGb`UsZzq(v4Vjkl`sq5?><>Rx`6Ltm#?MeM1-U+9b>R|NZ_$)?gFl5n0LjT5W3%U= zdhkTKitxTR53>yB^0qk;;~viU!Q#g={jP-Q>w~RmD|r4ZV#CARzQ9rlT%4b)4=*^U z@J4b6!GY$jd7mgTr!CwOp3lm`w@)7T@F^oAId5kTRi1&zWY;X3SD}sJVOZBU`GYeP zHT-eHF~b_E@5avDarzYVUeix6WhL6Z`9}7;rsIt@D<|Rv*Vp(sSfy!mf_wn#zw$!e zl&DM@+;54kktW)ewKA!S-1BD|ONds?6B}oh;`2jHS#fo1MQyM<74To)=Fl`^QH$kS z@5{bOPxM%?t6A?7bqfMcG{U4pbD6O@VfR45uP@h(-r_!)zp_1XDx%!sAz>8W+wL~^ z{IVI?%(=X$Z){aG11Fa`?wgS~1df~Y8}yV9VTUv&xowDXZqA-A&UDAULKEdUQbkco zmi$}l&c^5$7F$?(bH(W63HfLAKV+`AhQP_hK-7PqrZEA8yWsO~oe+f36 zIr63eo?;Ff*8C|m2s%VHo7ug_ZX3w*Sf7ZXSE6hGl$S%fdnZh?RvQnGLWJ(QoEI*o zlhoNB%!l1R8;4?nEyu(^)Sf?lXzuLZEwctVc7O3ws&V%aS1Ajyn~!wPzE9jT2Vvi; zINY!Mz_2@KVaZQE!EW(bMdfUfSsYXO)2@Le$eA$AKHm*-7gblSuKWVmZ15AgaVINB zkZ5ez^hQuk!>n_=7;eq>5DjFxrKsm>zx^|K(W*Q4mU|%Edvhz}r)0fwt~y~075%Oj zuFq67s(~)dCF<(cKYvY=Zaa2VoF_gJMLwGh;B}*t&;c^QhnBFTvg6YkNq#}x)-Xcp z)ehGM{aVJtg)lIFqDVoX@m6o(4n5jdOn`94j2v0&~v z33TcggANZG$Jo_2#zz%G*FDGwP9a^GC*O+;>y|UyKvWw+Fqp1{ISHD5$l3Guv>vuD zxqWzX-4-Ye>2RDmf0BTa3oRG#AzrbhD_P&eWMI+r=XZsa66dLYY#ZIUBARMXNw=td zZVg88fiQJFs-u3)xh7|6i3%w4fAF{bjE4QGHps!44fVvuI+dn`4LHZ_m_~mb^=Vo@ z)%?20M8?qe`v2f*b|We#CL=2Ct%1nw+n3yN+c(@7e)n+qFs)1nF@cZSer3@ax|I5^ z`*E27R}Xh?`-gA`18Gd3Id2s|fK;lDSIdq>txKRj}mP zu=$*7$Rm_fo=5yOkQ!ArDUsM7k`fR9WqCp&RZt%BCE_9S#psz{(y|L~(tM>B_%+h4 z%Eu?vS8wt;6$H7EjNiBwJAwE-06YQr{4^h{t% zS1+m(8}pgtsAN%P`@Tu=BL%bF<_}i}w~i@k@nf&C95H6)uO#_q34DKOa8p?uLXsMC zAW}^E06qrXAzpegxOi}=Y)|)Wf$;#DwuW=k+!p=7Xk~aUaIqbGwilZwRHii0CvV_S zsa$dAMhw|v#|&~_pu%YWa4pLnl`h zt7Fj*4@IR*wpIyt;A|gzuGnb5ZAN1*{(P2`%nZOj9;cBmn z*b9^_n`JjidAzliZXTQ|mPfDGm&(bWh$rprMqQgscqKYTo|7O6pO8Ci|CHVcys%x4<6J`s6*3h zy1~sL*`N0{Z)j@ZS(b(t3yRHswe zF4)U>=Vzd`9Rq!z!V@E3a~)mgEZD#{!ywb$#GEc*^B(yfi7uW>Bcm+_mfW|z$OWV7 z@A{!pwib_NmkM=qBN9~#EowCkbGh3(Q*%-aJwFiNHht36_ypLuzzA_q<(x;h_p*C| z-%V_K9iN*sC<1d~gezhHz1S}l8j1kz<{ZNK>)lunLm*ZMjQ}?v7mqD@QP$ckdM$lEw%JU#F_yq&B$BnpXOswa5^4z6~3X?p(Bu4 zEaPW`9O*A?MUn43PkK!LNxjn?*Y=2VQ}}{B|L$j-AM$ryWTgx6Ntg4XGx$4uAZelR zIpdG4#>3a2#i#jqXB%~r+0enE#f7tkOIt44Z5=ve_~5{GXXcr8R0jVc>0dG4OHhjL zl5HrE{6#lV*{4a;?)PgfI_oiWxuY@gI^0R{eXtz?Pd6o4>1#pk)}R)VN(XfN6UNX? z1bitmV*VP^KlxL9BSj7%4Boqpb~LuFmfQJQ@*wQp*HsjClqYtmMp2BPxd4^S zg6fV?Z+E|9MGI{&mJux%3RcDZjkLDL^LI=?Egn5ZQKhUu5WL)4E(?NaB&&9&MeDCw zXKbowigP=l>aOy)sd!@znSTivhFXmZlPhk2Vgcr4LWUk>FGo4dO+6((T-{DZ=yR9GUwB8{{73zR7nUstj2hGV2UG3m zP$pXTV-VTvUC!~{n$P!&(Tm%U6|ri`QZk2)JZ{l%Uu(Q>aZ=Lal`XZ<5%e?o65XjFx_oLjf&zzGi-@!M=n=!p0Kx+jY{$y zehEJVE)e$WZjRo&DYU&g0+Zx2Lp;yM)c~o5RuNJCUE&mI+56z~5p0;p_kpLNgeDEj zNrvr00(tlY{5|ATAzAi-c`8}zfG~|L`yN^xj7281vurwz)9T*)5FMx)O|Q?` z5#d(N_GuBiZs%vLz2Gf^?UG@q9w)z0=~dVpjT%o5tLZt4GfoyM;|H-CFL-^q*?yn3 zgqKeIC3Yy6roy*<%V5n7BpDGN)Y1k%4}FlZh!GiVoMpx_EgVNB3SeQNrxD%i*m^jD zfOfoY?rH;h@+fLKg7Q#l&)X>Fr-J`JD1d7HX{(lVEKJ}*1XM@sVBZ{B#w{{kwUyJtc@&l4^xTy5}lrAyfD?V--Q$n2>l zj$bmjOIdPnh@GiwELjX}uz`d1M{B9|1f`6qZ|PeY&5P}*$$p)0I8DmeX6z*>My$#x zubDvnTkkj>=ng5NXW0mQX^VF-1U2rSI&|n^Zt}L#%*}*}NS(;<3dluxl3O{T+;A2y zOUfbrM+dw*GXMD$-M#C5)@>-}1Q*GaO0<3_wZjGZFduNbOlY-;{{mch$^;zbx|3i1 zz?Tr!g1@AkK=l?WF?W#uVkUQ@R;n&CuXVeNzbG%r!P%7e z;oltWCT}$MYLDdRDfj9Oku|zOa$TP5uuH?}H+jsn^Sk6%$FUBX_*nc0R^l+dVk}}( zLmpf^=s@;=0(M{5Tef%yYLj)L-|UW_ll+^&IVkir8UQ?15!ffo=VZ|itht_dRnkQ4 z6QB1tC|3lvBD63+53gKoe9AZZCET_A-V*G4pI+A$L38f^1i}pkKCMsvAX`3I zw89`Qg=>q}f>GocIq`m8y_vS5xGa~WEp%JBm68dB%z;Kf@OSb50=~)#Je9KkAyVKg zDJH*%9w#Xx6ggGdWf4eG7>4^@zv7+9Ah8Z?x(zE&isX#n3qPYjV2~p?m5I>*)1vA+NUO&l)FXzjTx%9xFb2K zaUahpd_Lr$teP@Oqfwh@eqLg;#S}nN-Pps%PVJ1mtso0xjk$l))Y`Ryey;gI+z@Ks z?-w2q`dUAJ3FHo>ew0CU{kb27KgV&749<2AQ$>bjcOm*-Npb|278HTOEjn$4Z*m1Mt>R~ z?hBLuXO9ye;=X_&q&@XmviF^>5EF}`PFT%T5X&!~R%l(`?JoJorTU&ctd=?vZ1WGrJ<~Z ztpRoi_><^`oTw*3QSU!*kF1ZErr1Gc$0NfYOs8xu&CGnyD!=Jy)*rORp2f4#8@O`w zZS$Y6ZAk8tpAjvc{zTiqV!OH%(+ZJXh<1RV|C?3lB=Ut1sS4Pa2V&DXR=E~8bO`Gi z7M8;jtD~U^%jUJOdAC!8xi<9WxVG3w&D_CZcEoqTavZ}PDlYmW7jHt~hX?~K8wO(; zq~pS}^lO^F@5>Rwq zo1DGLw3x*|B=kh;F&Nu8#)ETPl~YEWVNz|l@Mr~CicZnRYDeYy;79l78#I;(KKV(| zwyNR0mmp#Lub$J7L^Coo^7}?e%QB)~h6L%T@J(c2REO1>dcZ44iW~ThsP9@-YJH4o zlG5e8&wEO-qaKo%$|P*01EODWXB9K_)1uQKAyXT$>ArsE?fSP-=z>^@GW!r1 zG`L(w0hJW!VOK@J8UQh4XPHqnr!0Ad`x@F5pvmxDq{gD;Ef6Oec|8`+U4wehZFo-Q zQULu?{lk%eLWLJtV(=7oDwZ#|5+YV&+dRT{K<~uYiI*>LP>NeGc_!Ikat7+Q6!BMr z5v!{+__BI(Bi3)KYFC}gy|>(tF7YIv9poFtTmLHm+bju{Vvk<%_TZ)@fd^j)&)A}V z1m|uLPoNWseC?IMe}vmi6Ri*0xT0s6=d*(PB}*p^a`T<`C{=JJ6LkXQyi|Pjcz&LZ z=*NJwws4xRi_PMvM_V6`PAm&wj$xfcUo!ic{1>ng`zby}TGJ%8Qh%VgP_*E-6=vfQ zcC+~NQsA7as@^>jbi=;97GfTB)#<(GHozigx8M#h;uPR*2fVvl@sqWUNQD`&CLNth z)ppbW_$Ii+|5T&IsUq`NktxHMO`=U#Qdf81h&Z~GpUPjTZe#TCHAXRCt))t}7%juk zu_Dd*n^Df!K&7IhMeJqn&GD$Q?zwrLcRD(8pJXrB>MWMf8}Y2t;_fxOqcd?lVQakS8?E5oZ3OVlpF#^^$yQ zl=0SisUpK09X5F}ybPG9OF64m1-b{~lAlU=vo-t^d|V#lQTA20Kz6GzKCkQ2O-sdZ zFL#O7*`$MsBEUH`46C+|J+5^R`IInidhcfD@nhB&+c42c%{NXiVX_2-C~qdB%Ck_f zh5q@^46N^)M-%%u?Du?l^?!3yiL~Ye;a=jX8&+*O!Zj^7(DSo%10BDbwBFR>n^oUb zt>c)((X=Tnp#=k@y5H<}#O4mOtEEI#Flt&UU@^Qr0I*hcq;a~1F$fFYJNL8Ry|Q04 zww=L4niVv7MkCHxO%5jh1M@#`!qq9n zOpMAB>Oc$p{G`!un1u=4b$_n#4efkn^hRTEL+y6-6PVvd^E=xZV&F&JSHvgP_YXD& zIblviry)0QPI=C57dW$bLoP+J53(9deE?}e*96m3y4pm&i0h&Crtif+{@x@RIT1dD zTCM4N6XhCoAM?4PPNS=2qhG7X#J{O$7#9Ij481*621t1&IIoiwHYLBZ6}PPYEvFqN z|DJbct8>OXMJ?1`5hb1gOhl1y56is&9ZGTSme5haGycPkGL>*!*I}~xrz8+wc-sC1 z!XOy?c8LEU$m@nWY9Jk=yYdR%y}nPRQ>{kPL|wA$EQ>)zxD#72u4jms%S3gw*mxk;3$rv!anv5zn)_c}t7+M45Rf`t3 zb@YFjxhu5_V}aO{${dx|KS_SMyDEv2zh%@af;JO(>LFv9N4{)DHv_pkRdVG|SX-uPF||gIEolg878`&OnscjUY&@GE-vvj0 zNEOKP67-~)%J|vwm!5mz<&A5G^q>Zu_m)2&T;wOc9(H*4hlV62&R{?JVA))Ah0Mxn z)#stYf{oP2{BX_rxgSXf!_UYrsiyJ_37v>U?Hy%>J7PQ?i$O;|5*mdrXUCXUh zwG^w)DMxOU-15vS#8rTYWyvXcTkM>8vTmaP++%U_GLLY-85p~N@W^#rWniI7+cGU`=t9`>mC<`5dAUK{g6~9=m9^mD`C`mhS*Yq(2kZW|igs8W>%OgD^X+z;@V1zD zx*|#Yu}UGp89+J?IZ=h5X@mY}es`|%Bf&-4gse5?20gmCy)ndfo%Jq~UF@&X=@{<; zC-4vJT_!b`S~73roEE4Ywdp6ufL0w*h4KTf8+Q* z3Tpt839{)-`n^#v*BKEKmr_D5a1^ZNmE)eB%ZbVLAJy9`#q`_i@XYAg=krGT8pLe_ zH$9?Aa9?LB_@5mcLUymqA>ZLwN1PMfi?IgyShfq!5LdYlt5n<5t%~=?e#mZypPQfM zhx|f)g&v*nInnbXalOs#&Y%RV+HO9%0$L=j{D@*zEVNkWdA|axOB^$1<>{@W(t@_AcP&r1-Ea-+h$Q~6ZA+3Q zBAIeq`iXzon8D}zwJzrnuibsZT`X6nRC;rUPE?D`!mqy{S-;TiLLQ(KCZIL@w`4DL&uu} zUOOsPw^z5X%GP0vtm=1-p(s8}{s{8Ls+v1-pv`?~Z&eWenR#2{&Rc#hG8TOdeBAmE z6KWALnShQMn~GsLyN?f3cUi6s)*oX(SB#7QR%AYdxllH&^#r-= z@@&jvb?Z+cl-T(D3}g<`0I}E1m+Oeb{!YDYIcY}XKLuVO>(*OaX1u1Uwf~4mtF1~1 zf?qyovhN+j8m}mOSD=qVTr1LI46&_@8OU{_CQSzqii>$gB{8HoreF_DsBGrLI??&A zn)FVt?{sIVViiOBft-FEmbhs+vsQq+4v`fOyt!+??BplS{_#h13IB)C4f@?4{pH3l zDnROk`U%t>%U4^cHp{B@*cGd!mlFB-c*NNKw8T+ft74<^4FCejuKbxf zOXM}%ScURC_hP6pxpB)!zp6c-lKCoaa(4(j@FBZ!3I#hX;0FeyG&myi_4N$N)k}>h znzUAo2-WR0Y3x~{hWGGmw(yAon}E=!fxiJ-nXY*oIF7q`H&U#M72DYYu(& z`RKUhypO=8|6)rwY$ojqchs(LdR|6t1l)?{La&HI(yy<+N-vllv2+SWULL0Mpxg|E zee8dS2AK*%jg3{?t2`~Mq^*;|dy(gAh8OxqB2CxKW*u5o&H%qU`SK-^oef*qG$;nF z%=p|6EjlMj^Cd5cf%B7?BN_Yp_y;JE2~bT)Q>}rV^rW|^2Ua5VOGU(W?D-a6+&8bM zQ}E@emrav))?R>NwU~cU$sRdlJJ>J3mm}yINf`21`%4j#r|*t4W&6%@&$Y#(VAVB-n}lg-~7x{*uzVW!IF>-Mgj?1#tg;l8Td9j}zXvx7}=KlLAEoHD_d? zVj)g+Br7ozAC{bWJ+cJTr@(2Am*mz@M>bQr%xK|AOY5Iy6EMnrChT{V4r(3G$d$P+ zT6x=Qp6=^WIF&|Yt{gUYDbxnkywc$votlSaJE!OFH1lpeS&jG)^|Zo(fQT(7Lp$PS zO}uv9G5BJ9q~Drasqy2Dmi+Yo9>u76>xtNQOd>nTQN@h0C8V=y5PeJs+w2#~O zX5i);^jk>|GuGNIO*~7Y{yJ_bLd9`HD#gPT3IgE1*OwCJ?9@+Jyc*=csJ zOq!ii0CkUgzTOctTx7h&Ea@IJzxRqjwQXWoK>l&gzkY1>_#``9+V?tc&w0ad=eUGK1ESn_afIpS$@Sh}x?qkE8T?|)qeh(HmFLn5P^F}8h1QAV4n}E? zML-lLOu3<(c~M8#&I5L!f46ZS^!1txy*6#~{+s>sI*{!6Ev~{X0sYrDyAkC2DBaCN+cQY9`vZnf`&Kva8ZTnT7mi;0ktVsi@eq&;o3z&f+;$rk+&v+7tV7 z8@8UTe3J+}D9|*&0iI$MJuFiMxzkb)XCX4@04m?>E3V)k-_GejoJCS1PYq!>88J72 zphHXkGgE&iR?(=DLV;RWyg?d8Sui7>F?zRp-fHlC9plvTDw0)VMWfs&pg{bS+}D_k zDDU?{LS&srv}7pgpVCH7VX`|_oMEtD>HJ12y;6x)^Y@E`l4qctk`oVhj$U>y5YqF0 znkL(Waq~uMZSHEJ(j>+bokor(Ry{;BTx-90HK@el@|dT_a&)A_qk=RBb4m3(?oRKD zx!JhuOu*@-OTh=KK&CqvZa=zUtcCo=pB9*%Zru$CG4qHdD~zeXp0T^Czp(xF`^M7u~I zFFQ&t1BAZ<8OCLz`c)(5~I_IexVr8eXKp{ zgM;?C%12Z6Mz47>!#UY<`xvG^r^eaDn5R5on$M{gQGbT}?@d`2Hn}Bhj03ynZs$GQ%aaM@s04zD`Tow3x>J>yXl^ zuU*Z6jy#L5NU`eTM98`gh30IZ73H(9mnv(HWQi=Y8N%}iT`i%owhg$PAM7G2gdSgC zzSMB7T{I*jlz=oDx1M!81b@__%_5H#I)QR{OWRUMKW6i)QC4)#SDY>yx!u(DA3xw8 z=2b`M%V>wbk%f;}MKATX@)as~6xPa%?>%CWX7{>}VHYj(htG8L3f}=}j#!8cCN_&W zlE*^NTImJ>dp2!C-_cMfu#fz@%%^?{^42yyip)qiv9c(|@l(wNBMBz&;re^eY+hA) zO@Y+0^fJ!z$z`j$+QvP?%ZvA#$Bhp$mCn(7jSB$14Jle{Q^>9t5$Vq3Z6;le$Jg8z z@T+^urvMI3krERy9;&&0fS}VCEKSv3Z)D;WuQ1MB;&NlLSXE zOsfTAMA_K<1rcL<*yQ5e6|^%`sd(^+gz~jIPn8<~01V8JCDP3?UuK z_WO&jHpE6BC$)zAgYebYYd{pwpUB4eHKW9}bI*`7gpHVh0aBold`HOYhl`q;MR$aR zJKR(NN%YyzG=X)EBf;Odj+{|htDnk+hu}iIYw0c-Yz^DvqFp=H5$>Ezq-WrrB-s+E3hWW!{lqU>LsKgJI6JP zzksB7-d)Bk+hIqqA+0dTLXBT#i-uIMtwUo#WJL*THk$FF#%d8`pTqyj4{=IKS%|=L zPeye@RTrSDoNvv0aa*dHU71dkFviTojV~fSOlal1G1ZoDy|oU9ZF=gzPfkd=RvCVi>J7=hO54 z_Eh3fVz|crXDL?0hm&!pNz~Kx(N{C!G94yDw^O|jKC^Zb^I9pHFoX=gec=`A6%!bM z67?~vyq=SQmX~uvns=wD+jga4DkLNmg(j#XrmTBRu31y$j7O#*oFx!eNPX^(_RH+Qcu6Fr~+zn3{r)t zzcvv+`V0xFsNgvMo%AKrIvF->G`^z{;ELr=FZD9RJZNtW8>11)%gzgWwHnpJEbDMKdjcK-dJo|E-GyFdTyp4sy>1hMP>uZ zJf7&AK%ep*OVB?wL21lJ{iq`(jw>E!3ewCbXhh5{XLj&O2d^{#!sZ)aof(a_DUQm0 zNPKXCyR1#L%nr>?g*zSM%*Z<2^yuQ5J@z}q~IMITN!dvWzU7J(0zkTKjAMUpmfat;14>_KHMJQlpr+iH>du$o;5=jPqDA{m% zm1F!6`w%GeOu5$8qASwr9**VSH#eJ&aG z8$|ytQtvmt^Sif)yU-9%VBKpx*(>q;YXbLuun>*r=bgLsO$6&Ir!?tnr(#R$!dZs| ztAMl^FH^ z6hr+yH1~PHZB)TIAEb7gPxw?|zJk>{) zP9!5d$~5kmzp?b{JX=M9!UyKK=Gly9^>OBIx-{hU%>_5Ssw+mDd!a3uek}y)q`OeN zW5MWeb&ivH@gsB@!uZzQw;N81-PCiJKmN&sUmazXPak()y;ID8bdlyNdW3Wd;BLnq zaNz&i)kZ5i{SQHm!_R7o7F>sDA5&aSz2KwOT*)x_M$9p$M7-Bq=6&_a&xuuWVPiazVfd@bhHUo_lB2}o#{VaI@w?z?eYoq=|7|gAF<0b z3-8jPj_Qiw%8xM)aW<5ez%PFHC59T!Y3DUHp#KF-LEbUAK0PEiBg`+&O%kAs{5=fw z^Y}`hRfa`TyYSAb3gU}&Unl+1)kEs(Q2;_-RE16qa|iGD(!1_X3;1VHj^M3h%bPz` z-o1}oH*PCR_B%rlZs*u_V}8H$ILtY|EWVk4e;3`qdP8WN#n2rD#VRd~M$e4D6#fSK z!E;kT;h_hJ_p!Nq`Y4&g8@pR`f0CeVf{ibh`C;RMj z_GJD^e-Z$%JJa*@yLxr)^M6QFbAAyP`1QoR&#P+rLpVLPPIZb_i{k-YmDD%r=%osg zY_^|GT74iB{yC(cY{6pcfk~RJksGj^hj?|5%Cc>80*=Vvr3s(T4ap;EvWI2pM6m~~ z^G70`najl+SqY@p5>z~fgdf1Gt?VYS&Scx1g^X=}OB`P#w- z>7GWuz7%gngJyoRS|#cR!5Z1r%HzF^F|A$uF+$pvKc4x?jiE; zg55#?+Msm?65}!u&^7*e>Z{_oWszvc$F7~xax*#y8u_Izu_BF?$XiCYMZ2Pb;YFVV zDcw~d%N5?6U`~JKN``Gn-GW2c`&!c3WOz5C;JfECeFH9X*u1EzmN5ZWY!Mf%slG_+ zuY(RcW-@{l3Ftp`hX!z5{|jH|&0}S&PAP+2n}JlX%J_2f$+e8*yh4ogf@F=vXL%8B zs9c@6@iE+f^{YA;5R<6#k6FC$%~jBgCyh8c#ef`HO=^a9)9q3DZ$!Bo><)uM(usKf zk2d;lZp(*}>UL|+g{|0UEbW zeb@;OMI;ZS%&`0nsXj^ z`Wu<_7*yzKda47uAD+iqk}9*MK)JpB#Tbt+v-iR9OFsspaa}vJd8;=D|0_fNHdw8I z*3Dzz@@4)Zfw#cb98eOGLbd9^1i|-wRQry(b}@;vsd09HS*NNja$qyVN%dN+M^H)B ze+|TTci~`>rRN}4AF7$;SVi>eX^S_qAz4gVSHO`m9#@;LzNT8UVh_KnG9n0eFSY>U zq8GYCHxOfdjal9n{|QWJvWzh5*(2pmHXs7Yk;*iT+;xC9avWz2`70uk>b}lLBd;aXdwfVVFe(si#&k=?bl`e#V|gu7%mQS$h8E4b)2Srt?^pzg`CeXX$ZGCf zlPa$hF9`XL%}+%03T}Kt>t!|MGtcsREz8yaZfU$kqHi$qTWk{-QM@R_W_4|jsJkT- zJF~($;9w%@LZHhHhEY7$ojA{hhBcdIZ(5@j@QUJ^UjEJV{$(Q9Q}}1LNZ?y8D3j>_ zn3$iig`ge$Vv;WL4*XSaxSv-bCpyQNPS4Tcd0y-&8zrgaKRVR(>_x!xAmcZGNNI7r zCn-(k5ydU!#?Vz=^+&w7>2qj2v-n+e^Ye~l85Ze=XnS10;|kZCWh9t?6dUwWKsbFd zzZ#$pM9Crc^Q>2Yj0Xv{?CfcHhZMUiz(UJ(-jVn1!^5y*4gX6`qE7Hn|3d_#@fbVQ zQtq8ilT)U{_7ui<`1BnID-_K*%@LP%Xh6+EYc0~-!&j#yeB=0UI}EOU06b5HgU<_q zC)V#|brg_ePk_Fzmhq=ylHsTPtu|nz8c8TvxdK^~Ws*4uDOpf^8J#?rbCgqYV!%^@ zb1ylp4DT?7=gJ+>&lA1U%gy$v`| zg4;u~|M);^3neQ$h_9b)qqPRX?+V~8L9gx7V+fD`tv}-;0P;`{MXA}VLEfN_uV9Qv ziSOu*!%>4kt%rqXRVxQ9Er{vF+h}_8>bU78&?#+#@jL=46kW+ShkCG+(f3|MI0Cd) zxJX6~AuqbV36VL6^_)-LIyUdvc3$^w31FBXg*d(q-EVDPd*{J4vcy76Ze!}!5K-v(X&ufag|f>52n~fe|qh#x!Y5%#Qc9g)Y_%We`>mS z(o{~bAVptVTtp>)QPd z4Zlr7Gv$1!+*)1%_hACG-y%4GpiyoSuutD>CfxCQ&EwB^z)wGwB!>EAcho9>+$zoZ zu;RC`OXIB6$IuIVndVr$D=g&9!Y?b|`chREa99wN6(s#tRJ64YZng*^BlcxLEV2sm zSg)&=7alO}z9XK5zF0Mqw|K99dgj{7mBXheoKIl4|027>mJ)Gq=-*G$TupJ~j^p!& zT>AzS^K<7gM~>=^m8kn0GacI- zKvvm2y%2vSXF4sGu0R@QlHkI8Mw0?{@^Xup8LQuEmUF19)apvhzm?NIob9EWKdr-C zIr8jF!t$Rh?OmGQ8vQeoACy!IsVFB)$0XsyTUQSWFRV5?KC%Rok*^~?Cc4UzQ;U>n zPrA(B3I2nxDX*#xT-nKvx>xykv^f`&ja82EEtxA;|L)G+6kcPWO|I62E@`HJe_?qO zNmxhylW59jaP(swlJ7n)y`^CJU~)envRkw-IUwq)YNmT7h*ZbQfXGFkwe*#H4XRr^ z?|DurjCnMpeaJ~}m3G%la6+;?G|QGV9bC3m+vhhF^@nZ^KCG#KEqy*pt)e86F=dO| zOUq<#Kh*r3%didy(Sz=TGYMNGCni#3uLuKHTachwMNui4x>$P?I z#3!x`LhYqR#3zlLSrIl{%q1Q8+xhqO;VP;|0rWch7_@S=!QID-OO0Ozm10uJ297;= zN=l~@A?KFY#5ZgY@s7g$`a~bbR9`;d(IAn{}NuA)$KI1iG5X# zz6E~zL3=;%5#lv^520RuZj2IsuHzrcOl7ZH)brN+y5K-+!lB@zN|iaVS|u~+(Hd`4 zm{WS~|AR~$Zp2YHCcnSi>wwXVRR5QH65O9xU7|^Qsqk@2w`~WhKl)?!-eR*i?qIeje}NtKEJOet6MohB8U32@4`IEUA)Z#{KJ zX@NrM6aX(t4Gpa(cw62V0BJLXeHI`}M$;4b{i$T597$aJs=*%W1L|c&1!{M8e+XDi zWjcxKX}r(B*0L~c-!3h90wp12O{qgpcebTTf7kaP63h>|I*@R&7cnL{E7^ucoq+(8 z1md!LthO+qHNph<<6zIgEgkcN*Rc<^dt|sowT@Dm4fw;%$Tlj^M6`7jJ9dJNxL=T2 zUn=lq&$vbI8gduOPt>p=ZQQh5EeWC^!K)V{UZmN?Cs+8F;O49(>P&OF&3=|uxWj%8 z-SK_CzSDQC(;h|o?5{(_wk>YiW*pUs9#2`umrb|KJ%H{{k;^qoufe+1fv?K-oL*mOc3%<^;d$v+W0 zh}PEf@o1zha55u&|&2Xl-K1nff+cIM*SMH7gKGvn( z=u+m*?#E$ZR@|e)BEJ)p-^^AB>Jjox(N9rf0_Tu7c861<#=|Bf>#g|SW%2@{Li**bOzNrG%a|L<*5L*CsY<@>l!9J5-{rH(&?zHM8YYpMXU~Wp z)?IFN$vY|=DHbLa`>*fnZeLtMYkO^tSL6Bboj;(nw+4G1lV=@fT23cb498^xJ7dgd zm$$5^5T^(76s3C8-vmwi2=2UKXgu`wOuPD%sqQux(}gg>m7hF=P-GWw4!EPo)7pN_ z1o-cN0o{%%21EBP3Dn`g$dFyQ5jf*PK6)~dJkYeO;lbH2WZzL0gPjW*y^lr760POu z;=4Hwz>{Lcg}_wmTlfJi?y-N<2)^QTZ*;U+7p1}9cug#=H#`aY*v(*I2GX&Z7OMw? zuB=|CqFzCxq7bbx`ty_#B^2a@AR*;r&Ykw?SkI(a0d|iwBZ(IatNTQc7fuFFCovY^ zW6GJEe@ja8joB@JQ3_!7R@NVyBx?uWKz;S{aAo+s0Jwu{(a8hGvmL`!S6JIGfps%0N?kOg~0 zH*O#p$iw};kF&+cBWA&A_Oni^-Sdhbv$1<|J8}2a8uvx-BljQ5XAK-jMIL0wB^A3< zYjaBTxe8TM_en68L6%>TZ-MMStSs}A#0$1Nec2sgH2$Q@zeVcDt($u&k=)dxyG-5b zef&M)%cO`R8an2!Q-E0>OY zXYIjSK2lqE083h#_9P;819zM)E5b#>pGI`oiwVAcJ;^?ea?MKhvNm0TPv!7+3mpp3 zjFS)_%i8Y=xT}`Q!hw}Ua@fNRQS1?dT|w&Cs2x@2g;JNNMxHVf`2Se!0e)`HUQq5D z*~DQ7mZv2oG{vtmBnRCNi$LCTlT@2J2w6)-GQ(JuiE|vB&Or1lISpqu+WC_mw%Gs6xZQ0E= zF*1)vT|*uenQjGmw@H2{U3u(zk0{%W~H8$Cb!xcn}Elz*;Yjs^SpvLSI z18hV%dH0>ZKn~xK82WYw=oTTaRoQNq8)iJe{LStRAQqm^x#efJNO)=&CykcKX_0|( z*)7&}cd!=)t!{5nwOck|gB7hQ(N+1yWf{FV#^rFXXguK5WQ6v@#e4$ynEQFscZpc_ z$9kJ>^(qwhqk=X<^LKd>3@*2H{d==supTJn!uV zmiwmP0-#NF+RNT*!)r6>j>Vw4x_jlWZJ}!D5IQkY4AdYm$hS~i%dk=>k7yTLa4uWa zmunAx?19pDvRfKpN^%)`gIK7dpT{A0B}HZP3ptq2`z(9Ecj*AAsYsQnJ#f#=MTmHoXln%SDXa07(UxT1M2DYNsj^xPV$}#?d2g?=}7MajEoJ?Z*gL&!yx6&JI## zm#Gq}s^SdMv+`H~Ec;T?)U5a>@8*iXf<*r@cZ?;%fI4k(N)B%pY>^yc{!rkbUsePh zGA>fBQC^tZDk3h|8esXVPBX$cAVYMv9$KU9s*u} zr{$H~>CoIk36j zxfZijR`g3A4>?S3w$8{#Yv;GOn9W2AY3aJ^O+)@D?s z(P*5Bb{98$WuZd3F<|Ll{VL}o`Xz1WqVwp{zR3o!H+Dj^3sKkls1pRg8Ck?Wip`MN zX9-@+&gDvj4gEpRWOjs{Z{OC@mhWAJ9W65(7o7e8OA-R3BgLrL`I)0LAiCFvn06fL zNJM+X9mRK)v0V~RC{GM1o}Ujkd9AruaS=0nH)F?4m#8)PlX#h`ieEtN`!{xrrJO&&bW=7a%S7wXh?9mH%u2TC;N9(Ij9iBUvSWySHHce0(8q#U&)^ z!}P4%XdV{ek7q_#YqW}v>_)c!XwdEP8kD12W=#fNP=8!dWF?B2B6D3|A55E`)%MUP z;2CQTGoQ=&;lCXBryz+Muwd#vONFy$wdjFM(O7 z=cR}p>{|8GnE<1KSjbQIzF!vqn5z>F>yWgV>7Y-jU-MyJ*^ph_D3U4p_`u|hjvZ80 zg}EWz7VhLxkB-?BJtMBvx1m2+c{+U~{!XxX5E69BYB$BkBg)(Qp5FpjhP>@-H~`16 z+(svliIIuZ(y*-!%h@n#(gt73BWmu5&-Cr{a+IMg^T)z^+N__7)l=qD$=+F@Q5(<< zskZ~v^hJiH>S+o=);YHCBQM$Cxcw{JN@v2&$X_ zz-}#Xgv^H-7|-hlo_Z%JR+-<+c=*S%kD#NyPv`n-=yBj1>0`iLs<^cF6LsFi6D!5< zZCnaHH_^dpIy8l|X zzrNVmkSBR4e6(z8D1X7P*=kPO6*8I~Q&xZdyMDaqc)9fEw2WnDgeLRac34kGcj(zo z$6NXfZ|ifb>CM1)()*h_(2JVLYoW`7Ru?;;ZJUHghBFdR(ysUuE9XrcPIti8eso8h zM_R7+MB#Y%02Qmi=9=iVmvD-7?^CNq^0yUaaZzq-^9!5r70Bc0X8Rvs9Tzm7p%u-j z-X1HZ^CC@Dv^r_Bp&NbArSMNHJl-uHbB49>oE*E6WPvb0J1g`{HuAc9mZ$*|jhgQ@ z(|@1O(x4%>da)6@AjQ381FxaXtVykA$tSsH96mKk-$32P*VCxE2@Hh8hnY1VNK_*gWM`q)m$D;%AEg3YaPVGg z)Jq`@kHMsq#=-n>v>P>ryKhL;xBl zN9d?YL>^!rP69Ze5b*UF2qzy)L%`35FH`fZ?_c3s4y?cJC~#2i&HF^vE6LC9qQl@bwy@tDuc=7ZOH8Ck)xXiB_Q_8!N(k{M8s#uEVZ1z_gd%(YFP2oz{5ri3!iKP_+lm?hAU^ z8HH1|1{Oq7lU#a&qwe$OyYz&VXS9spZ!!558laYri*dCG;krd~NUSOH$Pnf6l*4;4ewJ>lu(qK`0 zKm+ja186p6<(c{k+?S-SHnY#b_^lbMdE*mu_45@9f*a=-l8=0bh;v?@vcmL|{T>)A z;EXIG^&7>u!4N6jUB3JYVDw&|6Mxi$F-o;B29KeiV zaFQkke_~&lg}k4BXGt;%N%6YnyegVg3=Mog;W&pn3j6#16wTgu>?5Y@0U;bilh{66rh zI|5S-d=t}@4`;7|b(gw}vEL-tS^PZi^z*~a!}MTcbj0lDQXmHd?RYg zm8Vf-RtdL9MPrji=@6PkIrpuZ>^xTeow*n{_lk#VjnS{>0p#MQ&ZfNM^a^|byoK=}r;KvD#9Z2zYq0I%isp z#X)ksJae8FPH>I_T=5A7_)3Z>X$mDRB4KNJph#8P=x{OVeibP#L9Lff>)LtPGfO0q z7VDY7U~puLT~FUMohcxGz(p zoL^xfea3#~mdd1`fwtuiKr zO*iH7mJDb15?HtrVkf%AoRem;RcgaWF3HJTx7<+2i!l=d9{S>HgGcm731u%*2niw2o_n>eEQ68?OB*BlTmnZVaiyC#Sw5F-neeWz7 z$Cm{cdj#!AbCl}6)eQ2p$e5BTk^Y$ou{l^r%zlhUi}al0yWiqn_m8T_)t;M+JA`PX z2PMh9RDIEKr0_(Csm_rEO0L6xZH+25Qe1v2myhhI|Mj<{;kUUmf$uRj99kOW+h8EcU*_F*b;x+97e0pHH(uUVzJqTsF`~+BaR!Fb}YM@2}aZri?Z=RDX2ncrY}R z*eftwJkRCe2#8u(mWtp0oWED&rUDm#f;z5zz+I6PSYH-HSpLJUH9eyhcSpH5Dd&6x z3Z#_56Ga7sYz3s&Wlt>Gf)0v8y<3s-TdHqP<4NThhSYTsR(4w^`soT>s!U3XT$7<6 z^Nu4cBGMQa`G1viCf$?Ss_DVp7MTl8ruA*$zb1)-8wUl4&Z!7{54c?4!an)R+`|W_ zEss_=C^_9bxUlTR7RXcYY}pPIX3`<2q4i1eGl3|A)@EYR-kx{~DW}x*n6FMjO%qjf za>Csrx2;E`v(fI~Ux#OK)1A7tV?Lp4KaOXyTgUXu3#;N{4j3=|_ZO_ibseHyv5Fcp zN>T@E-u>O4RQSMvncV*=fR{@&eoi7=t&0jBEhpZO;?hdJ%4iDTJa3rJ3@hUsj0EnJ zHJ}eaoyHnc1ZUD|f0qgKk7PhPq}`1)Edqmo{( z%zwrZ7pCw=bw^m$o6148Sk+~c-JF$^H|p^I$+erzXNHcKPO(vWGkVQguxP$c#v|G z(+_(QR`MM&tsWxmFiEt1S8Lutw3}mM-eE%zQbmQrr#YdB=mc&6jEIL5uMXoC;6%%O zDb|_7InR7;2h{s%3EBnm#y-r@b4I1qcxiws^_GEC{Jd+lJmIdnGFfzO$y(q>;shVu zoUF|a=c_dnnMb!8?}@tjl1?Q*3q+Mg5{CRLf zE~{uMcRJP8LuX5e&b-gNL1#=s^tXaF?7yKVITthur`A45k}J{lI+x9=d}7T!MQwD1 zn=IB1p29_E#YnWs*g6Hvm{=B8a)7jT&8n6^kM6a&cSba8tf^$o%iRf8d)>SXOpDp; zJSPI&EuC;UQHUJVicnjs@v^-=4q)g7ULKkmMpH31h}-K5Ojr&1+~63lU#a^3-fDc9 zC%2HYXq#0XLlg2EX4Xp8r{~yS16wP-EKq$RTx+~jf(@kPuVuBjLf)Kf4N$6nf;@sl z6c@qX&_c_7JnQD7^p@V(TD_NJks`H4!d;x~pkH=X#X_onA?PZWVK5^)xyJRg&gqZ+ zxu%hzrNn9Gf}+DES^zMSDEnV$R6Jcdq% z8pY6WSf6ZVUH*wZeAFz2WcB;lY(<}5W5`s0^mWAq^?>yI7N2t77QmlFectM( zPWa8Gk`2N|yJvFpR(DrRembSjIIR{LQjMX7jZr%EBF=f}KAg*(cu?S-DG~1se&Mtd zXz`bLgh&5EL+}M&xLQ_a)SG}M=|#2jcBFADQ0i12YB4I9#Zb0m2c%b<&8tM-a^A{R zPCN#%1Mfp5MjaeZ0W`?$&7qiKw}l;B!*|!4A^ZkS>$d@;#=*%~i)qiH7<$8*RP;1T8_n9kR)6 z`Nb+8^j{W&=OVshk^B>WUiTHcR~vQqC9l?>NIcc$S3xj&)P2EkAEyQ~YT?v%k$w&6 zV|6p|Sp+}O2qiiUCr zR{DR)ll{`?u-{4_9!|}*D^8?$*~p!ZP=1W4?R851&eszgL(q;a#r)5%HbrjVM_ZuQlGQ} zr7b$#^U9BdowVlHpM%2UagW0yb{u0e z5aV`zkY>r*5Oz#9$f_+iKj;)Vk+lsrh$6u9ZZ zFLV4iZdXBhKBY}>^r&C>XZM@+muSF{d+mg%RCcq+WAr7 zXB?F<^JRh9mNCyVRE$~Oas~-ERRRpToT)ze+z>Mi`Dk1zu^1J4h^q-yr(8haRdNz0 zFj6{`7()aOVu*V3zHL{1)#E#-fRRchwZ76;y(#pcteA@Xqae^lB$(eiabw1$wV}WA zCUzjBhq(|-uXIy?$A7_5dwmVt)*FFmU%O5AWn3_Zk6Z^IeH|0Wowb28zv#!zIad=n z5j9JJ;>e!h9>hjVs~pE`3blQZppb96XgjoX11tvO&{p2H2Zi0_6e1IDLFl$NXE13W zd-`fqV6|I%eIu=V`$p;#iX_s{4v1pXVl_BkEj?`mj%NT&cR;!C@6?S z|BWf<3V)AQcU8GKW9|4FyPmC6i62YY2+XOQ975;I0FPY*k1cZM9s@b7eJ{Y7{Pf_c zT3O}>(M1lrkB>9W7u-b0)K_-{WZ$dLb*lc>*ASeb7qU-6CdyZ)ZL9U+MeH>e-0e4O zfO{twg#G4$dxIaN9bZF`p8$=nIJwB5A=FxCsbD|w1u`6*t2|^U|C`ByZ`+Dg7bKs$K!l1uk(CAUoC&L!ne&ohccnB3%TW@yWGi&`fM=)*6Ah*VwJUY zsGrARc&pDtK^sRd%=4vIiQ2l$dXf(C$eEam$IZA#5xVAV3Vu^l`{QigHMag+MbW%bkte#3tE%kqj3j)&p}@y$3aR2yt@`-r`#g&jUjv#0f+fqI!bzw>carC2 zMxX_alM<2CRYK<72G<+Qqan(bR@mxMvR}R(O=XSXtz(%=w^-rC=HMLkD%i5S66Zl5 zKO1nz_@_p@FzCvA8^E8So_WHJrnhoz)#tdljR?8H9Y~ax8`&(wfx}3P+#nm@V#f`h z=khLjf-{2?R^^{P&^dy@IkR+6xFE$ZOA=Un*%ecAIyEqH{z;l|5@#TpmcR-RtO5QI z5;N=u+jnqPu*y2V7F$8@t^WxMSma=TN$!`}<`Ny5*<{x_RPDhTvmKXFuy*!8E!CN# z9i};}OXF*)n{xb5yaS1anl*Bk718`M*>(>pyK{9Le~N#6s_ycOAczQ=d=G8JDU5F^ zopuk$q=y79@}+p1p{?LUt2(ih2WFXxA3Mk3-IElfu~ z@c!^I5Kc1<_9Us05;R#+;ToHB4a;^j(V?e;lZ48g?bhn11{`?C`!|vfaU;dM8lb~n zJH`4T>6|-tiqVB-|JhM^1-)8j-kxaw|TQk~0=r8vH zt5_HE$Qp;R!)A_#wS;cJ9{5+U?dZVUCpSHXyEyQj8?t|CaDy0s?g@_^kj;BLr7b1+op+aM zzEj@yik)>ZU;Besr#sDbwPaT*8j`oW*5m7r6?a&c8K`HzM2U_bhhICW!#TkP+#f>b{KsAWDQB#@fWYUE zTF(7J*t7D4t}x+A#IrazGO)5|sa=hi}N9dRcp3tYSWuW$^Jna>=Vr2N-q zD_z^vzI>)7J|zfQG`)5=XOezT=o{o`4|CP+PKd=uLQE9+NcJt3#N&5Koh`~#xfD$t4qoZ;Pkn2H@%L$*VnQIwD2#)1+`B1Bp? z1FI|t0oFStQUS1b*JSQKlDnP>l;78ZfXr;WO%t}YBVwpfw$co4y?tEzufm-Jf!_SIRpBLG*BEuV99KP+5Vd4x`Mj8mh~_60)Cs|7@A00eDY$|dCEV-m zSBIj|kvln7Rrte65ThhcQcC)85yTIsWgYCWGxH$xj4j51X}?3Cq;PT9Dl%(P4>u6C zU|z53^js_P@wph?s$>nx@f-J=Z))l+JhCvpxPyNf3z!rQM*WHi&g{_w(89cf2b#UX z!^j-LU1j2V3asuw0TH>vn;*p8Lyp~y|9O?2DrkzLN-r0TkK$u@Tk9LUYUpIkeBgpf zuP$GK5S%sn*XG(YIwg?v&?i2crBn7)j(tHd=dUYG>J`&X2I6*VBJMdF^NFn>8smWC z+>v5fhbX}Mqa3DBT{g-aV_@=dEk5SjVe$DS!8r$_+k@9x@AWa$Cv+2j}rdzu7TM!)jh8l!h)VhqN2cw{(*a^k zq|Rm^-9(2P!xzBFCLyFzl&0a`V1XW0xj-4#l>J@irYx&Gp8~E3AOX@0c`FgR?DQqV zG2eQ3!bvR;L2Cb(MZ%=MeqO{Ye__O5A5-rrY!pIW<ExZEq+ZlgA8Uz{a7T{Tb(W8d}Zfq)-2#ccF_;-()l zG#_QSerUab9&wTFwcf|#1{4|4sVz@>kR8cDlyMXPt`15OcCV-MNe3e%&pqN{E|Qfu zOZfLabGxR!$x(Yz5ab=R+ZTgt;3Tx~d$@u)I0cs4K7KhnYgN-|+vQw&Pmhe#gz`LO zx_KkeE+1E1sABj}_%;8^6d2xAfRy4Iz0j`w(UKh1q$Wu;wDamsO@b#h0OGP|jq$O4~GUp`MUmTs>JT|3cSY#ZN7_eUpWe8vVusih$ z;V|Hvvu|y~_4R~pR1)&hCcDeS3B76j=SLO?Y3s!f17uX7%B8i0dPO_ad{`=tZ-eiA zVeSdm50di2O|HzU8FxrJC*)+xz$~)bENUi1xFL`#Y|4oasLfy! zf)K=h1AKCU?IAQH|ApgN5e)7-xKUSD{8dZa1|Rc_>KF8CyJe#pxB;2NT2Hsl1HfjU zs&haMb8gPl1lfWv+%TV*!pnZf38Jg@`*ftY=yv+O69`&LvS6x9eDR?dyRmj)B z&6v{97r^g=5!uG+{5*v0-RU6RNaig_R>J9sdry~ChM+z0s0b;RSPn2SSVbGv)E#pP zaP(tM6ZYv|Y>@SkBh9?d1ZAODnSb+fmp2Wv(=2tDED{ZtktCQwiw%jXfbIx<4smc- zdKDV|C9}|4#X=h=gxE9e=ArnwO^ZAnGCnV6EO2i!kFR=}n^7>V5(I1wU0lnK|5^Ef z<{zk4R4sy}oN1Ydyj24#pE;xXjsNFo&XB#nCg?o3iZd$E!#f;=x(B4|_a_ z+zURyzX+cCbk2)`sdKm!V=G4;`iHnBNWcI zme;O|N%lQe(pweadS2U!N#`zK#$ci;Hau}Wx4F4l$kQ69*ItF?8u$BC{WhtwdEh&W zX(zU-?#p%pty=VS4FJ8O7H)MV0_>cH-N(Pg9w7|3RVV-K?#KHTdFQnw&uA@Knk+gh zN#-#n77YcjwyWN_eerrTRB&ErUC*5)m5c$CW>_L|)&DqG>oe_mzzG3!TU28%I0-Z+n zm0Z)`*Ebc6lw?amI9B&SoosJrh(lt!>?=yZFhr5S8#A~%Bb`mO^W33+^nHbSpkt$} z4hp;!g;RjlAEdr4o&1EwU@EMRKQ_ozcag=X9RIJS%0`LTlN^g>p2DyGy6oqI7}xuz z*LiN`J=a&1po!Pj31wsm)`c@0G3t^Dn@XNsKx4CH4u!Gc$I5Uz0v8;(kiBN&z|c1( zOUXsFK#N;G@;waTsPtUI$!6vT%}1PcF<)PMGjZzc@}YIcq~Ff%J6K_b3rnsirVI=a zW70h2Plpd%D&wT8oQ-%tM1GfHgfrpznr!h@*9ONPAKmqqGIr`U#(Y|Dzx1f@V1QMJ z84HCNs7UNUcFFVSES9OhY@hzOA_7voh(C6l&_{_p>HB8${g?TY`s%^^nT+Yvt|8H{ zpnWefj|-ZAgn1)Z+HvmWbsLVFyh^;Lb~I0JRBh@3_bqT*26!su7QaqmM&2DAy$JA0 zqWFKGR79CBn^zHfb*L*}vsBHseibO1ml?5XmZdRWch}7ZT&B8q*<)_5_Wk@@V;XSL3JG=Z)c)qP#oHuNs)4v)Kg-6Kh5M2sFSh!4_gVit^!GU2 zING$kbM#@I){8c|9;__Z2UqcD_xMZyIBZJ2e5}vfNyIyt@zp4ofF>KE&rVD-G`yzJ z`e(eKD$h884?cnbF@HSeB`xe|Ui-QHtBLeTj1SKkm=xn|EpLoD^-=4; zaf|+A0b=W_+!`=2J@{D-ZXl<5uUMkM;I4xzK*gALZ(VqCGCr&)-HLJM)3D3nGUe7<8JXlm+qVW7R|lw-)|>sjs~2%Q67*2%JE~=NE2r!YHL9+QBPH=p ztGH$f@vn3Dv0|t81`6K5xudI4@t&!?w6m4DMZ&uG+DK(@<`fr!lg$U6Tfb$<0+?a zjH18($OcW4{D%?J%-?oP{_OyBO4l*q%PxlXx9Ri(FEf-dx4l4IWW>RoF6@ojl6ttL zS9=t4zv=O9X82_a)PZu$jA>VE*>S3-t{_(BHpk#^lP(9}gQL%yYw?|_RnzEzsfi+j ze-cpxTrh*`zM@PCRpo!ZCbM*a;?LzVM6EH54ltslq@J@Ee3|#*PgN zRE6uV-BrpLO4!BSGhU~ESqBO?SPk}~%ol{|O?}+&==vJe5^>W-^RZ)-q1N}&!gSu# zNZi^*ll1{YuFhrp^1<_8_h^PbGP+}dFCEdEE`qK?f0{AE418W^ zeLJL~UPhMGz1k7D)xgv#6NApYYV)~3(P@}McO>E*#kM3! zH|ytv)&dWQ0r1>d)5+VdOdZQa-~xRinBP|o{IYZ`Ve{8s&(!|o@A@t6RSLD% zL%-?HpPW|QCmiI2L9R>0#a#7(U%heDz)iDOUni5{Hc)2I580S03HBOr6&`~dj!Ri% zo@?L6zaOrexoKUpNW)s3Vd@SrVD@qOEw`h{su|P;tKM`C;@w9r-vDYrA<=oW>4>i( zMSp`CbN&EMq^}V+j4(Bk-9L^SxjTZOit;Z5)U|Ie`|-r}EHLl4WI0!GGEH;5?;%UZ zwTkSRC8RaOc3CFTr)9L#lg7W$k4xJ94@{88Y~gGdL76V*T+$&z`k9`DOU56|&k~|? zrtsS3e*BLVzrQ2M?fOFAUW&}LFXZD0&qyqXg|S@ip|(BQ|BjgbVyPQ6O(V|~^ZoY3 zi5|#V_B+>Lzb03g@wNv&W`&r`FXCT;CaZ0J2}fqjBT&CkrCqM3WRE|Ao9X`YMbN^m zqVsf)Xfd`<5cJMLg4M8~@t^^~O6LjCX@}S867`sqbe8X66HQ9X;Ur^h209*p;@Z!R zhD9x~D9KRLaXp$M)xc|?jg~6oc;%nGLTdtjm`k@1a^mb?Y=1S0snZyMQ12WTeH?P* zgFxP^k3W{$)GB`M)1gKS%z#G^=LC6+tcqB?$*R<-AX$TL2u{GCVA^*sqUnbg)NLgNYQdFW$JXaQ126*2np%ZX zC?*tLmIaO>;rr|O#{(;fS~MHd@jNMwG%NN#;A>mu01LmIQ8JgeBigZbqN<6c< zV-jKrLrP4`WPj)XxQRb~8SS)nWh~x1YUZ?{l-sn4yT7}!W>x2j_9%+w!X+M>mnCe>$(K0J$fVzC&7s#e~>Z(-Q(oCyRz5YpB|5c%)TYS!8nvzLBQv9;z z*=iu~CKW<8wnrEiNu7jG=D()aBem-K1}lDjCM>^Tmo0>pz>qT8J%!6@(Y#IcIS zkc2i~fk+p<^XyKk{)Q`fh&P-v6XXu|xXb>lJe|BQZnnuY2U8a+;PaS>&eo;v@LYdHjtV>m{P&it8o>ubY9oG>28 z2B@2Taa79Lr-KFC+Rj^&6$*B^3dyI0Jdep*>__|Y+b77bnmr83ckCd%H;gMg->c7D zFw#;*@=i)toPE#W@8e@h3z(|HsMHs^y)Wz`Y zTts$Mwjx|52Lwm~^K_5i+JCrlNINju0WHH7u05!EmG|DH1lZYcR=sqM^HG+5JGj%K z6BYEuz~gUB68ujyYMEIVQ>j8y7BAdRzDoW}oC`*xR@Yj=y##gj3Po!3zjGD<|0ImT zu7_Z>eWafl`7lcsXTHsE)VZ>wr1(huwOFjCu&oofW~_}x3|u|8tQ+5CFM5U_?MYQ% zcTK@&?|&r<=L{y;O~^rG=gPa|Sb3Ubj0R#*2meBqF!mb!pm)${wzE})=3VlGzc3I@ zHt5KzqUS|MU2y_ewOK~5o?s|mC)!!74T?8ri?3FO<2O6%=WBO9vF76<8}_FV_XY9&0-j_&d3pIDOV535Quq>z;sCoBbpikeb3JvdRiK!Z{1b1w~{s3FL~)0 zqaxUF4O1R&->9}7U}6L!8VAQ&pJ8)*>M=f-cbf9vAPo>S6^L1L1lg#f&~OVpM=XXc zJMmvj^BFZiJ)NtclprqiR^~S9+L-p^!<%p7iU0gHEs)-d@fj{!IM`!))4*NKAmHg{ z%RS8C)!tuzy-hP_XW&+q#{6~vRf9l(2goNbNq!w=89AJQ()xTG9fo)b4CRx9#Bh*+ zf3zp*DX>b>mzutd z5JT^9PA6G)u#bTcfCDieIgm-&r`K&CFu+E9Q0exmgZv)lJG z!`-j&QeBkRxd1uw0N`?cMLmWXRNJQf+9MG@e9zX*0-PZCd&j;L{_P}vo0uXXpD?Al zsNDkm*J5X|myBp`wd|>u7!&?E_P>nZ1qMs?hUlMZN`xwIQTAZaBF)-1@IeiNlY>r` zz>Iv}4Wy|03HIM??4vy3y|(yj9nc_E;>|Pb$-I}6@}jNl@{b6K-hWm z4?@k)&2^pWnCovs5R?mqN}m!PSv>k6Ap&nO3imomdUk4`FZaT4#E&d$ThOWj>v%0v zpbR_x!pmO|{3h;BlgI6KslrL*PBlNF6F#P}sO56~#@bERlUZ#ma^bHCiAoz+n()kN zT7-Mp*6gLys`$#5c&e$ZvjlXfxbfPm(H+c?CXCncj<>XWAm}?|-=wUtY%cI%HB}aVpMuZl>z$VW zEc^SW-&Uyj_`n=~YdrVZ7ot_7xfEXC^27FWMVsHJorF6fv}69F-SGF!PtvA_rUO>* z5oufJ#@p(nYjD~h2_4J*IeU*k&!6#&$L8f4C`lGi?DNe!-C)k~P;78mF61PqQ@rz4 zO2myd%XOxmA%)uZG)?sii{AnMPr5Xggf%UZ{eXFH3c(%a+x&spS(}?Va*$i>?cq4A z(JfV6wE<|l0iJZPQ>u${5?sK-IH9nU+Cqq|cFTo?qhj$)9Sw1I%LEKDi~j_OecpRy zP73UX{m;zizvQp`B_!TgmA;1!{Vo~^FmhJeEzj)Ql62`xGvm0tZw)Y_xUu?H!J}*! zq`7c5CL0eofgh~qV$U|;N2a#_%J92Y;UcPTBo5i5+hn_RPj?w8t$P}q3YF-#gv|Lz z>&S8;3<~GBgYRqHI70g+cZc8$G~;#Ia9i zzXV@24-0();BmrnFyPcFYCYc6C|+~JpV01e+SbuNin*U?*{|sTat-#);vQ1@kW==U z;^1{3y6afN$VslQM+ZFU_Qvsf)oqDn0&ET_)Y6w>_b4&hp4qTjr%>iatuF?YeFr-G zOLiFjBR)jl4YC859bJmBhF?s--0q|~alM-xB`QTgkv?*db>5k;Y!>u>xWSgGe%mBQ zXqdl02-=F>O2C?P-;X!Hj1qN3$GBIXQAbQ4^qtR}mk%tNkKQJBtdfV+fRdW!(|KxO zcjKY!jhTUObTbKolHTFfH%RglgOIrz&8hjj;GLP(1a(<%(Vg*l6!{@|``NVAWt2iH z3FHg7?4?JUk;&${PAbMVO#uo><`W|BU|s93@5l$p8xuLg>#TNS&3}vMYn1H(SS7D@ zI4%9oWh_65QWArRAiM#S&riphIjN4%Yv#RJ-sXw%e$I@gD-r+jrck%QW2aT2lvCpt zq+^G;fw$wxGq*kJaKJcVch9y>qWAaFYl)3lls6CNqd$m@l&8bRz(3AIr4TQ26X?&w zRn1(pKP=S|Tie>}14s{l;f|6kHUNi_x0q>)#($@|9bJLfcP46(Z(9;s@2^Lpkgdw| zVifK0$`p>DGxR1guI?#2?0n@&B==4QF*AQ=j=n3;f+HUZtIWNILlqF3BVKL0k|dRG zGaHE&=!$E0-puKUJ)f=vr*V-#5i!WON%6~c9%L^X-Ptsb&B;`Y^+UHz`a$<=q^kgj zA7Y&9X02zkbHchFfuF$pTTr~9b$*q?de6SG%{%O-^I-SHuE)&3A&*igWOOVS_qX#e zBiwa+7$L$8pI?7`_8%-p-v7s(zCV4fb6;F^Z?1kz=ua#P^;}ABnN*H8|`c7C|rJSa2V^Qw7{IwS0AMlXYjDT;hLssPdN~XEQT_ zWc)|+WlS5#Q>(kaeNCLe;C`Q8cwuL#<%>H*4`7Qu3XV9B?I36x-;n$!%=PGULQ>Bd zAftHy`AK5^UbEv}BojOnxJt%SlG4RGG#V@7oZ!z`zwZcZTjT@|zZ>FO{R+7GXP3XH zPX{{dv{`kYcuZ*4P9t@2j##JDy=uA~zS+OLI)Q6?7dUo9M(7^SH{wE_Z8SHUE1fHZ zue2FKQIE$P)WceuPH$Aimop>X_>)KOsNzj?i9^VFRgW3>CzAUzwtQUEj33kBhO=eA zj0!AJ$<#8rV6E}Sud}zmCd)40*odAtxafLd+C@^yyA^yc;5aX^3CO*cx^rU>!@+&TPpZ=vohvEsZ&5UYJ%op|o z+T8q;cO|P)R_nzNFh`UD4ip)Mf9MMR6h)V9@T`Tkf!}`59 zAoSp-sH7$_;4D953zBMz=ltEp8qp@MH5Ls3QW$Z6m7$K!jnCf9uKb4oS!*Wytr!pd zX~sJ|3L)R>B!Qj>BV@{mf8@_GDvXNlRJ-w)wO&3u15U}5<@hNBxdqo9HRys*&=)r+ z?q&a6GCTsw5qW~JQVcaPPWNq;!UF|IFn)>KmswN=KUr{I0>PJWm9^I+cB3OHLY`Q; z>!C_A9}k)fqqiaANZq@~%K-yEzD`ZI4T3cA`P|Rs9dXXm=B3}C3*Vm-&4~~>(ps7Q zNtCxU3ONO2F9}8}mSDu2_y19dg!~k_CvK{S|2hjy$qPwz?HGZ^MPNy)7po=ZdcEOg41aDdWyew&d$?WS4f=HcRo`wT*^Mz5Pqot?+}wP*Hv%ot^aZI*yE-8~ zNCayn?8Mczp`Ae;YAmzJ%BYrOFmhk*#fp{{i+@E%kt$ay2Ns1?m;dYtPy7}e*4fX! z*lcv`7SDdy?}hjg-23iS%z2DBu$3>5hpar*Rm7lD8E;1{6^>%UzpegiP52~qfrFS= z&B0u7ST&rk)FMX!&)mFjhPu$rRA;?wj6e2hcENJA>oNus;F;!W&I%i1e-3TMISmMh zj`gSpq*C3~mO1-3P)9iPhP%!COkI(U8AtABlFq_BJb* z{)xuJ+PJ!Se68X*VXL9vR^2L+>1l-$u8_jYEMDn!%`*OBBnuU|9d(cMrse0kF4^1r z%_dx0HiQ1_QWftEKsX(!wXG=|RKxL@n`7#45QOq`gu=p!T@Sk2!m?pP1TI#!{%^Bq zxnagbTA-UOxEFKyWuCHZRg2S^oQ|Dg*QIV=&57V9L_H0ZF=hl zygCPzsHI@qK+@h-TLKS44p~F)#h>|(YFi!PbV>EIo0BQzdy^>XN~!os=An48ylDAz zb_V==kd;!A-|&jw8WgsRUNI7B;49f4@RlS9Od(&7Mct9!db8&F{=Lm7)Ro6bxeu6) ziiq8bm%kfsNgi>+9?9|4#vQ&^6S8g^c2bC6X0kWGG8Ly+-|T6YIZ^jwb$7H_Y83fO zSfZ7%=|u;PDm0&_f^OcPKb}KcOdPNx*MU!IY-Y~hddtgJ(cVG>M&@y!5E`-VkIi1*Z`p)XNP?96ATeulRk^UrmP^32O^^}VvKWYBX#bah%13fA5) zCb|DOFOm!mj-bYQe)jiFKj+_H532^p=3%G`RM^@C?e-t8i($@Ovcn~4&#})afeaYX z^+mVwW`dOJT3%JTw(VE!ANH=xH-m;;B?uwrg~PfVE#V8$CEHU?Fxa(Ib&~(j_@5^G zjnc~UU*aG%8la1W6K~cY%hm@6@-&vVpb1+6Ou1RI&c7tNOvZwmV@sRG1hju@>>K{wC2mCMyy4YT>Np9gmRxQD$dnsd1tA zud=QEZ{Y@Of}$~I0X6OD>8#-QFWih1ImdfZtef3tLRpB3AUDWb5A}2rL?jQA0^6Jp z+Av6m$|1a6#5P?vI(^@luTG%-KDD)gb@?S&jw`{7mTWz95?W~jW@PJvHHi1M5S7wy zl~1IHkStTM7b~m|P^SiN-C0+SBs`jr!Z=jraj-zdEJE)HCdNdsT z=e8K7?%8Jw{&sH;JjnvwNK@(Ymj*^}pJJ|lfjUv9PT4;xhKzPJ6S9pk-GaZ1WR*Zy zHVcu>nze=W7ujt`Xz5YD@AGh7teY@dR$KdjD_Q69N|=;Pp^abXNgG&5#WrTWFMcfy zG2C)~CG~Ei1z(THz*u3hS2e6fRo^$07SbB!;sY$u$Deu$qrW+v)d?H|>&M49qs_%u z`i@mf(pAfq2%?mC2cCVys2Mw$4vv3?t2ca+4LL9~;9OI;x!g!UxRUz&+_#qFa7>A# zHU*d9dv(WlMV~Bi<%;9{gAh$)yb9^GApjaqAF(`6H5+Er$Qj zi7$fc4*Go2riwA%m7OOG+9|$wHtfgY4iwUXe00R5Azy)$r?sSJdOh{0|sIH?{i!ohubznNKR zXdalxvPRCogfl?&%$ zKLKl5`}>;=n!>vLU?(Y)zxTFBq}H<2Dm~)jUd_WVrQI!b+xGnZkV)4$U!_f9;)fsi z0IMfl3Y{dN;%-N^yXOB7#AiI02XE{FmdLLrhzgaH-orl<_nPU4ug{+)d3b!-OWBW6 zlKAupHHaz5FmyiEbU*17^}_Vp8tK|ywZ)ESKMJ26xQ-pt`fzaEF=&fho&$wTw)r50 za&$`Jn%x3<(-F1giXlnLZ<7rmoR61kUOX~qfP}+W(JaN%L3EJhUG~aXk#zv;bDNa5 z2}E6xyhgSG&+xNTht`2ljD-7-*Q6(YbyT7g(=mz?TKko$K26090Y1_(c>{Ho`vJa;lVX2&nRgSVvZR`}Wa$FVq1y{6#Z99f~ii~9n2k}Pk5JfJX(q1l>X?*qK@Pmw7REsG<~KO`@Ec* zF8N6OqewX&gETXs--^kazW|15hLAvBjIMK)x83s=4OF>h;c|>4xT!*03uNM!@=q_j zZ>Kwh9A!4v5G(lxPmPb6KiBHFnA8nh$~%5VS?H%^XA?1~{SW-vzrZeWmM69ivDENi z$ZwM~1h$dX0C@2#vG3L;(0$R_36uQ{s-L5dis)w!4%>y%sJon> zi-l$F_3eE%6Awb-r)tFkcPLZ9ia-$9in3$0mCytv~iGP)O`CAnNrtml_`}+G%>#3?@R>MclBSAF1{X7}_C@y!jP*SNB@l z_I;4j^#XZ#_p{;ab?NZar$PQexQnriW`F=`33U(Lx#!o>Ts4sEWZUaDeP|e(PyFTN z8l@fXE9HD?oZ21znK1XlTCjSD&i7)ood4D;=&6f1Aq32-fQ}N`!gcfqhGq| zK6B+L^D%o6f(9}#bzY-TvbP2%=N^^KP0On-AOHM-Afk8ue-te$%NM|9FY|ju3mu z8MbtnV-xgzd*5h(RDDBr>Kooal|ci1&_aOKd2vvq=uEZ3JZ?8mg_L_e;T<{=gsE&Uy8AJVh!s4IrFB3wjU$mOs&s8RP@-t>Ys>AX zhlt|c_a9UrFQ#??FVmyd6NoaORe2it5x?0Sir%$rWxE7vnk@ojX)m=FCv40M?n^Xa55rF(Vcjuftan=jUs3wnc6Ki$LIV zwM$kQ!cB zC8Pq!|Ahs`FdJG8KybN!TV?n>)yH13AC9@jV5qsD#~O~pK;AOTZ%HpY7qng$;Zwb{ z=F_N=qp3+6OUlp(_C5_pw6ohPT93g`)OYxyYzw&Me6=`vB$Ky=$P{cG1Y3uCZv|u) zLLIZ}zla0#1MJ;(7%#E3FE#8ce`lxt?O&L>LB5Z`DIf<1O8HCVOBCn?axKL;g7&O<$r z2$%`d9RuFu?O({Ri*u3O&|!Hbj|RJvuJ6qBuGVE2b}M#jz3nCA^b;&LLIGy?K4M4GtO33XcFhtjgu# zs>kkn#pZ}N{*>d~ZP^q090wgy|1ojlwd_Wx-$uvj96xZg7;)y8UkYJms`@t4USy!M zI1?zd`C!HK3+}Rx-HqS7gn_dwXnOe|zXC|?j^=i`?X@fR*olH*+RwRG8ANw95MCTy2CPs4PcMzglE3so z8ES)l#Fmzy=1oKkc}T~|9$3%Hh(nxT2|M2@;yah*8z&cR!BW8~POR-)fnHr{vz41!efAa6-#(U+;sY4wR|Gnn6qXdA7bpP1E)j; zG}MgskK;MC`)RNICm#1ghX!M`8$Q?79^3g3d%M?nDdTj|Cx=8>N4)r>mcz+iAA+A} zH`6e4tv*@}QkW^jVI#)bY`oSTc&^maVUk{FILdi$ZhwEJX1H%_$X8zD(a)9s77C@K zVqT&j>t_HNmlB-EM}9E+zjpdAYOvz!)F!g7Kwe_0Q=jQun%%B}I_pi>iZBl(E^BhV zvBS`($$oiSqZ#=Q)@Jd2kZ+KKha9tZ;5V|v41Zid;PBkR!Fc_e$3?y@BovXl? zi$m*L$+M3NoDgS?dH)x7ffieZ8|DQ^HoE~5_m+YaBxF02+1C4y<@jU+aNSww05K$k zzS%wTJ;DrNdnlx<>1*?ovKiT6h|T`NCY07I6Pl(>wL|Bj^)G;bP4%EVWLQfmUutSzW>(S1TL(K6%TA%NTqs=k}U5fuA0}+VXqp?RgUHZW(71GJwdgK zAs^sPGaBt3o}Z&gyTl)*O@^)4!OX1?+RX1w9iOv{bkmYn@F&&*d_n2Iy@5uBf~W%E zj^AgR*EG*^$mPPI*Cp?g1o~4_+nLeQ?Vxnmc{kf$12Z>>&3)~)jo`8QEA?wGB6*7< zLFp!+D5kUQ6v&!rWL8e@WZmhvy`C)=NX+hui2-xGV7rjqj-TSZ-M7W#kd-%*%T3Ea zM%EyA;zt*Ekr$LIFw)G|1%KjK7dWS2`|*OE?73-JX<)~)nQTfzV*6&lAvMGe`JDZEc5nYB!aM* zLIn+0Wd7!C9;STS%$cjXNlF>2$+LeM{6{+I3??GYp8%1b=-ExL7mKQ^qvSu(Ligan zkK%lGo0NjTPNVC}^-w*KPr*2h=wCJcW7FBvIwkA)E5`j`8CfNxSIW!MJ%%UI`>kcm zI0u6wZ3WKfZJqeMEh;*?eJQYZk}xAv%DXhhUq2{gba&4(?EZGTbXVVVq~Wi|7OSf5 zk=DE25V{u)IGdXVK243Uo;i3>`n9M^cs8{r?=ROv7k_&239~gQkz#gj{8Z@)_@K@S zY8^&{o0#~6-w8S^sWZTbzJT#GX4=Fphe}XSo~}s$dCZS?Lms9-bI-Hy3<7M*Vw<;y zo0w>aY1Hdh5Clc=H{rYXufFDTaYHYvM!v$nVXCjcPbSU>_J+^rd};GbLAK6YRsk46 zazNP|6>mhzd^M8q&{AGWJX|{WHkD%I9Ng5Yhl)YnZ`ry;x9G7HK7;%jg9duw<#up*2Mk0jr+OeN4->*xOjewshO_cCg|%TzFn(V-vNjiI&XXzamGkIe|2 z?2k{B#k$x&un~WU$l?3#c(DKTZ9axc{}ov zWye2nO6FTb=^&I_8wjqLwTzNQ2Vcy#IuY$>#>}3Ra8D@mv#-Kf>k(`BdkF4 z;~TY}xsK^^$OFMIkBC@V2FeT~B6pS^(!h54;?y;#gY;l=pfK9ZWE#?$AM4+VcT6BNQ)n^}1}Nb~twQK_?-HqC2LkM~l-zV{W6 z^P<_V$dWmw>SyNPaD`?K*0t7^`dwRO6Ivq{12ckg$%C8ez|cAOafD;*6B?>pzTcxL zl9&u=^%7D4phck$Ivms37uI(w;mh!0l2+ddewoLu4LdrZ6(Ld$;3{q-Mr9p-93nOU zRAxbzv+MaaiE5yiefIoV{+?Ao3?vZET}jA2KOyJ)q?{vmT2|f{cOX3BHDJOdid{Dz z@@l6-f!u?L5`LNW)C?rMC%~Wk#CkJQrqxAjdK7YcT=kZuMp?hVjdTTwkqp2-)SOa} zuhZ$z7=J&lFi=XU-!$48#9bMyTulA`9)zl>mmy&rO4cnUDyEhmpaNK+jU4!vi7xWYBOY2clv5) zzHx4_clgfsp&G>}*2%SVtOO%Lu$d70#B`_8qaaKM>~u@L(BJP4jPrOeiCCid?|5j6 zGhdmSxNOkEJ-BdcnRSur8JeVek@)S~_Xg!`V}@f zVrnPiHAmYD1qV5mi4|M#D(g$um^qx`-L4Xg!MIA%?vT}2_d>P7y4==_{%rrd6%|j# zW~hx)74-JLPZOS9{}O!B2N9Z<5=+o~0BPu3u?;Zq;;ue!^ml}}@2xk+Hy1r0b+rOD z*ROCY<%_rK#+hfWs3$os9v+{%@DiP(jE3A@JRSW>HLiRV;*cZJ)@ykMUn@eI|5Zd* zLYX7!L7mcr#w{0CLEe@hKM!U!Llr**(jx<$|Nd3;k?5LJ>5(1*T{V;Aq}1Nc1aU!y zackS))wnUH83lP6^bX-Z*Hiy)rDm@(eXPd#!JImX{z!~Ts2nzWiVAiWT7~RX3?9of zz6%*?S%rKATIHN$S@u}M5aCB^jx`_A23HC5{J+V>Hnu?_9<1mcf#zRJ@�U10OsJ={`w!aaC@|ZH?iC3=6|B%&}qf8s4Rm zTIr*HbD2`>5^`AXZ>kLD`K5^-DGuV)F3KS;kQ`7Gw(#7(`*3&iR{*i7MUdEra&3t| zG77>J*uTUf#v~OHehX6RT4%Pad*IJ7>}Kd0cE+_d?%l;Cx58Whqv%W=ng0JcUMZ4q zR1y-aBudOtxvi2^%908>CW<7jkz?#AlH8#}&M1;&M7hm)>S3X z_%_^Rdf>NIpc)eS=DBMg_6l0mirx3{%a7mo0$<~;x6d!s2!1TouCjQb(e*Dh3&(+C z(QTs^YZaT!E$N3~cXcNJO(pOAW0is6C6`H62bsz@sR_RiO8nyWg8r>bFV;Oif@TyY z_Y2EjvFzuCe*e}~k_eC?y@-vN)Jp>B&u8Sa+>*x~*G;y^G|ud9-{xy8EY+rpyV%0a z=!+Yxr}bUW4-5~<{QSNK{ZRj0zw~*=S!^$CIO~En)2HjtZ|R>j!h@XcvKFyL=|sqf zQS=E^AU#hiA&e8y4m8xK@n|43e1o9!KbRKLXiac$#DUx=I$NeX6(qjqT^MV}(#H>9 ztJ`?gA!UBE&ewF!|DfrM0@P3c8HXmS7ObpQL0;3eWXPt4d^#k(i{0X+iXgTCk8@vd zN_4Br^*uMu+l<^CSV<5yJbiUt>52LI+8@HIkCs2PZ8la)G!PEUUq@VyRzJLqRAUwd zw|%0hDL~A>aGB~7h3q_0?XyeNa*$N0^;MgW1+904;cfZv6O1f31FJ>kyiK@0d1IcS z2E96enD`VL_tDS=WiWTSIy@w;?f(0$K%rAR?x~OUxl3lzTc=O&!zH#=oS$N6H$SEO zTo~8;h_P(cqZE}xo*xvZR}FPAHT62yD@CJ_{Mh~jo&&~P5N4&4(WfHKMfA#8iyeX|y4dptfSt#?UMCQ!XIE(Ydq1t?;X+yo3 zrqC5j%I=urkNLU8rWTcgj%=C-oUo{zxtx`YoH|^IY=@suq7KLUaUXXSfb+9`HOPX< zWw3D=+#c6ln|u3_%&X~M^1>od5)kwtg>t^*D_&Z(p52Cxc4mX1Nf$jg&?_?<265dl zf)x6G-}<^$R8W}eTK9WUuWj-pgmp*Ax+zqgYNwwrJG$`LN!AqyKi?EA6V6!E>h{S+ zcoFLlx0Bm$|E`CQJ^jDX)mG~%LlQVMTd6yf-Gvkz>Nq*9cMY)C>M4-OrSDpRPI`xt zbO#C(6iFp7E${|5tGR?2QPH`DUrCib%pB|ZB(Ar#TZQU)bQ$uw{^GwQqF9niBiN|o z5M!o(#G*7&zT}|b{G$>7l{?gfpg$b%x9B^6BB&FM4=kf%_~1E!z;&iDCEhb@rft-l z*y^L-k+C_RWtyAQ8_(JHh7Vv(^Oi)~66jL&VZi|5kqOr5r$q<{lP| z+s!4!{rB;>j1dV@@Q&k0z0L^|OgThWYs~wFr_U0iM$157Px0~iW7X)Z{+!S_$Leib zFy9eRq$%0s-wIf1??C{QROZ7*iIo@i5Vu1cow9Z?2;oXjsLi8|@_A%^V2%&gBt#x-I$p?V1Ll$XLJkN=iV$b`?cuY1@);%p4xwu_+$9XUBm=W zv#V1Q#df^olbZA1d{G%d>daC@g@8urk#( zOeS%I-_x5SqFRVn=3W8`&i&udHd|f80b?(`P~ApjKB=!R(_3o;byQA#3fSs+DSDn| zrLwJqHx){=>HrH21t3()%M9zYDN05U!9O6xyEpwSv@;q%p=KNTDv@2|D0`dl+GVuK zJ!kc7K;k&5{uV=~L9<}qGYL&Q57&5DX5)DlZ=rcr6zn|#j9uKsbm~ig2>AJ1s@VR> zeqN-@Bw3N(3wUsczZC-IJ~B7S%_aF;4dGA2#8l5nOekWsV6WV9iS@Qo^1-P%*{q&x z2&&ksl^~&zHF^lqIAZUGuXPQFk^2(H$wMIYyK#b5C@#oUrJ4E?phG*|nC)``ZnFNE zKae$CiKd4VWYAdicph0_$j8W!l#EPX6PTueTvOJ}G}fg!HtlYsg@a2gnvySq*Fd>?~9M2RfBtThP$oU7r(E z$+&4o^CbB!3lgJ8e_-x^nJmX@UllXRxCc3ptT$z_qX=!2%G63C;Ca%fUBMabX9*aeK41I1b;iq z;zH-Y&Yu9A;Gi~OI-h#NFM{4rM|aws9Shj$8WI~W1Oq(CrS*@cEDu4Nlb z>5MldoGrxH0+j*$QPtQ^CSdO>XK&yIhUgM6=b2DGYQ{)LuE4xHg&3f=Mw8|;5SxTG zQfTAnAM=jpgx0M~8w=YXPoz-4LAEMwTx%=l55^E<-KYn@vI#ZBCKot?tl=6jZ+#&MVgcL?;h?Ctej)U9u;^ zT0nIj;JRvZmuw&Ga|&~b zzmYd$_(UJW-DVk^U0zWvi~r?_b|JlfHX{GF>b0pJ*Yr;n>8ti5v+yS$W3o?(f*0=H z2YU$XC_XCz=@DKTaQevj^Y$(a?gjWtX%T$T)8(s#11`#R>CAW7^pAI}%Am*C5Uan# ztbQ`Lq&`$?*kMEU4)yICTEx2>pyR+S+ddU6R~mjX=qZwdsNd_XQ`#Vl#4YI@C$(wScAd zI7*&Xg*iXHsrvd@3io}zrS(&*x?8*vLpdg^%*wKHZ!G+KYFL$^o9jJBPD|I_2hODB zTvt{sB%6i%@xUXk5$OKE!cQ@QDI1lPGV|9ssXdjK%P%rGh{pwdyVF_{u^@ z*5N0pK;%|lE^w*l2XwDY79ZjW*`2+>)sGAOE>5a=h9l417S5g7tddb9h*7E}0T#3H zjfe+NGHKczEX&N<0N*KM{eC=iS*g??`8VLP^46V04qj!4bv`rVMjpMyv;;1E&xmww zRQ2h^S)09riU@^OINJqd8Qmn->r?K#1%=uxPj)8!1oYG{9jCUKuh`q4vFf`q|z7a;47le0rIKpDjpBXMF6{Q{-@MKk}{bPU`X7|yh0%$i@58FT5zg(OyZdxic- zvArVKH+4hxjjesP&EdDojXWQkdht2Po#sn=i){H)w<-FS7kesh*7*eaBkBJ2HV&A0 ztZVxHkJ%HMKu6BCG_UU|S3t1FzJN2=@q>#4kl*_&t*u=iv4F_ErNgfIfa9?&s!Sn4 zg~apCopw$NAxIRBYxS9@ z7XM)W`So#sQo zqoYKPVeRY2AK>GHVAG?5zE~?Qa6@AKrFTf|+0Gj(p1_sJ7K@V`o&~Qqc_t@1y}$qP zLidGK$eoY~LDZLm7&%i(Rq>|KkdxGG0OQ8&If0(mk52nGqyS_W|NN$)3^YJ|!4NxLsbfZow+wPvTxfZ~Q7Dha}w+mTHX{h$9UE<+ zNXoQ*xr$N8T>blYhe-D$mlEFp+=;F`C~q%qr5RwI9Zbsnd0vfnh76^pXsSDF)+>HIQ|Yh28^X%^eiW^ zwl32#D;0$X`xk3Z2kiKcvha?_$r$y2*It;{TB$w7n$Z}Wi*iSfs>2$B^s~rnGT$|= z?p&ts<0e1wpV>x;&OL17S!Y@!&#mq6n}U%ay9BIQ3fB~%{mrD5`tXpcJCgwp<3piR zfxE~ryY5RGb>o6Sl--|u#yJG0sS~CsS_Abo{LHx+E~wGxZK-u+zw$)5drj_Nul>eRB& zo`7D9cq08IQ=V5us!F4nF>Rw{<=~h2YDFAD8?ZM7!=-@EvdpLYa-t(N0A$d&Nu(N} zo0PcnliS@6Ri$ z;5g%T=`boY+|Rb6#(PR^dY%f+QyEXgEx93l4-q9##gD~W<$!Rb*6r9#Hg*36^OFsx zM;X;>rHO%X$E+?Wdgr-Nhj(?E$xIGIaW1M*L;+)`n8duw!X0uZU+A#=nh|*?RFsD5HL&XI+<} zE_qLHEnO)qhY)o)^3r_K(T%Olf1vd@&U1n+foDua!9BiB*o(#j+Wx)}D@z~OlpN0A zh?JHCAGf{Q(GqE(%$uU>6nMWhH=@<3G;hhi^e=qVY{l&IV%-KYk8TO48jBG*X#opS-bgI1=-)!wQevzo!7wnjb zdynrlgkmBPiv(PCx4I%|>JxKfr3hv3q~GNsRB*c&H0fA$7dUo;-9DCAFH$2fw`@l8 z-}8*Uar;L)Li9chA9VshNSVb2gL12mu}og<8NOQ8CJQ=#j}`$Vd7g z|FW#ehTGei6L^=EWnHM%?1Wb#TC1JjrD_O5$*@eK3JEWf>q+{zZ$kqJ zlWSRn>ZvVEAR#t0+tIMs1h3tVF@tXd3zJ8tY9Y5|nNr6hdyP;&cX7b$!nVN?^rT-# z64fT#`XiTybYvrq1%l2O-=gw`n%wmV9a^T_K@gX##o~f%l;*YHhk%!a9BLW_wkz=S zr#+9XhE5M^%SEh}19ydvzBPNYT0{~N!q!TlP11J16jm>ldQM;i_pu^7n^CM5znqvQ zXcVKU!PW3~eWDZ_W*!L6r-}N&!Fp}r;{nSW1#E@s^Nj0{!%w zz7Oq~)sxjAT-%n){-u-Rs@-V#ru&ztxCG&vsh_GH2P<4Uv)n~Mj%?vc5=(hK)Lf`2 zUj;lavcbOZ2)1+yb`UR!8xsvLs@@mjbyR(kGj7h6iePKklNQ0bNy!{4w!B*+O$BuY0u?W~sr<(O`Kmj<}zmGRcK zDF!NXB4N^2r7Lk2sJ(7PmTbiBzA5}U@=%6=@}Zhn+vC&(nq z6v8B1AetzcK<_o>9ED1)Z+$ShGT5ypu&eWH13-0jO7V?qu!zH zi*c;Uyb*(yA=kPjZujmbtww5BUc+m@(F+}O4D)OMEtDz6#t7vY;dyG5ENB>N_MBM5 z@nVC;w8I8l5h+QL+tkLG@D=AhQ0tK?lvu<~~ONFK!dXiKQ^d6`G;`dStfB8umU z>A=z(du7hI(^o)5jzs3e2%Yh?u@j~hr;dg!dTCv$KKq);qikQ(k97owJ659*3sx2m zjet^2wbB$;`;}0NiKk>#qs5#>JrNf-sbW)`ZNfn%7&39UGgdI^aiVzUz&P5dRGB~D zSuXIYR%un(;3zm&-ueyN^S@pbP&`A^>^^G~fb5F08j05|f%gvh(7v)NIJiiJ<5MYxMo`>QpO1#31-xo)z_&dublz=M6E4Ow?SH*-(w$12p`lnXuwTEcx_ z3Wtcn!akYTSHnjPX7(reWucDtgU`=D7AB7I)6l_aweAm-@ka zQWf9%NnY^J>2+YVtz|0ovM_$JEPUcYGBoe(yyGsc9%SBsll|H?X-of!qt_?8Q3_3f z(0UUUGhj2=`Nk5`!p2vnt&JU=LV+enE99sCbXVj3_pKc^4Wr)+Rn6`U`Or{1TmQ(V zJd>(N>x>A-Z}|oH|BkDsrnkbTQ{)8(HM_Z;VGvl>+M%^=na6p-=Opz5)^&<-t;+O| z;|{=kP8|VjJJ!5a7As~*#zqnJ!=o>LuswufjqD6}gOrfWYlqk7(iPYnCk6Rrg%nty zJJ`!LVx-`((R81WJ1TzU%`3oLmjME!);&_bF6+6EwHEVC3H;uka!}*RKXwp_4z0&o zEsV19tIkdSvMRYQjmm59sh3n}4gH+zryaJC#h?rc$@2ZsMH%MQr-AjrL#B_ zFY~Bze}}BsgGUW^eI9ZTa?SfCC3MWQ806y_1cAnS9=q98Aw`L?{%;{wCUc8&N4kZX zDC36L)>CA7_4pft7R7ZOb}~xptSmaR#qy#(&@FrSGsp$oQF|W%Eu!dyhx^&f_`(K- zC562;i?pH-PBxYA5PC%>e}12tDCOlucV9S8Jys-L<3V-nI?>*Gf=u#}H3ma?x0i$= z>0p?!?o8941&bfqXBCYh5YbK+XhLzSH)bcVa~=)^Hw9unn&#ADBBKb{j4bq#$O@i^ zhVbjt2$xO5M*zvelQES0=-9SqNh~ZWf;}-J;VnuE$(|oSh<7z2)W=hB1)Em;Aiqgg zH%*Iag?mM1ZO#5z;aLpU>$`i(76hx!xV$|PQImOZEiojn!#ff5B>jjmQuo&U9&Z9X zhV|CJCOp<_rH3@{HGB2sp@YQ4v9l<@Ewe;w!hqze+F~3!r>! zvSfqom>qKW{57#B2dfmTW$8Z*xRmHn_GaoCE?RFsltm-g+ zve^kkyF53sw=G5Nq}-=T7AFLP78Jv$7ES>F8MrCGl5gMI4`^fE9wXGQw$&4FcWgV_ zXgkK?ec<^1OVr)Y0NuKzjp^|8*J_wK!J*K3(PzW~5!%9~OH%G+IeJ0nhe&Bk9M(Rg z>46?m%&;#35WUGm(Bxe;r(n8#oo-vh#@~`egh3Mar&@d`UIv}WIu%duiKJNf$Ge%G z?Qv`m{7JmSPd|yff%wRov33f+@)qs9dghRXI_mJ8oI?E#W%VTB2_kDB(YG7)&Hnqe zIxJP3RNXW(9eu1Is8s}uJDy;FL5Qv85ISDC2O%)k;Dc5rp|ngF$X%4lZnzD^@m?ae zvX_0Hox~`+F%b=HLP&>6`tQAmizsqM|_E*t%zu9BjG1Lc-tLfz!CY<6NgSwnvA_ z-e}Q7QsA5_v?oxh3KHkxfrwD_`djPHJ=GKE@~_nF?nrQy;s^g-TWRFJz%iT4ja9%F z#QaQiu;8JBOdwbOFH19mI-hL=Hxg&OCn|3AG10G4gDW2i&wiQduE%Xn0Mg|BBC51D zySsLNFmUFbK(`%!oiX@KVY8~vN-XAcm?_;>dnt6k(=H$6j;;A?UeAHfQ4ITw?ORg$ z774}oW!S)?IUzG>uBOEG4WiBaewwQAA^Xafy_T+ z-|7_Zf`?h{yDbHFr?Efy7Yb6itEXD;X0m;m>;NHuH`5k@COkukMyz_yz!geEiXjlm z@#VMyu!lCWzDs$D{SfV({js;7|DqByflS4Q2k2}gC@f6G(SCOzts-VZYtZ%B9oHbc zIzX?fio64Nl)|XWx;r->AspQ{4lR)zr=QA;#4E?cT#jz-EuYE%kJMtZ=QY7>$EqP{ zq?F6py5g5Byze?Yvz-Y>XwQDw?wylCaYV4zF7pBpbi(ZuCSS~7A+BeQpf@jNO({#k z*L)|jc=KH~^ghq72-~{XHH5b=1zTwk;^cU>T`oyg+Vs{#GMe;@g-6WKBoe;~H5ueh zoC9wCTzK3y395@8SP!LDoktNm=4`FYXy$#1F-jE5?EIdICDRT@ zXZRb;Or${KGm*cZ@D-g9_g&dXHY=TWY!UmuSpnGWeBTiD(sXv7EprJqP&#j749Mp% z5`&(_!<$2QEv3E{ef5nL^wZBbT1=dqT$?|8mh!x9U$NbvLQbO)UJY#vFjYs%HA0>v z;2Ulqzw;m5^&P+P9LJaz8RH4CAjd!IB*4^}iK;k#qmKybsT2J{TMSLpZQ0{0=*&{e zJ7sF!%e~_Shx+l~iJUB97AGG2{8brYUQ`$FhX0ik@*21EB6GGrFTt&@-DScR$MhU9 zXoA@6WT@q!pM%1LukW6avF7&R%Btd4R18dURC3Mu^IE8{Y(InDUW;Vx#zWT?j$!aSs24O8c{rP}M%yKu zKGjk4mTHEUX5#lr!L79cZh<^>*SUM;-`$}y)c<%lD}ZhZ%cgtR?!l#3FP7pb&>j+h zRP$Se2NB13k&$^wJN3L7|GrD;V9Y`8I1+M2#Q|QZ%e+z<`Vus$KfnLEQqgg*Z<`i8 znbKHz4foJ?QnM9hWC6yO722V%Gb zlzP+>lEv!EgN?ococ?oSb2n6Sa;kSw_}BCl@)*Oc+vnLzg8oyelVzPyC5x@W*3WVb zCT-r{r1sV3PZA^0&!4D_IbxG3`V{gnLdST%DLl>ZMpVmLKuz9L49c+WPkSzyJ%cqiajAZf1fv~~Osz1%D@&d&QhP~XV)RH%L45JLgx>nAj9kQdd{B8OYA zZ$wyKZ>$)xo2{p0_XVpjYI374#xuZa1rwi9q+Oc;;C!IeBm|=V*}}OpiOmb8Wpa-UUPHuD!yaMx?euv+*QVJ%*`FnlFt<`Fa9@pQ6W%AYvOK_chu}d+-U#n=u)*aG zr781+!n++&pN`{x(7s6G+LK9J8o+@5R4o`B3cP`-XDVy~jM6U1m!6-F^V(?{eb(XpA{U|hIwLL7@_ zTdWR06nG2QYA~FI87}hIq&U~Y`;jPhVJoPR@yYPCFMpUNUibNgu_fBeOt*^m8P+hC zUKDs#iIL-L_Ik8S)gYD<9YdKBABzB7=cmyN1B`Gt%rc*EaRDt;-IR}Y-y1XJe0@a| zoWYRCRXkAi%xGW?{i*kqY>_`+4IO5+TCu6V7wlH*t;iM&=Z2Tq2G(h&b`vzXV&Bc* z%&x5*-Y1;u>aEUfTgMwJn>83rVHL|xEmZ25Ws*nK$9i9|&-r4GefWd$`t4-64BneJ z?NML4&bHwqIid!$>x;x!FH0sYmm&}1m4IvdEsUoF+4-^&5?1_>yD1kpZm)P9qmEX; zX#17fq9K8=I2n@=#KnG($AH(!r4Abt_PFHJpEKkObBYXz1DzH9T=x5_SCFgItz!%C zBda-T^Z7RTE7Qa>HcYT>pZmxlOz_)32?utsdicV0z)+ubCSrE_!RW?cN6NnfJB> zIkE2APu{bb#hMSZ;0xlbW_XRU^4=KY`hw9f;(n1N^7ssZsTY-S2pzX}<^?G8q9ZTPo66Pn%zzKj3Jm3^@SI)whD z@+`JUKNvk;@e}E|nApVlwgA&I;ROsmScUUtnqIkPqFaS4Tw{ZlV+DJ zM^WH-RNyka)Y)hX^eAqp1lfW0XFEr;PlMS{&8aT~>u?0Nk%5ve(m0TkPQwk>fR{_9+a7hUaO8@Gf@!UYtSV5jKjJZZ-TpK z@Z*j$A-hO{5Rb7m7jYx!&`*4DquaYB&3z*Ovi+qphu>sSRj$CXT9k=JjokHS)CNFkQVB2N5s+G^S$(2iP7c-4^v8KR!1Psj`I(>_CbO~h+@4o>#Q$5QtUJE z7V)CoaC^68I5oB6gfZUFz-Lhw z2P@k$m)C%2H3AN7IxKazdbVgEsXDxMf7sPy=C!q&oNL4T8)Zey(i8tG7YrK%B{#}W zQs2&Cgz>)=-7zWfnTDq7U8FiAvC!;_N8iH!QQ*cJuns}q13wh>-U%0d0=AaC2-rB!arrBnw z#$RdRQC+Oh7 zy>WDfaV3OK8@fYbI*iTiziR%h43w2zyL+pr@oqI%6O7+J>M(@ATR*dWEepdp zm6*u1e79q^9R8$#z2$&*^4ayPR$wG%8)QPe+1MY_d$5w4GH3kY1AI60k<5tAuXy65s$%Y%`Q#@B zFR00NY>VEcywf1iC8oZpP62|2rw_%S-UqbOUYXewEc!`$^0D@7-uMQZhQ>b@&~U*s zFSnN}gN+wHksJO}N6?wZfO|R9*zF`y!!q=Y)t2MRxrdbW5Dl4Nyx5o*>PC0f8{H9! z3{rxW9#kWXjBGYsj)^&JQU(j(Qf^3B|GafZKcL* z&icD*_3|=X4QWT3_)oU&QNCJ>p|4DvnQy0Lb+SV|x+#R+49IK&qf$iY3}>Wxm7#u! zvDu9xyFbos!t0%jXZC#og`Qq}_K!dhdh{VAd1P)V#1=RI=kkaeF6T)3Kge@(F;nK> z?TQf4kH=fY&9j&Gb<*o z;P`l?V`!K`gtF+s_c|OHVY$@3eN2D3sNx zZyl?}Cw?}jJ87YM($lUMIz1f=J$_SIQy)qCE(QEWx@?X5eF1Hcr#>1B_{fdi$nu?l z{JfJ;xZB7jp&+{j$g~jYh_@RTC;)vpcC_^+g5+h?>u^@}pJi^SouNt?8{1 z8P{+8=}%J$j9^J&f;eB;*)9!6=14N%9T}0I|A$lVOa55BmGsd+x!@=93JEfI@B>VZ z8%YEARwuHyl`uq`KP7_p=mvAU1(xRs@hyP&%MzT-RUHB?RF5PSpgePz07Jk9q11%5 z<_JFsDTZa7T2CMa`Zp#dQ;o6&i@qwDzvRr5+Vc#&C+O%cGuWwY*;$s-Dv%P4onEyX zjxvJdpB08i@m3%-fwmrsEWMHvUW1gW5<^hGAhIR5U%L>6D=v5KbN4ar=j1@v)4kQt zyY0P>)!?J(CjxTNO9qAH|9B_db?GHaN;w_ddeR;uuvU z7)apF1~jC@YJ_7mN>pj~uUv`sI1@+q)(Y}BWuQk-2e!kx2Bs)=1`Cv9=B|XLUSUPA_~`n*DK#JoVyzFcfteXA@vw<# zEUeN^B8-yc;Fc~{5s<6F zxah-VCBVWv2Pr^w07@3#9DP^j1}WiPCHgJy9wvoB3cXohLc4uR4{a7LD!PcRqSk7l&d_I|0aEa^3kl;$S00{9Db?6J!RR- z=!5BNAH(%dJy+z;1!tKx6Ny6gtFiY6Z#3wKt)&^W*k5Ub&qx<^6eK{2RJq4!m?ZVY z_&(4SH=M;`3W z1^AS2T4&91Y5EMnvq8Ye7P{>h%1!&M@i0G82y1Hb7#KvW$NT`;92O~blK+dZXgQW* z;|fY8F8Z!xx)|FmOZ-mcE4RbJj6A6~^5}_UBZY-Ja;8jt&uqiE=SlQ-eSc*1=ELX^ z#mG9hy3Lm(G2mx!L*(-ob5NZo0^0LQ&IuvOkO=frWL#-Kw&e3?Ch(8gv(}k*nSd! z(oJ9ppFPj5P?E)^pq(I*-bf^bb#A36LFL_=Tm&s64I6m5fxR_zWr~qxl4o;YdL#`x zeD0O=)QB=!t5&v?xbb$S#|QfRKP1S5Mjr?o3M~f`;%e0Iqqh{e z%Y--CLltp!z?3bfnWwjM!LUkSBs?|$E;;@L%AoPsigrN4HRm!QVE%dr^n~;&KmGoo zTV7^`K?e<1O~QlGE`>Lp+ zLGx?(>#cHBR^V!XElhU1b_7X&n-z)M=$HCy5%0RT^Pb*koDJC55Uc8kRP5)f#OlvP zP*Wko2uD|@-@f&PZjN3Q?M4lr8&)&Ees_cvkfB=NP@I`uV&6`uqO6?CqRF?BLI9&Hg&<_Nhu2=-ZtDGezxPH+gm>UZSAN5;U`&2r%fVw+}tD zB2qS?DNOpF!vpzB&<0lVi%mwq&DPlQN3K$jBB$y=@?B-UzX z*?{Vs0W&Qb6}p$^*$rJQ585jt-yPeZ@ecJ!Bnk7FjHz+J#R>9s;Fpi?n%Qy)+ECc| zZyG4?o*Ce-SQ&Ju6J}-ZRwl{fq1-a-=2Agn?K=JSgWGt1TPsSNv~y5c0Cn0I)&ToN zq#vdD!tfh-H<#Mo$Eq;1LWAhD0XM}Geg-`A9d<~#U*}ZfWb!2-v{l#KuEi0G5&P3% zrGPd&K)ej><1&l$JYob3*@^b*DRwKfmJ_y}9g4UuVYvWsaC#12RBL*Q;x## z&cTYWWRSFy@GeUCunnUp#oRV(^ebPLBR}2 zi!>9^R~jet9k81YTqVEc><7Us`MTgw{PUhO@PDAccftQcGFO3?=r<#IK^tagb<8Wx z`1`qw;VYt9(NGm#H2v2Q&ySs|y<~z2Z5$%{%+fP9hh%VX2)9JZ6G<#W~9qH~KktZcd@@vKyEriB9` zKy&fy$Z^uoCizqh5`0PeeQop>`5Lmv(W6HD9MRae>hQw(F;V*_weD)ON6iN#-7B6M~4^;*@z>wX_%-zMJ;cTYJLmH!QL)@rEal-*go+L@9o zY8TXQSQY^E68{^@JoIPZ*WT;rlPHIu+|#@MZfYU)FK-J^z&*^=*H?S7o*}?d%Gv+O z5U&>k%gs&w$g=WXbE7U7NCT?r(_VJWyYzEc$*zI`LRFGANsAD?Ihv zbyrx92}c@Mv5@_R643}-_uD!~hUfuuFPt5yy1yyPQRh9beq)NR(iXgl90YK-X^Dy= z(=23CNE2^~;tFPcMd?2VJQIi`r|P6mYb9>!38d513&}%~ff9n^@UU)N_BGMVe&AQ? z>XAXh3|+kycnw5S?7o)mSOv4>#`l^6xehvlUEE>UU4WrsQVdia``CGyCJ%}*MW}$L zzAP^h+hF;JM6iM3B=t063BR*3`|-yGkfP_xHtZPRBQq9qf|OM8nOiPDKp4d~B*So? zjYDYjffP9H{6-fU&;+`Ts^=N{S@QO78?x^39E{JH5*X!5zdl%Z{*u0cLB_hBvRh1J zf9*O0ZJK+BTHJm15jd*;rB(Dyn!PQTFZZsk^!>TR$kUok(>yS|x@zgN5qS_&R=SGy zk&kk%sD87`TfbMX4#L282L75($v(mDAE6IH$`%8+rmeFQsUXq)8sXxg*Lk0ToM!*H z<+@`HR~8r6rIriuJF)&sEXF<7+^4RzTYRhW+ya9)K;kaa`;BHFXQy#}#*m5BR+Uny z$OFEf$d<7Hb_hZ7D4N_8!J?Te<@A; zmqprK4;zW*CEZ^(`o>)${l%fDLy%|vEITyMUuErqR-0mqvzMm?8QT@;ryl~8&hzXb ze;F^16YM#q83mAj{@z};__b~d-mu2CBy;vHDoojFZ@wRvRS@fZwpwC~!3y1IkR9G_ z@O%Ho^vaF8)jS3AyUg7_z>&tL@`ZY8RmOYl9is3{%2$|=au8RSv!(x&aQ~c+AnWJ2 zcjM=oapJ8(pZe3qRtri4rf1eZ7zF4CT=HKAhWvZ6nb8{C_`Cmfq3nLhsinnM zi+{A>JTRiivm@xaZyv7R39?$#Mc5qpxDIHN$Y1&@c^4lD{mI7B<&JLsi6-;Zc>0WEx%S=JOn%0`Prvk}q*w2iTL{xh) zIV|0B9V)QaRT;LV71R9${|e`ERGQ#+n`RpZ%{<8YE+K|(Su$@JHI)U z$fHMU>Qj)ROO9dx_Fr9R8{c993jQo<&FSVs7Do>8a{OIZAkf2RXX@^34rVM*B{l(OR)v!q`W@_=qU0Tk1`ux+%-u3bL)+0 z>A%4#)T;q0K$6IgVcZ;}l1NE(;mB3W*jH&S*3R58W87OY2- z7%S9bz(SJTR+3MqIL(~eFfRPrH>_3_eGD2bFZ>Z7Rwy4+53#ddht!?_M-!2rCkNa3 zS<^+k3wqcjExFMAoEXlDAwUb@Yk(U4&f0HzR|EbwoBP2SitsRnZVHbfK5;PtcbneD zM=WifWM^hyOc$#DB|oU-wC6(Xwg(j9hugvp*%7bG{tE+{VcDqN8$~Lp^%Bk*uQJi} ztr^+`cs~|7>&3UGX;pji-Q2FJ!W*Lp$CsT_)U##rJ1}!;94|20Ux`sO`o#6!RJqXg z6Wj7n4}YIbB3!Zip3Lw0Te_!$m*)fH19Gv9{0b*zcwgcMD$aCq7g1q>&}g03m|6f4cI36&?- z>2wM4BbD1?`jCp^x~98@szJj`5)LV3u)xx7FCrj$R-z`EaX}APk3Mo#L5K*tbxU~E zD8O(dw}jtcO#g-A5zg>zNV{mVHCc#gPTj9B-MqZWDA&(57GpsitKfSoM?lc0%BE2z zk3pKNVxm!7LW(~!vi>1}_l27i7rB}^0A@=qXD>;AB@~X?vDyGX;B8AOD6`GHn>*e;-XNMJ4Q&AUF#YDIr%_R2h z0{kZF*5=`V=!_K6r!r_XU?6kRJU=9cRd+utLts`3vGq>9p&~@gKWv`56`N$0@try6 z7Jr|*>J5PM5j(j#;*}6N1REQa8P`D>iXxO)fPSpLJm9SkTXjTbKEd93}dtN>F4+V z{m*?ruIsw5_xtsHzh3h9+L95QY1sW96UO=^B=`^}&p}%#v71WCxP|^8ua0y!Wh9wC z@_LefR9M|}s1Q1+GC?xAt>i5==?pI3CsYB+WUE7#lR=4R2u z@SYz>^|a&jspp~=L(0TfW$l*N6nbTt8{n&p>Wb#k)4djmOAa^dv}=rhI9d zW%YMZRx(2YYgYKx>QjWF!MFN|ZsFe*R}khLuxxa$BitfRvAHH0La}fu%R(MY*KO~2r0{PfKeyl4YyA&W40TtxN*p*n) z&(2?M*2BV*!0#Hgqm-Eq(QMbS0tJI6wG?YFY?B=P_dzf8D}d#WE{%NGP5F#;W+JYU z)|Hjq5MvodkwuHDe`4-3v;M$0m)ZB5vpdWjZ=#<4f1ipc3ty%hjaNZuKZC3PhtDDC zbN*crz*`DP%k$VUatoNW4PU0OnAdf1K;CtB=)&J#{XTJ{x3YM3ces9re`RlT3TwiW zc0s%8T7`?Q|AbI+exWy|cM3}hI(BEZPBhmVxeMiFd!XHeUAffu;HZI~icjYvLa=_+ z*`&v_wIf6`rlmh`>Rv#^;>xLb$+w(Y|LSy&t?59U5(k+jFJ{??hmwSGt_G6l13L`I zzGY~L=m4FXNM`olnb_Oc^et}jA=AFhtSwKy8=zuc&>J%o zXYwydBwzm>nEpFS)r0XRB7UBn94{aNLdcNm=;;=DPo!iZ?U~U^6fQn7jr%P?d0f)< z@-xTL7HVKkLI1#Dee`#I*M5GS~Ig>gtyxt1OC$cuNdLFT{O?Y5q3BAV$9B%*3$N?R z(LV+!hu~W~;(u(A>Lr_33F0rn>&SZ1Uo%Bxia)iWBCKc(BYeK=c%E5(1iAoFxRze6RNX! zng@BIh2vklyZWz)57>q8hIuUf?85Jj2Q>F=KI>eZmP3%gya9MayEwJno4yl8vAE4` zQ>*XIx?9`KPys3&WbedRX_Y3L_)5c-$oXym7?K=Qr0eeOQ->PEcNYM$ghe^2E+YPx21QSoI7HvlZ6;5`0AwMa)YBT7xR9>Qf zf1clx^ZU_*5SPUO5u&#;2wYgw3ux6)ZM(z?wmJCZlf;J{NEu^2t&m;t(%>=QmkUW1i|=dWxv%wG@o4thGDI7xw2D&!#bxakzPTnZHf>2( zpXGVQX}>O(e*_x%dH(%Ib?FXgx^0;ZnY*+$623ja(}l6Yx81dNA30|C>LzB{UYV!Q zn0=#q6=wdTN#SRTGtc;@bDxNd7BL37ilgY(K{j$Kyw4CBRi-{ri*706OGy`;9RQD8 z$P1#n9@W(NQpK=N1LI+{)jz3@PbGP?ti10u!ls$Y4 ze+jzyD;=ekU8|!3fO_`#%A|=rjt#9xY~Tp8T`)ImWWmD5<*!$Q+WF^3EHP>r!GC#^>NZ=u{X2a$w)>hzdh|iOX=}ms{Bb-k0 zf3nfa7y8}uH?lFWH^TI%(R^#jtV-jJ=qXo9qz{`pm|h~eO8{T2E)xzM7snE59|_=& z7$SjZY=HaE*QdFoWZ)A2T&D6iam~kiK=mg7j3wYY@1pA=R5d4)q87|t_ZcM|^mnkj zAoUG{iV)HF@fy%z(CfvP8#A4htztO_FD{Y?|UQGRUgh%?zy&-hN#N}tx*<(!+ zl4k+5pX9|jHC0{lzJ91^U{4-(_W{M_!eZ|G3FFX7sq?5R{{G)Zv+V;jd3$ZNseOEF3BwjzyoKY?GkW6-pD(8g7X}b%G~)bjZk>Z?2q;^B=?J)KMqICanz~e{w|&}-q=^GITu{QHBvFqB1@emti%QI_yf zu8v$^#%aHxz4cCK#xw&pTiaY|ANb)g zXNQ$OgoZPtf+r#x-u0x!qbz8({da^$5}VpJvF`nfWM+)s^Vd1ogI-F{@|jdV%HK+M z?Rh^G_CrhZ$;XskX(+`(g^u!CEPuLS81M(1aR=uflK+Zi{txkZGjitx#p7NDAC7!2 z@&-=-x(fzoQtY+S;3s6U*rnILQNwYpO}VuEzN@spEidp(6I=S@3vM*j4+H&Q-KU6( zz%nHLk$OtC1jUA#N-%@eIo4+q%S}$d<$M!-n(6qLUZSwo%32jy$aCH8#>+@bB z{cY*K*__fUutr^7zUV08F#M+S^Pu#R)k@a%h2ZV-PLIpbIq(~Qz~ZscUH*Cz)Vw*$ z&6nqx-9F^_){82A3G! zk$y3l4|l4RRI|hT&&|Hytv|>fiE@)`i~#Qk7FyuoL~t7YF9#25SamM7VpF}Io@QZa zEGdvUq^wLZpM@__f`EBaf2-Ane=0Hv@w_doupgOOr8yw<-FGRMqBHM)ND{d{XSGFJ zXLX8f(&9tPh|P>K@=j;Gs^U*U3hzW65R?a({dafTO?C>ysDa&#<~CY=0PCFLd$5+Y z7Q;q?Zz%?FyK?`7d=*|+Ez)LT2`mFL51{hIKc34*Z;5hlpWqx^;qQcc zg_jR`^d;gSAPzBh!` z&b`>LdJ)TUpHVfiV=`H~IpW+RxY(Vu#KSj#asDBNFEwTCj>vse2DSIFihKY~UmT1^Ejo8a`|Le8-0Lb;!E?mW`gZl>>_!G?>1#I0S* zmSwJ@i}9FaTKU^1nlMLJ#l~~-L}4FNsf<`8CZmIj zUF~9i_bTIakrpq4nd@h{TpukM~Ml4CW$o`YTk^%F1}K`B!yfsM#PtHSJlbJm}-WZCunp zF@b<_vy~=KN-gw1+I!h1;jxg-k+!A#W{|n-LS9NVJngpy<@vWH<@;i-KO3)8us)brcCo*|176Pa1a(~07F& ze8cf~R-feMH7qH0UK%$eYLN#(8x;tzHF?8`}VwxB3g0{^rE@$U=|C0PS_%g~c8 zg^z)h280t5WA?08%9w@}*b|^=}7|?{xrxHBoKBt9Y@AWB!k!W<_(<{;Af$mDgg}muY{`WXO{~ z9sj$1R}aiA9>o=DGtBjC;GM8;D6bWEXCd^q=Lhlsk{uv#B&oalj)E7AqJRJT)xHWW zH3&7U$!Lxv_KKpAU1q1?-A*dRS37G`$1ad;ytof3Z>X1Qt~q-oD&WK#^JLr*2<~FS zJ@YDL$Jh^(pUQRtJs^LeWykHpS1loD$ya#aQHDzzXsbKsJ)Si&<;qck?jwRb?|GF` zx(Hu9nj(5Qb54cm8U1_Kd6sZlSv5Cpk}~q>?st!8&t7s+t&%LNS_l?8h4CYJNj6$k zeo)>G#+~R!?h~GN-Kg&K{_9W#jHFC`!l|btXD))?l_GGIs9%87sqi+ zpZ-_?RoBe7q_?t)?HtZ8wBWSFv_r8mum2OWv-K~n+Z=G>~l7*Q0~&mNZ@VxRoJFWKeU@{uOZ5mBzWxzCjJ(q`Gpny zgNck6z#aHsv7vSrP>!e~qqh>9(OUJ7)hI;`X8sdpyK;W@h!?3FkEHf-$VN14u5UTVa&Fx%I_!o)q}8do{|iE+2W9F606aV3`5< z1oPCwBrMWz+|>Rm|J^bha6xuaZjHqA|MV^W;t2PN%$OxFG?~XmEOf@XUH&J)>@`_M@_!^B%~LPeZKFg?^sC{AwTYAhdm z3+cTdO`o?%B$e`!m!QdsOR*k8^~t&|P#p#LS6n|r%L%lw|NH+eo}A&%9-T7BRiyO| zq26_!{sW6U_Z_rqr!H@>akjYUBrXIRA)r;L%iE;>(|a_8)DVx`DaV{GkYi6}A#S+< zXGEMm@)MNuk)1C)4;*iP8|y%%*e)8}p)Jfp ziJcGWjXEU%Z`{sOz`K?WvX9cF9!8X z;LNSn(*HGI@`7$n$MUO|P;U|&*7oY3i+D~%z-N$tU5CF@;maBO7uCR{FqyVYb8ZOG zm(Y6hJP`ggEzv95Dmj8Pfn8L;ofq+>WxTx7eCRWLQ%Bt05=tNB>`z2lOwCNzv2E5N z^f+Q)zKnOj5ZB^sunZDTR<7f8j6$~TK%+3QC)<=9Ed^!gJdt-F8g^4TaXmMe zfrUMbS-R3lnV`k3)zjVT6H$>2B=hhww&;ZNnc$hL!pJMcofGx_y41v59Q?R{#Tj<; zr{^ujStkA3!F8rA3s={|pY1b*ebT$_+{?VT0?lfUFlf3`-Je#VLhB~fUYx;>X48kC zg__@3JSW-y_&@cD$f+_jE=tl=^K>_6bdJdlYW1JMwY$ns{QiM9H^zt~kae|+`s<%C zr!JHCy7D+x!ME5!=NEOEKh!^{8=ux7TdU8X^qRriX+!g{I|X#qEnGAGQ?0rZesJ{+ zo%=(65F)XOHPde)-a%*kc973%Y)K*gS5O85n=Y|-EL|aXo|*5DY=VXw!Xhi%u%ViJ zkv^Owl8Z*tHVN&K>am(majn@A%5f%AW56h3f?CO2lu5=_KnGWgkA>AGa=#x^hNmm> z!z??Wkdx=3_zZS+cFhIZjsid>QZqE~w(#8lmyKc@*;p=h=Wl0IzqCYO)>}e(5VGp; z6RXI)5;%PN`lEv+Q#SZztvhP^qSr!?SHJy|9!{}Q#Ghyn&8mb}WgFCLDO=}e#how6 zJzAF)A6vnnKwi16V>32=OEKikcJOau)7LbQgi=7RV#iE3oF(dP#St z+4RHc0q#rmDAD`Rrgl~x<0a(e_peDSRz2uO>cUOXbqNlmix?zM-msg0oGv9|k3xq_ zby<@a8ikAef1#fbWAJX^)_r#>_hwan_DXRvb~0>PDDdCt^vyLz43n7dKA{VJB~g}-=N zYeK)dqk`3oRik@IZ`LUvH>5bRu8c2_M||+Ety{z7Uh|%OA^>mLw9u_qjJxeL0$03|#aBck-(^FXN5=de8Xw#!Qw4 z@{0*HR@fwtJ$BohqID=6;x!XAc_eyaqz$&b1lczWm>2$8xxK|Rc;4bCpz0fJgL~9> za&+DD_88$B_X$s0Hk_A)XD!?-$bhWIH4_^#9U^?7-&kCC&zY8CE3PMumenCSad6k0 z71@WP<^O3n)mzG*`*a29F)$|8!Kd{g6e%r}suoO0fE{KZ=h(U7Y)tMGKLK}xe7xOH z(;}V`lqJDohz9P4Fr|A#f5cj=!=XXFzLPV*vh?zIZ519)w^KixE(K&rXK)!5t>q8! z9^dh4Qv6_t@FuSRbIxSeqvmtl+z~1_X?^O~rJ5T~Oy{uk6)+_9Dl_>OgdViKG9Zed z1KuK!c}_R6`qljYI!~TV^r%;v7)KqHVowjDrKP`Gh1+DMR`*HAP#-C+!>Nd?>=?MW zCv&*Kf2s8Zc@;TsCu0NGx*B}3SkZK4P~11ezb#^if7jnr;=14iMWwR(R&03T$PnV^ zk8Q)VpmZQj-dH(D@V>rgr~LtAbHB8o^{?i^ZsaEVOp@_naim=*WehB3q9k6 zgnVV-2LgF1APn*Q(n8<$wLc404Qy^J;5je7;aRkH!Z_0PfY{qe%74IrA^ZP)82*q+ z_X|NeE2uA!VRC1j_Z?G`8We!|uVI7=bi2Q}NOhksNZ;A;rJEy#Zj|{4bY$KyT zc%Mj+fgZA<%tx^#|EWEz0fNb78_eb5V}x3lsCG$rkO4bJBFac!k=fsel=oj+9Va@s z#W=|?_NX{-iovx@oRHRoQNdBY@x&RvA13gG^xhKn`4#6*39bL~VAO<%MbrVcJwKMR z@{b9lc;>h!u)OSB>1JSuBozr{1@^o~ggYYYP?C>aMUSwZpAydmh1a&_{JH)-2imEK zjWHAx0n=>=8)~QY>(~)GzH^5~_|(Zd@1SpY2c^#u9vuj*(yND9IxYJqWt&M~qGNu~ zaS>j)3n=;INwKm+bBRK2?H2tU=X_o-cr*CyE3F)nuCgGsf0zAGsPYGKU3kljUTy!u2Z3p%#{w-Uk26#uPj<*f~N@e?2 zlOtfL{|JxC0Gl=fgkxkt(+JV>;J2OtR8z8XHFx+7q_T|kF25!;A6AZ}L}OS&)Op&d zd@+;a%{(Jb^H^8svT1Ft3l7OQK%b$~-m z8d6<_f}Iv({NJ=y&oXB%cxk_lKu$fSiC$(t-)GGloOG0r$c8L@-o_c(t#WMnPROsG z&7$?^k_#*GuO?n_rb)TNr14rE?4#4_uy`C(dZOzshhlC&T}sFN)Rj6*cAAjBNh_A< zxvlS|x!g+STYpi&KXy7C=p_6MWzlJYdj*iqQ+o8MMbo#=@~{lfai1~oXB6amxZLuK z8aW3%TzX$_Ta!RMFm#MD_4G|>Qof$xF@|kJcOc&=40)Of!d<&uX#ey%h(7yeU_68l*L>9KjfJiQM}B2g=UL z2-fj^&i*;eH8$AJ=nbWvJV&xeOUdZJGNYzw#H-nT&nOmj9d@&j*ZuY0SXTN8#*VsM z3$Iqs7DwIRlFrMoyzjX=5TlF9JIrcV-((v;t*~)3)*jG)&Gyx77a3Z(fc;}EdsVbI zCU`G1PBmCw`k{;>UHtB1HB51N(-ZRZo_7nmbZ`fe@oL}NVWY*$3Rl!C|4#m_5kSYW zlXW*qSIgoC2=&KcH6xgl=e@oEi-zx_y-eU9y{?~`qPOwj#We#QnLRR z?FEW!$APm%W4j(H;i=c@a!haC-cs6-%`}tf<%jzABy&hLbDHF(+)4P5J_cnRuj3FK ztdJM5_sHzz#T9^_CNxTwcmuw4_H)>!6*lKV_suCEuS7%%6S=6hvM`0#_Js?Xrv!VXSn9a$q6=3FXMUR>8W)rAc(;rP zhTV)=QF@z}Mw}*%PG8+eA)B@0bSWjvD|)X`rp!|nxE~{JifloS2(_7&FxFG+I{hOy zr;WWD=@VsppiS(oav!iUYCG}UtY@zp_h+(p_UgZKcbEH+4!o_*ZL%*x*`H|pZJ9R+BfW1cd5 zuQ#(eBoHuj9;dP5lB}I0`8b;#P?Lzvj;(=v+xjPBUaDTDN7k5%Uae;2B28CjL6SPk z?ylUUZ2T>)USE%(bjtCE`oehqHl^Cx-40&xn~7nxpyf2wCZS?Z3<&-LOG&^`QP68?Ui+5j1V=;Yg7wtp#EC2N-meH>Is$ zLGBmAG&`c#7iNTRx_wyTb~;h~ix;(*%G9ap6YPvaIL%zTdcK@>GD8}!nKah(0X>wP zuqI#HaO;NeSx`cmF#o@rBjTG2p8CqxFvFVh@#zxHNlpxa{2L#Vw*opap!}50f8g*` zM|`?>tsCqUVxdSI6dj#wWfA{T_x6)aAPjhhf0M*N)7Yqtm`%9j1XHcqxSCucj=^V( z$9KrSnb@~uYS>$LXZh@x z`5txDW=eWg`M1&(#Z**hiMri%Wx<9$GrAQ0J_<)aUD^9e6n6rlrJ>SL;CE4&UUvF4 z$89=lzk-3gpZ_L4k+gg9nWvVcQt)Z{ckB=E3@iAcs)2I8ynHo^CtHh1C~`=Y!>am^1HUW(dP#Fyu{=x6FD5L zp4Ac8_l?Rwhe(E#2$0YD8~boa5ebPq)=Yfr0_XzQ!kQ`cdx1RZ7=7K!Kulj3T>Zde zy`u;#Y;a6}6RIxO$*f+=0hJz#h`rLk_%Rf@DYOD}#;HZ945~{k9Apa3slB9-TsjsuwjbM9TP?t9$7z2NpE?mD-GR%yfT||8 zHSrR7em$lYm}$8Mt3z5~kX~Y#X!1z=ed;*m)af+u{h!IErX=TrzR6<9ImbVo^6eofQ#n~LwEeE7Ocno{8Y@=pT0q}N3Qwn?vZGgZxchD_lWpwhG{1xfS(2}`+VgNf z+FgpFG4JX7dCHnQk7oRjJwo~lR4YPx@p^?74JpFgMN6X%-mn{m_RF{1Yo3;8$bn&c z;ytV~lRrVuV{*@h_jcKK0Wt`)y5c%3&!@(4jdqzV&7OVL+=K4lNrZ@Y%5LZ$CFR$6 z$+q>>`~`wS(r1~l)M>~xLQvtjPy9!0C!s9|NHsCq zDK-4T(qD+I(BP%*jx}V2Rw(~!`mll|k;>IwOw=EcCZ8IJv>j8-PAItl9K$J{44h5Y z6FsEb$I5NfcK^jvK5jd;l~(+ASnpGXx?bvOp;Z|mrPDcJW%QwUc4}OhZ;8Yz=?;)6 z8pj+)sZ}XeD2~$e%x71|ST}IP`3RJLgbO>p@{*M-bG7>NVMQ4ILQkozX~nGx-0u^(&H zM{1kzsZsNf4cPSo^)#U;~}d(&^-*g&B&ip(~amnVL0*g0P*cbVFs;Mu$z{!^){&6fX`ANVb-R z+(7+4CP0*_#Mn*U>wUD-EXqiilzBK5=N-QmX)qsugz~im`zAi!(w%Emk2HYw7FD(x zJT&Cpdu-ocLs29*16)F0!(TkNc*7a@c}GC`s)-32w70VI=Q`~fPV{5qpO+wSK;L&` z)NU6qeOk(VqyG*f{Sa2@Tq>nSyaQ;*Ix-8Obl-udazB9lI;^u-2$+)WiQaIa!C+;3 z_9Z%bw5mrFV!KB%9{$>ZxZ+FO02E(asKEZ#<~=Y`SDjE=UYxd>J|#2u?-W`aBonn4 ze|mxayFAF@o-5ZZC$yZjA1rCsBi^d);%NrFBEjJVdN#E*8TWc{}K>>uvYT*r|?B0U#h&zXhA*O3MQb3&_B z4HUn;X6j2yhG5gCGwVn1L?4bmd#5`kBWC%!Z8hW!=-oQehJwSN3T~VD6ieTWQ97$R zvD&D6nPxj9^FiNL#yC&&ab~SnPmW*qa@fOQOhm1mudxuWcU0z=g5EZF%WGr2*vL$? zJ?eE(U}=1hKC_NcoR7976m+P0%&4GTvtvqTxA&pLw+d!57IrgY^r-A5@u_|^=YxE#fO9VmJ#>ms!Kb!IPHA8 z-@edx+CeOv*qNjL5;|$tr70!PZs0B+_|+8Xedt!p@Rv(gtwBse$lX`mDf4%jJ^kkO^Wkl=HKgWCI<9IPAesDIr>y5CpKiaa zpW%%r0g%6r-%#~ptrr<^U%Eb8p!6$)GWny^`=THI^Sq9eghBbl!syhp-}FL~b+pl| z>fI=K*!RL`8RePM2VOwJp4KwW!cs5IjYha|??$LAh&1l!nTfXNJ*Zr+F@U1EQ-VHH zM{{3&CF$J_a+RIzOLA@ps14~l@8{p(Z*s_Ep5fv6CT4hIn?Ni)lD5bFSQvgJz10N; z49%G{`Aylsxs&y&KdXKu7kBgQlSSQSx~T>@t7`NpEo0<73CQlY+GK(G6_!xFLLT#J z@q^R+7C>cc1JNlh{IBk54DoF!|g1^8_kuqMPQDZQ)Yr!kThYgCGxuOcr`{u0`0)znw+%R<>Ia z%*h-_?k2FVv)MO^{|SY}8d~&*5k%%c!wlJ3y$$)>BKf2oFEVoA9gonCEhwWTYoLbW zU6I)qbOy0pyy=8cFggBn`L*SUc?GrRB@#1qy+Ub6khK4OVixJ9I_Re{72xHDi(TQ- ze}#{?@v|xzx2LdLNtk;HvmXoNAtVjONBw0L+<%nn#nMDR@-idf0m$fJS|xHPg^fN; zUo5F`F|AVfK&qdmxco>^Ifklg+b#TD_WzH*pSiaH988T{7YIJ%(3ZH9D&-IqCDXB% z)Bffn^go*aE$?}e05CV(EJ6631!ULnZI*sApeFb=g$Tlo$fUahZ<_IpgkecP*tgZxLXHIAXh%#ZwS<6Zq|RIVpm zT_^F_<7nE;BzcSY@kU``f#XERxJ9y~=79G6#J6r9KitwSE9|DGN7v~oC z`^8*30;Rgyj?ZjtXFug&fzvmm2O-WU4!Dc$rFSE^$WeGep#evBC%P_8-)Z2vvJ?c4 zYVf^whWhKSro^s~I;JJgeAX~P1{^}&s7~-GP{LHiUoGC?_SYRGiA#^t zPn?QZjE20XjHHml^9=g1=eaAJF>eX=VEdzh6GE$Y?4#@>vkpZ#*-Z=QHHHxuIMdEK z{_P0HH99^&*8fT&a}^{xz9pTt+fj#dm92b>b%1TAJ_L~3_1r-ZdbYF_C9ujPngud& zzlc@iqFN+hPc91fWb3>Q`DP494OGOQ#US;BAtSpr3jE1QiO=?|8tm1F36`YBm?n80 zQU?^p>R{EXFk_Cml7P{#2$a0v{L*#?`TG1Mku#@j`LbSIGqEV$r6Bk8caDPMkaS^u zs(Fu+1N4>pe##ckNuO$GzA{y=AtA7&7%P^I3h_3G3Yxxi0{LZ&>@bA2cXqYNTW72H zL&=p5py;hwE+`Yov+6k;QmFVC%mn)Q+?~Q#TxSQLTz!-zOH8>7?tZR(qJfca0&M{P zipxI2`^|R3B=>gJK!VbRA-j|XeTgz0Y}wd*8QGX-lD4L6`rI5|z}CuM70IpVN2-yX zODZ0>rB=_5GQ7D*GVNUDMeh3IO>7r&(4%YWQED!jFRPNe!5Kjv!itWwKo@FQRITxbiT=+iZ&)G4^E`0fJg}557e6-5e>vQa{ zFKax=%0m7@d%Y}_tP3;LQqX=~)Hv&XpVv93{PvyzX;#auaTmu`_gIS&kMm!WKJw#7 z{M})=v(DqTOih;s8-$unxkTa0#=y~zi#hnJ>LvoCyL&`A0&~Xtf z9a&@rf9>ZLe{WH0<$~)l9ir z?KZIZcQG}l+Rdz8d7e(c`#$_9H{Zqof2dlBqQsnjS?eBfKF=9j9$+OHSB3s=CK!;C z6KOpFU!U2d6;dn)m<=~T{4>c3>`JifH5 zpqwr{7xT+WGCkg-oNq9{ZC!rp1hogpNP87l|pljICVTqsEczZ9_W1MnG0f2n+UTInh^aNoPck8n77Qlh8# z3R!HVaI6EG@1xaa{HE-zk6#JVp*BI9fY7y)sXv={B>Ff6c+#7LMrXiYlP=S;LND%P z(-E-`va306p9QreJil(pHKK^>v&%wuN=muj#@PmU&a2ySPH2qwKTRLifjlTC(_78K z&F8d}<%&uRXSlNH<m_svdWsv@FuP!mjS;J$vU*0d}N( zn~+(}w7#GeOfAQ%iFVmu9`|eUfab-d;xO;txkkQ+g@pcD0xZYgTYjLS9JN~)lVbqe zy)?Q|;)OY{-iU$Zi$~X4Ig4kA4g!BBOUq|oi7aftwRUo^8A|#On)QHY1BU}YCR~ZW zY<~%guGc1_q>mW&(ge|Noe}K)b&}hMdGB?3@ApfD8nbJHALbGCuq!+6IWus~iu+FI zQPvj>tbERYP<~Z<__(rKlDG(Jj$WxhfEkB4#G^^3(!RTcD8STFu`rKyVd2kxiIao1 z(Z3=@u!jN|34fotkL(ibxM-dk=T7~E_}lNqlQYL~@)tY980dEPbSvXqbaIO?NRaL@ z;|81=zbnWo&Kcxi9$qH%$ygWtp&j^YQcGw*3F<#&`0SDL%p%@#xv*+fTO*wF*1SA* zsqyePT_-f4NPK2Z@KYooq}{|cK@Tg&TU^~h2_WrBnB zsNowL*HZj=fWQK$X548^=pEkVv&q5PqN3Je$*(6ev*d)5;Fh)Q7&=)USsZf+G!#rC zELpWGB|FKD-JI;m(h=so@M;_Jk_uJV8LJD?->wc#RqU_M@3lVNa;z~GqP!Z`Vd|H_y>BzOkdryb~Cf)28i02{LA(|avS0lAu=%( za%8)rd0Z6dkztpP2JjshYJx@1x}p%ZJ8PU*NGsUBH6#zTS^OS>=Y!tt6<%7Gk%&z> z9P-tKVWn+Z#-19g)rc))8f&0+L+)z|9e+Fb^~Ydk6Yu??}t`GG+r%~#vvzE8W=GTMZg+K+qVs%Q1DA5+Nl z56PcvvhuQ{m*O|P`rc=pki20}o+Q`jh5Y^YE^B&c697Q$w${W0ZKe}rxnG-W^-n!h z26fq{NfAe4btxgheFNIAHx*4=1hGt)O_fWQ4&n&5)q%R=y=ZJV2aE7{+)p^0svkg# z7f7%5lbn*srntX`9)+Gc=u=AnlY&*7Suc&(lywqP43(=?J@){#jhtMuh&$I}hJ zDnMLlanqWYz`5?y8-=C=>MEK%c|nKi(nypIFSv@=%Lo5+2*nmTaYIVC=a=Tl$ax#yKOi#9UcXV<-eGh6eeXsJ;0R;G5 z>mLsCtX?7Kg4fKvsv%+Anwclu;1O;A_$jdR+G16?-jYdSWd1wx)K4=$S_SFkl|RH% zb%#)o_DCh~!n}4!n}2&hnXTM)vrzGAk7*<_Ba})~pVt&t935)0CIeoiO2Ek>x8+Mn zPc3OTF18O=B6mJZ>xs5&QVkfxH~(xBTv%XEBn;sK$89}H!W$C6nFgA}Z%F!AiHTtK zn^>>j>@7DI->i^#pmuSD)7Q|u_Xqi0lZI?Ht#}gl*z*PS{wY}1VcCIOf0UIX)V=wv zuah{fIIrb>p(Bi5p6(FL_kpFVDJc?~WG*v8%2&-zwmtAo|BWk(cw|bs45GpKYD^yd zEOd?5I(pAreXD6Nv0|6}b4b2&^y4(_4Ni7knDdz*Jqgy^5R#hO6Yb^Ua|em8=tDvRoHJ=o!}X02C5 zk%|pt&Y%}Vu6x5UA(xoZ;eFed`Ky1^!n>nWW&&ZeFRw5PUdRi7(F^_mvBImYY(&@I z+)g}aJXA%09NYd=ht3xz))e)QF#8sjD|wcAO*P9;4GjY-DUo>y54)k!x>r=?qTFR;`trA&KQA%8-9a$TDUyId8&XJdW1Ls!yf z2wn<5Dw@x%(N@5s=Q5%;18yF26RjH?UoMZ*P#CdR3O3k!PDY$?KO$T1b+p^N_cJm( zG4qQZ;D^mM@wW+b)IW`vSX=(1OxTO9(uGXM)gz9x~&EL@o zO01F5zPx4lS+q6tStln)kG~Ln0*9WKnzZAC&f1<@ul%)Hc8=)A>L{&a81kaZY#}!l zD$G$%oac4$bte0!_I0NIEm}t%u2qqrI^nX6srf`{h!$nWw!yc0ZostdVEZx*xL}}? zy|Z^*g)YhDg0XuDNu85uQRgEKvqsg^4uu)9yx0vJOu5R~WhM47Ff;zvX$11|g2Ewj zwy-g}O2d0(_Hw$%5`-y)Sx!f(W;N!`HUjoNfX7@{4K=5rvfEHX-{?zLVxrSJCAlIc zD;%YRF@46|J^%n6tjh)US$7M0=@H)uc1hAPRqr3~??1LtbY1PSJfv*ZA=^!?&47YE zt!cMR1#S>7c0|{1kdejtrMy8}o8au&$l_}|eiPDb$YL>#Fd`b?Pk>Ob;1=FzQbTJW^H`t;hAjNe~`-U#o|-%%NH zh1(dH?2w|*s>Zm1x=5;0OM^(yzi52mxGrp0u)aoSlxd>;0;{q_ez}uWD2S<5IUm(W%r7GTmBKIUdm{U6SX}>DQ#S zxJyorzckeiGW1 zDSTtd<&c5c6FmGk5)}MMxp~p!UI`_xeqo}xH9WtzrwUs6r)B}E$*Yjw@IHH8iAm*< z0UAWF)lg-+!aCLO;MmpGefwH#o$n*_+sqN~5y$^6$e3e!ucys-7(3@*Usa2BI_0jW zJ?;9te5<-#rw93yIEnu~q%x}oN%O^2o^n#wns%uVkQwjsUSO)n z>sCpF6EQ>R%5yjfKJQs?jLP3&jLUbN(%%%MiF$OORj9m9bV4iB!OPcE z@q^XN&xaVA1E3>na#;bdGYic53bvyaX{km98((LVis#SH<8Gy7sorM)mR}UwOKMi_ zD5I(HxsyoZ69Wk|*z=(RO&NmZk^@`(2X)N`U$3>(QVU{-u7r@L9q z_ftdo$DawjhEd;Qd;&7AAYJ%KscQd)wfT#cEone!6N&JyuX3yAz_jF7G>BO@YWm01B`r#}YGF3Hclk(>AA+xjsCr=B9f->$O zHY_098d({O-Hmo3p7zEJ&}UJm&1p+<<1^Hk!g1%6as4w-qMZ_Fz5nx~?!n*PC-Hmr z&0cs<5<|0=2`#7WG@qb=>B^;@Zc$54t9aoHRx_To5#c=5^wMh9azIXJ#%g`Wbg_?# z1p7_E(V3tq;iDX%Ds)`R7N>$ZU zrvz$r|E8DsR;LtAculC*o@e&&Sg_N&2)(BRU5(*js>TRNkQJuoyUIqw*9%J;jino* zQqYsg!!7)OOX#YNq^=vED3kq_urrALuSY9wy>CFSyMLTZ_^fgrXt7z+mv6Ou*!B%c zcd`p*BaFgjEH_G$KtfBC7h6?&l$-2hY^l(8Oy$1DYkbT%3?qV>w(I;5qC%BbP_%Yw z7yc;u=TnP+TE~+I0pFgBo{n$$FQ18o7G}1Z={e6Q@T1)a{uEN?4y1!m_xlG*b<_6^ z%dI|@C$6100w9JEezARNILWgN)za(sS1CpZ`LLxULgQbRoz(AVJo~QP3yourYi-0@ z8P$9cT}i5W1WBD&_q{@<*pi1X%{A}cjQ)(Uh6YOuNO==OWA>lcf}A>5>uzpJaddd2 zDw`>p=QhLF?v6XXD2^^Q_X|s?$i8smMcWrDKGpjBhx5r-w4G)CA&Y~MF!|!2=gZ~)g zC2ExCP|P86qUuC|M8ATo6>bT(jJ9W+DFg&6TMIJ z%ndhgdrT!rt}5x0?^tYKLG=D+C|i0xOg~H-nU&k}V}aukhaX8>8hAFVOpil_WFErE zchjp8K+~OX0smlEDT9)ZDdt3Q3_mQtA*t5>xOgIAE~=>owenvREn*?J;axf_AV%vl z_lh3qGPUdp5%JgHpJqr-b|=z%JvgEYuHT`x6}?=V+VEhS#`bW7-w?09tAqrN_VQ$4 z=XsGcRd3~Tf{z66JzCBZonM;nKLrv&cqW_-V)t4DieR5_-&|%3OmD@c>ccLYp3kCoMS4#p zV9rs`GgWtE4&vVo$JVEPp>af_-$PRgH)oM|dnl3Kiayk#!VC%r{E_!{)34Sq! zu?}VeAg9=t#PC@_4v+58P7ICz+gZ9DFV8(gLk-v6s!5LsyJ5s3bxbmbD0-la+2HLc ztMmE$jJh5U`jfo>Ajhsbue1vs-_tbXlZku_mal`~-q7*~1dN7nO%n zGy^*#f&2rJ?Z|B$ti$c)riE+ou>~xPvLg^PQzt?&&1Hc8+sVbA@5)EM^dL0!j%%5% z3kpH2=60=qu(N?vCIy3Q!`FbH$~5g}PtSlX@OCRFNuMk##WD1*CfBFfu79mT<1v&k zGTQ-W09~e}p;tkTe|dfQG$U7+7QSv!Nu=wivPR_QBH}x{`EB%WAuRjTHc8^xW;5KA zb*idtYUi5EkmOY7NF;mQV=>CVd#i|Qr)8ZQpf=Tq&W#fbZwV?mantkUt8P?@)7!#$ z2OgNt>@mJQt2g9T33&PC#*`Wt!lcMGsZl}uFPQMQ=__AzPEXpaT9=@B*4yXCo z@TMiZ5Vs(!m&WrOdpq!pf8MfJiVEn(s3%?AM<14p|0O(_mINI{0)ZM!_>)5O2C2q4&&GOw4Ip@_=al)+3zxlF@Q~vY{ZHEI*=)NujK05l<|j zY{8~)?)_p49*(1V^bEp4t1BA6nYNa02jlvrV{Y*eJreKW{r7so>F>n>H0mbb@~2l0 zbGTt5^nXp({iW=stS?#NKa%ki%HjEo4I#NN3rFp@SY1Hub!8$5Z)?V1I-nkaqMlhg z`JU6@^x4d%)RY) z^F;3yA=-TxH&44gamn~RX%N&phoA?T?nb^fWu`Qe^+2{%wdpr-wD`Sv)BX-{Yq&2` zb#NE1YlL1+OiZ~)h%9&|=fd#znR$%)9-#HZwu7WQrj_=dlrgSVY^TQrZeIVjbi^3`akkFmsk^(ylvN`^+iDA!gjO-aTWA&k~w z&-G*-yM)o!e==>q2Z=niv3w5K6m3kx+>#4cr;1*0B}~iSDI}z24y6e2*a|2Avj8f^ z-^51UH!D*y3SX+nz`Vfiq@CM44qh8m_+SV5^Uc!9vF;1e0=vXo=bll?kp7eGI6?=d z&|&m^e`4m(0k52MgkYsb!*6(7I4NLMOl3#}jPjMWIy<}PT1L*K(CtQupKrjD_)eYv zGGIjJL9M&e$KD`@cjJ--xi!t_My}v-<6MhAMxGt4<$T;3qYS8#`9{9k%7OyD?%A^& zO_aATuZBH75hXtbKm3;eRg{#&OAJnnqnwe7R5owIyg}v}w`@rIB9xBxhfL7_A1)BH zY{|ZxnG3QWV_^QP=36N}Qo_t4-$_r3jk#e;ydmSo2?ciyxeX1Ba`J<)8TUXd9KbEH zjovT-E40)pr)E})Yf0JY-xp?gV34OO$e#DX4L+Fd1fbQgIYR6uJ}J_y#@lLWZk5W01(HFpEm zz2t^;`<05YGkx@N@z$`+iW#|X-Sk}kUk?c0qbyDXt^*C#2z=I!8n!z~6Ao=hWPSm# zqdR!}meH{ANAOK}LKEtj_Jh^oLFI*jYaC(yzt;{+u?Nwb%yL-w zf~!9SW8uWoza;vBz9*=ffa)OgjPkC`UYuaKVX!=}HjWFG-1&ikgY)h7XomJYBus#V z0omvi7H-8MD09}EqZt%iq}m^l4oIA_UcUtXO(I=LOyWiOh`+7NZ*luW^7ZEX6@HRw3L;$yyQbY9bL_L&IqFZ*+J3Pxwtp18eBIv?YEpbB7q8-6nR8~CMs zxEoihTj3U@X>G6U&$0=I+56)}VO#VcOeDshwIXwHT0Q4wj^T0i?;z?)>Rh3v+MdPe zqzjErmvDn4fKQQqj0&Vey4wK@w-w5;kPx+E2lfUW3S>e^4R>G}IB)z6m9xiVw zl2`XFe~FH&`i+ANi}b}fQ-1;XMc(8~#y%SZ?ZhU=Y)ZER(1j6-)eX=h`u0DPmH1wj zJAsMJi_@qTAv&E{pnJ0Pm3~y%0h3}7`W3TK zYn)#3HGA@tEjkT&a9MBQq=PMLT2qnhtzg>dyNxMdpUz zoJAi25TeN31jQEP`y-uF{R0k&5kLn2HF|gHU$@8ItnPI2k|vd}H7japd9&tTD|IJh z2+at5D)8igw=%J#heA%@a~hm#ui&I7+7^!mHoqdMUFvC9zQ-wu6urSaq~h<-*_qBg zIaWy?UwbIaLSd={e6-(KjY%) z=r`r5tfhnETo6{$@+%zoSkci$9VwoJOKuiF+Z=~27Z=bfpsGV+p+V1Zk!}9~)o}`8 z3U{B7;J4qO_z)7db|naH&SbpQ)rhdiTWl>&^*LQIfoQ|_S-UqEK(5=f?j4cygo-X{ z=|8LlBKow4EEqj!wREKGzVo~;3%@P+|J%B6=BjlWcBD}2^|)Q(1n4<${>?o6w^Pw` zzHTgM8SO3}ZSa?yCfqrb{f^r+66ny7|q-$a1=di{@ zA&y#My*ht0V3L%jSWXf#K+-DmXOJFF>^*~N@~DYwdB4F5zZ2$P>30m6i_2bsi+`-; z%?b92(mGq=vw3PL#DM2Uu)jKLZ{4YxD`VqUVU;{bIUv7vzBT#{TuVMrF$|ENQlyLX z*)AW5i3h^QS3g5Oo#u}1-heuYR-}voF91WNdH~ook|s7ZoeQ;$ZcPCSZd|;0=i-4B zr!C-2P{5Ox2F^r{a^a>N;5%Kc2JOeC9C$Xl*B^dO2~E5{(n36h*2ex^L%jmN3qsU@ zRYTuxNX6!zLwO8Eyu?%Z_qJMhLP^K+;`Cb?&|iL$GevhXc~doOIUa()8g*KM{J2(K zgR10>-FHYE`ZQ++gzbJIszZk5P!f2+zi6YMDLWhv@WfRPUO2pu?vON+nQf7*YMDG z0rFKq?JiN-gL$_f#2eRyjT2ZAo!Eygt&L-g4o6Pgdb)|5!SEiOuYw+_rDmgpyB?G$ z8yRq~a`oMIVW(~v`fcyu_ljKt#p{%K#;cmMV^>z~(1~1hbfRTj!~?Py>J%y{*QFQb z9dJ!!rlsNf)?#6?l-9IWXctZ)@Ks+GhV6Yfkx`Sz+NR2Li!lCu})+8#24_5{8oc`^94zJ0I;Dr^!V}j%KUre zV=YrI|HKvL@lm_|V_lP*gWm5a+8bKTMG-`qm{&OnsB(UqsncBd2NI3_dEm6c7x-y@ z#DjNhc}df#uqt?u7mS#}();vRb;Ye9hjrpH7aCWCb+_BsD?=PYL_o8H>EfY=?GMm`9% z4E@n%S=<1w=|jxbT`P^tN%T2rI&SJ5MsCempa(y`9StykS`5Z;!c*}B(MP2Z_`f#b zok*qsxYi{^O3^sy=E2IOVOToDKX_?qPk5CV?hHeF`@h7Hno{5VZ!aB3QnE(vnf|9CyxmEFpnr zgb@7C&fB-l|82l;V#>%N6T`RXITmG61iq28-76<|j_~Y)O4TaxNW^lLtw&9g;5x5{ zJ*LUqsB^I(Ci|q4=zxQbD3L@VHs)44#5FW`VMQY>l4J8?yt~zG`m`AgUg=Wi#D`rB z{Ok&cvfCeuvCn~=eJP735uTpxw!aQ?8-5RjUcKQmiZP9ozrIDK z?)Cs7xAz-gs&s9I7k9C`zPd#7y#!aWUBa0%4|sp%!n2CurQWS#_Mr%{(7Z)2dXBCA zsUsQMVpMe;lXHRYsrkbx(M{_O1S8$hBRo?>(&%JP?kcXy;AfdZ!Tc%_D>x3-vpV?w5dYVSx5cj^4)KW9@9Qx$hkKtDO&i;d0m3I1Ln#3 zQIVn(eEywz6XDsN4gaL7U@J(jqUw2u)&5w;fGUgC2CF{d$x6%l)NHN5LZWS|fkXZ~ z)W?7H&mRvKy@QWpv3DPOtQ}0?kVXWrG>_dwX@sD=P9)U)J_SAfIK2C7_}fC0 zb`;EZEW9j-4^Eh~xE3bTWJ=H~MtH_@jryLSkAg;drTR2=pwpJY@G7(1|HYlgPn(Cr zd1kVI{7XcCD;6~B{YIeTotqX`W!Seuol5IDvj^E-0M(;h`{$8*QVontO$a^K{e}tT z9Q(T}M&*W*y$YwulOx@^x)e)UG+I6_$=5Regi7N3FeT;6T5QL*C#-dN%Qj;Q65=H2 z?K%Iy(nIi8Mm*H?S?O}hjMhLiQIr2mmuD{6f)+X@fV$KVV(e>+6NAp$2rS5cow;b0 zA!-NU2+nPDAKhf*Pmd1c#qMPT;ZG2FlWxwtE4aNG2Pux9ej8AWJ0c^_`+~S+v_E+kP2<N;?vfaw4C$1 z)YYUGo64xg!j#)(Q80x(#=Z@M21)S^+0IhaT3I6_bAblz=m5RZi)S&CJoW*>+fi;1 z30)ZwnhU3u{!vFWiH%}U2fN90ffK?Vjn@1Zyx?XlYZE8_6>&Smx0&wSB2Ex4qcj3? zyCi2r{}UhMpOG|uTC#w7OzNqZlFs12*g%BBj+y9q?-QQpCFG5({s%^sj~O|i>99+6 zP($ZKmdxRbtjh1Ksp(lv7w{B`bzrKD<_KPJQCF0s= zT9j51{<16ZN<(sYczz+Y?2hR*aGn{>xt!V%0(wzdxDHjv2Tf70_M(;K6wVx*U^@VV zziOr8%WbyJgFAhhSLTF1GrZe<+5L&6jCQ$e!;~^D{_rlc7%?6*b$dA|diS)=+!db> zIfIzPSdowc1f%{ z*QrU<7`VP|f9_H+lzg4E?HArGradd)u*UkX(?ABAj9w{2RO@E8{a(rL*S2oj+ zGPXd!{ja6Y5|Uvl^xGx&{*Q&tFxUr?`oUrgD>oUoCd~m_o+1};6ZsZvL1r`zxUdD# zT~TY0!C%_oexDsNqp7D184fq8w_|c_$bDZ4Hhrpi+#d8R#pN>X5!U>a*UFg%tdUt? z08w73faMs1_v+W1*(6S4d>j=OpSh34(-j^<6|EYhh+6S(6)$m0KWac5VLr>mNRm7D zcAn>~!B(`2JAS%5%(uPlN7QtLAuq!Br;|MKBvpPU6i$Rpzu>!6V&DnzYFW{sh9J*z zxo|)qQ``qzI#dKrN0uozRn`&qOkEfWbu$|ax97H1 zw#27o-~Eb{b(f^U&xkd%10E01i%tUGH3Qb{=KJ;M&1_b^qs6T=xSf6YS5GWt5gVnE$Iu~mM_5z=8*34!gFuk#Mr5NV=S==v&3FY%_EN~CbaP& zSsrfJennaFqiv?6vEki#@)vf5{sivx1W^OHrz}pFxG3)7l18uhWs3Lw2A$Nf&DY9> z9!g-`6LyA!)%n%gW;ykf4`kB@EhEVZFLVBL-)U7d`E%eqzokM}!26YL)iQc)8}$CH zxCN8UdHo;xIY)-u-|b*6IMCq!ef@|7gMQPp7{xYP2$IYZc5#u zL*b+7c20<_cnDXybJ6)yK8&@zEnc0;w}ZXOxAY`Yn)>OJZ253}hU6@%g!F4Y$j6b4 z@-N~>Xrg-sBJLe@35CJ)VsR$F;$0}AhRAb2yNP3F`87dXjiIaTk3?0-W;96fD=cA5?SBQK(G={Hw$)N=;A(H{vJSoIvUH z?d@ayYvtUTW$ic2KSibeLQIio*hz^I>JWc@D&`cvMk1dQ#cY&-+DNS~wbv_lMrOd& z6nMCmDr-yvBNREd;j$&1mUsFQQ$vrLKld1zw=P{KZs5A=L2s~5RVTyvPVHv7Af9l0 zZ0i%;zbk0GpZ^mOjmFMje}r~Q*gek}7CZP>#PLjr!y=_9PASA`X-Jt+5(!K|%4o!9 z=Js*Ew-bNoaB`d3ny&t5>8p5o2Brrb$U7Jcs;Rfm8l!UzY^(5uIn-pWYUC#|3jnHOQ;6>&ua(tTaP>cBLs-%^-A+<$ovF&o9A}>M&1< z!!&uqIxgCSzcmhUQO`J;LN~VXtk??lMu25JCKdeVIOJ5$J!Z~~1^j9~Kg!93Jp450 zOGCsXdgnd7q3K5nmZj!v+)AG;aTgaF-U^(J z2Qj>RXm$>wRolkEeeC9zIX!#^S0gD*bgo(zRbA~-n;L`v=339lsTIY(G=z`^k^1=PYF|&_x@HzIAB2SOQ6{x zY+<8{PVeO!DC>#L43pDE2~@3dsx&36iwP{`z^rIz6Y(c1FAkMg(tdu5Q3)SCjTP({ z5nsmNFA^&Cpico!$Jq~J(sJEdP-_!&5?5v5Ay9}|E?yZ&Tl8VWQ>na&an2)yZ^Quf zDSjJZnSlA6OTY08V}2#*$d7PXKznwg$?$2D3v)U*sNNmq#oS5X@SE zAWGe)&L-?JlmXJ7GcT7{cse_eQ*tGROMpYt7 z=^8rzetPfx%`)pEROBTZYv8-AUJ_m7@1{B!mlES8!M=B?H%XY3Sn8v3hy$JHXf-W0ZP4)>Ow z!JrGb941rp_xeVBU-f3W_4?7BH_wbm&v8hb$vdm?-L~1#nn3s80FHuKnfBAPP0`9!2A)9<1$x#4G{dZMm3t{RjPR44sw7D)U?vbpd9VZwpj zOF4h%L+xYcac#Rxn9n7|C!$P&ID#;TdeeU6)ttmWZTQsfTu!!)H5v;qY5X%wV0E?0 zQ+Y~W=+vO3xC#hvRYz*r=0K$|;YS#Fd`IM2EG}$LHBrYNS2=sm=WN{vro$;F=Ujd= z(clGACZ2xbuSjo-p$*s3*>%^r6$MH`?fvu~9x%;#nSTepb$z7GU=Ry82gbriB#LeH zhW>SgJn||eT3-9!!T&0gHv7o;*@(#P`Qy;{3#pdX=^~mBx#sn3Sa)`995Lbm%UWll zX4R%|7O6Z}VHnLlUssDIWw856Cs&&zjx*KBGv3mIez5>2xA-rVX_Ef6Odj7b++zO6 z{~)Eh{G>;B;ES!beC=5?653s_+KSehy+ z>Y>6f<}K}82VL^a5xURYgNcSe9FE)Rzh|n|NxfZiI=tOP;U{_C-;F_hSgLJ=Z9Squ z?_N3Jc)+yGM8Q>77eqt-F)$*hWwpnT9(to#;rlwSr}UuRa-6PpUqEO|h$y0d(e>wF z!-tS}>X4pyUqt`zv5P9_pqaQUjqQyEZ&Nr`J$ZI+f24cM-{6{i6hd9H)X>O3jKDK0 zi@cNU^UO)9=s5*{bEv&rPpS6;z6aTk!=&?E%Xrc(uXQ!8cnXYr8@Q6OYMRk7Ev$dc z`S6u@@GZS6EAuP(2F>Af$|dcqq62?c`cK^V5V^COdi)dL7_?xiR*jGh(fqw?btidm zk=-G_rOb-Nxee^V4C)AtpXA;^`pb4xaa;`n=z{u}d_100Edz|S*Kh3F5+2R>Wi@(L zDc#r-uHc^64SyvLH(iVmS-;jNyZ2T~!cBj1`gW9YijuhbE;*f8IKl#VN(Fy{h3apB zIsF~BN#k-T9kJTH9PWk*VfGasAdK|KkpJXxG<5^yn&b=D4-0XKY=mPl2$?^2S+?zd zFWHQr+!lUOhC~Nv%c=W}^Q+57bcFHtvyUcHcYYz z9F=vO#_SGG8;UbuO&O)vQ{Jxdd1>?YAB|OmQZwh1xhKb0uUmW6g*RQa&t=4xz#}r> ztC0`mlVi(Mf5JXHhx{*@ah%q0TnHVY)Y>#^UjW`-L>^k?REi(i>C=U#Kd_Yq_Wxv= zM<*uF^!w%mLbmdR`TgDtpv)!>=mokNbhT^NGYzeu9sX|XR|io=q)YQk%j|EIVbaLu zfNkJ6o1hI594BLs4d%vER~r(oD4i(5_i*JLLoYLz^ocI#QvfdRXu!;g_3yzoVdKFdX7s;^IJ+z0^;xV# zQ^P8PHIhJbWgo7FgJsgV0y*?d084#8+3>- z+4O1nIZ=0Z$?$b2I$3=E6w%xXm!gZwFv|0R-6)uqUIB01eSwngpe3aI2HMT)9;AHk z%naN46OObEQQEaq!#(_m`0~5f!AH%E;a6Q-2SVf4q2&~%^>bpnhOC{JI511KuwLPt zTmddoGri%&K{%%4>U{oOTIMGJf9dWo>c#boiv3LPt_lM#^TbmWc>tZ-8x|irNXdcv zH-iU{P{(td@)%Bs34h~UhVXvE^XEt_hg4>Fh>9@Xo8!8CTv(g2%X;jq__RZq_i*Uu zo*q zk!-YSm%G#SF>m21UEi!8uzC{wO=3jj=$jUw(z+~yfPSbSQsf;0(`rOw8#aDg>FU0bM5t1>&O~h_>O(- z~oknY!5IF0f&%1+mFiqL;VGW}z=3 zGrv5c_u9cMWi7+uGyUHnmokKpWGF!q_s6M^GL22%0TD|`2nbumDQR5hd4>p$lAsMT zFE1Vf+&i6~S6mv zA($D-MYgUxJ+x!k#TiqjlEr#6x}#sJ^>C+h(uIrjk10T9kp-I~_sFgb*>64#O`{ec zqjC2Ny>}$%|5DU~#*$Je>k{!dryR8dTu0jff$^OZ%^I738Po&rrhY>`KAGa6!bx>Tpg3~v5bxd3TMeYCsp6%41t(TwQ>h}bv5H{Uf zkWcoeXnj(2v$fE8(ZQQdO^4wnLg}CTj{JT|X8 zW6aO=4TS@03w?zBzc`b@Sd=MMR7tyeKjXz*_`7!T{jirtWw+^1(ry!%uMA`p>>&+~ z=vxD_-$21?1S()H?PWIR$w$F`zoR_*)s0@)W+v|f_g`iZ&?uRkNNl{nr8J#lgs;tk zf4gZ{YGV{6BfN|dP5%oN7y7RwZUQ2c8O|}`D_k5ltiuq#z1V~%)8OtAO2QaIGhTL; zsqrg?mnQ~2I+U*;y0g&)oybU0j9ppyo4W=;2f3q6$^(o4ad@v;6El(>DaE8xS;Fip zq566L`kJA!bW~K??I=QP=PTfabSr*J~+fE;DSV2um-Pa$M~622C5Z%lJ48MLF=eN^)w0RxEYdq;hu4 zJWZFnHCKg6rV2`=sad*otpLTaKk@;nBH&uDm2C=j?nly=B7%w}_Qz7~Z~ta0`VO>+ z`0xoBEacrjdgqUr&V z=g^~4ZPjhL0PVH4z<&$gvnpP`w9)pV-!9p6b$pDnr0h-z_(L`HR^m;^_dah62gXpN zhbRuPA4znv#4jt}Y|}s>81ZC?sgW2QAcx@}8E!h=khy&FZS)-J-Sn*xUG8`hoorj@ zp-iX=J4l0)aOaW#_K(Kgt>{?>UH$XpQ9n{YlVx#qpsoK9Vg|JbQzbhlbDt4Fk)-N>&^h$!l0V5jN6hcf2Er_&z5EyB%v+1^q)IcxC6Ts^Gy!c zF6+5Z-cj{vLdqCEJzQq8W>amobUMe0cF_GVY)VT=lU!6 zb~20VAV{l(pMzXuyT}wP^1AuZ67c+m8L`|o8>5Op#t!6>dPeX2JB_#ags|hGO4J;n z*Od9cLLDZC-PBQYDla3wk}cQ=xW^L_)#d7dv8rqz6z!*}>S_aaWS{Jz~#j5NG5_pVOo^%*?<;fHb;`_r!?K%#+?y4FR5c zL4Xd!5W7~eeEk9H&xx~tB@sbWew_kCkG=EvLwBvp!JdovX?EaF$j7oy7fZ03AVbY> zYqZJxA9^%}(A^ckK%XNas9l5n{Z#Cz#$yeU_njrM95pBy>YBN3iuHdbj1=#l5<#9$ zQYz3FwoU|g^qhJFnCNd8|2)^h?3aC-e??&}?~mUM_?9z`t5}AZaeha!L-t$Q_}E}# zW(k7&ju7D#qR%&lR02txr8;8u^I1zL2Wk%aQCiqoi4`pyF5Z-jOS$Fup^dws1FLzl z`Thr(LW_ijb+ilFN}+**QXqC?QNLW((CAGzZXl8Wq3T?+Jp3}5^7LTm?S;BCgCMCV zRd{dH4(9jl3i583Pn6dW|Fm=A+aV#)Rj~{?S_B&etp`k09G6oFEN|);GOG>I5z3vR z0mtdD?p?Oc18+W)FrekX5+jeVZ!DY}OHO|Lz`dpJa_HuGXUL`9f#^{;`V3_HRH)>h zSx9O`09fbPq$)}ViC-LV{=EZXFaBR1>gcL?_OL6bC**JDbUD7;wTl}hI+jV9rfWWT zg>KE>$ugk(n>FObBS(#nvnnU?M<(SWt&qnj$zgrN$){x4Yp&_j_G_+C z`Ec06bBU)g$UNgFqK{9${-*R2MGQcSKb6jyjDEpIDl>@nn})(D~FbP(8!IDPxuDz0;6JQpGiT;8_<5OIi3kH-2RcuMg8Y2N0>%+s4+>bau?$% zR;h13nsy3MZE}p|(ElkaGQUIcYy>qSDcb95vXkfWE+H6AvjmHEru;V^^x2KajCyN7 zo^6klYh3O6?m_}`G%zNg=xuu}r zag|poOo=Z4ffB-c#Q&UXEF+G>;@O^-8sF7RsHZZMFvnP-Jj7OBhu!_$E~WoPTwg_G zrRX+zG$q*@86@YMp2(+9R5^5TYq?o#Ekjcd?ZdMuq>?!Ta5*^lJXo;`@yU zzrbUWnq&S7)Fjd_XYQDKxiMILmw*Ub!Q4ZW0ZV4k(d0H~ zj~-flc29xgg(j=<=}58Ni+Z=WlfC?v(+rp6C&f|3pk_hsNd`2Dh*6`hpA?ok^MH3y z*j|AXW4~piRepo4%P7kv~5>#Q!}cA9o6^{_+E2`_O5{YGE09-Ub)w{A5| zaC?osFtTr9&eKgs_&<~2Zwacp#gxWx$nozPTEMMA(5wV3YEg=EuVmBL8p)@2^HJN`uarpdP ztvD}aH3^K-pvpS551S#?(^xU<2ah^^4Yn2i$F+C>FNSKr>0ocjG&yzd8HTBw#Lgqf zO^&1(3o~{FUj1z+sQTz;cVo#GLftyz&)4B!-%rmRb?6gL z{~dI)$)09uQJXCJo|E3q9=r{7#025P4l0ep55lt<6q8bq@c%3@M}K&JM(sC&K7&_G z<@Z~uic(*jcUED*sVyv(%HiKl6PpH^B!Q-SND7~MqiO* zdW6!;-aN#M^pBZ3I=QQE$omzyB`va4msZ`Mf0n?9okBju1TOm*PL6(1)wKOZ@vod- z;l^-(BmKs+h=zkFS@73`aFjB2eezIBQC{fv9V@$XKurbcOydjV@B?*amgAdPxW)w7 zB_h5%Bu0?7;<#6$zb=w%_p&k~GZS&!9{9R*-&}s9!1gyMgL1yX8mZP$zr1?1<3(|3 zibyL8ch8y}dOvSnS51x&ZV_5HIJEex9J?ica_K(hW^my|AX#QOx$*^La$Z|jX;JQ6 zI>RdVTg3YTdd~^JGO7Ec6@d{Z{Gw^ju?#t1Qm7_CmUdmLgRdpDz!4#UE_Ye8kV+jF zkR-n%V)J(xaAQ33A7-%)xAZE3N|Hgw8#3YIjT}I~(+ilvvFRO*3pC4soo^f4FJ==p;>hKPnRgfI;=!3l0OBk=KvkY>Zxh(2)7K zSPw~_N_%(Wc-UJJCy2hHkjH!(r%6)&QzJch_Oh@m?Nk$rd4#_-ZSgKQ1lrBY$gLSD zYV`51_=}dciXC@_FGAdB_x!5b`pQ-;ko*zS`27XTu`)94ZrqwB6Ea9yv`^Oh0=keA zj-tL-@p~}kP9SVbM>zOLybN#v4KV_>k>6U?r4RTNp*N2sOC%CGMv^3?)Imwv8_Iyu zC{QPr4mExqFlW@BoY-LehAAQchJ#Z$=r1pfXJ)elz?-3+*>+y!6Uc`B^`}JOExY-m zly>&+OkgMK(EL$KJMOo;k8GAh8O=e*oDfZGhhl>O7rf9@{MewiycW^l|9m80|26VZ zrHWf!%9TtHie>p`HfIgYIe*Bd&TfXdUIUb#beAXWz zOo@@m2TP3o)J{$@-W#xiOj6JpkYG-VKSWa}q0OR^&E{YEr=V)Ve0Wx|nYeNNCg=?1 z{T6?5Fb^xZ%WNSc6h{$Y269nhHWj~WBb&_>F%EYqTxp8nNOV5VCD!66|7k5JpdQip zbeh8Y!`d!vQ)nHq-CM2Z({=&XRBLqocg#h_$ZTB3SR-&wwVEs^k3LZNORmrGd%~Z+ zD<49k6DGo&?K3gO?qs%z_h}ni%`%J&0e|l2oJUJAH@p4xR~Zi*_Wl7H9TVp_m4@x~ zBD!>LUkU}AH-Wa-?vH;p+;Wi@ccbE(!#aE8FpJ)sa!lz(lP#euQxr1Qpu}M&8o_S0 zs~Zknk7As5;e3eLJ zRj)ODx0?-_G3KtAsN8@=$Sw>Z+_FqY?~C0#nM6A3W(=}jQX5OZ-sQQv>$_w@?p>k> zQ3oC%@r$(>1PkL1*G7t7V#~=!nxm?WMVpLCKiy206EBzFt%+FThPWB6->jciwh8Eg zXdTKgT6B!de2f0v<=!@MzTFCcp>@xsGTv{9D{=n1k5>q!6m>4;v8jFId7425-bjk)UCVWA zvKR;<$SH=BG~-yLq(=knyTQ#euD5;(G?C#kPQMgaSfPXH1y+xpHs7kS-myNV%mKsX z_T`V6^1?f+D``XKVS6V3{cpZX#uHy!Eckl#A>YbRo>?|7`a_Zr&xWpca}L4c*!sr7 zRZ+HX-|@CKWmraP%>4uG>YsNrS=-Q+Jc~x1jcs7w6Jayse|4tbyM#V}qU!XzKv~z3 zP2}V-r8V8kTCw-~o-)e)9Rc{{p@b5L@Lb63hQ^hF}zJhVp?Wvzz>L>{I3ylkqKVV8zO$B zTmzgGx0%f?W!Vbf367Ct#DJ+p z5}c$v@rJ*I;t(*TqOh~i$?wI|e&f?AM!t$$%=j1Oa9a9F4BlO88UEhN-Ey&}@nOQZ zQeeX8?=MXsPu^VveO5FlN52eC|BgI)>K+f*AER2$`k>6=<0^*_f9x>$KZ?#hp2`1z zO*6?0u6DdFkXYv%?OB8d zF(a3yD>Uh!oeBzS))^7&va)G65OC?dJZirgD(W=rqNhJzbtl9LWH-lsa(z+I)zL#V zR~E&to$;gYPiNx9$cHkE!HO~a*Rx{C7tj6Ig@N-!nU{6tYndYgG>~m(@)dY(>JYp6 zt9kh26lB7!u@}c^g#g7lP@4|kY5pF4aqmRJdYAS}A$Et9A}x{_Cuhb4X^_(#tvoWs zlP`&zAXuxF=rAJwz0V0XW}?|_=n|Oym~Xpsd|aCi)gV#hB+xG#SzSi=*n^Ml>)&fH zMI2LxwF-8z>KfYcIn<}j8P{I`d|uR9i!xefjHUR`>cZmtq;%<&tuBZi)+4hpYE6?A$XjjzUf4&!SF zj5Na>-fkA=4X2D&e)>t8!bJaMjDi@i$ZLhKzw)E(p^5{T4B0m+68L0@hJ1bVN*%r55*&<%i*%p z?wudZHGmh7p$?O%g-$n?VY|wtS2e5~LU$y&E`j5(CK3l^dxH{kGU@_H;e%%yvbfR> z6WKbYIxu~f0dxe?W*bNiJF}iA#iHL$@zy+d+PP0Vh(4Ep1<16eM$*`czqI$5`eO_I z7uAQb>7-S7c^CZ}`BRHNRq2HhC#8QqJM*nvW+K}wbn-NFJ1;pvc-Vr@4V@V5uJgU{e+0NB7Gf{OK8aW{tm2g^8}MCmUf-uEtmXi0*xLQ9+@+v& zlG{F1uTLn^yqxND>JCV#i>w4Kv>GAD!ZJ5}7U84@s&+oE*Ah&VSNU4X>a_%?k5hP;0>q{j@03KfBz&l@O6G6 z=pPW<^(icMNh@-s>xHM2j@J@?Y+jtYSD$|c=KjCm(!}`zi_=xn${dFqvMv*t=HPK_ z@GaO2BvPFFRa&7m59`MU(#&nl~G|LIt0~ycPy&ls|bGynN9ITD6Duve*%YA zd+vIlKaCIGJ}*2qWK;>K?Q}$H^Kg;}smw3Z1%^5|M=5N5OA3xi{p;yG2TFU{a6Fqe zz2o#S!BiTf1GAaku-&jC=N~H3+Y@vbxR}RtU2G-6`)XM=ptPd=xhMZd2x zTCFm%4Etrd1(N`90?}@L>VLYH`r}wSJ-6nU5DQp+75z#4lvi+sv1Nue-pGX)2oYPd z^d-2MB5Y$k2%jqg&Hhnv)Swr~9)Y_5UOnBl?)4XbAiLg?DiGWXe~j05B^t*UnYl|Y zR3(2T-V(l4l8%sTd~_XMu7NHcCdhE-*ZToE@jKt)`6p>|`);K{{ncUz&q7`wL?{!c zJ2Tsn=Zc=TA*cigmg8w5m2M1sfHfCC2{E}bb!ldzEZZA}T_kyfrrbs=I{th$?}>u_ z^w8T6D`E@@6LM!3y7O}FCOfaLj&#+{uG}Gf=;mRAK{&NV%jvb2r;Sgge*0PHlg?j) zBe7TF9{#r}6mtgYkQjGh*56`l&I^3uMLr?lE4tVSuEQ%SB;1a8kF+GYe>!HWM~Or~ zLv19RV?e~$M&Ep+Z~Dz_>I>T47gPb$a;R){?`tyeCX@q1se4r6ARaXLf1P z5nW1J1C8R-b@`~l^&+!+JxT&}!rqA{?fmL4dNgO@Zz4{N{gC>Xbn8M3ZY{<61N2UW zFDNCVEwBJn>8|2NNS4REI4tijA2HQ<=Dkn$44woY#wPr$ztf^`egzIc(N{ZiJ30^g zA^1ex*U%H?2#_tQGnA2#S3q*MMia~5#vYw-3uRzSKadtY@XYhLRJcOnN7U&#Iiyc& z(P-j*S@J4&=6jz#)yXX5LBVxmI*jG83jTsp9S%!t3=zCnxV@y(@%cc`6q-MJ_mBhj zpKt?HZ&PC4^UOYbo31t-X*b$upqZTVgKSPlAUlS+P;g~io=z!F<%cISjdSOL8aG+uRR#>h!xA|K;3D-md%vP`3LdzXA`|=+UUvz{tu})2U z;lQGs+WJ>QbJIi9QUd=cIXdl!J2ZdaG+23<#eXkB+rn1h4f6kUCJWJ<;%_IsFy4QV1)2?pBiB_iA-J1&!a&5rW0? zslbQ?T1T91d>S#lh*Ve~KN@EY%C~3?T|o^BA|!g0(<;Q1IxcXCSQB%XDoL83{y1$K z;dK&>vZSZk?7tC={}5A~A|qwgel!2Qygq^+B1EH#*Xlb-+1uhhs#~73CXyxBX4LnH zKxyQkO*Nsdr0)Me#VPVUs11$M7&?hBh9-yLydI)`6ou;zMa6*klk%O?xW99Oy@yqQ zqHn5qrY$}s3X7G=to=q%yOAQ+!{eI#$ZX=9cfQX7aszmwq}WiEm4}-rD_)%fbVnw8 zN6OrSaTj7Z=V;1RXF(4@-Mow|>r;;>Pxh(u%5UD0F7=?m@2i*ICI9ArgJ5tso`?;p z$+JH2FZHPIGU>98C{3GtW4{^I4fy2PT-oP#*_$po)CCo<%YFL{TRAC;*UV7O5tbo~ zva;nm3)b;3ql+G=WBy&p)9^#AG!1wGx;VKPTC2A5B5s&bKPsV3?|7d-ICEkWG%Sl& zmqU-vn*P-AgaNRC?zktE9^FV=k>kqlPWNYuXXK=eM}YesmYwwX4v~JZ*>wGO?uxz< z;AE$eT!u1k#irm1u6$Y^{ViGFFo&&P$E;Bf1Bu}KI_hU#fOpG1Lb2jV>wZVTB6 znH^km266*#xUOtm%G=}o7ba( zQO8eFbq7pQS*#z6m)3p3bLp9w^C0ohVArLyGKqpADJdIpUS~b>?sO_Wddex6EwY`N zohqxNXJYP-PJJ;HBzfMqiZQA9nHEagP{EL;Jl!f<=+oa-bGw6BcJ>Gx6&r#;IIz1+3>qk zPbRFvY`N8F_D}|Wbz=`Sro5)8>(xLhNQE4adW51L*aSkZ+?Zf4HpKkbu0pRrhO9j~ z6#wt4qiBkDgv9!=FWU=68^JKR>B!D=oNs$a9_$H3M*Iy|(|maZ; zGKcB(GWo~fPzJMlL9AxnDmfeC{aSwFGCcCge9i_|AH>{&GI;q1>Y-dVj(Z)7T{m$* zw96OeM)H^GUg*_=#oVv3I*DHaz12alJdp( z^*-#&1YGs?z;_z1XnszT&6vEW{@XKKK|G7P8K0&mAf1Xo_{-1u-$Ly~XAQY$9EPj8 z&~Lp8+!A{mvLvrt7Q(zOR4Jy(UR|(%g>C5_>z0s9&NT^;_m{L{wuU2#w|=1_EJ981 zD+8AkB;W;IYn1ry!t@BbK%Ll|_QgJAQ$5j}b|eGUxWoFRQnlOzH7S2dZF{Z5kv^a) z!Vv9wv9f{X*rA_;S~$-jF0E&H@pOJM|a^%;>wIh+8%bn-xAy&@y2 zMJRn4w+q>*>2*Nk?W5)+Taw!$^!Fvc|LbKY>yq%>ZeHCdTp8lEO)GxL+0(k4e~tTW zybaz^jO=?3zCt=7Fx3wb&)LGNyi((gK)#RT?%tvm>>&;}ymOE?@+)TI-71si`3jT! zH#~!W7d}qnyF1M}EU}RW)wH@Td{$xb!A?%D$=@CUAW^)Z_LzCH0h7)O>nv^r|4(_; z(T4CH>9|>Rsx{>qcrapXE9Lx5h5O8cj4QuUrZsSD)}Ya&+#$YsuvM z>*!%SHgPS|9TCyf$GbyNLT%RT4h4PH9I78kvbaB651D z$XM&t>57L>xkL03Rt({}pKJD(Gx71IKOjfE+zI+2=0iNoK-3TWjnWX~>i#N)bo_1g z*@pf2$Pc?GjG$ZUt!lIrNq%ZQo8>PAJ-&}-|3YS@KlA^zD(KHPdgYVIZ{=2-1ii5; zxyv)6F?t}SvY!L{nX*-n93S8{-VoY>*gvMQkEFzuebV{B*xd3lJx2U!Rv*L9SXXlz zEb|3+H~BXAi5^q8$NR6@4^Fq%Rp7t%HWDC!bJ4vRq1`^YnzSZ-pD6Or|CYc$A(2zx zWfyx>x+MqRKAnX#ZBW!iq}K5>a_!+Abak>YbC^_k{)6hi@Gm|y|75#ED?-0Vn*nmE z2gt#Y9WJcxC)Q0inASJ)S{2g11L;xv3A)`*(@IrpTNG*@gvKsDOs`dxg;uFk#ko#b zhuTG%9$T2b1(o5l8BbEDc<1-k9;?S4Hv&*E7_PJ2?zGP})pYGCYdkCZ5%9{XP4u$U z?NNEjGfi)_Q&=U<)>L+P_ZmUJ#$I|m)Rg&i2Z^Guz}`1x5RdDpo&e>nRa~ce;D$dj zPly}1rxK9vxm(EmJbw_e? zZql}Y3ech#JcYe(VVS~kU-oyO|7+HhSSfat^^50D3}|lDB2n_(?5B66H^^RmLDG_7 zr=%T`v%hS4T2-`-JyY5$TTFZvh4J6jUY63EdfOy`qmkrE2jw6qr8lQh?zjt(LvG#-c>KePlbk$A7P*{l$*HZiIa9a(*L9U@*T} z{St#)X!F~-gswi1I=+bJAH7n@{H>c+8y6@wkm`ylx-To8soipVVWN2Nz>J)_6K;9( zO@vq}cKJtXtPXUjCaVF4?A_4EXLAzl3jmd9R#noP&K8R=Am}!{lb;2@22q#nr5aIh zr%fyj86Fxc4=bN6YAB3Q;_9~snms5@vqpOPOP&Q!a_F=MA*_q`Deear^je;nQWISp16zq=bw z4NqsL3(Tk<-TqqGmd%tc6=yJ!^uSg((zI;9hTz41zk-~hPJ~(Uwpq~p)~ebq4X_pv znexnpAJ5A%7U11-asv~sLU3b|WLq`0w8&qu>} zEeyG|HC44e8WvesYWGqqK3fM_GOt4|-2et(+6N4NuRB+neib2jZP+%mJlcTyU(5US z?=io^cT8B!K186WkN0>{ZSG;Kpf!b28uh{U8El(kdptXG_R;c}k$a}?(JMW*J5E$R zS-t=E860N-pctwvI082EEHOK6B9zSn6(Xa-9Lqgb7!b%?ZF!H>7^QMI4K%XF z-(;0ubTI+GU(D1lKsCIRZ>F6=ne?8O4~Bo##}Hw(1A_jhodVNaTfAGhS<~GnAaNr) z9@(q;8$`Dr?ifld^rkJMAD1nH+x5eNK?g~8d!?3wy?!^gHqigXzB{-Ks8UL|+_Zo4 zlK4t=&!YU*zMD=@s*JS$OXcfDD9qq|t@)O|8sm1Fm~^s{a2Tx58>1%bJhQHZUDe7iFR8TtcVwN3{J<@*0vH`}8_Ea?fli zgNuZx2dDi|!NwUj6IODeYf~Y}I}HBJZU})|r(1XHK@WfV(pu4Q*~?Oe;2I=vuY*AS zB_)+cZ1$P_7QxYZs(Ox~&Dl9#dN9)vVEkza{yZXBs_P1$SL<_RU#ULfQarUk!bNmH ztF$`E=bw=|z&6Spe1XuGP_ku>Fe5nB@HFQq^7j)aQ}6|?SbkQA*ZfCx$VEu(Zu}dcP{Re(U+gB%+h31fdsq`DFLskllXSn!2Dt;`6i@`@RfG zY==xgseRcgP#!xA>RombHaUnlGDp-W+oI|>n*A)`oxyz8GdTxRR&5h^$}ZWMcH6GF z8q(cKD!@$-sb>i)f{y5W8boLPMa4LFxD!_wH5ezTjV0tc{V*YNR`<+ZWZ$C-JTfvJ zKeC+(i%RLfgPe0as`QblFDa%hm+k{uj~}3VV2}0dBNG-R;Dmv{PvE-$j(4A53aEpw zZS$k9FM$STF@cE9MRY{07QI*0h$ion{!rRoI}C1JkjO>TbXcO6RWcX;U!+*Eu5=`y za^0MebOYvnL8X+YNTEio1P7bU4?F!JY=@j9aBoKzwPwgZ`7b34U^=qB+`#c~>!}cT zBu**fZmiZ^u@L->$5dig$9ne@4s6F@5nkJZU#DG%x<<$RCLCLjC*MeD zI%gmjm3zjZXL2-L#H%X}E;ct-|Ecu5zi|C(a5lV`HvL%pM(k+h@Uh*;!5c3 z$3a8JLhd-Yj5xXOFo%dX7O5Bd2W*_Z4@8oktsit7;_rSZO)e`Tqp7d(l@jw$ybr56 z)Ysd(n7Y#AyYE_{5c%2A64>oiq!mX7erBDBgl6n>kY(6_?omG_%I2a15>`x>Amji_ z%WLVf3HQublYFn_*|?#rY8?X&v1qAV)S;xpzv>azsGUJAF$r(KEl3lKRkUw3ZpNQ6Kb*Z(+*F377hQ zsOI&GsqUku64TVb=}?mc7n`1N(|I^UQ-@1U{^oS?kp*;1L!JRXbr;iq>$BUjhV#1J zVMc^;`uS#t=g(y&F1Tyt0dM0y)R8(C8(CC&9p%e?UtK$kIvRYL_7ZoWoSh>vw4n}V zLfV-(u9_IX^VW&|g_8v_bTu`suDzhJ&$(9hHv+~ut^W9wS`FH|f)?b}E0)N&jv&is zTMK~m+zB79JDh&MKuNg@=Rq?K6b45((G(UE-sgM-oIZ*rtJG7hsi4t(@(5;+F72Fb zo8NI>d55Fx2|dhpV=DIHvy_k~)Jcj}q9{OZdELrL9$r4^xhnV>lZCu1?%3nM>JcPv z4P9Z9yhO!I+fvCRv32}D*qp@`;MTSE zfa4T`3I;k@tB34kH$7n+>eRkTcV4pMk&6j(DoTY%?C_?QdgpY>>2!S$>TUbUB}JrE z=g;4zEat*{bu$EaG#ZFV!vw}l_`iNK4`N`4CwSm{Y1gG{m%XdoN*StFTT?Bjv9 z{D&wz3BDE8@UzjUWR3lJp)uMJn%raYNAC;eJ#8qgm*?n`{*ri>v+$U3E4Pj!Ihsp? z-xkhm{?f@@Z+yC*u=?Bv@SOPY5GgWtl5SLgCEAv*qgFa&co@^Ww@>|8Lw3-7hDD7DDUB;TZ{b>S-o7}Omv9sAH0gFg$jgYC-~F+=P%@RO zUI#nLFD_b9SM{n7zImB&GepFqn^^Eoin)884i8y`^C!O6Y@a<#y7^xTqYEdlPMKpx zNB@*3JW6>S*XL1!GErdtxuAh=!|BIZvnwPYwYXV3--Cp&$MpKx4LZm>4Y~4`9k5Nl zo;Ym0nMCNOK6*^~#4-G3hp&fbw^55hwmJM_F)!Yi6n) zxCeT7Tgr7BQdV2i{mWa;LSEXi*K4oO#XDx&=ta-R_TA7q%$J-R(rv1Prqgl1Ui12P zb#IxAMEL|f=LX}K@(}m{2h_C)J@}9BS*AEQP%XX(vvek!T86I(YxrnzT;}+})}A}7 zTp8|b_jL8`^N;`)g5X8~`oMy1nRuvdsw_XYyw|EFoh55e(_4M7ZI#6GO|*8BqUq*3 z9oo2U6q?!4^Z^Hf%MdBQQF|`I5mB_d6byzT9a8BP+_gu4v*U5{pBm+mp2LKiwQ5|( zcr0#`OO{?;&7s-pr6&J_w;H!#f`W&R)_*f|S^A&NL!`}GOAT3i1CH&o%V|z#)i|SI zecg4fommktqXRL7q3%24w-@bv&sI%?SI;yg)l$|~&CnScN36l-(tabaQa~nIlXt~5 z1gKz%tt6?fhmc9cS>Ahh)P55UsE9QgokcM4G%B+0crErBm)<1Jnu5Y+?)G^IJ593W zo%x=a2w(6_#mImFT&Atd^H-C`y)t&Oi^zf<>RPuc$N%c24O)Mj*%aE^UO)SO*e&0t z`<(FpUe7BS8X=bzMawMru8KCCZeEW;-G|=x3$Pk9e5Zxfl6Il5>VT5P*b-X(VX=?h zGG>sc$%9+g0B!^k80|8y%DlW*s5N*W`tdvGr8s=Ph@SSldMD4t+rINF59W{p^c&Jo zO$52Z?CS)sGXjhyWj$pE)u4RbPpNU>uW8i_PAroO@2}Qg7-jp^$L|(9sxn@IPm&sp z1%z(#j=3o1Um#WZOwKT^tU}CN-WBOX)!=n9i+r_jz%KT>(h!+ zSC!+H%kkl2PnS{Ap_XOKAxhJd>i?(>+6`h?bC#JQ&IChJJHo!dQBbjQD(?#_F3}&n zQdBloyM0N)?ORM{#FRs?(3=!?!c%pUmK%zmDxnOnpc`Yd?E!mt)<}S(@jowkhC1Bu zgW1BLrSx0VDtM?6j?MmX+^3Ae0O7~RR?*=RorW~&ndl2+Ei*W^`RHbblluc>ooknf zEla*tv%8kP+WFPJ%Onr&U1(_#KS8hglSg;lhQnj9mS^I>iVs<$TA*(dGnG7rK%yow z4;(O+jl0G__7u(>Wm#UTs#`apxm_Bw-}M8^&prBPqSWL-*lz>wSG67#Zk^emHEXe(V0HsZieZxz;z)L zmCuV3any%N_F{X5sl;CONi~VGs)OUQRM% zho#0%+iXc8U{kB{^#7EwimI1mw=kc+*c`WU#=NH={h}+<2K-N0apr-b=uiC0Vf1C= zg};Ol|1wg}S4l%EX!mhdFOI>_*}Fe(qxD zQBv$nwx69*(UI@b1%`G;6sFSz-115_$_p+jK!yCXUGQvD*1(S3*y}2_gOTS+HkpE?$E7Ck^Q_dpALCJ9{J44?;&7kKM(LGHC@u( zNio*}&MdGjX&2g5Ge1vE)r23n#of^RoW&bk5#OlfAYL&$0gG~AVU$+jO4@N%yf(?Mh@8;D3yzeZ4#lQO2#JO? z)%jI}YBi@pGtQ}MyV<(sD=OJE)Eh<;@MWk#F6)e6wVf5w3ICN$K=`Ph4*F_ofz%wP z#s5;14#AwU>)(b57KC-T0BTey`G-+<QWsf%#Q!EQD>sKB0?X#H{S_or^&&|xg4 z3CQ-LVivotW$arQ>^IU|&Y$m%MpGKBO-6n%Q;#T2889!VfZ50AY#KdBsy*^4&bJ`a zpkJ;9MJq8||Ef-H6z2&JGr&!zuhn6OqW>+OT20RDym5xE{LX3tQ%9P%joG(6tK}ro zS$+3w>*z4 zJ}a5lH0gOF{Steup0_??Q4`x%?CSN1VtEcZOSMK>p7B09l91mH6Yk)>%EBCNX(|;B zWXxMRo7b00t&#G<=7-wWB-J|wu8w_xiX%wf2y-U5(78x%Kr+Fi2e?$lEkPZ3;*z}#vyP8uB5SWE|wniWhR^z>m9GN>p1Cf;VN}z zvrGc~9rS^m^nsp&I-L~#i(*J8T(FVd=@YivxB>it^Hqj=Z+^;(T;T}^=OtP~`5N+7 z{A*TGXJ1-VA8}4n)d((TOg#7OFGWhB4A(FlfK{M<_bCQE<}6iEqz@1s?GuB4k|>3o zjKC&0l%qY%N#x-*!nRF}kPK&OM&8UR*$E%5%yddP!G8{T6~h`kD~nwOyfiAUxH435 zfq-KKze%pQcSJF zYuox<%JT1KQk|udW>`<{@jwGw7+pq($k!36+@<1_D=df(G+XLC4T|j5JU*FZ+PKkt zDvKC|{wA~yyM|BV-Yc2Ira0Vrpg1(mGg7?~Q9iRlbI$>AMJ%#VzvvnS`~xgXltj<{ zu5Of*L_Y4Th9V;sVWkqIa`H-%O-% zUJX-R24;bo=Vf+ivQ2s<>4xuCdarMKEooLVd>-a2am&9B&EqBZGws&lBQ_6g=TCR> zzzfl~Y;vN&U5itG=~9zP%B9JWbv)+~bWbKrpy_A_w#^IXjRe4f3j4Yu3%*j=`W>4I zebl1VNTpl%(CA1Pp;z45Blhd%VV9ojze$|`R^dZ>Z)jc`ih8v6QVPuP^YtvZAvkNQ zN!gCR9w2Cn$fYqSDcwu?6}hivtnx9F_WR6XZmY)eraIDT^^WF-Jw)JQv$3Sj+ z!S4J)tm$1GO>16ifghq%s_U3XozOG8O)ZD%fN|>*s(#U}F6`g<=CI#Gw(C6kpK|Y2 z-G*a)2m`JoOmXZ(1$vk1x4Lt(CU4*hjO(fHUCs4q`p>EI+#dnX9TY( zq*>X-I$tdU2keOv-s0iM<1tWR|5<5WLQ@kh1Ul3~4I0Ne!i}TOJ%Kld{T4ev^Wv5) zkN3W14@ITZFV>5Z7wYLJCtSTOkT#hb_n^Wp%~`cnOPBD;R5f>5r<`%ppjZruK$>J>gKd~o0+gy4aw@`uwT)1^Xj#S-Ktt=k$mw1h*>JEVyZXB4KFwo zCK79l(yo)dq86^xE8CBV@^e*7nmK7yGZJ>NaY6q8_-4Fzz4#^8A&vamzd*=C3<=Xi zs6BKR;U{9~F#_9jJkkrX@_je^Ey*H{c0Cu=VFHb)HCp;KkJw` zl4O%yI10Xo@-re;lH}0)-%5*&zIHCdCvK6j>+4?){{%(8?l(JhOYlr%OOZgF zD*bm$ht?)l5%<~_@+Io%!;&TQnf6SK!6Cd$pJ2-WGQ)m8q8-fRwv=WD1Z>>v;33llv5$vZ2qeQV20XxCRLZ%JJ2*xpg{QPobXcgPCZ(I)q(tz+_2 zc++4|{9Ea9X_%u*zxL27A_Lz3nNX%Z>ojfgBNKOcPJ1btH-=x9B)*7Vr2=dZ!PQ(23S)}SaextuP$evQCm@?Kc5lQ9cx3M;a8W6UWlBCjm~V8-E-@Xm2`^b!_JI<++$lxeG^q6|SDUD&9F) zId!HeUujA1-{&93JMP&Mta5tpe1jU%^PbCZ-v3H)MlU=;GWz!^O3t1xpY0<~x22C+ zOmQ#x;SOlB&U~a_^P~!E{#csc(mPG)=VT^8UKlDf3H^KVKX8-v3<@ z1itEHIM`qdeHui|F8b2nY}Qq$e;jjT9Z86Y#4z?=p&f9tuQK81F-Bv?xo|PZc1*q1 zzxpHU656OOzQyYv#uj$tcSLrq&%zbozEa@6+jl4EMxJ6=2P4Z1AO1|2#4}ewE&p|K(QQxB4PAtGEBIBUoJ% zNP#~<1#ZxMBwnQDH1#3b1=Tg0lgx`%;~Gj+;`+Q7y?oU~_5u{o28Tt&xWOPymX99o8a3gv{GcQC*liNnK8Z`-n8X}1#eD}+b9;m6K7#6Sf=!8 z%B{I?SL_?Q&~Jaeh)8CL5w;_ps55R6m{|#O$Na}_^W}Et@|LEo3b!ZT3tGORRcgz- z`U0JJ$iYUp0x)Rqd)Xzpe#)h)aEGNWN>@M(V*5tDKKTLHN2zR==bkrqTyMYuUFt)& z%!b_oeZ*`KOnI~f=NgcjO9<=eAz>EjY+c~DdE3vnj?smA-qjS%XW7P>iz-)It0lvF zwtY@_sIEDi)a(W<-8ti$&)!D7=@-BEAZ)wpp!7-=G=R9pnN9=OJc{t`-aF!O{lBs6 zS0%+u`d=%1WUocICS$wwnX);8IyR(Hf=V43WEa!l z_|zX}$M0v^riyESB)neL=5A4*+B#=Zb+#(#&nL3$q?@le{+H>K6)(u9cr@iHhyVFN za*WmdYAKwGb}n#`-(L%{FCsi8)ztQIRnu$m>V%NftI#feqoM!>R#z%&6#f-tG}O9P zy5{xSI;QKlkqYuw4P07IABet=sDF{F#<(0m7R@m95*DN~M`QQC`3FyX^L90;wL*jz zdBzvXPqU_oCr(}AOfF}RR#YE92|KZ3Bv4pU7D%$U+U{I5Wp&5C#eS&RS(d;y#uIM? zJx?TYex2S0)viorz4nNncEBdgt*nvQ^M+p5*hAFrmdL^~@&xk3IpKm;R$}}|uvjDx zQwj$$*_t|5utDocdw1lcFKd@-LBELKOm=o4mheqK+S+z|6D|Ka_^$@5BHeRv!$>XX zN3zl5TIkxF`nE@#o-pG>CIYVt<@dE3Ldxy(C)CFeIOOyG>fy=i;A8V}1uWK&;P!N0 z^2FOyt(a7KD^L{%<-fT+jxS<}Z!g}>jC(M;(jd zmJ~rn(e5j#Ly%ATVSLl>z?C-Z=zSHrM4>(ed8scxDNBGe>E+1e<{q?T8$U@q0|QIt zy4e5KwWJ)buVkQEPpqtQ$e*qB(AO7vfRU0*oLFFU!vh%d} z_JXIpg|9*VpT>~;*X|v|nwA3J?+D<$`zpn@EGmdjThb{915XG~_}lvvZ>o0M%@Tbq z57(cRe(lSQ&|PR|(_K@*uE5C&tmMQXx^+P4DfQ;Hu2T4$afjnml(=DPoIK^A26vsZ z?(Fg1pbVCq2W>z438Nvz-Y~ZJoVtQq9Ax3Bu8-OoC;t-l;Rhh^*CP&4=I8j|h{ zmcY{g_R>lHe;BqJ;BU%)M2GLG0Ix35lS-;7`A%h06-@!0ZEWZm$p)Cm|Gh3^MC$ zq+gh?L9t*+e z7uAP+=IpFr@fRQ5O)$*iyNFJ>^_{;|)tTEABLyWfF+Yl@L@G1)(_9c4oY#3C$OG3L z>M-hsq4L)68mxGN z=nO;|Tq@0Avw7z;1wb_CX3>mAPyC z8rw7DOZ8+eQ@|(iTmI&7Gjl4zU$wtRff7KR#}JQt*&f{BPf+qr(N_L~_XJsa+1#C_ zao4wm`&(PK?S+7#I)b&h(&U* zhxR#9RIB?w9^ghj2BJRweF_C2m~`P~xnu^p_6M*ks(_iY=8~Yp+{}4%{u3yncAjuQ zSorF7!~|5C)x52j%}pzTkc)x1uc7N?M)x6(g=@TD9K;!)Pu#OS1$+bG0G^O>i3+VN!j1$ z5dQeS{twYKIcFMS(&E@=>x)SH8+`md{t%%W0%EFHSN=zwr5F%ymc&s~RzMtXWwq0X zoTSm1y{JFrq^7n}fkWY|HqZymH;{|H3oO<*#)CA1ea=IEQ!1Cq3}?eAS0LzrQV(mn zVo>lG?qRObUXSN+f0TB2*w-u%2KWfRwhX6c7p6%;qa){N)#Ra2Q#%zW4S$E{j3?N4 zMSuXgN9)et3U(t9@3Sq=bH09te5p%4Dp*7zlmY4=asQ{es@QcsR*OuzSK*HMHV2&d zgfFS4MtbO+ebc223V&uJli*fUyVbqm^E2vUs=ki;ijtShce!cxTbe7K`_5sH36EaS zX}i$nR5cx=G~!ktP?e%Wa8^a4#;)^D#JfMNOKJI)wpL_xfWD&M9T_?;OgjL80ED}J zjsCrOI;0?f-l8poVeMm&S)H=k226a>hQ1kLE8Gp<0=_%G&l>yQGNa=3W=sHwKAlhd zcWTXOO1UlaR*0|hzuP98O#>eKzS!Rz)qG;I`e-@~6A6O0xl&9_noS)s; z&r`k|IhlMDBa9kKOU3#Q0&(-d03z$Ve(g6$Ul}^=()iU2>>V0F+r!{M!0LNNIL)-v z^TB-Kaf~Pb@m|vpVVtxOFFxYb`u}cs+MK6{k1D4Ns}2UDQ6Fpp0}VZQ*H61}@l4U_ zF~B=|^KFgFIOGK#TQ19NXyxRFZM)0^2QQe>l z_E|)5#ddy8PPBjc5^J~cx2LLn=RZ#TmvG@k<-`nuCuwqD=@?}!2EQ_` z&o-|305Aak525$7qs#el>vfz#%FI|o%d;*8taaX1BNO|(oT6VJcwr8=0fw|4e-PKt z*(I%ko*o|idlkQBz7XeKE0006os$v<(a>2F_#q9@5VK1CE5kz}P(OU~%TR$}@9Z4t z2vSy*^4D9{6GnA-N~7;uW#%`!Z8;D#@{&0LSU5H>gzRyw(?520et7HKpF z#>vKI%Q9M77Nxyqfd25aHAT|i8;u>f$7IfA)-sQ34Over8ej*@CmRak`TC|NY6_4m zLu<+_=jm{6DF!T+K7SEZ5-*A=s4zg?<*l`mqM@{Gz-L`dWb4wmSyxH!YLZ@7WO=(U zv#2xn*Tw>UO~QZgJPYHFF~{H*gp+3BCUdfT%b@D zn`H5hwAs=TZ_3(|;Kx6@sQ5?p18^Dn$oD13fpO*k7&`MnrvE>VSCUFummFcquOu>( zo2^oOyR4EV$C9Fpg&bo?5|U#TLXIU$hb%|AW^>P#mHQrsVVGTZZ$E#3{`&m!dB5ME z*ZcW=JXGU@ysct*FW!}>j5!FZ>Xh6U(;5=%KUMP|#?y_x1}v4=`+mTFK27R^HvJydjJ&^~ zt3N4K>W>4PO$n^#3Uk!S0nk3IFJAFMkX9JwycH8?MOntZqDv=l_PKvg5bq~F6Q^6W z@czB8GJdr2chhBg5*_kIcfxMjM7=DjMVwrdeBqes;-3*QZNa$ z(=k2yRB8&n9iBoDaekJ!l+%G`ZRPs#37`iV&nA}bo1{Cxf~egxFW>U7SXkX~6_jhg z6uyXbAn7sw%1_A|ZhaWCFR6Fed_VzY?LpFBruK+}=H85}OvEnfAR=`LM|+~R{BEHl zDxeTeiVK}zpgakQAgQm{jJplJSQF8{LT{W2ekgzZg9R>X_=d0Tnj5;PNvNeQ@YV}L zS*22P&w#7XA-fa)GTGnKg2%~r^c{uLx%G#qPc%jO&(;Yh<4aw{I%Jp(798{p>DWWG~o;iHiOiM~7F}JrC^~EYG9yaT@5g z`U^;qKbX!D!Z?v1EHg)yXjS0`46sToKTL%#Q*-CDE~ATh^Zwo{czlx>f3~*8n9d`Y zjhEabJ#Iz(hA?}hc|FvTyT2jg*r4dI5`5#+#G)HvTG|=Xo3hRAho=Gim>-rYs<^kS z8@(;3?uD#(OB~UIPRHil`r!v>3EQsajPqEwElD7#mSbG=GW{*+T+u?q#jYQ$=Ciqe!mBAVJ z5sZ&V3V;nNOG>p|{f^MJZK`aWN&_^tE{&i1iYBNua8t*w=EcFRkbA|yanGpOoLH3Z ziA?sB{WG5jQ_uk=;gwt2hS!z&2Lc({UkptB|d6P`7oYy#`<+T0m0iyxtr&f$wKfRg{J}a(dT9p%g|>3k@7@j z+hUxneBbO~O;;y}GY|M1vJbRcpMInaP%*kEETKGDk>}XT2=sc!Kz~NUx~yJDB#-_$ zN&DX`1y{c@xGpa-r~-fhz8b9V|KeZai(A$0Gt*JpVtLSb@y17;;WzAQTLLre7JP;A zN*Porvw4`EulB;YRiI(%SL;whtgb zG2zGUKyYx1f=5`0moKh+bW4s{bq!vr$sIpsBd&CNF)?+?u5q5ToODFT0l7n#a7u07 zOar9AG0Vr!cy6{o609`+#kwyD5IA^efo^L;wGADsO z>^L9J3ja(E(Bt8T)%Edvd0%Yr!}}!->ZDVeWP{WozM4k3KW44%mSi1~P8rjGqGh)? z_{3XBMAli)E)GLLSZU>4MD169d`doWWz7}8<>^2JX~wS%Bfg>oOkCe~TL0Lq(%$x} zQ6NY~BFI-wdSiY1ui^S6$2>WR+j$#q9g}JK2ay@9E`6H*1k7+i8V8wR=^MzH6o$w( z9}{rmZ$c5yNP}b>ZilHfq;bolY6yOF<45t1LQ62nMp|O|6Y9RVgepqICRPWE_hm9} z2v3FwT1ehI?_Q=}7a7RTMTw7nC{N(I4h83%R|M=v)j(#~?&d(J zr8clBt7~tp6dBF7+MI(@qb|7r{^cyCRq3#q=}HLp{PN+tYrX|K0~kBd?9GgVx5J0zc=V1Czg!cjn6)>G*}V+tAB3)SnS1nBFgtkr07_Ze;BY0U%0QhbFOX`!F0@_Xkn#CtqyPw_GGP%-0f)6 zmB?r&c|pgkCfsNt?rx`4tQ~v+N(1Q$-)a)J_fJ)lbk&B4*K+R=jGoh~9{e$NR)f6= zO2~mF@$`--n({dotKXpkigmS+l=0aJNDt@v9WD26gVsmEiT~=tk56F2<`6Abv~T-Y zzc1h4E|TKM)ovFyG#yx>Vf2)9zPlJ=; z$w3PvFVWxrq#3$%7513|jna8(Zr|V=dCQmjlY20)oonTHJMh8|;O9EzMxLzHu7o1> zKuwW@U{u~$1BzZ6a}fXwd9%RG$br=}UC@D{E5K2z`RrG=b-MfuBlME(VUv3a510(p ztm~+HVr_;e_A$SyA3V>w!a?!;dx>A9F6bu<3ExuR$~^}eghk^PwI9UmBmSL{bG${j z{ycGT!KXR9H(nowi2gGn6Fc1Rw&pv2gt>fBqbIXt7W~;9VXcSgAfMAmtSHYo4Z9eb zDq8U1COWr>rxbrSxj^H<`>l72qa1fHztpix$#$+a-6<}$+$K6R|DTpxi?7tF3g++H z0@fC3W(u}0H7!NmhVMfvccHb>?2{SHi}-y^4`a^WzWBe)M6z80Lx^YTe>~N`(z#NJ`g{EQ_zsVM$QfkF_62B8=|GZ0&jgFtbXZ+p@@rm6uz?L> z-CuHYhxv@fr8rESy0*?(`l?WhKO6kSD`MxOclo=G{%*~o5aJ7|oGi04&U`MNATjq# zfEp1xD{1)Th_E@(Ux=RC9rP^jLS4u(;4`(u+mbV^|6^WHK_O;{Y@8P!!ie;O+J?2JhYrncdKh&k2!!&Gdb%|r1q!rr^LE+U405)xEvq-oL z7*0Tv?_i-;hoGkm@EV5rlwQ5uUKAXXqXHd=C!77p8fCK{34egQ7$ zT!yshOQ_{S`;ejV+r}i&8(QgdxbY%EzpSwxmOqWjyx6)XuK>4GgUvG;> zAQkwBnD!4~YOeUoo>@Ojky@Uw-RjZB)PnscME+L|x7TP#Y1`%LNWZ$@xbR`@TJy2R z??vc<`GE6oF3hEFNt=@fR2r7?)hX}iXgvYILfOe(GDZznQ@yZ`V9*hhm4#vmg~pfXoQcf%lB|Zpbh#^NXy@%&7Jz z8dVD_=UNDZ{^vybITLz>te-)4_=+QRvmTHI9sRIuR-+|xJ!&uqaddoa##=reky1jI zbZRHbOY+A8x~={ybyW(|$cB~~FIiACFp|rUlg*L!%|S1-vTysJ&7@`t&6iU`Si(N# z%=KO+G6`x5=#j?;Q6^4fPVc5ksTi8%Lij(a&VVYWA%gGm{gU{GxVY6JsLGSVP2Bbg z{|J(im*KPE%f`GUp9))wD)yf(La2HQCu-#v_8#-I#YcU>7+Ci)IWR_v> zlK;bNp2plD@&5z~U&(DlV>NK;+65w?S+B=kmeSI0B}Ym3A3;Z(+qR@zWL`!0>vA-* zauYsVl$>8=on*V^y$N<&RYdNNouFCx0Dn1^qFwZFGQ7f2Tf`;(bpG`z5w$g_xJ9yH zERm|F$&)kj)p<;LGlAlIlltcF81&1=>A*MPv>i(}F|wNNtDVW=rruM2e|uj=*5gtw zcFJ-E8(%XNEgNvu&sq^X2}(iZW7&ok#jEXo+}zoz%8Tz~8NoKD#!uQ{<3=b95T(3U z3vKa=k`o5&?uyUcr^k$j%@9RKc98Egge}7L7kIIVd2~qJ9G}U;}iJ3Sx*_% z-R*#nx4)fO{cb9y>Y3e!#3L=!s#|mx)i|F0l~<0|+0_#jj2U-1{eB09zHxbuyL*U{)Z^*HLryS2>mN?+qlT> zh-*msFA3-JQMGOwF;Z1xx^ngJcY^X)Xx(X@+Qlj;({-+wxIx-1ekPvf%{)3^0A{Q5 zv)^zX_8rH53j)|bLs^#PA-Z8#V9dIvK0N$GUFbIr901oEaW-2o*=D zd4-AEoJxQXvFeW%tfO}V6-KOvndeVrOj>GJR5!K z=rE{+`UdDII~fITgW&G6)P=0wBRfOYGFdmsozE2ysNVOwl@o7nHtPUJVTerk8%-^e@yPi>E&_EN0;jAuR1J9>Gv{u+t1O7STmD{XNgOV?jjV;NC{hMh;1kh}hA@2JgEaZ;o&)4+u zV3PVDO706Lt4u?Uv;%D#eqfNFT8udWl|A=aRd)Q=gjKzC&l92+37atMyNLflfVhNh z;(b-@8jR4O?iGavT%sB*+{1^!h`=Q`!|sc$oL|Rg!`uBszlhEZGoZrMThLpU9nfCl zeFoD4_>%Jz zy`)j7$yZ=1CZH<_?6$M4QDJD$Wuv=wPro=luFIIG+xLN5s8TBe?+~C)g!wixPR0Gm zh}ek|K4C;_heN1K=Um`x9G$pK#+9|yfTDI{cED`^1FtX6ZsHO!-p;CBZMHYT@|=*` z!=U8&izxRjPZm-y@`z=CU!?CU45`*$50K?w`xBH?ko8z@QGb^W2LDPh^nmg>)_w}? zfSP(TV!JGi0(?QgL8kq=uV&vSuMB-xZe(d0-s@kXM4S}QQcu#pY&YLNjhn0jMz)|&%TEZ`x)`!E`57CtjM>;%-wBTryEH#?MgIqs9nB?mbXZxc?28> zLG8Crp$X*RS+vJH`8v~4u#8lR)%!!IarkxtC3?#^Fm5Vw4s9&HK`Rj@oF5R-Zz4j@ zMB&z5_JSIaG;a~UkJ3|hOzy}&7bayWC-W9%_4F?`%Ci{{!N(v@VFU?3{3tx0mM^G~ z?AvB|(UA&*UeANt&n=%U0+Vv=;$p3sNw*0#`|0hUasW(@C=Q8HX41|~cPO?#w zFU)WoQ=BJ)F~jJgOCl=SIii1{ZbIg%-FT|Ae0am$#W(b`5~o175nD?(y2KxRDN4}N z5>se}ysb^+^bYg=|J~{Zm}fG=t;ps3m++IO**h;`VkM5$*Lb5#q_9V=k4p08_f%xC zqtU`G+L`{>Vo>_)I1&?Tn^zO^Wv9R{<1Y^K0L7{Trq>hRnEzDB-OiBxFS1KFG9A^| z2l-!7#l&H%B$9D$NkOP|*J)mSp+EenJjMNSN72_bLoWkzN)as7V5UZFH89+{X*4J(j=nmTj)Wj9+7np6*?~zXs&>Jd?jB8esG}ZVue2nzBwVm}A`P z!gSSXB|RwG_m6U*Y7hxILp*^MT6kp+F0-Pf#OkXjR(yE=_vGfR)&wFNYxLLc0JjQ6QH$*e`=j)j9_}Lo$mYqyG%fcWc7y!syyrp z&Mb`nMuWu8k=0E7T1rJxsP|gVkIK%xRmMu5nbf~$@E-61hRYc7K0%9%;-==Qj#4gg zD~E)M{4_1>h1alD(d%i3T9D*hFS9IRJ{Zj1?h*Nic3A9#l+Tm85c!OgDK%&SB(Rbi z$K=RtE?G+L-s9hjWfJ5-P6nI*g;KhxfEpE0%_?G7<@oolhUugLG3WJN#uX z9&E+Se&F5%GoS-b#LUEF<)8zLE(F<3f51x#p)KT#Er8fUD|+T_gMYMLmepumAJ4pe z4iz;&vYG9k`-+0vNle$=*--vAVw1rA?U@J&cpLKAfr*XO3+Q{R-;B^|bcF}{t)kO% z(Zgn5?R#3Wq%Ghqt1DH1y`pghp9iL&q)Tpt{hmn=65s;+f|m|f@W4CvF^iwB7jcvk zqa$VA&qIY1ST1zwf0WtwRm&HH(|i|;)b%68%s>7&g~t*jwu1cx7N)jm7Q{Ti$P6eJ zRh{Po>mINSUXl*xqCXhSxZIYe!sMTW9$g04?dVoxo4#m+0}*kwdP&!9NOw_U8(Gjv zX(ep8Xptm5+AK^pQ5#|!e&8FitFAdKroc8MP6i`YW8kKr=@kmovEo7Y6T*Ga1J1SiHy`>eBz(EXNUBPU;beQ_hGJOz|#OR@(L8XTScnRmb zsLU5M$=!K<#O^r+C054LV|>jya+8@)=_C)>Zmz6GOYMw={!|O;kB&;!m4yx{)uZ!0%=)M?Zq8$ES-WI#+lU~}A6%wAY;OcJH!uPSZeLwAXO&2rlD?CHd-qXid5CkY?1o?iUzvT}$%c7?3*oCTMgy;52zhjuwy3eqqzsuZ8UnYacN&jn z@b?J4`p6GBtwU8xvd+Ynce>1m;FVq-{$TWMveXU9EgN-Z?#sNrQqU0IzSnJMScugn zonAd3H_&}Wqx;HHBh@(RQi|0Z$=oF5kGDcCcmem5Uk%(q&8Doz;;*%pS?Fy}?g%!u2B_(*qlY_2H}JF6ln{IQ%cv#2A3u=rQ&T z9lcF{7FO?L*xKh8lWwsxgn(HNkhlh!4{(V-e8mk=huUo}{2e2d&e*Dxue7!Y)1 zRTdN<@JuOb)!aN7HSR8_=v|^@W3!Q z=rF$VH&q(3hwnP~$lB#5^XWfLUksn|sf9VsZ}}u^kZdo~U`L)A|7yAB9gh&&@RDI4 zGPd9*!8l>=SJK&9@5)48dw+*II*h(Y1QYk*>~}GaNPX7c9B&rA%GqkIHI&3t-QhdF zAFXVSv!A)tq0mNMy}rcnesp^6Qv*>)wi^cpJ~19ZtRd1UljT^_PRUySkx4uNHN06& z{&;sSe-lR9teIRz`AK;kAX(|~*L=g58` zn#FPdffn1(==E@l&CpbFlp7@BaFC;Rok&%Y6Q0darGOKU=VvH_T4W|^66NW`Dm$8) zGetisS9UJuSN4!A)nW!X;Gc zCUJ8)zJD}H`53;H@Aj@y`Cb8PTt{f$w3dRdTh!HrLxmTX$c!~ZA!eEXT|o|HjBHY~ zI^2p%1FBvDLI*AvmB|oWc}?ewLyTua{`eED(vgmf4x0bXNh|3=0n^oX6uGH4;#O#J z&~*a2qjorkl7-Mm>uiV6Ijt(|mWl_QBrYl4Uz0DM?#W6j5F&BrYb=zeKHK@QDad$1 zH|2Z8?IGYT#Jl%Sko9XOL9GtiO_=_Qvmi2|`(jyhcK;-5B9e1$7(1>i{C1pt3LW?E!n%^v^(VT6x z%}zhTD~AW#LGGu-ScG@@UZo)W0XIS%EBj&=z%GSTxKwUhw?cV&y0t&Rh^HDAh`C(B z$h+92Abn*ohbUbj?aHeR=kiv+?cb8~mY!&j{pgx^fqA#?^yD?=i=9nGvfXdt;0p`< zyJSu3E{0B8QQpL0U+)Vv?0Gpq`tM+FtvlWz@5LE3o=Tp4j~W84OMpkiKe4utuD$=U zUd=I8O2qp?1~V4TUVY9Ed$ow;LLS@pQ?MF0*m4HHZ6ZjKY<(8}cGDv19N-MbFb95n z(y6=1Xz`H>=f2%yvI;MVW$WpPV(woI4eDyz7F*zf&%TU88{rBBzDOO7lo+qUe5*@^ z`|`Fb1$z{{o#lQsuaFqGn0OGpxgY=1 z|1`BocB7Hy35Rfm-|zb8*CsmfncfMs`? z_vvaQyaFO-1E6$$xQN|4k&f>b`vxc*U;qeJkgc|KJ-U``&OEztvW$_F(bh$={ z^)I)aFMfJ693QF07iH$W^x^sl!bU6?{Or1z+5R;1PxGOl1mOf*eu~$9NXm5-MEKvU zmtS2jA#*d2=51x)t{P*~uVQrCDB+*bof>vruNIQ*qPriMZ~Or?ea^KiMA=tC4_Il-e{UmGh(vBlcWxs_rEOTu%j&Erua z^w}A6*}Fkr=W%z)FIvDE2$5Z(f!_;yA(&Uq=tHpD4Z#cKDFHEJvXK6YlKi(A+w7a{pkM07u<^!bNFNLQ-9Q04vFMzcxITxm1nt!9$jeFYslVJ^BTFY?rO&Fk%XEZOq*5z z2sMuMofY%(ra1hW@w-2D7Av1ueq1p<3B)N|G|(Hdn1wMBZt%qgqjW4RE#!|<)=86LEwXcrQWcAXw2})+8nFd!oJXuY57=B+c+s2_3aMN{0}` z?UE6H6q`f745CiemL4zNu`Hp_V}_hjC0ls58K_3%Q#wBepP^bNjf&^tmZ|E&NRb`M9sm+4DorZ-3) z!bAy}1A{Ayp20K1fwv0nIhO6TKk_#pA{D^&T_npC^vLEsY=I=}dyQgu=MFSZRD-1xF8kyh z!O=|K(!zC?oA=EsnnKap{Y)1bfCuf7xPj{=`e2xw0m4xvUsS$!OZyE4|9APIuR*BS zdDKN6m>46FP9Moa8%iO6GA!%@yM&m-(o}n)Cz%~#CnZ_-f{;41XZMI}6Ch#clBfpI zLASb1>}kBeycN1o)Tsz?Su1@#n58m+^3nPED1Z&aZAEAgH_H@ca_vBoAyUg%M;yA@ z;exl*T1Yt~U`>D)hZoB{Kds;~EW3wtgel2Mn&;Vn@ApaSV8|aobRGrIQsQ7{gQ?!9 zyl12GEjNQ_5iFs%3aM~373q@Q ztU3d{wG;E}z}OkN%|HU@ATLpoO95U+P3yIK9U8;-^W9`_E%*AUye$(LH5riQT44{&B=X>wLa;$JcmWU?b}< zBX`$yz?22-gs~DrqkB^LYo-Cdq3&SXS%giJ-5Tt5#?#fgX=L_q08Or6cVS}O_6wx= z4kTA=0w}yTo_Z7mD*~4$2S3^)o~+QtF80rO{W#~{$6lh0MI$9ky|b6~<%`>97$7Km zpmzvfV@!et!CU^7 zZ>_c_;If5LoVHPLtUTmLfA}f#l5L@QtI_!5kKGI#o~l)HP=(IRj995^t-PPV(h#q2pA+QX5A5uIjoh_}lICgazZ)+?0$QV* zIMpdDGZMlxS|fTf8dib#)gmZc$@gD_UBPT*WfYYHGb5I4-fr1}IE{He(UjT?Hv zb%{^KKh+T`*S>c1;xV#|!Bv_N;nluy2lT!cvh6?8o0Ay%72f<>#QBu(I@v-Mv`+JH z#W}%x1rzC7_giB9c2qQWOa_>9v5M8A{!fHEawP@nWZjC^4bc=mbB;$8CNYroYf@_5I15acpSzU+|O#2Xsx6cA|1Q%+g z6STm5OP{sOVtXRVnsUYmSUmMPa_f&+;pB!=?Hpnn1DO7t9 z$gmTdtakYC*hu2lZxt}emp8~mr`v!1rQY#MRtNH6!gSNpeRVl&(WC3$1lH8lRX?)n z#I<*fG1t1`fghL+=LN8sb{F2zjE2Kt#Oo(hZ-X|My z(~;iyTF?i)g;+_x2vLhlz$>sYR!@T4+Lk0eG1RK_KD5fdSp3arM7;a}r2o+C(Riwp z&%ghf$?nqKE>PZj|3H-3o!1^k)$v`OJ`!0NRoOJjumkcDd1KhOta2ZDA3jivJm{05wz2$7rczQD=9m0jP% zJ}B+?2G|}#tw#534!Axxae@)s>@nN2n@V`af;x{a= zs_mK%|8HdFY;?S@K2k2@JLWCf!~f0GvqEmmX9>qFHw0hs+NFOPm=tkAbVPufzBMK7;|$}U>{?o@;@lqus*pOdkje1GI2wOX z_D9O?$=yl(kH410b&7JmUx$_|`$o3?3m`E+!k`GVY5kd+Ft?xhE7gbeQq&fdZAWc0 z(ADW(@e9gHq?f|ukLGcRH-psYL6_GnYp-jvSyfX4&s$pt0(>@b{%5(7CJ5OgQaPd( z0}lS<@-wh9CkcF&XYm1ed)&IdjK3bs+rw3|ll8Q&GXFTjzK>u(ka9pusl|kS*?3B; z(TE-xLR0=M@0*Ke@f;Iz19;1y!pAt{dzdOeIhTBmL5h&`^ly^RRRui zxr`db%iq?u5c0x{-lH8+GNtay{ag>?LEAIZqndwpK8$BwnAps$aVUWN$(IE~{^mBI z46|AEvZbb*2{J=ofol$W8*Nrw6;}^lG`>fqCMJcSoZ=gOrltiw<*T>Gzwd#DS@5T< zlgj(_h_dwEuypkkGiOhpKb0_Zs8?@HM=vR#21}mcs z3OG7OfC1$b7B5u?9a^q<#`asF_}`7nK#Zos&uM_V~jP1#7KK*sjZ0@I_OH@gB?JxZvEQ`18C{G%=UG`Z+W5 zSuXtn{lO6XPMwHp0-2`2ti~B)9fSwi@S~8k!cU^y-uq-+3v%U?g!*Iu`^aZNc(XLh z@(xwG6g;947lG&RpR43s&4s^Y>G1Ui8o&)wj`~~>Dn?pgmlaw`tLnbR!8DgT%c2tL z9yjCp)|nLFv1`51{D{wjN=u^?SA%Y}RPKW>zkakBlSt1#IuX=Do&o+7zXx3F+HwF-eFzL}M#FODHIHb^y_$a^Sjv?Zz*()%bgtDnFX(R-U1s3EZ)~ zQ<#d>oVhUgwSKJE2k<|F^16Ljcj=I27S? zULWiqF71@G=m2goW~t!)IqSdA*>|*fHRP{ySAAUl?|{$X{s-~9@nHu_;fuFAILJ23 zb-$qSF1T_yA~3(`S%aaFFrd`}UaSJ|@gWUl)eBy|CV$12;(YhyJ@U56^Iucf3SWq) zYob-?F^Q{4GhhQJfMRt&5;*j4xi`8U^>CX1nHE04-{AK@AIw781}c*n!^8(|3Q}BJ zNwWS)HU7S-cBSLnyvx{qOVKvIasf0bWKGSvMo0FZdr2$2ZaaBh{Gv0yCZ1XZ)z{?c zL(I4s{^_}(^Gr8SqVa4p8|A?fJX}(maKGs^;R`&#CTn1s*rXyf+mxSvx+~_}#i-k+ zoW+jY+IJ!KHlKG|b=z(cKlZy^l9>0GqQ^ZDH|PRWPmx;uvYELeFe@Qf{%)Pt#mreD z!Muok2k^M8FGFf~Ywi51O=eJ?y-7pkQ4O~r48#~{!~qaw_{1xNR&$_B8mT7@=)$sS z%nocib@HZw6BAGk@NVMSy%OF}&64-0@SI%xnXw|@7pNm;>Ok=oscoj3i7HE>a{XGt zqBv2ri`iaiFWAg^=IjrATb5*&b2jSRYowYvHQ`$j?&NNb|2a&4n*p# z(OC;t5SjH-Oag02&B0)(C^f}VqL-5>aIDe;h;JWFWa5g>sSHkl<>f0c#xl2-gqu6d%QyFz#WLe5|;DE|I!ZQJH%RLdlN!jnCRvb zumRNW5URn@!NehtK5h`v-378G&Dx!qA5r=%ppZ^L_fL39W^L8+lwOVxxf$jlp5M_H zP1xVY;4yXvevp6B7dK-!t!L5x#X-7;ThKh}sS-s>W6;bD+mTq+o1tDWUfDJm^aaQt z%>CJP2;PVewQQp9_r4GnV6t2)UKOw0$qCOWlYPIXF_+vMNF=t^*PDpU^Ja*{xvaR< zOaShz_z54{%2ynjA~uEuk)kQL<6{FGIZryKz{d1 zB3z904$Go>d;ru6KC$qW01Mky0;r4Q+a@cf?C^ygbJJl}Zh5pT!=v=`Rnr@w4YHFu zLo}&P6+U|bw4Cl%204q+bGpfcu*oW(4@84$P=b5t1z6_b&e90^ywkRvv$cN9MRTY& zY>`!Fgvv1v$BZXd{zGX8eMUJT)+nY-q5TrZm~&i0>6J73?$w=j66xOX$&EGM`j`0} zvEN#Sre*W#tts%3Pg2Mi8)<9$BPpSRRx|R4?$jG)K8r=+Rqwz zRydg^5ifNTAWsYq-xMi~Ju;zQ^Aahh6atHmcNf{Whkmcw)UPjH%0gQT8?I9ilDzhi zrRP#yyhPig&Rv2mOBLgAgO>|nUc7VM%G%v`nv&zjTyq~yDu}+vbEE^s;hF!D{z{8s zx9d`;pRLSFaCpq!R^{%)#?$ggQ286O{7tv`vZ#C2MRCu(+r!IZ#DQ7)r8aland-MY ztM|GmP{Yxm37L%%4TI{;RbQn1v{tRQ;kA`J1o{yl!spxs;alt7G_Sv#ga60BKjUh2 zOiAAT8TSDf2PO-*eAm??EG>Od4QiU^qY9bb}}agc;A7*xe0GMyO%_0A?I+> zby&rF-Z^c7t##5~f+2eMNEFZoXrCeqcbkhj{*fBh(;I&l_KT-gd3+|%5*SQDB!${q zUWMO(kYjM<_8ZLqT+e#vi%IxpPSY^2ONuQ z1&cT1Sr>!QVil2>QX|zS*kHg1r&k5XD;axlUn1@k^F_qAR1LGw-liqn4`KWymAu5# z7PFzj+AcDfS_n>I;1yINwZ!7MdpkeYdOISeVC?R}uMq*fGRBYC4(MC$V^LRyj;b(o z8tawX5q89O#;#PvINc6&!Zeu?c?^p$l-zVin7l;TveNVnk5>AZ({-Y0+X4xFE&f$Uji@PTjfXD zf6!01*AAw2xaAkst?r#^s)y%Oik#!om{~*;r(&9z7cI5ngm^Mn8d(*=tB^moJAyy0 z8jS4xo^VhD19VBYtb;e{xl1a;sGjee`ck*wmRtMG{Rp^&lwMt;er^AWA?zP2iis&D zzTNMmeGiow+Q+l|z+Y|eBArH_tUe;CmBt+ezyBq;H1O*V>5oJ)LgH(MnGUy-1!}A& zo2-6|+_@Vr-C#vlbcSzzJerWX$w;(SSfN<^6N~BFOEqIC&Ts6*zCiD?3QNzTm?Q}I zO}l4!{Sa+rnSUYHDo77`%maqci~WQ*%t{(K8@u6^x}|p9qy36v;ngnRC;E@gr1xIY z$|suhF(Y_ed5X+P6h!#G0Q-8$`%QVNah+F}2QnD}P#JKL9TeU3EOncmbpSyDYb6L=Uo(XkF;1#((ld({D^jalCsek7V22m6?&xFfEz#AcN+&!nQdu@ZqqU)$Ia zjK1v`)kP*|EZNHfIkv}i?)_2d53Qw#c(xA~R-L|m5OGiQG@Sp=1bj6?xU(z7MfSoY z5ph4&ROQV9D?qD{%<6k4H6J)(z^EI--YG!43X|I`XD?5q$My#|@?G+tiQ7Fw zjijhzHCTew)JmIua3Nrx`Nqry&|`5%W%Ig9iVk}fn%)Co7_C?pH*sG5RH?O(;aSgy z6!Y`2lU9!mQ;OW0=#F{g``DA{u53-W+r%BV3$NWjAN?eOwK_*Nj6ii(Ggi2IHPum@^>t1o>YrNoSXW1G||P! zbIh~j$GM88G25MWhq=1a690dIzc0iPgqMT1Ph}KqHPH_jlA}w>*&jjtT6DsBH#QXa zCKg3voxjO1_&g;@PcBlWox}T}{KJ}SE)n;LTc*-WVHL&EH5r9^-O*!U$z!Cv?kCfB zygh>L)T~b1 zx{lNP8vhRxva{71bz%nHJ^PwDH5ajxC9fy$LMV#Sv|F#KtnVi1I*?LeW&-EpBZcs! z#wr=%<4v@Z%7IOYJeGRv!qTw_`H+z(1Y_Q9xn9oc&sXCne{|U$-u`hsBTRiIP92W5S{%X8USEq4W1{g4Ya4Kcyj(ao+mP>&;R5 z~KE zwihN`hvYLk2;<{A8ZB;HZvCI4GjU}4|KoV&i*G3^iNbUezBy8ER!J(cBFc9AuuE&>DZQQ(5Mw_ziX5nSPEiB)iEg@o+(5|3zJri@TEMH4+^;eqAtm zKZ8!vlk-qmN!c>W4ttF0FzxBF0$gp`H=lF%b%-Kb4(TAe+@as`K=3xfSZ>(aL3q#! z6|hsNIY;Nkhi{7tOpA4X$_sX_Il$}{oWyl)8$AW|i+m$Hp)=kF48n^pBUBbh+R)47 zQ@ESoYtlA_ap7P|8$IwHLNEFb7?Ewpx-PQjR>lYBJzk0;2X`5yDR{NzU=1%CReld_ zEF0pgFkefD&T%N)v-!%yB`CxjxZ2ldU=m!rJV2peQMP$2zcU$qd?!mg=p1WpF3s6u zC+iqYl~xLg^?f>ia=SQd{UG(1D+XqmPPt0EOPioeGfL`o*f^ny@~SEI56^jAc)YDa z6KuzhbGgKI@-3|EzaWP68&GN%tEqm><<6pCBfUch)O3V9yYYKqO>nx@qGv`6n#5qfyLms$l-w~DwxCJ53$TFR#^<0^PM2>SxiqEdJifwVl zMOA$1pY*mW&FBtUdX`6rSsS#7vB9C;e`4Mp8x`*L>;ki5^6mi%3FW(KL6D$r&73al zFB}oIDjj=rqg_;34_a-V?Jo+}_~3~^k`w_QeMHNkeQ$*pBW z;^7vJJ2w}ud5*Hxnj=TYwlZ^f&L?R={1;EC_azW#d>BKeew5QN zpC5J~v$igFnvaYvFFSG5vS9`o6UK@PS6TDN=}yO6`Dtij1}W*kZV9o~Q17fI_(-wm zJ*-Epv{so7VjmJO`pC_t9Zq9hX^&9=Im1AK7pXh#0eBEM_mAA0dbw>C!1~EWcIiUB z<_x_zTV)uReoeGKUS;H;pEa2(Zg|g$*tbB|_yDyxx1^Wl!d5ygonP0Xip3S17E`HA z**l62gTtwxfJc;W*1;@ky9qN40&Ops8k(Eo`a7`pjo4$ElIKElV+eSRK;}#|@n~Qu z8e$y?V^~4FsQ1MQ{Ev{w5*vap&cpbvtaas zviZ_v`cs=CD^p)*manHXn_P!PZT*hdCghXe!L=sGddbj#f&R=h1}G3$JU0~ZqzNT| zbSK_^{vb0u;jNmw*C~{8t2lXbH@Zj5R#bnZT%OY3#2q-Z=s1(`1n~fb;3g8C=BWktcWOfoF-ddxH5oRH{3nGRq<} zaAu};Qt@d%X9jWqGk-o}l0Ka$Qg{p;D>lXy4*YiqFJ0j%-t=2__+Pl?A4WE*YO#X4zc_;tT6xlak+hSle;ZGq*fsoxC5zL zCuBv7CGS=^f$Bomdt}6FmvTxo_9o+_!VW7d2Hy|&deV=zzr$lx?k}=4Bes^`yD>)! zp}D>{FZy9~9KZH>@%}!fe8e3h=Mol|^ICu6xQDp2Mm{$TT~BhGmm`KXNw6i@=~4ahThNTT!T7e4EvcA3`n z6{^?T`@VOOrUp_~=hU}egGZMC-&xl!s@L~AL1vvTpJw&H%=(-v5p`B%^H;HwmIMsk zj!q*X@qKtI4qm2JGJ=|&;G%GOd7te|46kM=n;2Y5BC_3MA4HPZ+WSCPsF_x zTGLJo?e-@y{KawHj-bzEOF>bLc|fqGnuE-_46{JWrq3#@90Ca!Cfa;wqGe``wK+;bs`OJr=aB3z$irwjROV^wyaPdQz;dNqbOL}uZ3N5q)eB0!7eds|3~!x* zT=?*q=lX1K)dh^q`JcD21jY2wUwUn#lAVdgJrVnBTQY!DWo0+DhxySa{r(S!>`?)h z;VR-23s!$fWFJug!YtE0R3O66M^^-j7fRpqf3i5Ua+BmpU&zPF?&Qqr<`n0LS*S6( ze*En5WR0_#q&HD8(VQ@OB1=$L>P{2Nwci%-_zBJMcxVfBvc`jau+{sD*_wMN`Dki< zY--B8kHv;siHj3))n}s`>$tddA1XsGhVHaP{F_@jpQRa=L=8t@0$0q0XtB}$VAIiRvid*~;30mYs zRI!_zQx7C%OPRwi(&tYN#A({JKCmGQE%%bV=Ku(RP?qSHCWLSQ=hV+jZtY>!q4KAM zCs_w8?-6dJBT#`CYl@jI+o~1&g+Qx$`G)ky?ZUO~3{GHPLD}Hz^)cf{#A-?WiU}XF z-asUM2|{8vxj&oq6DP2Um(BXshl^u`b!kGJ(FXTl*#la#^ON;qlU8e~hfxc#_m4Y9 z`H*gq%fwI40@}Bm`@Po9Y$(xLKt#zK#wYN>446S;H3^;EI5Kv{Ibt-PFI7m0!?!`` zCEC9qfw7%i4cq+Ji8kktc4ij?IfoYA6ccugx{0cowETpG1ilzzv^F9wm8pFbIR+@8 z)rnqJQ54W&N1&)B0sM1j0X9pygnNpg#Oj!(yq>R#QG3kgyJLXtp1QIWc!R@lvIejm zgV)BqF-AOp)+jC{OY-9?D4Y3Bmzi?oO5R+&+vE5cJb%Ra*R7Yr0`0U;;s z7c6XWIF07?S^KUFdV0GA6#t{#_mLku$1`&r;)+h4vcQwA8Y4~Ec19msiwF&(p;>cFu z9JwjXX-l1tEJ^t!y z7d?yVzAD0F@Gaq&`O~ibw9kRq^z!MgyMiodvWJ93=DG=ICo|IdB#M+1A7^+HNoq{f z?T_2an23k}c<_p3z`xA&gT-^_OaFm-)f!MHPR^fg1mG$2AM=?b)lwn^|2Ed;E?%0E znDTDUNWjxDH|nw(1S9ATu~ z@rZ+%Z-N4AlUwrUn*E*gUN>h$&}nJ)iRO7`dS(8$>za|eFE|?JduWDq$IU+Fc=kky zMZ|T}SNU2eB?an%UuykfAug$bhq>!dDhW$5#yZqQ%YP$e#_~4`GWFpiIqM#z`@}4h z6|q5yK{Ypaj8l|5=X|6OebOD9ZmViu41WrnOjOqr9k)!zHlOzBx}aZT2`KU1v!8Vj zub2l|++OK3KU~HC%#)YTQPu5jmFY86b}W;GvJ4pe5F4 zapqEx;FCrn&t!p8r+RaP{G72!Ike5#*)iBp4o#?Zz61ZRm&MMVbCZ8pSLV`jX_tpx zyqagn5VOmcydDXZLj`Ww4+C4VWu*NGLSvKRyfi*DB2=!?ZH_y($dQarQ>rGH@*cC{ zk0u`oj}D_RGwWXP_$SzB$-#=Ctof)*QtRq}Klwu!FW~GOS^usVG(eD#<_=R?x*s5+ zG97*UZWB~4T2$=}zdN;K^_AmOum8TfjVsJuXOZ7dqR*+Bl#_J;5e!Z1cV7q~0lTG1 z{&ddPYP*##;wj_tc-mF&)**42M>hy1jGzW!yK&y%jSke>3YW6Jt8VS5M>FXEt|q%; z(c46yMyJjyn-(nkmpOn_7NcsiMjGnx%2f^8x%$5KFVJ0^OH}g^lO7CkGX0FzBIDqy zN9SPWhO0j(jOJjKqL)-x5@yu{niD}9iw$ZHR z(c|L3#hA3e$%r@XG@CVrDv2mPwK;XRcm`&gMKg`snJBiyH>YlY2WP8jJ#IK-=YeVb zcE`}MIOG5A){@WL?MgXJEBDoi^cfsW5w5A*j?wsIYzw?iGG89+eHc`zrm1@wo|?kB zb^asb&08s{vX8VVrhnnf52|9j1hBzd@~i@k zCa_Egh`wgxn8>%);2kmhpc|=#dTqYePfqnRseT6!wjLZ>!KXBf9kv2)qIC}t0ujo$ zb$1Jgu4Lu||CFBLM%KjWuzpNu`K?(UAK&*oMZ@SC#1Y~$uBbU|Bb8_%lzo8wLwPlc zzb$=*SZfBuE%zGqtogZXQ+E&5k`CV@?H4C8zfPsw_2x7Ve?o+AmIj!@+#bzDcC+e} z?aW`Ip{AX~(bRHFpIs}GH2^%YjWbjLjM(6BWaBd4h{*u!#-;_aSuEb*`ORmIoqD|T z3f_Ss*?)snPwh2Yz0Ms3v_=LVy@i>UjcPUdB((Z`(Y}FT1r09yZ8Sg+BfbdT;>T;- zwN_}G?~bes=1Yxp23lKemBN%0a5l|}F#JjWi1?rQ5-T-q01KM&MG>&3)C|&s)@oAk%?3u~`=4I9tX^H6*-X+4}{`f}SX0njVud&iaP1Fs!jX7RHuULV=SnK2_-xNa+49*IEA9dp`XHKhA z>%6D_!bfab7y-Cydn`>d{haa1lfB~id}v9|E>F4LrpAa8`5 zkdJl;R}SLDY!{7|@X?sWuU_3>W@Hv|1|I@HrZ3VJrkoW&zkgY?B~JI9auCfkIF&JP zt9p{1@HgPcGPzr>nsloaMYl3~+kq#rrvi!oF+5HdKlNq34GBI=Pb}rUj`hnFwmy;m zca?7UYc4^xcZ-Q$FyX?NYjMLQS9te?L4OG@6aiKfexX82uonCa?}9G>6>vYINvw_#jH0}RW^*P%E$ zf;|?q&+6U%``mPI0}GltG)K^lCj!H$cR#!=9D-CVcNRQ-HvkhhUnKTl0qC(t&x)$98FhMrIwZ&lOSZ6YYY7G2?l`2CcO~%skU*4 zK8o$Vgrkq;d@_(Zf*`;* zar`K}>*zG7N#`U1v6(-P`n zqU#wN@@K-JWMN44y3%5^-2Dp3Qs&(~S-&F_o$C-#*LN(nKd3*6h-A4LbX-*n_t74~ zvv1B3Q|C4{KrP%E)QX4YzX z$g;*E0x+)jNem_1(Np5TQW6T0oOu|uiLlyH&$^c?AD+lP*Lp@bD9xF1kmBGu>=?cP z{9)0?f$-bDd`2MN;uPJmulw|-zsZYLhba35IgrDsZv-pb4I1foZ+HfLG{-{-*46tqH=2MnE4MKK##F^g^yqN;++s)PP}F6klcqY z?`OD_^J~@{=`u*V^t_|Tuk5L9_%b38^(IF~D>9>G0cNT(c7lqmo zJ2RWMT2oOc!FkQUrjOt6qOWy!hknhLFE!FlINFVl88)Mlr6uENspATwOuzo7& zGFWw`&hO3bTb@&&cH7=YF6L^Uo{(wDR*+5s5W{NN8S^5*r(_ z!OH!ETedg*@5`pE3cdKm%C4}(g2^>1D8sX^u1@!k)#QY4kMYvNfgv5hCI0%mFuMls zHVP%&`{X#P!CP+hu>g5)Wp|j$iWCRFlrU}f_6h7lbZAiA>AWfRo8g^Tgwuz>_ylpV z4Ba-QY9!UclExjv13&P}sa|pKPkw<$8Zo;istct_xD#3fHPN0mH4DLCE=~TXY^t+P z^UleIv7uIBrj+~AGT&Gmm*hMbzpMV~ zjAB4!kf^k^qGrK&++xcWBf03iJ`By-B{WwY%V(l|rmju*`h(X4Y@>9O}{7{V7FW^*9h4=X^!7Vd++4Hb`zdf@CZeEvM0g(r4T zY_Ja6&{aJNGH^KSz9YVh_Pyar`sQ=|7j=7gbB?;Z_F}|ygn?-Qk~X#)ICavVt;`Rg zMQw8}z4>0x@QJsGJ>neR@}CajmBo<^TjYZK_z_l??h$dQ$aF;Yxj|<;0BVN3x0%I^ z<9u>1p$TALG;VB4Oe|4!LFa^F-Gmepi2Rh|w*0r7_FT?`RBGPAjxs=ym_I%;pvuu& zrPFO$azEzt>6KYOs%Y<4R9CqaJTldUw8GY@J7$vfm~lXMKHQLE>EI+H1w4P$TNXD< z8VAdx70Dj}w{-6Tw*Yh}#seagrXDV6hwYhzG^*T3x@?(uHfpv~uL@sN&S9vK5nr-$X zqEAB~`b&bP)&JO%@4eWn79IYb^^avLcW?NfgKC&N0&$0qS)Nkm9-l)VsGlS2c&Ir5 zw((H=b*kyV0AI`$DIO^@`aTiQJ*tTHNzh(38F8M7uw+V?%~0+De+Zr?u-=%<^Yz5w zh+_upCKOlZp>z1-KOea}JP z@OfH7i&%0oAYV-w(QV@fPTsn)YeIA{9XM`(Hwj}naj9_6ZlkGPwR>OXUXw+0)_ z+BH?M3=$1c&BmucNkZYXh8sEW@lV6_7aO-c^z-05!Q8F^-e^i{B?zzi-UzwCd8R6-26rJSq|U&1Df@F?}jPdjZ4Tdz$cT2x+$JHv}mW zoETZSj;rw!B{FvpZNWL~g34ZC!!CYxn8j#_x5ipegTg&y`3UzhuUWCQZWGTQEs|e9 zy7^-XWvQ@R`^9y$fmHQUz-Uyn#u6~87jd|yV2T9soO10C_a&YAq2nVbW<%j21{{pq zve71MqY#oeg!yQ1b~2rPaCwrxr@iM2_zmHnTvC4Igmf?MlMO_#rOo>jjdf2EVB9yX zn~RrmlFm1`;Gc%ub36V_bU~JKM)9|T9v>#-Lkhj#;}?y=VI$8BM9&YC-w_<>Xz98n zXUWKmTc^8z2bgaFDYrK(BEw5xibv8n4}g*_X%m_PU{N~2`VKf$xlCib%}4Y9BtBc` zofCfLd5QVcOhsx$YCVYVE4ZJ!nEN%dUeu{Dm+666^rENpNK)gj-HNV{68QT^GXaFYC|aD_6J$=uV3ns7|a|Cf65bz17={?KY(v*h9L z$cK+KH$7_Dq2si_(AF9c^gctWCzd-cqWmwcOcZ*~qOS1{BKA<+H$Lq_y_m|{louQ_ zseDn`NrufIRI%}y2?hgUI-cH=62izg*G=*)ib8&{oV;sb8%Z(4^gBkgEZM$!Eb=|< zt@s=T-|!DX|5hA)qrTLL*jf;hHpN8KUh?nNgDdd|N1&w)Co2bl)9BzbAh?gPC{2+C(2BQ)BeS&-Ui* zsnG|MlZf*wJjZs5`t;cmU+EHD`y7UPxlz2U$$NaZ$8u<-~+s6t4 z=c$z(A>`kJn7=Y7Dl9=)T7=6Fd2xhy2GS3(8D?AX2hlyDk7 z0l!B6QP2OQ7a+f2m%9DTzQeX?=vzJ?*__xm?$K<996s3&tFEyOaejsq6qXm(iFw>? zRfKXZ@tAo@8hTUEdUfSx1qHr;&{O>3kKVxKw&ayMq=PRbp!#t}YoF9RIOoVREzg;U zpKyW>uU%U?U%#7WI3B0QDmtSU*0>UhXqXO;{~--|n&|lSp59}+5~enYUggMq7uZ(f zFja`d2-j+=Hjl2Vcyrn;bT)i+2DV}Ym@BHnV}1ZDBv8N{WWHpl#ZA8Wej-P;inZp6 zX0WEut{FLSJv&ry-^VaET7aVnaZlq7noTG1)}q1ZcS+zV8x*s4-98vEr!RM|R}^Hg zG50ACY2OK0xN{|>j2Mh`cHNI8d~=<#=8HtBgI31&z2d#Yr$KEj6?b<=x=Gg!?$HK5_z_LK&Ck?VY;`C2Oc7`yHR z?`3|VszLvkUgP12Dq8)}v>9r1;u@8sS>*^m1`qnR-I`4(0Mplw zj#okqfKsL8PR8Vpd{mveGWh?nd3Gp=j1<<}!Q|-@RycJuOZ4AmQ z*LiFNL~77TQQyFqLkwQ-?n-~&x$OevmV#h!yy`=-Fr|EG|U#i$uiiuYdCF|H+##pSF+)*_HIQ0R7wLIygPH zAbH{ zc!RG@jGPQ*5;of4wbx~GT>2fe@}}#;CW*G}aU6h?aAEqe?jHcf#9mS*e|fkeYu31a zMf+|#k53s;!&V+coq#${Ps(uT482I@9VHXb+Uv9B!_nXP-(ig!!75pLWd9$`*@xuA zRdX1tBux^$A+y=O}-)>;Tll&wG1ye zPRaNNs!8h3)X)DOkh_c)9hyR8`sMq{)Q!{PrnT1l z#Kihf$7rgJLwbp8?~?=I2dT=H6n8;=zo{x3uW=xfXrIV3Fs84za3#e>ai*LRb{u1> z(t%z(n`RKp5W3ZtiH4eHF1wJ*3}cVR)9>x6{ur&@J9XjEb~+@lC5~ zgy}cB?wcff1*uxM2iy=L5-qV94elvR!J`>Q?6;v%O)d-MpnC>{%<2?GQX*+Q zbq9;JX@%|fqg*+PC3?v|#N8cqVZ(59As}Q}u|ByAxee$29pHZ!;4vjxpCi&Ql%Ef9 z>yx^NQAEF^NilfsowsEliP>C!ik$LQczUsEU&6e;@ObA@;G%0(FM6-Oe|j6X>dwf} zzW2)^Vl~x8!n=kv?}@3;YH+zI7m;dd)X48{Bp#1B#31MseAGGLyb1{X2zIK2_!Ptw zu$pwKihppKiO)-?ErZqWQo%cYn*3~ePSf{&!3*a#UVo0uXZH{ zt2>f>`yyHUHx?gNf1S6E&RS3ju5U)pM>bvZ{DvyUyywWJzZd4MNiBs9aUrXP> zxaUwfs~GodZnus7M##XB}P zTtl6LWY=h6-icOfd#zr_loa2c!uF64xdX?engQyEH#Lu({HgrKsK~T#hp@gm>U&h9 zmjTA_9M|1(QSIQ~z1glIr%`Axz|?kSwC71ixFKz^@+m359CcHRHudNIat82tf2v(c z@s~b9_Tt#~wy(6#q8KBVp7rE64a4K5X&&&sDe(tJ`@BA?oi3;kXJ($-7q`Y<>xp7R zO|K|bcFLangShV1Sl+|dnU48{0UX_Xjr3WZ!XA{32)j);)Ng`6G|v^qg+PzQQ}Xn5 zPocP#2Y5L(sJJpV;5)wlmOyPIN~{(|0(d!&i1DuJZ)Ef0FKg7O=cyb_Zae(c<cs`>rRqeW-HnKBa&D)K%4wSHE4iN^T2{DICcCc6_0>ZGJS+Pm967K<9V?3FA+C zSMD2eWMITq)42h0e`^J^_}@Yvw4fGtWcosD53JI&Hb3I5I1mo$$v7 ze1tsp*j2~u*P`k1+2uniY^fIV8RM7;P@fX%V}03Ad+t|Htz@Ghu&UaN+I0PB&RDycB|}0g zt~OV?;I~`bzb^G^FPDGw?uob`_UFOeSc{c?%2w_AwLQ9zF9m)w3OjF-=-OKx;z0Un z`Wa01Y#|o~3nK4f{)-hJdq+q2)rXZO6#*2xjj^fhpi`uC{C2S&f2tdTux*cshvff} zTbwnWwTp+4%s}ne5{paC5${)jX3&NW*Re4R$TV}a zF%@B0X++8|j>HXX7>>)I?)RWn`iOxiD1HJ>_fA`Q;HA}_01dh9^@^p9hsuLmHyRNM z>_?tc-`36UE!9@h9}mbqw$T{OCH?I``K=OMHLR$BFLonuYj@mPL{7O7b*5UFAU#Yu zG{Qhw2my}w)t>BMy;!JwB6O=aj2*{IWwz{tQW8hTKpF?+mrzG8H=IoleRz<_=;GDv z9e-)HOxnE|0)N_x(s*LGLp^w+&o7ff%+?gAZ}L6)ffnT@sH&XIuH|LlP%xSLG#iIK93 z4N#;-oriC?Q|hop6-#EHrb@p`vYG5R$g~}jXWDT*Z-4**;Y;T`t>avtn1>$P4)S_Y zpSGTvv)h!);%+R$l5TJTois1p?Y0iSg^$2)py=V)sjx%BqJh>A!p_9o$muzTg4xX# z>1EVl5$?%?o6t7XXkN(n4w(-4ql?)M{d3YsEYro^aoGA$1L06qG}l>*m3A|U(`Sc{sw!{DTHmvPo-2;_NOy zQkctI!edvugkf%k}A>q00l0#(ixo%wy z`K77iTfxF0!p|>_7~$kc0{+dzNRMp@1uGpg>#s;j_Jt!5W5K1k7a3v{y*TVATzu6~ z2wpjP-^;;BE=90+a3Z?cyVQ%C%kw&=)D7SA+i+ zQw|yg(Ctxvf*45dXFu$3LmKE5s!z2~WGIfcki97U?_Cg5m6p(#j7{SEi86J3fcvBR zyA_}2fi)0EY2v@+iW4?1v9&@#Ml`VGT_0Nh_O)EB;rAdL+brUlQ{&V8UE;(lUy16* z(r{F-#6AfY|3@E(_v!7+&<1mFjN0SQdhR0x(MT&B{p+b^WV&C*Ls29j)bIN&%0Ii& zscOOLXnpKm6~XNapW_a52CK{g)@sC1H8V|d7b1O!lwK-#DlfnKPAA%AYtFmf*N|#Q97={?7-Se92748`h4YyAT7GHD{Sx*PWvv@+%EujS`sn8p-mjbxthai_YQ1(t z5uvzlV&dqOB76|-vuD(JFCu>rE1U$LNe#SkbqXmo#DR>t-^z;YE%mcCz5^oKUsP1L zb{W0q_zV~BrixQrgz%?rVf26K6H8Z3j5i9+ezQhSNXvKZ>_ib6V7I0Xwh2E0ZsZZQ z6u)S4@9bUzy$LY z3lyR2B5=_5BW1JeX@)LLHfCmdaPd`sU$6wX%=Z=1&i9&VBD#q-6ID|3if4Oi4+*7e z74=H7_x)+YlmA$h`_N{UiYK`b408{Ofe}fipJ-T9;onfwZp&NSl{kg6y2^Q68m)-*@sk;0t!X!YL+b?0G{>4P)F{yRG+ZKu({JJ$up zzoj8ZS(zAxEiybm033N!b4BB5L$fmmGnogvA7#3+f?%S-HV9r}=Puy_W+rGoJnh0D zGX7^lFl{f15V4n)J}o;jotOrNJH71in?JeMX?jC0SGxdNF3;h-GU}>8@vMjGwIo^^ zh763hd^8<{AfI`On0*lR0L2sU!;4O_C7DN*8D4Rr4YnC4-!m;)`>6TD4>QuATcgG@ zzPYiKK z<~95(;C<_0==pq!4JiO!MT7;$M3Xkjzps84TR6~Tp(fGS2SZ<3 zM;+mx+c?dkANdmWLdek)fJzBOWa-qD3vlHW%0Y>pjC-b0XkZj;exvlh(b?Bn?@Ui~ z2V9>Q5G%vO-A#hg#@#mK9J_x3toc{SoTWs1vfv;tm2k;y**0EA%+WZsvC_2lK5Pa? zY{jD2s}bFtBXRuj%#5(gr(x41qt(3noc`*F|68dRI=7-zRHVcXS4{o}zvg&|%RJU~ryd?Pr^op`LNcy5 z{b{b%`T5Md=V4CXB+YvV@ZNKk@Ys_LZxsAQod0@<7Uc(!)x-haz1>c$!-`E(^9lZ` zcHDLZWjtrISXvkh8%Vz-8}5Hqd`^2uwI1(>si&4V%-W*CXi=U53QxrC;BbCj0TL;f zKzc<%fY_F;bp>haFy|v=lZJfa+;}@#RNlCeE}X;PjLa;xznDdP-N`gBJGpM>%$Atl ze#>2n8ey?Y3_cJ7zmQhFx$Q^r&ov6@nvw52OkXofqK;!x6~%Wf)-mqJvaV!qFJM($rrF3hrFB!M!g4A7y^+Jvs~> z56tqpY+*6$TMc=@)2!fL9RZo>opnC1=%;^CK<7C@SbWb1x2G6A-3v1Lj5 z)E>U#j^sK~P~O(>x8jGq-~;6JfS-uBXha!%9eo7ks5Vw%?+5J3%0~8fBFGQ(s0Nk2 zlZ^I=x0fxHg#Gt=5hGcVmDepI&aCE23=Q@* z-wRXB;bLN^J#kcL_9}B2v-lH<_!s$(dn_?s+q+Y64f!QK@NIrqL*_+cL_uEmT>!7@ zmolpa%z0c^P>0ibAmr0qEUUHJJkFX!ke0(kL4=YJ&fV zJAD9hPR$dGIkzGSJ=w;}kkj`!I+FH9s&Q)4)wTljpymbq?#Ivv?-V1sO+>5T8Yn-G z&3nEN)DbF{>@)+%`BAiu5ohLqeLfI%RSHPlx7pMkYm8ZbL}gXqgIeo7t+SKM0h2Sf zFITyiHC6elm~imD`(avaUeqByk$Z7|4Kvxcb^qvYP8&0-QfJniSE=qm;%D7^i^$uv z5!^Q&yUJNYiL*l6Rk|I=JKw2o{?s@yf!kamq~BD4Z&cPQ0r%X`+a3qdKXQj5ionF) zu(At9;xcpLkVZ{0S=?pHu6yNHRb0;qKgiDh{m@A~Fs^&2iYTqv_}@FF%Z)z&Ep&(W z+um;o>WtV>-V4m_dfoD!cGBPMco-Hck*V>B@Wu5Q5=O{YweUPczX7v>zhJB?*5Y@M zkHG(7Wup;-G?YH1o;>6H2f}N80y>ZxR*2>E*AjVmo5?#L3fcw)tx^vLT;TglJOGVqfw_iD3z~+|GYWbAN=ZqH84KssG zR-?zE1tmf-!+iEMQId%MMp)homcxcQ!1Uy=|W;RD))t?edX+7VP3%ypTV&jjs@?vKtM(ho%dOcj9xi zewk}(&`&I%5sR-=t@x>98~RaE31>1U5AypHH;o&Y68->Q%}L8o>ppenPP>Dsjyj1! zSqss~>u|NFVF|QkaJxav)p4$Z23<-SX(!un0bX0GC2Ml>Sap@>w2XY@*Q@iwMc zq7c1F37fnj+;WE5G)l3jZd!&3Cb;ooJdG(BzUr-3H{VwDW<}8q^s9Y3xB__tQ9UBU z6pD6TGASE`m}XNOT$S?#{Ru|NLp8P zk?Wn!lhv-Cu=lDOlvSX;ru?demyX+t@upj zqpYop*pJZA!oRO0Z8p;DJoZqCXT}#U80+3>S6P1snyi%O595)&K2q) zrP+5`f&U_8w5q39Ej1O{(@k1RiV}AjAqL6#*PA@geuUN@Aleo4x&B4y#vp+8(>|MG zt&qu_`XP%Qj!BKQx{WM(>nC0x>_Ux0GUrd0habor6MTUdiK=rY z>-eQ5;lt)^a|UUQV+%%m>VhiAD(8rqh`=gA#V^>?F{l_g8exbm1yPOmKs}(dT^9%yB+6$Fz zasB_}=-cC&di?(@)sp0+l3e#LNl`}1oh3=72$d9@OQKwsubej+<&mN|V*Kvp1f(33ULE*5|0kQrK zV&mivM))6^4gpXY>ZFJLPXW`rjR4$T=$3_Ky$Pd5Vz*`s(%*pi2O^i2IwR*aBVpA_ESA-3AF8M7C}^u9aqom_E;Pf-UOiZnmbO!m59 z>C_rU$<(1LO34FV^9vyZ{hX%nKIY;JgTKftXK%vJY(N$fz%`wv$)M2NT<|s4xd7b7 z(3t%cooun$M;>Pg^`x;-*-@d>2{Jzm>-s5{E$7;f`Pnn}c( zH@bHk4(i{OR##0{!7XlcfKeNsc_(yQ1DF=}-vidR#{=Wx_fpjr7T2~SCAeprf{x|m zaLv=w@j(bcxGiJD#(z9wsvZgvdeUyt&->K3ei_t`tc*I=>2#PrifrW}OLdj6vWQQ< zpl@t6y)}+*PO9II&Ynz$MQ?(_pX3haDF(^GZn{9RlJvWJX`J+{gWJo zdHKyPW)>dt)2>41aqcCmgRvDae}c2#uSHz zKlH=nZ2`G54&M5YdgF;RrT-o|AvMQm`z*7s*IvJEena&g z$@cdVgdhU_}(zIXII#)tpts zeVN<80nbn7jpCbA_7}!wjBK0tFKLAvYLzqKA4$@kn1rI!&8s_Um%k@R|FFSrqkfx- znlT%0<4}^=xzP5t*G?s;#^A#eMfhk-Rl_M2in1su^lT5zR(LKdrr7eb;K7S|6V!`` zpi2#eo{g_G*vB-f9XKtHke#U9q54qWIj?axA3LJW&r8(Xfav~te1vbgp8et9A>Kvp zVJZpQ7Nu-`_+M$TuhoX>Fo?ak)pY&c5sC~v@w}tgxU(uJsjvR&ciZcwqfrXsJ-@I7 z?$^Nb$-~_Vw&YQFsPhDKfx2S21 z zmR`awBewUmIlf4uN(!w1g{z$hwg71hG1Yn#j@L;8&e)7xV|0XvHU0}RaRvq@MzF1S z)h<4n5q=ZaPHr7n)ceBo!+t{|t&)U*FXACwTiE2k0JPYodlpaY5q>|)pBZTS9(YaN5s+Box)^=^FKCGS>m6%J3s!ZYuB@kU4$#eM^H>9$(BhxQ->Ve;M{uAstoo zJH`|i&)I7%n_ybuA3Z}Uo!8c7&Ngq19Q4LjXk*n9CHuhtn|~Ri52@tvuM2S5r9aqJ z!^+8b3&uE~d3~4qv1w@k4($&*ey52uNCChH_XW2T;ZRlqp?=PwdYyM>)i(L4b8$p>CO+Dn$;{`C2Q5 z_ixi1eA@cQJxq98m`Y&F;QL2xKDX)~t8 z7LzB^l)KurLvZU(cu;*oo>jJjH==(3Xn*pI#66_JUT|MPw{QVPeFz_wcF?PAoi4$4 zAqQ}uI03{h*?9;`n9FPrjj#SWB$#|u-1r=rlI^;wkq8J*8T1Hm?UyLVuve-6cB=UJF!3F{!32g-(r9pl2c#9!9VxWs%m8!G|IMm3*;dhB0vuhbMV4+>MKaIYh~Dx znTLXO;ES2SXTh*zqUg|s&X|j+3UPL`{XDAbd`|!6et>G8fSON6o*wC1C|JN|x0qja zDsdfmWu0x`n_|v$@prE3P zBOvI)(zi$AZ!O_Q--^&NCkIgI9dA>As2}7v2m}9u*c$9b^6bV}EXknj?)ZDSJD@@d zSDM;tndzcl;Aem?XpH5LTPPfQY_*J{c=gU30seqe9LXsV8XCB@7xIk$8B9g34K0$! ziNc$?(9#oC6}SE{rMBhGBFOQK8U(FlHa0OVLHb8u;alNaL~$v@(jBWa`q!BJF}bwI z+ajV(dJWP|Fq35aqd}V2xVE>NZ#$o1A_{0_`pNm73f6Aeb zV&7}oQaft|>IO&XN-=@WHDJ5z+9#jR9Ui-@Sf*#GoineZ)ddjlT;Gm9PD`keU*B$T zNmtPM6VlskN?f*;GW0iq8lDc@@j@)l-o1JVWA7dx5fV1$+bTtU;9Buxim^d*OcAZ| zAv(=efn(VyxBf6pt;Fb+k@bx<#JaFnx?_nFu97TG6M4h_piGI;<8QM5fo{VPI~W6A zn=wlM))XXt8`Vl@rOur*z6;0psUlrwxt$IPPTEvpf!LvAgTxqleCoS`wZId8=N6+3G`OCZF$u*D1qK8u^va|TZJN@xKEgf zjvI*YG+=ess?XI+`IELLqar=^()@o4m=@E&1+HK<8!6IXP_IHcZETPPj^%#+{i9zzn9-KOZDSW}dWicgH_}+#1f$XeaEqaB+v$bXnyJQrB1FAmb z6^i3Xa4hy1$It7!z5QSkt_Q}5d8qz=EvhT)uSsrWHgyq7HQ!adjcPt**i=bW1eCMZ zU*#baV>+eQ`zYgTiBbLk8dvko=;dORy#>MQIrp*XDcx5T!0Y41z z+&do1;{7X`$lZtdT1+WG;LcjfX%?gG!f$Iwx$!a%YI zK(erF1Lg2qEj8EvN5hrwqpm;=_g3y@zbVjMf8iXL>i>J`L{Wm!=LS_BVa+a4pU64e z(<1RcD?=5733&@)z12e_Z_qnge-Q}{G^n?_D)l35@_odhc?c{YdUPK{m-{(Vmsan+ zEf0M`^TMe)w?N+EkeOO#e&|KBkWzeA!EO0Dd*Awhp|rmms!3uEhvy1+Vz$%uoUGzd z23&(N{<-5L?oFd+11nokb|2>yy)MqwlRU{gCO)ZGh#RCl>~QA}V8+|wMsv#HXr;NX zSJxfGG%f@g=7d5G?I5NHZNOLMpG$x&%efe*K(C<4v6syAO*)hENPVv10&GxN24-yS z%yP}jaoQQ)0bfgCtqs)?=(S6r`NH{2;;(W`otpt7_TYQm8%l8l3YrZUvVm%+`}xPI z6cD>XY2E)u9z~?OWbbeYq(qL^;ZJ>qpeFN|L?;{ksI{0c+c*1Whlu6D#Y@$2sg5@4 zeuwKz|2t8A+94peIC@0!jaSoL6e{zoH8@eMdpU}}VDhk6Ivyv@L>&rlKA4k9ncZ2E z`5|HB8Ds~=4*gh-`n*$aZSpB!8)?C*{WGAJOf3xCN=@qcxYA`c00ceWtgiPMg_`xS=-QNTfyy(wl2` z%RhcZwhl6>S7U!*dKd8&JmWbMo440>a+V!9-qr7GjR5o;t;jseR$O;NqXA{p*^+tR z2eU3o6y_((Tr9PP;;+#1!>QrYQwwV(a>b(yC`*buyns; z$6g2Y77{V2B~$?NdaTRlaREj+1gQvO z-@~=v@;x=h}e~+v2OK0J?E@bOji@ zsh*3E{@=g8vTS#?@sBF)el?}AKk@;T>?j4omCAZ&73N~`1$5`pq#@nj^wA5rhYu2y zkIwmi+l%K&ws+3AtELDcU~b%Ggcc(vhqr6JwlK^Tr2ULOJ2Kt$W?kVc`Zbe|+DEZC zvWrjwXhk^*XK*wu?rG`Gk?gs)icEj8v)Ud05;_%jeuFnti@6b1BkeO;RS=TlRX=O(LMz?cLd1k1ALcd9xirdFF%Wh-v@r4E;|KZ%j&dWB`Cav8MyF|dA zPFUR`b}e~7$}7)|OjwYCKU_kD0D9}mZ7JzCkWn~BGsU8*qS>aa*_>z_a+BlLI9#7a zpY>v=j$*~7^t+NSAZHk*7H+i=70Mc{g zlP9o{V5g9|c9L~I>fuRiH36}mcm&b>JdN2KRntDGO}QEM?ClkGEHiA9dTZg-{lGbb zr7XB0)ef1jDl(1U#>u~$6gFb>Yw2)@?}WM9k1||h(_J?QvJ~ST={G-K9+*4wh0pE_yVP>%-p$(JT z*r@+z?;YgFXSb(i{4@!=MJu?K#^0WO`Y*%(0l0zNsA~_NjrnQ-nl>48(zq?9YcA#A z-Ft$O6W)D`t+nE9StQ$(Wxa#p9WuqqS3%zswL8C$p5Gn>`2DKM_m;2a*^;B;z{EVi zwvy1t$REzhlA9m~WDMkt2SpcFT!teu)<~zyC`>Ep6Sv%^eWf+$jsWt%N5W zJiXUAY3+^ih9jmrN~FEnzuRuoSt?+Si2 zYX;v*=FaWvrN}_-#dT`rR~i-%OqVI6K|zrYZQ-_cZAsUTzZKiYP$lHi2~a*=dV;zc?B^v~u&>n*)nw!vZr`b{xNf~JKgVNw)7y)Hf!s#D{i`bldOAxaHi( zWYY$Fv1B-F{lJnH#TgtwvjK8I<{g}cgHg%ypLPCh;EuwIJ0jyHetYKFg8vm%SiQ`2 zFXKe~mEQ4cQu7&hxrtL!uZRBDvP-Uvx)v-_ZS@WKn{eM#F9GKowc|y#?UJK?p`e!5 z^QkxUZ@cuGWVbTk;p!Y|cXA?hX`UteZ=~z(tgvHMa08=k7h}=*`fr7KFA9RCwjPBQ zL~7z6OM5()Q5&qan=%UyGxPFQraVN7;h%q=tV< z)P>853XPoV-488-AIA#Hm7tCucfXEJE^I@#31w(CrF-U|X_pCmXER*&#~xUmAONmg zcSRR2BjX!=CYD?WPIg4QPFj;pU}KdJTx3ViT3vBS!vvRc_fL~)X<9yAR#xhGL({*eF>VW9AEt9WM*TzYNs2k?mDwZ9;3=KJXU!FQno zRtn%-G78%`91F>ZbaM9NkB(LN!o^|g1w+T}Pj5&HHmrz);P52sCOL(BFwE|Mq^Z`; z;0|Z1g*Dvlh&p{ID>KsLHP&W(K9gz`1ZKK2i?S@tgfV7NpC|?u_}Eggc@BNS{dn{ zId)vG9)vn0iZ={C+rhkN0K8oqqtAjixE>DXR5IkDbJ%D|*LU~na2!PGJap=FriCM`0yq~itpc=tc8w|=;`_3wVP^AIUbonP{Xm%-P7RU z61-utpat%Y!X5Xt;mIl6&->Qq&28UJ$yx0uTrcHaw~h+P6Q>$W&@uXa?K@V(ASWxcjYSFoGM(E}hMXmh*X<3;B0Xw~{3MqziU z|833D)aYxZguIKWb9sR)0c+jHx12?&o#Ir%xtr*-KvGz8{ec6}P2r2)iqBBbvY>t; zW`$o%h}=zw5siS3>-7eWUXLA7#*kY^0#+^u@(E)Rq5t2=uP?R?&_0E-s8_bZ;;%X4 zrZRCWo*B$Z(EO3@&s50WoM4>~6!xC!q5n#M(XKr#0_0kK0>mT#>L>&i=Eh33q97~G z2L>P)7G}Bd_lz;&%jy8Va_9ws+*N1cUO68=HyiVEJ}W%s4`1`axIR)T{tzMx;|`bQHmi?@CMIDy_U#N6od#!#e_bUF!sm>B!exlhch; zr53DkCBF&xweoLpuSc5H)19wQlRvoWga<5h0?y2}-DzmLz|7O#&1^XQ`1yjjha-!A zm8+~ka5{!V9~WzDm^OW025H=vX0EqO>9}L?%9xa5?1BHi-7DyrZIV9)22dOK+IIZP zu(0h?pnQV&sE*g)I^T?v`ZMr|vD(X94OgwC2ZdHMc4E+%)o^>K#xtL>U*~_|REvkj z`<(tq4h7B=?`+jvO~|7S?a%%U<>=@ue3H3wRny&|64g+`LEKzXo4ko6{{d}yNNMNl z0R~U+lO_ny+Bbn^?%8{3J~rNZB>zkR<^4U6hhX-0;h(*4W(8?omDSt}R@>(R-XuM1?pvZ|W*+y4-3HAvTA~9RQ{6BK1y;gjq!!Esr8864 z2Srf%ni5+U4E?2XY$ts!F*HrbrvCS$@ea?ww+UXma4@Tqz*IrS1+8>?lDJ5j zmlp3*(4W+=)#)DwPT1sC2m$~$g(TFw_C3$*%+Vxj%q?m(hwK3g+eSZ(h=psgpCe0W z%S+M&Ff|<%6pSj>z6~qngi|(vmGC&76L-4WJ?D*UAd7Gmdz*m18&=iurkv49eBO z?5}ub`Pr|WQhy-y($GE2$Gt#xSTFeVlM5~PQ==4^KZ}HmCH$L-xqC;x9Y4nwUboS#2%#4 zSDa$Yib(#O< z_VNOnMPVhj6(jlOk~p(x^y7{OP+tq3zUysl(MIRt3@!gf_d)W3A z0#bwNqjCM}cJ@i%MbZ^t)K{9`oq)TPfZ4$TrZ)X!2StDUG1yh~@x-!!(f)wh>BP=9 zCsXc>q^&{3h6q4Tjow3O4P)G=jcW^~MwZISGM7+sRzv~@^rR)mI@{t7-9uY)-lA8n zcxm3Jz=;|;L6jEMOBEX@9z7BnfyX!EsbA&Gm4r(4@+`Fqvyu-c5kR^*xq}lNb{wav zL!9$1N(lYLz7H-*kCuOYy|j zHm-3m(?3D^#UH11n?^%aT|5de&vo6q;z#CZV+$A53cBsU)brE(j{_lFkA+$!u;A-= z1z3ipRo{KnuNq1%S&pclc~m++6KQ*+R*!85`0QUbBY1Jw4Ci#Ghwi2qup8}fvZOWs z-7QfGQ=EJ=!!pPn=v$ng%1?xM3m>>?Os%<>)%X51IxyVr3SPP>KKxpAZ#JNMSUcHo z7kwIs=X?Wf3eJAJ&sUzEb#?2m^;+`9F@`cHaQ^qYgFWI@FV}L-Ir=4GLwlFq*8IE6 zLmQk9Fm!Z;`FP8XTfG3Ry|_eqR=RaA?24prSf^~R@%fyECDz^}o-2ahe5Oub=g5GMFpTc+o>Q@S5{RC;=vW-#K zel}=c$87JI3($(dFE*TK1Z`r+Q~n)FM>zFV4pbGeY8`!q(-W7UwAo^1SZPtp`x$-S zjy2o&&1x(=ntr<^5A~K!Cm>48i--{#oY{ODR2(m8-Nsr9{k*HL)Nhi4tU>px^yg(S zX68)lhwrP@+(4%$`!*dIR{o<8+`Gr~JcfH*U^HVO-8;Fhv7KYS+^{@dW^d~bEMD>| ziJgz0+hek9U2MT+GM~|1G6x+IG9MnDU2a(pA*Ev9N364c-jTR7Tf+`S+%HyJ6K%M4 zsfp!r=p9v*`%9hxcauC#Iywd5NokEJ>=P)qxx>5^%1@G@8uz696vmw-u}xI%*OeV4 zrpi3`&&mb#5cZ3w(Px2+si0zTG37{RQ5}2buZ_}Vhuh0FUk=y*VdDlq+u>KcL=dtCo7aD7aq#1Uz zlWR1C)I}-xm6tSt&JxrGu%}!15U5bc(gv}0p1*W|anqhN@%>?B34qZW%36CS4MjE) zIv8`Jffo49gzIxLKP9Of*rI5MOksguMBQLK$7tnVHvUYaG^MSK_>1D7Ee~1>XxNZn z3QcU34exO&$aS>Olr4<=by&C2(SsG+B;aqC29}cQ5!md`pBV1sIE`M$hXDa3BEa@+m{wj&l<}5GK zmCl5Goy2o6_hT05O@aY8#P8d*JJ|D2eEiyzURkh>BB!@Pb_`9X|yL| zF4_Yy>l(}@DVu^GO@1zqCC0=>m#%)C3Kjkfb!+MNTs36nIVbE{RE4fIh-1<2bVO(ua@pdF&^=m( zs61O$8Zl~`A`!m+$yv><-DxS)^ zDqJxd4V#0HIk9g$F&xLn!RgrL5J9pU#7<(9=)_YiGjSbHiF_rwM+hBpuYVTdro`Gp zqSh_O`g2YMI>q7rD>O%YMuF%)GqQ5T1<~mdp=x~8y&2yDp##RI(LZe4`s?0*El^o^GJGmIWn%i zDQeeJB_1dL#PS)>DBe59IlO_G`mctW`X?&cQ*8}FI&EokIyIaK#B*P%77FJ++gZ&I z2@+#-$^3tg&7)sTVZpG~-zOQ-CQDFK&{hk9szx+P+&rML^3sZ2q}}8%7X(|PEIFMa zt0U3y}@qrl}D%P^f z^$YqU=DCKd)zmS3fg&;K(s}8p_0xiPI%)(h^tqUe_sL(EogTibdz3VD&W-+1U7^g@ zS8uwZ@Ndz$5QHfG)i@yafo%O0xT@h1>yBM9^I|F2=rO^ znG~Vw2A~+Szd9_MG_`U5DU^ZX2b$^&UjQ_?B(u|H8hv%CV&+^NRYdCB;jVpPYMc z)Ph3qmRI|2ri%MDzL>BVZ9Cj^Kw9-X=}7A18lq~rb$Q;f-GcaK{QURKUBH|T6Mw_K z)$!qu5YZdHF5w+wN0>S-H<=PCy|MAP!C$XJ0&Xhp*l$v5d zDbnln1JE?Gwfb?BA~@O@S2}Ez))40^N=pAuy7+I*en!b9^WyrXx7skfy%c1*^SKN5 z+sw|JPGw8Vvn>VsjLixDRsMZ$e`icr%%w)vMVR;>m{f9$E%z0ZM1vQJF8tMVk93Dg z-_F1)mnL^96b&0)^}+3z+|FIo;t2IEF;5Yu$ZtVIsG4kQYYR`q$zp)L4$f8PAGu8s z*$XtXzEI3OR{=5IdDzJ_f_DDzVCaAfb-4;eF+lvvSn4G$bpW-wFJ)udwfXxA~XmN`M(qyvIrh zb+U@?0d<{}YRt(Koj&M@ur|biuw8;H^x_n@UZyvyhFXX|7Oqu`gxp%{p%|D+%A`cr(pj&D;4~)Kd0S`I`gN_Rt zgYL2u-&VJ3Dx}wZ%0XuPKn`7v@yqNh4dVNn!n*3L6M!kiY+>p{LOepz?C|&zon>~q zP3=$y&+0sweX>6pB?#YFgSH~n7sZG^GS6;d^#$0%c}CdCL}IGB>CF?>y?&W)o5z9L z)&5J9MD{uRUG(Qp{+^3kMN&@{w);ei3#~)1ui<~aS^olibg3RhpQeQ;or*kpb&`WS z1%7ND_u--=Yt&SQw?&|E4!tbgzh3nt?1K|r84r8x#M(OfDpYM)lR8@Xc5TV*E&E_! zt0}11N}*m( zz2t+KSRe)v67ZbbhH2-|dYYC(!Cq}Yy(1CQ6IFqYGQ+uM*vp>A-|HPT?=hNeuY4vS z@2YV>JL5cpOcyW{Ge2sn;KrK~S4Lz_B2G6|-+tSs$}pu|CKsghOM5LwbZv2lGsM%5 zt%#tdMnT*#`s?0ML;TAaBWSoXJF>?Ya_Lh`&B&<*@I{%WKy(@8$^PX?vPNq}<1};0`^6qF z$j#7^7W6hL=)nmtaT8;q%TG_@fjE3*68t&pWmfV}iSppj{3e?0QYh8!2Yi37^m3!o znr}SB82k9XEcG^_kXhzfSrx}u!KKDsVQu!;LeZVPG!b;JT2_kj{?UMp))t)T{8^IS z04Y~{`=(5Y2s3c>^fW}pP1@Hdaev{q%@J!*=b*A)6$dv+?|jl~A>&L>vq z>`AO1wLauzG~~sE6TLhxYHkD5^)53UDVzKp`1`)h+MfdeIkxUK1p)1tj*D79k71lMc>-=fYBJlUWj$zH?G zG#Dy2OXNZ+5Bka)7j#yIBgpN%Q=xhyYaB|>11JZ#p0yN^PN_WuA}7_wg~p;Q`@fxa zr80BfE>AeGEB6q^RSyBOpu|yj$XJgHI*oJxt=j^zNSv-p`5*G~x}hFAQRxgz!uZJ6oA#~<;XB;>$`^%cpbu2X-+nD?=gf+6WvNk*@A!{#|DW@Lf1K3M*!11qx91DyU{9Te%|0}+03W*? z{dME-N$WrShnjIpgz93qtOmCZ;sYQ)G&|I9LD6O?zQWpM26z#Kuhug}*BxHoPEuG0 zffaMx{rVSZ%#$zI=2x~O``2W-^;f(s8c)veHxXC;GsO(ZvESBe2)@K@U9Z$amRl9d zZK8j$C8$sa6ZUm?bz7MgMXlEqR3g`?!u%-Er@;eamXr4q#DUqe4^$R-=!jh-nOw_< zY_)OtInbK_-|X);8S|AcgF_^)B@59lxHJg?Wpmu-oLqT#Ir`E@fY)D#;cW~Fb^|K7 zJaO_3XVYCXd40|Tf63!KE6`$$w#2yb9jeVao;5b+T2@{>>7G3KBTMCbpdDX_YQLdX zWS-6qAN38BI&y2uHV$6^?gL*0Ea@bCR34QTyg7^*dH21#mj?emYmWCjwpz!i(KS(Rgq>%s#^sQ++r9e?=`)_e6vV!ElF9QXlIL|zuDR^h;-i3XS*kjW*{=chv zo`*R*wXs_963;G&{TUoxrC@k0t2QuGrsO^_D!OfNpm%5iWJjbi11OucQ{PX9#A^?9dwH}R?qWo)MFVPJxAlnRnJl~z}1C?I%8 z-bB=ohxjLG>aB%Y+zEY>n-yIiL(88AL*gW-JD{_fmxMZRqu-?#`J7r>(|$mD>FNY) zH{S-q2ktZ^?{`2p94Xav6r*-klMFz9i-73WG$BuPDM=g?L%qKTt-X+sFtgyz9NO4?_mZ1F5X1_c)c~C-Ju}ONbhE`T z+dpmA93KJh>EuX5A#2S%32tzu=4>p`B%RL{T8hH?-d>WXKkMxG zFPBX+1(;_MeM+9hrQH%wpKnL#C%*>Qp1JC+={WK{!8a$nv}kR`Z^Cl~sMfeU?%A4V z^A<@s;(hev|NB`C?>eA6(u6*JMo(RENAvjqc8+m&x15>l8c~Ft98+v6xKY$0`WH0^ z{WxLWW?B@7`gnYf!o9C4h#rHBZ$U5-nF5zv+57Hl+={XKAvKl|#Vf5bym{U}&Hvb! zQG{|`!H3Lye>aur>FM-k`EddFi9mYf1&OivRE*LVS5;8DqZ4dAm}OY_KKEs1qXpn4 zs$dsLyr#4`FPGP}Lgj9o3!CT)*C)tG{(q`clXx-ki_etsz%{V#RE(!$%{z9@e)=QM z0ajY#JkYWOMHq8el&A=LA)nPB!}SoQ(>!Xd3i zY+%{J@%H9O-1!0jpTg`ub8U>yjSLYOAhbD3&siu!r=C5=U5DO&8tn8xJ{qIV>^B+ZTA$M_KRY$Mb|DS4 zs>gZ_IzsFV`V2EZD(&M;!9pW-N{JP;tpU55_AopbK>d4Zaq&BxY9mdVxK~8aR^f=2 zf}h>$o@fYOjD$Un>y6yQBUPowh3t?LohR(00KIL94WV)$x5X%rK>q1ms-x3Zs> zTHt1RhhbRjM9W8uH0koI2%f|d(&}UCv_a)$J_5qjf`pD#3FcyrqwpQ0Y#+m?u2W%9 zQ}pzHSZ6RyyR!aYq9rH2%l0o|KFgU_{wcR9b3~a@aC1)Dd$jb=y$O3kEMIQCdLR4* zZ_2!J)C}U(^wV_VAO6_-{sJ|U19(^QPj24u!$Z(J+e&pPn2x;B1m@5l@!fGbj2$&4 zd9x-Ogxa~jau3tz%mO)H(0t1~oRpwcLuR86;^c7i0RnVpCF=Ptq*^ zr7+!Q4N3_@mACxKAL)d0CAdu&A^)vaeq}5QgNOyK#bE9U&*(6{{8^~p!^YGG#!Oi5 z>*Qb15U&{UOSTownU{17Hy6A?)>q&U#Ld)55B2kq+c9?<^~Y0L{qV5MEW&iO?+(Kq zR7>Q3ei67O;?{|r0&9HapMab^W5&n)mN-`|3hg?K-9CVZ7MRIvC(=} zR`Xq9cLCJ)g3Ykl;%oC!@v)5|>h~mfcjL1k7+|CKP%3((yM1R?i=~N8x(&~0FNalE zw%mVeLR?*OmSlF+yS;h*O`l@%R`ivoV~m;QZ_Z0xnn}%30)NhRsX-(=AI_5bcsXO< z;xL61Z%S0@g$s2*XEwcLeK{~2*6}lge;bq#I=^`P6&8*-F63tT<+GuX%(3Pv1zk@>Lyu{ipz@Z+{TQ*H8i=ri^PN3a@QZ|e zS6BAH1)F?abg$LzBqtcDp6mj;xU?_x>Mf?PeNrIRd-Eg&zD^Jp2LJFhPe9xoH^rqX zxFq{YuX#021PI(;8A?*;ZqB~xlt zq|GyQG2mq8tgptDOoL>=ev@2!J!uX9`H+w<^^D1&^30YFmrp&5_<9|rm0XB=&So(_ zg8`xB@mM~T_ZSteO#KUgFZdHX0R{*@RGi>zQWq%`?Q6BN)DqhKK#aoGEg%F-nYQDu zERqy?D7tJsj!ORR$O1o?_VBkD_$ZdGd#@6z0(Uo+d9j)ZpJiU1k=Mo@O)`Ndn%|@X zwHJ~Cp z?*m+zC~O3N@4}ZglRrs?Px)QH|CKHt6du(WO8tN1 zH$MG4@S$ug`$T9=-JSp{9GpJL*r={O!6`auj@lC|pGZ>7RU-?Q~{d5}1MF*X!3 zu(y{a#I5==qJ6P$Q!1Z58^-q>5H{@<}*8hB^#BaH+)1Z;n%*BeL10Ih?tFDso5I_h zGkIN>f{bSTG*q~a*s|#d=rrG@!+GI5?2j)KYpiRX zDVSs(VDPiu<0T>H3&6!NmqidhN&Le~i&c3_yi?vx3Kq$%p0Y-p38yX8dDQ}?dUDWP z)Lh^tTo0j=8kYm!_>|lDySy?EJO>YUI37_O1{&*e?fgBdmY#phBRDRKiX#On;OHK_hz*R|o#y zN$OZ9Aazc4NbU!ggDZ@=PHL~j{oOTKZP-~Ki=_$|=|J^WyFqN;`yYa)4lNM-(esA@ zk7kNjg)-}W`MBTRb>C@?gBiU25;+U>%U)@2we%v=E-Lm^Og8)0cX2#$5FxT87EFA) zhWvF#a4l2Eph+F}1rpGzHjKUU?yEFeGQNE*+j9}Uk{odry<1Gp*efOu?P2U6-%mXw zd^j4JS~}?1`wd%o7E>CWkG?T)ng^XwSt+nS2j|0Uk0_yG|Bs?`@n`CP{P_2iN>Nl2 za#OOjAX3AxOrToQ9>n9Eiai3pXui6r+#uCtZf+(#~x+b~RK#%5;spWnZ5 z-sf@7d7Rht^?cpGmVleyH7++=F%6gP>GhbWU&{;@w2Qq@YWq#iwW-yJpK-A%5@IQF>Otp2pn*X2SuI;vDo4&flaDW(kVZ^pg-f9c+L zhmZou^JgFEpaEz@v!Q*KtYtxdTJWd@GcCzghDPndrNNJKx+s~#bm}!)me=ouRUoP z_}#eoBmF40@mbmA6Lh0JOf6(;aWuQSZx*$iaT6|zOnm}s`#SY9SNj3T;_tgPx*0qP zgx&DD`>48)GO5&D{L}5qG3wyBh7S@_#rRZH!B-D0WAhFyH-)CHNl8W7MueDw94!R) zlOp3tw@>^pYxT06;f?9*Z8b7H%&4CYE5CjHkMgSJZXI=+!K3QmB;X7fIf&fX`AxdHa$- z&pz}&)PQ?fU6(ACrHn2U+zQR=k2;Xf6Yr)-VQtMO~mAh`0F_`Xg!t0F+?9E9j)$niRuG zF%z3*Bi~d=ZJ#s0zdM?KG_OXyVu1OoAQvsqPLJ}o@5cEF1F)Q1@fG}rO}Au2hxUfO zWd5(P$MiF)qP1E2OZLSXe3lAZos#dd=dP(Ja>?8|IXwLzQ`Jz6N{!Cq{|aLN7T&Ll z#ftCyg!&ZB@cy-QxCt>;(*$0UUI&0=ar*ZEWrZB2hH7Z)$TK0l|4|Y@ycMxt%QAdg zCqw%722PH86P%naEsWku#vu^55*s5Mgz}9dxS|D!aSNr5jhL6re9N{b>T&ix_Zpb< zu(;-1_|(5-VgkRs8$$RU^X{nfc+)N7lbB zpOwA^N6IkM5%b(c!e{XmLy%!*C-Z07STTm{q+gAHIh&pLmX6vRSx_oy+`lS&81n&- zjc_wqcO%7o&x9&dNLPf%cO#Ud!9?}$5$ZsneAF+EuR332_##`H%TF&*7_(2K2Yt;1 z3%91WcqxAn))=P)4WX`VZ4fq?a>^KTbgo~zCt@kC9;<4r4hnt58tOKB%JKdG4rk82 z4e^qErIf(>A|(6@CF|+;>HKXX_6X1%^go`dCs=3nLqILzJnkI&_|ij~&g3;1TK~ki zns(^lw6$Q2I919hml_P3x)>wF>8A`he+G{~d&$qY-^UjwHD;Nk#CCIwX14*K{u^>R z@ujeCaJ+dD!?-X}arYQsXsCaSS{|A1O^iAT!u`5B?)GVS?RdA(SIB*$?*$6kt3DHO z$ARk5f2#DyqSG~Fi`vEm%aJBga;^=?V&s~!bK8-qnLFFJ{#qBJkN4@lOyNjVmSW0~ zkLkt%r^>Lo8V{+BNz;cbHOOC$Ki-tXMgNuV24!R?Wb$xhQajHJ6|@f#d+$rq>&;2K z_N&LEW+S^vrVc3qH&(gBTj`1QvA76Kf=vF8#0#7 zw8Kcl6k4YZ$LAu!-=NW-&bQe_-I>CguTT<&iP%b5|fG1D*Zx7K25aUyt;_39}j~cyA&bwEW zk?(J9<84aiF1=&nl4F5aq;BwEasM0RoEdVUQm&6%SsCdPhti(=^MPp5wQFq9 zT~Vq=!7WN-|Jj(L)uzOn$Dc_rO>jwmq}kh1W&bgF#vi0a&**9+RZ87E@8g%=PVMQ| z1h;A4;{~S>?{Z8SNwj8OS$mj6|J_Eb1<77YTo?}yTyV|@} zUw0o*mTz0l{Mp_RKBvFjr2KLV>+^O*-N%i@Srz|RwP~EfA4|e`m+Iz&o!M(_;UaF=7J=^Ksu41qzW6^jFaPZ(o;(f$hVpXOg3QUe{TpPo_LdCR+4YT*3->c}yEh zF`+dbD1f$5mUIF$OGfO@Vw1v8M&ydbJxKN~kTqyN&3hLxH!gY7g>_@Y_m$j(?j*j} z^2Wm{NvMqq#i!S4D{2Iy1bcVtPr)BqsrwUB(s!HCp0dRCqxMm~-1m_KH3QD*1m8~& zXbSIct|%it;UV(%t&KAHq=|NBBFHg`^}$zo6qfM^{(~}bBMK%BfNmUMXXCD}saES2 z5|kpvH7m5Hls{6w`FxJKAGXN1AI|h!=K>+tziL^^hR3tKHf*6lr#5jgGDC08~@LK1z{e;J&K9(!AA_ z%AZ6x>VM!o1#1d+EC#41zkjXI>M2~6r=~rUTrErHoi+MSdGwBHk<|L=cM#&Q%Sezm zVb^IW?lk@E&`4@Xmb6(6S+eiH43>D!u#I+B$b#N-S5;mD=^l9cCJP5u|1sBxDBw4d zz99oF9Y}j7$_g0dlaWnS%w!mpFV#Btr^BIQ=f}KDLHKC-3$M6-qHNJB)d2D=m+S%a)Lwg|M>E+vk86Bk$EVHFIm8pN6O;eO?Ue0WO>f9akUO>-X z&CC4hVx-V^2v@^UE0CJmM

$j6~@>u2c_nveg%4pjZKwdQ-naiutZ$-}d$kx#yLj zvO>2#a?|ngn#Gsm{By?Ga7%Buf+xa5MKh%shxMEOa1Z#W24R|Zn-QXw^&$+Q6nk5S`_g7eWdVg3)B8ExGgngMLeihG(@ngbr!n6^!+GW&#ci!p z@5aQD?|1P}ad0%wn}XX>cB3+a&w$%Q8M`)Y!vPMZn>*wjJi{>JndF|)NI!ierE~5- zRsl?6siopF{+(vZBIt0N=EMsH67Wc}%K;;`YiaziEl*C~;TL&UuU@v{-02W7W^VBU z_A%;(ZN3E$$8*)IiElBNV-91m8F>!pQ*%OW37ycd760%NuVABUg_${rcLlxX-!uTF zeAE#E_TFo<@1=$24cXuV_Yk!;e4}>t^Mky5;M*9FejSmV+6WD*#;SRW)?X1zc*L&e zn!p7_ipmI%SDsY&+AR2IydpLBDrN<;&v1w(y-usMUqCS7hYfMA)u(Y-n9tL3+jR@Y z3^rD5ynr!y17yWNMEJc0oDR_6G4!VMd;&Z{U-?q6g3En0jSb_2%WkGH;bWqywuJoO z!Ll}(xxH!?P-UypYy_;vs`~*C?7gOht{5yuyA-h3tq7NJTBk+{jd`^BM)@(*X1AiT zFeNy|d=Q_B^FfvC@y4cFMOwPGs!tz)Ee3Dg8+III8Z~6_RW`sk1g;0zX%$)p@O{$@ z3r#gqi$6soZwwo!IBu8jn(pn(Bxo9=QlF@XSONyALGtuC#4$bF7gbFi7Yot_5=|9r76eI9J3Z2Dez`PeoPu*V@(j0I=`CRmrMgPr+e?CX0~QVL!IqQr&sTQ;$L& zY2Y2`dQtF5<+*l2OER%Un`pbGI@Xkdizn(sjIjaLMBURK(??z!mm_wHV+*?T9Q?09 z*1`v5=Lmk`Mk1hQ(#0X=n(Nl9RgO}>%$j2&kEWW!r8R7;aW7EMAGQNMfZfqw?+o?# zet={!53sF=Cz=l=f8m05s)0k@EfC}tzaKi%I=vx(h98sPOLL5RCOY3=eXQ?v<-uvr zo97Zb=i@J%F1~+yJEth;vXO4@rzc~bj(xSAC!fB#V>gFwuBP&gG00Hqw(;Wd6>ezE z2G5uY;Z)-@>E)RySFs8IUiiH(Wb+)<%XqRIKh|_OQAiwbyZhkW{V^!!8nFufdS=}( z+4{SPFL2v)tiyFqK0VPd$gewJZ?g5e zyPWeMd}uOYVXmbnU&x#eKHsjWZ5<$GlAqcANeEkk%LsrKY+`Toc73fs92XQlzZZ5{GAzK6t-^co!3qJX_5hp#it z@mrFn->?rBI48f#u}@GPa>)H*eVE`A1XBe|W%8{j%9~M`BhTqk!gWS1n}{#;Ci9Gr z*~3$MenTYK7*(C$q*hiASLPqqS7*IR2OH)R%oY_Pv!B`aU-lZ=x3(Lyj*J5&>a5$W zgRbH$Bw8PE-|Z9#)hmuG+k{sAX*1bC<0HUy5`t2$sue4uoIl z$35uQdhk0YFTW5EBYBrK9VQ3b$xoS=yBjgbJb*i=*HeQn3dUq~*Zr={F zPgn+Yo%3LH)ROxWn$97O66E%?E>~!-hgd9`OFVDe*J|l`gjgo~+gcKFaHq19KWY8N z^*8KOFcCr&7=ji!vt}S))t!!j@21{}L&?#pVI5DG61=!MFi~_Xb5`-c?KJ=O#y7#n zs^MiSTOI}tOOX#gl1qD`!}O-N*-K}0OyMMt{&9xox|j#GOjlUwoUC237dFVko#+Y!;S;t)NrC86Lq2UM&8@z!^MrT^x}by6beu%!uCEL4 zs{xcQBDX`+ly_2#)CdxHnaf%jUP!`0y4bZ47l5)2=O}p$s%k55X9#{!2aX>>@2D@g zf*UWc9$MkvOQc(#r*!Mfl|m{R_}VTE7D<#rv=Y6 zS&KXq(P3$ClLiKow?y6=7kM4o@DD3((+|ygE81)g?1oKzk#qY`H29%a;$mt{3ZtXaRNvqYIkS_MJC>W?tiC*e-`1=uNaSI@mW8yf;@dS; z2&x}ppqI3fC$1-rYzmwsE6VX7#m$M4wD3RL|j~Yo%RSER#)i+H(%Eoqt*<4_M?5rH$(Mi3CpoQ*SC_{>s|9& z^74*8j6r(h@>1q5YXc_PWt@NahzxCS6JT|^;1KP9L-Z99d5(%-!NE~o3lk$iGHlj34xOk=xDjx^^VKPVkqVtN?k06*_0sZB z?pBCXJ<+M1uK=`ab<|zl_}JVLnvP{#Z)oBg{MGmZ^EV7`v2Mz=1YhAuvD?I}oj-A+ zp$ST>;S~+n!m~)rE9}mV({>2@m7($V9p*fIQhCrKc^c;Jyb*MT*P416C%-a|{OdBB zdD_26@4N<2>ue%IH1ew{fEnG6>JCf@dA)MCzC)6CE<6j9BIsb4xz&t!G@n~Rgcp`7 zW6U+61>yCAD3aMis5B0`TYI;;<3V<2L9hHuBS*&@bC~bN8z2wii8L)h&C*`wc4U3_ z?4_?)hLrMH&)ZhGCBF6UGeH-)KQ>6>OCnXhj*Ul&xh|jOA&Ss5oi$QJ0g0i$Hay$K zeq69CET6mw?ctzW2#2*JeZ2G5{6~Jw_Ys0H3IF=H4JaJ^*p=AnyWHZlk?!`Av)hf? zsr#6Nd&R5nkGJ8;xnV*{wD=_WjYQ!v<1&U#HC0x|Jh!vSP?^`O(CwNJ{?^diDP+aD z4F0wOs%D5L*5q`PL!|-Zsas$>shitpdowUA-IxhuZ>hW08Qd#VKNYbdtuNyT5_Ame z+FB~Ienkw?xhco%PF~F&0kyo?!ava~a7>*TaOWa)S7ryi^Sp%;iC^=TGr|mY>2Q%> zV(us`>cGPE4*}9040XnZ{~_<64u<`~c~>w;=oQr;!H1@8mLg0l00Lzm{S@aV{o)R! z!J$h3lEKBj^i%-!%6^NaMP+(NFDnDe9A$`IKr7?AoMh(OZH4U7?>NWQVz4w_2IKS* zb}MaNchHaOr^0%eEcLVpSZvJNq9bgpb@>qK9^)DSp69~~VIgA=Qi?W?Us{9fnVXKg zK^hn!95%@9xmLAy%&WK7D~c_E`^y$4**@!>@Zt4@e0#$XApLUZ#$*!h!Qm+n=QhYI z^?+b^GtoXTqbz~`c?61sRb^FmRRa!X`>69Qhm-#dRebjNe!={$%kgps=IiOTE!}hs z^?cZPLp}^OdodwW;eM^+^24%(Pq&)OuHq>#KjenE*=eQGXeU!tai=Avf@UPY5b8Tz zBuOJwwhBYJH%`M8^Y6q8$>xJW01)y=RwTzh3){jr^74r8xX}^o&eVpiL`ApU_=w*& z2uauYOwB|cY~xq-gr8tujLhrVYS-0(EuEuU!Q+?Ok_yhis4s07|CtHK?y;NCa_{gS z-0_&H++0tRo4!tT3fgL`NW;5Jl6vX)?bly4`P225l#9VFv1Qoay2ezPTw7z=X1*ndO^~o3FONV1GD=x;xM@54Z5l$*9lSjEtq>+f|DBYfvAuOilJv{X>*}jH@1rHW z3;$7;4#&lG_nb++`(zb5XS+*8UDVs)6~Gp)=J83<=`ecRcf#z(8-r>n|F9oICbOuq zU+>e-DgH`OL++-@duB)NjSA5ceB6nX=wl|mb>go^oCT1G0($ti>ZQoia)L>a7>9be z!CzNR{nnaQ|E{RRNH7R?`h*@8&MAqV$QYnr8x~KNLBZun39>zyAVU`C!Wq!a)KJ9Q z(Afji+~WPJ7!@ZHR0;UHh&b7i7T#D|XWftqCL*F2w(K5o%$zWbgwZJ61E+CErQLH|*BHtbVQo{hwVWRF$@+E@B)AHv@*XFB#ZLl#=nq&n zYp*QZaHp4^7_r+fQU5Wn(K#bJo;A@!7{IM<_q5T2_u>Dp>z~b{WYNnbqeUpMPVwT) zdUM=js<>1>p91#QHkBcWt=#?k8Iw!yZ4GkGd3%9ZU{scR+g0ZG_%^b>2p&FtK{EFq zu40h5fU-HVEWpF&EY=ixdV%J_i2rCIgTzS9pqk)&mHuI}jkd2{iw&b$rhjEZ!yLk)|ct_Yxko#@rO}zQ{z&kxA zV`&yDag-+0`8u15R4#KsabAn5SDQa}94iHP%!A?_rPdEF{muouw>tReAp?H|rc~@F zPZztrtits);TaF*rDAOcFQ=6ZkSBEQs2L0*^^n~fN=*v(dsN<~RI2|0t=|Cl(8;kA2C3+sWdw<69m~_)%K| zHI8lUlKW>rG}7wojkczD2gxGi?M$-U0YaObJ&-z7UP-o>fQnyOFm?`G)E7;icw*$W zPH^~qWvxZ6U6AWo8ykBOUVBTCndD^W+G z8**Nov+RTfRcKljKJekDof~U`PvR9mu!m%lJKYqwP8X5Lz^|UAM>*GjruM>X=>c5F zHtPxDT8X#$*GaXKZ4at548ZNGM(I1L91rRyx|40B=qJufhd%TFA-3pWiP%+xnVjc4 zu4P!tX9z82ul7W~F$-$TjaDi+{>>_FONM+;t}`Nu^Iz5vIbPUo(B`8&Z{Dx@YpeJ+ z?_xKzXZx^F4;TEpNxjdXxoJmnA)cqT>gKnrQKzN>I|p%=+mG|`S56bLfy%SiUeo

wR?n#yN9Mq-r8`ZQvxU6udXfEf1yzB zbTkt3jo5Gq8-4^komc-qcDI^0d}!$)7I2?pM(nzyGF|61h46f(@1VJ{S}wsb{eNe+$S%uukK`n z+jHx3B)UsSBnZ>`2Z+NNX7D+DPn~l{2z1frZC*gid1TgD^P}Dtn|pGY+*(T6FZQGC z%1o|dH~ErqcYfoMZmYEiJx+5!zlq9mMajT`>K?ZJdy;4R%S6(-d)S}-v%jF~^REw0 zWOTtW37&{QgUsC^F0dz#N2rQ#sS@`TlyidM?T$VE#ZRv*pwOqjn_OLL{x}+p3Fe$N zHe#XQLmltES!mh^5IZwiN1&<0XJ zkir2E@2#l?D1w-eCqgTp-|5npgS`GL?wH!!^ed8N`WNjwBK`%Pt(8rYjfK09J&yUI zF{x3|1>LZ&B=4TsMYdH|s8ci;aNURd6yTZc;kLXQU6Uc&C(oEI77965)_Roch0ln( zwbq@;#j@?DH@UmuUUPgrRIV*pnUVUnF1kk2A)qT=O1BTtd<80FTxxnkIIcaiU<>aoYdX z!6byj2bkl^lUmt_uAetDNpGShds)fAf8I6|;;3Kzzd1Da!J;wP34PVqTcxvSaHW`6 zRFdBie=;#T%h?f6_n5%>n{$ZuLY4@fYu~{N#WR}ox(6gIe*_YaZ63oa(LW*J(!*f zIS#Nu_Nsz!O{yKhUmSxIsZLPsAuIG75Fp;Fw5+jz*YKkl$a@XAG`V^fcHP80V5bf| zXnh^9s6)QnIZo{xv${7!0#=vHPQx2k6@%Q?>2N znD7%0@~E_l14F_WzY95HMK3`+0-}zRZ=6=2@|jzRyt-ykG8eHHzGp!tXd#+*7GMv} zCs@`u45_MzFKh3kNY4ImvQl9Rvo>4b_#vJf#ue=e4c+*~rng^SrOfG7S{<17KAP4yyWDOJKyxO;nW`SY3^W~Xta+UfevB3J+xc&H<9uX}tJJIM zfWL$<>i^Qi$2gYUPo3Fs6ksmI&!<4I-#y|5jR@f}pNB$SccaTnwGu;y9nRrtF@ayW zjIP|bdA=(_e7O|p-=HhiPu1xePe&A-Md>Xpx)Y;i zrUZt_Q9pC-_KY-u?VELy_@AX1`?N@m8uolhwB$<51;*QEboR1}#(5fCc{SB(NUyc5 zG9fY^x>_E@z2NTp{A-@wgcDJF2LEQUg{4maie8SsmrFOXs2)v}!yWbw50xS(SkJ@8 z!>xC1-*Uhi4 ztCS(#^Y4nsp)yX0>8pla8M4w(pnDR2v1k0%C!ju3GrDNmrPle&V<54M{Vi9`YAL=V zoEk4(c6RLt{!i++1o_2C+9h`B-`Fiom!r>S-tum(U$?{FwOt3Y;5#!vGkeTh5Vr_5*yf~|yK7Ar@_N%7I|UQsr^+I8 zcWs^-;p`~kp7;#CKz;Dy&71HH`1zd(7`n&HPLRz0to4!6wMMa}NF^nfZHJl%KA_w? zk!l!_(1MX$u7+I1%%+m`^Y>OE*1mhYZFEn8MTs;*ub-U)8`wb%($cWl1N4+T#G16}ZKU&>@fETDl#XX#jKH+w z^EP&C@diKX=ONa#Muo>9>Nf!(#cD+~i=wW9vCJ2)CERWc%P#HE$-8OzeQaD(kh!WG zY*7xzMX+h?X~4Lk6MUX^I-Po61rAE6*Cl>Y3cRx-SKnEDnFRb7L z;Lwn{WDlOXDfe@7QkZtl75hcqzi#aacV@yN29L6fuFgSe@M3u;Yve5XF{*bM1EUUB zTZ5a&v>kedn69bakr&zq8P!~8wobvklU0)z;2I+r8QuDr504RYcjdbI_St0cK2Crh zws+r7O~>9Uv-jcUEbpWTQJu4uV5ScFKF%w@KqQY)K^e+KRQrt)$wE9D20#A!e!jAx z9$7hknp*bPEf<`4fdsCIix;o(^~LKeh`bm`Xe63C3;*K6gYFh>R<5o}N5Y<4Mf30P zL_(=u;Fp3fE|r7aL79(jm3jpt(lxvWdgNO;ej(i-HwbrRnWr@}c%$TxzT9V-ldjL# zIpSnMvn%se0{cJvlu^18)J@r$KSr^{mF;Yf-MiG%oBQ~-eE6JhBG*eRZj4;Tzhv-D zcuy;>1iVzgw+{2-?3l0|3UQ4J+2nWcofgrR>+^C~_S{7uD^!*HA=srnFC7r!`8dFb zDb(9on5Q1RKe8a=3eVr9rXuSc%kM)!;0ryVrAB_oD2^qBs~a0vV3ZhfTZr#3o+6>A#BE0R1;P?f*yeTcriGv7m9zXgY-Um- zz#d(b5`w%QJkQoUmAnv{#ZMM6M`6>?jgM{-EETe4dHt2Qqh@LPmoA(Tt^=vLgPfGO zr)R+STnwa4x+5$Q%MUpjW)-SN$eF-C*V1=>*-v< zb+T*W)`(>t=D_vh{I}V8;pv^~LyTWK*Ug-5-gA9=Q{gwwv_DOwQeYghII{U|v`c0x zYqyaXdl7#ak=+B0pR|$zkK~7K9PX?gfP{gnheowDXe}39!s}b?Jj26gY%XVj<^&QH z)Mv9CRN=G_sceUHQ%$VDmtLn_p%Sd~BPHPtFNYS=6Fo`tps)KyTBHv&)lZ}RS1Ux17o&U9U zH)I-p_5j#pu9+d`^-j74|K9z5DUu}sei%*PEojd;zw^dDF!z287fNhjC0NW0vNN!- zcN3wr$!9f|Zn5i(zwq-rS$B%EjBNS<7m~`7y-4R-TjS^_Dg~3`<@gau(p4PyIIzA!M)(wwzX`949 zKiQfz>9Ak%o376fYvRqJ1nUK#6y(`u|f4qDqB?x|9#K@YQ75X71|m-IBzwGBni1UJr&kz z_2<_G1-Ol^YY*`+#ShP&M)e4S6TLp|9&R1F<1?P>9fD|B^%rwT`-XBG*FL0vR z<&l`(S(msmPAhU?nmGG7Dyu#`_q2GkJnlR@O!jD0xyn}h*)gHPC(;+`m$w>!Y!p($DPPc;3G5bEfCXvc*)DE^Ai!b1mgk#xe{7qZEA4if4?`{lLr$cUe*EK>xxt6LSTd6k}dV`W7=j0S~# z-`56d%8AsSTF@Ov2W}s|YQrIDz*$x+6{v}gJnEvG?bcgRug#HH)<0({FxT(p2>m^i z-B?^QGAd*1qil(B&E$eoN<(Q2T6Un~J?b{cVL@aE&4rx-(2rTp3MXoZ1HTTEnB~5= z(S4i$i+p51E>MD+959XdqlJmPF~46+k?~oc57uB>DO7d#Mw#tVtpQ(<*g^UuJF2se znQNm<7HB{t%LbAr{;bF3nW&&}Gb&7px?8mb^)qw(5grk9C;}^I)YOI~>2&erF!Wt| zrMb~d{%YVnSSvmq8>0jBoJz+et;WbiyIT-{sruC)fMhBj2cB8UoHu%YZFIp&W85ca*bk8NNA~ekBa$rlL z&YfYCub5ji{b84Xg?(x|ksF>f-7f1%k50YE%LzfdI)s!PDD3O1IwXSJj_g*|ta01r z4;J1RF*u!02r=Mb|3{OsQLb@~f)k{AP0s^m+mVq$73_k95(NcpYbVi)FG_|?bII); z=NO}m-4?10rYQ?{I2|X~Pt|<~pZht`QG?Tq%}5r$U5eq!meJc8JpTy@)g1or4jkj& z7w3UOT%v=fHW3H*kbJsfE6i=*^xZ}2SGwL`y2Uk6#CGA!)9tF~fQL>H&Yi7m0Ub5NlNzLh$h#krnhkV%Sn;Z2U9CZ@|rIH#%n8Z(04}+x%%gFao1@y+`Up_ioE| z7$kEkH0AIM2LpxwfeYnyQ$kpf_u7@W#-z{-yEg7KF2Mx=+*Y))Syym-$JOyBN65L7 zGbG8R5OP|oJ?qZW!`_NC*4-sfeRb%|S2fm4+J8SqUbd_0YPOthAX{z%7b+xJb}P=U zDSFGRG09db3*pDy%5HtAc@RE?6&yy9`2A9+%ZZ z`!R^d5e2;j@?V8MjvdaT2Ji)2F~umXXV}z;szXbjxtT8bJu06wXJ-~}CYNX$yG9H@ z#%z{Y^0YS}mcZ{4f!56#hY$C}Q3~VSoLk#sDh<;r~B8-FAZBJHKs@%=x6**3xrX$e#OxXMc1rq~Pr+hs=`TL7KQ(}iWP6%q`M6k^(V;>`PmwjzReP=JU zqaTmVtwiLbx^x$fF6&~Plc>oyg4y-fjh8Xl+K-xQ{4Kgs6UA;m&${Y`~;?c1AK*gD-L=rBjJLTo}!B zHKF+6^@mx&62Le+bU7vw)AZW(d(VYMHioq(&+iGa@%?& z%q!*?>vu0xEJN>q*`<-B!7vRg*xX9~NW|Oyj9?8FdP^mwNaN%OgYxuLV`oOOvx~W+ zcR4c?72aEF>FJXCJNnzFdNOm-KoR!+Q>E|;syV_LHDKk5FGd=_3eIZJJx6O^wfIrh zPYrXObSmen?_AOcFG12opTp10;=J&Xk%;zfsv0|P_3k-b62OEDyy9l&Rtp=YnXy`2zfH%g?joMJeuK zP7|LsI@o`XItr_uf)1vu7Y2IXx!Vai|E?S6muri=Tzhgzyn3L;@1w2Yat!saf6HtY zqtc3bnT)u0`Imu41fou7txcxC`u>{!R8zWusn`q%sv?1D!h2Ta$hB6qdi;`^H-qDlIPFw%@;;%O!z$Qk9=X0Tye+~)pu-LTrq{y zO6Ror;*WuV^>Y($J0eL~TAcpF;OdAwE(RmiL>hL4y=C8hk8 zur*it=eC29)#OXq6e4}liTvz`M|hx$gKM&p1=sW2=PmRK9*Hn5V)k}T8V|;A>-EEy zGf`?(=`B9vrz$Ocg+?loS87yY-8TS#9(0yo&D1D$lbnKXv&+M*W(&Nh)r2;^C%I3i z;B_qfqD@B;0#`97CO-1f2};xnCg@$*i-SvzbGPqA{q{wS{O6px^_NoSW7G-+V|pbg z*l|0}6$2R!ddLX9jibHO<<~1K|1BreKepTsD>zA?KQE?h%?%vLtfQOIo<>bK>v!>-sUr)}+P&wPBFpECCI82<}NkZM|LB=30hQ3a-*vb?8#3Ky~Zf33K%=nOMvp2yPGUgl`mr zpC|85Xgn&-(lvQbP2dNdzYe-P_(fr2f25PA>S{oBNxkfccw^+F(>uAl!gBYdhym$_ zd+M75Q8&X9!8HLqSNLLhBheZEjjtJ#Uk|gwR*>TY1yXMF*MreN)L3`ZkH5bShqdhN-K5mXIi$t6+m`!e55R?CWTuW8 zr7=A-zoy2o={7^iEXb`Vr)r23dj;UfdFQ}%lQeLVqyAe@FswC}IpD_x?`lydZ*KiC z?z4?dc2{I{AfNj&m9H5a8L;_S(#-f|%;!V3jNI}(4Hb6lDL~#V@eBAln%1^=IvvrF zly)E`Mus&$H1TE>N*HLG?t0IxL&gDgdHTCff2MzfJ{teqSIuEKfVn6i1@6`ELo0W6 z-DemR1_|@1NWBde*Rcex zs#-!V+Z$kDq_?sDiVSoPcDr3-XACTO$(uOg;uF|*fEgo&ts+idJ2jiagnVB47u6tC zHKMdYbxYx7TS2#DLi%Luuy;CC4e@%|f2WXkP5*EP^D5|m8 zv&gJeJHBI|-l1N@e{J?%Uj{E(awA=<6U0XYx8A*7iJcXh+TxBZ$?P5`n$yDa_TW`9 zQWQ2r`OI5BUO$t)2rr=iViSDGRi#yopgfQr{c24}v zz8D}HfAPROgH2qn;=fXOZm^-#cdTAgM)>FB>-#p+vXqmNeqgp=<5T7_-u=Y`N*b1p zsfj4n;AbsH4;I(g^$coL(KUT-G?$T%W&V#8QA^|G?aa@~kbkt-Z@nhU9CLWSAGVd} zaAz=w>DB}C1LkY(REa_Al}EdVDm6d(mLKU|)+&U%=#0+)jPf_6svNtwnzAuJUXnY- zxnNiPa9}?rBpRYYNgZv*h_73%v?don>Y_e>$xt)UL_F1^*lExZAAZmpxQgT-tfB=x zu83n_vy*v)r+@5gV)R*tXP1J7u~p5kLyzgx_vY9$H6>%&JO~1-;Qs*edUEioKLg}h zR%+??&RvgFy5uVIa1p2x(w0nc{)b7u`-3RXZ-6VLHnJ)Zfor^% z!|Q!pCj5ID+|X;d!XbnY-TvTrrcqWu>>pYHrUYVjLfd%n$s~~>#VXMKWl8lzTqFv0TuU)z3)3$Pi{xW~O1l0d&p5EUQNf0e62 zHiu&`!?7Fv)m2;S6jh3%3j2kt0FpKZc|3C%9P55^I#h>)eQjS3h73nSjdyeCrrnRA zh=bVaV{1n<%EZk=W@d2_u8GJ}(A?x^6}TQPNP|1{iJG1PJtkNhX&j2o(?7&_#obL# zC`cvel?J29NAn<0gfeb?=SSt5xCQZ^|4{+$0hFD+D8cPYdcpo~Whr9x{Y02TI^Hdd zmcB&ST^3j`@io_Uh)TvURA3}bbO~I1K{e0B$b$AoDi8y_R*GhSbMO;ZOb=e1RsmP( z7Zqw{M7vACTxGk9aos>)$@cK8e|j_~GH8==^~k#<^mMh6P`F%Uidep6kJa% zkE9!mc45x(4=GWvhg*8ext- z8TkTtH}F%2$Ft`wx6O-nsjaWb{l3*1+GhnhgnJtSHf{A%NWdMAr$%2*i4yvKSls&G z^0{*%Ije21&FV*H%O*?YeiZC)Z~FjAx@QAybE<94#sD5rSkAj#w9Hz|MHN;+EaV<~ zV5+ES(@oT}^^LqHK_GWV5Yu#t@Q)**Cvc2=aO4BEn$+vO6ugP5oU>sPTu+pqI-_Ai zG8;~v2LAPWpg+EX^p+PcBc6x;mDqcU%nxNgKx7PdbO$TK#2(D{StQ6 zYeKT`k#=r|+q<1LgE!7W;iT~9{|F;@3~U5S=+f~c@MmOKHVe|l)J-ay^_*~<7ZeKk z`?%{Hsr^N~mJXx>@ik^v>m=6nVXO_oB}kXMDy%9LC6wy(Fu^$D>%qlugkX=TlfyCJ zPRywuNb@n@OWXq0*7HL(1378pSF@w@sX{9F5dDW{y&aaDn+OyM?+(2XYOYFo1s*j!xEgm&)t({p6Y}I{bX1ErAg+~-7FhmCcs!G5oz#BtNF#K~ zej~DQ`BM~<5$Yn_&_5t0UFpdxkBQq#$6a#s z6tam0l&?-UKCNrps8_16@-;N&!R;$QHy3Z?w`Y^+!%i#H9g~+`4i1x_E0nXN-9In3 zUlIGF=Dv)LK8^`%GrFX_b zm8`!gu*-eriCg$OL>{}>WKl}euPpqez+|$jlwcX+F4{xfXgN=29LAm%0;a2FMd@4M zY4Nuv4isa^K1}tLbfezE)(xZ}T0rG?c!Z(w--t{L4yf|J8nPJ#lbT4#F_4)spi~g zbMS4HP(*=#A-fG9s@6;*yKX&)%Y>d7HoH00X3c)ct$Kdne0p z4b#K8I=z=sd{fP6*wNU1x@~=`!wWeO)tVohY<=tIOi6)ikBGh;gQQ)L!^*>VFy5_6 z%zTMf`G_3OpkKA`4DHY@x4nXC`{HhVRAk*Byo2T5S)xvmB%EcuX`}0~W1q;s&p#hr zd>Eh=w&w)-@{+=gd^Vek%uF~J)m&R#iIH67cFmMzMJ86%W?#h`;VZbO1a<}^VAPiV zZ@>3`d&G+;m!g7V%WeHs;*_UOr##U}34bL}AauBHr_VvbxCc&WOFU#<_H2}x4j^$} z}}#>F%?EN`QNdezh`z4?j+GuR!8hGDYRekM7}iq zt9qq87FHeclI+$o`xW$u^PM7o$EAPOga#UB>PLj4-|!^8T;v+2p(WskiTEsD)MlUrd}pQ>?tKq0o%<5Ukt~3 zb5*~Lm@9+L(^>b)9mp6MvGXilzSr7Kg48Gx;=BmSAb3T2iLwQ{GA_9Xwze*H`e=|l zxUP4-O&?0lF{(d4Vz=sI3`@lt&;LdMXlk8-Qeg2k=_iS_=R>I>)M?C}cw`2be0D>s zRL7$V@K?tQQljcxaqh@EMnJ5i1i8<%PSK|2pA9c7jo2BUrN8i&WjstL7tJ%Aoz|3? zy*V^Z=UIfhq!t&P_N_hwjI z*LXhlLk>vPX5*8B8S~CptE*mapP1B*(B*TbBT!}U)8YpT^NHw&>|mX;hmgFRx2nbR zZp0NGY4((@4CE_<2a;LC^6KK(3KFiofP&)a<=n+O;B3j*=KhY}Jh!hxM%PahTGV$l z7QN4tbOXb@MI=WY5BvyDXAg2b5vdDz<6z-N1n%xi+Z&R26E`XLlM$1ivcBfk{Dy5H z4xSm)I(Y{`{~CIjCUEEj@_dJOd5P=8QzMu1;oeHyvBC1@q?WnAun1 z5jXHr`4?1K6`V7j;}1{Ge%bwJ{o47d;{S z?@&Hq;-hX|n60~}AhP+{PsySzlvGHzYSpOBY52L6J9hlhwGy(gn3KMSXArlZv_Kyn ztV>l|0k^$$fC^Z*(5lR?JqwzAWp)$s) z2i-2&Q&3PUv)1jf#a{64<5`sfhDY^JeqC1jT^)cw@_TbFK*E8#_c6H6`}!K#`taPF zoPygTyfhwh*u+zW_3IZ|1RTd%+AfhBa>H9g45<$VAew3)KEl2V%kj0sg_pbn6djlw zSSr{=_eDJr_tOpulMx2*Jhjz@e9pE9X=%e6P}=foP;2>%1kBRuVMFb^X` zMI-OxXIcTNcr&S0(u28Sc3ngW{7Px2)d-my<&<%WU^v<}ax!4VDPKodn(4e*kiYg= zDZPy_%as#q1iH={ESCVnj!-Tb+(v!UrLeIc@X70AuU>eeS0-!)m6~irC@{00n4nsA zOH@d$mb`|9J5``-H@Wit&{7)gU@vtNIS`q%{>t48G>=y>TSuO zlqhD1;vSYHeHJr?Y^MK6Q8fa;Keql%qF*-iTJ}qxaZxvQ0Pg|#W3t=-3PPQ*$PCRP zguJCxZP@Hl@mBM@bCfdJy#2ng7iTQxKqnph`zn=;$$h)7EL-sF;LpPgtDY&|7$E5( z`uk*wJ2h;JCcnHe*Om+^Ld3q+SoVb}Q)~3kd&<0%eYp`(dyubLvG?egecUI@(Ggb! z(Jf$meO2Cge`Y`PTlCxRL0)q)P;e`%b(i_H&7mXiz$DR`B5vbT|L_06`hDHwnd}}V zD!w5PDQt(HeQ?Qo;@kIpV3CF%pz#3jA+o)Rx$unJ;iwv}$sDNZ_`OP^gbowwV*Fbh z>3-}DAOL*zA8{Qxhr5oV>7=z3#?C5==UF1$X9m)!g4T{W^DWe8?ERyob z9$@HufRSP#rBx6_dK8fy{;vKu^Z}Xv1zhTaWA zJ$csK-Qw{sZtS-+5KtTJ?&i{S`S=IJa}5;WBW&d5)oyxDT{gS%g?EBw005>Mf_P;b z<_lMKW+v|i|3pT-}r=P-8}w>pP)GGxESyiq@1k`0pxiT3yQ&vuQl9>QgF@V*oK z!Pj3!1hsxYxQT-qGQY4Y%A@tS=WMzgEc0-I4BxQmxFH{i6C*Di1Wtuazl=PIJUh)$ zgOt1}{NveYWF{)@E*6wM+O(eD|4%n1+{xTJYlp(&9o+}D9()E@X>;(UOw&Yq>ZtoV z=e9#&gPi@Qozi16q^!z|7Wgpi2qPTcw?fB%V~_KBftbf~y=fgj_K_c+x_`FKU@R?{ z77ayL)8QdNfvZLw2pwXfJ6`?z19AMyDpJ5zljVt+xYmomq2ij!KH-*|Hklt$P;k@g7} zUOaS&vMTM!nr*`EHV%{|uVLahi~>t5Y`J8CXf9ol)jwsT71qe$P3RLQn1CA{P6~{z z;*$*WGg|#DlBIL(9tQ;JmsShwd+~*@)k^>{UE-ZWAJ$9WlKB?CV`$cJ`u&0DJZ2`P z5l+|&7lcZERZf_5JnQRdr!QVgujvZTxvrY^hYCHz{`7MFw0Qn|ph8<@?C9Bd;QsWR zZj1Bwm6Cqjc|`iz`UO_r3U(pPdG~tMs5*zRGKhzjcjc| z^3HnUQ>sI|=?;zI=P=pE+J%RHu}gFT0`EWEZAOZ~nV*dhYrR1Yop$RRh};{$ElG#n z$MxD?yg4ZLg3kno?GmD*&`=pzx?KE~7UicA z&=LJ|b-XtxUG)#J8(FSdmkfKY(hq2%w+L}nDYla&b)i*hyJ8pDa`W&9cfaiKi*+l5 z#@U|**0j==!*gSOS+*&jB16RlUwcSBuas=AE4%gX6#dTpd{8E)YVZ0S2~&3a;Kn)c z{d7DwX2bAWP`qsv4cpj&t7G8wyPo|fzM%al(p$rwAJ zn9o1Ch<`>Qf5Qy>fm;yn#fBC*`UW2}x+Nh<3K`2A!ic_K|E=F+xqdTU^g;lB&J&uj zR^o%vZ%n*n?Z(~$a~I)Ei!Mzk6Ql4kz8N^zs`QqEf)g2<)%?R&51rxNCQ&jQG) zoq@Q=5(W8&{4evL4*=UX6a8~F7fT&VMlI6>$^lq+<1NoQG19FxP`F6IW`2Q?8_$dy}3s1DF^a$k0Oj6lE6T{A>% zT`eyG&1#=Iv8Pw>@jv$7=vxP5vD1Ah?JB$H&+GQ&ghqgKzUmM+t0lo%_B5HZr!tJU4sr4|2gk6ds&=Gd?w8E{dM(EGG5Ve zq{l@x?w>cbUIZZZd>-Ee`&Qh<4Z2>eDnD?ne@>6Qu`rDl%rPPwb&9GZ_HNW04a>oD zPd4$>bWYD%;+Ki=2MAnm1i;(%2{|lH-qQ3q=JDU+$iCKUEZszE?R|0BPI7dP)yC8R zwtmzYp*Rl8V5CN6nb1NLP)TO(V-E*UBKE9oMTNnceo_H3w4>Z#9M!b&i*TYMrIP(V z?14ljz*UhLKLqbgpmj_&lFNUG%2e$%!^$=wbV(HdhaRaM1fkv;l*r^*n8T~&!zrz2 zhw&UY;!!+6^fLm*w(yFk>WHY(m3J!dm;%xyI1Ixc)kw@-6&IWE{o%f^?RYHbQuZV@ z8f*N$ktxanX-*5SoSH&uOIq>opMxpDA2dJHAgGIw-QJyL7t=^Lu=3P@W(#|L5ifvS zOY*^RDyTu5e&(J$S%QyWwm>45?k%C%n$(3$&0<`^D;*7z#zm#^uILzZd#Y5FGHffM z#1pl6BT*wbLLJ(FhPAULiFUt!_a{;k&8fAZ<+64QC;xi`bZeimirbK0a)F!pQWA1v z#?|YTIu^Kma%C?b7sHWCvLMA!9F-#kS4hQCJzCrGR^5eFv&yQN8s;xyMspCD7%?k{ zEJ~94k>&XK(x&#Qy&Bk#iEH_Bze$IJ}Agfr-gaG_)t1K@?5`1 zORDisk;W<2@l~G{%4!u z%5LGO?ZTV9zBJ=#t&Biz(|W~VcluARt8`3>4%f7HkR@fL6TZI^;wDbQ_C)5B^$+Dd z-9_|qlTj_5m5Bj=iP?YM%u@A?Y|FEYFJn2(B=ZL7ZthOm_UeKQN9I*hXnQf@zQh?W zEvDY=C138LSULajvH|17vdCEy$PuPLlli_2=fsuRWx3$=;>a|^;(y%wCoum*2Ft94i^x}ULxq3>g zzUYKbPR8?1kFtq7W7S>OdU5b+YSzVUb-+kyLK8z8Yd)Q%|5gnR^FA{?V3uU$TeFu5 zF*B)=PW-w71k-Y$N~A?rN1DUO>DF6ZPprW;8}% zy&?Y%p9w#Jw&G$o-X7rrGP8tQJpP41F>-|K=I%|MK}n_C@^-~2m?@Dx%}wvewT_Mi z9E}&wFQf>pjI=XLrkZ?Bjij#?;x1`fk$QcU$r=N=Nxx@@{&n$T02qin5q7G-S#o5` z7szah3APsY7#2M?c(&{Yo6j?v$lFW z((zJ&zg^$7=#;3Nedp}kiQ>Z1IC3(fnmeA5iFy+z>?!V%^gyUQzBKo^*>30(72})g zNm^WAd7LBF73x@fnrqVq8Gg$aq*Axz=cwMmOqsINV>&{sm0L#Qx+wjZEqI(K%KtQM zf3yc`Luv$2BgY5;ZEqmQJN za@X@Z9&UY2ajQhIN9%?v)x>>U&j{`iW*Ac=fPEBDSIyCv+>@u|ZhzW2S3Rh7TgKaH z&YQTm$F@|)3&nEG!L;aDsHXUf8Edbd@t_{<)Zj1AZ3!RW@IgX&rKe!HJ5c(+Xt@LX zf4AfdW$QGrOe0sTFLS&KDVN>it%nr%JY}}6A5#0VWR`=gZ%N?C%Rhe3sY;_a>-=8r znEqk*5C}dNNjNmY!5T>#-jvhK{mO35*})WIbu@d8!tZl0%5I zGp}SVwYrs})LX_Jpgjihuzpix9O4fwj=P>VTt4m~8zmYyiVq} zEbp7wM8{7>C)+#&$`h5D^3Y^prE6Ec$w7hUdr2OIdb9lTc}|h2wmgA(kaL#)W$8cu zl{%~FMs%r_d;b_US_8nzPJQoE8#__`!ALi_q^h8&b=uyn9JGTkf60HZ@f7is5w25k z8)I5`IXbU5SajVVpnO1iqU9u(Up@SpIrWIr%(M;M`S?gcobZVkpLq6%Tm-kzFt7K? zZ2K3@udQ6Zvk_R1;Of+yFo%~zFukt;UvQ3ve@zN(9&p%7x5nW`Mj0{4hTy$e%lnSV z>~CRjRx|Ft4QUVCBpEBGlOhI0e;>_6``rw*A9_^6QhNdHa3R(Fk_4UR@ zaGFK)J(->$F$_!+FFUu>;OJB|;{Hs7pCr#FAukwMc3}g<{I{F@xb-IwI4`dyO_Jo?c`$9(r4)?0oi7UHe%cSyY78)G?30TXda8H|KJG4; zv5TXp%5wQ?AN2woEOaYd+x055$Udrlx@*OQ6k{;?&W(WtS!RRvEE!@U>Qasue$zWd z^y%;twY{3x{K+9s!=E7!nJNoTt-_XMu-W5xhQ>9EK%ZJ+m^KX+a}b;oRcSc>=yX`_ zH;Wk0lcm;M&yi@S?6BQqGno#`w7^(a{mis}X=M;{*Vz(#L% zvomE*u6k{^%~qXb7Gth%y`kQ*QEmL?+7;YIJ4o{Xd3jYi%KZ%xQZ;yL)!YI1Yfdw- zv?FGeNN}XYKgYSQ?RE~zD^zz_Fw(U!0bVC_XUPHI6?uo26>ym{2Et1K!5nED=;O#5|5 zmKA!H9Qq|cI(FmObVap=Tw}XwHk@K!&WSQ)4{%=TY+1q~#TV(u$h}-2w;Ll)pjTfp z9X@T^KFF9SkEQ1D|4Fj_ypF6T_V|vZao?>=U7F^$>U)ar{!=DOVLu*#*#^P48_~;( zvE0G~^lpEp9vb3~O{rm)%NWT2z*_My1L~e=0MFjpW>|_BA9e4OWhuww^>LBE`8?{1 z;mTnn_m8UFeZ+P~Mzk9u8276+H63CaZqDy)0=Ro1d<>*fLI zyXD)47G%7&UV2XIaRMIx!^G9Hp-NF%zo4S_V zCQ=S^3nj&05i#r4Zz-nloI;M6eknFyD(rCG#E~LKk&?)+bZb@|I%x>+?mL;~^#Joh zsy3_sclhmtbGZIJ{W8T7p6Jy`J*Gmvr)cWMn!L(RWT+||k{}a=>`>^jt#<0F|0gN< z-6+Px@S}$xKC*SM1Q;{ZEKniVg8}x+Ii!^Ji9hjw)BkYS67O2O41dq)D93GFq~Axu zk{ztuCU-M)$6|$FEao}BH%6=|AZ1MzwfYWhI_zRf$PjCL*OmHgtF}88T?o6y3Zv1FPdk}C=NYMUN2H!_>jMqx^fUP1t<>2 zHa=&4uo1?eXS%EY4mh`dnmlS5eSUV>Qz711b)axpI;xY1gl<&ONxFYLy#&-71SW z6_8>Zajvq)WJjtV8G3Y5DhS{`Yr~7~YQCKgFOfV>xRbXay2FKGTSD)ksF(jCkFQ2- zbBNs6tFos7VuGjGy(;W+I>Fpdyu^r*@HepfFoh60^DK7Gwj4YmN9h~iN$G7o5EZZa z8g8veedSwlNF}u-$h{|Ph|o8fK0eKQfPN1)%me0l4n4k`<;QXEK)nWi_CT7_^Z{eX zna>7ntdhFd9n6B#ZqD4=7Y>P-@N+%;?BU$*L&$@%GUR192JT4(I`5{GP#x7$BAVWWKPe}40gBybvP0ma zyKOohE_iP4lj;JNN?$tv)p}B%JUdy5IMwt4ahq7$^HoorELLBoCI_MbX(Z*^3X>GN*wOzX0LkO3BqC*) zWQcR0LKUrFPn^jP+p>V!-YhevY`$Do$n9}yi5pjW5RtBiyA{mJ^*g_s-d1wBjTd7( z%Ztypo>u##dhCZ#HW8zN%GVl^L59;67u{;3M?U|KQ2MxFU1^S}l%|W_&e)E94`O`l zb{^6Qv%99vuX!3Ck!yY#Uu#a5B z!d2wX&(SyWTXUaG8v)3{;?z9F!)bK^1Mp+rR@&( zYnEqc{&}<7j%AjLq4h1Bl_wDs;7#>Y2;4}7XlMom$5$-<#8OJvRpA{GElckYZ9>D) z>uvzI$%HEj0Qfu{+5S0MK@^fo)As6a{*x=OH#jjc z4P|OrzTl%>YHsXW1V^ZJG*L%Ltg7kq(2O6E_m#<;(o2za)&Jnu3CBG)A#$Zqb*%S( zwtT+GqNStBEs=AzGBGku+A>EoD<*Pl?B7?^RKQ$St(RFS_!s$Cg=M}?&^cx(XvWf6 zs!d?vGR>7W-Qj)qIP}D{-mjk*%F;P^M`Q?exg>rhM?GLf?!~4oWaorVE^Jz_Vs$G+ zCWm9tdYBUOtWSIuNdL~dX6DNpi&n(MMK0w0PNYHWj;)SbWgfz*@FZsHtbNr;h}lE_ znoq1JB9i42i{0-%gQdH!C^K89fifbEUrC(NONyev-%Zi4jaCNr66sy{-5SDtstb4$ z?6-7vBx@77h517@G=lRBu92euV*m8eKleqR>c}RV-wXfOkqD7FyW`x3E^E(=aJyM02!CVL(oh~=2E&$yuUk^6*(FM_wJl@hgg^Mq=vG*Gs}T}%hR`~?g97iG|f_x41R z55e^8Ycj-ZSQl6TRoiyXVrDGxoucilY_^RwD`Z=Hw(6+nw-k#l=8kmF=n-t55$oVDkn`bIm;M#7NV}>2Z z>~)mwm&y)v78;Z3PsBQGeSWHtA zsDaG-J#xv8(xQ=WT?`$L>Q7Li)$Kw3B8=Gaj&UEx)l?(CN~Fmki_cSYWfiKt9mdqs zR(EXr_Q?ejfY(+gY6E1@xtAc`K));AaF8fTrha8#O5FuH@?l{;RI7)+GDhx!UCDi0jz6`=#i z_bsMVppXtWzICVS`wfCwzA0+LYtBBM4pp0Uk0eXV-X@SLX)eiV;8RB2G zMRWxfXWQxrtE3K|&}Jw5N{v1IG$2~v$&E8rw(lr)N?*tFbs_v6bklmj0$k*n*j-lh zHEa_aNBM`f1>)HI;1SFxDdM?T1klYVd;>6!ZHQV1nxnpRbs0+F0Z1n=X)bEjB~vGN z>v(1rW5n8Q(i(;^A~1hOzWUjKi#S9~02qOFC{YJrawl9a*~X>o&UFe zA&=*18RP23#{tfaBs#OFZR^|O1zq2hD={v5kOQXAV4hc{I>kIqO~1Kc{3;5a+F8ao zsH+da*ZH086A|0&dLVnXJK(eP4TotEIAF6~O*vfzdbFi>m9^e}1L*A}#-a3QhD&7^Rub2ZcM89i@TY_tHKyKXPty1T)!i3fPBn(s z?b3>ld5HfhA3lBb9%sOx%vT^Q?~3}_JvaYv4;w}s$U#++cfcxtTrW2eMJdv65du0R z5W=v|_r~cvU9sZE7eM*2mOWoZsX?8;U(KqKKV67X4c6dh#a=OID)1*kJ@P^JSoNw~ zjvD|O+CP(gzcLTxw`024LQVQ0c=|Y0j4DqHXX)JX5O!Ovi8fW%OnvO#m94>3TJy}l zsF6B}kbAEJe-5O=m>3JuHIqog^~0>k71lU2(xIr1FD{*iQxC7Zmz`#vGe$y;_R$N5GyX44#;)I(!Q$!EM zjc>7DrBHGb3i6Dq(lk+yDl^$B^4CwGsj%`;%+N6gGw})u6E^%4=s8xQ>4Dl3j=$zQ zZ4ReQ&RdUS1_5reyolRpdA3yl!i(a9A|D^t{T7+07cE4m9V98I7^TO0P-P#fcS??0 zlb&|}>u1jdn&Un=QJbq8&x;Z6pm&m{XmXpof?0Rm5Qi{axJpS;Sf01?AzAl*I=)-!eU+Y~EjVwfOk- z;Ao{-7sN{Vywhk25TPtk3pW_687+{>0Pm!n=E;?7ImvsQLFh?bT!?qMlB@ggP0-(C zQNhhDGvswze1}=|2Y$||EZrKeLk?fE9SKJy@#BH#mv7hq0m!=^AQX6#Tdn~ zu4a96cDn<{@R$L1;mS;SVe?_eq2IyoTV5WEx+9a`P>=kq-|NBWsDGAD_8aCq>XLm8 z(oB$`x>iPzdv{O|rq8$m3a8P#ynn*p1c%wY2@)--r-+wAknehP@RV%bO4GTgXcpc_ z`*&03wr0vmGC&=tMrCi-=Q5*Zhvk_n^=ILi)4u&5nXHDHjJs{x8$yA&FP&R zT#C$6$nI%4P~&9tXE4QEG68(9rSE*LqdpjZk}AhZ%?J$%_!%jc8(j0Pz)6{tnrp|W z)ih{7Fk6-IAz+?h zBYyU5OG<9*KmJJ^9zGp(FS}tEv$|SecUiZOgD!#kN>DF^o?25Vv;Dml8I0Nl!W@=M z(8CAmuWHPAjcm^mgL~pXEvHV3ENiCc!K#K-Js0*&N;e)!QQ$d>ZFF}wpDv*lqFk+X zu?}FJ-(hcog!&BBY*W!%O(E*;jnDGu)MeQAYwXRJk#^tW;N6qDs`(W`V48LxMbGE6 zb%r>{ie)hIduua$1l;%9ac%ds-?gU8p!aqkiZp?trqq>FQ;qtMu_@fGk*Lmx-@lmK z@jsrUE|GBNX>c#lS~n%SAL0_^)~TEt=HY#o${TG}OaFvUz^+m&M#xNgAkOd1W|*&Z z99%SYz#oM;On4Z)BkD3n7bu#ryusQu%4kRqcS&m8Vt4}w-`rfZiHh#mR{mTWJA}$^ za=!ST<2fm2Iiso5C0?Wg_t+*J9G`P}u21%oB)hN9-Di6yVmJ!^W*t zW3aW|lDMLkG3k#aqv=pNmwqg|+SaO?DQ>~1>qhD$s?)w{%aMGv^~9h<+=l{ZKY?3Qjt;*{@oxP?2fM6% zK^^wA>wkhvXXlylS@vl(F3r zWPQ%;B72Qv+5_Z%T|M?Kp#ShjvCJJ*^=`fmXo8&b31hveb9A;rvAd-eqDcNO!FU{A z1PWwCx$aH~er|bObOfT!PwnkTR!mV2VV73pH&_D2cT!w3HS!cSkWqs>H zBp{A^Y`7Sx&9W%jT3wc3Z%PqC^>D3DG1-dUvc6r}AVjLtn z+jYyGoQbF8q70LWs2M$E+Pr>am*S!rdJo*)ixj}|pFX5mQq=qS`+w_TiI>RZ3?Ks} z_qf{4fz$*%<*0MVs+FO<{zASKkbwK*b-p7`rC7D$IqY3LccQ-3Z|$xP*ko1yl14%pk6$lGfst99s0cA(1Q{1T#5wt#1J7;$3@S449w((H4vUmQ#(orDiH znVDsBx}&VDYLcT`S0sF2K}|d>ztpF~Eq}L{H%~sCovjwD()lI)hZd-%AcMCFg-xHC z_4iRvx;P+o`C<|th7l&iDG0{7jr6^6+&Wv7lOI(f`XF-46qRxw*T39I-?EDJbqwQQ z3zzZ(*R>~STU#51fevve{2!j)FjUHQsUW6fKcJt!KE-kDGc+yZvx)1Ecefwd|B4O_T8CbxNC62=23xB`1$?5(e_z>D( zi}0UsC-FiEzzMNPP+dh}M#9YU zf9Nzts%gO4u*0wFz5OlBl8e<@1xrTTwz)}E-V=qIyog>oG)Pd%M)y~;t{`4Wr0&B;O$oj z{8L`CbADN~onTUH^@WX_qUy5snr|c`ci_k<2Z*lixF5@Hau--e~ zv=MLp7Y3Ne8Smyp+&|!4jKH7f@qN5rec^B60NjMx&CeZ5KWXQ>#Vu#goH2imb!MqL zSi3DIy@W#N&msl8K48}5CQl=rM=)C73 zH&zMj%s`Gz@q`-EUs2v6!EM85%SIIYS(%sIwRtc)dBkr?D4vGgr}b%(82?=|b%Xss!CQv znUHPLVjsE|c6?3)f&8hv z-SJEZe#lG2tZH0dn-+~&AVqq?6Ur*`D=qr36F#x{PYCp|&fk4%s|kA2&9u>X^(Boq z6VHF~a}Pt$;D1++U(IIzR`t-89{Pawz(>@!e0^F^Svs{qZ<-{A)-GdSt+%-|$^U58 zRIZJiSuU*(-tr$NL9Rh4u*ipCt0}VhsMf1A%edcQ1528vX4h=;8tgo-8|wymg6@;2 z8W+z)m2SWq5<4~ERa%J&R(&*1PLIg#L8iTLC)&Ady9lcH=T7Ns&Ne{A(`!6%4e_d~ zIg2cHyO=%BN{e(V_0#i=7lN<(&9myJKFspC4)S(uAAQq!sp=&XP-Z7H^7-j7b1On7 zGdh-#-SjkqV!Rm6CH)H661@1xi@ejpH>F!$GyCjlCVRwWd`+gEsq)!{-fCPHO zjrJdTwU&r>6SL~iTJNuXQ-#zc#ssMrOG>Y7OtjmKbdL?F_Q!9k%zWrwR@OXU|5v!@ zLUTafJPE6~EPMNhh%JzjcMfRmca^Ke;FAyvC4URHCq-NO;kOr0bTw(yTgvIvn=L)4 zS338}quWSqC-eN0FOJZL-JgY1Y}YKv#W_KqLm;3hOwBV%4>{2gOkAg!+w(DX`=hF)6ereBotn#1V4 zivz5jT)0`C-tvJjqi=0WjjdN)X_j$7a(_H)H8P)c@#ZPe-jEqMUVc&~e@PE(ETIURC{|oNZ(=kT;7m zp^W--$!avrQ}m$OxSdECE*xFykNRQ5yKJ}N76A%f#koQkzpuU~?6t?TLxF+lPu)*q zSEa$uMWx+-UM>ft30gzUUyyS`;{~nBL{^xss?H8kP2=vUcfm(kO~yGP2rwF#7b2j) zrirado|-cISyrc5Au9U;ZQ4&*B~=#)^9z=NU(HTX6kcXBdFcHWE~gd*vqh@bD(`>M z>~;Jo2Zw?a$C8^QLd)JuTW>x7Ot+`l4ecj199^%KCR_obIIUu!U{ybr1uCcGFJ z?S`m4ke9vnTCyb*{4=sKtv2CIr6c~KyxW!N(I@xF+aEbmx%5X;^AE2mcEqh|kRwrz zFMJPkJDQ;n<||TQ{w>d8Pr_pbL*s|oy2vLskWW&>L1vi%L7}(zMlSg}k`Q*h zKM6qzG;gJNAVy+#?Ozg+62fBSg^Mh%L7QZ25_sSv-uQRQp%*VYj1Z*sPiEPjT&V3* z*K7H$9_y4Nrn>|ZT_LJWB?8~Mh~(TC<1(P#5ccK8qVF(nzPsUB%!;XEM7y*~LjudK zS!Edx*5IoOrZVN_u3rc-1gm^Lh8~Ne)Bh8!?N^C|%V2(ySuH#4LEic30-dUEL0XjT zlLxrQw2imMLt@<_s%fVHoyV@A4l-ogyJWuQfQ>PHt<&PztI^$_f6~QOj8ZmUSFVXK zXGUFoO+yw6>$7;1yZ^|hR+FN~nc=kPx^VwVaQPQR<$IdpB6E+2q2ml^#GGpy$C|v{ zN%xieGi~^{s`+K`-t=eSyo=_5bye=#y%~S;fFFW?e3K~mLfkfmey3uJ%t9NdAuTE{ zB3QM=lx?5=SGakBmX&+tE=u0?5wb(<`c#X*xo9}*ucxBGUuH1TJ*?wiS$C>7 zC*xrG%bBRo^#O>nt)A+Q8SUMYy@S<~3&INwYP$k?b4s~Sr$=jDVJ70%LCTMmT~KEO z1s65gnX;IlClMn$slzqC%hL4AX*wEySKfLaL zaN4+|&F5kuj)J;2awV^I_RSFKyaKHt1o3gE~GLQjwy2RF2*NGP082?9 zvAJ=%g!=e(H5dKL3IK0c8Ysnta0vW9Ep)Z*a~TkIeC|nwwJs#DA-49q& z@<4XAb7A6(VCGEAkXb_&S5x=q;jnzM>>A99cS9BG4Bzz9f5>7zQKBu!Acy(LVEx0+ z*UiI!mqD8iFMQoL5c6#f9f1$6nJHn%Hw|YSf>WyQ^}$zQSp)+n&!xC=J9}3T;iX3)Qlim;HRwM|AH)_kIHz6^TZ;R3RO`xcQa@bG;2}P zrMUhG^-DX~IrYm|S`m;r@h0Ti;17}uI{Ci@Z$DKMQ{Dny#*$B_SBS0WR-`y)@bi){ zUcdV?>|D@A{^KKfQ4&lhXZ4is24o{{Vn6m_&qr0SHZvdE8C#X0uF%lAhgXF?<}H{z zFX;Co=4`G`d^Z5Q%sfAqA!93a3!OU&n2x+UElQaVllq{2Nf5ExP<5F9j{2UnjXi#p zu}o08-l$u!p8EG8r-rW9zr2{Wsa|b(u^(TZ8I_Y_pk-}*>d8wxfZt?YS_-Yng(bUy z`bsxlL0yAy?eCIAT7${2a8*1OY6pYs5uAy((1Fg>&;Vvi=IPTJ|u2Qj+9SyOo zI(V)C`*E9lvEE`cgy<;0wyCK5^?myZdo`XUW;WoAl_@~#P6YP4IXB3bG2wSgdO80A`r%y+)M zrBfbEoKpXIzEsfr(DSd?nymgtC^l+y%SIXEkWK-al}PXp-SBh&k6v-?OX+K($zN>) z_nD$iQoL>-qHIA%bYP22-a#=Mk=JQeUHT2bV1ZmcNd3doWl5(JI68hsmOsOllMk$L0L_#x76HuO2y|LAz!dVGpCLICUsL#`?!QbguzSJ6-Mg#87W6z^ZR^R#nnHGk%Bg&}m{p|$mG$u4~r5}-U zqhtLH&a^S@e;-(KVFzhvYv1$2wJ)NBo}sZXxihUq^uNX@=5X?ZTzyl8SQ-$gO&s`u zGoP^t$>tfxrPd-V^w$Q)$CUcT5zbyh}?p+`9vusDn&Lx|NJ2_*SqF?!=Mx=x-h#-aWDk=NyYnu;QP ze{Y2_v;cSbQwh|;HHmIn+)I*5#Yc*RR$~p>lMBcs?1|c}@8h*H6$lNfJeEoVHLZP>r8wM>MEzx561Hh=KLPVr2(>WRj0Ga#UOo}al7?ty7+DMdLR1=6H!QM{{p%c zn!F%e@Brf2LsD8b|DvJ65E%p?${5d$zwd2m(PX@uY7Wxwinv<ug}iT2Zn4RU z_2ACNj0{_nkb8IJi0+%9t>n4JCv_T*56u_CP@8bUY*F57C;8E0y{#L%17}Fp#PFa_ z&}(z_EiM404S)kNOrPvapGhv|$~hEGm&QGD=YbD`n2 zm+3GG-N$Vyv4B%X>2K;?z3vp&KJM9f?)mPppG&fp;csdgHUCSCTPVA!~nhzPUtq`u)*a zV_&=76$y6FX&bK|kA-JbNLS;C!Jo9T>L7I32g=s1N}7#C+&NslQfYoRadm+CcRREL z8FIC2Tw(~j)I*~8SVd`+`Mco-ve0t$dB>fh@;5^pyLz;k^8oeTpWdD)8ou@lvR2h| zwiy@5+O#d6&<{){qQV$qle(3N+=8$3r8k1RPN@uech#dhEK4I{>sQweigf~4{6Svz zOVyQVbX$8?bqdM%@Ax|03>oepFIj1JP{wSYD#?a{=>w!OhqU3}Vb~LYUH(;j>JDO& z-9>plg-(VdKYrgAINmivaK*AQmd*>3-^(!;Jgir84DN3+CG+;9R93NVTCku{POiqb z9G)KVk*o#!ZNP~8yF>1qhi87#ICU1VdTTH3A^t0>YPiqF+o-Qwf_(I_c*<+_-p0R{ z1}*b_btay~pGgBP;13d$d!}6aGv8)Q+hi+pG89qElu`~9N7m;Y#UG&@o1lxn9|1L1 z$QR$9KsDwc7a>z6IK;W^*gdo*c=GM*cM-Tdjki}1wwWide%x&+qgmM3Zu+_=osO5z zi4C5p`E&+@Fg~!oX4!`u{j>0^*_>7KWWx9Usa-YGxnNCT+E(=q-1qD!^C!Lmeh*^; ze`}4?|MR<9L_E8kh;XiU^soWxZ41~AX7jaL zKUK;(|Itry)ojf2?(FkN?{uz9F}VMcC;7IX@LPE`yJmO#kMpkA(6Iz*eaiY>r#H3r zpO5Uc?zjq?jw;|$Z(W$*5Q5XRB>e%bc5un3-`SR{gd;aTO)o3P5R)96)hS3x(wVIX zYk)kEwx0nhE;<~X?sr@|ldr{%PTZU5=F9BjTP9^R26N=EC>Tl5bn8y~>=bGI}TlQxHaIJBFX6+p-{5b>#WG#?0^j^%EWcLjkt5 z7<;<-hzSRww|D+!`oeghUQe^iy-t9qo}`Id-&e{xPcK)bga3GsBpoV1q9m1N38{A* z64Bc$kGIjbPIgm?5{=e~6J{a&{qa-5tD-|`-q+WE9!bVOsWQ5?RNUC7`oFtMC&oGE z-=JgHoa1@n#IVW{35gl9`7guVf80II>?6ggok$uH@}zZlCA|iCG-Y)2%l8Dz&z#6c z$WM_4?8Kwy2o(f+kmWZ>4+wSAqv%BoOcwA@Ub2Hu)je7LBC1a@T>8+@41Q00p~*X= zaX%hlT|X7DSc&m=IPq8gJkQj2r=HmnFD54}H;5T|Yz7Hg&^XkvF?64I0GXTE);P|| zpz0q)=o972wUgXLHW|A`YMN@gRFh^laD;pJv-?WYZkK0r%c zrCvA`7~e_OMW64#wRxwb&Wdef;>S9oNV(~v1L-ex>kwbSwA)?!{x8}f`aypr-(}-8 zL;mu9r2W>p?K7XCpJ3R^L%Vnp6-FffJ@{S@M3^Q}$-=$XqTk)hx10FNN&}Y3pnQ`# zwmOhiie;n8eGGbig%ARPdA+EnmmH~gQVZN4G@kZ7G4mGR^=%l!>{MIou1(L z6|TD*`R!bh!ZP%HIC;?(!~Wq$*cVrKSiSs#VbIsDSAf-guQK|K^hpTi8XQO=I-b` zv{QCb^OhjJk_G4nYRpFkg`S~e_(x#5tnpsV%x7M;*{0K;J&{g{tCn33PDb-R<0oQ8 z-{XEc>Z{_VY(}Aa@~~=xhIPgdck`%{XD*`>vAAHGsNxJ2Z34W-2H^`M$ELpFyn4mO z`p$x0|BxEO;_G#mJUZ&i3c0`1`Dw|4_*iDK zSeWaxE3RpF73CtT%8=9Stv?|!tfin`Utd_#Kg|0qWwa&_XT5q))I#8v820%UeZSaV z5zD%?;`%$`dfjMcKT4?8rE}7 z7z8dC1!Ck^PudyU$nUs>!;$-QyNj2$_e?{TESjz&!GFcRA*JZSD|_tTHP_;qFA3Y3 zd!6ot0AQ(`lVclGv}0N#q=#vDMlAnvo{_l_^_QGS;3xj$i*nnDERnZ=9pjn-Uwdu> z9LI7H4HpzJ)siqELcF4HsuwAc3!ILFrumZ_egVyl2)Z>JFYB=vL%;8;ok!i=nc&9u z)Mk-Lwv5+^eSE`wA-vgDimh4)$kP^yc>iJudkxKAhfP36ofv8CLu_9k-E|{y#q11k zM4MzEsUNpRR1BUaC4-`GAv9?izrDJ=VSHdmPkx1%0`v0B%HE7Ty||>JpqkjEh;SRb zbIHgVZ!sc29NZMisuQNAlTFI+(=O_8Z*x2!tY++IDDtuy(MPJ8#9Q@`zbhh|b}Zdt zHO@6xP*4vY=bQ)Y0ri$H_l^6h^mxQs(G1Ks5L*?ZOgs7aDI)VoY~ku5gLJtTo_Q}M zqcim95K|AtF=miiGzU+Tb~n$UOQ(3qh;eTHwN;UbQy+=_9)#J62ATKF&iwgxvT#7LG%E%Iwv@NyB(zqDR=;O>SXT5Y_~hE zF-If#Rg6Z2BAVp*lzvFPKAJi%LM^v!jM0M>|r4>HRyN7Q%r`r|P&powhma{Wj3nJe{T;ylGH9tH*5 zYn4Z-T7NhE&zN1lr27Ia;3MKu&kzFPY1FwUA@>)=g6zP(U?v1VU4cx8zvbK?T0ep% zINpv3y(LE^=lJJOfj(fG$)S3)S5@l#1-PB{oBBTxPUCu@^WJZ-uhW`pXH7NxpQ=-fpF?J0IhOnd-0akY1wDEo@1# zcOKGXt*f!L#+kq;a3P}L5Od4Q6ZEIvL4Bqy#JJv~5!*RFk4e+rCo2+h5qdq}F#Rsu zZXU*cBfEaCx@IBYC`c6FvVZj-URV55l@ZUtkbhyhoc{r_nM}A!MM9=8+rG&yj`;M^;2v{0AJ4Yp{cDoV9xZ( z&aL7j>(#s$fX92O{Bw?KXov%z^QnlG_qWzRNK1m^TPkucWFf+g9FH^86!*NkSdrT% z@_3B(_v31EWA_i>b8N_;Flf&vr6ju!wlWnqX zn+Z_?deU;1y&F4F`w{+M$*_?Yn%`%?)IM!sgO}KK2HzK_-sCl2qFCNZ zKwHcdtv7BQ#DP^PrWQ@Ox@nCT=JTevgsU3_S3`sfy#dr!L;hFy>Hyx@pbc7-v(w<* zQh!*;SVK7jF5yzh1sz~#WS|f{z@pxSgi$y9OH%MGIs^!PPxl^CRBOL(lF*-~3_a)p{3RMXO%@$V_a6j@{WFL>Z>i zEcF&f+GFLl^f!4wqz^8W2~Qi%D+(jYyhh&}KM*fEADAfBK0*?(7c%|+#pfLO7K8KqAy2VGFUbr~NGgh5wE;w%7 zV7-vtw(54DEoNtE84PB~OagjDzsSKD4;yaY{Y`97}x=;OOI38w*aclkTUNe7v4=p8u5-wh4+<8SvCDbW_ zH`hp5MHo+_zA2GBo!+$sAP&)E_MtdGB7=)C=eqqS0rytFdISi9hJcr`!LKg(zWR-w z9SQH>y3HF8HZ63t1vz6P z)N{&-2u~J`J?AV);9`a6sb98E0z#){)}87b(wUmxrTup9?3F+TdWDfjlAZ*v5U2eK z7SeuN@eU?)vpjx2QdTVheK9gD#MzMi`Vv+C+w{yweu^%`EaM*NKEeUDth#pqnzvKr z?kd7vK;dlT-epm3Vmnd&!XD-WG5{tcS_(g}%64c;7l7(DNs6nRhDDB@>;O{*9=Fs} z8G%fxRphwaQ;U@;$rA363Z-dkbm-!%OKg!#AP#uL#QBnTBK$v+y+mBVtKKK2W^|=h z;vuTLK)WbuJc90*)4UajtPpIR9T^whF>SiyuDH6`rc#AqzhXpQZmV4t+65Hz`x7qk zbb(uj&(*@Mih^y>pN zK{A9M_9=f<-649{e0eK9@s3Y6ORU^rTZ@y=|5$sHT2R`sv_?*NfE1bH|Eq5Ov@+!} zC7X>1j4E++5~m$s3s!3ApZn(bKHQ;H1DLdRSyYM?v;tusBt4e<*}r_7p;dZ(WJ`Z6 zL+-bk39>N%j14;`bpECwb|}};M`o!GquLS2ywLGH^br?3c(bWtVo*jy3vNuVTq{(p zLc?E+km@_LgRM6Mmk5Rg-`|XPYU9}t8pk^ob5@oR)CYe~RYT9)^s}>k1CwMVE^ZmA zupIAMyueDS_s=e;8&uaA`~-*;o6F$-CuBE_;K;I;y<(H@eN)s8tTrH;X03wuhf(+={N24#79zPjnprqeFKONJq5WpWX|@{9Y5w3UqEFR2an(}`?r z2FX>Hl+>CBSxtW+VL3;ex{rI)p<8D^|7JyCvgcyJ$n{tNn_K{yeF2HNI{BrJ=qcuN zkcNe?a4*wZ1Nuq-maKF^yqJ2}#jWu`WUf<(!_tQnsD(yc+sC7V{&P5HQ#ne+cm=(& zrXiUmB^P6kwAdzQ#7=qR1HK=@8>_{mUN)9X)27^opP?!h3QvG8`SM@>bUFXgrSNSr zj$}xYncW|J&`TnDpC4Z>@Ua1}g(! zJY>ERkLs{=d?}I3e}W42QO?zq$8jFt!fYyiaFM@o58iNsG|#z@!hQ;%p}*(o3$ZIg z5<<1mg>ssJnmNV*?Q)^flr7nLH>*k_V<)C!#YEqLa?6}(GpV7|lc(|9pe8suFdaLB zHyteBJk45cJ|;GLaLG$|l@Nwd;fZ^X4Xm*(?>g%Qva>9qg$o3 zqmFc(I0EZ&HPbwixA#)CdPl@!?Vqsps+-iE{I%CQ$3n5tbCmPQTETSZMZy2dWCcjy zNMcoSd~v2apy;vw|HSps0hkdlOTUjfbqmZxon-CK$U+}y=zBvscXd|ZTG6EYRi3Ue zZ_Ox*oVS-nCsW9TIFNdpi$ND4PtgB{lF*Rt=u3*-35sgi4C=}Bw{sS=LjI)x$l58B za$8IDtdHV-f4H%+mpowDo$H?2RWd``x3-_B7t)m0(G8#x-u;k3gtn6T{PA-d(@{C< z;=PN3@99>4e>|RoRDhAFQQkYziz4Sye#@lkr+17{$9RbF{hl4F*1wD%>V{Y>?8&=j zu`t$6*4w^>lQZ<*a1H&PG0m;Q$}e`)cKBzf*tI*ufnQmr5!m&9Nqs?0o4K4@!Z>SL z6#}#wcRW~t&K@y1Tg-e+J_@v&t9huU!n-}9Mm~*tl9H#So530$ufVbn@DUoElORI< zsDTf9#A9=6_vuPnT_mE-%Uf}K;B9tWo@w?H+p6x~e90kg8L*pAquCe1rPWg|9m9uS z)Bt*dV|6>aWV6!tM-iSYWVdjix9`5{s>vbH4#c)z=--XuhBW1*OjNx#7{f0WnnSzo z5K)CCnEc&GjUy#ven5#^*!#p*qlJ(!6vP42b8pVw8szzcWkwKS{cY8GjZ7x=%TaD3 z_n8t^4M9!%UHG$xn0*DS#>nwOgseQc#83)DbFU%3V~wI<>(%7!XJ&86o9?>vsq3}l zS=&dmGZ$#upo^jYspz}f%)l&eQ7&vpxSplj#lS!_WsWj(*>7hiO+9B=3fshW{m?{q z=r=jtHDJM?38c3uO(AVIJ!l*L5~ppDqZF;QJ9|&@j&}`7Ez8~}O=Hc_k;SuCYzMiH ztDWl@keK?kXEy94m}(?fh#IU)P9n4m4aoz{R`%=GQSDGiV$hg&kCz}dX;m@q*cHGh z8b$O{7i8tzuot$oCn$1>rpF3OQrL4$n}}3?NquqEe!ND`#w9M#Xenv;z*2xET%|Ii z?XIFqSLAmEB4oSmJjQg@e$Z$opiNPC@p%z$tu1T*(Yh{OBA}Y$`-MMLcxP2V(j<|y zSDYDd5zEu~#AJx)u(jv-aF}CF%}H{oeGL63#g-7Yz)ZJdIkLZil|QYUScg4Qpf9MB zS0*Cg`kOJ}y7xjHx0sO=$PLp~XG<0b!sP)wc(@+Yp%9!)EKT>5;X(Q(0p7%rf0c&} z(u9E78Qm~TKdwd*Wa1sQE;z*+#45MGx9C^XE#NwV)P08nk<6QngA}xG=G8_T)atLDX#6h^-yK$&g)bJpp8F-{!DwGKT`C} zkl@G#fnyLItnp7w`3~Q~2pCLkJmul)$B4U;7S)pFj)>Gf&f{2L2`1>qn0_nuPp$n{ z(9!?>^nMTzekhK$;#lhQNb_lZCve9X`LRm%=nGMl@Gk**CEgNDznShinv4B>H;sHs zIc_>{88s+=Od6@dl&<6b9@w6(W8fDj+4l6AtRg!AJ^h_N}*~A(UxJD|2$@WXo;w!OMz9C+r9`{iPiMWp$91` zjmKCfedmdEUqgj6+2`WNO+t)J*~dnP>0&EjH8%R`>>GWO`n~w1btge4*q_xH6C#rx zVA-9m^uJP_lP0XL9m)lU)K(fR#P9;*agpVpP)qp&_3fL^Ac_0fr1}Eq9~ev6&k=|; zqB0St5>FGn5Qm3jQfr}Y0rCy$#OyX0MN8kprMeJAGk<**Qh$sTE3JvEn*`U-s)no$ z?V)bos-+|J4xixJ-{14r^ZxDBFWXGI!&e-rv}0X+UUZqnGKdv&KnY|LGlRgHF+Zl-0J zg?W5Tb7nnJ#d=qicg<+5i4{SMq95%|X}Er@AquXRL9*&Fj(A?5eY--Kb~xS#!q&Kp ztlnQOX^uQxNjX2baT-3FzqA~f6CwIG@+q$Ciqa|0GtdllzLavAHz$;Z+}~02839YCo||>pK==tV0F&PqX+Co`31)7?xBNPtraAkAK?wAW-XrZH zYbNYwSO|+w#Mgeq;)><2^ZJWz_KNGY59L<=)$6dv*{LqKv={S#DQ_cG)-S2Ly?4(h z>~8?~D&@;C&+@!Z@`@{Mb<(#@_U`9Tl116LuT%fJo4%9w{bh;^$0ED`tC72__hc3F ztSOBLlh(6ec-|lpDvr3elDW2%)=eD(JMLKNsq=46rty30Op8S4HU)p-If{5-EF_uz z^?iT6@O#ILc0^0w?O&rSezr|)v!7-FqPsTzr))COV@UA$9ed5KyQ}@P&K47Bh!e+= z@m2ot(`*xWN8-G;oXD;-W}c%VxDZw^3SSKSJbQj85pFz)w}X{ZV<2|e|3`Vi3Cv`p zz%P-f`40^shH#9HBRpFordJAR znKynZ59+WAEc!-0+D)eTIt6@Jdi0LBG*m=|fpP4+^Gd5$#L}N^VWpS11+0MHhV(}L zu=*II?7RARkvH@36&eAtET?hW2`gu)bQ5GJbQ0Y{46+fRZ^OM0t{<{-+l`dW4&0|| z;eySL#aMPiUL|^eB#zju9r>k)3*2hDv}eumL1^^*qsgzH;`B+iIWw(|TS_q@s+7WC zBy5X5GMwtm)m9Q5fV)4U0=78*V`k~$MqjXzh@Whnj$VA|`=t}hTP-UM0SHfgChmuT z=tHMu?IksL32E|4af0tm?t_`+9VTUMGs$<>GTUthbiCiY${+#gy%>b)r!tS>$%P6K zwb~r$oZ)20*6;T;)dHl9#7*m{P}WP z)HB%ga|`|{y#Z4vkyg(A(DFhFUo7(XkzMgINx!qS(`lung9Qyjig33>1ro1MkRDnw z&U7mrmy7ePGMgeOha`?j7XZR%(%xNwfBkEV>panvNHSS{#FXX$*V_|!XwQ$0t@pa| zu0HUuySuP23JR>SH%rWH-+*0vX%dPM6 zqIyOrUP_l*vsiB36sA5`)68gyUQ!j8la-L!tEL()XgEZyxypM8>6M5Zvb&_PQ2@H; z!tQ_IqR>xuPG$%DobWkCdS4iYXs3=wzn#0yc9il(w%v2@%3Iz|1%@>0lA=lwYyCCa zE%57Q^#`oVajk#mOJ3RQ?wqb5WCwla*VKyyEP(L*oKfZz8K5*CWB;Dy1q^bu7eHO} zA=ICmMF0fTzx*Tb=ji1fY0b+IuTUJ)ZAy(0fbr%(EFpP^bfbdGkMbpZadS#5z?q$G z)WHpqT!zCP_D0!4@;|m8B?Z%D6u?lYRR8U-{I*8N%dmp^z6mf^4t_{QN<^wr94_Q> z;8EXeU)X;PA%~lgCfiy;&n|F&{fkuj-I8~qi)Nc)Z4Vpma=|Azv%dxaHv<1UcF6DM z)YIs3NOw9g&I#N{O7eAiDz;YmSj78!c)RF< zAk{g&h9@K=%dmg-fJ<}CFqQC)3?Uyww{dzf#`gT)iKcSF_pa(`j2zV#5={=xG6hBL z>a8K*)vxbpS${vh_>umlu(febWH<5HPa=UXX#Fm3u1LgEgzrox!eEoBOS ze4N4zOQ|Tww1ynYeE4hgf0>oo8yr!x7w-V=mzUWluSHS|l0=ygzUP>g7C2lcwZYv- zxlNg>zy%*fKz_*)cL~Lf|FTcSZ$E!m8stkyPgXhbK&F-DK)IEuLFzeZv ze(84UO<)H;^gF~>AZy0oI>dAMB?CqRP|^iX{8OyfYev-2ZYHe=8u!%@cYk{|m}kUJ zGA;9EwaL29o#@T99nROn$h#VqWk-jwCn@OyEuyQ@4TlI8Vqtbw3IP&+E69&LQz%W1 zq@ENadrrG+}F9wTNg78 z7$8DtV#se?4y^Gn@3u~yY1XLn;jWB_qq#@JZgtP3kGB%b+Yk>DM31Ikp!PGho1a*1 z!I?TL;z9@m3Eiy|1MRpI{#UA`{NY8iK1;%Lgqr`D?`QA0R}vXsu@bbO`cmHABA0Cs zk^a3npT#73)_VU9YOch&8J^&s2BHLP=Cu2&N*TV7eR#W-k89T3yy}c+eDjd(v10!@fB#U z+7Y>ls+P;8 zMH*DhVnPm5Xj(2cSP@1T6VFoiB=JX)!l`mcxw?`&h!yx;9;}wQNO0s7-#za{L>@*^ z8xP?*>wmUZQc4>9g9h6l(D6<41v$b3v(bzM^nn^<$m)sxyo(cQj7*OSCVr-r^*j}E zm=jGF&9b9gWZ7Lh#fkdm7I_h&yawXi=nAeJa?+HNkvU-aKMAr%m`GqYM9u`A^-u}l zbE9~9FPLstot;k^73~yAG~TM)s9R4U@LRbg)k%?Z#f8#u=F6P2p$neCKSurI`2hb- zF@_h~A%RbCs-@l>kPpgJ5q7pA%KzDn@%4yZ zUD}z@1AT1R#{MPGH50_GiX-ga0!CBYD3Rd$plTWNvQ?LX*ujjrE8Vji09);Iu6mLy zksBGBT-;)GrccYdw@gOF!?>*`6YUC1Pr-^u<%oX^GgwXPL+(rcryC0?jf-ej{SkDE zHV^oJ0)4VBvuYI2dsuTg4IzDSvB47P!`Od+sPHzs&VWX)gH~Xt&FP)z)zMp{L*U*h zVG1#0El7nvG*qDBYJd-$UJ8~-i!Y31>MpB?Xjm!Y&tvW^Uu12#h$vcjqX=$EzGq3F zNcZ(D_v{F8~d?s=>A{E&CK@kdr|?O}_xU*v#rh0{XZaalH@hK~dXE zq{-}%Y)Kh3;sfghCB*q12bk`u)XskH5IY=tWo{46+`QOP8GMo0_uUDY<9q!`FF2X~ zCN9lJ+;fk3*ZaV!nbu*0khrBpGi>M1iL}mPdQB#KXmA*s(Th%HTOEnztaR(<+T-@9 z+BfqRcNT7n?6oyUi@-z+oCqy>xW)vEGB;KD06H9^Z=W^sAKtzD0Zw8L(NR@OV@|~< z{IK{5*}dSpmb5IIe(mrJa)Cd&wjq-J6jz`=L)Zsz*y6>R44``Z23i}t)~JXhoI0I@ zKsd6s-(Bjx(t6jlNGMLCK4k2Sl1kB)0mBczZc7FVC*rmuyUdn@I7;KPNhp#o=g<#e zwdg~Y8GvIz_zp@C*QfJ|QMXFm56A_2oTRUBOU zyBpz9O$?Aah&X|#2P)I%&R&2#ay9gF?#JiZ7mhBjiP~l`WdHhR{ZR6Ry*ax0>E)Vy z!~1dbro@yr$DdIYfqaQ`J$nBQfg~cOB_#nh6sX44YI-mSM#YzC`&q)r9YqXc$e*jg!lJie{kA6lH{(jz-SB~;ESUe8ZMksL&&B~iYc<4J> zrpY2qX!UU>{n+hBtEoDdaScCV8Hb#=j}rJ9hvv{LY4gFhB$FMSE6-~Eoo;%%w2Z33 ze}QjFM|a(>eqS&#v=W~8i2b?QBSWHnZ2P?0{GsmiaP;ost=e$C&4z=&m&~|UvTgt3 zv%|?Mg(rPiHuk`-&#TtuttdamwEF3W5Sa4fUi&u?xU4!!zp@A)E4b7f@IThI9JM0k zuiRPShrsX;*X2SxjMX1*l_IZ;(5-rxN};1k6rM(KPL1Tk?R@6=1{h|r-*QDMtEFeQSp`;bH@Qj;;6H6}}j~FRA#Zus`=oKbs zWO1+65Mv8g>)V|it)_Nvd5z%t-1{PH9s~)u-?b;8 ztj1Pp`Ws5wI8oBMJ`1n_dwhk?`cdp^_+v6MfM*&1fcW5-76FI@jNR|2o#PfcQ(2tT z>uqK`B<1PGPFj@d$+h*RhZ7D%j;%^bF8e~t5+AvmLAH*pX)i^7>?(YT&Uo~2N{4fn z_&4lxU`E-d5UXA&#lfkk^+sk3TC() z*XNKn@*&d;AyaN>?a<*Iok+TkxJ%yT`a`4KN&vy``O!KGr#%;EpffnNj*adK2#fDT zzRlTXf>&F&^2&9(;a_I`SX|Z)sZ;+-;0Rm997p^`pBz5S{`G{J>5VFYKLU1=ntI80PRaJNH$IO_nRWS@x5vBP7^%J4fH)b|0IM`ST$8xAO=Qa5rPhVE& zDN`EpZ>ar_G(i!KzHQ|4{_X!JoVl^c8J~OOIH>_6?N971C$Qc?SVklrnm*q6g^_^? zCPo5F(Ri{i{Js!>?}Er`vuFG}TkIX%^N_ll-iruL)8yN-$*0_jW-Fv!HQMQU`@(C- z$BVASqTlo(j*8aBU(PPd-wTY0K_}dyqypl+n*PRf{%}i;uC*y;M+$g4iKk_!jk@%H ze7&GC2TcZeg5-$j6ld1CZ}v0LC%LhqPxwdl+3EP5Lmad6!x5*|IFoM&HFBYQ?xtX;=}z`3y{{vK3G9=j zeo;f@ikx1*AS~oqZR*)PbEPtg7|{Tt|1AmTLd<>w>rRc2}GWD#(JlHR|mZ$WF3 z`ZIoiUL}*lh9HvZiNJb)Jy2~*=o9PoGdxI?)<_LcvI^f-O=~+*Kzyj{Uqh>M{eP0Bwh6vtn5=xUM#Wh6hha}fHHgi`7B&w33|m7-ryM_S5MnI z&_(0bsRMYYuhnmJ1>dt7(u|&di_yVygARTBKv=aWH!EWa>F=1wkJOW5}T7H}L~VDSJ4z5@><+4U3Cevm<8Av29xTbb?lfaiMSA6NaR zS$jvfw4%k#cGZVVIUKLO@<%KG)iL%-SECOjW|iyub?qK*<$gF?d(=?c%{5KB9#sAr z%2a_#F<8C=KXPJk{qg)u1Vj46Zm;ag!etwVRyUrTdA99gHxn={A#cU;>Ifd<*laN0 zuI#N0c^?AK_!0Kv@w=w>v|oxGF&l{%=J{>(F^zbUjXQ{BmLWyq@-yewY7bRmFTP9% z^4s_aUg@s?T0?3F9v-;2_b;`_x(s!Ndt}n(>WLJjn7r(n!Dl%S-?0L<2((>yL(Inr zR24L%*zye}J}pMJl`eXZYRo6_-4m;8R15T%t(vUZqB+%d#K}9-8gjg*ixjt=r^pu( zTgm1>z=h>*Jl1pKYnd0Kpi;rbPMRrv%qF9shWo+}td_W(kMlS~c@vupf*zt>wk#jq zF$a@b%@Lxt{hA2ZW0Y6ZJ)vE99PHdLQ7St99Hbq}+=20C4rsazeeC5l5zl$!!Cg7M zT9D#{YhF0eDWDz^R83~UM>x4g_M7271L#HRk^MdC5qz~s^23UXu5&vd>&}rLi#{lP z3SygcT~r{aMAOEashL+_IZP~-7fWG7J+JR%u-Hl?aqON7O=2he$AjO*TaSDmnY_k< z$KX;fxbG<+!GeidHZSRTHs6>?D??W@USFYXON0V05B2@QgZQX`##yJ=pqGO^KtapS z*|0By7FSH1R0k{!i4?`FHzR>ZEnEV(tupakAx1jx_O z2Ibo1@2<92zFQ>g8}RIdR2At`aSqcO?{xRko{Z7!!r=o;U#%nl5<V0~bpU zua>ctE%HF!qRTN!-B=_3ljhR5%lN9D@l~lC$hz+z<2d2!iQw6IBQ>!~i2KNl)JD?@ z|6;Vu)StJNx#PR4H!;a3Vx_#aoXX|mqoqZ!*FiVRe*FTyS{E8)X8o-#`z7ep@w%)q zxNJ<>UACtLfm;Tpvg4MkCy)bNu$U+?VB>|`dJwO_eipVB7kNct;y=>A-4v9)zm?0- z;8(%6jOgg2l_O(YyCM<(}dv0ddE6F&*Jefa> z=by~El7+64fzG7*r}1gvO2}jzdYQPm`=T#6VJWvpPZValdcGt)J+0&QrfTM+6$nBx zKmks4N3cEfv5xmbcFeDWE=FMua86J+TSBz1_gAp3$Hm^^>_zHrKw(Pr$ZO-mrglx@ z7Z>km|C-&$n2hAlFTCNHcuOroeNgrC%1e009cenZFdZ#{@p`(BypgB1M2l-)h}87P zUVsqTyuUMJw1)x<8Bn%T2UTLH%>AEg*v8Mz*~}K5ctVRV+|`hw8n!iyJa%Z-Xh06N zI_EZB+|39L_6~a8SUktug*c#e%y30&nP>-|eo?FIxO=|Q zape$Mza5@TN18cg>h|BHCV*~2i1N$cafz!&!G@f?Q>L@V0|dSWs>0ecU$QxTjrLHK z>ryZrKN<~Z+Dlw>H=;!EsXhJ#xP!I}gzP~FaJl{8kmpu!rCJIBRt4&sU*%Rs%3q-B z^AlrZj>OKxhqNS~f?VO72Af7J3lXzM%i70bUuXsUcE8m}P&oS#n7--;iD%py#zpDd z08y!yAe$M%!0s=m#F$C%GhC^NjomO)tMVkp=l3n=J7B9ZNTYOszED7&I%fcRUgjq9 z*F>fkQQ74n1T7F@e=R_@!cd4)@R3+pjf3vLz|tNYYJ@~=Tx&p7{?p5bK7g^0hf?01 zI<<=o&|u@*A!1m8%kkb}Y4&^ScxYYG$Jf|j1Dk#OkunwgxZKquDWp!%8>nY?T4l@p zct=*bl;E-7Y*Y;bd)e()0t+{Yne z?+O0d^c@Md+HFTl(BmBs(Wa^5Clth+v`%NpB@C-!0DI_{&|h;h zz7miip0Q1qAgWhTQhoYb=mdd%kQ}5>5)|}5<@;wtJ81{W71~4+e4lCEGXF zEuk>Zt|se|(ZABF=X_zKH}ScR@YsM5jrPX!>yn(7@;M=jok{=fuG|>4?ZuAen&$Dh z(_Hp))iS)|#O?+?y)a`MQu|Gqy<8S)NXEP=%YU_f#hysLi6ncmg-oGQ|UNpz=~^M;qw~D?Z{xr zox-J49IY`cq(*7UQp#EqeLq5Cti?B9s3XdEAFp=g?as=!B5v$YSsIP`=_a+n9uyCb zL{u=A<4T1h16mutUEXPeXqJzpBs4@Lh2V3y4acHxp-If6CTAe!d|}fvOpj19HijNJ;zA8_xAZ88Z+(}5vXE` zCco~JToj2q>r@k%NA+g=UthA!H?4(s+wzIQ-Bk2mK|6w>y3epFpS4D++=E_iH+pJw z?C2g%+`&?mT^wodFsT+?fn73?(fDMphf_vsn8VA@QC6>nXGsM|1~6aUoMjqDlRB<4 zCY^*3C)QloqoBOnzRmH9MWk(j?ibvEc?0(!+ z=Oba3_M8Qe??()5dM_XO*lmnJ?zvEFWFO`G+DR=<&5CFdyk8vvB2COY>2VB`oM5`l z0_zHO9vJO)KoIJoH0$}#H*1_1qJRsO-%OdxgT$A|l7X25>t$qXEOOZech7DU1B>uM z{~C1*(o{BA9qUSA$=M%aT?*3`V4z9uHJni+BHf@F9@u?NojUYhhiz=4&XWF zw->H&3}PK2qOSMCVogr%>rf9jl&X^Rx0u>r*BdNGyHu~dG&poL*Ku2ZAZ%L@M>RYn zMhy7ZFb5sp=m;uGIm~{JeZKXYJ|chRO6jx|+p49n?=+RiKb-?<{(_Iy;nOt7K0cO$ zFsqB*R;F@_sxBj-FhtZZ=t(CD;56+R!vL`lh+__NwzBL>IVEZ}uG76uvbAB^1(4!- ziKoCi>Z#X;MGNJ@#3w-qsOfP5#dP3=prI%LqP!_OmhFJEXGFO2W{w018XAf9#owMw zTot(o8+jtK@tPm(Yz4jQpab5~RBgXXGfN}jZ-iN04!4E9?zI(GCb-!@@mG@cb4;j0qHI?bcDC4H?BnE& zrg$XqF!#-=%}A>`H08G&?01ehHs>zzjIZ8KbTm!VXbRlIqRH>`)H#TJ?A1)LJJ}ZO z;<;})?L9P&Ez!Yyf6}$Th$3nguvW_egjh)6{Cx{#Wh5r4yv32a}qjJegN`L|N_}`D(8RNbS z%FYNvQBF*5Y<>ml@-;bC-FTy?@Nvo}4rXVgWbFaJNwZo#Q>t7U8)~fYdz~I%R_zJS zbs0((Q1V#S^113ob(w)n5*GwDZrLY_0CJYRd_~%v(oJsGrK7xCaS28dw$#n*uGe_J zSGE)%oumN#-C!;fjQl1;C~KY5`$=IIrm;)zDXG}-Y7(a0L{Hia&c3=uMa48X!t$?< zB}VS)sLnh($@L#C){TK;Z}j|(6#i=T&beunn3|)w%u{Bd5q)2(s!s4Xyw^d4gI~x^ zW(_+P3oJ#9{ab`Bx1^$wIO_2(fKOMuqBpawM`j@_9-Fx52Jj{QMnLKIK|g*09yA3+ z7Z8YH{s{s6b?r#|;8Lcj6b|PhxKBaEA!~LbN)67k7Yh)Q#qILB9Ab|f82wX`vGYU3 z@fHFr7no*h<`!A^J@FUxccfy+gE|-aQuOy<*plu2F|$kaN2Ef_gC!WW-$(~aVU2^M ztA}Tgxa718{o?Y=n!s>gb!EVG<8<}d%v`RH8x#ixjS&MzFT*eIKKoE0A#9ZG8K+F; zd+q@oTSXtSiC{-YX1eT5>DH;~Yc1PEnTVX4a_#b*mq0t&=VkEgP0p$VJiYCI`-zl5 z)_5Hx25}R_8c&R>cc!1EI_8a?3g8rdxV55l2`+BxH?xOvltfa-gvWa9+XE;%V=J4! zigMkY-It&nb>8i?V6XU0dMOH+$-IcCUy6p`|Aq?HE4O^vbIl;LP@ur$eT$c-b**px zMRCe1a^zSmk-Y!jW+9aqYU7TE!v2q`GY^OAjr;$%R4QePELoF8DH7SukkD!>No5&Q zC|M@U*k&e4k}XLHGqP`4B0D47*fMrmM+Sqz7&Bw`nV;YD&-46q&UKyZ{By2z?)!Z1 z&;5SC-fa?}s+uk;rFb<7vDshkl>m-Z$?*t#wi$-ga9}(p<$!dB(8VYPyKJe&jiROR zpxaFOkj`A8!FD%YEIaX$)V53d`wDaLlRYMW>!RIBiNBnqq;Uud1eIKS!w~}qIIWfE4u^f+-a`Ydv_}_ya z61Ka*h5esPozx=isMb}*@@Ma^(VwhPRlqvY@CFs{zv&$$nRhK3GtkhahNSpE)5j-R zs2)DM8^v{G-)tb9vez;EXLN%HZWL8p)d;{JUG9u?%K+~sd@;76Q}Z@UUjgHV6$zi8 z%`n+QLb)ZA!um(S9 zO8HJH+wpuk>Ko2*Pou^4Gl?0KVhHFy0vq@st0)XX)xl1b=UO-X_0G$M@Q`*7~~ zOA&mB2tGTB+qn6a_i*-L+!g=OC@;PGiSU6xN{TWGE2(C{V@f;QZlXZQczCCLSi?ti zMIXs7QEBg4Usgkm28#9Yk3MFljI7ZR)JuJ0ayzt7yC7=d$06R_+ZsszTUYsfg=1X6 z(q*>IgVRWN?k?x(!H+jUc0f~RfR1>;mjKXDO<#huT|!@Svqo)Dv3)3E{S@zt$s@c$ zbIQMMmd)?{NfNOJ`C!4*enl<)B3Tco03RiBV`1?dDJEx+C;t^X;FfTJm68&6IzSDH zna(5^oWUo8+MXChYau+HAN}&Y~gF2m6sf5ET7J$aMwc z^Lg)W%Z75nV&$tp%#{#6OURMEQ}po>7}~A|JOpAyhS#$YwC2n}`OZrbG9ifPpf`8cZJdWu#Z#H8Eu>fxzg2W2 z`D`F8I;NOx3fJCwE-jEU;iRJ7E@RHSiY*x>PSnLS9_4>Gq(lN+WQLH)qoiQfK12Sg zrSQ2X#R*=u3wzh#;m3Lxv&jY8r>DJocg-Fp$s@aD;zdx4FzC}~8uu2Evidu5#z6ck z#AbBb^UuV+_0uNZkUWsNi~OH!J5}rmxb%)DNc&6BkL%myRJp-qVp_SiNgaqYX!#Q~ zrm||tu0!1f6&At*Za+m%mpS<4p?lxy$TMyV4txu(&4FN7vxyzI;TeZ+VrG-rzal3` zOC|*x@TX5LS3MX+v1fD5w9q7e^KvdyH3YQ?-1ujC-{Z(&+42j*eER3|V!X=uGGj)_NRhcwaDK_g?@M*O^eAtYOE)n%gbUm ze&0B3U5!1&qaPrRb>1!4c?|jEY~20#K|8_Qz(-ppAu-UFg4Y<>iU zdM{p=ztc4#AJ*rH_p2HpqLWQb(r_=0llIrI)tk7#L*1`nd@~2^?v%LfK!KG9IN%D* zrtP{E<|L>1?4k)h&~h#})O6f}ZId#LAj&Jq#F?>oAL>WWU+~7p1A@OCGyCL|GC)+B z1MDT$@N(zi;A6YdF0Dx<9*+OV(5u}>@CJ@-&<#^43jZ^6tbhNlzi4VFp92{i+L_MC zyR();d^d1sp}-4+c{OTv^N#;ggWn6xq1R3O)`2IFs+0Eo#8qQ(e{vx5&d086P5;gO> z7_yD|xpXhY>aIY{ze_ztb;V;s>I?2HG`(L{FO~e@-HxusO!MBlGz1y;*GEl%f8faR zYBFGUZuy;=j16&6|b};f`!d+*%ZZ7u;?UDzc z#@ADM4%xF-YDe6LLD|P9igimz21lM+?|2NxXD!J8y>CTnHyFxGiohF@`q8H$a(4uU z$n5yfQssrUveiP0N}x1uL%f*Yxv<6Dpqs;2x(z)lt4BJt6`pKY{#=QQN#??qp%V}( z86(6G!rBq}q=~%=W&0jxDSGUo9`XEy`(cffM=@9{g?7H5A$@8~hy5qm z9*LQ^uL}vjMk&~Rxfef0G!OhR-|b4f524$FgNmhVKySpKt0O|VA>OT-WMT(Ullyh& zlaoV}%Xf_?O0vcn1?nUWc2ezZm`ME+lmLM_VxJbCrFPSSa-?~l6-LGt!A!FI%8#pA74IZ`rhe+^?sQ+Q}`kPw7 zT2%;1EgcPiLs%vE$z>CQYyBKc39P+dfr8?y<{R=xiG+**{~1=AiDT{nx|=erdV0Ix z_rTJY#3;^s&>Pil=wc$xc=CxpGQ2v0TV%h|C-sPH7lJ+@@tdG0I3*(S1TwXax|=|5 z^kiaUc$JaNJ!*vhgfSu{^S%621TGWD5%cTLNCfsw7gRCW){3quyfc1}`@{Okj$f(B z@p#@(sWc!@bMge?(ZC7Z!?5)m>3S*t0lSiJ4b+t*H)lUz`m5_`6>4OGY48GtwL%?* zuzX%aCa`?iVo}VjQd?vyz$evxv%q-leSjkbUC?I)<<92HRli7!zoD&`au1Q-5!4sy z8lH4c5c@og{=B+Yk5K0!ioBjRry;@v$p5+|&5DY=k!a;R=UR;cbaIN=E1}Mk*}T#r zK-p}Ug%tHR;!*7`_=1SZB^4Z<$J68@1&=PChOAqGmUY?5_Eo5!4;!ry#?gw3FUFMh zkQcna3#zV4%0%W|pqW5_ME)lG8sGh17uVPr588kVlo0=k$-j#=WSQ$=%GmSZQ{Nk(T1B=xD&<&B^cI zH&m?`L)7`tR*ihe>`bFIue$(k43>qjJ2FQfvxA#YA}_gLK@wSMvAY3dw_O|}DnD%R zMH{`L74`xT{E&vA`^oIXq&ZAKKEVc`;NJY}M^(5Db7ly=tL9%x+MRzVLLToL7{Enf zG|*8|m~?|!UC(a%MA7}mQkiDKMYI&2s&C(V@Edo9)t?^$SNyJxw#(oNpS`QF-WT>k zQclYL98!`P6qmyTFKAzuPSHO3I=euOpDBH0)1>&naZ)AnpNW{23!ITV zUw1NrWP7q(1O?aEbh|t_QgUiZWCq9hj}NgN5-(GLX)y`wKT0cq_)t#9)q0iXaE7ww z!d7xa^jz*P(4}F|tH-so(rK9ySxtTiQaVmVW9nfJlMT~WVI5`r+kJVU?kBniVa zl?v;JSHVkL_U}7u1K_>5rsomRlmk@HeqF;pf?Vg~h`Y~Gd{|k!iQ=<*x3AaZv=~;`eG29t$ zs60W^50TF1N(LiT2C4|3i1&R`!pNuan(>_GQ$Et|&Z>80j+#t+91gyEw5y@mJJR91 zn$xyM0jrB3`c*sj~GE2T6-E0KC8 z_@yYd)X^h&q9{e=u*q|NiV)hyZmT}8mc))(F}Z4YQtzkF$e0<--I47}e`j?meuR0m zAi;SyvO&SZ=>5x^JOs5?t~_0*G44E$7Y-VVuad$uw6Z2o1mumxRJ43xrCUS(8O52Z z;?RaXTbn_A;Rn*_u2@Dt7SmOIR=-y-5WmUH}qfYgAW zpCE*erm+~{dMVDr8+JK4hhijd3TZtp>~s5BrnGCq?Qr7^-wx; zV3!z{K0v&6EZs)&dKQHD=V=z>TA4ORVvM^*HA-$pxMV;|4*I@wA8ek9+sX;OMF5_} zwc!;T|C4Us%f3o;tmrEk0eo^|_{=(0EU96%=cZEt1Z?2}lg`q2l$<9nyF?#?peGka zl^|5-_chd*r@IGYl6xvZ(tcT>;wz7^VRnSDfOmD@*v%_x(?uzWcDj}X@uZe9czZQc z^sV^Am7Oe1^y;D}&lJ--8-{u9X0U5+v5&W~1VL_i@8>-^>oH*i(i`S z4@lLs6pqJg{?@aVWEM_td&UF0libXA&wgWK*tn%fj9B%@wG~?jW)UHCoL^gl1iqS% z;YO60;8aj$@0F+J#w1=#+mhL6z|z^8KZIki< zKLnYg?{DZUN{|wP6jc0gR1;>jzGz`ErvpMe!bnqe$1Yjb5tg3HCG4D~6`Own>U>u0 z47+25PYh0c|CewEP<4W$faPg?C10{etNuity$gACUC`6v;}5sq{_o{xu6)F6yXU=; zKhD7KgCf}}#R=<_s%zdqIXXt`T03MHZis4U zxxt1(ZsRQeuM6Na)xt?!@N$<0+@!{b^uQ|deJ?Z@c!(TDeSNDGbCvjs0qRB>$4><~ zw#xW5K?MXLH1U5@x(S(bTr~4wS8cFfS0&>-8-LzZ@rc5EIfdJAF`C<2?0|x+K7H8= zyMvueIMYtYd3kJnjD7-T-4BTEuVyjGjlj_Bn#qwg!OnSvZ_x1-&UVFPpZSMK$h8fSz^bK7>>Fj-JEria%T(7YAcrF-@V2z8O{Z0Hi6<+ojEr0n54&!qD*ZX;&#Cz+? z+?~sChr_d8jcUY^j|p_>WCo>0nAPl=MCK2Wf2QKoDdKDYvfLDZE}a}Ih@mhEcu(48 z>Ii01QE+c&yyoK{rY7F5EPpt{Kdftr0@gU<6c&-z1mK9{My z@2&)#OSzD9LC@axTuN@`SkL&G7o%qmIocnEtUerm_xi#Mk4uM+kL7iqc=_R5Hk)Ti zW)S%ZoYq9F;~xV-69hMj3q}#CVLP~+daDLBPMJ{_M&$PU%rix2rdo2Ug~LK4BGae8 zXAT`C#_^iPRuF<>$%j#vy+5KLET_{iOsJecRwx}&)K;1Fm$<5 z?}aFO1Tz}n`Uu*XRWmaDQ2C=CBX)+D|08wR4!KHoplewPg zcJg%4A^#Ct6;khM##&UNl+J3@DqX4+LEZce^T%hT`+ihy)l`?Zl#2j6>x(Ht zbcJ^2*NJ@LIhI5Rw5o{!??D>cyKwo%VYy7=j<_M9rBANx98^RsC2In94tkVAZbL{; z#RsnXiS(tF}j(drfYOXeM zx=*9K1jpc{FtqkXsSfZi+)v;|51|Mh<0m09T$-D@d8fRch16uOr^jx(c0KwZ&RX;$eVq+So zsrN6j=f9kuVrZ(g5H7ppR*HayG* zFmdO08zpzM_0SW0k;a*cudj6n(t)}1OP8I8tK=_mp}wl!tKspI)*PXY&Ob)>j{-K~ zOt80eT0w;%`>>-K`A_IYF8S6tkJg2L#L&7`Q#sZ3=^NwG1|@CWFAiFDVKlV5W`{IF ze&zFT(_bVm?_5~I&GFC`y_UE@o}MrM3omGZox3AlTk@h@zBAbHV{o6Mg;9k#p-b+T z0m~{DM0k=FEV1mja&L;FIv)mk-a8G~0{+3Ait3}rrqtuXjlQN`2DIZXzebIca}?-m zi!4)P6rqJ-H}%H_7ARE!x-sioM;2Yz)4R(rKvyO9(w}h0qxjin1X{xQ=WbOs>9bHbDU!+~+OAuzL^Q~?vsxlrN2Rx*s1SY47g{^+voXBLTj5CA z$0t(%?jy=`_F@VAh@D59fO2%3-i@%2e;X})E{3J9m|sJB;iQzEhJLC|J-Hv{^i#el<>MLOSvk z_T6x+@cvDq%mCPL{$gS(gl!s2z59HiiUBqDJ-3vTuKB$=*1u91m9is7=p^*GJMQl< z?PhUHZc&glI6Urh!mrao-t(O$4~*mq|LA5+1@m^e@CjE3u11sHvUj!LM_2wPKAe-H zCiIF2K#>5A#h0v0|Qo3`@9p9 zcAx>*Q9p+whH6MrMZ}odi(;9F@c3oH&+zT5lymhYbR;5L@y?@i?#)exIPwF5>!n*n z$}V+9l-V6XYqH)aErp&Wf4daUKssa!dOk-zT*wKAOA_*%OCyrbLL*M&t$|hkR~PBK zxEJv;QDyGij->cJ{8PzFL*9W~!wFmVYl)#Y_#h!x$0|*ko4k>|Xzos7e}DY3`8Fi% z+IKyfrBm9;Ap>QxkWY0M*#=*BGCDD8+!v_{F$WZ%>#E2HW6!2kdY!S^Bn{BH@=UwN z30H)a;8RFjMg(V(r*5w@-DPxCRM^|zq+ zbD1GOo9hPPDlEf|`%|`#H(SKLR2d1K$UsKEV%M?ZfMo-5gw_^h*=qG8^nP0hg^eFB zZ;{gY^l;zKepCU2lw36_F7RqgV=v%SLN zgQ7ZEL+R9;a91dTu_vA=#I%NqZlbw+CouMxP)*5|z||{Rn5~I$K{V%StdDYu-1x7O z@0z*}t)(RAg4=b+_35w`tjUYkm7GD)fwK2bGceL0=A23e=xhC<5D$UzN^J~Mw7Iq% zNShz(9NgTM8-)30hSc#rgm$UtBv*d(ftj&GsrL$$#&HIQ13r@n!~8CkrSGPRpgsFY zS24%O4umAcmZv*sYDDaOgZ}9T{Wq=fbJJBP_~=AJ1As}q>rhKDs*bz=aGF^vIk?nD zahu-F2Si{wUhBb8kpTL~{Q|zUug&z7?Q^M9707`Q&D==3sj zjgTQA3?^(&4}s=nhd?d+Xi>Nb0ogMaaX5cIs79EV!UbNc+CLyNXPZg7yz(9zIQ8jmL41_4iZpVecu9 zYwjcMdNW1av)S&)IC1kWDr><%TSN}yFY=FVJHBnJ{V0fB)V%Y(CCn%Ok77(nF22yp zeI~X(73!UETzDvKW3na0kN?$6-g7`u9TZbtyUOYLpaV{@>#PyAh zNW?(BPIc7nj?f3{F=Pd{?0A|h^2@oqJ20PnTgSDQ(h@!e(khHEeGbVHja*?IXt76z zvjmn}=&g1+RlP6wHoP?*a<-^@^pJ4y=oQ_cT*jOI~I`^*0hbya!ytJG2qjcd}qhc_SeGH{hFkx7FxkLvlCs{m^Lo5re`hfv8`mk!f=)4nNdl z+1xI<$spU(j%E8WA$xB%$}HI}M<0&G=agY${l@G@z-fUpJhf%08j6jJxoHFZ9R|2q zZi=)Y+?Z#RZh*?{R(T#<-}!)4aE?Sg<3-Glz4p+Kadcp^+>GWw%~J6`q%dzFNPdGI zIT&x<#y%0MMY~!i=>ftvDWuUUEzSAKFCS!K8-Iso9-z)L6&}#LpGF<>f!j9!Fez(8 zsXkbXT9itdE}q)CHDhC*4nK>rkKG81+T7EZk)IhC5Sr^$H@Z=kGs-zMA*h)+{&7_D z)pMf(cEV@Dnqcjk;dK2>>{%{(bLQU4ZGBAYqWo8V+akt*zTJlCFZr@0Gfs?d>rO^f z%{NgDAuGZ?R67lP_tF<%#Ly~Z?^|n=6^EfOAu)l-a+^hR8>!kkZe|DYF8wz{!cZ98+Q*ck`w5mEN2v86m)Z8BqThQ47mgFEj6=DC7&a#TnX?`oUR|@{o&iWz3b}Pp~zrWHjL9Pt4kOv-) zgO6@-gJzR*CJwB=$r@2~e-DuD3tG7Dp(CVW-Q$QZXI&?9GNk2OHgzUoYgI`rQfOd0 zX`!k>75iryUTvi8tdO2Us?O5weP462U+=+4CIU8SChP~nWeA{_DR(M~dYPr!lfbqH z>wdY?ZAZfmfopIxBz}4v9n^J0eWgNI$s_*n$8<{?EH`V;QdC) z*cd`A7?=@NQ`U=ZR6%`W@2SeXgK}+|sxYZNjU7>rZz_AWP}>&P{Jv}f$_KD!J5X~s zJAFaXnN8n6p2c?RbY&*E15+Gh+fmmLLw$7zqzEcW(u_~a2&1`!uhDl?yyN9yW-j|c zaUWI&Nk~c5OJjqLLtO+_ONJ}UyZ|(i#DBBRt-l&oZghoj;!r-W3+N<|$7^(GuQopt zcGKbw6?oeW7Dh48S1FSYI<^Ouh<(U8?B(hpaAQUYJAFsPEZ9}GW)8`r`*}ln)dAD6 zMwSw1Ryic)a$kw=1aH0lN zW21E@;FV0_>s>;_v=zdMR@TKk|6UFA96+SskNS$c^<3c$nkk_}gbu6ZTv=)`YcMDJ z{Y&`6p{imel7b-1Ubpg40$2x52B*XymHV=bem#vOtwZ!UMwhw0qr#d*`?^&Cm)6D??CW<-bW>80Ph?~{aJ6{y4rV1kzq#XiCn`0azEwuBGqBIX~E!s{~- zAXznP-%8=rzk;IXo3;Bbz-m+{&+=@ouKbi_=oR*f)j+eP^hmTA(tYaQO!EU;e#U~} zj684voWy=&a?fHYN4RhT2E|Z5eKh1PUPS~LcXQs8x-F*G!&2e%?hZUUV;%fDU;P7`G(}r!bQ>uQ5IBr zZX6N_bYfTC+*g0;NgiMr;|7_gI_R=LL*S^Y%;7MQx5JG&D7pdDL8?dlfXMpIZ&r9K z44=ReKO}%NHz1n1J8pg_CgFZ6RDFy?0BR_q0bVpr{CRTbW!<0ONAT{Fo~!i)FDYqB z8seqD8?hFe5Ql8I(~Lofq`VqGw5upO6Y}%p*duWHv5oUX)g?N4n9MF_yiV62_xqp> z_K~Ho-^FuSY~9V~@)5GTEwCbI@pw-2#cRPcSs7kT+auGYj@;7e3v0n`2v)9k zcuTQk>mu_IXBKvDo`)zfgtP^B%An88l1q9W{{_1d`@R*i!(R>myD&^?-Ce@VOxY%> z7KMcUE~>^!U&W`FNb~0&x~KVE^hh6!o?=I9iNOs9z=oJY?`&M$yLiXtz2@Husxbos zzx9KvRR#iTEO(*;U+Sp2IZVZprzsD3&o=Cy_2w=H@T1-QA#`yJ+VUvuG@{^0?}?YjAI5B5gSH-MX|0%(qj#LOo{(LwR!t4f(g;5Buj={**Vqi~f##+WfCG zhUMrZG+U~z9Xt;88Cc)-eb-RVm7nyOGp)#G8x=NjPY4>uf!Ba}gAGpL`-1_f;5v zlw(D!b#YHOw!|EwpbuV}yOQ)8m4LA6dt4r}2kY5;!r72l^zhG~uQydPRZM1;piF7N z)E<7+7nmH27xwA^0hgc!&g7`fKj^X3N+f*YpYmRN@j2LW-9O$l8~?she^ctUqkLDe z;3Nn1BDx)iPNqB3;JQahJ>QnY0|o9qQQ}g2GWkZ@YJ6|jA9eTX85$(+-A;(2YK;3U z^+KL{z?=OftJapqbbhZy0{)E8SjCLiDb`ENrTF(9^)&QGg8)of?)(HL`E(6{IBawO+1(U z6ZEifMX_ihZR+g5;N?bpKZ~53mYa2Z=pNOa6}{tGicf0m&)=LqtjF^&z6pGn#syAI zr)ciuN8trCuX}lYnJk3aNapq6%Jmg)EmCK>s33sJ(!PwI>6bkd^j_Cbg4ENW0Sg>l zg$c_W1Egim1n0KzM;%O!a>St`a-uBbkYM~X=mnoa_zCqSiPXUT_3Zc>49V% z~<5Xq-K%@gd*3mS^=5^L8S1F@sh!?1fmkljk#&f@#ISf~n4j(;l(Bt`gH` z;9d2%jA2UxJhrbT5172sQbA5X>5&eYhhO!(SD>x444b#H_`y+;_)T5-=J=kG%Bc#N z(IXw(G)iDRjwKJ;Fp=lU9n}2xgw`fea^mbq0Zfx$yF-PwK4p3*;nVXay!{bNFT3cp zM>lx;dCen_C(14n4A0E{Hplozrys=ryNftF;hv|U+}*S(W~KBx>@@Y*?bMPv+@E0g z_y=TnB&x&j`b=EHP8cYmk?H6u`5#^<+~Nkr?JYu@B#k|W4N5u01w`nh7Yy*CHed+r z%GwL&+^-cF`VaYzo3X`()eliSA<+eOVdu8u^yFDMGhumu8in{&yAV8qvKcZ54oa7- z@#LHTU~+atm=$gTFDgbY-o&iJ57fM#JB}q8O zEV+~{b>iWmgid3Iqd%WRASP?{Hqma%`*xXK2U5A&CQj4zIxqMq7SiYUCaiV^bfDyQ zx{0Wu)GHgZYWB==Z*=+}k&S?e&P~PKX2Ib#Yt_m}iJ;r>z)-dN~;+yb?FE%7+VM8>5G3#JxPMK<6RMponN4)CZ?v_64+}i6TQ04C~dNwf5rS()qtR`m9u)}2lmPX z{vZoOl!9d8XUAfvL%$*dkFKUL4l&B}GsdIY=mTG*qRQ{zO}EChoWDgoelO-p|I3@0 zw(#mc|0nCaU&KBTICzHhAr9~Dkxsm?T3mx_bXe}qgrqdxQ0ggpf?s8b?6rT#*&ws( zL+eHld1NyxYsA>qDZ4Vb$;Ae@`kW3zE%Gs%Qu7aIp@`2VE$U$jkgnvfDS>EZ} zm6-czWvG}T@ABz!`L&WMcn9Rx+KGMJy^X|IL^pNUq>{-%M&*!KB3T6tRoLA|!jdFe z*Atua`XPm(nJlNQyK5QxtQUgGZJ2VhQxv`Vj#r5N6o&c_)9h_F=6rI7UXF-~U7M ztkjR^{}!f)tY12gwO!sQRzd_F*(~7M4z;c9$-8)j_o%n6f7N18;qH;T|GdbfVv_7y zWv9QTaX~JAB=q2|ymoN+b+efYgT<^!wx@?|+;PAwIm@Q1mL!D54gIoTmNQjaJBMd# z`^H*(m$v4>7DC7iuHPG}M5cU%9!ADF%p4hdz0X#lG@*`5gljr}deRy6b$~XhVi2LkYOkh^ZzC!H~&G=;U|B zaLXGV5mDaHGD57CNQmFTE2>^TPz3SH3gha%AhO{Ku^&>_0n7Uba^LKzd*tW1U&NCq zdK<|LnJG9vF!J#`$l(`1g7;!#p&qhe(3SCX1)cBB1!)e5bUH+l+zAGL1q(pefe!KxwcC<3!dUCzgZ`-b>s-MbS*j`H7^LMWnXbb&F=|k1;Skt$5UF+WG~kG6 zXIR=4056p)wEk0?4B{PYVfezsCO);d(pb_366A}~q)qicN)-8Ee=CxDyMy;uh2j{l zCI^^(OZp{7>wDaIzte(-ExIGXU{=U>uEK0yN%;`sBZV0adWyKyz6*?XLA^nIXw-Xn zNkgEnAP^yR27P569Ov~Aq(M`){YIbsj#n70F;~D)9AXgQ+rPtZIz?Rv>Uw998cCbt-l6 zKZ5RI>MDU;%5v|21Wy^8qaR#$9j;1E`0h4tJmxkV0S%-m*OhAu6aIBlveXGReu8I% z$pHxju5I2{6N&5{%P4=x%HZ1jiJ&pFSG`(wJTWz1r{+ATk_@Q|m&zj-PksvIBEv^K z6hGu43k}kF{oFl%FZ7rhP%fuPKlTWh$ciUm%J(atRSmVil#6kG>Eiz z<0n-|sa?GPRyJl#V9q?Ry$z-NwG!M!JDMK(sxOaxJC~{l5QMX6PUigu52F@J0|`;~ zPyRLp*^5~9douLC>HT;m&|539^#3`a$wM?nS_IB{%KJ>0G)CS6JT3$@OuGL|K6-(6 z#V8P|>?t`j)Hj7Lq*rbtM`GV$h8&q+TgK@sHH_LFfI6tvQ1B-Xp!+iAq4!Kl3h3Ev zfp5-lq-#achFKgxlUq9KvQaX8+=%~%tJrnD%b93v5k=&*3l16=GGPKCF@&7 z(4DTVO=vom4yOCg<*KJ*Ew(GZ1Un{I!DFKiCt7QqG3g1pI!2lzylAJNF9LLbX=vn& zI3RqA%7k|4r$SISqxLJ0i4Pns{u>+Y0C=70tNCC;+>GoHFnc3w_QCdMH(QA`;?$$q z&PeTL>`azXM?h18pWDVcS61>VB2=k3ju=+&DKhZHq8RVRV%%k_ft!O(OAz zK-~s!V*GN*)2Sz>QTUNdBZ^~eU`|K93-AZV%{H5W{4=paBVD~Zx?`lO*H?6?AD=93ojNCie4&$c4MbscLI!WI_2!F zh^o6|_evzVV(ZupX6sKKZtCc~CL3o}{6B}w%7Iu5^MsKN*^*4d&MqjklZq(6e0T|s& z&#uIb>dYsvj>#_hWUkA(pe*$@C>>XQq$=h@;sVyVQVkcl|8Uc4WT-+-j)SxX>&NM? zNZ@ClKxC;(cTi~8sTa6)lZGK`(^4vr@G_hC^2Dd?6vCY4*gda=nqw&^*e}+st7}uP z3Ouz>k!_DGv^aK|0_N2ZHMh>c)W`7-FRqM74U#Ql-r_E>W!XjzM|}x^zmQ)>C_NY8 zV)wjE6Hc?7z?zG0@;Ta6{!ku2f;hj}a|mWWu&#Z8I3f5Fk`UMGrD*r+1OxMq?*Yre zuU(GS#*O#7>mf7yk!IgruPQ!kKEYP=ci5g#`Ezfzdd6z;`eW7SjuQ1GSbX^|OQT_n z-Ij~B9UOP9i?4Zy=w*z7^;;x@0l)5a>lMoXEdgpOkjlv34pOOn*{!oZve)4jmuUwp zVG(=};ZqaLtAn==KspTN|9&7!pB#)*(R>$1P=CjHx2#0Y_EDoHL^J*Yp+=YZ{Yuh+ zh?FdWs_{nz#5Xw4as?U8cIJ(4e zm8{{+ul~^^{H?I>7*iqyn6r`B8jw}6`STI-PlP^dMuv1PL}#U#tTiQd{^{Ji1yej{ zj7ZtVL0;8#o?9b-0`=#Dk|!OLrLJwB2ZJVc9i&{p&a^&>@KBw?|InIvX4Bv-fU9zN>%g7>MiE7TR7k zDQ$qkktUh?YR-*JNRpy)9Xuh4N~aEoz0LGCjUb$2QSHq+5&mXg_*Yrgcd?^o7$|nkd26^SaU6FDnUn+2j3$ ziGF7%4^8GyYx^fcwe`F^?Yk+Xxf;J|hIo#@RQ)GAHL9hn8uuly*=_%N+0@0>(Vf%@ zlxxl_+jDddTw)EyUtE91u^Ga-kudh3!l8fP`=jm4{eGg2kS4Q@! zfPy~W!JQ-A-HCC$yFC{(dzV(7Ep;L!Z%9-vxNWKB?P&Q)ZI;P>WMke&^EDrJ{r4fY z?cA0$!!;Sqz^(0kC<hb`5T;wDCyJi?(h5p5t44cYEh~wJTIND&>sBMk!23Pzo|xozwz%_PX+n2 zIowwVsJ&>-3l%&K#4QObmY5o=dg2K7+_kHrvl`Jh|Bt3~k7xS--+!f2DT_TMjV@P;$efs(u>bDZDOXQgE;_CY+j7~R_7wYAhMEvl2hzI^ zj#Mk?u55`ITeR6tu#Ut9nDL)@_Sq@VkqtE^^cU=S@$+G6EKU8j9-oq2E2ukOGpt9s zu)O8k8I;aZ6Nkm0>+}8&A6ZY#mX$Uy#UrbUfM8ZVudIVPx}_m;?YC%n3Vq5tt)xd?(YzBG%z;FQlaWn6r*fm|*Tmeu<9lP^Dt5mjPa5X-W& z%@X+b{SQc|GLheJt!Zst?FYbK6%@w*cd_4AJd3ft(-4p)X!v<|YcsTJUg6@`BKm_d zSlYx=#lPG0qABCK^l#+09d*cX-m+Nqv=+l_FVzl=FseAbdYJg0kXYdEbC&qJ*&HKD z{yg!K{=F}A)W5Y)mG_-h5vv?J_dm7BiyGlBcxlK!+kfv`4mGwvY(PpM;=Ir^p?`^c zyFMouWH)cE4stiP&E8SY_uc*jet&nfH+G|N` zwOLXBjiViHH-h`Tkjir9gNzReo)nn~T&r81Gx9R;(pOzOJ6^du!iwjij<_+KtG0IQ z}zq; z#c!{Lo*#KpYxGvib^aH6OrP<~{w9MsD4U!K3Fa(;Pa7|@Td

rsMdCparunzsBGl z=mz#tg#>x*zhX>@mBmI6VJM&>IlvR7H&rG}Xz=ogen^rfSSmi}fZzJ|!jD45YbH>< z{C|%6h!9QsE~a&6afHI=n=cYGbu_L1Iuul5O|8H{r5Dzk!Ku|l_k8M9{n)PrJYio$kyC?~y2F?BCSXXrHZfKMs{mUhYJGg~}B<`u)Ln z)UDNvccRSvb=JUeXsMKNM+y};4V++49B#*3H)9QH{Rb!)?=fwZ^&_%`59oCNeiq>2n9vG#PwW9?0uC4{!q84 zDGJogmW~pYj{_irXW(ClkT1Nk_J2nw^j(E<8%Mj~*RRcGN}h$XP9<0iPJGUHhRq;ze(Lh^xbb>ceKZ)tRKU>))qzVi2FjItzE$ zDQQ=6K_K=jaLbIJz-f$xm{A+5hs`U4?{8+vXW2^7{cWo|yaUDT5O3e?tHHO?-Utjo zP?&Y~KQtSZZ(5u*TQImY{D{ABls>Iy(C6&!vJCSL#U^iNH}-{vj2jm_{^q(ZSeJ6} zsyQS5v0-CB^;gwD4sO}~$|J=7vn`T4t&#LVKaQIUb$iDq?6J6i;hIX5u|iqa55NIp zNnlOt_~~8>Jw_ZP#Pkm;*S0NcS``ZW4#d*CdE>RO#_$34um0K7sPj_H2#0onRr5*{ z+tN{4t`9Xm6EOv~YR_}_E3wp6Jonp&01hu_V2<70d~4$#_#Qw{>=;H>sjg&OnQu;I z7*zyuP}=Aqq)!bH$6ZkkB-wIn<|LSh}54N7DtB%`txSZK`M zoglo_vd9;UsP=~=)_VWk@87!IcqoN?DCb2~jdX}i!H9=NOnp)6XXnoZ`DFS%&L+>R z$mPR-Cj=e`MeS-&l5bQomWm=~y|QAqX6mN+O3TkhjlO|Wt$vnULbrT<~6GMb-?Y z>CKZ_A$^=Yob$AyqQw2*JU!4=5L{e04t-(8)|LmE0uahAX=>GLrpF6&PC!&c|;()ua)#*h>F}o{>A-&Xce&4Amv- zcX5YPd4E(%T17;QmpA239H}pb?1?;Z=N;#R6LKQUN!EUcVKi}g>!i~@Y64fLKe_+v zknbiUF64CO!4&VB<^cY|5#O`%+zeo;WtX}$X$dbXwhafXZFk}*4{g0FQ|B(?=fjQ5 zZxi@Hs1nAHOc8sES7=ekqZ*Z0eLf)%bD#Z1-{vW(v%RKkveC$(#!hI2tX_oCLWI`qEe}<8_tfuc(;g)F%t)Eep89EO9DhJt z_w00lRM~NpZR5kt+Fs0qxft@gw8B_QS`JVzn~AX&Tzn0mleI@D26mia-IGhJoJ@lL zz|EW1zT;}&1Aeu^g_m^dmwGX@<_p^G(Y_Cw3g}*iC3LfMn%ljN!hNc}G%_b^6dl+j zyFwWrl7P4I{Cv+q{PN7tM^hp%f#`qDA;;#k6BogBahgFA3 zxb2N!2?$!LK&62Mdk4L*j>_nCnbibv=grwFr}2gN1UA#GBkz%^rh&7C0QSmN0Unz1 z!{{j6elDO`6rnV3FG?U_1F|I?ETTJ6Cot5l^t0#$p1UNh_!9U}z?nG-euQ-Jktkd% zI0lw_tKVBl_*UB`hVTIW1g_HFwZN}kMo*rYizLB1x!KIi=t0@teBk1<^R$kDGLvkw zZWAn(m?tRMHs89*LB7OM#z}0jV+ni(UBGEn*Q&j##5kO@^B3XxNf<=5awt!uGBFPb zvIy5LtueSG{x?2L9iO`k!+_4E-YRnZ@G$kuHB944t_cc2aPD-oDjg*)0d+a#4vf zo@)55&*v|ph^id2mtj@O%mey7Fj55Y4v%$H^2A@JK`KDhzzO8 zucwC0-$EBv-mq6tIlz~ij6xe{W{o08bIohZF$sEP*55$iy?*PBa@h3)oUx(2Qq<0o z3|o)3aYAkzEk|Dx-NUq(s0wi08De_ZI*e^EgVd0Dzh=MH-?1Gl?LQVoI<+r(b-EP|owKH3N|aKdoh%L{vdA%u0Q^mJU(N_l+s zBXl6&GpS^Vdr25nKF?D=Vqx#2&<@d3E+Wo^XC=@EG1I2$O$<&da|nTd&Ffp3{2}n) z@C=z0!=PN5V|T%nd1!oMr!3ZYFbto!8RCgrVr2gz#4F#))`Wkzn6g_VFTN+}D8GvA z?f*sz=K6>hC5712wlA(;?@z5a>c2A}MekxIZsR6hjf_5k5U+xRrB;quU0}}Bw)ZW7{KHj(hWiZ}Nr0^F8-E?&DSictuZkNt8By3f|B!mY*TX4jz(i;4V(26MMh4o+m;`MnW5IJp`J(n z&@IAUm*w87Xz)yWH0yLHGxOHb?G7Es%_`rggmh|cWO!nX90$O8`w8ef?3cj)Tk7ES zLyfurJ`o*Hfg;|}IS*3^1z6gV>9{S`>9{I0sGD~cBY3O{-vZYsk@*R;LIuoUjOEIQ zv}i${uV>?M#>*@X;dh-}^KGROfAXoGdy&oor5!D&Q1VJz08BgbulJ)Y!!)<&9&Oqc z;%U#KDSqj(A*NM(sZ440_o5v>QIt2jqAJtMiOd_LmrWX_`6dtl;=OdH2!615j`Ei1 zdZC@|y0#u8Iror?=lz|o`q-W3$fAtJ_nw3IE!w5hmtmX#^}e`{Yi@iKylpjB?WK?F z$r&mHi*Yh}+GB#`Z?y>7_MKom=Z3iz2QFV8M!H%5elJIf^@YPxscFLZK$;4WTn}#>dcL2wo?h1nj4}>xYdm(`dOfl=oO38SenwDrn>D-H*0~zx;Z30sc@oCaG|4Q(aUYR zWe9aY2eDzld;_R9Qjpp2QGvtzKm2w2_A}w)W$4UTqbvmesQ%T)(PGc=k^;0`7CQ^C zgWqt}VGLf$V$3J4Xe{$#QmfuXaCfIMb&l zgjLC#4w?4yg1nhBsFURM_Z;f4tgpW!%!hne4({++o?HT7Oon0Ky9BKw!H2dco3{I9 zMGsk`S8mKkhFTJKhz2{Nvk(5Ph?!mB;niB&Jup*a^s3es7EOdQfKdIsJu=L5Uk?Q%OcY!3RuP6?`;wIe+L8(sWWK~jQ!sr+N(#k<%9!qocRZ0!vUtToW=Y* z$_AoJ(6#1&Mb;PU7o_ra!@WH7;JJfBO{=c)sdGrUn<2mR2qxi!ra37*V(<5?%mQH^o}oq zE`QC9cWU#u9@rg(b}~b2@xWEL#oxheq<4(PN3>YXHZnJBz~jvm(|n7_$I z7e8-#_`?FwBkYC)@^&`VLd!xD;rmoyw&vI!`D z6w0Pc(c}7%7I>%VPy%+{m|vpwBoSn`H9FZL4`Ba&tw)QQJA%SKDFbI)K&B)4er;@FDBo(Km|Fkm z3jbm|spg4$?C}Mch%CXtj>}HhOGEGLM&px$T@C#^Gyy(s|2ph-z=Lr)0)Tx}Mh_p) zI(A4o9}GTDzl7~!3GXjdJi;CFIyn1}5t$^4aOv$Rcko2?c6^~x&a@Npojid{x`d}F zPle$tZ%g3a8bkNQ*~PI*`wf7&3v{Wn1v+SUqZy7$NfIT+@IYgbx0;5aCrVM5dn|)Y zHrqrWs=7})CGZ}#?`45cq^S}fM0r>g zniNBw1p-9zxQ$UX_RRi(^;*Z8m$y%?0N}?3!BP^l^*xvMdoUuIcPUTjhQEZC#DrlF z;4c%&qbe4=1#e(X7h6SPc9Q^j71XGeBHFd{*t6L`=aZ>T=8`=W#d47**zt#F>BQ^6 z=fBFatGJEMd!BQ8Dyegy)|z;dAJDVfvwIgV{`xG4DS;wP$7|umSiE}%RQCeb+DD0I z@S0ZnhJ7nR@j?H@Z`hu}bRolWp_=tfVvW9s(&Ewc`nRfL+y_yz>_V7NbKUm7aCHAe z4snO20!Qfy8jsUuSD#Mh)?Wh4_Zacr%t2-c$>VOywE4uAAWNxtAa$qxw5&#DT41&sG@tfYMkl%i@JeoS^peo zzQm)@&1j8=W;z3PE^SBodz1PMA5XxIA&GMri;i7JQO}OjEfN_@S414ly-avRe(X@*6eK@bUNo z+zU#Km9=yXx*I;~Oaf>f2c;j-;yHiGrrr@|$yWJKHF?MCs_BzTS>W3lz0e+W!*;3V zdYuget2bCb54`f&dq(uW=h(&kZ?=Go%8TILjqD+X98wA6y zhnQYc8+YlUG*Fh77JhJ+T7A5AQWRooj`Z2x&)7f3EOYDc7F~Ot^&5GB=`7g0oN{&2 z^UDQRrDo#RPZ1oChS`XKanJUbuwv#UrKFk3lIzrj363kIwXY2 z<-KQ6yyPysymLc1lSive6=&cmZ0a@0c~N_4b^x!>?Y53}W;Rf|W=29XFqQp6C+7PR zzCle2OQCUULq-DxY&HdBxQN^ke0`hsG`n4kiuDb(*fx4PIWfRe7(~{s9P|~kUigsg zyPJPcr^{F&w>8Ef__%HVPi6G#M$2=-Y33KkIH(9=m7ec}LtaJsN=0^R`uT_=#$_8{Mv)G8z;{F(S(&xVF$dd`KBm~H7t!rQKU z%_=txQaV;TO#ibu<{xxnEwx_`>hV`sHA9C92RU^)1K5E z7E#_Fxm}opz5*Ih$7LYxCZT%a34zUmGz&a+NDirA?~-mUuz87|hB2T88MIpLafpEVy2 zc^a8eU#h)vG{w92cK~_u(;xOjGoB{je#bebp0bP9jz5Fy6By?g+1 zQmF$ZgoqB=z(rUNS2UA4UT>5pj>^+LB(}r8B+_plZ{G+p+BH5QQ5wo@{9*(MtynKU z@|z0zCBX+CVU9njEvXiOe}uGQ&y4jpKNExZ*oN*D$pOZgDLW8}bq62Y#>%)h+2Du% zIS;mBkJzte_UlIeGX+(JX{-gcz+IVY82qoJ>j@^|cr7Usks3zj_h25(M%wt-;yTV% zE0U^B4y-U`Q!p!jZjd4D;1&9NZW(_;7W|O1BsjzZXs0|Bx`9}4Viwx|tqLatCp+=M~C=runJ)6&}9QB+1iz}*#wyPjT&xEAwF*oRY~;v6zV@B zosgqEC0DdeX~q4p1CWj~9D8jS9k+KcUcR*4ZqdUjwtQ=(_rwChw$BjUXtHLh9H_U=Y zzZ;2L+Tf%R><&)muibDBL+qQ}HfjqI95Mz3$xsEsyFkb4_D~_st_ug@3Osw580Vfq z6rNzz8d9j$CsDN<^o72g{l=#M&RNG)o|>LNXj87;d=G9qLuOj+>)I7T^LfT^6<&5c ze;98iXigf^7}+QeyAX||c+6ef`aXkD3VlU8-2PhP7u0-x@#>rn{OuOKcHy@GB?8IX z!>J55TD+F?;Txb`roVf#Av#Y*wDI{3P7qPQKks1LBO%{0DqBV+0xtzjb(kqL$KA!ag?lT6DU#u+e1m8{%mWEG zoHE-|6cAC?Kc|!gN4nD( z*tZP+#cJ7edKs6zfgkr!#Ofcd(?0=!Lg#lT7B{{%4SuS~Po}Ekf2>j9oMZIfu#a@Q zX^-lv_Q=1nBe?!y8D2`n`Hj=-H`3koQG2MTNJ|-Aj@5ff(zl{AWy?Hpt)aio6DCE^ zxr@@zQ6#GJ9KC?*BfEwE;W=SjSaG%%TeSx>PhXE*BW_IMPJOWrLbiv4>3ak%U;liu ztrrz`Go?0P6#(`xtIwYE<3IE5;l}s?p1%^LyZ^i5HGXKz1%6~5AZGIoEIYLSDRQ!} zxgE7@aAAfgk{>`SGF`MqHpmoN8%h$8&x|<+#+}an#v}gLTvEQnm*Y$NSiy`B@t@#CEW(~kE=WMJh=mjliE$v@pWMEiYHl^u3IArRszos)({}E7yJUD6?#27gvHG&F~yG8znuV zE3r#dG#P`{g+8*94TE~skqJfkI5y@}fjgx@`16iRdt8Af(4gJZTz#sK@8AJ>IT^d* z`MIM`?}JC09M_nGCnC1O1}`MhKdR_ukDyv%@?R4L^8F`*tDl2=T1I={S$mc@!P2s# zL!ND)PDCgqlYX1#5k(tSPV6<51S0mcc=IJuVAP(1m`hAe!G73##_MaKq)!rFis_K5 z0{G~DUfAtK;3D9`Pu9!I;ka)q)~3$X{572v=GnNA-n!a7BdK7fmqjs8zpo*}+kA~! za4)*1TkUw9a?biIU%4>J+i%>jB;s!sGfNxyn~XD$u)OJR{axRGeM@x?dx!FSX~MYs zmia6zg>lZ?aHOS`J+18~)l{oNYv!DgOEMN?O17H#AS+2ws^ZODS+Z)vtT}+J zUKLyFJ9U5|BBJdfdw6A!$|^LPaS0@7y!6kb*ZUGJ?BXsy0ZSF{)9z3Fo%T&?D%J`4 z;lnqI!A%eIq1@~{iyNQhzm1z*TWf_857LQ^qSOZYME(mMz1Y{4p3nYI#;?yEWKvX|1G+ z4nElajOy|e$xbx}l*!<{eyc5OyO4n$uyu>`KS@Xt)`e9oU@ef5><`GvJj9XZWm5yr zuBA@=`2M3XWX25cANBOea+t()#F5kxs>`?4>>G$cY3dj*TF_s<$KtP1&I?TWdtmQn z;j?*XP@On=_{1e)G4Zh*`S8fW6cUA{Iv=~!G|Wi}NNB|09WhuvvRDH57Y~SRss9kU zGh#8+IH$HwZfWKmTSPzF#s3myHiwTABP!r41QEzmM|;%R#O_8^fC{nX{<0T#(U$D} z=Tpqi$68T`r#(+mktI7ZAGuvLbG-_Ske}b5PLYcfnJO^ zAxA&MILYe#-cfPKPaegXL1jF@ClEoeHSU9luRHv)iF|2JaoDN2+J#R4r@*A+_cq*J z=zixYQJZH`qCHj-b5fRnJ>t`pSfE{Xd>wA=XlG>}=!#jSqF#yYb_Z)<%|Xm5&DhN19AtY-(n;+PsK~^Ft>pcI}AX&DvfFc1Qh)~D+|MjhYCe?9vR>zYe{Y|ebfjjxa?|SKiC*FsXQ!UHt z^9n=$caP;6b;rC|&`eYj*qu_zzqeJI6e&d`YX6G;$9rLZCsF`hE^D}J+iRNFuD0;r)y4uV+tK@^2d}ZQDgU;T zVG(US_B-UQD$^o~mz)1l zq5}8C=5sYj6ZD_i2C&OQ9_;=G3cq*E_C-=h#D3(p%$M7a#-Jsg_G;9x*7&&p9Ud_! z*P9Z5Ozh+QzZ_}E&YbY7>UMJ%Q)T!&6N(nsa>kaL1K3aeIHqG{b2vU~=)Gb_N5p@K z2b`XJbCfpVvr2G6<9WbGdYdi`w{Ei#qa#ohcI^E&`fOkIfT7~&2p3ur!rSM=5qb0+ zY;SlHVfd{HIT|M$J#Yh?vN5QCuMSOfJF@+p%m@|>c^%5~p2k1&%V~_f$k(`1MTJph zUa}iC@aPTI%L{qyz~Wp(AWHaHfvAF+;VBh(no>eE&{F@kRmL%Pc&pzuJ5rOhM-C>D z!);EU*sAp-1iXLOOxfEn0~Mv;r1G;eAD5D>vw<{Wh8TzhfW%x#|6>2Gcj zbQ|0EgR(E*;bX{YSHRDwz>c_bVwIu0Y+vEMes1F{#6!6=5+&=9&Q}{9##j`I0rspnAJ^IEFWf!neHexyDsd1pjFSEA?dw{MuPq@N&oqrAfh~0_U;Js8nY_ zffRWkuJ60~FL#w=)kSTkHYf24ZjK(pw~YVUiv$l@r-(~AUG<>!zaWwOJx`J4U)!jQ z9aCRn8S$;VKjIYtGf;>4T-kcZVY4^ygDvzD2nv^Bdaj?C2G+(ro{)%&Wqi*f=)$rq z$_866sYo*@CfRB!xkm5lqziY-gnIzTOA)rt-?V*zIi70#@h(q|rS&&Nhau1Fm|_*M zaR&L)Y?!+}kxsrl!o_YK>GkV4BfEq7K1h5G&|-VvAWh7@o+!CBumBWGzZW=z8=!d!M%crY+WB4e~Ug6*<(C^wf!O!+MP}l_5}D0N=$|% z1g6tLwqh2g)-V5)8$r(-L9m(D!h>c1-L|FpY1Upt&j|^>W{%s$!O2W0btj0M*JM-pI`lJEkI>r{7GO2!>1`3r;eRxYzta(z&Oskg$g zIx@PE{P!o9*dr?JJg4lQ)l zEbyVT1W)0_$R*&rC&M~hTW_2A*&U27kslAg3>~AeeK+cdYn{K;G=7e0^z_n6GF*1~ z^0H|6tYeaujP9AKp=Jjcmy^P-wz6~QLVRt+x`*lpo7({GGYybIogVf;{Z#n+_EVWP z80kvcxQa2YAgqilS9|NfHDA~N=5)nSv87yj)r8uLmt0C6a-%wYYF+jvk4#tx8Wqgo zX3S{{wIa6{0BP9GPsYmSo&x$4zckP6@P+6B-8^)MpEAaOkHOo<5s%E^??P*%6inO~ zu*M1Ek~=GJQ9V7Z@d&B#EFTwk3LRl=+c-^WwM_>j)cEdeUfHbjw>IY^6d#ZxfF#S! z>29H1i%>sn^ec2pofavHuT?=6>P?x)6EN6Rk}dM-; z%|@(>O&NLT$E?LNeq!}b(__`#gPb1;R`c%e{%lgja4NR_CXH#v$QAa9C{rch!6 z-8L@>034}h%r1+{A#xLOnEU|(j0+Iwva=*f3&=DgJwl4bAJ$*HCBY>h?Qj#__I}52 zP~7VCyH!8(hWtd5JUn)^8+>TORdQ?QbBWGG^{%ZRtp|P08@8|Sq^m^tJw_&lCaZo6 zvTM8y87X|F?BBOb>Fm9O!7rZcWHQ~nGHVN^$9y4;|C)ysE~Ed0O|!OwAFYlV@3fk( zuC(h5|6;8s3M$av25X?Vb;l~30N+KE61T=W{7Ljug5)pPtwmWG@QanJxO1!5O2;{7 zNfh|&jn60#e2tMPOJM|ACe4m|JU9F&Ga33GJ8hb@WBzPht#(q;RJHw5{HckJ|JZ>I z^iXC`?caYEj0(YjAHTwkFa}fIK2rfH9jHAoUV1eGH~sue2Wveib>HtkeBp<$2i0ca z&VeD3&#ka*I&oFz!L26F%9=zHPNuF7EQKW<`{pc4MWkO2i-wrMm?WPmz0O27`+c>t zf)Osrs2n*l204tymksxIR^0`2epQncf9_fJ)^_s2)hevY1V!D3Y#1gy9GZ;}V9p>? z56%1{Sq!#!d4&S)MoQ|=EOS2H0>R?*4tG==2u`u%Q>zGF4=h1|;490GZ>U)F5(G+V zo)y4K7}LPZxfAG#zMT@`ohs&61Qom4g$d0n=T&a;I?moy%J)yQx#e8!DZlBf@E|8r z9h1>scWuP-{DsZejZUN@Stm05_Rge`BfVnGP7l@P=SKBd<#tk=dVW6s5U_M)m zn7+?P!Ewf%A6RZ%t19%`=#R2$I=l4qIm z*Pr+}S^;g!O!UlFZ&r=#6Xxz@(u$L6><&WJ27!B@7M#RK(@a<--^LAo^nQ>Qyb!Zz z*)itDBjLw6fen5jOak?AYk*oR_4ET;7q~jH$jG1i(rI!Y{Q2>&+IKWgWY$@g9U?$| zjeC}Lb6R)gpE5f(bk#yShQ!3TQ=JN*3q^ldwVfpag0C(Ps{M@){a6^tQp%6FFrj7m zJ?IaAl<}$nO<{xVN#yP@Y1}>S4vu5RN5_YRT`# zHXEKAInTAlww#oo?I^?5{<;O(BNRRq#A#n=KL4rGxRQ1ZT|}|L?b^_kpu|D%eB$Qg zJ9Hg|E{m2S=3U%2K%OhBX6!TL+p_(&HADOB#D}xMcE#oN@8XJ7f;vPqiz^TRk$o68 z(~tsvns-TbqFPTVwcipnzx0Z2UVVBVTb|z;=kDckv*K^RX0oV?8Nai7$agoH6Ggba zBv28f7J4DuT%c3ZzcV+Cfg>UaL-GOExaFy;*Z-y=5oNmLi`WG1|6croE3#Ak`87G6 z8)I+>ufDQO73anHTW97Vd6IMDWuW;jhapGZ{OmdTWoT}lyAI24*gGLR zmcdLCcTL+_LyiDe&zF1i_3liB{7TUgT)RxScNfZ*OW=BV?Gj`Q1Ml;w^%vg+dq!k; zj4UfVx7Ur^EilOoFS9G;{KVU3?0BFAjw{ZqMp2azlJ5@C`UT@@2xtg;c@@4-3rI;7V_6q$LdA? z)E_HQaeQZs-wS_-F=IXQKR&;U8F3a5+6RySbuhStdw%o&HD7+yzO;2 zvT&;wX&=lUPS_;4rces;_N#HG;}w3W(-sqds5bC|Y+L9~^$x4JsyUPPx(je5*L+fv z`r=8>Nj#-xG z^;kYVj~*Th_%X5SB`A4`8?FC{f@Y_&eXwx+NlH3vTz-gH5U8ZLW=GRT3~A6^pvHiZ zY=}LEDMh($S88b`{YO2q)BEFS$+~*1N?`22X!s6N`(HiC$EYB?xNP(Z&SACh{m(UB z2M~w-FeGx&-F_Znc2juMEnq3^HMBL1anqKz9R@W+zA~gdJauMBZ73 ze9Skbp0*x(`NT5nX+N#0n;M5GO#u(sc5!WyZo@ABgpkoS!N;?4vISE`hlKR43j!2$ znLlSbK#ZgQ7^hm8=jZltuLt6`QWt4ghQ!nW4vfeybHG)LN!B$*(h&Lv0s#g8LY~7@ zOb`@G>sOxO`3Gb+2^2>`J!%l^7=GYx^qEtj?`Jd(HR$Z9)kHhK+Rk|VH}NDT;?h>w zcQM_+`vAgJ+bxfwL1>4`4makjRNTwhnp=I{{UT?r5?)J2#E%z%BwkJ}XLgKtg@vaR zot86Mabv8bFD&bn>$%J1?dsdwj$y}NP9F8fp%avxM^qsR^>+@|kJ>u3uNJEw?*n*S zCbL(AJ^wS0`(hPwTaxyqD6%JwF-#`C-KIgHvhYUn>{f`HBGfWa|dVen&|tVJE)iZK_VTVhWw&j z8xelLdKdeL|D39;*P(E{0pR{das7GmX5Rdn7Xjai>}vpef{lP)7nPvFP)~1h_@##( zz*sF`jwAc4)69wTZkxryL|Z@fV#y!N)5OOEDJr*tCaOham^Sy%FD&1Sym7a>vQZ*^ zxLbnoV>6a@TepBeQEC6FrL|9cGbV#}8>!%>uo?n-B^(JE^DsC`JaM~7II%aPbVFf& z)O&`Q+b97NEt>)6XR#$$pT{PwHTBbY33=w& z6!sypL8Q9WB2JkCeL8K5JTp>V^gcgLNZMzyt^9|e@C=0J#AHVx!yd5TOdobYNJkVk zif2xuZq9v6ZPP5WRlW&z=gGGsa9j5rgrB|Wl2nBXKg2~el0lz znR#VDa6gwRKX6{U+(_V-JkDZK)b>0zVdb}w0GHse{kdxP<#xkc75-9htkUl+@rK*) z5Q1`r01!BKNN0w1_J##AVhi2H(O9S)YB*nV4EhT9^A1rQ z9aytH)<hl(s)#P4M^KpR=acwy%?_#M@;dGSP^EsP_xnDOr`8GpDR`!)pfxe3r! z_Yt;sVyGcF;x;mL`2Ck93zO``K%7cAVTJJN^Pk!u(7~9%7;?I1NRdEuNidC~OJb7<6;|+lf`+CJxYkNv$ z+A^ux55ia8%DKRjuUy%FHB5^gnq2WpMWt(o4*#8C(669kfKtibi=vHk)F{L*p~1&% zc;ZDTVec-?_#xABlBESqs#I*Pd<8u+ib1I%D`c7Ui@#z1Rr8TMev@(upz6>GA~mu? zz?%9EQ+9eQ5U**5eFyAApQwYPEh$Rp!s{|&N1Lu^^h690;$6uFNQf^7WaCQJ8*3DB za}vxtZTXi?g1_`;r(PB=HC5h^aB=)osJn3SV8T=^Cp{hxD0Wn5BnP!GuL=x*qmG*C z;te<#cRpsvq@TaI#i6z5#>f}O2KZI@U*Qvv_-8?kZTAYVsml=)ug|Ike%buY%1Oj# z)L*?;fl0`=+ERFAqbV()gzT7 z5!Y6=yJ}glLx&;o?718p>H3AU%0J zsl}(6w`alPhM-PnI?Sx@41tuvX*1TPvt+GpV}2>} z*>1E;67yNJ@Ra#pgSUju#d`9`0bBH~Q<2z6~0>I3y+-;OZuj#{*U)0UdF3 z!n#1>wXkdpzM%xetO?G3`y^23#R0Be>@{#rw>6I1@ppA1XvdGK6AWHE6xv`G&F2Saq<3-30lwBwn23! zbKFw_U%&d|WuG-v`|!X)qP!53RN)_~YQ+t&NT}!hqdoMx;P%TI?Z<#<0qZC+S=m$Z za;GhF>5_Ef^#&yG<;8J8*3YBt0!z$g#PbE$&3JcFWX(SbIcS1lZDh{+mL;NuafUZ@ z4--u?E0YaBdIkI%{FHZV{nb8il@+xcvexBQyav%NixQz&5M0oHXh@B!rk z$em1NpK>8N_}{IOXI&DLz11YQ;EJM0Z`kqH z33q_K4*AX;KBF4Eu;h|@IKS}? z(=}WwYxPSvO_LW#XLB!Xz84ebR=&6#wSj7WeM~GS?)u9M?A-}cmUDyYy%Z>`VHS%x z$7mn#1i*CBc*&yLF`qo--u_aXsi@(e7I(3!^S;J(w9cl?{m^xrn~{wUbKo?1crjNq zL_UV#7A`579;ah|V7QZhilLklnX?m9p;rGlcTDlpN7JMBMs~~MA3ZWlhT>Dn&6Zk> z8*jYttQo+Ly)+=XEbqH60k#U(TUuz?emHBS5X7s5CrPJPpy%_EO(I~4X(b!afdUu~F=TV&Nb^DHrHn=-z zwSO11?-i;)1^Q<}eQo3|GmQtH`KA5e>ZHSPMvr?+C{3vav9rvq6Vbf&ph9+_!&KDS zo|eR`bT$Vj@LMb`KyIu$XWQ0~oCibW`2x2StJI@3O5_;JAZI)%@%cMU{|A^VKp}<$ zv=h(-aYCTo6fKNiQ*zDSjQXw%*NL3LOK}6V0+di7<4LEMIvsoj*t zEt{>c#eIN4mEw|o+;~EibbLckrb{Isu-g{ye`B_ni+&x%cc)p>wU3f`|o)vlpJ016V>vO2F!N zVw9IsJDH{mg3*3CSMS@r_e4vC3(79rXRhL$4fO9j!B|B}!e}_AjqSGV9Okg`t}JYd z1HTUl7}3!{Ht8amcg7_W-#__DHWzt>{6D6?{h#UgkGt|Im9$RIhgFh}4k^dkQlSz$ zNphGd$5_%ZW=nEDtWr@9OGwV-e4O)~4>{(rVVDd%nc4aFz3*S{f8hPNez+dj>-Byf zcZ)ZpdN>L!|HSSvoX+4rfBSxan)a#bUW0mF<*P*54UGmdl$&rv z+!u46?C_fYICCT<*7E81wKU9 zgSJhnJu;%Z3-U<~`s23yJ0WN4ub9=>keCbdCGnC{n9Jz{H3@;4AIRLeIw^Xe67~PR z!|DH}TA&-gCkcJi=wSn8>UTVEv?nc(f2=h*qMHnq_U{>>%Ga2;54Iv)UOSXOAS8Fe zFUL|GcSfg>xIXK5rH(#^o$H0$yJW@u_MvQQ%QzUWpIXL!^9_7)NK65L)pp>6USE*b zSa6Idc%cWu8*(1qsa}u@0R3=Y5Z2$L*lCu_M!Lj^;$KaZu0~_~e@p|w-*nT9QriBR z*KMS&qZjodqBrhZMj5f{r**JzNo`LW{rcNd#z$tWyW+$86>K+Hiw3-PTGDC58a zm%s6kU$T$X;D-C&n6q6-*r1AeQXZ_$=rrxU^5*1S1~`%LDK{4}DSH=ET|2 zMprkyo^yKXLWZ4##95e8#1wRzPOaqmw%mH4*{J*j4B1xA8!wITgMM5f>T~k$e-%x9 z;rO#ce*zJSt{~>ZfQw?2N-swAjrCURH!r>XfQzm=yf$$)y` z^*hqSUpW9OI=Fr?9{N>-aq!h7r4$*jbT49&8-@n&VdaY6~v0lB402S}t1u zVMI`EJo`_-VkXn~zKfDjtu!auY!z);F(uhyF`6>(PF%TBnPU>7+3liIAEuf@Bibj=Dl^htYDz&8H?E%L-)!K?^Ky*DS}dSZq?&9`QA$73!;KJbh?cRyTi^30 ze=(WH+CH4D`IhIl_L;+LRC$5^Fs!tn!+W4=)%TgHEVSD1Yyw#o{&L`Z=3o!|5f3*^;Bx>*x5Zp|830Kh||tmDVlS`vYeVu|)4_ z85{Gg@ItaGLZeD=^@vSB(4h`LOBq&Nd;Zd>@&M1+GwO`*F%@ebB)Ld=;FP73G4CTo zg>{xhL;a9t9n8XZTysPFD{H)(f@`hL6C#0D+>%xvYd!tHPb}_yftS{2{>Q^yaX||+ z5O=-trmzF9HJMYhqI)Pk=mY5VA0W*XQs^7R$g{wvx zRn15c6L!BCx3G^)Gq{&#wOe$G`dXr&`QR7PYa!b5lqh6BHIqm!IclgpMMvFi$RR{b z5!75VLtvUBRYr*?M6rdvmcTwbER;+b4bWw54%DJ1hikF2GfJCD$H%R=J%`~px+J2D z(BoGa<-qF)9an#EyCXksQMG2Rbt7*Z=`u>pm8;q!O(^U7<8?D@6E8N{D`w|&Fb}aw zpn&L}S2R1tOPFfX#3(uT(6>+d=8n5=E9JfAu1)(xjE0<2Q`$0324a;KZ}?PX6%Fb| zLd)MXjT@7(V_T_nmD`>4%4F_Jj=;L@iIb2RPaokF)|oNeT)g9m{Tb=fAFDGC z9u#2~LI~8WRX{}oQ7SV;6|66fvAw*ls(Hr^Ya2IDgI-?|`ZhSap-{jg($7JWjFYm@ zX|hyVB-gPnhp9Ktg1LYKuCBb$@pU@vP1YRmY3TKerq!{Z3c$8zO4lLz1vwJ1Yb`gV z9@thH#ZroJxMFA3`TJw{l4=7m!~N=^K})VmW1o4uIS)S+zn95|gx6l~;1yhdC%mljNVMkPaq|RUAWk}m4${@Ui}ee3($cJ>aXvg{B?H0M z+jOMnp5pqE?Td&o?n?3BmSix#+)_q0$OeXq#je!Gbxx_oheh2RA5ekU4L>YbzBiNw zF$=_>ywT-`34aoYI&lVmlc5^ zlTHD3;?GcA6>vK(_h@`YsBN|OrZg+K`iJ7|gO4CxmL57YpVRWGL@yW3x=#)RGt&W$ z@g0_{3dQ#BnQXkDcQ3<3XXPud34@IaqK+{J}h&SKDNv8sm4mO}TH>45?X{a;2c ztk&4hDZO;YzdhZpfLGoleK_xp@^|(U;RElc^BaMRl7W&5pOWpLcRY-zgba64YQpAW9t2e^;>zvM}A;JcJ`>tEKxrieCXavIi zer`x$G3}$#?rUW;(s1DrU9bV)N;fq`LcGC67*IUvi3dpSk0Q||c;6a{Eo!Gm5N*Bb z4*YhSA>{*+RzG@mt)A#BR3~hw*Z}4mxi(uq9R~Jp?xHj7D>-XUXjKRq>Tad|SpWx( z*Th>rRE%P+cG@PpRqXT(_WGBsTXAmLY^g+Sg;zmF5)Kcrv3Tm%NqqA{e4yygM$X1p zcl=9v0%Xpx+-)*jRTD;SL-~U?!;A&_X(T25=-=RB*4OSbC1yQE+!5YEyCXs`d}tBpVVOVG)2Jk zE;s(^C97@T35$?H#1}gh{Gg!qyA3j2tn2Py08mL} zv$Ux9w(e#rhmWYyKL$J-=~-d=q_k0pcePUdQOJmxkjJ{UjH%tNkBO?^%#Op6KYvj* zh-Qq^`E2#Oaa_p9Bvlq-^CQ)cQFY|2NEPv{MdcJ*>XZK~XNKX3m2@6+7@i8G&ez*X zGh_6lSnY-l#glXWpx?=K`X7yIaP51MuGv;x+qNsrA>c|Kz45+Vlqi@GbjXl9OO!hWTyGUDh;ee)$s$Fgt7FXnFGCbrgqAr z&rH~LAxUMN%5`(|L(S|MIq2lb5*ZtQKf8`49OC+}KcHdW zeYrlcS^my(4d4R#eMmN_Q4s}|=2m`rb(nt|_UJ9xG3Q4-&&vt24c08PZI*R>gcRoWX;sR<_~H>>x)^m&lc*iE4lGmp*EW8f=BlGCP}gW)JiQ zX+%8`l~^%Byu6p})z>8afKS5D1N?u)#eP8aSQ)E{ibv=%jOzd!Eoo|E=h+-klpfz( znR`74oYAey2`NwidpA;%Bwcv4t=e=hMF#8}>w9omAAR|IYH&Ied3teyy&#uY^@j1D zjN4AKont;63B)-ttq9pkb!FOXwT7aHtG;V;L&ImSVtmnu*SL0P ztvs(;E^PUq^-tFMhI+%P#{K=`-$a}kNAY5Vj5d6|TZu9CS_W6q0ML$Jy5c*O5WHY9 z8|hp!e(vgemiU`=pnJfh$TW9{t0GE3xk^$<=Dam_Tez1UgY_c>F&o}yRP3!z5Ki}x zC_HG)5{3IKuSK4Tarm3Yyz@1Fg}#%Re}*hpPM&mWyaL1g+Vs0PIfHH)dK_NlS)%aDZcez9gFFLrsAHWT`VZib3|Yl*P@Q|MAHcl4 z$QOC&yBDL}1Bl@10k39MuX-${g-UAtK;O_FZQ{wn<^>HJ^9^E2bJgHT_SY!hGartf zG0bffcUh_sK&u~1xG+j6t~0H1w6m!BD0PqbwbZc!Ujxe$WKFJJ*Ujbb zTYRG*O{%SH1(pQWad8*BORZ?&M+WI`8}Af{6PNLxSJ4wWAT(eDh*s^+wp@UGg`*+P&15$XRY_?tETr~4&(XJaBu zaqz+|ef^*ho`BB!lic7c_6Q%%-w88B6@eZKXrVk8nUn7%eqb3OF!DOF zu{n=Q9pKO|DHe+hKyww0!5(b>ui28z%Oq1Hhvwd)YIKFajLhEH+jV9|5sDR?eo8;C zbfn-qOyLeccd;6@M$U7UzAImYoM-JA{sGoJgs-sjZ4ha%oRD}ETBap(J$=>E)OD9O zI}?Jip>x*<#abWuPIHqfzyQU&n(w3fz;ZOG4tKZ^zS{<*SC2s94e6CEtITd2xH`M}pA# z0cPJ)kn+a4{7bCHkGO?g(N}BH!*TMt7k7)3;48&?;C1d7luA(&$VxD~ixALpyXbsN zQ7LLx=)N3jD&a_-6ZQMfmW^nCyZCVMLc6b_F#m1FlnA2*J&ef81{XNRcAdK&63A30 zl~idv(ucwAhY|xkn zEe(gkT59Lr^Ep3oZiMQ~zxqYWT{$lbe;n>qu)vA|t%ugcclTl~&ZXAJzYGyRG^uis z&=Vrkl1P@c_wk5FV`&HLjeyUTcFiSe$M16XlL{w~AnXIz{+roUpE%8Gd_5K%cSv#) zCJY`4VIGva*kvb^z8yxpiYJ8}#5^I^-(&pU?yC6AY7&iMsPk6?&VNfePnL*02o@zK z_|&D|M+J3x$$(A`OolE+f5G_#1A(}{?1&f(%wdCu5+li~nQdI$M5@ai*nU!I^m_8a zTYRv@$EwL=xF-^mb{hk#nuKTjNvWi2pfj=zkMCN6OlG4AWD4R=D`9d&SW8FL??%)6-)@6Ddrlo`W}-&dk) zuqd|FrrYo}HmPPGw7{_`=;7hHL^T|8VW*SjU2m(dsVnYkr!)cD>933#dMdraH`6k} zP{ySh&VY%GmC6OTWBo<1$B7OXT9S>8+>db-`mZ4?9;I?jMVbU0Ij{A{=sVE<#V!a< ziy|n$)`CA)0VT0b@Cl4zHg$zxtWG2xCh3l z#RS$3`}{_pQ$COT*;W0-7~%Mdcw@|}=AeR^5y<<`N!B^e9*kWR!#jI`<7!` zU?tg}LF|2|+$GhkfQUone8x+y`BP1Ko%2CazCEQCUc<}K!}d1~DJK|!@Gf+gkwpF1 zwaXR^ms8Z(dfCNfpbE#Ns~12~g%i4nT5&ktE^O&L!7~84u*|J)lXteEU7w$)t2brN zBI+UX)A-#HT?m!-G@{k17{xF3`*BE-!v6x+f(-eQ4%Q-vV>9rI;axe2RO6L4&la%( zy@GQKJ;_&VR?~hZum7v3?sJd)3L3%N19AZ$SDaetPY&-K+KuVyfp(4kB>H@9NSy5W9w34 z@S8}~t@zl^2mdw757f=p?OPKET0S8L>G_*`JKM9uE>DKYc3oX2JaM^e4@Z{W3Sm&~3qY4mla4J!) zbTr}Z+&E3QV>kr8Cs*jNsXAw=E=wiWM<%(&wrs6CavHck6cXfnPq%$#47HL5b z2y+{?*c{UP>kbWTzMd4uz~XUrJ?l?OA{FMdw!T4Zw%EHd(cct&_=%*yB;=I+=P*{a{P-I2id!;z}|E;Upb z|GmL6nX3mmhTjRvKHrt&QBsIH+*Yd+75}_G;7Y>2+sG_Sw1qnBC6EWz(Yj-#DnL}= zI_Ce$yq?mc_SvExG`ov8QzyZ>3l?Rkr4D8y&3av=8et5>6u<}An&%kFAdDX~9Hr7l ze1ffSxU>%anT{YufQG!OkD1R3`n1x2@C29__B;~ z4EJ&^UB}@gJP!=$BS4x(_jw&dS90De1H3nT5EwIsz5&@cUV}e&5FWNU{-~pQHJdMc z#qsm`+_vfO=R{W+Xt0II`;*N^S*y#3#Y`1wG?w1ui07ZFAGyztAQCsOu77jWR`)bq zR6{gKdRb)*8XjI-3&y~=vJ#BNCdldZY3vPj^C8A~V$xK(6V$cnM@Y4z|95K&?eQ~R z2rG*d2aS5E_~Mz-e`6_{u1(aZcV^kj=7jqioLuZvhv=kIAa`-~T1MqAocZ)ENbiL) z^A{~#aq=6;lxW{d>oZm)R8!>uI;~=-uu8nobT+@p1_*y9uR1xwP+H}gw*r=_eoy_j z5xPAVMPB25*JbZX-kFW zpakZ*4))ZQqHti*u8sgYWVU!*#~FMH_Ore-f@s;ZSkD?(l!|q)OPSL2>6>5BRx2)F z%v3B2r=BL=gudOxAm5@6gF2Z{M@}$x@Z1k zlnbL238Mr{){5i7V>fsahjTI@tp@wU)ZL4?oYd_MNEruoAG!g1ACiD7W>er zyQXFQwHMWfvC>@m_s<-7*o35f?LY)6vsz{T!9pa0__9Ugu2rGwa%}mP)MsCs_<#Nx zjHymX(}BOj5GoXx&gkrbtLi4*e7kadFw87OEZ6H4Ya$mOIpRmWI36Nd@9 zUu}4I9+Fr~aVSF+88Esi`DuPh< zdKi#2vl?%8%S%B|{sz~MCZfttjm1C45aoEYW=yv0OvyP#swypHm+h8%^w$Eb0Hg6f zSVy(hN(3o7GXv{Z_zsnR9zJi_ns8wHCJsPR&Mqa?bB+ix1ys{<}w_e?Uk9~g4&ZOvD@MGOI2NX0Hq6Rl>gX%n9^%<$rf<&KL zJG^F9bN&;`rGA%TS2bYG1to#5%FTpur(QPHuDId_Tgrg4{z=eSaR`tt0dC=z7o7i9 zb*7_Qu~(v*sHgmxs>zTTYh~qCV}+*)t%eEgv|hUJo{qF6j^7t?f$B(t&_5Ap)e&U( z>F>$k>!An(%NL#`^Cou3mh;;wH>g21Sr$DpB7%~v@w5e3A{#|;?c zaE64r;ApP-3;!infnQ=5@hCijW=~2e3Ng^6CmXmqE>cS%>zoE#- zn$ykQ%T4hv=dXY`os+w@(n2bK(78|aN~&h&x%t)0Fh%$ zA`Jd$=mnmW={DpO5R&SNj+!~5gl}-!2(#SXy80m!e}{qL*hV_5b9DJ1H8l8F;0Pn) z`KyMGZuJr1w}Kn%YH+RBm4?iMA57cDA8XhogDladqTG?lJO_jZCB6R*ax~lW*`~p$ zRTDRHsqAYx2O$Ni^uinPx@k|iacyU#fhO;LU7rMVJvRQW zASoL%QD{@X*OeN`N5mm-eJh>$AhLa>pX8Xt=-(nKTeiP8=S9KiJcv8;C&SSdM9C3f zE-nT7ZR>g5Z<@;Eird=7;_&=?*R z1dQ#}f@LdOKvS#Ir7I|c71Z*2{bJEq4DR%n=0GCxh73x5NTDlb_#;DeXT93bty{4N zAjkOHV_#EY6{g8%#OFp^W#hTR&Du}6u8r}ezkBt2t98pxj4Ad0q@|>IBsY_qEj^~$?GSvRz^b-+BHGV6Hq+PLRtH9>5pRAJZ!V25qnUS(;#Qpd_0e@zg zc+9)uxB)~b6N;?%1n!l7t=)C~Q#T6+WW75Bc>>_>t5%-P5O~u9-+)x>Y6u>GV2Ri3 zrt57(fQkG^j+12NqE_)})RL9=$uBWN99Q4zqX@YVvEG=Q4K%AGmsw{D9b-XMeZ?xu-A# zjd0_tb`MiEQ$YvhsXWDE_7Lv!+wnCO;+*u-THJS_N+^lY!;VrT8n3&L3k{_Pd*~Nr zSvW&_p6oITKYS!x81{W6I({s+P(kb;Ot;1{v6aPET)Bwq*B!fR4cKcmyP5Q0m&S9$ zQ+brjPh6ap#BYZXml9a@UP`F?$HJFMIhU;rEg31Q#ezUskF3VBQdUt)OgdG2)c-TL zbqKEG2HHK~#X?}$5t&o#YH}WC@(#x!^JtRC6a6K`q>}MU+S5tIeT~~kg;S383EVsr z(aUP|kPrLLa9v<`zxr zX0SQvXPTrJC+)4QT$ICTUv7fK+hQ?}Hy{#gxq%&B=r(?BY_$-4W{+^&#+s4v7&0#N zDg=F**Se>YD$Sj1?4TB|yF*Cos}%GJ)MP=-mOE5&o@^A*1V{$SQ%cRLH^9U{h2+bS z-}`d&TN@VxZ>8Gl)v=$!Zf&^jm3A|fAci_I49zyt$PL^=A4X=<4esk*r%{`dmL1KL|mOq$H8D{}ZUwe-Y8JYu292DoL7p~3`%^%;LiDaq*G)>DPNAZ{K#5B$~OP6Z{C{`r%{=r5bf9H4HP z5M>LD;lkULo$7NI$M(TX_d08Is1z=7BNxtMm;3PWRIDacLFE??dRuvQWkkd6Wy8f# zQqXzMr{T_lQ=F;RU&Q#If}yY6`TJ&syeU9}Wq+&^^?76QqX!jCmyCsqSe!L~_3an? zfW%CQ<6<&9QIV`vA3PthSAQHD8&tn?6)u?nRizUV^8+^XW3uM-lr=+6b>QCM0Oi^S zUUfh8B2(ew3gVGG72C`6f6d1Pjut}$y8k_O!}_Ec^CqK*fyew`<~%6VfO@ON6fyDzUmZwcoXzY`6-SzXvqfMyUAIr9M9G7PYW#2t!g+Hw^Ta3emKNoe!XQQ@uqO5Bz*rj z%rGH_WbpTpv)R^EAGNyZqp>ob*{Ll$F+L^S5mDrlPHJCBBHnJyg_IV@9~ae&*L!AU zR1==O;Y*54QsN}VdiquwYABhN1fnggDm9BU^H1E!dfp+b#g5#Y7{iFv8}mp@S$KL; zDRYH5={?dKL`UVGyPXO@mc0%$jBE@jY_+8QLJ`m0$Bc78T@unS!w%Y)|jUGbuk}hG$zf!-7Lz0kibN8I* z+QKW=D^r^4IyXcA)}y5bdtA;W#SB~Kv-5_0eMaYO8hhYh$2KT8IusBIkWvkR ztra{KgQA*Ywo5^f2aScmx#&as=VjyFfaE5R70&VTs^4;;yoyb7LMdYnE{S>*!0Bz!22tideDHc_wIeB#81K*R8c3Fk` z#AKo2an}X~QBx$kfS5GZ2D)-DrH~hh3BBUew?$Z*N8OYbK|W7deTJ*}s^<3!ESm8= ziht`a8T(75nn%v{M;s$5Zq~IyZ>73wkD~&H+FdFxy4tt$dR=N#nZ}pFAA@YFWL!G! zxc|7C1M8+m3fY=P=dXo0L0BC|sn}PYb`@bkZ~Ec(Zm5v;vTfa;@&^#xh@Dmx`~L#wBpC8cs%@wU1QTDRk7154wh6aKOF7u{Q&s>(584#ewGk zFA=YuB|OEs{r2nc_0yoNh7tG`i!HBbpvu<;RU>{A%#RxIOc&)`%An|5eo)$IyAoAo z9u&2ql9^(FHLp+iOXR+5=~3mi45-u-?~5BX1)`#Xm~dw-*(T@mX@eDw7}1S&tYwJV zN?msE13J@cRCGdC6w1Y2SaE16Ti*ceH5Hh+SmUl;SlybN^F1fZp*`Eo!a0FNT!@1#I z&;~_gR$zLx?ua>!lQvSF{z8l6@yU0m}ag-l)CEgz`Ji7A#>u&MN zE~Cs|KpMy_fmOZSNUQWH0;54=&l3Xu#xUnjblYni70Qck#T zor6R|J!7jqwp#kJ7`G2UWk<@w-MG zen0tcX{MPObF%6>*};cYm2%`R){t_$bLw-&ix-d`jLp7vn{B@Bsf7a1sqy{Y3;DZcu;nF+6~9D+Cw8~ELv(oKeXq#`;Fx%X zuq#}7P@K&~ze5<1ca8z;)p?Vdz&g z6(-v!LjA}5%Lu{O8Mk$w5+*O|DgTYw)Lz=vSGUD0oER7F3KBL8w!1Z{)ctM7|A|a_ z5jH$tI9~LsE}oc+C(|%ql$NRjH^Go3BFYovOgTfC{a7G`=D#;tIL*m>i@>2 ze60Qc+l14yzj{qZc&W=PmlAl8(lFCkoh#P1GY*6MLI<5cRCQFplbdM%-s-tgc=fkI zvcj39#{)j6DG^0i3Et1TySgKdtnt3a#a^%8E}3nE4yr==j?wMy+%S#vra~@>EzA0> z-R=rv`Ib3p>ulvKKdXu&? zIc;~{`pzKd0TtNHnJ~nRd{ZsXNbexJ%{Nn*wO7pj0#}k5A~6CyQ1!Oa$zso*BJqel z#*m?@`&M&}oP88Iok@o_ydkIKB>R4G638h55Iy|7F@Nk6Lj7+qWd9}1*+>K)R)#Bh z-ncY(OAhw0w71OCv+lDQVNbhtZGyc+tD?^z&P@D)o0K3#$&la z$7fS%h};&SOdrloc!i10q>sfWV;9JXT(*=3f|80c(@fwgbkKE7h46((z4(s%{Z*vL zNw0w`<|&YSK9}95*FUeqr;mU-Vf*{a+t6(w2quz`PBA- zcFE(T+wkU%NR197-Q%K8zd?Lq_}>lY(WLK<1*7|4O~@Y9Uz@t7&)d0>NA+~-&(~X5 zkSJgOp2j|~s!Q^kK!*-E1(08a8j;iX^E4O|n#}7?Gy{G=_nF2bcxgA)znfRasSDP` zKBg9&pWF-vEZj>TC)FiOZ|7N-(RbgqOW-yxX-+tp?jGBXih%zWZ$)R~b_E+CB-ctT z_11&`+pHiQ6sD%mm6RRDi)mBCf%rN}|Ddds>xo+zS8KD0PLPbV>oV!_luH_KfofX- z!6nD<U2!LW5TrSUwp_KWEdZ$AaydSpYq70f%vUv{vwW1Q;YPNG@ScvFOT zP-Gj477K9Sf#a3nLjyGG+d2x_TOP1bZW7>V!48nZSQ9|- zCBUl#%su$4XkB1aJp~8g+MZEhK09@kdF{`h-a6sM34l;Cqz~J{s_`5g2%+0YB0f^C zNb@gt4AV%DH3lso1LDemI?(ht)@eCg4hzPUJDI<#hmcQnz5j$6R zp^cPrFJuH(DU317DGi%dIl4Ky|Nfd1U3@R5fu_Io2Y80<%ZTj~IMbtUfqyS(ONf#c zlR&QYoC_{Ik9xD8)h|*>5URqk=P;b9*_oN^-poZEl>1&_WRmr z_t4!pSVFVtv7}zB^gjM31(lW7%6HLVlJUsA&ag9(T-wf?%Ba)$_7Q!4|7xV*Wg6lr z^Am1CAYMwm?2O~RVMCHY{|#qBn}ILZex}Vm#l5&KvQ*tPJIdAyd5qK2Em#QB5STcA z|6In9ouV%2A9CFBPs8#Pz3iniL9g8x+~RBWi9PDx&anx|b?@ zw2bGXl}!a513?L=$4#{LfEpx@Cd)C52}i8(Mt|vImXNrZakZB-x}VR$n;-cK2j&eD z%~ska1`26OGxK`ul~bjkslD2j%6GN8CD2)%{zd2SAe*iC3LRT%h6Id+yrSD4l3qO~ zSM~(t>33|9Lzc``_Sw>(F7}M-TaE^EIf=Y2cbr`T>`;x}41lhGANt7L7tbqAMQ2-v zjy&&28Jl2f>t!hD8~9wy23l29`E)P$YHb^_r18ccjNN@;0%BE}3x9hb@Mf)G1~x6g z7D|)C`1f@OK^>dH_lTf8$m$`-z-Aq-k|MDR*)szlYH{QFXIMM4f%1ZQ$kAG(s^y}D z4nU%q#X!hkN&-9ak_i7TC*N?=+OJdaZ3U4iX#Z&N_M-C!z+z49-UVkOZYOKOZz+E{ zuI$|F2Kf){t`&ZvU!x=_o7=OZ0n zvp6D#v`o;^kUJ}zmjk}H;i~Qq*@_JFL=~?l5M2p~x&*P5JX|8D{g5Ngj-%K{uln}7 z2R*;Lm-q@+NzXo}P;u_T8>N_;XQaxVYln+%D%0Z0s8=fU5skFJTWx05!Zn7{;en)s z_9ZQixJ?^f`=m>iQuALt=h%|sq`-WD!QbjeR~rQ~ytc2S!D>EmIFgRC>TL~q04p6@ zH9X8C6W@}dg8iFDaQbwW;cQ?yfChO2jU|urcHsT+0mh2=Bd5Hlk*2x|WQ{iFK%f{; z#b^1c%Z%HLxRC^=3d+YSfM;~cYXaXl9cVw^5h)0*pl$)=VKZ)-wy5F|sMj@DH(sqA zV4i2?}bc@4cN%p~<`9HMfa_GU@u?XaLEvKb1_yfX_WLZQGMkXM^eyXhGbNm@)ntzIT7tx{- zIo!%x*%m7QY7x9HvN2ce3tI2t)-FKg_&A)Fl?Mom=er}U*7U&vJBTh2O63*TdP~1) zVnGvGmlVW(Rv?pt_MPFoE}8X`f{<8~t6`K48z%a)3hH+K7q)jB1$3Sh675~Rjxt(@ zNs>fqCKp24I{od9);sCpUx{zorzZfum7!N={|&vSEhozyQVYvz)|CcHeh8n14Jz+( z1sG4eBH^nPBlYJ5$o!-DJehN#tIehhfG1H~*9LN`VNTM6!$;g3ZVSJUSzFsDu)7hv zc}s`vb1-|j>kA=!cJ$da9nF&5VJbZrqEd0##zW@@-=lih{1Min`IFkh8}`pEL4m4q zh$yRRshzGP#-Pk9#d)AwYUoz)I?uPB&YHmfRwiSWqXIkGp7RLtF%klc4kyRyhW13f z9cY<|Bl{zFRsTb^nG?8L=~&G})y$`gR3s1ubWEW5k$n02k%tE4;wJGpxl58a1fLGB5xrKapR1WwPCw=x<$28yG=ARYka~pl+4V5iHWZzma zvsGT|nr;#WaFCf!ltK{pwkU<_3s_#kRAer8WOK zI!&tc!90-DfpSvtWD(oIxjhFm(Nk!DSOqEHuj)Ent?hW1->>)^iZ z!%(7)xa0G=z`y?f^$mZ|%HX{OuhQZrf7AI@RM?&dr<@RiV(P>$=0@_DDD0+Ku>H_} z?nJ&f4GlDJVQKs9z$D&dvZk4dk__f>Vq5nN^e4w51WXsjlSMeq?rLE$Y z{inF#Xurh3n;#_DuDP$~ZdSS5XZU3*r}Y{jPmG0*wV}WKcP9%6{>*waT$Awa0wO*x zGH$8CKu}vCl`3I91-U^&wSJ%eZ*AQ6Y2tcrXTgbkl&A!3(6E3ITDrY4?o$xlK2mIhMUeh zHvd%>-Ot;L2v5J7{>}H|lJS6cr`sGj2nNl+C%;XT{&(ASb%YNH%&Kw>cQP}Bqp%CPU0r= zrb-|e;@Eo+?s5In9vpFQmtWE>x7;sEj9zz7cUNN0&MMG5qOM&WVkPg&;6QDIILPHV zYw8BgZbjjHfF(kn>$-k*p)A}mL-2=v4a>M?gb$ zb^JQLCGhW!ZQj8c=KIpb4+sud=i1tVL=U#aKdv031dFLb_b(o^L4%{X@oh5+ICD4oxrbays>suz^XM$XD!YNDsHri zI+Ky@ZDThKtQ_i8_Lv$POVVB=+O_6Qvdj8;(rl={y4)s0cPd>Mmo65JM(lR_b%`(U z^?Q|FPS`FaTslkhx?D50S(dDdio`7vbOvP{gN`9k>2)615o4SMPI>J&4d^ts%gO1# zNm#P+bc}y&YN&tA^xlmNt~{wQA<27R!|CTh&Bn`!hwKbsZ{e;3eb;!A;u#GBzahet z{V!MCMv5!vkR6<5@r?AVA)s|&UbtvfO-YXjbGqiT{NR>qXuAT*@B*S{H|yH6g`Bya zCScFF94rH^>PVCqJS~o2inwD}e97+7TSxd`rNJ`kf@V%C;AMSBz+kIu{0;OATk*A0 z^?rhGid7Tmmj12xY66;J$e~SY9bnBBDOMoRUTH-FBIN-$IOqlAemRlY`V5CSQ^fzQGup)7+3jze_SEAl-u zl;6ud37+6R(pXKgT_AY_IL;qneSyGN9k*3s3jrm?g{;M8VkYQZEaE;-;g!}aiOs%8 z?_p0aEo7Efo#MO+%>Z}0{mG++P@K}s8s`M-@efe2FCENsVsa8l5m#lv1lzrAfbCky zW@)|5YbKp0R-Gbvd1y?JPwl~B>N`QK@IfF5^S-#~5)<*IRsC|~8%Iyijk@V>?#s+K zr-!!USnm{={Oyi4rSA?#Z`r|cR&I?tX+#__bTsRDU5_I+s=5cA!%(Uy3OY z5!0w9`}X^t{|=B>{qFXy>Y9ecdMHk7-FaDS?%&{4flNluTJ>&WU#C1*pBM%%&joB? z;Us!px6ub`#xo9bI0YM>a(?H3))&81oJ6}ue+3OhscM3})G zE&;<~|MX5y68L>jQdiiECKhkNR#88FK6HoaJSl#Jr|uXfDp!yypXF~Zx-TU*m|QSb z{vlBUd-kX31w(aFU9fI_ke1DqAFrG>mIRfk>K4jCH> zE;Q#fVmV0|XUG0|{t-=0%zw}bBN^F)!N0pw21VN7CZs{IJeRXU8G`Jx7{px59E7Pr z=TJW*L7P@j8}|#|AoO#z)-$Uj9Gq2Op^PL*-P|`k%u}I+#m|P4oOhS7p6x~p&bnuy9g1;&C86h!tib@|$zpM=1jQ!vdX zwZapK6#3bJvDXZSHMusUAKps*3PT-bHWp`!T#qanHq1zmiu{hUMlWn8wi|wCPLekO zg{M#nWS(O)@13J6(a)PPYkv*ZbYy}(;tJ-OFQ{%fDYL0R6a)7PRnX>)*+4ouK`pX zxmUw?dOY$K=~n7EMNEbK=^;1MaS3T}6AwD=OEY|D?kwCO{w$K%lYX(dNCq5}R+`4t`}44>|N@z``odqX2MecyX%_M@Fi_0c?4 zYO~)T!V=#`j2#_(XnCNSGblehYewTW;ReJ05Hi62+y207hj`JvH*yBTf%^pAV6k-V z#S0+F)AK~q*=a~9$ZgJc19(?-D=szo?FOgFG~@2pgH+@>tzzJlCZ4vB^_CeqQc?Iu zXiA{GY#3#pSgJ{mvl)Hk8q!g-t_qE`L=8S%Iv=q<$34aY{*fiipCZQGN`FStA=ofZ z1g6nK`CUA5%Y*39#^j*cXGI!v$yJ3$3uXuI12>!$IXQz^_J12n4d*-R{w-Dm+Yq?E zzul}SRob6;JW4)g-w((Zp&eNS?cpp(#=0lDC|CJkMY(Ra{vVp&J)Y_R|NnoLBoswX zIjoab$tmS*t0YNLR3a=?l90pL*dawaI3$X4SdvuEA?M9`&Lf98ZkSVMhMAqW@7|xw z@Au#S-1Cp;{qcO<@3;H)3KyLlk+83M6~1d>{qm)HC%jIWd?F9{7yC1T;x`1?jy~_O z==qW{hPelxksR4mCylo_8|_|fxjO{LHRj4+fQcS#>zH4OI1~q*OyHaaY0|RzJ?~f4e15)4{;ucCus7JUw zlM>LnyLI1!yPUEpc!9$%fOlgZjgtszEm;w_b9NavuHdux0F^ z$dkX4$TE)#ftZK7T+NYwH2ci_g*dxZ6Fz|KjD==|T%C^@+ms*Hij+oOq(Hl(^$qCD z6a$EV-2mZ*#It1YAslowNTha-pz$Tb3a*`&OU`Kdq9056bpdUD-RO%+>~}ABPQxgR z@ZZkB7uiNnESMR4sv&Eh%MrXBB1idx{F%dz)oD5M>Q-Np!rkP+7@#yy;y|be>l(X_ zi+aoanW$76xY_t3+%kdV8Wfe)F?mKp)h`46i9*gXPEzx03eA zT$al8xni*J>Aqq|zt^zr*04eyWSug>UvO&V!}5|Tu3-BJ<_tj4+1yg`hSJh$dyI0e zJ$Fs6GBZ~zX~V4yCz*~v#CN#?Hk*IFb{Ed6pW3|puLtmR3wtu+qQfgpy#_~{L~ z_fb3SRo-S$+CzSGTPg25IXvetf85u;f3>enKH$keGkfucEMFkY z^Im8f)hDY6^10Ab-&w6Trfb%cicT+Yvq^B*{S_r4sFA){)yNr2dIY&T6YAN{yXIZL z-1C0(2ym9u>9Lkgvwey(d&^zK_w%$qH#2`r?7Nky>y6CYSxWC^nV|~y=5It9H}V7a z%tfBRJ5KTW7iT|HjeW)lMi=9077&j`@GDAAaC*{nd2jcf1%CtUvS_98cu~7(V=7+c zH#dt0PTjaxN#5BkXMa*E${1?0vKXenGS=l6Pq_1P-LJBRJ+%Ff{1)a~9lqOiOwAM% zr96@b35*Gzq+N;f72NPY6b7ek-OtUQffsG zW^7kMbgVM%z>Gj}_$tm?GSv!b@7Hc?SFTutzBsj30g!n%X!=Gfz}OgVM< zbkB0hl7+ckZFqW`1atlgq`1!Qr*DX6Rm^NsrDtBl*TJB=g$r%^v--C`Qh&lwPY+#( zL^GPiyN_l&Y1f^7`LeXd(Eh&YU^d_%c^ZAJN9+WqNj_{lug806C>N=Lb#69##Om1F z?udOOSi|2TUN*mzMlEKq>PC4_k?UfDckJm$-F5Cq+2gEv4HmM&$vWB1oMFY4En}R2 zLO2d_Y=j|&OkgN_w$UM@GH`y=*eHN4x$45OSMPlq>K=qjLha9t<~10rvmkdRH=?}$ z!nhFGCA5{a}o@K!fD4v8C(nO5yvWI`Fm#$=u$&Mq+ zat`^P4F6D*0+lJ~$KgKn`6)|ix{a17vG6TJlS z7oU}343=J5LNkqLYM~RsQ>9+%kd(k?!TatU^euHM0AksN~12ldc`=)iV!Tt2_o`)}PSNK0rnw zY-vXj#7JLn^zz-t2RpG*nl`n5*Cn$LxNNIF1neRW$F_e_2361|9;VzTO= zYBCf@*6NCUN$1$WJgfMUevlaoVT;~APOeI2JOwOB-+YezLU`^W9_o+G*kaDYyy*(~w@~k|~b(QPtB?DlIp_aB(rj`$g%CSro9*9hZBJQY| zFre-53R^H?Ode^#h+1$3UA4;BUuYQ$Id?>p(emCaJtEC2niK8-9+fo1T_9(SYHW=R z^`^UgM(@&qXuzgD_^X89>1ignrfbK{M(L^BasA`n(<+aLWLf09GAweG`YPn#mFW-h zbh_xkmWjRuwp1c=*%~~9k}$umKg&Fp$v=|_&GAXdA3ugFv*!QxxrzSVn$}f&JD5xO zruS^+E%_Qs9|h)k@RDxgYS`qj>jjC`x7Vd)z?^ZyttWP94=`6A;$B#+9^>hi>3*lp z%95V-gDcg5mu77URu3Oj0IrFw`dDKGW}Fe*<7FouZ2D&@&}P%3Ix_M9XVkHA?O^1u zkrz*y=HhwNI=YgSQ1^e?6UY4{CU15sCv2U;X_H&GbMq%0w+G7nq{>Wrn*CA5LtlBv zx5y9DLH8Fr+j1AwR!WL-HRja%J9j#NjQATje5Mv|IMI`#QkH6s z^nbQ)c3>wt!R2997qblb9Il^Up0S92*pLj`wEgfE{o^FX7D8F?^-`J&7i0G<-!bpX z#(Sr=sR5O#cv#Y%@UL}31j2YRLjU+}<3xF_Aarz{W=7E$%H;o0egg>>A$XplUxfYg zNyX5e0IjnW)0wi*n5pmx@k5I61IrJ7P~A91L7kkPoO>A;#Jh(@tBn&rUo3E#>^prO z>OKK|(5MItv%3YVls}U>mn&Mo_l_zDAqccI%8NX zbg*iE&$^UZ;u_>9j@?>s>?`iBo7(gGEodAeoevs~Ap}LhDr)y?lWL<#;;Xj+yNo?A zN^PPZtEX_cC3c5@TUQ1in1a)XE-frh_QJZG3Mq<_16lcwz^m%;HyvV1%bV1Of8yMl z&4H5OQLtns%fWd!ZhBc#vT6T9)$aSKE5MDP{+ao?mJI7*Br-LJZHFjiaM<#3HUa-J zTw{RWPEySe%z5c|^3(p!-6&&g?PP@U5lMoc7S6KIbR}eaMlBx@S2$}bhhmGb=CzyVx&qAni0$(D^<&PX3om5k}sHqVa#@@@AG_Qxk;*0Sq zwoP-9IIZbwWpIJR92fCu2f;{Q|NOFHxq}W>B7Y!(tjcXyJoE2Z;PjP1tHW|VT5uk#y?Rn zOqiH^acsjCDBBr%lCsnw@uP%%O+Y$IYNS^8sV_ih4mE0cnxt*jU#e?nrCN|^MdI#A zaKK-z(JILN%w3fyq-zhN)KK?o4n9?wN6*>)0Wdbd|JF>&-YGn_HC^6l0+b;5WZ~vi z+<8+ZH%vPHorCBzZqaMt$0e}664xI)FPt83B&Tg7a}N-~jgiF+ES}#W{{y)VmsGP` zcraI$Z+xlhDiNi>dzqjv^Kz$BA?|XWGOQa&W}Z!)C=>5~IaHOBSDcluy{3Behe^SW zA8ay-k9IKUYT|u5R6j@X?hvM7vu}T8o+_*#!st#jiJHRNe(OX=gO58pZe~0felMMN z??4<)#P!8pK&_62-~6HN)Rzy6g7rkCP?t@M^<6I4%ytEGx|xW z>KftEE(pm?3yhM0NpoZs7q`82P69MR-3Zr*6Nh*=ieuax9Q;JzoV&4~?0H3<`=`TJ zsn)kP<-SdUl<$0Ebf!u-YR+|QT=TSl!M$Qm&9k>+D#RCH&Z9jo#^vj3wA>^1Jmr{A zn-q!$lDFC#_{d(H#!1(cSJ1M*0Vc7?9Nid?uSL8&NYv*c>m1NY=)HJ+^!kd(Y4PH6 zwS5CSFFxfmrf?QtALKlKmNsvu0WP>BpLaxCz@4}SUxZc%T72SWLG$tKZCf3!MEQUJUMZPaCaXut-7QATZztC_0MmCKHdet zjE%(v6qL!ljQWI2k)IE2x51fu^K7)})+>pnM9QUgk0)s!74$W9{J=SCxE7&JWOVYs zB3vmcsB)TfHfj_QJ{@(Y5xSs^DoNU#_Qm5x^?!`h?fb5di?3sA7Da$rnTj+u@KcrG z3&u|+icR##2 z>#mjvkjmHz>Z^kOaSA*+%u@dcMcCv^C}oxZnyLLl2k?bPn^FOtDEBHc!7@#LJe_SL z&Ev+{6Dkagj0|{^lLU?bdURu{zjbDjrvWwy+pP-OCq3y9W%enqJ#0vO31F=sxY`w= z;$b;_eZ=QzpU%2!E-y=b61E-ZpL%z-Z?3@EzF6`ktO;A4VN$+~` z<3fSm?_;hdeUyCsHlqoG3UX$qq7SI^Hm za*2QCkwD^k<0kYI?f#%i0QKh8!?wI|@Bd$yU-$i<=he`H)O zr7PKwy~Y%BF?e-t;IRm`^GM~h#1bU8z>3yADA~A7O$%!Msf{#YuJRF z6{_+_f>A$veE+C|gP=}=)5^4#y^JdE^Q1n0#J&Z=%&P*qf3I5p7@wv$j9nrvYKd!3 zhjJ~LPES1{+$Z&zxR9VgT)CJ}ZmYl1_DD-h@N|JGhr4^8y4#HN&x5n_f1eZHH?}6= zdz56W)rRmgZym5+u4%zvl_3VH%#1G*Q(GWIpPH&nlLky>fPb6^EU$!B zsfGulpd+!wif6~EYh`OOL93?Vyna0YaZ^Q3oGq&^Yh3k^==`a$z=u&pFxrX9zQc6& z8RmU!aDl&nb3pL>hEQVJRhd@#p#!`d{mil;=4D5m%+34QDKRLkavwZ=#;AKNT?pKu z^~|ibQ2$xXBN?)DS!%K!_WmSFm$W!z?7j5XR?GKc(3&p~BQ^S^c3JM%mFY5jZ7OZEt^oD^zE8+>yV;_S0*5NMBB;t(SmsGYQ6QB zs>zKAMFW(E(6#|iz3~pOovp> z@+w!jfC@K3*aW(t%)fv`B02~W6L;3r^hD=F?M>VxCXCe+jL-9`w`;L-_}Cjo1-6cug|&9QE`Zg?l>}-MZ&oc5w;Pa<)JF z0xBXLxFQukQ=2E-kF)f;w~SZu_RM$%@7-KSC9Lt{g=}QsId?$SJ`SbnlIiNdII@54 zI%r&V)46Cj%YL?@VpBGix@inc{P0TXd&`zoQ?pxO;;X~;n%=YG+b$u%xmb&?+K4i1 zwYM#%eE}>V+N`U2@Qy&buY*!?g`FVFvx+RVC||u*;j0gvpCK)K{6(s)DUo(|%79cg z4dtG;ab(LvxrO;5e_ddI7(zBzp%pc37c_kq0ZWhd`TM}9v=&l;N9YrG`VfrRCBVbO z8#UMV@PuYdz=t+-5&kA?EbG#sKNqyBx8xJ=9$*nD@P$~aIb$p>2ji;r&Lz+QVtGcE zL(bW;wu@ch>>x;FBrlH14ur9>hF>&3lknwE`F+*kx}TJp$S=y?d3ac#3DK>ur&#Mwjo{zXl6XOxX7p+1TFQ4NNAw7U;HlpMm0oD7NsnC6&s zDVq-(C-G~%>Wt`-7Sq)lHM-Hf+m>jl79AuNZe=&hV}G$}7(Yx7;w3%nl&#jgfZF|& zanSPM3pMoTt01`AM9xU9mM63fsZgYL8J`MjqAsbC$XG zwh{cuxD|E=C_p-GhJ>DE1AFF6)q8@BDOTUh0^5Dl!SNrbUzbLDLndB{{EL9})<{&` z`W#`@p{6{8aV>b`$v1DU-^KZp9B9&pW&)=gV~k-%Wz;J~bsDW7SwFSmI4K|XXm$Rb zgs|vb0Q^L|ozJ9OmSNxFN<)WuwRfT%Q!U&(%BKF(k&*53Mxm;6e%}=4o{pb=N99KK zhc^Ek#Z1Rdk_QSuo|cbc{g*GdJ`STf+zUBu5Gci>9tK&O%0^ysGT&09H*wZa-Z?OSz*pUU=!`agiA{jQbVjLx80%7ymtDO&T) zTEph}x}AV)_$@XHFB95D3HKX8V$(?W%ZIubc(Uk0&%~sQeU8o_CDfm4O*HHigsQE} z_E{53v;Rh0{j$v7V-^&agM6wtSLsK)wVoZ5>s(?2tBX?!p(WQX9y@4b;(#)=`X zxOW2D{NFdiJh6snWlC=7aSr;Qbbruoq%Egjc4O3@gz5Qpj;uL}mg9zrG4);0ru&-~ z0-4b`Y4N%)*Ir_jK@rCst^>cq%?ODIsFI`eW!_AP>QaGM~XBqen`%81W{0Et~_4 zHNI}rEK-l;gDY_@IZR@u{QiSDO>DK+Q#BbxMM_gTA32i5roDsK5^hJLlhq$N_WER1 zc)Xj)F)<`nR0#o55V7wM5ox0Kf7XAZr*nRd$AF6GhL+2vfq~G$hrOzxunF%^)z=L9Fah zf)$-s34$yUJ9q{qA@xhdm?v9D;G@3-zoU3Y{e?R@__UZ{%w;nmQh&i_98^g5Q!+?; zf5m5N%R>wcGtb|K*BmM5Y9X>2x_!WkIFIj+HxSt=G0eV*9n^b*VO15gs_n?LrN!Kn z2f@X4v8)dpX8n)V3uqFwL@z;h@U{_Ar@euv9`4X6V7X;W)g|TQ7f5$tJA1U!_|>n_ z*VAl+hXl!wtKlXK|3c57Q9(zC6L?Y6+{LJ!_+Dg?B<<`%$ISVt1m?g4*3R|(Kdkov z`RaP~S}37Nt0EyGRp(?VDd_v8W*jGwTiW;8-$2h&Z7x7v0zO)z_m@kKOfh}QgZV6H zb^oX;{xU_=83&#kH&ZCf?(1k~zxwfV{awZO#UdXK6N_jp@t}&YGQRq9Q4I57F4%w@ zQ7F-F7@u+=z%X$3*bFcG1v?uj(U)Z4aopA}YPhp&MiBFRf|+)0Vz-9{ZH=tJJDKW(X)W(_yUduPHQ`&f+&PPUV+ib}OS zN-alkyU=!!P%2oLO;7hKl#IdZu0Gr!1+qnYLNKq3+C=yOJ-eFUg|tDw+W0!8U3dv} zekNzdM)3PEi$k0Hv~o4m27Ye`=ai^4tfBf0$6x|=P7uFwUa_l&2b+R-unZENimxGU z)2wYEroY|Oa&tSn-C}Te)1cwo=gRkIclFLe098(D7+b(J{T-x?K&%y>GG)I@#J1F8 zNrAF-hBg@p*Yv+Ze{vofdUC{`v8O}F?pkM5dMh+SYQ+;<`3OJM#QOT)kRC#6Vkv4# zey?Z~{8pD3EQv#&;ONtS>sj%FT+o-u>5SVYuf4 z+X5xqNJ*Berz2kIZbZ zuzfHSVKQP}H+8gv*w-%Hyy?qd&2yZ_LRx)9zXr8nsffxH)&-P|yF9#SLMx=kL~-k6 zkkZmryEvq?9bblmEmA`LrD16xh{75#zws9(jly5G zW!b&qtGtP7viu>y8mrJcb9V#5XgjZ5bOAw*Z;UdD6MthtUNWNnJ9X+4d7Q_qZ$0Gv zH)2M8Zb4QtHh%JnIg>RC{I-$OC)emE`bRxu1cP_u!*d_q`=YsJQ=r@)I(i^Rs5f)}g{WYPYvXVp%CkPc0g1;d^>Sw3ILkczLsV5kTHI zRDP3i(cJ|>FDj)Tt!y&S8aoh4ZZjo+RozNZ|2^P9m$P`6ufFv`Mcvx7o~!3B@>Svo zW&+6ms*Q_xBc@rtk#4aZ%j0+IKQRs9Uo8HUpy;36dnrCz>ok^h>p!xf=U;Emgjk#*i} z54@)6zg~1q`876l*7#r`VNq3vHRn_(qy;Kgb0K?xQ?2Z0N{@UI2}t9o!0QS1sVLNn z&%)m2HvJjITv2IKx=|?zZYM>ABLKeT>C6}Ye1)@~X4K4QP> zM~gtuTxw38iOQ}b>?Am2^>05n9d&S~j*eevsjbY65HU-r=>fiwQy5YDiLE%F_I}Pv zTvhzq%=cxyrnrIwEtqpfbyp*@2 z5p&3_`8w-y9P-qJFFAb00UgX*zR8+!la2kr!w>l?Ki!7=950jD9sI^+7 zL4^PQeYJ{AnB`a8ks3F-Y72yX^zhAu|8tTWU$N!9f5bcu<(w<_!6q~~z5|~(6kV~K zGGFN2MSxdtg`VbA=V`fOc~M@BnGTfz%fj4F#Lp$^b3qCO=O9br>4}T-)O_u7&1*vV zTjmU(&o_nJIkRh;c=&Q%=9A&nwN=*ct-7o<)!8T~bl-7}UoY;Udv)X+kj7u1(Ml6u?-@hyH} z*)~J@zON5Iy2ue_EHboKhlyj)y=ACS4B`^LAu}Qx&#sFn@Y*Q;asJ0HCB>t-90|Vjzll#O z$`ZU^%dPB+#b1Vrbq6Tmdui8J6WQNlHa}P3jpS*D2vXL10KBcTc3`?W(3Zp*Zd!TLxPzAo-@?Cb__JkTNxX<+Ou^vZnkE@+J1|(k; zLwQ7-&%x8n|1l+ zMt?HeWEjCPE1k9c#hFlcO|cDFlf*!l4h7_BXdWy{ox5Qt{5BUYZB7db(STd91P2q> zGkTYZ8SSS1`!+>fHGsJkVm7>i6^_8B3{i<|d`mUQ)Ip;kB3mb{iYN0_;)}4Y(4NCn zde@avp1Fr9-?0xg26uAN`g)z_bMekKG9iz@sLkHm?*9p#{GX_-CKZl%G!ic7{dJpq zk^(I&!sNKPeJZrZP9)27B<3-isX^w0fiz^FzPio}p&{qket(&4EAsj{~`-2Q=cm}?kdhL3_|VhlCNZ?*bN zOBPfY$M&h>#s(ho{&rd?M_2!DywnjrFqdxtcsVt7=W5+MKuFzK%DVVK$p9V~0mOP- zhd(;RnkDbi;SUjHJZ|Xk6J@z9Xnb=8204^eZw=*l3tfKVEdJbE%F`OT2ihV#o*;(V z4+hJDOcd1Q_wshk=lwL_ncXk4{llJVU#q_>&&|B3Eew_7-l^&+Cig|&3>O^w=?s+^ zXe!XOZy>KIFHq}S!Iv9`zH@q5&q-Ae4iU*GTa6z!Oy5WjC`sJ*)3!a5-~=|dT{)xw z>2ntTePqA%lN8%yT(bx?Se+MTNjn#eeV(&?q0Wq_`!ZOe{NbP;9$G8BI_}GcyK

{BI|M%?cHl=b5kP-dX^{QPiWf zH0K!n6Q#ALd9Pu*noDzurs&{G-aexxV6`OTb|?8zN&iG5!nGL^{MmL(v6TAoOtdDl zU7}*bvlo_OSV}yW2qXvHT7Zx))zOc!B@b75d|jvPe3+JtkqAC3Ek-n1x*bYF*gn|! zdTcOg&HBWGs|Mw03+S48mNodLl*V?U^s!NG%_K z@AxlpwWYZ{b@RYxK`nIv8y`X<6*U&m`JJ={V^f08*gpM}D4oJ+AJihoB1MEH$~pEI z=XG4d0}ZK(G-^me+`8m8E?SW-3^zcXpPdLjn)sY{zg_LgH7U<(YwPmE8!r-|sS#ak ztj@bS2=~V)1SJKkxRDPC_X3XPT#1u>IoT7^O>Ytv94jXqzbj#B{!x6T`O}g9%@X{a zHMafco<~)>1jZ~zS;NL+b&r3TM(N3*ip3i!1SydNq(BxL)?)LXx`#t-8=i|f^))~P z5m#&D`L!IJJM2c%Uw|IJp@A(jzYdyeq37?_2D|gQm17w62H&4Qb=wkcxLT6!MPlFB z3W{j&?Yob@%D;^BI#fCAe#kv^xPajWvA7`-tKFI>9_7R-d*C2n4?7 zNbGH@4D|1G{0$NGxx%)%RkIw{u{MM$3q~Ob)E9f-ma@EGk!G8CKY8{oaFl5%uKw*Labe7QTr#E+Xiqlzv2k< z{P*n9#Rw|5db4CHK!J{Z34Q)e?lO0xcIsTI1#5BXQzY(UNy0LX=&h9iUU?Hcw)hJ zZmM2$eFJNO?o)D>+Mes9>WE1YXu}x*_^g^mX83<Sk6ogE_(`ObzcQ=fse;-El@HN|+;=5s6L3HTr6?&R`zw0b z`p4UOwI=gBgfdS&5=Ku3v0a?d-*I`$8>+p&+YhuiSfe(2d(^!$QEotPT!^YZ`J|4^ z8MnW3PGRU7gD1>t({clDjYxgYEFGV0n_JuO;QXG7VkI%xIaV|nIB;0-<<_G`!3&<9 zUvYOtC?;tJ20jXR$&`XB&%b$WnB7t<8?MLD8R>jnYvi~)14TNy(RReV*e###63hsz zkoT<**wb~RYB|zXfw^hwDmt)@P62Ibk)t9K4X8gA!`M|@B7Lo1>7`f7b!q8_Hd&Rhh79d=MgWAwGp zx9_3*ZjK17P82{j?CW|0N{Y$D$h#~^+=VDy))%VutjJ>N9pmkHD(cq2 zgez`nl9{k7b>HKzcpb0)SADSt=fXE(@{rH*Ccf)W@Xfbm9VsN~^ATwJ!K#7}n-YnQ zqN+DexUuutrKDg8eXxhM>WJ-RoIrymkd3v`1Yk(!2RnFzaNe7b+JVkLbUk2uByKL0 zJ`?57{isK-@GPLzM?j-K(^Sy6Sm-EKsZo6owCHPGd3I{@m4*fRjk?m}SX$gvm+;Od zi_05vT*m8cVC3}l9`h~+$PpK##SsPgpjQ><=@BY(vHxnT+Ha6 z&$F!Fzx7FMfyGQjp|FRrdI9-o7smh0eD{C!Pzgb`AHQK8k#r2B6HN~`6;wH17ux%{ zTc28NLv7Kwao?8Avf@?3a4DlE+71`y_LaH3uJ<8W!~sYPch&Qfq{@h$bi2$14;R?S z7CDn4FS7bCup?^SDg?~|oF>nk{pFxOmkf^R#Fmr zDmkE})3RaUnY=%YaPyc_yr`Gnqz3V$6Oo!BEve5rvhX~n3s)db38Cd7MSK9jBmZ_$qSOMSg}T5N1lAsLO$lH9FN07m zqZG8fmc~=V>#fs3ojzLUI0klLdW|CsV^7LWV=0NShUZumo}c`tfn%S&&{CeV-8((# zLoZp!qT!u@4s-IO(qsB#}M})56{9`zco8 zyMhjpC$7wjPlUZRyVolw)*B1ywpl&o1YaB*<{{ZWpgF^PotJG8e(BY^`u2IjF}7yp zU!6!%eh-nUS;n}`e=!v#XLTaDsMzrq6ydny``VtleuVm`LUJB!p>aHT`<{>gBJ)P$ zzR`Nh-f~!!L+f(l71bbWLoJG?@}4=K zx?PWh32To|-Daoj zCiP~MsWSrvZc*p*)0wwdIJJ7eAVyCW#@gn_r9=S~2>Cx-?Ny4V@(Bx6vxPO>(Esye6#g!?6_R zpTmj=hkpRW^RxcQatFmTwX(iViK0BKEl=TUT%rBP7;>4y5@x+09QJQDw2;i`&flHm z7~9hgB_2{CG=u1yib?nQSHDzYN$T$Sgk#*uKtuh8lgzI$@vJTnt3;VC_j5UI15Sh8 zTBx$GPhZQ0`RTu_{i=+?9|YH|&BO$V{`8APpGJ--)Fj1RV7^KWfvpl2SwREfDsz<; z_$?hF&O(+*H~JKz13g7B&ZePQA?Oa+MY72^vh`Ss_3$35ZPYoRQcx42UhPr&w!Ko%C%Lu_k`ij4`_F>;NpJ? z+#o!667ADxK$!PEj#XJkcB&>0l>>pk{TpXH5Y`IbjA;K&i(xwBp# zx0nob1nI@r-I?5Lu^u4ke^l!2Z(ysBTlZ(YF8kI$Fs4NMOhXL1>0v~1vV=cDZ7o~P zP-OirQ2@`Zc#mR5*u{^alw*iU_q6h{+ca2qu<|T;%OKEtR;UeW?lw*Mk7@q8C};pSYuzQ3?_Iyl-oZcBuNbA>jL8Y z^8U~^LaZ9oE}crxq&GVsrBvv`wil^19m!98UeaTTG4%BmrAQW%)_-S`qO52l{e^_ z3%klgB!(0IPbgm8u!04A|tC;W5VCUcx}?k9T2cLLMMxafF6 z{3yQEy`rs}=ZEBG%HHw!0!7bK!2JudA&cnMjdUNB^fQjvR~P#AUxO|!Uwd^ zxX#)9X8db@0L}+oVFz0n;jY45Nk;*J*T!*a&Bevv-{ate5w#u-V&RFt<(DkShD@lB zd9q8bDz#?Qddh%mKN3;0B`Z)Y1cw6IZ9QgY)s9Ct?8}9h!<6~7@6oj?YPL;xm5p{- za)ap;=UzrcvrY@`8ENtnRPci_`kEnf5K#|3V{6-=I|!*a@J7p98vIL z>%mW1-eG~Nlj9}6X0yC*Jo1Fo?vUX@b~S97Sp0yw38d-Ly|NPOORN6CHwBKkC8#T~W|49;P90m*6-IxH?Fym}spP>B@a*u<4T zzpPh7rVcE4*-dG5TBO#RJEU@rI5`$r_po(^$t%<)1v?vl5~-`=b5!Mc$UqizT%kJ&#}T zdOE5Pzxo%Yho_%?v)g-|UR_dR*0*>@M-sHx(Qe2tvx%K2`&M!QaM$Ur?`icf*d15%pn0bGgR#fkK*r1vTu zjgm5t9mKpuJpEJB;l8fr_UfW1Ynib6juIxInQ_VGzDK9dUVWt~4T2_8imOklgS=QQ zw?B;1Svw>0jcSKCY&(;|u)2&a8K0}t>$Y6?j2|rMhJ9al7XeEoK$kK*kzXWkEEj@j z9x==-V>y%WA?SDHiMpHknL^u$RGbd8RzcO}_<9IuSVBJb7&X{#%HZb$eY@U>{7z$l`t^@pH}Mb6=xm?mVX^ zuB(>#cuw9P$s^e}^cDMb@T;$fk3UTz(`ujQLam1Tc(h+=y~r<1Rqt(2K?#yPaEZ@$ z)`#pNd{8bbaxXVWtWJX4mFJ)zJX`EL&{|(#fWxy;w!#cn$Q8*?owD5dQWs{h7 zNDsJfGPTq#5{#Ktgc=5=Zv{aCBhHlIjh7#f$k4y7C5=~GMTmvm_*1KjMnB0HgV8?- zP@*I6UPPxqpc6@vo3`>MWcH#SW{sVl)WL+i#DJROjGmTK&TfmP! z6&Ax&MMpSC3Tvka)`Y>*`~k*4adJcW=!hKZq0c^k{jZb!W?{xm(pGy5z3|r{!9zv3 zGN-%glb^!MokdN7kD+R4qmIL2t2nbE`-NnnHGf{boL?qyv1Y$A@mQ89H8W89!_lLe zCnGXtMN~ekKj!3k5!N1yjy#QlET?q9e+Gfz>hu>pH$_f%-3)5MZmlvS`A$iX4Ik3% z;~^7n!rVKzD^w5Uf`@tdj7#ViVt#c$EDG?EnQv(DHv@J0&bsC@>u!9eK0JX<6C)cQ z%892l|G`{`G;twTJGte1gQh(?*>P5*kiz?$IFVgqN&ugKx5H&2WTU0NU8p6?`(`6l zE!YOTJ9K)f=$AQV_oWc`U4U!5Dm*W_zs}c05k(4=!=xtD+nW7<9%V08|nd+3mc>NL+UYcyepY;l?t>W2R`4ZCuN5O;Vi{q*8X9|Jkr8P z_`?{M%~oS$*AJn9k*Bgv^33`o`1=Ve!@tulGH5kr+hMf$)Fu4I?~z+dz`(? zds6Zo;n--MHt^;N)MgDp3YGqhmq=NXevo z6ZgX>)fSI#U90Og&Hp$V@%eP19lI>X(cgem`L&Y_gyNo9Jl-~NANB7`ESIZb8}+yg zfrq7kp+5WiFNEp2}@Dw>I|?ncRlW7Q@)g?Edxn{s;SE+j+gtc|0Fa@f9l*@#VpG zJ#FWW?o+VJ9w*ct$f>D9&AoLF5Q#pri>AEzp-D9H0Bmx&a(aW+T*QsHt!tJX8k2pan3u(`?;6f^WQq?#&f|Vq8;B_M*t!z za5midmQRcR?UEf0=2i`p(tw_z7n#9UbMt3xOJY)ET0)l@u3GE1@5bFFCZYWbW8%sa zHNk>1S3ry!>)}u7rSj7BA@$SFY=s2POyG{JU-e!tM^;qv$mX2{ zh%}nq(~2L9Zc*orJtN;+FN9anc!0=-h+y8-&Pv%|)yOY(R?OR$v_hq`%gjD{Aofb8 zp`uIjMaE$tKKg8j(4f_tC)*Zfe1R+(_FL!YLi|io73>2E8s)AJZ%q(1 zt}tI0W4;I4k(8H{el&oN&4|T&X7B#76{9jNs}8Z*&J(Dg%@uXq&*pbUdy$DBjrf?A zWaLEA_=PhjGmZBqonRkL$*%7B?U$z;u}B8*)LOh%T1<>=IpbQLley@_`hPT~2|VAE zJGeX~$}%=soVJeH&f(F+z{Lv7l>J0bRFgNe?^r7xE-k902_0a2A`JiJMtpYrLc+a< zpRzdtX)_>hv9qn%_2idzd3%m)@pH971xEP8V=Qp!2OZ+wp9;~37}{r>$OUEbw~8PB zIDiB|>|V#i9b+%w3}0Aki5sfgH9NJXg|g{dU6!5}zxpHl8RsOdr-F7aPj94I!-_1N zykB=s( zs?)4YijkuD_YwR}<;VOqKS^GR>>j98`*}?eBeO`jWMQGM>UBI%vD4ww>_!{7((^_oWzcXGl?FG`(mlRBEHZQA3dG}B@P`2m7}eQ_xx$dB6>C;FycyC znm2*iT{Kz0Zz=fT@pW@dK$sQ3ec>6etn!oS(W3qbSTA{JXgb{~mn(k74Zie?lkYL8 z5chY^68HphW77nb%t#?V6OX8Y5`4`p=HQwY1z=sH#wf^G9bKh^N4$b)llUa2W`6&wE^dp`4<84GX6ssNH;A(EmG8xlJ! z6o6_SV??X?BRVlg9z=w2NqFG+#%&CpJLsI}DH}6n*Rpsq{2AI0B46GPUlPgS0CqcZ zRY8u3An%uC!x|a#`1&r=oXUMJZX08LGg6pe<&Fx;u-Zb3K&K4e-D+Dpu3h5Xqk0Gt5^tpn(0ga_B-jw z6*2A4Axj_@WQ$y-+-`sw$ZEWr-jwp&Iaej+Hc}6YrXZ>4dNHc6WhKQxr}*P zo{8OF25;4RK#F1vj=g+&5uA8-&^b5(rpxipWkxBjSLvI7aT&%PC>Jz8TnbGeFO=NU zSOxa&Iz0|wo87{efK2{XAYmtXv5Q0a61U$(Z}&8X-qa1OWJ>0(?ui0$vm80&|-Ma)Tsvucj zke}Q{J1JsHbO{m5s+6A$mcyp^{o`-okB70#5xWu{qk~I=0`^Jl1Hrb)MU&8c!Rv;% zxbcLLV+zY7%f%yuLD8nmep+-9utn5c#}iG~qcfg|w=WO`c`ZP{3I}m+%{rs{edKVp z2}gv}S&!sY1d)`RiaHRbrI2~JT7YLphu8V>M3DAxkwv`1Jh}%qPhhR{-iR%cX-<|w z=MeMVWhF0DL9-n=(KJ&=!5s+wE)h+{y_0`B@-pQK6m&^2IYeBA_x~t%crDibjG5l> z6h^dxJzEFg*Ngd^q~X1jOC2I$ud*!El47*YAE1yCtSh#6C+jb>ofq3v2^5|>{4jBM zH9!DPlVn%s6#1qa_ZA--W1PPk|)(8e^klUvHlQi-Z*1IHf{(5!9kQRe)cP2o5SC`+nAC)0? z$f{!Z28ni5@o^h@9YjBFv99yS0<~7lZ_7|**CMG!4yjAKd~X1-zm?wg zIWP1C;qT@_9C;k>*J86KJp>=fiFk7{ust@9DI>b1bw`sFyhbsFPkrs!@EeJ|VW?(O zv#9C?@ss4F%x9KJMuKuMOu`!3%ouW+%Aed%PYa8hKrqpIi)DntF*22JhOK z+?=f%%f&5HVfO)^aS;oojCPMoMqAX+yI^Q`$FCl&vF**h#K#20v9Lvw>r)%ih*9Ij zlnJ<&FbW4Gy4B9v+mVUFU1ST&{VK^bc)l94X;a_wREgReb<~f%BI(?C^KC`L|4i}Y zpH`Y9g4q5;<&j->)y5aa*)#EzQ;h8&{O?36Tnd2p9~_;OqWb^5*^XWI&&|D|8W9y} zBh<|wH=zI_*{c@y{emr6rf8d(MV+ArdvEryz6}AEDPqy)id-j&9Q=K+QdGX$GV`43 zB0!AJ#*Jx82$}s+MO;PI_t3txK9z(9wf9-JSutVXkO!B{hBNi2$TlZ~?L_+|i#Qn zyHQ7NlyWa9Q1DqSaq#Ik3y>C36E5flUs=4BpzQ+lVr|o_Bmgye&)!i{Z2pD~)kNdG z)xlI8TZ;b&6VH+;PHk3fe>=3->Ee`jRqV_4BCX^=)?1TSvu#=WJXt7wrfj?w^Jd$a z6h@P|*T5*`xNqiLNvuq;V4ui3r)uII?$BY@yS2ywB>m6#U>N{U9t_N#9(L>XB-a*n zy8D$vM6D95ojl90ptUfUHQ?@)b||u26ESy$9$t{EZ(Gz>_I95R+-XDSMad^a*1qAS zVMzxv=e*V9|7fKpM;3pM@YZrp72vr39kDr9y@nevR@=%ft2DO$Nm(O`+bj#`sdiE6 zJh{0n3rBDLa3#t`q%9>2;>dxguLhAya|#f~jQ7-RO<&FQl`h$f*dDl@$+bQ@dt~A> zCVu15s5#nvr>aX>JvXkj7XTs)- zt<*it`6-9)dHjFL3JAUaSd*8{2H`Sm+)h|EX+zs?nI9~hWPq0WOJ#p`M==jwZBjfcB5`ZLN<#yYaHUd4(cUDs4tP>;N)qSI@8awK=ZPN`Upx(5`R zb5cK?=E%&o-k?6X)q_EVDbG1|Cr%y)0i7DYtIpw5v(O7W$2muE{39-PZOpH+ok=QS z*xmMPYl16q+~GN5;7xjEiIr&JThJ~*#%5Kj=)nPQgL$uoa{k`du`*3&S(#tn(~V-6 zziw;~mtQXZFz1xtOADud6Y)@Q#*GDqnqdlal3LxAq}>gBsv|*D!NGF^Ww_x;O7&0s zO5|ZF!2=rjZE@eFQE*yJy9;H!+csgOy5y#%oa7QM>2;I*u>`ME6`;jm4~j#8p(hrx zMu?Y^bA2zoqP$EtAYUV2knh23%0B#B);MLp`dqz}a4}BundZ=ymbxKZl;+}vZ^%_` z_6DkY+uJvwpvIyg_BJaxu>o-ro>727@I<&bZBDuvImHP=S*ZBD7`dWx!Ao(_z#ZJt zpAeN6>RD!|&PP8(cQhrz8r6z(+(Z$7O1akDLg;HuwEDR=QfZVcx!jm4_| z5*4eP>kVf<`Eh<(zX4ha%y-||wNQ1<#o9LxIZIS|x)4&hW?^u2Iq7P;u9>?_`$zBm zf~Uv2IA+gT14W$`* zg^VBB!6Dnk*1<*vV_?L11Z~ypC{Jy`;1~$V74O2mbr%HIPD!++yU;3hus8G?#YvnU zr7;f~WajcQosuF8*$A3gPpI0KIhKy`F;Wb;m!gk~Qjj)@dB*Sv_~$qB5M$yZ&EM{d z3mg4gyTuNw|G6|94<#Ao(Sx#4D1){1KO7vmWh13Vg{8 z-cE?LK;rahk(D~+aDPm2?a|qmaDRG`2$zQv1eCQ?4c3ra7khIc59jIo>k55Sq-v+c4mB56A^P8lO>d(i z#9#GJQ%+oL(^G}nT%CHRfzz_g?6b!Epl~HPce;9-U8-}#dfWJq+Fa>ue*8ZhL{5r9LdGP7LS1;67(0l?TLCaBaK?zs;+40yE z>GpKWP>?J<$ctqBdh+J4S8kr4R^*(Z38;viPW=YTk#*Ss461nQdCZYuUi*X0eZrmu z!%W(%)CAwD=iwb2asro7gAvk1C#EFA7yK&*``LIsv(K!$G61F|Wy7zt490G43TTSo zZ7MN5DcfK2OF5o_HKkeQO72Uq$BifXdauJ}$>S{7C*Ec0k=4LO_)a#|#iW;_(tO+m zw5*t0axTF?i-`93o2+MV8%skZ$^K-VktV6u5~9juw@C6NHAL0uPgkFKT~qo=XcY^h z2`k9r^&u>8|J;wWvQH7IooHu4ks0X3F#V>9&eG#H^4yu?q;_~;W6?YYHO%FNP9C;z z3Q}JR`nxtnx`TPu;d5`uTdRwaHiwZ36iuq1Zz5RUS#NrquuUYD%^W~Qzer{3aExE5 z3J%OICLJcH0l*?8bpMU~P`FBT!zW``%{d_?#Cx-_{0sLBclT!iSC1O}XCJ+BpRY1l1A+se2-1e=%2gVzfpb>0p5f9 zQNeA+Mi?o4{At%HG0D-`**L}40-_#$Vf?D|GBRTAHmlG1MgF48Ghy!P0oKjm-bIiK zd12LjY@u5~zaA*=CB_;eeA%0}1>gHZTRTjb?PIgYXsv{6u?QKt3Y5IfqlqMu*U_&+ zRPH<2h5wogt0kWeemau4N0PbXQ?fYBnP2GD813Eo4S47B@Kgu3;#4(qFJod3lMt=R z)?>ZXDSKP8NMcblegUhjUyCD^7PX0|O_G{u_x_<>3yIsY(%vppQ zPeTjn7Z)Xex;w-H2xk2w;PUvQ{2h^3o!DkQay2LTGtPPA*plV$u}|p2$zn4>q~%-# z;l9hQmU_Pt*Pg{TII2VV2E7dtF`@r2lK6D33AB}M8xM`lR@JR6#NY0)I#cyZyP4|$ zk7OkyIJ!;UwLnK zZiv?T+yepPm92PxbA)a(YSk!5M1Bf-%HmFMm`!2!P}ZIYml2Xut zA3CDMIKSYKY{>jUl|nz;;GO>MGwIzEep%Ee`f`HHGyYz@iE@Zit_3Gj#12UI)6s+q z=W25F8=pL4{T_-Xe}SDN3P6wvwlcMfOS+IN2-Et?i(*H6Q&23g$Yc#>0g@{PMB3R1 zt{xQ??C&)@0k&M5-$OhY;hQKe^C?sIqV~lrCR)OX$OisknSX$99MU)p~QqM*= zn^H{os+ru(|W5?9Sa)!Q;?&_)bB4?8Uh0UwDXclTg zy!LehrSl6-mXCTS@;iI`>E^S{v53HDC;&us>D2BHKukXTipT|MLHVy zj_roo1xQodI~796y;k)Q=;MhJip@&TC%HD>#~b$}B|G2^r#*k&YohT#oIJeU?g!#n z<+um-O;6<2J=g2<4oWV-6R1s=S2n;R*D!>98qZ|p*#xMLpM&T_Q<4oeAJUG}_wAGQ zAaX7hM<*b^LYA3e<r$0)7i^tsl~(V_yr`ql77GLDP7=h-%Y-dCez?N z3^Efury5xgz7Dxlzm6)e{T^R7Vm$`FJ2RE$3;&R^B>O7gAQU_UQjCVM^d3*`7@Jca za0yto&M_#pT3YXIVsm#f;0o6Ru(?N=h4#yb#mUdVCb$h6V>3cx0iRUlGBG8TExuvY z)zVoi#7qtMM+H9q&%1iu0PwLHw_`x#rS)X~W{2VD zitf;6>{E5FuyQyr*S)r;B z!BwE;Suvb0+FkIyQ#Nd-TXm2}Y$m@Y!w(!!<8<6GAB{_k+!wO+y|p;e{rIteA!X6G z?@#7gjPb^d!sXm8dJ`*cCAf;nGb&GVUya8GK79Dak_<)tJG`oRO5B&wkv1kwe|}Y7 z@Yux6#RkRB`qBM|;wk5cnLo)TToLc5RqWh>r=~2dV^(*M$&SmSkML5lXT3{#dW+U# z@Vetv?EaALaedSriB>2SPk22<%;GlLkR__?k$+}Sau0H0v_x87zyky^5@s6S8$4ME z!@EO%+c~rEubaf86f13+o8N(61%uG(zxYD|J1VdZ#p4p=#tq0*yv@G#D{ThqTg`UN zAr0Sx{m%YINwzPsk~$rK$UsLQ^h&MWd&g`vo2~2vDJFQechI#A+khZObcZ{s$_-y3 z5oeCXmS9A|tve(0Kt|=Q+=zBa8e5stK-@PL5uM0LYdn)|u;S!7_1I^MxkUU1S9y@H zP17ym?T_@C$g;VpRp_4F&XqybQyot|;Rq0G2M}K$vbjZNxJ??;>P4UAbNDEXOg}VY z8V0W0^l+{s09_uw#b(aL8Dec`uwRtsdEAmVYu^oD+W=m`6X>c48XblUlq7aJ&D=Ub1ZhzZeeq2c~5 zO1>Ss@LSTKV?`G>%qLcxRWv6*iKR@i}`#x~s&LX>~0>fw;btO;lF83QB@8l8c;lX%Twvxdlk zhhPu~>8{7v55IN#Wpr=kQ1xKq4R@5!4qj%eB?|RzIcvoyFRP@uxBdEx@BXVU|Nhyg z(iS$kqhm7U?BPGR4l<+!6*k0i47O@PWOSIbL5*DGcb@=$T<$mt6LxXhH1s)RA1g~R zgtYSFr_YEQ(%P2Fcd+(1SpVJ7aq(p7G=sJ+LD&8HmTBy3plVA}$zdA0SK(4R2OA{VwI;(%bm7JkKJKIQZwT<{KkfzX zh*!%VBfaA$*Ui!7UCIPy8fPnU*oSi}Y)O@Qo)A4>!fy~nrq8eBytMRf0DW}sVIr~` zL8bU?FM1xQ`lZP&D&U>eN8_|%luE-xm4yfU%iJLiySPJVJvgH4QR6R}uuJ!r|8*LK z6=na&>pzBMmf@);j0?@r!i$ob@{CdGkZwHH4+^J#@_+OKgTAKBYR2uO3Q~((0q@;q zLYt#CM{%;pd5?#~rUXV&$pVZFB6=k6en5HL1kTrXE#7?-l(m(=h0yH>L@$KyE;gLC z4p)roeUm(}x=1vXMx}c}Zm!oBHVRG9dS@s4FdU5Js&ZnM=kiw|8TtW0s ztd0u=Cg#6HyonkX1#Pr5VW{;L#b~)R?`%cWhI{A3;v<^9qmMmtj*H{8-yh zLF|F&%>e;+H{P}T!viV?$BQCIL#-H(ce>P;D_ny(SB8xwMh+XeacbaSni_&GQDR)t z_0Uh^T#>uPM~Z{5fjV~uW`v*5C*ZC?h*aMDP*IFJ*;O_g=GXn#wbU&+U@~#gW{nXu z+i?AqM6zW8u$0Bc%cm8ud} zn!VcS<^7x}ZAOU8UBMnSLYMLQ(lq~=?aF3lr4U669dmmVs)c<^;)<^a*Xg?Sz-RBV z#1}=JeG97|yxdq44GD{29A;n?h!33aG_SLSc}ZDrm%PI$W|iE8?8wmEaLrS&5~j4L zL?qRMU`X;~d@l=wZ>Zn@aS%j{=(w=?ZV9(1(Qpwcd)pei!^oj{YxiGB@F4d&!E$}u z#wF38xIuax@p{Ee+dJ=DxWBunF{bM4?Z6ZtlS^fCHohI<8`!!Nv-3MLe$l%~3^mpN z`v1x1T4)k)tbh7FqXnt^K;iUcG>S^96BbeC_lZCUo6EE`3?Le>a|Gc8WT+z^LcxV;#z=sVvjaatnEv75Pw^ zRuN*r=(&uCUh#7WakWPN2)D1p%WQB&PMJw`Jg89nKWvfGIm65N8pF6I+#Sdz4)?jO#wYeg<^eMvD(-nreea5OxhpNJ{ znyXhA3UB|kxGJyF37dy@>$*Ma(Ku`JQx9j-A14_Q+Bon^^f)tdZzG3cXGXSsW1LWU zrFjRo1(AE>IiKyzD|Yue{aq%6un*vK_!*S7%gIhZcCd=n zKUDrm@l97KfqwJ~I5}E?U`8XE?=_y{dXL!thOzN~*W!Dh;||Z8Q+IzXmyQ{B$qoKe zmIgIjV1Bt-?g-ViJ$BhlA4->J_qF@2f_uFdp}MjyioiHuA195yK=E zdWTU{%AMA17Efkl4~ylO%>s{(oyBhrI7YM9LPcB*81v}9Gl|rE$=M84E|WGs7@DuC z5V&@vnMgAW@B_7zT5GyBDSH?&MXi<&|Gjkl5HEQj znz%WwW$n2&s_RLz89`l({|jk^B7qP*Jt>bN~&bZQ*+%lUr@jmU1 z>)oO^tQb9F&NY+Q(6+B;re~%y?2ti*YEx&L*N-m^_msLt(!`s2(D_g0O|>Y&>cIs@ zSpm9i3sUqUV)u{ur8mQXh~S~MAl=hVm+4E5c4Y$iGDs*ihfCC|Q2gt)CRtu;nL{c3 z4V19iCkp7KH8`-L&9w-a4l`kt@BfAT7hzb+I2uv>@66cQ`viUp>&}gZ;K!=-F}Yna zSKFjbFx#{j0=m+rnol@)7H1vgY)rv7&0d-l{ zjUv~>Yhm!6W8$P&h%m(azDWebRtKCnLl32!2+tN$EeI#kj&@X;g@fU*gTp2vwepsU z;TS@#T{gdW^RgFPWXInRpF)P7G2+MW9bLC$tmM$^FG$wqe%5wr1S!I1GnwyfVh)qH?@*S@leh@S`Ym_VpwDZTmnY0-zKseTM=`&Y z8N#FO1CdDIs&{17<_l|Iu5enYyhCP{Gdn4oN*%!_A*j95PKZwDe!@PWi>>HT;cVnt zRItHnYqDi8pZR^rMa>O-%SHNYy$>4ebiFdIbo+bQmG2!0U;{%$Es5{H=JO?$m z!A{2hRoLDp(N60)_&5XQw8u7Y3pCQ z*68}C`CQn-Q2RU~O{kGr_1^L!{_=RpZ=szHMcF&%^mhXV^zG;M)O2Yo3KlWlazFyzj6_C2|@Ij`3tol^3dkWLfkTdvT zZCu>N4ciy7t85<;_niCarw_=RXOm9u$w(z%zX6F0g8qeU@q!E6IEfurV z9+uGxvpTMRr6mHFC&F*?9fFO#7M_}FVqXX(Onnx<*RTke*7Tp0@)O+mgaPKDTe_U@ z`u{v@#vT5of3JVicjlAp<3+>rlwnI0g=1=mXyL1b1l|kiXfFK|1sExT0+d!k<=y3w zQ#)5LpVI->QL>Lxtj)BTt>u>mXH>*>yls*aC{}u1CQNq<^`Ra9C8M2}SEgGa&RtUX+txZy}5FJx?O<&M82WaUnjp|yL1Y}{OHwkTJg@J z9_v?7i!hLa6yeJ6ddOBvq>^_# z$EN!&nxf^Inff|nA*zGYUw@D#M{p1Svt)XZ3zpt-edY=r9Ca!;;#SjTTw+I+3=8ws z1vj?BX+XHl9(yE~opND0Ekchj2YS>8O>Kr~p6A`lAT)l#-h+0^(JU(3#6_QvV|8CK zXj|}ki@vbw%M&Q94+i0~OmSZTe8XKDAmc_!XMlT}%JRVVSL%p=Bcj3HAMJvoCT}e> z#_IwF)n9vIr&(dNJ6>)IL(bh$Ex-NTL`CvL!K=X}(cd&y{IGvIJROemC`4z9;kWRc zc;La!68 zgf=kFs$S@8vwW}F8JDiAa9cN9kq-^lAVBBhVlQex!Z@M=Y%@Ac{a-`+Tfs+3+c%o_ z0t`aj@O$|2_oZJ?WA^6%efJ#@33WmsOov^J>9Ix*xU1WidiE00^%S(bf%Uau#pJAl z@iNy3RY-rJ1MU7~@Et+iA?g&fALH)M^~ZL{xGM8s94%oV_`4df!@ZEhD)w=Zzfya^ zB%6B&bjm<~BmsoCQ|NEuSU9JLjsF z;~Bu^yV9CdB(Vx}w9k(q_PI`y!n0P@(rkTFh^YJmZuV$DBxz~+G=~bjod2EV^*2CY z;TqpXs292XhjY9uCp`kxU6x8b#`w90*vjQF$b(E1#!Kp4H`bW$pO*=}QpsM}!}+6F z&a{0^lqj!9hN+SR-2OE^w1Jajp3xx%(BrA1>I??s*s4buhHwRE(ha|O7wf6Hv}cgo z#9D1^vg+TIfUNWz4nW=JaP+V%3QO%UmJ6-+`)6Bn7H`+kL6k>NDYLf-uo?|DX8n`| z{!@-47P@?v_xB$A?_bW>L)7b%3si+D&1W1=_OQFh>vj5bGR)VoJLKL<_kY>B z_DA}*%QK70yMevnK;4aLDB?d#rIbQ$@FpU|Idoi?Vh!~c#&nJ+F}8)wrD{B{ufFPK zif#c*>=9jdEP?qaEGN5hX5PsRPyO|C9sc7|O-swPdDjfwfdYE_}-JkkS9t8^>r zj#kN*;(iw9v(*@v&8kR?El_M^VQ^HPy~*mngvr)et2OzsWBmfgD)4N!s;x5rha?P2 zUP&Kb%WpAKvxpo1)*IMrog>tW;-@AQqg`_f^Tg8C{XQ%IeZF}Y1SspmydR?)bu{M2 z*zm*8seU&T%-AifC$9@3E78q%Egh>-az$^1zU6X_cF8FR5Pa=x89sPqFQ?JD-ALg(C zYF?r0KW{$rsaNR{Di#kJ&=Zr*tl<4aE4 zwQhP9<0GaT%bC6j?*xg>w0_+WT79%52foS^PTHMb{I3mM8f0C_q?|yy-XhH1zd*Av z1#phDkiL+PM%Qo~yw^KW&E|{(ATtnKMgT-RHB?B=_hRKa=>6?$6E7JQ6KTGf8U;iW zQ!ZFS;?O9uCWEA237KyWk>o(m3YKrGk(7&CJof)kqA!V-6`aV#4y-!v7OBZO5w}n_ z9=*L{bHp&p+}-CD1k?u_ba2^}s*s`z@Dp-udMLhYdjo<@GkH2H{fGy9J+*#OxQ%Go z&7Dtov2YS9%&ncw&&2E!ST%saGu%J@3g0=SW-mj4wFkl3%~lANYn5XT(dV!B-+#ua zsGu&%VF2DCs(=+cJte}B!nb}!>3yNXV?8k2^G$nA<3op@;JMrH*ICwIOEc^XU98hj zXGDZ)3Dg)jCZ1GQS!{8|8F(u+e8Fqn3UCD#YOS6suaeFu2&Zba8TMm+Z_>Dm^7TQ6+1f?OdFN!)_4f!CbC!hT6J&;M+Q071I@PpOz z!zRS`2+s!#iAvZJdLb2zb+ihy6y4nfmu`L()@QTEP;YyBKYRzT7u(+aUjLpLgtQ+A z#DyP!@*o-x2)#Xhu^{powV>sA=i~f0EsIqlQ<6QENp=d1K;OM1L*;3mPQmW#ERQqF zcc`&%+jWwr8&mh+LNzOeU>CX5rd(_i!%+APy8d0I9=q`0hFeh=YE~C@ttqD7WnxP& zW9(N=zJ+*~Bp4jF(3M7%We6iVdW7(%>spd|-PGtGKN@i9pS{>_{T5xs?29&+WGKeB z*HM}CaV-33tWu45{t6LEaSe-`%?M!A1Nmt`${@^9tM6YREJm;INZecI-d3N5=q zL#=nNybAJaFAFmn?$Wk4tYU%8G zx(0v7n{7bxdoIEyxBuOkKWi!Z=^*J+bG8fIOUomAAgqeJAM%UTcQw7}D}Jg*mqHbQLh<(fW=+3Q zm^{wDS;UZV=y}cDD$L%)W5f)THvGRG0?ghqO0a?y?yC8Hk!{{OSVpKhgNmD%hLANkM~M z5}F4mTw*D~h=KeTuA3s0fY>csys20L=q0IHu#G5?i@N#0E)H;D6z2s&8PAI1b)xDc zRIHe95)P#7nK}*9UuvOu%|rX`H_%ww)n+vydhlh$_fs1X>@9o>G+sn(QYLMGzZv0r z?f3t$S#UHbAv~C$nU7bEvn@PbH3X*JvJ^OTfZvxw+3SrR1s00`IG| zUGMK=&MML<>m{Cu+;yD7{owSNOK+eTD(**u@KCbNJSZQGi>$lsgT>j9n#`bguOPY= zURD7=tez5s!@skQw4yT)UPWG^Z+5-}cX1VUs>F|QC6@e<)KAMw49SJb!!xb5|Ksws zE6%S5Z;nkD88 zehZQsV|R1G`uyZ^md~~?D7P8l-af%eI{dvutjk|3#8u~~!&?-a2JVeD>lt^^xHPO@ z^xX4VX(fUEml(iih~L{P2eN!=GLsYMFtdeUHeR#r>9tPav7e?34K@5HvG4wUQC&Me z7f-=pflS1+koU^@;dB8g@q}bslNr!?p>LNA?(Ru?bI0FZW8tk2bJXA1Rf6W)qsD?O z657kihEHIZvWkm?-y$W$HIYBXg2XDC*mjfj&lhN-!E+*^qHi5j^QLHO@|hi|(s*&c z%m0?!fnDpN?93kXsRw_ahs6BIcKhK#96E9Dg!7s$&CRs``eJ8lus#oYPHt(g9FnTo zBm64ZpP995%^OvJ3Su^aSoHXG68DO8ypkPEV_)*uY&BfVyg6rWvbvEf`I#I2f{iTD|qx@)sPtSwzl)Ip%dL$>#@ebZ-Mer%I z7_hP}`WoaTApDq!7pBs*-e?vBD48rlNy*0SL}7-_58u%mPf5kKN9~=lAz!qqjLb#O z#B6AW<6ti<$j3scQd*(khNbst>&%q-d4C+<#ePdaalrPiZ=JrvZ+lvFhL2{@ukV-; zTT1ZQRlq);o&0Lc*Mqa>Lpwb8Oog8l2ShDTaN$8~VPE)Q1Xr=h7_(y3Ac_p?3wB*d zt`^sh=6oxmr<|?FmYe{cN)nvgjlZB!?2Q(G9A_f7SCs%9t_b(0y4+*m#I2BMO)G$n zd$bgg8M=5|G+4f(9qau(d}86-vd8|O47#kjf>yL^DHb!>WdU(qklSrEZF!u?5>NM& zha3_eRiE+=y4=1*4B{TX#478>j!!Mb(lW>imXVA&Vw(p-QkJlZE*H#rZrUtM$Y$AMAc(uA zr!_LYn>U7phbmBx2$SnpS?08zqMZ5m!^CGY?BS(uBb9IaW z1u>$!TQ@8;*c#GWmv+kiD2YdtFSshi$^XjumRQv|-(t2H8rl03(HDl^G8gVgiqm6ahW)(6<)J}ByG_7B8fBpJDz`3SuYtW6d6EhMqaJu$f>;hg zj&2DGUo<%Z*8^gMmPPsk@W+lV7DEEB1^2!JyVHr@W1U`f$&H9t5uXDCA_sp-%rUJs z{R!4%mQ-ZhELn*AttK5I&BmJTS9p6+ECYr~&5VbPJWvr|-;|T=lp)_?9c?y>jxpE7 zywHD;5Sv9tWMHPH=E>GNoaty$6pgFp1COz#=zav=Qs;c(_qy`$$x9R{cQc=mFH_jT zlrT+SZy&v-mrjY}JnX5JhOegZZ$}w&PPTJiYeVPr`1)%@6OP{a+dg>Ln0{X^SHg4c zeuhlavVg?#?=ssLJ?>8bvl^}aUdt2kRr@fL(m*N%yb*d6F+T*#4OC7EYF&=YmMD|1?7eqoiqHh38j5FmU);)O{uXw3l2@d#{& zKrGf;=ixSWJuv9UwJP}QqjUE;-u^mveh!f_Uns!h#i4@ z*83mL(u8;c*SuCGnoy*F{vQoutS;e<-{=JAhrx-7H`r%5x*HZkM%>8Gl}Bn}osPgA zwt#nK?j_O68@A;^RQ8h<7wPpH`O{ZNBu>%Zq_U4dqTgQJIYH`hM%BgGjNx5&XKaS$ z@!N?P2bY4{lJq&xUjTZZP|IFVI&XYKnv8H98m2~+KqE_W{V^Ve3%xs0nZu^(^-iTO zIvlx|60e1xH1s&zlwn*wg`xY7FwCwJi2PjJRjC1mL7R6FK$rsG;NBj={Nt5?fc?|p z#0zJe&N;4>L?u0=>!*gdRs5ua(9f8$_}WSgPK{AoGu7wG%C8l_A5@?mda^spO-KrX zcC0icyp4oPi!*Uj49=#L4^`byQWnB5jPM>m;}+41k*N(v1vpSCT_8<4?|aMTLe%gl z$&T8oYXKuKAGEB#@3iE6>(IpiAcSCQDnCu4BVb3sqN~yJr3Obh54W+Kyn!Xnw=T~x z`y+;HZ?}h7=BzL2&0h8O7;8ezLF>_!)o5=Eg@2_A*c}X=75?3Q`Vg`CeF69#U81*e zzhlHf>)S@%6}LgeocVo7vNbfjZcA;`b0W@PC+fLv&Q-)|BS%=vX@ix8vY_cn3&gK_ zHnyL?!>9)=k1php3#)x#*%%pWO z6ggI<2gg&QfIl7aBD8;cIC$N3KN;qZHh#nQKY}m$vz`6dHJ{CODnOVrvXb%QJ2%=b z&C7hq$Nf4rZoUY0R2s=EC-Aa=@mE~k2}PWnUdC_3xx4yFex4vS9UAjKbO%GBtfo9{ zP?YskBCHFVL-ED<7*#ybw&ag2YSJsv4dhcDjp|K17>jXk ztyL-%g_uFx|*Nj*Ge#sv#p)9vH?vDga)iRq>`_}&_UmNr;ck|tfGBMJc zf~t0B%aO}Xp{uU_H8E#&XHDPlxugZ0GIcC|Bye3f5DMY|tC~~H!w|TWRl#;TM`oF! z>NDkk-PfzAbXxJc;c*k!%mR3DieLHAc=3@1MDuSM_77Oo0WoMD3v~WkBasxGPyN-c zv;PA3;)&nw=jPJyJKfslk^1hg{{9O`OP$(u_Up~tyE@FbUOV3nyMA=p*Xdv7as6X$ z7biT5$RrFI9VV#^42X!Ro77&mB7vBsY%6+ic9ch+_eb&p}P>#Z@g0JfOVFfl1fq}$!V-osf3Uu=X^?~EQF06 zNXYq=RM-+Fhb&P}o5@)YbKD#^3}eI0%+A}-@B1h0vG?ooxbN$}uIKfJnPpphEIxQ_ z68po>Em_cLna_1LAZ-a1lP%)4UiCZ=y3TDgB4PS2hLLlmR~eg2l&+OZb;Sm00kS&P zlAEa1c@U0A-hGH3_+1D63t!;hTLq&yFqifbyPtLi!;a4E6CR#6DoqJe<#aglfGfaR zld_WawwdU6rp=xAt!TR>9@~4N3r6nJJc+lWH#R!P2fqG-2I_vtmYdlkhIXWzG3|0i9yA0pYg|r0#xSTFmqe1o&|4(Gw;}S(}L9OO#VBI zW(N`#UEhXnpwi|Iqs8!1#M$72*W7XxY*!DLEAzl9!2NrN%c$65A|`CwFeSob2K-id zNUk}cisV9o$@E|h4+nR)(LVe0zkjN(Cr0xmSOdl%e%%-VFW2V05%3M^X@HjkM$nGN z;0K$Rgx65h)&4ug)-N96dw^~OO*se%T7oS1EUr+Xx};h)X4tFuA(TZwwa>2L%vD!! z&-<$(cbl99?m8^kN-<-i8fq7R|E^8u8`$;HoA`cIZtloot9sUV?i^lD8ru6D8!Jj6 zBu)plO&YIi|D4~BMPCMOGB|%cC*;m^*N#2Uv|pOGrtD)Q55f5PVir^RRp*TzrB!v z>p_(>uLe`3)h6^dLh;0hzzHvRRGLpYrUv+j1^LtkjQ8aTo4c##i=}0q2IpL|3Xe;! z%zVlL!aa+R1*6&++)V02ZXqyJ-yM(V7ZMoc6-Azh-xp4`aIXa?>#H6{?~ z&pE-(Q-hmwNM#<6Mwcjqvp@3&HQxZ-7NPj_ObO5ClSs*;>h1co_V8osrWrp$aw9R~ zLYDQgm4i&`euoDeJ;4}-m9b(Q4ZRD|^?iD{n+FKEw3Can{xuV@;5rV5~+&qtQaB0;mxcj;$E5E~HvGrOY(hYx`o6kQ) z#~Zw3hHHwCJ7nEkeC-)nUpgbHnTD$-cyOk7-HJXbCBB3sSsN$bn{x&QeRkT|Dw)Gl zP{jH>6F2p*wlH{ED8U{t=RkpNq28Mf0-kmKA?*Cm{g9YH^ERefaPpttnh)ZZ@N&>- zT*}EmGf+T)xoQlD=)dJvE3z0PJ&*Yh8z*g9Yino6xgFvk|AV)ii)%+4k}rr}igH~l z^Hr>BmbSslei@_usOH6U>MW_(_}Ir(z);OQ#^XSgUH1Tmdq9nwJ=MMYOhL%=jj49T z9)@SVR3za&+_bb_!p568ddLeTcu&b58rlY7HdTJNiUpgS`mS4!9wYFc8i7Y$xu>@k z2Er3!cYn0wn9`=y*9eCmig!NuRcU0o5p-#i50+5x<878l*m-s5^!yOzrj3i>Rp{0* zW}&1FH;qNBWvVx0i5Se^|;{h7roTI9cr zG}WDf%5TIOcP~gDbj1GqY_5^QfN6~?=}|?}wAJ9b3Nj3I^c-1)!No#8GtiZ7*5thS zCdJdi=WX5rEsao(lZwf8%pmdso4%#Jv4IlQZnL+74 zo-30dPxzeXQh$tNQl>V#(nUvdqkW^e)_HDfb3w8TdS?sNebtt12(t^4Tz(_6y}CRn zZk7>R?vo%rpA?|tz%)}+-wAbhSKG%zexN1f5-UmZ=A^6Tie?F&G1*T^4+xCt(EE!| z9@@P(wkh}7t!5)GX5oFP-{ke}-Pe?ejC++@sO!jX+t%1_o!)af9lXKYrIg6M!|IE+ z=~)fDmA#d|C|p{|t@+5Q7ouF(sgxBs*D0OB%p70UR&2KPd*g4_L90#w_NwyJ-e^FR z@9?ZHsjtSRieZ99#t%9}{*6(%+VK;&e?C$<03W!x^2=CEA`;83Rn`Pk5gyKOe4WbG zL|1!gSN_QxekU+@ji7M8;I+DTyRX;Eq>&!m*N>C``#1Ysb>AYXG5pyaDO|kly)Unc zSBaI>V(;49Opj2fm_e`V7;z%tIlH!u@1W;jK~}sy(WJ&UV^oYA1z9NJ>T})&3@Xy> z?YiKj>qO4J2S+$Q9fZBF*q;-tT}fmsa%ileV&%*C&&fNLXTyy=6Mn4ti|?;_m+Q>w zdr)^x*IpSt=*d~ocW0P47WUUd#upsMjk8*ARwwXVkYq z0gorn{#{F_WCvZ#VMcqlU#&1K8%6|Bua8K3UfQJy(Y;(Og0&{+!$Z-7?df~3V_-P26z)2J(3 z|8fw&4afJWmy{g}7n!;IiD{u1DKR20;7esT4)MV^T$OJ~KXuyav2ejjk_(KOTjuAc z^fQ^=5NTLI>$P|zigoi^|H6xwISrvb{aUgQ&Z?sRKSR268OVt@)lqS9A7~dLD=g%7 zpgZ}cJE6;4)MBiuaCOnzg$osg$BDH#7R-K1MsrH@tjsy8;=sRkl#J2)a?kAyydHL2 zdddmbCHhH%hx5l(Y!h^T{BEGMNK$Lw(){aUk)Jl_^mKCPf6UNjjK8WAHM~e~dTyh& z@O^`Sp>DDmo*LlBP0yNN02{6e%=ZFbJ%#4&?+V5Lt#~-CR^_@T>@dz0xpq($*8~%m zV7zV%aF4je<27{jbPv}-_R5{rv?R#KE2~4*eD!y1HuL9i&eaE@t@cj&Xv{8g3u5&k zFO`HL`;xC(uopH2SILe!`yJAd9k3hs_VSO)rh2|+HPMf>?#BPEo(NacgULa+20}dJ ztS&-_N&AEuw41#1Z&F+#GV~1JOQK#D(VB#~_b>R>1xm``kihRWSEwH&8K{{Nen3Es zkhCzF5l{Zw1~!P;H$fPqf7hMSr=C$QQl_-@Qd@ew24yQbi?^`0+o=%ZN_7NO!E6M4ZQzziikn#m3uMFpyQCGBMS?STmSqKa_b6w1&Tqyc zXYVhLuL>Qs8k?(Gj)_)1nQT5bx=U|w-TRsR4_GH%f|{$r+}PkT-R$E0naqMT>DO+c z{E(`fqMdin-R-0$U{6(;3Jt%(14-lt%>#C07zQ{a>2v zS}h4Z9{R(>$v?Dw@BXSMM{x1O4UbK4;m%e0-*=`~fAvNir3ngWsHcb;nZ~!lDsq$x z{=J26U8RBB;V-pG01QQ^GHc7bjNI7Z19e{8p~Xatuhc`U<6SO^)bbe}v)5sSiAIVQ zFh}H@H)LwNpIoZAL_h)l(0K-ID?M+u`5}W0SUsu2ha3J6^@BZdN{jd@pXx9teB7H% z6bGx~H?$3cW+TAH+-_BSBj)$q#{9`dkc!c}aL4b?v!{jQ__3*XQ6=^sOBQ9Xh30C^ z$|C8C^vx;KF1t5gxnFA~x)Qw(J0mK|9j-%W2D$GCWigohP!ay+_Mb3?WwcMH2%OC< zFM2kZwlMsjzuR%dbL<=aiS>l3VB4=#7|?a|(J#o0SyE4Zz12rO6uG`a=(yjr%H@V{ zoe-%R1l@_M^5MF+4X;O4hmGvOfv5|s{7UvB;%zgIa;!5>9Ar=^ziKXwih zC|gba+I`kb2lc5^(K|*kT#Y-)y0}^Z?~!siTf#fQ3lm`UmGH3>mG~C|=N7@X^}}`V z6(;y+NfTc4oVj3@$fXke@qX#o_sixTwLjAs#HoZ=uzl3K?lG(%%Lfn+$!OmNJy4?9 zGli@4FSu^kY=mwO>2hn(-F)o1QZY@)Z(4d9em?lfizwV2(5RRsk*Bd9X(ci$E2zLMy=3#oL1spQXF|2^r^8c%(o@VDEN)I@(|c@@vT2E~Nu$rN)Vs`R zc7@$H^%S=i}mgMaO%<4usJmpT}Noz}(kS#rb9uC>HTP*;}9`vz9OZ3$4qg!VTN_H|Rpw zd0%0SAg#IY&m0tt+xtVWf_i;4Qti0jub%tJN zLH`Y{WW-5LvjPU7p`+zXO~34_3{WKx_$WuBbCJ%k7fEFs;##m~w4Hydz1~D6e$kKY zU=p%qKF(~f%9@Ulz3}oFW1nJPeKlJqB`e?KE8CDkcNb^+JEx1^vUaAa|J{G2UXf;o z`CRtXQ3e~p@bGr;FuId+jLq>?Ekb%PvZJep(I7JoPR51q&^F1JAAb_CDfgC*9+ zE&zV{Pd~7b-X16LRfM%ciqmI?7@cck6aW2YdBfQoVm1%gqPI*OQK|>q^B#7_pO=L9 z_rP_g-)_nJf+}#A2|oJc46#HtD!?a+T-u?!E}YDBBHbbL6Bw(z1OrvKMEhsgEpqJI z0wgMyW)V$hSV}yrs!S#W6rk9d< zT0<5+#>OCpPXSqh_064C8UhpP3H4vPG;?apiJqSNR-$N!2h!=MyCWI%7vMjD+LLCC zAPU(AsK&%XBl~jn1OyqUo=3S6yiwE91n2`Ch2`v5VrHEG{Cd_Bq@?t9Y&qVS)@jE&>z9iF&oEtONUu%3lX4IYIG9GO%LY-5VaeTp`B~ zt52O!MlHz z%6bY-Z1Zbm)vfKc)6;V@UiRs#~ozEe>B?K_W?rb8D+QTs~AqB>*!J>*D1v3!ry8G(Ph zzgFTe>S=|EadzhtpdGIpK}zpUFa4rqq%Ie3-Ap{nzznT#x_CUk#GJ&VDtu zc_VMNi=&O+o3bSMO&wA%Q1iI=4p<}mv1%fj^=II48UaX?$iv(iddrLAD9S@p#Ir0vxs7ST~+$ws-Eb z6{?rRSzar#M&!=NLS;DO%OX%?(9G|xKSE})S``xTxFFEq;*OJ4=$e+WE(u2&Y(-F{<6-Ny6P0a4}t z;?}E-9dmX{-w%P4zL;;v`@XoQ=7?Bw@1yowuE<)cT~>P+WW-L))A5@i+Yq%hLi6!fU@Mf|Nq!)Qj4?=%>`w^ja#{e_aLp29Ps}U& zHNPKzLX_RV_!eeVVmMu(ne68le#uDNg3WOYpHpqc>heo(2*7}RX1 zI>l;`JL;ud7qiqgdOG+<)99R5!wB<|Nm0~GoI9Y+R$<+yznhKq>oWt?hdwz0kpXd~K$i+9ImUnnp+Ve5}S#-2@{d29d zPP^55Ma|`Zh$v{K@2b#X!4sJvawbJsHA_B{kh-qjH1GPAszmna8~6ZSuBMG1DKNT+VXh%wQn>rXIBUN) z@y2Z0$@Mi$87p&P| z$Uw*P>Y{ixP1O;=bxTvG=TXj*&NiPt(w;&DcICI9 z?8;xc+;)EXr~iT7T4=SF%Kf4bRmz0qFVerQ?F96|0rty_7NPYPM)4ofl?|Nko`i=z zrHQ8$1luUSs-cIbw}V^YY_f?wek`8RP#5dRrttR>p2~mC5ld1a66y)N+`!-R7MuAN zu=|_KC=osfo2B>E9d*b4LYh4lrln0x7tm|PzowtKsyunx{$*cyJ4M|JHNr|I4B^}T zc-o6U>ARD&^;HUE_xkBGUx+qp+jgEKKfcJGOZlQwn^FB*yi}-SmL4({iKWaRPpJqj zU-tOpd6WEFiQ+9FImm@~nV81oh#7=`B#L&IqWHh4Kg%wASJQ6h?x;|BUbCcMS;3nO z{VlxG^V9jSzn7783kClxM`+IBvD|25d%@pO(p~G^8%!HxwLeO2>Ig7;wE^HfWRZ-gkyK4dBUWZ+2mIA1 z>&?Y`snQ%j@R4*=T3(wr<>o|Q6kDMbk)q|9d8iw4TNCVUDpsFRWQ*-3nPFD`<|;n* z3FC7Tg_-R`k%H)U%s6-G#!AoD(JP*;7cnUNC7E_>9dxwlK;X-9KNMiq-hJh;6C*tE zfDqh5i{9LBw!lRlX?f(suqtPUwpj)EF!qm%P-HR7|92YTy!76<7Pze_vkUAqa-gxPta#?Hw~`h8*Hoi(c-UYI9c)GlhM>IK*HpT3jYM#92W$w9Za z&v^N6N@iPZ>UnxsFTSWQk^#R;v`q4bGb3JooX?Zo8UxAw_6hM z)8sX?C6gs1`ErFwSnV+xK}k@xQ;k@cJ=ZxT5H8+;bN4P5(jUxs)AMZJZKN1)>rDbL zBU0&YVn)cao#97jkY@7G!CuQnw3pT$#}#C*p9aAUaC!L;>3{=xJa1vMw)!!>e;*xo zGiT-37}YvGk?!Je+l?_t&aK@H>Kf4d99v-fVh3&(Ft5)rof77-Xg>85TX0{molLeO zHV0(bH;_96&@pY5@zZAbO(ejkWcWc^Qq2(>AKxl=9EeB*=NXAvcQa0fFrc>C;SMwv zB2*J4O@8Ht+wR-8z%|BF9=SV58`<(~tuTF@)k8U+OZRNHh*F)w;$nguRtl@)yOEvpY`{-)3vsp1HWk{=1GF(vyifFLA^{2d7`pAozm|o4L*n}c_i;e zkzVk3%wv38X&A~bA@~*PHJG;eOEdIHOQEA^iJw-u(I5BHFL&tdN0}jRc0|sT%OqWc zk)JXxX;!rv_|`)k`LM(4_B@@hx*JIoYOKAqtOM4mA)44=bmztuVUb#`%roxw#wa@U(;?|+z+ z;F`~an_X`TC#^~qDLImoAl`WP3Vz6G4Xygesm*o`+!E(2r1-hDZG$^N;@4`}Ehl@PocZP+;o#M=W zUCtl+G<+)yplAIu8bj;gJESWC~DUR@4+ONbHJ@D1fb9%Fn~YAp5-D z1UH^O5*5V}H-uA!+jl=rx%p-%qdIG^!Fqt&T5O`s;w=-Y^Yqt20P2gy%4TjTE7V%0 z@TnI1im>zXzx|4A_Q2uL-q6>{Vvjz1x-4;)pT{aMzYn~=h~3Gd7JqnRQ-Ed}^3LWc zrXsyT@}N9i9O8TKiq3VlEq30^AJ-V_akW-y>?s15+1rQMNs^^g>+ApaW*uW*M#kS3 zBlNi8q+z@w#^O#n%%?)_XGeu8aNWW2};F zIiU2{G#|eFkUY!rsSY5U7N0ngZx}(Ch?8n1tP^3$6gRqWqg`4n@cThGLb5mZm0mrl z$TGKwJCTmI%eQ!`O49c{F(iNHBDjto!hC3KcJWhK?qDps`U~v7%L^lM$4QHip2vzE zi?YhDAivKhTGzZ4j&<_JNjq34(=gt&-LI${aQ5{w$B(`N7nUNG?|^zF`&ql9ZM>Q6 z+?~QKyXkf=X|7CN%n3Not{djv>g^IuJ>)ls*PSS)E)9sE-gBHl&#kI+h<$sdp6=AJ z@_}IOF<2IVfha#?s>unj!+-PHj90Xk;XOm@aL2R-3c1 zYID;KX{35W;w}L3QuP(WK8V$PRVvr#>SAY8#~uN1soZd3-~oTE2Prl+Jwp^79dwKH zU-sur_ha$7?N^61dnCFDlOo5H!IshZGv6s%(JZrl$P8<<>*;M{TOV7huSz{KIM-7P zdzWoysDj!pnqu9z5B;MqzV$(k973aqb>q3)14IiGJPUAVw7rOD0Yiv|_IG3Ds`A@j zR2@~QCr!N#ReP6E&DB!yQ)=;U)9|Pt`}!jvLVPAd;FqhVf3gB7V`}xM;z^?Ia>Om` zlJ$o`!pEfz?BL#ykmZUM{_d#JlcDDG+f%8z!ac|@4;p$FN=fu7VK>}VJT6R6|JQ~#;x2|5t5tuk(LdN$vQ>8;ec`kA#a{Rx9_r$<8m==+R77)5{EO61&m!*mC{P&Gm$?7WSDsW&XwezAB#OEVk?e z*REPKD{pcM?QAk#yj~vv@W5yUF_e3uW2Yk6@k@hqw(#85?EMAFv%5T4* z>a#L2Yo)|k53bSXoUi%iLs|-JlF$krdc5U_cSDk%CfLuzDzWgL^Q*3$Hv#*ho5b0a zL&h5gut~SEoUIs1_{W!aoL5gJyV9-7R%TY={b<%Fp6qS%7E9Y8DEJ!Xi-jKl(`i>L z#)Apzirr|H0Q=d8=M8t0zXZz{Yz^@W=UfM47YA6E!=FxmgRm(-D?U+gJ1`3s_h@{GmI+vxR+G}H^IbKNEiBP=GDCj(|-VHB#n?75nzvd}B z?5UmTxgYO@t~!VQNK#&C0>(wIX>pOVJcXVhM)Xh&(tV|3Ko&$9RDkp(+@D)ia{c$b%DUUXCpW^zrEp}JcAc&R>AArxMmr-v5p zRa)yrM+=RgigNd_a?_*%pr^i?!S*LHW3=%S13msO+jGl5IO8_o$RR4yw)o)3nDTkkil#_>VGLft*G28 zm3tth!fRrnUFHq<us@u{D4de!TYs*~Ub|MPSH z!vpp#a7>JEu37=A0k1)?oxHp|afE(nA^qS890kk5&h-k6)}F*LH^ zNOJC$VQxrLtT{_~uGK#4BqyVmqSbSw4`Q^`_IH0iF+%TZZk*)ovlRY}@W8rYJho2? zjcr0$gza0TNscD_`bUe!KW`6@5nN=#g(JyR44)sAj za*veATO{!J7XL$lQ@ARKO_1)3YfXMjy%@Z@3Mc#fX&Dwjzp5eS*JG`EeE$_Zg1CoD z?F{O}D8dh@`qFtHjX|7iZWMtP&rT9-R)$}?otTwT>;+R39TJ&P|5Wm%_BI|Vj9rhZ zq08-?$?$*;@T$j;q1K9lun(}|M5uDSAbrJPH*+-bAFWhzYW3{RoLBCn0dtNiA@>Q| zSH#upcfAyr3Uig(v;yMT-|;D4YBvn$f^sh7yf;&yfsWg;CYqgQOb~lSt#mmH&(mvi zhGI*V4879~<6*zWwmnwL7P{%fyKH^l#Ok0NO@>2|BI3eukN@eCD zMF**JH|x$NG4e2{)v#-SDr6wb#3Dq$USvp5b2@C5_W@*|LVYaP=DL09g7s5pNEEe1 z57{=&-KV9)?@DK;w$e1!KOVVccJ*L=VT}sNVpLetkAWWH+?Zl9E#c{$9d0PzkxmYG zBrzn`5?ViF-5&lP`z)>^i+w^Z3);WTBpvmHs1NHnf!f>hVDm1-%c)Ipu{N5Pj)W=9 zJT_bh^jNP;KiGUiFrSY)ovci5U>eV896};LAB5~5`rXSEF^;BimtH+SV20gQ%NxuQ`gAhvnHUJ!10@?>k3QC zCy}uuZ!nm|?F8X!Nx z`PqsTb}M{x@evA+z+Z|(+D81DF{`}Tisq^TZXY23T|M?`bd#AkQK6JMRdv|tLV!6} zdz9~_2d-D|9d01n)9q8G*XeKSo(uxGWNLj!Y<+Sd-FKW+*l1U{TFnF$h|uEAvwMhN zM{WS4!)70M`Hp?T7wT~8m=N-FIvmY{q*FO{v1-e~?_lEi*4FK}a@nIO;QeWV|J>9$ zweAJC@>61swnpbO*aLJ^HBURJ#8mYlRS%xX4S0flC+O|YBbcw6h<E<$I}D!|c(Xf=|h579BXe^~8y|y1l}J!L|cuS_>V$yNTy+O9BcL zEWih;powZfI{36oo%HdB!wW!4wkbm>hU<&<`0n>Bw&p;t}YPmD4=~dP-H{rlPe^9(u=^WBr;H#9TDwwCQQ1LE>oP=^srS-- zF!-?eUa7Co($HcohnUl3k zThxp$Sm2v=m6A>pvfg@n9}#<=oa3e>H8#Ci^;*9K!vtLvN8psW5+LHS-bi zf;(9lC#ib~{ZMLont%WFMs4`4w2t}rc{$%IVK)DUs`vg}M0wvsgj3IB`CKZ*9r@2s z=2S{$0oEujcmV_NMBQR_G2&i4x&x8~eMg;3HTg zSlzNxxzNGlh+lJt8?NBhDb~L5c<-6LMV46$Vq9M}^kh_xpk2lEcSA zMDg>ul&|>5ic}YTHioL0gX#2&b@rhQ_5L2vgO8Fg91pe?f{K`>-YU!Qktd*dquiq4psY#VP0On$X1R=X-zeFnNDkG)Q!xrqxt)sd})$brYDTzc`$a%j0@og@nq ze0(44b#odGPW=~?uS6Jo8=Uve(G&RwyZZY{ipxJ%>P^YMmf9`qz2wxtJl?Xw5jHwPU*WYMvYrt#GF>u4X=85XS6nLK=YwU~yzw=G( zzuEj>8x}3akYC&qiR9&J8opF#pQq2v&8vZOHB0?lrJ614i{_6$FdzMpdURndYsxD> zSVPTkdz74sLsz?z2yS9my3G#hqbOs7&bqR|Z*iGyI_15ZH(-#Q^T1wU#;4y(_=PS^ zC4f>^$IrAsE#5Ut`nf24ClhpaIp1^6mL5fCeFuVQ00HzL zHgxx!;u7m%Gpt{gVqLe>R}~C7oYEG!O;}W>Dm3nHc()Z@II2HuQrIRr(H8b2F-g3T zpa?iBCb#_mKBN{lKP5eO&tTE?DQaTwQYy3Yi>E@KG!{0qclDk;m$y*;B-eG@N%;7C~7lM6`SVT3t;tggLfxSp=CgL+WmyV!W=!{kKMD zA`THgULrWOT9hpg)5hXND{&|t4~w5isSa-dw;(%?FT2q(H|wRBR(;22WO<(g7W0j) z`aVVrvgkfU5-gi@pg`g35r*Y|=XBj53yv-+cD#LvhZdLUmY?-YMx=_t;}>*!?+GcJA4^j^~Bu!6(=!4z1P_E1SN>uF+Om zA7D4=a;vGfC!~ED4!#krA(#DJJ+XP^B_{qfR8Xyb6dg4~%l@#RXwREIk>Ytr(7liR za}mC#_Dne>v;P^lWoF&MgHSzgTY(EETLR42dMyDus*F+nzM3-F{0IZM_7c=6R~M*X z_->xlR(~xD+1|W^J+l~*Y|9*eqK|Cs(N@B}FX+w=y&3tCAP-#p!Ith{7xiB>uroCw zJ6EaA_<@$UuC_)ICTawCR&f>nFP5DvX^NYWqC+9fNBDmAO%~jj8uUL~YxDdQj>OfT z z>_Gd#{d8j6Goq0F1+EzrJwQ%*}qp z9*l`DrS6j*^3#dP+9%yvdGDO$hvM|6q2yW9(9kKJoJdzkJ%;qZA0GJSSrc|P65oU})ZE5$qzzdCi2z?s)YIEC%|_-PTJcWT(fe9{ zXYVO=TG^Xihz>nMEuvowm@?qiw|X}GHh5-L{?q2c0n!W8WAXgl<45MDVB*j(vmaswy^X0YeI=wb|Y%L*C@+~*?#JxNS;(E-6{8c z+r^LDu@!%~Ly6M@|+E&7_s)8zpl#XCb%bGzgG|8DMXt6s6Fo zg;T)Hgj&S<{n56KKQ`tyMnj~QoNHU1GLc3?Cz?i_mH{fHRUs3^_4VyCGMumT-Q1h-oe!fKDqI=Uldye%1~T0(rJY&fSVTCGe4rizkdtA_lQuZI1|Urxc24Nb!J1#aFsZl z1tp){*v|kx08|pSS9il%khI}2s|XMx6mWIPXTsF?*)5EchAT; zy@lWBAC}GN2yP&RMW6%Gh{ItqpCSoEb|UQA6y#C6ks4rG3zPH`M0rbd`0b(vJ5LQl zO)_mFMZzYV<$V$ozE(wkn-}bqkSih2Y1p;2;xY_a%BC%g-dmRAC?lLxsyVXe0u_$)B?XkknZ)(OUh*jc=U`JrjL1Oao+7_PKDW` z+IKKmJJi1{3crwO?2RZ6H^kA-REZH)o3ozf*6ugeno3$#9v}x2tFRKS#QX|l)N*6> zP0u9By7>k_beBL|bZGH)G_65_hLII|pNbZP4xxn#G-y?m$A_<8h1r?A!abHWtTtL+ zt$wX|EY&~=Q-(j0zDv)y2w^tER*yCgTDKi z5Ks~B=3t=cxVB#(lZ}i3wbFNhZr(Ec43=xPo4l3-IuD@D;^GmuN>MQWX7EE`0X7DD z|A&6-HG=RQY8PV);iMw+_-9ychoc*p^~v2|QUrntM=VB}0qEb>0Xd;t>X9@P(MIu` z>CO6$JJCDD@VS|g;B&LlG+ph>a`c6j~e=La15m#Q;C zNX_d?Q1 z&i0_REqrrKC-a@%%N)*m&f9PJlT~U}(E^BMt1Fwp`J!g@HY7P@kl9LOgoG!EXv$DB zvF1oI``-Jv^(6}!vq$Ef8>v19kAdNE0y^? z7$~g`A+vPB?VQVaav#)yWZ;TK@x^*(9pq|zG&{oWVJC~ zHT}D;PW6N(cDmd&(Q6jp=gG@DkX8Qq#0HN4qy;ZtfgOL2?h~_GLW6T7se)#g44fF} zpzopfN_KrL>D}0<5+e97J5F)W30-UY8@7diuJ4!Tp;L4AW~7zy)`e=8dB?v29VW&} zdvoKCxm#U2G720-e|NeSP`~g5{vpA6fuA$+eCcFf8%#1 zb?uOPjwPP0+@U^QrTt0jLC8}t5~}b85H=jy`X)H)zLYSlnIY&KS1+)*2D#Mn;R3Tl zSpu%AF|7?$a3vp~u;_%i3?*a9Xp#Lts2;4MSy_ofrn$@iFglE^^H?m>vO~%|Kw^XN}TM}xG72+)(6L;!!F8mGm$)Df-`lg?jkNJ}h zvpomIr_@Hp4}E+EZD;1RO^p1$FXw?csshJs{MY>EzhjjphNzpk6n;2ep((}LMqRep zQi+o!?L%ZjA|R|Sr$6V{dG@1K0Sug~@(H}n`ohX3)v8sjM`GvjHpv~1+RU~wZ@0F# zw={c;R+q{sm>2VL&YHF7BsO=g%A=WeV1}KPheQw!Mwu?ZO%QXqR}u5fX(QdUC;Rbn zzbSq8qg&@{TANfx2~pdN6O8dAQoZg0mh3;a_PY|h~YQ~ zQt!XWxA^&iZ%PWx{m>yz>*P#p$7xLq`d?G&0<^7=fu<8WR+THyE=k#z;3HWdK5+95uJ2qXD-3T@Q$@&_z8 zY{Ot3!UC~-buPCI5QnaKt?xaN@;;;kk=g&S&VjrU-s|UA{eyv;Q2qVG7}vJHyVv*3 zN;ruG93mwtVEXv3Wl~>K*10?Gg$$Mh!LIjlPP1vb5OfRvN#L7Q7~!X+sGb(KJRvXb zd^=oyp+E>e7EcONcPV^zTkx3o^@OAddkT?O%_!kf#3}&idB$tIRZx%7N{;b|$Dfrv z9i63aP!?O?Ui5Lc_yB7xy7(?Pg!%va`WRL5Ba|gnNZdSeA~9C6 z`HxWNpU}D^$T?|!D5`LaUbf4sz-+nPn8NJ^5!COk!pB)3&xl9ci9fw6lZihLzHuvr zEeAW~Mq%YD+*hc}Fj$E6Mw+P?Yl6s=)Am_^(PFfXkZH|i>Nhk3?` z))g4L)czWm`YN@tPqWLB-|%x6=a^MmgaCJGcV470zfgR4 zF%>nCY#=Zeeh~W6HzSn)v{~JR+mP~IVM7Dco?)21=%`!Uw^}g-oI{3g(TfO{<9`5b zqePgmWq+7YJZjhL$-}2H0uVE9WSZT|?yZMbu#!oQw<2ZHW}?E%)seAw8UA*N-QbBy z?U(Nj%F6ch%S0;~4}$+Nco!tGnlN9j2=D`Vk0=C0{q}~ozJqMFx)l2hdH%4kQ3@7f zSS?l5u(i&;jU1OnQzT7p#+DQxyv6?M#h&j?Rv+*Y}z?SS|PGLno-l!5$t(Z-4- zk3cVRry(=wNy?ZXA!v_Uy8^(|;>oPK^G@+JyWIcSevEuvUsw+(v@iTPge0 zxhjR9LW4e9&@$F&H-!=-)$jhxWh0&^Ftj#n4ZVnxI;!FgxM; zB#vQq4A3gn(RS6K2XTz^w|nyDy#=ftabNg@pH3VC(Z_8BbPfT$(4?$)aD?)HzB{XB zz3M}-tE~AAlN6SJWBA!qg1U6z;W!!W;0m`-`W`gQgI{jV9NC9A3!|*nt-Pf5sqI~E zk>0GkW;l96+5)*am9$Up2zKQ)0o;3TMUH`W+lJFv-N}gowrl@&{lf~q=b)Z9zG@8V zC=G&0a5I_Rb7C>9$2Q^NmyFfum?XlhHp{r@W&W&sK<|*xmNmZg)mv8tOWwQlU@(|`&b(ot5w4>|Q+lMSt5@K0% zFJ4Or0+LnPrbT*_b2pWMZj6uWj+xMNHJ(rBFKD3Meg1Xq{w(ERe9?FA*C(3lOHzvmKB-5U$06&llD&We1Rtt{z2Jkx>JPfz-i~#41>9SWpPU zL};!+_~;tyU7h?G-%0DoFGCKi__{4B%~86!7q*4fK1k&HiLY8L&&_2J|CCo^ZB?x?)U5Mb{nGh(Q|Kkr2;pQ`p?tb^!~LR z;AM|zY{yU4ijC#L79d=7`^qD|+`yKmWnGu6J&J0`b7&LK z(U2A5QSA<|Kyd`tXq$TOs5I)2x0YDUT-Y7}Q$Cikamj5YrdTOGS5#puztZ33*@c~= z8oynN;N@pyXPg^<+Gk_J1lQp8yBF1o9n(*;T6IBdMzQl-DBkEXH9R4p24v_dlYa-{IVUZKpTF zIj)hgv%@WE(JD?!c`o}5dOqx)-(64Y;Jd+oHGkMWd46L3ongVE{Cumz_Q_Ql-PR|V zn)Ij}~$#BKT4z zW@8^w%2Y!*!Z>$&Dmg)$bZ`d9^Ntw~Mo0 zR$?2DCTs86W}7~l{9xlFs*fm#>=?AFardcIwyh(<_M#K#qYbAX@6!ic+f1nE3ah1> zDoi6K!3XGuLT{+osQnm!3lZE`tUI}w^ToNcaQ(|FR`#O$k$m*^5AghG3K%gbv0fRo z#d%h%ZQeQ_jZZ&%8=Vl73+wB|#4x92i}BU)b&*HuIYO=Q-&1!WYo`aKK;aYeneX+^ zYzL2#jymsRHMWWPhRRm?@7ahDTabDIIm2~#%IXCE)cOpznED3?9%<*w8Oj7QyqqOf41+gCB1l%5NGQ76qOnvkX2JQes!R(sitc@;yu~Y&m2T44O znp=_KFoTpSxZ92Rqn5{tGHVClha}?aHw>+_6=ex^Uur=ICF9V&jls&(jjlUO>SMqV z8oAeoxMh3jaW$_#APbusV(`B%x*?tDu2tr{^gyh{hFrESAMiuruaVosUhrk#0KWDE1$oOVQxf6nt~GdBNF(uhnABeP0@cp0ap z(3xcS+OS;uzM{hz-nTa$lN)xb2WiEB8c+C^vRTK^}of;a+B}Wn_fQ^h*_5K;yrf@r?u{3!=wlj>}#%Fi4BR7W*Yn_U3PlWv1*EH9M#AG z`UwZUI0G%mGWF8|+eOzDG)^)dT8^7}lRl96&~8h^IGv>7d%wVwybain1(fQCnsrh( zpjYK*x#wJLFVpXf37_-z%fV-HS~hydNAdcUoJT4l7nX59r|?1<;)CTP&~zfT;BJ|1=@IKGVJS5 zoL8k_o4Psj6bOoGmhgw;VD}-+el-4tfCVL9UnERrr2FEXiyQCj-mFm2o{_5MA z+~Zpxloq(<;C(7(iB_g zQ>f^KNC5Aud;)EsjNii6obw|+`s4q!GmBhSGXh%;P4HClb+HDA`#=bXDM-s+XK)l4 zK83i=OMa@7NCG2V$ivpWUyub~o=}^%Vb9X3**;(Y*Z*(CZu^}Fvx^-{d>D`w|5n?E z3mKJ5VL{fbw5W!k{#AJ*7j9KzQftop%odj#8cz89Px1Bt^(nUIL3Ci@hnNYX%xBbI zT}kxQ1(lPB0edA}?NTc-wUZyQ3tR5Vchv4qZDxERZb5%;x2RiV91c^3+Kk>Qs+A$n zP$g@pE9;!MAUv?>f73vg7wZ3?F*%W1!F)t5KKujDR0ce}C*a;zX_T3oLNiOkvrFYFfeKtJ3s5vL;qxSLNBO@y=06M!@IMCWZb!8pA%ht->R2>XkY2O(UUUz(J8}cw}sZ z(aCtgR8S4u;b<6dJx};xkJ`g#{&NOR+i&RkjHOcm@jc%W_ja)FJAzy&5Cx`C*2{R> zi!GT_Zs5PFS$~`Yzh8v#y?aLRwYegJ2bfYju0&L(*<$Kh;b$gNr#jdhtWU<5Cz6An zCkMRR741y|pHqB`bn37vraddJWquU$r!=z@b(a0x==rGTY@Hp_kEl!5bsBzyAh8zM|(id3+S~jW4+C zo4x&@H^bEMCBJi3eNG!%1W@CyhGelr5A~Q29Y|6lrxPwzA!WRd=Lu#d4UxfbH;$NB zVAAUf)7M}u9X~=IxF{lkyt^6v)hP|?T74nFAYGbf&^3*>^eiebvwz&AZ_7_;!rXEG z9?`{Za>Y1UV*)W1SD*HmUPP4PsD)ux>m0S0hIe9p;$sXG80if64s97q(B2`Z*kl7S z>3K-p_LTN=5yayZHhk9(A?uTVvBUnN|C=_7*9Z00qbC+oaWUHuo4IRj&nS@9mXf+A zQ7_*~iVWRbsPItT1)B;s;$HXj-B%%y*wLaKtN@v|bXd$wPeq#k;Rp3%Ab54}BDUPl z;`fU`TI%n?7kM@K{jdIkBXYU9tb&iA%cxJ1YtkK+(hJR6%cAm}vb__(f{Kyw1a~5; zbIJs7IY+d%HKDe8})Y-bI{&?9TF zJm!Yi3`8M3wOl5@bf?urZhm1ETUQgIT(PI(v88_d{rS)sCgL*>OUmR&&jB~DR>*%V z(iloaZM9yGLbrp)+#W$rYEiP^g3S>%l8!(bLjvDN6pJ#b#|R4id^qA5Xd zw7*l)B!_qw07L+n0{6k+Hdm4l4K;v+-cbGJc1U~DH(=EH%}d+;Mwb3OZ!S$;$@y-}sy$v_xL+Zgcd0PE&Ap7H1V4)3ydKBSX}*O?cArT^ z`1?XCd+qeP!`07JB#$=Y%ND~LK6389qdXo=ek0CO;8vy`iJwbMv`eS#ERqe4Q!yxQ z9FO#D`O$eBe9^g~p-;w7@j|hMlTQl~^71U9x@^j`mZqh>aWgg&+BFgI^NfQ*MgQ%y zQrC$)gJoSQ3B+$!`vmN7jLS| zjGt=Up8s@l3CA~Nb0D(yM#$oyk%0=tN8zk!;vAm$iLfQ(aE5Wz^$7-fi?<<7Zcv7b zlv%WrAZU!n&s_C|=39`L9qzE~{h({zrEZ{EgyeknFGwQ;--H&mdE41Mui}g=O<05s z)RcGYEZnMaSV<5KR#4+mkeCKHdNuq(bUAGu&X&-@=d!c<*7 zG*QW&E!b?*Ok)$RP=Y)jWr2_L2QX4;<9BU!+iGXvd%&8 z7*?<{pV^D~he+m~iDQ+-bSR8+fja>4V0q4!sSxXTybA`U`-OfzC~D@T^l@D6wC`ju z6D7*j-AmGa2$?%LDYf6wR=h_wxt-ZRnxAn)hI4ZS*=WruXjKuHuB}%8_Hxfu(LYGs zsd+$-!Y?*@tB+6x%6@c&x$>}J5YGe953KGb?{-$~BL*pZ+fAz^-{9U%Zz!!22nGWJ z>A_I=kn*V?{Vaa>y;tYh_$Qc#?r{4nRrt#1_i{*rw>14Hxj*<$8a9X+?y*N!kXyI? zxewk2-&t1`tv*_ey@(v>=GKdK^Rk6yenVN!|D6Oo^%rzLnzFtPdU2lRgfPw+1JfAi zmCL5VCdn4zM(OxpXr=88lMG|SbIHNwHlPWF+3Jm-NrMH>lS#pvBh(9j=IS@)XZg;q zsHEVZuC+xIQMnRLCpd3lTEoo|geNMC(fBHODf<`s5p~QW39FQD!r?8OHQCfH>Og!S z2Ch+)h?)1W<+^5g-0e9jUF+4_eC)wjo`U2X#QL|fwJm|%!+qn6QPbWCeVf&~g!DcS zl!MpQahh~8fkZOu%ZX!V@!wUXCwrhKF2>@{EsYL^oj}s)+Tgn%;SPqnc*R9Mjg;*r zS=aHAT5RUFXHbqiMxPmkTKzt!gJctNI`*0@j+6y(7z9=!u^z$sx{FnuCTbbMKp~0O zUGiVky}`Wf;Dd1O4K-Yh`J~v`!xRT4vnTkUb5Q{8<-EwL(BPJHrXR4LIkMNy@Kh7) z%I#y!C*8Y`eueAAa9q^aQ(GI6fL_*ER9Lk!XMWc@{v~LH2SCT_*>4K~x$L%lZSW_C z^J>+NMNBu9vTbfuEuMKX3{^%OHS4O^EGLBhiKo^8crH%eyE$9zTWr>zPnP#rs4XY9 zzEO22Ggs?}fiUCK*pjtj#kK3dQyt?EsWN%5_|6SM(0xr0JqfxGBG(FU^+WFC6bWat zW+S$=2=~?+n)p8yPE9cvc#~edA+V6NRx1kT3$^FL!$qr2W_x`$T3dJi#OvP?5C(?_i+CSP7?~d0)mlOAjr5-wunMXuPo%_HSQiN?s z56;=0h3Ea8keal+jsSIge2FND2E0(vrqg$xm-?iO*)fk_IHf2oSNM~vONfAouMKlf zg7SV_-??vVMYN8A7~1yQ{e^OR`qNS5CkugPC4$12h^5V)myS#BVOrBU}S@J=<>pDEXC9{;avui3+^CX22XZ$7|Tpo zg31zI?Y5X|ARUdemvr9y5jO^n+VM-=)z_{tX)M9KeR{NPgVHC7MrB zl~imPn*US@i=F3Ru&%i_R{;aT5}XQEn_oUMtH6bJp-bFHuKDJ4&Bw25$X))o)QP|pil$M(^%Pv z#FP)mU-P(@ndF-W49F0 zvxxy|0{86EoZqDZujUe{rDv0Ve^J~dHuH`ve~ihaiR!H@von5JqtlKKV2k^>BS~@& z`^6Hc26yUeLN9Z*(}TD<9jG^Wcn6ar-DBU@i0c0B_cLvSQ_tmRDuSKc4AMQ~{84e6 zVFTgS_zp0HDjeH=(0(!K1{en(M=THg<6*jBW2csyoD;ZGlvE&{q$^1ao3$pkno7>= zwU<@47uZco6+h-hlU8EzgR*ZqKeRU?L>c}oHHf8L1#b6W;Jcpt_jaDkh@^EihB@tM zbgB8*Xya248Mav6ZGtCf2{EXDZc6f9YSQl6bnT9Yo2;cfzdTAQjTl4>Z;E+%0=Kbm z%ag&$4V0o4zR*Od!CqdsAtz|7h}?Z97et|=SPCysN_bt`%9rgK`w4w+XKkO*A^~`M zK5P$TKiDjr^c_&Fw;YJNp3c1H$jJ&z8aKmPnjke9I=!T0fXgGA3DAR{8kp_zC_VIm z!G~;8s3GlaoWg$=d=srDOx;uN;GuQWfA>LgC?a5~(&Twal^+4EhFV+&od@^r08cWw z21{n_-?Zu!C;)#iH-&3!G(tINGrp)<0Js1Jb%b2Fh|>CKw!D;i{-=$Q6F3=lhK$(T zO%BT^HXOhv?s!2(8E{EM>m9jDLO3*uCm3`;Ql16jwL^h2V`kdN&jUk_(qeA?>KPXM zVMrrd8_#7~c+T~lCH^g;;)}8^=F(aw{*DWG?#Aa@%!6If78jpwJ0M~1MLI!%Z{tt) z1*~OxPAXeW|5)KP&06)i8<-T9E8cE0A|HNCJlUYqLkfT$3W6K_=GKophdi^oK2aGg zq(B_(xwXIix;p=KJ4k~~Ty$@4vz!uONJ8iFrZ)2zbvoqJ2=-)9Q?6)Si;uKc?{mwn`z zw?E<20_E<^syBeIK;(YWaE*+c8Hipu8at|c% zl+!mn40P6?9>ohOW}($)54hc3ERqfkGyA zg!DpJpj#49HVP)RCYBP^2NqXg4q|e&kMb zm}OpfAuw|PK{8vc~(aGhX#|iT(lH5Z+F)s(7S};B?q43Fl^N@?G^ZRZeMKnr~3H2vD5^8IVW0o?oUJ>v6E30B{6qbEM6J)v0QUlkh#^X)Mp673YbCTL)R7K)h;V2fUIq5n!UGHtc zJ%lRXL6D0^&BU64(T%BVjZ3 zDErvKVy1+j+;6y&bjprOiIi`*#|W}iEq)f^a!xH8at+-=Cp^WbP7y*;IvIgpi*7Ta zR+XUbLreHlj?uo)12$8O_jRbz`AKg^V^IVvX)~vn)vs)1E%c{SYc0(h*Zs2drq?PR zD+n=koY!m#R`4Z3B#VjSLlW-=CZ-oX_Y&JQ}Wu+x?+Etp*B`I9s!7rgoV5HWtA zO@yKmZ#O5z?b221<4H`U82|edd&C57>Rt{w+O~3%d0=fFU-0VghL~HTon1j=g$TKu zh)0A;grLK2kmt(0zb*WB+T?Llts@Kt$}`G~zYr#yk;b;kmq+!w2}tHumQZpzWC|!C zz;R#xdftk~n7=xM=@L>zNxw`$X^DCsn>Pk+G zG;g}@qlS^wC5G#y;DnivyZ*YRckMJs*ZPaU!74QG>D{oFRd~0J>(Y`ilRQo(AzVd0 zjL=2ng!16?bmKPxzKdOAiOr({_vB4mX4EEW4>k;^lGC0S^Nn+JfKgsCkYqfq@hax2 z(CG3HF?6Ki?x)6~EqCv%(U#Yw(*Bo1=h=Ptk?BH-iK+L00}Y8WM`YA%eC+oi?l!~m zx7Z#ou94plUNz@5o#G9@l^OL`&pauM%qb#RkgZA*ddNM^XQmsI>`6Lo@c`@X?!hW5 zW*7egBXi7isZrVj)5aiLq7(SmCgcTi{Ccr({GE8cW`ocF#8xY@A+e;`m^nSf8w&NiJn~9R0C;nlf?H^I&bd5D z39-seZm|x^ZG?F8`lA6`cO?u!*P5Z-hOCwxcMoK`0Yr%QGo=ZG%mft~{x0MFufQmK^ zx#vERXIE&%Y8rt z>X;Qg7rOf1D6zrC+wnaVBxlGX)Iw|2#CicM`D1HO03H2f{g0zxKN!PA(x*#fX8G+J zoN+U_coyT|I}xQwhR8%Ul6E`U17SIfyUI*%JEk8boWR4Wk!GNWyDM|+p1OWyA-7)z z<=!&L`P#3(eh(uFAdVzd7WeAy&FNlwp2=nGkM>JSteCws+>ZcOjSRG?mvYH}y;aRB zQg<@r!Md#j6YUEJD}=}j1^kgt(Od6)(r4Lj_WE)SsMEyzQ@{L_H?0t`Yq4pQsF?H~ zI&QD1*bz?Lav8xZKz^(JUAH#;v;L%v0tFxt)BoFJs`44eTS*Tk9`8L|duhMoGeg3J z32^OJmJF%oE#>2w6z5AohX;!#w-hwfr}xxMeSd{Ab=#)c##hV)W~>|q_H=Bxcg2*4 z+pw7zv2BQyG9lMaDMotfLyu9KhW1Az+ei`EcCU(8=a6jgVhlM!B>9f(bZ5Tw53$-S z8wtgBZ-U!D%*$`eM>SXY$;A`cS^;xLJ2Q|==i{P)dtnWGlq_w<>~}2p;0R%Y)E(D{ zb{Mn1pR}|@XhB?4EoeM^WSkDKpIrJVFAFxza^c6N>n(s`t#y)y>--zBRNr& ze~|m_At!XCdaRRE3m#Rm9vqn!hI;Y7SP8S%E`k?N!M`$!#xrnH8%m6y3xtlpxrz3 z;|J$)4yA3B3WZMa7UqH27EN)#0_(RbHy6cUi1+tRZqsRaMGVErGlN`}5r`mY#aTJL zYI|v_R!s^)me%&82cjW`pLQVVW=rWJx8M`Qi_A(tI8|LLiZ)D9fZzVK2kp`O6b(h zBoG}YKD+W2kF>%Z|5ao#-ScHY@=pQA>J=dbc{lk9++E&1q&CccxiJ+ipH-vQJZ6R2 z^m*xWfVTz4ev zkA;Ww=~4{N9dzbcXA0`)0f=1O_hsyP?wK6P&DKq3x0}lr<_b+@>&<7_yZXv$zbD9} zz(}6GZi!xQKM$A%UPym}h~@4>SN$HWtF}SLz=FNOtNpr`ZL0P)A)2c=#hhfkci0lX z7;3n-98jLa$loDCCM#oxbdEE5rw!vq!*fq|1*l(7a9>|xLS4y%Wr4C)XQgtki4Y@SMq7S zck5qF4U)p#&w^TfFOn z{6iBMx>UxFcu|>@6V`(zwIpEq+zn0%P z@9j2NeiL8Pme!<$)l$tE%J|?((bpn>_a= zW0shP+AB2ZsYMJyCB~&+&%z7-gOaSM>FU<;*hQhNk4L5Z>0;kU!v7F&_{c8S7C5Gp zPyN=2K&l{dJ#5P1D6XRJA$A&L7rnBBJw|W^-Wu&0`@rQ&k(~^$s+B7cvwRag7-y*3 zCwlVqq_OQH8m@bb+_Rt6bvG;SNDy%BFSI8ot`0}DdzBhNL>YiUeN6S%u-G@(bgjm(_kiZkpZ6tt>Pq> zjILPf-`l(Gb-AbXJlhWQiAw}*O&g!~S`k&z#zjLtzgNK@9h|5kN5HP?WKo(8hkTOn zp?jaYR6C7SdaG_A2DevZv`?GKibU`gtANex9RdbN#jDN?LD`${C?(4D{4dk1MtLG+ zBQCx=SLzm8%g0@D@Ori4v-Mv9DXk-cFDIVYdO;I;wu;FHxe<^_saeE)*o2|h22aUI zjWlsQz92Z z*K-arjG#d3HaPr!t9WnT#;l!sXOQD`M8H~voxV#X|1T&99|6DPoFMqjy2Mt|k>XK6 zZ}~S!!jzU2cD&L}+~EPc8tto0a|4p2G0#Zv>c*AsuAOXZxCGPdNc+xn7Y+D&-nL_ai#t0x}m+ksTJH}3zL5mLXu8=LhW-~adxm2&Smp7C3@?Th^8+?Ls! z7BM%)tu>!_d>gZtmwSgf+K4uoB>ps1hNkQk7?&*tpLMSMvl&G+{*vM<3e?#XrdM!z zaq7$1GjrtUugYdVQ77%p1RLayHD_KUG*$3;p{a~)i&$ZmeVJKvY>2Lth-46 zWSG?DUQ*9yxP@GyvuW$#i(xH~!wdxQV-n0dOqgQwW&Be?^YO_3sOUW{ZOIm4VbN z43XQe;_$F~XVAC&fu36C1HRiiX3eSW^q}`nC1#J?SfR(BCwYYLTwp*lnR+BfBV$a_ z4!z!Z8>Z%!!{)PyL9Rt|h-K9Z#fr!WTUJ^+AVm*EPRnOnCMU>&?8pC#_C8Mai)TI; z3&gLB>giK;SHnl`Bhc1~9XoX70e(kFxbA=P@vf$rES|&Bz&E74K4;vgeq1UtGy&=& z@)SmN@^S8j&^&T~C>JU?Pg}9!B9wXbKE2{`p@no#*nH%-qLptrtiKDE zz;XD9d}XRjJhmq3)T=GhE|wK}$FDN+{_5Qd_2D7dp{<**wGE^UL^0~cjLz`7+({rk z$v{A{?W%D5bq~|>7L1stg=mo*Op#XM4^%wyfpr8{#Lm%|25YBnXko@vs%m-iojtG* zf$_rsl6vdkC!Tm5P`~(Vnt51LP(d7_UZ1_}uan5mmdG+RrJK4ZH$`x!y>x%bYbA3A zg4gvgEOu~8M5L{oTDpTD=2m7DOg_BKqgOgT4Bv>TBcoe5#-Fj5vr5R7w}Cee-)yAY z&$WqRBAxXzIE(z8xYpa2i_I@>_&-lFDr1QuY`0t)DSrjmxAmn;tad%Kll&f`%jfW^ z=ReW!Ze(&FjRQY1UudWD&sA5@3?IdW9b$DxpMMDdVQ;?3V=Hl6L5*rj!$~_3mH%>B z$Vz<9pq~-<$Js7pl9aHOKlFAxY}6VfrE)3(A^xc|E~`=3AP&jy%|FR>@0ltJ1zy@V z1HjGe8NM^!!LqV}hL$;IYfm>H$PckYhK)qzUk|tM@wi5lnWT9#ijenC@w9$QV{E?! zRN)6-(+>*{l@-R^#@h9m#rpKimE^Aw^K=Sqy>g4!G#}0!(f^=vkgeXzlsfd7(SAZ& z(bK;*E98%w)|?E}?yN8hc*QZ_cdK?#9jm(OJK%Th?xE!S>h5HTljYEwkm4;=Ou$tm zq!LCTbu<;?bJpGKwc~!X%ur*FOrC) zCVv>&ok4%S@Ri|GZtV-W1Md{b-+)C06^qaYZvWyQt?sm|^y)cHlX?t3*PL_uzT#z8 zf_zi^|1FV`2-e{6M|>K4|9+aZi3af2zt>YC?+>cKGZS0WTS?IG{|8Z=zVA2OH@Zwm zd~iET*`Iw`a{NiJ>X1&3oaqm-HnxAuvmZJUtl$ej)jsw6g%4d2UIs2ZUG)m^9E+S9 z9ubKd$7=l%jqVu>`O~Si#u&kthQ8rDfd3}_bkSB}nw3po!Fjd@$G%yEAb;&XF!%jW zIO*cqFm{!KBrUN><>Cuv9k@36lHTiSBN5T04_hC^3y=mH28%J8Nl|h8DOWurj+GvQb=Ts2LrgUh zxNVuem!({?_vzoBk`QcYG*r4;7PsTFG7f)q@)yyCtgg8tGOwl`XD+GPRK zw~+06)%F0%C43bZJ@sR&z^}Mw4!g|o!*S-mks(KtYSOozN*s!Tzi&_!WCvph3jWD1 zCvalF64x5GctOCV@HCPmQ!6s;^H0k+4keyr zg8ZfT;ph3ljO3U5x2iG`XBC~RRB8EYW`MwgqqJWd$v@Dar~$iO4o+tW2$U&K)NfNQ zzrh11;B64ebBnod<)FV~m$&&fC@1|_kjAc1m>Q?Sw0UP#> zGB?>`&~>ePKjl_@e6yXY0cGv55)ah)k+Yw{x-V5yK31MLgG&z#J4~TNJE5Z90|=fJ zsez*7iwq3%0)t>z!l#~bV7-*EJrY37greHOBf z)Hzk~xa&Pza<#ePVWYjTXD$xHbRjA@4Vp*z*JNB|N=t2Jv6Npw6mR$&+Z6;_Hs-75 z&|QjLT?$-vAm3ij-Gg8Mja&SaBu+%TZ5YCruo|AZhXcB2+uaiq9BPMMd;Y+OF@Nt8 zn^(KGTYmr^Y(rdD@lcF4>+;2|^k41F2l%3KB}7kH+V`E6Ko_s%`;0q!v^?;4=tcew zqa~~B&(r0#OG7I|FguE1tVqH5ra?DI<ezRgW8 zG7W$Ch@k;qZL;eF&Sq)jqwDl$hSF4hl2384#9B0zjX&vnv}*b86U89_^=sr&z2&cw zMMp(d;c9#I0)~Y<&i;HC1=Y)!*SXx1wD2Fc)|BwKlLBO(d3ZGweln*ZL;fdT|25+m zy`?rjN9EBx)hp-lW=l{vZQ$3J6H>;8RnL-z^n@{2Bi<6YT?EXN?-|qwkjIj}M*IRk zOt!4sYlx8&+hvF6Y+7LE?CE8C&&N=+#BJ2qofb=l`{XrQJ4I@~;^#?9jWpYW8VX62xYXPoK z5wxlL8e1>)P*brof&)22cYb&rOcIzlIoa)IGL$B6&O&N}S;xXG=Y^-acz=Q4L*oo| z*{SvLxh^Isi9~(B+a9I!ZluzF_gpN^aZ~DFD=5Fbt_uuXIC&-^oKHShfo;C=&gB^> zhV-gQ0Y5uCNb(1G^&M%ms58#k_Lx0(Vch2p^~)*6j*KDg=;79rYcr=3H(inmC}7LM z+|sx8X$Q(C<(acpbt-Iiz1K+F!XFARK!LkRpqc5b?`YVbAV=o)Lr)5M}eumsWhIM zY|H(#h%(g=v0Qh`v>c-Wx+(F9ER-1>gm7$yYY-yzUhTG?`99-S>*dV3HZ|IX*^-7j z-o}60ASulO&3LY&5W~oA{sPqR2z#Y#Sp9S=Zn|A;`1d!#+yS(gNY9f~v@_kKHrj2C zbV9jg@7%5YiXZRb;o_W|B#u8|U4N$NVHcw;v28}g9~lg&;1o29y}X4vRk{h?(3@*e z#PLR(urA<(=mOboSxvs&qTmI7UhoYaD-frtbZZ7&V4rCc>((Nu8>H8slGfVGq&DW# z$P%siH()5FdwQXOuJ2|-t*2+*p_Q-0ayUrX|U314oG#=uAFJ?6sG z3xFu3KbM&Y8ekPhP#0QFQ?Ff0YeV@X6F2XOx}!5Fx&Y6suI($*X02L7q+EwsXgjNK zr%#7mptb;j$!th%$g1k%+_mtg|<8CI4Q4_Bu;{VznUu*o?h%QhVN+0S7chHK}y+Z417r)&La%e++`@Za1 zoUBFt6W={|IzagbpgU<>=S-~nfa8x zIp^gg`UUQ;<}p9ziI4=mqDMz)Rh>41b?uk*fLyp<~( z0E8avP23KC%94nD)s6OpM+@?BL;>W$bCfaq>kz21QfgS|CV+%hT2=oVa1iOokz!rl zvhlo$Oq3nE&+g^yT1IakAhy?b*6xU`3CI#FrLI=^-sJlpcUBx5Ifs-AeUPq#*zsUHw!fmqLT-kfOpF{7bz zOU`4UlpNwY^bi4>I*XseXr5qafXL_nV4S4ISbK=am5#qw4eew~lS-?t8Pl1Fmzo4* z>PnIP*VYTs0r$N>;b-KK^{EdaciGcywJc27+}($+!FB+PNat^@=4`zWB=JmSff!a$ zycDZBo842+Oa*+jp?}Ez_74R(MSG+!c74B_3ndkT-#@1v_xfBk*HaV)!YqW`w$`lZ z3g@ctZM9SZIp1n3KZ~f`xBNLo53b&r$z2XCbMm{fd~Zwit87L1o80QJvJv;^_s&|X z-M^|Mn{nd=yZF!EuSFILd(i$3qKyH^a*^z7%gi)CBkfa&2z+c|cAiK?4e2dfjD2YG zM)^N0WQ9}1E0dF`$~CoN^?s|H>aCFZ_|Gu>6z+uJ0TJOdSLma`*XPi7s}Yestw^3>%c>0R(m z1cpGPWfI1C(|tivI}SAaGF7EBEsqj8^vz*Eu`-D2PBUjJQf-_5&VQm)-dLy7-D}y; zboMC!g{{=^CcLrowN@=DaZi2!>QOe_wer}y1@(BxQjA`dKk@qf*Jq*lBpcR@yo;cF ze&H|`zYNkUvpFD}lfDlIi$tH1+Zc#E1LG~5pSf-}@gI5|c5^wb?|ls4)DQO|@)pTY zR-$8m?1z{jvBD-7a*jU7sJpc`A3+g0sm_AQZHpt$4-0$?Bp6vlrh457{!YwB;@OzT zn~=Q^0mFa#F=caJi#7{-*l6gB*M;(}Cup<5`LpvzOO=p4VfPS-Rlm85t6rIyo9d&D z8r#&NDIt?Z;C5nJjt;@ADBuhe4ryLml&Rf++Gd7lpDJ z6737>z*st6h1Jy{qm28}&*D|<{yq5XdK(Ui2sG0tJ3M=$a7xSreX33uZK#rbcoD_0 z!(aQrP7m!)w*a_#W1sO0VMH2$0GF`geumDdev%6A#B_y9LgN7n(2V8(68hT_BAV3- z(42Pajk$g3W`q=ZRs>|yd~^)doDyumtmV?*F4fZAuCNL}6zqP5VX;A#sZJ3M>$&t2 z_U!T^y>z%jEZqOKC0-m?`to+TsYtCC zMyz!`e=SA49@iCA*RxCfhAqZ97NSEIdDv8Hu=a^G?6+K)_$h1BI(p{$>s^?aLM)fu ztaRv*;6=u~QzVurDVfM4CinOooW}%TUTgWN*jy{4aAb+PF?fIF&a~%`);m@GF_+}$ zezT^eX#Jryulabo<>Wy_*A3WI5W)>{B+tMx63Wb4ZE%#8pd)Sgdg+im&dlOR4qGFd z$Ouew+$oymdtkk!<YjbLWMtz_Oo!pI21a)O;gB#cm+H+UF9U~bU>5abQsj%YQ zae@2+y8scSXdui9Qu5RgXJ0Mf6V!3*A^sA}`aJ)(SML1})8}joJ#R|?_+wnt(n-}> zo=03+*8;unUKlXx^?2}LnXb9rYv#+gn+70nBYy2$5C{Eq1dJ6^aqQs)4`7V|l{88(JVpS@)WSp3^UuS{!ldZbvnoW6nU_DW$W-IaG&%BEKvE9`vko9xa zydmbD+{Z>GQeKOy@n>|^6l`s#EveJ9^~v9@JVmu*4@Vp+?Kn`3j4fcwb8P54!gFO-HK4$o2iWb;jtk1 zpWfZ2-HGtY`lK(>MbmQ;3%2B4va=69p}wUd9(c+cdfVPisD2_o&H17Gns0J%xq$B< zIzUYUOCH=?CYqvk*1*E$c(1X~q6)a1v@_ZFoqEbXzu z`&n-dOpmNeE0l*-A9>JZBo3)8h`VoNLQazoSwV2dD^&5rx4aBGd%@aLiP;{Dv1Jmw z*UWr(X!fpWb*GT?Ondb?f*M$4PeOP~vztAvs^SIW@pk_mLZ5-oeJN*3dH$H#pU0*t zdwnJ+v}raghQ5If1L96Rw_XtZ-S+eUN71?XGyVN>ypnvStVoi}x=AG@$$d+bN>L=r zWtEVGT;?*ikxD`;6%r%YB1_118@bGVZkb#*nagaLZD#lF=l3UkK9A2ipZ9s4*X#Kj zG|@;$515VEusSAgC<+_iH{|Rd_=bOM6Y#mWhx_h82#V)((--B+NFokKsWb4gojRen!ftk8#frf zF*s_B2Dt2eKEpajEAlPj0(tbX<+jVX;fImTo+#4S?&ZDP#j9g$!sW-|PX)3#s(i!W z)d+QSdETT!lH>gPt;&mObH&IHLc{Lh6r9ox;xEahqQ~6?6VzESTj6B10y z$a?&7ION-cHabR$jj;z^s@LZmZgpM^zN2lgi62IEHhcjF%p1{Q$@Bb&s8{PYGfPDd z>3_4hl|gUjxV?09v>y|GQFTI4q-DqOA0}TC?O43Noo({iS1Xy{t9q9eiCM$--_y)r z(uu1*8NzEAPFh?msG%4N#vAzM$|Yc_GgU|P@_uElWrT-LiUZh!I&Db3_c?#z0iAil zwActebZ-9eJHcgUFC|QwUpzirrD$ldQCvC5eb->+`0ZhBqgt)0fNvz9Q1CcHc^uwO zAhHVf##m5BwbS0Vx!w-lFZOFkkG^(F{Jk_gz#q6_XRvQ?1ol!= zx>#azj6b$7@pyDu>> zhU2b$wMby0Xud?l-zi8LC)Vi3RrVHqF(O~lXO~w$$gS2rMu1BzB-hhJA=prbiTxC_ zg+6neS*p>}k5R~OpnVqFW#Cmpsg{K6P#$1A@Em!~Y zqPu#Ux!bf1yy)Wp)~0=xICv9#t;Z|bb3@iTRave}+O&*>6diDO;MW-4sH-_{_fM=* zNM_Zpytj_MmXQXWvCgn1t7jtoihO6V#^fv55iNu9_<+~v0n+U(hsMPG3Pydwjat*g z3JZx`A5EW8N;NIA=nw%LaAan&Z?kqzL%iZ%o5y+GeX<>2%#S6;Fq{Top=pJTEcw0lEqxV#WaXEpg%$FoIUMK!m-((fC z^KQ;?)JSXRa=gHOW$Iz$XqEntZ0PNnA1jN0>Vj_Bc~(%Xt^=C?Xhd`1>T&XROpnR* zQuLgo4LrVAu~hYkH;^U4PdycE8t>J;oo2Ff^bLQ1IVG`SwS|bj4_C|kD?@F3>88jn z5F_vmht77g?V{BB@3u7V#`v`Ja7t;J8Z^lk$qc1rBtx0s__#~>fBn@n$_ zE1lHbrs1l|kT%F7(2urZy$6$dsLEkx&WHYXDQoiOI!pNIM-cqlT0%hGHLbMwj)VHO zX}8es(BBWVu7FnG(x7~dH!C;1CZ~2Trw2WmbCkF zzla8Jxwhp*edrC)^|?~kT6TKF>7qrGQ*QcMOgzGkbM}M!g>b2f` z6823mRBsgA1jqH8k4`I=tb^vk;&@ETOM_0G)mjg!VG-F@ z?-)~FxFcO?mbDXluv?kHeBXqA2k}}-Z%7&X2-6NljhMY((3WCGB6pm;&ZweozAU~p ziiT8ocGUi*&2)x^S|zb~2VRFoOHgfU&1ajuGM0~Y0~Q~1|1o|QfIIH=H~!J6wMasA z`Uy_(Ak-qN&S0uQ1o|umv2oIF2ILRtRDUDszUS(nC{oo&=mFQC6-(PZi1?~p z#;MhIff5Uks*-%KhOYkg1%U7kH@noLK!H{?%>3MDqZ6Cp&itH>(|5#4+V!J5+ai7D z?jz6O+J#lc1t9yigCd7%m6ZZ8!(5M*S^rk-na)`XJ8=ve=6QVZN{*JJ^Qb#gnOL)M zs=tEH)RM|+Fg8q0n*=Q}XX#rBTLik4XolRhLUnx<2}=HZ#e#Q&-e%Iu;4RF=h>C8I zO)Adt;?Eg3=>#0D2na9*Sg^#K5w6^a{cw4uG`L=4V9tT?HIf8rRKGnjDpA9_VEgZTRjUgflzI2bY&ZPF>=pJoju0q ztI=Tuw44w$`xD!zAz&7rPAlNKZ@j)+z^aM>e}OkC^;c!aa?->e%*(-qXi@(^xcj2x zn2bQ_a5^-THQoC=1+b3grcC3uo?a; z+up3$Y*93or|xe(kafkbGB?t4TlolT*|RkG<9itaHL$tCr}02Wd5orTVI^eDM0v|t zTB0nUv2cC~odfP*$Irh}zf+v2Debb|?)m4=46*_ATRMCtuAd5Bm0lexqT294 z4E-j9fUO8SaI%o66>GP0;qJK6Iajl8znx6sia=DcW5gl?+-DxNGX#|-gJ?F{6MG@l zf>wsz>YMsv@*U#v?6<d3m_t7@K-iF@bcdIShaXZNy0W-#> zXQt3Qw241S78BRp072oO4=or2lNl$Z=DEbs!3xl(eNsbS9tRKy>Hhl+v9F>4Skumv zb|sDh-Ny*!s)6fuZ-j?e05@Bp1oT5!(9?wzm^5K}|9NRPTi@lnd#CwY-+@FqAVq|H zFKQ=@&})u;{Y(V4H>@(|B$2vYj?_Mm>-Ay=rd%f0~X*>fn0+ z{04Uk?rp;Icce5#oAHzF-B3bhmV&OKqm}ND+%L!@NT$pa+JC(Zz4f1KgH}uY$#+2y zeNH*#x+kfJO#M0jF;-zE3{YCJ(f1w6A>lPxpIl| z!7Ciqepl=^_TBY^<+{kr9$Z8}lzFT|PUm0KuN`amzP#oeh8WGabhuShI;9OSzDO~+ zDyd06u#aG!krESE@uD!;;G!<4zYlXR`1E4)f9nkMnMb*dG_o=IASBW-*C z)-pyF*v%7a^v-rpWw^Rv3Ti0eR_Pe(&+EFFdDUqd@1a~@^ctE{a|>37$b6J)Ff_g9 zoM=c>5XIE1cDixM-5YLO<%KcW4*OY-9_+u<(|~rg?tii@P*IwpwD0U#MqgUI08x<$%JYU<4q)Qhm1b0jA3#)ctGJ%~4->!H6t%hyVIc4m zIRpg{RBC80ct4tng&ntKWIbc_!S-;@!g15sH6TCtR=E(gMVv`|#d5S%?H7C!cj~*;PtzhaBp!{20W%JO3YuS%f`Lj2+ z2*_Ef3LxDo@0cpR25-lHXny6U+TmRupbLF$>!=HZnO)GYp-nj!klY4#DT zB3Yg$MNNdorfk$`dTY)^(OeA*a3fI_6qzx`&`PUBV`^ig8`-$y1=J{txwf#5w@-3DEdHq8ZU!6A(7dWd|Lv)4_0sS?QB#km7{HN zkS)LDog*8PlW9L_6_I+M5T{^a8kiFTxl+o}hbI>z z2XaGnc?T%pYG$Q%5dYao#W(2NS44^u?Th}b?+J4t0c5Kw$%)wZFRXtRen~|4*gan| z43R#1A7usB5df%Vq?DL?p+nQ6JL zH|->IFMgyag!=52^c3X5y-FF#jn}=t8rQz?j-ST5D;~&%}=_>_y^OVswzxF+g>()?5JX`;3tb#%{w6dJS{alGFTk4X{Vrb3V<{YM63Q zA!d3}?l9+=HtwDK((aUmpQ6C~F4e5-=>{9++#@&Up3Zp5S>D%rdCBeu60q2q!Sb=B zcV5X=PvEbLQj*z*2DvC^g;$45jG7!V>Zv4hUv;nvr^BmaxT&i>7Fqk3T`qc5ko<8a zIcGx4(Ih?8Lq9}Yyp~~&E5%uZYj)@1Vf#h>;e%CxFTnAjG0ol+bk1uv7gSUE{-ybf zo8x8p$0tcFVOGQ?Ed>B47{OXrT6lbgr0`Z)lzUD`g|bie6#bf5dMhR!dmqq{4Wm>4 zD1wm}?*{iPOKvE{HXt>`9^_)kb#-Sn8;Q?Jo=(dn+|>}q zeQ%G&ps2f#J50{wk0&DQ9=RHJA+u9lUln`l?Pj7oqBYPvM>3`yrRCs#_@#o+SsDG@ zHD^9Jfq7kh5x+=5%r*Idm*_-id>TZ^M@yBP@D!pA`a!vvV9iKz%#$g9Fh z-CrMAy!nl1Z+v234r_>DH;^T#n7jRbl%=&0`*@j9JF(8lUi%U1dgT58BjEUVgie#i zf{|ZVxU{@kd?nVEB>mWJGDg?bp13}<`^d_d_*u{M7%jGffZ+L>x0MpM8gfyU2c@gF zpeH`3nQkr6pV{Brc-!E(LWCL{0Ww)TEDjEv49wn@b`N2Lqj!)^=~hQJGU!U+gd^@6 ziEXV*lIxndzrfN3ZLbR~&?S&L69wkj9TD_8eRuJp0(SjpZoAiEIO(V-a96=|O`A=C9Yfb)z4DO}usx zi8=@KnInD_kgo;O;nmkjYWwpcORybS2n{1YwFeW~d{hT$LjVHM(jQ=haCgK)CXXn8 zHadloVd>ZPJ{a~yyu(*|M0R8$a!5Kh3pcJ`DPan2y)t6k4w=;QFIk5Xw#jmSop_`g z?0h2w+HKjPMZ4X=Y{ZN#XcUWbF9?_#tQ@tzhY+}u@MQ?`({%}-0r-u&g6bttu?Dk_ z<1Fkp0~)Pf;P>{se$U$3?&Uo7m#ldbRn-ORLydMgkWsfK69EhR}bK#+NEUosgmbuPjD()dT@Fa6s02#ifuEm zn)26aM1{1GtF)GHcrkcYPdg0W;G4ehR#lHu3c--XFCoTRepguKM|=)oO#=`2`(2gU zhP)@K)=Y86Zf5>wB3UrIc{^dlvveeB!}IAT4y@LSK>nazyYV_b%HKdtg)6x#qq{>o zzAHkwk?8lC9~9Al4d@9b*56F+Xa@j9JW%&q`M}4+j(DvDx%j zeACeuX?r*NAZNN~fYHt^c$JMPCdF}P!IK5K;O+&*(^A_Hc`Q#sW3TG4g5Vb0pXxrm zasjcsK$Gpz?+2=KA2^%-hWxwnB|{k;cOQ{SG{kkAG=4yspyr|!FG>uS?dIigcZewO z@Krn5{;%(P)nR)LLN~LL_o=v{DUVq0Q(YTj1|b~t#Xx;w5xwYf}dK|W=ee^}#n-!i8x{K&;3)>U^-8*;Qg5ZsC zp0$BOeLy2_(VZVo8L;lCfmrVMg||rc3_8_kjc0d!(Ty4?pa)ZA(6X`VX+`XKSkQ1ltQ( zI~M6O$in(-!lCtKdl_1EJ%hxj#h5!gp1PO+wBz*3@WNn)YN2!voq|?4ExmkJOm71^ z&SWMF>uSd;SkAv8HIrXiKJONmZOc`=ybT1qzi;R0s#XPERvrbawZqiBe;^XFIs@Dh zn~0JA<&jeJ*%}X(=azUh?s-!tCgT8lJ~HPG3qorNuNLE4fph%|Lo;RJv&JN z@x&x#<#Kg~V{;hP-HX1&ICx%=+U;tDs~mll_UiOXDER^_f!-z66S`!nhI+*T2CX;vPkJ3#kJl?20|QmS^GLOu0y)t{$G z`t)raU3y+}}G$Zq6mJiAu(aLM8nKQ8UI#rN` zVglxuCEFMZ`fZW*zhnv$4UsdaCmEk)#X&1Jyozc(vuPnLPpCAiHr7B^aUk?K;Paq5 z^uHAJ8(@9MqXBL;aM0oNi-ic+t(ah;B6XbzfAqskeghM>BL8`QvsJJeaQPnj%T%TM z3YXrC_vlS4cLcm4`%D!pxB-eqvfEM1-OY6kBwrHk>_fWv+cAz@wa-3Ab-_M^K#dNQ z1|`l@KSF5v7o0Vbs+MEu+? zL_BV48R_FrJshUv$yj1YQKV}$9R=`Ffm-Xy?^M5&_2_Tiwf+)L0%AiTfSg zq@GG4-hP%!t(-wIH9SWJJxcWfkYSd58#uvE)uUtHfMIgY$Bfq z#i&38TvL-)z7v~dN}7)M zvJE(;g<8*f>KokLu5#BKA)Ky!7Zd8%8-5_#1wldfT5uK318|e0am!MlqwB=&^a8qz zn(V80!ibrGkqnl`Y=i-^y0A)0pL}@^dt6OV{}=nKc(dB;K4JuBAk;x?C8swhTMA9boT%cg)t$1+c(G_CZkfQX2 zcm;!HAmFw(bjKld%}&-TTy8wY1(@$RB&$PKJV zXYg-c4M3#nw1QDX7|BfQ>}Ch(w&f5KAQ!K)i`Nn#UcveB%ywRileU|+eriF_$aoNL z|0iN0c<$k!)L=M6b4|(K9>70I!G_&HCCFd%w~Ds%dG4Q78;eEJ#QEiszE%7s>evf} zs{9p?2fq`WAF5(4$_|OaJPHsOYs7X%eQqlBQ(~{>5AcD}bPC z<8pC>6Vqvreif1*tG4NW0>9s$JnmYJpBP}_7hjvUPcNh(5ueuo_S|6fi4yo%oEPQZ z*bAXs2pL~;L?QECWgVts%&Og~@rteU16bh+I-wnHY0bAfpCik(sAR!UgWvG(ZCxZD zh*;OFE=$hA6!7K-yn359&-2&pX!4CU{y#DA5Vpj@V5(Y2eYrJKt!m#w^#_FfTI3ti zwvK=`?!Hzwd(p%N#ee3tP-pxcm+qCzTryrnwM9iyV*42-VXc&R!L45^oO%S0X8@f|?5Fq}-J?QY8x479dxcG-yBSfFv_#Z`6qnkHIT9vLMcZIL9H@x!2 zz-`NqWNpPHN`cWzd-#S7;{MNdYtNWyv+^SNSafH5@EN6bB)jfm(>X+$7GJ~P(I+g_Hm-|SJye+d3p{M zBLe&+n{WK9&mZwRH|x@sV8B#e$@&-aR?6ckE(YlhEf>8h<8*f>&GhSp49v3)niN(rHq5H<1ObihR5GwpGXHECK_*LxN>C^1V#xF zZUyxM&lfz(YEzf_7^y`O;`*M|XsplA8|CuYo!=((?P6*I`NYwm`BkL&6y(HJbB()` zkUi|n*FG1{7;^eqYV*54iKCn$On zIl0!O-r7`9#g9oS9>dnYs5q3?dfz}BlF`HC3f5#is$UA##j+W!4G}JX#PRAZ!`>ry z-hj*)kh1C@ibGj+YpwVI2P?v zrtfQr!Fr@Q`gZg6I z>Q!5S2P3-~vJ|0Z@`xnEQf@!zw>sGcUunWmx(zHl##}m`_AG7ecZiprbj#P;tojQ% z1`#PYGye4JXgEXOggmHdp~V^yqz6Mdm7i59)Wk#4yB>fpSv{>r*E_hOg7w$*Dhw9= z2Gs?7kkDRrZwrxI%J`3kYz4Pk<4ui?YO=z*NE5LfR!;LY*9m2miUZn6%8y`&qcYj+ zhW&I}o1!H$bNN}EgiI=tQaH`Y7|9&!zR3TR^pKwsGL`P7QllR3f*!N6?ZNeT06LO^ zK(UgT_wprP?%=BR=uz#+%M#ut1Y;29R^L~rXPI*;omc)5md}!n z;2(!qc5~f1XUL|8mc@$Et}dXe+3Npb7c8_2B0oe;i)K)V*V4M0(TXO{`nxI7Qq>|F|dlyB~3Fvo;-h}V~HVPM`g1PAz}2xS`6Iz z!|Ge8F6Y%FisGJf$lt-96mPF5APwmrOSU9?F`Q@9xc|K3 zRk}QKr8+ELQp@yMedQ_OeZaN5AhvVW_Oln4`L@K*6lqmJ>d8sTse07*@x_mA2Hzd? zDaK6y2EW%PhNQCMnEOD;hA}@1wWV@{7UyltUON(3g%0rmfq$0P7hc#%HO7voFn+mk zrLkY|bS6W&5Kgkld$Sl8l4Rn8@G4NoCrDC5i~>aui05hKqt$Y&kwaa<^_huLCYty* zL=dUIcyEyEo9=G0G4<*dYLp~la)>@SqH`3Y9C0m8N};AVeq+&|0>b^8q&S-;WOb{0 z?P;%%(L;LT^bZ-5t!bv?B}Tm5S=m`&DR{!VKFoAu4URyJ3pE^MAMWl;=S|6v z08-{8r?NvCj7j{X>ylViR^g(x=OOkc`td)7;;3EpUe0-U;1=Qcze>|>=v@1xNGatHJAMKk{X@nN*^b*O$n9W{iQ zl9RexBu3A-OZo-Q^Cd4c)^EM=oQN^*7rr|M0+CD>-E32nOw7^chKbmX8Gj1 zPC7gA-ZaS#b2nnkM1IWnj$qzb;D0*|#yR@yfUl6llE8Iy~T5KeXm&8>XZM+F2c#k7*{Hnpu|suNyM^D&QceRaR& z@{mN`cu;o2KVXq#GZb?acNjp<4?b)~ID|6X92jQ4{A1x~UzC|%8vn^1Z-`+8#iG}d znqi#6cUm6^ra#Wps$J|YWZ%j;Dga!~xqiw+_4-1x51}f5bx@uXNI&u$_8xZnH$g%C zW9e*KVlD6k#c~HLa>mI&@}C5$)6ou%lVqvH-A2E``C@)fLuSE2@mB4zsl`FDU zTEL%jT59VM_ot{w>&Th?+idC;z;2P$&8#$)bE+xv zV<%OL`a1sUFCO&LXYSh1a4bL^J;1!GK|Vu^wwlBnMU#Vu2D=HW%XRj#E&uhqR)Uiu z7|rKFccA2p-@=Ez&;(X(lt&RR0;U_AKWV_|)83}@m76@}HRCnMJ&8Lgxc!n`+opbr zG;?g60Z0e5hGCn;6&1TI*$%|6R#=SV|GW@*z=Vv4EJqXWr*DSe>k6>?xrLX*Nu;4Mv zD`gyXwcc0od$q3hMY}HqxIY(?!3ielq8Kf3&zS(FHfhoRx$UFRhl2irt|CpV(gQ_Q z9km0v;OpS&{ofGyGlGQMA*ml{AOJ@lmc^^fIb235?&_RGc!=*6wuw*K8zOnPQyQCg zZESFIKL~m-xd?0>qvC~TA4GZGQZr(3Qed2y=C-x*?nVE*B3jwqG&cU91oSXwFU9J% zO`O`FeOz@Ji-N&Tgayw8VV`3NDrQr^kkHPryBOsl-4)Sw&i3y3r7>X>q4jmZtwhbU zJUf-qzs)gcfJ@IvO4U-ILuvfT4PMdx#>NoIy!vX4-4hUVORV3dPLv}{nU~uX`Y;BG z=kA}_DE9rp%vmJ2=I&?MAsc9vn5T`aIXU!ci^#3_P~pgJ7LP*x#?-1FQDVH)wuEh9 z9nZ=zv8{#WN}*-mKpk-E5MpjnsoS4c8Ga zfnZ6lAM5UZRVTe#5SHJ#AzElh(GPHbD}hf!N05cmX!lv4VHo_om#Q=@38!imr@74B z{!VVnFF82(1-D4?0+!j#V|@d**k-CWD6IPx=q+`$&@xTx1LCpj_ZB!{M`VIQ|36Wi zm~`)<(2s(7=SODiuR#R|sqE05JXu~n4BT^Vqe8wBod`TP9-gP8$>qPxL-ma( za~p-fNlO)S7O-Be&fD%U1`#Xx$RevNG1YCg_TbBt&F1d0PxD5sGk&$<2$E)BaDkUS z$$-D@f&;mW-_an~v8`k0>Jd8gd8gV z)OL=d2jOmRkylzscjM0G!p1z@HRL8j39+3&9k~xb&4~grcXjA~lbiR^SR8HW%0zzn zlz>>OQ(=b=hJGf8%8QODfnJ~z7Dx&ky&L%j{#!v339^%%toeZ{AH22!f-1ZIr zWqn#HEHCp$Nuq%&Y%(C@3Q?!x`f}Dg;6>_pmEbj2(m_gjitbnG-zJwoa(~%Qmn76* zleNV@Wl>sUuZu&d`CaszZAMyOHN;=_eLQYN56FM@z9+__0=v>$H=b|XP?^x5SRW^b zsxE(nJe3aBGt?5!Wq3@Tldb`upla2rF`^>_@#Qb_bQZ70g+LPYXaC4zE=_DgniBbS z;6^j5{q%{+jF6CPT>h-Uo;x~} zJL5g|ajFg4Ry6DS(-znwHoj!>JT3a9wqmP2(xVF>^G)c^s_KEg=lE}wC#q81}jw{CcwV*WrA_eqTEs$T6m&64941d}KWn;ob=dgJ*2=+$D8h)-4CSdauHB zjmP{Za^Ksb=*BdK*jBgU;AAv5C*rMSqFZ{mASF{-oc-(r8XSYu&RytPX{SKQlU+@%*}L2`CIrpVIUws`**E^X9j!dm&m6BHN*EA zwz(4fbGGXpL&MNMFnQ{(DZj_IkYN2Qi`dPo70HG}7}vm4>dlGjkxy`)_cR_k_V)}< z>Vz)=1Q$A5yyC?JZq_lEkB<$fMpW1Ol^4QOr3Jck8EX!qolAyT4 zT-PCxt)daBijN6Cgt9TaLhF*%mx0V;6hb53umXJ#jr-dj)QJYQM(tNH%}v-~4%4WP zRfZicXY#?94P?bGt2$Ju(w2c3pCvg>Q22k)M+M_HsCR?A!_8;`1C*GG@2bC#D$o<3 z^!+!2f>ZC0l)zzDVB z-s^Aow43V|T01bc z^Th7fCC$yZHcFmaAziht2x;!!OE^=6XF7X)3 z*MHNxMZQi;^geV-iK@zZ_Yxl>JXqU)wM6UTrnO5+Raf?ug#fDM;OLJ@(1v=A(Q7pN zSR%Zr5>buVC&#|OB9r<9DU?2t_Lb$0s2Q(&Yd8@$V+j1MbbX;$MVa21YwFaPtI5&p zfL>mKs@x0~<&j5EN4@gXaBjUm#puW?rHI=Hu8V^XGj*(<$qk){wx_BUXn;F0diE};d=bq0Y-1FAb?UPuF3%nf+gEtIKH7b2fdYg%9r=M1WOeV{yrGwb+(*yF95L zLIwz4cdsV&oogJK+Sx)(lR-&bl8WEk#6?zbUzQvH72L9bs{{~)4TgwtGl^f`{-qXD zb{@DpP;ss9oSZnj(lI)8;OvQ+hG3mpXYSPwba6f^)?l~-EF*p&VMYQ&&rmYCr?Aoc zC>hQJ!OUxwjC!KA7OS^|KmFGf#ZltjjJ&;8B5YFM=a(8WbZ0GKJe!Kklu%2kw1*J$ zeGyzOP&cvlApxBxHobdSN))i9WO-0?O%|tF=RRt{>wzcBy*}6=>DGK!#2%?D9eSJ+ ze-8~j5_%uG8gS8XfZ1P-y4=KI)aE09T2}X@;rYCwD5RjidC4+`l4o3(Tf2|0SE93w zcf5}!KGuLcyWy1c8DBE?fNf$XXD(zrDIX3fiG1Mc2qWFXk`*22G}c5Tlsq4H4npKrP6 zm(H_5gL28BrwrqM^Yab1e9nKf^1)lAjz_s&*jTdrdmVFjO!f`3>xcEZeFG53?fewE zMIBsn=;C9^ih3S7OXXok<o zsLX{lz7C~9UKAZ zkbQF8xa>ZdOOTzp&dW)UMn&rxHSe#^~x!j?d znm<6O5Bh@q7c0vBwPVago#>v@A&i|m$YuOZB?pcGal|ma3V>FdFt&Nyay*WdENlX7 z3FbfL;sA(BKh?W`i%fy09t*|yEBo6G2tfwBkc~-Y(!a1@GX;)AK)fR|LKl~>FBN^hovHbYJya4+QYX{ST zEh5BuD<1hHcK3q4v)2`b>{=*K%hJR+J9L^FB#?HpKS~{*laDkT&CEIkB6q zYlPd(ezwzF>okBT%is=Bw%XqVrXezg$h}X(WS1!HTi!S>d^2`#xO<@NO#ObIP`R0) zA167uOICxZ#2c+?&Y(?Wo8$)^Cx`b4d6cjL?85^Uk#%yyCKax3Nb`)}5jI?5ZfU9z zy;fU08~jyzG(7w`-hReI&F>`4#XI2+@haLu?A4y|igeXI;->49LmhaF&9H!AB#mED zto0^h4<=l`C@7oCto}7JEZ%}RBiyu>P@$)ya^?;sZ)~a$ea;nLYpculPEJ~HBYXu) zb7ARLrYNUv%UToEV3ZAblfc5YVf%v7{+Y;k{dj)qpNEYfpE~ARZDs5EYn|f2S@@Cc z<;~JbNhNVF)J0Ev%Hpv_h3wEVj$v0%E8YGGB1^LPQ94+T+9UkMw_JV; z4n@W$(g$qJc!n!wc7OY4C0QN(f#(9jknpA$4xSJDo65W@-Xwz`Xj#11 z6{$?echPewEbqaN1v_nR& zT#DBHEW~3gnEyZAim0Cd&(W*lv~t=t0tVp z#7YOuU+^AXiw}lkcS$gH^OVVb+<1F-tg(mJTSDpzRz^l*PK9EffYxeW8+zFy@$LRCTMWiLkG<&?r zM*8lGwDFTTVAxTC7`Dx*e>sA6+_SlsSG)mzIzWc&4`$2yqv}rm5&GZ_?Cs9nuB!?EY{M*F{TDq@5!`u zgYaSWyw+V0-SX@dn43X`28(|D2XVnG^%vKEJc}+Pc1>saf*y3CA7_5pN4^$Kh^ZW3 zxd{5HNA1W{b3^GxV|-;S8M$#07xz{OGd7w0Y6+VU8zD5k6uJvu8kOoW6wKeBQe}MY zt)or#MFE$8^^3rsa&){K$8*`P{87g7C7W6HCia9q=y)ail|zEX_7hXFy zJO_{11Glyw>;`8zdb#TYH7U(I2Ek5gAB@l2s&XC;enER{W%h=g_*nA!-6gn(<^MQ3 z^KdBNw~Z&2q9~Hxgha9=*^M=Pi>wJ1W2sa^cE&6sDcckZSw-YZm{P!I9bKLiFKi7Gk*XP_Q_)t+W-t&e!`F_o+_s<1*VpuV6ebmqWtaLe0V~!wRA{| zY!;9C8-6!dI7aAj0Erh^W0mV4vT8N7FtICfqw=woh|zXR)ey*XiMgub|NRt6|4^RF z_(TRgyvC=4oBL71F>MIM$#-_@&`I@q?Sv37w=A9o?ZQN(?2?I%T2J;7BVLtPq03F& zyR#P48XT8WecVodtdCwolhe{7U06kr_e`YS{4W9bhv=W^^GY9}0k~$Tuy@zW5B4=d6T=$S#g1lWk=MTqglVumWrE97rfPRy=&4E`8?t`6mzpBtm1IAl> zS3a!9El-6k?-%I4z&}8{nRhFcX&wO|&VfIg=T_->^Kq2skqW3Grp)t^)zPu=AISrg zs~;jW%+{nrcCB?Ao5n(wpJEl*SM+eO&p$r6*NKM4tS6a$sEDFk)yJ@WxB?!dzOho* z-bGqBRlxO+Q4;&UBxV11ldbjZ0!bgT5y!M6R-4kk+-zmxBprHui&x z-IQ+{@TnzgtG7VqL{{5HynLMt+IaKasn74q+{fi3N1mcJMXAaZ-eb9;FA51^QO;lG zVu1R2l!<~o`#p!%?*lmkIUNT&0yA9Q5?#zNlWEVG);a+L({xC<9BsB$$s#x}!lEQX ze&cp*d)x~wtxEDE@1$DgN$>?-Vxhp9yEkK{vtJ?bLd~| zo^joFnR)}gOUC93?DHWkM1&E0y}y_FSapiDmZ*wjDL%Q{rPO;^W%1c~@YxR2@i@_e zLsMU;UF}iaWo0C94DMQsL~!!CHXEq0j!&CCuysIz*f6 z9}3fQB}$MIiFylkS#sLn!#JAhLjU;coKW%4*8vcfQQDwYK0C(!4MmjyCyL&?Uos0BL2CBu}#Vm(!hUG`@`Q7u7k9KW{cP#^GBhnU~Clj z-i(7n8l~g6!FXSlpq};tMtA4By*<2$3`QCJ=~f zh4`NVQ+RcKViXta-He?f*ua22(wYx=aOrd^Cbj-QT$eNRreUzyHhHRoF`7n+ENn(d zgr}kBZo>Xt-X@BZuKzi(BdEhx0_+_lQ3l&Pe%PcR^W76!LU#?RAj@Ks1obs!eZj~e zWKm7dLz>q8+J_dE>lb!@uh##0s}?O^k~WmRbRYdV|4x-dJdWrQ5xH;^dls3qeGaImt1wZVT^PjCKSdTiLrA>LK=|`6=a6(5kD#gETln=V+Ss0L@RCNou z@iiLkw*2b|zVsu13HWl$k?l!P)jh1xDTV{!Q7USqCIHF;N6=JQnogA%o@CyuDT&kl z%$-L)X;t<+pF92xG+u&@S4-H?^^Ty z>xzNL#6xF~o1;F_mt<>aD15S=d=|rI=g-HIAAAJAy>$p$p=BUpUYk9;ibS-Dp{a;b zW|$J|1NfpK#>K9NzX4F>hS=K0K8Md$l}D7N#H<2-F{rw@@Q3NpKGORF>h;RmulZr! z_5Z{OF2gJTtzVWB7#8rArGbs8zsCZO;Oz+RdEi^{gffKGKd86tO7x}i3F*Z8{%P~k z5iEv2ATgmwlAi@5zBJ96--wFuWTvz%3&}2e?ub|@>}}V5yNRvEVmSz==ZPaS33bq)rtP$}>CI>3WO* z050o&0X&>nd12Sq{G_+TMy~(EHTC}U)>`?eIIw22OyWPuS~KXEnM0=$W^AICA8kHs zv&rkG3v+jAyB~$71bTdAFY&20?m9i2c4GtrT%=!)o2-`-0;A zvv8?IyytA$rpouaRQ&`VJx2W@ao2@;5YZIzMXpL1Q&^XxPa-`COz0!1(Bjy5mlrI* zOzKEztsnEMrLm6@Ga!HY)UUPbtE!<933wT{;?2DVCDru`_#wjnN1bQzba5h|-v2J{ z_7gy?yGR1Trmo=L$?S;=iGOX|6w}N_o^NnLz`tisuU3R!&NnoLo%E$|zP9r{tl!Ug zkkiY}GM#C+nKs?{bI$WPr5X_@K2Mt_-?Kibwm5ujI<-Pf}o`iOa^}NyP zlHcEnoJq#MPIeiab4OKZxFtPs`;vkG*g5r}8CCVKlBRM(3SR=>33-`LpE`rce17fk zXyChB!>67J0%zpU+_4Ty4mx>91~;v^$Iv5C*O+;~v%3|G@}?L_s_%BM9%JkGxDRv( zd6B-lNXra}zVqn_P+LY7xWbTa37a)*--D$6Y%UWPqo%MW*L+W?dy2AsZr^XZ=x_BR z8Y>Y?cs$w`{w_H{@FwBUw+Qs5oQXs(sM+pAms^mkS5hxg8&6n*;v}ON7ur7ZeCAQd zzf4@9kW-tV3yJdt;x0n4qxALS-G&HsT4*!|@&PkoZ%vns<*iaSc9;EX%ikXMN#_W~5 z^P{OqqDf!K&3x984inC)^$Ku6&ffIVl9gAG|O$)_URFVe8d-9znoE&Jcw4#kQBr4p6W5 z4(2$P*F4~&Xmm01wN0f@Vw;TpaB6h{+{Byfn2UtiA%1GM z2>h7EQWXB`OZ1`-JkWT}g}l~xM115WTKxh#;I1xDMK^T@EcM0r@kYoSkg4JN8Ew7|olD7N7On)<}|KY`=1zuACtnD1imd>c3m;- zxnHbUHM~83fq~E5>I9}cM+Z8N8*mG%DZ~#7e33})v?QvUdjsDr>FR61$ITRC*NuWt ztT}#I>j{=Rkg$y;TE#b`Z_e|gSM@nsQA(lKy%nVwNZ86&MxtZL5k*l z$a&mVd1;gN^g(@J>FT$LG0xRJrXa!PGkZ0)w(Q`-#}wNqhQEMaq#{4v9zq-hG@Ti{ z30>-(-?@6cKXGBErm~CkIDM6xJYTXDgaYXgJ9md)rhR{n>gA+zR03;Fkt5a=IPcu< z^{RVDJKRNok?q0Ar~mNw5X8%UWQV~`t`43IAH!n`B*3j4$il6UHvi3++ezNQ9gJiV zbOxQxX-0z1Uj4nJi7;BK?bfZf2i@$-JBHC=CWn!8X0zDU>*)I;JA`hr9@ey8UvS}r z%hU2UWw=Jx+iB@A9p{p$v(AM+FAXyrexZ$GA}>iM&6NJWmFw(1UXDADmoxfDEANi@ z4?MCQ==13=>{G@4do48*Q48HZW$W87SHWLlmAGr@k>sqE>kn(ZD(2!zIEg%Sn-$Q z9+J;*@NGOeJ`j5^J?%0HC6?tZg1iXK?%4BtNApODfs_dJ-JS1!tNWc;9B$%Hdcg&x zY~&ZyNo9G>k&-N3tEEV4?R$J5iHRi*A*;Ay3fH(f6Sd+&-*Cr!paDmk9`8bC3lD%k z0$qL|_0vx;m3$o3mYhr3-$;CFc?0FzG6;76R7o7sw#z&0zDO8JIxa)DO}`PFl1{l~ ztTs);$s(C+)r$KT4L(* zSeIc~Dq>hnZ4$#gu!{=5=++*p@1!3`p2)*`8m>{@W<{=xDr9$2+>w#8@|acL9#;4J zY-oU92|OC&SM!Bke6@4&)TTYr1byJxJ#A7kIU?NFiZR8E!$rujR@qmiRb#*;PJThg zRxSsFJq!MOn|iEzb)>oaK{P_EqY6S!wedx=5iEuOz(gjS>Q{JvEy;?YQ1vr!Dn zbbXBvx=dZ<&QXxlt&$gr+i&^!MHAaKX1Z<2w|Z~ji9zURP|;c+^?Ajmx!VR`21N?b zpkqZy{f@6gh~R+?_QH&0Q?)xYPMyFb*;YSj^iBE+55*2t0QWve7r4<0KK-JdKBDg- zjjzscedXRM+^5gfCv|?cl8#snKfS_->Z=wH8K(-9yH;-u7YZ&r(_IfT&Vn$Jf1V_p zs`VYst}-{PAP;C!hvs!fTEU;IhPj;RW4l5fhG}x1?2#Oi-o# znsA>6PP$#s`UHv5o`#h8oY@c<5XU;q2E4ZZ$aTx|OQ;IY=ncd;3pqx?Ksx9=E|`WM zd$g3m-`>CC49{WL3c_gcEE;)2YWIvWe7@UA2~tIsoPM==FxL#;MAj0S7q`N*knDnd zOCGmy>t;d`vXyg6veO_~*Z=687;nQ{R|I4C+Gb=nk<*T}r(Ir*zrO$_U-%l#La?}_xN-J1g%-SH|x5gS6h$gKHK%n}RmEC7-lpf~<*Tx#EJ&0&&s9p0vw zpnM8d>1_VcR*5glwXpQ50`jJQu<%Q$^KNV+s0HRR8w0x^)^^CLX$vkqY_$5XznJ8S z?{9Q6i9&JQfodc(j(y({2+4eVD&Ka_6gBnL=FSv8Sib9GfYlPrY~RxL=zRb|N`4 zwMIP1tx4_L)GFdd%|=w7{?;Dm!2w#FK(+mlA%@u6x&<33oOVur^+H47Lq=#!yMP&y zlv#K;DW5fNbc>_B%}K#L1%(fyG9FJd7{~_ry7QZJ&ZoY!wSrt`BB2nawPpb5iO~&L z4jxgkoT1%N%4`^IJvnA_(TE^}B>*yjdh78b`oee?UuF2-ulHb)NG;pI05)g(Lf?w# zb$CQdX0P7-UJZ9`DziFQC8&Nm+dJ=mDfcI#H=BYrYX*ykOZf5v=tFN^_obolltsAD z+?V$`0O?^|A5}~BXRy1)Nk2Wf%Ft&^Hno5SE!*eg1tFUwE+&Tk^g>@qWH>=hGg zOHrtAfiDHxp2dX2Ps0T55ppQB8@x?h03!Pq2NyqvekaWx6VaN>t@g#8Z4&UqZF4rQ zB`mHwHg=Cdt(A_^Ip}=j{;%(h2(tcliWYcQo~-Grz9dL@bO#7SD%}@{G6qRYG!K0e zYg10`OSuheA^4lxUbn$^__;|lv=kjL3TTE~EN!0Y5R!-!bDou07dwL%$2ji>??Hlp z31$Q+w?wYZJ;mGpGwOiwtOv^MU_;6=w&DW@Tt&Xk93WTbuF4W_?!gDR3{VI*r~x-- z$IZNv5irdaZfQI<&BwhEz;dx)c66EKVvl1m(MF;F$o2iipOcdNCz#Vdl-7txNly%u zS`G&2GrP98cV(-hgMmc;h|d#8$Ia$Xa;~frbhtRwbmtEN|EL!`+L;xG8@wGdz9**7 z1$J4UlS*ND)wgn*c5WTCI{)RtQN|k=bi`5iUGP1p;!h@9hUHGXbTig{o|!eZKd1g! z=J-mqnQk<53+)Ij?F2_u?y|u1`@d4biDDHv;j&_~GhnBeS=kyiw`uE5vT}~uu$2Y9 zg&o0b5v>NDEX9^z1ws%c8^Cxt*tY^tK9!&5N%{ek^NoR72(*CjTG90_Ab&wzP^mFY*)Q#=)x5$MVb@TVH!m;(W<5NwNJu)yR`aUKd7fPSG zC8g_qgtFIW-O)gQGpuT+Ur9K%&xqjPk8jl7d17+l9Q9_%Rxf3*I?lnVZ)3f=Q7cK{ zT8}!6Dv3L(dclsUoVD|>FKxx{z>H+J`k1c0ly4JYCTTX;y`T@yEkcv8E^w}|$>sHr zouCRljX!w9CHE4z!nce*MK)$8N1a1}|!;9L1PLOL)fJ7QjG2)DlGh(7NrmOXzYZ%>gTYbh2r<&M$ z><#N+bEuu@WSwqxar)eW<}@Fk8~yzq`$+}Y1q@;>b#nnc)-zfBPt6OYU;q2|{5R5L zV@z_~TY}bSjd@bBY*O#z#_6Etw840dN=>f7Kon1c5;50M2tObqUAcTn?!R~c1L0_* zzZc{@&MVO~*8&w!$=*}PeGT_;i#oB$4g;Rk{xB;>^jzY8S}b6R`uTPHy?}u9(Rzfs zz^p9OzenQ$kTn)CFoN?RxY}nB`hMnmfXbKUJLG=V(&g^p%l95hYLJNLrg;MuuP9&r zO3fpsGXK6`dtg7WAI?LPJ<4q~KM?tvQSi+JnCH(;A10d3)~X%F*V#Sr*yOKRvr!$4 zd-5({sPMM2VMXYrNv${i+{g*Wc0RLMg)Yckq%;u*Mu-iDLV+Hy-XukN&DlcvN$6{; zLk4XJ3|L==b9Ur`#Wn2g2WC1pt2W@d%wz00Lj&M-YM{_UxDM_ySAW?PKGpCl;ykHh z#4(e{if~L708t&RW``$>MjOCsY{2{+E z5CQCEz7>Rr@74T6W)VEy8pdBjKj#Zn?j599MCAu}Z1+{&kBM}6b^n~;MpxSb0k=5|+I6^i6ynj2K+QxR32JfqW82kmlu@t!aE)K;s&F~y7mgh?I=iO}i zecd;f9^^e-=5sAC?aVr^9vIJX{=%Z67ENZaT`Ezd&aR)?+)nzPI z)nwC6IG@KAA~=8EwBYmLDtvz^XQE;`t+Yhx8llV&a{&H*ZEDKEL#*tCX4eSLu;6bt za~k?q<4)8OFj4A9mBFA0X=(NEfj{?7My4Dj__l8r44bP8Mf18v2V_(D~lIX!TpzB zr_eFv^Rg+P$Pe22G4U~3Yx-$nawJ#P&gDYFEQR(H5`wT*?*psF zl7h8G;TxXwmnIbFqyr@Un8nKq-7>aQ!hrqoraxVEnRa=x;umz20yP^t$}_v6GQBZZ zZgO0PDV|%1K#e#4y_87$kBQu5tyQVNt?WF`3{Dl|VK$@cU6{Gk!B z^TM2;I8EY=O7yc|uZH?;OM%Bi>`=k#fFgxFqBy?u;6y1Ts(h@GU_bYbl)>LkHEjsH zj91R`j)46G>F+dr^;hn6^PV5-+JG3Xim=#z1HIuodAFKR&x=rHe>6*MDF}*UA|Dy# z)UJe=j^sNE2wtU#y7zNc4cn9Xfcm4j@T0BvSZnMr?YFD^qt%*G{+%q}!1>9P`tX4% z<0i??Z<+0ZZrQbb+k6Ziq^_E*;|m(FE@d4ZqRSjXtk%a2SUR0v(e-S+<532LIdi9F zirj~5MUB?8yK%PA&DrCU0XrJ*9k-6xVe}`%gydn@)7R2N+{yz?_PBqslsN8Bf7b@( z#uK{*ll>b9pws#DptQ*6V`!}Rvv8JAasyj$jl)=W9N&ZcbMen`S>Mcc_B*|Q>wDX) ztw3S?7d2zJ#YaLkx2swRirm08c|3F}xg&lM_BM1(BDYJpzKnIg?JdI&J(4g6E|7k@ zWm_V*+8|B&#?5V)VI9R4THKn~LP@uL31e+nINlTXbG|Za!Uu_lNpUQoH$Z}TjHL($ z7uxo3G*WH_XtkxHNN(k1j_j;DZ3VSXnk zSkPvhbnc^RZxOC++lj_IYusN8cNE^eyFlBn#C{4-bKY%G>zB4X5Dr0|K+U}EmZn&y z@Ti~V)_au6weS|W(A)6d7R^oWVTxn2I!z{$RP)2Zw5rMZ(kgvNl_v*ZTA$j=qp{4J zdD7veW>+S>v{$|L>#P;oaei$6*ryJ*C#p_(JI^= z@NUgIz<7Gvj(2lib;(s}td!1z&uBS$>mTfW;5pH~>v;S4xzVks@#zU;dCGCHfU9rl zA8G!5BNVLWcdZWjXBD@3`dgF$6lbYWUGycwKi{ts?Y9Wj%Z>r94D!HcBP5y8HKn`k z{b|GMJ^^sf-`|vRBd~Q%%cyGMx8XnKAQzj++vTM}?5d@g!4j6fh^Vs;oh5i+%?_ua zaEwQ?xTOqsIfi+t;gC?x``pe4uw`4ymB^4Lt31UI!LH6@BoV|fN?j}je4a+{SthZ* z5?mcbtcf}HDb(t1iRY0VJ444_gB{tj-8y5O!PbLtkvEtHogdOUs$rs=Q}^su%iBUZ z*Cwh>*llKdHJgt;Zfv*5m8kJf;p;FB7VEsLW4Q3OQ}wsw;~|*`m}8gm$RZZjJ{rf8 zqFB;0>~}6hwH1Qq?W&enBZ>pvBl7NYoK>dxQX`@7FyBa8(+8L#wZNv^jc%&=G#C84 zX)Fm|;r=5RK@Uhi!BRd(;c*H%^LyPpD}0_JNu}+y`P?171Onna8?rJC=k121<9&1B zOliK`^GftP*^)-dY|SU9XJWqV4%CdSL*_4Tsw>@|{RZU!ThqJzs1sSnQB9I4FIaPJ z!W4NIeL?6C%M>lK7r}k$zkSMzlDLq7_R!Bg6xGnHH9DazedLcmp>9hXG#DBU+;P6K zqbq6CGvl1Fw#Mab=YLfVMkI6IeuWUeK-?q$fU(c$nDDQVKZk_xBgo(b%7;a(`yO1IiXUutyk3%fel~Z%ZssXYlZve^=-S&3ju!;T?~Uk9 zpvP4%VZyCTb$0&SP5~dtTlU(wZnJ>SVGU2}W4^WZ&VArc^;bB3PyO!UoTh5EFMnpQ zx8kAu`Z1b!o5QJLCe>Vh%>-P*f;R$WC%AE=3>bwq9cYk+uq%dX+zq(1Qz-eEe2+mg z_yE)^1q3EJ*%zZm@91xOp=txfk+{%Y+@&zD_%@t_Kz19;==5G%{TrR<-p9B9xYMx} zo$LVRVq|~J_dm02EdKiI@mQR6S=E5frERw4kGLYVmeTD;hqtyq%%)w63>(#yP!NCS zOV>8JR;#|8bdyl9$#t3!fV|%E|J$tGY)M8%ku0Go_(k5z;fDsKBH-3z;r{r$ zr`x+-t6KnOYa@}6+2F{C5;e_+QV6MPiT|19hx&7LoDy9TBbEb5h5Jj;V%>7o{1
>o5}sIHh4b=y5+FZ{p>7SQ7=O~0e-?L@w& z7Kgy4_e7p;*Aa8;FyDG2iM`|=9*7n-w^jgT-K5R8?xo;Z1E{hb1@;)K^Mx)OV-V8A zxpxE5Ewx(G*{{-LZ-$ZHhBC_XmviZJlRMPKDst9RKo+-n7*tF+xQs9D!HclR5xP9}}6p9xml}gx1ri)b-$e#5r2915!2GK+CVvOj<&Oh&#C8ZpZlDIcFhpI2A1F zcen3dfJRr9)jXm1%Q&T$A#@(So^!1RVTI~7L?=gvK!i4B(1r8dkxeH~6N&{|6SNGjqK0_MqpiNHKVfOf6j{9~2F1RwkUHl_)R=Q0*wv4CR5&ZpP z3Nq00toB%=##^JWV>k1DE>>O~P(1cfb7%kJy`&DxP5|rb+mG|#Ut^~p$h}ny?}X0i zEr#Dah`zJWbyd%Ic^mR^?1RW?V5@E)XWNMTK_Fl&BM$nTw~BMj8u<=Vh`O^@UG>Ql z<$%CjpB19#@E0)7PqTGuxF5Vk!i5KGg=i$m9gW!a1Y<)JOnEc8^X2?r&#hT!0hSJW zfzTvRNTlxi{T02*Iz13&yTocj;=uG~P;^yJ|6xt(x@^VdM68OWGylYO8-;Ql+UL8t zpM^a#j4&cu|Iv-c6J+4u^Ny4KETtbf+ot%+K;Q(|q(p*mQmnQRZXI?Ecg`h_wp7yG z_@`+PvbrTC3F_mv1g3!8W|338to8m^1FuBGZAnO4o-t`pIlIbn>%753HC78{aN#;e zUzr%A$vH|is{S#WbF%h>~L@`0b8{Q7`F4QiYr> z#X>46zPvxss1HIh8myY`*D0Z{hik$wtY}ZC$zGl!tsIiuIT;;VQLJZOyM=kS5eZC~ zEfL!^MmuXt5B!`;xSSqt$Wu`@jUXz6ETOmlbsl21o1_(Cp9|IoIfb)6TOD*QX*r|! z9n7K2#L1{0))7NhF2+yl*@Nqt=ezNSJGC1lfpag;p!%@=a41Rfq1 z$WVpl!gO9MxR zl)NO9BPB6kL@jX-))%jbec3ihVx$olQ5Ee^B|uBmobPo4$xoz-F`dMHu;rE!P6}G?HDLDdz5<2d!tWy9}?E8697Ol3x?XS%A#$3Mb+s)HJ zvo>yX5*a*^;R${E(8of&!_D?}&Z7=9o9nAyP2#mLbHiF$8!OiY1Yym=d0wIbxM7Yh zR0>y94p@yRogFMPArzt$@dFvVIeVv8ZI_Rxa0HX!kDd(_Z&&C$h&}cH2i@RS&)eu7 z+J|$8q;%4r|5g`B1s6(1RvYIH7*%28_r_5D%@N?-kyF2t z803@VS-Ll&)~*J{pm@eZgdP0X`3Y|CI=F4S;kM>AG?O)mjJm$l3*llNyB}-AqveU* zQ!aq)?I`s~RRq)KZ!gRoA{+LlH!jfV#fltFm#pHA#$Ws$Q|o>85?BW#k={LQE5+>% zonHtivfhuc^_EPky*QDD@xfPMs;fmLga<~&-t_@~VN46fm?|JgO_v$Jgtzn_?Fg_3}i1gyVg zn`Rt=w_t(~%B=CU$!FZ_E7Yi6*$713X+ud4cXrh^Oi2fy#erW_H9e&&X@`bhZ&6$L zv&t&L=C{x4u$rHkEndgD(+n$` zy=W~NDC~j$dot;-7#`icCc37EJTd@GS$iVIoma8hcUYUe=t~Ph@ort~_;7@BJslkt zgBY%NNI{wbcLX;d018--74SSe`bX)8pM#o(YKlWzz*LB-;kN5;yr<3X$VPEKB5;lu zHV`N@eM&?I(}0OJtiv9KFGK)>Zn}7nOEhK?8S%|OvUC7IQOIl3;~ENP$OalmIfi7l zkB_()lyeccw@pB994=^R(`oS2j=NkeDLY|?x6=MxU#{`QxjZaHVw=$1+$5jQfCl_a zk=EggVw9OJw1xm+gvHL?D7ot|p(p@(CWjAo$M-GuZDlOm3icLibom6UAv?dxLv5ep zuHq426(s=E))UmBuJvf;qHpjckPh41ML*_iMwZu{y&jSui(2|@hg+8qoZQP2qqCwD?6lTk-5W#?kNv z$iK^jJXGibpjvGal`a@jl~fZG*$9*D&j&zmLzxQAN63_pu7L9mjeDZoAu0mp5LjIF z^I~L6n7tukt~9SWXW_3vP;50Rcm-uFyqh+CotZKvyxknQC2=ZS#<~822ZR;wG21%- z1td>tol?HFWykLF~-@xm>Q(|ruO{x%j|Ia{#r^qG(9))Df zMWj3=7uxE(Ii1^G%F^3~XW1^lZoUiPXQgvq!)$`slaDNR@|#UnyEy=pf*x z>R1=j6Zk~9oo?+W@OQ{j6g+FKu>X-ra{++WRyq;}IhTrm0xu9f8Z;N2$*XmF4v4V7 z=4;!uAbCX^KkOq%trnk4p__&>Tm)|1<=FFAS4|B4`dw=^A5>jvHQT4STBKruhQz`o z?1NvyhO-W%cLLENryu27xu$xswHSH)Ldh{2Yu)%EAWChzTkLV{~NN?447CGt}v5os@dK)g+No6)AQt5)>|4VK;h zBV3ZP@n-J^uQ#N>%y^9-;xokkSuO(kjupOMN}Q}UYK0nhj42oAsqJ3b(ZGzjXTQal z`tHt7y1HO^EWPJybGfY{y!6Hq%j(KBWHZ)gF_`Q9-C6s8mT}e(HT553?Q&|si z;w7g2fn=8ne z$|yYh!&sm%@p-lwTJv<+%_fQct5~%IBRY=ESw8|zV{5HetM4TBV?e_`Dob^L{?Sif z@&svRdw|A5Dz4(RAU+_K3K3hw3N@dAisEM9h3wqKy&QLL{6Mf|STK~ILf1SiLY@1T zKQ|juks$p7^I-DETeXnqf^7rEc%HyD%2Qk2L`LNy0EuM;ByIIdI6! z){BN=asvU9Zamb6ou3noqCi>#?3>CWMwT8yy3>)2J_g1|9mQ<~{MTTiKM5qC&L0;D zJ7@VwzT<%xDq`vO2W%_k)GUv6loX3Lz7SrBz=ih?v{Eu20Ll~NL z;P$-e-CA8h0y6L5+0HADo8tVYENe5M1+}wzlx;Vl51PV2rT0WFQ2nE56F|U=cvjbB zZ$$FZWm}8EfndSFyjAt-H231BbxFe2Kdv8f8EI8+rW|Xk3x%#X&(S(`(45tG)Vp>R z?ejGi;D1|x;we$%af_NnF%2b%bU3=lYoWdWD@^F691Z^|$#Jf~?oEH`s1*^Yea)ug z2+Klqf94IiHjxR66(juQ-BYtTL-xM;y^#GvbGvGE#GDv@DbJLS@BpfEX6g&D2psjD zCv4iH%|_7Y3a!nBs(&7E>qaKp*k}G2fKu_q)YI_REX%K9Sm2l1_!or}Va_;Z+8Lg0piutA7-*>;oQBs* z!f!ebDuAxDqWw9kVHf-0oJ(}dT*VhSVj7lHZ zz&JDo(_*kUmqOTxjKxwl`sAScmA(Pq((-CYKUZf0#J)Gze$BW!!{F^uA-U#Y^xl%P z`WOq7DR{B(>Uq^?UY#R&=S9F<4AeUo!*hkyVLbXc=!n7sP^0q|d;os&E>LRYj?dt!Lec4g3*-jyd4|Qpy>%YoIb+a@cMsd6rrlsyvKV9s z91aGsz?kbh#rzw)vePtePbs{xj)1fU>QeCJTI9nNMz-{+q~K5VrW2$OZ+Y0Pi1!19y?7C@Ymc#VB0mXns)w%RkSj@~af@pzyec)Ndb=11+ z=Hkv9>6;{totM|gK^ENWR*;Dn%nI{l4s!MtI5i+zO0FgTMe+&whwFTqc3f+OtfPjH ztR=_shdf)y`WJ1`bH0I~WSIr;6O8CwivrGfqa#A@Z&(=hv*0f^;iUnxbAuuo>}`tl zPyJxnEh+D3dQ_(LciS=;$<>?$W0tBg{rb9YmM$pm-qLHNAFqSna3m zO6s3fOf*awsKP$~F>)@R@+9dII&Ko1Nl|*fWw{zIi97B467<&k2`5+=JyFI{lO$tH zdZ`92_-9)_qAUNvv$bz_Iok?gMMB;o+2ir7_wlaoS5JvFfjubV7pIUpaMd*&yd{A? z%y6jC_Zx6pxwmKaAuu)Y)?=WRc4zSl?}8Os?bfQE_6qcXz0|2h{Fy}P!Z-mF24m?p z2%;WT!L!KhU2c{uZW#Ow=79?g3HKuB(i!qKck2c^0o$qR~2dIbwS1%$9(?nkZn3#h z;L#cCpARBO8BZ7+WH9wu+1v+GzjRr1B44(pTA3GwstIjPZO~Fl(#26_>jt%IhP>^4iR?P5BMys`fOS_Lpp{d5I}Yr6EkD z5ao&7YnxQVPsN;Zg@=}UGnTjF6RYedvJax-90>}crZ<%|GNxaT;NN^7CfB&EmS z%CHntL%oi`rGW1q?(bq7bJ=$TXB7(S2!KWUHZ=?8)RmnEODpXY5fS}LY^u**(=|#h zt+Gw4cRa+7SYYj^y7rh;Y6*J-(|IDk&(ox|Gl2-kikdUJc`GN5j&yehxoIuI zGHjqur&)^=sR-2;sN8m_Ic(Q@CCbvzY1^~ywRB(Fy(Gv;O+UEupnmyyS+3GW#u#1+ zq(*%=yR^ay>bIYXk>yEfRHW;gT+JOLf?4J0lXJ@&$Iu0hTK22HKNGTb*w|p$lMmSS zR$7q6%CPkEgJI_~(ygsmsoHkqPJ9EnCO|3PdimK0#%qDwEaNfEWn~8nm;3Nv&vXf) z7Esn=)Ls3`b)KD>@5E#W0aNl{S;WB=^zS7@qSCg!h;q=Wm0PiNFP42*k%jBv8E=IH zD{mQ+T%`;^Kh`A`j}ocYrAXaM9|_%Ty>r-rB*tzOb{k!u49j}B;U<<5QgjfHH*u@9 z83h1e(Dxar8R7ABJ?FmDDfJm9j2{Rq%YZp|g4T4zZ#$-xYOI6W-A#zQU!yV$?NHM> zap;`W`I$%1>>SVd;&TV^Z48UdkiNrV?P8_?tgCw05z06?SzujY01_#Ve-%e8d3>#EI%r(p7YXXlzEI|k zJ;5Hmf1R~W4}x4u0TEAJ8Zok9-fQDnEV+5rfo?(K@-^oz>^4>S=o=VC*o#GSd1)u@ z63lh!P@^_dUJ5isr;~n(Fg}9+=4O<-B%(Dw1u6hX#v=725)+nuNPYgo^4P_{Ww!;jZNC_#P#G zjdNdst~S<5Rjr${?_yuUO_yIusHK|4WwSVxla zzp-f2Rvfn(bLl64dBf`%2du{6*}Wf$AmtXYY6P5+eOMWuW9Fex;$y8_IVq8ELR+6) z+ZB2=828h%MW@U78h(eimYQ{sc7VF&VuqVgF2#&*E_oX zcI{`ezy_qsj`a@qiP6UP=r3eBZ&d$RyZK%~*_ds&^zG8XJ?58otnLS9?7@oF?DyTs z7&TIZVKO7xl!*d-!0I3iykt5i%+>kx<>0o&clSwe5Yq!#Y$ouwVe(9KZKiN{@g?sj zvC4q+qxu@|wbx*n2oYvhl+Mbl&-vNxldDE5Ck*?;-vq)XTsyra*FR^_KGy7iMXUTG zU-8A;uKjmNP0bN_I^i|{~O6Q35bKqg!GP?*lgAQulb(?Yvjab z>MrBegfZs#8QS@DaLek8Swey2CI!dJZH0GTfHqu%aq)D_L|!F{eUt;_@zO5tD$;&9 zr1M~p>S+@99uL~=?l#QbhDB0}!8lp{HJU`Aw5@SYk~(rbsXbx#?0s9=+FJ%_O-^)$ zt!vf4H9lUDTHtp<5t&GyCq*ShrZkZth`2<1E~_Z;pTThw=2`VJ(zUZiH=V(*O@gx% zXxA?Pzz)v{hkSZGukfyTzO`;b+*kOg2 z(%iR&B)Kdhgw3t5yCvjqxovJ4nQIt^v0-dx_wDER`~9;&cRuI5&u8zw->>KM@i@Y8 zLa3sCMp8LOJQ`M16U#Y-*G4;^Wggb>gGVY*yY$KLVdo?b%4J3q5Y&&X7_7y-&v9C# zx_jqCI^w2DgjA8ON7l`o!Y@scS9}hsV>%S=n5VzX1B6FL1v*#}v5kKgH)bT)eLAXNxDg=H(N^QQ zZ(cc~tM=9$DU%|!K&#N}t|4u<^HA-l{DRC$`xdJ(hnIs+Q_OdVdVrRBh$6i&5MW#Y z2vq=j#&tRmKgItrKb4|)z7HiiGt(r+Df5Ct)D_gTQ zD!_9pRLTy--7C_rI=LlBdo&PR=Gj-JD<&dhviMs9 ze9FX{sjud({5$3=4Q5iiYY__uig6ov5$z4WHf^k->@lls&TaKjALxEuz6r+A-UZim zUZW1&A`xOJJi4&-tpNB&>OxVf3QA?8-@X7Hgmz>jfBVqG^3u|paAt!bkkaNf>+Sn{ zwO41Mi+7iIao5Uw1x4oHjjpX>kFM|G{^=956XQq0b=c?OfDy>l9|M_!QcIVSSH=k( z=@N;XZ^KSXZN9uI=sjO%n6H90zL>x*A%q_=V24HaM+Dn|dqQ-M2nt)U4XE$I*`Y<7 z8r7rb9#gLdT}3rT_;ZouIZQ|R*3tZ_v&4iyM@??g&ElZuOWE@t$4o#gK3{OXs+`s$ zjN}3|L@i9;*=`FyZsj!C{~)Zfgmw&O4|AuWWhVoldDFbkU$Kq4{9#LMasO54!ZGKY z`p@U2J55To!RAH%iPZN$ZT{9GomNwUO7?bP$ss{c#zd|?_HVihMRA<==l+ui3Q8H) z^r2Wcw(2@abF;t062rZ$r;9$jhGh|hPH&yUn~yj> z5xf%Yss6LeJM4f103ylzE;>VH-|;XRab7`0DCCX?ZtlpwEpNdIGFr+2D)Hm;H76=| z4V2b#^H#GX$XUm$#XsA`Y;x}E+tQ3nn&3BmF1FIF4Abm+R-J1vH5Wxs1*eJ)PeMG* z0v{GDbQ_piKI!>KoC{-<#^K;H8FFw_A?*y;@4Ysl*OV^nU`mEEiqP)2!?27TQp9YT z)r0Jiephzlxu{CaQ=`xLpBNWkb_W9QhQA_*IR66k29C0B(BvG-MBiUU zX~-49lpE{8eKXANSHqCHPu#P`z>^S}V-=1(XG@kQ-gUu!^v^8_|cWo7{bm} zKXBL`C1RxbFt5OdJumhN6HQRiF|L+^{DvZ%bHw*M>LUyuyJgDWl-s%lwlUcRsGDID zj9qaCFe1wYpSGiU|3y_LzC1s^P?hLF|JVb&7^=`M^K<@*qv&Gj&l&=WZ!YN1K&J{! zOL3gLArH4HV%n+xjQc(1G<&$iN8SO3K^6*-=^^__ zrCLok#ai-VyZDa$+gY|b#u~`bf+gB@%oXHG5$nK`Gl3DT8E|b0RjRppSFFg(KQKag z_SN=Ts982Nn`!l%W@zgGlM9P+bXR*b*!Xe!YznvnyrsT*vH(#zARPkQZ2N+~+WG}$ z$A4pvy1+?@S+!%~(BGo-5yf_am4ZFwhESdqr3r2Gpn_pesW74(AkfsTAQ5 z8*0}mZiUidGWTD}gnRt`wf1~rK<*8QXQGcd5PcX-33HouvA!4*JMfIR5w+=25k%}&wck(#k` z78nTWUH0jB;tqqh&abLRw>kn?W!Nwnk-GIt1%sOBzM{uA^p|n+RBa!rYfapU3%{9S zC0mgz-xJFPwgL%On33T=!_LU(IF~+6xRMv#!`A zBc)o|C#*S2a)Vld`#z3gBse7c3P} zweDeg;@{M8=;QrWum_w&BQamOgAw;*?t%Z3T1}`|et<~dl0g?cLTz4%g;s7U48;A6 zGxcgSmhKlQVFYB4z6%h8i=t+%yQ|?ePF-`AwJO@_zY-{Arp%@YG_tP=&w~f zWuD?%Q2!iLSA%XQiBS=1c+&PQ)TS`%5HXgZQr3%hj;&dRb zIJyOh;ycDY0j_e*9O#{%@;${YT-Y_#Cy2X$6(Oqs9KJeUR9XUmzf$!@+!gC)xAm%+s^VYPRhuVw3a;j# zTK|4)uiU}}OAo2Bj2Os-{Q54uLXBi!arWZv8(?0-4jLa|Wh4Z{&S8h`50KJZGbo+(qWZ0$=(WG(Ie^gJQE3=rQC+~QXh zH`;j4*RuHLz=o5(NLS!qL{d=y#K<1q$+~Z)G?VY;=bjn;oBgLqR7yk$xstn%1xv8N zpQJ{VMjimi)jw7NI+@b$mO8y7)4}?E=cMXWeLf;Vo27q`!B9*U=GRTN@o(-A(~fL= zq6jsR&iX`k_+QP1{e{i`B(3w%nHGgFrHl4R)J~28NgakClw!2iDpUUjeWf;KKEfLZ zo>+`lzHaz0tVubJ6`=VYh?VEwz2j-T?2rz`UL`;;6L%`f*BsuQE1XET6IP4si7oK!;9 z_m(?d$Q$r|v4x)-Ko5Y2#?cE+Y}(tg?`tYIoNoACPRoGPr}J=)_re7-j=w{m=W!|*9XTc>H+Z@8a%mu{oi?8L1s&5U4zraCDVK)K1#Fwa}`nUP7R84&T@k(4( z{SbM8REQenx4B4b3tDV-hW@3?A&-{Q;E`tbZ%z0Q^3+^Qi&xGz11xYr@qj<4;frYv zY6Ec!7IpCcnDE!tdC33H;c05kf2@q_%P<-9n7^h{s+v9NQIL|+CsXeW$CUd8;0Isl z;Ai}+{5IqBY&YK96J0)U^`81n+It6UpmXf8``fc$;I7zU^`7B=@nR|Afz7(7^6aw= z*)9mS94i1(KpJ8C41zZyu*kuPq!~6Qk1>tK zR-o#K--qtuEVlM@nm-%A$$bX=$!&i$|L0Cmrt%1L<8uF9ira0tr`E^Xu~G|ouFFac z9p;bW1J|OkH>V3XLV(LJWY^-9r-KqXhYyqlYLWZ~>;+z2V&56TMJuQPSBHPNH@t;* zb}1u)NkHArHFn+BxZchNRu&4j!&yI7QPGoH8`5_#LI4)D@t0LE@p37_{u}Vaf}$}_ zr}EE8K^&@q@Ldjmpc41dNS*PZ-?|C0;&Mgm#AQi+NYhJ9Do+(@z8KV{xf!}8RQrPH zQe%$GV=gk0eaiY}X4ZlkJH`C6R}~KBxzDnDPeIiUT3XtCx!ngrXFc!iGr9S90DKVxK!b`2N0Jn&?hVa-7Kh9V~>mggU!%HS8S1 zTDX5Oxpp##^3MXO5^~tQLaY9ID#_*1rtudk+s*blu!et)Bkb2mS`ByS{QV%I(-<3Y zWi5z0-b;?GFMs8MW?}Z0QwJiSXCW_Kov0Md$R?r)tplrmBDD<&jFPQjPt$uyk2n;e zyk+^fs=+$pk8Plg$Iw1c5FM^ zlN$y-$%h*^t6oKH5_QrM!>{A(WU7wyLBc=?&|JT?i@c@Hx%N?$C1EB>97cm?g5R zGH5ROjE(0-=E@h^-4(ebg`d4=CC*gbnp0J+xM4R}Y~w05$h5wDR-BLmbrbjnLTByx`-T=`P zs|DA@(q@FPipd^fg{!CWQN|Ub6~9_egDAmIlph|QiDxz)oFKi-PZ(83f6ZoIi6K1O zMrGv9OZ>{&&|&l*dM3QNh`N?lR`oZ7<9db`FcTk%eYz-iyrW4aIRlrY!H?VAz0GLo zZMyHi&WTnFh_<}G*bcdZ=I18ghU?E=Gn6M&o-0xf^2~LS$PzfAf^^-}p zhZqYw=N7E%a8Cd^-K*#lLwGA&XK~Narz`l(?`z7W5&W{Lxs`I8YXdvGBY z*=q!;H}_HTr|sR$W;7*uDc%q|363pZzQ|8#o)#T* zR@0M&NT`5n9Ig{sz3F?PrHz`Kl$f;4)$`-)U%)T6?yiXD@JLf0P6j`Y4Rcf@FSq-=1CvvQ79+-;u8m_k%d4Btg9X}07xWxd_rZ%1@IjjxhjsNX(dGa%H2|aB# zH-2{wP<7?#)#-xlSF+T(>30npi<%<=w;m(ed;6#Wv9NT|JBXe$qJ0u!L~7Z+v|&{0 z?8JONg1>2$YH0Y##yO5QsMS7=f88e*TpQgIvrI~Sd$U-t;v`;tm4{6v8@fJn$36o3 z_ID(QLGf0fYmL(6!o;tG^S-zQmuW>OfwXxt#gLmLjr2qizdJ zISVi#*f{yi{XNg?Y6mCmzde^P&6%$^asIxk19z-D6C}pv&7ZJtKhDmrQ&##w&FJNx zTg|QAa_CpU`vKYSAo}1Z(^tAhNK@XL?`g&-1(y)G>_n_ehSYz@k|4(ucy?+X>OBUF zZtsw*W&e(L8!S}a8VwqP=j{<(Ut6F(@PHrsfyzLeYF;k60z61{IDR1mUVep9QT}u) zF86E0=X=2W^f6bXq8=;liy>15k}K+4#5fV}q35$L!zAMB1FqFgWjT)9h}N~ZDnPLu zPibv5Ek`nDFd5^L%nQ+9W98?7hcgO^RWbe(`m5Qh47h(tjO*S)8TDQh41lulMftoT;5ZZfQa}HuA?O z(jd+TNX@QHe1|?IK!HBM9UdQ|rU*Y0@1}nuGN$*osFj{ui4letX@3=JP*X-C_)9!R z|2)tENO`=MGiyzqeZBcCrEGWGJ0xF^wwbSN{rK9%{;)yY2e0N`=#Uu2Z^AtTf_+rO z4z4)-6JfZc>RVoZ%i9Cx+WL*>AfKnI&)O-MX1`1vF=J~XV=<&~*)A`kn zf03okHr8h@DO81?QCW?8@Z7k_%oI=BBg^xhJduT%*vIq9ih@jFf7np7c9j|KiH9Qi zuTD@qr*0V3rZRg^BmsQ-8kV12vQ221&wqk&lYtEf@j>y_%<^^PueFkMi#mGnYOx7j zAbSU;c%%*hdBdIIE_=P>IMsA;Qq&2CEjtB&+{bqDE%bZ?LX1BGj3>W90@uSQbnBFt z#Vo7ane2(*OA5X%ZbvBpbtZT#PfF1M?-?=`IB3hVH{#D|Jf!_wKBi62-Dq$6+`ehB zk^Uh(bp7Cj?$-{{l>M2HmYImb#A4z%=7JwwC0zH3nOPQ)y=OwZbZ6-_f(I*!hq-K7 z@%}jHnCvH0@9(nI`OVo3W&1ROzzRkfW(_Ygxa{DBeP<+bbZH~}UsHMQc)NjW&GbDE zQIVSWNK&M}7W1SCm<#K~g%|BNV^6+Q+*JFb`|}*Lnl#MYx-D2(BaGgh+OqsA9P9r= zR>d5mBCdME%owsQ2khO>q49I%ZH}Hk{xTo!amoIXs504qo!o?s)?E)O;vp zpW5p07IJ($EVcR_Z{;Q-sW07Ln%VjviBA{*0hFwh7|nkHFrA5j#vq?f?;P6Fq{Jmya>#Z}qd0B)nhC`B31 z-u0^!bbBZ6Lg|+Xw@Sm0G6&<$e%HAbRUOk+9F0@WO?=dtMw@GSC>Of=tSD%*)R1x# z{YYwaDn2w$BQ9s!f9w(ANfS$n;2!@dhAIrWYdV@K)*OKiM*SUgrv&a0;N!hN8Tdx| zLTS!MqJHTagzXH6p#8h(fgUgj2qSJ>8~`47F5gGdMIZmby6Yo(aPmDvjXDGWuRI#m zYDJHJRhm;&$dI6Tutp3n4SCg znm6Lj!_#xu3GfN|rV8CV??5YKje5ZEk`v&oQOG+O8E)w<>qzcJK?5(BcK*R(Zc!oX zP+tAq!HP5uWkP8N`q+Ee3jgTR_%T~*ByIid!X$@x|Fsye$$l3-uQJPj?Nm>(C>JTP z>dDRj;m-T!iD4Yd%^Ew*OK&{3P}cUDcjS@1jcbJ9?1DJc8NS?o`*s|49+TZwxJJ_6P{!{4 zdyXq*E%3@Gglw4^nrAv3_y+bm&oaa&0S@G65h>!G$eGv(Bbt61O5FXE)`DKsGA)54WoL{%F$EFYaEv_zzX zh4&NTjc9sGc8|;M@ZTkiGZIZf?`#KbTEVS6RSFqf-)gHWkl;B#J;AnQHIEU$jCc|y zwxgO@8E@U!9|RXXl-M7R7)E+GZ64Vw|FCn#Vc5n~F#=+Xxwv0|AfHoJg>hQZEu^@f^oEoBoxf zLONZfrmd58kI9fNB44}?MVBE6Q$3+leYw!bQY-(Eh~tH0@sM8L<%+wMqWi8D1F}!# zw_nR*oUW?KaQW7oo*HZ2bAjRlueDy?jTS!w8NM%c_Qf4;6@a_^+m+I8YerLG@8`WE zi}zIG&<^wVZ%(nfriMM`7v#}bl6a=)!hz+$t!s><3lwgAfJSRw`U!T+^B36G+gU3{ zOA0lGlIo%1DiNW}Jm0CJn=N@_t4sI9VLGe4Ya!4Bl_zmDyM}Fy{c81rhA>lQsU`~n z`v!%o8%gVV`wl@LEocHE{RxL3kNM{*EZJ=5g`cPla8A$biF!ZNnq&vimk%y|+iCKL zbBL`5*I$Q(iWDwM5yjk(jTKPL;?H;7Uk^aus`J^t-=bdUygkJEaf~4LX0}Clqrels zF=+$k&+}6Nt*i`S68MR0dL=#HKuY(XJLpu-L~b31TGefZY~A**`x!&d0B%83@~@8K zPtjj!(gT7bqykJ3%o)YohKs&^aI)lfwz;z6uS--S2UwUjeHf!4{|AzEDQa_ZPb%L3 zA;rVGiRx2kYYbR*gx>O!97MXjqh2`jw!b(z@oRz7%j3&7vV1K@$No;AS30dhR{^Tc z*{!s?Z~m6{bl@{@RC@T$O4JEiHjLZ_2+_U|%OEZCKfa|B9!9T8ph{C`!j~)s#6ya; z-bQINi@^c~a&zN$`}NY=+HX_orDacB)9IT&`$JA{sFb1S`w0lgJdma=Luby!NX~da z{XJR!lIN}g;_lJrYku(Oj*myG&SQtqebM;9CL`w?zx!BSTrKUa6Fp4=rxBw_@RSd8r{B?Zk%4DpuahRwPqxW^WT~k~aV^=dn^U2Xq<( zvfq%Q{{}}`in9%i%tWhU$arEMS8w&P8iC5gIG{*j?~%N3JbRfk)bCecA)o}kuX-_o z#6eT2*lN4xL^4L@Ypd|-!PBB?N#aylw;=p7C(@w_tVvn`Kid|p|C1#stn?i-V>%Vs zWR|^3!hdQ;PyBlZ`WUXtFzX*Z{fQWKQ_-U*AgM za~+TH^EH$wK1d^Slwj!Ld2y#f{FXI{wQi_<5;Vh+rIiFf4cSsBsgV3r=;iZTheH85 zu4`G}CvyFJ;y$aGl>ahg@`awlMRkS_*7m_F_$N9xOG}+!ub6xs=PM&1&hCizONKAMe7%|{B z5)t=w`UvB4Vo<=uGncAATs#tKM7&|q9I%z{v~avwx1>_iop0o(uciLhX5xm(*cE?v zb$#Ltvt^g-sN5LXV)2b1T{ssXl=wK?2RGDX@}{5E7K42w!$7&eosOYT9 zfA2hja>k80E%7Y(i#a)*<7|*XoU&Yc!z8{=neKtTzZk-ONLk+bhxO@iVifiGp+Urm zv|#s%zremdce35Tz#h(wUSLJLHU!Je&(W?t z@Md%us~*}WW1Wc&VcGZfvQekpGf;Lg%7>6Smrso46o#wPB}~w2M+mF*2bjk_7SmGG zcURGBEZ6hcbxaa_=i*?6jdz$zgt*jBGC2lnXm_)769Mi!2EQvpI&ySgG=lDNOlGyL zlB7}%65GUYHUGK#H}`&zMf|@(%fHjQ@uVyAyh@WOI$=KflcL7zK=1(25o@t|;fB-= zzq}M&{6hlXCW_xo4Ga&WB}At}eBNqa4^tHEZ(H8($56-AqaZ1{L%`?i^Xr-ml_qYw zp3T!$iCdlG10!-jKwiiBHc!FZnj!Rc+hb~euEaf4A5VPZBy;x&PFh9^-0hR)?V($$gby-d%u~19kJcS z6M<5!G;hO~t%;<4F#xMax5j`*QGOt>cs%g~kCc4=FL6s}%<3!A5~H-Kp!+rO>osRQ z*OjX=+R4A28O2oMoL@9sY-a;He|fa1zHJZpX30z>%=yB5BbLzVVyh4FrAt?T;uIIk zKf9$;AJV&HjrzI2a{bou5IzlBGI>$BwfdqqJ$54%I?cGsxK)0!fUTeDsGo>CPzvj+ zS*Gb6Vwm`%qDVKJ*KSnwev|G)Su}>cnV=T#u|(=z{`DW0xy)YUcL{8!N`876Pdc|kelsAUN)8u>~F>YEFWu|~Bg5h{8@ z6`<3q3IX#n0b@swL2c%#Fc107gQpmd1fsqDmNbnw-aDR4m8gQ7e4`Vx2^Tc0mV(Mc zPh5Z|GmQGS2OC+uT?c@klAR&VXP7-P_2|1^t}itx_~&-S2PcZQ)vgf19i~(ctj`$- z*(_R$xQQm7Y4)kR-MK0C6K8a~Rv!~VoGlCZVT;g@`=tdOaF#Tz4bxciTeKPQqd8o= zsaxXP+=})a(psl-OZKi%tYNu=X2TVlN7DKe>xn(QP_o01Fa%|HW3VF-R!cmyA|nHC z6ISW&$GC8wtVqRW&T+eYeh2Ox_+HSHqaf`T!KBP_#wwo4X2HFdUtdPY^NN&a@LzSG zDQ*562;9mMkwJf_!sGD|twWs~-v2~+C;J&29N9F29$G36I=lLwDUV=WUJ6(_l!Ngr z^o5O#b{XapduXB~%Wt&?I7P?3X^-NeT0bQ?_-ECl2gR|^XT!&&>a>Qhw}88u2hOhS zLA|#4r<`pym|fKK@9(kty92D#96?43dGVg89jX`4d(ph7$)>S?u%`Nnulvh4-P)6v z@1{zepFaukb(b8k-Luf-m?&2;rE|t9tG(sb+EXElAXZ}HG!Ly5yPZ|gMLQ)hT5da^ z^B{6Fazmoue4QmW@eY0`^Dd{&4D&bSGkNY9N!Yn?5tJjDST95M|_ z-SiFF0~mIkm+ny*<6WUfZ5>%m9>tz5D!L5xyk#NP0XtG*R)U31`# zs!p-ZmtXgO-L(Gux%yVww)%QA?0>xvMi^RUmE6Ub{T#A@i_|Cg^>L<6Mp0He$$Z?RAP*Ngi&Li&G{`bS1aW6TDYk_?O`OK~?oaBHm@^HqMNN-lm%(c#V-48>&(@n(U zvu(>&DdN$=lX9gNi(*tC<_!f8^m;GxU&wXv5{SvVIZZuAu(f>W<2x zw|A6#Hd;64@?q(TY!jw|U?H`e>~L-M>Ts!Tm02uk`kKfuvpx7Vx&tURdRd*3=2y{X z__TL4G2{iVIW+F$&x+oFd_|(uzbT@`vqFuz%UKL3{$ixW5;)x&&e3$hnR7KvZZwsK z-lm&|&Lez8*~;=qMA2f#ZU_G)ngk>zde+KRuU48v82dq}DPfODuwB+xOO4`%pXZPS z@dykwI`M^>A}sl~hqWUK95sEr>T|A@>FtErS^L`PRXg6FpUWQiM59pmu;2 z@ciw{rTeK7S&4X$%&l}&8h?9uoBHR~ao&CP5PYI&Cj5BxI25tgUCJD zZa!#MA%MPL?F;-yaC9{B79FmZgr;O9a3O6^H2DknVr~at7~K$kH$k&%uHLStV6$5^!0AJ zQ^fZfU4b{I$Kp7W{dHlnF;4UCpPS@cpSGZ%RycsLo$~RRy9!vpURbdO=$D+niQzjD zD8ULI^QCp@i=9GKk>#89%%|Z_IzOq`8|7!6r_`0-&ZjAoTNU zGHh@h3RYDH)}-J3GC*Mpwp~6>LGM`&zajq36|K-eT4~yH+Vi8|R<2cq!&73)_M^m= zZmE9`{m`{9~U2S01_Su;m3qa?=y_;|p!Pnrb}xZ;vrfU2s5t zyBq+<4P##e&hSQ#JI z;(R`$CwYUU#Q18o*JfJP5Ir98p^ViBexOSs0xB7`+9G(ujnl00JN>=C>zeFUKa7i; zuhBZFJ|lzkoWqQhH=5b{jDn*qIg+Fx)DZDC^xivaA_Bj04}8MbxKDKRDJ$#*!#>MM z+6>vRFcfPEfSTyrZ+UgcN%xsf$!)`>dgF`0V}KMsC|%#3^n8XoX=#dDJp zQDE)2D$FfNUoA9(E4<*65Pj=z?`H6xt#_sY^jP5L^~>WsmBRPs?r(tF^jq`Pg;Bnt ztYv>+p_=h$-3Ok=xkB5e^gqGd*p{ZjUsC&|%mQMJlR_K=m5+`F#FlEu?xot5=PI2# z>RToSazX<4-e*Bte|{~7@tR;U_LBfoS4GQm}LDj$7QULOZ7}97-9by9IzQs zyU`yb`Ud-~8$2aj1VBIV6KQsGO;H1gpWh&nA2vdZY2U8Ht%t91Mbd^%Z2Q-SMgqt^ z+n4+RS-Zm2MD zzDAFtJ9lxoG4h{nv|NC`1j~wv`W9goD#^iUR);pq7csbLZTnn_`<9?B5y}aZvqK}Xp)!MI z;><(TyJcR@tpAFrN7&7I55O16P=YkwZQvlp>!-p)XC~>tq6>9fC$iilxmSeBMY{JF zpag}6S4Y?2XdQ|SQzM#(fgNQ@E&tucR8?-+30a*^sQodQpS^Bee(}EJ?Z6-F`K210 zn-r)F3i3;A_Bq7seE!#-5VZ}9)7$g+PlQytl+b5o zw$FthMGAG%e$wSzbWU0OB8kR3xFt`L3 zmM;pCk@w^n=P>`Zlv731H@Th$?bmS?fOwDQZ%;>-OWQbg+dl`10-Smjx1i)ArLoky z#~YG298BQRpXDiM9CtUcJ^0$gcw|`h+SPl`PQi*>_C)9yjZeNolaM^H?5qSqME@+uEuum4RKocKmM7b72^S&9vP)INY{@kuFs^w>4# zY;^pKQg}kK@rS@qpFZZ_mmmi51kM8$r80}3xdq}LfGdp~&F+kIc9eoWmy`*19gZJD zt12EI>bm~&Fa^CAgbj`b^g?oUNa~Hbm}K1>CU=$pG}OO2MJ!15bXz%_qRU-vV~D>_ zSb;fJ%XB(mzUZyLD6>M{;e90lOHH8`bFtsy?Zbt}yE*pEobWJ*uOBGTvBCJXW%$3? zjU34#sZn^;2V}P?!>gasdy2MadbVL&mek&qw(*DN0m{TUfHCQ$7wh}ig4En=$F84g zd0;oUU;zx604L4~B-=$R)m1n7oA?ykcVvARIS{l1j+35Hi1`cno5;108qr67;LMIk za6C=K>c^WBm^n}asoz7e+^a>PSRqh|(DIB`dl7g$60zstFLS~2Se2dafEW85HmC$FX@CYG!zZC z=#?7l|N0&c0ej2La>Kl)e0*?b*<}%<|q3 zc?`0(?osg*O3$*|-sBgETTevKzM#g2uG7-)^vL~LO2f}WbA?Tb8-v|e!{hTUU1YBT zqVm#0T}9%w&fe(b_@qHClQpX4i!rl5m)#fNuu%2-G*-%HgxNG<;Z8EW&g;r*&zqCA z@(Hy|+)M(dVs{w&yg0AA#5!#K?#Fh!Kc_}B0W+}t6EKW{sqwb>K2FW3CiLJq}8E7U(q{6!#Wrm9-k3$?we#No z*>IKl24gL=iZ!4DoiWnxt;Jh9AW@nv2Ao7r)o5Hq?KKK31o-o(4&?%yc4slY#UvCU zA6!QZ5AnkzBKFSLnyuq45HX5D)D~*_R>99V8Y^29OpU!d8Ud}Vy4NdS)$NBh`AY@) z3a%7(fX-~YKFTk+&*y)}Yji1V_j|Y>m&UftRTpM0`q?b5e)!Pe-i@D$#~%(WXUBNi z*`!}Xy_wMRTn=);`%ZZpb=<@b?~&K4%nU53T9Sgj_d7l%9Ym{7*!n)3BJo}Fdqc#{ z`hni2ciu4gUX=ThK+zp$Z}+f^aM|iJ*Vz=S&%d%2k}NnKV(&G8(eiWtg8O0$e{~jT z{R->O8$&Gw^+N@h4`Zsy5M_8g+(p!x4RFOqo{R5*2?5^T7kK3y=82n)i}4x9C%jvAGixY|=K8yF1sbh3lHY*Q2H&SD5p%pYLR68sl_7&-f#$kF$T2eATnX z^GbyTC@#2l<_=Z@`&Wu{B?L_KoLq784x0!-xw9hw(Y9Bp?UEv&#l&g1n`fBPDRrYZ_`Vo@mq0rv*wg%9x9;Pf}qDI*yhliRj>M-2@Z45MHVGZ6!^ zi7Gc66VC-^_BSYv8c()oZ-4R9|E+&yQ*}m$scwSp)4ZFJ@=@hz(sl#rlse@3 zBnS3|#kvIHW~F!XYn8!E^6f@7u8Zdmc`2uKToX?xpW$1-(4sn{HiDmD-|z#CYLT`d zF#%adCkvNF{m)>rApkhJ;F9y0868lNs3yptORFKOjWV7y zB3zCWzn`)B!p-XV=XJ&XtSQU_NLpOgdpUb;4t8pTO%FR`JF+!Y`2g(i2Cpb^9m#)3qVq5b2j^;=w8n%{ZOa+}JzQE|Y?KM!~e$yW&H8Lu}> zXnmbm+pbM_RG#mT5w5Vd$);CB+>V9(C&Qi$#twLVYCmnjz4T9I$6JK~knG!lxfjlSZWRGT@;_`GuPe6qRCh!gqCmCKs8K9pXQVclu z9ib&fbC#A4r5%!0un}i9& zHirI-y;p0wetH_1z4|a*SUT?>mgT?fJqEw8U{VMO`G!hucwBbj1diqec3~2A6=vQ% zxQ>KxGWQXQ7Cz^H5*fPzn}z$oLFtxZ%2xXGM#Z)+*X(jmA%;zgP zqMNhZB?oomp>ukd6F4j5gn#ehFZZt2?d;**0}tB5E<`msy+G)%aM~J8O%m>K-4ir_ zr);SGM|@+vMfBKwO%_27z()<=$*htSdtGS22b+G%#bF1Q09M)8W(R>Kpkjh9;K9|` zmdbzb%^&}lAh77vmZIIs`NA!ad8qcBhkHF_lN1TP%k)wv=2I^sljUNP#J4?_hEC|j z*McdK+AG6#RKUeMFCQ)T?t$pj0GC}c@o}0+Ph+19Lg$*RvmvFj+#0)@q)#My6Q^$| zkKsVW0`WkliTyY>C|kG}+j+cN>;jjp>h5!nSv<~nBhp#%W`fK3-4s9ZBJ%Tl6;+(3 z;ky%q1w0{}bsL%7o+ADoRB1?bd%JPfY5uMUIr~NPoGU5YXi}+C z9KM+^h_J74bt+q$*U$$Y4638?z~#6Y;{!cu3!$@Klj-ZH#gV&#s}qF$fmQNQF|ixy zli&A06rFh>)BhjGlgd{@k=&LfNjXxv#wtY;Di!4zDN~A&W9+De@)73xk7K0rfq;$i;ilv=W#$Do5N-=@FURE@netmm9&6xeJ~w)6Wo+(j^9rFvC+ z(9hKX6hVy%nc3Sp5qB}W@LlwU(6@PG_cO_A)m`P2q&`rUa5eO4Xc0j4A3gH6UY(X+ zd>=nO{(!7?k@6fQ=MCmDW|J64%89sbnntl*+6MYUlN4FJA{Dn*YlBv>Ap=|c*`bZ_ zM8)(dcw?{W#pWb;z^d+&@89nk6K&OE4IV9fjV0M#m3`UzM0yCTqr2jxFgfHe5*7CI zvsN+v^cux~^$Crjv~u(jc7|aCUUI!8xOw^zv{SJKU|Zw0q;NQFf)N6^TBUYhv>SW0 zwRVSA59i(g+d=8Ol>5Eip5+c(5K&4imWS6#aRG#m=~^R%^>^ic3f_+MZVsB$EG3(kT(CZP$@)ZY_?Lt-ICXozYxIybM|7UwdloVI!1o?8(unPU zE|yUc_je1x9lLRp47YU7L4!K;zN9uhGsY9?Wfb!ji+!W?Mbsj%qyu=L;W`#k(o+k! zV~*!?S9|iMse$J2VA36a2V#=fbVvB%C*T-Pi1l8J-YLs{SVuBBC8$SeLl=VjQ;#p% zzlD&{8>m?Z4@>+kzRX-p{YA8hQryv1Fps*w39qP0g}C9inM;Xi;z z8Oxq1#qZ#_kIImflXe}vrs`v*EnUXW9y0;)12z~_^WdT@+=CCUh*4k*&i#jY`xCQVI=LHwr_eKcBzD{lQI;Qe!%zA7mFnMkuJseOWj zcQK-L3DYqu8B1QN6{TsM5;OvAOB}-nPb9Tf4&mEwpj)v#VKV+W1NHkTS0%%>9>fDA1&^k5VNZQMeldTXIV9L)&-(&-HB84utwG!)S%C-#W&$2@H66& z#W&VNSdA=+#FZP_Ni^-Bb~95uZ?pTvqy#pmFizAUzlqgZ>fNQjg4#L+^rQwcC?+{33=d+LXO*ZEIL6mR?sP?z5>nw9<)W!d^ubm5>)Un@J6bUQ9Ov zpD!H743=)y$d~G#DnPX%eWG!ZqK}e`%sNGT!NF>ycXbc^7*)+C^4KUk3^#-s^UvN8 zFH`m2lolNxlkW?fpxFxf_V`i|9&EV&=ZL^7SSYjEYH=XGVD3rI@qRLXt$qX+GU%v$ zQVfZxoz&_H8BUDgY)yU5#Ji&wWJZ6REfFJ`6G=$h&FPngr#_HLS;EYP#V9_sJsPGGfZyt1@nbLuAt)<8F#vIuhP8-ZY5KB%znu&M(Y0x~wB^Iu0*T z;wjVLus_;hh<+(7fZ|m=#mx>tP1wb(LNur#6Ea+Hz4fZ1K#P5R)okD!Rld1;_cFh^ z9MJ(={YDIo4L!RiF)^uwebIw>+9ov?l0)b)Jt_)TmAVU3d^&7@>5F&H+FKjL9ZC$( z^|~28^XX`(NN^=ae5Mna4%MUF)8$#MZ)5&@q4bL}p6V`6ewHkCcfm?zlpMR+^D$xR zT;))t27un5$~wAYj+*BFP;RTrYNbUt+T{1d!jEu|&)R>?cD%y^#zel0yZyB%V0x9d zwdrMSLec>H=b(vIZ*>;B69QL8A}2)pTM4x3uu4iwe$t$!>)y`VMI|c@*3jo8iyOXa zVVyo=PKcLrt!Z$?G0tC7wb+Ot+PmhXDLv5x-%{W2e-zKQj#_hx#0tc=%glc9TjX8R zU;U|eU!d)|sCN@zGY!e+CTF>XCrptgJNd{XQ*>vE&aAltAbA;)0o>{Ls)YCo2&wu< zSJZ@_>Zv{d7I1s-Ygm-TRvd|TXAH;{v1yww*)4Y#yl3wD252!lyo;oCTeu93ea7*+fXFXed@~tLK zngsXDF(j1a;Z~rY85v(oUX0^)7vAI-&I$Q3e^JZa$v3=SZnwc?#kq`u`v@zx`GX`I z2jT4#;@YbVjfL7f2H0xdVM#oOY!9ew?q?1EF)nm)0@BkBj$g^?pzXII26$G)ZFy=Z=`{Z8kqs8- z9}lJwGn(tM&N^vmo;vuxEd9H>FDA)QroQHp+j{<;#6P!7k5BSj!a_uQMhAXGomdaI zcH_g^?bahN6OSEG`)b${CdWH|CAug+jv*6xyZVnrFHF%KT25~AB1-C^sx5!9BaP-p zqm!84oJUr_mZ@PfdL;E!fopcv!EtS_g$Wd_M-C)OWLTO^FMad|UxJ^yKC^gKS-L=v z7BQV-urBO#Fa5W2V*t!TV#XtHoLpu#{v9VcVvEUow4^ZnuQ~73=73I3n>3E)BBvv) z#m2?kU`%d2u;K_Q+wIZ7%A0-t^rc&)9eVxvaNDa@MtZy0oCjUusnG!&&;%h)_o{W( zXb2!=E{w;P8F(6l^@2ch42hTOwZBUmP%onPT0Gr60|zVAxXxOY>yiCxBh;03vvL)!)VP%(oT@>hhd1`IcAoW$tKMn^PQiM3D2RA@@g0J@awjJKz{-2*Rc6{c{)W{2I|mt<5o0C*nj74|lKs{UqA77~V&bPL}f9v3##LDg*$!U=g%qS-SB@ zB{8Cj)yJ$|Ji zrxgKLWA(F45pGi_VOrOFjjk~NwwayvMCFNMLk2#uqE4)GgsCF4A9sO=Q*^;AGAd-d zgxC_#$jet}e7>Rs&9Obtr=yOIbE2;t<%gPszFB;W8gAXoqPO;>x5KJ_b-T*{5(U1U z{WpNo33oW~ws8I0e5+v_?hQ+qA|JT=dvo3+sKGK#V9EWC38g%CMrkIn$X%ij*bmfL zp1`c#MZo}?-Q;p*a^^~^RJaa3>CeoAF=vQYLE)}ay!EePZuX)*SNfytd&VQGsS87W zUfxDh>^M5HhQD{+d*e3&crrL1X|+FQ2er@-|F`3X=z!_ojYz-Ssv{jp34iB{FpsvK zWzBlB+vj0_%}F$0f>AaM7nhWtf5LO&xmK0=Zuk1#Po|$c9#8gqvGMEY&pRrS^qrfy z%=;dKA$mS20S@w4>>&k#wVS9h4dtnTK%w#Izt5Nf2HTBE_)sYiaUq46QK^MF^!J${ zRU>FxvZ6_i$Y4@W#CaspBHPv_KS#dbDSE}YqdKm9rYG@HO;6p`Dk5Nr*kjq3%8w&_ zy~5w^F8u5WX7W9eYV7c@PU!a0wBL#iovXE*DeRk`8Ebi>pIZqNl&?{hQsR=}a7At`rDGoqFy4Z`t{k5j(tAqw*# z{6D~J)~}*2g~_s8&}(!xNfl)iRsNN!^9%PMy#JJ-YjoGU?MC~3hIWf1_f`X15w5h6 zQ0&qmQYLfX9$37oCm1OgUMyoBFAzsWJiW&!%Rpy#HFX#prv}-P||uE+aot`hKwN6P`@k6vSG4>XYT>~bY%2G6YCC#*=PSOr zSZub~a0+v*vFeQDgZ>9G6%Nu3Qfgr>?zxpY5jROsK4QG-wK|RL-(B( zx9sFn&X*8rNA1T6qLb}z5sH+3!Fhl(4dGT&qYmwC4e}tXZN35o8NefzNkTv-pl)x- zwk7YX)Q?*Yips}uh4s_ojo8uX;FCuEif097AqEsPvvWQ2z#Ud;4AWVGkLC=mTMU2B zEzz3K#;5!Jzsup@Ex$(10!zA{iQ3&u$q`-Za4P^FgML%sP`d5IKbsiIqZVS;RYmZX&kp4#AdfZk8j_%R$=)+s^*!qK@SC8!tf^gqF zp7Pn(R07B9SR@&)hTqH8;C-ibG1=jG;5*ukK0(iP5^|`N=saxFut~n~hn(+8y28A7 zl^eX$ehTdgE5>0i)hp_W@R~cX*1uZVh++7E6Eu#t3v@4{-<~SR zpIp7G%06tg!k+B2%-Uke-WR&bFDxj>7;$&!>+9`WM5Z8Hevj>!`GqKLA^dl&%>kOF zkg2T4FuA-`wHsd@yJgY#c658+n4%Z)7wlhT>_FBJiS9U2b zxZ*@O;kuU98Sd51|8jupcL`y`i${%}7Xi`cw4gDd1EbdZ8;}Zd8ofEQnBl?3rtVs? z4(<(#uofDnKL9x%xjeq|)P~SQnH8;Z6INkH2iDb~`4!%N`No%^HX~sBG{Q>M$S7eL z=?|$QCrN%S8NU`@mt${^*ghIF;M!cA-V@T2k4~eq9&^b<FpYALF_W4gnqp@R7I~n?un0AY{$LU54*7 zSWm~@Qq^xX5@V3{`CF+h=2QOQSLe?#&XJ zwd6q^_qL)|3(;@v;Gv2b(|43IL#{x}4{=VmE&RQ|#uR3mJhx0dwVuyVBXraQiM2Z; z@S^pvljM^&FU7&=LFt3U2HLn(Mmj*ejV1R89U=wF`?R*RBh2P+?^u&OQf{ny6A5l) z-Fzly+026uXRT+vb&HBB*Z_5p<`gOfgHqYE3Qe zZkPQ?Kf&Jfvaorck;bDYC=68x7of@#V=O3bKj{8`hpOcfY*aI52l znJ0vf-VK56cs1F{z4^PL+p9w13b^m`$bM@5pvOT}UUUMjYr7}pj~`;}etV=TYRwwd z#4$Gb0;2Xz@T%2f!@G|&6I7p=jo=t zVU)jvP`Gwpx)YYcK09ptpi9gu6NT=kSpf<(?Pi7sRP9|~Fu6BIsk}9jat-dxG*wa~ zTv8~gU#uh^G0{S-yCQ>Y#);;ocRWE~N;Wh-Ic4MmGy7TS#&R(3x!7J;RkU?cuO11=f{%=zK$JRBfzy;1g{48Q=cm zk}tm+Pz(c;>h2*k8#hmGKadZ80^HXSTwF*^PN*x=(hE1l)2?GmGW4(I$+HfPg% zcC1&i+QwKFy4VOwGYh&$K_DGw)BJ7Zu7G5KchR*|!rU}DQ5nEBOBnZKW%$p5652#h zQ?Pwxnem^?h4|hZ-w#CZ5-9}d0@xqo{86mnUBu;JMtgdxeDbJd&S^p|G0H@7^Ogk= z;^#4L#yaPjF~K+@D4h%_yhRU~ULMuF6Ttjf1U?k(fG#b{c=1bal#Q##ZTefy$Lh#= ztY$=cCDJC^*@4P)H-?88$q?%jglcWhK~4u9fnsVwIo8ETtA;LkOgPzKNam}CvEJ`O zwc1?U3_o3tvzga-u%;?6JV0}d(dUVhPV(!YdwrN{hnXVPhULs^kl`!--=F(R(W*_G z9I~|a35NAJ=FESTDzTGFaEGo1n&9in3zGOj>~L$agjn2UfCjS%#V-UCzt=o(%CYhk z2&HuIRO;y2Y0@o^_WX;8$0!s%Hyrg2!(uqK$3ENxO&`4`_jd*u)DqRx-=Ym9FFhN^ zMARA1QT}-v{m~J*M&;goJZ$fidnW8~??-#(_~ZU1$`QRf7l8`mtfsG zu`MWTmsSIjbAuYQ>qqMBP7M@Ms1suI{lw_)zt74~hj0$v>CDLO$M|nU4_smF{*fLrvA$K z_C3~8)`x_-rj?w6xAK8>a?!>5?}qE!{f^EjW?r5wQs0*lxXL{NUS~s)S6ZSt@23Us zaxrmG^&a(~Pi(5UQARjU(8r$9$NnQ*@=VtJEFNQb#iy6@U3!wT*K8zZd*vSxb;#su z$&Um3g}J9xg!h-fb;4)1pNFH6Ny$s4e$=5wHi%B%W^LLI>}}E?Au`NXwl<$31ELMg4=9Zu>GXn@Hy8l zVc0C7BS7?g{Cf}b_A zEaX9ro3is|K@D>sGxRg2aW8Lb6i!(5fEut#qtv0cx?_KZl!HAP?kOzOQD0z;`Ks&n zHGzANLH<5;cBmmI`*7zu)HLT}ZVI&x-V}aF9dGY-eSQal=+aLyT!xEey+kSCk5!(J z{5}f$pM=_)dpp!jW)gJ6oi1vXv$q5&YdtdkhO;y$QEB|F`~*s5tmUKCbf_pHsm2Jh z-Y7CPk)d1La#bv$@{}k%lp3#Yd z?mZRi}-y+U(H|JQLqxnbdO6Wmtq zE<6>fA;d6_wR!csjnI=b-65ZejkWvPXIKCu{k)FYKLRy<0V~9v3J=#NMUg>8{Fs(W zqm8@Y=@;v@jWZCbhBMR|L~AYln9K%X=*`9l+e(OwEcFepC@k2ZYC! zzH=PB4-4hR6%=I2*jT3ynDi(SP6}uedd$YAW?FXEUa&a3>9xYu-w5M^n*S^akBERI zKvDj}P*1dsGxj;f`~!tucSSRh1t(O1aNH{Zd$u{~*b@z4Gwu9xl@+L;@3G{_nGLg< zX8+y9x+jQlEA#y@~gLxm8JTNx4{h-ecP{f{QeFeevVc0ke~(gD1-QjY0*{n_P}!ayYP-L zp3^SRyt9XuSh}Yq@j6?S6f1Quvi9txEQ}bfXB$9z6CLY7wqFNcMfxvA$A226uSONj z1C&oi3mluj8I_6WgKXg?3&$6ru?3$Hu5B*8oL?9zjOXYH5zvICG+rghu3g~7JVDHl zg`eIdd|oS&w?~rSV_K{&|1`B?8DT5s9sHX>5AgHNg>M2Ee+8bBB}Xh42_|`+O;%sbuYZ zq3n>!isFQ`K#QAq2l605a26zR=aCZ{<uZmyGf){^X7AJTq3b4@~(JMAF8k^v>vCq>%!;sM+{+MEw}3 zbpX`^1AJFMIATag?A|j>EVM2d!{i)=hA%}^M%rX(uldnTi>g^oLTEoU_RwR|aO66e zy`AUE{3^7YE|Cu#fhx%EiOe;RM=0}4MgkQVBYV)F{0>lRqWf?sUqTK4t-F+Y=SAo8 zj#2DUO*`5OPk+&@Ilf{hY&Sdo4pZ1&C}y6XKwlD9j@ri%K69Qz!%_K@zAe-fR&6We=jM|yk$u)}yA-4aTywm@G< z;*TA5$ri6RKD?$@1i|Kj1=l9JN=B=Dwqv9#|9;uw8k0E0gnl>v*V~v*_MDG4pgMEhN&nmn6mN7}FAEjD)@_ z{V6t>`2o_DS+9>3p+uj((I2mCv2f9+eFh`C#g(yCYT`6)_>94)eAUjw; z>7Xc#uc1>pXSH6@<)P%|*VVJLXI}Yj{Po3!Yql|NAYE+p0jyo~hgNl|vdelFb$QBP zOfVK2{*x)@8{M~xblReX3kjd>H(xz8WJf`N79*AusP(6JiKte$ZbP-(hB20YVEFW{ zpYZv|(zk3n8yc(JS0;$ssM+4#v+u_RU9uzKu^Ed+_L|iyUICB4Z@DoL8ax$=Ggs!X z?aY{gdtQ?m3APrA)6~`6M{LyTMsTf3@=fYAtm;}o)%WL|NXj;BLfXI@JgI9&JdaHw zmoKO-)6>sT>Y-d4wTxE2%FXRjeHEKABhswWKXpZ0IgWHO*Hq*;*~*>NP_v_i`zFp7Cwg?2u05A&#IpSg)F{~N&HPY%uM6+bWKk`=D z!>p!Hl`f!g>U~HzjRvZ2PYcIC=wTC99f zytzJf3-PYJG&yc*S#IS-H+L_`>$dXBs>d_4!LuSV8P8^on5e(#0qe8m|OjGevFxq zphxF)CV=xc2(v8u5k&Z}50S$!@fUNB-}ihynENJbXCE>>ldR8uvWw#6#8fZ_G@1Vb zBUj@zkO~AUg{4dPT=E)$sjnwp7@+SX3a(FAys1rX!Z55@DY}^R%(_|5DPOGveFHN5 zf?Uw>u8{rndzmW6sIKD#^Q|U$qK9`Ic8?Jvf%h`xNw?c;z|OjCH_hSs_kWuYGH|qg zM#`XPP$%6mmqeR+v2t5xv@DH=j&pZ`&uIg`kXmqmmX38Nd{Z_dhN_+MM<~qHN7tuv zuRYM}1@B`OH%q$9BgbB|OK-~!PfIk1;HX{=zmm!gouNBI&psqrv;l+KYRKn$m(NUvoXA-8+-0H%`bDg}o2Qj0#SVCOY+c zSMH#dP@QM%S0AFN91SUp{3f@m+bg%iPe7Z)Hrfq`;mVVPe``ffbWQiF0(X4#$nO@* z;8QVU4}ZD+{!4f^PmL0NuWt z;D_A1!THhBCtOVQ<3m2I1W19Jw*Ck0Yy~B~bLIeW7RE&sOH-eJEby&#)zZ%sI?J=H z&I63`{%7Wx5iqdu3G&-6s`$)khRv>B58rUU$oF0$Z_TO`o!_61v0J!oW*8OeH{t%_B{%o9@=7=AnbGQb8)&Y?8;=hyK3Z;uQZ;%p zyO?!EufB<qTeAES-y8~dz!5uoEI-01=71~ zKBBJWp^?4;;m6B_ops`-2KhOK@>JRKUhKk9O!0=g*DgVvMVNIk zHHsUh$~E!>j7OSKj#Dg5_BQgJyLoC=(ov$b<5j;bZNTONL~^t5=43O~<8eMMkRyz1 zbosE+8iRkqz4O=H`=MXX_v;$LM#jXN!>oH|VL8@a@D!NG5urU!>m%4sbrt1uH)rP= zM$D*5aLp;YdNWpOzBuN<-7N(`Gg4_BB{b6ev7M6o9i*{MEzum{F2N6bV$I!s-DGvf zu`zY2xE)9$Xe;|q?5+v0SM>R0dm^>YQmr5*7WiJUv+XD3l;8xTt1mU^#YRbOR8Tg= zxJUWcGu*GmgE;&!DL_x9TGXxohO+@oCbJ(H0ZSQHZ|Ve+2Q#=a=bdG|P<#kEl{-hf zb}gyuZ;b-YW!ddbMT&e)sy8aU1#s31F=aH$KT}~YE@TP|L#^v$nfymZrv6^@ipys~ z2}kk)@NSOGx_0T<4ngW!Ri2EQD?pIGg`({>LjPS?JgkFnXy4|)#W8f4Y(hNRh5Rsk zTM9X3Vw^*{x0~e(F7Upl%H5r(oT(>Noead&`brrP+sVH?oEH05kz>uxgGd#n(xD!C zz%zD7*nhn9wNkXf3e1$~&X&0_h5SU+q_FkL-28R*{l=Z>FT5Xz);q$oY%!a671rbR z2SRM}m4@qr$qyuAUPw{1@sbt~`i?Fr4HyPr5zFI(`{0{!wug^3JYi$n9`hOTM7oXJ z0yZQuvG4(tRRef3Ek$c?2?yS{FWWm~K@@RDz__-Ei9qATF>uM#)b^!6cVCJgITj*D!p-n5QMrEo@6y&zF6IcP-aVj(8 z*DIKm<}|=$IIYTeKb7-eiQa4@gVJHEb@WnuknGCFFqN7R5J6T+R&%-}YyqQrqw-k+9qlOY6Qrg+-Y zdpm9NM@?D!SGCHd(=BkjX2;)jr_UIh2rFDwzp}E4kqoJHHI+7CB^emm814v>=qkmX z`YbGKJJY_;!m6e;EpidBzHfB)<~7I`O?7*XwXqbXAGrT3<6RcJtn@;uKiXs0`t~rr z4Yz4k2Y;KOnFGs^K6VIrwLS_FYPB)8f0ayD4X2)#u+J6%X%L+!J$kTI6}pFeLoM34&AyFkUY8F`s>|bN7S_x zGJ*ba5C0{DHlMBY5ErZ^QFEc*k$cZ{_Sa^eHhtDxs^)l*r!`Y;XlT8wCF~&a%J_vC zvHcrcwELc#`_tD)$c~Y*+wfv*d}f8u}WpebF?(F&%|Hl`gvVOk(3UDoSlI=Wi1 zjanlp1ucTj$F)G&wtc>s8x=L8@J7TcAUWLV)PKB}cP`eoPv}lW{lb=6vXFE==essF zYjSBM?R#gPyNY(hfh!jCaa+_Tb@Db$3?%?E*$it?ctZ>Ac_vVDL73@e2`dt?UUMDd zfvk{%$T#GeGZcxcb3I*|&qQqRSMa}MYSCD-jP;2yqqcLS*E=EM9hAzIL-UyP;uX`E z%$pazCS|&wRj5uI zcXL4G-4V}KA?J~IMpSq==XRNs@2Ln+rI@%Z0b0UpL5WmQ@fkW!sB-MG3`z_n45qGS2zN)JZ<~;KXEbS z>x3$ghoS(IghJ6=6fR$@a&2^ko4%4XEVhF*Q?$hNC-YVD&5H0r5`QSnOBAq6LwJOJ zp0>B%P9!G&-|P~_8{CO9WnN_Y=U*i$9hl&(eoi8wj?g6bE3LpsuR;2;UjqWj0Jm*h z?waT#R(I@yceRaYc8hmzt#R3AA6fe`zbzz#IFFA@^20?&uDhCl5uAXX`5{j&p8ai6 zo@t9Ioj(?J`<_x4A0*D}%wB^>7N*|qZ6`Ha!B0A;rpC= zfbwPG>yL!+WTZawia)&h>9ho7B8r0WY1^S0%lXHwnM9gd&4LK~nt5RK*q*8_dqH38 ztELgD^3~rMNewH&QDEG4{O83g%gb=tbhhFb!xw|!(_n44qbDS-CK(zwgxgX{P}E!G zVv#qVCHi?_>zLj+Q;Z>^rO9#tY2TrUu&G%^%;CJ6n z%6ZTeA5WvC31bk7!`qDPay~rpH6=jhTR+R~$J3T2Cp(f0$8=BeV=e)Or ziu;c*lyPc|7l7`B!(l2jfOG=)HeL1Oh!SH=q~DMeypNRYs>$ffC2p7R;puspfaF5P zt)f49#pulZ!3QP_$~9g4Y|J$o!vkPkV=i5M>G(2k9%u9z(Ppx0k^wx{BxPuxg*Cd4 z7yP&K-Bq9J0Jk~!ov06FR7BMe8og!B+Ww}^c(q2KspyFHcuz_*YJ4FU;#1B~JAh_6@jpF6UPqC2 z@wcMh-_w!~P8-a9x0S$i7`E0_c=%{|;m)r%b8SkzusGCrWpwF71>)h->&GZ#_92Mz zOK9Eij@45Jn#zcL+O+e2IQ&p~lbjb|ztFqKmFUKbf*Vw({0K-W=nBhBIL_9BbF2iX zQ_V*k>Vf2c<~V5oO#m_P3-(&nldpzfKUsjQBrjQ`z7#%%Iu3)=>T-@UZ@=0Inyz|{ zY2;&i`5;8fpORzpQ5Ay@q~_qK+<>r`qu%t zgiY;+BQOBvcEVk`5G9OTHnfDcDOPt4F1nNqZS-}iVeBsktzP?PJ8|QRP>1%+fRu}N z$G;JJw^MgY)rzVG>zH4j_B(TFjN`6IWK-c$!lhxQJFFKtutjOr+@{%S?&Kdz{T4yi z_yr$-&f@caPDbVkl^_iGCvoHJ+o|^t_*Tq1*K{>)BP$v1NCvE{cBjme-8+%i$9C-M z$*JGnS@BrU;FG=Jog3G|O0!kF1hXK06!tp#=jlu%8Slh@VVOkXPUaQA$rls4Y!BwI zzh}|#J3EKtE}fr*UD7VKuK9uzsEPZTPycR_HiHi=|3*8{@}p6(DEokf(yiv#+C{ASqh z4hP`hrOWL;l07Cam0C^{vi*!I`c|lid@Q-ocHA_ZFr0zZn^O!m!vF;cefC{-k04H5C8wM2yQv=0;t*^r!6qi=qdk}JRuPZr!uIsIt;Z_!p8dC_(_k#c%O z?U!;5dA|v+2<4tJ&I!Fv;?7w9=`R7IH|7)NwxSqQHhr<;=t!LMck+F&;9O2^RtG$M zM#u7uuOK>|DwE(L^G$L>B0~K)CIX}0VgFA7;V~eOd|Q*jb}~rEJlZ}ZdDFOSg+pmt zYBd04dTEN@l|YG{Coo6F*3yem({}h|4=J3_80i(8r6s9f)q2!QrZKhl%jV0K3R`}urI^<8oq`*;qyytz1Tr16bs!839u=_!7cpPI&*CPcr)Pz!<68+G9~ z=3|UC+#Awzx)BFgVe$NBpr-f>5^E~t(d*xW>|DvEE&O8&lne5+0`{r7+P^^Ro=$j| zKLfZPeKVJN_7xw_v)_7pC*?pZ$NO?13N8S-zcC|5(^0!>@ZFgxL{5ibp*fjeEfI}d zdLi1Vv?a1@KEU;DrYDqnKH_QKLUgB2hLR--TC_6*sQ6PCk^Qbig=ty@oG zF_LV)QMg=nf&N5upho_N+yObqtMm$}e$b#v>c+^uCCU+@X}oF4i;(y6Yq}GD)f?!6 zYH}R;TSIhz_WKeD3xW(66A&Bu_urD3yrOT=%@ z`@S{T!j)GWxSH#QF_sp+&SW+Ddv5sx5fOjl_l?n2 zyHQtjs@_UHAW$4N>U8ADAfsUZ_YecN$r3qtA;amdxh#(|Bx^Y;j7jm+Xorp&{p_N3 z2+(d1Na7UeAtlu+iv`(K`B~|Y$`w7qB)eNAW5mDJ0YjUG2 zyB0T;7R`phRrnED!g@w#t_I@M5|6bUa+V)>X0AJDUk@2Fo3e@%akLt?PW575z5Lus zy#wx%^B3~Q=t!e?(T500X*^LDOAPLUBVHI1pem(Du`g*0fXs7ZhufXh^2K*DnHlO* zR&~5hFInpZ0O=a@(*^k}IbZTy{(eoFVSRV|Vr9H6a^fC54EF|4!p7La!$Oa8$GKY&xRr!r#Ydq7!i6W2T`bucB2tA8~S`-q>v5p-pTmSvY9Ekkj*X1Z}nzBleQKP{`9 ze)~VH8ujMtX!|hvzSuN@7NJ(?)syIqONhdepzVGqi7n>4j~C?L(2{AW3$AV)b@nCTy#}#o=R4|mFr9rX15<^8OCtn0)_ zA=-108!%;S*pVn5IR1Ht#fckAKmaC8$TnWBHYBwQXEUzM+31JtvB4QlkA;0+`zF2W z@iQ;_^~N(PeIoJ#Xl2_fz`GL=I}N(od@Fwj{-GHft+e+~6J^-OEkA|d*p^XhM+&;HFl>+1A;=*#99Z3jC~ zbTu?r$O%q|3@~z9uFdLT_8_vC?@yiP7#`L9Ct!)8`-Dt|s4s&@n6=LL1b_YKRk1D5 zh?k+R%*&byVQ52`J>hrYsZ#~LB`ot9pFxEMPM%Bos=f6#M83Xb&+oF^dh4Z}hikgl zHNrbG#D|XZ5+IW!8qrWRFF=nd6f z;e`c&vYf0BrO}?PjlOh`?6?d~8Kdo13cu(m`z6uZ#Z3>!C!TFMt(b=%~j_s;3~}_bpn4DkdM~*5_>i z+j|$47`-+!nU2Kf<*iYzLXNI9VA87u{&#PWj)A5S^%>ZzMIinqtKNeBy7aq!8Sdo| z2kW`eC8esc`YrYe`v@$t7HQX(&_b|+u5FF(D3^QZ>yUTsSu(OI@Lr13u=@TRfzO}c z=AYWbevSumJ(#@_JC4YowYFrbt_{iIie*r7pZZAU=+q}ZAN^EWA9pqnI-K(Mt4eVLcqce3ih3c>x;~t7yv~+zc?30h zfVtnZRgke~)pcDxyX(w@1!-fs*$5uWz$fS1+oGQ)tLd+nA}LOrPUkTupetz{q1h_m zuRQoi08jrmr(-jX`E)zyww0(q(Tfe&=7ea@!L~T%A3k~6WYHSEH{1+4F|nep%p0k1 z6SD>}=LHSdNw1m0Rt;r|&e-A_aO)F5*O#1qrly~H*6e|RKyVUShF?Y9J<>Jwb(T&1 zOg1?7B~K5%!Fm2JJxKmR0KtVj{NP&~qQJL%_h5(<&un?V^Cf&(rOUitf21nK{~J}+ zOBTk=n=G<5mccR_6Rv`WJ(KxxaRHKUJ<12SA$(FLf^$PY^4nVl0KolP8a4_2>TlA? z4$h&Y+})oEUymgK=YcI~>e=bjNpm&_1vi{?8rfL!<;P-^&Nq>WeKRqVRgK8tRc%8* zY$77uUZXB^mi?M$W)xKY1VL_Mi`qK5!mw#42}G zl(Qy))5{&vV?7lq>j?bnEH0tros^dNETOehS>qGD;PhOhW+lC)UoMd4dlhdSC;sno zzA|NT@+|QAzZc;K2aqLsF*!f-;UbacMXjCFX3h~U_eY^8t+`wuA?s0_RQ5V;&u8@1 zwbd=!e|Z^}_Ns(}T!wu6!Cz*QXKn+qTi53H*@O6N z9fbJMmsWHfH9c8Y)=3_;JJ`5{OB*q6*}OM_lt*pG9>$cYktB73_r#dbU8n**YZ~*U z-YaI=O&%3|kZcm9K9u7po62QudC{(Jp0IX)ioz47|Hi;H;-=@Ter~Zkj|z00-&Ow` zZ77yu5k4b=dyCb-Ob1Hl5jt+QsZ&tqO z4GYvR?>9L_!;L{rd}nNKI--N0zF0ovyXo^;l@2jZMJ_$8KLIo8m{ngh>A4zpc3=T{ zz(zF@qHJ@uBjG={1cSkJa%2?+X-R9|rz>}EN&m7}f(r9PG%v0(kl9w9!Od~Dd=2yV z(Ojc3?FaO$ZiX&%`s^e&wsXwCMo0ZNcCX*|F8@zSRrXud+*I*pWbczL#*mkwa9I23 z^7KYUlA$PU-fC{FY+-{Xt!31<_?%=hYf*@p+8{ZsAp4Y)WL9c#6fe_@|IZu)`-Nts zepFVjY@|`L>x8ZvwAuwXwoD>vzuZ^n%ugf#bPcx8EP#>MTmlk$Pg8kDnkT>5Fm+)5XMAB2vZUv zK!6Zp5<s(fzytawspf4966=Tieccb;Wl6q`KGYfaYbfbB^t$wiR9IB@-_oJv z^I&pfg~E4?KgRxXztE13jDEGlXyuXv^~)svm%v{SF?-}MRI+=A2QN4eV9~%oi29`h zhrDH5ywa-p1*R_5>iZ02c;BTj*cb?XbVql?_R+}1+8-uP-Pu>(F7y4)!%}ECURC*J zF%kJ2`ffe-&Fh{?yEJNnQK{+{@H++IM9j}Mu4*F=_g8$APFnpsIWzh(S9#d&_G@99%thex5sVCc>5 zg1uukX>E$DRog$mQ%%8`MQyh~W8ZP-kC+>mrHFPqQssSj1MNEl!zBjMkHk4y3xP*q zPROs>5J!)5X691Kj=En*T==|%+DhOpChikb$IHAlr+M{?Sk^koQpi+mRHvR*+biJ9 zM2C0=r)jZ<$a%e&9h`I5%i&-0RM$Gg^eEBYU)8K~C9iq|;mb>Rk(6Srh?-TZl#|gA|`#|*lQG?>?_eKr;UeI4;E4b75}PP zPK&pcpXbek3+oY;mSvxgej#JuW@Ily5D!89+dpS}ovJTmAU4R|MPJCu|HTa#@jD48W4ZgS!@;o7 zu@rbeYi-~s7YYq-?P)n?+Gf&`WZLSGkh7HiI@ie{=RR=>)jf}n`~vH~0)+r|IA?F^ zX=nMI<5#{a=<#%p=KLM%U>~!D=Vf1n976|73mBz}JT^?hnAa+a@&0AFO!exP%4aA+g2q`1XbMJT-N&B99 zZ{#sE@g@Xxn@&=sr7&sDn=LQL{j!rJ^E4}Exc9Gpb3hDyYpZm9{MD##<}q8WUNs)( zTznu1b;ophR3sJL*>$KI6RCRf(${beb%*oh)3tA)9=`mV-gSZAR8G6hXMrMI$=O5T1wMudL%oxi4hR9Rhq*m$M!k90x#K=KWwTMS1)0=dylbAh_r)JZ|qUxn=gp$bxW<*FGnH|8I!Cg zo{0^IoUSMs8K2w#*zP<$$|Ik%i&;@y7nwOvNY3d;XEP9-+pM@HWq z&SNrMWJ#F6?@@SpRk=ncym!`-)`n}gZ4{m)qm09PTs)3A;PMMdptdl={6bTlrU~p- ziBa$!62B74!xggcSnJ0sKXaisTrD)P#2m_1ScYF)EPk9DvRnab?1d(vX_wCPC9GpZ z8+{vV3NIC=WjS4uNe&|*l}1R_M8HW4Rcx2pcYS1%*<=(mypz@L=zUhv{DfrE-wJLt=@TzgMn`#5}(}dYc1XW-v0mEI)5-p4)^dYB>5X?G^Pn?S6na zeVoE#J>7RC^2Lti&-8~)kM||zocVzlg9uqrhCnWu$Lx6gjd= za+aRS`^1~^=~jg2%HlI{(*m?HQot>xhLu=#R8K}=$;%{sNi79rK zZ~yq}l)M6=ucmavV!~1`-Sx53_|;Xt z8g3VHo}C~zoBH)_)82FTljmdz zn!1~iumPjzC%ql%huHruZAa15*odF37vLhv5gDo_L4B`*PZa}yl13cVOxHu#;=qd_oulay6Xw%~93z%HsINa1w4~ zcf9nitSsu#Ihn$4Q-HL*LuSk&BNflLzTJWGXGj=39i9J-JhtQDfdx#|Qmz~A2&HRhuVtb!`=>jN-$@DRoVAFZQ;gEqMQ(T{7$Z1}@tL&?*Jv$kHPP%R$&XBnL&UUYr z$|f+UJWVblK`+)Kzz5E1~7K`QR` zO#{Zx?J-+MY^`es8nbtpHT+BPeenrp+fM_K%%BnTf*;44<#{ZpGV? zgI=<}#Knw;>SyHB%LmHG{*W)tJ5rIrkT$49zT)Z)RFK{+-gA9k&_V>BV*PY-^=)YM zVf{TyGd7`h6D%6?=~&b^e~DD@C;)>ZEe8Pm!gL`pC@RFn;6ej~y5;N{+qBT!(n<7L84e^^$!tBzj&} z5~_FW;CUj!Bpms=t-V}=A$}^W`vo#kK3>)b^%XB13M53F=YswuO*TYS5?}aDiI8q} zY*r78ShW8sJ@K~tSj%4~wp;(4thYW>B~-+W*<6AC7V>mn@z6EiK=eDDvEm!?i7UVR z+#k=AvuoMAoUdX`CeqyHW(^l|cfMU=Yncy^`ZV@=g8Sfl0TTN=JkX<$J$ROJYK;@` zN%QiHxZhfzF^fXISWS`SlbDQ{ll9I+yR*M$t**Xi4yP78U34XS!*&vVDsnhK^*SqY z6Nu!@qt>%?5d-$8lqC!d6g%InKceiR)tes-V!Z@La!|Ys3dQ1YovkgKb7>k-bX zQuyC_pgpU3nP&>IZba8qQ2w^%lCVuJdK^>#6@L|7J=gMjt=A%TJWf%d3rV*K9$v2|H9qc&eSwc29IFO>Kp~^%^CWA+lK?F$ErLKAUt^@@F<|^cK z+gWEE1(I(f3WN(i&?M8vZmoW=C+o&GN@64oc?7AUxXP~DmG@;|;X^9#Ojn3UD=9Dl z3>oiqf^LU_EyHPJPS!%<*G~0=ga(o*gbx`J`EmI`wJ8Tf+;M*s8pJ;pjmh%j%*N(h z0aX{J1l7ord|>*1ZnOg4s4&)VxaO}(S+&y!%Hqx_!OE~~`31P?ZSjEQYc!h0&z;AL z{JqKz%@UpWRBh&wT7}=`UL!#UA3lg+ClHb_DJj!}l`$1TBsfrmbICQ6 zKVXHuQ@^whDnM_a*rgQn7U7sZqY@|DIJ~BP3@&e@^-s1x^<{r1NkneR0~kHsRH88~Wj3p(o>YWy0!=8&jnbeRM`nl6+)X{Pi9l1XHSu&mnmI|!B2 za}wpanga4fZ3%_YddkwcrX;BB=W`X42m$iuNOq;m3&axH_zrUw-?2?;X^UTP8dMhxNJ9 zugcxw#1KppiG8K<)yQb#PM$q0`}}zRMm#3!CkE8Und(m1iY^FE5gV5YkuNs0FY?8#rF3uhPJ(bueJ|voLgAD3uUg4K( z9BZ=A*?s%~z`G#WM%8qy<@FM7J zNn<!V-@*oqxL$i>;dU>zGZ8sI!4f~CJA^2ThE42SrK&t(?FRO>9M8wNSODJ`-= zy#eZlt}uHnRPa{V9r^3ITd8WtEKbZ3|xT zk13QBf5M$aJWz-tzDme9nkSfKu0U7TsDi3|dt9qAL>RXq7bROKE+eJF@6hf@@*}$! z=Bk8tkgg3fxK|x4%FE1VO}*%>te4E1eDegJd%zv|%y;r*;(TkW{DHP1%F8l$8}PG?n&`7;C?5QfGH$XhL>MI|0>vvF(=&JoM&Aa) z5S~!EQ(;|f^BnPKIN_vA}nup?WzDuJ_uHk6LVetg+ zqe{@@=$Kv}tqj%c$BW%MZZJmN=E%9|#H8ozRrJDMD&Ka8lB}q>(QpsC8@8ocQp#bb z3FG3(aNj=Hi~+8qhKRBxxfi!^#85WplaA8GbW`%e5ZVd7Vn6B>zJq6*K^}}$FxX03 zfMW8GKS@hC1XoE|l9h7t;#ZuAU@6-|+%Y(k`J7BO_1bC9!+>Bv52m zJT5_k^6R;{aZk1)#DL7Q7)8ZcqGiG;I_p(fpqZIz6hAGjmx=I3%I8Tc8Jqe1G)hp= zE6e87;?0s6d=qR?G&x-0T?mZ`szDu4Dm%TObG@nPLv(|e!fN0}jQo8jI9e_Rv$#xX zhujY)j%QbUPgK-|lEks}J9lDmZP95w!`C zPuCSyIT4@7XJcWiUb;Am&Q+F1z`o~st=58?fb{0# zXqTGbL8HPjL`Vula9uWH40OJ z^PjUkmME8gfn!3i!3qdZLs6XALSN#qsXpTriVV7*JS2qLG{_=(6rm^RnwaT#lSJH# zF^`|jJVxWkI%QzDTT9{Mwp1(I9`QqGZ22n`eJ9gWb{?D)db?TH+&wB^g2;xyf#Np6 zaIjpqb0;A#rv#2D8wdUjA?Da-U^DIq4GFVk-4Q<*pg2r#)lH1hDoDupP}P!zz^nL4 zrNkmSw8I0PA5y;A3W|=w!c8wT2W2D*?b@)N1)3MNz-WkDSwVf^XMTOm)`Ki67!sZ| ze<2*=xV(^TS{}saq%xPG*$;hhpk-43T=(M%F(mQdaMS0X$13aeSnxdrOptoY*N6I<^qY&RiLl@$)C^E`gcFDe-l%l8wq4*jc?Hcg z&5=2!vI*JO+56+yQ`01koz#L&f8hBQs16|*lM>19yUS3!-Jz9ElffORXb4H7}cR* zl_^~l4*u*j%b(e^^AwsfT>S|`e}OEuU?%? zbg$!_U3kk71!ZM+hN+DI+GdI$CX_ICzjkzdPK0XCstXztncdou>3Qo3+Io{TlU#B8Jt`^A86_8`c*1*44l8l&U zP>l5I+0Gjh(P8_^zv)@*pAbI~Ddlv5(jhIbR^1{EUWTjZ z@#KstVNMp2Fi6b_J2=+fu?T}xT(u>0)-Ak(c4XC0InmpWQyV$K*;rx8v9=uKVjG*U z%?ph%xZ_g+VR%zx9KZeoud>E?5sjIgC4g`Ctmk5K zll%GXFL<+^;ZUa9g6E2s+65%d5iyWI~dl=B{W;nI+j{7VT@qH1dr#>A=U; zK*ZU0#IYC~28^_xh(4oQgn}MNKSui6NiNluuihT*JlMpTnrg%iVn|~kdE9T}0Z#wD z_q`Jnf2^Dk7U-1(=KEgmcAK0Uc+UvIx4?UG3qgY5k`HL)0d!9 zVD?g#gYzX-S7FPD?aReE;`-YDn4pG{Fq1Y#n;qkHyd4!C#lBF4%M(QT_H;{xlG{%1 zqwTozBfiD?%r2=AcwIrks8d(_UgGt%jVev`(RJfis)6k|vA2DwiI1(7QZC>Ux`ooENI zM-X><51iP&OA_&}ST2d#A(vNA{1szLU2K!YL*EBo;jxz4lErN;zJe$iOquPxn&Rki z*5Aj?2(^;3-3PQB%9KX4nBJIgpeiYtU)e3ym#E5{#6fz>*r`Qjf=DjWlwDV#Sc5Wy zW`b;0f)1>^sLG|CDjJpFY!~km3FVKTtW=?J4QPlh6&-yPNq;09s2Idx+Q{sFYP(e< z>%u}L(Cy3PC2VL0%^cIxlO7?6_0M8+DXqdtTt`C>K4^ejSKF_^8^54t9Fvh_@f^n& z+<|MLHeb%}q0XM(D4-6e*$?nMvB~GY=%^^FIAKutnivRBipdLm2Lxti3OG5VXy@i zRXz%VFN+FO3Y>LMKse*}yC2B}3lFN#=}Y$k@{n zs)~HE1lr1k2qQruMAgeF%7c8j;3JShzUeI-ub5CNL301faZDshT+z(PmW{0t+GN_I z)}FNFqK@tn=sBeXu1GqGP2_);n-0MQ_+6*jN+PPcH##u13&_qhkqF@_Gf%||!dgHF zGn{pt;S28X_3eB`XS|zPMvXPf&BstYuhkw*q@IzHvC+H?u~BjZjoG`^C+3tg+v~a* zRFsAl;^W|$=t2`FDGgb5Mv0#ya%1eM?)X4B)atMa1py;k!aYqut#Q(Au@Fyr&5^jN z?pTNmoN2IpInB5&Itk+ry!@i}9q>enuntqP3-)=Ks~sIZ~L778*|!b+9H!S%!Y}IK*!VIq;2YBzWX%CA6|+geRP`tL|77 zOE{2YH9S<~ym<{KqcjMK7-FkvuVQ6+wj{TC0#3wPhW_DgBz;f|woMMt74*W9(oVSP zaOTK>lR;mqQ)uSqb@A~?Vg;NoP8kieUM!eYWeAnOQxkh~JsdeL5K*W${66k{#2qkdjtsy$;Dx!o0@A2<;0~JM}#wxIm(p?xho~Y(6*`g z(OLnU?o!Z`CsFE45cp^_Ti9Yue#L26lH#Oz7rKs0GX1NbT3y0oO%-xpolT^(Ch7LZ z3FY+um^&PoSh(OY15Ma(;y#(ufMsI(E2D;2gvDc(zxYvoZV^Uu?aYdjQ#j|XmES;A zY|BQWQFf+jaB>YZfHvll$C^AyrLro^5q>7(3HY{g@-q8v#RhQ(4K#!@#LPX%5X1!j zFp%3WoZ<>4aVw1}9ZbnrTQNraV#nHx#0#Le#0#zv?hZzs$D6JlI>jlr$vkk5Q)D zQJ5&P9a8n|@lY5-5rVD@lc(5{`O3?%%ROF>`WIP~6vv(V%&?BD3$gIC)qU~Ya$1;Y zkr}Qh#oIa5s23L+Gy15tCn1Cx`+cbS6Vy3QUr=u}qXlcS1fqiQv7%wGN%6G9G}Vvut3DnpojbYnJVQd*LnV`D)d!)Y<<^JHPudNIg-q;o9s<>Z(S6 z&ox?$b;Qdb)^-_IJ7}$0L@j*JGIf>L*exx}(#}tHMxJROhK>HTAGFxi>3>+-m0DN4 zSBq&9!c>dWBFa>2&1;OKwRWNe_Py4yuGm$JG|3mOCBsm*Q)|s@?5NHt>(>v%6D3@& zeWjhas~?7q{>Tjuk{Lx9u|Q`ALgu z68(x68$+3;)|%H?ye`w#+O7$8(;`ix|DnysQHN=@_CAYAgcfCKr&vq3Mt{hUI!tv@ zvrS99MU=4?rPtUOI-?355e7QIgzV8GP0|Ji;QbV>jfU0EIs%tyk0y_6QI>XU`@(CC ztVMaEBu{6A(E;uF&)Ui;wrY`DMA>Ssd5xLr2&8J^q|u+OJJQO@Vf9pJig7p;v+bd1(U!ycWqbkB>!dR>L5tKd{wr+}QCqY}lUsEJ9@H6mYEhmj zfv(gV*5zsqRwX$nX$zD^>agk3S}W~@>G+$vLW@rwQp=`YhK|Wv8x3U}b(l)D)&Qnj z8yo!tbwpU{xW-SbV6940=xd3$nEXLUgjkF8M2V5E2rbG+e=8j;lv?5e&@R&v5w5k- zYs^At^qr1PK|11TT5tniW~~ELhE7c+Xi)+O#7Z3zdv!!)X{mOiBtl1^?imErNnnQd z!InhO@(d8Q3@s6c@wyols-ujP&IqnEa@OKf+9}gfZGp~6_j~~9L>sI{2}FCHmc15} zfjS}*wMb8t7--ql=nv9~FIeY1R%m<1Vsf*N6)K&LN}bb6W~Z%9)FSQCBuz&*a~<8> zwF2Dek8;P94fElDJK^x;e?~XMDer&BPfKEA$G?%QMK`T#+<&6T z%m1?d-%X(Z14T@a{7*fnk@)K0$^8eX?VNubiGOf%{tpz1JoP^b^?Ly>|A8X<{{fZ& z0so02cm4w`q4MWIt((ttpw_K$bD-9(`E!+8_t2ZG)VgiJT&31&jON-8-Bxj~{m^Zm z=h~0C_T%3**>mm3T>J5l`#qg|?z#43uKoBok3;6#kGb~a-#reQYd_}NkGb|kw424`)OyAZE{VFZ^z>J6LR5<`-`#h<{?w80PpQ6Id-=hM)Ql~O zCmu!~+FdnyZGGBTJLESSrJxh$B= zg1Ic1%YwNqn9G8>ESSrJ|C_S_5e>Y)Z!%cn#%RcIvwm$Ic*Lr4#LHkX0e&=qx@VE< zZI^*NqoYc2$Vb8@ZXgvY3o{Arpd7H^A!?H02#S?4I$R^Fih3PY%Orgnh+)jyCTFWA zZj_8-P*3aFEUcMAni0)GYm-v%FOgCquIY3fUQfqlz`9H&s0wsVxg|Cd%WCvXR|w% zeXbLjm=8?I9%*^C&Ko6m@T2+8C;F4_sMRkI?g`cD=&3+>wcUy>hf>Uf^Sm2)PYh!I)AnQLA zy}-9f8a>uyZwhEy(4(HHJ|bdfKpRFX0aYIxVXM4{N1FUYE&U|bt$;@WFVcU88f`=k z|LSHAC?Zu)Jpa+tFzrw?W-DN=NX=urZ;fCvHyhmC(h`hI@}zHkbB5mpa=y_Pn3b6s z33!$MbCGAc+|-_aJRl${udZO+aCv#@&791JkqCfkZjG8E&(qK~Eiv5TWI%u+pvKaN z>2(8rUD;q-OG`aWZOb*k8bLd|8GAFcYuL&!61T~tz)v!g?Un_MH>$@Sz&JCTa&ucy zR#8W;hiGtpOL0XEgZ_teC?ELxVB<(3;1)Hj&#Ni@=}_>^17rXwBtZBdktH#M?k24x zet=t;YLhCG((7I{KFl5m!qKOecGTI&%Ov{@d!RYP3QGLz-FMh3D=0#~K507_kO@Fg zrFP!qPXW*2FJ)7*GQD`3i50+v1fLD2wzNcPM75tf8Fn^mMgD?-fDVOPlm{!l?#)2B zn;0-8S+i&UM!>Me_C>ccyADiGU@Z&-(SuI_^qf|kdUWNJ(wm{o^tK%USO7SMKHC{{ za&vj*^)_K^OZ_pmiN<;9b*9l~ji>1?!AmquHUs{1>9+UXVr`tD4nd2Vca31dV*8Mr zncKqDTgrlpEgod>8b(Spy%wuuu&HOVsekxV%pmk=fCpK#C#t5@?w}%{XST_@pjNGY zfU~#P9`{!E#Lw1c$1K#kb>QkYK*BcV>$SGbFHt+U>!~4D?o%VczydnZ8ZLiTl-g}A z&u%linJMzui0&@5&^NQsZc75(RI1+O72;{wmS`RxSCZKkrBNoR1qj;BmXQUm>aeOw zjvHa+uYKI0CjvY)Ua{Gdhn8BXJa4F!HWVLc*^Lv15_T-V3=Vovc8;Q?p%gFMwHlkL0Zz>A{@+;xE zJ>f;mEsbTFArU9T?n!au&@%xdjl`Cy%9ufe@`$*GmeFYv(J3H9Uu;kT{3#lN9r=f_ za$kGr;D8HW>d>{!e=?emX&u?nQV3Be&&{r@fWP{Gc7vV{AWT!7DUBJ-SQEa!H8@a1 z;k6gYK$n!ki9-Pu1dT@vS8Pbiyp(2-D9`j&mx9l&gNB>>DVOls#QGNS6SccClNEXbpw{|G4T9)dk8r3pGf?f&QQPOeameDGW*sc`79RB@m;;TZ- zX%f+ilbhp%f5?YzG47b=g75+=h|nHU)^&SYjImnRPRfXPi?n>2%RYdM{}VaxmgtN| z`LZL0XCw*P#Ma>aX|Cg>@UIl;J^}!Z^+~6m2ap&-~M{I5s053{A?8Xer zE7NF}SqI>0uY19XgA0y(F{r4V*rqC_KK?uHMI&TvbDf5cDP|AG34yDrCpx@I>{TekuRjU zX%!Y8Ye$74f5-=wGc=hH5U}mA*Ap~lXySN*b!oQL{k(2w}AfY|Lc>}<%W%=XM zo2RS>Cl*I>XGqQ`-N0nGj+k?6X9RswXfYI^KRD4~XXPhyQJ+MxlVQQJ>+(IXwDliC zB>;!UFxH~mJTM||a4kUM2^>YqOdxbyGTRDvp5{LysSjg7{UZ${?R))dMzO$2RAz1k z)VE97er@;a3Y5!%qp127K!U!33du3TN`rudr?4lz?$xEtY(LL@fW!eH>ES-|B<8en z67ezZP#91M34UICaAuQkC&L6&2i+h+>X{=oqt$Y=CjVn+?DH|!*2YR3?;_`-(dI*)F;=-^GZdQN zOC?9BgaEBgXI%kNqd17C$z6>LsHt}=z)nIUJEveH%C0h{USJl^3S1q|?L(=_Be6|wk z1jlx&C2s|q7)*AP<_F`lQ?R8<0_P;Cu+cl&`ku*gb#%?wAj; zwJv+5Hs@F&kf^^skweuz%XE*jAxVNiB_VCKE*sLc6=?4#^6(k~3TS&;)jXaRmyMCyX7Y1Qg+v!wxKT`7Mj)*%w=`V3ws{)rUa;o$v>>`sGI6|fJdUHxW!eJ-VAadoFD}R)E-v*xe%6g1M-G4q5@Df z)24W6K!VE8^ny$`3*Ajj#E#zK%d3zv4 znJ5|u#-iZ_y#i3XGQGV_7Km;gn#k=d>V?qk(>y$=IbQh3D2_`cUyzU_GjL*CV`SNZ zsP23)8;{9ui%-M}^41(+E6tT}!{eCmJjNkM=)jBQgTy?NxOYTExvvN^epp6Ct+Wi| zkZ-oh0Q!yuN@lsyxemuL&kaV79DBskm<_PdXtT<5VT#_-oo*l#MiUxxM6r}o#K4JA z5e9{r9;u>eLDh9CZt}?yR@gcHiFb}0AfZSORN_smj4bgcMaPAlR0M-b`O;bwy6K>G zN^v19+cDx!nW|~qc#(3QOSDU@kUv^dDGq1<42B+Ljt-Bn6@$E-<0Y@_rTCaw7A(_) z3Lb=UDZB#ZQGi@>$&=J+u2?uK$$A8N_KMCQPC7Tf-ZPsDDVmnCG5R1XBYtq3^x|li zDc!U-_-$u(VwL#oNS^5^!}bjU^|$QlKJl|-ZWiN1`_4OpuQO8&8gZ=cZ@5!egB`*5 zx>5{wJs7y2oq8aAuNA&;$t~bww_BsVW(K%eXTLgs;Fia!=}Y!L^`d6(daqr2@2QW` z+kUm$)-Pd(sXnlMmRCD|;A8Zj;#7{w(sq?-x0==mozm*uP9l1zQdW$t%DI$e>n&Q3H_phK)_a|O;_L;$>@V+d`o~x1dxuwB+0N>w zt)vJy5C;vNwbEqv0|e6?{pdgRI}NyHoM@b#>hkeOk_3N&@Wcw3f^0#Eok0aeD00+IM#|0XM3Zl{GX|> zR@=v5cj)c+ewZ~x9iynnYjL*_vvGK@nfjtS6yN@~>{+_Hc^KSEJ_%P_+oZS!*aR?9r^ASb%oZ6oc({I&+g*W2{Q>bjk)Q1mh9UYGG5?! zyW@*{w`R^@_0bDd=7?W`6qfF?J@c_`+i(N*dE+=l&_ zGXW^R+PGE6XPSape0p{MKj?eEQMXg*ywyPHSj%1R-7;8pb*2taM{}x99g$I=+30B3 zLoIB)Pc=35d%*wiiEZmw(_a3pg?|8K>gsI#EY+C*k@=u~jq7GCo6Sg|^}tt|0Psni zfzM3c(cq{6aYypYG^XD7Dw%ij$5*qaO|b<$bd1di$q@ zp}av&+W()sJ3IA5#nk4`IvAd}|6?~GYk>&ORs(H&J=s7JSKINSjZlZvhwfS&@zlI& zrUYq=5Lx2$|I5Lzp&LCEZu{XZ(l%}(ZlLPpw-5^}2BQ9(TL@UAh&bIxL^|7ex04

|#$RW!2CcU)A(&4%>+RzU9<7w%Yr;_jd5A-q{<7_W=v_aSbi#JtJDtm%3-V zzG`EyXXo_sH#0YrvH0cby%isA{}+}FL>-)No3t7r0HUG4ucoDiYh!g*1B3<8^nL73 zhI6cO;k}RE$ygeG=wIK5Zu-J=BX0Rj-!v;=#_c^G|MesX^eMJkjcc7&OcSyX*7v^L z9je`>zL&HPe?Hv@{qfrb#0ETgwj0+)P@G5jy!9WsnQ?36#>{j_It39xAb#96wCr!? zn$5(Wjw5ESmEG`PEAO=h=mZ^zz7e~^>tpu}#cNjMxU;6|gk$@9yy@(%?TlH|-ZI|T zDEjCJQqn(^p#iH$oLK5xT}U0Oxgel@Ok2flr5`}65ebv7EBhOBp6bI}^m zx5d+UvpVc5eBXE70B~m+rWWjIjNJdx731BF+`I3)Yi*y~UQOj3(+c|gUT}A@)oL1f z)-&qtp1nQ0?&A(Xb=FQz6_|0{I=tz|rlJ7MLbcK}+5a9Z#Ro#mr!+Uc=Q2~ZLGGrl zwN?@p&tFYD^j@`ywfI*S_||9!y<3`kPCo>w&c3Z_p`KsP+{~&UW_;*>=kE)5-uNC! zTF#>-rgDO`n7%*Q@MhP0fBewkYH80ss)pXx>DzTc^BHdHi)eay!86U>l;)_MjRepX zPYwqUw2dqdm~2^M9dFjOAT|IN3BJy2)NAUoEH2FT#h;U9mWwD{wg)xJuM-%Jq`T($ zFv8E23!gq**^V2`U<+~e;)9HdVF)}-j+ar2g9`^Hu1vIKcDRPed58#R7fCG}`3AY- zvmyf1sf6Lx1;Izz5UaD$78H~;oym+okr#my?d4~=kVc+Sn&K=m$N^seH`8w z4(GJx`%O)uVwzux%F8mS!P(y4t%F6L%9m`YpBLQ@$3F^hPKQWKU=NW)gT(f9nIj${ zxzDe4RJDu-@=H8ryRg_ohNoh+;Ugw^JU>>M*6)5g!`8R^uottzx+t7^Ke;?fLUCab zqd8(nBVkK!5wGTe=^*idv4P(ejCZ8HxY!dlA{aU#j<)fr2<7DZFrJi_lpxm;IfB#q z}7e9q1Hust1rb{%Q#^&|1vN#H83|YGhb$MVP9lnbYU)VYis~*kU>iWF%X5fuoaYo zR0Z|oxnA~1hzL^bp;swkc6YidX0uB&OZ8CDi+Gru4+Iar{+8Ph*~o-bRaZ{<<}bdogwBHTSq&B{bY6ILXPV;W zX?u?LMKE9eca`{xKFh&}w@#GBwR()TK=bt>(t)iaI*? jsCsz`#x!fM%C0r50tl6X9F3PR-{sjaG7&*eW&r>IRj7(D From 76ff4a19aa7c8e39b2008b4615cec720e50a10ba Mon Sep 17 00:00:00 2001 From: tomke honkomp Date: Mon, 15 Sep 2025 22:51:54 +0200 Subject: [PATCH 11/15] Add new FAO data paths --- c_module/parameters/paths.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/c_module/parameters/paths.py b/c_module/parameters/paths.py index 677a694..6e9b801 100644 --- a/c_module/parameters/paths.py +++ b/c_module/parameters/paths.py @@ -73,8 +73,11 @@ def cmodule_is_standalone(): # Official statistics from the Food and Agriculture Organization -FAOSTAT_DATA = INPUT_FOLDER / Path("historical_data") / Path("20250703_faostat_data") -FRA_DATA = INPUT_FOLDER / Path("historical_data") / Path("20250703_fra_data") +FAO_DIR = INPUT_FOLDER / Path("historical_data") +FAOSTAT_URL = "https://bulks-faostat.fao.org/production/Forestry_E_All_Data.zip" +FAOSTAT_DATA = INPUT_FOLDER / Path("historical_data") / Path("Forestry_E_All_Data_NOFLAG") +FRA_URL = "https://fra-data.fao.org/api/file/bulk-download?assessmentName=fra&cycleName=2020&countryIso=WO" +FRA_DATA = INPUT_FOLDER / Path("historical_data") / Path(f"FRA_Years_All_Data") # additional information ADD_INFO_FOLDER = PACKAGEDIR / INPUT_FOLDER / Path("additional_information") From 3480893fa66741bae34a25110c1b78410ff30e0b Mon Sep 17 00:00:00 2001 From: tomke honkomp Date: Mon, 15 Sep 2025 22:53:49 +0200 Subject: [PATCH 12/15] Add new FAO data downloads --- c_module/data_management/data_manager.py | 94 +++++++++++++++++++-- c_module/data_management/process_manager.py | 14 +-- c_module/parameters/defines.py | 1 + c_module/user_io/default_parameters.py | 6 +- 4 files changed, 99 insertions(+), 16 deletions(-) diff --git a/c_module/data_management/data_manager.py b/c_module/data_management/data_manager.py index 7232ae7..c9dced5 100644 --- a/c_module/data_management/data_manager.py +++ b/c_module/data_management/data_manager.py @@ -1,11 +1,17 @@ from c_module.parameters.paths import (INPUT_FOLDER, TIMBADIR_INPUT, ADD_INFO_CARBON_PATH, ADD_INFO_COUNTRY, - FAOSTAT_DATA, FRA_DATA, OUTPUT_FOLDER, TIMBADIR_OUTPUT) + FAOSTAT_DATA, FRA_DATA, OUTPUT_FOLDER, TIMBADIR_OUTPUT, FAOSTAT_URL, FAO_DIR, + FRA_URL) from c_module.parameters.paths import cmodule_is_standalone, extract_scenarios from c_module.parameters.defines import (VarNames, ParamNames, CountryConstants) from c_module.user_io.default_parameters import user_input import pandas as pd from tqdm import tqdm from pathlib import Path +import requests +import zipfile +import io +import time +import datetime as dt class DataManager: @@ -173,16 +179,62 @@ def load_additional_data_carbon(self): "Excel") @staticmethod - def load_faostat_data(self): + def load_faostat_data(self, update_data: bool): """ Loads the Forestry data with no flags from the bulk data provided by FAOSTAT (Forestry_E_All_Data/Forestry_E_All_Data_NOFLAG.csv). See README.md for details. :param self: object of class C-Module + :param update_data: Flag to update FAOSTAT data even if max cache age is not reached """ - if Path(f"{FAOSTAT_DATA}.pkl").is_file(): - self.faostat_data["data_aligned"] = DataManager.restore_from_pickle(f"{FAOSTAT_DATA}.pkl") + CSV_FILE = Path(f"{FAOSTAT_DATA}.csv") + + CACHE_MAX_AGE = 2 * 30 * 24 * 60 * 60 # 2 months + + FAO_DIR.mkdir(parents=True, exist_ok=True) + + if CSV_FILE.exists(): + age = time.time() - CSV_FILE.stat().st_mtime + if age < CACHE_MAX_AGE and not update_data: + df = pd.read_csv(CSV_FILE, delimiter=",") + else: + df = DataManager.download_fao_api_data(self, database="FAOSTAT") + if Path(f"{FAOSTAT_DATA}_processed.pkl").exists(): + Path(f"{FAOSTAT_DATA}_processed.pkl").unlink() else: - self.faostat_data["data"] = DataManager.load_data(f"{FAOSTAT_DATA}.csv", FAOSTAT_DATA, "csv") + df = DataManager.download_fao_api_data(self, database="FAOSTAT") + if Path(f"{FAOSTAT_DATA}_processed.pkl").exists(): + Path(f"{FAOSTAT_DATA}_processed.pkl").unlink() + + df.to_csv(CSV_FILE, index=False) + self.faostat_data["data"] = df + + @staticmethod + def download_fao_api_data(self, database: str): + """ + Downloads data from FAO API (FAOSTAT and FRA) + :param self: object of class C-Module + :param database: Database name + :return: FAOSTAT data as DataFrame + """ + self.logger.info(f"C-Module - Download {database} data from API") + if database == "FRA": + database_url = FRA_URL + file_filter = f"FRA_Years_{dt.datetime.now().strftime("%Y_%m_%d")}" + data_pkl = f"{FRA_DATA}.pkl" + if database == "FAOSTAT": + database_url = FAOSTAT_URL + file_filter = "NOFLAG.csv" + data_pkl = f"{FAOSTAT_DATA}.pkl" + response = requests.get(database_url) + response.raise_for_status() + cached_data = io.BytesIO(response.content) + with zipfile.ZipFile(cached_data) as z: + csv_name = [f for f in z.namelist() if file_filter in f][0] + with z.open(csv_name) as csv_file: + df = pd.read_csv(csv_file, delimiter=",") + + DataManager.serialize_to_pickle(df, data_pkl) + return df @staticmethod def prep_faostat_data(self): @@ -327,11 +379,35 @@ def faostat_data_aggregator(faostat_data, items_to_aggregate, faostat_data_col, return faostat_data @staticmethod - def load_fra_data(self): - if Path(f"{FRA_DATA}.pkl").is_file(): - self.fra_data["data_aligned"] = DataManager.restore_from_pickle(f"{FRA_DATA}.pkl") + def load_fra_data(self, update_data: bool): + """ + Loads the Forestry data with no flags from the bulk data provided by FAOSTAT + (Forestry_E_All_Data/Forestry_E_All_Data_NOFLAG.csv). See README.md for details. + :param self: object of class C-Module + :param update_data: Flag to update FAOSTAT data even if max cache age is not reached + """ + # Paths + CSV_FILE = Path(f"{FRA_DATA}.csv") + + CACHE_MAX_AGE = 2 * 30 * 24 * 60 * 60 # 2 months + + FAO_DIR.mkdir(parents=True, exist_ok=True) + + if CSV_FILE.exists(): + age = time.time() - CSV_FILE.stat().st_mtime + if age < CACHE_MAX_AGE and not update_data: + df = pd.read_csv(CSV_FILE, delimiter=",") + else: + df = DataManager.download_fao_api_data(self, database="FRA") + if Path(f"{FRA_DATA}_processed.pkl").exists(): + Path(f"{FRA_DATA}_processed.pkl").unlink() else: - self.fra_data["data"] = DataManager.load_data(f"{FRA_DATA}.csv", FRA_DATA, "csv") + df = DataManager.download_fao_api_data(self, database="FRA") + if Path(f"{FRA_DATA}_processed.pkl").exists(): + Path(f"{FRA_DATA}_processed.pkl").unlink() + + df.to_csv(CSV_FILE, index=False) + self.fra_data["data"] = df @staticmethod def prep_fra_data(self): diff --git a/c_module/data_management/process_manager.py b/c_module/data_management/process_manager.py index b4c54a5..65357e6 100644 --- a/c_module/data_management/process_manager.py +++ b/c_module/data_management/process_manager.py @@ -37,20 +37,22 @@ def readin_carbon_process(self): @staticmethod def readin_faostat_process(self): self.logger.info("C-Module - Reading in FAOSTAT data") - DataManager.load_faostat_data(self) - if not Path(f"{FAOSTAT_DATA}.pkl").is_file(): + DataManager.load_faostat_data(self, update_data=self.UserInput[ParamNames.fao_data_update.value]) + if not Path(f"{FAOSTAT_DATA}_processed.pkl").is_file(): DataManager.prep_faostat_data(self) DataManager.aggregate_faostat_data(self) - DataManager.serialize_to_pickle(self.faostat_data["data_aligned"], f"{FAOSTAT_DATA}.pkl") + DataManager.serialize_to_pickle(self.faostat_data["data_aligned"], f"{FAOSTAT_DATA}_processed.pkl") + else: + self.faostat_data["data_aligned"] = DataManager.restore_from_pickle(f"{FAOSTAT_DATA}_processed.pkl") @staticmethod def readin_fra_process(self): self.logger.info("C-Module - Reading in FRA data") # TODO implement fra processing steps - DataManager.load_fra_data(self) - if not Path(f"{FRA_DATA}.pkl").is_file(): + DataManager.load_fra_data(self, update_data=self.UserInput[ParamNames.fao_data_update.value]) + if not Path(f"{FRA_DATA}_processed.pkl").is_file(): DataManager.prep_fra_data(self) - DataManager.serialize_to_pickle(self.fra_data["data_aligned"], f"{FRA_DATA}.pkl") + DataManager.serialize_to_pickle(self.fra_data["data_aligned"], f"{FRA_DATA}_processed.pkl") @staticmethod def save_carbon_data(self): diff --git a/c_module/parameters/defines.py b/c_module/parameters/defines.py index 8917c75..9bbb764 100644 --- a/c_module/parameters/defines.py +++ b/c_module/parameters/defines.py @@ -39,6 +39,7 @@ class ParamNames(Enum): hist_hwp_start_year = "hist_hwp_start_year" hist_hwp_start_year_default = "hist_hwp_start_year_default" show_carbon_dashboard = "show_carbon_dashboard" + fao_data_update = "fao_data_update" class VarNames(Enum): diff --git a/c_module/user_io/default_parameters.py b/c_module/user_io/default_parameters.py index d30217e..4e25614 100644 --- a/c_module/user_io/default_parameters.py +++ b/c_module/user_io/default_parameters.py @@ -26,6 +26,9 @@ # Visualization parameters show_carbon_dashboard = True +# FAO data update +fao_data_update = False + user_input = { ParamNames.add_on_activated.value: add_on_activated, ParamNames.sc_num.value: sc_num, @@ -41,5 +44,6 @@ ParamNames.historical_c_hwp.value: historical_c_hwp, ParamNames.hist_hwp_start_year.value: hist_hwp_start_year, ParamNames.hist_hwp_start_year_default.value: hist_hwp_start_year_default, - ParamNames.show_carbon_dashboard.value: show_carbon_dashboard + ParamNames.show_carbon_dashboard.value: show_carbon_dashboard, + ParamNames.fao_data_update.value: fao_data_update } From 14f8e5441905d5a03bc2f66e3fc9f61b94c15599 Mon Sep 17 00:00:00 2001 From: tomke honkomp Date: Mon, 15 Sep 2025 22:56:28 +0200 Subject: [PATCH 13/15] Description of new FAO data downloads --- README.md | 31 +++++++++++++++++++------------ 1 file changed, 19 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index e653f02..8d6fe81 100644 --- a/README.md +++ b/README.md @@ -173,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 @@ -186,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 @@ -237,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 From 2350ee34352eb858f27ff38cbb22db310bdf2d7a Mon Sep 17 00:00:00 2001 From: tomke honkomp Date: Tue, 16 Sep 2025 15:21:15 +0200 Subject: [PATCH 14/15] Update CHANGELOG --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) 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 From 6f5e6585e3c8123ee0a96203e875dd4eacef0aab Mon Sep 17 00:00:00 2001 From: tomke honkomp Date: Tue, 16 Sep 2025 16:30:17 +0200 Subject: [PATCH 15/15] Bug fixe --- c_module/data_management/data_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/c_module/data_management/data_manager.py b/c_module/data_management/data_manager.py index c9dced5..11a1ab5 100644 --- a/c_module/data_management/data_manager.py +++ b/c_module/data_management/data_manager.py @@ -219,7 +219,7 @@ def download_fao_api_data(self, database: str): self.logger.info(f"C-Module - Download {database} data from API") if database == "FRA": database_url = FRA_URL - file_filter = f"FRA_Years_{dt.datetime.now().strftime("%Y_%m_%d")}" + file_filter = f"FRA_Years_{dt.datetime.now().strftime('%Y_%m_%d')}" data_pkl = f"{FRA_DATA}.pkl" if database == "FAOSTAT": database_url = FAOSTAT_URL